diff options
| author | Simeon Simeonov | 2020-03-12 12:30:51 +0100 |
|---|---|---|
| committer | Simeon Simeonov | 2020-03-12 12:30:51 +0100 |
| commit | 69a05d516bd0c7e369a0ba1fb78aac57a5ea26f2 (patch) | |
| tree | 87e37110ea0e328533a41c3b16b64036ff132641 /randr.h | |
Initial commit for the last i3lock commit at this time f3b061233e28ad0cf920c9421adc2459b6920812
Diffstat (limited to 'randr.h')
| -rw-r--r-- | randr.h | 17 |
1 files changed, 17 insertions, 0 deletions
| @@ -0,0 +1,17 @@ | |||
| 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 randr_init(int *event_base, xcb_window_t root); | ||
| 15 | void randr_query(xcb_window_t root); | ||
| 16 | |||
| 17 | #endif | ||
