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.

137 lines
3.6 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: helpids.h
  7. //
  8. // Contents: Context ids for context-sensitive help
  9. //
  10. // History: 6-May-94 BruceFo Created from windisk
  11. //
  12. //----------------------------------------------------------------------------
  13. #ifndef __HELPIDS_H__
  14. #define __HELPIDS_H__
  15. //
  16. // NOTE: if you change the numbers in this file, you must notify User Education
  17. // NOTE: so they can change the help file sources
  18. //
  19. //
  20. // All ids in this file start with HC_, as in "Help Context"
  21. //
  22. //
  23. // All menu item ids start with HC_MENU_
  24. //
  25. //
  26. // Storage menu
  27. //
  28. #define HC_MENU_SELECT_DFS 100
  29. #define HC_MENU_OPEN 101
  30. #define HC_MENU_EXPLORE 102
  31. #define HC_MENU_ADD 103
  32. #define HC_MENU_REMOVE 104
  33. #define HC_MENU_PROPERTIES 105
  34. #define HC_MENU_LOAD 106
  35. #define HC_MENU_SAVE_AS 107
  36. #define HC_MENU_EXIT 108
  37. //
  38. // View menu
  39. //
  40. #define HC_MENU_TOOLBAR 200
  41. #define HC_MENU_STATUSBAR 201
  42. #define HC_MENU_FILTER 202
  43. #define HC_MENU_FONT 203
  44. #define HC_MENU_REFRESH 204
  45. //
  46. // Help menu
  47. //
  48. #define HC_MENU_HELP 300
  49. #define HC_MENU_ABOUT 303
  50. //
  51. // Context menu items: these should duplicate the other menu help
  52. //
  53. #define HC_MENU_CTX_OPEN HC_MENU_OPEN
  54. #define HC_MENU_CTX_LAUNCH_EXPLORER HC_MENU_LAUNCH_EXPLORER
  55. #define HC_MENU_CTX_SHARE_A_FOLDER HC_MENU_SHARE_A_FOLDER
  56. #define HC_MENU_CTX_STOP_SHARING HC_MENU_STOP_SHARING
  57. #define HC_MENU_CTX_PROPERTIES HC_MENU_PROPERTIES
  58. //
  59. // The system menu
  60. //
  61. #define HC_MENU_SYSMENU_RESTORE 1000
  62. #define HC_MENU_SYSMENU_MOVE 1001
  63. #define HC_MENU_SYSMENU_SIZE 1002
  64. #define HC_MENU_SYSMENU_MINIMIZE 1003
  65. #define HC_MENU_SYSMENU_MAXIMIZE 1004
  66. #define HC_MENU_SYSMENU_CLOSE 1005
  67. #define HC_MENU_SYSMENU_SWITCHTO 1006
  68. //
  69. // Dialog boxes. In the form HC_DLG_xxx, where xxx is some reasonably
  70. // descriptive name for the dialog.
  71. //
  72. #define HC_DLG_CUSTOMIZETOOLBAR 2000
  73. //
  74. // Dialog box context-sensitive help
  75. //
  76. // Common
  77. #define HC_OK 3000
  78. #define HC_CANCEL 3001
  79. // Filter volumes
  80. #define HC_FV_ALL 3100
  81. #define HC_FV_NAME 3101
  82. #define HC_FV_COMMENT 3102
  83. #define HC_FV_REPLICACOUNT 3104
  84. // Choose Dfs
  85. #define HC_DFSNAME 3200
  86. #define HC_TREE 3201
  87. // Add to Dfs dialog
  88. #define HC_ADD_MOUNT_POINT_GROUP 3300
  89. #define HC_ADD_MOUNT_AS 3301
  90. #define HC_ADD_BROWSE_DFS 3302
  91. #define HC_ADD_UNC 3303
  92. #define HC_ADD_BROWSE 3304
  93. #define HC_ADD_COMMENT 3305
  94. // Volume Property page
  95. #define HC_PROP_MOUNT_POINT_GROUP 3400
  96. #define HC_PROP_MOUNT_AS 3401
  97. #define HC_PROP_UNC 3402
  98. #define HC_PROP_COMMENT 3403
  99. #define HC_PROP_ADD 3406
  100. #define HC_PROP_REMOVE 3407
  101. // Load Conflict dialog
  102. #define HC_CONFLICT_TEXT 3500
  103. #define HC_OVERRIDE 3501
  104. #define HC_OVERRIDE_ALL 3502
  105. #define HC_IGNORE 3503
  106. #define HC_IGNORE_ALL 3504
  107. //
  108. // Obsolete help ids that haven't been removed yet.
  109. //
  110. #define HC_DFS_PREFIX 9000
  111. #define HC_EXPLOREDFS 9000
  112. #endif // __HELPIDS_H__