mirror of
https://github.com/reactos/reactos.git
synced 2025-06-13 14:08:30 +00:00
[IMM32][SDK] Implement software keyboard, Part 1 (#5865)
- Add dll/win32/imm32/softkbd.c source file. - Half-implement ImmCreateSoftKeyboard function. - Move ImmShowSoftKeyboard, and ImmDestroySoftKeyboard functions. - Modify ImmCreateSoftKeyboard prototype. CORE-19268
This commit is contained in:
parent
d7ece626cb
commit
4aa1bcb72b
5 changed files with 316 additions and 34 deletions
|
@ -253,9 +253,22 @@ LRESULT WINAPI ImmRequestMessageA(HIMC, WPARAM, LPARAM);
|
|||
LRESULT WINAPI ImmRequestMessageW(HIMC, WPARAM, LPARAM);
|
||||
#define ImmRequestMessage WINELIB_NAME_AW(ImmRequestMessage);
|
||||
BOOL WINAPI ImmTranslateMessage(HWND, UINT, WPARAM, LPARAM);
|
||||
HWND WINAPI ImmCreateSoftKeyboard(UINT, UINT, int, int);
|
||||
BOOL WINAPI ImmDestroySoftKeyboard(HWND);
|
||||
BOOL WINAPI ImmShowSoftKeyboard(HWND, int);
|
||||
|
||||
HWND WINAPI
|
||||
ImmCreateSoftKeyboard(
|
||||
_In_ UINT uType,
|
||||
_In_ HWND hwndParent,
|
||||
_In_ INT x,
|
||||
_In_ INT y);
|
||||
|
||||
BOOL WINAPI
|
||||
ImmShowSoftKeyboard(
|
||||
_In_ HWND hwndSoftKBD,
|
||||
_In_ INT nCmdShow);
|
||||
|
||||
BOOL WINAPI
|
||||
ImmDestroySoftKeyboard(
|
||||
_In_ HWND hwndSoftKBD);
|
||||
|
||||
BOOL WINAPI ImeInquire(LPIMEINFO, LPWSTR, LPCWSTR lpszOptions);
|
||||
BOOL WINAPI ImeConfigure (HKL, HWND, DWORD, LPVOID);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue