summaryrefslogtreecommitdiff
path: root/src/x11term.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/x11term.h')
-rw-r--r--src/x11term.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/x11term.h b/src/x11term.h
new file mode 100644
index 00000000000..46731d99e87
--- /dev/null
+++ b/src/x11term.h
@@ -0,0 +1,22 @@
+#include <X11/Xlib.h>
+#include <X11/Xatom.h>
+#include <X11/keysym.h>
+#include <X11/cursorfont.h>
+#include <X11/Xutil.h>
+#include "emacssignal.h"
+
+#define XMOUSEBUFSIZE 64
+
+#define BLOCK_INPUT_DECLARE() SIGMASKTYPE BLOCK_INPUT_mask
+#ifdef SIGIO
+#define BLOCK_INPUT() BLOCK_INPUT_mask = sigblock (sigmask (SIGIO))
+#define UNBLOCK_INPUT() sigsetmask (BLOCK_INPUT_mask)
+#else /* not SIGIO */
+#define BLOCK_INPUT() stop_polling ()
+#define UNBLOCK_INPUT() start_polling ()
+#endif /* SIGIO */
+
+#define CLASS "Emacs" /* class id for GNU Emacs, used in .Xdefaults, etc. */
+
+extern char *black_color;
+extern char *white_color;