INDICML.H
资源名称:大熊猫输入法原码.zip [点击查看]
上传用户:szljw888
上传日期:2010-04-11
资源大小:124k
文件大小:2k
源码类别:
输入法编程
开发平台:
C/C++
- /**********************************************************************/
- /* INDICML.H - Indicator Service Manager definitions */
- /* */
- /* Copyright (c) 1993-1997 Microsoft Corporation */
- /**********************************************************************/
- #ifndef _INDICML_
- #define _INDICML_ // defined if INDICML.H has been included
- #ifdef __cplusplus
- extern "C" {
- #endif
- //---------------------------------------------------------------------
- //
- // The messages for Indicator Window.
- //
- //---------------------------------------------------------------------
- #define INDICM_SETIMEICON (WM_USER+100)
- #define INDICM_SETIMETOOLTIPS (WM_USER+101)
- #define INDICM_REMOVEDEFAULTMENUITEMS (WM_USER+102)
- //---------------------------------------------------------------------
- //
- // The wParam for INDICM_REMOVEDEFAULTMEUITEMS
- //
- //---------------------------------------------------------------------
- #define RDMI_LEFT 0x0001
- #define RDMI_RIGHT 0x0002
- //---------------------------------------------------------------------
- //
- // INDICATOR_WND will be used by the IME to find indicator window.
- // IME should call FindWindow(INDICATOR_WND) to get it.
- //
- //---------------------------------------------------------------------
- #ifdef _WIN32
- #define INDICATOR_CLASSW L"Indicator"
- #define INDICATOR_CLASSA "Indicator"
- #ifdef UNICODE
- #define INDICATOR_CLASS INDICATOR_CLASSW
- #else
- #define INDICATOR_CLASS INDICATOR_CLASSA
- #endif
- #else
- #define INDICATOR_CLASS "Indicator"
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif // _INDICML_