diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-03-03 11:08:10 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-03-03 11:08:10 -0800 |
commit | 29f9fe0fc805a1ec6860f167a45664cc1cf0c769 (patch) | |
tree | 1355f5342b580c93ecabd08cbfb9823ab594fd83 /src/xcbext.h | |
parent | 255c21b17f61147388bab6e1d42623a008a4a8d2 (diff) |
API/ABI change: XCBSendRequest returns the sequence number instead of using an out-parameter. Now 0 is a special sequence number indicating failure.
Diffstat (limited to 'src/xcbext.h')
-rw-r--r-- | src/xcbext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xcbext.h b/src/xcbext.h index 72dff64..fb169cf 100644 --- a/src/xcbext.h +++ b/src/xcbext.h @@ -56,7 +56,7 @@ enum XCBSendRequestFlags { XCB_REQUEST_RAW = 1 << 1 }; -int XCBSendRequest(XCBConnection *c, unsigned int *sequence, int flags, struct iovec *vector, const XCBProtocolRequest *request); +unsigned int XCBSendRequest(XCBConnection *c, int flags, struct iovec *vector, const XCBProtocolRequest *request); /* xcb_in.c */ |