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.

77 lines
2.9 KiB

  1. /**********************************************************************/
  2. /* INDICML.H - Indicator Service Manager definitions */
  3. /* */
  4. /* Copyright (c) 1993-1997 Microsoft Corporation */
  5. /**********************************************************************/
  6. #ifndef _INDICML_
  7. #define _INDICML_ // defined if INDICML.H has been included
  8. ;begin_both
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. ;end_both
  13. //------------------------------------------------------------------// ;Internal
  14. // // ;Internal
  15. // Internal ID for WM_COMMAND of Indicator Window. // ;Internal
  16. // // ;Internal
  17. //------------------------------------------------------------------// ;Internal
  18. #define CMDINDIC_REFRESHINDIC 249 // ;Internal
  19. // // ;Internal
  20. // defined in internat\exe\resource.h // ;Internal
  21. // #define IDM_RMENU_WHATSTHIS 250 // ;Internal
  22. // #define IDM_RMENU_HELPFINDER 251 // ;Internal
  23. // #define IDM_RMENU_PROPERTIES 252 // ;Internal
  24. // #define IDM_EXIT 253 // ;Internal
  25. // #define IDM_RMENU_IMEHELP 254 // ;Internal
  26. // // ;Internal
  27. #define CMDINDIC_EXIT 259 // ;Internal
  28. //---------------------------------------------------------------------
  29. //
  30. // The messages for Indicator Window.
  31. //
  32. //---------------------------------------------------------------------
  33. #define INDICM_SETIMEICON (WM_USER+100)
  34. #define INDICM_SETIMETOOLTIPS (WM_USER+101)
  35. #define INDICM_REMOVEDEFAULTMENUITEMS (WM_USER+102)
  36. //---------------------------------------------------------------------
  37. //
  38. // The wParam for INDICM_REMOVEDEFAULTMEUITEMS
  39. //
  40. //---------------------------------------------------------------------
  41. #define RDMI_LEFT 0x0001
  42. #define RDMI_RIGHT 0x0002
  43. //---------------------------------------------------------------------
  44. //
  45. // INDICATOR_WND will be used by the IME to find indicator window.
  46. // IME should call FindWindow(INDICATOR_WND) to get it.
  47. //
  48. //---------------------------------------------------------------------
  49. #ifdef _WIN32
  50. #define INDICATOR_CLASSW L"Indicator"
  51. #define INDICATOR_CLASSA "Indicator"
  52. #ifdef UNICODE
  53. #define INDICATOR_CLASS INDICATOR_CLASSW
  54. #else
  55. #define INDICATOR_CLASS INDICATOR_CLASSA
  56. #endif
  57. #else
  58. #define INDICATOR_CLASS "Indicator"
  59. #endif
  60. ;begin_both
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. ;end_both
  65. #endif // _INDICML_