comparison src/audacious/dbus-service.h @ 3915:86c9abc83fbd

audacious remote functions: - functions for equalizer manipulation have been implemented. audtool: - test suite for equalizer manipulation has been implemented.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Wed, 07 Nov 2007 23:18:29 +0900
parents f3341c2d6b9e
children b5ee3a4a8e3b
comparison
equal deleted inserted replaced
3914:1a4add0eba07 3915:86c9abc83fbd
199 gboolean audacious_rc_playqueue_add(RemoteObject *obj, gint pos, GError **error); 199 gboolean audacious_rc_playqueue_add(RemoteObject *obj, gint pos, GError **error);
200 gboolean audacious_rc_playqueue_remove(RemoteObject *obj, gint pos, GError **error); 200 gboolean audacious_rc_playqueue_remove(RemoteObject *obj, gint pos, GError **error);
201 gboolean audacious_rc_playqueue_clear(RemoteObject *obj, GError **error); 201 gboolean audacious_rc_playqueue_clear(RemoteObject *obj, GError **error);
202 gboolean audacious_rc_playqueue_is_queued(RemoteObject *obj, gint pos, gboolean *is_queued, GError **error); 202 gboolean audacious_rc_playqueue_is_queued(RemoteObject *obj, gint pos, gboolean *is_queued, GError **error);
203 gboolean audacious_rc_playlist_ins_url_string(RemoteObject *obj, gchar *url, gint pos, GError **error); 203 gboolean audacious_rc_playlist_ins_url_string(RemoteObject *obj, gchar *url, gint pos, GError **error);
204 204 gboolean audacious_rc_playlist_enqueue_to_temp(RemoteObject *obj, gchar *url, GError **error);
205
206 /* in progress */
207 gboolean audacious_rc_playlist_add(RemoteObject *obj, gpointer list, GError **error); 205 gboolean audacious_rc_playlist_add(RemoteObject *obj, gpointer list, GError **error);
208 gboolean audacious_rc_playlist_enqueue_to_temp(RemoteObject *obj, gchar *url, GError **error); 206
207 /* new on nov 7 */
208 gboolean audacious_rc_get_eq(RemoteObject *obj, gdouble *preamp, GArray **bands, GError **error);
209 gboolean audacious_rc_get_eq_preamp(RemoteObject *obj, gdouble *preamp, GError **error);
210 gboolean audacious_rc_get_eq_band(RemoteObject *obj, gint band, gdouble *value, GError **error);
211 gboolean audacious_rc_set_eq(RemoteObject *obj, gdouble preamp, GArray *bands, GError **error);
212 gboolean audacious_rc_set_eq_preamp(RemoteObject *obj, gdouble preamp, GError **error);
213 gboolean audacious_rc_set_eq_band(RemoteObject *obj, gint band, gdouble value, GError **error);
209 214
210 #endif // !_DBUS_SERVICE_H 215 #endif // !_DBUS_SERVICE_H