You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
294 B

  1. #ifndef _XINERAMA_H
  2. #define _XINERAMA_H
  3. typedef struct Rect {
  4. int16_t x;
  5. int16_t y;
  6. uint16_t width;
  7. uint16_t height;
  8. } Rect;
  9. extern int xr_screens;
  10. extern Rect *xr_resolutions;
  11. void randr_init(int *event_base, xcb_window_t root);
  12. void randr_query(xcb_window_t root);
  13. #endif