# HG changeset patch # User giacomo # Date 1178931871 25200 # Node ID 2e86136729f185d2857b8431a050766e29900880 # Parent 1333d28e2c50e3dcf4608a51935185b79c97bfdc [svn] - auddrct: more calls implemented (part 2) diff -r 1333d28e2c50 -r 2e86136729f1 ChangeLog --- a/ChangeLog Fri May 11 17:58:39 2007 -0700 +++ b/ChangeLog Fri May 11 18:04:31 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-12 00:58:39 +0000 Giacomo Lozito + revision [4510] + - auddrct: more calls implemented + trunk/src/audacious/auddrct.c | 80 ++++++++++++++++++++++++++++++++++++++++++ + trunk/src/audacious/auddrct.h | 13 ++++++ + 2 files changed, 93 insertions(+) + + 2007-05-12 00:49:37 +0000 Giacomo Lozito revision [4508] - fix cfg options for visibility diff -r 1333d28e2c50 -r 2e86136729f1 src/audacious/auddrct.c --- a/src/audacious/auddrct.c Fri May 11 17:58:39 2007 -0700 +++ b/src/audacious/auddrct.c Fri May 11 18:04:31 2007 -0700 @@ -21,9 +21,12 @@ plugins, originally intended for migration from xmms_remote_* calls */ +#include "main.h" #include "input.h" #include "playback.h" #include "ui_main.h" +#include "ui_playlist.h" +#include "ui_equalizer.h" /* player */ @@ -50,7 +53,7 @@ } void -audacious_drct_main_win_show ( void ) +audacious_drct_main_win_show ( gboolean show ) { if (has_x11_connection) mainwin_show(show); @@ -64,7 +67,7 @@ } void -audacious_drct_equalizer_show ( void ) +audacious_drct_equalizer_show ( gboolean show ) { if (has_x11_connection) equalizerwin_show(show); @@ -78,7 +81,7 @@ } void -audacious_drct_playlist_show ( void ) +audacious_drct_playlist_show ( gboolean show ) { if (has_x11_connection) { if (show) diff -r 1333d28e2c50 -r 2e86136729f1 src/audacious/auddrct.h --- a/src/audacious/auddrct.h Fri May 11 17:58:39 2007 -0700 +++ b/src/audacious/auddrct.h Fri May 11 18:04:31 2007 -0700 @@ -26,11 +26,11 @@ void audacious_drct_quit ( void ); void audacious_drct_eject ( void ); gboolean audacious_drct_main_win_is_visible ( void ); -void audacious_drct_main_win_show ( void ); +void audacious_drct_main_win_show ( gboolean ); gboolean audacious_drct_equalizer_is_visible ( void ); -void audacious_drct_equalizer_show ( void ); +void audacious_drct_equalizer_show ( gboolean ); gboolean audacious_drct_playlist_is_visible ( void ); -void audacious_drct_playlist_show ( void ); +void audacious_drct_playlist_show ( gboolean ); /* playback */ void audacious_drct_play ( void ); diff -r 1333d28e2c50 -r 2e86136729f1 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Fri May 11 17:58:39 2007 -0700 +++ b/src/audacious/build_stamp.c Fri May 11 18:04:31 2007 -0700 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070512-4508"; +const gchar *svn_stamp = "20070512-4510";