34 #define JSON_VALUE_FINISH 0x80000000
35 #define JSON_VALUE_ERROR 0xffffffff
39 #define DECLARE_MEMBER( token_str, type, ptr, child_object ) \
40 { sizeof(token_str) - 1, token_str, type, {ptr}, child_object }
41 #define DECLARE_OBJECT( cb_func ) \
42 { 0, NULL_TOKEN, JST_CBF_OBJECT, {cb_func}, NULL }
43 #define DECLARE_OBJEND() \
44 { 0, NULL_TOKEN, JST_NOTHING, {NULL}, NULL }
101 typedef void * (*JsonCallback)(
unsigned int val,
void *array,
void *usr );
const char * tk_str
Definition: mh5json.h:107
E_JSON_STATE JSON_Parse(U8BIT *data, U32BIT size, const S_JSON_MEMBERS *members, void *usr)
Definition: mh5json.c:78
Define MHEG5 String type.
void * ptr
Definition: mh5json.h:111
const char * data
Definition: mh5gate.c:65
Definition: dtvstring.h:28
union s_json_members::@8 u
uint8_t U8BIT
Definition: techtype.h:93
E_JSON_TYPE type
Definition: mh5json.h:108
void JSON_FreeUintArray(U32BIT *p_uint)
Definition: mh5json.c:100
const struct s_json_members * pChildren
Definition: mh5json.h:116
S_STRING * p_str
Definition: mh5json.h:114
void JSON_FreeStrArray(S_STRING **pp_str)
Definition: mh5json.c:110
System Wide Global Technical Data Type Definitions.
unsigned int tk_len
Definition: mh5json.h:106
JsonCallback cb_func
Definition: mh5json.h:112
E_JSON_TYPE
Definition: mh5json.h:50
struct s_json_members S_JSON_MEMBERS
Definition: mh5json.h:104
void *(* JsonCallback)(unsigned int val, void *array, void *usr)
Definition: mh5json.h:101
U32BIT * p_uint
Definition: mh5json.h:113
uint32_t U32BIT
Definition: techtype.h:97
E_JSON_STATE
Definition: mh5json.h:66
void JSON_FreeAstring(S_STRING *p_str)
Definition: mh5json.c:90