1#ifndef ENGINE_SHARED_JSON_H
2#define ENGINE_SHARED_JSON_H
4#include <engine/external/json-parser/json.h>
13char *
EscapeJson(
char *pBuffer,
int BufferSize,
const char *pString);
struct _json_value json_value
Definition serverbrowser.h:18
const struct _json_value * json_object_get(const json_value *pObject, const char *pIndex)
Definition json.cpp:6
const char * json_string_get(const json_value *pString)
Definition json.cpp:33
int json_boolean_get(const json_value *pBoolean)
Definition json.cpp:43
int json_array_length(const json_value *pArray)
Definition json.cpp:28
const struct _json_value * json_array_get(const json_value *pArray, int Index)
Definition json.cpp:20
char * EscapeJson(char *pBuffer, int BufferSize, const char *pString)
Definition json.cpp:63
const char * JsonBool(bool Bool)
Definition json.cpp:107
int json_int_get(const json_value *pInteger)
Definition json.cpp:38