blob: 74b236fbdaf5bfeb4a5b21a7a4f93d41ea200c7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __xerror_h
#define __xerror_h
#include <X11/Xlib.h>
#include <glib.h>
int xerror_handler(Display *, XErrorEvent *);
void xerror_set_ignore(gboolean ignore);
#endif
|