Move function declarations outside of the if-block

This commit is contained in:
Chris Robinson
2007-12-06 22:15:16 -08:00
parent 3e92e6c4f0
commit f8f155e4a0
+2 -2
View File
@@ -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)