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.

51 lines
1.5 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. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. //---------------------------------------------------------------------
  12. //
  13. // The messages for Indicator Window.
  14. //
  15. //---------------------------------------------------------------------
  16. #define INDICM_SETIMEICON (WM_USER+100)
  17. #define INDICM_SETIMETOOLTIPS (WM_USER+101)
  18. #define INDICM_REMOVEDEFAULTMENUITEMS (WM_USER+102)
  19. #define RDMI_LEFT 0x0001
  20. #define RDMI_RIGHT 0x0002
  21. //---------------------------------------------------------------------
  22. //
  23. // INDICATOR_WND will be used by the IME to find indicator window.
  24. // IME should call FindWindow(INDICATOR_WND) to get it.
  25. //
  26. //---------------------------------------------------------------------
  27. #ifdef _WIN32
  28. #define INDICATOR_CLASSW L"Indicator"
  29. #define INDICATOR_CLASSA "Indicator"
  30. #ifdef UNICODE
  31. #define INDICATOR_CLASS INDICATOR_CLASSW
  32. #else
  33. #define INDICATOR_CLASS INDICATOR_CLASSA
  34. #endif
  35. #else
  36. #define INDICATOR_CLASS "Indicator"
  37. #endif
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif // _INDICML_