summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2023-03-17 11:32:18 -0400
committerGitHub <noreply@github.com>2023-03-17 11:32:18 -0400
commit28731ab0e9dd94a10cf3907b4962b934c9d99207 (patch)
treec8bb3d479f81c45058a113fe1cb9ae135103ffa8
parent233cc8ce85e46a9a28ce302dd8d003f141531d69 (diff)
parent4ba91ec11e635ea3a41512a3106c7324b967a604 (diff)
downloadostree-28731ab0e9dd94a10cf3907b4962b934c9d99207.tar.gz
Merge pull request #2813 from tintou/tintou/asyncprogress-typedef
libostree: Ignore new_and_connect in the introspection
-rw-r--r--src/libostree/ostree-async-progress.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libostree/ostree-async-progress.c b/src/libostree/ostree-async-progress.c
index 8a780372..a6e91c1d 100644
--- a/src/libostree/ostree-async-progress.c
+++ b/src/libostree/ostree-async-progress.c
@@ -469,7 +469,13 @@ ostree_async_progress_new (void)
return (OstreeAsyncProgress*)g_object_new (OSTREE_TYPE_ASYNC_PROGRESS, NULL);
}
-
+/**
+ * ostree_async_progress_new_and_connect: (skip)
+ * @changed: a notification callback
+ * @user_data: data to pass to @changed
+ *
+ * Returns: (transfer full): A new progress object
+ */
OstreeAsyncProgress *
ostree_async_progress_new_and_connect (void (*changed) (OstreeAsyncProgress *self, gpointer user_data),
gpointer user_data)