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.

60 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. SWTICHES.H
  5. Abstract:
  6. Header file to contain option switches
  7. Author:
  8. georgema created
  9. Comments:
  10. Environment:
  11. WinXP
  12. Revision History:
  13. --*/
  14. #ifndef _SWITCHES_
  15. #define _SWITCHES_
  16. // Option switches to switch in or out various code features. Some are
  17. // related to debugging, others are code features.
  18. // keymgr switches
  19. // GMDEBUG - various debug stuff
  20. // LOUDLY - turns on verbose debug output during run
  21. #undef GMDEBUG
  22. #undef LOUDLY
  23. // Implement pop CHM file on context help not found when item selected?
  24. #undef LINKCHM
  25. // NOBLANKPASSWORD - disallow blank password
  26. #undef NOBLANKPASSWORD
  27. // show passport creds in the key list?
  28. #define SHOWPASSPORT
  29. // simple tooltips show only the user account name for the target
  30. #undef SIMPLETOOLTIPS
  31. #define NEWPASSPORT
  32. #define PASSPORTURLINREGISTRY
  33. // This setting forces the string renditions in the main dialog list box to be LTR,
  34. // regardless of the RTL/LTR orientation of the system selected language.
  35. // See bug 344434
  36. #undef FORCELISTLTR
  37. #define PASSWORDHINT
  38. #endif