openal32: Include system headers before Windows headers.

This commit is contained in:
Alexandre Julliard 2011-09-06 12:11:55 +02:00
parent 3e4a9cb4d4
commit 34a7180caf

View file

@ -25,10 +25,6 @@
#include <stdarg.h>
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
#ifdef HAVE_AL_AL_H
#include <AL/al.h>
#include <AL/alc.h>
@ -37,6 +33,10 @@
#include <OpenAL/alc.h>
#endif
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(openal32);
static ALCboolean (ALC_APIENTRY*alcSetThreadContext)(ALCcontext *context);