mirror of https://github.com/encounter/SDL.git
Fixed bug 2450 - Crosscompiling for Win32 with MinGW fails due to WM_UNICHAR undeclared
This commit is contained in:
parent
9245c93044
commit
56b40ce046
|
@ -71,6 +71,9 @@
|
||||||
#ifndef WM_MOUSEHWHEEL
|
#ifndef WM_MOUSEHWHEEL
|
||||||
#define WM_MOUSEHWHEEL 0x020E
|
#define WM_MOUSEHWHEEL 0x020E
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef WM_UNICHAR
|
||||||
|
#define WM_UNICHAR 0x0109
|
||||||
|
#endif
|
||||||
|
|
||||||
static SDL_Scancode
|
static SDL_Scancode
|
||||||
WindowsScanCodeToSDLScanCode( LPARAM lParam, WPARAM wParam )
|
WindowsScanCodeToSDLScanCode( LPARAM lParam, WPARAM wParam )
|
||||||
|
|
Loading…
Reference in New Issue