14 lines
243 B
C
14 lines
243 B
C
#ifndef __xerror_h
|
|
#define __xerror_h
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <glib.h>
|
|
|
|
/* can be used to track errors */
|
|
extern gboolean xerror_occured;
|
|
|
|
int xerror_handler(Display *, XErrorEvent *);
|
|
|
|
void xerror_set_ignore(gboolean ignore);
|
|
|
|
#endif
|