INDICML.H
上传用户:szljw888
上传日期:2010-04-11
资源大小:124k
文件大小:2k
源码类别:

输入法编程

开发平台:

C/C++

  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. //---------------------------------------------------------------------
  20. //
  21. // The wParam for INDICM_REMOVEDEFAULTMEUITEMS
  22. //
  23. //---------------------------------------------------------------------
  24. #define RDMI_LEFT         0x0001
  25. #define RDMI_RIGHT        0x0002
  26. //---------------------------------------------------------------------
  27. //
  28. // INDICATOR_WND will be used by the IME to find indicator window.
  29. // IME should call FindWindow(INDICATOR_WND) to get it.
  30. //
  31. //---------------------------------------------------------------------
  32. #ifdef _WIN32
  33. #define INDICATOR_CLASSW         L"Indicator"
  34. #define INDICATOR_CLASSA         "Indicator"
  35. #ifdef UNICODE
  36. #define INDICATOR_CLASS          INDICATOR_CLASSW
  37. #else
  38. #define INDICATOR_CLASS          INDICATOR_CLASSA
  39. #endif
  40. #else
  41. #define INDICATOR_CLASS          "Indicator"
  42. #endif
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif  // _INDICML_