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
Prevent some ICC warnings
[openal-soft.git]
/
OpenAL32
/
Include
/
alExtension.h
blob
1f33f9af9d8a6007315f098bcfa7f4ca3391391b
1
#ifndef _AL_EXTENSION_H_
2
#define _AL_EXTENSION_H_
3
4
#include
"AL/al.h"
5
#include
"AL/alc.h"
6
7
#ifdef __cplusplus
8
extern
"C"
{
9
#endif
10
11
typedef
struct
ALextension_struct
12
{
13
ALchar
*
extName
;
14
ALvoid
*
address
;
15
}
ALextension
;
16
17
typedef
struct
ALfunction_struct
18
{
19
ALchar
*
funcName
;
20
ALvoid
*
address
;
21
}
ALfunction
;
22
23
typedef
struct
ALenum_struct
24
{
25
ALchar
*
enumName
;
26
ALenum value
;
27
}
ALenums
;
28
29
#ifdef __cplusplus
30
}
31
#endif
32
33
#endif