Add G_GNUC_DEPRECATED to deprecated functions in gio

This commit is contained in:
Matthias Clasen
2011-10-08 23:49:04 -04:00
parent 93b3f6477e
commit ff2dafb209
7 changed files with 36 additions and 35 deletions

View File

@@ -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,