VirtualBox

source: vbox/trunk/include/iprt/mangling.h@ 108095

Last change on this file since 108095 was 108095, checked in by vboxsync, 2 weeks ago

Runtime/RTAcpi*: Implement SizeOf, While, Increment, Decrement, CondRefOf and IndexField terms, bugref:10733

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette