home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / xcb / xcbxlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-09-17  |  1.8 KB  |  45 lines

  1. /*
  2.  * Copyright (C) 2005 Bart Massey and Jamey Sharp.
  3.  * All Rights Reserved.
  4.  *
  5.  * Permission is hereby granted, free of charge, to any person obtaining a
  6.  * copy of this software and associated documentation files (the "Software"),
  7.  * to deal in the Software without restriction, including without limitation
  8.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9.  * and/or sell copies of the Software, and to permit persons to whom the
  10.  * Software is furnished to do so, subject to the following conditions:
  11.  * 
  12.  * The above copyright notice and this permission notice shall be included in
  13.  * all copies or substantial portions of the Software.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18.  * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  19.  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  20.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21.  * 
  22.  * Except as contained in this notice, the names of the authors or their
  23.  * institutions shall not be used in advertising or otherwise to promote the
  24.  * sale, use or other dealings in this Software without prior written
  25.  * authorization from the authors.
  26.  */
  27.  
  28. /* This include file declares functions used by Xlib/XCB, but nothing else
  29.  * should ever use these functions or link to libxcb-xlib. */
  30.  
  31. #ifndef __XCBXLIB_H
  32. #define __XCBXLIB_H
  33.  
  34. #include <pthread.h>
  35. #include "xcb.h"
  36.  
  37. /* The caller of this function must hold the xlib lock, using the lock
  38.  * functions below. */
  39. unsigned int xcb_get_request_sent(xcb_connection_t *c);
  40.  
  41. void xcb_xlib_lock(xcb_connection_t *c);
  42. void xcb_xlib_unlock(xcb_connection_t *c);
  43.  
  44. #endif
  45.