Mercurial > audlegacy
changeset 3466:6ceb4439c6a0 trunk
Remove legacy xmms functions.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Sun, 09 Sep 2007 18:47:56 +0300 |
parents | 95a607e527f2 |
children | 5a6896b6000f |
files | src/audacious/util.c src/audacious/util.h |
diffstat | 2 files changed, 0 insertions(+), 33 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/util.c Sun Sep 09 05:38:07 2007 +0300 +++ b/src/audacious/util.c Sun Sep 09 18:47:56 2007 +0300 @@ -970,28 +970,3 @@ return datadir; } - -/** - * xmms_check_realtime_priority: - * - * Legacy function included for compatibility with XMMS. - * - * Return value: FALSE - **/ -gboolean -xmms_check_realtime_priority(void) -{ - return FALSE; -} - -/** - * xmms_usleep: - * @usec: The amount of microseconds to sleep. - * - * Legacy function included for compatibility with XMMS. - **/ -void -xmms_usleep(gint usec) -{ - g_usleep(usec); -}
--- a/src/audacious/util.h Sun Sep 09 05:38:07 2007 +0300 +++ b/src/audacious/util.h Sun Sep 09 18:47:56 2007 +0300 @@ -96,18 +96,10 @@ #define bmp_info_dialog(title, text, button_text, model, button_action, action_data) \ xmms_show_message(title, text, button_text, model, button_action, action_data) -#define bmp_usleep(usec) \ - xmms_usleep(usec) - -#define bmp_check_realtime_priority() \ - xmms_check_realtime_priority() - GtkWidget *xmms_show_message(const gchar * title, const gchar * text, const gchar * button_text, gboolean modal, GtkSignalFunc button_action, gpointer action_data); -gboolean xmms_check_realtime_priority(void); -void xmms_usleep(gint usec); GdkPixmap *create_dblsize_pixmap(GdkPixmap *pix);