X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fxcb.h;h=f720469ec9f4c96790a846a6cb3c05c54f1939b7;hb=b7c96681b2bfc968b198058122c93050feb7927e;hp=8e990fdb236fd00beef3f77c26b65d14097c61c5;hpb=e6132aff2fdcd0ab1ef5d7ac84a3c597dc07d370;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcb.h b/src/xcb.h index 8e990fd..f720469 100644 --- a/src/xcb.h +++ b/src/xcb.h @@ -25,12 +25,15 @@ * authorization from the authors. */ -#ifndef __XCB_H -#define __XCB_H +#ifndef __XCB_H__ +#define __XCB_H__ #include -/* TODO: check for stdint in config? (HAVE_STDINT) fallback? */ +#if defined(__solaris__) +#include +#else #include +#endif /* FIXME: these names conflict with those defined in Xmd.h. */ #ifndef XMD_H @@ -44,14 +47,15 @@ typedef int16_t INT16; typedef int32_t INT32; #endif /* XMD_H */ -#include #include #include + #ifdef __cplusplus extern "C" { #endif + #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) #define deprecated __attribute__((__deprecated__)) #else @@ -154,8 +158,7 @@ typedef struct { } XCBVoidCookie; -/* Include the generated xproto and xcb_types headers. */ -#include "xcb_types.h" +/* Include the generated xproto header. */ #include "xproto.h" @@ -477,11 +480,11 @@ XCBConnection *XCBConnectToDisplayWithAuthInfo(const char *display, XCBAuthInfo * @param e: A pointer to an error. * @return @c 1 on success, @c 0 otherwise. * - * Blocks the calling thread for the duration of one round trip to the - * server, ensuring that all events and errors caused by previous - * requests are available to XCB. + * @deprecated This function is deprecated. It must not be used in + * newly written code. XCBFlush is more efficient. + * Use XCBAuxSync if absolutely necessary. */ -int XCBSync(XCBConnection *c, XCBGenericError **e); +int XCBSync(XCBConnection *c, XCBGenericError **e) deprecated; /** @@ -534,4 +537,5 @@ XCBGenericIter XCBConnSetupSuccessRepEnd(XCBSetupIter i) deprecated; } #endif -#endif + +#endif /* __XCB_H__ */