mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 00:43:11 +00:00
[USER32] Implement ImeWnd_OnImeControl (#4320)
- Add IMC_GETCONVERSIONMODE, IMC_GETSENTENCEMODE, IMC_GETOPENSTATUS, IMC_GETSOFTKBDPOS, and IMC_SETSOFTKBDPOS macros into <ddk/imm.h>. - Implement WM_IME_CONTROL message handling of the IME window. CORE-11700
This commit is contained in:
parent
82136b3ee4
commit
3fc83b4361
2 changed files with 130 additions and 3 deletions
|
@ -24,6 +24,13 @@
|
|||
|
||||
#include <psdk/imm.h>
|
||||
|
||||
/* wParam for WM_IME_CONTROL */
|
||||
#define IMC_GETCONVERSIONMODE 0x0001
|
||||
#define IMC_GETSENTENCEMODE 0x0003
|
||||
#define IMC_GETOPENSTATUS 0x0005
|
||||
#define IMC_GETSOFTKBDPOS 0x0013
|
||||
#define IMC_SETSOFTKBDPOS 0x0014
|
||||
|
||||
typedef struct _tagINPUTCONTEXT {
|
||||
HWND hWnd;
|
||||
BOOL fOpen;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue