allow multiple sound drivers to be compiled
[pcsx_rearmed.git] / plugins / dfsound / out.h
diff --git a/plugins/dfsound/out.h b/plugins/dfsound/out.h
new file mode 100644 (file)
index 0000000..4607099
--- /dev/null
@@ -0,0 +1,12 @@
+
+struct out_driver {
+       const char *name;
+       int (*init)(void);
+       void (*finish)(void);
+       int (*busy)(void);
+       void (*feed)(void *data, int bytes);
+};
+
+extern struct out_driver *out_current;
+
+void SetupSound(void);