1 /*
2  *	x11.h
3  *	X11-specific functions
4  *	AYM 1999-08-03
5  */
6 
7 
8 /* Declarations that don't rely on the X11 headers */
9 #if defined Y_X11 && ! defined Y_X11_H1
10 #define Y_X11_H1
11 void x_bell ();
12 void x_catch_on ();
13 void x_catch_off ();
14 void x_clear_error ();
15 const char *x_error ();
16 #endif
17 
18 
19 /* Declarations that do */
20 #if defined Y_X11 && defined X_PROTOCOL && ! defined Y_X11_H2
21 #define Y_X11_H2
22 int x_error_handler (Display *dpy, XErrorEvent *e);
23 #endif
24 
25 
26