ddraw/tests: Rewrite LimitTest().
[wine.git] / dlls / webservices / webservices_private.h
blobe477e0fc3f6800bb0e90560bceaf3a2aaec08bbe
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_UTF16_TEXT *alloc_utf16_text( const BYTE *, ULONG ) DECLSPEC_HIDDEN;
72 WS_XML_BASE64_TEXT *alloc_base64_text( const BYTE *, ULONG ) DECLSPEC_HIDDEN;
73 WS_XML_BOOL_TEXT *alloc_bool_text( BOOL ) DECLSPEC_HIDDEN;
74 WS_XML_INT32_TEXT *alloc_int32_text( INT32 ) DECLSPEC_HIDDEN;
75 WS_XML_INT64_TEXT *alloc_int64_text( INT64 ) DECLSPEC_HIDDEN;
76 WS_XML_UINT64_TEXT *alloc_uint64_text( UINT64 ) DECLSPEC_HIDDEN;
77 WS_XML_FLOAT_TEXT *alloc_float_text( float ) DECLSPEC_HIDDEN;
78 WS_XML_DOUBLE_TEXT *alloc_double_text( double ) DECLSPEC_HIDDEN;
79 WS_XML_GUID_TEXT *alloc_guid_text( const GUID * ) DECLSPEC_HIDDEN;
80 WS_XML_UNIQUE_ID_TEXT *alloc_unique_id_text( const GUID * ) DECLSPEC_HIDDEN;
81 WS_XML_DATETIME_TEXT *alloc_datetime_text( const WS_DATETIME * ) DECLSPEC_HIDDEN;
83 #define INVALID_PARAMETER_INDEX 0xffff
84 HRESULT get_param_desc( const WS_STRUCT_DESCRIPTION *, USHORT, const WS_FIELD_DESCRIPTION ** ) DECLSPEC_HIDDEN;
85 HRESULT write_input_params( WS_XML_WRITER *, const WS_ELEMENT_DESCRIPTION *,
86 const WS_PARAMETER_DESCRIPTION *, ULONG, const void ** ) DECLSPEC_HIDDEN;
87 HRESULT read_output_params( WS_XML_READER *, WS_HEAP *, const WS_ELEMENT_DESCRIPTION *,
88 const WS_PARAMETER_DESCRIPTION *, ULONG, const void ** ) DECLSPEC_HIDDEN;
90 enum node_flag
92 NODE_FLAG_IGNORE_TRAILING_ELEMENT_CONTENT = 0x1,
93 NODE_FLAG_TEXT_WITH_IMPLICIT_END_ELEMENT = 0x2,
96 struct node
98 WS_XML_ELEMENT_NODE hdr;
99 struct list entry;
100 struct node *parent;
101 struct list children;
102 ULONG flags;
105 struct node *alloc_node( WS_XML_NODE_TYPE ) DECLSPEC_HIDDEN;
106 void free_node( struct node * ) DECLSPEC_HIDDEN;
107 void destroy_nodes( struct node * ) DECLSPEC_HIDDEN;
108 HRESULT copy_node( WS_XML_READER *, struct node ** ) DECLSPEC_HIDDEN;
110 static inline WS_XML_NODE_TYPE node_type( const struct node *node )
112 return node->hdr.node.nodeType;
115 BOOL move_to_root_element( struct node *, struct node ** ) DECLSPEC_HIDDEN;
116 BOOL move_to_next_element( struct node ** ) DECLSPEC_HIDDEN;
117 BOOL move_to_prev_element( struct node ** ) DECLSPEC_HIDDEN;
118 BOOL move_to_child_element( struct node ** ) DECLSPEC_HIDDEN;
119 BOOL move_to_end_element( struct node ** ) DECLSPEC_HIDDEN;
120 BOOL move_to_parent_element( struct node ** ) DECLSPEC_HIDDEN;
121 BOOL move_to_first_node( struct node ** ) DECLSPEC_HIDDEN;
122 BOOL move_to_next_node( struct node ** ) DECLSPEC_HIDDEN;
123 BOOL move_to_prev_node( struct node ** ) DECLSPEC_HIDDEN;
124 BOOL move_to_bof( struct node *, struct node ** ) DECLSPEC_HIDDEN;
125 BOOL move_to_eof( struct node *, struct node ** ) DECLSPEC_HIDDEN;
126 BOOL move_to_child_node( struct node ** ) DECLSPEC_HIDDEN;
127 BOOL move_to_parent_node( struct node ** ) DECLSPEC_HIDDEN;
129 struct prop_desc
131 ULONG size;
132 BOOL readonly;
133 BOOL writeonly;
136 struct prop
138 void *value;
139 ULONG size;
140 BOOL readonly;
141 BOOL writeonly;
144 ULONG prop_size( const struct prop_desc *, ULONG ) DECLSPEC_HIDDEN;
145 void prop_init( const struct prop_desc *, ULONG, struct prop *, void * ) DECLSPEC_HIDDEN;
146 HRESULT prop_set( const struct prop *, ULONG, ULONG, const void *, ULONG ) DECLSPEC_HIDDEN;
147 HRESULT prop_get( const struct prop *, ULONG, ULONG, void *, ULONG ) DECLSPEC_HIDDEN;
149 HRESULT message_set_action( WS_MESSAGE *, const WS_XML_STRING * ) DECLSPEC_HIDDEN;
150 HRESULT message_get_id( WS_MESSAGE *, GUID * ) DECLSPEC_HIDDEN;
151 HRESULT message_set_request_id( WS_MESSAGE *, const GUID * ) DECLSPEC_HIDDEN;
152 void message_set_send_context( WS_MESSAGE *, const WS_PROXY_MESSAGE_CALLBACK_CONTEXT * ) DECLSPEC_HIDDEN;
153 void message_set_receive_context( WS_MESSAGE *, const WS_PROXY_MESSAGE_CALLBACK_CONTEXT * ) DECLSPEC_HIDDEN;
154 void message_do_send_callback( WS_MESSAGE * ) DECLSPEC_HIDDEN;
155 void message_do_receive_callback( WS_MESSAGE * ) DECLSPEC_HIDDEN;
156 HRESULT message_insert_http_headers( WS_MESSAGE *, HINTERNET ) DECLSPEC_HIDDEN;
158 HRESULT channel_send_message( WS_CHANNEL *, WS_MESSAGE * ) DECLSPEC_HIDDEN;
159 HRESULT channel_receive_message( WS_CHANNEL * ) DECLSPEC_HIDDEN;
160 HRESULT channel_get_reader( WS_CHANNEL *, WS_XML_READER ** ) DECLSPEC_HIDDEN;
162 HRESULT parse_url( const WS_STRING *, WS_URL_SCHEME_TYPE *, WCHAR **, USHORT * ) DECLSPEC_HIDDEN;
164 enum record_type
166 /* 0x00 reserved */
167 RECORD_ENDELEMENT = 0x01,
168 RECORD_COMMENT = 0x02,
169 RECORD_ARRAY = 0x03,
170 RECORD_SHORT_ATTRIBUTE = 0x04,
171 RECORD_ATTRIBUTE = 0x05,
172 RECORD_SHORT_DICTIONARY_ATTRIBUTE = 0x06,
173 RECORD_DICTIONARY_ATTRIBUTE = 0x07,
174 RECORD_SHORT_XMLNS_ATTRIBUTE = 0x08,
175 RECORD_XMLNS_ATTRIBUTE = 0x09,
176 RECORD_SHORT_DICTIONARY_XMLNS_ATTRIBUTE = 0x0a,
177 RECORD_DICTIONARY_XMLNS_ATTRIBUTE = 0x0b,
178 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_A = 0x0c,
179 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_B = 0x0d,
180 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_C = 0x0e,
181 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_D = 0x0f,
182 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_E = 0x10,
183 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_F = 0x11,
184 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_G = 0x12,
185 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_H = 0x13,
186 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_I = 0x14,
187 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_J = 0x15,
188 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_K = 0x16,
189 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_L = 0x17,
190 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_M = 0x18,
191 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_N = 0x19,
192 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_O = 0x1a,
193 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_P = 0x1b,
194 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Q = 0x1c,
195 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_R = 0x1d,
196 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_S = 0x1e,
197 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_T = 0x1f,
198 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_U = 0x20,
199 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_V = 0x21,
200 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_W = 0x22,
201 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_X = 0x23,
202 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Y = 0x24,
203 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Z = 0x25,
204 RECORD_PREFIX_ATTRIBUTE_A = 0x26,
205 RECORD_PREFIX_ATTRIBUTE_B = 0x27,
206 RECORD_PREFIX_ATTRIBUTE_C = 0x28,
207 RECORD_PREFIX_ATTRIBUTE_D = 0x29,
208 RECORD_PREFIX_ATTRIBUTE_E = 0x2a,
209 RECORD_PREFIX_ATTRIBUTE_F = 0x2b,
210 RECORD_PREFIX_ATTRIBUTE_G = 0x2c,
211 RECORD_PREFIX_ATTRIBUTE_H = 0x2d,
212 RECORD_PREFIX_ATTRIBUTE_I = 0x2e,
213 RECORD_PREFIX_ATTRIBUTE_J = 0x2f,
214 RECORD_PREFIX_ATTRIBUTE_K = 0x30,
215 RECORD_PREFIX_ATTRIBUTE_L = 0x31,
216 RECORD_PREFIX_ATTRIBUTE_M = 0x32,
217 RECORD_PREFIX_ATTRIBUTE_N = 0x33,
218 RECORD_PREFIX_ATTRIBUTE_O = 0x34,
219 RECORD_PREFIX_ATTRIBUTE_P = 0x35,
220 RECORD_PREFIX_ATTRIBUTE_Q = 0x36,
221 RECORD_PREFIX_ATTRIBUTE_R = 0x37,
222 RECORD_PREFIX_ATTRIBUTE_S = 0x38,
223 RECORD_PREFIX_ATTRIBUTE_T = 0x39,
224 RECORD_PREFIX_ATTRIBUTE_U = 0x3a,
225 RECORD_PREFIX_ATTRIBUTE_V = 0x3b,
226 RECORD_PREFIX_ATTRIBUTE_W = 0x3c,
227 RECORD_PREFIX_ATTRIBUTE_X = 0x3d,
228 RECORD_PREFIX_ATTRIBUTE_Y = 0x3e,
229 RECORD_PREFIX_ATTRIBUTE_Z = 0x3f,
230 RECORD_SHORT_ELEMENT = 0x40,
231 RECORD_ELEMENT = 0x41,
232 RECORD_SHORT_DICTIONARY_ELEMENT = 0x42,
233 RECORD_DICTIONARY_ELEMENT = 0x43,
234 RECORD_PREFIX_DICTIONARY_ELEMENT_A = 0x44,
235 RECORD_PREFIX_DICTIONARY_ELEMENT_B = 0x45,
236 RECORD_PREFIX_DICTIONARY_ELEMENT_C = 0x46,
237 RECORD_PREFIX_DICTIONARY_ELEMENT_D = 0x47,
238 RECORD_PREFIX_DICTIONARY_ELEMENT_E = 0x48,
239 RECORD_PREFIX_DICTIONARY_ELEMENT_F = 0x49,
240 RECORD_PREFIX_DICTIONARY_ELEMENT_G = 0x4a,
241 RECORD_PREFIX_DICTIONARY_ELEMENT_H = 0x4b,
242 RECORD_PREFIX_DICTIONARY_ELEMENT_I = 0x4c,
243 RECORD_PREFIX_DICTIONARY_ELEMENT_J = 0x4d,
244 RECORD_PREFIX_DICTIONARY_ELEMENT_K = 0x4e,
245 RECORD_PREFIX_DICTIONARY_ELEMENT_L = 0x4f,
246 RECORD_PREFIX_DICTIONARY_ELEMENT_M = 0x50,
247 RECORD_PREFIX_DICTIONARY_ELEMENT_N = 0x51,
248 RECORD_PREFIX_DICTIONARY_ELEMENT_O = 0x52,
249 RECORD_PREFIX_DICTIONARY_ELEMENT_P = 0x53,
250 RECORD_PREFIX_DICTIONARY_ELEMENT_Q = 0x54,
251 RECORD_PREFIX_DICTIONARY_ELEMENT_R = 0x55,
252 RECORD_PREFIX_DICTIONARY_ELEMENT_S = 0x56,
253 RECORD_PREFIX_DICTIONARY_ELEMENT_T = 0x57,
254 RECORD_PREFIX_DICTIONARY_ELEMENT_U = 0x58,
255 RECORD_PREFIX_DICTIONARY_ELEMENT_V = 0x59,
256 RECORD_PREFIX_DICTIONARY_ELEMENT_W = 0x5a,
257 RECORD_PREFIX_DICTIONARY_ELEMENT_X = 0x5b,
258 RECORD_PREFIX_DICTIONARY_ELEMENT_Y = 0x5c,
259 RECORD_PREFIX_DICTIONARY_ELEMENT_Z = 0x5d,
260 RECORD_PREFIX_ELEMENT_A = 0x5e,
261 RECORD_PREFIX_ELEMENT_B = 0x5f,
262 RECORD_PREFIX_ELEMENT_C = 0x60,
263 RECORD_PREFIX_ELEMENT_D = 0x61,
264 RECORD_PREFIX_ELEMENT_E = 0x62,
265 RECORD_PREFIX_ELEMENT_F = 0x63,
266 RECORD_PREFIX_ELEMENT_G = 0x64,
267 RECORD_PREFIX_ELEMENT_H = 0x65,
268 RECORD_PREFIX_ELEMENT_I = 0x66,
269 RECORD_PREFIX_ELEMENT_J = 0x67,
270 RECORD_PREFIX_ELEMENT_K = 0x68,
271 RECORD_PREFIX_ELEMENT_L = 0x69,
272 RECORD_PREFIX_ELEMENT_M = 0x6a,
273 RECORD_PREFIX_ELEMENT_N = 0x6b,
274 RECORD_PREFIX_ELEMENT_O = 0x6c,
275 RECORD_PREFIX_ELEMENT_P = 0x6d,
276 RECORD_PREFIX_ELEMENT_Q = 0x6e,
277 RECORD_PREFIX_ELEMENT_R = 0x6f,
278 RECORD_PREFIX_ELEMENT_S = 0x70,
279 RECORD_PREFIX_ELEMENT_T = 0x71,
280 RECORD_PREFIX_ELEMENT_U = 0x72,
281 RECORD_PREFIX_ELEMENT_V = 0x73,
282 RECORD_PREFIX_ELEMENT_W = 0x74,
283 RECORD_PREFIX_ELEMENT_X = 0x75,
284 RECORD_PREFIX_ELEMENT_Y = 0x76,
285 RECORD_PREFIX_ELEMENT_Z = 0x77,
286 /* 0x78 ... 0x7f reserved */
287 RECORD_ZERO_TEXT = 0x80,
288 RECORD_ZERO_TEXT_WITH_ENDELEMENT = 0x81,
289 RECORD_ONE_TEXT = 0x82,
290 RECORD_ONE_TEXT_WITH_ENDELEMENT = 0x83,
291 RECORD_FALSE_TEXT = 0x84,
292 RECORD_FALSE_TEXT_WITH_ENDELEMENT = 0x85,
293 RECORD_TRUE_TEXT = 0x86,
294 RECORD_TRUE_TEXT_WITH_ENDELEMENT = 0x87,
295 RECORD_INT8_TEXT = 0x88,
296 RECORD_INT8_TEXT_WITH_ENDELEMENT = 0x89,
297 RECORD_INT16_TEXT = 0x8a,
298 RECORD_INT16_TEXT_WITH_ENDELEMENT = 0x8b,
299 RECORD_INT32_TEXT = 0x8c,
300 RECORD_INT32_TEXT_WITH_ENDELEMENT = 0x8d,
301 RECORD_INT64_TEXT = 0x8e,
302 RECORD_INT64_TEXT_WITH_ENDELEMENT = 0x8f,
303 RECORD_FLOAT_TEXT = 0x90,
304 RECORD_FLOAT_TEXT_WITH_ENDELEMENT = 0x91,
305 RECORD_DOUBLE_TEXT = 0x92,
306 RECORD_DOUBLE_TEXT_WITH_ENDELEMENT = 0x93,
307 RECORD_DECIMAL_TEXT = 0x94,
308 RECORD_DECIMAL_TEXT_WITH_ENDELEMENT = 0x95,
309 RECORD_DATETIME_TEXT = 0x96,
310 RECORD_DATETIME_TEXT_WITH_ENDELEMENT = 0x97,
311 RECORD_CHARS8_TEXT = 0x98,
312 RECORD_CHARS8_TEXT_WITH_ENDELEMENT = 0x99,
313 RECORD_CHARS16_TEXT = 0x9a,
314 RECORD_CHARS16_TEXT_WITH_ENDELEMENT = 0x9b,
315 RECORD_CHARS32_TEXT = 0x9c,
316 RECORD_CHARS32_TEXT_WITH_ENDELEMENT = 0x9d,
317 RECORD_BYTES8_TEXT = 0x9e,
318 RECORD_BYTES8_TEXT_WITH_ENDELEMENT = 0x9f,
319 RECORD_BYTES16_TEXT = 0xa0,
320 RECORD_BYTES16_TEXT_WITH_ENDELEMENT = 0xa1,
321 RECORD_BYTES32_TEXT = 0xa2,
322 RECORD_BYTES32_TEXT_WITH_ENDELEMENT = 0xa3,
323 RECORD_STARTLIST_TEXT = 0xa4,
324 /* 0xa5 reserved */
325 RECORD_ENDLIST_TEXT = 0xa6,
326 /* 0xa7 reserved */
327 RECORD_EMPTY_TEXT = 0xa8,
328 RECORD_EMPTY_TEXT_WITH_ENDELEMENT = 0xa9,
329 RECORD_DICTIONARY_TEXT = 0xaa,
330 RECORD_DICTIONARY_TEXT_WITH_ENDELEMENT = 0xab,
331 RECORD_UNIQUE_ID_TEXT = 0xac,
332 RECORD_UNIQUE_ID_TEXT_WITH_ENDELEMENT = 0xad,
333 RECORD_TIMESPAN_TEXT = 0xae,
334 RECORD_TIMESPAN_TEXT_WITH_ENDELEMENT = 0xaf,
335 RECORD_GUID_TEXT = 0xb0,
336 RECORD_GUID_TEXT_WITH_ENDELEMENT = 0xb1,
337 RECORD_UINT64_TEXT = 0xb2,
338 RECORD_UINT64_TEXT_WITH_ENDELEMENT = 0xb3,
339 RECORD_BOOL_TEXT = 0xb4,
340 RECORD_BOOL_TEXT_WITH_ENDELEMENT = 0xb5,
341 RECORD_UNICODE_CHARS8_TEXT = 0xb6,
342 RECORD_UNICODE_CHARS8_TEXT_WITH_ENDELEMENT = 0xb7,
343 RECORD_UNICODE_CHARS16_TEXT = 0xb8,
344 RECORD_UNICODE_CHARS16_TEXT_WITH_ENDELEMENT = 0xb9,
345 RECORD_UNICODE_CHARS32_TEXT = 0xba,
346 RECORD_UNICODE_CHARS32_TEXT_WITH_ENDELEMENT = 0xbb,
347 RECORD_QNAME_DICTIONARY_TEXT = 0xbc,
348 RECORD_QNAME_DICTIONARY_TEXT_WITH_ENDELEMENT = 0xbd,
349 /* 0xbe ... 0xff reserved */
352 #define MAX_INT8 0x7f
353 #define MIN_INT8 (-MAX_INT8 - 1)
354 #define MAX_INT16 0x7fff
355 #define MIN_INT16 (-MAX_INT16 - 1)
356 #define MAX_INT32 0x7fffffff
357 #define MIN_INT32 (-MAX_INT32 - 1)
358 #define MAX_INT64 (((INT64)0x7fffffff << 32) | 0xffffffff)
359 #define MIN_INT64 (-MAX_INT64 - 1)
360 #define MAX_UINT8 0xff
361 #define MAX_UINT16 0xffff
362 #define MAX_UINT32 0xffffffff
363 #define MAX_UINT64 (((UINT64)0xffffffff << 32) | 0xffffffff)
365 #define TICKS_PER_SEC 10000000
366 #define TICKS_PER_MIN (60 * (ULONGLONG)TICKS_PER_SEC)
367 #define TICKS_PER_HOUR (3600 * (ULONGLONG)TICKS_PER_SEC)
368 #define TICKS_PER_DAY (86400 * (ULONGLONG)TICKS_PER_SEC)
369 #define TICKS_MAX 3155378975999999999
370 #define TICKS_1601_01_01 504911232000000000
372 static const int month_days[2][12] =
374 {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
375 {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
378 static inline int leap_year( int year )
380 return !(year % 4) && (year % 100 || !(year % 400));
383 static inline BOOL is_nil_value( const char *value, ULONG size )
385 ULONG i;
386 for (i = 0; i < size; i++) if (value[i]) return FALSE;
387 return TRUE;
390 static inline BOOL is_valid_parent( const struct node *node )
392 if (!node) return FALSE;
393 return (node_type( node ) == WS_XML_NODE_TYPE_ELEMENT || node_type( node ) == WS_XML_NODE_TYPE_BOF);
396 static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
398 return HeapAlloc(GetProcessHeap(), 0, size);
401 static inline void* __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t size)
403 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
406 static inline void* __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t size)
408 return HeapReAlloc(GetProcessHeap(), 0, mem, size);
411 static inline void* __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t size)
413 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
416 static inline BOOL heap_free(void *mem)
418 return HeapFree(GetProcessHeap(), 0, mem);