changeset 2794:2685fc11cd9a trunk

[svn] - begin work on the host side of plugin API v2.
author nenolod
date Thu, 24 May 2007 01:47:50 -0700
parents 885ec4399359
children fa6c339cce38
files ChangeLog src/audacious/build_stamp.c src/audacious/plugin.h
diffstat 3 files changed, 12 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed May 23 23:03:10 2007 -0700
+++ b/ChangeLog	Thu May 24 01:47:50 2007 -0700
@@ -1,3 +1,11 @@
+2007-05-24 06:03:10 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [4612]
+  - update macedonian translation. closes #915.
+  
+  trunk/po/mk.po | 3839 ++++++++-------------------------------------------------
+  1 file changed, 544 insertions(+), 3295 deletions(-)
+
+
 2007-05-24 06:01:01 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [4610]
   - move playlist_recalc_total_time() out of the giant playlist lock in playlist_delete_filenames(). reported by dotzen, closes #908.
--- a/src/audacious/build_stamp.c	Wed May 23 23:03:10 2007 -0700
+++ b/src/audacious/build_stamp.c	Thu May 24 01:47:50 2007 -0700
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070524-4610";
+const gchar *svn_stamp = "20070524-4612";
--- a/src/audacious/plugin.h	Wed May 23 23:03:10 2007 -0700
+++ b/src/audacious/plugin.h	Thu May 24 01:47:50 2007 -0700
@@ -51,7 +51,8 @@
 #define LOWLEVEL_PLUGIN(x) ((LowlevelPlugin *)(x))
 
 #define __AUDACIOUS_NEWVFS__
-#define __AUDACIOUS_INPUT_PLUGIN_API__ 2
+#define __AUDACIOUS_PLUGIN_API__ 2
+#define __AUDACIOUS_INPUT_PLUGIN_API__ 3
 
 typedef enum {
     FMT_U8,
@@ -88,6 +89,7 @@
 struct _Plugin {
     gpointer handle;
     gchar *filename;
+    gchar *description;
 };
 
 /*
@@ -213,7 +215,6 @@
     gpointer handle;
     gchar *filename;
 
-    gint xmms_session;
     gchar *description;
 
     void (*init) (void);
@@ -226,7 +227,6 @@
     gpointer handle;
     gchar *filename;
 
-    gint xmms_session;
     gchar *description;
 
     gint num_pcm_chs_wanted;