aboutsummaryrefslogtreecommitdiffstats
path: root/src/vt102.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vt102.h')
-rw-r--r--src/vt102.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/vt102.h b/src/vt102.h
index d12182a..2f7867d 100644
--- a/src/vt102.h
+++ b/src/vt102.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.16 2008/02/24 12:22:42 james
+ * *** empty log message ***
+ *
* Revision 1.15 2008/02/24 00:42:53 james
* *** empty log message ***
*
@@ -69,15 +72,20 @@
#define VT102_STATUS_ROW 24
#define VT102_NMODES 32
+#define VT102_DCA_LEN 16
typedef struct
{
int in_escape;
int in_csi;
- int csi_ptr;
+ int in_dca;
int ignore_until_bell;
+
+ int csi_ptr;
char csi_buf[VT102_CSI_LEN];
+ int dca_ptr;
+ char dca_buf[VT102_DCA_LEN];
} VT102_parser;
typedef struct