chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / vt102.h
index 5a2d68603d73762b834ce3bd6a77b460ef76091c..6942175a589b7f09f56dbfb90fa81182759c3737 100644 (file)
@@ -12,6 +12,9 @@
 
 /*
  * $Log$
+ * Revision 1.3  2008/02/04 20:23:55  james
+ * *** empty log message ***
+ *
  * Revision 1.2  2008/02/04 02:05:06  james
  * *** empty log message ***
  *
 
 #define VT102_CSI_LEN 128
 
+#define VT102_ROWS     24
+#define VT102_COLS     80
+#define VT102_STATUS_ROW       24
+
 typedef struct
 {
   int in_escape;
@@ -35,6 +42,8 @@ typedef struct
 
 typedef struct
 {
+  CRT_Pos top_margin,bottom_margin;
+  CRT_Pos screen_start,screen_end;
   VT102_parser parser;
   int attr;
   CRT crt;