mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:23:10 +00:00
[IMM32][NTUSER] Add ImmGetImeInfoEx (#3035)
- Add the definition of imm32!ImmGetImeInfoEx function. - Add IMEINFOEXCLASS and IS_IME_HKL into "ntuser.h". - Modify NtUserGetImeInfoEx function prototype. CORE-11700
This commit is contained in:
parent
047da7e632
commit
4b038ec8b7
4 changed files with 41 additions and 6 deletions
|
@ -1174,6 +1174,14 @@ typedef struct tagIMEINFOEX
|
|||
};
|
||||
} IMEINFOEX, *PIMEINFOEX;
|
||||
|
||||
typedef enum IMEINFOEXCLASS
|
||||
{
|
||||
ImeInfoExKeyboardLayout,
|
||||
ImeInfoExImeFileName
|
||||
} IMEINFOEXCLASS;
|
||||
|
||||
#define IS_IME_HKL(hkl) ((((ULONG_PTR)(hkl)) & 0xF0000000) == 0xE0000000)
|
||||
|
||||
typedef struct tagIMEUI
|
||||
{
|
||||
PWND spwnd;
|
||||
|
@ -2284,11 +2292,11 @@ NtUserGetImeHotKey(IN DWORD dwHotKey,
|
|||
OUT LPUINT lpuVKey,
|
||||
OUT LPHKL lphKL);
|
||||
|
||||
DWORD
|
||||
BOOL
|
||||
NTAPI
|
||||
NtUserGetImeInfoEx(
|
||||
PIMEINFOEX pImeInfoEx,
|
||||
DWORD dwUnknown2);
|
||||
IMEINFOEXCLASS SearchType);
|
||||
|
||||
DWORD
|
||||
NTAPI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue