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:5
const char * json_string_get(const json_value *pString)
Definition json.cpp:32
int json_boolean_get(const json_value *pBoolean)
Definition json.cpp:42
int json_array_length(const json_value *pArray)
Definition json.cpp:27
const struct _json_value * json_array_get(const json_value *pArray, int Index)
Definition json.cpp:19
char * EscapeJson(char *pBuffer, int BufferSize, const char *pString)
Definition json.cpp:62
const char * JsonBool(bool Bool)
Definition json.cpp:106
int json_int_get(const json_value *pInteger)
Definition json.cpp:37