gvdb_table_get_value

GVariant* gvdb_table_get_value (GvdbTable* table,
                                const gchar* key);
  

Looks up a value named key in table.

If the value is not found then NULL is returned. Otherwise, a new GLib.Variant instance is returned. The GLib.Variant does not depend on the continued existence of table.

You should call g_variant_unref() on the return result when you no longer require it.

table

a Gvdb.Table

key

a string

Returns

a GLib.Variant, or NULL