Mercurial > audio-send
annotate OpenAL32/Include/alThunk.h @ 16:3de8325e79bf
try to remove send.c from source control
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 03 Nov 2011 12:09:54 -0700 |
parents | f9476ff7637e |
children |
rev | line source |
---|---|
rlm@0 | 1 #ifndef ALTHUNK_H |
rlm@0 | 2 #define ALTHUNK_H |
rlm@0 | 3 |
rlm@0 | 4 #include "alMain.h" |
rlm@0 | 5 |
rlm@0 | 6 #ifdef __cplusplus |
rlm@0 | 7 extern "C" { |
rlm@0 | 8 #endif |
rlm@0 | 9 |
rlm@0 | 10 void ThunkInit(void); |
rlm@0 | 11 void ThunkExit(void); |
rlm@0 | 12 ALenum NewThunkEntry(ALuint *index); |
rlm@0 | 13 void FreeThunkEntry(ALuint index); |
rlm@0 | 14 |
rlm@0 | 15 #ifdef __cplusplus |
rlm@0 | 16 } |
rlm@0 | 17 #endif |
rlm@0 | 18 |
rlm@0 | 19 #endif //ALTHUNK_H |
rlm@0 | 20 |