1
0
Fork 0
mirror of https://github.com/Raymo111/i3lock-color.git synced 2024-11-11 13:50:52 -05:00
i3lock-color/xinerama.h
2012-01-04 00:10:36 +00:00

17 lines
257 B
C

#ifndef _XINERAMA_H
#define _XINERAMA_H
typedef struct Rect {
int16_t x;
int16_t y;
uint16_t width;
uint16_t height;
} Rect;
extern int xr_screens;
extern Rect *xr_resolutions;
void xinerama_init();
void xinerama_query_screens();
#endif