]> git.sur5r.net Git - i3/i3lock/blob - xinerama.h
Move all PAM code behind UES_PAM and enable that by default.
[i3/i3lock] / xinerama.h
1 #ifndef _XINERAMA_H
2 #define _XINERAMA_H
3
4 typedef struct Rect {
5     int16_t x;
6     int16_t y;
7     uint16_t width;
8     uint16_t height;
9 } Rect;
10
11 extern int xr_screens;
12 extern Rect *xr_resolutions;
13
14 void xinerama_init(void);
15 void xinerama_query_screens(void);
16
17 #endif