Dayz 1.25
Dayz Code Explorer by KGB
Загрузка...
Поиск...
Не найдено
Файл JsonApi.c

См. исходные тексты.

Структуры данных

class  JsonApiHandle
 
class  JsonApi
 

Перечисления

enum  EJsonApiError {
  ETJSON_UNKNOWN , ETJSON_OK , ETJSON_COMMSEND , ETJSON_COMMRECV ,
  ETJSON_PARSERERROR , ETJSON_PACKNOSTART , ETJSON_TIMEOUT , ETJSON_NOBUFFERS ,
  ETJSON_FAILFILELOAD , ETJSON_FAILFILESAVE , ETJSON_NOTARRAY
}
 

Функции

proto native JsonApi CreateJsonApi ()
 
proto native void DestroyJsonApi ()
 
proto native JsonApi GetJsonApi ()
 

Перечисления

◆ EJsonApiError

Элементы перечислений
ETJSON_UNKNOWN 
ETJSON_OK 
ETJSON_COMMSEND 
ETJSON_COMMRECV 
ETJSON_PARSERERROR 
ETJSON_PACKNOSTART 
ETJSON_TIMEOUT 
ETJSON_NOBUFFERS 
ETJSON_FAILFILELOAD 
ETJSON_FAILFILESAVE 
ETJSON_NOTARRAY 
8{
9 ETJSON_UNKNOWN, // invalid code
10
11 ETJSON_OK, // all fine
12 ETJSON_COMMSEND, // error during send
13 ETJSON_COMMRECV, // error during receive
14 ETJSON_PARSERERROR, // error during parsing
15 ETJSON_PACKNOSTART, // error - cannot start packing (invalid state)
16 ETJSON_TIMEOUT, // failed to send/ store handle due to timeout
17 ETJSON_NOBUFFERS, // not enough buffers available
18 ETJSON_FAILFILELOAD, // failed to load file
19 ETJSON_FAILFILESAVE, // failed to save file
20 ETJSON_NOTARRAY, // object is not array (ie. attempt to provide different or none object as array)
21};
@ ETJSON_COMMRECV
Definition JsonApi.c:13
@ ETJSON_FAILFILELOAD
Definition JsonApi.c:18
@ ETJSON_FAILFILESAVE
Definition JsonApi.c:19
@ ETJSON_PACKNOSTART
Definition JsonApi.c:15
@ ETJSON_NOTARRAY
Definition JsonApi.c:20
@ ETJSON_PARSERERROR
Definition JsonApi.c:14
@ ETJSON_OK
Definition JsonApi.c:11
@ ETJSON_NOBUFFERS
Definition JsonApi.c:17
@ ETJSON_UNKNOWN
Definition JsonApi.c:9
@ ETJSON_COMMSEND
Definition JsonApi.c:12
@ ETJSON_TIMEOUT
Definition JsonApi.c:16

Функции

◆ CreateJsonApi()

proto native JsonApi CreateJsonApi ( )

◆ DestroyJsonApi()

proto native void DestroyJsonApi ( )

◆ GetJsonApi()

proto native JsonApi GetJsonApi ( )