aboutsummaryrefslogtreecommitdiffstats
path: root/src/ansi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ansi.h')
-rw-r--r--src/ansi.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ansi.h b/src/ansi.h
new file mode 100644
index 0000000..b687ac6
--- /dev/null
+++ b/src/ansi.h
@@ -0,0 +1,38 @@
+/*
+ * ansi.h:
+ *
+ * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
+ * All rights reserved.
+ *
+ */
+
+/*
+ * $Id$
+ */
+
+/*
+ * $Log$
+ * Revision 1.1 2008/02/03 23:31:25 james
+ * *** empty log message ***
+ *
+ */
+
+#ifndef __ANSI_H__
+#define __ANSI_H__
+
+#define ANSI_INVAL -1
+
+typedef struct {
+int fd;
+
+CRT crt;
+CRT_Pos pos;
+CRT_Pos size;
+int hide_cursor;
+
+int attr;
+
+} ANSI;
+
+
+#endif /* __ANSI_H__ */