From f0b36e9e82c9737d915a01d0bb87df45bec4836f Mon Sep 17 00:00:00 2001 From: Shawn Pringle Date: Fri, 12 Jun 2020 20:50:18 -0300 Subject: [PATCH] * added macros for compilation. See issue 1273 in raysan5/raylib --- src/raudio.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/raudio.c b/src/raudio.c index c565b0ec3..2317b1184 100644 --- a/src/raudio.c +++ b/src/raudio.c @@ -127,8 +127,14 @@ // Type required before windows.h inclusion typedef struct tagMSG *LPMSG; - + +#define CloseWindow CloseWindowDontUse +#define ShowCursor ShowCursorDontUse +#define UnhideWindow UnHideWindowDontUse #include +#undef UnhideWindow +#undef ShowCursor +#undef CloseWindow // Type required by some unused function... typedef struct tagBITMAPINFOHEADER {