From 3cf53f7c58540ac9ea0ac3d1a2c3fe548ba0907d Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 8 Nov 2017 15:11:25 +0000 Subject: [PATCH] lib/repo: Add gtk-doc comment to OstreeRepoCommitState Signed-off-by: Philip Withnall Closes: #1335 Approved by: cgwalters --- src/libostree/ostree-repo.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/libostree/ostree-repo.h b/src/libostree/ostree-repo.h index 9a1b65ae..bec43c30 100644 --- a/src/libostree/ostree-repo.h +++ b/src/libostree/ostree-repo.h @@ -539,6 +539,18 @@ gboolean ostree_repo_load_variant_if_exists (OstreeRepo *self, GVariant **out_variant, GError **error); +/** + * OstreeRepoCommitState: + * @OSTREE_REPO_COMMIT_STATE_NORMAL: Commit is complete. This is the default. + * (Since: 2017.14.) + * @OSTREE_REPO_COMMIT_STATE_PARTIAL: One or more objects are missing from the + * local copy of the commit, but metadata is present. (Since: 2015.7.) + * + * Flags representing the state of a commit in the local repository, as returned + * by ostree_repo_load_commit(). + * + * Since: 2015.7 + */ typedef enum { OSTREE_REPO_COMMIT_STATE_NORMAL = 0, OSTREE_REPO_COMMIT_STATE_PARTIAL = (1 << 0),