[XMLLITE] Sync with Wine Staging 2.9. CORE-13362
[reactos.git] / reactos / dll / win32 / xmllite / xmllite_private.h
1 /*
2 * XMLLite private things
3 *
4 * Copyright 2012 Nikolay Sivov for CodeWeavers
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21 #ifndef __XMLLITE_PRIVATE__
22 #define __XMLLITE_PRIVATE__
23
24 #include <config.h>
25
26 #include <stdarg.h>
27
28 #define WIN32_NO_STATUS
29 #define _INC_WINDOWS
30 #define COM_NO_WINDOWS_H
31
32 #define COBJMACROS
33
34 #include <windef.h>
35 #include <winbase.h>
36 #include <objbase.h>
37 #include <xmllite.h>
38
39 #include <wine/debug.h>
40 WINE_DEFAULT_DEBUG_CHANNEL(xmllite);
41
42 /* memory allocation functions */
43
44 static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
45 {
46 return HeapAlloc(GetProcessHeap(), 0, size);
47 }
48
49 static inline void* __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t size)
50 {
51 return HeapReAlloc(GetProcessHeap(), 0, mem, size);
52 }
53
54 static inline BOOL heap_free(void *mem)
55 {
56 return HeapFree(GetProcessHeap(), 0, mem);
57 }
58
59 static inline void *m_alloc(IMalloc *imalloc, size_t len)
60 {
61 if (imalloc)
62 return IMalloc_Alloc(imalloc, len);
63 else
64 return heap_alloc(len);
65 }
66
67 static inline void *m_realloc(IMalloc *imalloc, void *mem, size_t len)
68 {
69 if (imalloc)
70 return IMalloc_Realloc(imalloc, mem, len);
71 else
72 return heap_realloc(mem, len);
73 }
74
75 static inline void m_free(IMalloc *imalloc, void *mem)
76 {
77 if (imalloc)
78 IMalloc_Free(imalloc, mem);
79 else
80 heap_free(mem);
81 }
82
83 typedef enum
84 {
85 XmlEncoding_USASCII,
86 XmlEncoding_UTF16,
87 XmlEncoding_UTF8,
88 XmlEncoding_Unknown
89 } xml_encoding;
90
91 xml_encoding parse_encoding_name(const WCHAR*,int) DECLSPEC_HIDDEN;
92 HRESULT get_code_page(xml_encoding,UINT*) DECLSPEC_HIDDEN;
93 const WCHAR *get_encoding_name(xml_encoding) DECLSPEC_HIDDEN;
94 xml_encoding get_encoding_from_codepage(UINT) DECLSPEC_HIDDEN;
95
96 #endif /* __XMLLITE_PRIVATE__ */