jpayne@69
|
1 /*
|
jpayne@69
|
2 * Copyright 1992 Network Computing Devices
|
jpayne@69
|
3 *
|
jpayne@69
|
4 * Permission to use, copy, modify, distribute, and sell this software and its
|
jpayne@69
|
5 * documentation for any purpose is hereby granted without fee, provided that
|
jpayne@69
|
6 * the above copyright notice appear in all copies and that both that
|
jpayne@69
|
7 * copyright notice and this permission notice appear in supporting
|
jpayne@69
|
8 * documentation, and that the name of NCD. not be used in advertising or
|
jpayne@69
|
9 * publicity pertaining to distribution of the software without specific,
|
jpayne@69
|
10 * written prior permission. NCD. makes no representations about the
|
jpayne@69
|
11 * suitability of this software for any purpose. It is provided "as is"
|
jpayne@69
|
12 * without express or implied warranty.
|
jpayne@69
|
13 *
|
jpayne@69
|
14 * NCD. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
|
jpayne@69
|
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NCD.
|
jpayne@69
|
16 * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
jpayne@69
|
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
jpayne@69
|
18 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
jpayne@69
|
19 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
jpayne@69
|
20 *
|
jpayne@69
|
21 */
|
jpayne@69
|
22
|
jpayne@69
|
23 #ifndef _XLBX_H_
|
jpayne@69
|
24 #define _XLBX_H_
|
jpayne@69
|
25
|
jpayne@69
|
26 #include <X11/Xfuncproto.h>
|
jpayne@69
|
27 #include <X11/Xdefs.h>
|
jpayne@69
|
28 #include <X11/Xlib.h>
|
jpayne@69
|
29 #include <X11/extensions/lbx.h>
|
jpayne@69
|
30
|
jpayne@69
|
31 _XFUNCPROTOBEGIN
|
jpayne@69
|
32
|
jpayne@69
|
33 Bool XLbxQueryExtension(
|
jpayne@69
|
34 Display* /* dpy */,
|
jpayne@69
|
35 int* /* requestp */,
|
jpayne@69
|
36 int* /* event_basep */,
|
jpayne@69
|
37 int* /* error_basep */
|
jpayne@69
|
38 );
|
jpayne@69
|
39
|
jpayne@69
|
40 Bool XLbxQueryVersion(
|
jpayne@69
|
41 Display* /* dpy */,
|
jpayne@69
|
42 int* /* majorVersion */,
|
jpayne@69
|
43 int* /* minorVersion */
|
jpayne@69
|
44 );
|
jpayne@69
|
45
|
jpayne@69
|
46 int XLbxGetEventBase(Display *dpy);
|
jpayne@69
|
47
|
jpayne@69
|
48 _XFUNCPROTOEND
|
jpayne@69
|
49
|
jpayne@69
|
50 #endif
|