| 229 struct cx_json_object_s { |
229 struct cx_json_object_s { |
| 230 /** |
230 /** |
| 231 * The key/value entries. |
231 * The key/value entries. |
| 232 */ |
232 */ |
| 233 CX_ARRAY_DECLARE(CxJsonObjValue, values); |
233 CX_ARRAY_DECLARE(CxJsonObjValue, values); |
| |
234 /** |
| |
235 * The original indices to reconstruct the order in which the members were added. |
| |
236 */ |
| |
237 size_t *indices; |
| 234 }; |
238 }; |
| 235 |
239 |
| 236 /** |
240 /** |
| 237 * Structure for a key/value entry in a JSON object. |
241 * Structure for a key/value entry in a JSON object. |
| 238 */ |
242 */ |