(Win32) Buildfix

This commit is contained in:
twinaphex 2020-01-19 04:56:12 +01:00
parent 638b65c828
commit 51d6b467d6
2 changed files with 10 additions and 2 deletions

View File

@ -91,6 +91,14 @@
/* These are defined in later SDKs, thus ifdeffed. */
#ifndef WM_MOUSEHWHEEL
#define WM_MOUSEHWHEEL 0x20e
#endif
#ifndef WM_MOUSEWHEEL
#define WM_MOUSEWHEEL 0x020A
#endif
#ifndef WM_POINTERUPDATE
#define WM_POINTERUPDATE 0x0245
#endif

View File

@ -32,11 +32,11 @@
#include <windowsx.h>
#ifndef WM_MOUSEHWHEEL
#define WM_MOUSEHWHEEL 0x20e
#define WM_MOUSEHWHEEL 0x20e
#endif
#ifndef WM_MOUSEWHEEL
#define WM_MOUSEWHEEL 0x020A
#define WM_MOUSEWHEEL 0x020A
#endif
#ifdef HAVE_CONFIG_H