From 34a7180caf14fe7006b66e5da94b076e1713182d Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 6 Sep 2011 12:11:55 +0200 Subject: [PATCH] openal32: Include system headers before Windows headers. --- dlls/openal32/openal.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/openal32/openal.c b/dlls/openal32/openal.c index 9e0a8f22b55..6a8e8f1879c 100644 --- a/dlls/openal32/openal.c +++ b/dlls/openal32/openal.c @@ -25,10 +25,6 @@ #include #include -#include "windef.h" -#include "winbase.h" -#include "wine/debug.h" - #ifdef HAVE_AL_AL_H #include #include @@ -37,6 +33,10 @@ #include #endif +#include "windef.h" +#include "winbase.h" +#include "wine/debug.h" + WINE_DEFAULT_DEBUG_CHANNEL(openal32); static ALCboolean (ALC_APIENTRY*alcSetThreadContext)(ALCcontext *context); -- 2.11.4.GIT