Use powf when available
[openal-soft.git] / OpenAL32 / Include / alExtension.h
blob1f33f9af9d8a6007315f098bcfa7f4ca3391391b
1 #ifndef _AL_EXTENSION_H_
2 #define _AL_EXTENSION_H_
4 #include "AL/al.h"
5 #include "AL/alc.h"
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
11 typedef struct ALextension_struct
13 ALchar *extName;
14 ALvoid *address;
15 } ALextension;
17 typedef struct ALfunction_struct
19 ALchar *funcName;
20 ALvoid *address;
21 } ALfunction;
23 typedef struct ALenum_struct
25 ALchar *enumName;
26 ALenum value;
27 } ALenums;
29 #ifdef __cplusplus
31 #endif
33 #endif