Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
712 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2001.
  5. //
  6. // File: cmdkey: switches.h
  7. //
  8. // Contents: option switches
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 07-09-01 georgema Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef __SWITCHES__
  18. #define __SWITCHES__
  19. #ifndef DBG
  20. #define DBG 0
  21. #endif
  22. #if DBG
  23. #define IF_DEBUG if (TRUE)
  24. #else
  25. #define IF_DEBUG if (FALSE)
  26. #endif
  27. #if DBG
  28. // debug verbosity controls
  29. #undef CLPARSER
  30. #define VERBOSE
  31. #endif
  32. // compile-time code options
  33. #define PICKY
  34. #endif