mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-05-01 14:17:58 +03:00

It's needed in order to avoid conflicts with GLRage. Basically we override the entire thing in a way that stays consistent with it. In the future it might be a subject to improvements.
11 lines
394 B
C
11 lines
394 B
C
#ifndef T1M_JSON_UTILS_H
|
|
#define T1M_JSON_UTILS_H
|
|
|
|
#include "json-parser/json.h"
|
|
|
|
struct json_value_s* JSONGetField(struct json_value_s* root, const char* name);
|
|
int8_t JSONGetBooleanValue(struct json_value_s* root, const char* name);
|
|
int32_t JSONGetIntegerValue(struct json_value_s* root, const char* name);
|
|
const char* JSONGetStringValue(struct json_value_s* root, const char* name);
|
|
|
|
#endif
|