mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-12-11 21:21:47 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
20 lines
264 B
C
20 lines
264 B
C
#ifndef ALTHUNK_H
|
|
#define ALTHUNK_H
|
|
|
|
#include "alMain.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ThunkInit(void);
|
|
void ThunkExit(void);
|
|
ALenum NewThunkEntry(ALuint *index);
|
|
void FreeThunkEntry(ALuint index);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //ALTHUNK_H
|
|
|