home *** CD-ROM | disk | FTP | other *** search
- /*
- * VT100.H
- *
- * Written for the
- *
- * Datalight
- * Microsoft V 5.x
- * TurboC
- * &
- * Zortech
- *
- * C Compilers
- *
- * Copyright (c) John Birchfield 1987, 1988, 1989
- */
-
- #if (!defined (SCREEN_ATTRIB))
- # define SCR_ATTRIB 1
- # define BLINK 0x80
- # define BRIGHT 9
- # define INVERSE 0x70
- # define NORMAL 7
- # define UNDERLINE 1
- /* #define UNDERLINE 0x71 */
- #endif
- #if (!defined (STANDALONE))
- extern char Duplex [2], RubOut [2],
- BackSpace [2],
- Cmask [2], CrLf [2];
- extern void vt100_driver (), VT100_init ();
- #endif
-