home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0020 - 0029 / ibm0020-0029 / ibm0028.tar / ibm0028 / INSTALL2.TD0 / SOURCES.LIF / SWITCHES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-27  |  2.8 KB  |  124 lines

  1. /*=============================================================================
  2.  
  3.      The INSTALL program source code, object code, sample  script files,
  4.      executable  program,  and  documentation  are  subject to copyright
  5.      protection under the laws of the United States and other countries.
  6.  
  7.      This software is licensed, not sold, and may only be  redistributed
  8.      in  executable format and only in accordance with the provisions of
  9.      the INSTALL Source Code License Agreement.
  10.  
  11.         INSTALL is Copyright(C) 1987-1990 by Knowledge Dynamics Corp
  12.        Highway Contract 4 Box 185-H, Canyon Lake, TX (USA) 78133-3508
  13.               512-964-3994 (Voice)   512-964-3958 (24-hr FAX)
  14.  
  15.                       All rights reserved worldwide.
  16.  
  17. ===============================================================================
  18.  
  19. FILENAME:
  20.     switches.h
  21.  
  22. AUTHOR:
  23.     eric jon heflin
  24.  
  25. PUBLIC FUNCTIONS:
  26.     n/a
  27.  
  28. LOCAL FUNCTIONS:
  29.     n/a
  30.  
  31. DESCRIPTION:
  32.     This file is used by Knowledge Dynamics to create the various versions of
  33.     INSTALL.
  34.  
  35. REVISION HISTORY:
  36.     DATE:    AUTHOR:        DESCRIPTION OF CHANGES:
  37.     891213    eaj            documentation
  38.     900102    ejh            Cosmetic changes.
  39.  
  40. ==============================================================================*/
  41.  
  42. /*
  43.  *    DEMO is defined when the demo version of INSTALL is to be generated
  44.  */
  45. /*
  46. #define DEMO
  47. */
  48.  
  49. /*
  50.  *    DEALER_DEMO is defined when the dealer demo version is to be generated
  51.  */
  52. /*
  53. #define DEALER_DEMO
  54. */
  55.  
  56. /*
  57.  *    ABSORB is defined to create the self-extracting version of INSTALL
  58.  */
  59. /*
  60. #define ABSORB
  61. */
  62.  
  63. /*
  64.  *    STRICT is defined to enforce strict compile-time behaviour
  65.  */
  66. #define STRICT
  67.  
  68. /*
  69.  *    BETA is defined if we are compiling changes that are candates for
  70.  *    inclusion into the full version of INSTALL.
  71.  */
  72. /*
  73. #define BETA
  74. */
  75.  
  76. /*
  77.  *    FORMAT_ALLOWED is defined if it is okay for INSTALL to format
  78.  *    an unformatted floppy disk.
  79.  */
  80. /*
  81. #define FORMAT_ALLOWED
  82. */
  83.  
  84. /*
  85.  *    USE_LZHUF is defined if the lzhuf data compression should be used
  86.  *    rather than LZW compression. (This is only implemented for BETA
  87.  *    versions of INSTALL).
  88.  */
  89. /*
  90. #define USE_LZHUF
  91. */
  92.  
  93. /*
  94.  *    OS2_COMPILE is defined if compiling INSTALL for operation under
  95.  *    OS/2 protected mode.
  96.  */
  97. /*
  98. #define OS2_TARGET
  99. */
  100.  
  101. /*
  102.  *    FAPI_TARGET is defined if compiling INSTALL for operation under
  103.  *    the DOS and OS/2 operating systems.
  104.  */
  105. /*
  106. #define FAPI_TARGET
  107. */
  108.  
  109. /*
  110.  *    NO_BANNER is defined if the default Knowledge Dynamics' opening
  111.  *    banner is to be suppressed.
  112.  *
  113.  *    CAUTION: Read the documentation for restrictions before removing
  114.  *    this banner or you may be noncompiliant with the INSTALL Source
  115.  *    Code License Agreement resulting in the revocation of your
  116.  *    royalty-free redistribution license.
  117.  */
  118. /*
  119. #define NO_BANNER
  120. */
  121.  
  122. /* end-of-file */
  123.  
  124.