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.

109 lines
3.1 KiB

  1. /********************************************************/
  2. /* Microsoft Windows NT */
  3. /* Copyright(c) Microsoft Corp., 1990, 1991 */
  4. /********************************************************/
  5. /*
  6. uihelp.h
  7. This file contains the ranges for ALL UI help contexts.
  8. FILE HISTORY:
  9. KeithMo 04-Aug-1992 Created.
  10. */
  11. #ifndef _UIHELP_H_
  12. #define _UIHELP_H_
  13. //
  14. // The mother of all help contexts.
  15. //
  16. #define HC_UI_BASE 7000
  17. //
  18. // The following help context ranges are defined
  19. // for the various NETUI modules (LMUICMN0, LMUICMN1,
  20. // NTLANMAN, MPRUI, etc).
  21. //
  22. // All help contexts < 7000 are reserved for APIERR mapping.
  23. //
  24. // Note that ACLEDIT does not need a range; it receives
  25. // a set of help contexts from the invoker.
  26. //
  27. #define HC_UI_LMUICMN0_BASE (HC_UI_BASE+0)
  28. #define HC_UI_LMUICMN0_LAST (HC_UI_BASE+1999)
  29. #define HC_UI_LMUICMN1_BASE (HC_UI_BASE+2000)
  30. #define HC_UI_LMUICMN1_LAST (HC_UI_BASE+3999)
  31. #define HC_UI_MPR_BASE (HC_UI_BASE+4000)
  32. #define HC_UI_MPR_LAST (HC_UI_BASE+5999)
  33. #define HC_UI_SETUP_BASE (HC_UI_BASE+8000)
  34. #define HC_UI_SETUP_LAST (HC_UI_BASE+9999)
  35. #define HC_UI_SHELL_BASE (HC_UI_BASE+10000)
  36. #define HC_UI_SHELL_LAST (HC_UI_BASE+11999)
  37. #define HC_UI_USRMGR_BASE (HC_UI_BASE+14000)
  38. #define HC_UI_USRMGR_LAST (HC_UI_BASE+15999)
  39. #define HC_UI_EVTVWR_BASE (HC_UI_BASE+16000)
  40. #define HC_UI_EVTVWR_LAST (HC_UI_BASE+17999)
  41. #define HC_UI_RASMAC_BASE (HC_UI_BASE+18000)
  42. #define HC_UI_RASMAC_LAST (HC_UI_BASE+19999)
  43. #define HC_UI_GENHELP_BASE (HC_UI_BASE+20000)
  44. #define HC_UI_GENHELP_LAST (HC_UI_BASE+20999)
  45. #define HC_UI_RPLMGR_BASE (HC_UI_BASE+21000)
  46. #define HC_UI_RPLMGR_LAST (HC_UI_BASE+21999)
  47. //
  48. // Help contexts for all NetUI Control Panel Applets
  49. // must be >= 40000. Keeping the contexts >= 40000
  50. // will prevent context collisions with the other
  51. // Control Panel Applets.
  52. //
  53. // As stated in SHELL\CONTROL\MAIN\CPHELP.H, NetUI has
  54. // reserved the help context range from 40000 - 59999.
  55. // This should give us plenty of breathing room for
  56. // any future applets we may create.
  57. //
  58. #define HC_UI_NCPA_BASE (HC_UI_BASE+34000)
  59. #define HC_UI_NCPA_LAST (HC_UI_BASE+35999)
  60. #define HC_UI_SRVMGR_BASE (HC_UI_BASE+36000)
  61. #define HC_UI_SRVMGR_LAST (HC_UI_BASE+37999)
  62. #define HC_UI_UPS_BASE (HC_UI_BASE+38000)
  63. #define HC_UI_UPS_LAST (HC_UI_BASE+39999)
  64. #define HC_UI_FTPMGR_BASE (HC_UI_BASE+40000)
  65. #define HC_UI_FTPMGR_LAST (HC_UI_BASE+41999)
  66. #define HC_UI_IPX_BASE (HC_UI_BASE+42000)
  67. #define HC_UI_IPX_LAST (HC_UI_BASE+42999)
  68. #define HC_UI_TCP_BASE (HC_UI_BASE+43000)
  69. #define HC_UI_TCP_LAST (HC_UI_BASE+43999)
  70. #define HC_UI_RESERVED1_BASE (HC_UI_BASE+44000)
  71. #define HC_UI_RESERVED1_LAST (HC_UI_BASE+44999)
  72. #define HC_UI_RESERVED2_BASE (HC_UI_BASE+45000)
  73. #define HC_UI_RESERVED2_LAST (HC_UI_BASE+45999)
  74. #define HC_UI_RESERVED3_BASE (HC_UI_BASE+46000)
  75. #define HC_UI_RESERVED3_LAST (HC_UI_BASE+46999)
  76. #endif // _UIHELP_H_