chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / vt102.h
index fcf7aca690c6a08f7f73d836da1dfb2efc44d04f..e8caf5ed291ca57f3296ad4f2dd12d9b67aa1e0d 100644 (file)
 
 /*
  * $Log$
+ * Revision 1.10  2008/02/07 12:16:04  james
+ * *** empty log message ***
+ *
+ * Revision 1.9  2008/02/07 01:57:46  james
+ * *** empty log message ***
+ *
  * Revision 1.8  2008/02/07 00:39:13  james
  * *** empty log message ***
  *
@@ -55,12 +61,14 @@ typedef struct
   int in_csi;
   int csi_ptr;
   char csi_buf[VT102_CSI_LEN];
+  int in_scs;
 } VT102_parser;
 
 typedef struct
 {
   CRT_Pos pos;
   int attr;
+  int color;
   int origin_mode;
 } VT102_State;
 
@@ -71,6 +79,7 @@ typedef struct
   CRT_Pos screen_start, screen_end;
   VT102_parser parser;
   int attr;
+  int color;
   CRT crt;
 
   int pending_wrap;