home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c003 / 1.ddi / WFC_COMP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1987-04-01  |  766 b   |  31 lines

  1. /* wfc_comp.h -- include file for compiler definition
  2.  
  3.     ************* Copyright 1985 by Vermont Creative Software **************
  4.  
  5.     COMMENT
  6.  
  7.     This include file will define the operating system and compiler
  8.     being used.  The following compilers are supported under MSDOS:
  9.  
  10.         LATTICE - Lattice and Microsoft V2.x
  11.         CI    - Computer Innovations
  12.         MW    - Mark Williams Corp
  13.         MS    - Microsoft V3.x
  14.         AZTEC    - Manx Aztec
  15.         DESMET    - Desmet
  16.  
  17.     One and only one compiler must be defined.
  18.  
  19. */
  20.  
  21. #ifndef MSDOS
  22. #define MSDOS 1             /*Operating System              */
  23. #endif
  24.  
  25. #ifndef MS
  26. #define MS 1                /*Microsoft                  */
  27. #endif
  28. #define MS_4 1                /*Microsoft v3.0              */
  29.  
  30. #define PRINTER "PRN:"                  /*definition for printer              */
  31.