ReactOS 0.4.15-dev-7788-g1ad9096
input.c
Go to the documentation of this file.
1/*
2 * ReactOS kernel
3 * Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19/*
20 * PROJECT: ReactOS user32.dll
21 * FILE: win32ss/user/user32/windows/input.c
22 * PURPOSE: Input
23 * PROGRAMMER: Casper S. Hornstrup (chorns@users.sourceforge.net)
24 * UPDATE HISTORY:
25 * 09-05-2001 CSH Created
26 */
27
28#include <user32.h>
29
30#include <strsafe.h>
31
33
34typedef struct tagIMEHOTKEYENTRY
35{
41
42// Japanese
44{
46};
47
48// Chinese Traditional
50{
53};
54
55// Chinese Simplified
57{
60};
61
62// The far-east flags
63#define FE_JAPANESE (1 << 0)
64#define FE_CHINESE_TRADITIONAL (1 << 1)
65#define FE_CHINESE_SIMPLIFIED (1 << 2)
66#define FE_KOREAN (1 << 3)
67
68// Sets the far-east flags
69// Win: SetFeKeyboardFlags
71{
72 switch (LangID)
73 {
75 *pbFlags |= FE_JAPANESE;
76 break;
77
80 *pbFlags |= FE_CHINESE_TRADITIONAL;
81 break;
82
85 *pbFlags |= FE_CHINESE_SIMPLIFIED;
86 break;
87
89 *pbFlags |= FE_KOREAN;
90 break;
91
92 default:
93 break;
94 }
95}
96
98{
99 DWORD dwValue, cbValue;
100 LONG error;
101
102 cbValue = sizeof(dwValue);
103 error = RegQueryValueExW(hKey, pszName, NULL, NULL, (LPBYTE)&dwValue, &cbValue);
104 if (error != ERROR_SUCCESS || cbValue < sizeof(DWORD))
105 return 0;
106
107 return dwValue;
108}
109
111CliImmSetHotKeyWorker(DWORD dwHotKeyId, UINT uModifiers, UINT uVirtualKey, HKL hKL, DWORD dwAction)
112{
113 if (dwAction == SETIMEHOTKEY_ADD)
114 {
115 if (IME_HOTKEY_DSWITCH_FIRST <= dwHotKeyId && dwHotKeyId <= IME_HOTKEY_DSWITCH_LAST)
116 {
117 if (!hKL)
118 goto Failure;
119 }
120 else
121 {
122 if (hKL)
123 goto Failure;
124
125 if (IME_KHOTKEY_SHAPE_TOGGLE <= dwHotKeyId &&
127 {
128 // The Korean cannot set the IME hotkeys
129 goto Failure;
130 }
131 }
132
133#define MOD_ALL_MODS (MOD_ALT | MOD_CONTROL | MOD_SHIFT | MOD_WIN)
134 if ((uModifiers & MOD_ALL_MODS) && !(uModifiers & (MOD_LEFT | MOD_RIGHT)))
135 goto Failure;
136#undef MOD_ALL_MODS
137 }
138
139 return NtUserSetImeHotKey(dwHotKeyId, uModifiers, uVirtualKey, hKL, dwAction);
140
141Failure:
143 return FALSE;
144}
145
146
147/* Win: LoadPreloadKeyboardLayouts */
149{
150 UINT nNumber, uFlags;
151 DWORD cbValue, dwType;
152 WCHAR szNumber[32], szValue[KL_NAMELENGTH];
153 HKEY hPreloadKey;
154 BOOL bOK = FALSE;
155 HKL hKL, hDefaultKL = NULL;
156
158 L"Keyboard Layout\\Preload",
159 &hPreloadKey) != ERROR_SUCCESS)
160 {
161 return;
162 }
163
164 for (nNumber = 1; nNumber <= 1000; ++nNumber)
165 {
166 _ultow(nNumber, szNumber, 10);
167
168 cbValue = sizeof(szValue);
169 if (RegQueryValueExW(hPreloadKey,
170 szNumber,
171 NULL,
172 &dwType,
173 (LPBYTE)szValue,
174 &cbValue) != ERROR_SUCCESS)
175 {
176 break;
177 }
178
179 if (dwType != REG_SZ)
180 continue;
181
182 if (nNumber == 1) /* The first entry is for default keyboard layout */
183 uFlags = KLF_SUBSTITUTE_OK | KLF_ACTIVATE | KLF_RESET;
184 else
186
187 hKL = LoadKeyboardLayoutW(szValue, uFlags);
188 if (hKL)
189 {
190 bOK = TRUE;
191 if (nNumber == 1) /* The first entry */
192 hDefaultKL = hKL;
193 }
194 }
195
196 RegCloseKey(hPreloadKey);
197
198 if (hDefaultKL)
199 SystemParametersInfoW(SPI_SETDEFAULTINPUTLANG, 0, &hDefaultKL, 0);
200
201 if (!bOK)
202 {
203 /* Fallback to English (US) */
204 LoadKeyboardLayoutW(L"00000409", KLF_SUBSTITUTE_OK | KLF_ACTIVATE | KLF_RESET);
205 }
206}
207
208
210CliSaveImeHotKey(DWORD dwID, UINT uModifiers, UINT uVirtualKey, HKL hKL, BOOL bDelete)
211{
213 LONG error;
214 HKEY hControlPanel = NULL, hInputMethod = NULL, hHotKeys = NULL, hKey = NULL;
215 BOOL ret = FALSE, bRevertOnFailure = FALSE;
216
217 if (bDelete)
218 {
220 L"Control Panel\\Input Method\\Hot Keys\\%08lX", dwID);
222 return (error == ERROR_SUCCESS);
223 }
224
225 // Open "Control Panel"
227 NULL, &hControlPanel, NULL);
228 if (error == ERROR_SUCCESS)
229 {
230 // Open "Input Method"
231 error = RegCreateKeyExW(hControlPanel, L"Input Method", 0, NULL, 0, KEY_ALL_ACCESS,
232 NULL, &hInputMethod, NULL);
233 if (error == ERROR_SUCCESS)
234 {
235 // Open "Hot Keys"
236 error = RegCreateKeyExW(hInputMethod, L"Hot Keys", 0, NULL, 0, KEY_ALL_ACCESS,
237 NULL, &hHotKeys, NULL);
238 if (error == ERROR_SUCCESS)
239 {
240 // Open "Key"
241 StringCchPrintfW(szName, _countof(szName), L"%08lX", dwID);
242 error = RegCreateKeyExW(hHotKeys, szName, 0, NULL, 0, KEY_ALL_ACCESS,
243 NULL, &hKey, NULL);
244 if (error == ERROR_SUCCESS)
245 {
246 bRevertOnFailure = TRUE;
247
248 // Set "Virtual Key"
249 error = RegSetValueExW(hKey, L"Virtual Key", 0, REG_BINARY,
250 (LPBYTE)&uVirtualKey, sizeof(uVirtualKey));
251 if (error == ERROR_SUCCESS)
252 {
253 // Set "Key Modifiers"
254 error = RegSetValueExW(hKey, L"Key Modifiers", 0, REG_BINARY,
255 (LPBYTE)&uModifiers, sizeof(uModifiers));
256 if (error == ERROR_SUCCESS)
257 {
258 // Set "Target IME"
259 error = RegSetValueExW(hKey, L"Target IME", 0, REG_BINARY,
260 (LPBYTE)&hKL, sizeof(hKL));
261 if (error == ERROR_SUCCESS)
262 {
263 // Success!
264 ret = TRUE;
265 bRevertOnFailure = FALSE;
266 }
267 }
268 }
270 }
271 RegCloseKey(hHotKeys);
272 }
273 RegCloseKey(hInputMethod);
274 }
275 RegCloseKey(hControlPanel);
276 }
277
278 if (bRevertOnFailure)
279 CliSaveImeHotKey(dwID, uVirtualKey, uModifiers, hKL, TRUE);
280
281 return ret;
282}
283
284/*
285 * @implemented
286 * Same as imm32!ImmSetHotKey.
287 */
288BOOL WINAPI CliImmSetHotKey(DWORD dwID, UINT uModifiers, UINT uVirtualKey, HKL hKL)
289{
290 BOOL ret;
291
292 if (uVirtualKey == 0) // Delete?
293 {
294 ret = CliSaveImeHotKey(dwID, uModifiers, uVirtualKey, hKL, TRUE);
295 if (ret)
296 CliImmSetHotKeyWorker(dwID, uModifiers, uVirtualKey, hKL, SETIMEHOTKEY_DELETE);
297 return ret;
298 }
299
300 // Add
301 ret = CliImmSetHotKeyWorker(dwID, uModifiers, uVirtualKey, hKL, SETIMEHOTKEY_ADD);
302 if (ret)
303 {
304 ret = CliSaveImeHotKey(dwID, uModifiers, uVirtualKey, hKL, FALSE);
305 if (!ret) // Failure?
306 CliImmSetHotKeyWorker(dwID, uModifiers, uVirtualKey, hKL, SETIMEHOTKEY_DELETE);
307 }
308
309 return ret;
310}
311
313{
314 LONG error;
315 HKEY hSubKey;
316 DWORD dwHotKeyId = 0;
317 UINT uModifiers = 0, uVirtualKey = 0;
318 HKL hKL = NULL;
319 UNICODE_STRING ustrName;
320
321 error = RegOpenKeyExW(hKey, pszSubKey, 0, KEY_READ, &hSubKey);
322 if (error != ERROR_SUCCESS)
323 return FALSE;
324
325 RtlInitUnicodeString(&ustrName, pszSubKey);
326 RtlUnicodeStringToInteger(&ustrName, 16, &dwHotKeyId);
327
328 uModifiers = CliReadRegistryValue(hSubKey, L"Key Modifiers");
329 hKL = (HKL)(ULONG_PTR)CliReadRegistryValue(hSubKey, L"Target IME");
330 uVirtualKey = CliReadRegistryValue(hSubKey, L"Virtual Key");
331
332 RegCloseKey(hSubKey);
333
334 return CliImmSetHotKeyWorker(dwHotKeyId, uModifiers, uVirtualKey, hKL, SETIMEHOTKEY_ADD);
335}
336
338{
339 HKEY hKey;
340 LONG error;
341 BOOL ret = FALSE;
342 DWORD dwIndex, cchKeyName;
343 WCHAR szKeyName[16];
344
346 L"Control Panel\\Input Method\\Hot Keys",
347 0,
348 KEY_READ,
349 &hKey);
350 if (error != ERROR_SUCCESS)
351 return ret;
352
353 for (dwIndex = 0; dwIndex < 1000; ++dwIndex)
354 {
355 cchKeyName = _countof(szKeyName);
356 error = RegEnumKeyExW(hKey, dwIndex, szKeyName, &cchKeyName, NULL, NULL, NULL, NULL);
357 if (error != ERROR_SUCCESS)
358 break;
359
360 szKeyName[_countof(szKeyName) - 1] = 0; /* Avoid stack overrun */
361
362 if (CliSetSingleHotKey(szKeyName, hKey))
363 ret = TRUE;
364 }
365
367 return ret;
368}
369
371{
372 WCHAR szValueName[33], szValue[16];
373 UNICODE_STRING ustrValue;
374 DWORD dwKL, cbValue, dwType;
375 UINT iNumber;
376 HKEY hKey;
377 LONG error;
378
379 error = RegOpenKeyExW(HKEY_CURRENT_USER, L"Keyboard Layout\\Preload", 0, KEY_READ, &hKey);
380 if (error != ERROR_SUCCESS)
381 return;
382
383 for (iNumber = 1; iNumber < 1000; ++iNumber)
384 {
385 _ultow(iNumber, szValueName, 10);
386
387 cbValue = sizeof(szValue);
388 error = RegQueryValueExW(hKey, szValueName, NULL, &dwType, (LPBYTE)szValue, &cbValue);
389 if (error != ERROR_SUCCESS)
390 break;
391
392 if (dwType != REG_SZ)
393 continue;
394
395 szValue[_countof(szValue) - 1] = 0; /* Avoid stack overrun */
396
397 RtlInitUnicodeString(&ustrValue, szValue);
398 RtlUnicodeStringToInteger(&ustrValue, 16, &dwKL);
399
400 IntSetFeKeyboardFlags(LOWORD(dwKL), pbFlags);
401 }
402
404}
405
407{
408 UINT uVirtualKey, uModifiers;
409 HKL hKL;
410
411 while (nCount-- > 0)
412 {
413 if (!bCheck || !NtUserGetImeHotKey(pEntries->dwHotKeyId, &uModifiers, &uVirtualKey, &hKL))
414 {
416 pEntries->uModifiers,
417 pEntries->uVirtualKey,
418 pEntries->hKL,
420 }
421 ++pEntries;
422 }
423}
424
426{
427 UINT nCount;
428 LPHKL pList;
429 UINT iIndex;
431 BYTE bFlags = 0;
432 BOOL bCheck;
433
435
437
438 if (dwAction == SETIMEHOTKEY_INITIALIZE)
439 {
442
444 }
445 else
446 {
448 if (!nCount)
449 return;
450
451 pList = RtlAllocateHeap(RtlGetProcessHeap(), 0, nCount * sizeof(HKL));
452 if (!pList)
453 return;
454
456
457 for (iIndex = 0; iIndex < nCount; ++iIndex)
458 {
459 LangID = LOWORD(pList[iIndex]);
461 }
462
463 RtlFreeHeap(RtlGetProcessHeap(), 0, pList);
464 }
465
466 if (bFlags & FE_JAPANESE)
468
469 if (bFlags & FE_CHINESE_TRADITIONAL)
471
472 if (bFlags & FE_CHINESE_SIMPLIFIED)
474}
475
476/*
477 * @implemented
478 */
479BOOL
480WINAPI
482 HWND hWnd,
483 POINT pt)
484{
485 return NtUserDragDetect(hWnd, pt);
486#if 0
487 MSG msg;
488 RECT rect;
489 POINT tmp;
492
493 rect.left = pt.x - dx;
494 rect.right = pt.x + dx;
495 rect.top = pt.y - dy;
496 rect.bottom = pt.y + dy;
497
499
500 for (;;)
501 {
502 while (
505 )
506 {
507 if (msg.message == WM_LBUTTONUP)
508 {
510 return FALSE;
511 }
512 if (msg.message == WM_MOUSEMOVE)
513 {
514 tmp.x = LOWORD(msg.lParam);
515 tmp.y = HIWORD(msg.lParam);
516 if (!PtInRect(&rect, tmp))
517 {
519 return TRUE;
520 }
521 }
522 if (msg.message == WM_KEYDOWN)
523 {
524 if (msg.wParam == VK_ESCAPE)
525 {
527 return TRUE;
528 }
529 }
530 }
531 WaitMessage();
532 }
533 return 0;
534#endif
535}
536
537/*
538 * @implemented
539 */
542{
544}
545
546/*
547 * @implemented
548 */
549SHORT
550WINAPI
553{
554 if (vKey < 0 || vKey > 256)
555 return 0;
556 return (SHORT)NtUserGetAsyncKeyState((DWORD)vKey);
557}
558
559
560/*
561 * @implemented
562 */
565{
566 return NtUserxGetKeyboardLayout(idThread);
567}
568
569
570/*
571 * @implemented
572 */
575{
576 return GetOEMCP();
577}
578
579
580/*
581 * @implemented
582 */
583int WINAPI
585 LPSTR lpString,
586 int nSize)
587{
588 LPWSTR pwszBuf;
589 UINT cchBuf = 0;
590 int iRet = 0;
591 BOOL defChar = FALSE;
592
593 pwszBuf = HeapAlloc(GetProcessHeap(), 0, nSize * sizeof(WCHAR));
594 if (!pwszBuf)
595 return 0;
596
597 cchBuf = NtUserGetKeyNameText(lParam, pwszBuf, nSize);
598
599 iRet = WideCharToMultiByte(CP_ACP, 0,
600 pwszBuf, cchBuf,
601 lpString, nSize, ".", &defChar); // FIXME: do we need defChar?
602 lpString[iRet] = 0;
603 HeapFree(GetProcessHeap(), 0, pwszBuf);
604
605 return iRet;
606}
607
608/*
609 * @implemented
610 */
611int WINAPI
613 LPWSTR lpString,
614 int nSize)
615{
616 return NtUserGetKeyNameText(lParam, lpString, nSize);
617}
618
619/*
620 * @implemented
621 */
622SHORT
623WINAPI
625GetKeyState(int nVirtKey)
626{
627 return (SHORT)NtUserGetKeyState((DWORD)nVirtKey);
628}
629
630/*
631 * @implemented
632 */
635{
637
639 return FALSE;
640
641 if (!WideCharToMultiByte(CP_ACP, 0, buf, -1, pwszKLID, KL_NAMELENGTH, NULL, NULL))
642 return FALSE;
643
644 return TRUE;
645}
646
647/*
648 * @implemented
649 */
652{
654
655 RtlInitEmptyUnicodeString(&Name,
656 pwszKLID,
657 KL_NAMELENGTH * sizeof(WCHAR));
658
660}
661
662/*
663 * @implemented
664 */
665int WINAPI
666GetKeyboardType(int nTypeFlag)
667{
668 return NtUserxGetKeyboardType(nTypeFlag);
669}
670
671/*
672 * @implemented
673 */
676{
677 TRACE("%p\n", plii);
678
679 if (plii->cbSize != sizeof (*plii))
680 {
682 return FALSE;
683 }
684
685 plii->dwTime = gpsi->dwLastRITEventTickCount;
686 return TRUE;
687}
688
689/*
690 * @implemented
691 */
694 UINT Flags)
695{
696 WCHAR wszKLID[16];
697
698 if (!MultiByteToWideChar(CP_ACP, 0, pszKLID, -1,
699 wszKLID, sizeof(wszKLID)/sizeof(wszKLID[0])))
700 {
701 return FALSE;
702 }
703
704 return LoadKeyboardLayoutW(wszKLID, Flags);
705}
706
707static inline BOOL IsValidKLID(_In_ LPCWSTR pwszKLID)
708{
709 return (pwszKLID != NULL) && (wcsspn(pwszKLID, L"0123456789ABCDEFabcdef") == (KL_NAMELENGTH - 1));
710}
711
713{
714 WCHAR szSysDir[MAX_PATH];
715 GetSystemDirectoryW(szSysDir, _countof(szSysDir));
716 StringCchPrintfW(pszPath, cchPath, L"%s\\%s", szSysDir, pszFileName);
717}
718
719#define ENGLISH_US MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US)
720
721/*
722 * @unimplemented
723 *
724 * NOTE: We adopt a different design from Microsoft's one due to security reason.
725 * See NtUserLoadKeyboardLayoutEx.
726 */
729 _In_ HKL hklUnload,
730 _In_z_ LPCWSTR pwszKLID,
731 _In_ LANGID wLangID,
733 _In_ BOOL unknown5)
734{
735 DWORD dwKLID, dwHKL, dwType, dwSize;
736 UNICODE_STRING ustrKLID;
737 WCHAR wszRegKey[256] = L"SYSTEM\\CurrentControlSet\\Control\\Keyboard Layouts\\";
738 WCHAR wszLayoutId[10], wszNewKLID[KL_NAMELENGTH], szImeFileName[80];
739 HKL hNewKL;
740 HKEY hKey;
741 BOOL bIsIME;
742 WORD wLow, wHigh;
743
744 if (!IsValidKLID(pwszKLID))
745 {
746 ERR("pwszKLID: %s\n", debugstr_w(pwszKLID));
748 }
749
750 dwKLID = wcstoul(pwszKLID, NULL, 16);
751 bIsIME = IS_IME_HKL(UlongToHandle(dwKLID));
752
753 wLow = LOWORD(dwKLID);
754 wHigh = HIWORD(dwKLID);
755
757 {
758 /* Check substitutes key */
759 if (RegOpenKeyExW(HKEY_CURRENT_USER, L"Keyboard Layout\\Substitutes", 0,
761 {
762 dwSize = sizeof(wszNewKLID);
763 if (RegQueryValueExW(hKey, pwszKLID, NULL, &dwType, (LPBYTE)wszNewKLID,
764 &dwSize) == ERROR_SUCCESS &&
765 dwType == REG_SZ)
766 {
767 /* Use new KLID value */
768 pwszKLID = wszNewKLID;
769 dwKLID = wcstoul(pwszKLID, NULL, 16);
770 wHigh = LOWORD(dwKLID);
771 }
772
773 /* Close the key now */
775 }
776 }
777
778 /* Append KLID at the end of registry key */
779 StringCbCatW(wszRegKey, sizeof(wszRegKey), pwszKLID);
780
781 /* Open layout registry key for read */
783 {
784 dwSize = sizeof(wszLayoutId);
785 if (RegQueryValueExW(hKey, L"Layout Id", NULL, &dwType, (LPBYTE)wszLayoutId,
786 &dwSize) == ERROR_SUCCESS && dwType == REG_SZ)
787 {
788 /* If Layout Id is specified, use this value | f000 as HIWORD */
789 wHigh = (0xF000 | wcstoul(wszLayoutId, NULL, 16));
790 }
791
792 if (bIsIME)
793 {
794 /* Check "IME File" value */
795 dwSize = sizeof(szImeFileName);
796 if (RegQueryValueExW(hKey, L"IME File", NULL, &dwType, (LPBYTE)szImeFileName,
798 {
799 bIsIME = FALSE;
800 wHigh = 0;
801 ERR("0x%X\n", dwKLID);
802 }
803 else
804 {
806 szImeFileName[_countof(szImeFileName) - 1] = UNICODE_NULL;
807 GetSystemLibraryPath(szPath, _countof(szPath), szImeFileName);
808
809 /* We don't allow the invalid "IME File" values due to security reason */
810 if (dwType != REG_SZ || szImeFileName[0] == 0 ||
811 wcscspn(szImeFileName, L":\\/") != wcslen(szImeFileName) ||
812 GetFileAttributesW(szPath) == INVALID_FILE_ATTRIBUTES) /* Does not exist? */
813 {
814 bIsIME = FALSE;
815 wHigh = 0;
816 ERR("'%s'\n", debugstr_w(szPath));
817 }
818 }
819 }
820
821 /* Close the key now */
823 }
824 else
825 {
826 ERR("Could not find keyboard layout %S.\n", pwszKLID);
827 return NULL;
828 }
829
830 if (wHigh == 0)
831 wHigh = wLow;
832
833 dwHKL = MAKELONG(wLow, wHigh);
834
835 RtlInitUnicodeString(&ustrKLID, pwszKLID);
836 hNewKL = NtUserLoadKeyboardLayoutEx(NULL, 0, NULL, hklUnload, &ustrKLID, dwHKL, Flags);
838 return hNewKL;
839}
840
841/*
842 * @implemented
843 */
846 UINT Flags)
847{
848 TRACE("(%s, 0x%X)\n", debugstr_w(pwszKLID), Flags);
849 return IntLoadKeyboardLayout(NULL, pwszKLID, 0, Flags, FALSE);
850}
851
852/*
853 * @unimplemented
854 */
857 LPCWSTR pwszKLID,
858 UINT Flags)
859{
860 FIXME("(%p, %s, 0x%X)", hklUnload, debugstr_w(pwszKLID), Flags);
861 if (!hklUnload)
862 return NULL;
863 return IntLoadKeyboardLayout(hklUnload, pwszKLID, 0, Flags, FALSE);
864}
865
866/*
867 * @implemented
868 */
870{
872 return FALSE;
873
875 return TRUE;
876}
877
878/*
879 * @implemented
880 */
883 UINT uMapType)
884{
885 return MapVirtualKeyExA(uCode, uMapType, GetKeyboardLayout(0));
886}
887
888/*
889 * @implemented
890 */
893 UINT uMapType,
894 HKL dwhkl)
895{
896 return MapVirtualKeyExW(uCode, uMapType, dwhkl);
897}
898
899
900/*
901 * @implemented
902 */
905 UINT uMapType,
906 HKL dwhkl)
907{
908 return NtUserMapVirtualKeyEx(uCode, uMapType, 0, dwhkl);
909}
910
911
912/*
913 * @implemented
914 */
917 UINT uMapType)
918{
919 return MapVirtualKeyExW(uCode, uMapType, GetKeyboardLayout(0));
920}
921
922
923/*
924 * @implemented
925 */
928{
929 WCHAR p;
930 SHORT Vk;
931 UINT Scan;
932
933 MultiByteToWideChar(CP_OEMCP, 0, (PCSTR)&wOemChar, 1, &p, 1);
934 Vk = VkKeyScanW(p);
935 Scan = MapVirtualKeyW((Vk & 0x00ff), 0);
936 if (!Scan) return -1;
937 /*
938 Page 450-1, MS W2k SuperBible by SAMS. Return, low word has the
939 scan code and high word has the shift state.
940 */
941 return ((Vk & 0xff00) << 8) | Scan;
942}
943
944
945/*
946 * @implemented
947 */
950{
952 uInterval,
953 NULL,
954 0);
955}
956
957
958/*
959 * @implemented
960 */
961BOOL
962WINAPI
964 BOOL fSwap)
965{
966 return NtUserxSwapMouseButton(fSwap);
967}
968
969
970/*
971 * @implemented
972 */
973int WINAPI
974ToAscii(UINT uVirtKey,
975 UINT uScanCode,
976 CONST BYTE *lpKeyState,
977 LPWORD lpChar,
978 UINT uFlags)
979{
980 return ToAsciiEx(uVirtKey, uScanCode, lpKeyState, lpChar, uFlags, 0);
981}
982
983
984/*
985 * @implemented
986 */
987int WINAPI
989 UINT uScanCode,
990 CONST BYTE *lpKeyState,
991 LPWORD lpChar,
992 UINT uFlags,
993 HKL dwhkl)
994{
995 WCHAR UniChars[2];
996 int Ret, CharCount;
997
998 Ret = ToUnicodeEx(uVirtKey, uScanCode, lpKeyState, UniChars, 2, uFlags, dwhkl);
999 CharCount = (Ret < 0 ? 1 : Ret);
1000 WideCharToMultiByte(CP_ACP, 0, UniChars, CharCount, (LPSTR)lpChar, 2, NULL, NULL);
1001
1002 return Ret;
1003}
1004
1005
1006/*
1007 * @implemented
1008 */
1009int WINAPI
1011 UINT wScanCode,
1012 CONST BYTE *lpKeyState,
1013 LPWSTR pwszBuff,
1014 int cchBuff,
1015 UINT wFlags)
1016{
1017 return ToUnicodeEx(wVirtKey, wScanCode, lpKeyState, pwszBuff, cchBuff,
1018 wFlags, 0);
1019}
1020
1021
1022/*
1023 * @implemented
1024 */
1025int WINAPI
1027 UINT wScanCode,
1028 CONST BYTE *lpKeyState,
1029 LPWSTR pwszBuff,
1030 int cchBuff,
1031 UINT wFlags,
1032 HKL dwhkl)
1033{
1034 return NtUserToUnicodeEx(wVirtKey, wScanCode, (PBYTE)lpKeyState, pwszBuff, cchBuff,
1035 wFlags, dwhkl);
1036}
1037
1038
1039
1040/*
1041 * @implemented
1042 */
1045{
1046 WCHAR wChar;
1047
1048 if (IsDBCSLeadByte(ch))
1049 return -1;
1050
1051 MultiByteToWideChar(CP_ACP, 0, &ch, 1, &wChar, 1);
1052 return VkKeyScanW(wChar);
1053}
1054
1055
1056/*
1057 * @implemented
1058 */
1061 HKL dwhkl)
1062{
1063 WCHAR wChar;
1064
1065 if (IsDBCSLeadByte(ch))
1066 return -1;
1067
1068 MultiByteToWideChar(CP_ACP, 0, &ch, 1, &wChar, 1);
1069 return VkKeyScanExW(wChar, dwhkl);
1070}
1071
1072
1073/*
1074 * @implemented
1075 */
1078 HKL dwhkl)
1079{
1080 return (SHORT)NtUserVkKeyScanEx(ch, dwhkl, TRUE);
1081}
1082
1083
1084/*
1085 * @implemented
1086 */
1089{
1090 return (SHORT)NtUserVkKeyScanEx(ch, 0, FALSE);
1091}
1092
1093
1094/*
1095 * @implemented
1096 */
1097VOID
1098WINAPI
1100 BYTE bVk,
1101 BYTE bScan,
1102 DWORD dwFlags,
1103 ULONG_PTR dwExtraInfo)
1104{
1105 INPUT Input;
1106
1107 Input.type = INPUT_KEYBOARD;
1108 Input.ki.wVk = bVk;
1109 Input.ki.wScan = bScan;
1110 Input.ki.dwFlags = dwFlags;
1111 Input.ki.time = 0;
1112 Input.ki.dwExtraInfo = dwExtraInfo;
1113
1114 NtUserSendInput(1, &Input, sizeof(INPUT));
1115}
1116
1117
1118/*
1119 * @implemented
1120 */
1121VOID
1122WINAPI
1124 DWORD dwFlags,
1125 DWORD dx,
1126 DWORD dy,
1127 DWORD dwData,
1128 ULONG_PTR dwExtraInfo)
1129{
1130 INPUT Input;
1131
1132 Input.type = INPUT_MOUSE;
1133 Input.mi.dx = dx;
1134 Input.mi.dy = dy;
1135 Input.mi.mouseData = dwData;
1136 Input.mi.dwFlags = dwFlags;
1137 Input.mi.time = 0;
1138 Input.mi.dwExtraInfo = dwExtraInfo;
1139
1140 NtUserSendInput(1, &Input, sizeof(INPUT));
1141}
1142
1143/* EOF */
#define DECLSPEC_HOTPATCH
Definition: _mingw.h:243
struct NameRec_ * Name
Definition: cdprocs.h:460
#define msg(x)
Definition: auth_time.c:54
HWND hWnd
Definition: settings.c:17
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
#define UlongToHandle(ul)
Definition: basetsd.h:97
#define FIXME(fmt,...)
Definition: debug.h:111
#define ERR(fmt,...)
Definition: debug.h:110
PVOID NTAPI RtlAllocateHeap(IN PVOID HeapHandle, IN ULONG Flags, IN SIZE_T Size)
Definition: heap.c:590
BOOLEAN NTAPI RtlFreeHeap(IN PVOID HeapHandle, IN ULONG Flags, IN PVOID HeapBase)
Definition: heap.c:608
#define RegCloseKey(hKey)
Definition: registry.h:49
LPARAM lParam
Definition: combotst.c:139
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define APIENTRY
Definition: api.h:79
LONG WINAPI RegCreateKeyExW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _In_ DWORD Reserved, _In_opt_ LPWSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition)
Definition: reg.c:1096
LONG WINAPI RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
Definition: reg.c:3362
LONG WINAPI RegEnumKeyExW(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPWSTR lpName, _Inout_ LPDWORD lpcbName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPWSTR lpClass, _Inout_opt_ LPDWORD lpcbClass, _Out_opt_ PFILETIME lpftLastWriteTime)
Definition: reg.c:2533
LONG WINAPI RegOpenKeyW(HKEY hKey, LPCWSTR lpSubKey, PHKEY phkResult)
Definition: reg.c:3297
LONG WINAPI RegSetValueExW(_In_ HKEY hKey, _In_ LPCWSTR lpValueName, _In_ DWORD Reserved, _In_ DWORD dwType, _In_ CONST BYTE *lpData, _In_ DWORD cbData)
Definition: reg.c:4911
LONG WINAPI RegDeleteKeyW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey)
Definition: reg.c:1239
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4132
UINT uFlags
Definition: api.c:59
#define GetProcessHeap()
Definition: compat.h:736
#define ERROR_INVALID_PARAMETER
Definition: compat.h:101
#define CP_ACP
Definition: compat.h:109
#define SetLastError(x)
Definition: compat.h:752
#define HeapAlloc
Definition: compat.h:733
#define MAX_PATH
Definition: compat.h:34
#define HeapFree(x, y, z)
Definition: compat.h:735
#define WideCharToMultiByte
Definition: compat.h:111
#define MultiByteToWideChar
Definition: compat.h:110
PSERVERINFO gpsi
Definition: imm.c:18
DWORD WINAPI GetFileAttributesW(LPCWSTR lpFileName)
Definition: fileinfo.c:652
UINT WINAPI GetSystemDirectoryW(OUT LPWSTR lpBuffer, IN UINT uSize)
Definition: path.c:2313
BOOL WINAPI IsDBCSLeadByte(BYTE TestByte)
Definition: nls.c:2359
#define pt(x, y)
Definition: drawing.c:79
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
FxChildList * pList
FxAutoRegKey hKey
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLfloat GLfloat p
Definition: glext.h:8902
#define IS_IME_HKL(hKL)
Definition: imm32_undoc.h:20
HKL FAR * LPHKL
Definition: imm.h:24
#define MOD_LEFT
Definition: imm.h:188
#define IME_JHOTKEY_CLOSE_OPEN
Definition: imm.h:200
#define IME_THOTKEY_IME_NONIME_TOGGLE
Definition: imm.h:207
#define MOD_IGNORE_ALL_MODIFIER
Definition: imm.h:192
#define IME_CHOTKEY_IME_NONIME_TOGGLE
Definition: imm.h:195
#define MOD_SHIFT
Definition: imm.h:186
#define IME_KHOTKEY_SHAPE_TOGGLE
Definition: imm.h:203
#define MOD_CONTROL
Definition: imm.h:185
#define IME_HOTKEY_DSWITCH_LAST
Definition: imm.h:213
#define IME_THOTKEY_SHAPE_TOGGLE
Definition: imm.h:208
#define IME_HOTKEY_DSWITCH_FIRST
Definition: imm.h:212
#define MOD_RIGHT
Definition: imm.h:189
#define IME_CHOTKEY_SHAPE_TOGGLE
Definition: imm.h:196
_Check_return_ unsigned long __cdecl wcstoul(_In_z_ const wchar_t *_Str, _Out_opt_ _Deref_post_z_ wchar_t **_EndPtr, _In_ int _Radix)
_CRTIMP wchar_t *__cdecl _ultow(_In_ unsigned long _Value, _Pre_notnull_ _Post_z_ wchar_t *_Dest, _In_ int _Radix)
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
SHORT NTAPI NtUserGetAsyncKeyState(INT Key)
Definition: keyboard.c:634
BOOL NTAPI NtUserUnloadKeyboardLayout(HKL hKl)
Definition: kbdlayout.c:1288
DWORD NTAPI NtUserVkKeyScanEx(WCHAR wChar, HKL KeyboardLayout, BOOL bUsehHK)
Definition: keyboard.c:1709
UINT NTAPI NtUserGetKeyboardLayoutList(ULONG nItems, HKL *pHklBuff)
Definition: kbdlayout.c:1075
BOOL NTAPI NtUserSetImeHotKey(DWORD dwHotKeyId, UINT uModifiers, UINT uVirtualKey, HKL hKL, DWORD dwAction)
Definition: ime.c:451
BOOL NTAPI NtUserSystemParametersInfo(UINT uiAction, UINT uiParam, PVOID pvParam, UINT fWinIni)
Definition: sysparams.c:2168
DWORD NTAPI NtUserGetKeyNameText(LONG lParam, LPWSTR lpString, int nSize)
Definition: keyboard.c:1584
UINT NTAPI NtUserMapVirtualKeyEx(UINT keyCode, UINT transType, DWORD keyboardId, HKL dwhkl)
Definition: keyboard.c:1439
BOOL NTAPI NtUserGetImeHotKey(DWORD dwHotKeyId, LPUINT lpuModifiers, LPUINT lpuVirtualKey, LPHKL lphKL)
Definition: ime.c:406
INT NTAPI NtUserToUnicodeEx(UINT wVirtKey, UINT wScanCode, PBYTE lpKeyState, LPWSTR pwszBuff, int cchBuff, UINT wFlags, HKL dwhkl)
BOOL NTAPI NtUserDragDetect(HWND hWnd, POINT pt)
Definition: message.c:2159
BOOL NTAPI NtUserGetKeyboardLayoutName(_Inout_ PUNICODE_STRING pustrName)
Definition: kbdlayout.c:1129
SHORT NTAPI NtUserGetKeyState(INT VirtKey)
Definition: msgqueue.c:2535
HKL NTAPI NtUserLoadKeyboardLayoutEx(IN HANDLE hFile, IN DWORD offTable, IN PVOID pTables, IN HKL hOldKL, IN PUNICODE_STRING puszKLID, IN DWORD dwNewKL, IN UINT Flags)
Definition: kbdlayout.c:1198
#define debugstr_w
Definition: kernel32.h:32
LCID WINAPI GetUserDefaultLCID(void)
Definition: lang.c:778
#define REG_SZ
Definition: layer.c:22
USHORT LANGID
Definition: mui.h:9
GLint dy
Definition: linetemp.h:97
GLint dx
Definition: linetemp.h:97
#define error(str)
Definition: mkdosfs.c:1605
LPCWSTR szPath
Definition: env.c:37
PSDBQUERYRESULT_VISTA PVOID DWORD * dwSize
Definition: env.c:56
static HANDLE ULONG_PTR dwData
Definition: file.c:35
#define _In_z_
Definition: ms_sal.h:313
#define _In_
Definition: ms_sal.h:308
UINT_PTR HKL
Definition: msctf.idl:143
unsigned int UINT
Definition: ndis.h:50
#define REG_BINARY
Definition: nt_native.h:1496
#define KEY_ALL_ACCESS
Definition: nt_native.h:1041
#define KEY_READ
Definition: nt_native.h:1023
NTSYSAPI VOID NTAPI RtlInitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString)
#define FASTCALL
Definition: nt_native.h:50
NTSYSAPI NTSTATUS NTAPI RtlUnicodeStringToInteger(PUNICODE_STRING String, ULONG Base, PULONG Value)
#define UNICODE_NULL
#define L(x)
Definition: ntvdm.h:50
EXTINLINE BOOL NtUserxSwapMouseButton(BOOL fSwap)
Definition: ntwrapper.h:596
EXTINLINE BOOL NtUserxEnableWindow(HWND hWnd, BOOL bEnable)
Definition: ntwrapper.h:681
EXTINLINE INT NtUserxGetKeyboardType(INT nTypeFlag)
Definition: ntwrapper.h:631
EXTINLINE HKL NtUserxGetKeyboardLayout(DWORD idThread)
Definition: ntwrapper.h:626
#define LOWORD(l)
Definition: pedump.c:82
#define CONST
Definition: pedump.c:81
BYTE * PBYTE
Definition: pedump.c:66
short SHORT
Definition: pedump.c:59
long LONG
Definition: pedump.c:60
static const WCHAR szName[]
Definition: powrprof.c:45
_Check_return_ _CRTIMP size_t __cdecl wcsspn(_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_Control)
_Check_return_ _CRTIMP size_t __cdecl wcscspn(_In_z_ const wchar_t *_Str, _In_z_ const wchar_t *_Control)
#define MAKELANGID(p, s)
Definition: nls.h:15
#define SUBLANG_CHINESE_SINGAPORE
Definition: nls.h:211
#define LANGIDFROMLCID(l)
Definition: nls.h:18
#define SUBLANG_CHINESE_TRADITIONAL
Definition: nls.h:208
#define SUBLANG_CHINESE_SIMPLIFIED
Definition: nls.h:209
#define SUBLANG_DEFAULT
Definition: nls.h:168
#define SUBLANG_CHINESE_HONGKONG
Definition: nls.h:210
#define LANG_CHINESE
Definition: nls.h:42
#define LANG_JAPANESE
Definition: nls.h:76
#define LANG_KOREAN
Definition: nls.h:84
#define SUBLANG_KOREAN
Definition: nls.h:280
@ Input
Definition: arc.h:84
#define _countof(array)
Definition: sndvol32.h:68
#define TRACE(s)
Definition: solgame.cpp:4
& rect
Definition: startmenu.cpp:1413
STRSAFEAPI StringCchPrintfW(STRSAFE_LPWSTR pszDest, size_t cchDest, STRSAFE_LPCWSTR pszFormat,...)
Definition: strsafe.h:530
STRSAFEAPI StringCbCatW(STRSAFE_LPWSTR pszDest, size_t cbDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:342
UINT uVirtualKey
Definition: input.c:37
DWORD dwHotKeyId
Definition: input.c:36
UINT uModifiers
Definition: input.c:38
long y
Definition: polytest.cpp:48
long x
Definition: polytest.cpp:48
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
unsigned char * LPBYTE
Definition: typedefs.h:53
uint16_t * LPWORD
Definition: typedefs.h:56
int32_t INT
Definition: typedefs.h:58
const char * PCSTR
Definition: typedefs.h:52
uint32_t ULONG_PTR
Definition: typedefs.h:65
#define MAKELONG(a, b)
Definition: typedefs.h:249
uint32_t ULONG
Definition: typedefs.h:59
#define HIWORD(l)
Definition: typedefs.h:247
@ SETIMEHOTKEY_INITIALIZE
Definition: undocuser.h:403
@ SETIMEHOTKEY_ADD
Definition: undocuser.h:402
@ SETIMEHOTKEY_DELETE
Definition: undocuser.h:401
WORD WORD PSZ PSZ pszFileName
Definition: vdmdbg.h:44
#define INVALID_FILE_ATTRIBUTES
Definition: vfdcmd.c:23
int ret
_Must_inspect_result_ _In_ WDFUSBDEVICE _In_opt_ WDFREQUEST _In_opt_ PWDF_REQUEST_SEND_OPTIONS _Out_writes_opt_ NumCharacters PUSHORT _Inout_ PUSHORT _In_ UCHAR _In_opt_ USHORT LangID
Definition: wdfusb.h:1083
UINT APIENTRY NtUserSendInput(UINT nInputs, LPINPUT pInput, INT cbSize)
Definition: input.c:708
SHORT WINAPI VkKeyScanA(CHAR ch)
Definition: input.c:1044
int WINAPI GetKeyboardType(int nTypeFlag)
Definition: input.c:666
SHORT WINAPI VkKeyScanExW(WCHAR ch, HKL dwhkl)
Definition: input.c:1077
#define FE_KOREAN
Definition: input.c:66
VOID APIENTRY CliImmInitializeHotKeys(DWORD dwAction, HKL hKL)
Definition: input.c:425
#define ENGLISH_US
Definition: input.c:719
BOOL WINAPI DragDetect(HWND hWnd, POINT pt)
Definition: input.c:481
UINT WINAPI MapVirtualKeyA(UINT uCode, UINT uMapType)
Definition: input.c:882
#define FE_JAPANESE
Definition: input.c:63
HKL WINAPI LoadKeyboardLayoutW(LPCWSTR pwszKLID, UINT Flags)
Definition: input.c:845
VOID GetSystemLibraryPath(LPWSTR pszPath, INT cchPath, LPCWSTR pszFileName)
Definition: input.c:712
HKL WINAPI LoadKeyboardLayoutA(LPCSTR pszKLID, UINT Flags)
Definition: input.c:693
VOID APIENTRY CliGetPreloadKeyboardLayouts(PBYTE pbFlags)
Definition: input.c:370
static BOOL IsValidKLID(_In_ LPCWSTR pwszKLID)
Definition: input.c:707
IMEHOTKEYENTRY DefaultHotKeyTableT[]
Definition: input.c:49
HKL APIENTRY IntLoadKeyboardLayout(_In_ HKL hklUnload, _In_z_ LPCWSTR pwszKLID, _In_ LANGID wLangID, _In_ UINT Flags, _In_ BOOL unknown5)
Definition: input.c:728
BOOL APIENTRY CliImmSetHotKeyWorker(DWORD dwHotKeyId, UINT uModifiers, UINT uVirtualKey, HKL hKL, DWORD dwAction)
Definition: input.c:111
struct tagIMEHOTKEYENTRY IMEHOTKEYENTRY
IMEHOTKEYENTRY DefaultHotKeyTableC[]
Definition: input.c:56
#define FE_CHINESE_SIMPLIFIED
Definition: input.c:65
BOOL WINAPI SwapMouseButton(BOOL fSwap)
Definition: input.c:963
BOOL WINAPI EnableWindow(HWND hWnd, BOOL bEnable)
Definition: input.c:541
#define FE_CHINESE_TRADITIONAL
Definition: input.c:64
BOOL WINAPI CliImmSetHotKey(DWORD dwID, UINT uModifiers, UINT uVirtualKey, HKL hKL)
Definition: input.c:288
VOID FASTCALL IntSetFeKeyboardFlags(LANGID LangID, PBYTE pbFlags)
Definition: input.c:70
BOOL FASTCALL CliGetImeHotKeysFromRegistry(VOID)
Definition: input.c:337
struct tagIMEHOTKEYENTRY * PIMEHOTKEYENTRY
#define MOD_ALL_MODS
VOID IntLoadPreloadKeyboardLayouts(VOID)
Definition: input.c:148
IMEHOTKEYENTRY DefaultHotKeyTableJ[]
Definition: input.c:43
DWORD FASTCALL CliReadRegistryValue(HANDLE hKey, LPCWSTR pszName)
Definition: input.c:97
BOOL WINAPI SetDoubleClickTime(UINT uInterval)
Definition: input.c:949
SHORT WINAPI VkKeyScanExA(CHAR ch, HKL dwhkl)
Definition: input.c:1060
HKL WINAPI LoadKeyboardLayoutEx(HKL hklUnload, LPCWSTR pwszKLID, UINT Flags)
Definition: input.c:856
VOID APIENTRY CliSetDefaultImeHotKeys(PIMEHOTKEYENTRY pEntries, UINT nCount, BOOL bCheck)
Definition: input.c:406
BOOL FASTCALL CliSetSingleHotKey(LPCWSTR pszSubKey, HANDLE hKey)
Definition: input.c:312
BOOL APIENTRY CliSaveImeHotKey(DWORD dwID, UINT uModifiers, UINT uVirtualKey, HKL hKL, BOOL bDelete)
Definition: input.c:210
BOOL WINAPI GetLastInputInfo(PLASTINPUTINFO plii)
Definition: input.c:675
UINT WINAPI MapVirtualKeyExW(UINT uCode, UINT uMapType, HKL dwhkl)
Definition: input.c:904
BOOL WINAPI UnloadKeyboardLayout(HKL hKL)
Definition: input.c:869
#define INPUT_KEYBOARD
Definition: winable.h:10
#define INPUT_MOUSE
Definition: winable.h:9
*nSize LPSTR _Inout_ LPDWORD nSize
Definition: winbase.h:2084
_In_ DWORD _Out_ _In_ WORD wFlags
Definition: wincon.h:531
_In_ PCCERT_CONTEXT _In_ DWORD dwFlags
Definition: wincrypt.h:1176
_In_ BOOL bEnable
Definition: winddi.h:3426
#define WINAPI
Definition: msvc.h:6
#define CP_OEMCP
Definition: winnls.h:231
UINT WINAPI GetOEMCP(void)
Definition: nls.c:2322
#define HKEY_LOCAL_MACHINE
Definition: winreg.h:12
#define HKEY_CURRENT_USER
Definition: winreg.h:11
HWND WINAPI SetCapture(_In_ HWND hWnd)
BOOL WINAPI GetKeyboardLayoutNameW(_Out_writes_(KL_NAMELENGTH) LPWSTR)
HKL WINAPI GetKeyboardLayout(_In_ DWORD)
void WINAPI mouse_event(_In_ DWORD, _In_ DWORD, _In_ DWORD, _In_ DWORD, _In_ ULONG_PTR)
#define WM_MOUSEFIRST
Definition: winuser.h:1774
#define SM_CXDRAG
Definition: winuser.h:1028
BOOL WINAPI GetKeyboardLayoutNameA(_Out_writes_(KL_NAMELENGTH) LPSTR)
#define WM_MOUSELAST
Definition: winuser.h:1801
BOOL WINAPI ReleaseCapture(void)
Definition: message.c:2890
UINT WINAPI MapVirtualKeyExA(_In_ UINT, _In_ UINT, _In_opt_ HKL)
#define KL_NAMELENGTH
Definition: winuser.h:122
int WINAPI GetKeyNameTextA(_In_ LONG lParam, _Out_writes_(cchSize) LPSTR lpString, _In_ int cchSize)
#define KLF_REPLACELANG
Definition: winuser.h:115
#define VK_SPACE
Definition: winuser.h:2219
#define KLF_ACTIVATE
Definition: winuser.h:111
int WINAPI ToAscii(_In_ UINT, _In_ UINT, _In_reads_opt_(256) CONST BYTE *, _Out_ LPWORD, _In_ UINT)
#define WM_KEYFIRST
Definition: winuser.h:1714
int WINAPI ToUnicode(_In_ UINT wVirtKey, _In_ UINT wScanCode, _In_reads_bytes_opt_(256) CONST BYTE *lpKeyState, _Out_writes_(cchBuff) LPWSTR pwszBuff, _In_ int cchBuff, _In_ UINT wFlags)
#define WM_MOUSEMOVE
Definition: winuser.h:1775
BOOL WINAPI PtInRect(_In_ LPCRECT, _In_ POINT)
UINT WINAPI MapVirtualKeyW(_In_ UINT, _In_ UINT)
BOOL WINAPI PeekMessageW(_Out_ LPMSG, _In_opt_ HWND, _In_ UINT, _In_ UINT, _In_ UINT)
int WINAPI GetKeyNameTextW(_In_ LONG lParam, _Out_writes_(cchSize) LPWSTR lpString, _In_ int cchSize)
#define VK_KANJI
Definition: winuser.h:2213
#define PM_REMOVE
Definition: winuser.h:1196
BOOL WINAPI WaitMessage(void)
Definition: ntwrapper.h:350
#define SPI_SETDOUBLECLICKTIME
Definition: winuser.h:1381
#define KLF_SUBSTITUTE_OK
Definition: winuser.h:112
VOID WINAPI keybd_event(_In_ BYTE, _In_ BYTE, _In_ DWORD, _In_ ULONG_PTR)
#define WM_LBUTTONUP
Definition: winuser.h:1777
BOOL WINAPI SystemParametersInfoW(_In_ UINT uiAction, _In_ UINT uiParam, _Inout_opt_ PVOID pvParam, _In_ UINT fWinIni)
#define KLF_NOTELLSHELL
Definition: winuser.h:116
int WINAPI ToUnicodeEx(_In_ UINT wVirtKey, _In_ UINT wScanCode, _In_reads_bytes_(256) CONST BYTE *lpKeyState, _Out_writes_(cchBuff) LPWSTR pwszBuff, _In_ int cchBuff, _In_ UINT wFlags, _In_opt_ HKL dwhkl)
SHORT WINAPI GetAsyncKeyState(_In_ int)
#define WM_KEYDOWN
Definition: winuser.h:1715
DWORD WINAPI OemKeyScan(_In_ WORD)
#define SM_CYDRAG
Definition: winuser.h:1029
#define WM_KEYLAST
Definition: winuser.h:1728
int WINAPI ToAsciiEx(_In_ UINT, _In_ UINT, _In_reads_opt_(256) CONST BYTE *, _Out_ LPWORD, _In_ UINT, _In_opt_ HKL)
#define VK_ESCAPE
Definition: winuser.h:2214
SHORT WINAPI VkKeyScanW(_In_ WCHAR)
int WINAPI GetSystemMetrics(_In_ int)
UINT WINAPI GetKBCodePage(void)
Definition: input.c:574
SHORT WINAPI GetKeyState(_In_ int)
BOOL bScan
Definition: wlanconf.c:23
_Must_inspect_result_ _In_ ULONG Flags
Definition: wsk.h:170
ActualNumberDriverObjects * sizeof(PDRIVER_OBJECT)) PDRIVER_OBJECT *DriverObjectList
const char * LPCSTR
Definition: xmlstorage.h:183
char * LPSTR
Definition: xmlstorage.h:182
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
char CHAR
Definition: xmlstorage.h:175
unsigned char BYTE
Definition: xxhash.c:193