aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alDatabuffer.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-15 23:46:35 -0700
committerChris Robinson <[email protected]>2011-06-15 23:46:35 -0700
commit7f4dcefc808a8f579f2c70821e9c76d000d04976 (patch)
tree97c3d1442dc8baf162a9afce0948219f3597f46a /OpenAL32/Include/alDatabuffer.h
parentd702cb9b4920d6b1149d40e2804ef1b408746aca (diff)
Remove the databuffer functions and structs
It's been disabled for a while now, and not likely to be re-enabled.
Diffstat (limited to 'OpenAL32/Include/alDatabuffer.h')
-rw-r--r--OpenAL32/Include/alDatabuffer.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/OpenAL32/Include/alDatabuffer.h b/OpenAL32/Include/alDatabuffer.h
deleted file mode 100644
index 22185528..00000000
--- a/OpenAL32/Include/alDatabuffer.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef _AL_DATABUFFER_H_
-#define _AL_DATABUFFER_H_
-
-#include "AL/al.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define UNMAPPED 0
-#define MAPPED 1
-
-typedef struct ALdatabuffer
-{
- ALubyte *data;
- ALintptrEXT size;
-
- ALenum state;
- ALenum usage;
-
- /* Index to self */
- ALuint databuffer;
-
- struct ALdatabuffer *next;
-} ALdatabuffer;
-
-ALvoid ReleaseALDatabuffers(ALCdevice *device);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif