1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
#pragma once
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#ifdef __cplusplus
extern "C" {
#endif
typedef enum JSON_TOKEN
{
JSON_TOKEN_NONE,
JSON_TOKEN_ARRAY_START,
JSON_TOKEN_ARRAY_VALUE,
JSON_TOKEN_ARRAY_END,
JSON_TOKEN_OBJECT_START,
JSON_TOKEN_OBJECT_KEY,
JSON_TOKEN_OBJECT_VALUE,
JSON_TOKEN_OBJECT_END,
JSON_TOKEN_VALUE,
} JSON_TOKEN;
typedef struct _JSON_VALUE
{
} JSON_VALUE;
typedef struct _JSON_READER
{
CRITICAL_SECTION cs;
LPWSTR sczJson;
LPWSTR pwz;
JSON_TOKEN token;
} JSON_READER;
typedef struct _JSON_WRITER
{
CRITICAL_SECTION cs;
LPWSTR sczJson;
JSON_TOKEN* rgTokenStack;
DWORD cTokens;
DWORD cMaxTokens;
} JSON_WRITER;
DAPI_(HRESULT) JsonInitializeReader(
__in_z LPCWSTR wzJson,
__in JSON_READER* pReader
);
DAPI_(void) JsonUninitializeReader(
__in JSON_READER* pReader
);
DAPI_(HRESULT) JsonReadNext(
__in JSON_READER* pReader,
__out JSON_TOKEN* pToken,
__out JSON_VALUE* pValue
);
DAPI_(HRESULT) JsonReadValue(
__in JSON_READER* pReader,
__in JSON_VALUE* pValue
);
DAPI_(HRESULT) JsonInitializeWriter(
__in JSON_WRITER* pWriter
);
DAPI_(void) JsonUninitializeWriter(
__in JSON_WRITER* pWriter
);
DAPI_(HRESULT) JsonWriteBool(
__in JSON_WRITER* pWriter,
__in BOOL fValue
);
DAPI_(HRESULT) JsonWriteNumber(
__in JSON_WRITER* pWriter,
__in DWORD dwValue
);
DAPI_(HRESULT) JsonWriteString(
__in JSON_WRITER* pWriter,
__in_z LPCWSTR wzValue
);
DAPI_(HRESULT) JsonWriteArrayStart(
__in JSON_WRITER* pWriter
);
DAPI_(HRESULT) JsonWriteArrayEnd(
__in JSON_WRITER* pWriter
);
DAPI_(HRESULT) JsonWriteObjectStart(
__in JSON_WRITER* pWriter
);
DAPI_(HRESULT) JsonWriteObjectKey(
__in JSON_WRITER* pWriter,
__in_z LPCWSTR wzKey
);
DAPI_(HRESULT) JsonWriteObjectEnd(
__in JSON_WRITER* pWriter
);
#ifdef __cplusplus
}
#endif
|