home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / vm / h / version.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-15  |  654 b   |  34 lines

  1. /***
  2. *version.h - VM version header
  3. *
  4. *       Copyright (c) 1990-1992, Microsoft Corporation.  All rights reserved.
  5. *
  6. *Purpose:
  7. *
  8. *       Set definitions for current build.
  9. *
  10. *       Incoming switches:
  11. *               DEBUG = debug build
  12. *
  13. *******************************************************************************/
  14.  
  15.  
  16. /*
  17.  * Define appropriate switches
  18.  */
  19.  
  20. #ifdef DEBUG
  21.  
  22. /* standard VM build, debug version */
  23. #define VMDEBUG   1
  24. #define VMFREE    1
  25. #define VMPROFILE 1
  26. #define VMTRACE   1
  27.  
  28. #else           /* !DEBUG */
  29.  
  30. /* standard VM build, non-debug (release) version */
  31. #define VMFREE    1
  32.  
  33. #endif  /* !DEBUG */
  34.