aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-03-24 22:43:08 -0700
committerChris Robinson <[email protected]>2010-03-24 22:43:08 -0700
commitb3c389c0a0f8f9b414741151376c583a10462e8c (patch)
tree5f29d33da6251d5646c00cc1fe388fc268256ed0 /OpenAL32/Include
parent15b9fc9099da9ce9d7a2848fa09bbb4711aeca87 (diff)
Constify and properly type some variables and struct members
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alExtension.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/OpenAL32/Include/alExtension.h b/OpenAL32/Include/alExtension.h
deleted file mode 100644
index 1f33f9af..00000000
--- a/OpenAL32/Include/alExtension.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#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