aboutsummaryrefslogtreecommitdiffstats
path: root/src/vt102.h
diff options
context:
space:
mode:
authorjames <>2008-02-24 12:22:53 +0000
committerjames <>2008-02-24 12:22:53 +0000
commit14fcafccf11252b4147f587a499b9b38706eb6e1 (patch)
treefc73eb197f072fd4655d8bacc41c9353e6303e26 /src/vt102.h
parent410f04a5c0a6837c575d6b2cc04d49293a6558aa (diff)
downloadsympathy-14fcafccf11252b4147f587a499b9b38706eb6e1.tar.gz
sympathy-14fcafccf11252b4147f587a499b9b38706eb6e1.tar.bz2
sympathy-14fcafccf11252b4147f587a499b9b38706eb6e1.zip
*** empty log message ***
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