diff options
author | Chris Robinson <[email protected]> | 2007-12-06 22:15:16 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-06 22:15:16 -0800 |
commit | f8f155e4a0234874f6828a3e5df7b80bfabd352c (patch) | |
tree | cb921cdd68dca1e554c032c876d9019f59a5bc48 /OpenAL32/Include/alThunk.h | |
parent | 3e92e6c4f0d265809f6a4145306a9ad881dbb2aa (diff) |
Move function declarations outside of the if-block
Diffstat (limited to 'OpenAL32/Include/alThunk.h')
-rw-r--r-- | OpenAL32/Include/alThunk.h | 4 |
1 files changed, 2 insertions, 2 deletions
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) |