summaryrefslogtreecommitdiff
path: root/telepathy-glib/dbus.c
diff options
context:
space:
mode:
authorDavyd Madeley <davyd@madeley.id.au>2009-03-31 09:16:09 +0800
committerDavyd Madeley <davyd@madeley.id.au>2009-03-31 09:16:09 +0800
commitb6b1a0052b811fd45b9205881cd1a49be3d968fc (patch)
treea8a1a5c675ba94df159937589c4cee464854bfb3 /telepathy-glib/dbus.c
parentb19978e6b686e98970abc1fe089c125a8ee277a8 (diff)
downloadtelepathy-glib-b6b1a0052b811fd45b9205881cd1a49be3d968fc.tar.gz
tp_asv_set_boxed, tp_asv_set_strv
Diffstat (limited to 'telepathy-glib/dbus.c')
-rw-r--r--telepathy-glib/dbus.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/telepathy-glib/dbus.c b/telepathy-glib/dbus.c
index 71a17ecc6..b3961bf29 100644
--- a/telepathy-glib/dbus.c
+++ b/telepathy-glib/dbus.c
@@ -2255,6 +2255,33 @@ tp_asv_get_boxed (const GHashTable *asv,
return g_value_get_boxed (value);
}
+/**
+ * tp_asv_set_boxed:
+ * @asv: a #GHashTable created with tp_asv_new()
+ * @key: string key
+ * @type: the type of the key's value, which must be derived from %G_TYPE_BOXED
+ * @value: value
+ *
+ * Stores the value in the map.
+ *
+ * The value is stored as a slice-allocated GValue.
+ *
+ * See Also: tp_asv_new(), tp_asv_get_boxed()
+ * Since: UNRELEASED
+ */
+void
+tp_asv_set_boxed (GHashTable *asv,
+ const gchar *key,
+ GType type,
+ gpointer value)
+{
+ g_return_if_fail (asv != NULL);
+ g_return_if_fail (key != NULL);
+ g_return_if_fail (G_TYPE_FUNDAMENTAL (type) == G_TYPE_BOXED);
+
+ g_hash_table_insert (asv, (char *) key,
+ tp_g_value_slice_new_boxed (type, value));
+}
/**
* tp_asv_get_strv:
@@ -2290,6 +2317,30 @@ tp_asv_get_strv (const GHashTable *asv,
return g_value_get_boxed (value);
}
+/**
+ * tp_asv_set_strv:
+ * @asv: a #GHashTable created with tp_asv_new()
+ * @key: string key
+ * @value: a %NULL-terminated string array
+ *
+ * Stores the value in the map.
+ *
+ * The value is stored as a slice-allocated GValue.
+ *
+ * See Also: tp_asv_new(), tp_asv_get_strv()
+ * Since: UNRELEASED
+ */
+void
+tp_asv_set_strv (GHashTable *asv,
+ const gchar *key,
+ char **value)
+{
+ g_return_if_fail (asv != NULL);
+ g_return_if_fail (key != NULL);
+
+ g_hash_table_insert (asv, (char *) key,
+ tp_g_value_slice_new_boxed (G_TYPE_STRV, value));
+}
/**
* tp_asv_lookup: