summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorAllison Ryan Lortie <desrt@desrt.ca>2015-12-16 10:38:22 -0500
committerAllison Ryan Lortie <desrt@desrt.ca>2015-12-16 11:31:10 -0500
commit4bf8de0cca340493a8f0304507355b117d2f3bca (patch)
treeb314e1d76279de1a9b6a8040f805968c4b8bc8d6 /client
parent4a80e6ce540d4ce652ccf963cdb4fb44cb514a5b (diff)
downloaddconf-4bf8de0cca340493a8f0304507355b117d2f3bca.tar.gz
docs: add new APIs
...and other various cleanups.
Diffstat (limited to 'client')
-rw-r--r--client/dconf-client.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/client/dconf-client.c b/client/dconf-client.c
index f71a263..45288fc 100644
--- a/client/dconf-client.c
+++ b/client/dconf-client.c
@@ -246,6 +246,21 @@ dconf_client_read (DConfClient *client,
}
/**
+ * DConfReadFlags:
+ * @DCONF_READ_FLAGS_NONE: no flags
+ * @DCONF_READ_DEFAULT_VALUE: read the default value, ignoring any
+ * values in writable databases or any queued changes. This is
+ * effectively equivalent to asking what value would be read after a
+ * reset was written for the key in question.
+ * @DCONF_READ_USER_VALUE: read the user value, ignoring any system
+ * databases, including ignoring locks. It is even possible to read
+ * "invisible" values in the user database in this way, which would
+ * have normally been ignored because of locks.
+ *
+ * Since: 0.26
+ */
+
+/**
* dconf_client_read_full:
* @client: a #DConfClient
* @key: the key to read the default value of
@@ -335,6 +350,8 @@ dconf_client_list (DConfClient *client,
* The returned list will be %NULL-terminated.
*
* Returns: an array of strings, never %NULL.
+ *
+ * Since: 0.26
*/
gchar **
dconf_client_list_locks (DConfClient *client,