aboutsummaryrefslogtreecommitdiffstats
path: root/src/ansi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ansi.h')
-rw-r--r--src/ansi.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/ansi.h b/src/ansi.h
index 7aa5935..44fd61a 100644
--- a/src/ansi.h
+++ b/src/ansi.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.8 2008/02/20 19:25:09 james
+ * *** empty log message ***
+ *
* Revision 1.7 2008/02/13 16:57:29 james
* *** empty log message ***
*
@@ -51,7 +54,10 @@ typedef struct
int escape_ptr;
} ANSI_Parser;
-typedef struct
+struct CRT_struct;
+struct Context_struct;
+
+typedef struct ANSI_struct
{
ANSI_Parser parser;
@@ -66,6 +72,11 @@ typedef struct
int history_ptr;
+
+ void (*dispatch)(struct ANSI_struct *,struct Context_struct *);
+ void (*update)(struct ANSI_struct *,struct CRT_struct *);
+ void (*reset)(struct ANSI_struct *,struct CRT_struct *);
+ void (*terminal_reset)(struct ANSI_struct *);
} ANSI;