mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2025-02-24 20:21:11 +00:00
21 lines
264 B
C
21 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
|
||
|
|