diff audacious/output.c @ 807:df3412dc33c4 trunk

[svn] - add psuedo_output_plugin, a psuedo output plugin that will be used for reverse compatibility with old plugins. sort of.
author nenolod
date Wed, 08 Mar 2006 06:57:02 -0800
parents d51a251b542c
children 79da0e6ed790
line wrap: on
line diff
--- a/audacious/output.c	Wed Mar 08 06:47:02 2006 -0800
+++ b/audacious/output.c	Wed Mar 08 06:57:02 2006 -0800
@@ -36,6 +36,30 @@
     NULL
 };
 
+OutputPlugin psuedo_output_plugin {
+    NULL,
+    NULL,
+    "XMMS reverse compatibility output plugin",
+    NULL,
+    NULL,
+    NULL,
+    NULL,
+    output_get_volume,
+    output_set_volume,
+    NULL,			/* XXX we need noop code for this */
+    NULL,
+    NULL,
+
+    NULL,
+    NULL,
+    NULL,
+    NULL,
+    get_output_time,
+    get_written_time,
+
+    NULL
+};
+
 OutputPlugin *
 get_current_output_plugin(void)
 {