webservices: Get rid of insert_string_cb.
[wine.git] / dlls / webservices / webservices_private.h
blobf8cc6d9cfebef27c4b3c1a11a9d2d821c37fce41
1 /*
2 * Copyright 2015 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "winhttp.h"
21 struct xmlbuf
23 WS_HEAP *heap;
24 WS_BYTES bytes;
25 SIZE_T size;
26 WS_XML_WRITER_ENCODING_TYPE encoding;
27 WS_CHARSET charset;
28 const WS_XML_DICTIONARY *dict_static;
29 WS_XML_DICTIONARY *dict;
32 void *ws_alloc( WS_HEAP *, SIZE_T ) DECLSPEC_HIDDEN;
33 void *ws_alloc_zero( WS_HEAP *, SIZE_T ) DECLSPEC_HIDDEN;
34 void *ws_realloc( WS_HEAP *, void *, SIZE_T, SIZE_T ) DECLSPEC_HIDDEN;
35 void *ws_realloc_zero( WS_HEAP *, void *, SIZE_T, SIZE_T ) DECLSPEC_HIDDEN;
36 void ws_free( WS_HEAP *, void *, SIZE_T ) DECLSPEC_HIDDEN;
37 struct xmlbuf *alloc_xmlbuf( WS_HEAP *, SIZE_T, WS_XML_WRITER_ENCODING_TYPE, WS_CHARSET,
38 const WS_XML_DICTIONARY *, WS_XML_DICTIONARY * ) DECLSPEC_HIDDEN;
39 void free_xmlbuf( struct xmlbuf * ) DECLSPEC_HIDDEN;
41 struct dictionary
43 WS_XML_DICTIONARY dict;
44 ULONG *sorted;
45 ULONG size;
47 struct dictionary dict_builtin DECLSPEC_HIDDEN;
48 const struct dictionary dict_builtin_static DECLSPEC_HIDDEN;
50 int find_string( const struct dictionary *, const unsigned char *, ULONG, ULONG * ) DECLSPEC_HIDDEN;
51 HRESULT insert_string( struct dictionary *, unsigned char *, ULONG, int, ULONG * ) DECLSPEC_HIDDEN;
52 void clear_dict( struct dictionary * ) DECLSPEC_HIDDEN;
53 HRESULT writer_enable_lookup( WS_XML_WRITER * ) DECLSPEC_HIDDEN;
55 const char *debugstr_xmlstr( const WS_XML_STRING * ) DECLSPEC_HIDDEN;
56 WS_XML_STRING *alloc_xml_string( const unsigned char *, ULONG ) DECLSPEC_HIDDEN;
57 WS_XML_STRING *dup_xml_string( const WS_XML_STRING *, BOOL ) DECLSPEC_HIDDEN;
58 HRESULT add_xml_string( WS_XML_STRING * ) DECLSPEC_HIDDEN;
59 void free_xml_string( WS_XML_STRING * ) DECLSPEC_HIDDEN;
60 HRESULT append_attribute( WS_XML_ELEMENT_NODE *, WS_XML_ATTRIBUTE * ) DECLSPEC_HIDDEN;
61 void free_attribute( WS_XML_ATTRIBUTE * ) DECLSPEC_HIDDEN;
62 WS_TYPE map_value_type( WS_VALUE_TYPE ) DECLSPEC_HIDDEN;
63 BOOL set_fpword( unsigned short, unsigned short * ) DECLSPEC_HIDDEN;
64 void restore_fpword( unsigned short ) DECLSPEC_HIDDEN;
65 ULONG get_type_size( WS_TYPE, const void * ) DECLSPEC_HIDDEN;
66 HRESULT read_header( WS_XML_READER *, const WS_XML_STRING *, const WS_XML_STRING *, WS_TYPE,
67 const void *, WS_READ_OPTION, WS_HEAP *, void *, ULONG ) DECLSPEC_HIDDEN;
68 HRESULT create_header_buffer( WS_XML_READER *, WS_HEAP *, WS_XML_BUFFER ** ) DECLSPEC_HIDDEN;
70 WS_XML_UTF8_TEXT *alloc_utf8_text( const BYTE *, ULONG ) DECLSPEC_HIDDEN;
71 WS_XML_BASE64_TEXT *alloc_base64_text( const BYTE *, ULONG ) DECLSPEC_HIDDEN;
72 WS_XML_BOOL_TEXT *alloc_bool_text( BOOL ) DECLSPEC_HIDDEN;
73 WS_XML_INT32_TEXT *alloc_int32_text( INT32 ) DECLSPEC_HIDDEN;
74 WS_XML_INT64_TEXT *alloc_int64_text( INT64 ) DECLSPEC_HIDDEN;
75 WS_XML_UINT64_TEXT *alloc_uint64_text( UINT64 ) DECLSPEC_HIDDEN;
76 WS_XML_FLOAT_TEXT *alloc_float_text( float ) DECLSPEC_HIDDEN;
77 WS_XML_DOUBLE_TEXT *alloc_double_text( double ) DECLSPEC_HIDDEN;
78 WS_XML_GUID_TEXT *alloc_guid_text( const GUID * ) DECLSPEC_HIDDEN;
79 WS_XML_UNIQUE_ID_TEXT *alloc_unique_id_text( const GUID * ) DECLSPEC_HIDDEN;
80 WS_XML_DATETIME_TEXT *alloc_datetime_text( const WS_DATETIME * ) DECLSPEC_HIDDEN;
82 #define INVALID_PARAMETER_INDEX 0xffff
83 HRESULT get_param_desc( const WS_STRUCT_DESCRIPTION *, USHORT, const WS_FIELD_DESCRIPTION ** ) DECLSPEC_HIDDEN;
84 HRESULT write_input_params( WS_XML_WRITER *, const WS_ELEMENT_DESCRIPTION *,
85 const WS_PARAMETER_DESCRIPTION *, ULONG, const void ** ) DECLSPEC_HIDDEN;
86 HRESULT read_output_params( WS_XML_READER *, WS_HEAP *, const WS_ELEMENT_DESCRIPTION *,
87 const WS_PARAMETER_DESCRIPTION *, ULONG, const void ** ) DECLSPEC_HIDDEN;
89 enum node_flag
91 NODE_FLAG_IGNORE_TRAILING_ELEMENT_CONTENT = 0x1,
92 NODE_FLAG_TEXT_WITH_IMPLICIT_END_ELEMENT = 0x2,
95 struct node
97 WS_XML_ELEMENT_NODE hdr;
98 struct list entry;
99 struct node *parent;
100 struct list children;
101 ULONG flags;
104 struct node *alloc_node( WS_XML_NODE_TYPE ) DECLSPEC_HIDDEN;
105 void free_node( struct node * ) DECLSPEC_HIDDEN;
106 void destroy_nodes( struct node * ) DECLSPEC_HIDDEN;
107 HRESULT copy_node( WS_XML_READER *, struct node ** ) DECLSPEC_HIDDEN;
109 static inline WS_XML_NODE_TYPE node_type( const struct node *node )
111 return node->hdr.node.nodeType;
114 BOOL move_to_root_element( struct node *, struct node ** ) DECLSPEC_HIDDEN;
115 BOOL move_to_next_element( struct node ** ) DECLSPEC_HIDDEN;
116 BOOL move_to_prev_element( struct node ** ) DECLSPEC_HIDDEN;
117 BOOL move_to_child_element( struct node ** ) DECLSPEC_HIDDEN;
118 BOOL move_to_end_element( struct node ** ) DECLSPEC_HIDDEN;
119 BOOL move_to_parent_element( struct node ** ) DECLSPEC_HIDDEN;
120 BOOL move_to_first_node( struct node ** ) DECLSPEC_HIDDEN;
121 BOOL move_to_next_node( struct node ** ) DECLSPEC_HIDDEN;
122 BOOL move_to_prev_node( struct node ** ) DECLSPEC_HIDDEN;
123 BOOL move_to_bof( struct node *, struct node ** ) DECLSPEC_HIDDEN;
124 BOOL move_to_eof( struct node *, struct node ** ) DECLSPEC_HIDDEN;
125 BOOL move_to_child_node( struct node ** ) DECLSPEC_HIDDEN;
126 BOOL move_to_parent_node( struct node ** ) DECLSPEC_HIDDEN;
128 struct prop_desc
130 ULONG size;
131 BOOL readonly;
132 BOOL writeonly;
135 struct prop
137 void *value;
138 ULONG size;
139 BOOL readonly;
140 BOOL writeonly;
143 ULONG prop_size( const struct prop_desc *, ULONG ) DECLSPEC_HIDDEN;
144 void prop_init( const struct prop_desc *, ULONG, struct prop *, void * ) DECLSPEC_HIDDEN;
145 HRESULT prop_set( const struct prop *, ULONG, ULONG, const void *, ULONG ) DECLSPEC_HIDDEN;
146 HRESULT prop_get( const struct prop *, ULONG, ULONG, void *, ULONG ) DECLSPEC_HIDDEN;
148 HRESULT message_set_action( WS_MESSAGE *, const WS_XML_STRING * ) DECLSPEC_HIDDEN;
149 HRESULT message_get_id( WS_MESSAGE *, GUID * ) DECLSPEC_HIDDEN;
150 HRESULT message_set_request_id( WS_MESSAGE *, const GUID * ) DECLSPEC_HIDDEN;
151 void message_set_send_context( WS_MESSAGE *, const WS_PROXY_MESSAGE_CALLBACK_CONTEXT * ) DECLSPEC_HIDDEN;
152 void message_set_receive_context( WS_MESSAGE *, const WS_PROXY_MESSAGE_CALLBACK_CONTEXT * ) DECLSPEC_HIDDEN;
153 void message_do_send_callback( WS_MESSAGE * ) DECLSPEC_HIDDEN;
154 void message_do_receive_callback( WS_MESSAGE * ) DECLSPEC_HIDDEN;
155 HRESULT message_insert_http_headers( WS_MESSAGE *, HINTERNET ) DECLSPEC_HIDDEN;
157 HRESULT channel_send_message( WS_CHANNEL *, WS_MESSAGE * ) DECLSPEC_HIDDEN;
158 HRESULT channel_receive_message( WS_CHANNEL * ) DECLSPEC_HIDDEN;
159 HRESULT channel_get_reader( WS_CHANNEL *, WS_XML_READER ** ) DECLSPEC_HIDDEN;
161 HRESULT parse_url( const WS_STRING *, WS_URL_SCHEME_TYPE *, WCHAR **, USHORT * ) DECLSPEC_HIDDEN;
163 enum record_type
165 /* 0x00 reserved */
166 RECORD_ENDELEMENT = 0x01,
167 RECORD_COMMENT = 0x02,
168 RECORD_ARRAY = 0x03,
169 RECORD_SHORT_ATTRIBUTE = 0x04,
170 RECORD_ATTRIBUTE = 0x05,
171 RECORD_SHORT_DICTIONARY_ATTRIBUTE = 0x06,
172 RECORD_DICTIONARY_ATTRIBUTE = 0x07,
173 RECORD_SHORT_XMLNS_ATTRIBUTE = 0x08,
174 RECORD_XMLNS_ATTRIBUTE = 0x09,
175 RECORD_SHORT_DICTIONARY_XMLNS_ATTRIBUTE = 0x0a,
176 RECORD_DICTIONARY_XMLNS_ATTRIBUTE = 0x0b,
177 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_A = 0x0c,
178 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_B = 0x0d,
179 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_C = 0x0e,
180 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_D = 0x0f,
181 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_E = 0x10,
182 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_F = 0x11,
183 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_G = 0x12,
184 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_H = 0x13,
185 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_I = 0x14,
186 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_J = 0x15,
187 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_K = 0x16,
188 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_L = 0x17,
189 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_M = 0x18,
190 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_N = 0x19,
191 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_O = 0x1a,
192 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_P = 0x1b,
193 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Q = 0x1c,
194 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_R = 0x1d,
195 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_S = 0x1e,
196 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_T = 0x1f,
197 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_U = 0x20,
198 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_V = 0x21,
199 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_W = 0x22,
200 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_X = 0x23,
201 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Y = 0x24,
202 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Z = 0x25,
203 RECORD_PREFIX_ATTRIBUTE_A = 0x26,
204 RECORD_PREFIX_ATTRIBUTE_B = 0x27,
205 RECORD_PREFIX_ATTRIBUTE_C = 0x28,
206 RECORD_PREFIX_ATTRIBUTE_D = 0x29,
207 RECORD_PREFIX_ATTRIBUTE_E = 0x2a,
208 RECORD_PREFIX_ATTRIBUTE_F = 0x2b,
209 RECORD_PREFIX_ATTRIBUTE_G = 0x2c,
210 RECORD_PREFIX_ATTRIBUTE_H = 0x2d,
211 RECORD_PREFIX_ATTRIBUTE_I = 0x2e,
212 RECORD_PREFIX_ATTRIBUTE_J = 0x2f,
213 RECORD_PREFIX_ATTRIBUTE_K = 0x30,
214 RECORD_PREFIX_ATTRIBUTE_L = 0x31,
215 RECORD_PREFIX_ATTRIBUTE_M = 0x32,
216 RECORD_PREFIX_ATTRIBUTE_N = 0x33,
217 RECORD_PREFIX_ATTRIBUTE_O = 0x34,
218 RECORD_PREFIX_ATTRIBUTE_P = 0x35,
219 RECORD_PREFIX_ATTRIBUTE_Q = 0x36,
220 RECORD_PREFIX_ATTRIBUTE_R = 0x37,
221 RECORD_PREFIX_ATTRIBUTE_S = 0x38,
222 RECORD_PREFIX_ATTRIBUTE_T = 0x39,
223 RECORD_PREFIX_ATTRIBUTE_U = 0x3a,
224 RECORD_PREFIX_ATTRIBUTE_V = 0x3b,
225 RECORD_PREFIX_ATTRIBUTE_W = 0x3c,
226 RECORD_PREFIX_ATTRIBUTE_X = 0x3d,
227 RECORD_PREFIX_ATTRIBUTE_Y = 0x3e,
228 RECORD_PREFIX_ATTRIBUTE_Z = 0x3f,
229 RECORD_SHORT_ELEMENT = 0x40,
230 RECORD_ELEMENT = 0x41,
231 RECORD_SHORT_DICTIONARY_ELEMENT = 0x42,
232 RECORD_DICTIONARY_ELEMENT = 0x43,
233 RECORD_PREFIX_DICTIONARY_ELEMENT_A = 0x44,
234 RECORD_PREFIX_DICTIONARY_ELEMENT_B = 0x45,
235 RECORD_PREFIX_DICTIONARY_ELEMENT_C = 0x46,
236 RECORD_PREFIX_DICTIONARY_ELEMENT_D = 0x47,
237 RECORD_PREFIX_DICTIONARY_ELEMENT_E = 0x48,
238 RECORD_PREFIX_DICTIONARY_ELEMENT_F = 0x49,
239 RECORD_PREFIX_DICTIONARY_ELEMENT_G = 0x4a,
240 RECORD_PREFIX_DICTIONARY_ELEMENT_H = 0x4b,
241 RECORD_PREFIX_DICTIONARY_ELEMENT_I = 0x4c,
242 RECORD_PREFIX_DICTIONARY_ELEMENT_J = 0x4d,
243 RECORD_PREFIX_DICTIONARY_ELEMENT_K = 0x4e,
244 RECORD_PREFIX_DICTIONARY_ELEMENT_L = 0x4f,
245 RECORD_PREFIX_DICTIONARY_ELEMENT_M = 0x50,
246 RECORD_PREFIX_DICTIONARY_ELEMENT_N = 0x51,
247 RECORD_PREFIX_DICTIONARY_ELEMENT_O = 0x52,
248 RECORD_PREFIX_DICTIONARY_ELEMENT_P = 0x53,
249 RECORD_PREFIX_DICTIONARY_ELEMENT_Q = 0x54,
250 RECORD_PREFIX_DICTIONARY_ELEMENT_R = 0x55,
251 RECORD_PREFIX_DICTIONARY_ELEMENT_S = 0x56,
252 RECORD_PREFIX_DICTIONARY_ELEMENT_T = 0x57,
253 RECORD_PREFIX_DICTIONARY_ELEMENT_U = 0x58,
254 RECORD_PREFIX_DICTIONARY_ELEMENT_V = 0x59,
255 RECORD_PREFIX_DICTIONARY_ELEMENT_W = 0x5a,
256 RECORD_PREFIX_DICTIONARY_ELEMENT_X = 0x5b,
257 RECORD_PREFIX_DICTIONARY_ELEMENT_Y = 0x5c,
258 RECORD_PREFIX_DICTIONARY_ELEMENT_Z = 0x5d,
259 RECORD_PREFIX_ELEMENT_A = 0x5e,
260 RECORD_PREFIX_ELEMENT_B = 0x5f,
261 RECORD_PREFIX_ELEMENT_C = 0x60,
262 RECORD_PREFIX_ELEMENT_D = 0x61,
263 RECORD_PREFIX_ELEMENT_E = 0x62,
264 RECORD_PREFIX_ELEMENT_F = 0x63,
265 RECORD_PREFIX_ELEMENT_G = 0x64,
266 RECORD_PREFIX_ELEMENT_H = 0x65,
267 RECORD_PREFIX_ELEMENT_I = 0x66,
268 RECORD_PREFIX_ELEMENT_J = 0x67,
269 RECORD_PREFIX_ELEMENT_K = 0x68,
270 RECORD_PREFIX_ELEMENT_L = 0x69,
271 RECORD_PREFIX_ELEMENT_M = 0x6a,
272 RECORD_PREFIX_ELEMENT_N = 0x6b,
273 RECORD_PREFIX_ELEMENT_O = 0x6c,
274 RECORD_PREFIX_ELEMENT_P = 0x6d,
275 RECORD_PREFIX_ELEMENT_Q = 0x6e,
276 RECORD_PREFIX_ELEMENT_R = 0x6f,
277 RECORD_PREFIX_ELEMENT_S = 0x70,
278 RECORD_PREFIX_ELEMENT_T = 0x71,
279 RECORD_PREFIX_ELEMENT_U = 0x72,
280 RECORD_PREFIX_ELEMENT_V = 0x73,
281 RECORD_PREFIX_ELEMENT_W = 0x74,
282 RECORD_PREFIX_ELEMENT_X = 0x75,
283 RECORD_PREFIX_ELEMENT_Y = 0x76,
284 RECORD_PREFIX_ELEMENT_Z = 0x77,
285 /* 0x78 ... 0x7f reserved */
286 RECORD_ZERO_TEXT = 0x80,
287 RECORD_ZERO_TEXT_WITH_ENDELEMENT = 0x81,
288 RECORD_ONE_TEXT = 0x82,
289 RECORD_ONE_TEXT_WITH_ENDELEMENT = 0x83,
290 RECORD_FALSE_TEXT = 0x84,
291 RECORD_FALSE_TEXT_WITH_ENDELEMENT = 0x85,
292 RECORD_TRUE_TEXT = 0x86,
293 RECORD_TRUE_TEXT_WITH_ENDELEMENT = 0x87,
294 RECORD_INT8_TEXT = 0x88,
295 RECORD_INT8_TEXT_WITH_ENDELEMENT = 0x89,
296 RECORD_INT16_TEXT = 0x8a,
297 RECORD_INT16_TEXT_WITH_ENDELEMENT = 0x8b,
298 RECORD_INT32_TEXT = 0x8c,
299 RECORD_INT32_TEXT_WITH_ENDELEMENT = 0x8d,
300 RECORD_INT64_TEXT = 0x8e,
301 RECORD_INT64_TEXT_WITH_ENDELEMENT = 0x8f,
302 RECORD_FLOAT_TEXT = 0x90,
303 RECORD_FLOAT_TEXT_WITH_ENDELEMENT = 0x91,
304 RECORD_DOUBLE_TEXT = 0x92,
305 RECORD_DOUBLE_TEXT_WITH_ENDELEMENT = 0x93,
306 RECORD_DECIMAL_TEXT = 0x94,
307 RECORD_DECIMAL_TEXT_WITH_ENDELEMENT = 0x95,
308 RECORD_DATETIME_TEXT = 0x96,
309 RECORD_DATETIME_TEXT_WITH_ENDELEMENT = 0x97,
310 RECORD_CHARS8_TEXT = 0x98,
311 RECORD_CHARS8_TEXT_WITH_ENDELEMENT = 0x99,
312 RECORD_CHARS16_TEXT = 0x9a,
313 RECORD_CHARS16_TEXT_WITH_ENDELEMENT = 0x9b,
314 RECORD_CHARS32_TEXT = 0x9c,
315 RECORD_CHARS32_TEXT_WITH_ENDELEMENT = 0x9d,
316 RECORD_BYTES8_TEXT = 0x9e,
317 RECORD_BYTES8_TEXT_WITH_ENDELEMENT = 0x9f,
318 RECORD_BYTES16_TEXT = 0xa0,
319 RECORD_BYTES16_TEXT_WITH_ENDELEMENT = 0xa1,
320 RECORD_BYTES32_TEXT = 0xa2,
321 RECORD_BYTES32_TEXT_WITH_ENDELEMENT = 0xa3,
322 RECORD_STARTLIST_TEXT = 0xa4,
323 /* 0xa5 reserved */
324 RECORD_ENDLIST_TEXT = 0xa6,
325 /* 0xa7 reserved */
326 RECORD_EMPTY_TEXT = 0xa8,
327 RECORD_EMPTY_TEXT_WITH_ENDELEMENT = 0xa9,
328 RECORD_DICTIONARY_TEXT = 0xaa,
329 RECORD_DICTIONARY_TEXT_WITH_ENDELEMENT = 0xab,
330 RECORD_UNIQUE_ID_TEXT = 0xac,
331 RECORD_UNIQUE_ID_TEXT_WITH_ENDELEMENT = 0xad,
332 RECORD_TIMESPAN_TEXT = 0xae,
333 RECORD_TIMESPAN_TEXT_WITH_ENDELEMENT = 0xaf,
334 RECORD_GUID_TEXT = 0xb0,
335 RECORD_GUID_TEXT_WITH_ENDELEMENT = 0xb1,
336 RECORD_UINT64_TEXT = 0xb2,
337 RECORD_UINT64_TEXT_WITH_ENDELEMENT = 0xb3,
338 RECORD_BOOL_TEXT = 0xb4,
339 RECORD_BOOL_TEXT_WITH_ENDELEMENT = 0xb5,
340 RECORD_UNICODE_CHARS8_TEXT = 0xb6,
341 RECORD_UNICODE_CHARS8_TEXT_WITH_ENDELEMENT = 0xb7,
342 RECORD_UNICODE_CHARS16_TEXT = 0xb8,
343 RECORD_UNICODE_CHARS16_TEXT_WITH_ENDELEMENT = 0xb9,
344 RECORD_UNICODE_CHARS32_TEXT = 0xba,
345 RECORD_UNICODE_CHARS32_TEXT_WITH_ENDELEMENT = 0xbb,
346 RECORD_QNAME_DICTIONARY_TEXT = 0xbc,
347 RECORD_QNAME_DICTIONARY_TEXT_WITH_ENDELEMENT = 0xbd,
348 /* 0xbe ... 0xff reserved */
351 #define MAX_INT8 0x7f
352 #define MIN_INT8 (-MAX_INT8 - 1)
353 #define MAX_INT16 0x7fff
354 #define MIN_INT16 (-MAX_INT16 - 1)
355 #define MAX_INT32 0x7fffffff
356 #define MIN_INT32 (-MAX_INT32 - 1)
357 #define MAX_INT64 (((INT64)0x7fffffff << 32) | 0xffffffff)
358 #define MIN_INT64 (-MAX_INT64 - 1)
359 #define MAX_UINT8 0xff
360 #define MAX_UINT16 0xffff
361 #define MAX_UINT32 0xffffffff
362 #define MAX_UINT64 (((UINT64)0xffffffff << 32) | 0xffffffff)
364 #define TICKS_PER_SEC 10000000
365 #define TICKS_PER_MIN (60 * (ULONGLONG)TICKS_PER_SEC)
366 #define TICKS_PER_HOUR (3600 * (ULONGLONG)TICKS_PER_SEC)
367 #define TICKS_PER_DAY (86400 * (ULONGLONG)TICKS_PER_SEC)
368 #define TICKS_MAX 3155378975999999999
369 #define TICKS_1601_01_01 504911232000000000
371 static const int month_days[2][12] =
373 {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
374 {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
377 static inline int leap_year( int year )
379 return !(year % 4) && (year % 100 || !(year % 400));
382 static inline BOOL is_nil_value( const char *value, ULONG size )
384 ULONG i;
385 for (i = 0; i < size; i++) if (value[i]) return FALSE;
386 return TRUE;
389 static inline BOOL is_valid_parent( const struct node *node )
391 if (!node) return FALSE;
392 return (node_type( node ) == WS_XML_NODE_TYPE_ELEMENT || node_type( node ) == WS_XML_NODE_TYPE_BOF);
395 static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
397 return HeapAlloc(GetProcessHeap(), 0, size);
400 static inline void* __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t size)
402 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
405 static inline void* __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t size)
407 return HeapReAlloc(GetProcessHeap(), 0, mem, size);
410 static inline void* __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t size)
412 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
415 static inline BOOL heap_free(void *mem)
417 return HeapFree(GetProcessHeap(), 0, mem);