aboutsummaryrefslogtreecommitdiff
path: root/src/music-player-bridge.h
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2012-03-02 11:34:50 -0500
committerKen VanDine <ken.vandine@canonical.com>2012-03-02 11:34:50 -0500
commit90b7db3502bdba472d8d5d914f70bb316746e072 (patch)
tree5537a7b33d2f49b584286b7c0e9fca242d25d969 /src/music-player-bridge.h
parent35442241ba01a563a5295918b58878a47b644f63 (diff)
parent068f00cdfe7512aab9054af728e361226dcc9511 (diff)
downloadayatana-indicator-sound-90b7db3502bdba472d8d5d914f70bb316746e072.tar.gz
ayatana-indicator-sound-90b7db3502bdba472d8d5d914f70bb316746e072.tar.bz2
ayatana-indicator-sound-90b7db3502bdba472d8d5d914f70bb316746e072.zip
* New upstream release.
- Fixed memory corruption issue (LP: #897218) - crashed with SIGABRT in pa_operation_unref (LP: #908682) - Banshee shown in sound menu after removal until reboot (LP: #771202) - Coverity PASS_BY_VALUE - CID 10620 (LP: #937451) - App icon and name are not aligned (LP: #939929)
Diffstat (limited to 'src/music-player-bridge.h')
-rw-r--r--src/music-player-bridge.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/music-player-bridge.h b/src/music-player-bridge.h
index 59d58c7..f02d20e 100644
--- a/src/music-player-bridge.h
+++ b/src/music-player-bridge.h
@@ -1,4 +1,4 @@
-/* music-player-bridge.h generated by valac 0.12.1, the Vala compiler, do not modify */
+/* music-player-bridge.h generated by valac 0.14.2, the Vala compiler, do not modify */
#ifndef __MUSIC_PLAYER_BRIDGE_H__
@@ -338,14 +338,14 @@ struct _PlaylistDetails {
struct _ActivePlaylistContainer {
gboolean valid;
- PlaylistDetails details;
+ PlaylistDetails* details;
};
struct _MprisPlaylistsIface {
GTypeInterface parent_iface;
void (*ActivatePlaylist) (MprisPlaylists* self, const char* playlist_id, GAsyncReadyCallback _callback_, gpointer _user_data_);
void (*ActivatePlaylist_finish) (MprisPlaylists* self, GAsyncResult* _res_, GError** error);
- void (*GetPlaylists) (MprisPlaylists* self, guint32 index, guint32 max_count, const gchar* order, gboolean reverse_order, GAsyncReadyCallback _callback_, gpointer _user_data_);
+ void (*GetPlaylists) (MprisPlaylists* self, gint32 index, guint32 max_count, const gchar* order, gboolean reverse_order, GAsyncReadyCallback _callback_, gpointer _user_data_);
PlaylistDetails* (*GetPlaylists_finish) (MprisPlaylists* self, GAsyncResult* _res_, int* result_length1, GError** error);
gchar** (*get_Orderings) (MprisPlaylists* self, int* result_length1);
void (*set_Orderings) (MprisPlaylists* self, gchar** value, int value_length1);
@@ -526,7 +526,7 @@ guint mpris_playlists_register_object (void* object, GDBusConnection* connection
GType mpris_playlists_get_type (void) G_GNUC_CONST;
void mpris_playlists_ActivatePlaylist (MprisPlaylists* self, const char* playlist_id, GAsyncReadyCallback _callback_, gpointer _user_data_);
void mpris_playlists_ActivatePlaylist_finish (MprisPlaylists* self, GAsyncResult* _res_, GError** error);
-void mpris_playlists_GetPlaylists (MprisPlaylists* self, guint32 index, guint32 max_count, const gchar* order, gboolean reverse_order, GAsyncReadyCallback _callback_, gpointer _user_data_);
+void mpris_playlists_GetPlaylists (MprisPlaylists* self, gint32 index, guint32 max_count, const gchar* order, gboolean reverse_order, GAsyncReadyCallback _callback_, gpointer _user_data_);
PlaylistDetails* mpris_playlists_GetPlaylists_finish (MprisPlaylists* self, GAsyncResult* _res_, int* result_length1, GError** error);
gchar** mpris_playlists_get_Orderings (MprisPlaylists* self, int* result_length1);
void mpris_playlists_set_Orderings (MprisPlaylists* self, gchar** value, int value_length1);
@@ -572,6 +572,7 @@ SettingsManager* settings_manager_construct (GType object_type);
gchar** settings_manager_fetch_blacklist (SettingsManager* self, int* result_length1);
GeeArrayList* settings_manager_fetch_interested (SettingsManager* self);
void settings_manager_clear_list (SettingsManager* self);
+void settings_manager_remove_interested (SettingsManager* self, const gchar* app_desktop_name);
void settings_manager_add_interested (SettingsManager* self, const gchar* app_desktop_name);
GType playlists_menuitem_get_type (void) G_GNUC_CONST;
PlaylistsMenuitem* playlists_menuitem_new (PlayerController* parent);