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.

137 lines
4.9 KiB

  1. //*********************************************************************
  2. //* Microsoft Windows **
  3. //* Copyright(c) Microsoft Corp., 1994 **
  4. //*********************************************************************
  5. //
  6. // STRINGS.H - Header file for hard-coded strings
  7. //
  8. // HISTORY:
  9. //
  10. // 12/22/94 jeremys Created.
  11. // 96/02/23 markdu Replaced RNAValidateEntryName with
  12. // RASValidateEntryName
  13. // 96/02/24 markdu Re-wrote the implementation of ENUM_MODEM to
  14. // use RASEnumDevices() instead of RNAEnumDevices().
  15. // Also removed RNAGetDeviceInfo().
  16. // 96/02/24 markdu Re-wrote the implementation of ENUM_CONNECTOID to
  17. // use RASEnumEntries() instead of RNAEnumConnEntries().
  18. // 96/03/25 markdu Removed szDefAreaCode.
  19. // 96/04/24 markdu NASH BUG 19289 Added /NOMSN command line flag
  20. //
  21. #ifndef _STRINGS_H_
  22. #define _STRINGS_H_
  23. // registry strings
  24. extern const TCHAR szRegPathInternetSettings[];
  25. extern const TCHAR szTCPGlobalKeyName[];
  26. extern const TCHAR szRegValRNAWizard[];
  27. extern const TCHAR szRegPathRNAWizard[];
  28. extern const TCHAR szRegValHostName[];
  29. extern const TCHAR szRegValInternetProfile[];
  30. extern const TCHAR szRegValBkupInternetProfile[];
  31. extern const TCHAR szRegValEnableAutodial[];
  32. extern const TCHAR szRegValNoNetAutodial[];
  33. extern const TCHAR szRegValEnableSecurityCheck[];
  34. extern const TCHAR szRegValAccessMedium[];
  35. extern const TCHAR szRegValAccessType[];
  36. extern const TCHAR szRegPathWarningFlags[];
  37. extern const TCHAR szRegValDisableDNSWarning[];
  38. extern const TCHAR szRegValInstalledMSN105[];
  39. extern const TCHAR szRegPathOptComponents[];
  40. extern const TCHAR szRegPathMSNetwork105[];
  41. extern const TCHAR szRegValInstalled[];
  42. // //10/24/96 jmazner Normandy 6968
  43. // //No longer neccessary thanks to Valdon's hooks for invoking ICW.
  44. // 11/21/96 jmazner Normandy 11812
  45. // oops, it _is_ neccessary, since if user downgrades from IE 4 to IE 3,
  46. // ICW 1.1 needs to morph the IE 3 icon.
  47. extern const TCHAR szRegPathInternetIconCommand[];
  48. extern const TCHAR szRegPathIexploreAppPath[];
  49. extern const TCHAR szRegPathNameSpace[];
  50. extern const TCHAR szRegKeyInternetIcon[];
  51. extern const TCHAR szRegPathMailApp[];
  52. extern const TCHAR szRegPathNewsApp[];
  53. extern const TCHAR szRegPathICWSettings[];
  54. extern const TCHAR szRegValICWCompleted[];
  55. extern const TCHAR szRegValShellNext[];
  56. extern const TCHAR szICWShellNextFlag[];
  57. extern const TCHAR cszRegPathXInternetSignup[];
  58. extern const TCHAR cszRegPathAppPaths[];
  59. extern const TCHAR cszPath[];
  60. extern const TCHAR cszInstallationDirectory[];
  61. extern const TCHAR szICWSmartStartFlag[];
  62. extern const TCHAR szFullICWFileName[];
  63. extern const TCHAR szManualICWFileName[];
  64. extern const TCHAR szISignupICWFileName[];
  65. extern const TCHAR szRegIEAKSettings[];
  66. extern const TCHAR szREgIEAKNeededKey[];
  67. extern const TCHAR szPathSubKey[];
  68. extern const TCHAR szIEAKSignupFilename[];
  69. // mailnews api function names
  70. extern const CHAR szSetDefaultMailHandler[];
  71. extern const CHAR szSetDefaultNewsHandler[];
  72. // MAPI api function names
  73. extern const CHAR szMAPIInitialize[];
  74. extern const CHAR szMAPIUninitialize[];
  75. extern const CHAR szMAPIAdminProfiles[];
  76. extern const CHAR szMAPIAllocateBuffer[];
  77. extern const CHAR szMAPIFreeBuffer[];
  78. extern const CHAR szHrQueryAllRows[];
  79. // RNA api function names
  80. extern const CHAR szRasGetCountryInfo[];
  81. extern const CHAR szRasEnumDevices[];
  82. extern const CHAR szRasValidateEntryName[];
  83. extern const CHAR szRasValidateEntryNameA[];
  84. extern const CHAR szRasGetErrorString[];
  85. extern const CHAR szRasGetEntryDialParams[];
  86. extern const CHAR szRasSetEntryDialParams[];
  87. extern const CHAR szRasSetEntryProperties[];
  88. extern const CHAR szRasGetEntryProperties[];
  89. extern const CHAR szRasEnumEntries[];
  90. extern const CHAR szRasSetCredentials[];
  91. // Config api function names
  92. extern const CHAR szDoGenInstall[];
  93. extern const CHAR szGetSETUPXErrorText[];
  94. extern const CHAR szIcfgSetInstallSourcePath[];
  95. extern const CHAR szIcfgInstallInetComponents[];
  96. extern const CHAR szIcfgNeedInetComponents[];
  97. extern const CHAR szIcfgIsGlobalDNS[];
  98. extern const CHAR szIcfgRemoveGlobalDNS[];
  99. extern const CHAR szIcfgTurnOffFileSharing[];
  100. extern const CHAR szIcfgIsFileSharingTurnedOn[];
  101. extern const CHAR szIcfgGetLastInstallErrorText[];
  102. extern const CHAR szIcfgStartServices[];
  103. //
  104. // Available only on NT icfg32.dll
  105. //
  106. extern const CHAR szIcfgNeedModem[];
  107. extern const CHAR szIcfgInstallModem[];
  108. // misc strings
  109. extern const TCHAR sz0[];
  110. extern const TCHAR sz1[];
  111. extern const TCHAR szNull[];
  112. extern const TCHAR szSlash[];
  113. extern const TCHAR szNOREBOOT[];
  114. extern const TCHAR szUNINSTALL[];
  115. extern const TCHAR szNOMSN[];
  116. extern const TCHAR szFmtAppendIntToString[];
  117. extern const TCHAR szDefaultAreaCode[];
  118. extern const TCHAR szNOIMN[];
  119. #endif // _STRINGS_H_