summaryrefslogtreecommitdiff
path: root/xcb-demo
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2002-06-05 08:16:17 +0000
committerJamey Sharp <jamey@minilop.net>2002-06-05 08:16:17 +0000
commit69dff13df5479e826d8423a33fc9348823648e64 (patch)
treea084c1923be1cbdc81ec0e44f31a6e4536ea9200 /xcb-demo
parent39585565b8c021c4a90d82a0f2c7c9b80afcba24 (diff)
Changed include path to X11/XCB/<file>.h.
Diffstat (limited to 'xcb-demo')
-rw-r--r--xcb-demo/dpms.c4
-rw-r--r--xcb-demo/hypnomoire.c2
-rw-r--r--xcb-demo/main.c4
-rw-r--r--xcb-demo/reply_formats.h2
-rw-r--r--xcb-demo/xdpyinfo.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/xcb-demo/dpms.c b/xcb-demo/dpms.c
index 17ee1d5..e0d55d3 100644
--- a/xcb-demo/dpms.c
+++ b/xcb-demo/dpms.c
@@ -4,8 +4,8 @@
* for licensing information.
*/
-#include <xcb.h>
-#include <xcb_dpms.h>
+#include <X11/XCB/xcb.h>
+#include <X11/XCB/xcb_dpms.h>
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
diff --git a/xcb-demo/hypnomoire.c b/xcb-demo/hypnomoire.c
index 68df195..01f585a 100644
--- a/xcb-demo/hypnomoire.c
+++ b/xcb-demo/hypnomoire.c
@@ -4,7 +4,7 @@
* for licensing information.
*/
-#include <xcb.h>
+#include <X11/XCB/xcb.h>
#include "reply_formats.h"
#include <math.h>
#include <stdlib.h> /* for free(3) */
diff --git a/xcb-demo/main.c b/xcb-demo/main.c
index 7460318..326053f 100644
--- a/xcb-demo/main.c
+++ b/xcb-demo/main.c
@@ -22,8 +22,8 @@
#include <stdlib.h>
-#include <xcb.h>
-#include <xcb_event.h>
+#include <X11/XCB/xcb.h>
+#include <X11/XCB/xcb_event.h>
#include "reply_formats.h"
void try_events(XCBConnection *c);
diff --git a/xcb-demo/reply_formats.h b/xcb-demo/reply_formats.h
index 8f2cfcb..e8aa9b0 100644
--- a/xcb-demo/reply_formats.h
+++ b/xcb-demo/reply_formats.h
@@ -7,7 +7,7 @@
#ifndef REPLY_FORMATS_H
#define REPLY_FORMATS_H
-#include <xcb.h>
+#include <X11/XCB/xcb.h>
int formatGetWindowAttributesReply(WINDOW wid, XCBGetWindowAttributesRep *reply);
int formatGetGeometryReply(WINDOW wid, XCBGetGeometryRep *reply);
diff --git a/xcb-demo/xdpyinfo.c b/xcb-demo/xdpyinfo.c
index d1f2e3a..5d76c2f 100644
--- a/xcb-demo/xdpyinfo.c
+++ b/xcb-demo/xdpyinfo.c
@@ -1,4 +1,4 @@
-#include <xcb.h>
+#include <X11/XCB/xcb.h>
#include <stdio.h>
XCBConnection *c;