diff options
author | Chris Robinson <[email protected]> | 2009-05-16 23:26:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-05-16 23:26:39 -0700 |
commit | 7e8501123a092a19b8153f7fdeecef2e0c5f0aa2 (patch) | |
tree | da5bd197753be2b257fa263707d144844622e707 /OpenAL32/Include/alMain.h | |
parent | c447eeb2c77d91d11750270aaed36a2354069095 (diff) |
Set some common macros in alu.h
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 849ce6e4..82877735 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -4,12 +4,14 @@ #include <string.h> #include <stdio.h> -#include "alu.h" - #ifdef HAVE_FENV_H #include <fenv.h> #endif +#include "AL/al.h" +#include "AL/alc.h" +#include "AL/alext.h" + #ifdef _WIN32 #ifndef _WIN32_WINNT @@ -98,10 +100,8 @@ static inline void Sleep(ALuint t) #define max(x,y) (((x)>(y))?(x):(y)) #endif -#include "AL/al.h" -#include "AL/alc.h" -#include "AL/alext.h" #include "alListener.h" +#include "alu.h" #ifdef __cplusplus extern "C" { |