mirror of
https://github.com/brl/mutter.git
synced 2025-06-14 01:09:30 +00:00
2007-10-25 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-json.h: Header for including the JSON parsing and data types. * clutter/json/json-types.h: Add JSON_NODE_VALUE_TYPE() macro. * clutter/json/Makefile.am: Install the JSON headers into a private location. This might change in the future, and might also cause collisions if you're using JSON-GLib and Clutter at the same time, so be warned.
This commit is contained in:
@ -30,7 +30,11 @@ G_BEGIN_DECLS
|
||||
*
|
||||
* Evaluates to the #JsonNodeType contained by @node
|
||||
*/
|
||||
#define JSON_NODE_TYPE(node) (((JsonNode *) (node))->type)
|
||||
#define JSON_NODE_TYPE(node) \
|
||||
(((JsonNode *) (node))->type)
|
||||
#define JSON_NODE_VALUE_TYPE(node) \
|
||||
(G_VALUE_TYPE ((((JsonNode *) (node))->data.value))
|
||||
|
||||
#define JSON_TYPE_OBJECT (json_object_get_type ())
|
||||
#define JSON_TYPE_ARRAY (json_array_get_type ())
|
||||
|
||||
|
Reference in New Issue
Block a user