webservices: Add support for union types in the writer.
[wine.git] / dlls / webservices / webservices_private.h
blob68837db642b1f0537180fef77c0405ef8e65a183
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;
30 void *ws_alloc( WS_HEAP *, SIZE_T ) DECLSPEC_HIDDEN;
31 void *ws_alloc_zero( WS_HEAP *, SIZE_T ) DECLSPEC_HIDDEN;
32 void *ws_realloc( WS_HEAP *, void *, SIZE_T, SIZE_T ) DECLSPEC_HIDDEN;
33 void *ws_realloc_zero( WS_HEAP *, void *, SIZE_T, SIZE_T ) DECLSPEC_HIDDEN;
34 void ws_free( WS_HEAP *, void *, SIZE_T ) DECLSPEC_HIDDEN;
35 struct xmlbuf *alloc_xmlbuf( WS_HEAP *, WS_XML_WRITER_ENCODING_TYPE, WS_CHARSET ) DECLSPEC_HIDDEN;
36 void free_xmlbuf( struct xmlbuf * ) DECLSPEC_HIDDEN;
38 struct dictionary
40 WS_XML_DICTIONARY dict;
41 ULONG *sorted;
42 ULONG size;
44 struct dictionary dict_builtin DECLSPEC_HIDDEN;
45 const struct dictionary dict_builtin_static DECLSPEC_HIDDEN;
47 ULONG format_bool( const BOOL *, unsigned char * ) DECLSPEC_HIDDEN;
48 ULONG format_int8( const INT8 *, unsigned char * ) DECLSPEC_HIDDEN;
49 ULONG format_int16( const INT16 *, unsigned char * ) DECLSPEC_HIDDEN;
50 ULONG format_int32( const INT32 *, unsigned char * ) DECLSPEC_HIDDEN;
51 ULONG format_int64( const INT64 *, unsigned char * ) DECLSPEC_HIDDEN;
52 ULONG format_uint64( const UINT64 *, unsigned char * ) DECLSPEC_HIDDEN;
53 ULONG format_double( const double *, unsigned char * ) DECLSPEC_HIDDEN;
54 ULONG format_datetime( const WS_DATETIME *, unsigned char * ) DECLSPEC_HIDDEN;
55 ULONG format_guid( const GUID *, unsigned char * ) DECLSPEC_HIDDEN;
56 ULONG format_urn( const GUID *, unsigned char * ) DECLSPEC_HIDDEN;
58 const char *debugstr_xmlstr( const WS_XML_STRING * ) DECLSPEC_HIDDEN;
59 WS_XML_STRING *alloc_xml_string( const unsigned char *, ULONG ) DECLSPEC_HIDDEN;
60 WS_XML_STRING *dup_xml_string( const WS_XML_STRING * ) DECLSPEC_HIDDEN;
61 HRESULT add_xml_string( WS_XML_STRING * ) DECLSPEC_HIDDEN;
62 void free_xml_string( WS_XML_STRING * ) DECLSPEC_HIDDEN;
63 WS_XML_UTF8_TEXT *alloc_utf8_text( const unsigned char *, ULONG ) DECLSPEC_HIDDEN;
64 HRESULT append_attribute( WS_XML_ELEMENT_NODE *, WS_XML_ATTRIBUTE * ) DECLSPEC_HIDDEN;
65 void free_attribute( WS_XML_ATTRIBUTE * ) DECLSPEC_HIDDEN;
66 WS_TYPE map_value_type( WS_VALUE_TYPE ) DECLSPEC_HIDDEN;
67 BOOL set_fpword( unsigned short, unsigned short * ) DECLSPEC_HIDDEN;
68 void restore_fpword( unsigned short ) DECLSPEC_HIDDEN;
69 HRESULT set_output( WS_XML_WRITER * ) DECLSPEC_HIDDEN;
70 ULONG get_type_size( WS_TYPE, const void * ) DECLSPEC_HIDDEN;
71 HRESULT read_header( WS_XML_READER *, const WS_XML_STRING *, const WS_XML_STRING *, WS_TYPE,
72 const void *, WS_READ_OPTION, WS_HEAP *, void *, ULONG ) DECLSPEC_HIDDEN;
74 #define INVALID_PARAMETER_INDEX 0xffff
75 HRESULT get_param_desc( const WS_STRUCT_DESCRIPTION *, USHORT, const WS_FIELD_DESCRIPTION ** ) DECLSPEC_HIDDEN;
76 HRESULT write_input_params( WS_XML_WRITER *, const WS_ELEMENT_DESCRIPTION *,
77 const WS_PARAMETER_DESCRIPTION *, ULONG, const void ** ) DECLSPEC_HIDDEN;
78 HRESULT read_output_params( WS_XML_READER *, WS_HEAP *, const WS_ELEMENT_DESCRIPTION *,
79 const WS_PARAMETER_DESCRIPTION *, ULONG, const void ** ) DECLSPEC_HIDDEN;
81 enum node_flag
83 NODE_FLAG_IGNORE_TRAILING_ELEMENT_CONTENT = 0x1,
84 NODE_FLAG_TEXT_WITH_IMPLICIT_END_ELEMENT = 0x2,
87 struct node
89 WS_XML_ELEMENT_NODE hdr;
90 struct list entry;
91 struct node *parent;
92 struct list children;
93 ULONG flags;
96 struct node *alloc_node( WS_XML_NODE_TYPE ) DECLSPEC_HIDDEN;
97 void free_node( struct node * ) DECLSPEC_HIDDEN;
98 void destroy_nodes( struct node * ) DECLSPEC_HIDDEN;
99 HRESULT copy_node( WS_XML_READER *, struct node ** ) DECLSPEC_HIDDEN;
101 static inline WS_XML_NODE_TYPE node_type( const struct node *node )
103 return node->hdr.node.nodeType;
106 BOOL move_to_root_element( struct node *, struct node ** ) DECLSPEC_HIDDEN;
107 BOOL move_to_next_element( struct node ** ) DECLSPEC_HIDDEN;
108 BOOL move_to_prev_element( struct node ** ) DECLSPEC_HIDDEN;
109 BOOL move_to_child_element( struct node ** ) DECLSPEC_HIDDEN;
110 BOOL move_to_end_element( struct node ** ) DECLSPEC_HIDDEN;
111 BOOL move_to_parent_element( struct node ** ) DECLSPEC_HIDDEN;
112 BOOL move_to_first_node( struct node ** ) DECLSPEC_HIDDEN;
113 BOOL move_to_next_node( struct node ** ) DECLSPEC_HIDDEN;
114 BOOL move_to_prev_node( struct node ** ) DECLSPEC_HIDDEN;
115 BOOL move_to_bof( struct node *, struct node ** ) DECLSPEC_HIDDEN;
116 BOOL move_to_eof( struct node *, struct node ** ) DECLSPEC_HIDDEN;
117 BOOL move_to_child_node( struct node ** ) DECLSPEC_HIDDEN;
118 BOOL move_to_parent_node( struct node ** ) DECLSPEC_HIDDEN;
120 struct prop_desc
122 ULONG size;
123 BOOL readonly;
124 BOOL writeonly;
127 struct prop
129 void *value;
130 ULONG size;
131 BOOL readonly;
132 BOOL writeonly;
135 ULONG prop_size( const struct prop_desc *, ULONG ) DECLSPEC_HIDDEN;
136 void prop_init( const struct prop_desc *, ULONG, struct prop *, void * ) DECLSPEC_HIDDEN;
137 HRESULT prop_set( const struct prop *, ULONG, ULONG, const void *, ULONG ) DECLSPEC_HIDDEN;
138 HRESULT prop_get( const struct prop *, ULONG, ULONG, void *, ULONG ) DECLSPEC_HIDDEN;
140 HRESULT message_set_action( WS_MESSAGE *, const WS_XML_STRING * ) DECLSPEC_HIDDEN;
141 void message_set_send_context( WS_MESSAGE *, const WS_PROXY_MESSAGE_CALLBACK_CONTEXT * ) DECLSPEC_HIDDEN;
142 void message_set_receive_context( WS_MESSAGE *, const WS_PROXY_MESSAGE_CALLBACK_CONTEXT * ) DECLSPEC_HIDDEN;
143 void message_do_send_callback( WS_MESSAGE * ) DECLSPEC_HIDDEN;
144 void message_do_receive_callback( WS_MESSAGE * ) DECLSPEC_HIDDEN;
145 HRESULT message_insert_http_headers( WS_MESSAGE *, HINTERNET ) DECLSPEC_HIDDEN;
147 HRESULT channel_send_message( WS_CHANNEL *, WS_MESSAGE * ) DECLSPEC_HIDDEN;
148 HRESULT channel_receive_message( WS_CHANNEL * ) DECLSPEC_HIDDEN;
149 HRESULT channel_get_reader( WS_CHANNEL *, WS_XML_READER ** ) DECLSPEC_HIDDEN;
151 HRESULT parse_url( const WS_STRING *, WS_URL_SCHEME_TYPE *, WCHAR **, USHORT * ) DECLSPEC_HIDDEN;
153 enum record_type
155 /* 0x00 reserved */
156 RECORD_ENDELEMENT = 0x01,
157 RECORD_COMMENT = 0x02,
158 RECORD_ARRAY = 0x03,
159 RECORD_SHORT_ATTRIBUTE = 0x04,
160 RECORD_ATTRIBUTE = 0x05,
161 RECORD_SHORT_DICTIONARY_ATTRIBUTE = 0x06,
162 RECORD_DICTIONARY_ATTRIBUTE = 0x07,
163 RECORD_SHORT_XMLNS_ATTRIBUTE = 0x08,
164 RECORD_XMLNS_ATTRIBUTE = 0x09,
165 RECORD_SHORT_DICTIONARY_XMLNS_ATTRIBUTE = 0x0a,
166 RECORD_DICTIONARY_XMLNS_ATTRIBUTE = 0x0b,
167 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_A = 0x0c,
168 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_B = 0x0d,
169 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_C = 0x0e,
170 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_D = 0x0f,
171 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_E = 0x10,
172 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_F = 0x11,
173 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_G = 0x12,
174 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_H = 0x13,
175 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_I = 0x14,
176 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_J = 0x15,
177 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_K = 0x16,
178 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_L = 0x17,
179 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_M = 0x18,
180 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_N = 0x19,
181 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_O = 0x1a,
182 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_P = 0x1b,
183 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Q = 0x1c,
184 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_R = 0x1d,
185 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_S = 0x1e,
186 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_T = 0x1f,
187 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_U = 0x20,
188 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_V = 0x21,
189 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_W = 0x22,
190 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_X = 0x23,
191 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Y = 0x24,
192 RECORD_PREFIX_DICTIONARY_ATTRIBUTE_Z = 0x25,
193 RECORD_PREFIX_ATTRIBUTE_A = 0x26,
194 RECORD_PREFIX_ATTRIBUTE_B = 0x27,
195 RECORD_PREFIX_ATTRIBUTE_C = 0x28,
196 RECORD_PREFIX_ATTRIBUTE_D = 0x29,
197 RECORD_PREFIX_ATTRIBUTE_E = 0x2a,
198 RECORD_PREFIX_ATTRIBUTE_F = 0x2b,
199 RECORD_PREFIX_ATTRIBUTE_G = 0x2c,
200 RECORD_PREFIX_ATTRIBUTE_H = 0x2d,
201 RECORD_PREFIX_ATTRIBUTE_I = 0x2e,
202 RECORD_PREFIX_ATTRIBUTE_J = 0x2f,
203 RECORD_PREFIX_ATTRIBUTE_K = 0x30,
204 RECORD_PREFIX_ATTRIBUTE_L = 0x31,
205 RECORD_PREFIX_ATTRIBUTE_M = 0x32,
206 RECORD_PREFIX_ATTRIBUTE_N = 0x33,
207 RECORD_PREFIX_ATTRIBUTE_O = 0x34,
208 RECORD_PREFIX_ATTRIBUTE_P = 0x35,
209 RECORD_PREFIX_ATTRIBUTE_Q = 0x36,
210 RECORD_PREFIX_ATTRIBUTE_R = 0x37,
211 RECORD_PREFIX_ATTRIBUTE_S = 0x38,
212 RECORD_PREFIX_ATTRIBUTE_T = 0x39,
213 RECORD_PREFIX_ATTRIBUTE_U = 0x3a,
214 RECORD_PREFIX_ATTRIBUTE_V = 0x3b,
215 RECORD_PREFIX_ATTRIBUTE_W = 0x3c,
216 RECORD_PREFIX_ATTRIBUTE_X = 0x3d,
217 RECORD_PREFIX_ATTRIBUTE_Y = 0x3e,
218 RECORD_PREFIX_ATTRIBUTE_Z = 0x3f,
219 RECORD_SHORT_ELEMENT = 0x40,
220 RECORD_ELEMENT = 0x41,
221 RECORD_SHORT_DICTIONARY_ELEMENT = 0x42,
222 RECORD_DICTIONARY_ELEMENT = 0x43,
223 RECORD_PREFIX_DICTIONARY_ELEMENT_A = 0x44,
224 RECORD_PREFIX_DICTIONARY_ELEMENT_B = 0x45,
225 RECORD_PREFIX_DICTIONARY_ELEMENT_C = 0x46,
226 RECORD_PREFIX_DICTIONARY_ELEMENT_D = 0x47,
227 RECORD_PREFIX_DICTIONARY_ELEMENT_E = 0x48,
228 RECORD_PREFIX_DICTIONARY_ELEMENT_F = 0x49,
229 RECORD_PREFIX_DICTIONARY_ELEMENT_G = 0x4a,
230 RECORD_PREFIX_DICTIONARY_ELEMENT_H = 0x4b,
231 RECORD_PREFIX_DICTIONARY_ELEMENT_I = 0x4c,
232 RECORD_PREFIX_DICTIONARY_ELEMENT_J = 0x4d,
233 RECORD_PREFIX_DICTIONARY_ELEMENT_K = 0x4e,
234 RECORD_PREFIX_DICTIONARY_ELEMENT_L = 0x4f,
235 RECORD_PREFIX_DICTIONARY_ELEMENT_M = 0x50,
236 RECORD_PREFIX_DICTIONARY_ELEMENT_N = 0x51,
237 RECORD_PREFIX_DICTIONARY_ELEMENT_O = 0x52,
238 RECORD_PREFIX_DICTIONARY_ELEMENT_P = 0x53,
239 RECORD_PREFIX_DICTIONARY_ELEMENT_Q = 0x54,
240 RECORD_PREFIX_DICTIONARY_ELEMENT_R = 0x55,
241 RECORD_PREFIX_DICTIONARY_ELEMENT_S = 0x56,
242 RECORD_PREFIX_DICTIONARY_ELEMENT_T = 0x57,
243 RECORD_PREFIX_DICTIONARY_ELEMENT_U = 0x58,
244 RECORD_PREFIX_DICTIONARY_ELEMENT_V = 0x59,
245 RECORD_PREFIX_DICTIONARY_ELEMENT_W = 0x5a,
246 RECORD_PREFIX_DICTIONARY_ELEMENT_X = 0x5b,
247 RECORD_PREFIX_DICTIONARY_ELEMENT_Y = 0x5c,
248 RECORD_PREFIX_DICTIONARY_ELEMENT_Z = 0x5d,
249 RECORD_PREFIX_ELEMENT_A = 0x5e,
250 RECORD_PREFIX_ELEMENT_B = 0x5f,
251 RECORD_PREFIX_ELEMENT_C = 0x60,
252 RECORD_PREFIX_ELEMENT_D = 0x61,
253 RECORD_PREFIX_ELEMENT_E = 0x62,
254 RECORD_PREFIX_ELEMENT_F = 0x63,
255 RECORD_PREFIX_ELEMENT_G = 0x64,
256 RECORD_PREFIX_ELEMENT_H = 0x65,
257 RECORD_PREFIX_ELEMENT_I = 0x66,
258 RECORD_PREFIX_ELEMENT_J = 0x67,
259 RECORD_PREFIX_ELEMENT_K = 0x68,
260 RECORD_PREFIX_ELEMENT_L = 0x69,
261 RECORD_PREFIX_ELEMENT_M = 0x6a,
262 RECORD_PREFIX_ELEMENT_N = 0x6b,
263 RECORD_PREFIX_ELEMENT_O = 0x6c,
264 RECORD_PREFIX_ELEMENT_P = 0x6d,
265 RECORD_PREFIX_ELEMENT_Q = 0x6e,
266 RECORD_PREFIX_ELEMENT_R = 0x6f,
267 RECORD_PREFIX_ELEMENT_S = 0x70,
268 RECORD_PREFIX_ELEMENT_T = 0x71,
269 RECORD_PREFIX_ELEMENT_U = 0x72,
270 RECORD_PREFIX_ELEMENT_V = 0x73,
271 RECORD_PREFIX_ELEMENT_W = 0x74,
272 RECORD_PREFIX_ELEMENT_X = 0x75,
273 RECORD_PREFIX_ELEMENT_Y = 0x76,
274 RECORD_PREFIX_ELEMENT_Z = 0x77,
275 /* 0x78 ... 0x7f reserved */
276 RECORD_ZERO_TEXT = 0x80,
277 RECORD_ZERO_TEXT_WITH_ENDELEMENT = 0x81,
278 RECORD_ONE_TEXT = 0x82,
279 RECORD_ONE_TEXT_WITH_ENDELEMENT = 0x83,
280 RECORD_FALSE_TEXT = 0x84,
281 RECORD_FALSE_TEXT_WITH_ENDELEMENT = 0x85,
282 RECORD_TRUE_TEXT = 0x86,
283 RECORD_TRUE_TEXT_WITH_ENDELEMENT = 0x87,
284 RECORD_INT8_TEXT = 0x88,
285 RECORD_INT8_TEXT_WITH_ENDELEMENT = 0x89,
286 RECORD_INT16_TEXT = 0x8a,
287 RECORD_INT16_TEXT_WITH_ENDELEMENT = 0x8b,
288 RECORD_INT32_TEXT = 0x8c,
289 RECORD_INT32_TEXT_WITH_ENDELEMENT = 0x8d,
290 RECORD_INT64_TEXT = 0x8e,
291 RECORD_INT64_TEXT_WITH_ENDELEMENT = 0x8f,
292 RECORD_FLOAT_TEXT = 0x90,
293 RECORD_FLOAT_TEXT_WITH_ENDELEMENT = 0x91,
294 RECORD_DOUBLE_TEXT = 0x92,
295 RECORD_DOUBLE_TEXT_WITH_ENDELEMENT = 0x93,
296 RECORD_DECIMAL_TEXT = 0x94,
297 RECORD_DECIMAL_TEXT_WITH_ENDELEMENT = 0x95,
298 RECORD_DATETIME_TEXT = 0x96,
299 RECORD_DATETIME_TEXT_WITH_ENDELEMENT = 0x97,
300 RECORD_CHARS8_TEXT = 0x98,
301 RECORD_CHARS8_TEXT_WITH_ENDELEMENT = 0x99,
302 RECORD_CHARS16_TEXT = 0x9a,
303 RECORD_CHARS16_TEXT_WITH_ENDELEMENT = 0x9b,
304 RECORD_CHARS32_TEXT = 0x9c,
305 RECORD_CHARS32_TEXT_WITH_ENDELEMENT = 0x9d,
306 RECORD_BYTES8_TEXT = 0x9e,
307 RECORD_BYTES8_TEXT_WITH_ENDELEMENT = 0x9f,
308 RECORD_BYTES16_TEXT = 0xa0,
309 RECORD_BYTES16_TEXT_WITH_ENDELEMENT = 0xa1,
310 RECORD_BYTES32_TEXT = 0xa2,
311 RECORD_BYTES32_TEXT_WITH_ENDELEMENT = 0xa3,
312 RECORD_STARTLIST_TEXT = 0xa4,
313 /* 0xa5 reserved */
314 RECORD_ENDLIST_TEXT = 0xa6,
315 /* 0xa7 reserved */
316 RECORD_EMPTY_TEXT = 0xa8,
317 RECORD_EMPTY_TEXT_WITH_ENDELEMENT = 0xa9,
318 RECORD_DICTIONARY_TEXT = 0xaa,
319 RECORD_DICTIONARY_TEXT_WITH_ENDELEMENT = 0xab,
320 RECORD_UNIQUEID_TEXT = 0xac,
321 RECORD_UNIQUEID_TEXT_WITH_ENDELEMENT = 0xad,
322 RECORD_TIMESPAN_TEXT = 0xae,
323 RECORD_TIMESPAN_TEXT_WITH_ENDELEMENT = 0xaf,
324 RECORD_UUID_TEXT = 0xb0,
325 RECORD_UUID_TEXT_WITH_ENDELEMENT = 0xb1,
326 RECORD_UINT64_TEXT = 0xb2,
327 RECORD_UINT64_TEXT_WITH_ENDELEMENT = 0xb3,
328 RECORD_BOOL_TEXT = 0xb4,
329 RECORD_BOOL_TEXT_WITH_ENDELEMENT = 0xb5,
330 RECORD_UNICODE_CHARS8_TEXT = 0xb6,
331 RECORD_UNICODE_CHARS8_TEXT_WITH_ENDELEMENT = 0xb7,
332 RECORD_UNICODE_CHARS16_TEXT = 0xb8,
333 RECORD_UNICODE_CHARS16_TEXT_WITH_ENDELEMENT = 0xb9,
334 RECORD_UNICODE_CHARS32_TEXT = 0xba,
335 RECORD_UNICODE_CHARS32_TEXT_WITH_ENDELEMENT = 0xbb,
336 RECORD_QNAME_DICTIONARY_TEXT = 0xbc,
337 RECORD_QNAME_DICTIONARY_TEXT_WITH_ENDELEMENT = 0xbd,
338 /* 0xbe ... 0xff reserved */
341 #define TICKS_PER_SEC 10000000
342 #define TICKS_PER_MIN (60 * (ULONGLONG)TICKS_PER_SEC)
343 #define TICKS_PER_HOUR (3600 * (ULONGLONG)TICKS_PER_SEC)
344 #define TICKS_PER_DAY (86400 * (ULONGLONG)TICKS_PER_SEC)
345 #define TICKS_MAX 3155378975999999999
346 #define TICKS_1601_01_01 504911232000000000
348 static const int month_days[2][12] =
350 {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
351 {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
354 static inline int leap_year( int year )
356 return !(year % 4) && (year % 100 || !(year % 400));
359 static inline BOOL is_nil_value( const char *value, ULONG size )
361 ULONG i;
362 for (i = 0; i < size; i++) if (value[i]) return FALSE;
363 return TRUE;
366 static inline BOOL is_valid_parent( const struct node *node )
368 if (!node) return FALSE;
369 return (node_type( node ) == WS_XML_NODE_TYPE_ELEMENT || node_type( node ) == WS_XML_NODE_TYPE_BOF);
372 static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
374 return HeapAlloc(GetProcessHeap(), 0, size);
377 static inline void* __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t size)
379 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
382 static inline void* __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t size)
384 return HeapReAlloc(GetProcessHeap(), 0, mem, size);
387 static inline void* __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t size)
389 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
392 static inline BOOL heap_free(void *mem)
394 return HeapFree(GetProcessHeap(), 0, mem);