summaryrefslogtreecommitdiffstats
path: root/src/vt100.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-09-13 14:10:31 -0400
committerJesse Luehrs <doy@tozt.net>2014-09-13 14:10:31 -0400
commitcb0744e81c4577cf2a3e4ff41e431a053bb12b57 (patch)
tree9640f889f74d6fe4e3bcf9840c0c42964b357fde /src/vt100.h
downloadlibvt100-cb0744e81c4577cf2a3e4ff41e431a053bb12b57.tar.gz
libvt100-cb0744e81c4577cf2a3e4ff41e431a053bb12b57.zip
initial commit, splitting this out from runes
Diffstat (limited to 'src/vt100.h')
-rw-r--r--src/vt100.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/vt100.h b/src/vt100.h
new file mode 100644
index 0000000..12bbb7c
--- /dev/null
+++ b/src/vt100.h
@@ -0,0 +1,12 @@
+#ifndef _VT100_H
+#define _VT100_H
+
+struct vt100_screen;
+
+typedef struct vt100_screen VT100Screen;
+
+#include "screen.h"
+
+#define UNUSED(x) ((void)x)
+
+#endif