Mercurial > audlegacy
changeset 2729:643be93d0a30 trunk
[svn] - fix ABI
author | nenolod |
---|---|
date | Thu, 10 May 2007 14:13:20 -0700 |
parents | 452a159dc619 |
children | 596abc2be8f0 |
files | ChangeLog src/audacious/build_stamp.c src/audacious/plugin.h |
diffstat | 3 files changed, 17 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu May 10 13:21:55 2007 -0700 +++ b/ChangeLog Thu May 10 14:13:20 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-10 20:21:55 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [4482] + - log when dbus has been successfully started up + + trunk/src/audacious/dbus.c | 1 + + 1 file changed, 1 insertion(+) + + 2007-05-10 19:30:19 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [4480] - rename xmms_remote namespace to audacious_remote namespace
--- a/src/audacious/build_stamp.c Thu May 10 13:21:55 2007 -0700 +++ b/src/audacious/build_stamp.c Thu May 10 14:13:20 2007 -0700 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070510-4480"; +const gchar *svn_stamp = "20070510-4482";
--- a/src/audacious/plugin.h Thu May 10 13:21:55 2007 -0700 +++ b/src/audacious/plugin.h Thu May 10 14:13:20 2007 -0700 @@ -221,15 +221,16 @@ gchar *filename; gint xmms_session; -#ifdef USE_DBUS - DBusGProxy *dbus_proxy; -#endif gchar *description; void (*init) (void); void (*about) (void); void (*configure) (void); void (*cleanup) (void); + +#ifdef USE_DBUS + DBusGProxy *dbus_proxy; +#endif }; struct _VisPlugin { @@ -237,9 +238,6 @@ gchar *filename; gint xmms_session; -#ifdef USE_DBUS - DBusGProxy *dbus_proxy; -#endif gchar *description; gint num_pcm_chs_wanted; @@ -254,6 +252,10 @@ void (*playback_stop) (void); void (*render_pcm) (gint16 pcm_data[2][512]); void (*render_freq) (gint16 freq_data[2][256]); + +#ifdef USE_DBUS + DBusGProxy *dbus_proxy; +#endif };