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.

92 lines
3.4 KiB

  1. //*********************************************************************
  2. //* Microsoft Windows **
  3. //* Copyright (c) 1994-1998 Microsoft Corporation
  4. //*********************************************************************
  5. //
  6. // STRINGS.C - String literals for hard-coded strings
  7. //
  8. // HISTORY:
  9. //
  10. // 96/05/22 markdu Created (from inetcfg.dll)
  11. #include "pch.hpp"
  12. #pragma data_seg(DATASEG_READONLY)
  13. //////////////////////////////////////////////////////
  14. // registry strings
  15. //////////////////////////////////////////////////////
  16. // "Software\\Microsoft\\Windows\\CurrentVersion"
  17. static const CHAR szRegPathSetup[] = REGSTR_PATH_SETUP;
  18. // "Software\\Microsoft\\Windows\\CurrentVersion\\"
  19. static const CHAR szRegPathClass[] = REGSTR_PATH_CLASS "\\";
  20. // "Enum\\Network\\"
  21. static const CHAR szRegPathEnumNet[] = REGSTR_PATH_ENUM "\\Network\\";
  22. // "Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce\\Setup"
  23. static const CHAR szRegPathSetupRunOnce[] = REGSTR_PATH_RUNONCE "\\Setup";
  24. static const CHAR szRegPathSoftwareMicrosoft[]= "Software\\Microsoft";
  25. // "RegisteredOwner"
  26. static const CHAR szRegValOwner[] = REGSTR_VAL_REGOWNER;
  27. // "RegisteredOrganization"
  28. static const CHAR szRegValOrganization[] = REGSTR_VAL_REGORGANIZATION;
  29. static const CHAR szRegValDriver[] = "Driver";
  30. // "System\\CurrentControlSet\\Services\\VxD\\MSTCP"
  31. static const CHAR szTCPGlobalKeyName[] = REGSTR_PATH_VXD "\\MSTCP";
  32. // "RemoteAccess"
  33. static const CHAR szRegKeyBindings[] = "Bindings";
  34. static const CHAR szRegValEnableDNS[] = "EnableDNS";
  35. static const CHAR szRegPathExchangeClientOpt[] = "Software\\Microsoft\\Exchange\\Client\\Options";
  36. static const CHAR szRegValSilentRunning[] = "SilentRunning";
  37. static const CHAR szRegValMlSet[] = "MlSet";
  38. // "System\\CurrentControlSet\\Control\\ComputerName\\ComputerName"
  39. static const CHAR szRegPathComputerName[] = REGSTR_PATH_COMPUTRNAME;
  40. // "ComputerName"
  41. static const CHAR szRegValComputerName[] = REGSTR_VAL_COMPUTRNAME;
  42. // "System\\CurrentControlSet\\Services\\VxD\\VNETSUP"
  43. static const CHAR szRegPathWorkgroup[] = REGSTR_PATH_VNETSUP;
  44. // "Workgroup"
  45. static const CHAR szRegValWorkgroup[] = REGSTR_VAL_WORKGROUP;
  46. // 10/24/96 jmazner Normandy 6968
  47. // No longer neccessary thanks to Valdon's hooks for invoking ICW.
  48. //static const CHAR szRegPathInternetIconCommand[] = "CLSID\\{FBF23B42-E3F0-101B-8488-00AA003E56F8}\\Shell\\Open\\Command";
  49. static const CHAR szRegPathIexploreAppPath[] = "Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\IEXPLORE.EXE";
  50. // "Control Panel\\Desktop"
  51. static const CHAR szRegPathDesktop[] = REGSTR_PATH_DESKTOP;
  52. // "Software\\Microsoft\\Windows\\CurrentVersion\\Setup"
  53. static const CHAR szRegPathSetupWallpaper[] = REGSTR_PATH_SETUP REGSTR_KEY_SETUP;
  54. static const CHAR szRegValWallpaper[] = "Wallpaper";
  55. static const CHAR szRegValTileWallpaper[] = "TileWallpaper";
  56. //////////////////////////////////////////////////////
  57. // misc strings
  58. //////////////////////////////////////////////////////
  59. static const CHAR sz0[] = "0";
  60. static const CHAR sz1[] = "1";
  61. static const CHAR szNull[] = "";
  62. static const CHAR szVSERVER[] = "VSERVER";
  63. static const CHAR szVREDIR[] = "VREDIR";
  64. #pragma data_seg()