repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove unused channel enums
[openal-soft.git]
/
OpenAL32
/
Include
/
alThunk.h
blob
adc77dec9143ccbbc01423934c7497f81064798c
1
#ifndef ALTHUNK_H
2
#define ALTHUNK_H
3
4
#include
"alMain.h"
5
6
#ifdef __cplusplus
7
extern
"C"
{
8
#endif
9
10
void
ThunkInit
(
void
);
11
void
ThunkExit
(
void
);
12
ALenum
NewThunkEntry
(
ALuint
*
index
);
13
void
FreeThunkEntry
(
ALuint index
);
14
15
#ifdef __cplusplus
16
}
17
#endif
18
19
#endif
//ALTHUNK_H
20