From a40a2301a1973ce4612fd99d797a334201106379 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Thu, 14 Feb 2013 16:12:54 -0600 Subject: [PATCH] Don't re-define WIN32_LEAN_AND_MEAN --- src/wiiuse.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wiiuse.h b/src/wiiuse.h index 0c108e2..065ba5f 100644 --- a/src/wiiuse.h +++ b/src/wiiuse.h @@ -92,7 +92,9 @@ #ifdef WIIUSE_WIN32 /* windows */ - #define WIN32_LEAN_AND_MEAN 1 + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN 1 + #endif #include #endif #ifdef WIIUSE_BLUEZ