aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-09-14 03:10:12 -0700
committerChris Robinson <[email protected]>2012-09-14 03:10:12 -0700
commit74aee374a646aec1b1ebe40f9efbae692e9720d6 (patch)
treef522e65e2bfe667d70d0d48ce5c68f32a43dba58
parent4f70766b954b72d310fbe53db6d2331e4f0aeebe (diff)
Remove an unused header
-rw-r--r--OpenAL32/Include/alMain.h1
-rw-r--r--OpenAL32/Include/alState.h14
-rw-r--r--OpenAL32/alState.c2
3 files changed, 2 insertions, 15 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index e68975b1..af71a615 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -755,6 +755,7 @@ struct ALCcontext_struct
#define RemoveSource(m, k) ((struct ALsource*)RemoveUIntMapKey(&(m)->SourceMap, (k)))
#define RemoveEffectSlot(m, k) ((struct ALeffectslot*)RemoveUIntMapKey(&(m)->EffectSlotMap, (k)))
+
ALCcontext *GetContextRef(void);
void ALCcontext_IncRef(ALCcontext *context);
diff --git a/OpenAL32/Include/alState.h b/OpenAL32/Include/alState.h
deleted file mode 100644
index 332176b0..00000000
--- a/OpenAL32/Include/alState.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef _AL_STATE_H_
-#define _AL_STATE_H_
-
-#include "AL/al.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c
index 74da0969..359885c5 100644
--- a/OpenAL32/alState.c
+++ b/OpenAL32/alState.c
@@ -27,7 +27,7 @@
#include "alError.h"
#include "alSource.h"
#include "alAuxEffectSlot.h"
-#include "alState.h"
+
static const ALchar alVendor[] = "OpenAL Community";
static const ALchar alVersion[] = "1.1 ALSOFT "ALSOFT_VERSION;