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.

27 lines
993 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: reg_str.h
  4. //
  5. // Module: Common Strings for all Modules to Utilize
  6. //
  7. // Synopsis: Header file for shared reg strings. Note that the contents
  8. // of this file should be limited to reg specific string constants.
  9. //
  10. // Copyright (c) 1998 Microsoft Corporation
  11. //
  12. // Author: nickball Created 10/16/98
  13. //
  14. //+----------------------------------------------------------------------------
  15. #ifndef _CM_REG_STR
  16. #define _CM_REG_STR
  17. //
  18. // Commonly used reg key constants
  19. //
  20. const TCHAR* const c_pszRegCmRoot = TEXT("SOFTWARE\\Microsoft\\Connection Manager\\");
  21. const TCHAR* const c_pszRegCmAppPaths = TEXT("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\CMMGR32.EXE");
  22. const TCHAR* const c_pszRegCmMappings = TEXT("SOFTWARE\\Microsoft\\Connection Manager\\Mappings");
  23. const TCHAR* const c_pszRegPath = TEXT("Path");
  24. #endif // _CM_REG_STR