From f8f155e4a0234874f6828a3e5df7b80bfabd352c Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 6 Dec 2007 22:15:16 -0800 Subject: Move function declarations outside of the if-block --- OpenAL32/Include/alThunk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenAL32/Include') diff --git a/OpenAL32/Include/alThunk.h b/OpenAL32/Include/alThunk.h index 2ed32871..8fc0e005 100644 --- a/OpenAL32/Include/alThunk.h +++ b/OpenAL32/Include/alThunk.h @@ -10,14 +10,14 @@ extern "C" { #endif -#if (SIZEOF_VOIDP > SIZEOF_UINT) - void alThunkInit(void); void alThunkExit(void); ALuint alThunkAddEntry(ALvoid * ptr); void alThunkRemoveEntry(ALuint index); ALvoid *alThunkLookupEntry(ALuint index); +#if (SIZEOF_VOIDP > SIZEOF_UINT) + #define ALTHUNK_INIT() alThunkInit() #define ALTHUNK_EXIT() alThunkExit() #define ALTHUNK_ADDENTRY(p) alThunkAddEntry(p) -- cgit v1.2.3