summaryrefslogtreecommitdiff
path: root/json-glib/json-object.c
diff options
context:
space:
mode:
Diffstat (limited to 'json-glib/json-object.c')
-rw-r--r--json-glib/json-object.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/json-glib/json-object.c b/json-glib/json-object.c
index b6c08a5..29b9401 100644
--- a/json-glib/json-object.c
+++ b/json-glib/json-object.c
@@ -487,6 +487,15 @@ json_object_get_members (JsonObject *object)
return g_list_copy (object->members_ordered.head);
}
+
+GQueue *
+json_object_get_members_internal (JsonObject *object)
+{
+ g_return_val_if_fail (object != NULL, NULL);
+
+ return &object->members_ordered;
+}
+
/**
* json_object_get_values:
* @object: a #JsonObject