1 /*
2   Infocom
3   Remaining ITF constant definitions
4   JBS 15 June 1994
5 */
6 
7 #ifndef _INFOCOM_
8 
9 #define _INFOCOM_
10 
11 #define MAX_LINE_LENGTH		((word)0x0200)
12 
13 /*
14 **      Enhanced and Plus Series Windowing Definitions.
15 */
16 
17 #define STATUS_WINDOW		((word)0)
18 #define TEXT_WINDOW		((word)1)
19 #define FULL_SCREEN		((word)2)
20 #define STD_TOP_SCREEN_LINE	((word)1)
21 #define PLUS_TOP_SCREEN_LINE	((word)0)
22 
23 /* Header bits */
24 
25 #define USE_TIME                ((byte)0x02)
26 #define SCREEN_MODES            ((byte)0x20)
27 
28 #endif
29