我没学过内核级programming,但是如果是在X下的话,以下代码来自XCB官方。

#include

#include

int

main ()

{

/* Open the connection to the X server. Use the DISPLAY environment variable */

int i, screenNum;

xcb_connection_t *connection = xcb_connect (NULL, &screenNum);

/* Get the screen whose number is screenNum */

const xcb_setup_t *setup = xcb_get_setup (connection);

xcb_screen_iterator_t iter = xcb_setup_roots_iterator (setup);

// we want the screen at index screenNum of the iterator

for (i = 0; i root);

printf ("  width.........: %dn", screen->width_in_pixels);

printf ("  height........: %dn", screen->height_in_pixels);

printf ("  white pixel...: %ldn", screen->white_pixel);

printf ("  black pixel...: %ldn", screen->black_pixel);

printf ("n");

return 0;

}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐