Mercurial > audlegacy
diff src/audacious/plugin.h @ 2729:643be93d0a30 trunk
[svn] - fix ABI
| author | nenolod |
|---|---|
| date | Thu, 10 May 2007 14:13:20 -0700 |
| parents | c35913222440 |
| children | 637359219e10 |
line wrap: on
line diff
--- 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 };
