xcbext.h revision 602e473d
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 68602e473dSmrg * external socket owner, flushes any output queues if appropriate, and 69602e473dSmrg * then returns the sequence number of the last request sent over the 70602e473dSmrg * socket. */ 71602e473dSmrgint xcb_take_socket(xcb_connection_t *c, void (*return_socket)(void *closure), void *closure, int flags, uint64_t *sent); 72602e473dSmrg 73602e473dSmrg/* You must own the write-side of the socket (you've called 74602e473dSmrg * xcb_take_socket, and haven't returned from return_socket yet) to call 75602e473dSmrg * xcb_writev. Also, the iovec must have at least 1 byte of data in it. 76602e473dSmrg * */ 77602e473dSmrgint xcb_writev(xcb_connection_t *c, struct iovec *vector, int count, uint64_t requests); 78602e473dSmrg 79602e473dSmrg 80602e473dSmrg/* xcb_in.c */ 81602e473dSmrg 82602e473dSmrgvoid *xcb_wait_for_reply(xcb_connection_t *c, unsigned int request, xcb_generic_error_t **e); 83602e473dSmrgint xcb_poll_for_reply(xcb_connection_t *c, unsigned int request, void **reply, xcb_generic_error_t **error); 84602e473dSmrg 85602e473dSmrg 86602e473dSmrg/* xcb_util.c */ 87602e473dSmrg 88602e473dSmrgint xcb_popcount(uint32_t mask); 89602e473dSmrg 90602e473dSmrg#ifdef __cplusplus 91602e473dSmrg} 92602e473dSmrg#endif 93602e473dSmrg 94602e473dSmrg#endif 95