summaryrefslogtreecommitdiff
path: root/xinerama.h
blob: ea1804ec650237161bd6d08fe791efb2e03941c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _XINERAMA_H
#define _XINERAMA_H

typedef struct Rect {
    int16_t x;
    int16_t y;
    uint16_t width;
    uint16_t height;
} Rect;

void xinerama_init();
void xinerama_query_screens();

#endif