aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/base.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-11-02 15:42:45 -0700
committerChris Robinson <[email protected]>2013-11-02 15:42:45 -0700
commita1a3f51be248cba4e2d75abfcc4b68ee8743fd08 (patch)
tree6529c9089f776cc6cdc493bf6f0eca48bbb0b460 /Alc/backends/base.c
parentc851e2c6110de948802ce0e229a0bf4c3c067ed6 (diff)
Convert the OSS backend to the new interface
Diffstat (limited to 'Alc/backends/base.c')
-rw-r--r--Alc/backends/base.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Alc/backends/base.c b/Alc/backends/base.c
index 0c285993..d32cf417 100644
--- a/Alc/backends/base.c
+++ b/Alc/backends/base.c
@@ -51,6 +51,12 @@ void ALCbackend_unlock(ALCbackend *self)
}
+/* Base ALCbackendFactory method implementations. */
+void ALCbackendFactory_deinit(ALCbackendFactory* UNUSED(self))
+{
+}
+
+
/* Wrappers to use an old-style backend with the new interface. */
typedef struct PlaybackWrapper {
DERIVE_FROM_TYPE(ALCbackend);