| 154 | } |
| 155 | |
| 156 | typedef struct internal_hooks |
| 157 | { |
| 158 | void *(CJSON_CDECL *allocate)(size_t size); |
| 159 | void (CJSON_CDECL *deallocate)(void *pointer); |
| 160 | void *(CJSON_CDECL *reallocate)(void *pointer, size_t size); |
| 161 | } internal_hooks; |
| 162 | |
| 163 | #if defined(_MSC_VER) |
| 164 | /* work around MSVC error C2322: '...' address of dllimport '...' is not static */ |
nothing calls this directly
no outgoing calls
no test coverage detected