aboutsummaryrefslogtreecommitdiff
path: root/stubs/win32-kbd-hook.c
diff options
context:
space:
mode:
authorVolker RĂ¼melin <vr_qemu@t-online.de>2020-05-16 09:20:04 +0200
committerGerd Hoffmann <kraxel@redhat.com>2020-05-19 09:06:44 +0200
commit2df9f5718df7722924699a3754f99165e2f4ae35 (patch)
treec170cfdabe16d48cee73228963f97d4169e986dd /stubs/win32-kbd-hook.c
parentdebe78ce14bf8f8940c2bdf3ef387505e9e035a9 (diff)
downloadqemu-2df9f5718df7722924699a3754f99165e2f4ae35.zip
qemu-2df9f5718df7722924699a3754f99165e2f4ae35.tar.gz
qemu-2df9f5718df7722924699a3754f99165e2f4ae35.tar.bz2
ui/win32-kbd-hook: handle AltGr in a hook procedure
Import win32 keyboard hooking code from project spice-gtk. This patch removes the extra left control key up/down input events inserted by Windows for the right alt key up/down input events with international keyboard layouts. Additionally there's some code to grab the keyboard. The next patches will use this code. Only Windows needs this. Signed-off-by: Volker RĂ¼melin <vr_qemu@t-online.de> Message-id: 20200516072014.7766-1-vr_qemu@t-online.de Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'stubs/win32-kbd-hook.c')
-rw-r--r--stubs/win32-kbd-hook.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/stubs/win32-kbd-hook.c b/stubs/win32-kbd-hook.c
new file mode 100644
index 0000000..1a084b0
--- /dev/null
+++ b/stubs/win32-kbd-hook.c
@@ -0,0 +1,18 @@
+/*
+ * Win32 keyboard hook stubs
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or
+ * (at your option) any later version. See the COPYING file in the
+ * top-level directory.
+ */
+
+#include "qemu/osdep.h"
+#include "ui/win32-kbd-hook.h"
+
+void win32_kbd_set_window(void *hwnd)
+{
+}
+
+void win32_kbd_set_grab(bool grab)
+{
+}