summaryrefslogtreecommitdiff
path: root/xinerama.h
diff options
context:
space:
mode:
Diffstat (limited to 'xinerama.h')
-rw-r--r--xinerama.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/xinerama.h b/xinerama.h
new file mode 100644
index 0000000..ea1804e
--- /dev/null
+++ b/xinerama.h
@@ -0,0 +1,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