summaryrefslogtreecommitdiff
path: root/xinerama.h
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2012-01-03 23:10:56 +0000
committerMichael Stapelberg <michael@stapelberg.de>2012-01-03 23:10:56 +0000
commitfd64bde0cb7f021aadaf2a8e1ac5ebd95caa9058 (patch)
tree822605f002b109bc7556ee30198160c8f8c67e6e /xinerama.h
parent02655d2ddf6e2757e724dbe51aa5fd6a20521d83 (diff)
Implement Xinerama support (not used yet)
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