home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) console.h 2.1 88/05/18
- *
- * Copyright (C) The Santa Cruz Operation, 1984, 1985, 1986, 1987.
- * Copyright (C) Microsoft Corporation, 1984, 1985, 1986, 1987.
- * This Module contains Proprietary Information of
- * The Santa Cruz Operation, Microsoft Corporation
- * and AT&T, and should be treated as Confidential.
- */
-
- /*
- * User level include file for:
- * PC Console keyboard related defines and variables.
- *
- */
-
- #define NUM_ASCII 256 /* Number of ascii characters */
-
- #define GIO_COLOR ('c'<<8) /* Ioctl for present color card status */
- #define GIO_ATTR ('a'<<8) /* Ioctl for present char mode */
-
- #define MIOC ('k' << 8)
- #define GIO_SCRNMAP (MIOC | 2) /* Get screen output map table */
- #define PIO_SCRNMAP (MIOC | 3) /* Put screen output map table */
-
- typedef unsigned char scrnmap_t[NUM_ASCII];
-
-