home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 202.img / SCO386N2.TD0 / usr / include / sys / console.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-05-18  |  815 b   |  28 lines

  1. /*
  2.  *    @(#) console.h 2.1 88/05/18 
  3.  *
  4.  *    Copyright (C) The Santa Cruz Operation, 1984, 1985, 1986, 1987.
  5.  *    Copyright (C) Microsoft Corporation, 1984, 1985, 1986, 1987.
  6.  *    This Module contains Proprietary Information of
  7.  *    The Santa Cruz Operation, Microsoft Corporation
  8.  *    and AT&T, and should be treated as Confidential.
  9.  */
  10.  
  11. /*
  12.  *    User level include file for: 
  13.  *    PC Console keyboard related defines and variables.
  14.  *
  15.  */
  16.  
  17. #define NUM_ASCII    256    /* Number of ascii characters */
  18.  
  19. #define GIO_COLOR  ('c'<<8)    /* Ioctl for present color card status */
  20. #define GIO_ATTR   ('a'<<8)    /* Ioctl for present char mode */
  21.  
  22. #define MIOC    ('k' << 8)
  23. #define GIO_SCRNMAP    (MIOC | 2)    /* Get screen output map table */
  24. #define PIO_SCRNMAP    (MIOC | 3)    /* Put screen output map table */
  25.  
  26. typedef unsigned char scrnmap_t[NUM_ASCII];
  27.  
  28.