Function
JsonObjectForeach
Declaration
void
ObjectForeach (
JsonObject* object,
const gchar* member_name,
JsonNode* member_node,
gpointer user_data
)
Description [src]
The function to be passed to json_object_foreach_member().
You should not add or remove members to and from object
within
this function.
It is safe to change the value of member_node
.
Available since: | 0.8 |
Parameters
object |
JsonObject |
The iterated JSON object. |
|
The data is owned by the caller of the function. | |
member_name |
const gchar* |
The name of the member. |
|
The data is owned by the caller of the function. | |
The string is a NUL terminated UTF-8 string. | |
member_node |
JsonNode |
The value of the member. |
|
The data is owned by the caller of the function. | |
user_data |
gpointer |
Data passed to the function. |