diff options
author | Ryan Lortie <desrt@desrt.ca> | 2012-12-06 14:04:59 -0500 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2013-01-13 13:11:57 -0500 |
commit | 0156092a4203d1c40dcd0df7515fc7eeaebba9ac (patch) | |
tree | 6dba99c97911f6d5bcd57b0881e9cc61a721e516 /gio/glocalfileinputstream.h | |
parent | 0dba77d0f4a28671d77222129f219b5961748562 (diff) | |
download | glib-0156092a4203d1c40dcd0df7515fc7eeaebba9ac.tar.gz |
various: add GLIB_AVAILABLE_IN_ALL everywhere else
Add the GLIB_AVAILABLE_IN_ALL annotation to all old functions (that
haven't already been annotated with the GLIB_AVAILABLE_IN_* macros or a
deprecation macro).
If we discover in the future that we cannot use only one macro on
Windows, it will be an easy sed patch to fix that.
https://bugzilla.gnome.org/show_bug.cgi?id=688681
Diffstat (limited to 'gio/glocalfileinputstream.h')
-rw-r--r-- | gio/glocalfileinputstream.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gio/glocalfileinputstream.h b/gio/glocalfileinputstream.h index 28f28bf7f..5033072ff 100644 --- a/gio/glocalfileinputstream.h +++ b/gio/glocalfileinputstream.h @@ -51,9 +51,12 @@ struct _GLocalFileInputStreamClass GFileInputStreamClass parent_class; }; +GLIB_AVAILABLE_IN_ALL GType _g_local_file_input_stream_get_type (void) G_GNUC_CONST; +GLIB_AVAILABLE_IN_ALL GFileInputStream *_g_local_file_input_stream_new (int fd); +GLIB_AVAILABLE_IN_ALL void _g_local_file_input_stream_set_do_close (GLocalFileInputStream *in, gboolean do_close); |