changeset 3761:ccc3725a82b3

link everything up.
author William Pitcock <nenolod@atheme.org>
date Sun, 14 Oct 2007 21:50:36 -0500
parents 8fdaccee8312
children a1039487bf3f
files src/audacious/pluginenum.c
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/audacious/pluginenum.c	Sun Oct 14 21:48:19 2007 -0500
+++ b/src/audacious/pluginenum.c	Sun Oct 14 21:50:36 2007 -0500
@@ -58,6 +58,10 @@
 #include "ui_preferences.h"
 #include "ui_fileinfopopup.h"
 
+#include "effect.h"
+#include "iir.h"
+#include "volumecontrol.h"
+
 const gchar *plugin_dir_list[] = {
     PLUGINSUBS,
     NULL
@@ -359,6 +363,15 @@
     .util_get_localdir = util_get_localdir,
 
     .input_check_file = input_check_file,
+
+    .flow_new = flow_new,
+    .flow_execute = flow_execute,
+    .flow_link_element = flow_link_element,
+    .flow_unlink_element = flow_unlink_element,
+    .effect_flow = effect_flow,
+    .iir_flow = iir_flow,
+    .volumecontrol_flow = volumecontrol_flow,
+
 };
 
 /*****************************************************************/