From 25641ac20e96563cd47c6e2438d471be5636d1fd Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Mon, 21 Aug 2017 22:14:00 +0200 Subject: [PATCH] Fix warnings on windows build --- src/blupi.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/blupi.h b/src/blupi.h index 9dd4a03..dfd933c 100644 --- a/src/blupi.h +++ b/src/blupi.h @@ -53,6 +53,8 @@ typedef Uint32 WPARAM; typedef Sint32 LPARAM; #endif +#undef LOWORD +#undef HIWORD #define LOWORD(l) ((Uint16) (((Uint32) (l)) & 0xffff)) #define HIWORD(l) ((Uint16) ((((Uint32) (l)) >> 16) & 0xffff))