Searched refs:CJSON_PUBLIC (Results 1 – 4 of 4) sorted by relevance
/civetweb-2.7.6/examples/rest/cJSON/ |
D | cJSON.h | 112 #define CJSON_PUBLIC(type) type __stdcall macro 114 #define CJSON_PUBLIC(type) __declspec(dllexport) type __stdcall macro 116 #define CJSON_PUBLIC(type) __declspec(dllimport) type __stdcall macro 120 #define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type macro 122 #define CJSON_PUBLIC(type) type macro 133 CJSON_PUBLIC(const char*) cJSON_Version(void); 136 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks); 140 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value); 143 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… 146 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item); [all …]
|
D | cJSON_Utils.h | 26 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *pointer); 27 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer); 31 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatches(cJSON * const from, cJSON * const to); 32 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatchesCaseSensitive(cJSON * const from, cJSON * const to); 34 CJSON_PUBLIC(void) cJSONUtils_AddPatchToArray(cJSON * const array, const char * const operation, co… 36 CJSON_PUBLIC(int) cJSONUtils_ApplyPatches(cJSON * const object, const cJSON * const patches); 37 CJSON_PUBLIC(int) cJSONUtils_ApplyPatchesCaseSensitive(cJSON * const object, const cJSON * const pa… 62 CJSON_PUBLIC(cJSON *) cJSONUtils_MergePatch(cJSON *target, const cJSON * const patch); 63 CJSON_PUBLIC(cJSON *) cJSONUtils_MergePatchCaseSensitive(cJSON *target, const cJSON * const patch); 66 CJSON_PUBLIC(cJSON *) cJSONUtils_GenerateMergePatch(cJSON * const from, cJSON * const to); [all …]
|
D | cJSON.c | 71 CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) in cJSON_GetErrorPtr() 76 CJSON_PUBLIC(char *) cJSON_GetStringValue(cJSON *item) { in cJSON_GetStringValue() 89 CJSON_PUBLIC(const char*) cJSON_Version(void) in cJSON_Version() 171 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks) in cJSON_InitHooks() 215 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete() 344 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) in cJSON_SetNumberHelper() 1001 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… in cJSON_ParseWithOpts() 1081 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) in cJSON_Parse() 1153 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) in cJSON_Print() 1158 CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) in cJSON_PrintUnformatted() [all …]
|
D | cJSON_Utils.c | 179 CJSON_PUBLIC(char *) cJSONUtils_FindPointerFromObjectTo(const cJSON * const object, const cJSON * c… in cJSONUtils_FindPointerFromObjectTo() 328 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *pointer) in cJSONUtils_GetPointer() 333 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer) in cJSONUtils_GetPointerCaseSensitive() 1011 CJSON_PUBLIC(int) cJSONUtils_ApplyPatches(cJSON * const object, const cJSON * const patches) in cJSONUtils_ApplyPatches() 1040 CJSON_PUBLIC(int) cJSONUtils_ApplyPatchesCaseSensitive(cJSON * const object, const cJSON * const pa… in cJSONUtils_ApplyPatchesCaseSensitive() 1109 CJSON_PUBLIC(void) cJSONUtils_AddPatchToArray(cJSON * const array, const char * const operation, co… in cJSONUtils_AddPatchToArray() 1254 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatches(cJSON * const from, cJSON * const to) in cJSONUtils_GeneratePatches() 1269 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatchesCaseSensitive(cJSON * const from, cJSON * const to) in cJSONUtils_GeneratePatchesCaseSensitive() 1284 CJSON_PUBLIC(void) cJSONUtils_SortObject(cJSON * const object) in cJSONUtils_SortObject() 1289 CJSON_PUBLIC(void) cJSONUtils_SortObjectCaseSensitive(cJSON * const object) in cJSONUtils_SortObjectCaseSensitive() [all …]
|