xcbext.h revision 21298544
1602e473dSmrg/* 2602e473dSmrg * Copyright (C) 2001-2004 Bart Massey and Jamey Sharp. 3602e473dSmrg * All Rights Reserved. 4602e473dSmrg * 5602e473dSmrg * Permission is hereby granted, free of charge, to any person obtaining a 6602e473dSmrg * copy of this software and associated documentation files (the "Software"), 7602e473dSmrg * to deal in the Software without restriction, including without limitation 8602e473dSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9602e473dSmrg * and/or sell copies of the Software, and to permit persons to whom the 10602e473dSmrg * Software is furnished to do so, subject to the following conditions: 11602e473dSmrg * 12602e473dSmrg * The above copyright notice and this permission notice shall be included in 13602e473dSmrg * all copies or substantial portions of the Software. 14602e473dSmrg * 15602e473dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16602e473dSmrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17602e473dSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18602e473dSmrg * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 19602e473dSmrg * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20602e473dSmrg * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21602e473dSmrg * 22602e473dSmrg * Except as contained in this notice, the names of the authors or their 23602e473dSmrg * institutions shall not be used in advertising or otherwise to promote the 24602e473dSmrg * sale, use or other dealings in this Software without prior written 25602e473dSmrg * authorization from the authors. 26602e473dSmrg */ 27602e473dSmrg 28602e473dSmrg#ifndef __XCBEXT_H 29602e473dSmrg#define __XCBEXT_H 30602e473dSmrg 31602e473dSmrg#include "xcb.h" 32602e473dSmrg 33602e473dSmrg#ifdef __cplusplus 34602e473dSmrgextern "C" { 35602e473dSmrg#endif 36602e473dSmrg 37602e473dSmrg/* xcb_ext.c */ 38602e473dSmrg 39602e473dSmrgstruct xcb_extension_t { 40602e473dSmrg const char *name; 41602e473dSmrg int global_id; 42602e473dSmrg}; 43602e473dSmrg 44602e473dSmrg 45602e473dSmrg/* xcb_out.c */ 46602e473dSmrg 47602e473dSmrgtypedef struct { 48602e473dSmrg size_t count; 49602e473dSmrg xcb_extension_t *ext; 50602e473dSmrg uint8_t opcode; 51602e473dSmrg uint8_t isvoid; 52602e473dSmrg} xcb_protocol_request_t; 53602e473dSmrg 54602e473dSmrgenum xcb_send_request_flags_t { 55602e473dSmrg XCB_REQUEST_CHECKED = 1 << 0, 56602e473dSmrg XCB_REQUEST_RAW = 1 << 1, 57602e473dSmrg XCB_REQUEST_DISCARD_REPLY = 1 << 2 58602e473dSmrg}; 59602e473dSmrg 60602e473dSmrgunsigned int xcb_send_request(xcb_connection_t *c, int flags, struct iovec *vector, const xcb_protocol_request_t *request); 61602e473dSmrg 62602e473dSmrg/* xcb_take_socket allows external code to ask XCB for permission to 63602e473dSmrg * take over the write side of the socket and send raw data with 64602e473dSmrg * xcb_writev. xcb_take_socket provides the sequence number of the last 65602e473dSmrg * request XCB sent. The caller of xcb_take_socket must supply a 66602e473dSmrg * callback which XCB can call when it wants the write side of the 67602e473dSmrg * socket back to make a request. This callback synchronizes with the 6821298544Smrg * external socket owner and flushes any output queues if appropriate. 6921298544Smrg * If you are sending requests which won't cause a reply, please note the 7021298544Smrg * comment for xcb_writev which explains some sequence number wrap issues. 7121298544Smrg * */ 72602e473dSmrgint xcb_take_socket(xcb_connection_t *c, void (*return_socket)(void *closure), void *closure, int flags, uint64_t *sent); 73602e473dSmrg 74602e473dSmrg/* You must own the write-side of the socket (you've called 75602e473dSmrg * xcb_take_socket, and haven't returned from return_socket yet) to call 76602e473dSmrg * xcb_writev. Also, the iovec must have at least 1 byte of data in it. 7721298544Smrg * You have to make sure that xcb can detect sequence number wraps correctly. 7821298544Smrg * This means that the first request you send after xcb_take_socket must cause a 7921298544Smrg * reply (e.g. just insert a GetInputFocus request). After every (1 << 16) - 1 8021298544Smrg * requests without a reply, you have to insert a request which will cause a 8121298544Smrg * reply. You can again use GetInputFocus for this. You do not have to wait for 8221298544Smrg * any of the GetInputFocus replies, but can instead handle them via 8321298544Smrg * xcb_discard_reply(). */ 84602e473dSmrgint xcb_writev(xcb_connection_t *c, struct iovec *vector, int count, uint64_t requests); 85602e473dSmrg 86602e473dSmrg 87602e473dSmrg/* xcb_in.c */ 88602e473dSmrg 89602e473dSmrgvoid *xcb_wait_for_reply(xcb_connection_t *c, unsigned int request, xcb_generic_error_t **e); 90602e473dSmrgint xcb_poll_for_reply(xcb_connection_t *c, unsigned int request, void **reply, xcb_generic_error_t **error); 91602e473dSmrg 92602e473dSmrg 93602e473dSmrg/* xcb_util.c */ 94602e473dSmrg 95602e473dSmrgint xcb_popcount(uint32_t mask); 9621298544Smrgint xcb_sumof(uint8_t *list, int len); 97602e473dSmrg 98602e473dSmrg#ifdef __cplusplus 99602e473dSmrg} 100602e473dSmrg#endif 101602e473dSmrg 102602e473dSmrg#endif 103