summaryrefslogtreecommitdiff
path: root/bin/gvdb.vapi
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2019-01-31 13:47:17 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2019-01-31 13:47:17 +0000
commit7ff7c513941cf389c59ee4dd102cf93cf2ea2a4a (patch)
tree8465e0353d224d90fd3208ca24ecc6422f3818aa /bin/gvdb.vapi
parente03cfd5856d203896e403f61ebc3283006c04d3d (diff)
parent50e95fbf8b35526fb962393813ed74806b70c187 (diff)
downloaddconf-7ff7c513941cf389c59ee4dd102cf93cf2ea2a4a.tar.gz
Merge branch 'goodbye-vala' into 'master'
bin: Rewrite dconf utility in C Closes #38 See merge request GNOME/dconf!39
Diffstat (limited to 'bin/gvdb.vapi')
-rw-r--r--bin/gvdb.vapi21
1 files changed, 0 insertions, 21 deletions
diff --git a/bin/gvdb.vapi b/bin/gvdb.vapi
deleted file mode 100644
index 1f3e92a..0000000
--- a/bin/gvdb.vapi
+++ /dev/null
@@ -1,21 +0,0 @@
-[CCode (cheader_filename = "../gvdb/gvdb-builder.h")]
-namespace Gvdb {
- [Compact]
- [CCode (cname = "GHashTable")]
- class HashTable : GLib.HashTable<string, Item> {
- public HashTable (HashTable? parent = null, string? key = null);
- public unowned Item insert (string key);
- public void insert_string (string key, string value);
- [CCode (cname = "gvdb_table_write_contents")]
- public void write_contents (string filename, bool byteswap = false) throws GLib.Error;
- }
-
- [Compact]
- class Item {
- public void set_value (GLib.Variant value);
- public void set_hash_table (HashTable table);
- public void set_parent (Item parent);
- }
-}
-
-// vim:noet ts=4 sw=4