comparison ext/openal-soft/OpenAL32/Include/alExtension.h @ 0:4a0efb7baf70

* Datasets becomes the new trunk and retires after that :-)
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 29 Jun 2008 18:44:17 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4a0efb7baf70
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