mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
convert keyboard_event_win32 to C++
This commit is contained in:
parent
5e6983d0da
commit
1da727cd54
@ -39,7 +39,7 @@ extern bool g_resized;
|
||||
extern bool g_quit;
|
||||
extern HWND g_hwnd;
|
||||
|
||||
extern "C" LRESULT win32_handle_keyboard_event(HWND hwnd, UINT message,
|
||||
LRESULT win32_handle_keyboard_event(HWND hwnd, UINT message,
|
||||
WPARAM wparam, LPARAM lparam);
|
||||
|
||||
LRESULT win32_menu_loop(HWND handle, WPARAM wparam);
|
||||
|
@ -415,10 +415,6 @@ INPUT (HID)
|
||||
KEYBOARD EVENT
|
||||
============================================================ */
|
||||
|
||||
#if defined(_WIN32) && !defined(_XBOX)
|
||||
#include "../input/drivers_keyboard/keyboard_event_win32.c"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_X11
|
||||
#include "../input/drivers_keyboard/keyboard_event_x11.c"
|
||||
#endif
|
||||
|
@ -32,6 +32,14 @@ AUDIO
|
||||
#include "../audio/drivers/xaudio.cpp"
|
||||
#endif
|
||||
|
||||
/*============================================================
|
||||
KEYBOARD EVENT
|
||||
============================================================ */
|
||||
|
||||
#if defined(_WIN32) && !defined(_XBOX)
|
||||
#include "../input/drivers_keyboard/keyboard_event_win32.cpp"
|
||||
#endif
|
||||
|
||||
/*============================================================
|
||||
UI COMMON CONTEXT
|
||||
============================================================ */
|
||||
|
Loading…
x
Reference in New Issue
Block a user