Source code of Windows XP (NT5)
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.

1615 lines
48 KiB

  1. /*
  2. Copyright (c) 2002 Microsoft Corporation
  3. Module Name:
  4. xpsp1res.h
  5. Abstract:
  6. Definitions for Service Pack Resources
  7. Notes:
  8. 1 ) XPSP1 resource DLL will be shared by multiple components, thus component owners have to
  9. do their best practices to avoid resource id and name conflicts.
  10. To avoid id conflicts, owners should use RESOURCE_ID_BLOCK_SiZE as the base resource id
  11. range unit, and define component resource base ID and block numbers for each resource
  12. type as appropriate. Before adding resources, owners have to make sure newly defined IDs
  13. are not overlapping other components' id ranges
  14. For resource id name defines, owner should include the component name in name define to
  15. avoid conflicts.
  16. See below for an example of defining string IDs for foo.dll
  17. #define IDS_BASE_FOO_DLL 1000
  18. #define IDS_BLOCK_NUM_FOO_DLL 2
  19. //
  20. // Foo.dll occupies resource string id range 1000 - 1199
  21. //
  22. #define IDS_XXX_FOO_DLL 1000
  23. ...
  24. #define IDS_YYY_FOO_DLL 1101
  25. 2) Resource IDs only need to be unique within the same resource type, although components
  26. usually use unique id for every resource entry, in XPSP1 resource case, we need to maximize
  27. the usage efficiency of resource id, so we give each resource type a different header file
  28. and a full ID range (0 - 65535).
  29. 3) Files under language subfolders are used by MUI and LOC team only.
  30. 4) Localized token files could be out of sync with US tokens and this could cause warnings during the build,
  31. component owners can ignore token related warnings.
  32. Revision History:
  33. */
  34. #ifndef __XPSP1RES_H_
  35. #define __XPSP1RES_H_
  36. #define RESOURCE_ID_BLOCK_SiZE 100
  37. /*
  38. Copyright (c) 2002 Microsoft Corporation
  39. Module Name:
  40. xpsp1str.h
  41. Abstract:
  42. Definitions for Service Pack STRING Resources
  43. Use xpsp1str.h for string resource definitions.
  44. Use xpsp1dlg.h for dialog resource definitions.
  45. Use xpsp1ico.h for icon resource definitions.
  46. Use xpsp1bmp.h for bitmap resource definitions.
  47. Use xpsp1dta.h for RCDATA definitions.
  48. Revision History:
  49. Notes:
  50. */
  51. //
  52. // Slayerxp.dll resource strings
  53. //
  54. #define IDD_LAYER_PROPPAGE 101
  55. #define IDC_TEXT_INSTRUCTIONS 1013
  56. #define IDC_USE_LAYER 5000
  57. #define IDC_LAYER_NAME 1005
  58. #define IDC_256COLORS 5001
  59. #define IDC_640X480 5002
  60. #define IDC_ENABLE_THEMES 5003
  61. #define IDC_LEARN 1009
  62. #define IDS_INPUT_SETTINGS_GROUP 6001
  63. #define IDC_DISABLECICERO 1014
  64. //
  65. // Shell32 resource string ID (2048-2559)
  66. //
  67. #define IDS_SHELL32_PROMFU32_0 2048
  68. #define IDS_SHELL32_PROMFU32_1 2049
  69. #define IDS_SHELL32_PROMFU32_2 2050
  70. #define IDS_SHELL32_PROMFU32_3 2051
  71. #define IDS_SHELL32_PROMFU32_4 2052
  72. #define IDS_SHELL32_PROMFU32_5 2053
  73. #define IDS_SHELL32_PROMFU32_6 2054
  74. #define IDS_SHELL32_PROMFU32_7 2055
  75. #define IDS_SHELL32_PROMFU32_8 2056
  76. #define IDS_SHELL32_PROMFU32_9 2057
  77. #define IDS_SHELL32_PROMFU32_10 2058
  78. #define IDS_SHELL32_PROMFU32_11 2059
  79. #define IDS_SHELL32_PROMFU32_12 2060
  80. #define IDS_SHELL32_PROMFU32_13 2061
  81. #define IDS_SHELL32_PROMFU32_14 2062
  82. #define IDS_SHELL32_PROMFU32_15 2063
  83. #define IDS_SHELL32_PROMFU64_0 2064
  84. #define IDS_SHELL32_PROMFU64_1 2065
  85. #define IDS_SHELL32_PROMFU64_2 2066
  86. #define IDS_SHELL32_PROMFU64_3 2067
  87. #define IDS_SHELL32_PROMFU64_4 2068
  88. #define IDS_SHELL32_PROMFU64_5 2069
  89. #define IDS_SHELL32_PROMFU64_6 2070
  90. #define IDS_SHELL32_PROMFU64_7 2071
  91. #define IDS_SHELL32_PROMFU64_8 2072
  92. #define IDS_SHELL32_PROMFU64_9 2073
  93. #define IDS_SHELL32_PROMFU64_10 2074
  94. #define IDS_SHELL32_PROMFU64_11 2075
  95. #define IDS_SHELL32_PROMFU64_12 2076
  96. #define IDS_SHELL32_PROMFU64_13 2077
  97. #define IDS_SHELL32_PROMFU64_14 2078
  98. #define IDS_SHELL32_PROMFU64_15 2079
  99. //
  100. // INPUT.DLL resource string ID
  101. //
  102. #define IDS_BASE_INPUTDLL 10000
  103. #define IDS_BLOCK_NUM_INPUTDLL 2
  104. #define IDS_INPUTDLL_ADVANCED_CUAS_TEXT 10000
  105. #define IDS_INPUTDLL_ADVANCED_CTFMON_TEXT 10001
  106. //
  107. // SPTIP.DLL resource string ID
  108. //
  109. #define IDS_BASE_SPTIP 10010
  110. #define IDS_BLOCK_NUM_SPTIP 13
  111. #define IDS_SPTIP_SHARDCMD_FILE 10010
  112. #define IDS_SPTIP_GO_TO_SLEEP 10011
  113. #define IDS_SPTIP_WAKE_UP 10012
  114. #define IDS_SPTIP_PROPERTYPAGE_TITLE 10013
  115. #define IDS_SPTIP_SPCMD_SELECT_ALL 10014
  116. #define IDS_SPTIP_SPCMD_SELECT_THAT 10015
  117. #define IDS_SPTIP_REPLAY 10016
  118. #define IDS_SPTIP_DELETE 10017
  119. #define IDS_SPTIP_REDO 10018
  120. #define IDS_SPTIP_ADDTODICTIONARYPREFIX 10020
  121. #define IDS_SPTIP_ADDTODICTIONARYPOSTFIX 10021
  122. #define IDS_SPTIP_DELETESELECTION 10022
  123. //
  124. // Msctfime resource string ID
  125. //
  126. #define IDS_BASE_MSCTFIME 10030
  127. #define IDS_BLOCK_NUM_MSCTFIME 3
  128. #define IDS_MSCTFIME_ENTER_BTN_TEXT 10030
  129. #define IDS_MSCTFIME_ENTER_BTN_TOOLTIP 10031
  130. #define IDS_MSCTFIME_FUNCPRV_CONVERSION 10032
  131. //
  132. // APPWIZ.CPL resource string ID
  133. //
  134. #define IDS_BASE_APPWIZ_CPL 10040
  135. #define IDS_BLOCK_NUM_APPWIZ_CPL 4
  136. #define IDS_APPWIZ_PICKAPPS 10040
  137. #define IDS_APPWIZ_SHORTCUTPICKAPPS 10041
  138. #define IDS_APPWIZ_PICKINTRO 10042
  139. #define IDS_APPWIZ_PICKOK 10043
  140. #define IDS_APPWIZ_PICKCANCEL 10044
  141. #define IDS_APPWIZ_APPLYINGCLIENT 10045
  142. #define IDS_APPWIZ_SHOWINGICONS 10046
  143. #define IDS_APPWIZ_HIDINGICONS 10047
  144. #define IDS_APPWIZ_SETTINGDEFAULT 10048
  145. #define IDS_APPWIZ_GROUPOEM 10049
  146. #define IDS_APPWIZ_GROUPOEMBLURB 10050
  147. #define IDS_APPWIZ_GROUPMS 10051
  148. #define IDS_APPWIZ_GROUPMSBLURB 10052
  149. #define IDS_APPWIZ_GROUPNONMS 10053
  150. #define IDS_APPWIZ_GROUPNONMSBLURB 10054
  151. #define IDS_APPWIZ_GROUPCUSTOM 10055
  152. #define IDS_APPWIZ_GROUPCUSTOMBLURB 10056
  153. #define IDS_APPWIZ_CLIENTWEB 10057
  154. #define IDS_APPWIZ_KEEPWEB 10058
  155. #define IDS_APPWIZ_PICKWEB 10059
  156. #define IDS_APPWIZ_CLIENTMAIL 10060
  157. #define IDS_APPWIZ_KEEPMAIL 10061
  158. #define IDS_APPWIZ_PICKMAIL 10062
  159. #define IDS_APPWIZ_CLIENTMEDIA 10063
  160. #define IDS_APPWIZ_KEEPMEDIA 10064
  161. #define IDS_APPWIZ_PICKMEDIA 10065
  162. #define IDS_APPWIZ_CLIENTIM 10066
  163. #define IDS_APPWIZ_KEEPIM 10067
  164. #define IDS_APPWIZ_PICKIM 10068
  165. #define IDS_APPWIZ_CLIENTJAVAVM 10069
  166. #define IDS_APPWIZ_KEEPJAVAVM 10070
  167. #define IDS_APPWIZ_PICKJAVAVM 10071
  168. #define IDS_APPWIZ_SHOWAPP 10072
  169. #define IDS_APPWIZ_ALSOSHOW 10073
  170. #define IDS_APPWIZ_HIDE 10074
  171. #define IDS_APPWIZ_ADDITIONALCLIENTFORMAT 10075
  172. #define IDS_APPWIZ_NOTADMIN 10076
  173. #define IDS_APPWIZ_CONFIGUREPROGRAMS 10077
  174. #define IDS_APPWIZ_CONFIGUREPROGRAMSTIP 10078
  175. #define IDS_APPWIZ_CUSTOMWEB 10079
  176. #define IDS_APPWIZ_CUSTOMMAIL 10080
  177. #define IDS_APPWIZ_CUSTOMMEDIA 10081
  178. #define IDS_APPWIZ_CUSTOMIM 10082
  179. #define IDS_APPWIZ_CUSTOMJAVAVM 10083
  180. #define IDS_APPWIZ_KEEPMSMAIL 10084
  181. #define IDS_OC_QLAUNCHAPPDATAPATH 11000
  182. #define IDS_OC_IESHORTCUTNAME_SM 11001
  183. #define IDS_OC_IEDESCRIPTION 11002
  184. #define IDS_OC_IESHORTCUTNAME_QL 11003
  185. #define IDS_OC_OESHORTCUTNAME_SM 11004
  186. #define IDS_OC_OEDESCRIPTION 11005
  187. #define IDS_OC_OESHORTCUTNAME_QL 11006
  188. #define IDS_OC_IESHORTCUTNAME_SM64 11007
  189. // string IDs for the Wireless UI
  190. #define SID_AcquiringIdentity 6
  191. #define SID_ContactingServer 7
  192. #define SID_UserResponse 8
  193. #define SID_NoSmartCardReaderFound 9
  194. #define IDS_WZCERR_INVALID_WEPK 5002
  195. #define IDS_WZCERR_MISMATCHED_WEPK 5003
  196. #define IDS_CANTACCESSNET_INFRA 5004
  197. #define IDS_CANTACCESSNET_ADHOC 5005
  198. #define IDS_LANUI_ERROR_CAPTION 16008
  199. #define IDS_WZC_DLG_CAPTION 16117
  200. #define IDS_WZC_DLG_CAP_SUFFIX 16118
  201. #define IDS_WZC_KERR_MAT 16119
  202. #define IDS_WZC_KERR_IDX 16121
  203. #define IDS_WZC_PARTIAL_APPLY 16130
  204. #define IDS_EAPOL_PARTIAL_APPLY 16131
  205. #define IDS_EAPOL_PAGE_LABEL 16133
  206. //
  207. // STRING RESOURCES FOR RASCHAP.DLL DCR: 570832
  208. //
  209. #define IDS_BASE_RASCHAP 15050
  210. #define IDS_BLOCK_NUM_RASCHAP 5
  211. #define IDS_NO_ROUTER_CONFIG 15051
  212. #define IDS_MESSAGE_HEADER 15052
  213. #define IDS_PASSWORD_REQUIRED 15054
  214. #define IDS_PASSWORD_MISMATCH 15055
  215. //
  216. // STRING RESOURCES FOR RASTLS.DLL DCR: 570832
  217. //
  218. #define IDS_BASE_RASTLS 15600
  219. #define IDS_BLOCK_NUM_RASTLS 8
  220. #define IDS_VALIDATE_SERVER_TEXT 15600
  221. #define IDS_VALIDATE_NAME_TEXT 15601
  222. #define IDS_VALIDATE_SERVER_WITH_NAME_TEXT 15602
  223. #define IDS_NO_SERVER_NAME 15603
  224. #define IDS_NO_ROOT_CERT 15604
  225. #define IDS_NO_CERT_DETAILS 15605
  226. #define IDS_PEAP_NO_EAP_TYPE 15606
  227. #define IDS_PEAP_WIRELESS 15607
  228. //
  229. // STRING RESOURCES FOR PRINTUI.DLL DCR: 565316
  230. //
  231. #define IDS_BASE_PRINTUI_DLL 16400
  232. #define IDS_BLOCK_NUM_PRINTUI_DLL 1
  233. #define IDS_TEXT_POINTANDPRINT_WARNING_PRINTUI_DLL (IDS_BASE_PRINTUI_DLL + 0)
  234. #define IDS_TEXT_POINTANDPRINT_POLICY_PRINTUI_DLL (IDS_BASE_PRINTUI_DLL + 1)
  235. //
  236. // string id for storprop.dll
  237. //
  238. #define IDS_BASE_STORPROP_DLL 3000
  239. #define IDS_BLOCK_NUM_STORPROP_DLL 1
  240. #define IDS_UDMA_MODE6_STRING 3011
  241. //
  242. // STRING RESOURCES FOR TELNET
  243. //
  244. #define IDS_BASE_TELNET 20000
  245. #define IDS_BLOCK_NUM_TELNET 50
  246. #define IDR_NEW_TELNET_USAGE 20001
  247. //
  248. //String Resouces for Rshx32
  249. //
  250. #define IDS_BASE_RSHX32 20100
  251. #define IDS_RSHX32_SET_PERMS_ON_NETWORK_DRIVE (IDS_BASE_RSHX32 + 0)
  252. #define IDS_RSHX32_SET_SACLS_ON_NETWORK_DRIVE (IDS_BASE_RSHX32 + 1)
  253. #define IDS_RSHX32_PROP_PAGE_TITLE (IDS_BASE_RSHX32 + 2)
  254. //
  255. // String Resources for SAVEDUMP
  256. //
  257. #define IDS_SAVEDUMP_BASE 20200
  258. #define IDS_SAVEDUMP_HEADER_MSG (IDS_SAVEDUMP_BASE + 0)
  259. ////////////////////////////////////////////
  260. //
  261. // SCHTASKS.EXE related RC Messages
  262. //
  263. ////////////////////////////////////////////
  264. #define IDS_UPPER_YES 300001
  265. #define IDS_UPPER_NO 300002
  266. /*
  267. Copyright (c) 2002 Microsoft Corporation
  268. Module Name:
  269. xpsp1dlg.h
  270. Abstract:
  271. Definitions for Service Pack DIALOG Resources
  272. Use xpsp1str.h for string resource definitions.
  273. Use xpsp1dlg.h for dialog resource definitions.
  274. Use xpsp1ico.h for icon resource definitions.
  275. Use xpsp1bmp.h for bitmap resource definitions.
  276. Use xpsp1dta.h for RCDATA definitions.
  277. Revision History:
  278. Notes:
  279. */
  280. #ifndef IDC_STATIC
  281. #define IDC_STATIC (-1)
  282. #endif
  283. //
  284. // SHDOCLC.DLL - SafeOpen Dialog
  285. //
  286. #define DLG_SAFEOPEN_SHDOCLC 0x1140
  287. #define IDC_SAFEOPEN_ICON_SHDOCLC 0x1141
  288. #define IDC_SAFEOPEN_FILENAME_SHDOCLC 0x1142
  289. #define IDC_SAFEOPEN_AUTOOPEN_SHDOCLC 0x1143
  290. #define IDC_SAFEOPEN_AUTOSAVE_SHDOCLC 0x1144
  291. #define IDC_SAFEOPEN_ALWAYS_SHDOCLC 0x1145
  292. #define IDC_SAFEOPEN_FILETYPE_SHDOCLC 0x1146
  293. #define IDC_SAFEOPEN_FILEFROM_SHDOCLC 0x1147
  294. #define IDC_SAFEOPEN_WARNICON_SHDOCLC 0x1148
  295. #define IDC_SAFEOPEN_WARNTEXT_SHDOCLC 0x1149
  296. #define IDM_MOREINFO_SHDOCLC 30
  297. #define IDD_OPS_CONSENT_SHDOCLC 0x3200
  298. #define IDC_OPS_LIST_SHDOCLC 0x3210
  299. #define IDC_VIEW_CERT_SHDOCLC 0x3211
  300. #define IDC_USAGE_STRING_SHDOCLC 0x3212
  301. #define IDC_SITE_IDENTITY_SHDOCLC 0x3213
  302. #define IDC_SECURITY_ICON_SHDOCLC 0x3214
  303. #define IDC_SECURE_CONNECTION_SHDOCLC 0x3216
  304. #define IDC_UNSECURE_CONNECTION_SHDOCLC 0x3217
  305. #define IDC_EDIT_PROFILE_SHDOCLC 0x3219
  306. #define IDC_OPS_INFO_REQUESTED_SHDOCLC 0x321B
  307. #define IDC_OPS_PRIVACY_SHDOCLC 0x321C
  308. //
  309. // SHELL32.dLL - About Dialog
  310. //
  311. // NOTE: for app compat these should match exactly the resids in shell32.dll
  312. //
  313. #define DLG_ABOUT_SHELL32_DLL 0x3810
  314. #define IDD_ICON_SHELL32_DLL 0x3009
  315. #define IDD_APPNAME_SHELL32_DLL 0x3500
  316. #define IDD_VERSION_SHELL32_DLL 0x350b
  317. #define IDD_COPYRIGHTSTRING_SHELL32_DLL 0x350a
  318. #define IDD_OTHERSTUFF_SHELL32_DLL 0x350d
  319. #define IDD_EULA_SHELL32_DLL 0x3512
  320. #define IDD_USERNAME_SHELL32_DLL 0x3507
  321. #define IDD_COMPANYNAME_SHELL32_DLL 0x3508
  322. #define IDD_LINE_1_SHELL32_DLL 0x3327
  323. #define IDD_CONVTITLE_SHELL32_DLL 0x3502
  324. #define IDD_CONVENTIONAL_SHELL32_DLL 0x3503
  325. //
  326. // INPUT.DLL - Advanced PropertyPage, Toolbar Settings
  327. //
  328. #define DLG_BASE_INPUTDLL 10100
  329. #define DLG_BLOCK_NUM_INPUTDLL 13
  330. #define DLG_INPUTDLL_INPUT_ADVANCED 10100
  331. #define DLG_INPUTDLL_TOOLBAR_SETTING 10101
  332. #define IDC_INPUTDLL_TB_STATIC 10102
  333. #define IDC_INPUTDLL_TB_SHOWLANGBAR 10103
  334. #define IDC_INPUTDLL_TB_HIGHTRANS 10104
  335. #define IDC_INPUTDLL_TB_EXTRAICON 10105
  336. #define IDC_INPUTDLL_TB_TEXTLABELS 10106
  337. #define IDC_INPUTDLL_ADVANCED_CUAS_ENABLE 10107
  338. #define IDC_INPUTDLL_ADVANCED_CUAS_TEXT 10108
  339. #define IDC_INPUTDLL_ADVANCED_CTFMON_DISABLE 10109
  340. #define IDC_INPUTDLL_ADVANCED_CTFMON_TEXT 10110
  341. #define IDC_INPUTDLL_GROUPBOX1 10111
  342. #define IDC_INPUTDLL_GROUPBOX2 10112
  343. //
  344. // SPTIP.DLL - Speech PropertyPage
  345. //
  346. #define DLG_BASE_SPTIP 10120
  347. #define DLG_BLOCK_NUM_SPTIP 31
  348. #define IDD_SPTIP_PROPERTY_PAGE 10120
  349. #define IDD_SPTIP_PP_DIALOG_ADVANCE 10121
  350. #define IDD_SPTIP_PP_DIALOG_BUTTON_SET 10122
  351. #define IDC_SPTIP_PP_SHOW_BALLOON 10123
  352. #define IDC_SPTIP_PP_LMA 10124
  353. #define IDC_SPTIP_PP_HIGH_CONFIDENCE 10125
  354. #define IDC_SPTIP_PP_SAVE_SPDATA 10126
  355. #define IDC_SPTIP_PP_REMOVE_SPACE 10127
  356. #define IDC_SPTIP_PP_DIS_DICT_TYPING 10128
  357. #define IDC_SPTIP_PP_PLAYBACK 10129
  358. #define IDC_SPTIP_PP_DICT_CANDUI_OPEN 10130
  359. #define IDC_SPTIP_PP_DICTCMDS 10131
  360. #define IDC_SPTIP_PP_ASSIGN_BUTTON 10132
  361. #define IDC_SPTIP_PP_BUTTON_MB_SETTING 10133
  362. #define IDC_SPTIP_PP_BUTTON_ADVANCE 10134
  363. #define IDC_SPTIP_PP_BUTTON_LANGBAR 10135
  364. #define IDC_SPTIP_PP_BUTTON_SPCPL 10136
  365. #define IDC_SPTIP_PP_SELECTION_CMD 10137
  366. #define IDC_SPTIP_PP_NAVIGATION_CMD 10138
  367. #define IDC_SPTIP_PP_CASING_CMD 10139
  368. #define IDC_SPTIP_PP_EDITING_CMD 10140
  369. #define IDC_SPTIP_PP_KEYBOARD_CMD 10141
  370. #define IDC_SPTIP_PP_LANGBAR_CMD 10142
  371. #define IDC_SPTIP_PP_DICTATION_CMB 10143
  372. #define IDC_SPTIP_PP_COMMAND_CMB 10144
  373. #define IDC_SPTIP_GP_VOICE_COMMANDS 10145
  374. #define IDC_SPTIP_GP_MODE_BUTTONS 10146
  375. #define IDC_SPTIP_GP_ADVANCE_SET 10147
  376. #define IDC_SPTIP_DESCRIPT_TEXT 10148
  377. #define IDC_SPTIP_DESCRIPT_TEXT2 10149
  378. #define IDC_SPTIP_DESCRIPT_TEXT3 10150
  379. //
  380. // MSOERES.DLL - read options dlg ids
  381. //
  382. #define DLG_MSOERES_Opt_Read 50
  383. #define IDC_MSOERES_Static1 3500
  384. #define IDC_MSOERES_Static2 3501
  385. #define IDC_MSOERES_Static3 3502
  386. #define IDC_MSOERES_Static4 3503
  387. #define IDC_MSOERES_Static5 3504
  388. #define IDC_MSOERES_Static6 3506
  389. #define IDC_MSOERES_Static7 3507
  390. #define IDC_MSOERES_Static8 3508
  391. #define IDC_MSOERES_Static9 3509
  392. #define IDC_MSOERES_READ_ICON 2157
  393. #define IDC_MSOERES_READ_NEWS_ICON 2158
  394. #define IDC_MSOERES_PREVIEW_CHECK 1001
  395. #define IDC_MSOERES_MARKASREAD_EDIT 1030
  396. #define IDC_MSOERES_MARKASREAD_SPIN 1031
  397. #define IDC_MSOERES_AutoExpand 2008
  398. #define IDC_MSOERES_AutoFillPreview 2051
  399. #define IDC_MSOERES_READ_IN_TEXT_ONLY 2222
  400. #define IDC_MSOERES_Tooltips 2135
  401. #define IDC_MSOERES_WATCHED_COLOR 2202
  402. #define IDC_MSOERES_DownloadChunks 2030
  403. #define IDC_MSOERES_NumSubj 2005
  404. #define IDC_MSOERES_SpinNumSubj 2006
  405. #define IDC_MSOERES_MarkAllRead 2009
  406. #define IDC_MSOERES_FONTS_ICON 2159
  407. #define IDC_MSOERES_FONTSETTINGS 1060
  408. #define IDC_MSOERES_IntlButton 2099
  409. // dialog IDs for the Wireless UI
  410. #define IDD_WZCQCFG 2001
  411. #define IDC_WZCQCFG_LBL_INFO 2002
  412. #define IDC_WZCQCFG_LBL_NETWORKS 2003
  413. #define IDC_WZCQCFG_NETWORKS 2004
  414. #define IDC_WZCQCFG_LBL_WKINFO 2005
  415. #define IDC_WZCQCFG_LBL_WEPK 2006
  416. #define IDC_WZCQCFG_WEPK 2007
  417. #define IDC_WZCQCFG_LBL_NOTWORKING 2008
  418. #define IDC_WZCQCFG_ADVANCED 2009
  419. #define IDC_WZCQCFG_CONNECT 2010
  420. #define IDC_WZCQCFG_LBL_WEPK2 2011
  421. #define IDC_WZCQCFG_WEPK2 2012
  422. #define IDC_WZCQCFG_LBL_NOWKINFO 2013
  423. #define IDC_WZCQCFG_CHK_NOWK 2014
  424. #define IDC_WZCQCFG_ICO_WARN 2015
  425. #define IDC_WZCQCFG_CHK_ONEX 2016
  426. #define IDC_ADHOC 1005
  427. #define IDC_USEPW 1008
  428. #define IDC_USEHARDWAREPW 1009
  429. #define IDC_SHAREDMODE 1010
  430. #define IDC_TXT_EAP_TYPE 15033
  431. #define CID_CA_RB_MachineAuth 15034
  432. #define CID_CA_RB_GuestAuth 15035
  433. #define CID_CA_RB_Eap 15036
  434. #define CID_CA_LB_EapPackages 15037
  435. #define CID_CA_PB_Properties 15038
  436. #define IDC_WZC_DLG_PROPS 15039
  437. #define IDC_WZC_EDIT_SSID 15041
  438. #define IDC_WZC_LBL_KMat 15051
  439. #define IDC_WZC_EDIT_KMat 15052
  440. #define IDC_WZC_LBL_KMat2 15049
  441. #define IDC_WZC_EDIT_KMat2 15050
  442. #define IDC_WZC_LBL_KIdx 15053
  443. #define IDC_WZC_EDIT_KIdx 15054
  444. #define IDC_WZC_GRP_Wep 15057
  445. #define IDC_EAP_ICO_WARN 15070
  446. #define IDC_TXT_EAP_LABEL 15071
  447. #define IDC_EAP_LBL_WARN 15072
  448. #define IDD_LAN_SECURITY 16007
  449. //
  450. // DIALOG RESOURCES FOR RASCHAP.DLL DCR: 570832
  451. //
  452. #define DLG_BASE_RASCHAP 15000
  453. #define DLG_BLOCK_NUM_RASCHAP 32
  454. #define IDD_DIALOG_LOGON 15000
  455. #define IDD_DIALOG_CLEINT_CONFIG 15001
  456. #define IDD_DIALOG_CLIENT_CONFIG 15002
  457. #define IDD_DIALOG_SERVER_CONFIG 15003
  458. #define IDD_DIALOG_CHANGE_PASSWORD 15004
  459. #define IDD_DIALOG_RETRY_LOGON 15005
  460. #define IDC_EDIT_USERNAME 15006
  461. #define IDC_EDIT_PASSWORD 15007
  462. #define IDC_EDIT_DOMAIN 15008
  463. #define IDC_CHK_USE_WINLOGON 15009
  464. #define IDC_EDIT_RETRIES 15010
  465. #define IDC_CHECK_ALLOW_CHANGEPWD 15012
  466. #define IDC_CHECK2 15013
  467. #define IDC_CHECK_PROMPT_IF_INVALID_PASSWORD 15014
  468. #define CID_CP_EB_ConfirmPassword 15015
  469. #define IDC_CONFIRM_NEW_PASSWORD 15016
  470. #define CID_CP_EB_OldPassword 15017
  471. #define CID_CP_EB_Password 15018
  472. #define IDC_NEW_PASSWORD 15019
  473. #define CID_CP_ST_ConfirmPassword 15020
  474. #define CID_CP_ST_Explain 15021
  475. #define CID_CP_ST_OldPassword 15022
  476. #define CID_CP_ST_Password 15023
  477. #define IDC_CHECK_SAVE_UID_PWD 15024
  478. #define IDC_RETRY_DOMAIN 15025
  479. #define IDC_RETRY_PASSWORD 15026
  480. #define IDC_RETRY_USERNAME 15027
  481. #define CID_UA_ST_Domain 15028
  482. #define CID_UA_ST_Explain 15029
  483. #define CID_UA_ST_Password 15030
  484. #define CID_UA_ST_Separator 15031
  485. #define CID_UA_ST_UserName 15032
  486. //
  487. // DIALOG RESOURCES FOR RASTLS.DLL DCR: 570832
  488. //
  489. #define DLG_BASE_RASTLS 15500
  490. #define DLG_BLOCK_NUM_RASTLS 45
  491. #define IDD_DIALOG_DEFAULT_CREDENTIALS 15500
  492. #define IDD_VALIDATE_SERVER 15501
  493. #define IDD_SCARD_STATUS 15502
  494. #define IDD_CONFIG_UI 15503
  495. #define IDD_IDENTITY_UI 15504
  496. #define IDD_PEAP_CONFIG_UI 15505
  497. #define IDC_EDIT_DIFF_USER 1409
  498. #define IDC_LIST_ROOT_CA_NAME 15507
  499. #define IDC_MESSAGE 15510
  500. #define IDC_BTN_VIEW_CERTIFICATE 15511
  501. #define IDC_STATUS_SCARD 15512
  502. #define IDC_BITMAP_SCARD 15513
  503. #define IDC_STATUS_CERT 15514
  504. #define IDC_LIST_CERTIFICATES 15515
  505. #define IDC_BUTTON_VIEW_CERTIFICATE 15516
  506. #define IDC_COMBO_PEAP_TYPE 15517
  507. #define IDC_BUTTON_CONFIGURE 15518
  508. #define IDC_COMBO1 15519
  509. #define IDC_COMBO_PEAP_TYPE2 15520
  510. #define IDC_CHECK_USE_SIMPLE_CERT_SEL 15521
  511. #define IDC_CHECK_DISABLE_FAST_RECONNECT 15523
  512. #define IDC_CHECK_ENABLE_FAST_RECONNECT 15524
  513. #define IDC_RADIO_USE_CARD 15525
  514. #define IDC_RADIO_USE_REGISTRY 15526
  515. #define IDC_CHECK_VALIDATE_CERT 15527
  516. #define IDC_CHECK_VALIDATE_NAME 15528
  517. #define IDC_EDIT_SERVER_NAME 15529
  518. #define IDC_STATIC_ROOT_CA_NAME 15530
  519. #define IDC_COMBO_ROOT_CA_NAME 15531
  520. #define IDC_CHECK_DIFF_USER 15532
  521. #define IDC_STATIC_USER_NAME 15533
  522. #define IDC_COMBO_USER_NAME 15534
  523. #define IDC_STATIC_FRIENDLY_NAME 15535
  524. #define IDC_EDIT_FRIENDLY_NAME 15536
  525. #define IDC_STATIC_ISSUER 15537
  526. #define IDC_EDIT_ISSUER 15538
  527. #define IDC_STATIC_EXPIRATION 15539
  528. #define IDC_EDIT_EXPIRATION 15540
  529. #define IDC_STATIC_DIFF_USER 15541
  530. #define IDC_STATIC_PIN 1500
  531. #define IDC_COMBO_SERVER_NAME 15543
  532. #define IDC_STATIC_SERVER_NAME 15544
  533. /*
  534. Copyright (c) 2002 Microsoft Corporation
  535. Module Name:
  536. xpsp1ico.h
  537. Abstract:
  538. Definitions for Service Pack ICON Resources
  539. Use xpsp1str.h for string resource definitions.
  540. Use xpsp1dlg.h for dialog resource definitions.
  541. Use xpsp1ico.h for icon resource definitions.
  542. Use xpsp1bmp.h for bitmap resource definitions.
  543. Use xpsp1dta.h for RCDATA definitions.
  544. Revision History:
  545. Notes:
  546. */
  547. //
  548. // APPWIZ.CPL resource icon ID
  549. //
  550. #define IDI_BASE_APPWIZ_CPL 100
  551. #define IDI_BLOCK_NUM_APPWIZ_CPL 1
  552. #define IDI_APPWIZ_CONFIGUREPROGRAMS 100
  553. //
  554. // ICON RESOURCES FOR RASTLS.DLL DCR: 570832
  555. //
  556. #define IDI_SCARD 108
  557. #define IDI_UNLOCK_SHDOCLC 0x31E1
  558. /*
  559. Copyright (c) 2002 Microsoft Corporation
  560. Module Name:
  561. xpsp1bmp.h
  562. Abstract:
  563. Definitions for Service Pack BITMAP Resources
  564. Use xpsp1str.h for string resource definitions.
  565. Use xpsp1dlg.h for dialog resource definitions.
  566. Use xpsp1ico.h for icon resource definitions.
  567. Use xpsp1bmp.h for bitmap resource definitions.
  568. Use xpsp1dta.h for RCDATA definitions.
  569. Revision History:
  570. Notes:
  571. */
  572. //
  573. // APPWIZ.CPL occupies resource bitmap ID range 100-109
  574. //
  575. #define IDB_BASE_APPWIZ_CPL 100
  576. #define IDB_BLOCK_NUM_APPWIZ_CPL 1
  577. #define IDB_APPWIZ_ARP4 100
  578. #define IDB_IEACCESS 200
  579. #define IDB_OEACCESS 201
  580. //
  581. // RASTLS.DLL/ RASCHAP.DLL resources for
  582. // For DCR: 570832
  583. //
  584. #define IDB_DIALER_1 1678
  585. /*
  586. Copyright (c) 2002 Microsoft Corporation
  587. Module Name:
  588. xpsp1dta.h
  589. Abstract:
  590. Definitions for Service Pack RCDATA Resources
  591. Use xpsp1str.h for string resource definitions.
  592. Use xpsp1dlg.h for dialog resource definitions.
  593. Use xpsp1ico.h for icon resource definitions.
  594. Use xpsp1bmp.h for bitmap resource definitions.
  595. Use xpsp1dta.h for RCDATA definitions.
  596. Revision History:
  597. Notes:
  598. */
  599. //
  600. // APPWIZ.CPL resource data ID
  601. //
  602. #define IDR_BASE_APPWIZ_CPL 100
  603. #define IDR_BLOCK_NUM_APPWIZ_CPL 1
  604. #define IDR_APPWIZ_ARP 100
  605. #define IDR_APPWIZ_ARPSTYLESTD 101
  606. #define IDR_APPWIZ_ARPSTYLETHEME 102
  607. /*
  608. Copyright (c) 2002 Microsoft Corporation
  609. Module Name:
  610. xpsp1msg.mc
  611. Abstract:
  612. Definitions for Service Pack Events
  613. Revision History:
  614. Notes:
  615. The xpsp1msg.h file is generated by the MC tool from the xpsp1msg.mc file.
  616. */
  617. //
  618. // Net error file for basename ZCDB_LOG_BASE = 3000
  619. //
  620. //
  621. // Values are 32 bit values layed out as follows:
  622. //
  623. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  624. // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  625. // +---+-+-+-----------------------+-------------------------------+
  626. // |Sev|C|R| Facility | Code |
  627. // +---+-+-+-----------------------+-------------------------------+
  628. //
  629. // where
  630. //
  631. // Sev - is the severity code
  632. //
  633. // 00 - Success
  634. // 01 - Informational
  635. // 10 - Warning
  636. // 11 - Error
  637. //
  638. // C - is the Customer code flag
  639. //
  640. // R - is a reserved bit
  641. //
  642. // Facility - is the facility code
  643. //
  644. // Code - is the facility's status code
  645. //
  646. //
  647. // Define the facility codes
  648. //
  649. //
  650. // Define the severity codes
  651. //
  652. //
  653. // MessageId: WZCSVC_SERVICE_STARTED
  654. //
  655. // MessageText:
  656. //
  657. // Wireless Configuration service was started successfully
  658. //
  659. #define WZCSVC_SERVICE_STARTED 0x00000BB9L
  660. //
  661. // MessageId: WZCSVC_SERVICE_FAILED
  662. //
  663. // MessageText:
  664. //
  665. // Wireless Configuration service failed to start.
  666. //
  667. #define WZCSVC_SERVICE_FAILED 0x00000BBAL
  668. //
  669. // MessageId: WZCSVC_SM_STATE_INIT
  670. //
  671. // MessageText:
  672. //
  673. // Adding interface %1.
  674. //
  675. #define WZCSVC_SM_STATE_INIT 0x00000BBBL
  676. //
  677. // MessageId: WZCSVC_SM_STATE_HARDRESET
  678. //
  679. // MessageText:
  680. //
  681. // Hard resetting interface.
  682. //
  683. #define WZCSVC_SM_STATE_HARDRESET 0x00000BBCL
  684. //
  685. // MessageId: WZCSVC_SM_STATE_SOFTRESET
  686. //
  687. // MessageText:
  688. //
  689. // Initiating scanning for wireless networks.
  690. //
  691. #define WZCSVC_SM_STATE_SOFTRESET 0x00000BBDL
  692. //
  693. // MessageId: WZCSVC_SM_STATE_DELAY_SR
  694. //
  695. // MessageText:
  696. //
  697. // Driver failed scanning, rescheduling another scan in 5sec.
  698. //
  699. #define WZCSVC_SM_STATE_DELAY_SR 0x00000BBEL
  700. //
  701. // MessageId: WZCSVC_SM_STATE_QUERY
  702. //
  703. // MessageText:
  704. //
  705. // Scan completed.
  706. //
  707. #define WZCSVC_SM_STATE_QUERY 0x00000BBFL
  708. //
  709. // MessageId: WZCSVC_SM_STATE_QUERY_NOCHANGE
  710. //
  711. // MessageText:
  712. //
  713. // No configuration change. Still associated to %1.
  714. //
  715. #define WZCSVC_SM_STATE_QUERY_NOCHANGE 0x00000BC0L
  716. //
  717. // MessageId: WZCSVC_SM_STATE_ITERATE
  718. //
  719. // MessageText:
  720. //
  721. // Plumbing configuration SSID: %1, Network Type: %2!d!.
  722. //
  723. #define WZCSVC_SM_STATE_ITERATE 0x00000BC1L
  724. //
  725. // MessageId: WZCSVC_SM_STATE_ITERATE_NONET
  726. //
  727. // MessageText:
  728. //
  729. // No configurations left in the selection list.
  730. //
  731. #define WZCSVC_SM_STATE_ITERATE_NONET 0x00000BC2L
  732. //
  733. // MessageId: WZCSVC_SM_STATE_FAILED
  734. //
  735. // MessageText:
  736. //
  737. // Failed to associated to any wireless network.
  738. //
  739. #define WZCSVC_SM_STATE_FAILED 0x00000BC3L
  740. //
  741. // MessageId: WZCSVC_SM_STATE_CFGREMOVE
  742. //
  743. // MessageText:
  744. //
  745. // Deleting configuration %1 and moving on.
  746. //
  747. #define WZCSVC_SM_STATE_CFGREMOVE 0x00000BC4L
  748. //
  749. // MessageId: WZCSVC_SM_STATE_CFGPRESERVE
  750. //
  751. // MessageText:
  752. //
  753. // Skipping configuration %1 for now, attempt authentication later.
  754. //
  755. #define WZCSVC_SM_STATE_CFGPRESERVE 0x00000BC5L
  756. //
  757. // MessageId: WZCSVC_SM_STATE_NOTIFY
  758. //
  759. // MessageText:
  760. //
  761. // Wireless interface successfully associated to %1 [MAC %2].
  762. //
  763. #define WZCSVC_SM_STATE_NOTIFY 0x00000BC6L
  764. //
  765. // MessageId: WZCSVC_SM_STATE_CFGHDKEY
  766. //
  767. // MessageText:
  768. //
  769. // Configuration %1 has a default random WEP key. Authentication is disabled. Assuming invalid configuration.
  770. //
  771. #define WZCSVC_SM_STATE_CFGHDKEY 0x00000BC7L
  772. //
  773. // MessageId: WZCSVC_EVENT_ADD
  774. //
  775. // MessageText:
  776. //
  777. // Received Device Arrival notification for %1.
  778. //
  779. #define WZCSVC_EVENT_ADD 0x00000BC8L
  780. //
  781. // MessageId: WZCSVC_EVENT_REMOVE
  782. //
  783. // MessageText:
  784. //
  785. // Received Device Removal notification for %1.
  786. //
  787. #define WZCSVC_EVENT_REMOVE 0x00000BC9L
  788. //
  789. // MessageId: WZCSVC_EVENT_CONNECT
  790. //
  791. // MessageText:
  792. //
  793. // Received Media Connect notification.
  794. //
  795. #define WZCSVC_EVENT_CONNECT 0x00000BCAL
  796. //
  797. // MessageId: WZCSVC_EVENT_DISCONNECT
  798. //
  799. // MessageText:
  800. //
  801. // Received Media Disconnect notification.
  802. //
  803. #define WZCSVC_EVENT_DISCONNECT 0x00000BCBL
  804. //
  805. // MessageId: WZCSVC_EVENT_TIMEOUT
  806. //
  807. // MessageText:
  808. //
  809. // Received Timeout notification.
  810. //
  811. #define WZCSVC_EVENT_TIMEOUT 0x00000BCCL
  812. //
  813. // MessageId: WZCSVC_EVENT_CMDREFRESH
  814. //
  815. // MessageText:
  816. //
  817. // Processing user command Refresh.
  818. //
  819. #define WZCSVC_EVENT_CMDREFRESH 0x00000BCDL
  820. //
  821. // MessageId: WZCSVC_EVENT_CMDRESET
  822. //
  823. // MessageText:
  824. //
  825. // Processing user command Reset.
  826. //
  827. #define WZCSVC_EVENT_CMDRESET 0x00000BCEL
  828. //
  829. // MessageId: WZCSVC_EVENT_CMDCFGNEXT
  830. //
  831. // MessageText:
  832. //
  833. // Processing command Next Configuration.
  834. //
  835. #define WZCSVC_EVENT_CMDCFGNEXT 0x00000BCFL
  836. //
  837. // MessageId: WZCSVC_EVENT_CMDCFGDELETE
  838. //
  839. // MessageText:
  840. //
  841. // Processing command Remove Configuration.
  842. //
  843. #define WZCSVC_EVENT_CMDCFGDELETE 0x00000BD0L
  844. //
  845. // MessageId: WZCSVC_EVENT_CMDCFGNOOP
  846. //
  847. // MessageText:
  848. //
  849. // Processing command Update data.
  850. //
  851. #define WZCSVC_EVENT_CMDCFGNOOP 0x00000BD1L
  852. //
  853. // MessageId: WZCSVC_SM_STATE_CFGSKIP
  854. //
  855. // MessageText:
  856. //
  857. // Deleting configuration %1 and moving on. If no better match is found, the configuration will be revived.
  858. //
  859. #define WZCSVC_SM_STATE_CFGSKIP 0x00000BD2L
  860. //
  861. // MessageId: WZCSVC_USR_CFGCHANGE
  862. //
  863. // MessageText:
  864. //
  865. // Wireless configuration has been changed via an administrative call.
  866. //
  867. #define WZCSVC_USR_CFGCHANGE 0x00000BD3L
  868. //
  869. // MessageId: WZCSVC_DETAILS_FLAGS
  870. //
  871. // MessageText:
  872. //
  873. // [Enabled=%1; Fallback=%2; Mode=%3; Volatile=%4; Policy=%5%]%n
  874. //
  875. #define WZCSVC_DETAILS_FLAGS 0x00000BD4L
  876. //
  877. // MessageId: WZCSVC_DETAILS_WCONFIG
  878. //
  879. // MessageText:
  880. //
  881. // {Ssid=%1; Infrastructure=%2; Privacy=%3; [Volatile=%4%; Policy=%5%]}.%n
  882. //
  883. #define WZCSVC_DETAILS_WCONFIG 0x00000BD5L
  884. //
  885. // MessageId: WZCSVC_ERR_QUERRY_BSSID
  886. //
  887. // MessageText:
  888. //
  889. // Failed to get the MAC address of the remote endpoint. Error code is %1!d!.
  890. //
  891. #define WZCSVC_ERR_QUERRY_BSSID 0x00000BD6L
  892. //
  893. // MessageId: WZCSVC_ERR_GEN_SESSION_KEYS
  894. //
  895. // MessageText:
  896. //
  897. // Failed to generate the initial session keys. Error code is %1!d!.
  898. //
  899. #define WZCSVC_ERR_GEN_SESSION_KEYS 0x00000BD7L
  900. //
  901. // MessageId: WZCSVC_BLIST_CHANGED
  902. //
  903. // MessageText:
  904. //
  905. // The list of blocked networks has changed. It contains now %1!d! network(s).
  906. //
  907. #define WZCSVC_BLIST_CHANGED 0x00000BD8L
  908. //
  909. // MessageId: WZCSVC_ERR_CFG_PLUMB
  910. //
  911. // MessageText:
  912. //
  913. // Failed to plumb the configuration %1. Error code is %2!d!.
  914. //
  915. #define WZCSVC_ERR_CFG_PLUMB 0x00000BD9L
  916. //
  917. // MessageId: EAPOL_STATE_TRANSITION
  918. //
  919. // MessageText:
  920. //
  921. // EAPOL State Transition: [%1!ws!] to [%2!ws!]
  922. //
  923. #define EAPOL_STATE_TRANSITION 0x00000BDAL
  924. //
  925. // MessageId: EAPOL_STATE_TIMEOUT
  926. //
  927. // MessageText:
  928. //
  929. // EAPOL State Timeout: [%1!ws!]
  930. //
  931. #define EAPOL_STATE_TIMEOUT 0x00000BDBL
  932. //
  933. // MessageId: EAPOL_MEDIA_CONNECT
  934. //
  935. // MessageText:
  936. //
  937. // Processing media connect event for [%1!ws!]
  938. //
  939. #define EAPOL_MEDIA_CONNECT 0x00000BDCL
  940. //
  941. // MessageId: EAPOL_MEDIA_DISCONNECT
  942. //
  943. // MessageText:
  944. //
  945. // Processing media disconnect event for [%1!ws!]
  946. //
  947. #define EAPOL_MEDIA_DISCONNECT 0x00000BDDL
  948. //
  949. // MessageId: EAPOL_INTERFACE_ADDITION
  950. //
  951. // MessageText:
  952. //
  953. // Processing interface addition event for [%1!ws!]
  954. //
  955. #define EAPOL_INTERFACE_ADDITION 0x00000BDEL
  956. //
  957. // MessageId: EAPOL_INTERFACE_REMOVAL
  958. //
  959. // MessageText:
  960. //
  961. // Processing interface removal event for [%1!ws!]
  962. //
  963. #define EAPOL_INTERFACE_REMOVAL 0x00000BDFL
  964. //
  965. // MessageId: EAPOL_NDISUIO_BIND
  966. //
  967. // MessageText:
  968. //
  969. // Processing adapter bind event for [%1!ws!]
  970. //
  971. #define EAPOL_NDISUIO_BIND 0x00000BE0L
  972. //
  973. // MessageId: EAPOL_NDISUIO_UNBIND
  974. //
  975. // MessageText:
  976. //
  977. // Processing adapter unbind event for [%1!ws!]
  978. //
  979. #define EAPOL_NDISUIO_UNBIND 0x00000BE1L
  980. //
  981. // MessageId: EAPOL_USER_LOGON
  982. //
  983. // MessageText:
  984. //
  985. // Processing user logon event for interface [%1!ws!]
  986. //
  987. #define EAPOL_USER_LOGON 0x00000BE2L
  988. //
  989. // MessageId: EAPOL_USER_LOGOFF
  990. //
  991. // MessageText:
  992. //
  993. // Processing user logoff event for interface [%1!ws!]
  994. //
  995. #define EAPOL_USER_LOGOFF 0x00000BE3L
  996. //
  997. // MessageId: EAPOL_PARAMS_CHANGE
  998. //
  999. // MessageText:
  1000. //
  1001. // Processing 802.1X configuration parameters change event for [%1!ws!]
  1002. //
  1003. #define EAPOL_PARAMS_CHANGE 0x00000BE4L
  1004. //
  1005. // MessageId: EAPOL_USER_NO_CERTIFICATE
  1006. //
  1007. // MessageText:
  1008. //
  1009. // Unable to find a valid certificate for 802.1X authentication
  1010. //
  1011. #define EAPOL_USER_NO_CERTIFICATE 0x00000BE5L
  1012. //
  1013. // MessageId: EAPOL_ERROR_GET_IDENTITY
  1014. //
  1015. // MessageText:
  1016. //
  1017. // Error in fetching %1!ws! identity 0x%2!0x!
  1018. //
  1019. #define EAPOL_ERROR_GET_IDENTITY 0x00000BE6L
  1020. //
  1021. // MessageId: EAPOL_ERROR_AUTH_PROCESSING
  1022. //
  1023. // MessageText:
  1024. //
  1025. // Error in authentication protocol processing 0x%1!0x!
  1026. //
  1027. #define EAPOL_ERROR_AUTH_PROCESSING 0x00000BE7L
  1028. //
  1029. // MessageId: EAPOL_PROCESS_PACKET_EAPOL
  1030. //
  1031. // MessageText:
  1032. //
  1033. // Packet %1!ws!: Dest:[%2!ws!] Src:[%3!ws!] EAPOL-Pkt-type:[%4!ws!]
  1034. //
  1035. #define EAPOL_PROCESS_PACKET_EAPOL 0x00000BE8L
  1036. //
  1037. // MessageId: EAPOL_PROCESS_PACKET_EAPOL_EAP
  1038. //
  1039. // MessageText:
  1040. //
  1041. // Packet %1!ws!:%n Dest:[%2!ws!]%n Src:[%3!ws!]%n EAPOL-Pkt-type:[%4!ws!]%n Data-length:[%5!ld!]%n EAP-Pkt-type:[%6!ws!]%n EAP-Id:[%7!ld!]%n EAP-Data-Length:[%8!ld!]%n %9!ws!%n
  1042. //
  1043. #define EAPOL_PROCESS_PACKET_EAPOL_EAP 0x00000BE9L
  1044. //
  1045. // MessageId: EAPOL_DESKTOP_REQUIRED_IDENTITY
  1046. //
  1047. // MessageText:
  1048. //
  1049. // Interactive desktop required for user credentials selection
  1050. //
  1051. #define EAPOL_DESKTOP_REQUIRED_IDENTITY 0x00000BEAL
  1052. //
  1053. // MessageId: EAPOL_DESKTOP_REQUIRED_LOGON
  1054. //
  1055. // MessageText:
  1056. //
  1057. // Interactive desktop required to process logon information
  1058. //
  1059. #define EAPOL_DESKTOP_REQUIRED_LOGON 0x00000BEBL
  1060. //
  1061. // MessageId: EAPOL_CANNOT_DESKTOP_MACHINE_AUTH
  1062. //
  1063. // MessageText:
  1064. //
  1065. // Cannot interact with desktop during machine authentication
  1066. //
  1067. #define EAPOL_CANNOT_DESKTOP_MACHINE_AUTH 0x00000BECL
  1068. //
  1069. // MessageId: EAPOL_WAITING_FOR_DESKTOP_LOAD
  1070. //
  1071. // MessageText:
  1072. //
  1073. // Waiting for user interactive desktop to be loaded
  1074. //
  1075. #define EAPOL_WAITING_FOR_DESKTOP_LOAD 0x00000BEDL
  1076. //
  1077. // MessageId: EAPOL_WAITING_FOR_DESKTOP_IDENTITY
  1078. //
  1079. // MessageText:
  1080. //
  1081. // Waiting for 802.1X user module to fetch user credentials
  1082. //
  1083. #define EAPOL_WAITING_FOR_DESKTOP_IDENTITY 0x00000BEEL
  1084. //
  1085. // MessageId: EAPOL_WAITING_FOR_DESKTOP_LOGON
  1086. //
  1087. // MessageText:
  1088. //
  1089. // Waiting for 802.1X user module to process logon information
  1090. //
  1091. #define EAPOL_WAITING_FOR_DESKTOP_LOGON 0x00000BEFL
  1092. //
  1093. // MessageId: EAPOL_ERROR_DESKTOP_IDENTITY
  1094. //
  1095. // MessageText:
  1096. //
  1097. // Error in 802.1X user module while fetching user credentials 0x%1!0x!
  1098. //
  1099. #define EAPOL_ERROR_DESKTOP_IDENTITY 0x00000BF0L
  1100. //
  1101. // MessageId: EAPOL_ERROR_DESKTOP_LOGON
  1102. //
  1103. // MessageText:
  1104. //
  1105. // Error in 802.1X user module while process logon information 0x%1!0x!
  1106. //
  1107. #define EAPOL_ERROR_DESKTOP_LOGON 0x00000BF1L
  1108. //
  1109. // MessageId: EAPOL_PROCESSING_DESKTOP_RESPONSE
  1110. //
  1111. // MessageText:
  1112. //
  1113. // Processing response received from 802.1X user module
  1114. //
  1115. #define EAPOL_PROCESSING_DESKTOP_RESPONSE 0x00000BF2L
  1116. //
  1117. // MessageId: EAPOL_STATE_DETAILS
  1118. //
  1119. // MessageText:
  1120. //
  1121. // EAP-Identity:[%1!S!]%n State:[%2!ws!]%n Authentication type:[%3!ws!]%n Authentication mode:[%4!ld!]%n EAP-Type:[%5!ld!]%n Fail count:[%6!ld!]%n
  1122. //
  1123. #define EAPOL_STATE_DETAILS 0x00000BF3L
  1124. //
  1125. // MessageId: EAPOL_INVALID_EAPOL_KEY
  1126. //
  1127. // MessageText:
  1128. //
  1129. // Invalid EAPOL-Key message
  1130. //
  1131. #define EAPOL_INVALID_EAPOL_KEY 0x00000BF4L
  1132. //
  1133. // MessageId: EAPOL_ERROR_PROCESSING_EAPOL_KEY
  1134. //
  1135. // MessageText:
  1136. //
  1137. // Error processing EAPOL-Key message %1!ld!
  1138. //
  1139. #define EAPOL_ERROR_PROCESSING_EAPOL_KEY 0x00000BF5L
  1140. //
  1141. // MessageId: EAPOL_INVALID_EAP_TYPE
  1142. //
  1143. // MessageText:
  1144. //
  1145. // Invalid EAP-type=%1!ld! packet received. Expected EAP-type=%2!ld!
  1146. //
  1147. #define EAPOL_INVALID_EAP_TYPE 0x00000BF6L
  1148. //
  1149. // MessageId: EAPOL_NO_CERTIFICATE_USER
  1150. //
  1151. // MessageText:
  1152. //
  1153. // Unable to find a valid user certificate for 802.1X authentication
  1154. //
  1155. #define EAPOL_NO_CERTIFICATE_USER 0x00000BF7L
  1156. //
  1157. // MessageId: EAPOL_NO_CERTIFICATE_MACHINE
  1158. //
  1159. // MessageText:
  1160. //
  1161. // Unable to find a valid machine certificate for 802.1X authentication
  1162. //
  1163. #define EAPOL_NO_CERTIFICATE_MACHINE 0x00000BF8L
  1164. //
  1165. // MessageId: EAPOL_EAP_AUTHENTICATION_SUCCEEDED
  1166. //
  1167. // MessageText:
  1168. //
  1169. // 802.1X client authentication completed successfully with server
  1170. //
  1171. #define EAPOL_EAP_AUTHENTICATION_SUCCEEDED 0x00000BF9L
  1172. //
  1173. // MessageId: EAPOL_EAP_AUTHENTICATION_DEFAULT
  1174. //
  1175. // MessageText:
  1176. //
  1177. // No 802.1X authentication performed since there was no response from server for 802.1X packets. Entering AUTHENTICATED state.
  1178. //
  1179. #define EAPOL_EAP_AUTHENTICATION_DEFAULT 0x00000BFAL
  1180. //
  1181. // MessageId: EAPOL_EAP_AUTHENTICATION_FAILED
  1182. //
  1183. // MessageText:
  1184. //
  1185. // 802.1X client authentication failed. The error code is 0x%1!0x!
  1186. //
  1187. #define EAPOL_EAP_AUTHENTICATION_FAILED 0x00000BFBL
  1188. //
  1189. // MessageId: EAPOL_EAP_AUTHENTICATION_FAILED_DEFAULT
  1190. //
  1191. // MessageText:
  1192. //
  1193. // 802.1X client authentication failed. Network connectivity issues with authentication server were experienced.
  1194. //
  1195. #define EAPOL_EAP_AUTHENTICATION_FAILED_DEFAULT 0x00000BFCL
  1196. //
  1197. // MessageId: EAPOL_CERTIFICATE_DETAILS
  1198. //
  1199. // MessageText:
  1200. //
  1201. // A %1!ws! certificate was used for 802.1X authentication%n
  1202. //
  1203. // Version: %2!ws!%n
  1204. // Serial Number: %3!ws!%n
  1205. // Issuer: %4!ws!%n
  1206. // Friendly Name: %5!ws!%n
  1207. // UPN: %6!ws!%n
  1208. // Enhanced Key Usage: %7!ws!%n
  1209. // Valid From: %8!ws!%n
  1210. // Valid To: %9!ws!%n
  1211. // Thumbprint: %10!ws!
  1212. //
  1213. #define EAPOL_CERTIFICATE_DETAILS 0x00000BFDL
  1214. //
  1215. // MessageId: EAPOL_POLICY_CHANGE_NOTIFICATION
  1216. //
  1217. // MessageText:
  1218. //
  1219. // Received policy change notification from Policy Engine
  1220. //
  1221. #define EAPOL_POLICY_CHANGE_NOTIFICATION 0x00000BFEL
  1222. //
  1223. // MessageId: EAPOL_POLICY_UPDATED
  1224. //
  1225. // MessageText:
  1226. //
  1227. // Updated local policy settings with changed settings provided by Policy Engine
  1228. //
  1229. #define EAPOL_POLICY_UPDATED 0x00000BFFL
  1230. //
  1231. // MessageId: EAPOL_NOT_ENABLED_PACKET_REJECTED
  1232. //
  1233. // MessageText:
  1234. //
  1235. // 802.1X is not enabled for the current network setting. Packet received has been rejected.
  1236. //
  1237. #define EAPOL_NOT_ENABLED_PACKET_REJECTED 0x00000C00L
  1238. //
  1239. // MessageId: EAPOL_EAP_AUTHENTICATION_FAILED_ACQUIRED
  1240. //
  1241. // MessageText:
  1242. //
  1243. // 802.1X client authentication failed. Possible errors are:
  1244. // 1. Invalid username was entered
  1245. // 2. Invalid certificate was chosen
  1246. // 3. User account does not have privileges to authenticate
  1247. //
  1248. // Contact system administrator for more details
  1249. //
  1250. #define EAPOL_EAP_AUTHENTICATION_FAILED_ACQUIRED 0x00000C01L
  1251. //
  1252. // MessageId: EAPOL_NOT_CONFIGURED_KEYS
  1253. //
  1254. // MessageText:
  1255. //
  1256. // No keys have been configured for the Wireless connection. Re-keying functionality will not work.
  1257. //
  1258. #define EAPOL_NOT_CONFIGURED_KEYS 0x00000C02L
  1259. //
  1260. // MessageId: EAPOL_NOT_RECEIVED_XMIT_KEY
  1261. //
  1262. // MessageText:
  1263. //
  1264. // No transmit WEP key was received for the Wireless connection after 802.1x authentication. The current setting has been marked as failed and the Wireless connection will be disconnected.
  1265. //
  1266. #define EAPOL_NOT_RECEIVED_XMIT_KEY 0x00000C03L
  1267. //
  1268. // MessageId: ZCDB_LOG_BASE_END
  1269. //
  1270. // MessageText:
  1271. //
  1272. // end.
  1273. //
  1274. //
  1275. #define ZCDB_LOG_BASE_END 0x00000F9FL
  1276. //
  1277. // WPA error from WPA_MSG_BASE 4000 to WPA_MSG_END = 4500
  1278. //
  1279. //
  1280. // MessageId: WPA_ADMIN_SAFEMODE_HWIDOOT_MSG
  1281. //
  1282. // MessageText:
  1283. //
  1284. // Since Windows was first activated on this computer, the hardware on the computer has changed significantly. Due to these changes, Windows must be reactivated within %u days. You cannot reactivate Windows in safe mode. Please restart your computer in normal mode to reactivate Windows.\nDo you want to restart your computer now?
  1285. //
  1286. #define WPA_ADMIN_SAFEMODE_HWIDOOT_MSG 0x00000FA0L
  1287. //
  1288. // MessageId: WPA_ADMIN_ACTIVATIONREMINDER_HWIDOOT_MSG
  1289. //
  1290. // MessageText:
  1291. //
  1292. // Since Windows was first activated on this computer, the hardware on the computer has changed significantly. Due to these changes, Windows must be reactivated within %u days.\nDo you want to reactivate Windows now?
  1293. //
  1294. #define WPA_ADMIN_ACTIVATIONREMINDER_HWIDOOT_MSG 0x00000FA1L
  1295. //
  1296. // MessageId: WPA_USER_ACTIVATIONREMINDER_HWIDOOT_MSG
  1297. //
  1298. // MessageText:
  1299. //
  1300. // Since Windows was first activated on this computer, the hardware on the computer has changed significantly. Due to these changes, Windows must be reactivated within %u days. To avoid being denied access, please ask your computer administrator to reactivate Windows on this computer.
  1301. //
  1302. #define WPA_USER_ACTIVATIONREMINDER_HWIDOOT_MSG 0x00000FA3L
  1303. //
  1304. // MessageId: WPA_BLPID_MSG
  1305. //
  1306. // MessageText:
  1307. //
  1308. // The Product Key used to install Windows is invalid. Please contact your system administrator or retailer immediately to obtain a valid Product Key. You may also contact Microsoft Corporation�s Anti-Piracy Team by emailing [email protected] if you think you have purchased pirated Microsoft software. Please be assured that any personal information you send to the Microsoft Anti-Piracy Team will be kept in strict confidence.
  1309. //
  1310. #define WPA_BLPID_MSG 0x00000FA4L
  1311. //
  1312. // MessageId: WPA_MSG_END
  1313. //
  1314. // MessageText:
  1315. //
  1316. // end.
  1317. //
  1318. #define WPA_MSG_END 0x00001194L
  1319. //
  1320. // New error for userenv.dll
  1321. //
  1322. //
  1323. // MessageId: EVENT_LOGON_RUP_NOT_SECURE
  1324. //
  1325. // MessageText:
  1326. //
  1327. // Windows did not load your roaming profile and is attempting to log you on with your local profile. Changes to the profile will not be copied to the server when you logoff. Windows did not load your profile because a server copy of the profile folder already exists that does not have the correct security. Either the current user or the Administrator's group must be the owner of the folder. Contact your network administrator. %n%n
  1328. //
  1329. #define EVENT_LOGON_RUP_NOT_SECURE 0xC00005F6L
  1330. //Eventlog messages for telnet.
  1331. //TELNET_BASE = 6000
  1332. //TELNET_BLOCK_NUMID = 10
  1333. //
  1334. // MessageId: TELNET_MSG_ERROR_CREATE_DESKTOP_FAILURE
  1335. //
  1336. // MessageText:
  1337. //
  1338. // Telnet Server failed to initialize a Telnet Session due to lack of system resources. Please free up memory by closing any idle telnet connections or some other applications and try again. System error : %1
  1339. //
  1340. //
  1341. #define TELNET_MSG_ERROR_CREATE_DESKTOP_FAILURE 0xC0001771L
  1342. //
  1343. // MessageId: TELNET_MSG_REVERTSELFFAIL
  1344. //
  1345. // MessageText:
  1346. //
  1347. // Telnet session will be terminated due to an internal error while calling RevertToSelf() . System Error: %1
  1348. //
  1349. //
  1350. #define TELNET_MSG_REVERTSELFFAIL 0xC0001772L
  1351. #endif //__XPSP1RES_H_