mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-24 01:48:53 +02:00
Rename all visibility macros
This commit is contained in:
@@ -150,16 +150,16 @@ struct _GOutputStreamClass
|
||||
void (*_g_reserved8) (void);
|
||||
};
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
GType g_output_stream_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gssize g_output_stream_write (GOutputStream *stream,
|
||||
const void *buffer,
|
||||
gsize count,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_write_all (GOutputStream *stream,
|
||||
const void *buffer,
|
||||
gsize count,
|
||||
@@ -167,14 +167,14 @@ gboolean g_output_stream_write_all (GOutputStream *stream,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_60
|
||||
GIO_AVAILABLE_IN_2_60
|
||||
gboolean g_output_stream_writev (GOutputStream *stream,
|
||||
const GOutputVector *vectors,
|
||||
gsize n_vectors,
|
||||
gsize *bytes_written,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_2_60
|
||||
GIO_AVAILABLE_IN_2_60
|
||||
gboolean g_output_stream_writev_all (GOutputStream *stream,
|
||||
GOutputVector *vectors,
|
||||
gsize n_vectors,
|
||||
@@ -182,40 +182,40 @@ gboolean g_output_stream_writev_all (GOutputStream *stream,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_40
|
||||
GIO_AVAILABLE_IN_2_40
|
||||
gboolean g_output_stream_printf (GOutputStream *stream,
|
||||
gsize *bytes_written,
|
||||
GCancellable *cancellable,
|
||||
GError **error,
|
||||
const gchar *format,
|
||||
...) G_GNUC_PRINTF (5, 6);
|
||||
GLIB_AVAILABLE_IN_2_40
|
||||
GIO_AVAILABLE_IN_2_40
|
||||
gboolean g_output_stream_vprintf (GOutputStream *stream,
|
||||
gsize *bytes_written,
|
||||
GCancellable *cancellable,
|
||||
GError **error,
|
||||
const gchar *format,
|
||||
va_list args) G_GNUC_PRINTF (5, 0);
|
||||
GLIB_AVAILABLE_IN_2_34
|
||||
GIO_AVAILABLE_IN_2_34
|
||||
gssize g_output_stream_write_bytes (GOutputStream *stream,
|
||||
GBytes *bytes,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gssize g_output_stream_splice (GOutputStream *stream,
|
||||
GInputStream *source,
|
||||
GOutputStreamSpliceFlags flags,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_flush (GOutputStream *stream,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_close (GOutputStream *stream,
|
||||
GCancellable *cancellable,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
void g_output_stream_write_async (GOutputStream *stream,
|
||||
const void *buffer,
|
||||
gsize count,
|
||||
@@ -223,12 +223,12 @@ void g_output_stream_write_async (GOutputStream *stream,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gssize g_output_stream_write_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_44
|
||||
GIO_AVAILABLE_IN_2_44
|
||||
void g_output_stream_write_all_async (GOutputStream *stream,
|
||||
const void *buffer,
|
||||
gsize count,
|
||||
@@ -237,13 +237,13 @@ void g_output_stream_write_all_async (GOutputStream *stream,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_44
|
||||
GIO_AVAILABLE_IN_2_44
|
||||
gboolean g_output_stream_write_all_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
gsize *bytes_written,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_60
|
||||
GIO_AVAILABLE_IN_2_60
|
||||
void g_output_stream_writev_async (GOutputStream *stream,
|
||||
const GOutputVector *vectors,
|
||||
gsize n_vectors,
|
||||
@@ -251,13 +251,13 @@ void g_output_stream_writev_async (GOutputStream *stream,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GLIB_AVAILABLE_IN_2_60
|
||||
GIO_AVAILABLE_IN_2_60
|
||||
gboolean g_output_stream_writev_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
gsize *bytes_written,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_60
|
||||
GIO_AVAILABLE_IN_2_60
|
||||
void g_output_stream_writev_all_async (GOutputStream *stream,
|
||||
GOutputVector *vectors,
|
||||
gsize n_vectors,
|
||||
@@ -266,24 +266,24 @@ void g_output_stream_writev_all_async (GOutputStream *stream,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_60
|
||||
GIO_AVAILABLE_IN_2_60
|
||||
gboolean g_output_stream_writev_all_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
gsize *bytes_written,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_2_34
|
||||
GIO_AVAILABLE_IN_2_34
|
||||
void g_output_stream_write_bytes_async (GOutputStream *stream,
|
||||
GBytes *bytes,
|
||||
int io_priority,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GLIB_AVAILABLE_IN_2_34
|
||||
GIO_AVAILABLE_IN_2_34
|
||||
gssize g_output_stream_write_bytes_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
void g_output_stream_splice_async (GOutputStream *stream,
|
||||
GInputStream *source,
|
||||
GOutputStreamSpliceFlags flags,
|
||||
@@ -291,41 +291,41 @@ void g_output_stream_splice_async (GOutputStream *stream,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gssize g_output_stream_splice_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
void g_output_stream_flush_async (GOutputStream *stream,
|
||||
int io_priority,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_flush_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
void g_output_stream_close_async (GOutputStream *stream,
|
||||
int io_priority,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_close_finish (GOutputStream *stream,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_is_closed (GOutputStream *stream);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_is_closing (GOutputStream *stream);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_has_pending (GOutputStream *stream);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
gboolean g_output_stream_set_pending (GOutputStream *stream,
|
||||
GError **error);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIO_AVAILABLE_IN_ALL
|
||||
void g_output_stream_clear_pending (GOutputStream *stream);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user