diff options
author | Chris Robinson <[email protected]> | 2007-11-13 18:02:18 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-11-13 18:02:18 -0800 |
commit | ae5f4e9a742b07e004b330c04a72fac4457c9b58 (patch) | |
tree | d1d5c9fadd918d9346fb871033f60e8c91600a63 /OpenAL32/Include/alExtension.h |
Initial import
Diffstat (limited to 'OpenAL32/Include/alExtension.h')
-rw-r--r-- | OpenAL32/Include/alExtension.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/OpenAL32/Include/alExtension.h b/OpenAL32/Include/alExtension.h new file mode 100644 index 00000000..1f33f9af --- /dev/null +++ b/OpenAL32/Include/alExtension.h @@ -0,0 +1,33 @@ +#ifndef _AL_EXTENSION_H_ +#define _AL_EXTENSION_H_ + +#include "AL/al.h" +#include "AL/alc.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct ALextension_struct +{ + ALchar *extName; + ALvoid *address; +} ALextension; + +typedef struct ALfunction_struct +{ + ALchar *funcName; + ALvoid *address; +} ALfunction; + +typedef struct ALenum_struct +{ + ALchar *enumName; + ALenum value; +} ALenums; + +#ifdef __cplusplus +} +#endif + +#endif |