aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alDatabuffer.h
diff options
context:
space:
mode:
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