X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fxcb.h;h=85d065884c02652e9316a9fb8d879d7eaee11d9c;hb=62749d54fd79b12123607599d58add126ce5de6e;hp=204164ad410c470554036f5e095abe88913f90be;hpb=df5d8adc1f18776e4417a03b465dae9273511fb1;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcb.h b/src/xcb.h index 204164a..85d0658 100644 --- a/src/xcb.h +++ b/src/xcb.h @@ -25,8 +25,8 @@ * 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? */ @@ -48,10 +48,12 @@ typedef int32_t INT32; #include #include + #ifdef __cplusplus extern "C" { #endif + #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) #define deprecated __attribute__((__deprecated__)) #else @@ -83,13 +85,6 @@ extern "C" { #define XCB_TYPE_PAD(T,I) (-(I) & (sizeof(T) > 4 ? 3 : sizeof(T) - 1)) - -/** XCBNone is the universal null resource or null atom parameter value for many core X requests */ -#define XCBNone 0L - -/** XCBCopyFromParent can be used for many CreateWindow parameters */ -#define XCBCopyFromParent 0L - /* Opaque structures */ /** @@ -166,6 +161,19 @@ typedef struct { #include "xproto.h" +/** XCBNone is the universal null resource or null atom parameter value for many core X requests */ +#define XCBNone 0L + +/** XCBCopyFromParent can be used for many CreateWindow parameters */ +#define XCBCopyFromParent 0L + +/** XCBCurrentTime can be used in most requests that take an XCBTIMESTAMP */ +#define XCBCurrentTime 0L + +/** XCBNoSymbol fills in unused entries in XCBKEYSYM tables */ +#define XCBNoSymbol 0L + + /* xcb_auth.c */ /** @@ -273,9 +281,10 @@ XCBGenericEvent *XCBPollForEvent(XCBConnection *c, int *error); * processed. This function enables applications to determine whether * forcing a cookie is going to block. * - * @todo review that function. + * @deprecated This function is deprecated in favor of XCBPollForReply. + * It must not be used in newly written code. */ -unsigned int XCBGetRequestRead(XCBConnection *c); +unsigned int XCBGetRequestRead(XCBConnection *c) deprecated; /* xcb_ext.c */ @@ -289,7 +298,7 @@ typedef struct XCBExtension XCBExtension; /**< Opaque structure used as key for * @brief Caches reply information from QueryExtension requests. * @param c: The connection. * @param ext: The extension data. - * @return A pointer to a XCBConnSetupSuccessRep pointer. + * @return A pointer to the XCBQueryExtensionRep for the extension. * * This function is the primary interface to the "extension cache", * which caches reply information from QueryExtension @@ -322,7 +331,7 @@ void XCBPrefetchExtensionData(XCBConnection *c, XCBExtension *ext); /** * @brief Access the data returned by the server. * @param c: The connection. - * @return A pointer to a XCBConnSetupSuccessRep pointer. + * @return A pointer to an XCBSetup structure. * * Accessor for the data returned by the server when the XCBConnection * was initialized. This data includes @@ -337,7 +346,7 @@ void XCBPrefetchExtensionData(XCBConnection *c, XCBExtension *ext); * * The result must not be freed. */ -const XCBConnSetupSuccessRep *XCBGetSetup(XCBConnection *c); +const XCBSetup *XCBGetSetup(XCBConnection *c); /** * @brief Access the file descriptor of the connection. @@ -470,11 +479,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; /** @@ -482,8 +491,50 @@ int XCBSync(XCBConnection *c, XCBGenericError **e); */ +/* Old names for connection-setup types, to be removed before 1.0. */ + +typedef XCBSetupReq XCBConnSetupReq deprecated; +typedef XCBSetupReqIter XCBConnSetupReqIter deprecated; +typedef XCBSetupFailed XCBConnSetupFailedRep deprecated; +typedef XCBSetupFailedIter XCBConnSetupFailedRepIter deprecated; +typedef XCBSetupAuthenticate XCBConnSetupAuthenticateRep deprecated; +typedef XCBSetupAuthenticateIter XCBConnSetupAuthenticateRepIter deprecated; +typedef XCBSetup XCBConnSetupSuccessRep deprecated; +typedef XCBSetupIter XCBConnSetupSuccessRepIter deprecated; + +char *XCBConnSetupReqAuthorizationProtocolName(XCBSetupReq *R) deprecated; +int XCBConnSetupReqAuthorizationProtocolNameLength(XCBSetupReq *R) deprecated; +XCBGenericIter XCBConnSetupReqAuthorizationProtocolNameEnd(XCBSetupReq *R) deprecated; +char *XCBConnSetupReqAuthorizationProtocolData(XCBSetupReq *R) deprecated; +int XCBConnSetupReqAuthorizationProtocolDataLength(XCBSetupReq *R) deprecated; +XCBGenericIter XCBConnSetupReqAuthorizationProtocolDataEnd(XCBSetupReq *R) deprecated; +void XCBConnSetupReqNext(XCBSetupReqIter *i) deprecated; +XCBGenericIter XCBConnSetupReqEnd(XCBSetupReqIter i) deprecated; +char *XCBConnSetupFailedRepReason(XCBSetupFailed *R) deprecated; +int XCBConnSetupFailedRepReasonLength(XCBSetupFailed *R) deprecated; +XCBGenericIter XCBConnSetupFailedRepReasonEnd(XCBSetupFailed *R) deprecated; +void XCBConnSetupFailedRepNext(XCBSetupFailedIter *i) deprecated; +XCBGenericIter XCBConnSetupFailedRepEnd(XCBSetupFailedIter i) deprecated; +char *XCBConnSetupAuthenticateRepReason(XCBSetupAuthenticate *R) deprecated; +int XCBConnSetupAuthenticateRepReasonLength(XCBSetupAuthenticate *R) deprecated; +XCBGenericIter XCBConnSetupAuthenticateRepReasonEnd(XCBSetupAuthenticate *R) deprecated; +void XCBConnSetupAuthenticateRepNext(XCBSetupAuthenticateIter *i) deprecated; +XCBGenericIter XCBConnSetupAuthenticateRepEnd(XCBSetupAuthenticateIter i) deprecated; +char *XCBConnSetupSuccessRepVendor(XCBSetup *R) deprecated; +int XCBConnSetupSuccessRepVendorLength(XCBSetup *R) deprecated; +XCBGenericIter XCBConnSetupSuccessRepVendorEnd(XCBSetup *R) deprecated; +XCBFORMAT *XCBConnSetupSuccessRepPixmapFormats(XCBSetup *R) deprecated; +int XCBConnSetupSuccessRepPixmapFormatsLength(XCBSetup *R) deprecated; +XCBFORMATIter XCBConnSetupSuccessRepPixmapFormatsIter(XCBSetup *R) deprecated; +int XCBConnSetupSuccessRepRootsLength(XCBSetup *R) deprecated; +XCBSCREENIter XCBConnSetupSuccessRepRootsIter(XCBSetup *R) deprecated; +void XCBConnSetupSuccessRepNext(XCBSetupIter *i) deprecated; +XCBGenericIter XCBConnSetupSuccessRepEnd(XCBSetupIter i) deprecated; + + #ifdef __cplusplus } #endif -#endif + +#endif /* __XCB_H__ */