|
CX Framework
Cross-platform C utility framework
|
#include <jsoncommon.h>
Data Fields | ||
| JSONParseContext * | ctx | |
| Current parser context. | ||
| JsonEventType | etype | |
| Type of event. | ||
| union { | ||
| int64 intData | ||
| Integer value (for JSON_Int) | ||
| double floatData | ||
| Float value (for JSON_Float) | ||
| string strData | ||
| String value (for JSON_String, JSON_Object_Key, JSON_Error) | ||
| } | edata | |
| Event-specific data. | ||
JSON parse event
Delivered to callbacks during parsing. Contains the event type, current context, and event-specific data.
Definition at line 105 of file jsoncommon.h.