aboutsummaryrefslogtreecommitdiffstats
path: root/src/vt102.h
diff options
context:
space:
mode:
authorjames <>2008-02-04 20:23:55 +0000
committerjames <>2008-02-04 20:23:55 +0000
commit28a52b2df7761bd97d74938d582b1f678d23c756 (patch)
tree731cb3fc7bfe081dd49264142def881b0adf2776 /src/vt102.h
parenta1b65048ff1a96b50d30d327c969e10b77856499 (diff)
downloadsympathy-28a52b2df7761bd97d74938d582b1f678d23c756.tar.gz
sympathy-28a52b2df7761bd97d74938d582b1f678d23c756.tar.bz2
sympathy-28a52b2df7761bd97d74938d582b1f678d23c756.zip
*** empty log message ***
Diffstat (limited to 'src/vt102.h')
-rw-r--r--src/vt102.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vt102.h b/src/vt102.h
index 5a2d686..6942175 100644
--- a/src/vt102.h
+++ b/src/vt102.h
@@ -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 ***
*
@@ -25,6 +28,10 @@
#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;