14 lines
204 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. void xinerama_init();
  10. void xinerama_query_screens();
  11. #endif