D-Bus: Emit cast to avoid C warning for signal handling in clients
[vala-lang.git] / vapi / packages / libgdata / libgdata-custom.vala
blob418e5ca6ac596712dae646b0567cfb9dd025e782
1 namespace GData {
2 public class Feed {
3 public unowned GLib.List<GData.Author> get_authors ();
4 public unowned GLib.List<GData.Category> get_categories ();
5 public unowned GLib.List<GData.Entry> get_entries ();
8 [CCode (type_check_function = "GDATA_IS_PICASAWEB_SERVICE", cheader_filename = "gdata/gdata.h")]
9 public class PicasaWebService {
10 [CCode (cname = "gdata_picasaweb_service_query_all_albums_async")]
11 public async void query_all_albums_async (GData.Query? query, string username, GLib.Cancellable? cancellable, GData.QueryProgressCallback progress_callback);
12 [CCode (cname = "gdata_picasaweb_service_upload_file_async")]
13 public async GData.PicasaWebFile upload_file_async (GData.PicasaWebAlbum album, GData.PicasaWebFile file_entry, GLib.File file_data, GLib.Cancellable? cancellable = null) throws GLib.Error;