summaryrefslogtreecommitdiff
path: root/client/dconf.vapi
diff options
context:
space:
mode:
Diffstat (limited to 'client/dconf.vapi')
-rw-r--r--client/dconf.vapi10
1 files changed, 9 insertions, 1 deletions
diff --git a/client/dconf.vapi b/client/dconf.vapi
index 6fb34da..62c2e65 100644
--- a/client/dconf.vapi
+++ b/client/dconf.vapi
@@ -1,13 +1,21 @@
/* dconf.vapi generated by valac 0.17.1.35-814b, do not modify. */
namespace DConf {
+ [CCode (cheader_filename = "dconf.h", cprefix="DCONF_READ_")]
+ public enum ReadFlags {
+ [CCode (cname="DCONF_READ_FLAGS_NONE")]
+ NONE,
+ DEFAULT_VALUE,
+ USER_VALUE
+ }
+
[CCode (cheader_filename = "dconf.h")]
public class Client : GLib.Object {
public signal void changed (string prefix, [CCode (array_length = false, array_null_terminated = true)] string[] changes, string? tag);
public Client ();
public GLib.Variant? read (string key);
- public GLib.Variant? read_default (string key);
+ public GLib.Variant? read_full (string key, ReadFlags flags, GLib.Queue<Changeset>? read_through);
public string[] list (string dir);
public string[] list_locks (string dir);
public bool is_writable (string key);