]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - ubuntu/vbox/vboxguest/include/iprt/mangling.h
UBUNTU: ubuntu: vbox -- update to 5.2.2-dfsg-2
[mirror_ubuntu-bionic-kernel.git] / ubuntu / vbox / vboxguest / include / iprt / mangling.h
CommitLineData
056a1eb7
SF
1/** @file
2 * IPRT - Symbol Mangling.
3 *
4 * This header is used to mangle public IPRT symbol to make it possible to have
5 * several IPRT version loaded into one symbol space at the same time. To
6 * enable symbol mangling you create a header which the compiler includes for
7 * every compilation unit (check out the -include option of gcc). Your header
8 * will define RT_MANGLER(name) and then include this header to set up the
9 * actual mappings.
10 */
11
12/*
13 * Copyright (C) 2011-2017 Oracle Corporation
14 *
15 * This file is part of VirtualBox Open Source Edition (OSE), as
16 * available from http://www.virtualbox.org. This file is free software;
17 * you can redistribute it and/or modify it under the terms of the GNU
18 * General Public License (GPL) as published by the Free Software
19 * Foundation, in version 2 as it comes in the "COPYING" file of the
20 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
21 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
22 *
23 * The contents of this file may alternatively be used under the terms
24 * of the Common Development and Distribution License Version 1.0
25 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
26 * VirtualBox OSE distribution, in which case the provisions of the
27 * CDDL are applicable instead of those of the GPL.
28 *
29 * You may elect to license modified versions of this file under the
30 * terms and conditions of either the GPL or the CDDL or both.
31 */
32
33#ifndef ___iprt_mangling_h
34#define ___iprt_mangling_h
35
36#ifndef RT_MANGLER
37# error "RT_MANGLER is not defined."
38#endif
39
40#ifndef DOXYGEN_RUNNING
41
42/** @def RT_WITH_MANGLING
43 * Indicates that we're mangling symbols. */
44# define RT_WITH_MANGLING
45
46
47/*
48 * Stable functions (alphabetical order):
49 */
50/* ASM*:
51 grep -h DECLASM include/iprt/asm.h include/iprt/asm-amd64-x86.h \
52 | kmk_sed -e 's/^DECLASM.[^)]*. *\(ASM[^(]*\)[(].*$/# define \1 :RT_MANGLER(\1)\n# define \1_EndProc :RT_MANGLER(\1_EndProc)/' \
53 | sort \
54 | awk -F: '{ printf("%-55s %s\n", $1, $2);' */
55# define ASMAddFlags RT_MANGLER(ASMAddFlags)
56# define ASMAddFlags_EndProc RT_MANGLER(ASMAddFlags_EndProc)
57# define ASMAtomicAddU16 RT_MANGLER(ASMAtomicAddU16)
58# define ASMAtomicAddU16_EndProc RT_MANGLER(ASMAtomicAddU16_EndProc)
59# define ASMAtomicAddU32 RT_MANGLER(ASMAtomicAddU32)
60# define ASMAtomicAddU32_EndProc RT_MANGLER(ASMAtomicAddU32_EndProc)
61# define ASMAtomicAddU64 RT_MANGLER(ASMAtomicAddU64)
62# define ASMAtomicAddU64_EndProc RT_MANGLER(ASMAtomicAddU64_EndProc)
63# define ASMAtomicAndU32 RT_MANGLER(ASMAtomicAndU32)
64# define ASMAtomicAndU32_EndProc RT_MANGLER(ASMAtomicAndU32_EndProc)
65# define ASMAtomicAndU64 RT_MANGLER(ASMAtomicAndU64)
66# define ASMAtomicAndU64_EndProc RT_MANGLER(ASMAtomicAndU64_EndProc)
67# define ASMAtomicBitClear RT_MANGLER(ASMAtomicBitClear)
68# define ASMAtomicBitClear_EndProc RT_MANGLER(ASMAtomicBitClear_EndProc)
69# define ASMAtomicBitSet RT_MANGLER(ASMAtomicBitSet)
70# define ASMAtomicBitSet_EndProc RT_MANGLER(ASMAtomicBitSet_EndProc)
71# define ASMAtomicBitTestAndClear RT_MANGLER(ASMAtomicBitTestAndClear)
72# define ASMAtomicBitTestAndClear_EndProc RT_MANGLER(ASMAtomicBitTestAndClear_EndProc)
73# define ASMAtomicBitTestAndSet RT_MANGLER(ASMAtomicBitTestAndSet)
74# define ASMAtomicBitTestAndSet_EndProc RT_MANGLER(ASMAtomicBitTestAndSet_EndProc)
75# define ASMAtomicBitTestAndToggle RT_MANGLER(ASMAtomicBitTestAndToggle)
76# define ASMAtomicBitTestAndToggle_EndProc RT_MANGLER(ASMAtomicBitTestAndToggle_EndProc)
77# define ASMAtomicBitToggle RT_MANGLER(ASMAtomicBitToggle)
78# define ASMAtomicBitToggle_EndProc RT_MANGLER(ASMAtomicBitToggle_EndProc)
79# define ASMAtomicCmpXchgExU32 RT_MANGLER(ASMAtomicCmpXchgExU32)
80# define ASMAtomicCmpXchgExU32_EndProc RT_MANGLER(ASMAtomicCmpXchgExU32_EndProc)
81# define ASMAtomicCmpXchgExU64 RT_MANGLER(ASMAtomicCmpXchgExU64)
82# define ASMAtomicCmpXchgExU64_EndProc RT_MANGLER(ASMAtomicCmpXchgExU64_EndProc)
83# define ASMAtomicCmpXchgU32 RT_MANGLER(ASMAtomicCmpXchgU32)
84# define ASMAtomicCmpXchgU32_EndProc RT_MANGLER(ASMAtomicCmpXchgU32_EndProc)
85# define ASMAtomicCmpXchgU64 RT_MANGLER(ASMAtomicCmpXchgU64)
86# define ASMAtomicCmpXchgU64_EndProc RT_MANGLER(ASMAtomicCmpXchgU64_EndProc)
87# define ASMAtomicCmpXchgU8 RT_MANGLER(ASMAtomicCmpXchgU8)
88# define ASMAtomicCmpXchgU8_EndProc RT_MANGLER(ASMAtomicCmpXchgU8_EndProc)
89# define ASMAtomicDecU16 RT_MANGLER(ASMAtomicDecU16)
90# define ASMAtomicDecU16_EndProc RT_MANGLER(ASMAtomicDecU16_EndProc)
91# define ASMAtomicDecU32 RT_MANGLER(ASMAtomicDecU32)
92# define ASMAtomicDecU32_EndProc RT_MANGLER(ASMAtomicDecU32_EndProc)
93# define ASMAtomicDecU64 RT_MANGLER(ASMAtomicDecU64)
94# define ASMAtomicDecU64_EndProc RT_MANGLER(ASMAtomicDecU64_EndProc)
95# define ASMAtomicIncU16 RT_MANGLER(ASMAtomicIncU16)
96# define ASMAtomicIncU16_EndProc RT_MANGLER(ASMAtomicIncU16_EndProc)
97# define ASMAtomicIncU32 RT_MANGLER(ASMAtomicIncU32)
98# define ASMAtomicIncU32_EndProc RT_MANGLER(ASMAtomicIncU32_EndProc)
99# define ASMAtomicIncU64 RT_MANGLER(ASMAtomicIncU64)
100# define ASMAtomicIncU64_EndProc RT_MANGLER(ASMAtomicIncU64_EndProc)
101# define ASMAtomicOrU32 RT_MANGLER(ASMAtomicOrU32)
102# define ASMAtomicOrU32_EndProc RT_MANGLER(ASMAtomicOrU32_EndProc)
103# define ASMAtomicOrU64 RT_MANGLER(ASMAtomicOrU64)
104# define ASMAtomicOrU64_EndProc RT_MANGLER(ASMAtomicOrU64_EndProc)
105# define ASMAtomicReadU64 RT_MANGLER(ASMAtomicReadU64)
106# define ASMAtomicReadU64_EndProc RT_MANGLER(ASMAtomicReadU64_EndProc)
107# define ASMAtomicUoAndU32 RT_MANGLER(ASMAtomicUoAndU32)
108# define ASMAtomicUoAndU32_EndProc RT_MANGLER(ASMAtomicUoAndU32_EndProc)
109# define ASMAtomicUoAndU64 RT_MANGLER(ASMAtomicUoAndU64)
110# define ASMAtomicUoAndU64_EndProc RT_MANGLER(ASMAtomicUoAndU64_EndProc)
111# define ASMAtomicUoDecU32 RT_MANGLER(ASMAtomicUoDecU32)
112# define ASMAtomicUoDecU32_EndProc RT_MANGLER(ASMAtomicUoDecU32_EndProc)
113# define ASMAtomicUoIncU32 RT_MANGLER(ASMAtomicUoIncU32)
114# define ASMAtomicUoIncU32_EndProc RT_MANGLER(ASMAtomicUoIncU32_EndProc)
115# define ASMAtomicUoOrU32 RT_MANGLER(ASMAtomicUoOrU32)
116# define ASMAtomicUoOrU32_EndProc RT_MANGLER(ASMAtomicUoOrU32_EndProc)
117# define ASMAtomicUoOrU64 RT_MANGLER(ASMAtomicUoOrU64)
118# define ASMAtomicUoOrU64_EndProc RT_MANGLER(ASMAtomicUoOrU64_EndProc)
119# define ASMAtomicUoReadU64 RT_MANGLER(ASMAtomicUoReadU64)
120# define ASMAtomicUoReadU64_EndProc RT_MANGLER(ASMAtomicUoReadU64_EndProc)
121# define ASMAtomicXchgU16 RT_MANGLER(ASMAtomicXchgU16)
122# define ASMAtomicXchgU16_EndProc RT_MANGLER(ASMAtomicXchgU16_EndProc)
123# define ASMAtomicXchgU32 RT_MANGLER(ASMAtomicXchgU32)
124# define ASMAtomicXchgU32_EndProc RT_MANGLER(ASMAtomicXchgU32_EndProc)
125# define ASMAtomicXchgU64 RT_MANGLER(ASMAtomicXchgU64)
126# define ASMAtomicXchgU64_EndProc RT_MANGLER(ASMAtomicXchgU64_EndProc)
127# define ASMAtomicXchgU8 RT_MANGLER(ASMAtomicXchgU8)
128# define ASMAtomicXchgU8_EndProc RT_MANGLER(ASMAtomicXchgU8_EndProc)
129# define ASMBitClear RT_MANGLER(ASMBitClear)
130# define ASMBitClear_EndProc RT_MANGLER(ASMBitClear_EndProc)
131# define ASMBitFirstClear RT_MANGLER(ASMBitFirstClear)
132# define ASMBitFirstClear_EndProc RT_MANGLER(ASMBitFirstClear_EndProc)
133# define ASMBitFirstSet RT_MANGLER(ASMBitFirstSet)
134# define ASMBitFirstSet_EndProc RT_MANGLER(ASMBitFirstSet_EndProc)
135# define ASMBitFirstSetU16 RT_MANGLER(ASMBitFirstSetU16)
136# define ASMBitFirstSetU16_EndProc RT_MANGLER(ASMBitFirstSetU16_EndProc)
137# define ASMBitFirstSetU32 RT_MANGLER(ASMBitFirstSetU32)
138# define ASMBitFirstSetU32_EndProc RT_MANGLER(ASMBitFirstSetU32_EndProc)
139# define ASMBitFirstSetU64 RT_MANGLER(ASMBitFirstSetU64)
140# define ASMBitFirstSetU64_EndProc RT_MANGLER(ASMBitFirstSetU64_EndProc)
141# define ASMBitLastSetU16 RT_MANGLER(ASMBitLastSetU16)
142# define ASMBitLastSetU16_EndProc RT_MANGLER(ASMBitLastSetU16_EndProc)
143# define ASMBitLastSetU32 RT_MANGLER(ASMBitLastSetU32)
144# define ASMBitLastSetU32_EndProc RT_MANGLER(ASMBitLastSetU32_EndProc)
145# define ASMBitLastSetU64 RT_MANGLER(ASMBitLastSetU64)
146# define ASMBitLastSetU64_EndProc RT_MANGLER(ASMBitLastSetU64_EndProc)
147# define ASMBitNextClear RT_MANGLER(ASMBitNextClear)
148# define ASMBitNextClear_EndProc RT_MANGLER(ASMBitNextClear_EndProc)
149# define ASMBitNextSet RT_MANGLER(ASMBitNextSet)
150# define ASMBitNextSet_EndProc RT_MANGLER(ASMBitNextSet_EndProc)
151# define ASMBitSet RT_MANGLER(ASMBitSet)
152# define ASMBitSet_EndProc RT_MANGLER(ASMBitSet_EndProc)
153# define ASMBitTest RT_MANGLER(ASMBitTest)
154# define ASMBitTest_EndProc RT_MANGLER(ASMBitTest_EndProc)
155# define ASMBitTestAndClear RT_MANGLER(ASMBitTestAndClear)
156# define ASMBitTestAndClear_EndProc RT_MANGLER(ASMBitTestAndClear_EndProc)
157# define ASMBitTestAndSet RT_MANGLER(ASMBitTestAndSet)
158# define ASMBitTestAndSet_EndProc RT_MANGLER(ASMBitTestAndSet_EndProc)
159# define ASMBitTestAndToggle RT_MANGLER(ASMBitTestAndToggle)
160# define ASMBitTestAndToggle_EndProc RT_MANGLER(ASMBitTestAndToggle_EndProc)
161# define ASMBitToggle RT_MANGLER(ASMBitToggle)
162# define ASMBitToggle_EndProc RT_MANGLER(ASMBitToggle_EndProc)
163# define ASMByteSwapU16 RT_MANGLER(ASMByteSwapU16)
164# define ASMByteSwapU16_EndProc RT_MANGLER(ASMByteSwapU16_EndProc)
165# define ASMByteSwapU32 RT_MANGLER(ASMByteSwapU32)
166# define ASMByteSwapU32_EndProc RT_MANGLER(ASMByteSwapU32_EndProc)
167# define ASMChangeFlags RT_MANGLER(ASMChangeFlags)
168# define ASMChangeFlags_EndProc RT_MANGLER(ASMChangeFlags_EndProc)
169# define ASMClearFlags RT_MANGLER(ASMClearFlags)
170# define ASMClearFlags_EndProc RT_MANGLER(ASMClearFlags_EndProc)
171# define ASMCpuId RT_MANGLER(ASMCpuId)
172# define ASMCpuId_EAX RT_MANGLER(ASMCpuId_EAX)
173# define ASMCpuId_EAX_EndProc RT_MANGLER(ASMCpuId_EAX_EndProc)
174# define ASMCpuId_EBX RT_MANGLER(ASMCpuId_EBX)
175# define ASMCpuId_EBX_EndProc RT_MANGLER(ASMCpuId_EBX_EndProc)
176# define ASMCpuId_ECX RT_MANGLER(ASMCpuId_ECX)
177# define ASMCpuId_ECX_EDX RT_MANGLER(ASMCpuId_ECX_EDX)
178# define ASMCpuId_ECX_EDX_EndProc RT_MANGLER(ASMCpuId_ECX_EDX_EndProc)
179# define ASMCpuId_ECX_EndProc RT_MANGLER(ASMCpuId_ECX_EndProc)
180# define ASMCpuId_EDX RT_MANGLER(ASMCpuId_EDX)
181# define ASMCpuId_EDX_EndProc RT_MANGLER(ASMCpuId_EDX_EndProc)
182# define ASMCpuId_EndProc RT_MANGLER(ASMCpuId_EndProc)
183# define ASMCpuId_Idx_ECX RT_MANGLER(ASMCpuId_Idx_ECX)
184# define ASMCpuId_Idx_ECX_EndProc RT_MANGLER(ASMCpuId_Idx_ECX_EndProc)
185# define ASMCpuIdExSlow RT_MANGLER(ASMCpuIdExSlow)
186# define ASMCpuIdExSlow_EndProc RT_MANGLER(ASMCpuIdExSlow_EndProc)
187# define ASMGetAndClearDR6 RT_MANGLER(ASMGetAndClearDR6)
188# define ASMGetAndClearDR6_EndProc RT_MANGLER(ASMGetAndClearDR6_EndProc)
189# define ASMGetApicId RT_MANGLER(ASMGetApicId)
190# define ASMGetApicId_EndProc RT_MANGLER(ASMGetApicId_EndProc)
191# define ASMGetCR0 RT_MANGLER(ASMGetCR0)
192# define ASMGetCR0_EndProc RT_MANGLER(ASMGetCR0_EndProc)
193# define ASMGetCR2 RT_MANGLER(ASMGetCR2)
194# define ASMGetCR2_EndProc RT_MANGLER(ASMGetCR2_EndProc)
195# define ASMGetCR3 RT_MANGLER(ASMGetCR3)
196# define ASMGetCR3_EndProc RT_MANGLER(ASMGetCR3_EndProc)
197# define ASMGetCR4 RT_MANGLER(ASMGetCR4)
198# define ASMGetCR4_EndProc RT_MANGLER(ASMGetCR4_EndProc)
199# define ASMGetCR8 RT_MANGLER(ASMGetCR8)
200# define ASMGetCR8_EndProc RT_MANGLER(ASMGetCR8_EndProc)
201# define ASMGetCS RT_MANGLER(ASMGetCS)
202# define ASMGetCS_EndProc RT_MANGLER(ASMGetCS_EndProc)
203# define ASMGetDR0 RT_MANGLER(ASMGetDR0)
204# define ASMGetDR0_EndProc RT_MANGLER(ASMGetDR0_EndProc)
205# define ASMGetDR1 RT_MANGLER(ASMGetDR1)
206# define ASMGetDR1_EndProc RT_MANGLER(ASMGetDR1_EndProc)
207# define ASMGetDR2 RT_MANGLER(ASMGetDR2)
208# define ASMGetDR2_EndProc RT_MANGLER(ASMGetDR2_EndProc)
209# define ASMGetDR3 RT_MANGLER(ASMGetDR3)
210# define ASMGetDR3_EndProc RT_MANGLER(ASMGetDR3_EndProc)
211# define ASMGetDR6 RT_MANGLER(ASMGetDR6)
212# define ASMGetDR6_EndProc RT_MANGLER(ASMGetDR6_EndProc)
213# define ASMGetDR7 RT_MANGLER(ASMGetDR7)
214# define ASMGetDR7_EndProc RT_MANGLER(ASMGetDR7_EndProc)
215# define ASMGetDS RT_MANGLER(ASMGetDS)
216# define ASMGetDS_EndProc RT_MANGLER(ASMGetDS_EndProc)
217# define ASMGetES RT_MANGLER(ASMGetES)
218# define ASMGetES_EndProc RT_MANGLER(ASMGetES_EndProc)
219# define ASMGetFlags RT_MANGLER(ASMGetFlags)
220# define ASMGetFlags_EndProc RT_MANGLER(ASMGetFlags_EndProc)
221# define ASMGetFS RT_MANGLER(ASMGetFS)
222# define ASMGetFS_EndProc RT_MANGLER(ASMGetFS_EndProc)
223# define ASMGetGDTR RT_MANGLER(ASMGetGDTR)
224# define ASMGetGDTR_EndProc RT_MANGLER(ASMGetGDTR_EndProc)
225# define ASMGetGS RT_MANGLER(ASMGetGS)
226# define ASMGetGS_EndProc RT_MANGLER(ASMGetGS_EndProc)
227# define ASMGetIDTR RT_MANGLER(ASMGetIDTR)
228# define ASMGetIDTR_EndProc RT_MANGLER(ASMGetIDTR_EndProc)
229# define ASMGetIdtrLimit RT_MANGLER(ASMGetIdtrLimit)
230# define ASMGetIdtrLimit_EndProc RT_MANGLER(ASMGetIdtrLimit_EndProc)
231# define ASMGetLDTR RT_MANGLER(ASMGetLDTR)
232# define ASMGetLDTR_EndProc RT_MANGLER(ASMGetLDTR_EndProc)
233# define ASMGetSegAttr RT_MANGLER(ASMGetSegAttr)
234# define ASMGetSegAttr_EndProc RT_MANGLER(ASMGetSegAttr_EndProc)
235# define ASMGetSS RT_MANGLER(ASMGetSS)
236# define ASMGetSS_EndProc RT_MANGLER(ASMGetSS_EndProc)
237# define ASMGetTR RT_MANGLER(ASMGetTR)
238# define ASMGetTR_EndProc RT_MANGLER(ASMGetTR_EndProc)
239# define ASMGetXcr0 RT_MANGLER(ASMGetXcr0)
240# define ASMGetXcr0_EndProc RT_MANGLER(ASMGetXcr0_EndProc)
241# define ASMHalt RT_MANGLER(ASMHalt)
242# define ASMHalt_EndProc RT_MANGLER(ASMHalt_EndProc)
243# define ASMInStrU16 RT_MANGLER(ASMInStrU16)
244# define ASMInStrU16_EndProc RT_MANGLER(ASMInStrU16_EndProc)
245# define ASMInStrU32 RT_MANGLER(ASMInStrU32)
246# define ASMInStrU32_EndProc RT_MANGLER(ASMInStrU32_EndProc)
247# define ASMInStrU8 RT_MANGLER(ASMInStrU8)
248# define ASMInStrU8_EndProc RT_MANGLER(ASMInStrU8_EndProc)
249# define ASMIntDisable RT_MANGLER(ASMIntDisable)
250# define ASMIntDisable_EndProc RT_MANGLER(ASMIntDisable_EndProc)
251# define ASMIntDisableFlags RT_MANGLER(ASMIntDisableFlags)
252# define ASMIntDisableFlags_EndProc RT_MANGLER(ASMIntDisableFlags_EndProc)
253# define ASMIntEnable RT_MANGLER(ASMIntEnable)
254# define ASMIntEnable_EndProc RT_MANGLER(ASMIntEnable_EndProc)
255# define ASMInU16 RT_MANGLER(ASMInU16)
256# define ASMInU16_EndProc RT_MANGLER(ASMInU16_EndProc)
257# define ASMInU32 RT_MANGLER(ASMInU32)
258# define ASMInU32_EndProc RT_MANGLER(ASMInU32_EndProc)
259# define ASMInU8 RT_MANGLER(ASMInU8)
260# define ASMInU8_EndProc RT_MANGLER(ASMInU8_EndProc)
261# define ASMInvalidateInternalCaches RT_MANGLER(ASMInvalidateInternalCaches)
262# define ASMInvalidateInternalCaches_EndProc RT_MANGLER(ASMInvalidateInternalCaches_EndProc)
263# define ASMInvalidatePage RT_MANGLER(ASMInvalidatePage)
264# define ASMInvalidatePage_EndProc RT_MANGLER(ASMInvalidatePage_EndProc)
265# define ASMMemFill32 RT_MANGLER(ASMMemFill32)
266# define ASMMemFill32_EndProc RT_MANGLER(ASMMemFill32_EndProc)
267# define ASMMemFirstNonZero RT_MANGLER(ASMMemFirstNonZero)
268# define ASMMemFirstNonZero_EndProc RT_MANGLER(ASMMemFirstNonZero_EndProc)
269# define ASMMemFirstMismatchingU8 RT_MANGLER(ASMMemFirstMismatchingU8)
270# define ASMMemFirstMismatchingU8_EndProc RT_MANGLER(ASMMemFirstMismatchingU8_EndProc)
271# define ASMMemFirstMismatchingU32 RT_MANGLER(ASMMemFirstMismatchingU32)
272# define ASMMemFirstMismatchingU32_EndProc RT_MANGLER(ASMMemFirstMismatchingU32_EndProc)
273# define ASMMemIsZero RT_MANGLER(ASMMemIsZero)
274# define ASMMemIsZero_EndProc RT_MANGLER(ASMMemIsZero_EndProc)
275# define ASMMemIsAllU8 RT_MANGLER(ASMMemIsAllU8)
276# define ASMMemIsAllU8_EndProc RT_MANGLER(ASMMemIsAllU8_EndProc)
277# define ASMMemZero32 RT_MANGLER(ASMMemZero32)
278# define ASMMemZero32_EndProc RT_MANGLER(ASMMemZero32_EndProc)
279# define ASMMemZeroPage RT_MANGLER(ASMMemZeroPage)
280# define ASMMemZeroPage_EndProc RT_MANGLER(ASMMemZeroPage_EndProc)
281# define ASMNopPause RT_MANGLER(ASMNopPause)
282# define ASMNopPause_EndProc RT_MANGLER(ASMNopPause_EndProc)
283# define ASMOutStrU16 RT_MANGLER(ASMOutStrU16)
284# define ASMOutStrU16_EndProc RT_MANGLER(ASMOutStrU16_EndProc)
285# define ASMOutStrU32 RT_MANGLER(ASMOutStrU32)
286# define ASMOutStrU32_EndProc RT_MANGLER(ASMOutStrU32_EndProc)
287# define ASMOutStrU8 RT_MANGLER(ASMOutStrU8)
288# define ASMOutStrU8_EndProc RT_MANGLER(ASMOutStrU8_EndProc)
289# define ASMOutU16 RT_MANGLER(ASMOutU16)
290# define ASMOutU16_EndProc RT_MANGLER(ASMOutU16_EndProc)
291# define ASMOutU32 RT_MANGLER(ASMOutU32)
292# define ASMOutU32_EndProc RT_MANGLER(ASMOutU32_EndProc)
293# define ASMOutU8 RT_MANGLER(ASMOutU8)
294# define ASMOutU8_EndProc RT_MANGLER(ASMOutU8_EndProc)
295# define ASMProbeReadByte RT_MANGLER(ASMProbeReadByte)
296# define ASMProbeReadByte_EndProc RT_MANGLER(ASMProbeReadByte_EndProc)
297# define ASMRdMsr RT_MANGLER(ASMRdMsr)
298# define ASMRdMsr_EndProc RT_MANGLER(ASMRdMsr_EndProc)
299# define ASMRdMsr_High RT_MANGLER(ASMRdMsr_High)
300# define ASMRdMsr_High_EndProc RT_MANGLER(ASMRdMsr_High_EndProc)
301# define ASMRdMsr_Low RT_MANGLER(ASMRdMsr_Low)
302# define ASMRdMsr_Low_EndProc RT_MANGLER(ASMRdMsr_Low_EndProc)
303# define ASMRdMsrEx RT_MANGLER(ASMRdMsrEx)
304# define ASMRdMsrEx_EndProc RT_MANGLER(ASMRdMsrEx_EndProc)
305# define ASMReadTSC RT_MANGLER(ASMReadTSC)
306# define ASMReadTSC_EndProc RT_MANGLER(ASMReadTSC_EndProc)
307# define ASMReadTscWithAux RT_MANGLER(ASMReadTscWithAux)
308# define ASMReadTscWithAux_EndProc RT_MANGLER(ASMReadTscWithAux_EndProc)
309# define ASMReloadCR3 RT_MANGLER(ASMReloadCR3)
310# define ASMReloadCR3_EndProc RT_MANGLER(ASMReloadCR3_EndProc)
311# define ASMRotateLeftU32 RT_MANGLER(ASMRotateLeftU32)
312# define ASMRotateLeftU32_EndProc RT_MANGLER(ASMRotateLeftU32_EndProc)
313# define ASMRotateRightU32 RT_MANGLER(ASMRotateRightU32)
314# define ASMRotateRightU32_EndProc RT_MANGLER(ASMRotateRightU32_EndProc)
315# define ASMSerializeInstructionCpuId RT_MANGLER(ASMSerializeInstructionCpuId)
316# define ASMSerializeInstructionCpuId_EndProc RT_MANGLER(ASMSerializeInstructionCpuId_EndProc)
317# define ASMSerializeInstructionIRet RT_MANGLER(ASMSerializeInstructionIRet)
318# define ASMSerializeInstructionIRet_EndProc RT_MANGLER(ASMSerializeInstructionIRet_EndProc)
319# define ASMSerializeInstructionRdTscp RT_MANGLER(ASMSerializeInstructionRdTscp)
320# define ASMSerializeInstructionRdTscp_EndProc RT_MANGLER(ASMSerializeInstructionRdTscp_EndProc)
321# define ASMSetCR0 RT_MANGLER(ASMSetCR0)
322# define ASMSetCR0_EndProc RT_MANGLER(ASMSetCR0_EndProc)
323# define ASMSetCR2 RT_MANGLER(ASMSetCR2)
324# define ASMSetCR2_EndProc RT_MANGLER(ASMSetCR2_EndProc)
325# define ASMSetCR3 RT_MANGLER(ASMSetCR3)
326# define ASMSetCR3_EndProc RT_MANGLER(ASMSetCR3_EndProc)
327# define ASMSetCR4 RT_MANGLER(ASMSetCR4)
328# define ASMSetCR4_EndProc RT_MANGLER(ASMSetCR4_EndProc)
329# define ASMSetDR0 RT_MANGLER(ASMSetDR0)
330# define ASMSetDR0_EndProc RT_MANGLER(ASMSetDR0_EndProc)
331# define ASMSetDR1 RT_MANGLER(ASMSetDR1)
332# define ASMSetDR1_EndProc RT_MANGLER(ASMSetDR1_EndProc)
333# define ASMSetDR2 RT_MANGLER(ASMSetDR2)
334# define ASMSetDR2_EndProc RT_MANGLER(ASMSetDR2_EndProc)
335# define ASMSetDR3 RT_MANGLER(ASMSetDR3)
336# define ASMSetDR3_EndProc RT_MANGLER(ASMSetDR3_EndProc)
337# define ASMSetDR6 RT_MANGLER(ASMSetDR6)
338# define ASMSetDR6_EndProc RT_MANGLER(ASMSetDR6_EndProc)
339# define ASMSetDR7 RT_MANGLER(ASMSetDR7)
340# define ASMSetDR7_EndProc RT_MANGLER(ASMSetDR7_EndProc)
341# define ASMSetFlags RT_MANGLER(ASMSetFlags)
342# define ASMSetFlags_EndProc RT_MANGLER(ASMSetFlags_EndProc)
343# define ASMSetGDTR RT_MANGLER(ASMSetGDTR)
344# define ASMSetGDTR_EndProc RT_MANGLER(ASMSetGDTR_EndProc)
345# define ASMSetIDTR RT_MANGLER(ASMSetIDTR)
346# define ASMSetIDTR_EndProc RT_MANGLER(ASMSetIDTR_EndProc)
347# define ASMSetXcr0 RT_MANGLER(ASMSetXcr0)
348# define ASMSetXcr0_EndProc RT_MANGLER(ASMSetXcr0_EndProc)
349# define ASMWriteBackAndInvalidateCaches RT_MANGLER(ASMWriteBackAndInvalidateCaches)
350# define ASMWriteBackAndInvalidateCaches_EndProc RT_MANGLER(ASMWriteBackAndInvalidateCaches_EndProc)
351# define ASMWrMsr RT_MANGLER(ASMWrMsr)
352# define ASMWrMsr_EndProc RT_MANGLER(ASMWrMsr_EndProc)
353# define ASMWrMsrEx RT_MANGLER(ASMWrMsrEx)
354# define ASMWrMsrEx_EndProc RT_MANGLER(ASMWrMsrEx_EndProc)
355# define ASMXRstor RT_MANGLER(ASMXRstor)
356# define ASMXRstor_EndProc RT_MANGLER(ASMXRstor_EndProc)
357# define ASMXSave RT_MANGLER(ASMXSave)
358# define ASMXSave_EndProc RT_MANGLER(ASMXSave_EndProc)
359# define ASMFxRstor RT_MANGLER(ASMFxRstor)
360# define ASMFxRstor_EndProc RT_MANGLER(ASMFxRstor_EndProc)
361# define ASMFxSave RT_MANGLER(ASMFxSave)
362# define ASMFxSave_EndProc RT_MANGLER(ASMFxSave_EndProc)
363
364# define RTAssertAreQuiet RT_MANGLER(RTAssertAreQuiet)
365# define RTAssertMayPanic RT_MANGLER(RTAssertMayPanic)
366# define RTAssertMsg1 RT_MANGLER(RTAssertMsg1)
367# define RTAssertMsg1Weak RT_MANGLER(RTAssertMsg1Weak)
368# define RTAssertMsg2 RT_MANGLER(RTAssertMsg2)
369# define RTAssertMsg2Add RT_MANGLER(RTAssertMsg2Add)
370# define RTAssertMsg2AddV RT_MANGLER(RTAssertMsg2AddV)
371# define RTAssertMsg2AddWeak RT_MANGLER(RTAssertMsg2AddWeak)
372# define RTAssertMsg2AddWeakV RT_MANGLER(RTAssertMsg2AddWeakV)
373# define RTAssertMsg2V RT_MANGLER(RTAssertMsg2V)
374# define RTAssertMsg2Weak RT_MANGLER(RTAssertMsg2Weak)
375# define RTAssertMsg2WeakV RT_MANGLER(RTAssertMsg2WeakV)
376# define RTAssertSetMayPanic RT_MANGLER(RTAssertSetMayPanic)
377# define RTAssertSetQuiet RT_MANGLER(RTAssertSetQuiet)
378# define RTAssertShouldPanic RT_MANGLER(RTAssertShouldPanic)
379# define RTAvlGCPhysDestroy RT_MANGLER(RTAvlGCPhysDestroy)
380# define RTAvlGCPhysDoWithAll RT_MANGLER(RTAvlGCPhysDoWithAll)
381# define RTAvlGCPhysGet RT_MANGLER(RTAvlGCPhysGet)
382# define RTAvlGCPhysGetBestFit RT_MANGLER(RTAvlGCPhysGetBestFit)
383# define RTAvlGCPhysInsert RT_MANGLER(RTAvlGCPhysInsert)
384# define RTAvlGCPhysRemove RT_MANGLER(RTAvlGCPhysRemove)
385# define RTAvlGCPhysRemoveBestFit RT_MANGLER(RTAvlGCPhysRemoveBestFit)
386# define RTAvlGCPtrDestroy RT_MANGLER(RTAvlGCPtrDestroy)
387# define RTAvlGCPtrDoWithAll RT_MANGLER(RTAvlGCPtrDoWithAll)
388# define RTAvlGCPtrGet RT_MANGLER(RTAvlGCPtrGet)
389# define RTAvlGCPtrGetBestFit RT_MANGLER(RTAvlGCPtrGetBestFit)
390# define RTAvlGCPtrInsert RT_MANGLER(RTAvlGCPtrInsert)
391# define RTAvlGCPtrRemove RT_MANGLER(RTAvlGCPtrRemove)
392# define RTAvlGCPtrRemoveBestFit RT_MANGLER(RTAvlGCPtrRemoveBestFit)
393# define RTAvlHCPhysDestroy RT_MANGLER(RTAvlHCPhysDestroy)
394# define RTAvlHCPhysDoWithAll RT_MANGLER(RTAvlHCPhysDoWithAll)
395# define RTAvlHCPhysGet RT_MANGLER(RTAvlHCPhysGet)
396# define RTAvlHCPhysGetBestFit RT_MANGLER(RTAvlHCPhysGetBestFit)
397# define RTAvlHCPhysInsert RT_MANGLER(RTAvlHCPhysInsert)
398# define RTAvlHCPhysRemove RT_MANGLER(RTAvlHCPhysRemove)
399# define RTAvlHCPhysRemoveBestFit RT_MANGLER(RTAvlHCPhysRemoveBestFit)
400# define RTAvllU32Destroy RT_MANGLER(RTAvllU32Destroy)
401# define RTAvllU32DoWithAll RT_MANGLER(RTAvllU32DoWithAll)
402# define RTAvllU32Get RT_MANGLER(RTAvllU32Get)
403# define RTAvllU32GetBestFit RT_MANGLER(RTAvllU32GetBestFit)
404# define RTAvllU32Insert RT_MANGLER(RTAvllU32Insert)
405# define RTAvllU32Remove RT_MANGLER(RTAvllU32Remove)
406# define RTAvllU32RemoveBestFit RT_MANGLER(RTAvllU32RemoveBestFit)
407# define RTAvllU32RemoveNode RT_MANGLER(RTAvllU32RemoveNode)
408# define RTAvloGCPhysDestroy RT_MANGLER(RTAvloGCPhysDestroy)
409# define RTAvloGCPhysDoWithAll RT_MANGLER(RTAvloGCPhysDoWithAll)
410# define RTAvloGCPhysGet RT_MANGLER(RTAvloGCPhysGet)
411# define RTAvloGCPhysGetBestFit RT_MANGLER(RTAvloGCPhysGetBestFit)
412# define RTAvloGCPhysInsert RT_MANGLER(RTAvloGCPhysInsert)
413# define RTAvloGCPhysRemove RT_MANGLER(RTAvloGCPhysRemove)
414# define RTAvloGCPhysRemoveBestFit RT_MANGLER(RTAvloGCPhysRemoveBestFit)
415# define RTAvloGCPtrDestroy RT_MANGLER(RTAvloGCPtrDestroy)
416# define RTAvloGCPtrDoWithAll RT_MANGLER(RTAvloGCPtrDoWithAll)
417# define RTAvloGCPtrGet RT_MANGLER(RTAvloGCPtrGet)
418# define RTAvloGCPtrGetBestFit RT_MANGLER(RTAvloGCPtrGetBestFit)
419# define RTAvloGCPtrInsert RT_MANGLER(RTAvloGCPtrInsert)
420# define RTAvloGCPtrRemove RT_MANGLER(RTAvloGCPtrRemove)
421# define RTAvloGCPtrRemoveBestFit RT_MANGLER(RTAvloGCPtrRemoveBestFit)
422# define RTAvloHCPhysDestroy RT_MANGLER(RTAvloHCPhysDestroy)
423# define RTAvloHCPhysDoWithAll RT_MANGLER(RTAvloHCPhysDoWithAll)
424# define RTAvloHCPhysGet RT_MANGLER(RTAvloHCPhysGet)
425# define RTAvloHCPhysGetBestFit RT_MANGLER(RTAvloHCPhysGetBestFit)
426# define RTAvloHCPhysInsert RT_MANGLER(RTAvloHCPhysInsert)
427# define RTAvloHCPhysRemove RT_MANGLER(RTAvloHCPhysRemove)
428# define RTAvloHCPhysRemoveBestFit RT_MANGLER(RTAvloHCPhysRemoveBestFit)
429# define RTAvloIOPortDestroy RT_MANGLER(RTAvloIOPortDestroy)
430# define RTAvloIOPortDoWithAll RT_MANGLER(RTAvloIOPortDoWithAll)
431# define RTAvloIOPortGet RT_MANGLER(RTAvloIOPortGet)
432# define RTAvloIOPortGetBestFit RT_MANGLER(RTAvloIOPortGetBestFit)
433# define RTAvloIOPortInsert RT_MANGLER(RTAvloIOPortInsert)
434# define RTAvloIOPortRemove RT_MANGLER(RTAvloIOPortRemove)
435# define RTAvloIOPortRemoveBestFit RT_MANGLER(RTAvloIOPortRemoveBestFit)
436# define RTAvloU32Destroy RT_MANGLER(RTAvloU32Destroy)
437# define RTAvloU32DoWithAll RT_MANGLER(RTAvloU32DoWithAll)
438# define RTAvloU32Get RT_MANGLER(RTAvloU32Get)
439# define RTAvloU32GetBestFit RT_MANGLER(RTAvloU32GetBestFit)
440# define RTAvloU32Insert RT_MANGLER(RTAvloU32Insert)
441# define RTAvloU32Remove RT_MANGLER(RTAvloU32Remove)
442# define RTAvloU32RemoveBestFit RT_MANGLER(RTAvloU32RemoveBestFit)
443# define RTAvlPVDestroy RT_MANGLER(RTAvlPVDestroy)
444# define RTAvlPVDoWithAll RT_MANGLER(RTAvlPVDoWithAll)
445# define RTAvlPVGet RT_MANGLER(RTAvlPVGet)
446# define RTAvlPVGetBestFit RT_MANGLER(RTAvlPVGetBestFit)
447# define RTAvlPVInsert RT_MANGLER(RTAvlPVInsert)
448# define RTAvlPVRemove RT_MANGLER(RTAvlPVRemove)
449# define RTAvlPVRemoveBestFit RT_MANGLER(RTAvlPVRemoveBestFit)
450# define RTAvlrFileOffsetDestroy RT_MANGLER(RTAvlrFileOffsetDestroy)
451# define RTAvlrFileOffsetDoWithAll RT_MANGLER(RTAvlrFileOffsetDoWithAll)
452# define RTAvlrFileOffsetGet RT_MANGLER(RTAvlrFileOffsetGet)
453# define RTAvlrFileOffsetGetBestFit RT_MANGLER(RTAvlrFileOffsetGetBestFit)
454# define RTAvlrFileOffsetGetLeft RT_MANGLER(RTAvlrFileOffsetGetLeft)
455# define RTAvlrFileOffsetGetRight RT_MANGLER(RTAvlrFileOffsetGetRight)
456# define RTAvlrFileOffsetGetRoot RT_MANGLER(RTAvlrFileOffsetGetRoot)
457# define RTAvlrFileOffsetInsert RT_MANGLER(RTAvlrFileOffsetInsert)
458# define RTAvlrFileOffsetRangeGet RT_MANGLER(RTAvlrFileOffsetRangeGet)
459# define RTAvlrFileOffsetRangeRemove RT_MANGLER(RTAvlrFileOffsetRangeRemove)
460# define RTAvlrFileOffsetRemove RT_MANGLER(RTAvlrFileOffsetRemove)
461# define RTAvlrGCPtrDestroy RT_MANGLER(RTAvlrGCPtrDestroy)
462# define RTAvlrGCPtrDoWithAll RT_MANGLER(RTAvlrGCPtrDoWithAll)
463# define RTAvlrGCPtrGet RT_MANGLER(RTAvlrGCPtrGet)
464# define RTAvlrGCPtrGetBestFit RT_MANGLER(RTAvlrGCPtrGetBestFit)
465# define RTAvlrGCPtrGetLeft RT_MANGLER(RTAvlrGCPtrGetLeft)
466# define RTAvlrGCPtrGetRight RT_MANGLER(RTAvlrGCPtrGetRight)
467# define RTAvlrGCPtrGetRoot RT_MANGLER(RTAvlrGCPtrGetRoot)
468# define RTAvlrGCPtrInsert RT_MANGLER(RTAvlrGCPtrInsert)
469# define RTAvlrGCPtrRangeGet RT_MANGLER(RTAvlrGCPtrRangeGet)
470# define RTAvlrGCPtrRangeRemove RT_MANGLER(RTAvlrGCPtrRangeRemove)
471# define RTAvlrGCPtrRemove RT_MANGLER(RTAvlrGCPtrRemove)
472# define RTAvlroGCPhysDestroy RT_MANGLER(RTAvlroGCPhysDestroy)
473# define RTAvlroGCPhysDoWithAll RT_MANGLER(RTAvlroGCPhysDoWithAll)
474# define RTAvlroGCPhysGet RT_MANGLER(RTAvlroGCPhysGet)
475# define RTAvlroGCPhysGetBestFit RT_MANGLER(RTAvlroGCPhysGetBestFit)
476# define RTAvlroGCPhysGetLeft RT_MANGLER(RTAvlroGCPhysGetLeft)
477# define RTAvlroGCPhysGetRight RT_MANGLER(RTAvlroGCPhysGetRight)
478# define RTAvlroGCPhysGetRoot RT_MANGLER(RTAvlroGCPhysGetRoot)
479# define RTAvlroGCPhysInsert RT_MANGLER(RTAvlroGCPhysInsert)
480# define RTAvlroGCPhysRangeGet RT_MANGLER(RTAvlroGCPhysRangeGet)
481# define RTAvlroGCPhysRangeRemove RT_MANGLER(RTAvlroGCPhysRangeRemove)
482# define RTAvlroGCPhysRemove RT_MANGLER(RTAvlroGCPhysRemove)
483# define RTAvlroGCPtrDestroy RT_MANGLER(RTAvlroGCPtrDestroy)
484# define RTAvlroGCPtrDoWithAll RT_MANGLER(RTAvlroGCPtrDoWithAll)
485# define RTAvlroGCPtrGet RT_MANGLER(RTAvlroGCPtrGet)
486# define RTAvlroGCPtrGetBestFit RT_MANGLER(RTAvlroGCPtrGetBestFit)
487# define RTAvlroGCPtrGetLeft RT_MANGLER(RTAvlroGCPtrGetLeft)
488# define RTAvlroGCPtrGetRight RT_MANGLER(RTAvlroGCPtrGetRight)
489# define RTAvlroGCPtrGetRoot RT_MANGLER(RTAvlroGCPtrGetRoot)
490# define RTAvlroGCPtrInsert RT_MANGLER(RTAvlroGCPtrInsert)
491# define RTAvlroGCPtrRangeGet RT_MANGLER(RTAvlroGCPtrRangeGet)
492# define RTAvlroGCPtrRangeRemove RT_MANGLER(RTAvlroGCPtrRangeRemove)
493# define RTAvlroGCPtrRemove RT_MANGLER(RTAvlroGCPtrRemove)
494# define RTAvlroIOPortDestroy RT_MANGLER(RTAvlroIOPortDestroy)
495# define RTAvlroIOPortDoWithAll RT_MANGLER(RTAvlroIOPortDoWithAll)
496# define RTAvlroIOPortGet RT_MANGLER(RTAvlroIOPortGet)
497# define RTAvlroIOPortInsert RT_MANGLER(RTAvlroIOPortInsert)
498# define RTAvlroIOPortRangeGet RT_MANGLER(RTAvlroIOPortRangeGet)
499# define RTAvlroIOPortRangeRemove RT_MANGLER(RTAvlroIOPortRangeRemove)
500# define RTAvlroIOPortRemove RT_MANGLER(RTAvlroIOPortRemove)
501# define RTAvlrooGCPtrDestroy RT_MANGLER(RTAvlrooGCPtrDestroy)
502# define RTAvlrooGCPtrDoWithAll RT_MANGLER(RTAvlrooGCPtrDoWithAll)
503# define RTAvlrooGCPtrGet RT_MANGLER(RTAvlrooGCPtrGet)
504# define RTAvlrooGCPtrGetBestFit RT_MANGLER(RTAvlrooGCPtrGetBestFit)
505# define RTAvlrooGCPtrGetLeft RT_MANGLER(RTAvlrooGCPtrGetLeft)
506# define RTAvlrooGCPtrGetNextEqual RT_MANGLER(RTAvlrooGCPtrGetNextEqual)
507# define RTAvlrooGCPtrGetRight RT_MANGLER(RTAvlrooGCPtrGetRight)
508# define RTAvlrooGCPtrGetRoot RT_MANGLER(RTAvlrooGCPtrGetRoot)
509# define RTAvlrooGCPtrInsert RT_MANGLER(RTAvlrooGCPtrInsert)
510# define RTAvlrooGCPtrRangeGet RT_MANGLER(RTAvlrooGCPtrRangeGet)
511# define RTAvlrooGCPtrRangeRemove RT_MANGLER(RTAvlrooGCPtrRangeRemove)
512# define RTAvlrooGCPtrRemove RT_MANGLER(RTAvlrooGCPtrRemove)
513# define RTAvlrPVDestroy RT_MANGLER(RTAvlrPVDestroy)
514# define RTAvlrPVDoWithAll RT_MANGLER(RTAvlrPVDoWithAll)
515# define RTAvlrPVGet RT_MANGLER(RTAvlrPVGet)
516# define RTAvlrPVGetBestFit RT_MANGLER(RTAvlrPVGetBestFit)
517# define RTAvlrPVInsert RT_MANGLER(RTAvlrPVInsert)
518# define RTAvlrPVRangeGet RT_MANGLER(RTAvlrPVRangeGet)
519# define RTAvlrPVRangeRemove RT_MANGLER(RTAvlrPVRangeRemove)
520# define RTAvlrPVRemove RT_MANGLER(RTAvlrPVRemove)
521# define RTAvlrPVRemoveBestFit RT_MANGLER(RTAvlrPVRemoveBestFit)
522# define RTAvlrU64Destroy RT_MANGLER(RTAvlrU64Destroy)
523# define RTAvlrU64DoWithAll RT_MANGLER(RTAvlrU64DoWithAll)
524# define RTAvlrU64Get RT_MANGLER(RTAvlrU64Get)
525# define RTAvlrU64GetBestFit RT_MANGLER(RTAvlrU64GetBestFit)
526# define RTAvlrU64Insert RT_MANGLER(RTAvlrU64Insert)
527# define RTAvlrU64RangeGet RT_MANGLER(RTAvlrU64RangeGet)
528# define RTAvlrU64RangeRemove RT_MANGLER(RTAvlrU64RangeRemove)
529# define RTAvlrU64Remove RT_MANGLER(RTAvlrU64Remove)
530# define RTAvlrU64RemoveBestFit RT_MANGLER(RTAvlrU64RemoveBestFit)
531# define RTAvlrUIntPtrDestroy RT_MANGLER(RTAvlrUIntPtrDestroy)
532# define RTAvlrUIntPtrDoWithAll RT_MANGLER(RTAvlrUIntPtrDoWithAll)
533# define RTAvlrUIntPtrGet RT_MANGLER(RTAvlrUIntPtrGet)
534# define RTAvlrUIntPtrGetBestFit RT_MANGLER(RTAvlrUIntPtrGetBestFit)
535# define RTAvlrUIntPtrGetLeft RT_MANGLER(RTAvlrUIntPtrGetLeft)
536# define RTAvlrUIntPtrGetRight RT_MANGLER(RTAvlrUIntPtrGetRight)
537# define RTAvlrUIntPtrGetRoot RT_MANGLER(RTAvlrUIntPtrGetRoot)
538# define RTAvlrUIntPtrInsert RT_MANGLER(RTAvlrUIntPtrInsert)
539# define RTAvlrUIntPtrRangeGet RT_MANGLER(RTAvlrUIntPtrRangeGet)
540# define RTAvlrUIntPtrRangeRemove RT_MANGLER(RTAvlrUIntPtrRangeRemove)
541# define RTAvlrUIntPtrRemove RT_MANGLER(RTAvlrUIntPtrRemove)
542# define RTAvlU32Destroy RT_MANGLER(RTAvlU32Destroy)
543# define RTAvlU32DoWithAll RT_MANGLER(RTAvlU32DoWithAll)
544# define RTAvlU32Get RT_MANGLER(RTAvlU32Get)
545# define RTAvlU32GetBestFit RT_MANGLER(RTAvlU32GetBestFit)
546# define RTAvlU32Insert RT_MANGLER(RTAvlU32Insert)
547# define RTAvlU32Remove RT_MANGLER(RTAvlU32Remove)
548# define RTAvlU32RemoveBestFit RT_MANGLER(RTAvlU32RemoveBestFit)
549# define RTAvlUIntPtrDestroy RT_MANGLER(RTAvlUIntPtrDestroy)
550# define RTAvlUIntPtrDoWithAll RT_MANGLER(RTAvlUIntPtrDoWithAll)
551# define RTAvlUIntPtrGet RT_MANGLER(RTAvlUIntPtrGet)
552# define RTAvlUIntPtrGetBestFit RT_MANGLER(RTAvlUIntPtrGetBestFit)
553# define RTAvlUIntPtrGetLeft RT_MANGLER(RTAvlUIntPtrGetLeft)
554# define RTAvlUIntPtrGetRight RT_MANGLER(RTAvlUIntPtrGetRight)
555# define RTAvlUIntPtrGetRoot RT_MANGLER(RTAvlUIntPtrGetRoot)
556# define RTAvlUIntPtrInsert RT_MANGLER(RTAvlUIntPtrInsert)
557# define RTAvlUIntPtrRemove RT_MANGLER(RTAvlUIntPtrRemove)
558# define RTAvlULDestroy RT_MANGLER(RTAvlULDestroy)
559# define RTAvlULDoWithAll RT_MANGLER(RTAvlULDoWithAll)
560# define RTAvlULGet RT_MANGLER(RTAvlULGet)
561# define RTAvlULGetBestFit RT_MANGLER(RTAvlULGetBestFit)
562# define RTAvlULInsert RT_MANGLER(RTAvlULInsert)
563# define RTAvlULRemove RT_MANGLER(RTAvlULRemove)
564# define RTAvlULRemoveBestFit RT_MANGLER(RTAvlULRemoveBestFit)
565# define RTBase64Decode RT_MANGLER(RTBase64Decode)
566# define RTBase64DecodeEx RT_MANGLER(RTBase64DecodeEx)
567# define RTBase64DecodedSize RT_MANGLER(RTBase64DecodedSize)
568# define RTBase64DecodedSizeEx RT_MANGLER(RTBase64DecodedSizeEx)
569# define RTBase64Encode RT_MANGLER(RTBase64Encode)
570# define RTBase64EncodedLength RT_MANGLER(RTBase64EncodedLength)
571# define RTBldCfgCompiler RT_MANGLER(RTBldCfgCompiler)
572# define RTBldCfgRevision RT_MANGLER(RTBldCfgRevision)
573# define RTBldCfgRevisionStr RT_MANGLER(RTBldCfgRevisionStr)
574# define RTBldCfgTarget RT_MANGLER(RTBldCfgTarget)
575# define RTBldCfgTargetArch RT_MANGLER(RTBldCfgTargetArch)
576# define RTBldCfgTargetDotArch RT_MANGLER(RTBldCfgTargetDotArch)
577# define RTBldCfgType RT_MANGLER(RTBldCfgType)
578# define RTBldCfgVersion RT_MANGLER(RTBldCfgVersion)
579# define RTBldCfgVersionBuild RT_MANGLER(RTBldCfgVersionBuild)
580# define RTBldCfgVersionMajor RT_MANGLER(RTBldCfgVersionMajor)
581# define RTBldCfgVersionMinor RT_MANGLER(RTBldCfgVersionMinor)
582# define RTCdromOpen RT_MANGLER(RTCdromOpen)
583# define RTCdromRetain RT_MANGLER(RTCdromRetain)
584# define RTCdromRelease RT_MANGLER(RTCdromRelease)
585# define RTCdromQueryMountPoint RT_MANGLER(RTCdromQueryMountPoint)
586# define RTCdromUnmount RT_MANGLER(RTCdromUnmount)
587# define RTCdromEject RT_MANGLER(RTCdromEject)
588# define RTCdromLock RT_MANGLER(RTCdromLock)
589# define RTCdromUnlock RT_MANGLER(RTCdromUnlock)
590# define RTCdromCount RT_MANGLER(RTCdromCount)
591# define RTCdromOrdinalToName RT_MANGLER(RTCdromOrdinalToName)
592# define RTCdromOpenByOrdinal RT_MANGLER(RTCdromOpenByOrdinal)
593# define RTCidrStrToIPv4 RT_MANGLER(RTCidrStrToIPv4)
594# define RTCircBufAcquireReadBlock RT_MANGLER(RTCircBufAcquireReadBlock)
595# define RTCircBufAcquireWriteBlock RT_MANGLER(RTCircBufAcquireWriteBlock)
596# define RTCircBufCreate RT_MANGLER(RTCircBufCreate)
597# define RTCircBufDestroy RT_MANGLER(RTCircBufDestroy)
598# define RTCircBufFree RT_MANGLER(RTCircBufFree)
599# define RTCircBufIsReading RT_MANGLER(RTCircBufIsReading)
600# define RTCircBufIsWriting RT_MANGLER(RTCircBufIsWriting)
601# define RTCircBufOffsetRead RT_MANGLER(RTCircBufOffsetRead)
602# define RTCircBufOffsetWrite RT_MANGLER(RTCircBufOffsetWrite)
603# define RTCircBufReleaseReadBlock RT_MANGLER(RTCircBufReleaseReadBlock)
604# define RTCircBufReleaseWriteBlock RT_MANGLER(RTCircBufReleaseWriteBlock)
605# define RTCircBufReset RT_MANGLER(RTCircBufReset)
606# define RTCircBufSize RT_MANGLER(RTCircBufSize)
607# define RTCircBufUsed RT_MANGLER(RTCircBufUsed)
608# define RTCoreDumperDisable RT_MANGLER(RTCoreDumperDisable) /* solaris */
609# define RTCoreDumperSetup RT_MANGLER(RTCoreDumperSetup) /* solaris */
610# define RTCoreDumperTakeDump RT_MANGLER(RTCoreDumperTakeDump) /* solaris */
6d209b23
SF
611# define RTCrc16Ccitt RT_MANGLER(RTCrc16Ccitt)
612# define RTCrc16CcittProcess RT_MANGLER(RTCrc16CcittProcess)
613# define RTCrc16CcittFinish RT_MANGLER(RTCrc16CcittFinish)
614# define RTCrc16CcittStart RT_MANGLER(RTCrc16CcittStart)
056a1eb7
SF
615# define RTCrc32 RT_MANGLER(RTCrc32)
616# define RTCrc32Finish RT_MANGLER(RTCrc32Finish)
617# define RTCrc32Process RT_MANGLER(RTCrc32Process)
618# define RTCrc32Start RT_MANGLER(RTCrc32Start)
619# define RTCrc32C RT_MANGLER(RTCrc32C)
620# define RTCrc32CFinish RT_MANGLER(RTCrc32CFinish)
621# define RTCrc32CProcess RT_MANGLER(RTCrc32CProcess)
622# define RTCrc32CStart RT_MANGLER(RTCrc32CStart)
623# define RTCrc64 RT_MANGLER(RTCrc64)
624# define RTCrc64Finish RT_MANGLER(RTCrc64Finish)
625# define RTCrc64Process RT_MANGLER(RTCrc64Process)
626# define RTCrc64Start RT_MANGLER(RTCrc64Start)
627# define RTCrcAdler32 RT_MANGLER(RTCrcAdler32)
628# define RTCrcAdler32Finish RT_MANGLER(RTCrcAdler32Finish)
629# define RTCrcAdler32Process RT_MANGLER(RTCrcAdler32Process)
630# define RTCrcAdler32Start RT_MANGLER(RTCrcAdler32Start)
631# define RTCritSectDelete RT_MANGLER(RTCritSectDelete)
632# define RTCritSectEnter RT_MANGLER(RTCritSectEnter)
633# define RTCritSectEnterDebug RT_MANGLER(RTCritSectEnterDebug)
634# define RTCritSectEnterMultiple RT_MANGLER(RTCritSectEnterMultiple)
635# define RTCritSectEnterMultipleDebug RT_MANGLER(RTCritSectEnterMultipleDebug)
636# define RTCritSectInit RT_MANGLER(RTCritSectInit)
637# define RTCritSectInitEx RT_MANGLER(RTCritSectInitEx)
638# define RTCritSectLeave RT_MANGLER(RTCritSectLeave)
639# define RTCritSectLeaveMultiple RT_MANGLER(RTCritSectLeaveMultiple)
640# define RTCritSectSetSubClass RT_MANGLER(RTCritSectSetSubClass)
641# define RTCritSectTryEnter RT_MANGLER(RTCritSectTryEnter)
642# define RTCritSectTryEnterDebug RT_MANGLER(RTCritSectTryEnterDebug)
643# define RTCritSectRwDelete RT_MANGLER(RTCritSectRwDelete)
644# define RTCritSectRwEnterExcl RT_MANGLER(RTCritSectRwEnterExcl)
645# define RTCritSectRwEnterExclDebug RT_MANGLER(RTCritSectRwEnterExclDebug)
646# define RTCritSectRwEnterShared RT_MANGLER(RTCritSectRwEnterShared)
647# define RTCritSectRwEnterSharedDebug RT_MANGLER(RTCritSectRwEnterSharedDebug)
648# define RTCritSectRwGetReadCount RT_MANGLER(RTCritSectRwGetReadCount)
649# define RTCritSectRwGetWriteRecursion RT_MANGLER(RTCritSectRwGetWriteRecursion)
650# define RTCritSectRwGetWriterReadRecursion RT_MANGLER(RTCritSectRwGetWriterReadRecursion)
651# define RTCritSectRwInit RT_MANGLER(RTCritSectRwInit)
652# define RTCritSectRwInitEx RT_MANGLER(RTCritSectRwInitEx)
653# define RTCritSectRwIsReadOwner RT_MANGLER(RTCritSectRwIsReadOwner)
654# define RTCritSectRwIsWriteOwner RT_MANGLER(RTCritSectRwIsWriteOwner)
655# define RTCritSectRwLeaveExcl RT_MANGLER(RTCritSectRwLeaveExcl)
656# define RTCritSectRwLeaveShared RT_MANGLER(RTCritSectRwLeaveShared)
657# define RTCritSectRwSetSubClass RT_MANGLER(RTCritSectRwSetSubClass)
658# define RTCritSectRwTryEnterExcl RT_MANGLER(RTCritSectRwTryEnterExcl)
659# define RTCritSectRwTryEnterExclDebug RT_MANGLER(RTCritSectRwTryEnterExclDebug)
660# define RTCritSectRwTryEnterShared RT_MANGLER(RTCritSectRwTryEnterShared)
661# define RTCritSectRwTryEnterSharedDebug RT_MANGLER(RTCritSectRwTryEnterSharedDebug)
662# define RTDbgAsCreate RT_MANGLER(RTDbgAsCreate)
663# define RTDbgAsCreateF RT_MANGLER(RTDbgAsCreateF)
664# define RTDbgAsCreateV RT_MANGLER(RTDbgAsCreateV)
665# define RTDbgAsFirstAddr RT_MANGLER(RTDbgAsFirstAddr)
666# define RTDbgAsLastAddr RT_MANGLER(RTDbgAsLastAddr)
667# define RTDbgAsLineAdd RT_MANGLER(RTDbgAsLineAdd)
668# define RTDbgAsLineByAddr RT_MANGLER(RTDbgAsLineByAddr)
669# define RTDbgAsLineByAddrA RT_MANGLER(RTDbgAsLineByAddrA)
670# define RTDbgAsLockExcl RT_MANGLER(RTDbgAsLockExcl)
671# define RTDbgAsModuleByAddr RT_MANGLER(RTDbgAsModuleByAddr)
672# define RTDbgAsModuleByIndex RT_MANGLER(RTDbgAsModuleByIndex)
673# define RTDbgAsModuleByName RT_MANGLER(RTDbgAsModuleByName)
674# define RTDbgAsModuleCount RT_MANGLER(RTDbgAsModuleCount)
675# define RTDbgAsModuleLink RT_MANGLER(RTDbgAsModuleLink)
676# define RTDbgAsModuleLinkSeg RT_MANGLER(RTDbgAsModuleLinkSeg)
677# define RTDbgAsModuleQueryMapByIndex RT_MANGLER(RTDbgAsModuleQueryMapByIndex)
678# define RTDbgAsModuleUnlink RT_MANGLER(RTDbgAsModuleUnlink)
679# define RTDbgAsModuleUnlinkByAddr RT_MANGLER(RTDbgAsModuleUnlinkByAddr)
680# define RTDbgAsName RT_MANGLER(RTDbgAsName)
681# define RTDbgAsRelease RT_MANGLER(RTDbgAsRelease)
682# define RTDbgAsRetain RT_MANGLER(RTDbgAsRetain)
683# define RTDbgAsSymbolAdd RT_MANGLER(RTDbgAsSymbolAdd)
684# define RTDbgAsSymbolByAddr RT_MANGLER(RTDbgAsSymbolByAddr)
685# define RTDbgAsSymbolByAddrA RT_MANGLER(RTDbgAsSymbolByAddrA)
686# define RTDbgAsSymbolByName RT_MANGLER(RTDbgAsSymbolByName)
687# define RTDbgAsSymbolByNameA RT_MANGLER(RTDbgAsSymbolByNameA)
688# define RTDbgAsUnlockExcl RT_MANGLER(RTDbgAsUnlockExcl)
689# define RTDbgCfgCreate RT_MANGLER(RTDbgCfgCreate)
690# define RTDbgCfgRetain RT_MANGLER(RTDbgCfgRetain)
691# define RTDbgCfgRelease RT_MANGLER(RTDbgCfgRelease)
692# define RTDbgCfgChangeString RT_MANGLER(RTDbgCfgChangeString)
693# define RTDbgCfgChangeUInt RT_MANGLER(RTDbgCfgChangeUInt)
694# define RTDbgCfgQueryString RT_MANGLER(RTDbgCfgQueryString)
695# define RTDbgCfgQueryUInt RT_MANGLER(RTDbgCfgQueryUInt)
696# define RTDbgCfgOpenDbg RT_MANGLER(RTDbgCfgOpenDbg)
697# define RTDbgCfgOpenDsymBundle RT_MANGLER(RTDbgCfgOpenDsymBundle)
698# define RTDbgCfgOpenMachOImage RT_MANGLER(RTDbgCfgOpenMachOImage)
699# define RTDbgCfgOpenDwo RT_MANGLER(RTDbgCfgOpenDwo)
700# define RTDbgCfgOpenPdb70 RT_MANGLER(RTDbgCfgOpenPdb70)
701# define RTDbgCfgOpenPdb20 RT_MANGLER(RTDbgCfgOpenPdb20)
702# define RTDbgCfgOpenPeImage RT_MANGLER(RTDbgCfgOpenPeImage)
703# define RTDbgCfgSetLogCallback RT_MANGLER(RTDbgCfgSetLogCallback)
704# define RTDbgLineAlloc RT_MANGLER(RTDbgLineAlloc)
705# define RTDbgLineDup RT_MANGLER(RTDbgLineDup)
706# define RTDbgLineFree RT_MANGLER(RTDbgLineFree)
707# define RTDbgModCreate RT_MANGLER(RTDbgModCreate)
708# define RTDbgModCreateFromDbg RT_MANGLER(RTDbgModCreateFromDbg)
709# define RTDbgModCreateFromDwo RT_MANGLER(RTDbgModCreateFromDwo)
710# define RTDbgModCreateFromImage RT_MANGLER(RTDbgModCreateFromImage)
711# define RTDbgModCreateFromMap RT_MANGLER(RTDbgModCreateFromMap)
712# define RTDbgModCreateFromPdb RT_MANGLER(RTDbgModCreateFromPdb)
713# define RTDbgModCreateFromPeImage RT_MANGLER(RTDbgModCreateFromPeImage)
714# define RTDbgModCreateFromMachOImage RT_MANGLER(RTDbgModCreateFromMachOImage)
715# define RTDbgModGetTag RT_MANGLER(RTDbgModGetTag)
716# define RTDbgModImageSize RT_MANGLER(RTDbgModImageSize)
717# define RTDbgModIsDeferred RT_MANGLER(RTDbgModIsDeferred)
718# define RTDbgModIsExports RT_MANGLER(RTDbgModIsExports)
719# define RTDbgModLineAdd RT_MANGLER(RTDbgModLineAdd)
720# define RTDbgModLineByAddr RT_MANGLER(RTDbgModLineByAddr)
721# define RTDbgModLineByAddrA RT_MANGLER(RTDbgModLineByAddrA)
722# define RTDbgModLineByOrdinal RT_MANGLER(RTDbgModLineByOrdinal)
723# define RTDbgModLineByOrdinalA RT_MANGLER(RTDbgModLineByOrdinalA)
724# define RTDbgModLineCount RT_MANGLER(RTDbgModLineCount)
725# define RTDbgModName RT_MANGLER(RTDbgModName)
726# define RTDbgModDebugFile RT_MANGLER(RTDbgModDebugFile)
727# define RTDbgModImageFile RT_MANGLER(RTDbgModImageFile)
728# define RTDbgModImageFileUsed RT_MANGLER(RTDbgModImageFileUsed)
729# define RTDbgModRelease RT_MANGLER(RTDbgModRelease)
730# define RTDbgModRemoveAll RT_MANGLER(RTDbgModRemoveAll)
731# define RTDbgModRetain RT_MANGLER(RTDbgModRetain)
732# define RTDbgModRvaToSegOff RT_MANGLER(RTDbgModRvaToSegOff)
733# define RTDbgModSegmentAdd RT_MANGLER(RTDbgModSegmentAdd)
734# define RTDbgModSegmentByIndex RT_MANGLER(RTDbgModSegmentByIndex)
735# define RTDbgModSegmentCount RT_MANGLER(RTDbgModSegmentCount)
736# define RTDbgModSegmentRva RT_MANGLER(RTDbgModSegmentRva)
737# define RTDbgModSegmentSize RT_MANGLER(RTDbgModSegmentSize)
738# define RTDbgModSetTag RT_MANGLER(RTDbgModSetTag)
739# define RTDbgModSymbolAdd RT_MANGLER(RTDbgModSymbolAdd)
740# define RTDbgModSymbolByAddr RT_MANGLER(RTDbgModSymbolByAddr)
741# define RTDbgModSymbolByAddrA RT_MANGLER(RTDbgModSymbolByAddrA)
742# define RTDbgModSymbolByName RT_MANGLER(RTDbgModSymbolByName)
743# define RTDbgModSymbolByNameA RT_MANGLER(RTDbgModSymbolByNameA)
744# define RTDbgModSymbolByOrdinal RT_MANGLER(RTDbgModSymbolByOrdinal)
745# define RTDbgModSymbolByOrdinalA RT_MANGLER(RTDbgModSymbolByOrdinalA)
746# define RTDbgModSymbolCount RT_MANGLER(RTDbgModSymbolCount)
747# define RTDbgSymbolAlloc RT_MANGLER(RTDbgSymbolAlloc)
748# define RTDbgSymbolDup RT_MANGLER(RTDbgSymbolDup)
749# define RTDbgSymbolFree RT_MANGLER(RTDbgSymbolFree)
750# define RTDirClose RT_MANGLER(RTDirClose)
751# define RTDirCreate RT_MANGLER(RTDirCreate)
752# define RTDirCreateFullPath RT_MANGLER(RTDirCreateFullPath)
753# define RTDirCreateTemp RT_MANGLER(RTDirCreateTemp)
754# define RTDirCreateTempSecure RT_MANGLER(RTDirCreateTempSecure)
755# define RTDirCreateUniqueNumbered RT_MANGLER(RTDirCreateUniqueNumbered)
756# define RTDirEntryIsStdDotLink RT_MANGLER(RTDirEntryIsStdDotLink)
757# define RTDirEntryExIsStdDotLink RT_MANGLER(RTDirEntryExIsStdDotLink)
758# define RTDirExists RT_MANGLER(RTDirExists)
759# define RTDirFlush RT_MANGLER(RTDirFlush)
760# define RTDirFlushParent RT_MANGLER(RTDirFlushParent)
26894aac 761# define RTDirIsValid RT_MANGLER(RTDirIsValid)
056a1eb7
SF
762# define RTDirOpen RT_MANGLER(RTDirOpen)
763# define RTDirOpenFiltered RT_MANGLER(RTDirOpenFiltered)
764# define RTDirQueryInfo RT_MANGLER(RTDirQueryInfo)
765# define RTDirQueryUnknownType RT_MANGLER(RTDirQueryUnknownType)
766# define RTDirQueryUnknownTypeEx RT_MANGLER(RTDirQueryUnknownTypeEx)
767# define RTDirRead RT_MANGLER(RTDirRead)
768# define RTDirReadEx RT_MANGLER(RTDirReadEx)
26894aac
SF
769# define RTDirReadExA RT_MANGLER(RTDirReadExA)
770# define RTDirReadExAFree RT_MANGLER(RTDirReadExAFree)
056a1eb7
SF
771# define RTDirRemove RT_MANGLER(RTDirRemove)
772# define RTDirRemoveRecursive RT_MANGLER(RTDirRemoveRecursive)
773# define RTDirRename RT_MANGLER(RTDirRename)
774# define RTDirSetTimes RT_MANGLER(RTDirSetTimes)
26894aac
SF
775# define RTDirRelFileOpen RT_MANGLER(RTDirRelFileOpen)
776# define RTDirRelDirOpen RT_MANGLER(RTDirRelDirOpen)
777# define RTDirRelDirOpenFiltered RT_MANGLER(RTDirRelDirOpenFiltered)
778# define RTDirRelDirCreate RT_MANGLER(RTDirRelDirCreate)
779# define RTDirRelDirRemove RT_MANGLER(RTDirRelDirRemove)
780# define RTDirRelPathQueryInfo RT_MANGLER(RTDirRelPathQueryInfo)
781# define RTDirRelPathSetMode RT_MANGLER(RTDirRelPathSetMode)
782# define RTDirRelPathSetTimes RT_MANGLER(RTDirRelPathSetTimes)
783# define RTDirRelPathSetOwner RT_MANGLER(RTDirRelPathSetOwner)
784# define RTDirRelPathRename RT_MANGLER(RTDirRelPathRename)
785# define RTDirRelPathUnlink RT_MANGLER(RTDirRelPathUnlink)
786# define RTDirRelSymlinkCreate RT_MANGLER(RTDirRelSymlinkCreate)
787# define RTDirRelSymlinkRead RT_MANGLER(RTDirRelSymlinkRead)
788# define RTVfsDirOpenDir RT_MANGLER(RTVfsDirOpenDir)
789# define RTVfsDirFromRTDir RT_MANGLER(RTVfsDirFromRTDir)
790# define RTVfsDirOpenNormal RT_MANGLER(RTVfsDirOpenNormal)
056a1eb7 791# define RTDvmCreate RT_MANGLER(RTDvmCreate)
26894aac 792# define RTDvmCreateFromVfsFile RT_MANGLER(RTDvmCreateFromVfsFile)
056a1eb7
SF
793# define RTDvmRetain RT_MANGLER(RTDvmRetain)
794# define RTDvmRelease RT_MANGLER(RTDvmRelease)
795# define RTDvmMapOpen RT_MANGLER(RTDvmMapOpen)
796# define RTDvmMapInitialize RT_MANGLER(RTDvmMapInitialize)
26894aac
SF
797# define RTDvmMapGetFormatName RT_MANGLER(RTDvmMapGetFormatName)
798# define RTDvmMapGetFormatType RT_MANGLER(RTDvmMapGetFormatType)
056a1eb7
SF
799# define RTDvmMapGetValidVolumes RT_MANGLER(RTDvmMapGetValidVolumes)
800# define RTDvmMapGetMaxVolumes RT_MANGLER(RTDvmMapGetMaxVolumes)
801# define RTDvmMapQueryBlockStatus RT_MANGLER(RTDvmMapQueryBlockStatus)
802# define RTDvmMapQueryFirstVolume RT_MANGLER(RTDvmMapQueryFirstVolume)
803# define RTDvmMapQueryNextVolume RT_MANGLER(RTDvmMapQueryNextVolume)
804# define RTDvmVolumeRetain RT_MANGLER(RTDvmVolumeRetain)
805# define RTDvmVolumeRelease RT_MANGLER(RTDvmVolumeRelease)
806# define RTDvmVolumeGetSize RT_MANGLER(RTDvmVolumeGetSize)
807# define RTDvmVolumeQueryName RT_MANGLER(RTDvmVolumeQueryName)
808# define RTDvmVolumeGetType RT_MANGLER(RTDvmVolumeGetType)
809# define RTDvmVolumeGetFlags RT_MANGLER(RTDvmVolumeGetFlags)
810# define RTDvmVolumeRead RT_MANGLER(RTDvmVolumeRead)
811# define RTDvmVolumeWrite RT_MANGLER(RTDvmVolumeWrite)
812# define RTDvmVolumeSetQueryBlockStatusCallback RT_MANGLER(RTDvmVolumeSetQueryBlockStatusCallback)
813# define RTDvmVolumeTypeGetDescr RT_MANGLER(RTDvmVolumeTypeGetDescr)
814# define RTDvmVolumeCreateVfsFile RT_MANGLER(RTDvmVolumeCreateVfsFile)
815# define RTEnvApplyChanges RT_MANGLER(RTEnvApplyChanges)
816# define RTEnvClone RT_MANGLER(RTEnvClone)
817# define RTEnvCloneUtf16Block RT_MANGLER(RTEnvCloneUtf16Block)
818# define RTEnvCountEx RT_MANGLER(RTEnvCountEx)
819# define RTEnvCreate RT_MANGLER(RTEnvCreate)
820# define RTEnvCreateChangeRecord RT_MANGLER(RTEnvCreateChangeRecord)
821# define RTEnvDestroy RT_MANGLER(RTEnvDestroy)
822# define RTEnvDupEx RT_MANGLER(RTEnvDupEx)
823# define RTEnvExist RT_MANGLER(RTEnvExist)
824# define RTEnvExistsBad RT_MANGLER(RTEnvExistsBad)
825# define RTEnvExistsUtf8 RT_MANGLER(RTEnvExistsUtf8)
826# define RTEnvExistEx RT_MANGLER(RTEnvExistEx)
827# define RTEnvFreeUtf8Block RT_MANGLER(RTEnvFreeUtf8Block)
828# define RTEnvFreeUtf16Block RT_MANGLER(RTEnvFreeUtf16Block)
829# define RTEnvGet RT_MANGLER(RTEnvGet)
830# define RTEnvGetBad RT_MANGLER(RTEnvGetBad)
831# define RTEnvGetByIndexEx RT_MANGLER(RTEnvGetByIndexEx)
832# define RTEnvGetByIndexRawEx RT_MANGLER(RTEnvGetByIndexRawEx)
833# define RTEnvGetUtf8 RT_MANGLER(RTEnvGetUtf8)
834# define RTEnvGetEx RT_MANGLER(RTEnvGetEx)
835# define RTEnvGetExecEnvP RT_MANGLER(RTEnvGetExecEnvP)
836# define RTEnvIsChangeRecord RT_MANGLER(RTEnvIsChangeRecord)
837# define RTEnvPut RT_MANGLER(RTEnvPut)
838# define RTEnvPutBad RT_MANGLER(RTEnvPutBad)
839# define RTEnvPutUtf8 RT_MANGLER(RTEnvPutUtf8)
840# define RTEnvPutEx RT_MANGLER(RTEnvPutEx)
841# define RTEnvQueryUtf16Block RT_MANGLER(RTEnvQueryUtf16Block)
842# define RTEnvQueryUtf8Block RT_MANGLER(RTEnvQueryUtf8Block)
843# define RTEnvReset RT_MANGLER(RTEnvReset)
844# define RTEnvSet RT_MANGLER(RTEnvSet)
845# define RTEnvSetBad RT_MANGLER(RTEnvSetBad)
846# define RTEnvSetUtf8 RT_MANGLER(RTEnvSetUtf8)
847# define RTEnvSetEx RT_MANGLER(RTEnvSetEx)
848# define RTEnvUnset RT_MANGLER(RTEnvUnset)
849# define RTEnvUnsetBad RT_MANGLER(RTEnvUnsetBad)
850# define RTEnvUnsetUtf8 RT_MANGLER(RTEnvUnsetUtf8)
851# define RTEnvUnsetEx RT_MANGLER(RTEnvUnsetEx)
852# define RTErrCOMGet RT_MANGLER(RTErrCOMGet)
853# define RTErrConvertFromErrno RT_MANGLER(RTErrConvertFromErrno)
854# define RTErrConvertToErrno RT_MANGLER(RTErrConvertToErrno)
855# define RTErrGet RT_MANGLER(RTErrGet)
856# define RTErrInfoAlloc RT_MANGLER(RTErrInfoAlloc)
857# define RTErrInfoAllocEx RT_MANGLER(RTErrInfoAllocEx)
858# define RTErrInfoFree RT_MANGLER(RTErrInfoFree)
859# define RTErrInfoSet RT_MANGLER(RTErrInfoSet)
860# define RTErrInfoSetF RT_MANGLER(RTErrInfoSetF)
861# define RTErrInfoSetV RT_MANGLER(RTErrInfoSetV)
6d209b23
SF
862# define RTErrInfoLogAndSet RT_MANGLER(RTErrInfoLogAndSet)
863# define RTErrInfoLogAndSetF RT_MANGLER(RTErrInfoLogAndSetF)
864# define RTErrInfoLogAndSetV RT_MANGLER(RTErrInfoLogAndSetV)
865# define RTErrInfoLogAndAdd RT_MANGLER(RTErrInfoLogAndAdd)
866# define RTErrInfoLogAndAddF RT_MANGLER(RTErrInfoLogAndAddF)
867# define RTErrInfoLogAndAddV RT_MANGLER(RTErrInfoLogAndAddV)
056a1eb7
SF
868# define RTErrVarsAreEqual RT_MANGLER(RTErrVarsAreEqual)
869# define RTErrVarsHaveChanged RT_MANGLER(RTErrVarsHaveChanged)
870# define RTErrVarsRestore RT_MANGLER(RTErrVarsRestore)
871# define RTErrVarsSave RT_MANGLER(RTErrVarsSave)
872# define RTFileAioCtxAssociateWithFile RT_MANGLER(RTFileAioCtxAssociateWithFile)
873# define RTFileAioCtxCreate RT_MANGLER(RTFileAioCtxCreate)
874# define RTFileAioCtxDestroy RT_MANGLER(RTFileAioCtxDestroy)
875# define RTFileAioCtxGetMaxReqCount RT_MANGLER(RTFileAioCtxGetMaxReqCount)
876# define RTFileAioCtxSubmit RT_MANGLER(RTFileAioCtxSubmit)
877# define RTFileAioCtxWait RT_MANGLER(RTFileAioCtxWait)
878# define RTFileAioCtxWakeup RT_MANGLER(RTFileAioCtxWakeup)
879# define RTFileAioGetLimits RT_MANGLER(RTFileAioGetLimits)
880# define RTFileAioReqCancel RT_MANGLER(RTFileAioReqCancel)
881# define RTFileAioReqCreate RT_MANGLER(RTFileAioReqCreate)
882# define RTFileAioReqDestroy RT_MANGLER(RTFileAioReqDestroy)
883# define RTFileAioReqGetRC RT_MANGLER(RTFileAioReqGetRC)
884# define RTFileAioReqGetUser RT_MANGLER(RTFileAioReqGetUser)
885# define RTFileAioReqPrepareFlush RT_MANGLER(RTFileAioReqPrepareFlush)
886# define RTFileAioReqPrepareRead RT_MANGLER(RTFileAioReqPrepareRead)
887# define RTFileAioReqPrepareWrite RT_MANGLER(RTFileAioReqPrepareWrite)
888# define RTFileChangeLock RT_MANGLER(RTFileChangeLock)
889# define RTFileClose RT_MANGLER(RTFileClose)
890# define RTFileCompare RT_MANGLER(RTFileCompare)
891# define RTFileCompareByHandles RT_MANGLER(RTFileCompareByHandles)
892# define RTFileCompareByHandlesEx RT_MANGLER(RTFileCompareByHandlesEx)
893# define RTFileCompareEx RT_MANGLER(RTFileCompareEx)
894# define RTFileCopy RT_MANGLER(RTFileCopy)
895# define RTFileCopyByHandles RT_MANGLER(RTFileCopyByHandles)
896# define RTFileCopyByHandlesEx RT_MANGLER(RTFileCopyByHandlesEx)
897# define RTFileCopyEx RT_MANGLER(RTFileCopyEx)
898# define RTFileCreateTemp RT_MANGLER(RTFileCreateTemp)
899# define RTFileCreateTempSecure RT_MANGLER(RTFileCreateTempSecure)
900# define RTFileDelete RT_MANGLER(RTFileDelete)
901# define RTFileExists RT_MANGLER(RTFileExists)
902# define RTFileFlush RT_MANGLER(RTFileFlush)
903# define RTFileFromNative RT_MANGLER(RTFileFromNative)
904# define RTFileGetMaxSize RT_MANGLER(RTFileGetMaxSize)
905# define RTFileGetMaxSizeEx RT_MANGLER(RTFileGetMaxSizeEx)
906# define RTFileGetSize RT_MANGLER(RTFileGetSize)
907# define RTFileIoCtl RT_MANGLER(RTFileIoCtl)
908# define RTFileIsValid RT_MANGLER(RTFileIsValid)
909# define RTFileLock RT_MANGLER(RTFileLock)
910# define RTFileModeToFlags RT_MANGLER(RTFileModeToFlags)
911# define RTFileModeToFlagsEx RT_MANGLER(RTFileModeToFlagsEx)
912# define RTFileMove RT_MANGLER(RTFileMove)
913# define RTFileOpen RT_MANGLER(RTFileOpen)
914# define RTFileOpenBitBucket RT_MANGLER(RTFileOpenBitBucket)
915# define RTFileOpenF RT_MANGLER(RTFileOpenF)
916# define RTFileOpenV RT_MANGLER(RTFileOpenV)
917# define RTFileOpenTemp RT_MANGLER(RTFileOpenTemp)
918# define RTFileQueryFsSizes RT_MANGLER(RTFileQueryFsSizes)
919# define RTFileQueryInfo RT_MANGLER(RTFileQueryInfo)
920# define RTFileQuerySize RT_MANGLER(RTFileQuerySize)
921# define RTFileRead RT_MANGLER(RTFileRead)
922# define RTFileReadAll RT_MANGLER(RTFileReadAll)
923# define RTFileReadAllByHandle RT_MANGLER(RTFileReadAllByHandle)
924# define RTFileReadAllByHandleEx RT_MANGLER(RTFileReadAllByHandleEx)
925# define RTFileReadAllEx RT_MANGLER(RTFileReadAllEx)
926# define RTFileReadAllFree RT_MANGLER(RTFileReadAllFree)
927# define RTFileReadAt RT_MANGLER(RTFileReadAt)
928# define RTFileRename RT_MANGLER(RTFileRename)
929# define RTFileSeek RT_MANGLER(RTFileSeek)
930# define RTFileSetAllocationSize RT_MANGLER(RTFileSetAllocationSize)
931# define RTFileSetForceFlags RT_MANGLER(RTFileSetForceFlags)
932# define RTFileSetMode RT_MANGLER(RTFileSetMode)
933# define RTFileSetOwner RT_MANGLER(RTFileSetOwner)
934# define RTFileSetSize RT_MANGLER(RTFileSetSize)
935# define RTFileSetTimes RT_MANGLER(RTFileSetTimes)
936# define RTFileSgReadAt RT_MANGLER(RTFileSgReadAt)
937# define RTFileSgWriteAt RT_MANGLER(RTFileSgWriteAt)
938# define RTFileTell RT_MANGLER(RTFileTell)
939# define RTFileToNative RT_MANGLER(RTFileToNative)
940# define RTFileUnlock RT_MANGLER(RTFileUnlock)
941# define RTFileWrite RT_MANGLER(RTFileWrite)
942# define RTFileWriteAt RT_MANGLER(RTFileWriteAt)
943# define RTFilesystemVfsFromFile RT_MANGLER(RTFilesystemVfsFromFile)
944# define RTFsIsCaseSensitive RT_MANGLER(RTFsIsCaseSensitive)
945# define RTFsQueryProperties RT_MANGLER(RTFsQueryProperties)
946# define RTFsQuerySerial RT_MANGLER(RTFsQuerySerial)
947# define RTFsQuerySizes RT_MANGLER(RTFsQuerySizes)
948# define RTFsQueryType RT_MANGLER(RTFsQueryType)
949# define RTFsTypeName RT_MANGLER(RTFsTypeName)
6d209b23
SF
950# define RTFsFatVolOpen RT_MANGLER(RTFsFatVolOpen)
951# define RTFsFatVolFormat RT_MANGLER(RTFsFatVolFormat)
952# define RTFsFatVolFormat144 RT_MANGLER(RTFsFatVolFormat144)
953# define RTFsIso9660VolOpen RT_MANGLER(RTFsIso9660VolOpen)
954# define RTFsIsoMakerCreate RT_MANGLER(RTFsIsoMakerCreate)
955# define RTFsIsoMakerRetain RT_MANGLER(RTFsIsoMakerRetain)
956# define RTFsIsoMakerRelease RT_MANGLER(RTFsIsoMakerRelease)
957# define RTFsIsoMakerBootCatSetFile RT_MANGLER(RTFsIsoMakerBootCatSetFile)
958# define RTFsIsoMakerBootCatSetValidationEntry RT_MANGLER(RTFsIsoMakerBootCatSetValidationEntry)
959# define RTFsIsoMakerBootCatSetSectionEntry RT_MANGLER(RTFsIsoMakerBootCatSetSectionEntry)
960# define RTFsIsoMakerBootCatSetSectionHeaderEntry RT_MANGLER(RTFsIsoMakerBootCatSetSectionHeaderEntry)
961# define RTFsIsoMakerQueryObjIdxForBootCatalog RT_MANGLER(RTFsIsoMakerQueryObjIdxForBootCatalog)
962# define RTFsIsoMakerGetIso9660Level RT_MANGLER(RTFsIsoMakerGetIso9660Level)
963# define RTFsIsoMakerSetImagePadding RT_MANGLER(RTFsIsoMakerSetImagePadding)
964# define RTFsIsoMakerSetIso9660Level RT_MANGLER(RTFsIsoMakerSetIso9660Level)
965# define RTFsIsoMakerSetJolietUcs2Level RT_MANGLER(RTFsIsoMakerSetJolietUcs2Level)
966# define RTFsIsoMakerSetRockRidgeLevel RT_MANGLER(RTFsIsoMakerSetRockRidgeLevel)
967# define RTFsIsoMakerSetJolietRockRidgeLevel RT_MANGLER(RTFsIsoMakerSetJolietRockRidgeLevel)
968# define RTFsIsoMakerSetAttribInheritStyle RT_MANGLER(RTFsIsoMakerSetAttribInheritStyle)
969# define RTFsIsoMakerSetDefaultDirMode RT_MANGLER(RTFsIsoMakerSetDefaultDirMode)
970# define RTFsIsoMakerSetDefaultFileMode RT_MANGLER(RTFsIsoMakerSetDefaultFileMode)
971# define RTFsIsoMakerSetForcedDirMode RT_MANGLER(RTFsIsoMakerSetForcedDirMode)
972# define RTFsIsoMakerSetForcedFileMode RT_MANGLER(RTFsIsoMakerSetForcedFileMode)
973# define RTFsIsoMakerSetPathGroupId RT_MANGLER(RTFsIsoMakerSetPathGroupId)
974# define RTFsIsoMakerSetPathMode RT_MANGLER(RTFsIsoMakerSetPathMode)
975# define RTFsIsoMakerSetPathOwnerId RT_MANGLER(RTFsIsoMakerSetPathOwnerId)
976# define RTFsIsoMakerSetSysAreaContent RT_MANGLER(RTFsIsoMakerSetSysAreaContent)
977# define RTFsIsoMakerSetStringProp RT_MANGLER(RTFsIsoMakerSetStringProp)
978# define RTFsIsoMakerGetObjIdxForPath RT_MANGLER(RTFsIsoMakerGetObjIdxForPath)
979# define RTFsIsoMakerObjEnableBootInfoTablePatching RT_MANGLER(RTFsIsoMakerObjEnableBootInfoTablePatching)
980# define RTFsIsoMakerObjQueryDataSize RT_MANGLER(RTFsIsoMakerObjQueryDataSize)
981# define RTFsIsoMakerObjRemove RT_MANGLER(RTFsIsoMakerObjRemove)
982# define RTFsIsoMakerObjSetPath RT_MANGLER(RTFsIsoMakerObjSetPath)
983# define RTFsIsoMakerObjSetNameAndParent RT_MANGLER(RTFsIsoMakerObjSetNameAndParent)
984# define RTFsIsoMakerObjSetRockName RT_MANGLER(RTFsIsoMakerObjSetRockName)
985# define RTFsIsoMakerAddUnnamedDir RT_MANGLER(RTFsIsoMakerAddUnnamedDir)
986# define RTFsIsoMakerAddDir RT_MANGLER(RTFsIsoMakerAddDir)
987# define RTFsIsoMakerAddFileWithSrcPath RT_MANGLER(RTFsIsoMakerAddFileWithSrcPath)
988# define RTFsIsoMakerAddFileWithVfsFile RT_MANGLER(RTFsIsoMakerAddFileWithVfsFile)
989# define RTFsIsoMakerAddUnnamedFileWithSrcPath RT_MANGLER(RTFsIsoMakerAddUnnamedFileWithSrcPath)
990# define RTFsIsoMakerAddUnnamedFileWithVfsFile RT_MANGLER(RTFsIsoMakerAddUnnamedFileWithVfsFile)
991# define RTFsIsoMakerAddUnnamedFileWithCommonSrc RT_MANGLER(RTFsIsoMakerAddUnnamedFileWithCommonSrc)
992# define RTFsIsoMakerAddSymlink RT_MANGLER(RTFsIsoMakerAddSymlink)
993# define RTFsIsoMakerAddUnnamedSymlink RT_MANGLER(RTFsIsoMakerAddUnnamedSymlink)
994# define RTFsIsoMakerAddCommonSourceFile RT_MANGLER(RTFsIsoMakerAddCommonSourceFile)
995# define RTFsIsoMakerImport RT_MANGLER(RTFsIsoMakerImport)
996# define RTFsIsoMakerFinalize RT_MANGLER(RTFsIsoMakerFinalize)
997# define RTFsIsoMakerCreateVfsOutputFile RT_MANGLER(RTFsIsoMakerCreateVfsOutputFile)
998# define RTFsIsoMakerCmd RT_MANGLER(RTFsIsoMakerCmd)
999# define RTFsIsoMakerCmdEx RT_MANGLER(RTFsIsoMakerCmdEx)
056a1eb7
SF
1000# define RTGetOpt RT_MANGLER(RTGetOpt)
1001# define RTGetOptArgvFree RT_MANGLER(RTGetOptArgvFree)
6d209b23 1002# define RTGetOptArgvFreeEx RT_MANGLER(RTGetOptArgvFreeEx)
056a1eb7
SF
1003# define RTGetOptArgvFromString RT_MANGLER(RTGetOptArgvFromString)
1004# define RTGetOptArgvToString RT_MANGLER(RTGetOptArgvToString)
1005# define RTGetOptArgvToUtf16String RT_MANGLER(RTGetOptArgvToUtf16String)
1006# define RTGetOptFetchValue RT_MANGLER(RTGetOptFetchValue)
1007# define RTGetOptInit RT_MANGLER(RTGetOptInit)
6d209b23 1008# define RTGetOptNonOptionArrayPtr RT_MANGLER(RTGetOptNonOptionArrayPtr)
26894aac 1009# define RTGetOptFormatError RT_MANGLER(RTGetOptFormatError)
056a1eb7
SF
1010# define RTGetOptPrintError RT_MANGLER(RTGetOptPrintError)
1011# define RTHandleClose RT_MANGLER(RTHandleClose)
1012# define RTHandleGetStandard RT_MANGLER(RTHandleGetStandard)
1013# define RTHandleTableAlloc RT_MANGLER(RTHandleTableAlloc)
1014# define RTHandleTableAllocWithCtx RT_MANGLER(RTHandleTableAllocWithCtx)
1015# define RTHandleTableCreate RT_MANGLER(RTHandleTableCreate)
1016# define RTHandleTableCreateEx RT_MANGLER(RTHandleTableCreateEx)
1017# define RTHandleTableDestroy RT_MANGLER(RTHandleTableDestroy)
1018# define RTHandleTableFree RT_MANGLER(RTHandleTableFree)
1019# define RTHandleTableFreeWithCtx RT_MANGLER(RTHandleTableFreeWithCtx)
1020# define RTHandleTableLookup RT_MANGLER(RTHandleTableLookup)
1021# define RTHandleTableLookupWithCtx RT_MANGLER(RTHandleTableLookupWithCtx)
1022# define RTHeapOffsetAlloc RT_MANGLER(RTHeapOffsetAlloc)
1023# define RTHeapOffsetAllocZ RT_MANGLER(RTHeapOffsetAllocZ)
1024# define RTHeapOffsetDump RT_MANGLER(RTHeapOffsetDump)
1025# define RTHeapOffsetFree RT_MANGLER(RTHeapOffsetFree)
1026# define RTHeapOffsetGetFreeSize RT_MANGLER(RTHeapOffsetGetFreeSize)
1027# define RTHeapOffsetGetHeapSize RT_MANGLER(RTHeapOffsetGetHeapSize)
1028# define RTHeapOffsetInit RT_MANGLER(RTHeapOffsetInit)
1029# define RTHeapOffsetSize RT_MANGLER(RTHeapOffsetSize)
1030# define RTHeapSimpleAlloc RT_MANGLER(RTHeapSimpleAlloc)
1031# define RTHeapSimpleAllocZ RT_MANGLER(RTHeapSimpleAllocZ)
1032# define RTHeapSimpleDump RT_MANGLER(RTHeapSimpleDump)
1033# define RTHeapSimpleFree RT_MANGLER(RTHeapSimpleFree)
1034# define RTHeapSimpleGetFreeSize RT_MANGLER(RTHeapSimpleGetFreeSize)
1035# define RTHeapSimpleGetHeapSize RT_MANGLER(RTHeapSimpleGetHeapSize)
1036# define RTHeapSimpleInit RT_MANGLER(RTHeapSimpleInit)
1037# define RTHeapSimpleRelocate RT_MANGLER(RTHeapSimpleRelocate)
1038# define RTHeapSimpleSize RT_MANGLER(RTHeapSimpleSize)
1039# define RTHttpGetFile RT_MANGLER(RTHttpGetFile)
1040# define RTHttpUseSystemProxySettings RT_MANGLER(RTHttpUseSystemProxySettings)
6d209b23
SF
1041# define RTIniFileCreateFromVfsFile RT_MANGLER(RTIniFileCreateFromVfsFile)
1042# define RTIniFileRetain RT_MANGLER(RTIniFileRetain)
1043# define RTIniFileRelease RT_MANGLER(RTIniFileRelease)
1044# define RTIniFileQueryPair RT_MANGLER(RTIniFileQueryPair)
1045# define RTIniFileQueryValue RT_MANGLER(RTIniFileQueryValue)
056a1eb7
SF
1046# define RTIsoFsClose RT_MANGLER(RTIsoFsClose)
1047# define RTIsoFsExtractFile RT_MANGLER(RTIsoFsExtractFile)
1048# define RTIsoFsGetFileInfo RT_MANGLER(RTIsoFsGetFileInfo)
1049# define RTIsoFsOpen RT_MANGLER(RTIsoFsOpen)
1050# define RTJsonIteratorBegin RT_MANGLER(RTJsonIteratorBegin)
1051# define RTJsonIteratorFree RT_MANGLER(RTJsonIteratorFree)
1052# define RTJsonIteratorNext RT_MANGLER(RTJsonIteratorNext)
1053# define RTJsonIteratorQueryValue RT_MANGLER(RTJsonIteratorQueryValue)
1054# define RTJsonParseFromBuf RT_MANGLER(RTJsonParseFromBuf)
1055# define RTJsonParseFromFile RT_MANGLER(RTJsonParseFromFile)
1056# define RTJsonParseFromString RT_MANGLER(RTJsonParseFromString)
1057# define RTJsonValueGetArraySize RT_MANGLER(RTJsonValueGetArraySize)
1058# define RTJsonValueGetString RT_MANGLER(RTJsonValueGetString)
1059# define RTJsonValueGetType RT_MANGLER(RTJsonValueGetType)
1060# define RTJsonValueQueryArraySizeEx RT_MANGLER(RTJsonValueQueryArraySize)
1061# define RTJsonValueQueryBooleanByName RT_MANGLER(RTJsonValueQueryBooleanByName)
1062# define RTJsonValueQueryByIndex RT_MANGLER(RTJsonValueQueryByIndex)
1063# define RTJsonValueQueryByName RT_MANGLER(RTJsonValueQueryByName)
1064# define RTJsonValueQueryInteger RT_MANGLER(RTJsonValueQueryInteger)
1065# define RTJsonValueQueryIntegerByName RT_MANGLER(RTJsonValueQueryIntegerByName)
1066# define RTJsonValueQueryString RT_MANGLER(RTJsonValueQueryString)
1067# define RTJsonValueQueryStringByName RT_MANGLER(RTJsonValueQueryStringByName)
1068# define RTJsonValueRelease RT_MANGLER(RTJsonValueRelease)
1069# define RTJsonValueRetain RT_MANGLER(RTJsonValueRetain)
6d209b23
SF
1070# define RTKrnlModInfoGetFilePath RT_MANGLER(RTKrnlModInfoGetFilePath)
1071# define RTKrnlModInfoGetLoadAddr RT_MANGLER(RTKrnlModInfoGetLoadAddr)
1072# define RTKrnlModInfoGetName RT_MANGLER(RTKrnlModInfoGetName)
1073# define RTKrnlModInfoGetRefCnt RT_MANGLER(RTKrnlModInfoGetRefCnt)
1074# define RTKrnlModInfoGetSize RT_MANGLER(RTKrnlModInfoGetSize)
1075# define RTKrnlModInfoQueryRefModInfo RT_MANGLER(RTKrnlModInfoQueryRefModInfo)
1076# define RTKrnlModInfoRetain RT_MANGLER(RTKrnlModInfoRetain)
1077# define RTKrnlModInfoRelease RT_MANGLER(RTKrnlModInfoRelease)
1078# define RTKrnlModLoadedGetCount RT_MANGLER(RTKrnlModLoadedGetCount)
1079# define RTKrnlModLoadedQueryInfo RT_MANGLER(RTKrnlModLoadedQueryInfo)
1080# define RTKrnlModLoadedQueryInfoAll RT_MANGLER(RTKrnlModLoadedQueryInfoAll)
1081# define RTKrnlModQueryLoaded RT_MANGLER(RTKrnlModQueryLoaded)
056a1eb7
SF
1082# define RTLatin1CalcUtf16Len RT_MANGLER(RTLatin1CalcUtf16Len)
1083# define RTLatin1CalcUtf16LenEx RT_MANGLER(RTLatin1CalcUtf16LenEx)
1084# define RTLatin1CalcUtf8Len RT_MANGLER(RTLatin1CalcUtf8Len)
1085# define RTLatin1CalcUtf8LenEx RT_MANGLER(RTLatin1CalcUtf8LenEx)
1086# define RTLatin1ToUtf16ExTag RT_MANGLER(RTLatin1ToUtf16ExTag)
1087# define RTLatin1ToUtf16Tag RT_MANGLER(RTLatin1ToUtf16Tag)
1088# define RTLatin1ToUtf8ExTag RT_MANGLER(RTLatin1ToUtf8ExTag)
1089# define RTLatin1ToUtf8Tag RT_MANGLER(RTLatin1ToUtf8Tag)
1090# define RTLdrClose RT_MANGLER(RTLdrClose)
1091# define RTLdrEnumDbgInfo RT_MANGLER(RTLdrEnumDbgInfo)
1092# define RTLdrEnumSegments RT_MANGLER(RTLdrEnumSegments)
1093# define RTLdrEnumSymbols RT_MANGLER(RTLdrEnumSymbols)
1094# define RTLdrGetArch RT_MANGLER(RTLdrGetArch)
1095# define RTLdrGetBits RT_MANGLER(RTLdrGetBits)
1096# define RTLdrGetEndian RT_MANGLER(RTLdrGetEndian)
1097# define RTLdrGetFormat RT_MANGLER(RTLdrGetFormat)
1098# define RTLdrGetFunction RT_MANGLER(RTLdrGetFunction)
1099# define RTLdrGetNativeHandle RT_MANGLER(RTLdrGetNativeHandle)
1100# define RTLdrGetSuff RT_MANGLER(RTLdrGetSuff)
1101# define RTLdrGetSymbol RT_MANGLER(RTLdrGetSymbol)
1102# define RTLdrGetSymbolEx RT_MANGLER(RTLdrGetSymbolEx)
1103# define RTLdrGetSystemSymbol RT_MANGLER(RTLdrGetSystemSymbol)
1104# define RTLdrGetType RT_MANGLER(RTLdrGetType)
1105# define RTLdrIsLoadable RT_MANGLER(RTLdrIsLoadable)
1106# define RTLdrLinkAddressToRva RT_MANGLER(RTLdrLinkAddressToRva)
1107# define RTLdrLinkAddressToSegOffset RT_MANGLER(RTLdrLinkAddressToSegOffset)
1108# define RTLdrLoad RT_MANGLER(RTLdrLoad)
1109# define RTLdrLoadAppPriv RT_MANGLER(RTLdrLoadAppPriv)
1110# define RTLdrLoadEx RT_MANGLER(RTLdrLoadEx)
1111# define RTLdrLoadSystem RT_MANGLER(RTLdrLoadSystem)
1112# define RTLdrOpen RT_MANGLER(RTLdrOpen)
1113# define RTLdrOpenEx RT_MANGLER(RTLdrOpenEx)
1114# define RTLdrOpenInMemory RT_MANGLER(RTLdrOpenInMemory)
1115# define RTLdrOpenkLdr RT_MANGLER(RTLdrOpenkLdr)
1116# define RTLdrRelocate RT_MANGLER(RTLdrRelocate)
1117# define RTLdrRvaToSegOffset RT_MANGLER(RTLdrRvaToSegOffset)
1118# define RTLdrQueryForwarderInfo RT_MANGLER(RTLdrQueryForwarderInfo)
1119# define RTLdrQueryProp RT_MANGLER(RTLdrQueryProp)
1120# define RTLdrSegOffsetToRva RT_MANGLER(RTLdrSegOffsetToRva)
1121# define RTLdrSize RT_MANGLER(RTLdrSize)
1122# define RTLinuxCheckDevicePath RT_MANGLER(RTLinuxCheckDevicePath)
1123# define RTLinuxCheckDevicePathV RT_MANGLER(RTLinuxCheckDevicePathV)
1124# define RTLinuxSysFsClose RT_MANGLER(RTLinuxSysFsClose)
1125# define RTLinuxSysFsExists RT_MANGLER(RTLinuxSysFsExists)
1126# define RTLinuxSysFsExistsEx RT_MANGLER(RTLinuxSysFsExistsEx)
1127# define RTLinuxSysFsExistsExV RT_MANGLER(RTLinuxSysFsExistsExV)
1128# define RTLinuxSysFsExistsV RT_MANGLER(RTLinuxSysFsExistsV)
1129# define RTLinuxSysFsGetLinkDest RT_MANGLER(RTLinuxSysFsGetLinkDest)
1130# define RTLinuxSysFsGetLinkDestV RT_MANGLER(RTLinuxSysFsGetLinkDestV)
1131# define RTLinuxSysFsOpen RT_MANGLER(RTLinuxSysFsOpen)
1132# define RTLinuxSysFsOpenEx RT_MANGLER(RTLinuxSysFsOpenEx)
1133# define RTLinuxSysFsOpenExV RT_MANGLER(RTLinuxSysFsOpenExV)
1134# define RTLinuxSysFsOpenV RT_MANGLER(RTLinuxSysFsOpenV)
1135# define RTLinuxSysFsReadDevNumFile RT_MANGLER(RTLinuxSysFsReadDevNumFile)
1136# define RTLinuxSysFsReadDevNumFileV RT_MANGLER(RTLinuxSysFsReadDevNumFileV)
1137# define RTLinuxSysFsReadFile RT_MANGLER(RTLinuxSysFsReadFile)
1138# define RTLinuxSysFsReadIntFile RT_MANGLER(RTLinuxSysFsReadIntFile)
1139# define RTLinuxSysFsReadIntFileV RT_MANGLER(RTLinuxSysFsReadIntFileV)
1140# define RTLinuxSysFsReadStr RT_MANGLER(RTLinuxSysFsReadStr)
1141# define RTLinuxSysFsReadStrFile RT_MANGLER(RTLinuxSysFsReadStrFile)
1142# define RTLinuxSysFsReadStrFileV RT_MANGLER(RTLinuxSysFsReadStrFileV)
1143# define RTLinuxSysFsWriteFile RT_MANGLER(RTLinuxSysFsWriteFile)
1144# define RTLinuxSysFsWriteStr RT_MANGLER(RTLinuxSysFsWriteStr)
1145# define RTLinuxSysFsWriteStrFile RT_MANGLER(RTLinuxSysFsWriteStrFile)
1146# define RTLinuxSysFsWriteStrFileV RT_MANGLER(RTLinuxSysFsWriteStrFileV)
1147# define RTLinuxSysFsWriteU8File RT_MANGLER(RTLinuxSysFsWriteU8File)
1148# define RTLinuxSysFsWriteU8FileV RT_MANGLER(RTLinuxSysFsWriteU8FileV)
1149# define RTLinuxSysFsWriteU16File RT_MANGLER(RTLinuxSysFsWriteU16File)
1150# define RTLinuxSysFsWriteU16FileV RT_MANGLER(RTLinuxSysFsWriteU16FileV)
1151# define RTLinuxSysFsWriteU32File RT_MANGLER(RTLinuxSysFsWriteU32File)
1152# define RTLinuxSysFsWriteU32FileV RT_MANGLER(RTLinuxSysFsWriteU32FileV)
1153# define RTLinuxSysFsWriteU64File RT_MANGLER(RTLinuxSysFsWriteU64File)
1154# define RTLinuxSysFsWriteU64FileV RT_MANGLER(RTLinuxSysFsWriteU64FileV)
1155# define RTLocalIpcServerCreate RT_MANGLER(RTLocalIpcServerCreate)
1156# define RTLocalIpcServerDestroy RT_MANGLER(RTLocalIpcServerDestroy)
1157# define RTLocalIpcServerCancel RT_MANGLER(RTLocalIpcServerCancel)
1158# define RTLocalIpcServerListen RT_MANGLER(RTLocalIpcServerListen)
1159# define RTLocalIpcSessionConnect RT_MANGLER(RTLocalIpcSessionConnect)
1160# define RTLocalIpcSessionClose RT_MANGLER(RTLocalIpcSessionClose)
1161# define RTLocalIpcSessionCancel RT_MANGLER(RTLocalIpcSessionCancel)
1162# define RTLocalIpcSessionRead RT_MANGLER(RTLocalIpcSessionRead)
1163# define RTLocalIpcSessionReadNB RT_MANGLER(RTLocalIpcSessionReadNB)
1164# define RTLocalIpcSessionRetain RT_MANGLER(RTLocalIpcSessionRetain)
1165# define RTLocalIpcSessionRelease RT_MANGLER(RTLocalIpcSessionRelease)
1166# define RTLocalIpcSessionWrite RT_MANGLER(RTLocalIpcSessionWrite)
1167# define RTLocalIpcSessionFlush RT_MANGLER(RTLocalIpcSessionFlush)
1168# define RTLocalIpcSessionWaitForData RT_MANGLER(RTLocalIpcSessionWaitForData)
1169# define RTLocalIpcSessionQueryProcess RT_MANGLER(RTLocalIpcSessionQueryProcess)
1170# define RTLocalIpcSessionQueryUserId RT_MANGLER(RTLocalIpcSessionQueryUserId)
1171# define RTLocalIpcSessionQueryGroupId RT_MANGLER(RTLocalIpcSessionQueryGroupId)
6d209b23
SF
1172# define RTLocaleQueryLocaleName RT_MANGLER(RTLocaleQueryLocaleName)
1173# define RTLocaleQueryNormalizedBaseLocaleName RT_MANGLER(RTLocaleQueryNormalizedBaseLocaleName)
1174# define RTLocaleQueryUserCountryCode RT_MANGLER(RTLocaleQueryUserCountryCode)
056a1eb7
SF
1175# define RTLockValidatorClassAddPriorClass RT_MANGLER(RTLockValidatorClassAddPriorClass)
1176# define RTLockValidatorClassCreate RT_MANGLER(RTLockValidatorClassCreate)
1177# define RTLockValidatorClassCreateEx RT_MANGLER(RTLockValidatorClassCreateEx)
1178# define RTLockValidatorClassCreateExV RT_MANGLER(RTLockValidatorClassCreateExV)
1179# define RTLockValidatorClassCreateUnique RT_MANGLER(RTLockValidatorClassCreateUnique)
1180# define RTLockValidatorClassEnforceStrictReleaseOrder RT_MANGLER(RTLockValidatorClassEnforceStrictReleaseOrder)
1181# define RTLockValidatorClassFindForSrcPos RT_MANGLER(RTLockValidatorClassFindForSrcPos)
1182# define RTLockValidatorClassForSrcPos RT_MANGLER(RTLockValidatorClassForSrcPos)
1183# define RTLockValidatorClassRelease RT_MANGLER(RTLockValidatorClassRelease)
1184# define RTLockValidatorClassRetain RT_MANGLER(RTLockValidatorClassRetain)
1185# define RTLockValidatorHoldsLocksInClass RT_MANGLER(RTLockValidatorHoldsLocksInClass)
1186# define RTLockValidatorHoldsLocksInSubClass RT_MANGLER(RTLockValidatorHoldsLocksInSubClass)
1187# define RTLockValidatorIsBlockedThreadInValidator RT_MANGLER(RTLockValidatorIsBlockedThreadInValidator)
1188# define RTLockValidatorIsEnabled RT_MANGLER(RTLockValidatorIsEnabled)
1189# define RTLockValidatorIsQuiet RT_MANGLER(RTLockValidatorIsQuiet)
1190# define RTLockValidatorMayPanic RT_MANGLER(RTLockValidatorMayPanic)
1191# define RTLockValidatorQueryBlocking RT_MANGLER(RTLockValidatorQueryBlocking)
1192# define RTLockValidatorReadLockDec RT_MANGLER(RTLockValidatorReadLockDec)
1193# define RTLockValidatorReadLockGetCount RT_MANGLER(RTLockValidatorReadLockGetCount)
1194# define RTLockValidatorReadLockInc RT_MANGLER(RTLockValidatorReadLockInc)
1195# define RTLockValidatorRecExclCheckBlocking RT_MANGLER(RTLockValidatorRecExclCheckBlocking)
1196# define RTLockValidatorRecExclCheckOrder RT_MANGLER(RTLockValidatorRecExclCheckOrder)
1197# define RTLockValidatorRecExclCheckOrderAndBlocking RT_MANGLER(RTLockValidatorRecExclCheckOrderAndBlocking)
1198# define RTLockValidatorRecExclCreate RT_MANGLER(RTLockValidatorRecExclCreate)
1199# define RTLockValidatorRecExclCreateV RT_MANGLER(RTLockValidatorRecExclCreateV)
1200# define RTLockValidatorRecExclDelete RT_MANGLER(RTLockValidatorRecExclDelete)
1201# define RTLockValidatorRecExclDestroy RT_MANGLER(RTLockValidatorRecExclDestroy)
1202# define RTLockValidatorRecExclInit RT_MANGLER(RTLockValidatorRecExclInit)
1203# define RTLockValidatorRecExclInitV RT_MANGLER(RTLockValidatorRecExclInitV)
1204# define RTLockValidatorRecExclRecursion RT_MANGLER(RTLockValidatorRecExclRecursion)
1205# define RTLockValidatorRecExclRecursionMixed RT_MANGLER(RTLockValidatorRecExclRecursionMixed)
1206# define RTLockValidatorRecExclReleaseOwner RT_MANGLER(RTLockValidatorRecExclReleaseOwner)
1207# define RTLockValidatorRecExclReleaseOwnerUnchecked RT_MANGLER(RTLockValidatorRecExclReleaseOwnerUnchecked)
1208# define RTLockValidatorRecExclSetOwner RT_MANGLER(RTLockValidatorRecExclSetOwner)
1209# define RTLockValidatorRecExclSetSubClass RT_MANGLER(RTLockValidatorRecExclSetSubClass)
1210# define RTLockValidatorRecExclUnwind RT_MANGLER(RTLockValidatorRecExclUnwind)
1211# define RTLockValidatorRecExclUnwindMixed RT_MANGLER(RTLockValidatorRecExclUnwindMixed)
1212# define RTLockValidatorRecMakeSiblings RT_MANGLER(RTLockValidatorRecMakeSiblings)
1213# define RTLockValidatorRecSharedAddOwner RT_MANGLER(RTLockValidatorRecSharedAddOwner)
1214# define RTLockValidatorRecSharedCheckAndRelease RT_MANGLER(RTLockValidatorRecSharedCheckAndRelease)
1215# define RTLockValidatorRecSharedCheckBlocking RT_MANGLER(RTLockValidatorRecSharedCheckBlocking)
1216# define RTLockValidatorRecSharedCheckOrder RT_MANGLER(RTLockValidatorRecSharedCheckOrder)
1217# define RTLockValidatorRecSharedCheckOrderAndBlocking RT_MANGLER(RTLockValidatorRecSharedCheckOrderAndBlocking)
1218# define RTLockValidatorRecSharedCheckSignaller RT_MANGLER(RTLockValidatorRecSharedCheckSignaller)
1219# define RTLockValidatorRecSharedCreate RT_MANGLER(RTLockValidatorRecSharedCreate)
1220# define RTLockValidatorRecSharedCreateV RT_MANGLER(RTLockValidatorRecSharedCreateV)
1221# define RTLockValidatorRecSharedDelete RT_MANGLER(RTLockValidatorRecSharedDelete)
1222# define RTLockValidatorRecSharedDestroy RT_MANGLER(RTLockValidatorRecSharedDestroy)
1223# define RTLockValidatorRecSharedInit RT_MANGLER(RTLockValidatorRecSharedInit)
1224# define RTLockValidatorRecSharedInitV RT_MANGLER(RTLockValidatorRecSharedInitV)
1225# define RTLockValidatorRecSharedIsOwner RT_MANGLER(RTLockValidatorRecSharedIsOwner)
1226# define RTLockValidatorRecSharedRemoveOwner RT_MANGLER(RTLockValidatorRecSharedRemoveOwner)
1227# define RTLockValidatorRecSharedResetOwner RT_MANGLER(RTLockValidatorRecSharedResetOwner)
1228# define RTLockValidatorRecSharedSetSubClass RT_MANGLER(RTLockValidatorRecSharedSetSubClass)
1229# define RTLockValidatorSetEnabled RT_MANGLER(RTLockValidatorSetEnabled)
1230# define RTLockValidatorSetMayPanic RT_MANGLER(RTLockValidatorSetMayPanic)
1231# define RTLockValidatorSetQuiet RT_MANGLER(RTLockValidatorSetQuiet)
1232# define RTLockValidatorWriteLockDec RT_MANGLER(RTLockValidatorWriteLockDec)
1233# define RTLockValidatorWriteLockGetCount RT_MANGLER(RTLockValidatorWriteLockGetCount)
1234# define RTLockValidatorWriteLockInc RT_MANGLER(RTLockValidatorWriteLockInc)
1235# define RTLogBackdoorPrintf RT_MANGLER(RTLogBackdoorPrintf) /* r0drv-guest */
1236# define RTLogBackdoorPrintfV RT_MANGLER(RTLogBackdoorPrintfV) /* r0drv-guest */
1237# define RTLogCalcSizeForR0 RT_MANGLER(RTLogCalcSizeForR0)
26894aac 1238# define RTLogClearFileDelayFlag RT_MANGLER(RTLogClearFileDelayFlag)
056a1eb7
SF
1239# define RTLogCloneRC RT_MANGLER(RTLogCloneRC)
1240# define RTLogComPrintf RT_MANGLER(RTLogComPrintf)
1241# define RTLogComPrintfV RT_MANGLER(RTLogComPrintfV)
1242# define RTLogCopyGroupsAndFlagsForR0 RT_MANGLER(RTLogCopyGroupsAndFlagsForR0)
1243# define RTLogCreate RT_MANGLER(RTLogCreate)
1244# define RTLogCreateEx RT_MANGLER(RTLogCreateEx)
1245# define RTLogCreateExV RT_MANGLER(RTLogCreateExV)
1246# define RTLogCreateForR0 RT_MANGLER(RTLogCreateForR0)
1247# define RTLogDefaultInit RT_MANGLER(RTLogDefaultInit)
1248# define RTLogDefaultInstance RT_MANGLER(RTLogDefaultInstance)
1249# define RTLogDefaultInstanceEx RT_MANGLER(RTLogDefaultInstanceEx)
1250# define RTLogDestinations RT_MANGLER(RTLogDestinations)
1251# define RTLogDestroy RT_MANGLER(RTLogDestroy)
1252# define RTLogFlags RT_MANGLER(RTLogFlags)
1253# define RTLogFlush RT_MANGLER(RTLogFlush)
1254# define RTLogFlushRC RT_MANGLER(RTLogFlushRC)
1255# define RTLogFlushR0 RT_MANGLER(RTLogFlushR0)
1256# define RTLogFlushToLogger RT_MANGLER(RTLogFlushToLogger)
1257# define RTLogFormatV RT_MANGLER(RTLogFormatV)
1258# define RTLogGetDefaultInstance RT_MANGLER(RTLogGetDefaultInstance)
1259# define RTLogGetDefaultInstanceEx RT_MANGLER(RTLogGetDefaultInstanceEx)
1260# define RTLogGetDestinations RT_MANGLER(RTLogGetDestinations)
1261# define RTLogGetFlags RT_MANGLER(RTLogGetFlags)
1262# define RTLogGetGroupSettings RT_MANGLER(RTLogGetGroupSettings)
1263# define RTLogGroupSettings RT_MANGLER(RTLogGroupSettings)
1264# define RTLogLogger RT_MANGLER(RTLogLogger)
1265# define RTLogLoggerEx RT_MANGLER(RTLogLoggerEx)
1266# define RTLogLoggerExV RT_MANGLER(RTLogLoggerExV)
1267# define RTLogLoggerV RT_MANGLER(RTLogLoggerV)
1268# define RTLogPrintf RT_MANGLER(RTLogPrintf)
1269# define RTLogPrintfV RT_MANGLER(RTLogPrintfV)
1270# define RTLogDumpPrintfV RT_MANGLER(RTLogDumpPrintfV)
1271# define RTLogRelGetDefaultInstance RT_MANGLER(RTLogRelGetDefaultInstance)
1272# define RTLogRelGetDefaultInstanceEx RT_MANGLER(RTLogRelGetDefaultInstanceEx)
1273# define RTLogRelLogger RT_MANGLER(RTLogRelLogger)
1274# define RTLogRelLoggerV RT_MANGLER(RTLogRelLoggerV)
1275# define RTLogRelPrintf RT_MANGLER(RTLogRelPrintf)
1276# define RTLogRelPrintfV RT_MANGLER(RTLogRelPrintfV)
1277# define RTLogRelSetBuffering RT_MANGLER(RTLogRelSetBuffering)
1278# define RTLogRelSetDefaultInstance RT_MANGLER(RTLogRelSetDefaultInstance)
1279# define RTLogSetBuffering RT_MANGLER(RTLogSetBuffering)
1280# define RTLogSetCustomPrefixCallback RT_MANGLER(RTLogSetCustomPrefixCallback)
1281# define RTLogSetCustomPrefixCallbackForR0 RT_MANGLER(RTLogSetCustomPrefixCallbackForR0)
1282# define RTLogSetDefaultInstance RT_MANGLER(RTLogSetDefaultInstance)
1283# define RTLogSetDefaultInstanceThread RT_MANGLER(RTLogSetDefaultInstanceThread) /* r0drv */
1284# define RTLogSetGroupLimit RT_MANGLER(RTLogSetGroupLimit)
1285# define RTLogWriteCom RT_MANGLER(RTLogWriteCom)
1286# define RTLogWriteCom RT_MANGLER(RTLogWriteCom)
1287# define RTLogWriteDebugger RT_MANGLER(RTLogWriteDebugger)
1288# define RTLogWriteStdErr RT_MANGLER(RTLogWriteStdErr)
1289# define RTLogWriteStdOut RT_MANGLER(RTLogWriteStdOut)
1290# define RTLogWriteUser RT_MANGLER(RTLogWriteUser)
1291# define RTManifestCreate RT_MANGLER(RTManifestCreate)
1292# define RTManifestDup RT_MANGLER(RTManifestDup)
1293# define RTManifestEntryAdd RT_MANGLER(RTManifestEntryAdd)
1294# define RTManifestEntryAddIoStream RT_MANGLER(RTManifestEntryAddIoStream)
1295# define RTManifestEntryAddPassthruIoStream RT_MANGLER(RTManifestEntryAddPassthruIoStream)
1296# define RTManifestEntryExists RT_MANGLER(RTManifestEntryExists)
1297# define RTManifestEntryRemove RT_MANGLER(RTManifestEntryRemove)
1298# define RTManifestEntryQueryAttr RT_MANGLER(RTManifestEntryQueryAttr)
1299# define RTManifestEntrySetAttr RT_MANGLER(RTManifestEntrySetAttr)
1300# define RTManifestEntryUnsetAttr RT_MANGLER(RTManifestEntryUnsetAttr)
1301# define RTManifestEquals RT_MANGLER(RTManifestEquals)
1302# define RTManifestEqualsEx RT_MANGLER(RTManifestEqualsEx)
1303# define RTManifestPtIosAddEntryNow RT_MANGLER(RTManifestPtIosAddEntryNow)
1304# define RTManifestPtIosIsInstanceOf RT_MANGLER(RTManifestPtIosIsInstanceOf)
1305# define RTManifestQueryAllAttrTypes RT_MANGLER(RTManifestQueryAllAttrTypes)
1306# define RTManifestQueryAttr RT_MANGLER(RTManifestQueryAttr)
1307# define RTManifestReadStandard RT_MANGLER(RTManifestReadStandard)
1308# define RTManifestReadStandardEx RT_MANGLER(RTManifestReadStandardEx)
1309# define RTManifestReadStandardFromFile RT_MANGLER(RTManifestReadStandardFromFile)
1310# define RTManifestRelease RT_MANGLER(RTManifestRelease)
1311# define RTManifestRetain RT_MANGLER(RTManifestRetain)
1312# define RTManifestSetAttr RT_MANGLER(RTManifestSetAttr)
1313# define RTManifestUnsetAttr RT_MANGLER(RTManifestUnsetAttr)
1314# define RTManifestVerify RT_MANGLER(RTManifestVerify)
1315# define RTManifestVerifyDigestType RT_MANGLER(RTManifestVerifyDigestType)
1316# define RTManifestVerifyFiles RT_MANGLER(RTManifestVerifyFiles)
1317# define RTManifestVerifyFilesBuf RT_MANGLER(RTManifestVerifyFilesBuf)
1318# define RTManifestWriteFiles RT_MANGLER(RTManifestWriteFiles)
1319# define RTManifestWriteFilesBuf RT_MANGLER(RTManifestWriteFilesBuf)
1320# define RTManifestWriteStandard RT_MANGLER(RTManifestWriteStandard)
1321# define RTManifestWriteStandardToFile RT_MANGLER(RTManifestWriteStandardToFile)
1322# define RTMd5 RT_MANGLER(RTMd5)
1323# define RTMd5Final RT_MANGLER(RTMd5Final)
1324# define RTMd5FromString RT_MANGLER(RTMd5FromString)
1325# define RTMd5Init RT_MANGLER(RTMd5Init)
1326# define RTMd5ToString RT_MANGLER(RTMd5ToString)
1327# define RTMd5Update RT_MANGLER(RTMd5Update)
1328# define RTMemAllocExTag RT_MANGLER(RTMemAllocExTag)
1329# define RTMemAllocTag RT_MANGLER(RTMemAllocTag)
1330# define RTMemAllocVarTag RT_MANGLER(RTMemAllocVarTag)
1331# define RTMemAllocZTag RT_MANGLER(RTMemAllocZTag)
1332# define RTMemAllocZVarTag RT_MANGLER(RTMemAllocZVarTag)
1333# define RTMemCacheAlloc RT_MANGLER(RTMemCacheAlloc)
1334# define RTMemCacheAllocEx RT_MANGLER(RTMemCacheAllocEx)
1335# define RTMemCacheCreate RT_MANGLER(RTMemCacheCreate)
1336# define RTMemCacheDestroy RT_MANGLER(RTMemCacheDestroy)
1337# define RTMemCacheFree RT_MANGLER(RTMemCacheFree)
1338# define RTMemContAlloc RT_MANGLER(RTMemContAlloc) /* r0drv */
1339# define RTMemContFree RT_MANGLER(RTMemContFree) /* r0drv */
1340# define RTMemDump RT_MANGLER(RTMemDump)
1341# define RTMemDupExTag RT_MANGLER(RTMemDupExTag)
1342# define RTMemDupTag RT_MANGLER(RTMemDupTag)
1343# define RTMemEfAlloc RT_MANGLER(RTMemEfAlloc)
1344# define RTMemEfAllocNP RT_MANGLER(RTMemEfAllocNP)
1345# define RTMemEfAllocVar RT_MANGLER(RTMemEfAllocVar)
1346# define RTMemEfAllocVarNP RT_MANGLER(RTMemEfAllocVarNP)
1347# define RTMemEfAllocZ RT_MANGLER(RTMemEfAllocZ)
1348# define RTMemEfAllocZNP RT_MANGLER(RTMemEfAllocZNP)
1349# define RTMemEfAllocZVar RT_MANGLER(RTMemEfAllocZVar)
1350# define RTMemEfAllocZVarNP RT_MANGLER(RTMemEfAllocZVarNP)
1351# define RTMemEfDup RT_MANGLER(RTMemEfDup)
1352# define RTMemEfDupEx RT_MANGLER(RTMemEfDupEx)
1353# define RTMemEfDupExNP RT_MANGLER(RTMemEfDupExNP)
1354# define RTMemEfDupNP RT_MANGLER(RTMemEfDupNP)
1355# define RTMemEfFree RT_MANGLER(RTMemEfFree)
1356# define RTMemEfFreeNP RT_MANGLER(RTMemEfFreeNP)
1357# define RTMemEfRealloc RT_MANGLER(RTMemEfRealloc)
1358# define RTMemEfReallocNP RT_MANGLER(RTMemEfReallocNP)
1359# define RTMemEfTmpAlloc RT_MANGLER(RTMemEfTmpAlloc)
1360# define RTMemEfTmpAllocNP RT_MANGLER(RTMemEfTmpAllocNP)
1361# define RTMemEfTmpAllocZ RT_MANGLER(RTMemEfTmpAllocZ)
1362# define RTMemEfTmpAllocZNP RT_MANGLER(RTMemEfTmpAllocZNP)
1363# define RTMemEfTmpFree RT_MANGLER(RTMemEfTmpFree)
1364# define RTMemEfTmpFreeNP RT_MANGLER(RTMemEfTmpFreeNP)
1365# define RTMemExecAllocTag RT_MANGLER(RTMemExecAllocTag)
1366# define RTMemExecFree RT_MANGLER(RTMemExecFree)
1367# define RTMemFree RT_MANGLER(RTMemFree)
1368# define RTMemFreeEx RT_MANGLER(RTMemFreeEx)
1369# define RTMemLockedAllocExTag RT_MANGLER(RTMemLockedAllocExTag)
1370# define RTMemLockedAllocZExTag RT_MANGLER(RTMemLockedAllocZExTag)
1371# define RTMemLockedAllocTag RT_MANGLER(RTMemLockedAllocTag)
1372# define RTMemLockedAllocZTag RT_MANGLER(RTMemLockedAllocZTag)
1373# define RTMemLockedFree RT_MANGLER(RTMemLockedFree)
1374# define RTMemPageAllocTag RT_MANGLER(RTMemPageAllocTag)
1375# define RTMemPageAllocZTag RT_MANGLER(RTMemPageAllocZTag)
1376# define RTMemPageFree RT_MANGLER(RTMemPageFree)
1377# define RTMemPoolAlloc RT_MANGLER(RTMemPoolAlloc)
1378# define RTMemPoolAllocZ RT_MANGLER(RTMemPoolAllocZ)
1379# define RTMemPoolCreate RT_MANGLER(RTMemPoolCreate)
1380# define RTMemPoolDestroy RT_MANGLER(RTMemPoolDestroy)
1381# define RTMemPoolDup RT_MANGLER(RTMemPoolDup)
1382# define RTMemPoolDupEx RT_MANGLER(RTMemPoolDupEx)
1383# define RTMemPoolFree RT_MANGLER(RTMemPoolFree)
1384# define RTMemPoolRealloc RT_MANGLER(RTMemPoolRealloc)
1385# define RTMemPoolRefCount RT_MANGLER(RTMemPoolRefCount)
1386# define RTMemPoolRelease RT_MANGLER(RTMemPoolRelease)
1387# define RTMemPoolRetain RT_MANGLER(RTMemPoolRetain)
1388# define RTMemProtect RT_MANGLER(RTMemProtect)
1389# define RTMemReallocTag RT_MANGLER(RTMemReallocTag)
1390# define RTMemTmpAllocTag RT_MANGLER(RTMemTmpAllocTag)
1391# define RTMemTmpAllocZTag RT_MANGLER(RTMemTmpAllocZTag)
1392# define RTMemTmpFree RT_MANGLER(RTMemTmpFree)
1393# define RTMemTrackerDumpAllToFile RT_MANGLER(RTMemTrackerDumpAllToFile)
1394# define RTMemTrackerDumpAllToLog RT_MANGLER(RTMemTrackerDumpAllToLog)
1395# define RTMemTrackerDumpAllToLogRel RT_MANGLER(RTMemTrackerDumpAllToLogRel)
1396# define RTMemTrackerDumpAllToStdErr RT_MANGLER(RTMemTrackerDumpAllToStdErr)
1397# define RTMemTrackerDumpAllToStdOut RT_MANGLER(RTMemTrackerDumpAllToStdOut)
1398# define RTMemTrackerDumpStatsToFile RT_MANGLER(RTMemTrackerDumpStatsToFile)
1399# define RTMemTrackerDumpStatsToLog RT_MANGLER(RTMemTrackerDumpStatsToLog)
1400# define RTMemTrackerDumpStatsToLogRel RT_MANGLER(RTMemTrackerDumpStatsToLogRel)
1401# define RTMemTrackerDumpStatsToStdErr RT_MANGLER(RTMemTrackerDumpStatsToStdErr)
1402# define RTMemTrackerDumpStatsToStdOut RT_MANGLER(RTMemTrackerDumpStatsToStdOut)
1403# define RTMemTrackerHdrAlloc RT_MANGLER(RTMemTrackerHdrAlloc)
1404# define RTMemTrackerHdrFree RT_MANGLER(RTMemTrackerHdrFree)
1405# define RTMemTrackerHdrReallocDone RT_MANGLER(RTMemTrackerHdrReallocDone)
1406# define RTMemTrackerHdrReallocPrep RT_MANGLER(RTMemTrackerHdrReallocPrep)
1407# define RTMemWipeThoroughly RT_MANGLER(RTMemWipeThoroughly)
1408# define RTMpCpuId RT_MANGLER(RTMpCpuId)
1409# define RTMpCpuIdFromSetIndex RT_MANGLER(RTMpCpuIdFromSetIndex)
1410# define RTMpCpuIdToSetIndex RT_MANGLER(RTMpCpuIdToSetIndex)
1411# define RTMpCurSetIndex RT_MANGLER(RTMpCurSetIndex)
1412# define RTMpCurSetIndexAndId RT_MANGLER(RTMpCurSetIndexAndId)
1413# define RTMpGetArraySize RT_MANGLER(RTMpGetArraySize)
1414# define RTMpGetCount RT_MANGLER(RTMpGetCount)
1415# define RTMpGetCurFrequency RT_MANGLER(RTMpGetCurFrequency)
1416# define RTMpGetDescription RT_MANGLER(RTMpGetDescription)
1417# define RTMpGetCpuGroupCounts RT_MANGLER(RTMpGetCpuGroupCounts)
1418# define RTMpGetMaxCpuGroupCount RT_MANGLER(RTMpGetMaxCpuGroupCount)
1419# define RTMpGetMaxCpuId RT_MANGLER(RTMpGetMaxCpuId)
1420# define RTMpGetMaxFrequency RT_MANGLER(RTMpGetMaxFrequency)
1421# define RTMpGetOnlineCount RT_MANGLER(RTMpGetOnlineCount)
1422# define RTMpGetOnlineCoreCount RT_MANGLER(RTMpGetOnlineCoreCount)
1423# define RTMpGetOnlineSet RT_MANGLER(RTMpGetOnlineSet)
1424# define RTMpGetPresentCount RT_MANGLER(RTMpGetPresentCount)
1425# define RTMpGetPresentCoreCount RT_MANGLER(RTMpGetPresentCoreCount)
1426# define RTMpGetPresentSet RT_MANGLER(RTMpGetPresentSet)
1427# define RTMpGetSet RT_MANGLER(RTMpGetSet)
1428# define RTMpGetCoreCount RT_MANGLER(RTMpGetCoreCount)
1429# define RTMpIsCpuOnline RT_MANGLER(RTMpIsCpuOnline)
1430# define RTMpIsCpuPossible RT_MANGLER(RTMpIsCpuPossible) /* r0drv */
1431# define RTMpIsCpuPresent RT_MANGLER(RTMpIsCpuPresent)
1432# define RTMpIsCpuWorkPending RT_MANGLER(RTMpIsCpuWorkPending)
1433# define RTMpNotificationDeregister RT_MANGLER(RTMpNotificationDeregister) /* r0drv */
1434# define RTMpNotificationRegister RT_MANGLER(RTMpNotificationRegister) /* r0drv */
1435# define RTMpOnAll RT_MANGLER(RTMpOnAll) /* r0drv */
1436# define RTMpOnAllIsConcurrentSafe RT_MANGLER(RTMpOnAllIsConcurrentSafe) /* r0drv */
1437# define RTMpOnOthers RT_MANGLER(RTMpOnOthers) /* r0drv */
1438# define RTMpOnPair RT_MANGLER(RTMpOnPair) /* r0drv */
1439# define RTMpOnPairIsConcurrentExecSupported RT_MANGLER(RTMpOnPairIsConcurrentExecSupported) /* r0drv */
1440# define RTMpOnSpecific RT_MANGLER(RTMpOnSpecific) /* r0drv */
1441# define RTMpPokeCpu RT_MANGLER(RTMpPokeCpu) /* r0drv */
1442# define RTMpSetIndexFromCpuGroupMember RT_MANGLER(RTMpSetIndexFromCpuGroupMember)
1443# define RTMsgError RT_MANGLER(RTMsgError)
1444# define RTMsgErrorExit RT_MANGLER(RTMsgErrorExit)
1445# define RTMsgErrorExitV RT_MANGLER(RTMsgErrorExitV)
6d209b23
SF
1446# define RTMsgErrorExitFailure RT_MANGLER(RTMsgErrorExitFailure)
1447# define RTMsgErrorExitFailureV RT_MANGLER(RTMsgErrorExitFailureV)
056a1eb7
SF
1448# define RTMsgErrorRc RT_MANGLER(RTMsgErrorRc)
1449# define RTMsgErrorRcV RT_MANGLER(RTMsgErrorRcV)
1450# define RTMsgErrorV RT_MANGLER(RTMsgErrorV)
1451# define RTMsgInfo RT_MANGLER(RTMsgInfo)
1452# define RTMsgInfoV RT_MANGLER(RTMsgInfoV)
1453# define RTMsgInitFailure RT_MANGLER(RTMsgInitFailure)
1454# define RTMsgSetProgName RT_MANGLER(RTMsgSetProgName)
1455# define RTMsgWarning RT_MANGLER(RTMsgWarning)
1456# define RTMsgWarningV RT_MANGLER(RTMsgWarningV)
6d209b23
SF
1457# define RTMsgRefEntryPrintStringTable RT_MANGLER(RTMsgRefEntryPrintStringTable)
1458# define RTMsgRefEntrySynopsisEx RT_MANGLER(RTMsgRefEntrySynopsisEx)
1459# define RTMsgRefEntrySynopsis RT_MANGLER(RTMsgRefEntrySynopsis)
1460# define RTMsgRefEntryHelpEx RT_MANGLER(RTMsgRefEntryHelpEx)
1461# define RTMsgRefEntryHelp RT_MANGLER(RTMsgRefEntryHelp)
056a1eb7
SF
1462# define RTNetIPv4AddDataChecksum RT_MANGLER(RTNetIPv4AddDataChecksum)
1463# define RTNetIPv4AddTCPChecksum RT_MANGLER(RTNetIPv4AddTCPChecksum)
1464# define RTNetIPv4AddUDPChecksum RT_MANGLER(RTNetIPv4AddUDPChecksum)
1465# define RTNetIPv4FinalizeChecksum RT_MANGLER(RTNetIPv4FinalizeChecksum)
1466# define RTNetIPv4HdrChecksum RT_MANGLER(RTNetIPv4HdrChecksum)
1467# define RTNetIPv4IsDHCPValid RT_MANGLER(RTNetIPv4IsDHCPValid)
1468# define RTNetIPv4IsHdrValid RT_MANGLER(RTNetIPv4IsHdrValid)
1469# define RTNetIPv4IsTCPSizeValid RT_MANGLER(RTNetIPv4IsTCPSizeValid)
1470# define RTNetIPv4IsTCPValid RT_MANGLER(RTNetIPv4IsTCPValid)
1471# define RTNetIPv4IsUDPSizeValid RT_MANGLER(RTNetIPv4IsUDPSizeValid)
1472# define RTNetIPv4IsUDPValid RT_MANGLER(RTNetIPv4IsUDPValid)
1473# define RTNetIPv4PseudoChecksum RT_MANGLER(RTNetIPv4PseudoChecksum)
1474# define RTNetIPv4PseudoChecksumBits RT_MANGLER(RTNetIPv4PseudoChecksumBits)
1475# define RTNetIPv4TCPChecksum RT_MANGLER(RTNetIPv4TCPChecksum)
1476# define RTNetIPv4UDPChecksum RT_MANGLER(RTNetIPv4UDPChecksum)
1477# define RTNetIPv6PseudoChecksum RT_MANGLER(RTNetIPv6PseudoChecksum)
1478# define RTNetIPv6PseudoChecksumBits RT_MANGLER(RTNetIPv6PseudoChecksumBits)
1479# define RTNetIPv6PseudoChecksumEx RT_MANGLER(RTNetIPv6PseudoChecksumEx)
1480# define RTNetMaskToPrefixIPv4 RT_MANGLER(RTNetMaskToPrefixIPv4)
1481# define RTNetPrefixToMaskIPv4 RT_MANGLER(RTNetPrefixToMaskIPv4)
1482# define RTNetTCPChecksum RT_MANGLER(RTNetTCPChecksum)
1483# define RTNetUDPChecksum RT_MANGLER(RTNetUDPChecksum)
1484# define RTNetStrToMacAddr RT_MANGLER(RTNetStrToMacAddr)
1485# define RTNetIsIPv4AddrStr RT_MANGLER(RTNetIsIPv4AddrStr)
1486# define RTNetStrIsIPv4AddrAny RT_MANGLER(RTNetStrIsIPv4AddrAny)
1487# define RTNetStrToIPv4AddrEx RT_MANGLER(RTNetStrToIPv4AddrEx)
1488# define RTNetStrToIPv4Addr RT_MANGLER(RTNetStrToIPv4Addr)
1489# define RTNetIsIPv6AddrStr RT_MANGLER(RTNetIsIPv6AddrStr)
1490# define RTNetStrIsIPv6AddrAny RT_MANGLER(RTNetStrIsIPv6AddrAny)
1491# define RTNetStrToIPv6AddrEx RT_MANGLER(RTNetStrToIPv6AddrEx)
1492# define RTNetStrToIPv6Addr RT_MANGLER(RTNetStrToIPv6Addr)
1493# define RTNetMaskToPrefixIPv6 RT_MANGLER(RTNetMaskToPrefixIPv6)
1494# define RTNetPrefixToMaskIPv6 RT_MANGLER(RTNetPrefixToMaskIPv6)
1495# define RTOnceSlow RT_MANGLER(RTOnceSlow)
1496# define RTOnceReset RT_MANGLER(RTOnceReset)
1497# define RTPathAbs RT_MANGLER(RTPathAbs)
1498# define RTPathAbsDup RT_MANGLER(RTPathAbsDup)
1499# define RTPathAbsEx RT_MANGLER(RTPathAbsEx)
1500# define RTPathAbsExDup RT_MANGLER(RTPathAbsExDup)
1501# define RTPathAppDocs RT_MANGLER(RTPathAppDocs)
1502# define RTPathAppend RT_MANGLER(RTPathAppend)
1503# define RTPathAppendEx RT_MANGLER(RTPathAppendEx)
1504# define RTPathAppPrivateArch RT_MANGLER(RTPathAppPrivateArch)
1505# define RTPathAppPrivateArchTop RT_MANGLER(RTPathAppPrivateArchTop)
1506# define RTPathAppPrivateNoArch RT_MANGLER(RTPathAppPrivateNoArch)
1507# define RTPathCalcRelative RT_MANGLER(RTPathCalcRelative)
1508# define RTPathChangeToDosSlashes RT_MANGLER(RTPathChangeToDosSlashes)
1509# define RTPathChangeToUnixSlashes RT_MANGLER(RTPathChangeToUnixSlashes)
1510# define RTPathCompare RT_MANGLER(RTPathCompare)
1511# define RTPathCopyComponents RT_MANGLER(RTPathCopyComponents)
1512# define RTPathCountComponents RT_MANGLER(RTPathCountComponents)
1513# define RTPathEnsureTrailingSeparator RT_MANGLER(RTPathEnsureTrailingSeparator)
1514# define RTPathExecDir RT_MANGLER(RTPathExecDir)
1515# define RTPathExists RT_MANGLER(RTPathExists)
1516# define RTPathExistsEx RT_MANGLER(RTPathExistsEx)
1517# define RTPathSuffix RT_MANGLER(RTPathSuffix)
1518# define RTPathFilename RT_MANGLER(RTPathFilename)
1519# define RTPathFilenameEx RT_MANGLER(RTPathFilenameEx)
1520# define RTPathGetCurrent RT_MANGLER(RTPathGetCurrent)
1521# define RTPathGetCurrentDrive RT_MANGLER(RTPathGetCurrentDrive)
1522# define RTPathGetCurrentOnDrive RT_MANGLER(RTPathGetCurrentOnDrive)
1523# define RTPathGetMode RT_MANGLER(RTPathGetMode)
1524# define RTPathGlob RT_MANGLER(RTPathGlob)
1525# define RTPathGlobFree RT_MANGLER(RTPathGlobFree)
1526# define RTPathHasSuffix RT_MANGLER(RTPathHasSuffix)
1527# define RTPathHasPath RT_MANGLER(RTPathHasPath)
1528# define RTPathIsSame RT_MANGLER(RTPathIsSame)
1529# define RTPathJoin RT_MANGLER(RTPathJoin)
1530# define RTPathJoinA RT_MANGLER(RTPathJoinA)
1531# define RTPathJoinEx RT_MANGLER(RTPathJoinEx)
1532# define RTPathParse RT_MANGLER(RTPathParse)
1533# define RTPathParsedReassemble RT_MANGLER(RTPathParsedReassemble)
1534# define RTPathParseSimple RT_MANGLER(RTPathParseSimple)
1535# define RTPathQueryInfo RT_MANGLER(RTPathQueryInfo)
1536# define RTPathQueryInfoEx RT_MANGLER(RTPathQueryInfoEx)
1537# define RTPathReal RT_MANGLER(RTPathReal)
1538# define RTPathRealDup RT_MANGLER(RTPathRealDup)
1539# define RTPathRename RT_MANGLER(RTPathRename)
1540# define RTPathRmCmd RT_MANGLER(RTPathRmCmd)
1541# define RTPathSetCurrent RT_MANGLER(RTPathSetCurrent)
1542# define RTPathSetMode RT_MANGLER(RTPathSetMode) /* not-win */
1543# define RTPathSetOwner RT_MANGLER(RTPathSetOwner) /* not-win */
1544# define RTPathSetOwnerEx RT_MANGLER(RTPathSetOwnerEx) /* not-win */
1545# define RTPathSetTimes RT_MANGLER(RTPathSetTimes)
1546# define RTPathSetTimesEx RT_MANGLER(RTPathSetTimesEx)
1547# define RTPathSharedLibs RT_MANGLER(RTPathSharedLibs)
6d209b23 1548# define RTPathSkipRootSpec RT_MANGLER(RTPathSkipRootSpec)
056a1eb7
SF
1549# define RTPathSplit RT_MANGLER(RTPathSplit)
1550# define RTPathSplitATag RT_MANGLER(RTPathSplitATag)
1551# define RTPathSplitFree RT_MANGLER(RTPathSplitFree)
1552# define RTPathSplitReassemble RT_MANGLER(RTPathSplitReassemble)
1553# define RTPathStartsWith RT_MANGLER(RTPathStartsWith)
1554# define RTPathStartsWithRoot RT_MANGLER(RTPathStartsWithRoot)
1555# define RTPathStripSuffix RT_MANGLER(RTPathStripSuffix)
1556# define RTPathStripFilename RT_MANGLER(RTPathStripFilename)
1557# define RTPathStripTrailingSlash RT_MANGLER(RTPathStripTrailingSlash)
1558# define RTPathTemp RT_MANGLER(RTPathTemp)
1559# define RTPathTraverseList RT_MANGLER(RTPathTraverseList)
1560# define RTPathUnlink RT_MANGLER(RTPathUnlink)
1561# define RTPathUserDocuments RT_MANGLER(RTPathUserDocuments)
1562# define RTPathUserHome RT_MANGLER(RTPathUserHome)
1563# define RTPipeClose RT_MANGLER(RTPipeClose)
1564# define RTPipeCreate RT_MANGLER(RTPipeCreate)
1565# define RTPipeFlush RT_MANGLER(RTPipeFlush)
1566# define RTPipeFromNative RT_MANGLER(RTPipeFromNative)
1567# define RTPipeQueryInfo RT_MANGLER(RTPipeQueryInfo)
1568# define RTPipeQueryReadable RT_MANGLER(RTPipeQueryReadable)
1569# define RTPipeRead RT_MANGLER(RTPipeRead)
1570# define RTPipeReadBlocking RT_MANGLER(RTPipeReadBlocking)
1571# define RTPipeSelectOne RT_MANGLER(RTPipeSelectOne)
1572# define RTPipeToNative RT_MANGLER(RTPipeToNative)
1573# define RTPipeWrite RT_MANGLER(RTPipeWrite)
1574# define RTPipeWriteBlocking RT_MANGLER(RTPipeWriteBlocking)
1575# define RTPoll RT_MANGLER(RTPoll)
1576# define RTPollNoResume RT_MANGLER(RTPollNoResume)
1577# define RTPollSetAdd RT_MANGLER(RTPollSetAdd)
1578# define RTPollSetCreate RT_MANGLER(RTPollSetCreate)
1579# define RTPollSetDestroy RT_MANGLER(RTPollSetDestroy)
1580# define RTPollSetEventsChange RT_MANGLER(RTPollSetEventsChange)
1581# define RTPollSetGetCount RT_MANGLER(RTPollSetGetCount)
1582# define RTPollSetQueryHandle RT_MANGLER(RTPollSetQueryHandle)
1583# define RTPollSetRemove RT_MANGLER(RTPollSetRemove)
1584# define RTPowerNotificationDeregister RT_MANGLER(RTPowerNotificationDeregister) /* r0drv */
1585# define RTPowerNotificationRegister RT_MANGLER(RTPowerNotificationRegister) /* r0drv */
1586# define RTPowerSignalEvent RT_MANGLER(RTPowerSignalEvent) /* r0drv */
1587# define RTPrintf RT_MANGLER(RTPrintf)
1588# define RTPrintfV RT_MANGLER(RTPrintfV)
1589# define RTProcCreate RT_MANGLER(RTProcCreate)
1590# define RTProcCreateEx RT_MANGLER(RTProcCreateEx)
1591# define RTProcDaemonize RT_MANGLER(RTProcDaemonize)
1592# define RTProcDaemonizeUsingFork RT_MANGLER(RTProcDaemonizeUsingFork)
1593# define RTProcGetAffinityMask RT_MANGLER(RTProcGetAffinityMask)
1594# define RTProcGetExecutablePath RT_MANGLER(RTProcGetExecutablePath)
1595# define RTProcGetPriority RT_MANGLER(RTProcGetPriority)
1596# define RTProcIsRunningByName RT_MANGLER(RTProcIsRunningByName)
1597# define RTProcQueryParent RT_MANGLER(RTProcQueryParent)
1598# define RTProcQueryUsername RT_MANGLER(RTProcQueryUsername)
1599# define RTProcQueryUsernameA RT_MANGLER(RTProcQueryUsernameA)
1600# define RTProcSelf RT_MANGLER(RTProcSelf)
1601# define RTProcSetPriority RT_MANGLER(RTProcSetPriority)
1602# define RTProcShortName RT_MANGLER(RTProcShortName)
1603# define RTProcTerminate RT_MANGLER(RTProcTerminate)
1604# define RTProcWait RT_MANGLER(RTProcWait)
1605# define RTProcWaitNoResume RT_MANGLER(RTProcWaitNoResume)
1606# define RTR0AssertPanicSystem RT_MANGLER(RTR0AssertPanicSystem) /* r0drv */
1607# define RTR0DbgKrnlInfoOpen RT_MANGLER(RTR0DbgKrnlInfoOpen) /* r0drv */
1608# define RTR0DbgKrnlInfoQueryMember RT_MANGLER(RTR0DbgKrnlInfoQueryMember) /* r0drv */
1609# define RTR0DbgKrnlInfoQuerySize RT_MANGLER(RTR0DbgKrnlInfoQuerySize) /* r0drv */
1610# define RTR0DbgKrnlInfoQuerySymbol RT_MANGLER(RTR0DbgKrnlInfoQuerySymbol) /* r0drv */
1611# define RTR0DbgKrnlInfoRelease RT_MANGLER(RTR0DbgKrnlInfoRelease) /* r0drv */
1612# define RTR0DbgKrnlInfoRetain RT_MANGLER(RTR0DbgKrnlInfoRetain) /* r0drv */
1613# define RTR0Init RT_MANGLER(RTR0Init) /* r0drv */
1614# define RTR0MemAreKrnlAndUsrDifferent RT_MANGLER(RTR0MemAreKrnlAndUsrDifferent) /* r0drv */
1615# define RTR0MemExecDonate RT_MANGLER(RTR0MemExecDonate) /* r0drv */
1616# define RTR0MemKernelIsValidAddr RT_MANGLER(RTR0MemKernelIsValidAddr) /* r0drv */
1617# define RTR0MemObjAddress RT_MANGLER(RTR0MemObjAddress) /* r0drv */
1618# define RTR0MemObjAddressR3 RT_MANGLER(RTR0MemObjAddressR3) /* r0drv */
1619# define RTR0MemKernelCopyFrom RT_MANGLER(RTR0MemKernelCopyFrom) /* r0drv */
1620# define RTR0MemKernelCopyTo RT_MANGLER(RTR0MemKernelCopyTo) /* r0drv */
1621# define RTR0MemObjAllocContTag RT_MANGLER(RTR0MemObjAllocContTag) /* r0drv */
1622# define RTR0MemObjAllocLowTag RT_MANGLER(RTR0MemObjAllocLowTag) /* r0drv */
1623# define RTR0MemObjAllocPageTag RT_MANGLER(RTR0MemObjAllocPageTag) /* r0drv */
1624# define RTR0MemObjAllocPhysExTag RT_MANGLER(RTR0MemObjAllocPhysExTag) /* r0drv */
1625# define RTR0MemObjAllocPhysNCTag RT_MANGLER(RTR0MemObjAllocPhysNCTag) /* r0drv */
1626# define RTR0MemObjAllocPhysTag RT_MANGLER(RTR0MemObjAllocPhysTag) /* r0drv */
1627# define RTR0MemObjEnterPhysTag RT_MANGLER(RTR0MemObjEnterPhysTag) /* r0drv */
1628# define RTR0MemObjFree RT_MANGLER(RTR0MemObjFree) /* r0drv */
1629# define RTR0MemObjGetPagePhysAddr RT_MANGLER(RTR0MemObjGetPagePhysAddr) /* r0drv */
1630# define RTR0MemObjIsMapping RT_MANGLER(RTR0MemObjIsMapping) /* r0drv */
1631# define RTR0MemObjLockKernelTag RT_MANGLER(RTR0MemObjLockKernelTag) /* r0drv */
1632# define RTR0MemObjLockUserTag RT_MANGLER(RTR0MemObjLockUserTag) /* r0drv */
1633# define RTR0MemObjMapKernelExTag RT_MANGLER(RTR0MemObjMapKernelExTag) /* r0drv */
1634# define RTR0MemObjMapKernelTag RT_MANGLER(RTR0MemObjMapKernelTag) /* r0drv */
1635# define RTR0MemObjMapUserTag RT_MANGLER(RTR0MemObjMapUserTag) /* r0drv */
1636# define RTR0MemObjProtect RT_MANGLER(RTR0MemObjProtect) /* r0drv */
1637# define RTR0MemObjReserveKernelTag RT_MANGLER(RTR0MemObjReserveKernelTag) /* r0drv */
1638# define RTR0MemObjReserveUserTag RT_MANGLER(RTR0MemObjReserveUserTag) /* r0drv */
1639# define RTR0MemObjSize RT_MANGLER(RTR0MemObjSize) /* r0drv */
1640# define RTR0MemUserCopyFrom RT_MANGLER(RTR0MemUserCopyFrom) /* r0drv */
1641# define RTR0MemUserCopyTo RT_MANGLER(RTR0MemUserCopyTo) /* r0drv */
1642# define RTR0MemUserIsValidAddr RT_MANGLER(RTR0MemUserIsValidAddr) /* r0drv */
1643# define RTR0ProcHandleSelf RT_MANGLER(RTR0ProcHandleSelf) /* r0drv */
1644# define RTR0Term RT_MANGLER(RTR0Term) /* r0drv */
1645# define RTR0TermForced RT_MANGLER(RTR0TermForced) /* r0drv */
1646# define RTR3InitDll RT_MANGLER(RTR3InitDll)
1647# define RTR3InitExe RT_MANGLER(RTR3InitExe)
1648# define RTR3InitExeNoArguments RT_MANGLER(RTR3InitExeNoArguments)
1649# define RTR3InitEx RT_MANGLER(RTR3InitEx)
1650# define RTR3InitIsInitialized RT_MANGLER(RTR3InitIsInitialized)
1651# define RTR3InitIsUnobtrusive RT_MANGLER(RTR3InitIsUnobtrusive)
1652# define rtR3MemAlloc RT_MANGLER(rtR3MemAlloc)
1653# define rtR3MemFree RT_MANGLER(rtR3MemFree)
1654# define rtR3MemRealloc RT_MANGLER(rtR3MemRealloc)
1655# define RTRCInit RT_MANGLER(RTRCInit)
1656# define RTRCTerm RT_MANGLER(RTRCTerm)
1657# define RTRandAdvBytes RT_MANGLER(RTRandAdvBytes)
1658# define RTRandAdvCreateParkMiller RT_MANGLER(RTRandAdvCreateParkMiller)
1659# define RTRandAdvCreateSystemFaster RT_MANGLER(RTRandAdvCreateSystemFaster)
1660# define RTRandAdvCreateSystemTruer RT_MANGLER(RTRandAdvCreateSystemTruer)
1661# define RTRandAdvDestroy RT_MANGLER(RTRandAdvDestroy)
1662# define RTRandAdvRestoreState RT_MANGLER(RTRandAdvRestoreState)
1663# define RTRandAdvS32 RT_MANGLER(RTRandAdvS32)
1664# define RTRandAdvS32Ex RT_MANGLER(RTRandAdvS32Ex)
1665# define RTRandAdvS64 RT_MANGLER(RTRandAdvS64)
1666# define RTRandAdvS64Ex RT_MANGLER(RTRandAdvS64Ex)
1667# define RTRandAdvSaveState RT_MANGLER(RTRandAdvSaveState)
1668# define RTRandAdvSeed RT_MANGLER(RTRandAdvSeed)
1669# define RTRandAdvU32 RT_MANGLER(RTRandAdvU32)
1670# define RTRandAdvU32Ex RT_MANGLER(RTRandAdvU32Ex)
1671# define RTRandAdvU64 RT_MANGLER(RTRandAdvU64)
1672# define RTRandAdvU64Ex RT_MANGLER(RTRandAdvU64Ex)
1673# define RTRandBytes RT_MANGLER(RTRandBytes)
1674# define RTRandS32 RT_MANGLER(RTRandS32)
1675# define RTRandS32Ex RT_MANGLER(RTRandS32Ex)
1676# define RTRandS64 RT_MANGLER(RTRandS64)
1677# define RTRandS64Ex RT_MANGLER(RTRandS64Ex)
1678# define RTRandU32 RT_MANGLER(RTRandU32)
1679# define RTRandU32Ex RT_MANGLER(RTRandU32Ex)
1680# define RTRandU64 RT_MANGLER(RTRandU64)
1681# define RTRandU64Ex RT_MANGLER(RTRandU64Ex)
1682# define RTReqPoolAlloc RT_MANGLER(RTReqPoolAlloc)
1683# define RTReqPoolCallEx RT_MANGLER(RTReqPoolCallEx)
1684# define RTReqPoolCallExV RT_MANGLER(RTReqPoolCallExV)
1685# define RTReqPoolCallWait RT_MANGLER(RTReqPoolCallWait)
1686# define RTReqPoolCallNoWait RT_MANGLER(RTReqPoolCallNoWait)
1687# define RTReqPoolCallVoidWait RT_MANGLER(RTReqPoolCallVoidWait)
1688# define RTReqPoolCallVoidNoWait RT_MANGLER(RTReqPoolCallVoidNoWait)
1689# define RTReqPoolCreate RT_MANGLER(RTReqPoolCreate)
1690# define RTReqPoolGetCfgVar RT_MANGLER(RTReqPoolGetCfgVar)
1691# define RTReqPoolGetStat RT_MANGLER(RTReqPoolGetStat)
1692# define RTReqPoolRetain RT_MANGLER(RTReqPoolRetain)
1693# define RTReqPoolRelease RT_MANGLER(RTReqPoolRelease)
1694# define RTReqPoolSetCfgVar RT_MANGLER(RTReqPoolSetCfgVar)
1695# define RTReqQueueAlloc RT_MANGLER(RTReqQueueAlloc)
1696# define RTReqQueueCall RT_MANGLER(RTReqQueueCall)
1697# define RTReqQueueCallEx RT_MANGLER(RTReqQueueCallEx)
1698# define RTReqQueueCallV RT_MANGLER(RTReqQueueCallV)
1699# define RTReqQueueCallVoid RT_MANGLER(RTReqQueueCallVoid)
1700# define RTReqQueueCreate RT_MANGLER(RTReqQueueCreate)
1701# define RTReqQueueDestroy RT_MANGLER(RTReqQueueDestroy)
1702# define RTReqQueueIsBusy RT_MANGLER(RTReqQueueIsBusy)
1703# define RTReqQueueProcess RT_MANGLER(RTReqQueueProcess)
1704# define RTReqSubmit RT_MANGLER(RTReqSubmit)
1705# define RTReqRelease RT_MANGLER(RTReqRelease)
1706# define RTReqRetain RT_MANGLER(RTReqRetain)
1707# define RTReqWait RT_MANGLER(RTReqWait)
1708# define RTReqGetStatus RT_MANGLER(RTReqGetStatus)
1709# define RTS3BucketsDestroy RT_MANGLER(RTS3BucketsDestroy)
1710# define RTS3Create RT_MANGLER(RTS3Create)
1711# define RTS3CreateBucket RT_MANGLER(RTS3CreateBucket)
1712# define RTS3DeleteBucket RT_MANGLER(RTS3DeleteBucket)
1713# define RTS3DeleteKey RT_MANGLER(RTS3DeleteKey)
1714# define RTS3Destroy RT_MANGLER(RTS3Destroy)
1715# define RTS3GetBucketKeys RT_MANGLER(RTS3GetBucketKeys)
1716# define RTS3GetBuckets RT_MANGLER(RTS3GetBuckets)
1717# define RTS3GetKey RT_MANGLER(RTS3GetKey)
1718# define RTS3KeysDestroy RT_MANGLER(RTS3KeysDestroy)
1719# define RTS3PutKey RT_MANGLER(RTS3PutKey)
1720# define RTS3SetProgressCallback RT_MANGLER(RTS3SetProgressCallback)
1721# define RTSemEventAddSignaller RT_MANGLER(RTSemEventAddSignaller)
1722# define RTSemEventCreate RT_MANGLER(RTSemEventCreate)
1723# define RTSemEventCreateEx RT_MANGLER(RTSemEventCreateEx)
1724# define RTSemEventDestroy RT_MANGLER(RTSemEventDestroy)
1725# define RTSemEventGetResolution RT_MANGLER(RTSemEventGetResolution) /* r0drv */
1726# define RTSemEventMultiAddSignaller RT_MANGLER(RTSemEventMultiAddSignaller)
1727# define RTSemEventMultiCreate RT_MANGLER(RTSemEventMultiCreate)
1728# define RTSemEventMultiCreateEx RT_MANGLER(RTSemEventMultiCreateEx)
1729# define RTSemEventMultiDestroy RT_MANGLER(RTSemEventMultiDestroy)
1730# define RTSemEventMultiGetResolution RT_MANGLER(RTSemEventMultiGetResolution) /* r0drv */
1731# define RTSemEventMultiRemoveSignaller RT_MANGLER(RTSemEventMultiRemoveSignaller)
1732# define RTSemEventMultiReset RT_MANGLER(RTSemEventMultiReset)
1733# define RTSemEventMultiSetSignaller RT_MANGLER(RTSemEventMultiSetSignaller)
1734# define RTSemEventMultiSignal RT_MANGLER(RTSemEventMultiSignal)
1735# define RTSemEventMultiWait RT_MANGLER(RTSemEventMultiWait)
1736# define RTSemEventMultiWaitEx RT_MANGLER(RTSemEventMultiWaitEx)
1737# define RTSemEventMultiWaitEx RT_MANGLER(RTSemEventMultiWaitEx) /* r0drv */
1738# define RTSemEventMultiWaitExDebug RT_MANGLER(RTSemEventMultiWaitExDebug)
1739# define RTSemEventMultiWaitExDebug RT_MANGLER(RTSemEventMultiWaitExDebug) /* r0drv */
1740# define RTSemEventMultiWaitNoResume RT_MANGLER(RTSemEventMultiWaitNoResume)
1741# define RTSemEventRemoveSignaller RT_MANGLER(RTSemEventRemoveSignaller)
1742# define RTSemEventSetSignaller RT_MANGLER(RTSemEventSetSignaller)
1743# define RTSemEventSignal RT_MANGLER(RTSemEventSignal)
1744# define RTSemEventWait RT_MANGLER(RTSemEventWait)
1745# define RTSemEventWaitEx RT_MANGLER(RTSemEventWaitEx) /* r0drv */
1746# define RTSemEventWaitExDebug RT_MANGLER(RTSemEventWaitExDebug) /* r0drv */
1747# define RTSemEventWaitNoResume RT_MANGLER(RTSemEventWaitNoResume)
1748# define RTSemFastMutexCreate RT_MANGLER(RTSemFastMutexCreate)
1749# define RTSemFastMutexDestroy RT_MANGLER(RTSemFastMutexDestroy)
1750# define RTSemFastMutexRelease RT_MANGLER(RTSemFastMutexRelease)
1751# define RTSemFastMutexRequest RT_MANGLER(RTSemFastMutexRequest)
1752# define RTSemMutexCreate RT_MANGLER(RTSemMutexCreate)
1753# define RTSemMutexCreateEx RT_MANGLER(RTSemMutexCreateEx)
1754# define RTSemMutexDestroy RT_MANGLER(RTSemMutexDestroy)
1755# define RTSemMutexIsOwned RT_MANGLER(RTSemMutexIsOwned)
1756# define RTSemMutexRelease RT_MANGLER(RTSemMutexRelease)
1757# define RTSemMutexRequest RT_MANGLER(RTSemMutexRequest)
1758# define RTSemMutexRequestDebug RT_MANGLER(RTSemMutexRequestDebug)
1759# define RTSemMutexRequestNoResume RT_MANGLER(RTSemMutexRequestNoResume)
1760# define RTSemMutexRequestNoResumeDebug RT_MANGLER(RTSemMutexRequestNoResumeDebug)
1761# define RTSemMutexSetSubClass RT_MANGLER(RTSemMutexSetSubClass)
1762# define RTSemPing RT_MANGLER(RTSemPing)
1763# define RTSemPingPongDelete RT_MANGLER(RTSemPingPongDelete)
1764# define RTSemPingPongInit RT_MANGLER(RTSemPingPongInit)
1765# define RTSemPingWait RT_MANGLER(RTSemPingWait)
1766# define RTSemPong RT_MANGLER(RTSemPong)
1767# define RTSemPongWait RT_MANGLER(RTSemPongWait)
1768# define RTSemRWCreate RT_MANGLER(RTSemRWCreate)
1769# define RTSemRWCreateEx RT_MANGLER(RTSemRWCreateEx)
1770# define RTSemRWDestroy RT_MANGLER(RTSemRWDestroy)
1771# define RTSemRWGetReadCount RT_MANGLER(RTSemRWGetReadCount)
1772# define RTSemRWGetWriteRecursion RT_MANGLER(RTSemRWGetWriteRecursion)
1773# define RTSemRWGetWriterReadRecursion RT_MANGLER(RTSemRWGetWriterReadRecursion)
1774# define RTSemRWIsReadOwner RT_MANGLER(RTSemRWIsReadOwner)
1775# define RTSemRWIsWriteOwner RT_MANGLER(RTSemRWIsWriteOwner)
1776# define RTSemRWReleaseRead RT_MANGLER(RTSemRWReleaseRead)
1777# define RTSemRWReleaseWrite RT_MANGLER(RTSemRWReleaseWrite)
1778# define RTSemRWRequestRead RT_MANGLER(RTSemRWRequestRead)
1779# define RTSemRWRequestReadDebug RT_MANGLER(RTSemRWRequestReadDebug)
1780# define RTSemRWRequestReadNoResume RT_MANGLER(RTSemRWRequestReadNoResume)
1781# define RTSemRWRequestReadNoResumeDebug RT_MANGLER(RTSemRWRequestReadNoResumeDebug)
1782# define RTSemRWRequestWrite RT_MANGLER(RTSemRWRequestWrite)
1783# define RTSemRWRequestWriteDebug RT_MANGLER(RTSemRWRequestWriteDebug)
1784# define RTSemRWRequestWriteNoResume RT_MANGLER(RTSemRWRequestWriteNoResume)
1785# define RTSemRWRequestWriteNoResumeDebug RT_MANGLER(RTSemRWRequestWriteNoResumeDebug)
1786# define RTSemRWSetSubClass RT_MANGLER(RTSemRWSetSubClass)
1787# define RTSemSpinMutexCreate RT_MANGLER(RTSemSpinMutexCreate)
1788# define RTSemSpinMutexDestroy RT_MANGLER(RTSemSpinMutexDestroy)
1789# define RTSemSpinMutexRelease RT_MANGLER(RTSemSpinMutexRelease)
1790# define RTSemSpinMutexRequest RT_MANGLER(RTSemSpinMutexRequest)
1791# define RTSemSpinMutexTryRequest RT_MANGLER(RTSemSpinMutexTryRequest)
1792# define RTSemXRoadsCreate RT_MANGLER(RTSemXRoadsCreate)
1793# define RTSemXRoadsDestroy RT_MANGLER(RTSemXRoadsDestroy)
1794# define RTSemXRoadsEWEnter RT_MANGLER(RTSemXRoadsEWEnter)
1795# define RTSemXRoadsEWLeave RT_MANGLER(RTSemXRoadsEWLeave)
1796# define RTSemXRoadsNSEnter RT_MANGLER(RTSemXRoadsNSEnter)
1797# define RTSemXRoadsNSLeave RT_MANGLER(RTSemXRoadsNSLeave)
1798# define RTSgBufAdvance RT_MANGLER(RTSgBufAdvance)
1799# define RTSgBufClone RT_MANGLER(RTSgBufClone)
1800# define RTSgBufCmp RT_MANGLER(RTSgBufCmp)
1801# define RTSgBufCmpEx RT_MANGLER(RTSgBufCmpEx)
1802# define RTSgBufCopy RT_MANGLER(RTSgBufCopy)
1803# define RTSgBufCopyFromBuf RT_MANGLER(RTSgBufCopyFromBuf)
1804# define RTSgBufCopyToBuf RT_MANGLER(RTSgBufCopyToBuf)
1805# define RTSgBufInit RT_MANGLER(RTSgBufInit)
1806# define RTSgBufIsZero RT_MANGLER(RTSgBufIsZero)
1807# define RTSgBufReset RT_MANGLER(RTSgBufReset)
1808# define RTSgBufSegArrayCreate RT_MANGLER(RTSgBufSegArrayCreate)
1809# define RTSgBufSet RT_MANGLER(RTSgBufSet)
1810# define RTSgBufGetNextSegment RT_MANGLER(RTSgBufGetNextSegment)
1811# define RTSha1 RT_MANGLER(RTSha1)
1812# define RTSha1Check RT_MANGLER(RTSha1Check)
1813# define RTSha1Digest RT_MANGLER(RTSha1Digest)
1814# define RTSha1DigestFromFile RT_MANGLER(RTSha1DigestFromFile)
1815# define RTSha1Final RT_MANGLER(RTSha1Final)
1816# define RTSha1FromString RT_MANGLER(RTSha1FromString)
1817# define RTSha1Init RT_MANGLER(RTSha1Init)
1818# define RTSha1ToString RT_MANGLER(RTSha1ToString)
1819# define RTSha1Update RT_MANGLER(RTSha1Update)
1820# define RTSha224 RT_MANGLER(RTSha224)
1821# define RTSha224Check RT_MANGLER(RTSha224Check)
1822# define RTSha224Final RT_MANGLER(RTSha224Final)
1823# define RTSha224FromString RT_MANGLER(RTSha224FromString)
1824# define RTSha224Init RT_MANGLER(RTSha224Init)
1825# define RTSha224ToString RT_MANGLER(RTSha224ToString)
1826# define RTSha224Update RT_MANGLER(RTSha224Update)
1827# define RTSha224Digest RT_MANGLER(RTSha224Digest)
1828# define RTSha224DigestFromFile RT_MANGLER(RTSha224DigestFromFile)
1829# define RTSha256 RT_MANGLER(RTSha256)
1830# define RTSha256Check RT_MANGLER(RTSha256Check)
1831# define RTSha256Final RT_MANGLER(RTSha256Final)
1832# define RTSha256FromString RT_MANGLER(RTSha256FromString)
1833# define RTSha256Init RT_MANGLER(RTSha256Init)
1834# define RTSha256ToString RT_MANGLER(RTSha256ToString)
1835# define RTSha256Update RT_MANGLER(RTSha256Update)
1836# define RTSha256Digest RT_MANGLER(RTSha256Digest)
1837# define RTSha256DigestFromFile RT_MANGLER(RTSha256DigestFromFile)
1838# define RTSha384 RT_MANGLER(RTSha384)
1839# define RTSha384Check RT_MANGLER(RTSha384Check)
1840# define RTSha384Final RT_MANGLER(RTSha384Final)
1841# define RTSha384FromString RT_MANGLER(RTSha384FromString)
1842# define RTSha384Init RT_MANGLER(RTSha384Init)
1843# define RTSha384ToString RT_MANGLER(RTSha384ToString)
1844# define RTSha384Update RT_MANGLER(RTSha384Update)
1845# define RTSha512 RT_MANGLER(RTSha512)
1846# define RTSha512Check RT_MANGLER(RTSha512Check)
1847# define RTSha512Final RT_MANGLER(RTSha512Final)
1848# define RTSha512FromString RT_MANGLER(RTSha512FromString)
1849# define RTSha512Init RT_MANGLER(RTSha512Init)
1850# define RTSha512ToString RT_MANGLER(RTSha512ToString)
1851# define RTSha512Update RT_MANGLER(RTSha512Update)
1852# define RTSha512t224 RT_MANGLER(RTSha512t224)
1853# define RTSha512t224Check RT_MANGLER(RTSha512t224Check)
1854# define RTSha512t224Final RT_MANGLER(RTSha512t224Final)
1855# define RTSha512t224FromString RT_MANGLER(RTSha512t224FromString)
1856# define RTSha512t224Init RT_MANGLER(RTSha512t224Init)
1857# define RTSha512t224ToString RT_MANGLER(RTSha512t224ToString)
1858# define RTSha512t224Update RT_MANGLER(RTSha512t224Update)
1859# define RTSha512t256 RT_MANGLER(RTSha512t256)
1860# define RTSha512t256Check RT_MANGLER(RTSha512t256Check)
1861# define RTSha512t256Final RT_MANGLER(RTSha512t256Final)
1862# define RTSha512t256FromString RT_MANGLER(RTSha512t256FromString)
1863# define RTSha512t256Init RT_MANGLER(RTSha512t256Init)
1864# define RTSha512t256ToString RT_MANGLER(RTSha512t256ToString)
1865# define RTSha512t256Update RT_MANGLER(RTSha512t256Update)
1866# define RTSocketClose RT_MANGLER(RTSocketClose)
1867# define RTSocketFromNative RT_MANGLER(RTSocketFromNative)
1868# define RTSocketQueryAddressStr RT_MANGLER(RTSocketQueryAddressStr)
1869# define RTSocketGetLocalAddress RT_MANGLER(RTSocketGetLocalAddress)
1870# define RTSocketGetPeerAddress RT_MANGLER(RTSocketGetPeerAddress)
1871# define RTSocketParseInetAddress RT_MANGLER(RTSocketParseInetAddress)
1872# define RTSocketRead RT_MANGLER(RTSocketRead)
1873# define RTSocketReadFrom RT_MANGLER(RTSocketReadFrom)
1874# define RTSocketReadNB RT_MANGLER(RTSocketReadNB)
1875# define RTSocketRelease RT_MANGLER(RTSocketRelease)
1876# define RTSocketRetain RT_MANGLER(RTSocketRetain)
1877# define RTSocketSelectOne RT_MANGLER(RTSocketSelectOne)
1878# define RTSocketSelectOneEx RT_MANGLER(RTSocketSelectOneEx)
1879# define RTSocketSetInheritance RT_MANGLER(RTSocketSetInheritance)
1880# define RTSocketSgWrite RT_MANGLER(RTSocketSgWrite)
1881# define RTSocketSgWriteL RT_MANGLER(RTSocketSgWriteL)
1882# define RTSocketSgWriteLNB RT_MANGLER(RTSocketSgWriteLNB)
1883# define RTSocketSgWriteLV RT_MANGLER(RTSocketSgWriteLV)
1884# define RTSocketSgWriteLVNB RT_MANGLER(RTSocketSgWriteLVNB)
1885# define RTSocketSgWriteNB RT_MANGLER(RTSocketSgWriteNB)
1886# define RTSocketShutdown RT_MANGLER(RTSocketShutdown)
1887# define RTSocketToNative RT_MANGLER(RTSocketToNative)
1888# define RTSocketWrite RT_MANGLER(RTSocketWrite)
1889# define RTSocketWriteNB RT_MANGLER(RTSocketWriteNB)
1890# define RTSocketWriteTo RT_MANGLER(RTSocketWriteTo)
1891# define RTSocketWriteToNB RT_MANGLER(RTSocketWriteToNB)
1892# define RTSortApvIsSorted RT_MANGLER(RTSortApvIsSorted)
1893# define RTSortApvShell RT_MANGLER(RTSortApvShell)
1894# define RTSortIsSorted RT_MANGLER(RTSortIsSorted)
1895# define RTSortShell RT_MANGLER(RTSortShell)
1896# define RTSpinlockAcquire RT_MANGLER(RTSpinlockAcquire)
1897# define RTSpinlockAcquireNoInts RT_MANGLER(RTSpinlockAcquireNoInts)
1898# define RTSpinlockCreate RT_MANGLER(RTSpinlockCreate)
1899# define RTSpinlockDestroy RT_MANGLER(RTSpinlockDestroy)
1900# define RTSpinlockRelease RT_MANGLER(RTSpinlockRelease)
1901# define RTStrAAppendExNVTag RT_MANGLER(RTStrAAppendExNVTag)
1902# define RTStrAAppendNTag RT_MANGLER(RTStrAAppendNTag)
1903# define RTStrAAppendTag RT_MANGLER(RTStrAAppendTag)
1904# define RTStrAllocExTag RT_MANGLER(RTStrAllocExTag)
1905# define RTStrAllocTag RT_MANGLER(RTStrAllocTag)
1906# define RTStrAPrintf2VTag RT_MANGLER(RTStrAPrintf2VTag)
1907# define RTStrAPrintfVTag RT_MANGLER(RTStrAPrintfVTag)
1908# define RTStrATruncateTag RT_MANGLER(RTStrATruncateTag)
1909# define RTStrCacheCreate RT_MANGLER(RTStrCacheCreate)
1910# define RTStrCacheDestroy RT_MANGLER(RTStrCacheDestroy)
1911# define RTStrCacheEnter RT_MANGLER(RTStrCacheEnter)
1912# define RTStrCacheEnterLower RT_MANGLER(RTStrCacheEnterLower)
1913# define RTStrCacheEnterLowerN RT_MANGLER(RTStrCacheEnterLowerN)
1914# define RTStrCacheEnterN RT_MANGLER(RTStrCacheEnterN)
1915# define RTStrCacheGetStats RT_MANGLER(RTStrCacheGetStats)
1916# define RTStrCacheIsRealImpl RT_MANGLER(RTStrCacheIsRealImpl)
1917# define RTStrCacheLength RT_MANGLER(RTStrCacheLength)
1918# define RTStrCacheRelease RT_MANGLER(RTStrCacheRelease)
1919# define RTStrCacheRetain RT_MANGLER(RTStrCacheRetain)
1920# define RTStrCalcLatin1Len RT_MANGLER(RTStrCalcLatin1Len)
1921# define RTStrCalcLatin1LenEx RT_MANGLER(RTStrCalcLatin1LenEx)
1922# define RTStrCalcUtf16Len RT_MANGLER(RTStrCalcUtf16Len)
1923# define RTStrCalcUtf16LenEx RT_MANGLER(RTStrCalcUtf16LenEx)
1924# define RTStrCat RT_MANGLER(RTStrCat)
1925# define RTStrCatEx RT_MANGLER(RTStrCatEx)
1926# define RTStrCatP RT_MANGLER(RTStrCatP)
1927# define RTStrCatPEx RT_MANGLER(RTStrCatPEx)
1928# define RTStrCmp RT_MANGLER(RTStrCmp)
1929# define RTStrConvertHexBytes RT_MANGLER(RTStrConvertHexBytes)
1930# define RTStrCopy RT_MANGLER(RTStrCopy)
1931# define RTStrCopyEx RT_MANGLER(RTStrCopyEx)
1932# define RTStrCopyP RT_MANGLER(RTStrCopyP)
1933# define RTStrCopyPEx RT_MANGLER(RTStrCopyPEx)
1934# define RTStrCurrentCPToUtf8Tag RT_MANGLER(RTStrCurrentCPToUtf8Tag)
1935# define RTStrDupExTag RT_MANGLER(RTStrDupExTag)
1936# define RTStrDupNTag RT_MANGLER(RTStrDupNTag)
1937# define RTStrDupTag RT_MANGLER(RTStrDupTag)
1938# define RTStrFormat RT_MANGLER(RTStrFormat)
1939# define RTStrFormatNumber RT_MANGLER(RTStrFormatNumber)
1940# define RTStrFormatR80 RT_MANGLER(RTStrFormatR80)
1941# define RTStrFormatR80u2 RT_MANGLER(RTStrFormatR80u2)
1942# define RTStrFormatTypeDeregister RT_MANGLER(RTStrFormatTypeDeregister)
1943# define RTStrFormatTypeRegister RT_MANGLER(RTStrFormatTypeRegister)
1944# define RTStrFormatTypeSetUser RT_MANGLER(RTStrFormatTypeSetUser)
1945# define RTStrFormatU128 RT_MANGLER(RTStrFormatU128)
1946# define RTStrFormatU256 RT_MANGLER(RTStrFormatU256)
1947# define RTStrFormatU512 RT_MANGLER(RTStrFormatU512)
1948# define RTStrFormatU16 RT_MANGLER(RTStrFormatU16)
1949# define RTStrFormatU32 RT_MANGLER(RTStrFormatU32)
1950# define RTStrFormatU64 RT_MANGLER(RTStrFormatU64)
1951# define RTStrFormatU8 RT_MANGLER(RTStrFormatU8)
1952# define RTStrFormatV RT_MANGLER(RTStrFormatV)
1953# define RTStrFree RT_MANGLER(RTStrFree)
1954# define RTStrGetCpExInternal RT_MANGLER(RTStrGetCpExInternal)
1955# define RTStrGetCpInternal RT_MANGLER(RTStrGetCpInternal)
1956# define RTStrGetCpNExInternal RT_MANGLER(RTStrGetCpNExInternal)
1957# define RTStrHash1 RT_MANGLER(RTStrHash1)
1958# define RTStrHash1ExN RT_MANGLER(RTStrHash1ExN)
1959# define RTStrHash1ExNV RT_MANGLER(RTStrHash1ExNV)
1960# define RTStrHash1N RT_MANGLER(RTStrHash1N)
1961# define RTStrICmp RT_MANGLER(RTStrICmp)
1962# define RTStrICmpAscii RT_MANGLER(RTStrICmpAscii)
1963# define RTStrIStartsWith RT_MANGLER(RTStrIStartsWith)
1964# define RTStrIStr RT_MANGLER(RTStrIStr)
1965# define RTStrIsCaseFoldable RT_MANGLER(RTStrIsCaseFoldable)
1966# define RTStrIsLowerCased RT_MANGLER(RTStrIsLowerCased)
1967# define RTStrIsUpperCased RT_MANGLER(RTStrIsUpperCased)
1968# define RTStrIsValidEncoding RT_MANGLER(RTStrIsValidEncoding)
1969# define RTStrmClearError RT_MANGLER(RTStrmClearError)
1970# define RTStrmClose RT_MANGLER(RTStrmClose)
1971# define RTStrmError RT_MANGLER(RTStrmError)
1972# define RTStrmFlush RT_MANGLER(RTStrmFlush)
1973# define RTStrmGetCh RT_MANGLER(RTStrmGetCh)
056a1eb7
SF
1974# define RTStrmGetLine RT_MANGLER(RTStrmGetLine)
1975# define RTStrmOpen RT_MANGLER(RTStrmOpen)
1976# define RTStrmOpenF RT_MANGLER(RTStrmOpenF)
1977# define RTStrmOpenFV RT_MANGLER(RTStrmOpenFV)
1978# define RTStrmPrintf RT_MANGLER(RTStrmPrintf)
1979# define RTStrmPrintfV RT_MANGLER(RTStrmPrintfV)
1980# define RTStrmDumpPrintfV RT_MANGLER(RTStrmDumpPrintfV)
1981# define RTStrmPutCh RT_MANGLER(RTStrmPutCh)
1982# define RTStrmPutStr RT_MANGLER(RTStrmPutStr)
1983# define RTStrmReadEx RT_MANGLER(RTStrmReadEx)
1984# define RTStrmRewind RT_MANGLER(RTStrmRewind)
056a1eb7
SF
1985# define RTStrmSetMode RT_MANGLER(RTStrmSetMode)
1986# define RTStrmWriteEx RT_MANGLER(RTStrmWriteEx)
6d209b23
SF
1987# define RTStrmIsTerminal RT_MANGLER(RTStrmIsTerminal)
1988# define RTStrmInputGetEchoChars RT_MANGLER(RTStrmInputGetEchoChars)
1989# define RTStrmInputSetEchoChars RT_MANGLER(RTStrmInputSetEchoChars)
1990# define RTStrmQueryTerminalWidth RT_MANGLER(RTStrmQueryTerminalWidth)
056a1eb7
SF
1991# define RTStrNCmp RT_MANGLER(RTStrNCmp)
1992# define RTStrNICmp RT_MANGLER(RTStrNICmp)
1993# define RTStrNLen RT_MANGLER(RTStrNLen)
1994# define RTStrNLenEx RT_MANGLER(RTStrNLenEx)
1995# define RTStrPrevCp RT_MANGLER(RTStrPrevCp)
1996# define RTStrPrintf RT_MANGLER(RTStrPrintf)
1997# define RTStrPrintfEx RT_MANGLER(RTStrPrintfEx)
1998# define RTStrPrintfExV RT_MANGLER(RTStrPrintfExV)
1999# define RTStrPrintfV RT_MANGLER(RTStrPrintfV)
6d209b23
SF
2000# define RTStrPrintf2 RT_MANGLER(RTStrPrintf2)
2001# define RTStrPrintf2Ex RT_MANGLER(RTStrPrintf2Ex)
2002# define RTStrPrintf2ExV RT_MANGLER(RTStrPrintf2ExV)
2003# define RTStrPrintf2V RT_MANGLER(RTStrPrintf2V)
056a1eb7
SF
2004# define RTStrPrintHexBytes RT_MANGLER(RTStrPrintHexBytes)
2005# define RTStrPurgeEncoding RT_MANGLER(RTStrPurgeEncoding)
2006# define RTStrPurgeComplementSet RT_MANGLER(RTStrPurgeComplementSet)
2007# define RTStrPutCpInternal RT_MANGLER(RTStrPutCpInternal)
2008# define RTStrReallocTag RT_MANGLER(RTStrReallocTag)
2009# define RTStrSimplePatternMatch RT_MANGLER(RTStrSimplePatternMatch)
2010# define RTStrSimplePatternMultiMatch RT_MANGLER(RTStrSimplePatternMultiMatch)
2011# define RTStrSimplePatternNMatch RT_MANGLER(RTStrSimplePatternNMatch)
2012# define RTStrSpaceDestroy RT_MANGLER(RTStrSpaceDestroy)
2013# define RTStrSpaceEnumerate RT_MANGLER(RTStrSpaceEnumerate)
2014# define RTStrSpaceGet RT_MANGLER(RTStrSpaceGet)
2015# define RTStrSpaceGetN RT_MANGLER(RTStrSpaceGetN)
2016# define RTStrSpaceInsert RT_MANGLER(RTStrSpaceInsert)
2017# define RTStrSpaceRemove RT_MANGLER(RTStrSpaceRemove)
2018# define RTStrStartsWith RT_MANGLER(RTStrStartsWith)
2019# define RTStrStr RT_MANGLER(RTStrStr)
2020# define RTStrStrip RT_MANGLER(RTStrStrip)
2021# define RTStrStripL RT_MANGLER(RTStrStripL)
2022# define RTStrStripR RT_MANGLER(RTStrStripR)
2023# define RTStrToInt16 RT_MANGLER(RTStrToInt16)
2024# define RTStrToInt16Ex RT_MANGLER(RTStrToInt16Ex)
2025# define RTStrToInt16Full RT_MANGLER(RTStrToInt16Full)
2026# define RTStrToInt32 RT_MANGLER(RTStrToInt32)
2027# define RTStrToInt32Ex RT_MANGLER(RTStrToInt32Ex)
2028# define RTStrToInt32Full RT_MANGLER(RTStrToInt32Full)
2029# define RTStrToInt64 RT_MANGLER(RTStrToInt64)
2030# define RTStrToInt64Ex RT_MANGLER(RTStrToInt64Ex)
2031# define RTStrToInt64Full RT_MANGLER(RTStrToInt64Full)
2032# define RTStrToInt8 RT_MANGLER(RTStrToInt8)
2033# define RTStrToInt8Ex RT_MANGLER(RTStrToInt8Ex)
2034# define RTStrToInt8Full RT_MANGLER(RTStrToInt8Full)
2035# define RTStrToLatin1ExTag RT_MANGLER(RTStrToLatin1ExTag)
2036# define RTStrToLatin1Tag RT_MANGLER(RTStrToLatin1Tag)
2037# define RTStrToLower RT_MANGLER(RTStrToLower)
2038# define RTStrToUInt16 RT_MANGLER(RTStrToUInt16)
2039# define RTStrToUInt16Ex RT_MANGLER(RTStrToUInt16Ex)
2040# define RTStrToUInt16Full RT_MANGLER(RTStrToUInt16Full)
2041# define RTStrToUInt32 RT_MANGLER(RTStrToUInt32)
2042# define RTStrToUInt32Ex RT_MANGLER(RTStrToUInt32Ex)
2043# define RTStrToUInt32Full RT_MANGLER(RTStrToUInt32Full)
2044# define RTStrToUInt64 RT_MANGLER(RTStrToUInt64)
2045# define RTStrToUInt64Ex RT_MANGLER(RTStrToUInt64Ex)
2046# define RTStrToUInt64Full RT_MANGLER(RTStrToUInt64Full)
2047# define RTStrToUInt8 RT_MANGLER(RTStrToUInt8)
2048# define RTStrToUInt8Ex RT_MANGLER(RTStrToUInt8Ex)
2049# define RTStrToUInt8Full RT_MANGLER(RTStrToUInt8Full)
2050# define RTStrToUni RT_MANGLER(RTStrToUni)
2051# define RTStrToUniEx RT_MANGLER(RTStrToUniEx)
2052# define RTStrToUpper RT_MANGLER(RTStrToUpper)
6d209b23
SF
2053# define RTStrToUtf16BigExTag RT_MANGLER(RTStrToUtf16BigExTag)
2054# define RTStrToUtf16BigTag RT_MANGLER(RTStrToUtf16BigTag)
056a1eb7
SF
2055# define RTStrToUtf16ExTag RT_MANGLER(RTStrToUtf16ExTag)
2056# define RTStrToUtf16Tag RT_MANGLER(RTStrToUtf16Tag)
2057# define RTStrUniLen RT_MANGLER(RTStrUniLen)
2058# define RTStrUniLenEx RT_MANGLER(RTStrUniLenEx)
2059# define RTStrUtf8ToCurrentCPTag RT_MANGLER(RTStrUtf8ToCurrentCPTag)
2060# define RTStrValidateEncoding RT_MANGLER(RTStrValidateEncoding)
2061# define RTStrValidateEncodingEx RT_MANGLER(RTStrValidateEncodingEx)
2062# define RTStrVersionCompare RT_MANGLER(RTStrVersionCompare)
2063# define RTSymlinkCreate RT_MANGLER(RTSymlinkCreate)
2064# define RTSymlinkDelete RT_MANGLER(RTSymlinkDelete)
2065# define RTSymlinkExists RT_MANGLER(RTSymlinkExists)
2066# define RTSymlinkIsDangling RT_MANGLER(RTSymlinkIsDangling)
2067# define RTSymlinkRead RT_MANGLER(RTSymlinkRead)
2068# define RTSymlinkReadA RT_MANGLER(RTSymlinkReadA)
2069# define RTSystemIsInsideVM RT_MANGLER(RTSystemIsInsideVM)
2070# define RTSystemQueryAvailableRam RT_MANGLER(RTSystemQueryAvailableRam)
2071# define RTSystemQueryDmiString RT_MANGLER(RTSystemQueryDmiString)
2072# define RTSystemQueryOSInfo RT_MANGLER(RTSystemQueryOSInfo)
2073# define RTSystemQueryTotalRam RT_MANGLER(RTSystemQueryTotalRam)
2074# define RTSystemShutdown RT_MANGLER(RTSystemShutdown)
2075# define RTTarClose RT_MANGLER(RTTarClose)
2076# define RTTarFileClose RT_MANGLER(RTTarFileClose)
2077# define RTTarFileGetSize RT_MANGLER(RTTarFileGetSize)
2078# define RTTarFileOpen RT_MANGLER(RTTarFileOpen)
2079# define RTTarFileReadAt RT_MANGLER(RTTarFileReadAt)
2080# define RTTarFileSetSize RT_MANGLER(RTTarFileSetSize)
2081# define RTTarFileWriteAt RT_MANGLER(RTTarFileWriteAt)
2082# define RTTarOpen RT_MANGLER(RTTarOpen)
2083# define RTTcpClientCancelConnect RT_MANGLER(RTTcpClientCancelConnect)
2084# define RTTcpClientClose RT_MANGLER(RTTcpClientClose)
2085# define RTTcpClientCloseEx RT_MANGLER(RTTcpClientCloseEx)
2086# define RTTcpClientConnect RT_MANGLER(RTTcpClientConnect)
2087# define RTTcpClientConnectEx RT_MANGLER(RTTcpClientConnectEx)
2088# define RTTcpFlush RT_MANGLER(RTTcpFlush)
2089# define RTTcpGetLocalAddress RT_MANGLER(RTTcpGetLocalAddress)
2090# define RTTcpGetPeerAddress RT_MANGLER(RTTcpGetPeerAddress)
2091# define RTTcpRead RT_MANGLER(RTTcpRead)
2092# define RTTcpReadNB RT_MANGLER(RTTcpReadNB)
2093# define RTTcpSelectOne RT_MANGLER(RTTcpSelectOne)
2094# define RTTcpSelectOneEx RT_MANGLER(RTTcpSelectOneEx)
2095# define RTTcpServerCreate RT_MANGLER(RTTcpServerCreate)
2096# define RTTcpServerCreateEx RT_MANGLER(RTTcpServerCreateEx)
2097# define RTTcpServerDestroy RT_MANGLER(RTTcpServerDestroy)
2098# define RTTcpServerDisconnectClient RT_MANGLER(RTTcpServerDisconnectClient)
2099# define RTTcpServerDisconnectClient2 RT_MANGLER(RTTcpServerDisconnectClient2)
2100# define RTTcpServerListen RT_MANGLER(RTTcpServerListen)
2101# define RTTcpServerListen2 RT_MANGLER(RTTcpServerListen2)
2102# define RTTcpServerShutdown RT_MANGLER(RTTcpServerShutdown)
2103# define RTTcpSetSendCoalescing RT_MANGLER(RTTcpSetSendCoalescing)
2104# define RTTcpSgWrite RT_MANGLER(RTTcpSgWrite)
2105# define RTTcpSgWriteL RT_MANGLER(RTTcpSgWriteL)
2106# define RTTcpSgWriteLNB RT_MANGLER(RTTcpSgWriteLNB)
2107# define RTTcpSgWriteLV RT_MANGLER(RTTcpSgWriteLV)
2108# define RTTcpSgWriteLVNB RT_MANGLER(RTTcpSgWriteLVNB)
2109# define RTTcpSgWriteNB RT_MANGLER(RTTcpSgWriteNB)
2110# define RTTcpWrite RT_MANGLER(RTTcpWrite)
2111# define RTTcpWriteNB RT_MANGLER(RTTcpWriteNB)
2112# define RTTermDeregisterCallback RT_MANGLER(RTTermDeregisterCallback)
2113# define RTTermRegisterCallback RT_MANGLER(RTTermRegisterCallback)
2114# define RTTermRunCallbacks RT_MANGLER(RTTermRunCallbacks)
2115# define RTTestBanner RT_MANGLER(RTTestBanner)
2116# define RTTestChangeName RT_MANGLER(RTTestChangeName)
2117# define RTTestCreate RT_MANGLER(RTTestCreate)
2118# define RTTestCreateChild RT_MANGLER(RTTestCreateChild)
2119# define RTTestCreateEx RT_MANGLER(RTTestCreateEx)
2120# define RTTestDestroy RT_MANGLER(RTTestDestroy)
2121# define RTTestDisableAssertions RT_MANGLER(RTTestDisableAssertions)
2122# define RTTestErrorCount RT_MANGLER(RTTestErrorCount)
2123# define RTTestErrorInc RT_MANGLER(RTTestErrorInc)
2124# define RTTestFailed RT_MANGLER(RTTestFailed)
2125# define RTTestFailedV RT_MANGLER(RTTestFailedV)
2126# define RTTestFailureDetails RT_MANGLER(RTTestFailureDetails)
2127# define RTTestFailureDetailsV RT_MANGLER(RTTestFailureDetailsV)
2128# define RTTestGuardedAlloc RT_MANGLER(RTTestGuardedAlloc)
2129# define RTTestGuardedAllocHead RT_MANGLER(RTTestGuardedAllocHead)
2130# define RTTestGuardedAllocTail RT_MANGLER(RTTestGuardedAllocTail)
2131# define RTTestGuardedFree RT_MANGLER(RTTestGuardedFree)
2132# define RTTestIDisableAssertions RT_MANGLER(RTTestIDisableAssertions)
2133# define RTTestIErrorCount RT_MANGLER(RTTestIErrorCount)
2134# define RTTestIErrorInc RT_MANGLER(RTTestIErrorInc)
2135# define RTTestIFailed RT_MANGLER(RTTestIFailed)
2136# define RTTestIFailedRc RT_MANGLER(RTTestIFailedRc)
2137# define RTTestIFailedRcV RT_MANGLER(RTTestIFailedRcV)
2138# define RTTestIFailedV RT_MANGLER(RTTestIFailedV)
2139# define RTTestIFailureDetails RT_MANGLER(RTTestIFailureDetails)
2140# define RTTestIFailureDetailsV RT_MANGLER(RTTestIFailureDetailsV)
2141# define RTTestInitAndCreate RT_MANGLER(RTTestInitAndCreate)
2142# define RTTestInitExAndCreate RT_MANGLER(RTTestInitExAndCreate)
2143# define RTTestIPassed RT_MANGLER(RTTestIPassed)
2144# define RTTestIPassedV RT_MANGLER(RTTestIPassedV)
2145# define RTTestIPrintf RT_MANGLER(RTTestIPrintf)
2146# define RTTestIPrintfV RT_MANGLER(RTTestIPrintfV)
2147# define RTTestIRestoreAssertions RT_MANGLER(RTTestIRestoreAssertions)
2148# define RTTestISub RT_MANGLER(RTTestISub)
2149# define RTTestISubDone RT_MANGLER(RTTestISubDone)
2150# define RTTestISubF RT_MANGLER(RTTestISubF)
2151# define RTTestISubV RT_MANGLER(RTTestISubV)
2152# define RTTestIValue RT_MANGLER(RTTestIValue)
2153# define RTTestIValueF RT_MANGLER(RTTestIValueF)
2154# define RTTestIValueV RT_MANGLER(RTTestIValueV)
2155# define RTTestPassed RT_MANGLER(RTTestPassed)
2156# define RTTestPassedV RT_MANGLER(RTTestPassedV)
2157# define RTTestPrintf RT_MANGLER(RTTestPrintf)
2158# define RTTestPrintfNl RT_MANGLER(RTTestPrintfNl)
2159# define RTTestPrintfNlV RT_MANGLER(RTTestPrintfNlV)
2160# define RTTestPrintfV RT_MANGLER(RTTestPrintfV)
2161# define RTTestRestoreAssertions RT_MANGLER(RTTestRestoreAssertions)
2162# define RTTestSetDefault RT_MANGLER(RTTestSetDefault)
2163# define RTTestSkipAndDestroy RT_MANGLER(RTTestSkipAndDestroy)
2164# define RTTestSkipAndDestroyV RT_MANGLER(RTTestSkipAndDestroyV)
2165# define RTTestSkipped RT_MANGLER(RTTestSkipped)
2166# define RTTestSkippedV RT_MANGLER(RTTestSkippedV)
2167# define RTTestSub RT_MANGLER(RTTestSub)
2168# define RTTestSubDone RT_MANGLER(RTTestSubDone)
2169# define RTTestSubErrorCount RT_MANGLER(RTTestSubErrorCount)
2170# define RTTestSubF RT_MANGLER(RTTestSubF)
2171# define RTTestSubV RT_MANGLER(RTTestSubV)
2172# define RTTestSummaryAndDestroy RT_MANGLER(RTTestSummaryAndDestroy)
2173# define RTTestValue RT_MANGLER(RTTestValue)
2174# define RTTestValueF RT_MANGLER(RTTestValueF)
2175# define RTTestValueV RT_MANGLER(RTTestValueV)
2176# define RTThreadAdopt RT_MANGLER(RTThreadAdopt)
2177# define RTThreadBlocking RT_MANGLER(RTThreadBlocking)
2178# define RTThreadCreate RT_MANGLER(RTThreadCreate)
2179# define RTThreadCreateF RT_MANGLER(RTThreadCreateF)
2180# define RTThreadCreateV RT_MANGLER(RTThreadCreateV)
2181# define RTThreadCtxHookIsEnabled RT_MANGLER(RTThreadCtxHookIsEnabled) /* r0drv */
2182# define RTThreadCtxHookCreate RT_MANGLER(RTThreadCtxHookCreate) /* r0drv */
2183# define RTThreadCtxHookDestroy RT_MANGLER(RTThreadCtxHookDestroy) /* r0drv */
2184# define RTThreadCtxHookDisable RT_MANGLER(RTThreadCtxHookDisable) /* r0drv */
2185# define RTThreadCtxHookEnable RT_MANGLER(RTThreadCtxHookEnable) /* r0drv */
2186# define RTThreadFromNative RT_MANGLER(RTThreadFromNative)
2187# define RTThreadGetAffinity RT_MANGLER(RTThreadGetAffinity)
2188# define RTThreadGetExecutionTimeMilli RT_MANGLER(RTThreadGetExecutionTimeMilli)
2189# define RTThreadGetName RT_MANGLER(RTThreadGetName)
2190# define RTThreadGetNative RT_MANGLER(RTThreadGetNative)
2191# define RTThreadGetNativeState RT_MANGLER(RTThreadGetNativeState)
2192# define RTThreadGetReallySleeping RT_MANGLER(RTThreadGetReallySleeping)
2193# define RTThreadGetState RT_MANGLER(RTThreadGetState)
2194# define RTThreadGetType RT_MANGLER(RTThreadGetType)
2195# define RTThreadIsInInterrupt RT_MANGLER(RTThreadIsInInterrupt) /* r0drv */
2196# define RTThreadIsInitialized RT_MANGLER(RTThreadIsInitialized)
2197# define RTThreadIsMain RT_MANGLER(RTThreadIsMain)
2198# define RTThreadIsSelfAlive RT_MANGLER(RTThreadIsSelfAlive)
2199# define RTThreadIsSelfKnown RT_MANGLER(RTThreadIsSelfKnown)
2200# define RTThreadNativeSelf RT_MANGLER(RTThreadNativeSelf)
2201# define RTThreadPoke RT_MANGLER(RTThreadPoke) /* not-win not-os2 */
2202# define RTThreadPreemptDisable RT_MANGLER(RTThreadPreemptDisable) /* r0drv */
2203# define RTThreadPreemptIsEnabled RT_MANGLER(RTThreadPreemptIsEnabled) /* r0drv */
2204# define RTThreadPreemptIsPending RT_MANGLER(RTThreadPreemptIsPending) /* r0drv */
2205# define RTThreadPreemptIsPendingTrusty RT_MANGLER(RTThreadPreemptIsPendingTrusty) /* r0drv */
2206# define RTThreadPreemptIsPossible RT_MANGLER(RTThreadPreemptIsPossible) /* r0drv */
2207# define RTThreadPreemptRestore RT_MANGLER(RTThreadPreemptRestore) /* r0drv */
2208# define RTThreadSelf RT_MANGLER(RTThreadSelf)
2209# define RTThreadSelfAutoAdopt RT_MANGLER(RTThreadSelfAutoAdopt)
2210# define RTThreadSelfName RT_MANGLER(RTThreadSelfName)
2211# define RTThreadSetAffinity RT_MANGLER(RTThreadSetAffinity)
2212# define RTThreadSetAffinityToCpu RT_MANGLER(RTThreadSetAffinityToCpu)
2213# define RTThreadSetName RT_MANGLER(RTThreadSetName)
2214# define RTThreadSetType RT_MANGLER(RTThreadSetType)
2215# define RTThreadSleep RT_MANGLER(RTThreadSleep)
2216# define RTThreadSleepNoLog RT_MANGLER(RTThreadSleepNoLog)
2217# define RTThreadStateName RT_MANGLER(RTThreadStateName)
2218# define RTThreadUnblocked RT_MANGLER(RTThreadUnblocked)
2219# define RTThreadUserReset RT_MANGLER(RTThreadUserReset)
2220# define RTThreadUserSignal RT_MANGLER(RTThreadUserSignal)
2221# define RTThreadUserWait RT_MANGLER(RTThreadUserWait)
2222# define RTThreadUserWaitNoResume RT_MANGLER(RTThreadUserWaitNoResume)
2223# define RTThreadWait RT_MANGLER(RTThreadWait)
2224# define RTThreadWaitNoResume RT_MANGLER(RTThreadWaitNoResume)
2225# define RTThreadYield RT_MANGLER(RTThreadYield)
2226# define RTTimeDbgBad RT_MANGLER(RTTimeDbgBad)
2227# define RTTimeDbgExpired RT_MANGLER(RTTimeDbgExpired)
2228# define RTTimeDbgRaces RT_MANGLER(RTTimeDbgRaces)
2229# define RTTimeDbgSteps RT_MANGLER(RTTimeDbgSteps)
2230# define RTTimeExplode RT_MANGLER(RTTimeExplode)
2231# define RTTimeImplode RT_MANGLER(RTTimeImplode)
2232# define RTTimeIsLeapYear RT_MANGLER(RTTimeIsLeapYear)
2233# define RTTimeLocalDeltaNano RT_MANGLER(RTTimeLocalDeltaNano)
2234# define RTTimeLocalExplode RT_MANGLER(RTTimeLocalExplode)
2235# define RTTimeLocalNow RT_MANGLER(RTTimeLocalNow)
2236# define RTTimeMilliTS RT_MANGLER(RTTimeMilliTS)
2237# define RTTimeNanoTS RT_MANGLER(RTTimeNanoTS)
2238# define RTTimeNanoTSLegacyAsync RT_MANGLER(RTTimeNanoTSLegacyAsync)
2239# define RTTimeNanoTSLegacyAsync_EndProc RT_MANGLER(RTTimeNanoTSLegacyAsync_EndProc)
2240# define RTTimeNanoTSLegacyAsyncUseApicId RT_MANGLER(RTTimeNanoTSLegacyAsyncUseApicId)
2241# define RTTimeNanoTSLegacyAsyncUseApicId_EndProc RT_MANGLER(RTTimeNanoTSLegacyAsyncUseApicId_EndProc)
2242# define RTTimeNanoTSLegacyAsyncUseRdtscp RT_MANGLER(RTTimeNanoTSLegacyAsyncUseRdtscp)
2243# define RTTimeNanoTSLegacyAsyncUseRdtscp_EndProc RT_MANGLER(RTTimeNanoTSLegacyAsyncUseRdtscp_EndProc)
2244# define RTTimeNanoTSLegacyAsyncUseRdtscpGroupChNumCl RT_MANGLER(RTTimeNanoTSLegacyAsyncUseRdtscpGroupChNumCl)
2245# define RTTimeNanoTSLegacyAsyncUseRdtscpGroupChNumCl_EndProc RT_MANGLER(RTTimeNanoTSLegacyAsyncUseRdtscpGroupChNumCl_EndProc)
2246# define RTTimeNanoTSLegacyAsyncUseIdtrLim RT_MANGLER(RTTimeNanoTSLegacyAsyncUseIdtrLim)
2247# define RTTimeNanoTSLegacyAsyncUseIdtrLim_EndProc RT_MANGLER(RTTimeNanoTSLegacyAsyncUseIdtrLim_EndProc)
2248# define RTTimeNanoTSLegacySyncInvarNoDelta RT_MANGLER(RTTimeNanoTSLegacySyncInvarNoDelta)
2249# define RTTimeNanoTSLegacySyncInvarNoDelta_EndProc RT_MANGLER(RTTimeNanoTSLegacySyncInvarNoDelta_EndProc)
2250# define RTTimeNanoTSLegacySyncInvarWithDelta RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDelta)
2251# define RTTimeNanoTSLegacySyncInvarWithDelta_EndProc RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDelta_EndProc)
2252# define RTTimeNanoTSLegacySyncInvarWithDeltaUseApicId RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDeltaUseApicId)
2253# define RTTimeNanoTSLegacySyncInvarWithDeltaUseApicId_EndProc RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDeltaUseApicId_EndProc)
2254# define RTTimeNanoTSLegacySyncInvarWithDeltaUseRdtscp RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDeltaUseRdtscp)
2255# define RTTimeNanoTSLegacySyncInvarWithDeltaUseRdtscp_EndProc RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDeltaUseRdtscp_EndProc)
2256# define RTTimeNanoTSLegacySyncInvarWithDeltaUseIdtrLim RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDeltaUseIdtrLim)
2257# define RTTimeNanoTSLegacySyncInvarWithDeltaUseIdtrLim_EndProc RT_MANGLER(RTTimeNanoTSLegacySyncInvarWithDeltaUseIdtrLim_EndProc)
2258# define RTTimeNanoTSLFenceAsync RT_MANGLER(RTTimeNanoTSLFenceAsync)
2259# define RTTimeNanoTSLFenceAsync_EndProc RT_MANGLER(RTTimeNanoTSLFenceAsync_EndProc)
2260# define RTTimeNanoTSLFenceAsyncUseApicId RT_MANGLER(RTTimeNanoTSLFenceAsyncUseApicId)
2261# define RTTimeNanoTSLFenceAsyncUseApicId_EndProc RT_MANGLER(RTTimeNanoTSLFenceAsyncUseApicId_EndProc)
2262# define RTTimeNanoTSLFenceAsyncUseRdtscp RT_MANGLER(RTTimeNanoTSLFenceAsyncUseRdtscp)
2263# define RTTimeNanoTSLFenceAsyncUseRdtscp_EndProc RT_MANGLER(RTTimeNanoTSLFenceAsyncUseRdtscp_EndProc)
2264# define RTTimeNanoTSLFenceAsyncUseRdtscpGroupChNumCl RT_MANGLER(RTTimeNanoTSLFenceAsyncUseRdtscpGroupChNumCl)
2265# define RTTimeNanoTSLFenceAsyncUseRdtscpGroupChNumCl_EndProc RT_MANGLER(RTTimeNanoTSLFenceAsyncUseRdtscpGroupChNumCl_EndProc)
2266# define RTTimeNanoTSLFenceAsyncUseIdtrLim RT_MANGLER(RTTimeNanoTSLFenceAsyncUseIdtrLim)
2267# define RTTimeNanoTSLFenceAsyncUseIdtrLim_EndProc RT_MANGLER(RTTimeNanoTSLFenceAsyncUseIdtrLim_EndProc)
2268# define RTTimeNanoTSLFenceSyncInvarNoDelta RT_MANGLER(RTTimeNanoTSLFenceSyncInvarNoDelta)
2269# define RTTimeNanoTSLFenceSyncInvarNoDelta_EndProc RT_MANGLER(RTTimeNanoTSLFenceSyncInvarNoDelta_EndProc)
2270# define RTTimeNanoTSLFenceSyncInvarWithDelta RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDelta)
2271# define RTTimeNanoTSLFenceSyncInvarWithDelta_EndProc RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDelta_EndProc)
2272# define RTTimeNanoTSLFenceSyncInvarWithDeltaUseApicId RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDeltaUseApicId)
2273# define RTTimeNanoTSLFenceSyncInvarWithDeltaUseApicId_EndProc RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDeltaUseApicId_EndProc)
2274# define RTTimeNanoTSLFenceSyncInvarWithDeltaUseRdtscp RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDeltaUseRdtscp)
2275# define RTTimeNanoTSLFenceSyncInvarWithDeltaUseRdtscp_EndProc RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDeltaUseRdtscp_EndProc)
2276# define RTTimeNanoTSLFenceSyncInvarWithDeltaUseIdtrLim RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDeltaUseIdtrLim)
2277# define RTTimeNanoTSLFenceSyncInvarWithDeltaUseIdtrLim_EndProc RT_MANGLER(RTTimeNanoTSLFenceSyncInvarWithDeltaUseIdtrLim_EndProc)
2278# define RTTimeNormalize RT_MANGLER(RTTimeNormalize)
2279# define RTTimeNow RT_MANGLER(RTTimeNow)
2280# define RTTimeProgramMicroTS RT_MANGLER(RTTimeProgramMicroTS)
2281# define RTTimeProgramMilliTS RT_MANGLER(RTTimeProgramMilliTS)
2282# define RTTimeProgramNanoTS RT_MANGLER(RTTimeProgramNanoTS)
2283# define RTTimeProgramSecTS RT_MANGLER(RTTimeProgramSecTS)
2284# define RTTimeProgramStartNanoTS RT_MANGLER(RTTimeProgramStartNanoTS)
2285# define RTTimerCanDoHighResolution RT_MANGLER(RTTimerCanDoHighResolution)
2286# define RTTimerChangeInterval RT_MANGLER(RTTimerChangeInterval)
2287# define RTTimerCreate RT_MANGLER(RTTimerCreate)
2288# define RTTimerCreateEx RT_MANGLER(RTTimerCreateEx)
2289# define RTTimerDestroy RT_MANGLER(RTTimerDestroy)
2290# define RTTimerGetSystemGranularity RT_MANGLER(RTTimerGetSystemGranularity) /* r0drv */
2291# define RTTimerLRCreate RT_MANGLER(RTTimerLRCreate)
2292# define RTTimerLRCreateEx RT_MANGLER(RTTimerLRCreateEx)
2293# define RTTimerLRDestroy RT_MANGLER(RTTimerLRDestroy)
2294# define RTTimerLRStart RT_MANGLER(RTTimerLRStart)
2295# define RTTimerLRStop RT_MANGLER(RTTimerLRStop)
2296# define RTTimerLRChangeInterval RT_MANGLER(RTTimerLRChangeInterval)
2297# define RTTimerReleaseSystemGranularity RT_MANGLER(RTTimerReleaseSystemGranularity) /* r0drv */
2298# define RTTimerRequestSystemGranularity RT_MANGLER(RTTimerRequestSystemGranularity) /* r0drv */
2299# define RTTimerStart RT_MANGLER(RTTimerStart)
2300# define RTTimerStop RT_MANGLER(RTTimerStop)
2301# define RTTimeSet RT_MANGLER(RTTimeSet)
2302# define RTTimeSpecFromString RT_MANGLER(RTTimeSpecFromString)
2303# define RTTimeSpecToString RT_MANGLER(RTTimeSpecToString)
2304# define RTTimeSystemMilliTS RT_MANGLER(RTTimeSystemMilliTS)
2305# define RTTimeSystemNanoTS RT_MANGLER(RTTimeSystemNanoTS)
2306# define RTTimeFromString RT_MANGLER(RTTimeFromString)
2307# define RTTimeToString RT_MANGLER(RTTimeToString)
6d209b23
SF
2308# define RTTimeZoneGetInfoByUnixName RT_MANGLER(RTTimeZoneGetInfoByUnixName)
2309# define RTTimeZoneGetInfoByWindowsName RT_MANGLER(RTTimeZoneGetInfoByWindowsName)
2310# define RTTimeZoneGetInfoByWindowsIndex RT_MANGLER(RTTimeZoneGetInfoByWindowsIndex)
2311# define RTTimeZoneGetCurrent RT_MANGLER(RTTimeZoneGetCurrent)
056a1eb7
SF
2312# define RTTlsAlloc RT_MANGLER(RTTlsAlloc)
2313# define RTTlsAllocEx RT_MANGLER(RTTlsAllocEx)
2314# define RTTlsFree RT_MANGLER(RTTlsFree)
2315# define RTTlsGet RT_MANGLER(RTTlsGet)
2316# define RTTlsGetEx RT_MANGLER(RTTlsGetEx)
2317# define RTTlsSet RT_MANGLER(RTTlsSet)
2318# define RTTraceBufAddMsg RT_MANGLER(RTTraceBufAddMsg)
2319# define RTTraceBufAddMsgEx RT_MANGLER(RTTraceBufAddMsgEx)
2320# define RTTraceBufAddMsgF RT_MANGLER(RTTraceBufAddMsgF)
2321# define RTTraceBufAddMsgV RT_MANGLER(RTTraceBufAddMsgV)
2322# define RTTraceBufAddPos RT_MANGLER(RTTraceBufAddPos)
2323# define RTTraceBufAddPosMsg RT_MANGLER(RTTraceBufAddPosMsg)
2324# define RTTraceBufAddPosMsgEx RT_MANGLER(RTTraceBufAddPosMsgEx)
2325# define RTTraceBufAddPosMsgF RT_MANGLER(RTTraceBufAddPosMsgF)
2326# define RTTraceBufAddPosMsgV RT_MANGLER(RTTraceBufAddPosMsgV)
2327# define RTTraceBufCarve RT_MANGLER(RTTraceBufCarve)
2328# define RTTraceBufCreate RT_MANGLER(RTTraceBufCreate)
2329# define RTTraceBufDisable RT_MANGLER(RTTraceBufDisable)
2330# define RTTraceBufDumpToAssert RT_MANGLER(RTTraceBufDumpToAssert)
2331# define RTTraceBufDumpToLog RT_MANGLER(RTTraceBufDumpToLog)
2332# define RTTraceBufEnable RT_MANGLER(RTTraceBufEnable)
2333# define RTTraceBufEnumEntries RT_MANGLER(RTTraceBufEnumEntries)
2334# define RTTraceBufGetEntryCount RT_MANGLER(RTTraceBufGetEntryCount)
2335# define RTTraceBufGetEntrySize RT_MANGLER(RTTraceBufGetEntrySize)
2336# define RTTraceBufRelease RT_MANGLER(RTTraceBufRelease)
2337# define RTTraceBufRetain RT_MANGLER(RTTraceBufRetain)
2338# define RTTraceGetDefaultBuf RT_MANGLER(RTTraceGetDefaultBuf)
2339# define RTTraceSetDefaultBuf RT_MANGLER(RTTraceSetDefaultBuf)
2340# define RTUdpCreateClientSocket RT_MANGLER(RTUdpCreateClientSocket)
2341# define RTUdpRead RT_MANGLER(RTUdpRead)
2342# define RTUdpServerCreate RT_MANGLER(RTUdpServerCreate)
2343# define RTUdpServerCreateEx RT_MANGLER(RTUdpServerCreateEx)
2344# define RTUdpServerDestroy RT_MANGLER(RTUdpServerDestroy)
2345# define RTUdpServerListen RT_MANGLER(RTUdpServerListen)
2346# define RTUdpServerShutdown RT_MANGLER(RTUdpServerShutdown)
2347# define RTUdpWrite RT_MANGLER(RTUdpWrite)
2348# define RTUniFree RT_MANGLER(RTUniFree)
2349# define RTUriCreate RT_MANGLER(RTUriCreate)
2350# define RTUriFileCreate RT_MANGLER(RTUriFileCreate)
2351# define RTUriFileCreateEx RT_MANGLER(RTUriFileCreateEx)
2352# define RTUriFilePath RT_MANGLER(RTUriFilePath)
2353# define RTUriFilePathEx RT_MANGLER(RTUriFilePathEx)
2354# define RTUriParse RT_MANGLER(RTUriParse)
2355# define RTUriParsedAuthority RT_MANGLER(RTUriParsedAuthority)
2356# define RTUriParsedAuthorityHost RT_MANGLER(RTUriParsedAuthorityHost)
2357# define RTUriParsedAuthorityPassword RT_MANGLER(RTUriParsedAuthorityPassword)
2358# define RTUriParsedAuthorityPort RT_MANGLER(RTUriParsedAuthorityPort)
2359# define RTUriParsedAuthorityUsername RT_MANGLER(RTUriParsedAuthorityUsername)
2360# define RTUriParsedFragment RT_MANGLER(RTUriParsedFragment)
2361# define RTUriParsedPath RT_MANGLER(RTUriParsedPath)
2362# define RTUriParsedScheme RT_MANGLER(RTUriParsedScheme)
2363# define RTUriParsedQuery RT_MANGLER(RTUriParsedQuery)
2364# define RTUriIsSchemeMatch RT_MANGLER(RTUriIsSchemeMatch)
2365# define RTUtf16AllocTag RT_MANGLER(RTUtf16AllocTag)
2366# define RTUtf16ReallocTag RT_MANGLER(RTUtf16ReallocTag)
2367# define RTUtf16CalcLatin1Len RT_MANGLER(RTUtf16CalcLatin1Len)
2368# define RTUtf16CalcLatin1LenEx RT_MANGLER(RTUtf16CalcLatin1LenEx)
2369# define RTUtf16CalcUtf8Len RT_MANGLER(RTUtf16CalcUtf8Len)
2370# define RTUtf16CalcUtf8LenEx RT_MANGLER(RTUtf16CalcUtf8LenEx)
6d209b23
SF
2371# define RTUtf16BigCalcUtf8Len RT_MANGLER(RTUtf16BigCalcUtf8Len)
2372# define RTUtf16BigCalcUtf8LenEx RT_MANGLER(RTUtf16BigCalcUtf8LenEx)
2373# define RTUtf16LittleCalcUtf8Len RT_MANGLER(RTUtf16LittleCalcUtf8Len)
2374# define RTUtf16LittleCalcUtf8LenEx RT_MANGLER(RTUtf16LittleCalcUtf8LenEx)
056a1eb7
SF
2375# define RTUtf16Cmp RT_MANGLER(RTUtf16Cmp)
2376# define RTUtf16CmpAscii RT_MANGLER(RTUtf16CmpAscii)
2377# define RTUtf16CmpUtf8 RT_MANGLER(RTUtf16CmpUtf8)
2378# define RTUtf16DupExTag RT_MANGLER(RTUtf16DupExTag)
2379# define RTUtf16DupTag RT_MANGLER(RTUtf16DupTag)
2380# define RTUtf16Free RT_MANGLER(RTUtf16Free)
2381# define RTUtf16GetCpExInternal RT_MANGLER(RTUtf16GetCpExInternal)
6d209b23 2382# define RTUtf16BigGetCpExInternal RT_MANGLER(RTUtf16BigGetCpExInternal)
056a1eb7 2383# define RTUtf16GetCpInternal RT_MANGLER(RTUtf16GetCpInternal)
6d209b23 2384# define RTUtf16BigGetCpInternal RT_MANGLER(RTUtf16BigGetCpInternal)
056a1eb7 2385# define RTUtf16ICmp RT_MANGLER(RTUtf16ICmp)
6d209b23 2386# define RTUtf16BigICmp RT_MANGLER(RTUtf16BigICmp)
056a1eb7 2387# define RTUtf16ICmpUtf8 RT_MANGLER(RTUtf16ICmpUtf8)
6d209b23
SF
2388# define RTUtf16NICmp RT_MANGLER(RTUtf16NICmp)
2389# define RTUtf16BigNICmp RT_MANGLER(RTUtf16BigNICmp)
056a1eb7
SF
2390# define RTUtf16IsValidEncoding RT_MANGLER(RTUtf16IsValidEncoding)
2391# define RTUtf16Len RT_MANGLER(RTUtf16Len)
2392# define RTUtf16LocaleICmp RT_MANGLER(RTUtf16LocaleICmp)
2393# define RTUtf16PutCpInternal RT_MANGLER(RTUtf16PutCpInternal)
6d209b23 2394# define RTUtf16BigPutCpInternal RT_MANGLER(RTUtf16BigPutCpInternal)
056a1eb7
SF
2395# define RTUtf16ToLatin1ExTag RT_MANGLER(RTUtf16ToLatin1ExTag)
2396# define RTUtf16ToLatin1Tag RT_MANGLER(RTUtf16ToLatin1Tag)
2397# define RTUtf16ToLower RT_MANGLER(RTUtf16ToLower)
2398# define RTUtf16ToUpper RT_MANGLER(RTUtf16ToUpper)
2399# define RTUtf16PurgeComplementSet RT_MANGLER(RTUtf16PurgeComplementSet)
2400# define RTUtf16ToUtf8ExTag RT_MANGLER(RTUtf16ToUtf8ExTag)
6d209b23
SF
2401# define RTUtf16BigToUtf8ExTag RT_MANGLER(RTUtf16BigToUtf8ExTag)
2402# define RTUtf16LittleToUtf8ExTag RT_MANGLER(RTUtf16LittleToUtf8ExTag)
056a1eb7 2403# define RTUtf16ToUtf8Tag RT_MANGLER(RTUtf16ToUtf8Tag)
6d209b23
SF
2404# define RTUtf16BigToUtf8Tag RT_MANGLER(RTUtf16BigToUtf8Tag)
2405# define RTUtf16LittleToUtf8Tag RT_MANGLER(RTUtf16LittleToUtf8Tag)
056a1eb7
SF
2406# define RTUtf16ValidateEncoding RT_MANGLER(RTUtf16ValidateEncoding)
2407# define RTUtf16ValidateEncodingEx RT_MANGLER(RTUtf16ValidateEncodingEx)
2408# define RTUuidClear RT_MANGLER(RTUuidClear)
2409# define RTUuidCompare RT_MANGLER(RTUuidCompare)
2410# define RTUuidCompare2Strs RT_MANGLER(RTUuidCompare2Strs)
2411# define RTUuidCompareStr RT_MANGLER(RTUuidCompareStr)
2412# define RTUuidCreate RT_MANGLER(RTUuidCreate)
2413# define RTUuidFromStr RT_MANGLER(RTUuidFromStr)
2414# define RTUuidFromUtf16 RT_MANGLER(RTUuidFromUtf16)
2415# define RTUuidIsNull RT_MANGLER(RTUuidIsNull)
2416# define RTUuidToStr RT_MANGLER(RTUuidToStr)
2417# define RTUuidToUtf16 RT_MANGLER(RTUuidToUtf16)
2418# define RTVfsChainElementDeregisterProvider RT_MANGLER(RTVfsChainElementDeregisterProvider)
2419# define RTVfsChainElementRegisterProvider RT_MANGLER(RTVfsChainElementRegisterProvider)
2420# define RTVfsChainIsSpec RT_MANGLER(RTVfsChainIsSpec)
6d209b23
SF
2421# define RTVfsChainMsgError RT_MANGLER(RTVfsChainMsgError)
2422# define RTVfsChainMsgErrorExitFailure RT_MANGLER(RTVfsChainMsgErrorExitFailure)
2423# define RTVfsChainOpenDir RT_MANGLER(RTVfsChainOpenDir)
26894aac 2424# define RTVfsChainOpenParentDir RT_MANGLER(RTVfsChainOpenParentDir)
056a1eb7
SF
2425# define RTVfsChainOpenFile RT_MANGLER(RTVfsChainOpenFile)
2426# define RTVfsChainOpenIoStream RT_MANGLER(RTVfsChainOpenIoStream)
6d209b23
SF
2427# define RTVfsChainQueryFinalPath RT_MANGLER(RTVfsChainQueryFinalPath)
2428# define RTVfsChainQueryInfo RT_MANGLER(RTVfsChainQueryInfo)
2429# define RTVfsChainSpecCheckAndSetup RT_MANGLER(RTVfsChainSpecCheckAndSetup)
056a1eb7
SF
2430# define RTVfsChainSpecFree RT_MANGLER(RTVfsChainSpecFree)
2431# define RTVfsChainSpecParse RT_MANGLER(RTVfsChainSpecParse)
26894aac 2432# define RTVfsChainSplitOffFinalPath RT_MANGLER(RTVfsChainSplitOffFinalPath)
6d209b23 2433# define RTVfsChainValidateOpenFileOrIoStream RT_MANGLER(RTVfsChainValidateOpenFileOrIoStream)
056a1eb7
SF
2434# define RTVfsDirRelease RT_MANGLER(RTVfsDirRelease)
2435# define RTVfsDirRetain RT_MANGLER(RTVfsDirRetain)
6d209b23
SF
2436# define RTVfsDirRetainDebug RT_MANGLER(RTVfsDirRetainDebug)
2437# define RTVfsDirOpen RT_MANGLER(RTVfsDirOpen)
2438# define RTVfsDirOpenDir RT_MANGLER(RTVfsDirOpenDir)
26894aac 2439# define RTVfsDirCreateDir RT_MANGLER(RTVfsDirCreateDir)
6d209b23
SF
2440# define RTVfsDirOpenFile RT_MANGLER(RTVfsDirOpenFile)
2441# define RTVfsDirOpenFileAsIoStream RT_MANGLER(RTVfsDirOpenFileAsIoStream)
2442# define RTVfsDirQueryPathInfo RT_MANGLER(RTVfsDirQueryPathInfo)
2443# define RTVfsDirReadEx RT_MANGLER(RTVfsDirReadEx)
26894aac 2444# define RTVfsDirRemoveDir RT_MANGLER(RTVfsDirRemoveDir)
056a1eb7
SF
2445# define RTVfsFileFlush RT_MANGLER(RTVfsFileFlush)
2446# define RTVfsFileFromBuffer RT_MANGLER(RTVfsFileFromBuffer)
2447# define RTVfsFileFromRTFile RT_MANGLER(RTVfsFileFromRTFile)
6d209b23 2448# define RTVfsFileGetOpenFlags RT_MANGLER(RTVfsFileGetOpenFlags)
056a1eb7
SF
2449# define RTVfsFileGetSize RT_MANGLER(RTVfsFileGetSize)
2450# define RTVfsFileOpen RT_MANGLER(RTVfsFileOpen)
2451# define RTVfsFileOpenNormal RT_MANGLER(RTVfsFileOpenNormal)
2452# define RTVfsFilePoll RT_MANGLER(RTVfsFilePoll)
2453# define RTVfsFileQueryInfo RT_MANGLER(RTVfsFileQueryInfo)
2454# define RTVfsFileRead RT_MANGLER(RTVfsFileRead)
2455# define RTVfsFileReadAt RT_MANGLER(RTVfsFileReadAt)
2456# define RTVfsFileRelease RT_MANGLER(RTVfsFileRelease)
2457# define RTVfsFileRetain RT_MANGLER(RTVfsFileRetain)
6d209b23 2458# define RTVfsFileRetainDebug RT_MANGLER(RTVfsFileRetainDebug)
056a1eb7 2459# define RTVfsFileSeek RT_MANGLER(RTVfsFileSeek)
6d209b23
SF
2460# define RTVfsFileSgRead RT_MANGLER(RTVfsFileSgRead)
2461# define RTVfsFileSgWrite RT_MANGLER(RTVfsFileSgWrite)
056a1eb7
SF
2462# define RTVfsFileTell RT_MANGLER(RTVfsFileTell)
2463# define RTVfsFileToIoStream RT_MANGLER(RTVfsFileToIoStream)
2464# define RTVfsFileWrite RT_MANGLER(RTVfsFileWrite)
2465# define RTVfsFileWriteAt RT_MANGLER(RTVfsFileWriteAt)
6d209b23
SF
2466# define RTVfsFsStreamToPrivate RT_MANGLER(RTVfsFsStreamToPrivate)
2467# define RTVfsFsStrmAdd RT_MANGLER(RTVfsFsStrmAdd)
2468# define RTVfsFsStrmEnd RT_MANGLER(RTVfsFsStrmEnd)
056a1eb7 2469# define RTVfsFsStrmNext RT_MANGLER(RTVfsFsStrmNext)
6d209b23 2470# define RTVfsFsStrmPushFile RT_MANGLER(RTVfsFsStrmPushFile)
056a1eb7
SF
2471# define RTVfsFsStrmQueryInfo RT_MANGLER(RTVfsFsStrmQueryInfo)
2472# define RTVfsFsStrmRelease RT_MANGLER(RTVfsFsStrmRelease)
2473# define RTVfsFsStrmRetain RT_MANGLER(RTVfsFsStrmRetain)
6d209b23
SF
2474# define RTVfsFsStrmRetainDebug RT_MANGLER(RTVfsFsStrmRetainDebug)
2475# define RTVfsFsStrmToDir RT_MANGLER(RTVfsFsStrmToDir)
2476# define RTVfsFsStrmToNormalDir RT_MANGLER(RTVfsFsStrmToNormalDir)
2477# define RTVfsFsStrmToDirUndo RT_MANGLER(RTVfsFsStrmToDirUndo)
056a1eb7
SF
2478# define RTVfsIoStreamToPrivate RT_MANGLER(RTVfsIoStreamToPrivate)
2479# define RTVfsIoStrmFlush RT_MANGLER(RTVfsIoStrmFlush)
2480# define RTVfsIoStrmFromBuffer RT_MANGLER(RTVfsIoStrmFromBuffer)
2481# define RTVfsIoStrmFromRTFile RT_MANGLER(RTVfsIoStrmFromRTFile)
2482# define RTVfsIoStrmFromRTPipe RT_MANGLER(RTVfsIoStrmFromRTPipe)
2483# define RTVfsIoStrmFromStdHandle RT_MANGLER(RTVfsIoStrmFromStdHandle)
6d209b23 2484# define RTVfsIoStrmGetOpenFlags RT_MANGLER(RTVfsIoStrmGetOpenFlags)
056a1eb7
SF
2485# define RTVfsIoStrmIsAtEnd RT_MANGLER(RTVfsIoStrmIsAtEnd)
2486# define RTVfsIoStrmOpenNormal RT_MANGLER(RTVfsIoStrmOpenNormal)
2487# define RTVfsIoStrmPoll RT_MANGLER(RTVfsIoStrmPoll)
2488# define RTVfsIoStrmQueryInfo RT_MANGLER(RTVfsIoStrmQueryInfo)
2489# define RTVfsIoStrmRead RT_MANGLER(RTVfsIoStrmRead)
2490# define RTVfsIoStrmReadAt RT_MANGLER(RTVfsIoStrmReadAt)
2491# define RTVfsIoStrmReadAll RT_MANGLER(RTVfsIoStrmReadAll)
2492# define RTVfsIoStrmReadAllFree RT_MANGLER(RTVfsIoStrmReadAllFree)
2493# define RTVfsIoStrmRelease RT_MANGLER(RTVfsIoStrmRelease)
2494# define RTVfsIoStrmRetain RT_MANGLER(RTVfsIoStrmRetain)
6d209b23 2495# define RTVfsIoStrmRetainDebug RT_MANGLER(RTVfsIoStrmRetainDebug)
056a1eb7
SF
2496# define RTVfsIoStrmSgRead RT_MANGLER(RTVfsIoStrmSgRead)
2497# define RTVfsIoStrmSgWrite RT_MANGLER(RTVfsIoStrmSgWrite)
2498# define RTVfsIoStrmSkip RT_MANGLER(RTVfsIoStrmSkip)
2499# define RTVfsIoStrmTell RT_MANGLER(RTVfsIoStrmTell)
2500# define RTVfsIoStrmToFile RT_MANGLER(RTVfsIoStrmToFile)
2501# define RTVfsIoStrmValidateUtf8Encoding RT_MANGLER(RTVfsIoStrmValidateUtf8Encoding)
2502# define RTVfsIoStrmWrite RT_MANGLER(RTVfsIoStrmWrite)
2503# define RTVfsIoStrmWriteAt RT_MANGLER(RTVfsIoStrmWriteAt)
2504# define RTVfsIoStrmZeroFill RT_MANGLER(RTVfsIoStrmZeroFill)
2505# define RTVfsIsRangeInUse RT_MANGLER(RTVfsIsRangeInUse)
2506# define RTVfsLockAcquireReadSlow RT_MANGLER(RTVfsLockAcquireReadSlow)
2507# define RTVfsLockAcquireWriteSlow RT_MANGLER(RTVfsLockAcquireWriteSlow)
2508# define RTVfsLockRelease RT_MANGLER(RTVfsLockRelease)
2509# define RTVfsLockReleaseReadSlow RT_MANGLER(RTVfsLockReleaseReadSlow)
2510# define RTVfsLockReleaseWriteSlow RT_MANGLER(RTVfsLockReleaseWriteSlow)
2511# define RTVfsLockRetain RT_MANGLER(RTVfsLockRetain)
6d209b23 2512# define RTVfsLockRetainDebug RT_MANGLER(RTVfsLockRetainDebug)
056a1eb7 2513# define RTVfsMemFileCreate RT_MANGLER(RTVfsMemFileCreate)
6d209b23 2514# define RTVfsMemIoStrmCreate RT_MANGLER(RTVfsMemIoStrmCreate)
056a1eb7
SF
2515# define RTVfsMemorizeIoStreamAsFile RT_MANGLER(RTVfsMemorizeIoStreamAsFile)
2516# define RTVfsNew RT_MANGLER(RTVfsNew)
2517# define RTVfsNewBaseObj RT_MANGLER(RTVfsNewBaseObj)
6d209b23 2518# define RTVfsNewDir RT_MANGLER(RTVfsNewDir)
056a1eb7
SF
2519# define RTVfsNewFile RT_MANGLER(RTVfsNewFile)
2520# define RTVfsNewFsStream RT_MANGLER(RTVfsNewFsStream)
2521# define RTVfsNewIoStream RT_MANGLER(RTVfsNewIoStream)
2522# define RTVfsNewSymlink RT_MANGLER(RTVfsNewSymlink)
2523# define RTVfsObjFromDir RT_MANGLER(RTVfsObjFromDir)
2524# define RTVfsObjFromFile RT_MANGLER(RTVfsObjFromFile)
2525# define RTVfsObjFromFsStream RT_MANGLER(RTVfsObjFromFsStream)
2526# define RTVfsObjFromIoStream RT_MANGLER(RTVfsObjFromIoStream)
2527# define RTVfsObjFromSymlink RT_MANGLER(RTVfsObjFromSymlink)
2528# define RTVfsObjFromVfs RT_MANGLER(RTVfsObjFromVfs)
2529# define RTVfsObjQueryInfo RT_MANGLER(RTVfsObjQueryInfo)
2530# define RTVfsObjRelease RT_MANGLER(RTVfsObjRelease)
2531# define RTVfsObjRetain RT_MANGLER(RTVfsObjRetain)
6d209b23 2532# define RTVfsObjRetainDebug RT_MANGLER(RTVfsObjRetainDebug)
056a1eb7
SF
2533# define RTVfsObjToDir RT_MANGLER(RTVfsObjToDir)
2534# define RTVfsObjToFile RT_MANGLER(RTVfsObjToFile)
2535# define RTVfsObjToFsStream RT_MANGLER(RTVfsObjToFsStream)
2536# define RTVfsObjToIoStream RT_MANGLER(RTVfsObjToIoStream)
2537# define RTVfsObjToSymlink RT_MANGLER(RTVfsObjToSymlink)
2538# define RTVfsObjToVfs RT_MANGLER(RTVfsObjToVfs)
2539# define RTVfsParsePath RT_MANGLER(RTVfsParsePath)
2540# define RTVfsParsePathA RT_MANGLER(RTVfsParsePathA)
2541# define RTVfsParsePathAppend RT_MANGLER(RTVfsParsePathAppend)
2542# define RTVfsParsePathFree RT_MANGLER(RTVfsParsePathFree)
2543# define RTVfsRelease RT_MANGLER(RTVfsRelease)
6d209b23
SF
2544# define RTVfsOpenRoot RT_MANGLER(RTVfsOpenRoot)
2545# define RTVfsQuerPathInfo RT_MANGLER(RTVfsQueryPathInfo)
056a1eb7 2546# define RTVfsRetain RT_MANGLER(RTVfsRetain)
6d209b23 2547# define RTVfsRetainDebug RT_MANGLER(RTVfsRetainDebug)
056a1eb7
SF
2548# define RTVfsSymlinkQueryInfo RT_MANGLER(RTVfsSymlinkQueryInfo)
2549# define RTVfsSymlinkRead RT_MANGLER(RTVfsSymlinkRead)
2550# define RTVfsSymlinkRelease RT_MANGLER(RTVfsSymlinkRelease)
2551# define RTVfsSymlinkRetain RT_MANGLER(RTVfsSymlinkRetain)
6d209b23 2552# define RTVfsSymlinkRetainDebug RT_MANGLER(RTVfsSymlinkRetainDebug)
056a1eb7
SF
2553# define RTVfsSymlinkSetMode RT_MANGLER(RTVfsSymlinkSetMode)
2554# define RTVfsSymlinkSetOwner RT_MANGLER(RTVfsSymlinkSetOwner)
2555# define RTVfsSymlinkSetTimes RT_MANGLER(RTVfsSymlinkSetTimes)
2556# define RTVfsUtilDummyPollOne RT_MANGLER(RTVfsUtilDummyPollOne)
2557# define RTVfsUtilPumpIoStreams RT_MANGLER(RTVfsUtilPumpIoStreams)
6d209b23
SF
2558# define RTVfsCreateProgressForFile RT_MANGLER(RTVfsCreateProgressForFile)
2559# define RTVfsCreateProgressForIoStream RT_MANGLER(RTVfsCreateProgressForIoStream)
056a1eb7
SF
2560# define RTVfsCreateReadAheadForFile RT_MANGLER(RTVfsCreateReadAheadForFile)
2561# define RTVfsCreateReadAheadForIoStream RT_MANGLER(RTVfsCreateReadAheadForIoStream)
2562# define RTZipBlockCompress RT_MANGLER(RTZipBlockCompress)
2563# define RTZipBlockDecompress RT_MANGLER(RTZipBlockDecompress)
2564# define RTZipCompCreate RT_MANGLER(RTZipCompCreate)
2565# define RTZipCompDestroy RT_MANGLER(RTZipCompDestroy)
2566# define RTZipCompFinish RT_MANGLER(RTZipCompFinish)
2567# define RTZipCompress RT_MANGLER(RTZipCompress)
2568# define RTZipDecompCreate RT_MANGLER(RTZipDecompCreate)
2569# define RTZipDecompDestroy RT_MANGLER(RTZipDecompDestroy)
2570# define RTZipDecompress RT_MANGLER(RTZipDecompress)
2571# define RTZipGzipCompressIoStream RT_MANGLER(RTZipGzipCompressIoStream)
2572# define RTZipGzipDecompressIoStream RT_MANGLER(RTZipGzipDecompressIoStream)
2573# define RTZipPkzipFsStreamFromIoStream RT_MANGLER(RTZipPkzipFsStreamFromIoStream)
2574# define RTZipPkzipMemDecompress RT_MANGLER(RTZipPkzipMemDecompress)
2575# define RTZipTarCmd RT_MANGLER(RTZipTarCmd)
2576# define RTZipUnzipCmd RT_MANGLER(RTZipUnzipCmd)
2577# define RTZipTarFsStreamFromIoStream RT_MANGLER(RTZipTarFsStreamFromIoStream)
6d209b23
SF
2578# define RTZipTarFsStreamToIoStream RT_MANGLER(RTZipTarFsStreamToIoStream)
2579# define RTZipTarFsStreamSetOwner RT_MANGLER(RTZipTarFsStreamSetOwner)
2580# define RTZipTarFsStreamSetGroup RT_MANGLER(RTZipTarFsStreamSetGroup)
2581# define RTZipTarFsStreamSetPrefix RT_MANGLER(RTZipTarFsStreamSetPrefix)
2582# define RTZipTarFsStreamSetFileMode RT_MANGLER(RTZipTarFsStreamSetFileMode)
2583# define RTZipTarFsStreamSetDirMode RT_MANGLER(RTZipTarFsStreamSetDirMode)
2584# define RTZipTarFsStreamSetModTime RT_MANGLER(RTZipTarFsStreamSetModTime)
056a1eb7
SF
2585# define RTZipXarFsStreamFromIoStream RT_MANGLER(RTZipXarFsStreamFromIoStream)
2586
2587/* sort/merge into the above later: */
2588# define RTAsn1ContentAllocZ RT_MANGLER(RTAsn1ContentAllocZ)
2589# define RTAsn1ContentDup RT_MANGLER(RTAsn1ContentDup)
2590# define RTAsn1ContentFree RT_MANGLER(RTAsn1ContentFree)
2591# define RTAsn1ContentReallocZ RT_MANGLER(RTAsn1ContentReallocZ)
2592# define RTAsn1ContextTagN_Clone RT_MANGLER(RTAsn1ContextTagN_Clone)
2593# define RTAsn1ContextTagN_Init RT_MANGLER(RTAsn1ContextTagN_Init)
2594# define RTAsn1Dummy_InitEx RT_MANGLER(RTAsn1Dummy_InitEx)
2595# define RTAsn1MemAllocZ RT_MANGLER(RTAsn1MemAllocZ)
2596# define RTAsn1MemDup RT_MANGLER(RTAsn1MemDup)
2597# define RTAsn1MemFree RT_MANGLER(RTAsn1MemFree)
2598# define RTAsn1MemFreeArray RT_MANGLER(RTAsn1MemFreeArray)
2599# define RTAsn1MemResizeArray RT_MANGLER(RTAsn1MemResizeArray)
2600# define RTAsn1MemInitAllocation RT_MANGLER(RTAsn1MemInitAllocation)
2601# define RTAsn1MemInitArrayAllocation RT_MANGLER(RTAsn1MemInitArrayAllocation)
2602# define RTAsn1SeqOfCore_Clone RT_MANGLER(RTAsn1SeqOfCore_Clone)
2603# define RTAsn1SeqOfCore_Init RT_MANGLER(RTAsn1SeqOfCore_Init)
2604# define RTAsn1SequenceCore_Clone RT_MANGLER(RTAsn1SequenceCore_Clone)
2605# define RTAsn1SequenceCore_Init RT_MANGLER(RTAsn1SequenceCore_Init)
2606# define RTAsn1SetCore_Clone RT_MANGLER(RTAsn1SetCore_Clone)
2607# define RTAsn1SetCore_Init RT_MANGLER(RTAsn1SetCore_Init)
2608# define RTAsn1SetOfCore_Clone RT_MANGLER(RTAsn1SetOfCore_Clone)
2609# define RTAsn1SetOfCore_Init RT_MANGLER(RTAsn1SetOfCore_Init)
2610# define RTAsn1VtCheckSanity RT_MANGLER(RTAsn1VtCheckSanity)
2611# define RTAsn1VtClone RT_MANGLER(RTAsn1VtClone)
2612# define RTAsn1VtCompare RT_MANGLER(RTAsn1VtCompare)
2613# define RTAsn1VtDeepEnum RT_MANGLER(RTAsn1VtDeepEnum)
2614# define RTAsn1VtDelete RT_MANGLER(RTAsn1VtDelete)
2615# define RTAsn1CursorCheckEnd RT_MANGLER(RTAsn1CursorCheckEnd)
2616# define RTAsn1CursorGetBitString RT_MANGLER(RTAsn1CursorGetBitString)
2617# define RTAsn1CursorGetBitStringEx RT_MANGLER(RTAsn1CursorGetBitStringEx)
2618# define RTAsn1CursorGetBmpString RT_MANGLER(RTAsn1CursorGetBmpString)
2619# define RTAsn1CursorGetBoolean RT_MANGLER(RTAsn1CursorGetBoolean)
2620# define RTAsn1CursorGetContextTagNCursor RT_MANGLER(RTAsn1CursorGetContextTagNCursor)
2621# define RTAsn1CursorGetCore RT_MANGLER(RTAsn1CursorGetCore)
2622# define RTAsn1CursorGetDynType RT_MANGLER(RTAsn1CursorGetDynType)
2623# define RTAsn1CursorGetIa5String RT_MANGLER(RTAsn1CursorGetIa5String)
2624# define RTAsn1CursorGetInteger RT_MANGLER(RTAsn1CursorGetInteger)
2625# define RTAsn1CursorGetNull RT_MANGLER(RTAsn1CursorGetNull)
2626# define RTAsn1CursorGetObjId RT_MANGLER(RTAsn1CursorGetObjId)
2627# define RTAsn1CursorGetOctetString RT_MANGLER(RTAsn1CursorGetOctetString)
2628# define RTAsn1CursorGetSequenceCursor RT_MANGLER(RTAsn1CursorGetSequenceCursor)
2629# define RTAsn1CursorGetSetCursor RT_MANGLER(RTAsn1CursorGetSetCursor)
2630# define RTAsn1CursorGetString RT_MANGLER(RTAsn1CursorGetString)
2631# define RTAsn1CursorGetTime RT_MANGLER(RTAsn1CursorGetTime)
2632# define RTAsn1CursorGetUtf8String RT_MANGLER(RTAsn1CursorGetUtf8String)
2633# define RTAsn1CursorInitAllocation RT_MANGLER(RTAsn1CursorInitAllocation)
2634# define RTAsn1CursorInitArrayAllocation RT_MANGLER(RTAsn1CursorInitArrayAllocation)
2635# define RTAsn1CursorInitPrimary RT_MANGLER(RTAsn1CursorInitPrimary)
2636# define RTAsn1CursorInitSubFromCore RT_MANGLER(RTAsn1CursorInitSubFromCore)
2637# define RTAsn1CursorIsNextEx RT_MANGLER(RTAsn1CursorIsNextEx)
2638# define RTAsn1CursorMatchTagClassFlagsEx RT_MANGLER(RTAsn1CursorMatchTagClassFlagsEx)
2639# define RTAsn1CursorPeek RT_MANGLER(RTAsn1CursorPeek)
2640# define RTAsn1CursorReadHdr RT_MANGLER(RTAsn1CursorReadHdr)
2641# define RTAsn1CursorSetInfo RT_MANGLER(RTAsn1CursorSetInfo)
2642# define RTAsn1CursorSetInfoV RT_MANGLER(RTAsn1CursorSetInfoV)
2643# define RTAsn1Dump RT_MANGLER(RTAsn1Dump)
2644# define RTAsn1QueryObjIdName RT_MANGLER(RTAsn1QueryObjIdName)
2645# define RTAsn1EncodePrepare RT_MANGLER(RTAsn1EncodePrepare)
2646# define RTAsn1EncodeRecalcHdrSize RT_MANGLER(RTAsn1EncodeRecalcHdrSize)
2647# define RTAsn1EncodeToBuffer RT_MANGLER(RTAsn1EncodeToBuffer)
2648# define RTAsn1EncodeWrite RT_MANGLER(RTAsn1EncodeWrite)
2649# define RTAsn1EncodeWriteHeader RT_MANGLER(RTAsn1EncodeWriteHeader)
2650# define RTAsn1BitString_CheckSanity RT_MANGLER(RTAsn1BitString_CheckSanity)
2651# define RTAsn1BitString_Clone RT_MANGLER(RTAsn1BitString_Clone)
2652# define RTAsn1BitString_Compare RT_MANGLER(RTAsn1BitString_Compare)
2653# define RTAsn1BitString_Delete RT_MANGLER(RTAsn1BitString_Delete)
2654# define RTAsn1BitString_Enum RT_MANGLER(RTAsn1BitString_Enum)
2655# define RTAsn1BitString_GetAsUInt64 RT_MANGLER(RTAsn1BitString_GetAsUInt64)
2656# define RTAsn1BitString_Init RT_MANGLER(RTAsn1BitString_Init)
2657# define RTAsn1SeqOfBitStrings_CheckSanity RT_MANGLER(RTAsn1SeqOfBitStrings_CheckSanity)
2658# define RTAsn1SeqOfBitStrings_Clone RT_MANGLER(RTAsn1SeqOfBitStrings_Clone)
2659# define RTAsn1SeqOfBitStrings_Compare RT_MANGLER(RTAsn1SeqOfBitStrings_Compare)
2660# define RTAsn1SeqOfBitStrings_Delete RT_MANGLER(RTAsn1SeqOfBitStrings_Delete)
2661# define RTAsn1SeqOfBitStrings_Enum RT_MANGLER(RTAsn1SeqOfBitStrings_Enum)
2662# define RTAsn1SeqOfBitStrings_Init RT_MANGLER(RTAsn1SeqOfBitStrings_Init)
2663# define RTAsn1SetOfBitStrings_CheckSanity RT_MANGLER(RTAsn1SetOfBitStrings_CheckSanity)
2664# define RTAsn1SetOfBitStrings_Clone RT_MANGLER(RTAsn1SetOfBitStrings_Clone)
2665# define RTAsn1SetOfBitStrings_Compare RT_MANGLER(RTAsn1SetOfBitStrings_Compare)
2666# define RTAsn1SetOfBitStrings_Delete RT_MANGLER(RTAsn1SetOfBitStrings_Delete)
2667# define RTAsn1SetOfBitStrings_Enum RT_MANGLER(RTAsn1SetOfBitStrings_Enum)
2668# define RTAsn1SetOfBitStrings_Init RT_MANGLER(RTAsn1SetOfBitStrings_Init)
2669# define RTAsn1BitString_DecodeAsn1 RT_MANGLER(RTAsn1BitString_DecodeAsn1)
2670# define RTAsn1BitString_DecodeAsn1Ex RT_MANGLER(RTAsn1BitString_DecodeAsn1Ex)
2671# define RTAsn1SeqOfBitStrings_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfBitStrings_DecodeAsn1)
2672# define RTAsn1SetOfBitStrings_DecodeAsn1 RT_MANGLER(RTAsn1SetOfBitStrings_DecodeAsn1)
2673# define RTAsn1Boolean_CheckSanity RT_MANGLER(RTAsn1Boolean_CheckSanity)
2674# define RTAsn1Boolean_Clone RT_MANGLER(RTAsn1Boolean_Clone)
2675# define RTAsn1Boolean_Compare RT_MANGLER(RTAsn1Boolean_Compare)
2676# define RTAsn1Boolean_Delete RT_MANGLER(RTAsn1Boolean_Delete)
2677# define RTAsn1Boolean_Enum RT_MANGLER(RTAsn1Boolean_Enum)
2678# define RTAsn1Boolean_Init RT_MANGLER(RTAsn1Boolean_Init)
2679# define RTAsn1Boolean_InitDefault RT_MANGLER(RTAsn1Boolean_InitDefault)
2680# define RTAsn1Boolean_Set RT_MANGLER(RTAsn1Boolean_Set)
2681# define RTAsn1SeqOfBooleans_CheckSanity RT_MANGLER(RTAsn1SeqOfBooleans_CheckSanity)
2682# define RTAsn1SeqOfBooleans_Clone RT_MANGLER(RTAsn1SeqOfBooleans_Clone)
2683# define RTAsn1SeqOfBooleans_Compare RT_MANGLER(RTAsn1SeqOfBooleans_Compare)
2684# define RTAsn1SeqOfBooleans_Delete RT_MANGLER(RTAsn1SeqOfBooleans_Delete)
2685# define RTAsn1SeqOfBooleans_Enum RT_MANGLER(RTAsn1SeqOfBooleans_Enum)
2686# define RTAsn1SeqOfBooleans_Init RT_MANGLER(RTAsn1SeqOfBooleans_Init)
2687# define RTAsn1SetOfBooleans_CheckSanity RT_MANGLER(RTAsn1SetOfBooleans_CheckSanity)
2688# define RTAsn1SetOfBooleans_Clone RT_MANGLER(RTAsn1SetOfBooleans_Clone)
2689# define RTAsn1SetOfBooleans_Compare RT_MANGLER(RTAsn1SetOfBooleans_Compare)
2690# define RTAsn1SetOfBooleans_Delete RT_MANGLER(RTAsn1SetOfBooleans_Delete)
2691# define RTAsn1SetOfBooleans_Enum RT_MANGLER(RTAsn1SetOfBooleans_Enum)
2692# define RTAsn1SetOfBooleans_Init RT_MANGLER(RTAsn1SetOfBooleans_Init)
2693# define RTAsn1Boolean_DecodeAsn1 RT_MANGLER(RTAsn1Boolean_DecodeAsn1)
2694# define RTAsn1SeqOfBooleans_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfBooleans_DecodeAsn1)
2695# define RTAsn1SetOfBooleans_DecodeAsn1 RT_MANGLER(RTAsn1SetOfBooleans_DecodeAsn1)
2696# define RTAsn1Core_ChangeTag RT_MANGLER(RTAsn1Core_ChangeTag)
2697# define RTAsn1Core_CheckSanity RT_MANGLER(RTAsn1Core_CheckSanity)
2698# define RTAsn1Core_Clone RT_MANGLER(RTAsn1Core_Clone)
2699# define RTAsn1Core_CloneContent RT_MANGLER(RTAsn1Core_CloneContent)
2700# define RTAsn1Core_CloneNoContent RT_MANGLER(RTAsn1Core_CloneNoContent)
2701# define RTAsn1Core_Compare RT_MANGLER(RTAsn1Core_Compare)
2702# define RTAsn1Core_CompareEx RT_MANGLER(RTAsn1Core_CompareEx)
2703# define RTAsn1Core_Delete RT_MANGLER(RTAsn1Core_Delete)
2704# define RTAsn1Core_Enum RT_MANGLER(RTAsn1Core_Enum)
2705# define RTAsn1Core_Init RT_MANGLER(RTAsn1Core_Init)
2706# define RTAsn1Core_InitDefault RT_MANGLER(RTAsn1Core_InitDefault)
2707# define RTAsn1Core_InitEx RT_MANGLER(RTAsn1Core_InitEx)
2708# define RTAsn1Core_ResetImplict RT_MANGLER(RTAsn1Core_ResetImplict)
2709# define RTAsn1Core_SetTagAndFlags RT_MANGLER(RTAsn1Core_SetTagAndFlags)
2710# define RTAsn1SeqOfCores_CheckSanity RT_MANGLER(RTAsn1SeqOfCores_CheckSanity)
2711# define RTAsn1SeqOfCores_Clone RT_MANGLER(RTAsn1SeqOfCores_Clone)
2712# define RTAsn1SeqOfCores_Compare RT_MANGLER(RTAsn1SeqOfCores_Compare)
2713# define RTAsn1SeqOfCores_Delete RT_MANGLER(RTAsn1SeqOfCores_Delete)
2714# define RTAsn1SeqOfCores_Enum RT_MANGLER(RTAsn1SeqOfCores_Enum)
2715# define RTAsn1SeqOfCores_Init RT_MANGLER(RTAsn1SeqOfCores_Init)
2716# define RTAsn1SetOfCores_CheckSanity RT_MANGLER(RTAsn1SetOfCores_CheckSanity)
2717# define RTAsn1SetOfCores_Clone RT_MANGLER(RTAsn1SetOfCores_Clone)
2718# define RTAsn1SetOfCores_Compare RT_MANGLER(RTAsn1SetOfCores_Compare)
2719# define RTAsn1SetOfCores_Delete RT_MANGLER(RTAsn1SetOfCores_Delete)
2720# define RTAsn1SetOfCores_Enum RT_MANGLER(RTAsn1SetOfCores_Enum)
2721# define RTAsn1SetOfCores_Init RT_MANGLER(RTAsn1SetOfCores_Init)
2722# define RTAsn1Core_DecodeAsn1 RT_MANGLER(RTAsn1Core_DecodeAsn1)
2723# define RTAsn1SeqOfCores_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfCores_DecodeAsn1)
2724# define RTAsn1SetOfCores_DecodeAsn1 RT_MANGLER(RTAsn1SetOfCores_DecodeAsn1)
2725# define RTAsn1DynType_CheckSanity RT_MANGLER(RTAsn1DynType_CheckSanity)
2726# define RTAsn1DynType_Clone RT_MANGLER(RTAsn1DynType_Clone)
2727# define RTAsn1DynType_Compare RT_MANGLER(RTAsn1DynType_Compare)
2728# define RTAsn1DynType_Delete RT_MANGLER(RTAsn1DynType_Delete)
2729# define RTAsn1DynType_Enum RT_MANGLER(RTAsn1DynType_Enum)
2730# define RTAsn1DynType_Init RT_MANGLER(RTAsn1DynType_Init)
2731# define RTAsn1DynType_DecodeAsn1 RT_MANGLER(RTAsn1DynType_DecodeAsn1)
2732# define RTAsn1Integer_CheckSanity RT_MANGLER(RTAsn1Integer_CheckSanity)
2733# define RTAsn1Integer_Clone RT_MANGLER(RTAsn1Integer_Clone)
2734# define RTAsn1Integer_Compare RT_MANGLER(RTAsn1Integer_Compare)
2735# define RTAsn1Integer_Delete RT_MANGLER(RTAsn1Integer_Delete)
2736# define RTAsn1Integer_Enum RT_MANGLER(RTAsn1Integer_Enum)
2737# define RTAsn1Integer_FromBigNum RT_MANGLER(RTAsn1Integer_FromBigNum)
2738# define RTAsn1Integer_Init RT_MANGLER(RTAsn1Integer_Init)
2739# define RTAsn1Integer_InitDefault RT_MANGLER(RTAsn1Integer_InitDefault)
2740# define RTAsn1Integer_InitU64 RT_MANGLER(RTAsn1Integer_InitU64)
2741# define RTAsn1Integer_ToBigNum RT_MANGLER(RTAsn1Integer_ToBigNum)
2742# define RTAsn1Integer_ToString RT_MANGLER(RTAsn1Integer_ToString)
2743# define RTAsn1Integer_UnsignedCompare RT_MANGLER(RTAsn1Integer_UnsignedCompare)
2744# define RTAsn1Integer_UnsignedCompareWithU32 RT_MANGLER(RTAsn1Integer_UnsignedCompareWithU32)
2745# define RTAsn1Integer_UnsignedCompareWithU64 RT_MANGLER(RTAsn1Integer_UnsignedCompareWithU64)
2746# define RTAsn1Integer_UnsignedLastBit RT_MANGLER(RTAsn1Integer_UnsignedLastBit)
2747# define RTAsn1SeqOfIntegers_CheckSanity RT_MANGLER(RTAsn1SeqOfIntegers_CheckSanity)
2748# define RTAsn1SeqOfIntegers_Clone RT_MANGLER(RTAsn1SeqOfIntegers_Clone)
2749# define RTAsn1SeqOfIntegers_Compare RT_MANGLER(RTAsn1SeqOfIntegers_Compare)
2750# define RTAsn1SeqOfIntegers_Delete RT_MANGLER(RTAsn1SeqOfIntegers_Delete)
2751# define RTAsn1SeqOfIntegers_Enum RT_MANGLER(RTAsn1SeqOfIntegers_Enum)
2752# define RTAsn1SeqOfIntegers_Init RT_MANGLER(RTAsn1SeqOfIntegers_Init)
2753# define RTAsn1SetOfIntegers_CheckSanity RT_MANGLER(RTAsn1SetOfIntegers_CheckSanity)
2754# define RTAsn1SetOfIntegers_Clone RT_MANGLER(RTAsn1SetOfIntegers_Clone)
2755# define RTAsn1SetOfIntegers_Compare RT_MANGLER(RTAsn1SetOfIntegers_Compare)
2756# define RTAsn1SetOfIntegers_Delete RT_MANGLER(RTAsn1SetOfIntegers_Delete)
2757# define RTAsn1SetOfIntegers_Enum RT_MANGLER(RTAsn1SetOfIntegers_Enum)
2758# define RTAsn1SetOfIntegers_Init RT_MANGLER(RTAsn1SetOfIntegers_Init)
2759# define RTAsn1Integer_DecodeAsn1 RT_MANGLER(RTAsn1Integer_DecodeAsn1)
2760# define RTAsn1SeqOfIntegers_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfIntegers_DecodeAsn1)
2761# define RTAsn1SetOfIntegers_DecodeAsn1 RT_MANGLER(RTAsn1SetOfIntegers_DecodeAsn1)
2762# define RTAsn1Null_CheckSanity RT_MANGLER(RTAsn1Null_CheckSanity)
2763# define RTAsn1Null_Clone RT_MANGLER(RTAsn1Null_Clone)
2764# define RTAsn1Null_Compare RT_MANGLER(RTAsn1Null_Compare)
2765# define RTAsn1Null_Delete RT_MANGLER(RTAsn1Null_Delete)
2766# define RTAsn1Null_Enum RT_MANGLER(RTAsn1Null_Enum)
2767# define RTAsn1Null_Init RT_MANGLER(RTAsn1Null_Init)
2768# define RTAsn1Null_DecodeAsn1 RT_MANGLER(RTAsn1Null_DecodeAsn1)
2769# define RTAsn1ObjIdCountComponents RT_MANGLER(RTAsn1ObjIdCountComponents)
2770# define RTAsn1ObjIdGetComponentsAsUInt32 RT_MANGLER(RTAsn1ObjIdGetComponentsAsUInt32)
2771# define RTAsn1ObjIdGetLastComponentsAsUInt32 RT_MANGLER(RTAsn1ObjIdGetLastComponentsAsUInt32)
2772# define RTAsn1ObjId_CheckSanity RT_MANGLER(RTAsn1ObjId_CheckSanity)
2773# define RTAsn1ObjId_Clone RT_MANGLER(RTAsn1ObjId_Clone)
2774# define RTAsn1ObjId_Compare RT_MANGLER(RTAsn1ObjId_Compare)
2775# define RTAsn1ObjId_CompareWithString RT_MANGLER(RTAsn1ObjId_CompareWithString)
2776# define RTAsn1ObjId_Delete RT_MANGLER(RTAsn1ObjId_Delete)
2777# define RTAsn1ObjId_Enum RT_MANGLER(RTAsn1ObjId_Enum)
2778# define RTAsn1ObjId_Init RT_MANGLER(RTAsn1ObjId_Init)
2779# define RTAsn1ObjId_InitFromString RT_MANGLER(RTAsn1ObjId_InitFromString)
2780# define RTAsn1ObjId_StartsWith RT_MANGLER(RTAsn1ObjId_StartsWith)
2781# define RTAsn1SeqOfObjIds_CheckSanity RT_MANGLER(RTAsn1SeqOfObjIds_CheckSanity)
2782# define RTAsn1SeqOfObjIds_Clone RT_MANGLER(RTAsn1SeqOfObjIds_Clone)
2783# define RTAsn1SeqOfObjIds_Compare RT_MANGLER(RTAsn1SeqOfObjIds_Compare)
2784# define RTAsn1SeqOfObjIds_Delete RT_MANGLER(RTAsn1SeqOfObjIds_Delete)
2785# define RTAsn1SeqOfObjIds_Enum RT_MANGLER(RTAsn1SeqOfObjIds_Enum)
2786# define RTAsn1SeqOfObjIds_Init RT_MANGLER(RTAsn1SeqOfObjIds_Init)
2787# define RTAsn1SetOfObjIds_CheckSanity RT_MANGLER(RTAsn1SetOfObjIds_CheckSanity)
2788# define RTAsn1SetOfObjIds_Clone RT_MANGLER(RTAsn1SetOfObjIds_Clone)
2789# define RTAsn1SetOfObjIds_Compare RT_MANGLER(RTAsn1SetOfObjIds_Compare)
2790# define RTAsn1SetOfObjIds_Delete RT_MANGLER(RTAsn1SetOfObjIds_Delete)
2791# define RTAsn1SetOfObjIds_Enum RT_MANGLER(RTAsn1SetOfObjIds_Enum)
2792# define RTAsn1SetOfObjIds_Init RT_MANGLER(RTAsn1SetOfObjIds_Init)
2793# define RTAsn1SeqOfObjIdSeqs_CheckSanity RT_MANGLER(RTAsn1SeqOfObjIdSeqs_CheckSanity)
2794# define RTAsn1SeqOfObjIdSeqs_Clone RT_MANGLER(RTAsn1SeqOfObjIdSeqs_Clone)
2795# define RTAsn1SeqOfObjIdSeqs_Compare RT_MANGLER(RTAsn1SeqOfObjIdSeqs_Compare)
2796# define RTAsn1SetOfObjIdSeqs_DecodeAsn1 RT_MANGLER(RTAsn1SetOfObjIdSeqs_DecodeAsn1)
2797# define RTAsn1SeqOfObjIdSeqs_Delete RT_MANGLER(RTAsn1SeqOfObjIdSeqs_Delete)
2798# define RTAsn1SeqOfObjIdSeqs_Enum RT_MANGLER(RTAsn1SeqOfObjIdSeqs_Enum)
2799# define RTAsn1SeqOfObjIdSeqs_Init RT_MANGLER(RTAsn1SeqOfObjIdSeqs_Init)
2800# define RTAsn1SetOfObjIdSeqs_CheckSanity RT_MANGLER(RTAsn1SetOfObjIdSeqs_CheckSanity)
2801# define RTAsn1SetOfObjIdSeqs_Clone RT_MANGLER(RTAsn1SetOfObjIdSeqs_Clone)
2802# define RTAsn1SetOfObjIdSeqs_Compare RT_MANGLER(RTAsn1SetOfObjIdSeqs_Compare)
2803# define RTAsn1SetOfObjIdSeqs_Delete RT_MANGLER(RTAsn1SetOfObjIdSeqs_Delete)
2804# define RTAsn1SetOfObjIdSeqs_Enum RT_MANGLER(RTAsn1SetOfObjIdSeqs_Enum)
2805# define RTAsn1SetOfObjIdSeqs_Init RT_MANGLER(RTAsn1SetOfObjIdSeqs_Init)
2806# define RTAsn1ObjId_DecodeAsn1 RT_MANGLER(RTAsn1ObjId_DecodeAsn1)
2807# define RTAsn1SeqOfObjIds_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfObjIds_DecodeAsn1)
2808# define RTAsn1SetOfObjIds_DecodeAsn1 RT_MANGLER(RTAsn1SetOfObjIds_DecodeAsn1)
2809# define RTAsn1OctetString_CheckSanity RT_MANGLER(RTAsn1OctetString_CheckSanity)
2810# define RTAsn1OctetString_Clone RT_MANGLER(RTAsn1OctetString_Clone)
2811# define RTAsn1OctetString_Compare RT_MANGLER(RTAsn1OctetString_Compare)
2812# define RTAsn1OctetString_Delete RT_MANGLER(RTAsn1OctetString_Delete)
2813# define RTAsn1OctetString_Enum RT_MANGLER(RTAsn1OctetString_Enum)
2814# define RTAsn1OctetString_Init RT_MANGLER(RTAsn1OctetString_Init)
2815# define RTAsn1SeqOfOctetStrings_CheckSanity RT_MANGLER(RTAsn1SeqOfOctetStrings_CheckSanity)
2816# define RTAsn1SeqOfOctetStrings_Clone RT_MANGLER(RTAsn1SeqOfOctetStrings_Clone)
2817# define RTAsn1SeqOfOctetStrings_Compare RT_MANGLER(RTAsn1SeqOfOctetStrings_Compare)
2818# define RTAsn1SeqOfOctetStrings_Delete RT_MANGLER(RTAsn1SeqOfOctetStrings_Delete)
2819# define RTAsn1SeqOfOctetStrings_Enum RT_MANGLER(RTAsn1SeqOfOctetStrings_Enum)
2820# define RTAsn1SeqOfOctetStrings_Init RT_MANGLER(RTAsn1SeqOfOctetStrings_Init)
2821# define RTAsn1SetOfOctetStrings_CheckSanity RT_MANGLER(RTAsn1SetOfOctetStrings_CheckSanity)
2822# define RTAsn1SetOfOctetStrings_Clone RT_MANGLER(RTAsn1SetOfOctetStrings_Clone)
2823# define RTAsn1SetOfOctetStrings_Compare RT_MANGLER(RTAsn1SetOfOctetStrings_Compare)
2824# define RTAsn1SetOfOctetStrings_Delete RT_MANGLER(RTAsn1SetOfOctetStrings_Delete)
2825# define RTAsn1SetOfOctetStrings_Enum RT_MANGLER(RTAsn1SetOfOctetStrings_Enum)
2826# define RTAsn1SetOfOctetStrings_Init RT_MANGLER(RTAsn1SetOfOctetStrings_Init)
2827# define RTAsn1OctetString_DecodeAsn1 RT_MANGLER(RTAsn1OctetString_DecodeAsn1)
2828# define RTAsn1SeqOfOctetStrings_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfOctetStrings_DecodeAsn1)
2829# define RTAsn1SetOfOctetStrings_DecodeAsn1 RT_MANGLER(RTAsn1SetOfOctetStrings_DecodeAsn1)
2830# define RTAsn1BmpString_CheckSanity RT_MANGLER(RTAsn1BmpString_CheckSanity)
2831# define RTAsn1BmpString_Clone RT_MANGLER(RTAsn1BmpString_Clone)
2832# define RTAsn1BmpString_Compare RT_MANGLER(RTAsn1BmpString_Compare)
2833# define RTAsn1BmpString_Delete RT_MANGLER(RTAsn1BmpString_Delete)
2834# define RTAsn1BmpString_Enum RT_MANGLER(RTAsn1BmpString_Enum)
2835# define RTAsn1BmpString_Init RT_MANGLER(RTAsn1BmpString_Init)
2836# define RTAsn1GeneralString_CheckSanity RT_MANGLER(RTAsn1GeneralString_CheckSanity)
2837# define RTAsn1GeneralString_Clone RT_MANGLER(RTAsn1GeneralString_Clone)
2838# define RTAsn1GeneralString_Compare RT_MANGLER(RTAsn1GeneralString_Compare)
2839# define RTAsn1GeneralString_Delete RT_MANGLER(RTAsn1GeneralString_Delete)
2840# define RTAsn1GeneralString_Enum RT_MANGLER(RTAsn1GeneralString_Enum)
2841# define RTAsn1GeneralString_Init RT_MANGLER(RTAsn1GeneralString_Init)
2842# define RTAsn1GraphicString_CheckSanity RT_MANGLER(RTAsn1GraphicString_CheckSanity)
2843# define RTAsn1GraphicString_Clone RT_MANGLER(RTAsn1GraphicString_Clone)
2844# define RTAsn1GraphicString_Compare RT_MANGLER(RTAsn1GraphicString_Compare)
2845# define RTAsn1GraphicString_Delete RT_MANGLER(RTAsn1GraphicString_Delete)
2846# define RTAsn1GraphicString_Enum RT_MANGLER(RTAsn1GraphicString_Enum)
2847# define RTAsn1GraphicString_Init RT_MANGLER(RTAsn1GraphicString_Init)
2848# define RTAsn1Ia5String_CheckSanity RT_MANGLER(RTAsn1Ia5String_CheckSanity)
2849# define RTAsn1Ia5String_Clone RT_MANGLER(RTAsn1Ia5String_Clone)
2850# define RTAsn1Ia5String_Compare RT_MANGLER(RTAsn1Ia5String_Compare)
2851# define RTAsn1Ia5String_Delete RT_MANGLER(RTAsn1Ia5String_Delete)
2852# define RTAsn1Ia5String_Enum RT_MANGLER(RTAsn1Ia5String_Enum)
2853# define RTAsn1Ia5String_Init RT_MANGLER(RTAsn1Ia5String_Init)
2854# define RTAsn1NumericString_CheckSanity RT_MANGLER(RTAsn1NumericString_CheckSanity)
2855# define RTAsn1NumericString_Clone RT_MANGLER(RTAsn1NumericString_Clone)
2856# define RTAsn1NumericString_Compare RT_MANGLER(RTAsn1NumericString_Compare)
2857# define RTAsn1NumericString_Delete RT_MANGLER(RTAsn1NumericString_Delete)
2858# define RTAsn1NumericString_Enum RT_MANGLER(RTAsn1NumericString_Enum)
2859# define RTAsn1NumericString_Init RT_MANGLER(RTAsn1NumericString_Init)
2860# define RTAsn1PrintableString_CheckSanity RT_MANGLER(RTAsn1PrintableString_CheckSanity)
2861# define RTAsn1PrintableString_Clone RT_MANGLER(RTAsn1PrintableString_Clone)
2862# define RTAsn1PrintableString_Compare RT_MANGLER(RTAsn1PrintableString_Compare)
2863# define RTAsn1PrintableString_Delete RT_MANGLER(RTAsn1PrintableString_Delete)
2864# define RTAsn1PrintableString_Enum RT_MANGLER(RTAsn1PrintableString_Enum)
2865# define RTAsn1PrintableString_Init RT_MANGLER(RTAsn1PrintableString_Init)
2866# define RTAsn1SeqOfStrings_CheckSanity RT_MANGLER(RTAsn1SeqOfStrings_CheckSanity)
2867# define RTAsn1SeqOfStrings_Clone RT_MANGLER(RTAsn1SeqOfStrings_Clone)
2868# define RTAsn1SeqOfStrings_Compare RT_MANGLER(RTAsn1SeqOfStrings_Compare)
2869# define RTAsn1SeqOfStrings_Delete RT_MANGLER(RTAsn1SeqOfStrings_Delete)
2870# define RTAsn1SeqOfStrings_Enum RT_MANGLER(RTAsn1SeqOfStrings_Enum)
2871# define RTAsn1SeqOfStrings_Init RT_MANGLER(RTAsn1SeqOfStrings_Init)
2872# define RTAsn1SetOfStrings_CheckSanity RT_MANGLER(RTAsn1SetOfStrings_CheckSanity)
2873# define RTAsn1SetOfStrings_Clone RT_MANGLER(RTAsn1SetOfStrings_Clone)
2874# define RTAsn1SetOfStrings_Compare RT_MANGLER(RTAsn1SetOfStrings_Compare)
2875# define RTAsn1SetOfStrings_Delete RT_MANGLER(RTAsn1SetOfStrings_Delete)
2876# define RTAsn1SetOfStrings_Enum RT_MANGLER(RTAsn1SetOfStrings_Enum)
2877# define RTAsn1SetOfStrings_Init RT_MANGLER(RTAsn1SetOfStrings_Init)
2878# define RTAsn1String_CheckSanity RT_MANGLER(RTAsn1String_CheckSanity)
2879# define RTAsn1String_Clone RT_MANGLER(RTAsn1String_Clone)
2880# define RTAsn1String_Compare RT_MANGLER(RTAsn1String_Compare)
2881# define RTAsn1String_CompareEx RT_MANGLER(RTAsn1String_CompareEx)
2882# define RTAsn1String_CompareWithString RT_MANGLER(RTAsn1String_CompareWithString)
2883# define RTAsn1String_Delete RT_MANGLER(RTAsn1String_Delete)
2884# define RTAsn1String_Enum RT_MANGLER(RTAsn1String_Enum)
2885# define RTAsn1String_Init RT_MANGLER(RTAsn1String_Init)
2886# define RTAsn1String_InitEx RT_MANGLER(RTAsn1String_InitEx)
2887# define RTAsn1String_InitWithValue RT_MANGLER(RTAsn1String_InitWithValue)
2888# define RTAsn1String_QueryUtf8 RT_MANGLER(RTAsn1String_QueryUtf8)
2889# define RTAsn1String_QueryUtf8Len RT_MANGLER(RTAsn1String_QueryUtf8Len)
2890# define RTAsn1String_RecodeAsUtf8 RT_MANGLER(RTAsn1String_RecodeAsUtf8)
2891# define RTAsn1T61String_CheckSanity RT_MANGLER(RTAsn1T61String_CheckSanity)
2892# define RTAsn1T61String_Clone RT_MANGLER(RTAsn1T61String_Clone)
2893# define RTAsn1T61String_Compare RT_MANGLER(RTAsn1T61String_Compare)
2894# define RTAsn1T61String_Delete RT_MANGLER(RTAsn1T61String_Delete)
2895# define RTAsn1T61String_Enum RT_MANGLER(RTAsn1T61String_Enum)
2896# define RTAsn1T61String_Init RT_MANGLER(RTAsn1T61String_Init)
2897# define RTAsn1UniversalString_CheckSanity RT_MANGLER(RTAsn1UniversalString_CheckSanity)
2898# define RTAsn1UniversalString_Clone RT_MANGLER(RTAsn1UniversalString_Clone)
2899# define RTAsn1UniversalString_Compare RT_MANGLER(RTAsn1UniversalString_Compare)
2900# define RTAsn1UniversalString_Delete RT_MANGLER(RTAsn1UniversalString_Delete)
2901# define RTAsn1UniversalString_Enum RT_MANGLER(RTAsn1UniversalString_Enum)
2902# define RTAsn1UniversalString_Init RT_MANGLER(RTAsn1UniversalString_Init)
2903# define RTAsn1Utf8String_CheckSanity RT_MANGLER(RTAsn1Utf8String_CheckSanity)
2904# define RTAsn1Utf8String_Clone RT_MANGLER(RTAsn1Utf8String_Clone)
2905# define RTAsn1Utf8String_Compare RT_MANGLER(RTAsn1Utf8String_Compare)
2906# define RTAsn1Utf8String_Delete RT_MANGLER(RTAsn1Utf8String_Delete)
2907# define RTAsn1Utf8String_Enum RT_MANGLER(RTAsn1Utf8String_Enum)
2908# define RTAsn1Utf8String_Init RT_MANGLER(RTAsn1Utf8String_Init)
2909# define RTAsn1VisibleString_CheckSanity RT_MANGLER(RTAsn1VisibleString_CheckSanity)
2910# define RTAsn1VisibleString_Clone RT_MANGLER(RTAsn1VisibleString_Clone)
2911# define RTAsn1VisibleString_Compare RT_MANGLER(RTAsn1VisibleString_Compare)
2912# define RTAsn1VisibleString_Delete RT_MANGLER(RTAsn1VisibleString_Delete)
2913# define RTAsn1VisibleString_Enum RT_MANGLER(RTAsn1VisibleString_Enum)
2914# define RTAsn1VisibleString_Init RT_MANGLER(RTAsn1VisibleString_Init)
2915# define RTAsn1BmpString_DecodeAsn1 RT_MANGLER(RTAsn1BmpString_DecodeAsn1)
2916# define RTAsn1GeneralString_DecodeAsn1 RT_MANGLER(RTAsn1GeneralString_DecodeAsn1)
2917# define RTAsn1GraphicString_DecodeAsn1 RT_MANGLER(RTAsn1GraphicString_DecodeAsn1)
2918# define RTAsn1Ia5String_DecodeAsn1 RT_MANGLER(RTAsn1Ia5String_DecodeAsn1)
2919# define RTAsn1NumericString_DecodeAsn1 RT_MANGLER(RTAsn1NumericString_DecodeAsn1)
2920# define RTAsn1PrintableString_DecodeAsn1 RT_MANGLER(RTAsn1PrintableString_DecodeAsn1)
2921# define RTAsn1SeqOfStrings_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfStrings_DecodeAsn1)
2922# define RTAsn1SetOfStrings_DecodeAsn1 RT_MANGLER(RTAsn1SetOfStrings_DecodeAsn1)
2923# define RTAsn1String_DecodeAsn1 RT_MANGLER(RTAsn1String_DecodeAsn1)
2924# define RTAsn1T61String_DecodeAsn1 RT_MANGLER(RTAsn1T61String_DecodeAsn1)
2925# define RTAsn1UniversalString_DecodeAsn1 RT_MANGLER(RTAsn1UniversalString_DecodeAsn1)
2926# define RTAsn1Utf8String_DecodeAsn1 RT_MANGLER(RTAsn1Utf8String_DecodeAsn1)
2927# define RTAsn1VisibleString_DecodeAsn1 RT_MANGLER(RTAsn1VisibleString_DecodeAsn1)
2928# define RTAsn1GeneralizedTime_CheckSanity RT_MANGLER(RTAsn1GeneralizedTime_CheckSanity)
2929# define RTAsn1GeneralizedTime_Clone RT_MANGLER(RTAsn1GeneralizedTime_Clone)
2930# define RTAsn1GeneralizedTime_Compare RT_MANGLER(RTAsn1GeneralizedTime_Compare)
2931# define RTAsn1GeneralizedTime_Delete RT_MANGLER(RTAsn1GeneralizedTime_Delete)
2932# define RTAsn1GeneralizedTime_Enum RT_MANGLER(RTAsn1GeneralizedTime_Enum)
2933# define RTAsn1GeneralizedTime_Init RT_MANGLER(RTAsn1GeneralizedTime_Init)
2934# define RTAsn1SeqOfTimes_CheckSanity RT_MANGLER(RTAsn1SeqOfTimes_CheckSanity)
2935# define RTAsn1SeqOfTimes_Clone RT_MANGLER(RTAsn1SeqOfTimes_Clone)
2936# define RTAsn1SeqOfTimes_Compare RT_MANGLER(RTAsn1SeqOfTimes_Compare)
2937# define RTAsn1SeqOfTimes_Delete RT_MANGLER(RTAsn1SeqOfTimes_Delete)
2938# define RTAsn1SeqOfTimes_Enum RT_MANGLER(RTAsn1SeqOfTimes_Enum)
2939# define RTAsn1SeqOfTimes_Init RT_MANGLER(RTAsn1SeqOfTimes_Init)
2940# define RTAsn1SetOfTimes_CheckSanity RT_MANGLER(RTAsn1SetOfTimes_CheckSanity)
2941# define RTAsn1SetOfTimes_Clone RT_MANGLER(RTAsn1SetOfTimes_Clone)
2942# define RTAsn1SetOfTimes_Compare RT_MANGLER(RTAsn1SetOfTimes_Compare)
2943# define RTAsn1SetOfTimes_Delete RT_MANGLER(RTAsn1SetOfTimes_Delete)
2944# define RTAsn1SetOfTimes_Enum RT_MANGLER(RTAsn1SetOfTimes_Enum)
2945# define RTAsn1SetOfTimes_Init RT_MANGLER(RTAsn1SetOfTimes_Init)
2946# define RTAsn1Time_CheckSanity RT_MANGLER(RTAsn1Time_CheckSanity)
2947# define RTAsn1Time_Clone RT_MANGLER(RTAsn1Time_Clone)
2948# define RTAsn1Time_Compare RT_MANGLER(RTAsn1Time_Compare)
2949# define RTAsn1Time_CompareWithTimeSpec RT_MANGLER(RTAsn1Time_CompareWithTimeSpec)
2950# define RTAsn1Time_Delete RT_MANGLER(RTAsn1Time_Delete)
2951# define RTAsn1Time_Enum RT_MANGLER(RTAsn1Time_Enum)
2952# define RTAsn1Time_Init RT_MANGLER(RTAsn1Time_Init)
2953# define RTAsn1UtcTime_CheckSanity RT_MANGLER(RTAsn1UtcTime_CheckSanity)
2954# define RTAsn1UtcTime_Clone RT_MANGLER(RTAsn1UtcTime_Clone)
2955# define RTAsn1UtcTime_Compare RT_MANGLER(RTAsn1UtcTime_Compare)
2956# define RTAsn1UtcTime_Delete RT_MANGLER(RTAsn1UtcTime_Delete)
2957# define RTAsn1UtcTime_Enum RT_MANGLER(RTAsn1UtcTime_Enum)
2958# define RTAsn1UtcTime_Init RT_MANGLER(RTAsn1UtcTime_Init)
2959# define RTAsn1GeneralizedTime_DecodeAsn1 RT_MANGLER(RTAsn1GeneralizedTime_DecodeAsn1)
2960# define RTAsn1SeqOfTimes_DecodeAsn1 RT_MANGLER(RTAsn1SeqOfTimes_DecodeAsn1)
2961# define RTAsn1SetOfTimes_DecodeAsn1 RT_MANGLER(RTAsn1SetOfTimes_DecodeAsn1)
2962# define RTAsn1Time_DecodeAsn1 RT_MANGLER(RTAsn1Time_DecodeAsn1)
2963# define RTAsn1UtcTime_DecodeAsn1 RT_MANGLER(RTAsn1UtcTime_DecodeAsn1)
2964# define RTMd2 RT_MANGLER(RTMd2)
2965# define RTMd2Final RT_MANGLER(RTMd2Final)
2966# define RTMd2Init RT_MANGLER(RTMd2Init)
2967# define RTMd2Update RT_MANGLER(RTMd2Update)
2968# define RTMd2FromString RT_MANGLER(RTMd2FromString)
2969# define RTMd2ToString RT_MANGLER(RTMd2ToString)
2970# define RTCrDigestClone RT_MANGLER(RTCrDigestClone)
2971# define RTCrDigestCreate RT_MANGLER(RTCrDigestCreate)
2972# define RTCrDigestFinal RT_MANGLER(RTCrDigestFinal)
2973# define RTCrDigestGetConsumedSize RT_MANGLER(RTCrDigestGetConsumedSize)
2974# define RTCrDigestGetHash RT_MANGLER(RTCrDigestGetHash)
2975# define RTCrDigestGetHashSize RT_MANGLER(RTCrDigestGetHashSize)
2976# define RTCrDigestGetType RT_MANGLER(RTCrDigestGetType)
2977# define RTCrDigestGetAlgorithmOid RT_MANGLER(RTCrDigestGetAlgorithmOid)
2978# define RTCrDigestIsFinalized RT_MANGLER(RTCrDigestIsFinalized)
2979# define RTCrDigestMatch RT_MANGLER(RTCrDigestMatch)
2980# define RTCrDigestRelease RT_MANGLER(RTCrDigestRelease)
2981# define RTCrDigestReset RT_MANGLER(RTCrDigestReset)
2982# define RTCrDigestRetain RT_MANGLER(RTCrDigestRetain)
2983# define RTCrDigestUpdate RT_MANGLER(RTCrDigestUpdate)
2984# define RTCrDigestUpdateFromVfsFile RT_MANGLER(RTCrDigestUpdateFromVfsFile)
2985# define RTCrDigestCreateByObjId RT_MANGLER(RTCrDigestCreateByObjId)
2986# define RTCrDigestCreateByObjIdString RT_MANGLER(RTCrDigestCreateByObjIdString)
2987# define RTCrDigestCreateByType RT_MANGLER(RTCrDigestCreateByType)
2988# define RTCrDigestFindByObjId RT_MANGLER(RTCrDigestFindByObjId)
2989# define RTCrDigestFindByObjIdString RT_MANGLER(RTCrDigestFindByObjIdString)
2990# define RTCrDigestFindByType RT_MANGLER(RTCrDigestFindByType)
2991# define RTCrDigestTypeToAlgorithmOid RT_MANGLER(RTCrDigestTypeToAlgorithmOid)
2992# define RTCrDigestTypeToName RT_MANGLER(RTCrDigestTypeToName)
2993# define RTCrDigestTypeToHashSize RT_MANGLER(RTCrDigestTypeToHashSize)
2994# define RTCrRsaDigestInfo_DecodeAsn1 RT_MANGLER(RTCrRsaDigestInfo_DecodeAsn1)
2995# define RTCrRsaOtherPrimeInfo_DecodeAsn1 RT_MANGLER(RTCrRsaOtherPrimeInfo_DecodeAsn1)
2996# define RTCrRsaOtherPrimeInfos_DecodeAsn1 RT_MANGLER(RTCrRsaOtherPrimeInfos_DecodeAsn1)
2997# define RTCrRsaPrivateKey_DecodeAsn1 RT_MANGLER(RTCrRsaPrivateKey_DecodeAsn1)
2998# define RTCrRsaPublicKey_DecodeAsn1 RT_MANGLER(RTCrRsaPublicKey_DecodeAsn1)
2999# define RTCrRsaDigestInfo_Compare RT_MANGLER(RTCrRsaDigestInfo_Compare)
3000# define RTCrRsaDigestInfo_Delete RT_MANGLER(RTCrRsaDigestInfo_Delete)
3001# define RTCrRsaDigestInfo_Enum RT_MANGLER(RTCrRsaDigestInfo_Enum)
3002# define RTCrRsaOtherPrimeInfo_Compare RT_MANGLER(RTCrRsaOtherPrimeInfo_Compare)
3003# define RTCrRsaOtherPrimeInfo_Delete RT_MANGLER(RTCrRsaOtherPrimeInfo_Delete)
3004# define RTCrRsaOtherPrimeInfo_Enum RT_MANGLER(RTCrRsaOtherPrimeInfo_Enum)
3005# define RTCrRsaOtherPrimeInfos_Compare RT_MANGLER(RTCrRsaOtherPrimeInfos_Compare)
3006# define RTCrRsaOtherPrimeInfos_Delete RT_MANGLER(RTCrRsaOtherPrimeInfos_Delete)
3007# define RTCrRsaOtherPrimeInfos_Enum RT_MANGLER(RTCrRsaOtherPrimeInfos_Enum)
3008# define RTCrRsaPrivateKey_Compare RT_MANGLER(RTCrRsaPrivateKey_Compare)
3009# define RTCrRsaPrivateKey_Delete RT_MANGLER(RTCrRsaPrivateKey_Delete)
3010# define RTCrRsaPrivateKey_Enum RT_MANGLER(RTCrRsaPrivateKey_Enum)
3011# define RTCrRsaPublicKey_Compare RT_MANGLER(RTCrRsaPublicKey_Compare)
3012# define RTCrRsaPublicKey_Delete RT_MANGLER(RTCrRsaPublicKey_Delete)
3013# define RTCrRsaPublicKey_Enum RT_MANGLER(RTCrRsaPublicKey_Enum)
3014# define RTCrRsaDigestInfo_Clone RT_MANGLER(RTCrRsaDigestInfo_Clone)
3015# define RTCrRsaDigestInfo_Init RT_MANGLER(RTCrRsaDigestInfo_Init)
3016# define RTCrRsaOtherPrimeInfo_Clone RT_MANGLER(RTCrRsaOtherPrimeInfo_Clone)
3017# define RTCrRsaOtherPrimeInfo_Init RT_MANGLER(RTCrRsaOtherPrimeInfo_Init)
3018# define RTCrRsaOtherPrimeInfos_Clone RT_MANGLER(RTCrRsaOtherPrimeInfos_Clone)
3019# define RTCrRsaOtherPrimeInfos_Init RT_MANGLER(RTCrRsaOtherPrimeInfos_Init)
3020# define RTCrRsaPrivateKey_Clone RT_MANGLER(RTCrRsaPrivateKey_Clone)
3021# define RTCrRsaPrivateKey_Init RT_MANGLER(RTCrRsaPrivateKey_Init)
3022# define RTCrRsaPublicKey_Clone RT_MANGLER(RTCrRsaPublicKey_Clone)
3023# define RTCrRsaPublicKey_Init RT_MANGLER(RTCrRsaPublicKey_Init)
3024# define RTCrRsaDigestInfo_CheckSanity RT_MANGLER(RTCrRsaDigestInfo_CheckSanity)
3025# define RTCrRsaOtherPrimeInfo_CheckSanity RT_MANGLER(RTCrRsaOtherPrimeInfo_CheckSanity)
3026# define RTCrRsaOtherPrimeInfos_CheckSanity RT_MANGLER(RTCrRsaOtherPrimeInfos_CheckSanity)
3027# define RTCrRsaPrivateKey_CheckSanity RT_MANGLER(RTCrRsaPrivateKey_CheckSanity)
3028# define RTCrRsaPublicKey_CheckSanity RT_MANGLER(RTCrRsaPublicKey_CheckSanity)
3029# define RTCrPemFindFirstSectionInContent RT_MANGLER(RTCrPemFindFirstSectionInContent)
3030# define RTCrPemFreeSections RT_MANGLER(RTCrPemFreeSections)
3031# define RTCrPemParseContent RT_MANGLER(RTCrPemParseContent)
3032# define RTCrPemReadFile RT_MANGLER(RTCrPemReadFile)
3033# define RTCrPkcs7Attribute_DecodeAsn1 RT_MANGLER(RTCrPkcs7Attribute_DecodeAsn1)
3034# define RTCrPkcs7Attributes_DecodeAsn1 RT_MANGLER(RTCrPkcs7Attributes_DecodeAsn1)
3035# define RTCrPkcs7ContentInfo_DecodeAsn1 RT_MANGLER(RTCrPkcs7ContentInfo_DecodeAsn1)
3036# define RTCrPkcs7DigestInfo_DecodeAsn1 RT_MANGLER(RTCrPkcs7DigestInfo_DecodeAsn1)
3037# define RTCrPkcs7IssuerAndSerialNumber_DecodeAsn1 RT_MANGLER(RTCrPkcs7IssuerAndSerialNumber_DecodeAsn1)
3038# define RTCrPkcs7SignedData_DecodeAsn1 RT_MANGLER(RTCrPkcs7SignedData_DecodeAsn1)
3039# define RTCrPkcs7SignerInfo_DecodeAsn1 RT_MANGLER(RTCrPkcs7SignerInfo_DecodeAsn1)
3040# define RTCrPkcs7SignerInfos_DecodeAsn1 RT_MANGLER(RTCrPkcs7SignerInfos_DecodeAsn1)
3041# define RTCrPkcs7Attribute_Compare RT_MANGLER(RTCrPkcs7Attribute_Compare)
3042# define RTCrPkcs7Attribute_Delete RT_MANGLER(RTCrPkcs7Attribute_Delete)
3043# define RTCrPkcs7Attribute_Enum RT_MANGLER(RTCrPkcs7Attribute_Enum)
3044# define RTCrPkcs7Attributes_Compare RT_MANGLER(RTCrPkcs7Attributes_Compare)
3045# define RTCrPkcs7Attributes_Delete RT_MANGLER(RTCrPkcs7Attributes_Delete)
3046# define RTCrPkcs7Attributes_Enum RT_MANGLER(RTCrPkcs7Attributes_Enum)
3047# define RTCrPkcs7ContentInfo_Compare RT_MANGLER(RTCrPkcs7ContentInfo_Compare)
3048# define RTCrPkcs7ContentInfo_Delete RT_MANGLER(RTCrPkcs7ContentInfo_Delete)
3049# define RTCrPkcs7ContentInfo_Enum RT_MANGLER(RTCrPkcs7ContentInfo_Enum)
3050# define RTCrPkcs7ContentInfo_IsSignedData RT_MANGLER(RTCrPkcs7ContentInfo_IsSignedData)
3051# define RTCrPkcs7DigestInfo_Compare RT_MANGLER(RTCrPkcs7DigestInfo_Compare)
3052# define RTCrPkcs7DigestInfo_Delete RT_MANGLER(RTCrPkcs7DigestInfo_Delete)
3053# define RTCrPkcs7DigestInfo_Enum RT_MANGLER(RTCrPkcs7DigestInfo_Enum)
3054# define RTCrPkcs7IssuerAndSerialNumber_Compare RT_MANGLER(RTCrPkcs7IssuerAndSerialNumber_Compare)
3055# define RTCrPkcs7IssuerAndSerialNumber_Delete RT_MANGLER(RTCrPkcs7IssuerAndSerialNumber_Delete)
3056# define RTCrPkcs7IssuerAndSerialNumber_Enum RT_MANGLER(RTCrPkcs7IssuerAndSerialNumber_Enum)
3057# define RTCrPkcs7SignedData_Compare RT_MANGLER(RTCrPkcs7SignedData_Compare)
3058# define RTCrPkcs7SignedData_Delete RT_MANGLER(RTCrPkcs7SignedData_Delete)
3059# define RTCrPkcs7SignedData_Enum RT_MANGLER(RTCrPkcs7SignedData_Enum)
3060# define RTCrPkcs7SignerInfo_Compare RT_MANGLER(RTCrPkcs7SignerInfo_Compare)
3061# define RTCrPkcs7SignerInfo_Delete RT_MANGLER(RTCrPkcs7SignerInfo_Delete)
3062# define RTCrPkcs7SignerInfo_Enum RT_MANGLER(RTCrPkcs7SignerInfo_Enum)
3063# define RTCrPkcs7SignerInfo_GetSigningTime RT_MANGLER(RTCrPkcs7SignerInfo_GetSigningTime)
3064# define RTCrPkcs7SignerInfo_GetMsTimestamp RT_MANGLER(RTCrPkcs7SignerInfo_GetMsTimestamp)
3065# define RTCrPkcs7SignerInfos_Compare RT_MANGLER(RTCrPkcs7SignerInfos_Compare)
3066# define RTCrPkcs7SignerInfos_Delete RT_MANGLER(RTCrPkcs7SignerInfos_Delete)
3067# define RTCrPkcs7SignerInfos_Enum RT_MANGLER(RTCrPkcs7SignerInfos_Enum)
3068# define RTCrPkcs7Attribute_Clone RT_MANGLER(RTCrPkcs7Attribute_Clone)
3069# define RTCrPkcs7Attribute_Init RT_MANGLER(RTCrPkcs7Attribute_Init)
3070# define RTCrPkcs7Attributes_Clone RT_MANGLER(RTCrPkcs7Attributes_Clone)
3071# define RTCrPkcs7Attributes_Init RT_MANGLER(RTCrPkcs7Attributes_Init)
3072# define RTCrPkcs7ContentInfo_Clone RT_MANGLER(RTCrPkcs7ContentInfo_Clone)
3073# define RTCrPkcs7ContentInfo_Init RT_MANGLER(RTCrPkcs7ContentInfo_Init)
3074# define RTCrPkcs7DigestInfo_Clone RT_MANGLER(RTCrPkcs7DigestInfo_Clone)
3075# define RTCrPkcs7DigestInfo_Init RT_MANGLER(RTCrPkcs7DigestInfo_Init)
3076# define RTCrPkcs7IssuerAndSerialNumber_Clone RT_MANGLER(RTCrPkcs7IssuerAndSerialNumber_Clone)
3077# define RTCrPkcs7IssuerAndSerialNumber_Init RT_MANGLER(RTCrPkcs7IssuerAndSerialNumber_Init)
3078# define RTCrPkcs7SignedData_Clone RT_MANGLER(RTCrPkcs7SignedData_Clone)
3079# define RTCrPkcs7SignedData_Init RT_MANGLER(RTCrPkcs7SignedData_Init)
3080# define RTCrPkcs7SignerInfo_Clone RT_MANGLER(RTCrPkcs7SignerInfo_Clone)
3081# define RTCrPkcs7SignerInfo_Init RT_MANGLER(RTCrPkcs7SignerInfo_Init)
3082# define RTCrPkcs7SignerInfos_Clone RT_MANGLER(RTCrPkcs7SignerInfos_Clone)
3083# define RTCrPkcs7SignerInfos_Init RT_MANGLER(RTCrPkcs7SignerInfos_Init)
3084# define RTCrPkcs7Attribute_CheckSanity RT_MANGLER(RTCrPkcs7Attribute_CheckSanity)
3085# define RTCrPkcs7Attributes_CheckSanity RT_MANGLER(RTCrPkcs7Attributes_CheckSanity)
3086# define RTCrPkcs7ContentInfo_CheckSanity RT_MANGLER(RTCrPkcs7ContentInfo_CheckSanity)
3087# define RTCrPkcs7DigestInfo_CheckSanity RT_MANGLER(RTCrPkcs7DigestInfo_CheckSanity)
3088# define RTCrPkcs7IssuerAndSerialNumber_CheckSanity RT_MANGLER(RTCrPkcs7IssuerAndSerialNumber_CheckSanity)
3089# define RTCrPkcs7SignedData_CheckSanity RT_MANGLER(RTCrPkcs7SignedData_CheckSanity)
3090# define RTCrPkcs7SignerInfo_CheckSanity RT_MANGLER(RTCrPkcs7SignerInfo_CheckSanity)
3091# define RTCrPkcs7SignerInfos_CheckSanity RT_MANGLER(RTCrPkcs7SignerInfos_CheckSanity)
3092# define RTCrPkcs7VerifyCertCallbackCodeSigning RT_MANGLER(RTCrPkcs7VerifyCertCallbackCodeSigning)
3093# define RTCrPkcs7VerifyCertCallbackDefault RT_MANGLER(RTCrPkcs7VerifyCertCallbackDefault)
3094# define RTCrPkcs7VerifySignedData RT_MANGLER(RTCrPkcs7VerifySignedData)
3095# define RTCrPkcs7Cert_CheckSanity RT_MANGLER(RTCrPkcs7Cert_CheckSanity)
3096# define RTCrPkcs7Cert_Clone RT_MANGLER(RTCrPkcs7Cert_Clone)
3097# define RTCrPkcs7Cert_Compare RT_MANGLER(RTCrPkcs7Cert_Compare)
3098# define RTCrPkcs7Cert_DecodeAsn1 RT_MANGLER(RTCrPkcs7Cert_DecodeAsn1)
3099# define RTCrPkcs7Cert_Delete RT_MANGLER(RTCrPkcs7Cert_Delete)
3100# define RTCrPkcs7Cert_Enum RT_MANGLER(RTCrPkcs7Cert_Enum)
3101# define RTCrPkcs7Cert_Init RT_MANGLER(RTCrPkcs7Cert_Init)
3102# define RTCrPkcs7SetOfCerts_CheckSanity RT_MANGLER(RTCrPkcs7SetOfCerts_CheckSanity)
3103# define RTCrPkcs7SetOfCerts_Clone RT_MANGLER(RTCrPkcs7SetOfCerts_Clone)
3104# define RTCrPkcs7SetOfCerts_Compare RT_MANGLER(RTCrPkcs7SetOfCerts_Compare)
3105# define RTCrPkcs7SetOfCerts_DecodeAsn1 RT_MANGLER(RTCrPkcs7SetOfCerts_DecodeAsn1)
3106# define RTCrPkcs7SetOfCerts_Delete RT_MANGLER(RTCrPkcs7SetOfCerts_Delete)
3107# define RTCrPkcs7SetOfCerts_Enum RT_MANGLER(RTCrPkcs7SetOfCerts_Enum)
3108# define RTCrPkcs7SetOfCerts_Init RT_MANGLER(RTCrPkcs7SetOfCerts_Init)
3109# define RTCrPkcs7SetOfCerts_FindX509ByIssuerAndSerialNumber RT_MANGLER(RTCrPkcs7SetOfCerts_FindX509ByIssuerAndSerialNumber)
3110# define RTCrPkcs7SetOfContentInfos_CheckSanity RT_MANGLER(RTCrPkcs7SetOfContentInfos_CheckSanity)
3111# define RTCrPkcs7SetOfContentInfos_Clone RT_MANGLER(RTCrPkcs7SetOfContentInfos_Clone)
3112# define RTCrPkcs7SetOfContentInfos_Compare RT_MANGLER(RTCrPkcs7SetOfContentInfos_Compare)
3113# define RTCrPkcs7SetOfContentInfos_DecodeAsn1 RT_MANGLER(RTCrPkcs7SetOfContentInfos_DecodeAsn1)
3114# define RTCrPkcs7SetOfContentInfos_Delete RT_MANGLER(RTCrPkcs7SetOfContentInfos_Delete)
3115# define RTCrPkcs7SetOfContentInfos_Enum RT_MANGLER(RTCrPkcs7SetOfContentInfos_Enum)
3116# define RTCrPkcs7SetOfContentInfos_Init RT_MANGLER(RTCrPkcs7SetOfContentInfos_Init)
3117# define RTCrPkcs7SetOfSignedData_CheckSanity RT_MANGLER(RTCrPkcs7SetOfSignedData_CheckSanity)
3118# define RTCrPkcs7SetOfSignedData_Clone RT_MANGLER(RTCrPkcs7SetOfSignedData_Clone)
3119# define RTCrPkcs7SetOfSignedData_Compare RT_MANGLER(RTCrPkcs7SetOfSignedData_Compare)
3120# define RTCrPkcs7SetOfSignedData_DecodeAsn1 RT_MANGLER(RTCrPkcs7SetOfSignedData_DecodeAsn1)
3121# define RTCrPkcs7SetOfSignedData_Delete RT_MANGLER(RTCrPkcs7SetOfSignedData_Delete)
3122# define RTCrPkcs7SetOfSignedData_Enum RT_MANGLER(RTCrPkcs7SetOfSignedData_Enum)
3123# define RTCrPkcs7SetOfSignedData_Init RT_MANGLER(RTCrPkcs7SetOfSignedData_Init)
3124# define RTCrPkixSignatureCreateByObjId RT_MANGLER(RTCrPkixSignatureCreateByObjId)
3125# define RTCrPkixSignatureCreateByObjIdString RT_MANGLER(RTCrPkixSignatureCreateByObjIdString)
3126# define RTCrPkixSignatureCreate RT_MANGLER(RTCrPkixSignatureCreate)
3127# define RTCrPkixSignatureRelease RT_MANGLER(RTCrPkixSignatureRelease)
3128# define RTCrPkixSignatureRetain RT_MANGLER(RTCrPkixSignatureRetain)
3129# define RTCrPkixSignatureSign RT_MANGLER(RTCrPkixSignatureSign)
3130# define RTCrPkixSignatureVerify RT_MANGLER(RTCrPkixSignatureVerify)
3131# define RTCrPkixSignatureVerifyBitString RT_MANGLER(RTCrPkixSignatureVerifyBitString)
3132# define RTCrPkixSignatureVerifyOctetString RT_MANGLER(RTCrPkixSignatureVerifyOctetString)
3133# define RTCrPkixGetCiperOidFromSignatureAlgorithm RT_MANGLER(RTCrPkixGetCiperOidFromSignatureAlgorithm)
3134# define RTCrPkixPubKeyVerifySignature RT_MANGLER(RTCrPkixPubKeyVerifySignature)
3135# define RTCrPkixPubKeyVerifySignedDigest RT_MANGLER(RTCrPkixPubKeyVerifySignedDigest)
3136# define RTCrSpcAttributeTypeAndOptionalValue_DecodeAsn1 RT_MANGLER(RTCrSpcAttributeTypeAndOptionalValue_DecodeAsn1)
3137# define RTCrSpcIndirectDataContent_DecodeAsn1 RT_MANGLER(RTCrSpcIndirectDataContent_DecodeAsn1)
3138# define RTCrSpcLink_DecodeAsn1 RT_MANGLER(RTCrSpcLink_DecodeAsn1)
3139# define RTCrSpcPeImageData_DecodeAsn1 RT_MANGLER(RTCrSpcPeImageData_DecodeAsn1)
3140# define RTCrSpcSerializedObjectAttribute_DecodeAsn1 RT_MANGLER(RTCrSpcSerializedObjectAttribute_DecodeAsn1)
3141# define RTCrSpcSerializedObjectAttributes_DecodeAsn1 RT_MANGLER(RTCrSpcSerializedObjectAttributes_DecodeAsn1)
3142# define RTCrSpcSerializedObject_DecodeAsn1 RT_MANGLER(RTCrSpcSerializedObject_DecodeAsn1)
3143# define RTCrSpcSerializedPageHashes_DecodeAsn1 RT_MANGLER(RTCrSpcSerializedPageHashes_DecodeAsn1)
3144# define RTCrSpcString_DecodeAsn1 RT_MANGLER(RTCrSpcString_DecodeAsn1)
3145# define RTCrSpcAttributeTypeAndOptionalValue_Compare RT_MANGLER(RTCrSpcAttributeTypeAndOptionalValue_Compare)
3146# define RTCrSpcAttributeTypeAndOptionalValue_Delete RT_MANGLER(RTCrSpcAttributeTypeAndOptionalValue_Delete)
3147# define RTCrSpcAttributeTypeAndOptionalValue_Enum RT_MANGLER(RTCrSpcAttributeTypeAndOptionalValue_Enum)
3148# define RTCrSpcIndirectDataContent_Compare RT_MANGLER(RTCrSpcIndirectDataContent_Compare)
3149# define RTCrSpcIndirectDataContent_Delete RT_MANGLER(RTCrSpcIndirectDataContent_Delete)
3150# define RTCrSpcIndirectDataContent_Enum RT_MANGLER(RTCrSpcIndirectDataContent_Enum)
3151# define RTCrSpcIndirectDataContent_GetPeImageObjAttrib RT_MANGLER(RTCrSpcIndirectDataContent_GetPeImageObjAttrib)
3152# define RTCrSpcLink_Compare RT_MANGLER(RTCrSpcLink_Compare)
3153# define RTCrSpcLink_Delete RT_MANGLER(RTCrSpcLink_Delete)
3154# define RTCrSpcLink_Enum RT_MANGLER(RTCrSpcLink_Enum)
3155# define RTCrSpcPeImageData_Compare RT_MANGLER(RTCrSpcPeImageData_Compare)
3156# define RTCrSpcPeImageData_Delete RT_MANGLER(RTCrSpcPeImageData_Delete)
3157# define RTCrSpcPeImageData_Enum RT_MANGLER(RTCrSpcPeImageData_Enum)
3158# define RTCrSpcSerializedObjectAttribute_Compare RT_MANGLER(RTCrSpcSerializedObjectAttribute_Compare)
3159# define RTCrSpcSerializedObjectAttribute_Delete RT_MANGLER(RTCrSpcSerializedObjectAttribute_Delete)
3160# define RTCrSpcSerializedObjectAttribute_Enum RT_MANGLER(RTCrSpcSerializedObjectAttribute_Enum)
3161# define RTCrSpcSerializedObjectAttributes_Compare RT_MANGLER(RTCrSpcSerializedObjectAttributes_Compare)
3162# define RTCrSpcSerializedObjectAttributes_Delete RT_MANGLER(RTCrSpcSerializedObjectAttributes_Delete)
3163# define RTCrSpcSerializedObjectAttributes_Enum RT_MANGLER(RTCrSpcSerializedObjectAttributes_Enum)
3164# define RTCrSpcSerializedObject_Compare RT_MANGLER(RTCrSpcSerializedObject_Compare)
3165# define RTCrSpcSerializedObject_Delete RT_MANGLER(RTCrSpcSerializedObject_Delete)
3166# define RTCrSpcSerializedObject_Enum RT_MANGLER(RTCrSpcSerializedObject_Enum)
3167# define RTCrSpcSerializedPageHashes_Compare RT_MANGLER(RTCrSpcSerializedPageHashes_Compare)
3168# define RTCrSpcSerializedPageHashes_Delete RT_MANGLER(RTCrSpcSerializedPageHashes_Delete)
3169# define RTCrSpcSerializedPageHashes_Enum RT_MANGLER(RTCrSpcSerializedPageHashes_Enum)
3170# define RTCrSpcSerializedPageHashes_UpdateDerivedData RT_MANGLER(RTCrSpcSerializedPageHashes_UpdateDerivedData)
3171# define RTCrSpcString_Compare RT_MANGLER(RTCrSpcString_Compare)
3172# define RTCrSpcString_Delete RT_MANGLER(RTCrSpcString_Delete)
3173# define RTCrSpcString_Enum RT_MANGLER(RTCrSpcString_Enum)
3174# define RTCrSpcAttributeTypeAndOptionalValue_Clone RT_MANGLER(RTCrSpcAttributeTypeAndOptionalValue_Clone)
3175# define RTCrSpcAttributeTypeAndOptionalValue_Init RT_MANGLER(RTCrSpcAttributeTypeAndOptionalValue_Init)
3176# define RTCrSpcIndirectDataContent_Clone RT_MANGLER(RTCrSpcIndirectDataContent_Clone)
3177# define RTCrSpcIndirectDataContent_Init RT_MANGLER(RTCrSpcIndirectDataContent_Init)
3178# define RTCrSpcLink_Clone RT_MANGLER(RTCrSpcLink_Clone)
3179# define RTCrSpcLink_Init RT_MANGLER(RTCrSpcLink_Init)
3180# define RTCrSpcPeImageData_Clone RT_MANGLER(RTCrSpcPeImageData_Clone)
3181# define RTCrSpcPeImageData_Init RT_MANGLER(RTCrSpcPeImageData_Init)
3182# define RTCrSpcSerializedObjectAttribute_Clone RT_MANGLER(RTCrSpcSerializedObjectAttribute_Clone)
3183# define RTCrSpcSerializedObjectAttribute_Init RT_MANGLER(RTCrSpcSerializedObjectAttribute_Init)
3184# define RTCrSpcSerializedObjectAttributes_Clone RT_MANGLER(RTCrSpcSerializedObjectAttributes_Clone)
3185# define RTCrSpcSerializedObjectAttributes_Init RT_MANGLER(RTCrSpcSerializedObjectAttributes_Init)
3186# define RTCrSpcSerializedObject_Clone RT_MANGLER(RTCrSpcSerializedObject_Clone)
3187# define RTCrSpcSerializedObject_Init RT_MANGLER(RTCrSpcSerializedObject_Init)
3188# define RTCrSpcSerializedPageHashes_Clone RT_MANGLER(RTCrSpcSerializedPageHashes_Clone)
3189# define RTCrSpcSerializedPageHashes_Init RT_MANGLER(RTCrSpcSerializedPageHashes_Init)
3190# define RTCrSpcString_Clone RT_MANGLER(RTCrSpcString_Clone)
3191# define RTCrSpcString_Init RT_MANGLER(RTCrSpcString_Init)
3192# define RTCrSpcAttributeTypeAndOptionalValue_CheckSanity RT_MANGLER(RTCrSpcAttributeTypeAndOptionalValue_CheckSanity)
3193# define RTCrSpcIndirectDataContent_CheckSanity RT_MANGLER(RTCrSpcIndirectDataContent_CheckSanity)
3194# define RTCrSpcIndirectDataContent_CheckSanityEx RT_MANGLER(RTCrSpcIndirectDataContent_CheckSanityEx)
3195# define RTCrSpcLink_CheckSanity RT_MANGLER(RTCrSpcLink_CheckSanity)
3196# define RTCrSpcPeImageData_CheckSanity RT_MANGLER(RTCrSpcPeImageData_CheckSanity)
3197# define RTCrSpcSerializedObjectAttribute_CheckSanity RT_MANGLER(RTCrSpcSerializedObjectAttribute_CheckSanity)
3198# define RTCrSpcSerializedObjectAttributes_CheckSanity RT_MANGLER(RTCrSpcSerializedObjectAttributes_CheckSanity)
3199# define RTCrSpcSerializedObject_CheckSanity RT_MANGLER(RTCrSpcSerializedObject_CheckSanity)
3200# define RTCrSpcSerializedPageHashes_CheckSanity RT_MANGLER(RTCrSpcSerializedPageHashes_CheckSanity)
3201# define RTCrSpcString_CheckSanity RT_MANGLER(RTCrSpcString_CheckSanity)
3202# define RTCrX509AlgorithmIdentifier_DecodeAsn1 RT_MANGLER(RTCrX509AlgorithmIdentifier_DecodeAsn1)
3203# define RTCrX509AlgorithmIdentifiers_DecodeAsn1 RT_MANGLER(RTCrX509AlgorithmIdentifiers_DecodeAsn1)
3204# define RTCrX509AttributeTypeAndValue_DecodeAsn1 RT_MANGLER(RTCrX509AttributeTypeAndValue_DecodeAsn1)
3205# define RTCrX509AttributeTypeAndValues_DecodeAsn1 RT_MANGLER(RTCrX509AttributeTypeAndValues_DecodeAsn1)
3206# define RTCrX509AuthorityKeyIdentifier_DecodeAsn1 RT_MANGLER(RTCrX509AuthorityKeyIdentifier_DecodeAsn1)
3207# define RTCrX509BasicConstraints_DecodeAsn1 RT_MANGLER(RTCrX509BasicConstraints_DecodeAsn1)
3208# define RTCrX509CertificatePolicies_DecodeAsn1 RT_MANGLER(RTCrX509CertificatePolicies_DecodeAsn1)
3209# define RTCrX509Certificate_DecodeAsn1 RT_MANGLER(RTCrX509Certificate_DecodeAsn1)
3210# define RTCrX509Certificates_DecodeAsn1 RT_MANGLER(RTCrX509Certificates_DecodeAsn1)
3211# define RTCrX509Extension_DecodeAsn1 RT_MANGLER(RTCrX509Extension_DecodeAsn1)
3212# define RTCrX509Extension_ExtnValue_DecodeAsn1 RT_MANGLER(RTCrX509Extension_ExtnValue_DecodeAsn1)
3213# define RTCrX509Extensions_DecodeAsn1 RT_MANGLER(RTCrX509Extensions_DecodeAsn1)
3214# define RTCrX509GeneralName_DecodeAsn1 RT_MANGLER(RTCrX509GeneralName_DecodeAsn1)
3215# define RTCrX509GeneralNames_DecodeAsn1 RT_MANGLER(RTCrX509GeneralNames_DecodeAsn1)
3216# define RTCrX509GeneralSubtree_DecodeAsn1 RT_MANGLER(RTCrX509GeneralSubtree_DecodeAsn1)
3217# define RTCrX509GeneralSubtrees_DecodeAsn1 RT_MANGLER(RTCrX509GeneralSubtrees_DecodeAsn1)
3218# define RTCrX509NameConstraints_DecodeAsn1 RT_MANGLER(RTCrX509NameConstraints_DecodeAsn1)
3219# define RTCrX509Name_DecodeAsn1 RT_MANGLER(RTCrX509Name_DecodeAsn1)
3220# define RTCrX509OldAuthorityKeyIdentifier_DecodeAsn1 RT_MANGLER(RTCrX509OldAuthorityKeyIdentifier_DecodeAsn1)
3221# define RTCrX509OtherName_DecodeAsn1 RT_MANGLER(RTCrX509OtherName_DecodeAsn1)
3222# define RTCrX509PolicyConstraints_DecodeAsn1 RT_MANGLER(RTCrX509PolicyConstraints_DecodeAsn1)
3223# define RTCrX509PolicyInformation_DecodeAsn1 RT_MANGLER(RTCrX509PolicyInformation_DecodeAsn1)
3224# define RTCrX509PolicyMapping_DecodeAsn1 RT_MANGLER(RTCrX509PolicyMapping_DecodeAsn1)
3225# define RTCrX509PolicyMappings_DecodeAsn1 RT_MANGLER(RTCrX509PolicyMappings_DecodeAsn1)
3226# define RTCrX509PolicyQualifierInfo_DecodeAsn1 RT_MANGLER(RTCrX509PolicyQualifierInfo_DecodeAsn1)
3227# define RTCrX509PolicyQualifierInfos_DecodeAsn1 RT_MANGLER(RTCrX509PolicyQualifierInfos_DecodeAsn1)
3228# define RTCrX509SubjectPublicKeyInfo_DecodeAsn1 RT_MANGLER(RTCrX509SubjectPublicKeyInfo_DecodeAsn1)
3229# define RTCrX509TbsCertificate_DecodeAsn1 RT_MANGLER(RTCrX509TbsCertificate_DecodeAsn1)
3230# define RTCrX509Validity_DecodeAsn1 RT_MANGLER(RTCrX509Validity_DecodeAsn1)
3231# define RTCrX509CertPathsBuild RT_MANGLER(RTCrX509CertPathsBuild)
3232# define RTCrX509CertPathsCreate RT_MANGLER(RTCrX509CertPathsCreate)
3233# define RTCrX509CertPathsCreateEx RT_MANGLER(RTCrX509CertPathsCreateEx)
3234# define RTCrX509CertPathsDumpAll RT_MANGLER(RTCrX509CertPathsDumpAll)
3235# define RTCrX509CertPathsDumpOne RT_MANGLER(RTCrX509CertPathsDumpOne)
3236# define RTCrX509CertPathsGetPathCount RT_MANGLER(RTCrX509CertPathsGetPathCount)
3237# define RTCrX509CertPathsGetPathLength RT_MANGLER(RTCrX509CertPathsGetPathLength)
3238# define RTCrX509CertPathsGetPathNodeCert RT_MANGLER(RTCrX509CertPathsGetPathNodeCert)
3239# define RTCrX509CertPathsGetPathVerifyResult RT_MANGLER(RTCrX509CertPathsGetPathVerifyResult)
3240# define RTCrX509CertPathsQueryPathInfo RT_MANGLER(RTCrX509CertPathsQueryPathInfo)
3241# define RTCrX509CertPathsRelease RT_MANGLER(RTCrX509CertPathsRelease)
3242# define RTCrX509CertPathsRetain RT_MANGLER(RTCrX509CertPathsRetain)
3243# define RTCrX509CertPathsSetTrustedStore RT_MANGLER(RTCrX509CertPathsSetTrustedStore)
3244# define RTCrX509CertPathsSetUntrustedArray RT_MANGLER(RTCrX509CertPathsSetUntrustedArray)
3245# define RTCrX509CertPathsSetUntrustedSet RT_MANGLER(RTCrX509CertPathsSetUntrustedSet)
3246# define RTCrX509CertPathsSetUntrustedStore RT_MANGLER(RTCrX509CertPathsSetUntrustedStore)
3247# define RTCrX509CertPathsSetValidTime RT_MANGLER(RTCrX509CertPathsSetValidTime)
3248# define RTCrX509CertPathsSetValidTimeSpec RT_MANGLER(RTCrX509CertPathsSetValidTimeSpec)
3249# define RTCrX509CertPathsValidateAll RT_MANGLER(RTCrX509CertPathsValidateAll)
3250# define RTCrX509CertPathsValidateOne RT_MANGLER(RTCrX509CertPathsValidateOne)
3251# define RTCrX509AlgorithmIdentifier_CombineEncryptionAndDigest RT_MANGLER(RTCrX509AlgorithmIdentifier_CombineEncryptionAndDigest)
3252# define RTCrX509AlgorithmIdentifier_CombineEncryptionOidAndDigestOid RT_MANGLER(RTCrX509AlgorithmIdentifier_CombineEncryptionOidAndDigestOid)
3253# define RTCrX509AlgorithmIdentifier_Compare RT_MANGLER(RTCrX509AlgorithmIdentifier_Compare)
3254# define RTCrX509AlgorithmIdentifier_CompareDigestAndEncryptedDigest RT_MANGLER(RTCrX509AlgorithmIdentifier_CompareDigestAndEncryptedDigest)
3255# define RTCrX509AlgorithmIdentifier_CompareDigestOidAndEncryptedDigestOid RT_MANGLER(RTCrX509AlgorithmIdentifier_CompareDigestOidAndEncryptedDigestOid)
3256# define RTCrX509AlgorithmIdentifier_CompareWithString RT_MANGLER(RTCrX509AlgorithmIdentifier_CompareWithString)
3257# define RTCrX509AlgorithmIdentifier_Delete RT_MANGLER(RTCrX509AlgorithmIdentifier_Delete)
3258# define RTCrX509AlgorithmIdentifier_Enum RT_MANGLER(RTCrX509AlgorithmIdentifier_Enum)
3259# define RTCrX509AlgorithmIdentifier_QueryDigestSize RT_MANGLER(RTCrX509AlgorithmIdentifier_QueryDigestSize)
3260# define RTCrX509AlgorithmIdentifier_QueryDigestType RT_MANGLER(RTCrX509AlgorithmIdentifier_QueryDigestType)
3261# define RTCrX509AlgorithmIdentifiers_Compare RT_MANGLER(RTCrX509AlgorithmIdentifiers_Compare)
3262# define RTCrX509AlgorithmIdentifiers_Delete RT_MANGLER(RTCrX509AlgorithmIdentifiers_Delete)
3263# define RTCrX509AlgorithmIdentifiers_Enum RT_MANGLER(RTCrX509AlgorithmIdentifiers_Enum)
3264# define RTCrX509AttributeTypeAndValue_Compare RT_MANGLER(RTCrX509AttributeTypeAndValue_Compare)
3265# define RTCrX509AttributeTypeAndValue_Delete RT_MANGLER(RTCrX509AttributeTypeAndValue_Delete)
3266# define RTCrX509AttributeTypeAndValue_Enum RT_MANGLER(RTCrX509AttributeTypeAndValue_Enum)
3267# define RTCrX509AttributeTypeAndValues_Compare RT_MANGLER(RTCrX509AttributeTypeAndValues_Compare)
3268# define RTCrX509AttributeTypeAndValues_Delete RT_MANGLER(RTCrX509AttributeTypeAndValues_Delete)
3269# define RTCrX509AttributeTypeAndValues_Enum RT_MANGLER(RTCrX509AttributeTypeAndValues_Enum)
3270# define RTCrX509AuthorityKeyIdentifier_Compare RT_MANGLER(RTCrX509AuthorityKeyIdentifier_Compare)
3271# define RTCrX509AuthorityKeyIdentifier_Delete RT_MANGLER(RTCrX509AuthorityKeyIdentifier_Delete)
3272# define RTCrX509AuthorityKeyIdentifier_Enum RT_MANGLER(RTCrX509AuthorityKeyIdentifier_Enum)
3273# define RTCrX509BasicConstraints_Compare RT_MANGLER(RTCrX509BasicConstraints_Compare)
3274# define RTCrX509BasicConstraints_Delete RT_MANGLER(RTCrX509BasicConstraints_Delete)
3275# define RTCrX509BasicConstraints_Enum RT_MANGLER(RTCrX509BasicConstraints_Enum)
3276# define RTCrX509CertificatePolicies_Compare RT_MANGLER(RTCrX509CertificatePolicies_Compare)
3277# define RTCrX509CertificatePolicies_Delete RT_MANGLER(RTCrX509CertificatePolicies_Delete)
3278# define RTCrX509CertificatePolicies_Enum RT_MANGLER(RTCrX509CertificatePolicies_Enum)
3279# define RTCrX509Certificate_Compare RT_MANGLER(RTCrX509Certificate_Compare)
3280# define RTCrX509Certificate_Delete RT_MANGLER(RTCrX509Certificate_Delete)
3281# define RTCrX509Certificate_Enum RT_MANGLER(RTCrX509Certificate_Enum)
3282# define RTCrX509Certificate_IsSelfSigned RT_MANGLER(RTCrX509Certificate_IsSelfSigned)
3283# define RTCrX509Certificate_MatchIssuerAndSerialNumber RT_MANGLER(RTCrX509Certificate_MatchIssuerAndSerialNumber)
3284# define RTCrX509Certificate_MatchSubjectOrAltSubjectByRfc5280 RT_MANGLER(RTCrX509Certificate_MatchSubjectOrAltSubjectByRfc5280)
3285# define RTCrX509Certificates_Compare RT_MANGLER(RTCrX509Certificates_Compare)
3286# define RTCrX509Certificates_Delete RT_MANGLER(RTCrX509Certificates_Delete)
3287# define RTCrX509Certificates_Enum RT_MANGLER(RTCrX509Certificates_Enum)
3288# define RTCrX509Certificates_FindByIssuerAndSerialNumber RT_MANGLER(RTCrX509Certificates_FindByIssuerAndSerialNumber)
3289# define RTCrX509Extension_Compare RT_MANGLER(RTCrX509Extension_Compare)
3290# define RTCrX509Extension_Delete RT_MANGLER(RTCrX509Extension_Delete)
3291# define RTCrX509Extension_Enum RT_MANGLER(RTCrX509Extension_Enum)
3292# define RTCrX509Extensions_Compare RT_MANGLER(RTCrX509Extensions_Compare)
3293# define RTCrX509Extensions_Delete RT_MANGLER(RTCrX509Extensions_Delete)
3294# define RTCrX509Extensions_Enum RT_MANGLER(RTCrX509Extensions_Enum)
3295# define RTCrX509GeneralName_Compare RT_MANGLER(RTCrX509GeneralName_Compare)
3296# define RTCrX509GeneralName_ConstraintMatch RT_MANGLER(RTCrX509GeneralName_ConstraintMatch)
3297# define RTCrX509GeneralName_Delete RT_MANGLER(RTCrX509GeneralName_Delete)
3298# define RTCrX509GeneralName_Enum RT_MANGLER(RTCrX509GeneralName_Enum)
3299# define RTCrX509GeneralNames_Compare RT_MANGLER(RTCrX509GeneralNames_Compare)
3300# define RTCrX509GeneralNames_Delete RT_MANGLER(RTCrX509GeneralNames_Delete)
3301# define RTCrX509GeneralNames_Enum RT_MANGLER(RTCrX509GeneralNames_Enum)
3302# define RTCrX509GeneralSubtree_Compare RT_MANGLER(RTCrX509GeneralSubtree_Compare)
3303# define RTCrX509GeneralSubtree_ConstraintMatch RT_MANGLER(RTCrX509GeneralSubtree_ConstraintMatch)
3304# define RTCrX509GeneralSubtree_Delete RT_MANGLER(RTCrX509GeneralSubtree_Delete)
3305# define RTCrX509GeneralSubtree_Enum RT_MANGLER(RTCrX509GeneralSubtree_Enum)
3306# define RTCrX509GeneralSubtrees_Compare RT_MANGLER(RTCrX509GeneralSubtrees_Compare)
3307# define RTCrX509GeneralSubtrees_Delete RT_MANGLER(RTCrX509GeneralSubtrees_Delete)
3308# define RTCrX509GeneralSubtrees_Enum RT_MANGLER(RTCrX509GeneralSubtrees_Enum)
3309# define RTCrX509NameConstraints_Compare RT_MANGLER(RTCrX509NameConstraints_Compare)
3310# define RTCrX509NameConstraints_Delete RT_MANGLER(RTCrX509NameConstraints_Delete)
3311# define RTCrX509NameConstraints_Enum RT_MANGLER(RTCrX509NameConstraints_Enum)
3312# define RTCrX509Name_Compare RT_MANGLER(RTCrX509Name_Compare)
3313# define RTCrX509Name_ConstraintMatch RT_MANGLER(RTCrX509Name_ConstraintMatch)
3314# define RTCrX509Name_Delete RT_MANGLER(RTCrX509Name_Delete)
3315# define RTCrX509Name_Enum RT_MANGLER(RTCrX509Name_Enum)
3316# define RTCrX509Name_FormatAsString RT_MANGLER(RTCrX509Name_FormatAsString)
3317# define RTCrX509Name_MatchByRfc5280 RT_MANGLER(RTCrX509Name_MatchByRfc5280)
3318# define RTCrX509Name_MatchWithString RT_MANGLER(RTCrX509Name_MatchWithString)
3319# define RTCrX509Name_GetShortRdn RT_MANGLER(RTCrX509Name_GetShortRdn)
3320# define RTCrX509OldAuthorityKeyIdentifier_Compare RT_MANGLER(RTCrX509OldAuthorityKeyIdentifier_Compare)
3321# define RTCrX509OldAuthorityKeyIdentifier_Delete RT_MANGLER(RTCrX509OldAuthorityKeyIdentifier_Delete)
3322# define RTCrX509OldAuthorityKeyIdentifier_Enum RT_MANGLER(RTCrX509OldAuthorityKeyIdentifier_Enum)
3323# define RTCrX509OtherName_Compare RT_MANGLER(RTCrX509OtherName_Compare)
3324# define RTCrX509OtherName_Delete RT_MANGLER(RTCrX509OtherName_Delete)
3325# define RTCrX509OtherName_Enum RT_MANGLER(RTCrX509OtherName_Enum)
3326# define RTCrX509PolicyConstraints_Compare RT_MANGLER(RTCrX509PolicyConstraints_Compare)
3327# define RTCrX509PolicyConstraints_Delete RT_MANGLER(RTCrX509PolicyConstraints_Delete)
3328# define RTCrX509PolicyConstraints_Enum RT_MANGLER(RTCrX509PolicyConstraints_Enum)
3329# define RTCrX509PolicyInformation_Compare RT_MANGLER(RTCrX509PolicyInformation_Compare)
3330# define RTCrX509PolicyInformation_Delete RT_MANGLER(RTCrX509PolicyInformation_Delete)
3331# define RTCrX509PolicyInformation_Enum RT_MANGLER(RTCrX509PolicyInformation_Enum)
3332# define RTCrX509PolicyMapping_Compare RT_MANGLER(RTCrX509PolicyMapping_Compare)
3333# define RTCrX509PolicyMapping_Delete RT_MANGLER(RTCrX509PolicyMapping_Delete)
3334# define RTCrX509PolicyMapping_Enum RT_MANGLER(RTCrX509PolicyMapping_Enum)
3335# define RTCrX509PolicyMappings_Compare RT_MANGLER(RTCrX509PolicyMappings_Compare)
3336# define RTCrX509PolicyMappings_Delete RT_MANGLER(RTCrX509PolicyMappings_Delete)
3337# define RTCrX509PolicyMappings_Enum RT_MANGLER(RTCrX509PolicyMappings_Enum)
3338# define RTCrX509PolicyQualifierInfo_Compare RT_MANGLER(RTCrX509PolicyQualifierInfo_Compare)
3339# define RTCrX509PolicyQualifierInfo_Delete RT_MANGLER(RTCrX509PolicyQualifierInfo_Delete)
3340# define RTCrX509PolicyQualifierInfo_Enum RT_MANGLER(RTCrX509PolicyQualifierInfo_Enum)
3341# define RTCrX509PolicyQualifierInfos_Compare RT_MANGLER(RTCrX509PolicyQualifierInfos_Compare)
3342# define RTCrX509PolicyQualifierInfos_Delete RT_MANGLER(RTCrX509PolicyQualifierInfos_Delete)
3343# define RTCrX509PolicyQualifierInfos_Enum RT_MANGLER(RTCrX509PolicyQualifierInfos_Enum)
3344# define RTCrX509SubjectPublicKeyInfo_Compare RT_MANGLER(RTCrX509SubjectPublicKeyInfo_Compare)
3345# define RTCrX509SubjectPublicKeyInfo_Delete RT_MANGLER(RTCrX509SubjectPublicKeyInfo_Delete)
3346# define RTCrX509SubjectPublicKeyInfo_Enum RT_MANGLER(RTCrX509SubjectPublicKeyInfo_Enum)
3347# define RTCrX509TbsCertificate_Compare RT_MANGLER(RTCrX509TbsCertificate_Compare)
3348# define RTCrX509TbsCertificate_Delete RT_MANGLER(RTCrX509TbsCertificate_Delete)
3349# define RTCrX509TbsCertificate_Enum RT_MANGLER(RTCrX509TbsCertificate_Enum)
3350# define RTCrX509TbsCertificate_ReprocessExtensions RT_MANGLER(RTCrX509TbsCertificate_ReprocessExtensions)
3351# define RTCrX509Validity_Compare RT_MANGLER(RTCrX509Validity_Compare)
3352# define RTCrX509Validity_Delete RT_MANGLER(RTCrX509Validity_Delete)
3353# define RTCrX509Validity_Enum RT_MANGLER(RTCrX509Validity_Enum)
3354# define RTCrX509Validity_IsValidAtTimeSpec RT_MANGLER(RTCrX509Validity_IsValidAtTimeSpec)
3355# define RTCrX509Certificate_ReadFromFile RT_MANGLER(RTCrX509Certificate_ReadFromFile)
3356# define RTCrX509Certificate_ReadFromBuffer RT_MANGLER(RTCrX509Certificate_ReadFromBuffer)
3357# define RTCrX509AlgorithmIdentifier_Clone RT_MANGLER(RTCrX509AlgorithmIdentifier_Clone)
3358# define RTCrX509AlgorithmIdentifier_Init RT_MANGLER(RTCrX509AlgorithmIdentifier_Init)
3359# define RTCrX509AlgorithmIdentifiers_Clone RT_MANGLER(RTCrX509AlgorithmIdentifiers_Clone)
3360# define RTCrX509AlgorithmIdentifiers_Init RT_MANGLER(RTCrX509AlgorithmIdentifiers_Init)
3361# define RTCrX509AttributeTypeAndValue_Clone RT_MANGLER(RTCrX509AttributeTypeAndValue_Clone)
3362# define RTCrX509AttributeTypeAndValue_Init RT_MANGLER(RTCrX509AttributeTypeAndValue_Init)
3363# define RTCrX509AttributeTypeAndValues_Clone RT_MANGLER(RTCrX509AttributeTypeAndValues_Clone)
3364# define RTCrX509AttributeTypeAndValues_Init RT_MANGLER(RTCrX509AttributeTypeAndValues_Init)
3365# define RTCrX509AuthorityKeyIdentifier_Clone RT_MANGLER(RTCrX509AuthorityKeyIdentifier_Clone)
3366# define RTCrX509AuthorityKeyIdentifier_Init RT_MANGLER(RTCrX509AuthorityKeyIdentifier_Init)
3367# define RTCrX509BasicConstraints_Clone RT_MANGLER(RTCrX509BasicConstraints_Clone)
3368# define RTCrX509BasicConstraints_Init RT_MANGLER(RTCrX509BasicConstraints_Init)
3369# define RTCrX509CertificatePolicies_Clone RT_MANGLER(RTCrX509CertificatePolicies_Clone)
3370# define RTCrX509CertificatePolicies_Init RT_MANGLER(RTCrX509CertificatePolicies_Init)
3371# define RTCrX509Certificate_Clone RT_MANGLER(RTCrX509Certificate_Clone)
3372# define RTCrX509Certificate_Init RT_MANGLER(RTCrX509Certificate_Init)
3373# define RTCrX509Certificates_Clone RT_MANGLER(RTCrX509Certificates_Clone)
3374# define RTCrX509Certificates_Init RT_MANGLER(RTCrX509Certificates_Init)
3375# define RTCrX509Extension_Clone RT_MANGLER(RTCrX509Extension_Clone)
3376# define RTCrX509Extension_Init RT_MANGLER(RTCrX509Extension_Init)
3377# define RTCrX509Extensions_Clone RT_MANGLER(RTCrX509Extensions_Clone)
3378# define RTCrX509Extensions_Init RT_MANGLER(RTCrX509Extensions_Init)
3379# define RTCrX509GeneralName_Clone RT_MANGLER(RTCrX509GeneralName_Clone)
3380# define RTCrX509GeneralName_Init RT_MANGLER(RTCrX509GeneralName_Init)
3381# define RTCrX509GeneralNames_Clone RT_MANGLER(RTCrX509GeneralNames_Clone)
3382# define RTCrX509GeneralNames_Init RT_MANGLER(RTCrX509GeneralNames_Init)
3383# define RTCrX509GeneralSubtree_Clone RT_MANGLER(RTCrX509GeneralSubtree_Clone)
3384# define RTCrX509GeneralSubtree_Init RT_MANGLER(RTCrX509GeneralSubtree_Init)
3385# define RTCrX509GeneralSubtrees_Clone RT_MANGLER(RTCrX509GeneralSubtrees_Clone)
3386# define RTCrX509GeneralSubtrees_Init RT_MANGLER(RTCrX509GeneralSubtrees_Init)
3387# define RTCrX509NameConstraints_Clone RT_MANGLER(RTCrX509NameConstraints_Clone)
3388# define RTCrX509NameConstraints_Init RT_MANGLER(RTCrX509NameConstraints_Init)
3389# define RTCrX509Name_Clone RT_MANGLER(RTCrX509Name_Clone)
3390# define RTCrX509Name_Init RT_MANGLER(RTCrX509Name_Init)
3391# define RTCrX509Name_RecodeAsUtf8 RT_MANGLER(RTCrX509Name_RecodeAsUtf8)
3392# define RTCrX509OldAuthorityKeyIdentifier_Clone RT_MANGLER(RTCrX509OldAuthorityKeyIdentifier_Clone)
3393# define RTCrX509OldAuthorityKeyIdentifier_Init RT_MANGLER(RTCrX509OldAuthorityKeyIdentifier_Init)
3394# define RTCrX509OtherName_Clone RT_MANGLER(RTCrX509OtherName_Clone)
3395# define RTCrX509OtherName_Init RT_MANGLER(RTCrX509OtherName_Init)
3396# define RTCrX509PolicyConstraints_Clone RT_MANGLER(RTCrX509PolicyConstraints_Clone)
3397# define RTCrX509PolicyConstraints_Init RT_MANGLER(RTCrX509PolicyConstraints_Init)
3398# define RTCrX509PolicyInformation_Clone RT_MANGLER(RTCrX509PolicyInformation_Clone)
3399# define RTCrX509PolicyInformation_Init RT_MANGLER(RTCrX509PolicyInformation_Init)
3400# define RTCrX509PolicyMapping_Clone RT_MANGLER(RTCrX509PolicyMapping_Clone)
3401# define RTCrX509PolicyMapping_Init RT_MANGLER(RTCrX509PolicyMapping_Init)
3402# define RTCrX509PolicyMappings_Clone RT_MANGLER(RTCrX509PolicyMappings_Clone)
3403# define RTCrX509PolicyMappings_Init RT_MANGLER(RTCrX509PolicyMappings_Init)
3404# define RTCrX509PolicyQualifierInfo_Clone RT_MANGLER(RTCrX509PolicyQualifierInfo_Clone)
3405# define RTCrX509PolicyQualifierInfo_Init RT_MANGLER(RTCrX509PolicyQualifierInfo_Init)
3406# define RTCrX509PolicyQualifierInfos_Clone RT_MANGLER(RTCrX509PolicyQualifierInfos_Clone)
3407# define RTCrX509PolicyQualifierInfos_Init RT_MANGLER(RTCrX509PolicyQualifierInfos_Init)
3408# define RTCrX509SubjectPublicKeyInfo_Clone RT_MANGLER(RTCrX509SubjectPublicKeyInfo_Clone)
3409# define RTCrX509SubjectPublicKeyInfo_Init RT_MANGLER(RTCrX509SubjectPublicKeyInfo_Init)
3410# define RTCrX509TbsCertificate_Clone RT_MANGLER(RTCrX509TbsCertificate_Clone)
3411# define RTCrX509TbsCertificate_Init RT_MANGLER(RTCrX509TbsCertificate_Init)
3412# define RTCrX509Validity_Clone RT_MANGLER(RTCrX509Validity_Clone)
3413# define RTCrX509Validity_Init RT_MANGLER(RTCrX509Validity_Init)
3414# define RTCrX509AlgorithmIdentifier_CheckSanity RT_MANGLER(RTCrX509AlgorithmIdentifier_CheckSanity)
3415# define RTCrX509AlgorithmIdentifiers_CheckSanity RT_MANGLER(RTCrX509AlgorithmIdentifiers_CheckSanity)
3416# define RTCrX509AttributeTypeAndValue_CheckSanity RT_MANGLER(RTCrX509AttributeTypeAndValue_CheckSanity)
3417# define RTCrX509AttributeTypeAndValues_CheckSanity RT_MANGLER(RTCrX509AttributeTypeAndValues_CheckSanity)
3418# define RTCrX509AuthorityKeyIdentifier_CheckSanity RT_MANGLER(RTCrX509AuthorityKeyIdentifier_CheckSanity)
3419# define RTCrX509BasicConstraints_CheckSanity RT_MANGLER(RTCrX509BasicConstraints_CheckSanity)
3420# define RTCrX509CertificatePolicies_CheckSanity RT_MANGLER(RTCrX509CertificatePolicies_CheckSanity)
3421# define RTCrX509Certificate_CheckSanity RT_MANGLER(RTCrX509Certificate_CheckSanity)
3422# define RTCrX509Certificates_CheckSanity RT_MANGLER(RTCrX509Certificates_CheckSanity)
3423# define RTCrX509Extension_CheckSanity RT_MANGLER(RTCrX509Extension_CheckSanity)
3424# define RTCrX509Extensions_CheckSanity RT_MANGLER(RTCrX509Extensions_CheckSanity)
3425# define RTCrX509GeneralName_CheckSanity RT_MANGLER(RTCrX509GeneralName_CheckSanity)
3426# define RTCrX509GeneralNames_CheckSanity RT_MANGLER(RTCrX509GeneralNames_CheckSanity)
3427# define RTCrX509GeneralSubtree_CheckSanity RT_MANGLER(RTCrX509GeneralSubtree_CheckSanity)
3428# define RTCrX509GeneralSubtrees_CheckSanity RT_MANGLER(RTCrX509GeneralSubtrees_CheckSanity)
3429# define RTCrX509NameConstraints_CheckSanity RT_MANGLER(RTCrX509NameConstraints_CheckSanity)
3430# define RTCrX509Name_CheckSanity RT_MANGLER(RTCrX509Name_CheckSanity)
3431# define RTCrX509OldAuthorityKeyIdentifier_CheckSanity RT_MANGLER(RTCrX509OldAuthorityKeyIdentifier_CheckSanity)
3432# define RTCrX509OtherName_CheckSanity RT_MANGLER(RTCrX509OtherName_CheckSanity)
3433# define RTCrX509PolicyConstraints_CheckSanity RT_MANGLER(RTCrX509PolicyConstraints_CheckSanity)
3434# define RTCrX509PolicyInformation_CheckSanity RT_MANGLER(RTCrX509PolicyInformation_CheckSanity)
3435# define RTCrX509PolicyMapping_CheckSanity RT_MANGLER(RTCrX509PolicyMapping_CheckSanity)
3436# define RTCrX509PolicyMappings_CheckSanity RT_MANGLER(RTCrX509PolicyMappings_CheckSanity)
3437# define RTCrX509PolicyQualifierInfo_CheckSanity RT_MANGLER(RTCrX509PolicyQualifierInfo_CheckSanity)
3438# define RTCrX509PolicyQualifierInfos_CheckSanity RT_MANGLER(RTCrX509PolicyQualifierInfos_CheckSanity)
3439# define RTCrX509SubjectPublicKeyInfo_CheckSanity RT_MANGLER(RTCrX509SubjectPublicKeyInfo_CheckSanity)
3440# define RTCrX509TbsCertificate_CheckSanity RT_MANGLER(RTCrX509TbsCertificate_CheckSanity)
3441# define RTCrX509Validity_CheckSanity RT_MANGLER(RTCrX509Validity_CheckSanity)
3442# define RTCrX509Certificate_VerifySignature RT_MANGLER(RTCrX509Certificate_VerifySignature)
3443# define RTCrX509Certificate_VerifySignatureSelfSigned RT_MANGLER(RTCrX509Certificate_VerifySignatureSelfSigned)
3444# define RTCrTafCertPathControls_DecodeAsn1 RT_MANGLER(RTCrTafCertPathControls_DecodeAsn1)
3445# define RTCrTafTrustAnchorChoice_DecodeAsn1 RT_MANGLER(RTCrTafTrustAnchorChoice_DecodeAsn1)
3446# define RTCrTafTrustAnchorInfo_DecodeAsn1 RT_MANGLER(RTCrTafTrustAnchorInfo_DecodeAsn1)
3447# define RTCrTafTrustAnchorList_DecodeAsn1 RT_MANGLER(RTCrTafTrustAnchorList_DecodeAsn1)
3448# define RTCrTafCertPathControls_Compare RT_MANGLER(RTCrTafCertPathControls_Compare)
3449# define RTCrTafCertPathControls_Delete RT_MANGLER(RTCrTafCertPathControls_Delete)
3450# define RTCrTafCertPathControls_Enum RT_MANGLER(RTCrTafCertPathControls_Enum)
3451# define RTCrTafTrustAnchorChoice_Compare RT_MANGLER(RTCrTafTrustAnchorChoice_Compare)
3452# define RTCrTafTrustAnchorChoice_Delete RT_MANGLER(RTCrTafTrustAnchorChoice_Delete)
3453# define RTCrTafTrustAnchorChoice_Enum RT_MANGLER(RTCrTafTrustAnchorChoice_Enum)
3454# define RTCrTafTrustAnchorInfo_Compare RT_MANGLER(RTCrTafTrustAnchorInfo_Compare)
3455# define RTCrTafTrustAnchorInfo_Delete RT_MANGLER(RTCrTafTrustAnchorInfo_Delete)
3456# define RTCrTafTrustAnchorInfo_Enum RT_MANGLER(RTCrTafTrustAnchorInfo_Enum)
3457# define RTCrTafTrustAnchorList_Compare RT_MANGLER(RTCrTafTrustAnchorList_Compare)
3458# define RTCrTafTrustAnchorList_Delete RT_MANGLER(RTCrTafTrustAnchorList_Delete)
3459# define RTCrTafTrustAnchorList_Enum RT_MANGLER(RTCrTafTrustAnchorList_Enum)
3460# define RTCrTafCertPathControls_Clone RT_MANGLER(RTCrTafCertPathControls_Clone)
3461# define RTCrTafCertPathControls_Init RT_MANGLER(RTCrTafCertPathControls_Init)
3462# define RTCrTafTrustAnchorChoice_Clone RT_MANGLER(RTCrTafTrustAnchorChoice_Clone)
3463# define RTCrTafTrustAnchorChoice_Init RT_MANGLER(RTCrTafTrustAnchorChoice_Init)
3464# define RTCrTafTrustAnchorInfo_Clone RT_MANGLER(RTCrTafTrustAnchorInfo_Clone)
3465# define RTCrTafTrustAnchorInfo_Init RT_MANGLER(RTCrTafTrustAnchorInfo_Init)
3466# define RTCrTafTrustAnchorList_Clone RT_MANGLER(RTCrTafTrustAnchorList_Clone)
3467# define RTCrTafTrustAnchorList_Init RT_MANGLER(RTCrTafTrustAnchorList_Init)
3468# define RTCrTafCertPathControls_CheckSanity RT_MANGLER(RTCrTafCertPathControls_CheckSanity)
3469# define RTCrTafTrustAnchorChoice_CheckSanity RT_MANGLER(RTCrTafTrustAnchorChoice_CheckSanity)
3470# define RTCrTafTrustAnchorInfo_CheckSanity RT_MANGLER(RTCrTafTrustAnchorInfo_CheckSanity)
3471# define RTCrTafTrustAnchorList_CheckSanity RT_MANGLER(RTCrTafTrustAnchorList_CheckSanity)
3472# define RTCrTspAccuracy_CheckSanity RT_MANGLER(RTCrTspAccuracy_CheckSanity)
3473# define RTCrTspAccuracy_Clone RT_MANGLER(RTCrTspAccuracy_Clone)
3474# define RTCrTspAccuracy_Compare RT_MANGLER(RTCrTspAccuracy_Compare)
3475# define RTCrTspAccuracy_DecodeAsn1 RT_MANGLER(RTCrTspAccuracy_DecodeAsn1)
3476# define RTCrTspAccuracy_Delete RT_MANGLER(RTCrTspAccuracy_Delete)
3477# define RTCrTspAccuracy_Enum RT_MANGLER(RTCrTspAccuracy_Enum)
3478# define RTCrTspAccuracy_Init RT_MANGLER(RTCrTspAccuracy_Init)
3479# define RTCrTspMessageImprint_CheckSanity RT_MANGLER(RTCrTspMessageImprint_CheckSanity)
3480# define RTCrTspMessageImprint_Clone RT_MANGLER(RTCrTspMessageImprint_Clone)
3481# define RTCrTspMessageImprint_Compare RT_MANGLER(RTCrTspMessageImprint_Compare)
3482# define RTCrTspMessageImprint_DecodeAsn1 RT_MANGLER(RTCrTspMessageImprint_DecodeAsn1)
3483# define RTCrTspMessageImprint_Delete RT_MANGLER(RTCrTspMessageImprint_Delete)
3484# define RTCrTspMessageImprint_Enum RT_MANGLER(RTCrTspMessageImprint_Enum)
3485# define RTCrTspMessageImprint_Init RT_MANGLER(RTCrTspMessageImprint_Init)
3486# define RTCrTspTstInfo_CheckSanity RT_MANGLER(RTCrTspTstInfo_CheckSanity)
3487# define RTCrTspTstInfo_Clone RT_MANGLER(RTCrTspTstInfo_Clone)
3488# define RTCrTspTstInfo_Compare RT_MANGLER(RTCrTspTstInfo_Compare)
3489# define RTCrTspTstInfo_DecodeAsn1 RT_MANGLER(RTCrTspTstInfo_DecodeAsn1)
3490# define RTCrTspTstInfo_Delete RT_MANGLER(RTCrTspTstInfo_Delete)
3491# define RTCrTspTstInfo_Enum RT_MANGLER(RTCrTspTstInfo_Enum)
3492# define RTCrTspTstInfo_Init RT_MANGLER(RTCrTspTstInfo_Init)
3493# define RTCrCertCtxRelease RT_MANGLER(RTCrCertCtxRelease)
3494# define RTCrCertCtxRetain RT_MANGLER(RTCrCertCtxRetain)
3495# define RTCrStoreCertAddEncoded RT_MANGLER(RTCrStoreCertAddEncoded)
3496# define RTCrStoreCertByIssuerAndSerialNo RT_MANGLER(RTCrStoreCertByIssuerAndSerialNo)
3497# define RTCrStoreCertCount RT_MANGLER(RTCrStoreCertCount)
3498# define RTCrStoreCertFindAll RT_MANGLER(RTCrStoreCertFindAll)
3499# define RTCrStoreCertFindBySubjectOrAltSubjectByRfc5280 RT_MANGLER(RTCrStoreCertFindBySubjectOrAltSubjectByRfc5280)
3500# define RTCrStoreCertSearchDestroy RT_MANGLER(RTCrStoreCertSearchDestroy)
3501# define RTCrStoreCertSearchNext RT_MANGLER(RTCrStoreCertSearchNext)
3502# define RTCrStoreConvertToOpenSslCertStack RT_MANGLER(RTCrStoreConvertToOpenSslCertStack)
3503# define RTCrStoreConvertToOpenSslCertStore RT_MANGLER(RTCrStoreConvertToOpenSslCertStore)
3504# define RTCrStoreRelease RT_MANGLER(RTCrStoreRelease)
3505# define RTCrStoreRetain RT_MANGLER(RTCrStoreRetain)
3506# define RTCrStoreCreateInMem RT_MANGLER(RTCrStoreCreateInMem)
3507# define RTCrStoreCreateSnapshotById RT_MANGLER(RTCrStoreCreateSnapshotById)
3508# define RTCrStoreCreateSnapshotOfUserAndSystemTrustedCAsAndCerts RT_MANGLER(RTCrStoreCreateSnapshotOfUserAndSystemTrustedCAsAndCerts)
3509# define RTCrStoreCertAddFromDir RT_MANGLER(RTCrStoreCertAddFromDir)
3510# define RTCrStoreCertAddFromFile RT_MANGLER(RTCrStoreCertAddFromFile)
3511# define RTCrStoreCertAddFromJavaKeyStore RT_MANGLER(RTCrStoreCertAddFromJavaKeyStore)
3512# define RTCrStoreCertAddFromJavaKeyStoreInMem RT_MANGLER(RTCrStoreCertAddFromJavaKeyStoreInMem)
3513# define RTCrStoreCertAddFromStore RT_MANGLER(RTCrStoreCertAddFromStore)
3514# define RTCrStoreCertAddWantedFromDir RT_MANGLER(RTCrStoreCertAddWantedFromDir)
3515# define RTCrStoreCertAddWantedFromFile RT_MANGLER(RTCrStoreCertAddWantedFromFile)
3516# define RTCrStoreCertAddWantedFromStore RT_MANGLER(RTCrStoreCertAddWantedFromStore)
3517# define RTCrStoreCertAddWantedFromFishingExpedition RT_MANGLER(RTCrStoreCertAddWantedFromFishingExpedition)
3518# define RTCrStoreCertCheckWanted RT_MANGLER(RTCrStoreCertCheckWanted)
3519# define RTCrStoreCertExportAsPem RT_MANGLER(RTCrStoreCertExportAsPem)
3520# define RTErrInfoAdd RT_MANGLER(RTErrInfoAdd)
3521# define RTErrInfoAddF RT_MANGLER(RTErrInfoAddF)
3522# define RTErrInfoAddV RT_MANGLER(RTErrInfoAddV)
3523# define RTLdrHashImage RT_MANGLER(RTLdrHashImage)
3524# define RTLdrOpenWithReader RT_MANGLER(RTLdrOpenWithReader)
3525# define RTLdrQueryPropEx RT_MANGLER(RTLdrQueryPropEx)
3526# define RTLdrVerifySignature RT_MANGLER(RTLdrVerifySignature)
3527# define RTBigNumAdd RT_MANGLER(RTBigNumAdd)
3528# define RTBigNumAssign RT_MANGLER(RTBigNumAssign)
3529# define RTBigNumBitWidth RT_MANGLER(RTBigNumBitWidth)
3530# define RTBigNumByteWidth RT_MANGLER(RTBigNumByteWidth)
3531# define RTBigNumClone RT_MANGLER(RTBigNumClone)
3532# define RTBigNumCompare RT_MANGLER(RTBigNumCompare)
3533# define RTBigNumCompareWithS64 RT_MANGLER(RTBigNumCompareWithS64)
3534# define RTBigNumCompareWithU64 RT_MANGLER(RTBigNumCompareWithU64)
3535# define RTBigNumDestroy RT_MANGLER(RTBigNumDestroy)
3536# define RTBigNumDivide RT_MANGLER(RTBigNumDivide)
3537# define RTBigNumDivideKnuth RT_MANGLER(RTBigNumDivideKnuth)
3538# define RTBigNumDivideLong RT_MANGLER(RTBigNumDivideLong)
3539# define RTBigNumExponentiate RT_MANGLER(RTBigNumExponentiate)
3540# define RTBigNumInit RT_MANGLER(RTBigNumInit)
3541# define RTBigNumInitZero RT_MANGLER(RTBigNumInitZero)
3542# define RTBigNumModExp RT_MANGLER(RTBigNumModExp)
3543# define RTBigNumModulo RT_MANGLER(RTBigNumModulo)
3544# define RTBigNumMultiply RT_MANGLER(RTBigNumMultiply)
3545# define RTBigNumNegate RT_MANGLER(RTBigNumNegate)
3546# define RTBigNumNegateThis RT_MANGLER(RTBigNumNegateThis)
3547# define RTBigNumShiftLeft RT_MANGLER(RTBigNumShiftLeft)
3548# define RTBigNumShiftRight RT_MANGLER(RTBigNumShiftRight)
3549# define RTBigNumSubtract RT_MANGLER(RTBigNumSubtract)
3550# define RTBigNumToBytesBigEndian RT_MANGLER(RTBigNumToBytesBigEndian)
3551# define RTUInt128MulByU64 RT_MANGLER(RTUInt128MulByU64)
3552# define RTUInt128MulByU64_EndProc RT_MANGLER(RTUInt128MulByU64_EndProc)
3553# define RTUtf16Copy RT_MANGLER(RTUtf16Copy)
3554# define RTUtf16CopyAscii RT_MANGLER(RTUtf16CopyAscii)
3555# define RTUtf16Cat RT_MANGLER(RTUtf16Cat)
3556# define RTUtf16CatAscii RT_MANGLER(RTUtf16CatAscii)
3557# define RTUtf16End RT_MANGLER(RTUtf16End)
3558# define RTUtf16ICmpAscii RT_MANGLER(RTUtf16ICmpAscii)
3559# define RTUtf16NICmpAscii RT_MANGLER(RTUtf16NICmpAscii)
3560# define RTUtf16NLen RT_MANGLER(RTUtf16NLen)
3561# define RTUtf16NLenEx RT_MANGLER(RTUtf16NLenEx)
3562# define RTUtf16PrintHexBytes RT_MANGLER(RTUtf16PrintHexBytes)
3563# define RTMemSaferAllocZExTag RT_MANGLER(RTMemSaferAllocZExTag)
3564# define RTMemSaferAllocZTag RT_MANGLER(RTMemSaferAllocZTag)
3565# define RTMemSaferFree RT_MANGLER(RTMemSaferFree)
3566# define RTMemSaferReallocZExTag RT_MANGLER(RTMemSaferReallocZExTag)
3567# define RTMemSaferReallocZTag RT_MANGLER(RTMemSaferReallocZTag)
3568# define RTMemSaferScramble RT_MANGLER(RTMemSaferScramble)
3569# define RTMemSaferUnscramble RT_MANGLER(RTMemSaferUnscramble)
3570# define RTErrConvertFromDarwin RT_MANGLER(RTErrConvertFromDarwin)
3571# define RTErrConvertFromDarwinCOM RT_MANGLER(RTErrConvertFromDarwinCOM)
3572# define RTErrConvertFromDarwinIO RT_MANGLER(RTErrConvertFromDarwinIO)
3573# define RTErrConvertFromDarwinKern RT_MANGLER(RTErrConvertFromDarwinKern)
3574# define RTErrConvertFromDarwin RT_MANGLER(RTErrConvertFromDarwin)
3575# define RTErrConvertFromDarwinIO RT_MANGLER(RTErrConvertFromDarwinIO)
3576# define RTErrConvertFromDarwinKern RT_MANGLER(RTErrConvertFromDarwinKern)
3577
3578# define RTAsn1SeqOfBitStrings_Erase RT_MANGLER(RTAsn1SeqOfBitStrings_Erase)
3579# define RTAsn1SeqOfBitStrings_InsertEx RT_MANGLER(RTAsn1SeqOfBitStrings_InsertEx)
3580# define RTAsn1SeqOfBooleans_Erase RT_MANGLER(RTAsn1SeqOfBooleans_Erase)
3581# define RTAsn1SeqOfBooleans_InsertEx RT_MANGLER(RTAsn1SeqOfBooleans_InsertEx)
3582# define RTAsn1SeqOfCores_Erase RT_MANGLER(RTAsn1SeqOfCores_Erase)
3583# define RTAsn1SeqOfCores_InsertEx RT_MANGLER(RTAsn1SeqOfCores_InsertEx)
3584# define RTAsn1SeqOfIntegers_Erase RT_MANGLER(RTAsn1SeqOfIntegers_Erase)
3585# define RTAsn1SeqOfIntegers_InsertEx RT_MANGLER(RTAsn1SeqOfIntegers_InsertEx)
3586# define RTAsn1SeqOfObjIds_Erase RT_MANGLER(RTAsn1SeqOfObjIds_Erase)
3587# define RTAsn1SeqOfObjIds_InsertEx RT_MANGLER(RTAsn1SeqOfObjIds_InsertEx)
3588# define RTAsn1SeqOfOctetStrings_Erase RT_MANGLER(RTAsn1SeqOfOctetStrings_Erase)
3589# define RTAsn1SeqOfOctetStrings_InsertEx RT_MANGLER(RTAsn1SeqOfOctetStrings_InsertEx)
3590# define RTAsn1SeqOfStrings_Erase RT_MANGLER(RTAsn1SeqOfStrings_Erase)
3591# define RTAsn1SeqOfStrings_InsertEx RT_MANGLER(RTAsn1SeqOfStrings_InsertEx)
3592# define RTAsn1SeqOfTimes_Erase RT_MANGLER(RTAsn1SeqOfTimes_Erase)
3593# define RTAsn1SeqOfTimes_InsertEx RT_MANGLER(RTAsn1SeqOfTimes_InsertEx)
3594# define RTAsn1SetOfBitStrings_Erase RT_MANGLER(RTAsn1SetOfBitStrings_Erase)
3595# define RTAsn1SetOfBitStrings_InsertEx RT_MANGLER(RTAsn1SetOfBitStrings_InsertEx)
3596# define RTAsn1SetOfBooleans_Erase RT_MANGLER(RTAsn1SetOfBooleans_Erase)
3597# define RTAsn1SetOfBooleans_InsertEx RT_MANGLER(RTAsn1SetOfBooleans_InsertEx)
3598# define RTAsn1SetOfCores_Erase RT_MANGLER(RTAsn1SetOfCores_Erase)
3599# define RTAsn1SetOfCores_InsertEx RT_MANGLER(RTAsn1SetOfCores_InsertEx)
3600# define RTAsn1SetOfIntegers_Erase RT_MANGLER(RTAsn1SetOfIntegers_Erase)
3601# define RTAsn1SetOfIntegers_InsertEx RT_MANGLER(RTAsn1SetOfIntegers_InsertEx)
3602# define RTAsn1SetOfObjIds_Erase RT_MANGLER(RTAsn1SetOfObjIds_Erase)
3603# define RTAsn1SetOfObjIds_InsertEx RT_MANGLER(RTAsn1SetOfObjIds_InsertEx)
3604# define RTAsn1SetOfObjIdSeqs_Erase RT_MANGLER(RTAsn1SetOfObjIdSeqs_Erase)
3605# define RTAsn1SetOfObjIdSeqs_InsertEx RT_MANGLER(RTAsn1SetOfObjIdSeqs_InsertEx)
3606# define RTAsn1SetOfOctetStrings_Erase RT_MANGLER(RTAsn1SetOfOctetStrings_Erase)
3607# define RTAsn1SetOfOctetStrings_InsertEx RT_MANGLER(RTAsn1SetOfOctetStrings_InsertEx)
3608# define RTAsn1SetOfStrings_Erase RT_MANGLER(RTAsn1SetOfStrings_Erase)
3609# define RTAsn1SetOfStrings_InsertEx RT_MANGLER(RTAsn1SetOfStrings_InsertEx)
3610# define RTAsn1SetOfTimes_Erase RT_MANGLER(RTAsn1SetOfTimes_Erase)
3611# define RTAsn1SetOfTimes_InsertEx RT_MANGLER(RTAsn1SetOfTimes_InsertEx)
3612# define RTCrPkcs7Attributes_Erase RT_MANGLER(RTCrPkcs7Attributes_Erase)
3613# define RTCrPkcs7Attributes_InsertEx RT_MANGLER(RTCrPkcs7Attributes_InsertEx)
3614# define RTCrPkcs7SetOfCerts_Erase RT_MANGLER(RTCrPkcs7SetOfCerts_Erase)
3615# define RTCrPkcs7SetOfCerts_InsertEx RT_MANGLER(RTCrPkcs7SetOfCerts_InsertEx)
3616# define RTCrPkcs7SetOfContentInfos_Erase RT_MANGLER(RTCrPkcs7SetOfContentInfos_Erase)
3617# define RTCrPkcs7SetOfContentInfos_InsertEx RT_MANGLER(RTCrPkcs7SetOfContentInfos_InsertEx)
3618# define RTCrPkcs7SetOfSignedData_Erase RT_MANGLER(RTCrPkcs7SetOfSignedData_Erase)
3619# define RTCrPkcs7SetOfSignedData_InsertEx RT_MANGLER(RTCrPkcs7SetOfSignedData_InsertEx)
3620# define RTCrPkcs7SignerInfos_Erase RT_MANGLER(RTCrPkcs7SignerInfos_Erase)
3621# define RTCrPkcs7SignerInfos_InsertEx RT_MANGLER(RTCrPkcs7SignerInfos_InsertEx)
3622# define RTCrRsaOtherPrimeInfos_Erase RT_MANGLER(RTCrRsaOtherPrimeInfos_Erase)
3623# define RTCrRsaOtherPrimeInfos_InsertEx RT_MANGLER(RTCrRsaOtherPrimeInfos_InsertEx)
3624# define RTCrSpcSerializedObjectAttributes_Erase RT_MANGLER(RTCrSpcSerializedObjectAttributes_Erase)
3625# define RTCrSpcSerializedObjectAttributes_InsertEx RT_MANGLER(RTCrSpcSerializedObjectAttributes_InsertEx)
3626# define RTCrTafTrustAnchorList_Erase RT_MANGLER(RTCrTafTrustAnchorList_Erase)
3627# define RTCrTafTrustAnchorList_InsertEx RT_MANGLER(RTCrTafTrustAnchorList_InsertEx)
3628# define RTCrX509AlgorithmIdentifiers_Erase RT_MANGLER(RTCrX509AlgorithmIdentifiers_Erase)
3629# define RTCrX509AlgorithmIdentifiers_InsertEx RT_MANGLER(RTCrX509AlgorithmIdentifiers_InsertEx)
3630# define RTCrX509AttributeTypeAndValues_Erase RT_MANGLER(RTCrX509AttributeTypeAndValues_Erase)
3631# define RTCrX509AttributeTypeAndValues_InsertEx RT_MANGLER(RTCrX509AttributeTypeAndValues_InsertEx)
3632# define RTCrX509CertificatePolicies_Erase RT_MANGLER(RTCrX509CertificatePolicies_Erase)
3633# define RTCrX509CertificatePolicies_InsertEx RT_MANGLER(RTCrX509CertificatePolicies_InsertEx)
3634# define RTCrX509Certificates_Erase RT_MANGLER(RTCrX509Certificates_Erase)
3635# define RTCrX509Certificates_InsertEx RT_MANGLER(RTCrX509Certificates_InsertEx)
3636# define RTCrX509Extensions_Erase RT_MANGLER(RTCrX509Extensions_Erase)
3637# define RTCrX509Extensions_InsertEx RT_MANGLER(RTCrX509Extensions_InsertEx)
3638# define RTCrX509GeneralNames_Erase RT_MANGLER(RTCrX509GeneralNames_Erase)
3639# define RTCrX509GeneralNames_InsertEx RT_MANGLER(RTCrX509GeneralNames_InsertEx)
3640# define RTCrX509GeneralSubtrees_Erase RT_MANGLER(RTCrX509GeneralSubtrees_Erase)
3641# define RTCrX509GeneralSubtrees_InsertEx RT_MANGLER(RTCrX509GeneralSubtrees_InsertEx)
3642# define RTCrX509Name_Erase RT_MANGLER(RTCrX509Name_Erase)
3643# define RTCrX509Name_InsertEx RT_MANGLER(RTCrX509Name_InsertEx)
3644# define RTCrX509PolicyMappings_Erase RT_MANGLER(RTCrX509PolicyMappings_Erase)
3645# define RTCrX509PolicyMappings_InsertEx RT_MANGLER(RTCrX509PolicyMappings_InsertEx)
3646# define RTCrX509PolicyQualifierInfos_Erase RT_MANGLER(RTCrX509PolicyQualifierInfos_Erase)
3647# define RTCrX509PolicyQualifierInfos_InsertEx RT_MANGLER(RTCrX509PolicyQualifierInfos_InsertEx)
3648
3649
3650/*
3651 * Stable variables (alphabetical order):
3652 */
3653# define g_apfnRTZlibDeps RT_MANGLER(g_apfnRTZlibDeps) /* os2 win solaris */
3654# define g_aRTUniFlagsRanges RT_MANGLER(g_aRTUniFlagsRanges)
3655# define g_aRTUniLowerRanges RT_MANGLER(g_aRTUniLowerRanges)
3656# define g_aRTUniUpperRanges RT_MANGLER(g_aRTUniUpperRanges)
3657# define g_fRTAlignmentChecks RT_MANGLER(g_fRTAlignmentChecks)
3658# define g_hKrnlDbgInfo RT_MANGLER(g_hKrnlDbgInfo) /* solaris */
3659# define g_pStdErr RT_MANGLER(g_pStdErr)
3660# define g_pStdIn RT_MANGLER(g_pStdIn)
3661# define g_pStdOut RT_MANGLER(g_pStdOut)
3662# define g_pszRTAssertExpr RT_MANGLER(g_pszRTAssertExpr)
3663# define g_pszRTAssertFile RT_MANGLER(g_pszRTAssertFile)
3664# define g_pszRTAssertFunction RT_MANGLER(g_pszRTAssertFunction)
3665# define g_szRTAssertMsg1 RT_MANGLER(g_szRTAssertMsg1)
3666# define g_szRTAssertMsg2 RT_MANGLER(g_szRTAssertMsg2)
3667# define g_u32RTAssertLine RT_MANGLER(g_u32RTAssertLine)
3668
3669/* sort/merge into the above later: */
3670# define g_RTAsn1Time_Vtable RT_MANGLER(g_RTAsn1Time_Vtable)
3671# define g_RTAsn1String_Vtable RT_MANGLER(g_RTAsn1String_Vtable)
3672# define g_RTAsn1OctetString_Vtable RT_MANGLER(g_RTAsn1OctetString_Vtable)
3673# define g_RTAsn1ObjId_Vtable RT_MANGLER(g_RTAsn1ObjId_Vtable)
3674# define g_RTAsn1Null_Vtable RT_MANGLER(g_RTAsn1Null_Vtable)
3675# define g_RTAsn1Integer_Vtable RT_MANGLER(g_RTAsn1Integer_Vtable)
3676# define g_RTAsn1Core_Vtable RT_MANGLER(g_RTAsn1Core_Vtable)
3677# define g_RTAsn1Boolean_Vtable RT_MANGLER(g_RTAsn1Boolean_Vtable)
3678# define g_RTAsn1BitString_Vtable RT_MANGLER(g_RTAsn1BitString_Vtable)
3679# define g_RTAsn1DefaultAllocator RT_MANGLER(g_RTAsn1DefaultAllocator)
3680# define g_RTAsn1EFenceAllocator RT_MANGLER(g_RTAsn1EFenceAllocator)
3681# define g_aRTCrX509CertificateMarkers RT_MANGLER(g_aRTCrX509CertificateMarkers)
3682# define g_cRTCrX509CertificateMarkers RT_MANGLER(g_cRTCrX509CertificateMarkers)
3683
3684#if 0 /* Disabled for now as I'm not sure the assmbler supports mangling yet. */
3685# define g_abRTZeroPage RT_MANGLER(g_abRTZeroPage)
3686# define g_abRTZero4K RT_MANGLER(g_abRTZero4K)
3687# define g_abRTZero8K RT_MANGLER(g_abRTZero8K)
3688# define g_abRTZero16K RT_MANGLER(g_abRTZero16K)
3689# define g_abRTZero32K RT_MANGLER(g_abRTZero32K)
3690# define g_abRTZero64K RT_MANGLER(g_abRTZero64K)
3691#endif
3692
3693
3694/*
3695 * Unstable functions (alphabetical order):
3696 */
3697/** @todo the list is incomplete! See the .def files + libraries. */
3698
3699
3700/*
3701 * Unstable variables (alphabetical order):
3702 */
3703/* none */
3704
3705#endif /* !DOXYGEN_RUNNING */
3706
3707#endif
3708