Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:14:23

0001 /*
0002  * Copyright 1992 Network Computing Devices
0003  *
0004  * Permission to use, copy, modify, distribute, and sell this software and its
0005  * documentation for any purpose is hereby granted without fee, provided that
0006  * the above copyright notice appear in all copies and that both that
0007  * copyright notice and this permission notice appear in supporting
0008  * documentation, and that the name of NCD. not be used in advertising or
0009  * publicity pertaining to distribution of the software without specific,
0010  * written prior permission.  NCD. makes no representations about the
0011  * suitability of this software for any purpose.  It is provided "as is"
0012  * without express or implied warranty.
0013  *
0014  * NCD. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
0015  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NCD.
0016  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
0017  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
0018  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
0019  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
0020  *
0021  */
0022 
0023 #ifndef _XLBX_H_
0024 #define _XLBX_H_
0025 
0026 #include <X11/Xfuncproto.h>
0027 #include <X11/Xdefs.h>
0028 #include <X11/Xlib.h>
0029 #include <X11/extensions/lbx.h>
0030 
0031 _XFUNCPROTOBEGIN
0032 
0033 Bool XLbxQueryExtension(
0034     Display*        /* dpy */,
0035     int*        /* requestp */,
0036     int*        /* event_basep */,
0037     int*        /* error_basep */
0038 );
0039 
0040 Bool XLbxQueryVersion(
0041     Display*        /* dpy */,
0042     int*        /* majorVersion */,
0043     int*        /* minorVersion */
0044 );
0045 
0046 int XLbxGetEventBase(Display *dpy);
0047 
0048 _XFUNCPROTOEND
0049 
0050 #endif