Move function declarations outside of the if-block
This commit is contained in:
parent
3e92e6c4f0
commit
f8f155e4a0
@ -10,14 +10,14 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (SIZEOF_VOIDP > SIZEOF_UINT)
|
|
||||||
|
|
||||||
void alThunkInit(void);
|
void alThunkInit(void);
|
||||||
void alThunkExit(void);
|
void alThunkExit(void);
|
||||||
ALuint alThunkAddEntry(ALvoid * ptr);
|
ALuint alThunkAddEntry(ALvoid * ptr);
|
||||||
void alThunkRemoveEntry(ALuint index);
|
void alThunkRemoveEntry(ALuint index);
|
||||||
ALvoid *alThunkLookupEntry(ALuint index);
|
ALvoid *alThunkLookupEntry(ALuint index);
|
||||||
|
|
||||||
|
#if (SIZEOF_VOIDP > SIZEOF_UINT)
|
||||||
|
|
||||||
#define ALTHUNK_INIT() alThunkInit()
|
#define ALTHUNK_INIT() alThunkInit()
|
||||||
#define ALTHUNK_EXIT() alThunkExit()
|
#define ALTHUNK_EXIT() alThunkExit()
|
||||||
#define ALTHUNK_ADDENTRY(p) alThunkAddEntry(p)
|
#define ALTHUNK_ADDENTRY(p) alThunkAddEntry(p)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user