diff options
author | Chris Robinson <[email protected]> | 2010-03-19 14:34:18 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-19 14:34:18 -0700 |
commit | a572b13743f62ed4dda5ed87bc259df0e581e023 (patch) | |
tree | 4f2b5787a5369f9bb861044486046cac1b443e07 /OpenAL32/Include/alMain.h | |
parent | 4340a6f8fe7177cfa49aad7df55493e5e786627c (diff) |
Don't use deprecated macros
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index ade664e3..a57870a7 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -376,8 +376,8 @@ void al_print(const char *fname, unsigned int line, const char *fmt, ...) PRINTF_STYLE(3,4); #define AL_PRINT(...) al_print(__FILE__, __LINE__, __VA_ARGS__) -ALCboolean ALCAPIENTRY alcMakeCurrent(ALCcontext *context); -ALCcontext* ALCAPIENTRY alcGetThreadContext(void); +ALCboolean ALC_APIENTRY alcMakeCurrent(ALCcontext *context); +ALCcontext* ALC_APIENTRY alcGetThreadContext(void); #define DECL_VERIFIER(name, type, field) \ static type* Verify##name(type *list, ALuint id) \ |