JSONDefs.h | JSONDefs.h | |||
---|---|---|---|---|
skipping to change at line 18 | skipping to change at line 18 | |||
*/ | */ | |||
#include "../JSONOptions.h" | #include "../JSONOptions.h" | |||
#include "JSONDefs/Unknown_C.h" | #include "JSONDefs/Unknown_C.h" | |||
#include "JSONDefs/GNU_C.h" | #include "JSONDefs/GNU_C.h" | |||
#include "JSONDefs/Visual_C.h" | #include "JSONDefs/Visual_C.h" | |||
#include "JSONDefs/Strings_Defs.h" | #include "JSONDefs/Strings_Defs.h" | |||
#define __LIBJSON_MAJOR__ 7 | #define __LIBJSON_MAJOR__ 7 | |||
#define __LIBJSON_MINOR__ 5 | #define __LIBJSON_MINOR__ 5 | |||
#define __LIBJSON_PATCH__ 0 | #define __LIBJSON_PATCH__ 1 | |||
#define __LIBJSON_VERSION__ (__LIBJSON_MAJOR__ * 10000 + __LIBJSON_MINOR__ * 100 + __LIBJSON_PATCH__) | #define __LIBJSON_VERSION__ (__LIBJSON_MAJOR__ * 10000 + __LIBJSON_MINOR__ * 100 + __LIBJSON_PATCH__) | |||
#define JSON_NULL '\0' | #define JSON_NULL '\0' | |||
#define JSON_STRING '\1' | #define JSON_STRING '\1' | |||
#define JSON_NUMBER '\2' | #define JSON_NUMBER '\2' | |||
#define JSON_BOOL '\3' | #define JSON_BOOL '\3' | |||
#define JSON_ARRAY '\4' | #define JSON_ARRAY '\4' | |||
#define JSON_NODE '\5' | #define JSON_NODE '\5' | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||