~ubuntu-branches/ubuntu/natty/libgdata/natty-updates

« back to all changes in this revision

Viewing changes to gdata/gdata-download-stream.h

  • Committer: Martin Pitt
  • Date: 2010-12-01 10:27:59 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: martin.pitt@canonical.com-20101201102759-ug3i8xvqweeprp0z
importĀ upstreamĀ releaseĀ 0.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
 
64
64
GType gdata_download_stream_get_type (void) G_GNUC_CONST;
65
65
 
66
 
GInputStream *gdata_download_stream_new (GDataService *service, const gchar *download_uri) G_GNUC_WARN_UNUSED_RESULT;
 
66
GInputStream *gdata_download_stream_new (GDataService *service, const gchar *download_uri) G_GNUC_WARN_UNUSED_RESULT G_GNUC_MALLOC;
67
67
 
68
 
GDataService *gdata_download_stream_get_service (GDataDownloadStream *self);
69
 
const gchar *gdata_download_stream_get_download_uri (GDataDownloadStream *self);
70
 
const gchar *gdata_download_stream_get_content_type (GDataDownloadStream *self);
71
 
gssize gdata_download_stream_get_content_length (GDataDownloadStream *self);
 
68
GDataService *gdata_download_stream_get_service (GDataDownloadStream *self) G_GNUC_PURE;
 
69
const gchar *gdata_download_stream_get_download_uri (GDataDownloadStream *self) G_GNUC_PURE;
 
70
const gchar *gdata_download_stream_get_content_type (GDataDownloadStream *self) G_GNUC_PURE;
 
71
gssize gdata_download_stream_get_content_length (GDataDownloadStream *self) G_GNUC_PURE;
72
72
 
73
73
G_END_DECLS
74
74