diff libaudacious/util.h @ 0:cb178e5ad177 trunk

[svn] Import audacious source.
author nenolod
date Mon, 24 Oct 2005 03:06:47 -0700
parents
children 43c197f55dda
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libaudacious/util.h	Mon Oct 24 03:06:47 2005 -0700
@@ -0,0 +1,32 @@
+#ifndef XMMS_UTIL_H
+#define XMMS_UTIL_H
+
+
+#include <glib.h>
+#include <gtk/gtk.h>
+
+
+/* XMMS names */
+
+#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()
+
+
+G_BEGIN_DECLS
+
+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);
+
+G_END_DECLS
+
+#endif