summaryrefslogtreecommitdiff
path: root/bin/gvdb.vapi
diff options
context:
space:
mode:
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