home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / include / local / equip.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  427 b   |  14 lines

  1. /*
  2.  *    equip.h -- header for equipment determination/inventory
  3.  */
  4.  
  5. struct EQUIP {
  6.     short    disksys,    /* 1 if disks installed */
  7.         game_io,    /* 1 if game i/o adapter installed */
  8.         nprint,        /* number of printer ports */
  9.         nrs232,        /* number of serial ports */
  10.         vmode,        /* initial video mode (from switches) */
  11.         ndrive,        /* number of disk drives (from switches) */
  12.         basemem;    /* amount of base memory in Kbytes */
  13. };
  14.