mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-05 23:48:44 +02:00
Add G_GNUC_DEPRECATED to deprecated functions in gio
This commit is contained in:
@@ -175,19 +175,19 @@ void g_mount_unmount (GMount *mount,
|
||||
GMountUnmountFlags flags,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
gpointer user_data) G_GNUC_DEPRECATED_FOR(g_mount_unmount_with_operation);
|
||||
gboolean g_mount_unmount_finish (GMount *mount,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
GError **error) G_GNUC_DEPRECATED_FOR(g_mount_unmount_with_operation_finish);
|
||||
|
||||
void g_mount_eject (GMount *mount,
|
||||
GMountUnmountFlags flags,
|
||||
GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
gpointer user_data) G_GNUC_DEPRECATED_FOR(g_mount_eject_with_operation);
|
||||
gboolean g_mount_eject_finish (GMount *mount,
|
||||
GAsyncResult *result,
|
||||
GError **error);
|
||||
GError **error) G_GNUC_DEPRECATED_FOR(g_mount_eject_with_operation_finish);
|
||||
#endif
|
||||
|
||||
void g_mount_remount (GMount *mount,
|
||||
|
Reference in New Issue
Block a user