From bce72f63d2dfb61661f81e305ad3a7db0334403c Mon Sep 17 00:00:00 2001 From: Jeetu Golani Date: Fri, 26 Mar 2010 09:40:09 +0530 Subject: Win32 code for xcb-1.5 --- src/xcb_auth.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/xcb_auth.c') diff --git a/src/xcb_auth.c b/src/xcb_auth.c index 104f2f0..a52f922 100644 --- a/src/xcb_auth.c +++ b/src/xcb_auth.c @@ -27,13 +27,18 @@ #include #include -#include -#include -#include #include #include #include +#ifdef _WIN32 +#include "windefs.h" +#else +#include +#include +#include +#endif /* _WIN32 */ + #include "xcb.h" #include "xcbint.h" -- cgit v1.2.3 From 36c9a985aaee655c118c9f7b8425d3ac9ce0f840 Mon Sep 17 00:00:00 2001 From: Jeetu Golani Date: Mon, 29 Mar 2010 22:31:49 +0530 Subject: windefs.h is now called xcb_windefs.h - changed all includes to reflect that.Replaced one instance ofWIN32 with _WIN32 in each xcb_in.c and xcb_conn.c --- src/xcb_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xcb_auth.c') diff --git a/src/xcb_auth.c b/src/xcb_auth.c index a52f922..8fcfafd 100644 --- a/src/xcb_auth.c +++ b/src/xcb_auth.c @@ -32,7 +32,7 @@ #include #ifdef _WIN32 -#include "windefs.h" +#include "xcb_windefs.h" #else #include #include -- cgit v1.2.3