diff src/audacious/pluginenum.c @ 3754:74bed6b35161

export formatter and prefswin APIs
author William Pitcock <nenolod@atheme.org>
date Sun, 14 Oct 2007 19:38:49 -0500
parents 22d71f986b86
children 2ca446f02d97
line wrap: on
line diff
--- a/src/audacious/pluginenum.c	Sun Oct 14 17:47:13 2007 -0500
+++ b/src/audacious/pluginenum.c	Sun Oct 14 19:38:49 2007 -0500
@@ -55,6 +55,8 @@
 #include "vfs_buffer.h"
 #include "vfs_buffered_file.h"
 
+#include "ui_preferences.h"
+
 const gchar *plugin_dir_list[] = {
     PLUGINSUBS,
     NULL
@@ -337,6 +339,15 @@
     .drct_pq_is_queued = drct_pq_is_queued,
     .drct_pq_get_position = drct_pq_get_position,
     .drct_pq_get_queue_position = drct_pq_get_queue_position,
+
+    .formatter_new = formatter_new,
+    .formatter_destroy = formatter_destroy,
+    .formatter_associate = formatter_associate,
+    .formatter_dissociate = formatter_dissociate,
+    .formatter_format = formatter_format,
+
+    .prefswin_page_new = prefswin_page_new,
+    .prefswin_page_destroy = prefswin_page_destroy,
 };
 
 /*****************************************************************/