995
|
1 /* #define WFDEBUG 0 /* Window flag debug. */
|
|
2
|
|
3 typedef struct VIDEO {
|
|
4 short v_flag; /* Flags */
|
|
5 char v_text[1]; /* Screen data. */
|
|
6 } VIDEO;
|
|
7
|
|
8 #define VFCHG 0x0001 /* Changed. */
|
|
9
|
|
10 #ifdef DISPLAY1
|
|
11 int sgarbf = TRUE; /* TRUE if screen is garbage */
|
|
12 int mpresf = FALSE; /* TRUE if message in last line */
|
|
13 int vtrow = 0; /* Row location of SW cursor */
|
|
14 int vtcol = 0; /* Column location of SW cursor */
|
|
15 int ttrow = HUGE; /* Row location of HW cursor */
|
|
16 int ttcol = HUGE; /* Column location of HW cursor */
|
|
17 #else
|
|
18 extern int sgarbf; /* TRUE if screen is garbage */
|
|
19 extern int mpresf; /* TRUE if message in last line */
|
|
20 extern int vtrow; /* Row location of SW cursor */
|
|
21 extern int vtcol; /* Column location of SW cursor */
|
|
22 extern int ttrow; /* Row location of HW cursor */
|
|
23 extern int ttcol; /* Column location of HW cursor */
|
|
24 #endif
|
|
25
|