23 #ifndef JSONSAX_H_INCLUDED 24 #define JSONSAX_H_INCLUDED 27 #define JSON_MAJOR_VERSION 1 28 #define JSON_MINOR_VERSION 4 29 #define JSON_MICRO_VERSION 5 34 #if defined(JSON_NO_PARSER) && defined(JSON_NO_WRITER) 35 #error JSON_NO_PARSER and JSON_NO_WRITER cannot both be defined! 51 #if defined(JSON_STATIC) 55 #if defined(JSON_BUILDING) 56 #define JSON_EXPORT __declspec(dllexport) 58 #define JSON_EXPORT __declspec(dllimport) 61 #if defined(JSON_BUILDING) 62 #define JSON_EXPORT __attribute__ ((visibility("default"))) 75 #define JSON_CALL __cdecl 76 #elif defined(__GNUC__) && defined(__i386) && !defined(__INTEL_COMPILER) 77 #define JSON_CALL __attribute__((cdecl)) 83 #define JSON_API(t) JSON_EXPORT t JSON_CALL 212 #ifndef JSON_NO_PARSER 741 #ifndef JSON_NO_WRITER Definition: jsonsax_full.h:114
tag_JSON_Status
Definition: jsonsax_full.h:93
struct tag_JSON_Location JSON_Location
Definition: jsonsax_full.h:161
JSON_Status JSON_CALL JSON_Parser_SetSpecialNumberHandler(JSON_Parser parser, JSON_Parser_SpecialNumberHandler handler)
Definition: jsonsax_full.c:2898
JSON_Status JSON_CALL JSON_Parser_SetAllowBOM(JSON_Parser parser, JSON_Boolean allowBOM)
Definition: jsonsax_full.c:2660
enum tag_JSON_Parser_HandlerResult JSON_Parser_HandlerResult
Definition: jsonsax_full.h:880
JSON_Status JSON_CALL JSON_Parser_Parse(JSON_Parser parser, const char *pBytes, size_t length, JSON_Boolean isFinal)
Definition: jsonsax_full.c:2997
const GLvoid * ptr
Definition: nx_glsym.h:242
enum tag_JSON_Boolean JSON_Boolean
void *(JSON_CALL * JSON_ReallocHandler)(void *userData, void *ptr, size_t size)
Definition: jsonsax_full.h:199
Definition: jsonsax_full.h:115
Definition: jsonsax_full.h:124
JSON_Boolean useCRLF
Definition: jsonsax_full.h:810
tag_JSON_Parser_HandlerResult
Definition: jsonsax_full.h:541
JSON_Status JSON_CALL JSON_Parser_SetNullHandler(JSON_Parser parser, JSON_Parser_NullHandler handler)
Definition: jsonsax_full.c:2838
const char * pValue
Definition: jsonsax_full.h:952
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_ObjectMemberHandler)(JSON_Parser parser, char *pValue, size_t length, JSON_StringAttributes attributes)
Definition: jsonsax_full.h:685
JSON_Boolean JSON_CALL JSON_Parser_GetAllowBOM(JSON_Parser parser)
Definition: jsonsax_full.c:2655
JSON_Status JSON_CALL JSON_Parser_SetAllowHexNumbers(JSON_Parser parser, JSON_Boolean allowHexNumbers)
Definition: jsonsax_full.c:2699
#define JSON_CALL
Definition: jsonsax_full.h:79
JSON_Status JSON_CALL JSON_Parser_SetEndObjectHandler(JSON_Parser parser, JSON_Parser_EndObjectHandler handler)
Definition: jsonsax_full.c:2927
Definition: jsonsax_full.h:104
tag_JSON_Boolean
Definition: jsonsax_full.h:86
size_t depth
Definition: jsonsax_full.h:189
JSON_Boolean JSON_CALL JSON_Writer_GetReplaceInvalidEncodingSequences(JSON_Writer writer)
Definition: jsonsax_full.c:3632
Definition: jsonsax_full.h:103
JSON_Status JSON_CALL JSON_Parser_SetStartObjectHandler(JSON_Parser parser, JSON_Parser_StartObjectHandler handler)
Definition: jsonsax_full.c:2912
JSON_Encoding JSON_CALL JSON_Parser_GetStringEncoding(JSON_Parser parser)
Definition: jsonsax_full.c:2597
Definition: jsonsax_full.h:113
JSON_Boolean allowUnescapedControlCharacters
Definition: jsonsax_full.h:410
JSON_Status JSON_CALL JSON_Writer_WriteColon(JSON_Writer writer)
Definition: jsonsax_full.c:3818
enum tag_JSON_Error JSON_Error
JSON_Parser_StringHandler JSON_CALL JSON_Parser_GetStringHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2863
size_t line
Definition: jsonsax_full.h:183
JSON_Parser_SpecialNumberHandler JSON_CALL JSON_Parser_GetSpecialNumberHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2893
JSON_Status JSON_CALL JSON_Writer_WriteComma(JSON_Writer writer)
Definition: jsonsax_full.c:3826
JSON_Status JSON_CALL JSON_Writer_SetUserData(JSON_Writer writer, void *userData)
Definition: jsonsax_full.c:3595
Definition: jsonsax_full.c:997
JSON_Boolean JSON_CALL JSON_Writer_GetUseCRLF(JSON_Writer writer)
Definition: jsonsax_full.c:3618
JSON_Status JSON_CALL JSON_Parser_SetStopAfterEmbeddedDocument(JSON_Parser parser, JSON_Boolean stopAfterEmbeddedDocument)
Definition: jsonsax_full.c:2754
JSON_Encoding encoding
Definition: jsonsax_full.h:274
Definition: jsonsax_full.h:139
Definition: jsonsax_full.h:108
JSON_Status JSON_CALL JSON_Writer_WriteNumber(JSON_Writer writer, const char *pValue, size_t length, JSON_Encoding encoding)
Definition: jsonsax_full.c:3734
JSON_Parser_NullHandler JSON_CALL JSON_Parser_GetEncodingDetectedHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2818
Definition: jsonsax_full.h:543
JSON_Boolean JSON_CALL JSON_Parser_GetStopAfterEmbeddedDocument(JSON_Parser parser)
Definition: jsonsax_full.c:2749
JSON_Parser_ObjectMemberHandler JSON_CALL JSON_Parser_GetObjectMemberHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2937
JSON_Boolean replaceInvalidEncodingSequences
Definition: jsonsax_full.h:434
JSON_Status JSON_CALL JSON_Parser_SetAllowComments(JSON_Parser parser, JSON_Boolean allowComments)
Definition: jsonsax_full.c:2673
JSON_Status JSON_CALL JSON_Writer_Reset(JSON_Writer writer)
Definition: jsonsax_full.c:3579
JSON_Status JSON_CALL JSON_Parser_SetTrackObjectMembers(JSON_Parser parser, JSON_Boolean trackObjectMembers)
Definition: jsonsax_full.c:2739
JSON_Status JSON_CALL JSON_Writer_WriteString(JSON_Writer writer, const char *pValue, size_t length, JSON_Encoding encoding)
Definition: jsonsax_full.c:3719
GLsizeiptr size
Definition: glext.h:6559
JSON_Writer JSON_CALL JSON_Writer_Create(const JSON_MemorySuite *pMemorySuite)
Definition: jsonsax_full.c:3544
JSON_Parser_BooleanHandler JSON_CALL JSON_Parser_GetBooleanHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2848
JSON_Status JSON_CALL JSON_Parser_GetTokenLocation(JSON_Parser parser, JSON_Location *pLocation)
Definition: jsonsax_full.c:2792
Definition: jsonsax_full.h:128
JSON_Error JSON_CALL JSON_Parser_GetError(JSON_Parser parser)
Definition: jsonsax_full.c:2765
JSON_Boolean JSON_CALL JSON_Writer_GetEscapeAllNonASCIICharacters(JSON_Writer writer)
Definition: jsonsax_full.c:3646
Definition: jsonsax_full.h:126
JSON_Status JSON_CALL JSON_Parser_SetEndArrayHandler(JSON_Parser parser, JSON_Parser_EndArrayHandler handler)
Definition: jsonsax_full.c:2972
Definition: jsonsax_full.h:106
JSON_Status JSON_CALL JSON_Parser_SetMaxStringLength(JSON_Parser parser, size_t maxLength)
Definition: jsonsax_full.c:2619
Definition: jsonsax_full.h:203
JSON_Encoding JSON_CALL JSON_Parser_GetInputEncoding(JSON_Parser parser)
Definition: jsonsax_full.c:2581
GLsizei maxLength
Definition: glext.h:7544
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_StartArrayHandler)(JSON_Parser parser)
Definition: jsonsax_full.h:692
JSON_Status JSON_CALL JSON_Parser_SetObjectMemberHandler(JSON_Parser parser, JSON_Parser_ObjectMemberHandler handler)
Definition: jsonsax_full.c:2942
size_t JSON_CALL JSON_Parser_GetMaxNumberLength(JSON_Parser parser)
Definition: jsonsax_full.c:2641
typedef void(__stdcall *PFN_DESTRUCTION_CALLBACK)(void *pData)
void * userData
Definition: jsonsax_full.h:205
JSON_Boolean JSON_CALL JSON_Parser_GetAllowSpecialNumbers(JSON_Parser parser)
Definition: jsonsax_full.c:2681
tag_JSON_Encoding
Definition: jsonsax_full.h:122
JSON_Boolean trackObjectMembers
Definition: jsonsax_full.h:455
Definition: jsonsax_full.h:545
JSON_Boolean JSON_CALL JSON_Parser_GetAllowComments(JSON_Parser parser)
Definition: jsonsax_full.c:2668
JSON_Boolean allowHexNumbers
Definition: jsonsax_full.h:397
JSON_Status JSON_CALL JSON_Writer_Free(JSON_Writer writer)
Definition: jsonsax_full.c:3568
Definition: jsonsax_full.h:544
JSON_Parser_NumberHandler JSON_CALL JSON_Parser_GetNumberHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2878
unsigned int major
Definition: jsonsax_full.h:1013
static GX2AttribVar attributes[]
Definition: bokeh.c:713
Definition: jsonsax_full.h:112
JSON_Status JSON_CALL JSON_Parser_GetErrorLocation(JSON_Parser parser, JSON_Location *pLocation)
Definition: jsonsax_full.c:2770
Definition: jsonsax_full.h:165
Definition: jsonsax_full.h:138
JSON_Boolean escapeAllNonASCIICharacters
Definition: jsonsax_full.h:834
JSON_Status JSON_CALL JSON_Writer_SetUseCRLF(JSON_Writer writer, JSON_Boolean useCRLF)
Definition: jsonsax_full.c:3623
JSON_Status JSON_CALL JSON_Parser_SetStringEncoding(JSON_Parser parser, JSON_Encoding encoding)
Definition: jsonsax_full.c:2602
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_NullHandler)(JSON_Parser parser)
Definition: jsonsax_full.h:566
Definition: jsonsax_full.h:140
JSON_Boolean value
Definition: jsonsax_full.h:902
JSON_Boolean allowSpecialNumbers
Definition: jsonsax_full.h:375
JSON_Error JSON_CALL JSON_Writer_GetError(JSON_Writer writer)
Definition: jsonsax_full.c:3660
JSON_Status JSON_CALL JSON_Writer_WriteBoolean(JSON_Writer writer, JSON_Boolean value)
Definition: jsonsax_full.c:3689
JSON_Status JSON_CALL JSON_Parser_SetStartArrayHandler(JSON_Parser parser, JSON_Parser_StartArrayHandler handler)
Definition: jsonsax_full.c:2957
JSON_Status JSON_CALL JSON_Parser_Reset(JSON_Parser parser)
Definition: jsonsax_full.c:2558
Definition: jsonsax_full.h:150
Definition: jsonsax_full.h:159
void *JSON_CALL JSON_Writer_GetUserData(JSON_Writer writer)
Definition: jsonsax_full.c:3590
enum tag_JSON_NumberAttribute JSON_NumberAttribute
size_t byte
Definition: jsonsax_full.h:172
JSON_Status JSON_CALL JSON_Writer_WriteStartObject(JSON_Writer writer)
Definition: jsonsax_full.c:3786
enum tag_JSON_StringAttribute JSON_StringAttribute
JSON_Status JSON_CALL JSON_Parser_SetNumberEncoding(JSON_Parser parser, JSON_Encoding encoding)
Definition: jsonsax_full.c:2633
struct tag_JSON_MemorySuite JSON_MemorySuite
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_ArrayItemHandler)(JSON_Parser parser)
Definition: jsonsax_full.h:709
JSON_Boolean JSON_CALL JSON_Parser_GetAllowHexNumbers(JSON_Parser parser)
Definition: jsonsax_full.c:2694
Definition: jsonsax_full.h:137
static l_noret error(LoadState *S, const char *why)
Definition: lundump.c:39
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_EndObjectHandler)(JSON_Parser parser)
Definition: jsonsax_full.h:652
JSON_Status JSON_CALL JSON_Parser_SetReplaceInvalidEncodingSequences(JSON_Parser parser, JSON_Boolean replaceInvalidEncodingSequences)
Definition: jsonsax_full.c:2725
JSON_Boolean allowComments
Definition: jsonsax_full.h:361
tag_JSON_Writer_HandlerResult
Definition: jsonsax_full.h:878
Definition: jsonsax_full.h:149
static int writer(lua_State *L, const void *b, size_t size, void *B)
Definition: lstrlib.c:182
Definition: jsonsax_full.h:135
JSON_Writer_OutputHandler JSON_CALL JSON_Writer_GetOutputHandler(JSON_Writer writer)
Definition: jsonsax_full.c:3665
JSON_Boolean stopAfterEmbeddedDocument
Definition: jsonsax_full.h:472
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_EndArrayHandler)(JSON_Parser parser)
Definition: jsonsax_full.h:699
const JSON_Version *JSON_CALL JSON_LibraryVersion(void)
Definition: jsonsax_full.c:3885
Definition: jsonsax_full.h:89
Definition: jsonsax_full.h:147
Definition: jsonsax_full.c:3055
JSON_Status JSON_CALL JSON_Parser_SetInputEncoding(JSON_Parser parser, JSON_Encoding encoding)
Definition: jsonsax_full.c:2586
JSON_Encoding JSON_CALL JSON_NativeUTF32Encoding(void)
Definition: jsonsax_full.c:3926
JSON_Status JSON_CALL JSON_Writer_WriteEndObject(JSON_Writer writer)
Definition: jsonsax_full.c:3794
JSON_Parser JSON_CALL JSON_Parser_Create(const JSON_MemorySuite *pMemorySuite)
Definition: jsonsax_full.c:2514
Definition: jsonsax_full.h:136
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_BooleanHandler)(JSON_Parser parser, JSON_Boolean value)
Definition: jsonsax_full.h:573
Definition: jsonsax_full.h:96
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_SpecialNumberHandler)(JSON_Parser parser, JSON_SpecialNumber value)
Definition: jsonsax_full.h:638
Definition: jsonsax_full.h:151
JSON_Status JSON_CALL JSON_Writer_WriteEndArray(JSON_Writer writer)
Definition: jsonsax_full.c:3810
Definition: jsonsax_full.h:88
JSON_Boolean allowBOM
Definition: jsonsax_full.h:345
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_NumberHandler)(JSON_Parser parser, char *pValue, size_t length, JSON_NumberAttributes attributes)
Definition: jsonsax_full.h:631
enum tag_JSON_SpecialNumber JSON_SpecialNumber
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_StringHandler)(JSON_Parser parser, char *pValue, size_t length, JSON_StringAttributes attributes)
Definition: jsonsax_full.h:600
enum tag_JSON_Encoding JSON_Encoding
tag_JSON_Error
Definition: jsonsax_full.h:100
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_StartObjectHandler)(JSON_Parser parser)
Definition: jsonsax_full.h:645
tag_JSON_StringAttribute
Definition: jsonsax_full.h:133
JSON_Status JSON_CALL JSON_Parser_SetBooleanHandler(JSON_Parser parser, JSON_Parser_BooleanHandler handler)
Definition: jsonsax_full.c:2853
JSON_Status JSON_CALL JSON_Writer_SetOutputHandler(JSON_Writer writer, JSON_Writer_OutputHandler handler)
Definition: jsonsax_full.c:3670
JSON_Parser_EndObjectHandler JSON_CALL JSON_Parser_GetEndObjectHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2922
enum tag_JSON_Writer_HandlerResult JSON_Writer_HandlerResult
JSON_Parser_ArrayItemHandler JSON_CALL JSON_Parser_GetArrayItemHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2982
JSON_ReallocHandler realloc
Definition: jsonsax_full.h:206
JSON_Status JSON_CALL JSON_Writer_WriteSpecialNumber(JSON_Writer writer, JSON_SpecialNumber value)
Definition: jsonsax_full.c:3749
const char * pBytes
Definition: jsonsax_full.h:735
Definition: jsonsax_full.h:129
JSON_FreeHandler free
Definition: jsonsax_full.h:207
JSON_Status JSON_CALL JSON_Parser_SetAllowUnescapedControlCharacters(JSON_Parser parser, JSON_Boolean allowUnescapedControlCharacters)
Definition: jsonsax_full.c:2712
Definition: jsonsax_full.h:95
#define JSON_API(t)
Definition: jsonsax_full.h:83
const char *JSON_CALL JSON_ErrorString(JSON_Error error)
Definition: jsonsax_full.c:3891
JSON_Status JSON_CALL JSON_Parser_SetEncodingDetectedHandler(JSON_Parser parser, JSON_Parser_EncodingDetectedHandler handler)
Definition: jsonsax_full.c:2823
Definition: jsonsax_full.h:116
struct JSON_Writer_Data * JSON_Writer
Definition: jsonsax_full.h:745
JSON_Encoding JSON_CALL JSON_NativeUTF16Encoding(void)
Definition: jsonsax_full.c:3921
const char size_t length
Definition: jsonsax_full.h:735
JSON_Boolean JSON_CALL JSON_Parser_GetAllowUnescapedControlCharacters(JSON_Parser parser)
Definition: jsonsax_full.c:2707
Definition: jsonsax_full.h:160
JSON_Status JSON_CALL JSON_Parser_SetMaxNumberLength(JSON_Parser parser, size_t maxLength)
Definition: jsonsax_full.c:2646
struct JSON_Parser_Data * JSON_Parser
Definition: jsonsax_full.h:216
JSON_Parser_StartObjectHandler JSON_CALL JSON_Parser_GetStartObjectHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2907
unsigned int JSON_StringAttributes
Definition: jsonsax_full.h:142
Definition: jsonsax_full.h:881
JSON_Parser_EncodingDetectedHandler handler
Definition: jsonsax_full.h:561
JSON_Boolean JSON_CALL JSON_Parser_GetTrackObjectMembers(JSON_Parser parser)
Definition: jsonsax_full.c:2734
Definition: jsonsax_full.h:111
JSON_Location * pLocation
Definition: jsonsax_full.h:490
Definition: jsonsax_full.h:117
Definition: jsonsax_full.h:127
Definition: jsonsax_full.h:125
JSON_Status JSON_CALL JSON_Parser_GetAfterTokenLocation(JSON_Parser parser, JSON_Location *pLocation)
Definition: jsonsax_full.c:2805
Definition: jsonsax_full.h:118
tag_JSON_SpecialNumber
Definition: jsonsax_full.h:157
Definition: jsonsax_full.h:109
GLsizei const GLfloat * value
Definition: glext.h:6709
JSON_Status JSON_CALL JSON_Parser_Free(JSON_Parser parser)
Definition: jsonsax_full.c:2540
struct tag_JSON_Version JSON_Version
void(JSON_CALL * JSON_FreeHandler)(void *userData, void *ptr)
Definition: jsonsax_full.h:200
JSON_Status JSON_CALL JSON_Parser_SetArrayItemHandler(JSON_Parser parser, JSON_Parser_ArrayItemHandler handler)
Definition: jsonsax_full.c:2987
JSON_Boolean JSON_CALL JSON_Parser_GetReplaceInvalidEncodingSequences(JSON_Parser parser)
Definition: jsonsax_full.c:2720
JSON_Status JSON_CALL JSON_Writer_WriteSpace(JSON_Writer writer, size_t numberOfSpaces)
Definition: jsonsax_full.c:3834
Definition: jsonsax_full.h:105
JSON_Encoding JSON_CALL JSON_Writer_GetOutputEncoding(JSON_Writer writer)
Definition: jsonsax_full.c:3604
void *JSON_CALL JSON_Parser_GetUserData(JSON_Parser parser)
Definition: jsonsax_full.c:2568
JSON_Encoding JSON_CALL JSON_Parser_GetNumberEncoding(JSON_Parser parser)
Definition: jsonsax_full.c:2628
JSON_Status JSON_CALL JSON_Parser_SetStringHandler(JSON_Parser parser, JSON_Parser_StringHandler handler)
Definition: jsonsax_full.c:2868
size_t numberOfSpaces
Definition: jsonsax_full.h:1001
void * userData
Definition: jsonsax_full.h:259
Definition: jsonsax_full.h:107
const char size_t JSON_Boolean isFinal
Definition: jsonsax_full.h:735
JSON_Status JSON_CALL JSON_Writer_SetEscapeAllNonASCIICharacters(JSON_Writer writer, JSON_Boolean escapeAllNonASCIICharacters)
Definition: jsonsax_full.c:3651
size_t JSON_CALL JSON_Parser_GetMaxStringLength(JSON_Parser parser)
Definition: jsonsax_full.c:2614
enum tag_JSON_Status JSON_Status
Definition: jsonsax_full.h:102
JSON_Parser_StartArrayHandler JSON_CALL JSON_Parser_GetStartArrayHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2952
JSON_Status JSON_CALL JSON_Writer_WriteStartArray(JSON_Writer writer)
Definition: jsonsax_full.c:3802
unsigned int micro
Definition: jsonsax_full.h:1015
Definition: jsonsax_full.h:110
JSON_Parser_HandlerResult(JSON_CALL * JSON_Parser_EncodingDetectedHandler)(JSON_Parser parser)
Definition: jsonsax_full.h:559
unsigned int minor
Definition: jsonsax_full.h:1014
JSON_Parser_NullHandler JSON_CALL JSON_Parser_GetNullHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2833
JSON_Status JSON_CALL JSON_Writer_SetOutputEncoding(JSON_Writer writer, JSON_Encoding encoding)
Definition: jsonsax_full.c:3609
tag_JSON_NumberAttribute
Definition: jsonsax_full.h:145
Definition: jsonsax_full.h:148
JSON_Writer_HandlerResult(JSON_CALL * JSON_Writer_OutputHandler)(JSON_Writer writer, const char *pBytes, size_t length)
Definition: jsonsax_full.h:894
JSON_Status JSON_CALL JSON_Writer_WriteNull(JSON_Writer writer)
Definition: jsonsax_full.c:3679
GLenum GLuint GLenum GLsizei length
Definition: glext.h:6233
unsigned int JSON_NumberAttributes
Definition: jsonsax_full.h:154
size_t column
Definition: jsonsax_full.h:186
JSON_Parser_EndArrayHandler JSON_CALL JSON_Parser_GetEndArrayHandler(JSON_Parser parser)
Definition: jsonsax_full.c:2967
JSON_Status JSON_CALL JSON_Writer_SetReplaceInvalidEncodingSequences(JSON_Writer writer, JSON_Boolean replaceInvalidEncodingSequences)
Definition: jsonsax_full.c:3637
Definition: jsonsax_full.h:152
Definition: jsonsax_full.h:1011
JSON_Status JSON_CALL JSON_Writer_WriteNewLine(JSON_Writer writer)
Definition: jsonsax_full.c:3846
JSON_Status JSON_CALL JSON_Parser_SetUserData(JSON_Parser parser, void *userData)
Definition: jsonsax_full.c:2573
JSON_Status JSON_CALL JSON_Parser_SetNumberHandler(JSON_Parser parser, JSON_Parser_NumberHandler handler)
Definition: jsonsax_full.c:2883
JSON_Status JSON_CALL JSON_Parser_SetAllowSpecialNumbers(JSON_Parser parser, JSON_Boolean allowSpecialNumbers)
Definition: jsonsax_full.c:2686