authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-06-19 23:16:01-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-08 11:52:38-07:00
logc26bace6066fde8c0b6ca0ad8559ddb273a85e04
treef87448c60d15e412713f9f624f461c35ff07c6f2
parent491b460e0a5637d42cc60e9d69a666cac2591ae3

mingw-w64: update CRT files to latest git commit

Upstream commit dddccbc3ef50ac52bf00723fd2f68d98140aab80 * adds ucrtbase.def.in * mingwex: replace mingw crt files with ucrt files * adds missing mingw-w64 ucrt files The rules that govern which set of files are included or excluded is contained in the logic for tools/update_mingw.zig

1768 files changed, 113759 insertions(+), 12252 deletions(-)

lib/libc/mingw/complex/cacosh.def.h+23-2
......@@ -80,12 +80,33 @@ __FLT_ABI(cacosh) (__FLT_TYPE __complex__ z)
8080 return ret;
8181 }
8282
83 /* cacosh(z) = log(z + sqrt(z*z - 1)) */
84
85 if (__FLT_ABI(fabs) (__real__ z) >= __FLT_CST(1.0)/__FLT_EPSILON
86 || __FLT_ABI(fabs) (__imag__ z) >= __FLT_CST(1.0)/__FLT_EPSILON)
87 {
88 /* For large z, z + sqrt(z*z - 1) is approximately 2*z.
89 Use that approximation to avoid overflow when squaring.
90 Additionally, use symmetries to perform the calculation in the positive
91 half plane. */
92 __real__ x = __real__ z;
93 __imag__ x = __FLT_ABI(fabs) (__imag__ z);
94 x = __FLT_ABI(clog) (x);
95 __real__ x += M_LN2;
96
97 /* adjust signs for input */
98 __real__ ret = __real__ x;
99 __imag__ ret = __FLT_ABI(copysign) (__imag__ x, __imag__ z);
100
101 return ret;
102 }
103
83104 __real__ x = (__real__ z - __imag__ z) * (__real__ z + __imag__ z) - __FLT_CST(1.0);
84105 __imag__ x = __FLT_CST(2.0) * __real__ z * __imag__ z;
85106
86107 x = __FLT_ABI(csqrt) (x);
87108
88 if (__real__ z < __FLT_CST(0.0))
109 if (signbit (__real__ z))
89110 x = -x;
90111
91112 __real__ x += __real__ z;
......@@ -93,7 +114,7 @@ __FLT_ABI(cacosh) (__FLT_TYPE __complex__ z)
93114
94115 ret = __FLT_ABI(clog) (x);
95116
96 if (__real__ ret < __FLT_CST(0.0))
117 if (signbit (__real__ ret))
97118 ret = -ret;
98119
99120 return ret;
lib/libc/mingw/complex/casinh.def.h+63-6
......@@ -47,6 +47,7 @@ __FLT_ABI(casinh) (__FLT_TYPE __complex__ z)
4747{
4848 __complex__ __FLT_TYPE ret;
4949 __complex__ __FLT_TYPE x;
50 __FLT_TYPE arz, aiz;
5051 int r_class = fpclassify (__real__ z);
5152 int i_class = fpclassify (__imag__ z);
5253
......@@ -87,13 +88,69 @@ __FLT_ABI(casinh) (__FLT_TYPE __complex__ z)
8788 if (r_class == FP_ZERO && i_class == FP_ZERO)
8889 return z;
8990
90 __real__ x = (__real__ z - __imag__ z) * (__real__ z + __imag__ z) + __FLT_CST(1.0);
91 __imag__ x = __FLT_CST(2.0) * __real__ z * __imag__ z;
91 /* casinh(z) = log(z + sqrt(z*z + 1)) */
9292
93 x = __FLT_ABI(csqrt) (x);
93 /* Use symmetries to perform the calculation in the first quadrant. */
94 arz = __FLT_ABI(fabs) (__real__ z);
95 aiz = __FLT_ABI(fabs) (__imag__ z);
9496
95 __real__ x += __real__ z;
96 __imag__ x += __imag__ z;
97 if (arz >= __FLT_CST(1.0)/__FLT_EPSILON
98 || aiz >= __FLT_CST(1.0)/__FLT_EPSILON)
99 {
100 /* For large z, z + sqrt(z*z + 1) is approximately 2*z.
101 Use that approximation to avoid overflow when squaring. */
102 __real__ x = arz;
103 __imag__ x = aiz;
104 ret = __FLT_ABI(clog) (x);
105 __real__ ret += M_LN2;
106 }
107 else if (aiz < __FLT_CST(1.0) && arz <= __FLT_EPSILON)
108 {
109 /* Taylor series expansion around arz=0 for z + sqrt(z*z + 1):
110 c = arz + sqrt(1-aiz^2) + i*(aiz + arz*aiz / sqrt(1-aiz^2)) + O(arz^2)
111 Identity: clog(c) = log(|c|) + i*arg(c)
112 For real part of result:
113 |c| = 1 + arz / sqrt(1-aiz^2) + O(arz^2) (Taylor series expansion)
114 For imaginary part of result:
115 c = (arz + sqrt(1-aiz^2))/sqrt(1-aiz^2) * (sqrt(1-aiz^2) + i*aiz) + O(arz^6)
116 */
117 __FLT_TYPE s1maiz2 = __FLT_ABI(sqrt) ((__FLT_CST(1.0)+aiz)*(__FLT_CST(1.0)-aiz));
118 __real__ ret = __FLT_ABI(log1p) (arz / s1maiz2);
119 __imag__ ret = __FLT_ABI(atan2) (aiz, s1maiz2);
120 }
121 else if (aiz < __FLT_CST(1.0) && arz*arz <= __FLT_EPSILON)
122 {
123 /* Taylor series expansion around arz=0 for z + sqrt(z*z + 1):
124 c = arz + sqrt(1-aiz^2) + arz^2 / (2*(1-aiz^2)^(3/2)) + i*(aiz + arz*aiz / sqrt(1-aiz^2)) + O(arz^4)
125 Identity: clog(c) = log(|c|) + i*arg(c)
126 For real part of result:
127 |c| = 1 + arz / sqrt(1-aiz^2) + arz^2/(2*(1-aiz^2)) + O(arz^3) (Taylor series expansion)
128 For imaginary part of result:
129 c = 1/sqrt(1-aiz^2) * ((1-aiz^2) + arz*sqrt(1-aiz^2) + arz^2/(2*(1-aiz^2)) + i*aiz*(sqrt(1-aiz^2)+arz)) + O(arz^3)
130 */
131 __FLT_TYPE onemaiz2 = (__FLT_CST(1.0)+aiz)*(__FLT_CST(1.0)-aiz);
132 __FLT_TYPE s1maiz2 = __FLT_ABI(sqrt) (onemaiz2);
133 __FLT_TYPE arz2red = arz * arz / __FLT_CST(2.0) / s1maiz2;
134 __real__ ret = __FLT_ABI(log1p) ((arz + arz2red) / s1maiz2);
135 __imag__ ret = __FLT_ABI(atan2) (aiz * (s1maiz2 + arz),
136 onemaiz2 + arz*s1maiz2 + arz2red);
137 }
138 else
139 {
140 __real__ x = (arz - aiz) * (arz + aiz) + __FLT_CST(1.0);
141 __imag__ x = __FLT_CST(2.0) * arz * aiz;
142
143 x = __FLT_ABI(csqrt) (x);
144
145 __real__ x += arz;
146 __imag__ x += aiz;
147
148 ret = __FLT_ABI(clog) (x);
149 }
150
151 /* adjust signs for input quadrant */
152 __real__ ret = __FLT_ABI(copysign) (__real__ ret, __real__ z);
153 __imag__ ret = __FLT_ABI(copysign) (__imag__ ret, __imag__ z);
97154
98 return __FLT_ABI(clog) (x);
155 return ret;
99156}
lib/libc/mingw/complex/catanh.def.h+31-6
......@@ -75,17 +75,42 @@ __FLT_ABI(catanh) (__FLT_TYPE __complex__ z)
7575 if (r_class == FP_ZERO && i_class == FP_ZERO)
7676 return z;
7777
78 /* catanh(z) = 1/2 * clog(1+z) - 1/2 * clog(1-z) = 1/2 * clog((1+z)/(1-z)) */
79
80 /* Use identity clog(c) = 1/2*log(|c|^2) + i*arg(c) to calculate real and
81 imaginary parts separately. */
82
83 /* real part */
84 /* |c|^2 = (Im(z)^2 + (1+Re(z))^2)/(Im(z)^2 + (1-Re(z))^2) */
7885 i2 = __imag__ z * __imag__ z;
7986
80 n = __FLT_CST(1.0) + __real__ z;
81 n = i2 + n * n;
87 if (__FLT_ABI(fabs) (__real__ z) <= __FLT_EPSILON)
88 {
89 /* |c|^2 = 1 + 4*Re(z)/(1+Im(z)^2) + O(Re(z)^2) (Taylor series) */
90 __real__ ret = __FLT_CST(0.25) *
91 __FLT_ABI(log1p) (__FLT_CST(4.0)*(__real__ z) / (__FLT_CST(1.0) + i2));
92 }
93 else if ((__real__ z)*(__real__ z) <= __FLT_EPSILON)
94 {
95 /* |c|^2 = 1 + 4*Re(z)/(1+Im(z)^2) + 8*Re(z)^2/(1+Im(z)^2)^2 + O(Re(z)^3) (Taylor series) */
96 d = __real__ z / (__FLT_CST(1.0) + i2);
97 __real__ ret = __FLT_CST(0.25) *
98 __FLT_ABI(log1p) (__FLT_CST(4.0) * d * (__FLT_CST(1.0) + __FLT_CST(2.0) * d));
99 }
100 else
101 {
102 n = __FLT_CST(1.0) + __real__ z;
103 n = i2 + n * n;
82104
83 d = __FLT_CST(1.0) - __real__ z;
84 d = i2 + d * d;
105 d = __FLT_CST(1.0) - __real__ z;
106 d = i2 + d * d;
85107
86 __real__ ret = __FLT_CST(0.25) * (__FLT_ABI(log) (n) - __FLT_ABI(log) (d));
108 __real__ ret = __FLT_CST(0.25) * (__FLT_ABI(log) (n) - __FLT_ABI(log) (d));
109 }
87110
88 d = 1 - __real__ z * __real__ z - i2;
111 /* imaginary part */
112 /* z = (1 - Re(z)^2 - Im(z)^2 + 2i * Im(z) / ((1-Re(z))^2 + Im(z)^2) */
113 d = __FLT_CST(1.0) - __real__ z * __real__ z - i2;
89114
90115 __imag__ ret = __FLT_CST(0.5) * __FLT_ABI(atan2) (__FLT_CST(2.0) * __imag__ z, d);
91116
lib/libc/mingw/crt/crt0_c.c deleted-20
......@@ -1,20 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#include <windows.h>
8
9extern HINSTANCE __mingw_winmain_hInstance;
10extern LPSTR __mingw_winmain_lpCmdLine;
11extern DWORD __mingw_winmain_nShowCmd;
12
13/*ARGSUSED*/
14int main (int __UNUSED_PARAM(flags),
15 char ** __UNUSED_PARAM(cmdline),
16 char ** __UNUSED_PARAM(inst))
17{
18 return (int) WinMain (__mingw_winmain_hInstance, NULL,
19 __mingw_winmain_lpCmdLine, __mingw_winmain_nShowCmd);
20}
lib/libc/mingw/crt/crt0_w.c deleted-25
......@@ -1,25 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#include <windows.h>
7
8/* Do the UNICODE prototyping of WinMain. Be aware that in winbase.h WinMain is a macro
9 defined to wWinMain. */
10int WINAPI wWinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPWSTR lpCmdLine,int nShowCmd);
11
12extern HINSTANCE __mingw_winmain_hInstance;
13extern LPWSTR __mingw_winmain_lpCmdLine;
14extern DWORD __mingw_winmain_nShowCmd;
15
16int wmain (int, wchar_t **, wchar_t **);
17
18/*ARGSUSED*/
19int wmain (int __UNUSED_PARAM(flags),
20 wchar_t ** __UNUSED_PARAM(cmdline),
21 wchar_t ** __UNUSED_PARAM(inst))
22{
23 return (int) wWinMain (__mingw_winmain_hInstance, NULL,
24 __mingw_winmain_lpCmdLine, __mingw_winmain_nShowCmd);
25}
lib/libc/mingw/crt/crt_handler.c-10
......@@ -13,16 +13,6 @@
1313#include <signal.h>
1414#include <stdio.h>
1515
16#if defined (_WIN64) && defined (__ia64__)
17#error FIXME: Unsupported __ImageBase implementation.
18#else
19#ifndef _MSC_VER
20#define __ImageBase __MINGW_LSYMBOL(_image_base__)
21#endif
22/* This symbol is defined by the linker. */
23extern IMAGE_DOS_HEADER __ImageBase;
24#endif
25
2616#pragma pack(push,1)
2717typedef struct _UNWIND_INFO {
2818 BYTE VersionAndFlags;
lib/libc/mingw/crt/crtdll.c+1
......@@ -142,6 +142,7 @@ WINBOOL WINAPI DllMainCRTStartup (HANDLE, DWORD, LPVOID);
142142int __mingw_init_ehandler (void);
143143#endif
144144
145__attribute__((used)) /* required due to bug in gcc / ld */
145146WINBOOL WINAPI
146147DllMainCRTStartup (HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved)
147148{
lib/libc/mingw/crt/crtexe.c+24-106
......@@ -35,16 +35,9 @@ extern char *** __MINGW_IMP_SYMBOL(__initenv);
3535#define __initenv (* __MINGW_IMP_SYMBOL(__initenv))
3636#endif
3737
38/* Hack, for bug in ld. Will be removed soon. */
39#if defined(__GNUC__)
40#define __ImageBase __MINGW_LSYMBOL(_image_base__)
41#endif
42/* This symbol is defined by ld. */
4338extern IMAGE_DOS_HEADER __ImageBase;
4439
4540extern void _fpreset (void);
46#define SPACECHAR _T(' ')
47#define DQUOTECHAR _T('\"')
4841
4942int *__cdecl __p__commode(void);
5043
......@@ -68,19 +61,10 @@ extern const PIMAGE_TLS_CALLBACK __dyn_tls_init_callback;
6861
6962extern int __mingw_app_type;
7063
71HINSTANCE __mingw_winmain_hInstance;
72_TCHAR *__mingw_winmain_lpCmdLine;
73DWORD __mingw_winmain_nShowCmd = SW_SHOWDEFAULT;
74
7564static int argc;
7665extern void __main(void);
77#ifdef WPRFLAG
78static wchar_t **argv;
79static wchar_t **envp;
80#else
81static char **argv;
82static char **envp;
83#endif
66static _TCHAR **argv;
67static _TCHAR **envp;
8468
8569static int argret;
8670static int mainret=0;
......@@ -91,11 +75,7 @@ extern LPTOP_LEVEL_EXCEPTION_FILTER __mingw_oldexcpt_handler;
9175
9276extern void _pei386_runtime_relocator (void);
9377long CALLBACK _gnu_exception_handler (EXCEPTION_POINTERS * exception_data);
94#ifdef WPRFLAG
95static void duplicate_ppstrings (int ac, wchar_t ***av);
96#else
97static void duplicate_ppstrings (int ac, char ***av);
98#endif
78static void duplicate_ppstrings (int ac, _TCHAR ***av);
9979
10080static int __cdecl pre_c_init (void);
10181static void __cdecl pre_cpp_init (void);
......@@ -134,7 +114,7 @@ pre_c_init (void)
134114 * __p__fmode() = _fmode;
135115 * __p__commode() = _commode;
136116
137#ifdef WPRFLAG
117#ifdef _UNICODE
138118 _wsetargv();
139119#else
140120 _setargv();
......@@ -155,7 +135,7 @@ pre_cpp_init (void)
155135{
156136 startinfo.newmode = _newmode;
157137
158#ifdef WPRFLAG
138#ifdef _UNICODE
159139 argret = __wgetmainargs(&argc,&argv,&envp,_dowildcard,&startinfo);
160140#else
161141 argret = __getmainargs(&argc,&argv,&envp,_dowildcard,&startinfo);
......@@ -166,6 +146,7 @@ static int __tmainCRTStartup (void);
166146
167147int WinMainCRTStartup (void);
168148
149__attribute__((used)) /* required due to bug in gcc / ld */
169150int WinMainCRTStartup (void)
170151{
171152 int ret = 255;
......@@ -177,7 +158,11 @@ int WinMainCRTStartup (void)
177158#ifdef SEH_INLINE_ASM
178159 asm ("\tnop\n"
179160 "\t.l_endw: nop\n"
161#ifdef __arm__
162 "\t.seh_handler __C_specific_handler, %except\n"
163#else
180164 "\t.seh_handler __C_specific_handler, @except\n"
165#endif
181166 "\t.seh_handlerdata\n"
182167 "\t.long 1\n"
183168 "\t.rva .l_startw, .l_endw, _gnu_exception_handler ,.l_endw\n"
......@@ -192,6 +177,7 @@ int mainCRTStartup (void);
192177int __mingw_init_ehandler (void);
193178#endif
194179
180__attribute__((used)) /* required due to bug in gcc / ld */
195181int mainCRTStartup (void)
196182{
197183 int ret = 255;
......@@ -203,7 +189,11 @@ int mainCRTStartup (void)
203189#ifdef SEH_INLINE_ASM
204190 asm ("\tnop\n"
205191 "\t.l_end: nop\n"
192#ifdef __arm__
193 "\t.seh_handler __C_specific_handler, %except\n"
194#else
206195 "\t.seh_handler __C_specific_handler, @except\n"
196#endif
207197 "\t.seh_handlerdata\n"
208198 "\t.long 1\n"
209199 "\t.rva .l_start, .l_end, _gnu_exception_handler ,.l_end\n"
......@@ -221,14 +211,6 @@ __attribute__((force_align_arg_pointer))
221211__declspec(noinline) int
222212__tmainCRTStartup (void)
223213{
224 _TCHAR *lpszCommandLine = NULL;
225 STARTUPINFO StartupInfo;
226 WINBOOL inDoubleQuote = FALSE;
227 memset (&StartupInfo, 0, sizeof (STARTUPINFO));
228
229 if (__mingw_app_type)
230 GetStartupInfo (&StartupInfo);
231 {
232214 void *lock_free = NULL;
233215 void *fiberid = ((PNT_TIB)NtCurrentTeb())->StackBase;
234216 int nested = FALSE;
......@@ -275,57 +257,20 @@ __tmainCRTStartup (void)
275257
276258 _fpreset ();
277259
278 __mingw_winmain_hInstance = (HINSTANCE) &__ImageBase;
279
280#ifdef WPRFLAG
281 lpszCommandLine = (_TCHAR *) _wcmdln;
282#else
283 lpszCommandLine = (char *) _acmdln;
284#endif
285
286 if (lpszCommandLine)
287 {
288 while (*lpszCommandLine > SPACECHAR || (*lpszCommandLine && inDoubleQuote))
289 {
290 if (*lpszCommandLine == DQUOTECHAR)
291 inDoubleQuote = !inDoubleQuote;
292#ifdef _MBCS
293 if (_ismbblead (*lpszCommandLine))
294 {
295 if (lpszCommandLine[1])
296 ++lpszCommandLine;
297 }
298#endif
299 ++lpszCommandLine;
300 }
301 while (*lpszCommandLine && (*lpszCommandLine <= SPACECHAR))
302 lpszCommandLine++;
303
304 __mingw_winmain_lpCmdLine = lpszCommandLine;
305 }
306
307 if (__mingw_app_type)
308 {
309 __mingw_winmain_nShowCmd = StartupInfo.dwFlags & STARTF_USESHOWWINDOW ?
310 StartupInfo.wShowWindow : SW_SHOWDEFAULT;
311 }
312260 duplicate_ppstrings (argc, &argv);
313 __main ();
314#ifdef WPRFLAG
261 __main (); /* C++ initialization. */
262#ifdef _UNICODE
315263 __winitenv = envp;
316 /* C++ initialization.
317 gcc inserts this call automatically for a function called main, but not for wmain. */
318 mainret = wmain (argc, argv, envp);
319264#else
320265 __initenv = envp;
321 mainret = main (argc, argv, envp);
322266#endif
267 mainret = _tmain (argc, argv, envp);
323268 if (!managedapp)
324269 exit (mainret);
325270
326271 if (has_cctor == 0)
327272 _cexit ();
328 }
273
329274 return mainret;
330275}
331276
......@@ -370,49 +315,22 @@ check_managed_app (void)
370315 return 0;
371316}
372317
373#ifdef WPRFLAG
374static size_t wbytelen(const wchar_t *p)
375{
376 size_t ret = 1;
377 while (*p!=0) {
378 ret++,++p;
379 }
380 return ret*2;
381}
382static void duplicate_ppstrings (int ac, wchar_t ***av)
383{
384 wchar_t **avl;
385 int i;
386 wchar_t **n = (wchar_t **) malloc (sizeof (wchar_t *) * (ac + 1));
387
388 avl=*av;
389 for (i=0; i < ac; i++)
390 {
391 size_t l = wbytelen (avl[i]);
392 n[i] = (wchar_t *) malloc (l);
393 memcpy (n[i], avl[i], l);
394 }
395 n[i] = NULL;
396 *av = n;
397}
398#else
399static void duplicate_ppstrings (int ac, char ***av)
318static void duplicate_ppstrings (int ac, _TCHAR ***av)
400319{
401 char **avl;
320 _TCHAR **avl;
402321 int i;
403 char **n = (char **) malloc (sizeof (char *) * (ac + 1));
322 _TCHAR **n = (_TCHAR **) malloc (sizeof (_TCHAR *) * (ac + 1));
404323
405324 avl=*av;
406325 for (i=0; i < ac; i++)
407326 {
408 size_t l = strlen (avl[i]) + 1;
409 n[i] = (char *) malloc (l);
327 size_t l = sizeof (_TCHAR) * (_tcslen (avl[i]) + 1);
328 n[i] = (_TCHAR *) malloc (l);
410329 memcpy (n[i], avl[i], l);
411330 }
412331 n[i] = NULL;
413332 *av = n;
414333}
415#endif
416334
417335int __cdecl atexit (_PVFV func)
418336{
lib/libc/mingw/crt/dll_argv.c+1-2
......@@ -12,11 +12,10 @@
1212
1313extern int _dowildcard;
1414
15#ifdef WPRFLAG
1615int __CRTDECL
16#ifdef _UNICODE
1717__wsetargv (void)
1818#else
19int __CRTDECL
2019__setargv (void)
2120#endif
2221{
lib/libc/mingw/crt/dllargv.c+1-2
......@@ -10,11 +10,10 @@
1010
1111#include <internal.h>
1212
13#ifdef WPRFLAG
1413int __CRTDECL
14#ifdef _UNICODE
1515_wsetargv (void)
1616#else
17int __CRTDECL
1817_setargv (void)
1918#endif
2019{
lib/libc/mingw/crt/pesect.c-9
......@@ -7,16 +7,7 @@
77#include <windows.h>
88#include <string.h>
99
10#if defined (_WIN64) && defined (__ia64__)
11#error FIXME: Unsupported __ImageBase implementation.
12#else
13#ifdef __GNUC__
14/* Hack, for bug in ld. Will be removed soon. */
15#define __ImageBase __MINGW_LSYMBOL(_image_base__)
16#endif
17/* This symbol is defined by the linker. */
1810extern IMAGE_DOS_HEADER __ImageBase;
19#endif
2011
2112WINBOOL _ValidateImageBase (PBYTE);
2213
lib/libc/mingw/crt/pseudo-reloc.c+2-5
......@@ -48,7 +48,7 @@
4848
4949extern char __RUNTIME_PSEUDO_RELOC_LIST__;
5050extern char __RUNTIME_PSEUDO_RELOC_LIST_END__;
51extern IMAGE_DOS_HEADER __MINGW_LSYMBOL(_image_base__);
51extern IMAGE_DOS_HEADER __ImageBase;
5252
5353void _pei386_runtime_relocator (void);
5454
......@@ -480,6 +480,7 @@ do_pseudo_reloc (void * start, void * end, void * base)
480480 }
481481}
482482
483__attribute__((used)) /* required due to bug in gcc / ld */
483484void
484485_pei386_runtime_relocator (void)
485486{
......@@ -499,11 +500,7 @@ _pei386_runtime_relocator (void)
499500
500501 do_pseudo_reloc (&__RUNTIME_PSEUDO_RELOC_LIST__,
501502 &__RUNTIME_PSEUDO_RELOC_LIST_END__,
502#ifdef __GNUC__
503 &__MINGW_LSYMBOL(_image_base__)
504#else
505503 &__ImageBase
506#endif
507504 );
508505#ifdef __MINGW64_VERSION_MAJOR
509506 restore_modified_sections ();
lib/libc/mingw/crt/tls_atexit.c+30-19
......@@ -54,42 +54,51 @@ int __mingw_cxa_atexit(dtor_fn dtor, void *obj, void *dso) {
5454}
5555
5656static void run_dtor_list(dtor_obj **ptr) {
57 dtor_obj *list = *ptr;
58 while (list) {
59 list->dtor(list->obj);
60 dtor_obj *next = list->next;
61 free(list);
62 list = next;
57 if (!ptr)
58 return;
59 while (*ptr) {
60 dtor_obj *cur = *ptr;
61 *ptr = cur->next;
62 cur->dtor(cur->obj);
63 free(cur);
6364 }
64 *ptr = NULL;
6565}
6666
6767int __mingw_cxa_thread_atexit(dtor_fn dtor, void *obj, void *dso) {
6868 if (!inited)
6969 return 1;
7070 assert(!dso || dso == &__dso_handle);
71
72 dtor_obj **head = (dtor_obj **)TlsGetValue(tls_dtors_slot);
73 if (!head) {
74 head = (dtor_obj **) calloc(1, sizeof(*head));
75 if (!head)
76 return 1;
77 TlsSetValue(tls_dtors_slot, head);
78 }
7179 dtor_obj *handler = (dtor_obj *) calloc(1, sizeof(*handler));
7280 if (!handler)
7381 return 1;
7482 handler->dtor = dtor;
7583 handler->obj = obj;
76 handler->next = (dtor_obj *)TlsGetValue(tls_dtors_slot);
77 TlsSetValue(tls_dtors_slot, handler);
84 handler->next = *head;
85 *head = handler;
7886 return 0;
7987}
8088
8189static void WINAPI tls_atexit_callback(HANDLE __UNUSED_PARAM(hDllHandle), DWORD dwReason, LPVOID __UNUSED_PARAM(lpReserved)) {
8290 if (dwReason == DLL_PROCESS_DETACH) {
83 dtor_obj * p = (dtor_obj *)TlsGetValue(tls_dtors_slot);
84 run_dtor_list(&p);
85 TlsSetValue(tls_dtors_slot, p);
91 dtor_obj **p = (dtor_obj **)TlsGetValue(tls_dtors_slot);
92 run_dtor_list(p);
93 free(p);
94 TlsSetValue(tls_dtors_slot, NULL);
8695 TlsFree(tls_dtors_slot);
8796 run_dtor_list(&global_dtors);
8897 }
8998}
9099
91100static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUSED_PARAM(lpReserved)) {
92 dtor_obj * p;
101 dtor_obj **p;
93102 switch (dwReason) {
94103 case DLL_PROCESS_ATTACH:
95104 if (inited == 0) {
......@@ -134,9 +143,10 @@ static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUS
134143 * linked CRT (which still runs TLS destructors for the main thread).
135144 */
136145 if (__mingw_module_is_dll) {
137 p = (dtor_obj *)TlsGetValue(tls_dtors_slot);
138 run_dtor_list(&p);
139 TlsSetValue(tls_dtors_slot, p);
146 p = (dtor_obj **)TlsGetValue(tls_dtors_slot);
147 run_dtor_list(p);
148 free(p);
149 TlsSetValue(tls_dtors_slot, NULL);
140150 /* For DLLs, run dtors when detached. For EXEs, run dtors via the
141151 * thread local atexit callback, to make sure they don't run when
142152 * exiting the process with _exit or ExitProcess. */
......@@ -151,9 +161,10 @@ static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUS
151161 case DLL_THREAD_ATTACH:
152162 break;
153163 case DLL_THREAD_DETACH:
154 p = (dtor_obj *)TlsGetValue(tls_dtors_slot);
155 run_dtor_list(&p);
156 TlsSetValue(tls_dtors_slot, p);
164 p = (dtor_obj **)TlsGetValue(tls_dtors_slot);
165 run_dtor_list(p);
166 free(p);
167 TlsSetValue(tls_dtors_slot, NULL);
157168 break;
158169 }
159170}
lib/libc/mingw/crt/tlssup.c+1
......@@ -44,6 +44,7 @@ _CRTALLOC(".tls$ZZZ") char *_tls_end = NULL;
4444_CRTALLOC(".CRT$XLA") PIMAGE_TLS_CALLBACK __xl_a = 0;
4545_CRTALLOC(".CRT$XLZ") PIMAGE_TLS_CALLBACK __xl_z = 0;
4646
47__attribute__((used))
4748const IMAGE_TLS_DIRECTORY _tls_used = {
4849 (ULONG_PTR) &_tls_start, (ULONG_PTR) &_tls_end,
4950 (ULONG_PTR) &_tls_index, (ULONG_PTR) (&__xl_a+1),
lib/libc/mingw/crt/ucrtbase_compat.c created+169
......@@ -0,0 +1,169 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#ifdef __GNUC__
8#pragma GCC diagnostic push
9#pragma GCC diagnostic ignored "-Winline"
10#endif
11
12#undef __MSVCRT_VERSION__
13#define _UCRT
14
15#define __getmainargs crtimp___getmainargs
16#define __wgetmainargs crtimp___wgetmainargs
17#define _amsg_exit crtimp__amsg_exit
18#define _get_output_format crtimp__get_output_format
19
20#include <internal.h>
21#include <sect_attribs.h>
22#include <stdio.h>
23#include <time.h>
24#include <corecrt_startup.h>
25
26#undef __getmainargs
27#undef __wgetmainargs
28#undef _amsg_exit
29#undef _get_output_format
30
31
32
33// Declarations of non-static functions implemented within this file (that aren't
34// declared in any of the included headers, and that isn't mapped away with a define
35// to get rid of the _CRTIMP in headers).
36int __cdecl __getmainargs(int * _Argc, char *** _Argv, char ***_Env, int _DoWildCard, _startupinfo *_StartInfo);
37int __cdecl __wgetmainargs(int * _Argc, wchar_t *** _Argv, wchar_t ***_Env, int _DoWildCard, _startupinfo *_StartInfo);
38void __cdecl __MINGW_ATTRIB_NORETURN _amsg_exit(int ret);
39unsigned int __cdecl _get_output_format(void);
40
41int __cdecl __ms_fwprintf(FILE *, const wchar_t *, ...);
42
43// Declarations of functions from ucrtbase.dll that we use below
44_CRTIMP int* __cdecl __p___argc(void);
45_CRTIMP char*** __cdecl __p___argv(void);
46_CRTIMP wchar_t*** __cdecl __p___wargv(void);
47_CRTIMP char*** __cdecl __p__environ(void);
48_CRTIMP wchar_t*** __cdecl __p__wenviron(void);
49
50_CRTIMP int __cdecl _initialize_narrow_environment(void);
51_CRTIMP int __cdecl _initialize_wide_environment(void);
52_CRTIMP int __cdecl _configure_narrow_argv(int mode);
53_CRTIMP int __cdecl _configure_wide_argv(int mode);
54
55// Declared in new.h, but only visible to C++
56_CRTIMP int __cdecl _set_new_mode(int _NewMode);
57
58extern char __mingw_module_is_dll;
59
60
61// Wrappers with legacy msvcrt.dll style API, based on the new ucrtbase.dll functions.
62int __cdecl __getmainargs(int * _Argc, char *** _Argv, char ***_Env, int _DoWildCard, _startupinfo *_StartInfo)
63{
64 _initialize_narrow_environment();
65 _configure_narrow_argv(_DoWildCard ? 2 : 1);
66 *_Argc = *__p___argc();
67 *_Argv = *__p___argv();
68 *_Env = *__p__environ();
69 if (_StartInfo)
70 _set_new_mode(_StartInfo->newmode);
71 return 0;
72}
73
74int __cdecl __wgetmainargs(int * _Argc, wchar_t *** _Argv, wchar_t ***_Env, int _DoWildCard, _startupinfo *_StartInfo)
75{
76 _initialize_wide_environment();
77 _configure_wide_argv(_DoWildCard ? 2 : 1);
78 *_Argc = *__p___argc();
79 *_Argv = *__p___wargv();
80 *_Env = *__p__wenviron();
81 if (_StartInfo)
82 _set_new_mode(_StartInfo->newmode);
83 return 0;
84}
85
86_onexit_t __cdecl _onexit(_onexit_t func)
87{
88 return _crt_atexit((_PVFV)func) == 0 ? func : NULL;
89}
90
91_onexit_t __cdecl (*__MINGW_IMP_SYMBOL(_onexit))(_onexit_t func) = _onexit;
92
93int __cdecl at_quick_exit(void (__cdecl *func)(void))
94{
95 // In a DLL, we can't register a function with _crt_at_quick_exit, because
96 // we can't unregister it when the DLL is unloaded. This matches how
97 // at_quick_exit/quick_exit work with MSVC with a dynamically linked CRT.
98 if (__mingw_module_is_dll)
99 return 0;
100 return _crt_at_quick_exit(func);
101}
102
103int __cdecl (*__MINGW_IMP_SYMBOL(at_quick_exit))(void (__cdecl *)(void)) = at_quick_exit;
104
105void __cdecl __MINGW_ATTRIB_NORETURN _amsg_exit(int ret) {
106 fprintf(stderr, "runtime error %d\n", ret);
107 _exit(255);
108}
109
110unsigned int __cdecl _get_output_format(void)
111{
112 return 0;
113}
114
115
116// These are required to provide the unrepfixed data symbols "timezone"
117// and "tzname"; we can't remap "timezone" via a define due to clashes
118// with e.g. "struct timezone".
119typedef void __cdecl (*_tzset_func)(void);
120extern _tzset_func __MINGW_IMP_SYMBOL(_tzset);
121
122// Default initial values until _tzset has been called; these are the same
123// as the initial values in msvcrt/ucrtbase.
124static char initial_tzname0[] = "PST";
125static char initial_tzname1[] = "PDT";
126static char *initial_tznames[] = { initial_tzname0, initial_tzname1 };
127static long initial_timezone = 28800;
128static int initial_daylight = 1;
129char** __MINGW_IMP_SYMBOL(tzname) = initial_tznames;
130long * __MINGW_IMP_SYMBOL(timezone) = &initial_timezone;
131int * __MINGW_IMP_SYMBOL(daylight) = &initial_daylight;
132
133void __cdecl _tzset(void)
134{
135 __MINGW_IMP_SYMBOL(_tzset)();
136 // Redirect the __imp_ pointers to the actual data provided by the UCRT.
137 // From this point, the exposed values should stay in sync.
138 __MINGW_IMP_SYMBOL(tzname) = _tzname;
139 __MINGW_IMP_SYMBOL(timezone) = __timezone();
140 __MINGW_IMP_SYMBOL(daylight) = __daylight();
141}
142
143void __cdecl tzset(void)
144{
145 _tzset();
146}
147
148// This is called for wchar cases with __USE_MINGW_ANSI_STDIO enabled (where the
149// char case just uses fputc).
150int __cdecl __ms_fwprintf(FILE *file, const wchar_t *fmt, ...)
151{
152 va_list ap;
153 int ret;
154 va_start(ap, fmt);
155 ret = __stdio_common_vfwprintf(_CRT_INTERNAL_PRINTF_LEGACY_WIDE_SPECIFIERS, file, fmt, NULL, ap);
156 va_end(ap);
157 return ret;
158}
159
160// Dummy/unused __imp_ wrappers, to make GNU ld not autoexport these symbols.
161int __cdecl (*__MINGW_IMP_SYMBOL(__getmainargs))(int *, char ***, char ***, int, _startupinfo *) = __getmainargs;
162int __cdecl (*__MINGW_IMP_SYMBOL(__wgetmainargs))(int *, wchar_t ***, wchar_t ***, int, _startupinfo *) = __wgetmainargs;
163void __cdecl (*__MINGW_IMP_SYMBOL(_amsg_exit))(int) = _amsg_exit;
164unsigned int __cdecl (*__MINGW_IMP_SYMBOL(_get_output_format))(void) = _get_output_format;
165void __cdecl (*__MINGW_IMP_SYMBOL(tzset))(void) = tzset;
166int __cdecl (*__MINGW_IMP_SYMBOL(__ms_fwprintf))(FILE *, const wchar_t *, ...) = __ms_fwprintf;
167#ifdef __GNUC__
168#pragma GCC diagnostic pop
169#endif
lib/libc/mingw/crt/udll_argv.c-1
......@@ -10,7 +10,6 @@
1010#ifndef _UNICODE
1111#define _UNICODE
1212#endif
13#define WPRFLAG 1
1413
1514#include "dll_argv.c"
1615
lib/libc/mingw/crt/udllargc.c-1
......@@ -10,7 +10,6 @@
1010#ifndef _UNICODE
1111#define _UNICODE
1212#endif
13#define WPRFLAG 1
1413
1514#include "dllargv.c"
1615
lib/libc/mingw/def-include/msvcrt-common.def.in+7-8
......@@ -12,7 +12,11 @@ wcscmpi == _wcsicmp
1212strcasecmp == _stricmp
1313strncasecmp == _strnicmp
1414
15#ifdef UCRTBASE
16; access is provided as an alias for __mingw_access
17#else
1518ADD_UNDERSCORE(access)
19#endif
1620ADD_UNDERSCORE(chdir)
1721ADD_UNDERSCORE(chmod)
1822ADD_UNDERSCORE(chsize)
......@@ -139,15 +143,10 @@ ADD_UNDERSCORE(hypot)
139143;logb
140144ADD_UNDERSCORE(nextafter)
141145
142longjmp
143
144146#ifndef UCRTBASE
145_daylight DATA
146_timezone DATA
147_tzname DATA
148ADD_UNDERSCORE(daylight)
149ADD_UNDERSCORE(timezone)
150ADD_UNDERSCORE(tzname)
147daylight DATA == _daylight
148timezone DATA == _timezone
149tzname DATA == _tzname
151150
152151ADD_UNDERSCORE(vsnprintf_s)
153152#endif
lib/libc/mingw/gdtoa/arithchk.c+10-11
......@@ -42,7 +42,7 @@ VAX = { "VAX", 4 },
4242CRAY = { "CRAY", 5};
4343
4444 static Akind *
45Lcheck()
45Lcheck(void)
4646{
4747 union {
4848 double d;
......@@ -69,7 +69,7 @@ Lcheck()
6969 }
7070
7171 static Akind *
72icheck()
72icheck(void)
7373{
7474 union {
7575 double d;
......@@ -95,10 +95,8 @@ icheck()
9595 return 0;
9696 }
9797
98char *emptyfmt = ""; /* avoid possible warning message with printf("") */
99
10098 static Akind *
101ccheck()
99ccheck(int ac, char **av)
102100{
103101 union {
104102 double d;
......@@ -107,10 +105,11 @@ ccheck()
107105 long Cray1;
108106
109107 /* Cray1 = 4617762693716115456 -- without overflow on non-Crays */
110 Cray1 = printf(emptyfmt) < 0 ? 0 : 4617762;
111 if (printf(emptyfmt, Cray1) >= 0)
108 /* The next three tests should always be true. */
109 Cray1 = ac >= -2 ? 4617762 : 0;
110 if (ac >= -1)
112111 Cray1 = 1000000*Cray1 + 693716;
113 if (printf(emptyfmt, Cray1) >= 0)
112 if (av || ac >= 0)
114113 Cray1 = 1000000*Cray1 + 115456;
115114 u.d = 1e13;
116115 if (u.L == Cray1)
......@@ -119,7 +118,7 @@ ccheck()
119118 }
120119
121120 static int
122fzcheck()
121fzcheck(void)
123122{
124123 double a, b;
125124 int i;
......@@ -138,7 +137,7 @@ fzcheck()
138137 }
139138
140139 int
141main()
140main(int argc, char **argv)
142141{
143142 Akind *a = 0;
144143 int Ldef = 0;
......@@ -161,7 +160,7 @@ main()
161160 a = icheck();
162161 }
163162 else if (sizeof(double) == sizeof(long))
164 a = ccheck();
163 a = ccheck(argc, argv);
165164 if (a) {
166165 fprintf(f, "#define %s\n#define Arith_Kind_ASL %d\n",
167166 a->name, a->kind);
lib/libc/mingw/gdtoa/dtoa.c+29-12
......@@ -117,7 +117,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
117117 ULong x;
118118#endif
119119 Bigint *b, *b1, *delta, *mlo, *mhi, *S;
120 union _dbl_union d, d2, eps;
120 union _dbl_union d, d2, eps, eps1;
121121 double ds;
122122 char *s, *s0;
123123#ifdef SET_INEXACT
......@@ -282,7 +282,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
282282 break;
283283 case 2:
284284 leftright = 0;
285 /* no break */
285 /* fallthrough */
286286 case 4:
287287 if (ndigits <= 0)
288288 ndigits = 1;
......@@ -290,7 +290,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
290290 break;
291291 case 3:
292292 leftright = 0;
293 /* no break */
293 /* fallthrough */
294294 case 5:
295295 i = ndigits + k + 1;
296296 ilim = i;
......@@ -363,12 +363,28 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
363363 * generating digits needed.
364364 */
365365 dval(&eps) = 0.5/tens[ilim-1] - dval(&eps);
366 if (k0 < 0 && j2 >= 307) {
367 eps1.d = 1.01e256; /* 1.01 allows roundoff in the next few lines */
368 word0(&eps1) -= Exp_msk1 * (Bias+P-1);
369 dval(&eps1) *= tens[j2 & 0xf];
370 for(i = 0, j = (j2-256) >> 4; j; j >>= 1, i++)
371 if (j & 1)
372 dval(&eps1) *= bigtens[i];
373 if (eps.d < eps1.d)
374 eps.d = eps1.d;
375 if (10. - d.d < 10.*eps.d && eps.d < 1.) {
376 /* eps.d < 1. excludes trouble with the tiniest denormal */
377 *s++ = '1';
378 ++k;
379 goto ret1;
380 }
381 }
366382 for(i = 0;;) {
367383 L = dval(&d);
368384 dval(&d) -= L;
369385 *s++ = '0' + (int)L;
370386 if (dval(&d) < dval(&eps))
371 goto ret1;
387 goto retc;
372388 if (1. - dval(&d) < dval(&eps))
373389 goto bump_up;
374390 if (++i >= ilim)
......@@ -389,11 +405,8 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
389405 if (i == ilim) {
390406 if (dval(&d) > 0.5 + dval(&eps))
391407 goto bump_up;
392 else if (dval(&d) < 0.5 - dval(&eps)) {
393 while(*--s == '0');
394 s++;
395 goto ret1;
396 }
408 else if (dval(&d) < 0.5 - dval(&eps))
409 goto retc;
397410 break;
398411 }
399412 }
......@@ -439,7 +452,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
439452#ifdef Honor_FLT_ROUNDS
440453 if (mode > 1)
441454 switch(Rounding) {
442 case 0: goto ret1;
455 case 0: goto retc;
443456 case 2: goto bump_up;
444457 }
445458#endif
......@@ -462,7 +475,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
462475 break;
463476 }
464477 }
465 goto ret1;
478 goto retc;
466479 }
467480
468481 m2 = b2;
......@@ -650,7 +663,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
650663 }
651664 if (j2 > 0) {
652665#ifdef Honor_FLT_ROUNDS
653 if (!Rounding)
666 if (!Rounding && mode > 1)
654667 goto accept_dig;
655668#endif
656669 if (dig == '9') { /* possible if i == 1 */
......@@ -729,6 +742,10 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv
729742 Bfree(mlo);
730743 Bfree(mhi);
731744 }
745retc:
746 while(s > s0 && s[-1] == '0')
747 --s;
748 /* fallthrough */
732749 ret1:
733750#ifdef SET_INEXACT
734751 if (inexact) {
lib/libc/mingw/gdtoa/g__fmt.c+56
......@@ -35,6 +35,30 @@ THIS SOFTWARE.
3535#include "locale.h"
3636#endif
3737
38#ifndef ldus_QNAN0
39#define ldus_QNAN0 0x7fff
40#endif
41#ifndef ldus_QNAN1
42#define ldus_QNAN1 0xc000
43#endif
44#ifndef ldus_QNAN2
45#define ldus_QNAN2 0
46#endif
47#ifndef ldus_QNAN3
48#define ldus_QNAN3 0
49#endif
50#ifndef ldus_QNAN4
51#define ldus_QNAN4 0
52#endif
53
54 const char *InfName[6] = { "Infinity", "infinity", "INFINITY", "Inf", "inf", "INF" };
55 const char *NanName[3] = { "NaN", "nan", "NAN" };
56 ULong NanDflt_Q_D2A[4] = { 0xffffffff, 0xffffffff, 0xffffffff, 0x7fffffff };
57 ULong NanDflt_d_D2A[2] = { d_QNAN1, d_QNAN0 };
58 ULong NanDflt_f_D2A[1] = { f_QNAN };
59 ULong NanDflt_xL_D2A[3] = { 1, 0x80000000, 0x7fff0000 };
60 UShort NanDflt_ldus_D2A[5] = { ldus_QNAN4, ldus_QNAN3, ldus_QNAN2, ldus_QNAN1, ldus_QNAN0 };
61
3862char *__g__fmt (char *b, char *s, char *se, int decpt, ULong sign, size_t blen)
3963{
4064 int i, j, k;
......@@ -140,3 +164,35 @@ char *__g__fmt (char *b, char *s, char *se, int decpt, ULong sign, size_t blen)
140164 __freedtoa(s0);
141165 return b;
142166}
167
168 char *
169__add_nanbits_D2A(char *b, size_t blen, ULong *bits, int nb)
170{
171 ULong t;
172 char *rv;
173 int i, j;
174 size_t L;
175 static char Hexdig[16] = "0123456789abcdef";
176
177 while(!bits[--nb])
178 if (!nb)
179 return b;
180 L = 8*nb + 3;
181 t = bits[nb];
182 do ++L; while((t >>= 4));
183 if (L > blen)
184 return b;
185 b += L;
186 *--b = 0;
187 rv = b;
188 *--b = /*(*/ ')';
189 for(i = 0; i < nb; ++i) {
190 t = bits[i];
191 for(j = 0; j < 8; ++j, t >>= 4)
192 *--b = Hexdig[t & 0xf];
193 }
194 t = bits[nb];
195 do *--b = Hexdig[t & 0xf]; while(t >>= 4);
196 *--b = '('; /*)*/
197 return rv;
198 }
lib/libc/mingw/gdtoa/g_dfmt.c+1-1
......@@ -45,7 +45,7 @@ char *__g_dfmt (char *buf, double *d, int ndig, size_t bufsize)
4545
4646 if (ndig < 0)
4747 ndig = 0;
48 if ((int) bufsize < ndig + 10)
48 if (bufsize < (size_t)(ndig + 10))
4949 return 0;
5050
5151 L = (ULong*)d;
lib/libc/mingw/gdtoa/g_ffmt.c+1-1
......@@ -45,7 +45,7 @@ char *__g_ffmt (char *buf, float *f, int ndig, size_t bufsize)
4545
4646 if (ndig < 0)
4747 ndig = 0;
48 if ((int) bufsize < ndig + 10)
48 if (bufsize < (size_t)(ndig + 10))
4949 return 0;
5050
5151 L = (ULong*)f;
lib/libc/mingw/gdtoa/g_xfmt.c+4-4
......@@ -69,7 +69,7 @@ char *__g_xfmt (char *buf, void *V, int ndig, size_t bufsize)
6969
7070 if (ndig < 0)
7171 ndig = 0;
72 if ((int) bufsize < ndig + 10)
72 if (bufsize < (size_t)(ndig + 10))
7373 return 0;
7474
7575 L = (UShort *)V;
......@@ -103,14 +103,14 @@ char *__g_xfmt (char *buf, void *V, int ndig, size_t bufsize)
103103 if (ex != 0) {
104104 if (ex == 0x7fff) {
105105 /* Infinity or NaN */
106 if (bits[0] | bits[1])
107 b = strcp(buf, "NaN");
108 else {
106 if (!bits[0] && bits[1]== 0x80000000) {
109107 b = buf;
110108 if (sign)
111109 *b++ = '-';
112110 b = strcp(b, "Infinity");
113111 }
112 else
113 b = strcp(buf, "NaN");
114114 return b;
115115 }
116116 i = STRTOG_Normal;
lib/libc/mingw/gdtoa/gd_qnan.h-9
......@@ -1,12 +1,3 @@
11#define f_QNAN 0x7fc00000
22#define d_QNAN0 0x0
33#define d_QNAN1 0x7ff80000
4#define ld_QNAN0 0x0
5#define ld_QNAN1 0xc0000000
6#define ld_QNAN2 0x7fff
7#define ld_QNAN3 0x0
8#define ldus_QNAN0 0x0
9#define ldus_QNAN1 0x0
10#define ldus_QNAN2 0x0
11#define ldus_QNAN3 0xc000
12#define ldus_QNAN4 0x7fff
lib/libc/mingw/gdtoa/gdtoa.c+10-12
......@@ -103,7 +103,7 @@ static Bigint *bitstob (ULong *bits, int nbits, int *bbits)
103103 * calculation.
104104 */
105105
106char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
106char *__gdtoa (const FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
107107 int *decpt, char **rve)
108108{
109109 /* Arguments ndigits and decpt are similar to the second and third
......@@ -270,7 +270,7 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
270270 break;
271271 case 2:
272272 leftright = 0;
273 /* no break */
273 /* fallthrough */
274274 case 4:
275275 if (ndigits <= 0)
276276 ndigits = 1;
......@@ -278,7 +278,7 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
278278 break;
279279 case 3:
280280 leftright = 0;
281 /* no break */
281 /* fallthrough */
282282 case 5:
283283 i = ndigits + k + 1;
284284 ilim = i;
......@@ -288,7 +288,9 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
288288 }
289289 s = s0 = rv_alloc(i);
290290
291 if ( (rdir = fpi->rounding - 1) !=0) {
291 if (mode <= 1)
292 rdir = 0;
293 else if ( (rdir = fpi->rounding - 1) !=0) {
292294 if (rdir < 0)
293295 rdir = 2;
294296 if (kind & STRTOG_Neg)
......@@ -393,7 +395,7 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
393395 else if (dval(&d) < ds - dval(&eps)) {
394396 if (dval(&d))
395397 inex = STRTOG_Inexlo;
396 goto clear_trailing0;
398 goto ret1;
397399 }
398400 break;
399401 }
......@@ -456,12 +458,8 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
456458 }
457459 ++*s++;
458460 }
459 else {
461 else
460462 inex = STRTOG_Inexlo;
461 clear_trailing0:
462 while(*--s == '0'){}
463 ++s;
464 }
465463 break;
466464 }
467465 }
......@@ -712,8 +710,6 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
712710 chopzeros:
713711 if (b->wds > 1 || b->x[0])
714712 inex = STRTOG_Inexlo;
715 while(*--s == '0'){}
716 ++s;
717713 }
718714 ret:
719715 Bfree(S);
......@@ -723,6 +719,8 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits,
723719 Bfree(mhi);
724720 }
725721 ret1:
722 while(s > s0 && s[-1] == '0')
723 --s;
726724 Bfree(b);
727725 *s = 0;
728726 *decpt = k + 1;
lib/libc/mingw/gdtoa/gdtoa.h+1-1
......@@ -99,7 +99,7 @@ extern "C" {
9999
100100extern char* __dtoa (double d, int mode, int ndigits, int *decpt,
101101 int *sign, char **rve);
102extern char* __gdtoa (FPI *fpi, int be, ULong *bits, int *kindp,
102extern char* __gdtoa (const FPI *fpi, int be, ULong *bits, int *kindp,
103103 int mode, int ndigits, int *decpt, char **rve);
104104extern void __freedtoa (char *);
105105
lib/libc/mingw/gdtoa/gdtoaimp.h+18-4
......@@ -200,6 +200,12 @@ extern void *MALLOC (size_t);
200200#define MALLOC malloc
201201#endif
202202
203#ifdef REALLOC
204extern void *REALLOC (void*, size_t);
205#else
206#define REALLOC realloc
207#endif
208
203209#undef IEEE_Arith
204210#undef Avoid_Underflow
205211#ifdef IEEE_MC68k
......@@ -457,10 +463,13 @@ extern double rnd_prod(double, double), rnd_quot(double, double);
457463#define ALL_ON 0xffff
458464#endif
459465
460#ifndef MULTIPLE_THREADS
466#ifdef MULTIPLE_THREADS /*{{*/
467extern void ACQUIRE_DTOA_LOCK (unsigned int);
468extern void FREE_DTOA_LOCK (unsigned int);
469#else /*}{*/
461470#define ACQUIRE_DTOA_LOCK(n) /*nothing*/
462471#define FREE_DTOA_LOCK(n) /*nothing*/
463#endif
472#endif /*}}*/
464473
465474#define Kmax 9
466475
......@@ -501,12 +510,15 @@ __hi0bits_D2A (ULong y)
501510
502511#define Balloc __Balloc_D2A
503512#define Bfree __Bfree_D2A
513#define InfName __InfName_D2A
514#define NanName __NanName_D2A
504515#define ULtoQ __ULtoQ_D2A
505516#define ULtof __ULtof_D2A
506517#define ULtod __ULtod_D2A
507518#define ULtodd __ULtodd_D2A
508519#define ULtox __ULtox_D2A
509520#define ULtoxL __ULtoxL_D2A
521#define add_nanbits __add_nanbits_D2A
510522#define any_on __any_on_D2A
511523#define b2d __b2d_D2A
512524#define bigtens __bigtens_D2A
......@@ -548,9 +560,11 @@ __hi0bits_D2A (ULong y)
548560
549561#define hexdig_init_D2A __mingw_hexdig_init_D2A
550562
563extern char *add_nanbits (char*, size_t, ULong*, int);
551564extern char *dtoa_result;
552565extern const double bigtens[], tens[], tinytens[];
553566extern unsigned char hexdig[];
567extern const char *InfName[6], *NanName[3];
554568
555569extern Bigint *Balloc (int);
556570extern void Bfree (Bigint*);
......@@ -567,9 +581,9 @@ extern void copybits (ULong*, int, Bigint*);
567581extern Bigint *d2b (double, int*, int*);
568582extern void decrement (Bigint*);
569583extern Bigint *diff (Bigint*, Bigint*);
570extern int gethex (const char**, FPI*, Long*, Bigint**, int);
584extern int gethex (const char**, const FPI*, Long*, Bigint**, int);
571585extern void hexdig_init_D2A(void);
572extern int hexnan (const char**, FPI*, ULong*);
586extern int hexnan (const char**, const FPI*, ULong*);
573587extern int hi0bits_D2A (ULong);
574588extern Bigint *i2b (int);
575589extern Bigint *increment (Bigint*);
lib/libc/mingw/gdtoa/gethex.c+17-8
......@@ -35,7 +35,7 @@ THIS SOFTWARE.
3535#include "locale.h"
3636#endif
3737
38int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign)
38int gethex (const char **sp, const FPI *fpi, Long *expo, Bigint **bp, int sign)
3939{
4040 Bigint *b;
4141 const unsigned char *decpt, *s0, *s, *s1;
......@@ -62,8 +62,7 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign)
6262#endif
6363#endif
6464
65 if (!hexdig['0'])
66 hexdig_init_D2A();
65 /**** if (!hexdig['0']) hexdig_init_D2A(); ****/
6766 *bp = 0;
6867 havedig = 0;
6968 s0 = *(const unsigned char **)sp + 2;
......@@ -125,7 +124,7 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign)
125124 switch(*++s) {
126125 case '-':
127126 esign = 1;
128 /* no break */
127 /* fallthrough */
129128 case '+':
130129 s++;
131130 }
......@@ -177,7 +176,6 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign)
177176 case FPI_Round_down:
178177 if (sign)
179178 goto ovfl1;
180 goto ret_big;
181179 }
182180 ret_big:
183181 nbits = fpi->nbits;
......@@ -190,8 +188,8 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign)
190188 for(j = 0; j < n0; ++j)
191189 b->x[j] = ALL_ON;
192190 if (n > n0)
193 b->x[j] = ULbits >> (ULbits - (nbits & kmask));
194 *expo = fpi->emin;
191 b->x[j] = ALL_ON >> (ULbits - (nbits & kmask));
192 *expo = fpi->emax;
195193 return STRTOG_Normal | STRTOG_Inexlo;
196194 }
197195 n = s1 - s0 - 1;
......@@ -253,6 +251,17 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign)
253251 Bfree(b);
254252 ovfl1:
255253 SET_ERRNO(ERANGE);
254 switch (fpi->rounding) {
255 case FPI_Round_zero:
256 goto ret_big;
257 case FPI_Round_down:
258 if (!sign)
259 goto ret_big;
260 break;
261 case FPI_Round_up:
262 if (sign)
263 goto ret_big;
264 }
256265 return STRTOG_Infinite | STRTOG_Overflow | STRTOG_Inexhi;
257266 }
258267 irv = STRTOG_Normal;
......@@ -262,7 +271,7 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign)
262271 if (n >= nbits) {
263272 switch (fpi->rounding) {
264273 case FPI_Round_near:
265 if (n == nbits && (n < 2 || any_on(b,n-1)))
274 if (n == nbits && (n < 2 || lostbits || any_on(b,n-1)))
266275 goto one_bit;
267276 break;
268277 case FPI_Round_up:
lib/libc/mingw/gdtoa/hd_init.c+23-1
......@@ -31,6 +31,7 @@ THIS SOFTWARE.
3131
3232#include "gdtoaimp.h"
3333
34#if 0
3435unsigned char hexdig[256];
3536
3637static void htinit (unsigned char *h, unsigned char *s, int inc)
......@@ -40,10 +41,31 @@ static void htinit (unsigned char *h, unsigned char *s, int inc)
4041 h[j] = i + inc;
4142}
4243
43void hexdig_init_D2A (void)
44+hexdig_init_D2A(void) /* Use of hexdig_init omitted 20121220 to avoid a */
45 /* race condition when multiple threads are used. */
4446{
4547#define USC (unsigned char *)
4648 htinit(hexdig, USC "0123456789", 0x10);
4749 htinit(hexdig, USC "abcdef", 0x10 + 10);
4850 htinit(hexdig, USC "ABCDEF", 0x10 + 10);
4951}
52#else
53 unsigned char hexdig[256] = {
54 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
55 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
56 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
57 16,17,18,19,20,21,22,23,24,25,0,0,0,0,0,0,
58 0,26,27,28,29,30,31,0,0,0,0,0,0,0,0,0,
59 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
60 0,26,27,28,29,30,31,0,0,0,0,0,0,0,0,0,
61 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
62 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
63 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
64 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
65 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
66 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
67 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
68 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
69 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
70 };
71#endif
lib/libc/mingw/gdtoa/hexnan.c+15-6
......@@ -44,14 +44,13 @@ static void L_shift (ULong *x, ULong *x1, int i)
4444 } while(++x < x1);
4545}
4646
47int hexnan (const char **sp, FPI *fpi, ULong *x0)
47int hexnan (const char **sp, const FPI *fpi, ULong *x0)
4848{
4949 ULong c, h, *x, *x1, *xe;
5050 const char *s;
5151 int havedig, hd0, i, nbits;
5252
53 if (!hexdig['0'])
54 hexdig_init_D2A();
53 /**** if (!hexdig['0']) hexdig_init_D2A(); ****/
5554 nbits = fpi->nbits;
5655 x = x0 + (nbits >> kshift);
5756 if (nbits & kmask)
......@@ -61,8 +60,11 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0)
6160 havedig = hd0 = i = 0;
6261 s = *sp;
6362 /* allow optional initial 0x or 0X */
64 while((c = *(const unsigned char*)(s+1)) && c <= ' ')
63 while((c = *(const unsigned char*)(s+1)) && c <= ' ') {
64 if (!c)
65 goto retnan;
6566 ++s;
67 }
6668 if (s[1] == '0' && (s[2] == 'x' || s[2] == 'X')
6769 && *(const unsigned char*)(s+3) > ' ')
6870 s += 2;
......@@ -81,8 +83,11 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0)
8183 x1 = x;
8284 i = 0;
8385 }
84 while(*(const unsigned char*)(s+1) <= ' ')
86 while((c = *(const unsigned char*)(s+1)) <= ' ') {
87 if (!c)
88 goto retnan;
8589 ++s;
90 }
8691 if (s[1] == '0' && (s[2] == 'x' || s[2] == 'X')
8792 && *(const unsigned char*)(s+3) > ' ')
8893 s += 2;
......@@ -96,10 +101,11 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0)
96101 do {
97102 if (/*(*/ c == ')') {
98103 *sp = s + 1;
99 break;
104 goto break2;
100105 }
101106 } while((c = *++s));
102107#endif
108 retnan:
103109 return STRTOG_NaN;
104110 }
105111 havedig++;
......@@ -111,6 +117,9 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0)
111117 }
112118 *x = (*x << 4) | (h & 0xf);
113119 }
120#ifndef GDTOA_NON_PEDANTIC_NANCHECK
121 break2:
122#endif
114123 if (!havedig)
115124 return STRTOG_NaN;
116125 if (x < x1 && i < 8)
lib/libc/mingw/gdtoa/misc.c+2-2
......@@ -69,7 +69,7 @@ static void dtoa_lock_cleanup (void)
6969 }
7070}
7171
72static void dtoa_lock (int n)
72static void dtoa_lock (unsigned int n)
7373{
7474 if (2 == dtoa_CS_init) {
7575 EnterCriticalSection (&dtoa_CritSec[n]);
......@@ -96,7 +96,7 @@ static void dtoa_lock (int n)
9696 EnterCriticalSection(&dtoa_CritSec[n]);
9797}
9898
99static void dtoa_unlock (int n)
99static void dtoa_unlock (unsigned int n)
100100{
101101 if (2 == dtoa_CS_init)
102102 LeaveCriticalSection (&dtoa_CritSec[n]);
lib/libc/mingw/gdtoa/qnan.c+28-21
......@@ -51,15 +51,27 @@ SOFTWARE.
5151
5252typedef unsigned Long Ulong;
5353
54#ifdef NO_LONG_LONG
55#undef Gen_ld_QNAN
56#endif
57
5458#undef HAVE_IEEE
5559#ifdef IEEE_8087
5660#define _0 1
5761#define _1 0
62#ifdef Gen_ld_QNAN
63#define _3 3
64static int perm[4] = { 0, 1, 2, 3 };
65#endif
5866#define HAVE_IEEE
5967#endif
6068#ifdef IEEE_MC68k
6169#define _0 0
6270#define _1 1
71#ifdef Gen_ld_QNAN
72#define _3 0
73static int perm[4] = { 3, 2, 1, 0 };
74#endif
6375#define HAVE_IEEE
6476#endif
6577
......@@ -75,40 +87,35 @@ main(void)
7587 double d;
7688 Ulong L[4];
7789#ifndef NO_LONG_LONG
78/* need u[8] instead of u[5] for 64 bit */
79 unsigned short u[8];
90 unsigned short u[5];
8091 long double D;
8192#endif
8293 } U;
8394 U a, b, c;
95#ifdef Gen_ld_QNAN
8496 int i;
85 a.L[0]=a.L[1]=a.L[2]=a.L[3]=0;
86 b.L[0]=b.L[1]=b.L[2]=b.L[3]=0;
87 c.L[0]=c.L[1]=c.L[2]=c.L[3]=0;
97#endif
8898
8999 a.L[0] = b.L[0] = 0x7f800000;
90100 c.f = a.f - b.f;
91 printf("#define f_QNAN 0x%lx\n", UL c.L[0]);
101 printf("#define f_QNAN 0x%lx\n", UL (c.L[0] & 0x7fffffff));
92102 a.L[_0] = b.L[_0] = 0x7ff00000;
93103 a.L[_1] = b.L[_1] = 0;
94104 c.d = a.d - b.d; /* quiet NaN */
105 c.L[_0] &= 0x7fffffff;
95106 printf("#define d_QNAN0 0x%lx\n", UL c.L[0]);
96107 printf("#define d_QNAN1 0x%lx\n", UL c.L[1]);
97#ifdef NO_LONG_LONG
98 for(i = 0; i < 4; i++)
99 printf("#define ld_QNAN%d 0xffffffff\n", i);
100 for(i = 0; i < 5; i++)
101 printf("#define ldus_QNAN%d 0xffff\n", i);
102#else
103 b.D = c.D = a.d;
104 if (printf("") < 0)
105 c.D = 37; /* never executed; just defeat optimization */
106 a.L[2] = a.L[3] = 0;
107 a.D = b.D - c.D;
108 for(i = 0; i < 4; i++)
109 printf("#define ld_QNAN%d 0x%lx\n", i, UL a.L[i]);
110 for(i = 0; i < 5; i++)
111 printf("#define ldus_QNAN%d 0x%x\n", i, a.u[i]);
108#ifdef Gen_ld_QNAN
109 if (sizeof(a.D) >= 16) {
110 b.D = c.D = a.d;
111 if (printf("") < 0)
112 c.D = 37; /* never executed; just defeat optimization */
113 a.L[0] = a.L[1] = a.L[2] = a.L[3] = 0;
114 a.D = b.D - c.D;
115 a.L[_3] &= 0x7fffffff;
116 for(i = 0; i < 4; i++)
117 printf("#define ld_QNAN%d 0x%lx\n", i, UL a.L[perm[i]]);
118 }
112119#endif
113120#endif /* HAVE_IEEE */
114121 return 0;
lib/libc/mingw/gdtoa/strtodg.c+25-19
......@@ -270,8 +270,8 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits)
270270{
271271 int abe, abits, asub;
272272 int bb0, bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, decpt, denorm;
273 int dsign, e, e1, e2, emin, esign, finished, i, inex, irv;
274 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign;
273 int dsign, e, e1, e2, emin, esign, finished, i, inex, irv, j, k;
274 int nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign;
275275 int sudden_underflow;
276276 const char *s, *s0, *s1;
277277 double adj0, tol;
......@@ -309,11 +309,11 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits)
309309 for(s = s00;;s++) switch(*s) {
310310 case '-':
311311 sign = 1;
312 /* no break */
312 /* fallthrough */
313313 case '+':
314314 if (*++s)
315315 goto break2;
316 /* no break */
316 /* fallthrough */
317317 case 0:
318318 sign = 0;
319319 irv = STRTOG_NoNumber;
......@@ -411,8 +411,10 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits)
411411 switch(c = *++s) {
412412 case '-':
413413 esign = 1;
414 /* fallthrough */
414415 case '+':
415416 c = *++s;
417 /* fallthrough */
416418 }
417419 if (c >= '0' && c <= '9') {
418420 while(c == '0')
......@@ -494,7 +496,7 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits)
494496
495497 if (!nd0)
496498 nd0 = nd;
497 k = nd < DBL_DIG + 1 ? nd : DBL_DIG + 1;
499 k = nd < DBL_DIG + 2 ? nd : DBL_DIG + 2;
498500 dval(&rv) = y;
499501 if (k > 9)
500502 dval(&rv) = tens[k - 9] * dval(&rv) + z;
......@@ -921,20 +923,31 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits)
921923 Bfree(bd0);
922924 Bfree(delta);
923925 if (rve > fpi->emax) {
926huge:
927 Bfree(rvb);
928 rvb = 0;
929 SET_ERRNO(ERANGE);
924930 switch(fpi->rounding & 3) {
925 case FPI_Round_near:
926 goto huge;
927931 case FPI_Round_up:
928932 if (!sign)
929 goto huge;
933 goto ret_inf;
930934 break;
931935 case FPI_Round_down:
932 if (sign)
933 goto huge;
936 if (!sign)
937 break;
938 /* fallthrough */
939 case FPI_Round_near:
940 ret_inf:
941 irv = STRTOG_Infinite | STRTOG_Overflow | STRTOG_Inexhi;
942 k = nbits >> kshift;
943 if (nbits & kmask)
944 ++k;
945 memset(bits, 0, k*sizeof(ULong));
946 infnanexp:
947 *expo = fpi->emax + 1;
948 goto ret;
934949 }
935950 /* Round to largest representable magnitude */
936 Bfree(rvb);
937 rvb = 0;
938951 irv = STRTOG_Normal | STRTOG_Inexlo;
939952 *expo = fpi->emax;
940953 b = bits;
......@@ -943,13 +956,6 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits)
943956 *b++ = -1;
944957 if ((j = fpi->nbits & 0x1f))
945958 *--be >>= (32 - j);
946 goto ret;
947 huge:
948 rvb->wds = 0;
949 irv = STRTOG_Infinite | STRTOG_Overflow | STRTOG_Inexhi;
950 SET_ERRNO(ERANGE);
951 infnanexp:
952 *expo = fpi->emax + 1;
953959 }
954960 ret:
955961 if (denorm) {
lib/libc/mingw/gdtoa/strtodnrp.c+1-1
......@@ -39,7 +39,7 @@ THIS SOFTWARE.
3939
4040double __strtod (const char *s, char **sp)
4141{
42 static FPI fpi = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI, Int_max };
42 static FPI fpi = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI, Int_max /*unused*/ };
4343 ULong bits[2];
4444 Long expo;
4545 int k;
lib/libc/mingw/gdtoa/strtof.c+2-1
......@@ -33,7 +33,7 @@ THIS SOFTWARE.
3333
3434float __strtof (const char *s, char **sp)
3535{
36 static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI, Int_max };
36 static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI, Int_max /*unused*/ };
3737 ULong bits[1];
3838 Long expo;
3939 int k;
......@@ -46,6 +46,7 @@ float __strtof (const char *s, char **sp)
4646
4747 k = __strtodg(s, sp, fpi, &expo, bits);
4848 switch(k & STRTOG_Retmask) {
49 default: /* unused */
4950 case STRTOG_NoNumber:
5051 case STRTOG_Zero:
5152 u.L[0] = 0;
lib/libc/mingw/gdtoa/strtopx.c+8-6
......@@ -31,6 +31,8 @@ THIS SOFTWARE.
3131
3232#include "gdtoaimp.h"
3333
34 extern UShort NanDflt_ldus_D2A[5];
35
3436#undef _0
3537#undef _1
3638
......@@ -63,7 +65,7 @@ typedef union lD {
6365static int __strtopx (const char *s, char **sp, lD *V)
6466{
6567 static FPI fpi0 = { 64, 1-16383-64+1, 32766 - 16383 - 64 + 1, 1, SI,
66 Int_max };
68 Int_max /*unused*/ };
6769 ULong bits[2];
6870 Long expo;
6971 int k;
......@@ -103,11 +105,11 @@ static int __strtopx (const char *s, char **sp, lD *V)
103105 break;
104106
105107 case STRTOG_NaN:
106 L[0] = ldus_QNAN0;
107 L[1] = ldus_QNAN1;
108 L[2] = ldus_QNAN2;
109 L[3] = ldus_QNAN3;
110 L[4] = ldus_QNAN4;
108 L[_4] = NanDflt_ldus_D2A[0];
109 L[_3] = NanDflt_ldus_D2A[1];
110 L[_2] = NanDflt_ldus_D2A[2];
111 L[_1] = NanDflt_ldus_D2A[3];
112 L[_0] = NanDflt_ldus_D2A[4];
111113 }
112114 if (k & STRTOG_Neg)
113115 L[_0] |= 0x8000;
lib/libc/mingw/include/config.h deleted-73
......@@ -1,73 +0,0 @@
1/* config.h. Generated from config.h.in by configure. */
2/* config.h.in. Generated from configure.ac by autoheader. */
3
4/* Define to 1 if you have the <inttypes.h> header file. */
5#define HAVE_INTTYPES_H 1
6
7/* Define to 1 if you have the <stdint.h> header file. */
8#define HAVE_STDINT_H 1
9
10/* Define to 1 if you have the <stdio.h> header file. */
11#define HAVE_STDIO_H 1
12
13/* Define to 1 if you have the <stdlib.h> header file. */
14#define HAVE_STDLIB_H 1
15
16/* Define to 1 if you have the <strings.h> header file. */
17#define HAVE_STRINGS_H 1
18
19/* Define to 1 if you have the <string.h> header file. */
20#define HAVE_STRING_H 1
21
22/* Define to 1 if you have the <sys/stat.h> header file. */
23#define HAVE_SYS_STAT_H 1
24
25/* Define to 1 if you have the <sys/types.h> header file. */
26#define HAVE_SYS_TYPES_H 1
27
28/* Define to 1 if you have the <unistd.h> header file. */
29#define HAVE_UNISTD_H 1
30
31/* Name of package */
32#define PACKAGE "mingw-w64-runtime"
33
34/* Define to the address where bug reports for this package should be sent. */
35#define PACKAGE_BUGREPORT "mingw-w64-public@lists.sourceforge.net"
36
37/* Define to the full name of this package. */
38#define PACKAGE_NAME "mingw-w64-runtime"
39
40/* Define to the full name and version of this package. */
41#define PACKAGE_STRING "mingw-w64-runtime 4.0b"
42
43/* Define to the one symbol short name of this package. */
44#define PACKAGE_TARNAME "mingw-w64-runtime"
45
46/* Define to the home page for this package. */
47#define PACKAGE_URL ""
48
49/* Define to the version of this package. */
50#define PACKAGE_VERSION "4.0b"
51
52/* Define to 1 if all of the C90 standard headers exist (not just the ones
53 required in a freestanding environment). This macro is provided for
54 backward compatibility; new code need not use it. */
55#define STDC_HEADERS 1
56
57/* Version number of package */
58#define VERSION "4.0b"
59
60/* Build DFP support */
61/* #undef __ENABLE_DFP */
62
63/* Define as -1 to enable command line globbing or 0 to disable it. */
64#define __ENABLE_GLOBBING 0
65
66/* Build DFP support */
67/* #undef __ENABLE_PRINTF128 */
68
69/* Build DFP support */
70/* #undef __ENABLE_REGISTEREDPRINTF */
71
72/* Build softmath routines */
73/* #undef __ENABLE_SOFTMATH */
lib/libc/mingw/include/sect_attribs.h+1-1
......@@ -65,7 +65,7 @@
6565#if defined(_MSC_VER)
6666#define _CRTALLOC(x) __declspec(allocate(x))
6767#elif defined(__GNUC__)
68#define _CRTALLOC(x) __attribute__ ((section (x) ))
68#define _CRTALLOC(x) __attribute__ ((section (x), used))
6969#else
7070#error Your compiler is not supported.
7171#endif
lib/libc/mingw/lib-common/acledit.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file ACLEDIT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ACLEDIT.dll
8EXPORTS
9EditAuditInfo
10EditOwnerInfo
11EditPermissionInfo
12DllMain
13FMExtensionProcW
14SedDiscretionaryAclEditor
15SedSystemAclEditor
16SedTakeOwnership
lib/libc/mingw/lib-common/advapi32.def.in+11
......@@ -441,12 +441,15 @@ LsaAddAccountRights
441441LsaAddPrivilegesToAccount
442442LsaClearAuditLog
443443LsaClose
444LsaConfigureAutoLogonCredentials
444445LsaCreateAccount
445446LsaCreateSecret
446447LsaCreateTrustedDomain
447448LsaCreateTrustedDomainEx
448449LsaDelete
449450LsaDeleteTrustedDomain
451LsaDisableUserArso
452LsaEnableUserArso
450453LsaEnumerateAccountRights
451454LsaEnumerateAccounts
452455LsaEnumerateAccountsWithUserRight
......@@ -456,6 +459,7 @@ LsaEnumerateTrustedDomains
456459LsaEnumerateTrustedDomainsEx
457460LsaFreeMemory
458461LsaGetAppliedCAPIDs
462LsaGetDeviceRegistrationInfo
459463LsaGetQuotasForAccount
460464LsaGetRemoteUserName
461465LsaGetSystemAccessAccount
......@@ -464,6 +468,9 @@ LsaICLookupNames
464468LsaICLookupNamesWithCreds
465469LsaICLookupSids
466470LsaICLookupSidsWithCreds
471LsaInvokeTrustScanner
472LsaIsUserArsoAllowed
473LsaIsUserArsoEnabled
467474LsaLookupNames
468475LsaLookupNames2
469476LsaLookupPrivilegeDisplayName
......@@ -479,9 +486,11 @@ LsaOpenPolicySce
479486LsaOpenSecret
480487LsaOpenTrustedDomain
481488LsaOpenTrustedDomainByName
489LsaProfileDeleted
482490LsaQueryCAPs
483491LsaQueryDomainInformationPolicy
484492LsaQueryForestTrustInformation
493LsaQueryForestTrustInformation2
485494LsaQueryInfoTrustedDomain
486495LsaQueryInformationPolicy
487496LsaQuerySecret
......@@ -494,6 +503,7 @@ LsaRetrievePrivateData
494503LsaSetCAPs
495504LsaSetDomainInformationPolicy
496505LsaSetForestTrustInformation
506LsaSetForestTrustInformation2
497507LsaSetInformationPolicy
498508LsaSetInformationTrustedDomain
499509LsaSetQuotasForAccount
......@@ -503,6 +513,7 @@ LsaSetSystemAccessAccount
503513LsaSetTrustedDomainInfoByName
504514LsaSetTrustedDomainInformation
505515LsaStorePrivateData
516LsaValidateProcUniqueLuid
506517MD4Final
507518MD4Init
508519MD4Update
lib/libc/mingw/lib-common/advpack.def-5
......@@ -21,10 +21,8 @@ AdvInstallFileW
2121CloseINFEngine
2222DelNode
2323DelNodeA
24DelNodeRunDLL32
2524DelNodeRunDLL32W
2625DelNodeW
27DoInfInstall
2826ExecuteCab
2927ExecuteCabA
3028ExecuteCabW
......@@ -34,7 +32,6 @@ ExtractFilesW
3432FileSaveMarkNotExist
3533FileSaveMarkNotExistA
3634FileSaveMarkNotExistW
37FileSaveRestore
3835FileSaveRestoreOnINF
3936FileSaveRestoreOnINFA
4037FileSaveRestoreOnINFW
......@@ -47,7 +44,6 @@ GetVersionFromFileExW
4744GetVersionFromFileW
4845IsNTAdmin
4946LaunchINFSection
50LaunchINFSectionEx
5147LaunchINFSectionExW
5248LaunchINFSectionW
5349NeedReboot
......@@ -70,7 +66,6 @@ RegSaveRestoreOnINF
7066RegSaveRestoreOnINFA
7167RegSaveRestoreOnINFW
7268RegSaveRestoreW
73RegisterOCX
7469RunSetupCommand
7570RunSetupCommandA
7671RunSetupCommandW
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-1.def deleted-19
......@@ -1,19 +0,0 @@
1LIBRARY api-ms-win-appmodel-runtime-l1-1-1
2
3EXPORTS
4
5FormatApplicationUserModelId
6GetCurrentApplicationUserModelId
7GetCurrentPackageFamilyName
8GetCurrentPackageId
9PackageFamilyNameFromFullName
10PackageFamilyNameFromId
11PackageFullNameFromId
12PackageIdFromFullName
13PackageNameAndPublisherIdFromFamilyName
14ParseApplicationUserModelId
15VerifyApplicationUserModelId
16VerifyPackageFamilyName
17VerifyPackageFullName
18VerifyPackageId
19VerifyPackageRelativeApplicationId
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-1.def deleted-23
......@@ -1,23 +0,0 @@
1LIBRARY api-ms-win-core-comm-l1-1-1
2
3EXPORTS
4
5ClearCommBreak
6ClearCommError
7EscapeCommFunction
8GetCommConfig
9GetCommMask
10GetCommModemStatus
11GetCommProperties
12GetCommState
13GetCommTimeouts
14OpenCommPort
15PurgeComm
16SetCommBreak
17SetCommConfig
18SetCommMask
19SetCommState
20SetCommTimeouts
21SetupComm
22TransmitCommChar
23WaitCommEvent
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-2.def deleted-24
......@@ -1,24 +0,0 @@
1LIBRARY api-ms-win-core-comm-l1-1-2
2
3EXPORTS
4
5ClearCommBreak
6ClearCommError
7EscapeCommFunction
8GetCommConfig
9GetCommMask
10GetCommModemStatus
11GetCommPorts
12GetCommProperties
13GetCommState
14GetCommTimeouts
15OpenCommPort
16PurgeComm
17SetCommBreak
18SetCommConfig
19SetCommMask
20SetCommState
21SetCommTimeouts
22SetupComm
23TransmitCommChar
24WaitCommEvent
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-3.def deleted-17
......@@ -1,17 +0,0 @@
1LIBRARY api-ms-win-core-errorhandling-l1-1-3
2
3EXPORTS
4
5AddVectoredExceptionHandler
6FatalAppExitA
7FatalAppExitW
8GetLastError
9GetThreadErrorMode
10RaiseException
11RaiseFailFastException
12RemoveVectoredExceptionHandler
13SetErrorMode
14SetLastError
15SetThreadErrorMode
16SetUnhandledExceptionFilter
17UnhandledExceptionFilter
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-0.def deleted-9
......@@ -1,9 +0,0 @@
1LIBRARY api-ms-win-core-featurestaging-l1-1-0
2
3EXPORTS
4
5GetFeatureEnabledState
6RecordFeatureError
7RecordFeatureUsage
8SubscribeFeatureStateChangeNotification
9UnsubscribeFeatureStateChangeNotification
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-1.def deleted-10
......@@ -1,10 +0,0 @@
1LIBRARY api-ms-win-core-featurestaging-l1-1-1
2
3EXPORTS
4
5GetFeatureEnabledState
6GetFeatureVariant
7RecordFeatureError
8RecordFeatureUsage
9SubscribeFeatureStateChangeNotification
10UnsubscribeFeatureStateChangeNotification
lib/libc/mingw/lib-common/api-ms-win-core-file-fromapp-l1-1-0.def deleted-15
......@@ -1,15 +0,0 @@
1LIBRARY api-ms-win-core-file-fromapp-l1-1-0
2
3EXPORTS
4
5CopyFileFromAppW
6CreateDirectoryFromAppW
7CreateFile2FromAppW
8CreateFileFromAppW
9DeleteFileFromAppW
10FindFirstFileExFromAppW
11GetFileAttributesExFromAppW
12MoveFileFromAppW
13RemoveDirectoryFromAppW
14ReplaceFileFromAppW
15SetFileAttributesFromAppW
lib/libc/mingw/lib-common/api-ms-win-core-handle-l1-1-0.def deleted-9
......@@ -1,9 +0,0 @@
1LIBRARY api-ms-win-core-handle-l1-1-0
2
3EXPORTS
4
5CloseHandle
6CompareObjectHandles
7DuplicateHandle
8GetHandleInformation
9SetHandleInformation
lib/libc/mingw/lib-common/api-ms-win-core-libraryloader-l2-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-libraryloader-l2-1-0
2
3EXPORTS
4
5LoadPackagedLibrary
6QueryOptionalDelayLoadedAPI
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-3.def deleted-35
......@@ -1,35 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-3
2
3EXPORTS
4
5CreateFileMappingFromApp
6CreateFileMappingW
7DiscardVirtualMemory
8FlushViewOfFile
9GetLargePageMinimum
10GetProcessWorkingSetSizeEx
11GetWriteWatch
12MapViewOfFile
13MapViewOfFileEx
14MapViewOfFileFromApp
15OfferVirtualMemory
16OpenFileMappingFromApp
17OpenFileMappingW
18ReadProcessMemory
19ReclaimVirtualMemory
20ResetWriteWatch
21SetProcessValidCallTargets
22SetProcessWorkingSetSizeEx
23UnmapViewOfFile
24UnmapViewOfFileEx
25VirtualAlloc
26VirtualAllocFromApp
27VirtualFree
28VirtualFreeEx
29VirtualLock
30VirtualProtect
31VirtualProtectFromApp
32VirtualQuery
33VirtualQueryEx
34VirtualUnlock
35WriteProcessMemory
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-5.def deleted-37
......@@ -1,37 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-5
2
3EXPORTS
4
5CreateFileMappingFromApp
6CreateFileMappingW
7DiscardVirtualMemory
8FlushViewOfFile
9GetLargePageMinimum
10GetProcessWorkingSetSizeEx
11GetWriteWatch
12MapViewOfFile
13MapViewOfFileEx
14MapViewOfFileFromApp
15OfferVirtualMemory
16OpenFileMappingFromApp
17OpenFileMappingW
18ReadProcessMemory
19ReclaimVirtualMemory
20ResetWriteWatch
21SetProcessValidCallTargets
22SetProcessWorkingSetSizeEx
23UnmapViewOfFile
24UnmapViewOfFile2
25UnmapViewOfFileEx
26VirtualAlloc
27VirtualAllocFromApp
28VirtualFree
29VirtualFreeEx
30VirtualLock
31VirtualProtect
32VirtualProtectFromApp
33VirtualQuery
34VirtualQueryEx
35VirtualUnlock
36VirtualUnlockEx
37WriteProcessMemory
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-6.def deleted-39
......@@ -1,39 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-6
2
3EXPORTS
4
5CreateFileMappingFromApp
6CreateFileMappingW
7DiscardVirtualMemory
8FlushViewOfFile
9GetLargePageMinimum
10GetProcessWorkingSetSizeEx
11GetWriteWatch
12MapViewOfFile
13MapViewOfFile3FromApp
14MapViewOfFileEx
15MapViewOfFileFromApp
16OfferVirtualMemory
17OpenFileMappingFromApp
18OpenFileMappingW
19ReadProcessMemory
20ReclaimVirtualMemory
21ResetWriteWatch
22SetProcessValidCallTargets
23SetProcessWorkingSetSizeEx
24UnmapViewOfFile
25UnmapViewOfFile2
26UnmapViewOfFileEx
27VirtualAlloc
28VirtualAlloc2FromApp
29VirtualAllocFromApp
30VirtualFree
31VirtualFreeEx
32VirtualLock
33VirtualProtect
34VirtualProtectFromApp
35VirtualQuery
36VirtualQueryEx
37VirtualUnlock
38VirtualUnlockEx
39WriteProcessMemory
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-7.def deleted-40
......@@ -1,40 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-7
2
3EXPORTS
4
5CreateFileMappingFromApp
6CreateFileMappingW
7DiscardVirtualMemory
8FlushViewOfFile
9GetLargePageMinimum
10GetProcessWorkingSetSizeEx
11GetWriteWatch
12MapViewOfFile
13MapViewOfFile3FromApp
14MapViewOfFileEx
15MapViewOfFileFromApp
16OfferVirtualMemory
17OpenFileMappingFromApp
18OpenFileMappingW
19ReadProcessMemory
20ReclaimVirtualMemory
21ResetWriteWatch
22SetProcessValidCallTargets
23SetProcessValidCallTargetsForMappedView
24SetProcessWorkingSetSizeEx
25UnmapViewOfFile
26UnmapViewOfFile2
27UnmapViewOfFileEx
28VirtualAlloc
29VirtualAlloc2FromApp
30VirtualAllocFromApp
31VirtualFree
32VirtualFreeEx
33VirtualLock
34VirtualProtect
35VirtualProtectFromApp
36VirtualQuery
37VirtualQueryEx
38VirtualUnlock
39VirtualUnlockEx
40WriteProcessMemory
lib/libc/mingw/lib-common/api-ms-win-core-path-l1-1-0.def deleted-26
......@@ -1,26 +0,0 @@
1LIBRARY api-ms-win-core-path-l1-1-0
2
3EXPORTS
4
5PathAllocCanonicalize
6PathAllocCombine
7PathCchAddBackslash
8PathCchAddBackslashEx
9PathCchAddExtension
10PathCchAppend
11PathCchAppendEx
12PathCchCanonicalize
13PathCchCanonicalizeEx
14PathCchCombine
15PathCchCombineEx
16PathCchFindExtension
17PathCchIsRoot
18PathCchRemoveBackslash
19PathCchRemoveBackslashEx
20PathCchRemoveExtension
21PathCchRemoveFileSpec
22PathCchRenameExtension
23PathCchSkipRoot
24PathCchStripPrefix
25PathCchStripToRoot
26PathIsUNCEx
lib/libc/mingw/lib-common/api-ms-win-core-psm-appnotify-l1-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-psm-appnotify-l1-1-0
2
3EXPORTS
4
5RegisterAppStateChangeNotification
6UnregisterAppStateChangeNotification
lib/libc/mingw/lib-common/api-ms-win-core-realtime-l1-1-1.def deleted-9
......@@ -1,9 +0,0 @@
1LIBRARY api-ms-win-core-realtime-l1-1-1
2
3EXPORTS
4
5QueryInterruptTime
6QueryInterruptTimePrecise
7QueryThreadCycleTime
8QueryUnbiasedInterruptTime
9QueryUnbiasedInterruptTimePrecise
lib/libc/mingw/lib-common/api-ms-win-core-realtime-l1-1-2.def deleted-12
......@@ -1,12 +0,0 @@
1LIBRARY api-ms-win-core-realtime-l1-1-2
2
3EXPORTS
4
5ConvertAuxiliaryCounterToPerformanceCounter
6ConvertPerformanceCounterToAuxiliaryCounter
7QueryAuxiliaryCounterFrequency
8QueryInterruptTime
9QueryInterruptTimePrecise
10QueryThreadCycleTime
11QueryUnbiasedInterruptTime
12QueryUnbiasedInterruptTimePrecise
lib/libc/mingw/lib-common/api-ms-win-core-slapi-l1-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-slapi-l1-1-0
2
3EXPORTS
4
5SLQueryLicenseValueFromApp
6SLQueryLicenseValueFromApp2
lib/libc/mingw/lib-common/api-ms-win-core-synch-l1-2-0.def deleted-59
......@@ -1,59 +0,0 @@
1LIBRARY api-ms-win-core-synch-l1-2-0
2
3EXPORTS
4
5AcquireSRWLockExclusive
6AcquireSRWLockShared
7CancelWaitableTimer
8CreateEventA
9CreateEventExA
10CreateEventExW
11CreateEventW
12CreateMutexA
13CreateMutexExA
14CreateMutexExW
15CreateMutexW
16CreateSemaphoreExW
17CreateWaitableTimerExW
18DeleteCriticalSection
19EnterCriticalSection
20InitializeConditionVariable
21InitializeCriticalSection
22InitializeCriticalSectionAndSpinCount
23InitializeCriticalSectionEx
24InitializeSRWLock
25InitOnceBeginInitialize
26InitOnceComplete
27InitOnceExecuteOnce
28InitOnceInitialize
29LeaveCriticalSection
30OpenEventA
31OpenEventW
32OpenMutexW
33OpenSemaphoreW
34OpenWaitableTimerW
35ReleaseMutex
36ReleaseSemaphore
37ReleaseSRWLockExclusive
38ReleaseSRWLockShared
39ResetEvent
40SetCriticalSectionSpinCount
41SetEvent
42SetWaitableTimer
43SetWaitableTimerEx
44SignalObjectAndWait
45Sleep
46SleepConditionVariableCS
47SleepConditionVariableSRW
48SleepEx
49TryAcquireSRWLockExclusive
50TryAcquireSRWLockShared
51TryEnterCriticalSection
52WaitForMultipleObjectsEx
53WaitForSingleObject
54WaitForSingleObjectEx
55WaitOnAddress
56WakeAllConditionVariable
57WakeByAddressAll
58WakeByAddressSingle
59WakeConditionVariable
lib/libc/mingw/lib-common/api-ms-win-core-sysinfo-l1-2-0.def deleted-31
......@@ -1,31 +0,0 @@
1LIBRARY api-ms-win-core-sysinfo-l1-2-0
2
3EXPORTS
4
5EnumSystemFirmwareTables
6GetComputerNameExA
7GetComputerNameExW
8GetLocalTime
9GetLogicalProcessorInformation
10GetLogicalProcessorInformationEx
11GetNativeSystemInfo
12GetProductInfo
13GetSystemDirectoryA
14GetSystemDirectoryW
15GetSystemFirmwareTable
16GetSystemInfo
17GetSystemTime
18GetSystemTimeAdjustment
19GetSystemTimeAsFileTime
20GetSystemTimePreciseAsFileTime
21GetTickCount
22GetTickCount64
23GetVersion
24GetVersionExA
25GetVersionExW
26GetWindowsDirectoryA
27GetWindowsDirectoryW
28GlobalMemoryStatusEx
29SetLocalTime
30SetSystemTime
31VerSetConditionMask
lib/libc/mingw/lib-common/api-ms-win-core-sysinfo-l1-2-3.def deleted-33
......@@ -1,33 +0,0 @@
1LIBRARY api-ms-win-core-sysinfo-l1-2-3
2
3EXPORTS
4
5EnumSystemFirmwareTables
6GetComputerNameExA
7GetComputerNameExW
8GetIntegratedDisplaySize
9GetLocalTime
10GetLogicalProcessorInformation
11GetLogicalProcessorInformationEx
12GetNativeSystemInfo
13GetPhysicallyInstalledSystemMemory
14GetProductInfo
15GetSystemDirectoryA
16GetSystemDirectoryW
17GetSystemFirmwareTable
18GetSystemInfo
19GetSystemTime
20GetSystemTimeAdjustment
21GetSystemTimeAsFileTime
22GetSystemTimePreciseAsFileTime
23GetTickCount
24GetTickCount64
25GetVersion
26GetVersionExA
27GetVersionExW
28GetWindowsDirectoryA
29GetWindowsDirectoryW
30GlobalMemoryStatusEx
31SetLocalTime
32SetSystemTime
33VerSetConditionMask
lib/libc/mingw/lib-common/api-ms-win-core-winrt-error-l1-1-0.def deleted-15
......@@ -1,15 +0,0 @@
1LIBRARY api-ms-win-core-winrt-error-l1-1-0
2
3EXPORTS
4
5GetRestrictedErrorInfo
6RoCaptureErrorContext
7RoFailFastWithErrorContext
8RoGetErrorReportingFlags
9RoOriginateError
10RoOriginateErrorW
11RoResolveRestrictedErrorInfoReference
12RoSetErrorReportingFlags
13RoTransformError
14RoTransformErrorW
15SetRestrictedErrorInfo
lib/libc/mingw/lib-common/api-ms-win-core-winrt-error-l1-1-1.def deleted-22
......@@ -1,22 +0,0 @@
1LIBRARY api-ms-win-core-winrt-error-l1-1-1
2
3EXPORTS
4
5GetRestrictedErrorInfo
6IsErrorPropagationEnabled
7RoCaptureErrorContext
8RoClearError
9RoFailFastWithErrorContext
10RoGetErrorReportingFlags
11RoGetMatchingRestrictedErrorInfo
12RoInspectCapturedStackBackTrace
13RoInspectThreadErrorInfo
14RoOriginateError
15RoOriginateErrorW
16RoOriginateLanguageException
17RoReportFailedDelegate
18RoReportUnhandledError
19RoSetErrorReportingFlags
20RoTransformError
21RoTransformErrorW
22SetRestrictedErrorInfo
lib/libc/mingw/lib-common/api-ms-win-core-winrt-l1-1-0.def deleted-13
......@@ -1,13 +0,0 @@
1LIBRARY api-ms-win-core-winrt-l1-1-0
2
3EXPORTS
4
5RoActivateInstance
6RoGetActivationFactory
7RoGetApartmentIdentifier
8RoInitialize
9RoRegisterActivationFactories
10RoRegisterForApartmentShutdown
11RoRevokeActivationFactories
12RoUninitialize
13RoUnregisterForApartmentShutdown
lib/libc/mingw/lib-common/api-ms-win-core-winrt-registration-l1-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-winrt-registration-l1-1-0
2
3EXPORTS
4
5RoGetActivatableClassRegistration
6RoGetServerActivatableClasses
lib/libc/mingw/lib-common/api-ms-win-core-winrt-robuffer-l1-1-0.def deleted-5
......@@ -1,5 +0,0 @@
1LIBRARY api-ms-win-core-winrt-robuffer-l1-1-0
2
3EXPORTS
4
5RoGetBufferMarshaler
lib/libc/mingw/lib-common/api-ms-win-core-winrt-roparameterizediid-l1-1-0.def deleted-7
......@@ -1,7 +0,0 @@
1LIBRARY api-ms-win-core-winrt-roparameterizediid-l1-1-0
2
3EXPORTS
4
5RoFreeParameterizedTypeExtra
6RoGetParameterizedTypeInstanceIID
7RoParameterizedTypeExtraGetTypeSignature
lib/libc/mingw/lib-common/api-ms-win-core-winrt-string-l1-1-0.def deleted-31
......@@ -1,31 +0,0 @@
1LIBRARY api-ms-win-core-winrt-string-l1-1-0
2
3EXPORTS
4
5HSTRING_UserFree
6HSTRING_UserFree64
7HSTRING_UserMarshal
8HSTRING_UserMarshal64
9HSTRING_UserSize
10HSTRING_UserSize64
11HSTRING_UserUnmarshal
12HSTRING_UserUnmarshal64
13WindowsCompareStringOrdinal
14WindowsConcatString
15WindowsCreateString
16WindowsCreateStringReference
17WindowsDeleteString
18WindowsDeleteStringBuffer
19WindowsDuplicateString
20WindowsGetStringLen
21WindowsGetStringRawBuffer
22WindowsInspectString
23WindowsIsStringEmpty
24WindowsPreallocateStringBuffer
25WindowsPromoteStringBuffer
26WindowsReplaceString
27WindowsStringHasEmbeddedNull
28WindowsSubstring
29WindowsSubstringWithSpecifiedLength
30WindowsTrimStringEnd
31WindowsTrimStringStart
lib/libc/mingw/lib-common/api-ms-win-core-wow64-l1-1-1.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-wow64-l1-1-1
2
3EXPORTS
4
5IsWow64Process
6IsWow64Process2
lib/libc/mingw/lib-common/api-ms-win-devices-config-l1-1-1.def deleted-17
......@@ -1,17 +0,0 @@
1LIBRARY api-ms-win-devices-config-l1-1-1
2
3EXPORTS
4
5CM_Get_Device_ID_List_SizeW
6CM_Get_Device_ID_ListW
7CM_Get_Device_IDW
8CM_Get_Device_Interface_List_SizeW
9CM_Get_Device_Interface_ListW
10CM_Get_Device_Interface_PropertyW
11CM_Get_DevNode_PropertyW
12CM_Get_DevNode_Status
13CM_Get_Parent
14CM_Locate_DevNodeW
15CM_MapCrToWin32Err
16CM_Register_Notification
17CM_Unregister_Notification
lib/libc/mingw/lib-common/api-ms-win-gaming-deviceinformation-l1-1-0.def deleted-5
......@@ -1,5 +0,0 @@
1LIBRARY api-ms-win-gaming-deviceinformation-l1-1-0
2
3EXPORTS
4
5GetGamingDeviceModelInformation
lib/libc/mingw/lib-common/api-ms-win-gaming-expandedresources-l1-1-0.def deleted-7
......@@ -1,7 +0,0 @@
1LIBRARY api-ms-win-gaming-expandedresources-l1-1-0
2
3EXPORTS
4
5GetExpandedResourceExclusiveCpuCount
6HasExpandedResources
7ReleaseExclusiveCpuSets
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-0.def deleted-11
......@@ -1,11 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-0
2
3EXPORTS
4
5ProcessPendingGameUI
6ShowChangeFriendRelationshipUI
7ShowGameInviteUI
8ShowPlayerPickerUI
9ShowProfileCardUI
10ShowTitleAchievementsUI
11TryCancelPendingGameUI
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-2.def deleted-20
......@@ -1,20 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-2
2
3EXPORTS
4
5CheckGamingPrivilegeSilently
6CheckGamingPrivilegeSilentlyForUser
7CheckGamingPrivilegeWithUI
8CheckGamingPrivilegeWithUIForUser
9ProcessPendingGameUI
10ShowChangeFriendRelationshipUI
11ShowChangeFriendRelationshipUIForUser
12ShowGameInviteUI
13ShowGameInviteUIForUser
14ShowPlayerPickerUI
15ShowPlayerPickerUIForUser
16ShowProfileCardUI
17ShowProfileCardUIForUser
18ShowTitleAchievementsUI
19ShowTitleAchievementsUIForUser
20TryCancelPendingGameUI
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-3.def deleted-22
......@@ -1,22 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-3
2
3EXPORTS
4
5CheckGamingPrivilegeSilently
6CheckGamingPrivilegeSilentlyForUser
7CheckGamingPrivilegeWithUI
8CheckGamingPrivilegeWithUIForUser
9ProcessPendingGameUI
10ShowChangeFriendRelationshipUI
11ShowChangeFriendRelationshipUIForUser
12ShowGameInviteUI
13ShowGameInviteUIForUser
14ShowGameInviteUIWithContext
15ShowGameInviteUIWithContextForUser
16ShowPlayerPickerUI
17ShowPlayerPickerUIForUser
18ShowProfileCardUI
19ShowProfileCardUIForUser
20ShowTitleAchievementsUI
21ShowTitleAchievementsUIForUser
22TryCancelPendingGameUI
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-4.def deleted-30
......@@ -1,30 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-4
2
3EXPORTS
4
5CheckGamingPrivilegeSilently
6CheckGamingPrivilegeSilentlyForUser
7CheckGamingPrivilegeWithUI
8CheckGamingPrivilegeWithUIForUser
9ProcessPendingGameUI
10ShowChangeFriendRelationshipUI
11ShowChangeFriendRelationshipUIForUser
12ShowCustomizeUserProfileUI
13ShowCustomizeUserProfileUIForUser
14ShowFindFriendsUI
15ShowFindFriendsUIForUser
16ShowGameInfoUI
17ShowGameInfoUIForUser
18ShowGameInviteUI
19ShowGameInviteUIForUser
20ShowGameInviteUIWithContext
21ShowGameInviteUIWithContextForUser
22ShowPlayerPickerUI
23ShowPlayerPickerUIForUser
24ShowProfileCardUI
25ShowProfileCardUIForUser
26ShowTitleAchievementsUI
27ShowTitleAchievementsUIForUser
28ShowUserSettingsUI
29ShowUserSettingsUIForUser
30TryCancelPendingGameUI
lib/libc/mingw/lib-common/api-ms-win-security-isolatedcontainer-l1-1-0.def deleted-5
......@@ -1,5 +0,0 @@
1LIBRARY api-ms-win-security-isolatedcontainer-l1-1-0
2
3EXPORTS
4
5IsProcessInIsolatedContainer
lib/libc/mingw/lib-common/api-ms-win-shcore-stream-winrt-l1-1-0.def deleted-7
......@@ -1,7 +0,0 @@
1LIBRARY api-ms-win-shcore-stream-winrt-l1-1-0
2
3EXPORTS
4
5CreateRandomAccessStreamOnFile
6CreateRandomAccessStreamOverStream
7CreateStreamOverRandomAccessStream
lib/libc/mingw/lib-common/appmgmts.def created+25
......@@ -0,0 +1,25 @@
1;
2; Exports of file APPMGMTS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY APPMGMTS.dll
8EXPORTS
9CsSetOptions
10CsCreateClassStore
11CsEnumApps
12CsGetAppCategories
13CsGetClassAccess
14CsGetClassStore
15CsGetClassStorePath
16CsRegisterAppCategory
17CsServerGetClassStore
18CsUnregisterAppCategory
19GenerateGroupPolicy
20IID_IClassAdmin
21ProcessGroupPolicyObjectsEx
22ReleaseAppCategoryInfoList
23ReleasePackageDetail
24ReleasePackageInfo
25ServiceMain
lib/libc/mingw/lib-common/appmgr.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file SNAPIN.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SNAPIN.DLL
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13GenerateScript
lib/libc/mingw/lib-common/asycfilt.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file ASYCFILT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ASYCFILT.dll
8EXPORTS
9DllCanUnloadNow
10FilterCreateInstance
lib/libc/mingw/lib-common/atl.def created+57
......@@ -0,0 +1,57 @@
1;
2; Definition file of ATL.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ATL.DLL"
7EXPORTS
8AtlAdvise
9AtlUnadvise
10AtlFreeMarshalStream
11AtlMarshalPtrInProc
12AtlUnmarshalPtr
13AtlModuleGetClassObject
14AtlModuleInit
15AtlModuleRegisterClassObjects
16AtlModuleRegisterServer
17AtlModuleRegisterTypeLib
18AtlModuleRevokeClassObjects
19AtlModuleTerm
20AtlModuleUnregisterServer
21AtlModuleUpdateRegistryFromResourceD
22AtlWaitWithMessageLoop
23AtlSetErrorInfo
24AtlCreateTargetDC
25AtlHiMetricToPixel
26AtlPixelToHiMetric
27AtlDevModeW2A
28AtlComPtrAssign
29AtlComQIPtrAssign
30AtlInternalQueryInterface
31AtlGetVersion
32AtlAxDialogBoxW
33AtlAxDialogBoxA
34AtlAxCreateDialogW
35AtlAxCreateDialogA
36AtlAxCreateControl
37AtlAxCreateControlEx
38AtlAxAttachControl
39AtlAxWinInit
40AtlModuleAddCreateWndData
41AtlModuleExtractCreateWndData
42AtlModuleRegisterWndClassInfoW
43AtlModuleRegisterWndClassInfoA
44AtlAxGetControl
45AtlAxGetHost
46AtlRegisterClassCategoriesHelper
47AtlIPersistStreamInit_Load
48AtlIPersistStreamInit_Save
49AtlIPersistPropertyBag_Load
50AtlIPersistPropertyBag_Save
51AtlGetObjectSourceInterface
52AtlModuleUnRegisterTypeLib
53AtlModuleLoadTypeLib
54AtlModuleUnregisterServerEx
55AtlModuleAddTermFunc
56AtlSetErrorInfo2
57AtlIPersistStreamInit_GetSizeMax
lib/libc/mingw/lib-common/audiosrv.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file AUDIOSRV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AUDIOSRV.dll
8EXPORTS
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/lib-common/avicap32.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file AVICAP32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AVICAP32.dll
8EXPORTS
9AppCleanup
10capCreateCaptureWindowA
11capCreateCaptureWindowW
12capGetDriverDescriptionA
13capGetDriverDescriptionW
14videoThunk32
lib/libc/mingw/lib-common/avifil32.def created+84
......@@ -0,0 +1,84 @@
1;
2; Exports of file AVIFIL32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AVIFIL32.dll
8EXPORTS
9AVIBuildFilter
10AVIBuildFilterA
11AVIBuildFilterW
12AVIClearClipboard
13AVIFileAddRef
14AVIFileCreateStream
15AVIFileCreateStreamA
16AVIFileCreateStreamW
17AVIFileEndRecord
18AVIFileExit
19AVIFileGetStream
20AVIFileInfo
21AVIFileInfoA
22AVIFileInfoW
23AVIFileInit
24AVIFileOpen
25AVIFileOpenA
26AVIFileOpenW
27AVIFileReadData
28AVIFileRelease
29AVIFileWriteData
30AVIGetFromClipboard
31AVIMakeCompressedStream
32AVIMakeFileFromStreams
33AVIMakeStreamFromClipboard
34AVIPutFileOnClipboard
35AVISave
36AVISaveA
37AVISaveOptions
38AVISaveOptionsFree
39AVISaveV
40AVISaveVA
41AVISaveVW
42AVISaveW
43AVIStreamAddRef
44AVIStreamBeginStreaming
45AVIStreamCreate
46AVIStreamEndStreaming
47AVIStreamFindSample
48AVIStreamGetFrame
49AVIStreamGetFrameClose
50AVIStreamGetFrameOpen
51AVIStreamInfo
52AVIStreamInfoA
53AVIStreamInfoW
54AVIStreamLength
55AVIStreamOpenFromFile
56AVIStreamOpenFromFileA
57AVIStreamOpenFromFileW
58AVIStreamRead
59AVIStreamReadData
60AVIStreamReadFormat
61AVIStreamRelease
62AVIStreamSampleToTime
63AVIStreamSetFormat
64AVIStreamStart
65AVIStreamTimeToSample
66AVIStreamWrite
67AVIStreamWriteData
68CreateEditableStream
69DllCanUnloadNow
70DllGetClassObject
71EditStreamClone
72EditStreamCopy
73EditStreamCut
74EditStreamPaste
75EditStreamSetInfo
76EditStreamSetInfoA
77EditStreamSetInfoW
78EditStreamSetName
79EditStreamSetNameA
80EditStreamSetNameW
81IID_IAVIEditStream
82IID_IAVIFile
83IID_IAVIStream
84IID_IGetFrame
lib/libc/mingw/lib-common/avrt.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of AVRT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "AVRT.dll"
7EXPORTS
8AvQuerySystemResponsiveness
9AvRevertMmThreadCharacteristics
10AvRtCreateThreadOrderingGroup
11AvRtCreateThreadOrderingGroupExA
12AvRtCreateThreadOrderingGroupExW
13AvRtDeleteThreadOrderingGroup
14AvRtJoinThreadOrderingGroup
15AvRtLeaveThreadOrderingGroup
16AvRtWaitOnThreadOrderingGroup
17AvSetMmMaxThreadCharacteristicsA
18AvSetMmMaxThreadCharacteristicsW
19AvSetMmThreadCharacteristicsA
20AvSetMmThreadCharacteristicsW
21AvSetMmThreadPriority
lib/libc/mingw/lib-common/azroles.def created+52
......@@ -0,0 +1,52 @@
1;
2; Exports of file azroles.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY azroles.DLL
8EXPORTS
9AzAddPropertyItem
10AzApplicationClose
11AzApplicationCreate
12AzApplicationDelete
13AzApplicationEnum
14AzApplicationOpen
15AzAuthorizationStoreDelete
16AzCloseHandle
17AzContextAccessCheck
18AzContextGetAssignedScopesPage
19AzContextGetRoles
20AzFreeMemory
21AzGetProperty
22AzGroupCreate
23AzGroupDelete
24AzGroupEnum
25AzGroupOpen
26AzInitialize
27AzInitializeContextFromName
28AzInitializeContextFromToken
29AzOperationCreate
30AzOperationDelete
31AzOperationEnum
32AzOperationOpen
33AzRemovePropertyItem
34AzRoleCreate
35AzRoleDelete
36AzRoleEnum
37AzRoleOpen
38AzScopeCreate
39AzScopeDelete
40AzScopeEnum
41AzScopeOpen
42AzSetProperty
43AzSubmit
44AzTaskCreate
45AzTaskDelete
46AzTaskEnum
47AzTaskOpen
48AzUpdateCache
49DllCanUnloadNow
50DllGetClassObject
51DllRegisterServer
52DllUnregisterServer
lib/libc/mingw/lib-common/basesrv.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of BASESRV.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BASESRV.dll"
7EXPORTS
8BaseGetProcessCrtlRoutine
9BaseSetProcessCreateNotify
10BaseSrvNlsLogon
11BaseSrvNlsUpdateRegistryCache
12BaseSrvRegisterSxS
13ServerDllInitialization
lib/libc/mingw/lib-common/bootvid.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of BOOTVID.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BOOTVID.dll"
7EXPORTS
8VidBitBlt
9VidBitBltEx
10VidBufferToScreenBlt
11VidCleanUp
12VidDisplayString
13VidDisplayStringXY
14VidInitialize
15VidResetDisplay
16VidScreenToBufferBlt
17VidSetScrollRegion
18VidSetTextColor
19VidSolidColorFill
lib/libc/mingw/lib-common/browcli.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of browcli.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "browcli.dll"
7EXPORTS
8I_BrowserDebugCall
9I_BrowserDebugTrace
10I_BrowserQueryEmulatedDomains
11I_BrowserQueryOtherDomains
12I_BrowserQueryStatistics
13I_BrowserResetNetlogonState
14I_BrowserResetStatistics
15I_BrowserServerEnum
16I_BrowserSetNetlogonState
17NetBrowserStatisticsGet
18NetServerEnum
19NetServerEnumEx
lib/libc/mingw/lib-common/browser.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file browser.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY browser.dll
8EXPORTS
9I_BrowserServerEnumForXactsrv
10ServiceMain
11SvchostPushServiceGlobals
lib/libc/mingw/lib-common/bthci.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MSPORTS.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSPORTS.DLL
8EXPORTS
9BluetoothClassInstaller
lib/libc/mingw/lib-common/cabinet.def+17-16
......@@ -5,28 +5,29 @@
55;
66LIBRARY "Cabinet.dll"
77EXPORTS
8GetDllVersion
9Extract
8CloseCompressor
9CloseDecompressor
10Compress
11CreateCompressor
12CreateDecompressor
13Decompress
1014DeleteExtractedFiles
11FCICreate
15DllGetVersion
16Extract
1217FCIAddFile
13FCIFlushFolder
14FCIFlushCabinet
18FCICreate
1519FCIDestroy
16FDICreate
17FDIIsCabinet
20FCIFlushCabinet
21FCIFlushFolder
1822FDICopy
23FDICreate
1924FDIDestroy
25FDIIsCabinet
2026FDITruncateCabinet
21CreateCompressor
22SetCompressorInformation
27GetDllVersion
2328QueryCompressorInformation
24Compress
25ResetCompressor
26CloseCompressor
27CreateDecompressor
28SetDecompressorInformation
2929QueryDecompressorInformation
30Decompress
30ResetCompressor
3131ResetDecompressor
32CloseDecompressor
32SetCompressorInformation
33SetDecompressorInformation
lib/libc/mingw/lib-common/cabview.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file CABVIEW.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CABVIEW.dll
8EXPORTS
9Uninstall
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib-common/cfgbkend.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of CfgBkEnd.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "CfgBkEnd.DLL"
7EXPORTS
8CLSID_CfgComp
9IID_ICfgComp
10IID_ISettingsComp
11IID_ISettingsComp2
lib/libc/mingw/lib-common/chakrart.def created+124
......@@ -0,0 +1,124 @@
1LIBRARY chakra
2
3EXPORTS
4
5JsAddRef
6JsBoolToBoolean
7JsBooleanToBool
8JsCallFunction
9JsCollectGarbage
10JsConstructObject
11JsConvertValueToBoolean
12JsConvertValueToNumber
13JsConvertValueToObject
14JsConvertValueToString
15JsCreateArray
16JsCreateArrayBuffer
17JsCreateContext
18JsCreateDataView
19JsCreateError
20JsCreateExternalArrayBuffer
21JsCreateExternalObject
22JsCreateFunction
23JsCreateNamedFunction
24JsCreateObject
25JsCreateRangeError
26JsCreateReferenceError
27JsCreateRuntime
28JsCreateSymbol
29JsCreateSyntaxError
30JsCreateThreadService
31JsCreateTypeError
32JsCreateTypedArray
33JsCreateURIError
34JsDefineProperty
35JsDeleteIndexedProperty
36JsDeleteProperty
37JsDisableRuntimeExecution
38JsDisposeRuntime
39JsDoubleToNumber
40JsEnableRuntimeExecution
41JsEnumerateHeap
42JsEquals
43JsGetAndClearException
44JsGetArrayBufferStorage
45JsGetContextData
46JsGetContextOfObject
47JsGetCurrentContext
48JsGetDataViewStorage
49JsGetExtensionAllowed
50JsGetExternalData
51JsGetFalseValue
52JsGetGlobalObject
53JsGetIndexedPropertiesExternalData
54JsGetIndexedProperty
55JsGetNullValue
56JsGetOwnPropertyDescriptor
57JsGetOwnPropertyNames
58JsGetOwnPropertySymbols
59JsGetProperty
60JsGetPropertyIdFromName
61JsGetPropertyIdFromSymbol
62JsGetPropertyIdType
63JsGetPropertyNameFromId
64JsGetPrototype
65JsGetRuntime
66JsGetRuntimeMemoryLimit
67JsGetRuntimeMemoryUsage
68JsGetStringLength
69JsGetSymbolFromPropertyId
70JsGetTrueValue
71JsGetTypedArrayInfo
72JsGetTypedArrayStorage
73JsGetUndefinedValue
74JsGetValueType
75JsHasException
76JsHasExternalData
77JsHasIndexedPropertiesExternalData
78JsHasIndexedProperty
79JsHasProperty
80JsIdle
81JsInspectableToObject
82JsInstanceOf
83JsIntToNumber
84JsIsEnumeratingHeap
85JsIsRuntimeExecutionDisabled
86JsNumberToDouble
87JsNumberToInt
88JsObjectToInspectable
89JsParseScript
90JsParseScriptWithAttributes
91JsParseSerializedScript
92JsParseSerializedScriptWithCallback
93JsPointerToString
94JsPreventExtension
95JsProjectWinRTNamespace
96JsRelease
97JsRunScript
98JsRunSerializedScript
99JsRunSerializedScriptWithCallback
100JsSerializeScript
101JsSetContextData
102JsSetCurrentContext
103JsSetException
104JsSetExternalData
105JsSetIndexedPropertiesToExternalData
106JsSetIndexedProperty
107JsSetObjectBeforeCollectCallback
108JsSetProjectionEnqueueCallback
109JsSetPromiseContinuationCallback
110JsSetProperty
111JsSetPrototype
112JsSetRuntimeBeforeCollectCallback
113JsSetRuntimeMemoryAllocationCallback
114JsSetRuntimeMemoryLimit
115JsStartDebugging
116JsStartProfiling
117JsStopProfiling
118JsStrictEquals
119JsStringToPointer
120JsValueToVariant
121JsVarAddRef
122JsVarRelease
123JsVarToExtension
124JsVariantToValue
lib/libc/mingw/lib-common/clb.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file clb.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY clb.dll
8EXPORTS
9ClbAddData
10ClbSetColumnWidths
11ClbStyleW
12ClbWndProc
13CustomControlInfoW
lib/libc/mingw/lib-common/clbcatq.def.in created+63
......@@ -0,0 +1,63 @@
1#include "func.def.in"
2
3LIBRARY CLBCatQ.DLL
4EXPORTS
5ActivatorUpdateForIsRouterChanges
6; void __cdecl ClearList(class CStructArray * __ptr64)
7F_X64(?ClearList@@YAXPEAVCStructArray@@@Z)
8CoRegCleanup
9; long __cdecl CreateComponentLibraryTS(unsigned short const * __ptr64,long,struct IComponentRecords * __ptr64 * __ptr64)
10F_X64(?CreateComponentLibraryTS@@YAJPEBGJPEAPEAUIComponentRecords@@@Z)
11; long __cdecl DataConvert(unsigned short,unsigned short,unsigned long,unsigned long * __ptr64,void * __ptr64,void * __ptr64,unsigned long,unsigned long,unsigned long * __ptr64,unsigned char,unsigned char,unsigned long)
12F_X64(?DataConvert@@YAJGGKPEAKPEAX1KK0EEK@Z)
13DeleteAllActivatorsForClsid
14; void __cdecl DestroyStgDatabase(class StgDatabase * __ptr64)
15F_X64(?DestroyStgDatabase@@YAXPEAVStgDatabase@@@Z)
16DowngradeAPL
17; long __cdecl GetDataConversion(struct IDataConvert * __ptr64 * __ptr64)
18F_X64(?GetDataConversion@@YAJPEAPEAUIDataConvert@@@Z)
19; class CGetDataConversion * __ptr64 __cdecl GetDataConvertObject(void)
20F_X64(?GetDataConvertObject@@YAPEAVCGetDataConversion@@XZ)
21GetGlobalBabyJITEnabled
22; long __cdecl GetPropValue(unsigned short,long * __ptr64,void * __ptr64,int,int * __ptr64,struct tagDBPROP & __ptr64)
23F_X64(?GetPropValue@@YAJGPEAJPEAXHPEAHAEAUtagDBPROP@@@Z)
24; long __cdecl GetStgDatabase(class StgDatabase * __ptr64 * __ptr64)
25F_X64(?GetStgDatabase@@YAJPEAPEAVStgDatabase@@@Z)
26; void __cdecl InitErrors(unsigned long * __ptr64)
27F_X64(?InitErrors@@YAXPEAK@Z)
28; long __cdecl OpenComponentLibrarySharedTS(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long,struct _SECURITY_ATTRIBUTES * __ptr64,long,struct IComponentRecords * __ptr64 * __ptr64)
29F_X64(?OpenComponentLibrarySharedTS@@YAJPEBG0KPEAU_SECURITY_ATTRIBUTES@@JPEAPEAUIComponentRecords@@@Z)
30; long __cdecl OpenComponentLibraryTS(unsigned short const * __ptr64,long,struct IComponentRecords * __ptr64 * __ptr64)
31F_X64(?OpenComponentLibraryTS@@YAJPEBGJPEAPEAUIComponentRecords@@@Z)
32; long __cdecl PostError(long,...)
33F_X64(?PostError@@YAJJZZ)
34; void __cdecl ShutDownDataConversion(void)
35F_X64(?ShutDownDataConversion@@YAXXZ)
36UpdateFromAppChange
37UpdateFromComponentChange
38CLSIDFromStringByBitness
39CheckMemoryGates
40ComPlusEnablePartitions
41ComPlusEnableRemoteAccess
42ComPlusMigrate
43ComPlusPartitionsEnabled
44ComPlusRemoteAccessEnabled
45CreateComponentLibraryEx
46DllCanUnloadNow
47DllGetClassObject
48DllRegisterServer
49DllUnregisterServer
50GetCatalogObject
51GetCatalogObject2
52GetComputerObject
53GetSimpleTableDispenser
54InprocServer32FromString
55OpenComponentLibraryEx
56OpenComponentLibraryOnMemEx
57OpenComponentLibraryOnStreamEx
58OpenComponentLibrarySharedEx
59ServerGetApplicationType
60SetSetupOpen
61SetSetupSave
62SetupOpen
63SetupSave
lib/libc/mingw/lib-common/cliconfg.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file CLICONFG.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CLICONFG.DLL
8EXPORTS
9CPlApplet
10ClientConfigureAddEdit
11OnInitDialogMain
lib/libc/mingw/lib-common/cnvfat.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file CUFAT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CUFAT.dll
8EXPORTS
9IsConversionAvailable
10ConvertFAT
lib/libc/mingw/lib-common/colbact.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file colbact.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY colbact.DLL
8EXPORTS
9DllGetClassObject
10DllRegisterServer
11DllUnregisterServer
12GetClassInfoForCurrentUser
13GetDefaultPartitionForCurrentUser
14GetDefaultPartitionForSid
15PartitionAccessCheck
lib/libc/mingw/lib-common/comctl32.def+25
......@@ -24,6 +24,7 @@ CreateToolbarEx
2424DestroyPropertySheetPage
2525DllGetVersion
2626DllInstall
27DrawShadowText
2728DrawStatusText
2829DrawStatusTextW
2930FlatSB_EnableScrollBar
......@@ -38,13 +39,16 @@ FlatSB_SetScrollProp
3839FlatSB_SetScrollRange
3940FlatSB_ShowScrollBar
4041GetMUILanguage
42HIMAGELIST_QueryInterface
4143ImageList_Add
4244ImageList_AddIcon
4345ImageList_AddMasked
4446ImageList_BeginDrag
47ImageList_CoCreateInstance
4548ImageList_Copy
4649ImageList_Create
4750ImageList_Destroy
51ImageList_DestroyShared
4852ImageList_DragEnter
4953ImageList_DragLeave
5054ImageList_DragMove
......@@ -67,9 +71,11 @@ ImageList_LoadImageA
6771ImageList_LoadImageW
6872ImageList_Merge
6973ImageList_Read
74ImageList_ReadEx
7075ImageList_Remove
7176ImageList_Replace
7277ImageList_ReplaceIcon
78ImageList_Resize
7379ImageList_SetBkColor
7480ImageList_SetDragCursorImage
7581ImageList_SetFilter
......@@ -78,6 +84,7 @@ ImageList_SetIconSize
7884ImageList_SetImageCount
7985ImageList_SetOverlayImage
8086ImageList_Write
87ImageList_WriteEx
8188InitCommonControlsEx
8289InitMUILanguage
8390InitializeFlatSB
......@@ -89,6 +96,17 @@ RegisterClassNameW
8996UninitializeFlatSB
9097_TrackMouseEvent
9198FreeMRUList
99DrawSizeBox
100DrawScrollBar
101SizeBoxHwnd
102ScrollBar_MouseMove
103ScrollBar_Menu
104HandleScrollCmd
105DetachScrollBars
106AttachScrollBars
107CCSetScrollInfo
108CCGetScrollInfo
109CCEnableScrollBar
92110Str_SetPtrW
93111DSA_Create
94112DSA_Destroy
......@@ -111,14 +129,21 @@ DPA_DeleteAllPtrs
111129DPA_Sort
112130DPA_Search
113131DPA_CreateEx
132DSA_Clone
133DSA_Sort
134DPA_GetSize
135DSA_GetSize
136LoadIconWithScaleDown
114137DPA_EnumCallback
115138DPA_DestroyCallback
116139DSA_EnumCallback
117140DSA_DestroyCallback
141QuerySystemGestureStatus
118142CreateMRUListW
119143AddMRUStringW
120144EnumMRUListW
121145SetWindowSubclass
146GetWindowSubclass
122147RemoveWindowSubclass
123148DefSubclassProc
124149TaskDialog
lib/libc/mingw/lib-common/computecore.def created+67
......@@ -0,0 +1,67 @@
1;
2; Definition file of computecore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "computecore.dll"
7EXPORTS
8HcsEnumerateVmWorkerProcesses
9HcsFindVmWorkerProcesses
10HcsGetWorkerProcessJob
11HcsStartVmWorkerProcess
12HcsAddResourceToOperation
13HcsCancelOperation
14HcsCloseComputeSystem
15HcsCloseOperation
16HcsCloseProcess
17HcsCrashComputeSystem
18HcsCreateComputeSystem
19HcsCreateComputeSystemInNamespace
20HcsCreateEmptyGuestStateFile
21HcsCreateEmptyRuntimeStateFile
22HcsCreateOperation
23HcsCreateOperationWithNotifications
24HcsCreateProcess
25HcsEnumerateComputeSystems
26HcsEnumerateComputeSystemsInNamespace
27HcsGetComputeSystemFromOperation
28HcsGetComputeSystemProperties
29HcsGetOperationContext
30HcsGetOperationId
31HcsGetOperationProperties
32HcsGetOperationResult
33HcsGetOperationResultAndProcessInfo
34HcsGetOperationType
35HcsGetProcessFromOperation
36HcsGetProcessInfo
37HcsGetProcessProperties
38HcsGetProcessorCompatibilityFromSavedState
39HcsGetServiceProperties
40HcsGrantVmAccess
41HcsGrantVmGroupAccess
42HcsModifyComputeSystem
43HcsModifyProcess
44HcsModifyServiceSettings
45HcsOpenComputeSystem
46HcsOpenComputeSystemInNamespace
47HcsOpenProcess
48HcsPauseComputeSystem
49HcsResumeComputeSystem
50HcsRevokeVmAccess
51HcsRevokeVmGroupAccess
52HcsSaveComputeSystem
53HcsSetComputeSystemCallback
54HcsSetOperationCallback
55HcsSetOperationContext
56HcsSetProcessCallback
57HcsShutDownComputeSystem
58HcsSignalProcess
59HcsStartComputeSystem
60HcsSubmitWerReport
61HcsSystemControl
62HcsTerminateComputeSystem
63HcsTerminateProcess
64HcsWaitForComputeSystemExit
65HcsWaitForOperationResult
66HcsWaitForOperationResultAndProcessInfo
67HcsWaitForProcessExit
lib/libc/mingw/lib-common/computenetwork.def created+62
......@@ -0,0 +1,62 @@
1;
2; Definition file of computenetwork.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "computenetwork.dll"
7EXPORTS
8HcnCloseGuestNetworkService
9HcnCloseSdnRoute
10HcnCreateGuestNetworkService
11HcnCreateSdnRoute
12HcnDeleteGuestNetworkService
13HcnDeleteSdnRoute
14HcnEnumerateGuestNetworkServices
15HcnEnumerateSdnRoutes
16HcnModifyGuestNetworkService
17HcnModifySdnRoute
18HcnOpenGuestNetworkService
19HcnOpenSdnRoute
20HcnQueryGuestNetworkServiceProperties
21HcnQuerySdnRouteProperties
22HcnRegisterGuestNetworkServiceCallback
23HcnRegisterNetworkCallback
24HcnUnregisterGuestNetworkServiceCallback
25HcnUnregisterNetworkCallback
26HcnCloseEndpoint
27HcnCloseLoadBalancer
28HcnCloseNamespace
29HcnCloseNetwork
30HcnCreateEndpoint
31HcnCreateLoadBalancer
32HcnCreateNamespace
33HcnCreateNetwork
34HcnDeleteEndpoint
35HcnDeleteLoadBalancer
36HcnDeleteNamespace
37HcnDeleteNetwork
38HcnEnumerateEndpoints
39HcnEnumerateGuestNetworkPortReservations
40HcnEnumerateLoadBalancers
41HcnEnumerateNamespaces
42HcnEnumerateNetworks
43HcnFreeGuestNetworkPortReservations
44HcnModifyEndpoint
45HcnModifyLoadBalancer
46HcnModifyNamespace
47HcnModifyNetwork
48HcnOpenEndpoint
49HcnOpenLoadBalancer
50HcnOpenNamespace
51HcnOpenNetwork
52HcnQueryEndpointAddresses
53HcnQueryEndpointProperties
54HcnQueryEndpointStats
55HcnQueryLoadBalancerProperties
56HcnQueryNamespaceProperties
57HcnQueryNetworkProperties
58HcnRegisterServiceCallback
59HcnReleaseGuestNetworkServicePortReservationHandle
60HcnReserveGuestNetworkServicePort
61HcnReserveGuestNetworkServicePortRange
62HcnUnregisterServiceCallback
lib/libc/mingw/lib-common/computestorage.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of computestorage.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "computestorage.dll"
7EXPORTS
8HcsAttachLayerStorageFilter
9HcsDestroyLayer
10HcsDetachLayerStorageFilter
11HcsExportLayer
12HcsExportLegacyWritableLayer
13HcsFormatWritableLayerVhd
14HcsGetLayerVhdMountPath
15HcsImportLayer
16HcsInitializeLegacyWritableLayer
17HcsInitializeWritableLayer
18HcsSetupBaseOSLayer
19HcsSetupBaseOSVolume
lib/libc/mingw/lib-common/comsnap.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file ComSnap.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ComSnap.DLL
8EXPORTS
9InstallDsExtension
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib-common/comuid.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file ComUID.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ComUID.DLL
8EXPORTS
9CreateDCOMSecurityUIPage
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib-common/connect.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of connect.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "connect.dll"
7EXPORTS
8AddConnectionOptionListEntries
9CreateVPNConnection
10GetInternetConnected
11GetNetworkConnected
12GetVPNConnected
13HrIsInternetConnected
14HrIsInternetConnectedGUID
15IsInternetConnected
16IsInternetConnectedGUID
17IsUniqueConnectionName
18RegisterPageWithPage
19UnregisterPage
20UnregisterPagesLink
lib/libc/mingw/lib-common/console.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file Console.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY Console.dll
8EXPORTS
9CPlApplet
lib/libc/mingw/lib-common/coremessaging.def created+33
......@@ -0,0 +1,33 @@
1LIBRARY coremessaging
2
3EXPORTS
4
5CoreUICallComputeMaximumMessageSize
6CoreUICallCreateConversationHost
7CoreUICallCreateEndpointHost
8CoreUICallCreateEndpointHostWithSendPriority
9CoreUICallGetAddressOfParameterInBuffer
10CoreUICallReceive
11CoreUICallSend
12CoreUICallSendVaList
13CoreUIConfigureTestHost
14CoreUIConfigureUserIntegration
15CoreUICreate
16CoreUICreateAnonymousStream
17CoreUICreateClientWindowIDManager
18CoreUICreateEx
19CoreUICreateSystemWindowIDManager
20CoreUIInitializeTestService
21CoreUIOpenExisting
22CoreUIRouteToTestRegistrar
23CoreUIUninitializeTestService
24CreateDispatcherQueueController
25CreateDispatcherQueueForCurrentThread
26GetDispatcherQueueForCurrentThread
27MsgBlobCreateShared
28MsgBlobCreateStack
29MsgBufferShare
30MsgRelease
31MsgStringCreateShared
32MsgStringCreateStack
33ServiceMain
lib/libc/mingw/lib-common/cryptbase.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of CRYPTBASE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CRYPTBASE.dll"
7EXPORTS
8SystemFunction001
9SystemFunction002
10SystemFunction003
11SystemFunction004
12SystemFunction005
13SystemFunction028
14SystemFunction029
15SystemFunction034
16SystemFunction036
17SystemFunction040
18SystemFunction041
lib/libc/mingw/lib-common/cryptdlg.def created+29
......@@ -0,0 +1,29 @@
1;
2; Exports of file CRYPTDLG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CRYPTDLG.dll
8EXPORTS
9CertConfigureTrustA
10CertConfigureTrustW
11CertTrustCertPolicy
12CertTrustCleanup
13CertTrustFinalPolicy
14CertTrustInit
15DecodeAttrSequence
16DecodeRecipientID
17EncodeAttrSequence
18EncodeRecipientID
19FormatPKIXEmailProtection
20FormatVerisignExtension
21CertModifyCertificatesToTrust
22CertSelectCertificateA
23CertSelectCertificateW
24CertViewPropertiesA
25CertViewPropertiesW
26DllRegisterServer
27DllUnregisterServer
28GetFriendlyNameOfCertA
29GetFriendlyNameOfCertW
lib/libc/mingw/lib-common/cryptdll.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of cryptdll.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "cryptdll.dll"
7EXPORTS
8CDBuildIntegrityVect
9CDBuildVect
10CDFindCommonCSystem
11CDFindCommonCSystemWithKey
12CDGenerateRandomBits
13CDGetIntegrityVect
14CDLocateCSystem
15CDLocateCheckSum
16CDLocateRng
17CDRegisterCSystem
18CDRegisterCheckSum
19CDRegisterRng
20HMACwithSHA
21KRBFXCF2
22MD5Final
23MD5Init
24MD5Update
25PBKDF2
26aesCTSDecryptMsg
27aesCTSEncryptMsg
lib/libc/mingw/lib-common/cryptext.def created+33
......@@ -0,0 +1,33 @@
1LIBRARY "CRYPTEXT.dll"
2EXPORTS
3I_InvokeCommand
4CryptExtAddCER
5CryptExtAddCERMachineOnlyAndHwndW
6CryptExtAddCERW
7CryptExtAddCRL
8CryptExtAddCRLW
9CryptExtAddCTL
10CryptExtAddCTLW
11CryptExtAddP7R
12CryptExtAddP7RW
13CryptExtAddPFX
14CryptExtAddPFXMachineOnlyAndHwndW
15CryptExtAddPFXW
16CryptExtAddSPC
17CryptExtAddSPCW
18CryptExtOpenCAT
19CryptExtOpenCATW
20CryptExtOpenCER
21CryptExtOpenCERW
22CryptExtOpenCRL
23CryptExtOpenCRLW
24CryptExtOpenCTL
25CryptExtOpenCTLW
26CryptExtOpenP10
27CryptExtOpenP10W
28CryptExtOpenP7R
29CryptExtOpenP7RW
30CryptExtOpenPKCS7
31CryptExtOpenPKCS7W
32CryptExtOpenSTR
33CryptExtOpenSTRW
lib/libc/mingw/lib-common/cryptsp.def created+72
......@@ -0,0 +1,72 @@
1;
2; Definition file of CRYPTSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CRYPTSP.dll"
7EXPORTS
8CheckSignatureInFile
9CryptAcquireContextA
10CryptAcquireContextW
11CryptContextAddRef
12CryptCreateHash
13CryptDecrypt
14CryptDeriveKey
15CryptDestroyHash
16CryptDestroyKey
17CryptDuplicateHash
18CryptDuplicateKey
19CryptEncrypt
20CryptEnumProviderTypesA
21CryptEnumProviderTypesW
22CryptEnumProvidersA
23CryptEnumProvidersW
24CryptExportKey
25CryptGenKey
26CryptGenRandom
27CryptGetDefaultProviderA
28CryptGetDefaultProviderW
29CryptGetHashParam
30CryptGetKeyParam
31CryptGetProvParam
32CryptGetUserKey
33CryptHashData
34CryptHashSessionKey
35CryptImportKey
36CryptReleaseContext
37CryptSetHashParam
38CryptSetKeyParam
39CryptSetProvParam
40CryptSetProviderA
41CryptSetProviderExA
42CryptSetProviderExW
43CryptSetProviderW
44CryptSignHashA
45CryptSignHashW
46CryptVerifySignatureA
47CryptVerifySignatureW
48SystemFunction006
49SystemFunction007
50SystemFunction008
51SystemFunction009
52SystemFunction010
53SystemFunction011
54SystemFunction012
55SystemFunction013
56SystemFunction014
57SystemFunction015
58SystemFunction016
59SystemFunction018
60SystemFunction020
61SystemFunction021
62SystemFunction022
63SystemFunction023
64SystemFunction024
65SystemFunction025
66SystemFunction026
67SystemFunction027
68SystemFunction030
69SystemFunction031
70SystemFunction032
71SystemFunction033
72SystemFunction035
lib/libc/mingw/lib-common/cryptsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of CRYPTSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CRYPTSVC.dll"
7EXPORTS
8CryptServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/lib-common/d2d1.def+7-6
......@@ -5,15 +5,16 @@
55;
66LIBRARY "d2d1.dll"
77EXPORTS
8D2D1CreateFactory
9D2D1MakeRotateMatrix
10D2D1MakeSkewMatrix
11D2D1IsMatrixInvertible
12D2D1InvertMatrix
8D2D1ComputeMaximumScaleFactor
139D2D1ConvertColorSpace
1410D2D1CreateDevice
1511D2D1CreateDeviceContext
12D2D1CreateFactory
13D2D1GetGradientMeshInteriorPointsFromCoonsPatch
14D2D1InvertMatrix
15D2D1IsMatrixInvertible
16D2D1MakeRotateMatrix
17D2D1MakeSkewMatrix
1618D2D1SinCos
1719D2D1Tan
1820D2D1Vec3Length
19D2D1ComputeMaximumScaleFactor
lib/libc/mingw/lib-common/davhlpr.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of DAVHLPR.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DAVHLPR.dll"
7EXPORTS
8DavAddConnection
9DavCheckAndConvertHttpUrlToUncName
10DavDeleteConnection
11DavFlushFile
12DavGetExtendedError
13DavGetHTTPFromUNCPath
14DavGetServerPortAndPhysicalName
15DavGetUNCFromHTTPPath
16DavRemoveDummyShareFromFileName
17DavRemoveDummyShareFromFileNameEx
18UtfUrlStrToWideStr
19WideStrToUtfUrlStr
lib/libc/mingw/lib-common/dbgeng.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of dbgeng.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dbgeng.dll"
7EXPORTS
8DebugConnect
9DebugConnectWide
10DebugCreate
11DebugCreateEx
lib/libc/mingw/lib-common/dbnetlib.def created+38
......@@ -0,0 +1,38 @@
1;
2; Definition file of DBnetlib.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DBnetlib.dll"
7EXPORTS
8ConnectionObjectSize
9ConnectionRead
10ConnectionWrite
11ConnectionTransact
12ConnectionWriteOOB
13ConnectionMode
14ConnectionStatus
15ConnectionOpen
16ConnectionClose
17ConnectionCheckForData
18ConnectionError
19ConnectionVer
20ConnectionSqlVer
21ConnectionServerEnum
22ConnectionServerEnumW
23ConnectionOpenW
24ConnectionErrorW
25ConnectionOption
26ConnectionGetSvrUser
27InitEnumServers
28GetNextEnumeration
29CloseEnumServers
30InitSSPIPackage
31TermSSPIPackage
32InitSession
33TermSession
34GenClientContext
35ConnectionFlushCache
36InitSessionEx
37TermSessionEx
38GenClientContextEx
lib/libc/mingw/lib-common/dbnmpntw.def created+24
......@@ -0,0 +1,24 @@
1;
2; Exports of file DBnmpntw.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DBnmpntw.dll
8EXPORTS
9ConnectionObjectSize
10ConnectionRead
11ConnectionWrite
12ConnectionClose
13ConnectionError
14ConnectionVer
15ConnectionTransact
16ConnectionWriteOOB
17ConnectionMode
18ConnectionStatus
19ConnectionOpen
20ConnectionServerEnum
21ConnectionCheckForData
22ConnectionOpenW
23ConnectionErrorW
24ConnectionServerEnumW
lib/libc/mingw/lib-common/devmgr.def created+26
......@@ -0,0 +1,26 @@
1;
2; Definition file of DEVMGR.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DEVMGR.DLL"
7EXPORTS
8DeviceProperties_RunDLLA
9DeviceProperties_RunDLLW
10DevicePropertiesA
11DevicePropertiesW
12DeviceManager_ExecuteA
13DeviceManager_ExecuteW
14DeviceProblemTextA
15DeviceProblemTextW
16DeviceProblemWizardA
17DeviceProblemWizardW
18DeviceAdvancedPropertiesA
19DeviceAdvancedPropertiesW
20DeviceCreateHardwarePage
21DeviceCreateHardwarePageEx
22DevicePropertiesExA
23DevicePropertiesExW
24DeviceProblenWizard_RunDLLA
25DeviceProblenWizard_RunDLLW
26DeviceCreateHardwarePageCustom
lib/libc/mingw/lib-common/devobj.def created+58
......@@ -0,0 +1,58 @@
1;
2; Definition file of DEVOBJ.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DEVOBJ.dll"
7EXPORTS
8DevObjBuildClassInfoList
9DevObjChangeState
10DevObjClassGuidsFromName
11DevObjClassNameFromGuid
12DevObjCreateDevRegKey
13DevObjCreateDeviceInfo
14DevObjCreateDeviceInfoList
15DevObjCreateDeviceInterface
16DevObjCreateDeviceInterfaceRegKey
17DevObjDeleteAllInterfacesForDevice
18DevObjDeleteDevRegKey
19DevObjDeleteDevice
20DevObjDeleteDeviceInfo
21DevObjDeleteDeviceInterfaceData
22DevObjDeleteDeviceInterfaceRegKey
23DevObjDestroyDeviceInfoList
24DevObjEnumDeviceInfo
25DevObjEnumDeviceInterfaces
26DevObjGetClassDescription
27DevObjGetClassDevs
28DevObjGetClassProperty
29DevObjGetClassPropertyKeys
30DevObjGetClassRegistryProperty
31DevObjGetDeviceInfoDetail
32DevObjGetDeviceInfoListClass
33DevObjGetDeviceInfoListDetail
34DevObjGetDeviceInstanceId
35DevObjGetDeviceInterfaceAlias
36DevObjGetDeviceInterfaceDetail
37DevObjGetDeviceInterfaceProperty
38DevObjGetDeviceInterfacePropertyKeys
39DevObjGetDeviceProperty
40DevObjGetDevicePropertyKeys
41DevObjGetDeviceRegistryProperty
42DevObjLocateDevice
43DevObjOpenClassRegKey
44DevObjOpenDevRegKey
45DevObjOpenDeviceInfo
46DevObjOpenDeviceInterface
47DevObjOpenDeviceInterfaceRegKey
48DevObjRegisterDeviceInfo
49DevObjRemoveDeviceInterface
50DevObjRestartDevices
51DevObjSetClassProperty
52DevObjSetClassRegistryProperty
53DevObjSetDeviceInfoDetail
54DevObjSetDeviceInterfaceDefault
55DevObjSetDeviceInterfaceProperty
56DevObjSetDeviceProperty
57DevObjSetDeviceRegistryProperty
58DevObjUninstallDevice
lib/libc/mingw/lib-common/devrtl.def created+36
......@@ -0,0 +1,36 @@
1;
2; Definition file of DEVRTL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DEVRTL.dll"
7EXPORTS
8DevRtlCloseTextLogSection
9DevRtlCreateTextLogSectionA
10DevRtlCreateTextLogSectionW
11DevRtlGetThreadLogToken
12DevRtlSetThreadLogToken
13DevRtlWriteTextLog
14DevRtlWriteTextLogError
15NdxTableAddObject
16NdxTableAddObjectToList
17NdxTableClose
18NdxTableFirstObject
19NdxTableFirstObjectInList
20NdxTableGetObjectName
21NdxTableGetObjectType
22NdxTableGetObjectTypeCount
23NdxTableGetObjectTypeName
24NdxTableGetPropertyTypeClass
25NdxTableGetPropertyTypeCount
26NdxTableGetPropertyTypeName
27NdxTableGetPropertyValue
28NdxTableNextObject
29NdxTableObjectFromName
30NdxTableObjectFromPointer
31NdxTableOpen
32NdxTableRemoveObject
33NdxTableRemoveObjectFromList
34NdxTableSetObjectPointer
35NdxTableSetPropertyValue
36NdxTableSetTypeDefinition
lib/libc/mingw/lib-common/dhcpcsvc.def+2
......@@ -15,6 +15,7 @@ DhcpDeRegisterOptions
1515DhcpDeRegisterParamChange
1616DhcpDelPersistentRequestParams
1717DhcpEnableDhcp
18DhcpEnableDhcpAdvanced
1819DhcpEnableTracing
1920DhcpEnumClasses
2021DhcpEnumInterfaces
......@@ -35,6 +36,7 @@ DhcpGlobalServiceSyncEvent DATA
3536DhcpGlobalTerminateEvent DATA
3637DhcpHandlePnPEvent
3738DhcpIsEnabled
39DhcpIsMeteredDetected
3840DhcpLeaseIpAddress
3941DhcpLeaseIpAddressEx
4042DhcpNotifyConfigChange
lib/libc/mingw/lib-common/dhcpcsvc6.def created+30
......@@ -0,0 +1,30 @@
1;
2; Definition file of dhcpcsvc6.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "dhcpcsvc6.DLL"
7EXPORTS
8Dhcpv6AcquireParameters
9Dhcpv6CApiCleanup
10Dhcpv6CApiInitialize
11Dhcpv6CancelOperation
12Dhcpv6EnableDhcp
13Dhcpv6EnableTracing
14Dhcpv6FreeLeaseInfo
15Dhcpv6FreeLeaseInfoArray
16Dhcpv6GetTraceArray
17Dhcpv6GetUserClasses
18Dhcpv6IsEnabled
19Dhcpv6Main
20Dhcpv6QueryLeaseInfo
21Dhcpv6QueryLeaseInfoArray
22Dhcpv6ReleaseParameters
23Dhcpv6ReleasePrefix
24Dhcpv6ReleasePrefixEx
25Dhcpv6RenewPrefix
26Dhcpv6RenewPrefixEx
27Dhcpv6RequestParams
28Dhcpv6RequestPrefix
29Dhcpv6RequestPrefixEx
30Dhcpv6SetUserClass
lib/libc/mingw/lib-common/diagnosticdataquery.def created+39
......@@ -0,0 +1,39 @@
1LIBRARY "DiagnosticDataQuery.dll"
2EXPORTS
3DdqCancelDiagnosticRecordOperation
4DdqCloseSession
5DdqCreateSession
6DdqExtractDiagnosticReport
7DdqFreeDiagnosticRecordLocaleTags
8DdqFreeDiagnosticRecordPage
9DdqFreeDiagnosticRecordProducerCategories
10DdqFreeDiagnosticRecordProducers
11DdqFreeDiagnosticReport
12DdqGetDiagnosticDataAccessLevelAllowed
13DdqGetDiagnosticRecordAtIndex
14DdqGetDiagnosticRecordBinaryDistribution
15DdqGetDiagnosticRecordCategoryAtIndex
16DdqGetDiagnosticRecordCategoryCount
17DdqGetDiagnosticRecordCount
18DdqGetDiagnosticRecordLocaleTagAtIndex
19DdqGetDiagnosticRecordLocaleTagCount
20DdqGetDiagnosticRecordLocaleTags
21DdqGetDiagnosticRecordPage
22DdqGetDiagnosticRecordPayload
23DdqGetDiagnosticRecordProducerAtIndex
24DdqGetDiagnosticRecordProducerCategories
25DdqGetDiagnosticRecordProducerCount
26DdqGetDiagnosticRecordProducers
27DdqGetDiagnosticRecordStats
28DdqGetDiagnosticRecordSummary
29DdqGetDiagnosticRecordTagDistribution
30DdqGetDiagnosticReport
31DdqGetDiagnosticReportAtIndex
32DdqGetDiagnosticReportCount
33DdqGetDiagnosticReportStoreReportCount
34DdqGetSessionAccessLevel
35DdqGetTranscriptConfiguration
36DdqIsDiagnosticRecordSampledIn
37DdqSetTranscriptConfiguration
38UtcSendTraceLogging
39UtcSendTraceLogging2
lib/libc/mingw/lib-common/dimsroam.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file dimsroam.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY dimsroam.dll
8EXPORTS
9DimsRoamEntry
lib/libc/mingw/lib-common/dinput.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file DINPUT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DINPUT.dll
8EXPORTS
9DirectInputCreateA
10DirectInputCreateEx
11DirectInputCreateW
12DllCanUnloadNow
13DllGetClassObject
14DllRegisterServer
15DllUnregisterServer
lib/libc/mingw/lib-common/dinput8.def+1
......@@ -11,3 +11,4 @@ DllCanUnloadNow
1111DllGetClassObject
1212DllRegisterServer
1313DllUnregisterServer
14GetdfDIJoystick
lib/libc/mingw/lib-common/directml.def created+6
......@@ -0,0 +1,6 @@
1LIBRARY directml
2
3EXPORTS
4
5DMLCreateDevice
6DMLCreateDevice1
lib/libc/mingw/lib-common/diskcopy.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file DISKCOPY.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DISKCOPY.dll
8EXPORTS
9DiskCopyRunDll
10DiskCopyRunDllW
11DllCanUnloadNow
12DllGetClassObject
lib/libc/mingw/lib-common/dismapi.def created+102
......@@ -0,0 +1,102 @@
1;
2; Definition file of DismApi.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DismApi.DLL"
7EXPORTS
8DismAddCapability
9DismAddDriver
10DismAddPackage
11DismApplyUnattend
12DismCheckImageHealth
13DismCleanupMountpoints
14DismCloseSession
15DismCommitImage
16DismDelete
17DismDisableFeature
18DismEnableFeature
19DismGetCapabilities
20DismGetCapabilityInfo
21DismGetDriverInfo
22DismGetDrivers
23DismGetFeatureInfo
24DismGetFeatureParent
25DismGetFeatures
26DismGetImageInfo
27DismGetLastErrorMessage
28DismGetMountedImageInfo
29DismGetPackageInfo
30DismGetPackageInfoEx
31DismGetPackages
32DismGetReservedStorageState
33DismInitialize
34DismMountImage
35DismOpenSession
36DismRemountImage
37DismRemoveCapability
38DismRemoveDriver
39DismRemovePackage
40DismRestoreImageHealth
41DismSetReservedStorageState
42DismShutdown
43DismUnmountImage
44_DismAddCapabilityEx
45_DismAddDriverEx
46_DismAddPackageEx
47_DismAddPackageFamilyToUninstallBlocklist
48_DismAddProvisionedAppxPackage
49_DismApplyCustomDataImage
50_DismApplyFfuImage
51_DismApplyProvisioningPackage
52_DismCleanImage
53_DismEnableDisableFeature
54_DismExportDriver
55_DismExportSource
56_DismExportSourceEx
57_DismGetCapabilitiesEx
58_DismGetCapabilityInfoEx
59_DismGetCurrentEdition
60_DismGetDriversEx
61_DismGetEffectiveSystemUILanguage
62_DismGetFeaturesEx
63_DismGetInstallLanguage
64_DismGetKCacheBinaryValue
65_DismGetKCacheDwordValue
66_DismGetKCacheStringValue
67_DismGetLastCBSSessionID
68_DismGetNonRemovableAppsPolicy
69_DismGetOSUninstallWindow
70_DismGetOsInfo
71_DismGetProductKeyInfo
72_DismGetProvisionedAppxPackages
73_DismGetProvisioningPackageInfo
74_DismGetRegistryMountPoint
75_DismGetStateFromCBSSessionID
76_DismGetTargetCompositionEditions
77_DismGetTargetEditions
78_DismGetTargetVirtualEditions
79_DismGetUsedSpace
80_DismInitiateOSUninstall
81_DismOptimizeImage
82_DismOptimizeProvisionedAppxPackages
83_DismRemoveOSUninstall
84_DismRemovePackageFamilyFromUninstallBlocklist
85_DismRemoveProvisionedAppxPackage
86_DismRemoveProvisionedAppxPackageAllUsers
87_DismRevertPendingActions
88_DismSetAllIntlSettings
89_DismSetAppXProvisionedDataFile
90_DismSetEdition
91_DismSetEdition2
92_DismSetFirstBootCommandLine
93_DismSetMachineName
94_DismSetOSUninstallWindow
95_DismSetProductKey
96_DismSetSkuIntlDefaults
97_DismSplitFfuImage
98_DismStage
99_DismSysprepCleanup
100_DismSysprepGeneralize
101_DismSysprepSpecialize
102_DismValidateProductKey
lib/libc/mingw/lib-common/dmutil.def created+31
......@@ -0,0 +1,31 @@
1LIBRARY "dmutil.dll"
2EXPORTS
3CoDisableDynamicVolumes
4GetSystemVolume
5AddEntryBootFileGpt
6AddEntryBootFileMbr
7DisplayError
8DisplayErrorRgszw
9DmCommonNtOpenFile
10DynamicSupport
11FTrace
12FTraceValist
13FreeRgszw
14GetErrorData
15GetInstallDirectoryPath
16IsPersonalSKU
17LowAcquirePrivilege
18LowGetPartitionInfo
19LowNtAddBootEntry
20LowNtReadFile
21LowNtReadOnlyAttributeOff
22LowNtWriteFile
23RgszwDupRgszw
24RgszwFromArgs
25RgszwFromValist
26SafeLoadVdsService
27ShowMessage
28ShowMessageValist
29SzwDupSzw
30SzwFromSza
31TranslateError
lib/libc/mingw/lib-common/dnsapi.def+1
......@@ -28,6 +28,7 @@ DnsAsyncRegisterTerm
2828DnsCancelQuery
2929DnsCheckNrptRuleIntegrity
3030DnsCheckNrptRules
31DnsCleanupTcpConnections
3132DnsConnectionDeletePolicyEntries
3233DnsConnectionDeletePolicyEntriesPrivate
3334DnsConnectionDeleteProxyInfo
lib/libc/mingw/lib-common/dnsperf.def created+7
......@@ -0,0 +1,7 @@
1LIBRARY dnsperf
2
3EXPORTS
4
5CloseDnsPerformanceData
6CollectDnsPerformanceData
7OpenDnsPerformanceData
lib/libc/mingw/lib-common/dnsrslvr.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of dnsrslvr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dnsrslvr.dll"
7EXPORTS
8LoadGPExtension
9Reg_DoRegisterAdapter
10ServiceMain
11SvchostPushServiceGlobals
lib/libc/mingw/lib-common/drprov.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of drprov.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "drprov.dll"
7EXPORTS
8NPAddConnection
9NPAddConnection3
10NPCancelConnection
11NPCloseEnum
12NPEnumResource
13NPGetCaps
14NPGetConnection
15NPGetResourceInformation
16NPGetResourceParent
17NPGetUniversalName
18NPOpenEnum
19NPGetConnectionPerformance
lib/libc/mingw/lib-common/dsauth.def created+32
......@@ -0,0 +1,32 @@
1;
2; Exports of file DSAUTH.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DSAUTH.dll
8EXPORTS
9DhcpAddServerDS
10DhcpDeleteServerDS
11DhcpDsAddServer
12DhcpDsCleanupDS
13DhcpDsDelServer
14DhcpDsEnumServers
15DhcpDsGetAttribs
16DhcpDsGetLists
17DhcpDsGetRoot
18DhcpDsInitDS
19DhcpDsSetLists
20DhcpDsValidateService
21DhcpEnumServersDS
22StoreBeginSearch
23StoreCleanupHandle
24StoreCollectAttributes
25StoreCreateObjectVA
26StoreDeleteObject
27StoreEndSearch
28StoreGetHandle
29StoreInitHandle
30StoreSearchGetNext
31StoreSetSearchOneLevel
32StoreSetSearchSubTree
lib/libc/mingw/lib-common/dskquota.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file DSKQUOTA.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DSKQUOTA.dll
8EXPORTS
9ProcessGroupPolicy
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib-common/dsparse.def created+22
......@@ -0,0 +1,22 @@
1LIBRARY "dsparse.dll"
2EXPORTS
3DsCrackSpn2A
4DsCrackSpn2W
5DsCrackSpn3W
6DsCrackSpn4W
7DsCrackSpnA
8DsCrackSpnW
9DsCrackUnquotedMangledRdnA
10DsCrackUnquotedMangledRdnW
11DsGetRdnW
12DsIsMangledDnA
13DsIsMangledDnW
14DsIsMangledRdnValueA
15DsIsMangledRdnValueW
16DsMakeSpn2W
17DsMakeSpnA
18DsMakeSpnW
19DsQuoteRdnValueA
20DsQuoteRdnValueW
21DsUnquoteRdnValueA
22DsUnquoteRdnValueW
lib/libc/mingw/lib-common/dsquery.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file dsquery.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY dsquery.dll
8EXPORTS
9OpenSavedDsQuery
10OpenSavedDsQueryW
11OpenQueryWindow
12DllCanUnloadNow
13DllGetClassObject
14DllInstall
15DllRegisterServer
16DllUnregisterServer
lib/libc/mingw/lib-common/dssenh.def created+35
......@@ -0,0 +1,35 @@
1;
2; Exports of file DSSENH.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DSSENH.dll
8EXPORTS
9CPAcquireContext
10CPCreateHash
11CPDecrypt
12CPDeriveKey
13CPDestroyHash
14CPDestroyKey
15CPDuplicateHash
16CPDuplicateKey
17CPEncrypt
18CPExportKey
19CPGenKey
20CPGenRandom
21CPGetHashParam
22CPGetKeyParam
23CPGetProvParam
24CPGetUserKey
25CPHashData
26CPHashSessionKey
27CPImportKey
28CPReleaseContext
29CPSetHashParam
30CPSetKeyParam
31CPSetProvParam
32CPSignHash
33CPVerifySignature
34DllRegisterServer
35DllUnregisterServer
lib/libc/mingw/lib-common/duser.def created+157
......@@ -0,0 +1,157 @@
1LIBRARY "DUser.dll"
2EXPORTS
3DUserCastHandle
4DUserDeleteGadget
5GetStdColorBrushF
6GetStdColorF
7GetStdColorPenF
8UtilDrawOutlineRect
9AddGadgetMessageHandler
10AddLayeredRef
11AdjustClipInsideRef
12AttachWndProcA
13AttachWndProcW
14AutoTrace
15BeginTransition
16BeginHideInputPaneAnimation
17BeginShowInputPaneAnimation
18BuildAnimation
19BuildDropTarget
20BuildInterpolation
21CacheDWriteRenderTarget
22ChangeCurrentAnimationScenario
23ClearPushedOpacitiesFromGadgetTree
24ClearTopmostVisual
25CreateAction
26CreateGadget
27CreateTransition
28CustomGadgetHitTestQuery
29DUserBuildGadget
30DUserCastClass
31DUserCastDirect
32DUserFindClass
33DUserFlushDeferredMessages
34DUserFlushMessages
35DUserGetAlphaPRID
36DUserGetGutsData
37DUserGetRectPRID
38DUserGetRotatePRID
39DUserGetScalePRID
40DUserInstanceOf
41DUserPostEvent
42DUserPostMethod
43DUserRegisterGuts
44DUserRegisterStub
45DUserRegisterSuper
46DUserSendEvent
47DUserSendMethod
48DUserStopAnimation
49DUserStopPVLAnimation
50DeleteHandle
51DestroyPendingDCVisuals
52DetachGadgetVisuals
53DetachWndProc
54DisableContainerHwnd
55DrawGadgetTree
56EndInputPaneAnimation
57EndTransition
58EnsureAnimationsEnabled
59EnsureGadgetTransInitialized
60EnumGadgets
61FindGadgetFromPoint
62FindGadgetMessages
63FindGadgetTargetingInfo
64FindStdColor
65FireGadgetMessages
66ForwardGadgetMessage
67GadgetTransCompositionChanged
68GadgetTransSettingChanged
69GetActionTimeslice
70GetCachedDWriteRenderTarget
71GetDUserModule
72GetDebug
73GetFinalAnimatingPosition
74GetGadget
75GetGadgetAnimation
76GetGadgetBitmap
77GetGadgetBufferInfo
78GetGadgetCenterPoint
79GetGadgetFlags
80GetGadgetFocus
81GetGadgetLayerInfo
82GetGadgetMessageFilter
83GetGadgetProperty
84GetGadgetRect
85GetGadgetRgn
86GetGadgetRootInfo
87GetGadgetRotation
88GetGadgetScale
89GetGadgetSize
90GetGadgetStyle
91GetGadgetTicket
92GetGadgetVisual
93GetMessageExA
94GetMessageExW
95GetStdColorBrushI
96GetStdColorI
97GetStdColorName
98GetStdColorPenI
99GetStdPalette
100GetTransitionInterface
101InitGadgetComponent
102InitGadgets
103InvalidateGadget
104InvalidateLayeredDescendants
105IsGadgetParentChainStyle
106IsInsideContext
107IsStartDelete
108LookupGadgetTicket
109MapGadgetPoints
110PeekMessageExA
111PeekMessageExW
112PlayTransition
113PrintTransition
114RegisterGadgetMessage
115RegisterGadgetMessageString
116RegisterGadgetProperty
117ReleaseDetachedObjects
118ReleaseLayeredRef
119ReleaseMouseCapture
120RemoveClippingImmunityFromVisual
121RemoveGadgetMessageHandler
122RemoveGadgetProperty
123ResetDUserDevice
124ScheduleGadgetTransitions
125SetActionTimeslice
126SetAtlasingHints
127SetGadgetBufferInfo
128SetGadgetCenterPoint
129SetGadgetFillF
130SetGadgetFillI
131SetGadgetFlags
132SetGadgetFocus
133SetGadgetFocusEx
134SetGadgetLayerInfo
135SetGadgetMessageFilter
136SetGadgetOrder
137SetGadgetParent
138SetGadgetProperty
139SetGadgetRect
140SetGadgetRootInfo
141SetGadgetRotation
142SetGadgetScale
143SetGadgetStyle
144SetHardwareDeviceUsage
145SetMinimumDCompVersion
146SetRestoreCachedLayeredRefFlag
147SetTransitionVisualProperties
148SetWindowResizeFlag
149UninitGadgetComponent
150UnregisterGadgetMessage
151UnregisterGadgetMessageString
152UnregisterGadgetProperty
153UtilBuildFont
154UtilDrawBlendRect
155UtilGetColor
156UtilSetBackground
157WaitMessageEx
lib/libc/mingw/lib-common/dxcore.def created+5
......@@ -0,0 +1,5 @@
1LIBRARY dxcore
2
3EXPORTS
4
5DXCoreCreateAdapterFactory
lib/libc/mingw/lib-common/dxgi.def-1
......@@ -48,7 +48,6 @@ D3DKMTSetContextSchedulingPriority
4848D3DKMTSetDisplayMode
4949D3DKMTSetGammaRamp
5050D3DKMTSetVidPnSourceOwner
51D3DKMTWaitForSynchronizationObject
5251D3DKMTWaitForVerticalBlankEvent
5352DXGID3D10CreateDevice
5453DXGID3D10CreateLayeredDevice
lib/libc/mingw/lib-common/eappgnui.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of GenericUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "GenericUI.dll"
7EXPORTS
8DllCanUnloadNow
9DllGetClassObject
10DllRegisterServer
11DllUnregisterServer
12EapPeerFreeErrorMemory
13EapPeerFreeMemory
14EapPeerInvokeIdentityUI
lib/libc/mingw/lib-common/eapphost.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of eapphost.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "eapphost.dll"
7EXPORTS
8OnSessionChange
9InitializeEapHost
10StopServiceOnLowPower
11UninitializeEapHost
lib/libc/mingw/lib-common/efsadu.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of EFSADU.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EFSADU.dll"
7EXPORTS
8AddUserToObjectW
9BackCurrentEfsCert
10EfsDetail
11EfsUIUtilCheckScardStatus
12EfsUIUtilCreateSelfSignedCertificate
13EfsUIUtilEncryptMyDocuments
14EfsUIUtilEnrollEfsCertificate
15EfsUIUtilEnrollEfsCertificateEx
16EfsUIUtilInstallDra
17EfsUIUtilKeyBackup
18EfsUIUtilPromptForPin
19EfsUIUtilPromptForPinDialog
20EfsUIUtilSelectCard
21EfsUIUtilShowBalloonAndWait
lib/libc/mingw/lib-common/esent.def created+381
......@@ -0,0 +1,381 @@
1;
2; Definition file of ESENT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ESENT.dll"
7EXPORTS
8DebugExtensionInitialize
9DebugExtensionNotify
10DebugExtensionUninitialize
11JetAddColumn
12JetAddColumnA
13JetAddColumnW
14JetAttachDatabase
15JetAttachDatabase2
16JetAttachDatabase2A
17JetAttachDatabase2W
18JetAttachDatabase3
19JetAttachDatabase3A
20JetAttachDatabase3W
21JetAttachDatabaseA
22JetAttachDatabaseW
23JetAttachDatabaseWithStreaming
24JetAttachDatabaseWithStreamingA
25JetAttachDatabaseWithStreamingW
26JetBackup
27JetBackupA
28JetBackupInstance
29JetBackupInstanceA
30JetBackupInstanceW
31JetBackupW
32JetBeginDatabaseIncrementalReseed
33JetBeginDatabaseIncrementalReseedA
34JetBeginDatabaseIncrementalReseedW
35JetBeginExternalBackup
36JetBeginExternalBackupInstance
37JetBeginSession
38JetBeginSessionA
39JetBeginSessionW
40JetBeginSurrogateBackup
41JetBeginTransaction
42JetBeginTransaction2
43JetBeginTransaction3
44JetCloseDatabase
45JetCloseFile
46JetCloseFileInstance
47JetCloseTable
48JetCommitTransaction
49JetCommitTransaction2
50JetCompact
51JetCompactA
52JetCompactW
53JetComputeStats
54JetConfigureProcessForCrashDump
55JetConsumeLogData
56JetConvertDDL
57JetConvertDDLA
58JetConvertDDLW
59JetCreateDatabase
60JetCreateDatabase2
61JetCreateDatabase2A
62JetCreateDatabase2W
63JetCreateDatabase3
64JetCreateDatabase3A
65JetCreateDatabase3W
66JetCreateDatabaseA
67JetCreateDatabaseW
68JetCreateDatabaseWithStreaming
69JetCreateDatabaseWithStreamingA
70JetCreateDatabaseWithStreamingW
71JetCreateEncryptionKey
72JetCreateIndex
73JetCreateIndex2
74JetCreateIndex2A
75JetCreateIndex2W
76JetCreateIndex3A
77JetCreateIndex3W
78JetCreateIndex4A
79JetCreateIndex4W
80JetCreateIndexA
81JetCreateIndexW
82JetCreateInstance
83JetCreateInstance2
84JetCreateInstance2A
85JetCreateInstance2W
86JetCreateInstanceA
87JetCreateInstanceW
88JetCreateTable
89JetCreateTableA
90JetCreateTableColumnIndex
91JetCreateTableColumnIndex2
92JetCreateTableColumnIndex2A
93JetCreateTableColumnIndex2W
94JetCreateTableColumnIndex3A
95JetCreateTableColumnIndex3W
96JetCreateTableColumnIndex4A
97JetCreateTableColumnIndex4W
98JetCreateTableColumnIndex5A
99JetCreateTableColumnIndex5W
100JetCreateTableColumnIndexA
101JetCreateTableColumnIndexW
102JetCreateTableW
103JetDBUtilities
104JetDBUtilitiesA
105JetDBUtilitiesW
106JetDatabaseScan
107JetDefragment
108JetDefragment2
109JetDefragment2A
110JetDefragment2W
111JetDefragment3
112JetDefragment3A
113JetDefragment3W
114JetDefragmentA
115JetDefragmentW
116JetDelete
117JetDeleteColumn
118JetDeleteColumn2
119JetDeleteColumn2A
120JetDeleteColumn2W
121JetDeleteColumnA
122JetDeleteColumnW
123JetDeleteIndex
124JetDeleteIndexA
125JetDeleteIndexW
126JetDeleteTable
127JetDeleteTableA
128JetDeleteTableW
129JetDetachDatabase
130JetDetachDatabase2
131JetDetachDatabase2A
132JetDetachDatabase2W
133JetDetachDatabaseA
134JetDetachDatabaseW
135JetDupCursor
136JetDupSession
137JetEnableMultiInstance
138JetEnableMultiInstanceA
139JetEnableMultiInstanceW
140JetEndDatabaseIncrementalReseed
141JetEndDatabaseIncrementalReseedA
142JetEndDatabaseIncrementalReseedW
143JetEndExternalBackup
144JetEndExternalBackupInstance
145JetEndExternalBackupInstance2
146JetEndSession
147JetEndSurrogateBackup
148JetEnumerateColumns
149JetEscrowUpdate
150JetExternalRestore
151JetExternalRestore2
152JetExternalRestore2A
153JetExternalRestore2W
154JetExternalRestoreA
155JetExternalRestoreW
156JetFreeBuffer
157JetGetAttachInfo
158JetGetAttachInfoA
159JetGetAttachInfoInstance
160JetGetAttachInfoInstanceA
161JetGetAttachInfoInstanceW
162JetGetAttachInfoW
163JetGetBookmark
164JetGetColumnInfo
165JetGetColumnInfoA
166JetGetColumnInfoW
167JetGetCounter
168JetGetCurrentIndex
169JetGetCurrentIndexA
170JetGetCurrentIndexW
171JetGetCursorInfo
172JetGetDatabaseFileInfo
173JetGetDatabaseFileInfoA
174JetGetDatabaseFileInfoW
175JetGetDatabaseInfo
176JetGetDatabaseInfoA
177JetGetDatabaseInfoW
178JetGetDatabasePages
179JetGetErrorInfoW
180JetGetIndexInfo
181JetGetIndexInfoA
182JetGetIndexInfoW
183JetGetInstanceInfo
184JetGetInstanceInfoA
185JetGetInstanceInfoW
186JetGetInstanceMiscInfo
187JetGetLS
188JetGetLock
189JetGetLogFileInfo
190JetGetLogFileInfoA
191JetGetLogFileInfoW
192JetGetLogInfo
193JetGetLogInfoA
194JetGetLogInfoInstance
195JetGetLogInfoInstance2
196JetGetLogInfoInstance2A
197JetGetLogInfoInstance2W
198JetGetLogInfoInstanceA
199JetGetLogInfoInstanceW
200JetGetLogInfoW
201JetGetMaxDatabaseSize
202JetGetObjectInfo
203JetGetObjectInfoA
204JetGetObjectInfoW
205JetGetPageInfo
206JetGetPageInfo2
207JetGetRecordPosition
208JetGetRecordSize
209JetGetRecordSize2
210JetGetResourceParam
211JetGetSecondaryIndexBookmark
212JetGetSessionInfo
213JetGetSessionParameter
214JetGetSystemParameter
215JetGetSystemParameterA
216JetGetSystemParameterW
217JetGetTableColumnInfo
218JetGetTableColumnInfoA
219JetGetTableColumnInfoW
220JetGetTableIndexInfo
221JetGetTableIndexInfoA
222JetGetTableIndexInfoW
223JetGetTableInfo
224JetGetTableInfoA
225JetGetTableInfoW
226JetGetThreadStats
227JetGetTruncateLogInfoInstance
228JetGetTruncateLogInfoInstanceA
229JetGetTruncateLogInfoInstanceW
230JetGetVersion
231JetGotoBookmark
232JetGotoPosition
233JetGotoSecondaryIndexBookmark
234JetGrowDatabase
235JetIdle
236JetIndexRecordCount
237JetIndexRecordCount2
238JetInit
239JetInit2
240JetInit3
241JetInit3A
242JetInit3W
243JetInit4
244JetInit4A
245JetInit4W
246JetIntersectIndexes
247JetMakeKey
248JetMove
249JetOSSnapshotAbort
250JetOSSnapshotEnd
251JetOSSnapshotFreeze
252JetOSSnapshotFreezeA
253JetOSSnapshotFreezeW
254JetOSSnapshotGetFreezeInfo
255JetOSSnapshotGetFreezeInfoA
256JetOSSnapshotGetFreezeInfoW
257JetOSSnapshotPrepare
258JetOSSnapshotPrepareInstance
259JetOSSnapshotThaw
260JetOSSnapshotTruncateLog
261JetOSSnapshotTruncateLogInstance
262JetOnlinePatchDatabasePage
263JetOpenDatabase
264JetOpenDatabaseA
265JetOpenDatabaseW
266JetOpenFile
267JetOpenFileA
268JetOpenFileInstance
269JetOpenFileInstanceA
270JetOpenFileInstanceW
271JetOpenFileSectionInstance
272JetOpenFileSectionInstanceA
273JetOpenFileSectionInstanceW
274JetOpenFileW
275JetOpenTable
276JetOpenTableA
277JetOpenTableW
278JetOpenTempTable
279JetOpenTempTable2
280JetOpenTempTable3
281JetOpenTemporaryTable
282JetOpenTemporaryTable2
283JetPatchDatabasePages
284JetPatchDatabasePagesA
285JetPatchDatabasePagesW
286JetPrepareToCommitTransaction
287JetPrepareUpdate
288JetPrereadColumnsByReference
289JetPrereadIndexRange
290JetPrereadIndexRanges
291JetPrereadKeys
292JetPrereadTablesW
293JetReadFile
294JetReadFileInstance
295JetRegisterCallback
296JetRemoveLogfileA
297JetRemoveLogfileW
298JetRenameColumn
299JetRenameColumnA
300JetRenameColumnW
301JetRenameTable
302JetRenameTableA
303JetRenameTableW
304JetResetCounter
305JetResetSessionContext
306JetResetTableSequential
307JetResizeDatabase
308JetRestore
309JetRestore2
310JetRestore2A
311JetRestore2W
312JetRestoreA
313JetRestoreInstance
314JetRestoreInstanceA
315JetRestoreInstanceW
316JetRestoreW
317JetRetrieveColumn
318JetRetrieveColumnByReference
319JetRetrieveColumnFromRecordStream
320JetRetrieveColumns
321JetRetrieveKey
322JetRetrieveTaggedColumnList
323JetRollback
324JetSeek
325JetSetColumn
326JetSetColumnDefaultValue
327JetSetColumnDefaultValueA
328JetSetColumnDefaultValueW
329JetSetColumns
330JetSetCurrentIndex
331JetSetCurrentIndex2
332JetSetCurrentIndex2A
333JetSetCurrentIndex2W
334JetSetCurrentIndex3
335JetSetCurrentIndex3A
336JetSetCurrentIndex3W
337JetSetCurrentIndex4
338JetSetCurrentIndex4A
339JetSetCurrentIndex4W
340JetSetCurrentIndexA
341JetSetCurrentIndexW
342JetSetCursorFilter
343JetSetDatabaseSize
344JetSetDatabaseSizeA
345JetSetDatabaseSizeW
346JetSetIndexRange
347JetSetLS
348JetSetMaxDatabaseSize
349JetSetResourceParam
350JetSetSessionContext
351JetSetSessionParameter
352JetSetSystemParameter
353JetSetSystemParameterA
354JetSetSystemParameterW
355JetSetTableInfo
356JetSetTableInfoA
357JetSetTableInfoW
358JetSetTableSequential
359JetSnapshotStart
360JetSnapshotStartA
361JetSnapshotStartW
362JetSnapshotStop
363JetStopBackup
364JetStopBackupInstance
365JetStopService
366JetStopServiceInstance
367JetStopServiceInstance2
368JetStreamRecords
369JetTerm
370JetTerm2
371JetTestHook
372JetTracing
373JetTruncateLog
374JetTruncateLogInstance
375JetUnregisterCallback
376JetUpdate
377JetUpdate2
378JetUpgradeDatabase
379JetUpgradeDatabaseA
380JetUpgradeDatabaseW
381ese
lib/libc/mingw/lib-common/esentprf.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file ESENTPRF.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ESENTPRF.dll
8EXPORTS
9ClosePerformanceData
10CollectPerformanceData
11OpenPerformanceData
lib/libc/mingw/lib-common/fdeploy.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of fdeploy.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fdeploy.dll"
7EXPORTS
8ProcessWmiPolicy
9GenerateGroupPolicy
10ProcessGroupPolicyEx
lib/libc/mingw/lib-common/feclient.def created+43
......@@ -0,0 +1,43 @@
1;
2; Definition file of FeClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FeClient.dll"
7EXPORTS
8EfsUtilGetCurrentKey
9EdpContainerizeFile
10EdpCredentialCreate
11EdpCredentialDelete
12EdpCredentialExists
13EdpCredentialQuery
14EdpDecontainerizeFile
15EdpDplPolicyEnabledForUser
16EdpDplUpgradePinInfo
17EdpDplUpgradeVerifyUser
18EdpDplUserCredentialsSet
19EdpDplUserUnlockComplete
20EdpDplUserUnlockStart
21EdpFree
22EdpGetContainerIdentity
23EdpGetCredServiceState
24EdpQueryCredServiceInfo
25EdpQueryDplEnforcedPolicyOwnerIds
26EdpQueryRevokedPolicyOwnerIds
27EdpRmsClearKeys
28EdpSetCredServiceInfo
29EfsClientCloseFileRaw
30EfsClientDecryptFile
31EfsClientDuplicateEncryptionInfo
32EfsClientEncryptFileEx
33EfsClientFileEncryptionStatus
34EfsClientFreeProtectorList
35EfsClientGetEncryptedFileVersion
36EfsClientOpenFileRaw
37EfsClientQueryProtectors
38EfsClientReadFileRaw
39EfsClientWriteFileRaw
40EfsClientWriteFileWithHeaderRaw
41FeClientInitialize
42GetLockSessionUnwrappedKey
43GetLockSessionWrappedKey
lib/libc/mingw/lib-common/filemgmt.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of FILEMGMT.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FILEMGMT.DLL"
7EXPORTS
8CacheSettingsDlg
9CacheSettingsDlg2
lib/libc/mingw/lib-common/fmifs.def created+32
......@@ -0,0 +1,32 @@
1;
2; Definition file of FMIFS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FMIFS.dll"
7EXPORTS
8GetFirstCorruptionInfo
9Chkdsk
10ChkdskEx
11ComputeFmMediaType
12DiskCopy
13EnableVolumeCompression
14EnableVolumeIntegrity
15Extend
16Format
17FormatEx
18FormatEx2
19FreeCorruptionInfo
20GetCorruptionInfoClose
21GetDefaultFileSystem
22GetNextCorruptionInfo
23QueryAvailableFileSystemFormat
24QueryCorruptionState
25QueryCorruptionStateByHandle
26QueryDeviceInformation
27QueryDeviceInformationByHandle
28QueryFileSystemName
29QueryIsDiskCheckScheduledForNextBoot
30QueryLatestFileSystemVersion
31QuerySupportedMedia
32SetLabel
lib/libc/mingw/lib-common/gamemode.def created+7
......@@ -0,0 +1,7 @@
1LIBRARY gamemode.dll
2
3EXPORTS
4
5GetExpandedResourceExclusiveCpuCount
6HasExpandedResources
7ReleaseExclusiveCpuSets
lib/libc/mingw/lib-common/getuname.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file GetUName.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY GetUName.dll
8EXPORTS
9GetUName
lib/libc/mingw/lib-common/hbaapi.def created+100
......@@ -0,0 +1,100 @@
1;
2; Definition file of HBAAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "HBAAPI.dll"
7EXPORTS
8HBA_CloseAdapter
9HBA_FreeLibrary
10HBA_GetAdapterAttributes
11HBA_GetAdapterName
12HBA_GetAdapterPortAttributes
13HBA_GetBindingCapability
14HBA_GetBindingSupport
15HBA_GetDiscoveredPortAttributes
16HBA_GetEventBuffer
17HBA_GetFC4Statistics
18HBA_GetFCPStatistics
19HBA_GetFcpPersistentBinding
20HBA_GetFcpTargetMapping
21HBA_GetFcpTargetMappingV2
22HBA_GetNumberOfAdapters
23HBA_GetPersistentBindingV2
24HBA_GetPortAttributesByWWN
25HBA_GetPortStatistics
26HBA_GetRNIDMgmtInfo
27HBA_GetVendorLibraryAttributes
28HBA_GetVersion
29HBA_GetWrapperLibraryAttributes
30HBA_LoadLibrary
31HBA_OpenAdapter
32HBA_OpenAdapterByWWN
33HBA_RefreshAdapterConfiguration
34HBA_RefreshInformation
35HBA_RegisterForAdapterAddEvents
36HBA_RegisterForAdapterEvents
37HBA_RegisterForAdapterPortEvents
38HBA_RegisterForAdapterPortStatEvents
39HBA_RegisterForLinkEvents
40HBA_RegisterForTargetEvents
41HBA_RegisterLibrary
42HBA_RegisterLibraryV2
43HBA_RemoveAllPersistentBindings
44HBA_RemoveCallback
45HBA_RemovePersistentBinding
46HBA_ResetStatistics
47HBA_ScsiInquiryV2
48HBA_ScsiReadCapacityV2
49HBA_ScsiReportLUNsV2
50HBA_SendCTPassThru
51HBA_SendCTPassThruV2
52HBA_SendLIRR
53HBA_SendRLS
54HBA_SendRNID
55HBA_SendRNIDV2
56HBA_SendRPL
57HBA_SendRPS
58HBA_SendReadCapacity
59HBA_SendReportLUNs
60HBA_SendSRL
61HBA_SendScsiInquiry
62HBA_SetBindingSupport
63HBA_SetPersistentBindingV2
64HBA_SetRNIDMgmtInfo
65HbaGetAdapterNameByDeviceInstanceId
66SMHBA_GetAdapterAttributes
67SMHBA_GetAdapterPortAttributes
68SMHBA_GetBindingCapability
69SMHBA_GetBindingSupport
70SMHBA_GetDiscoveredPortAttributes
71SMHBA_GetFCPhyAttributes
72SMHBA_GetLUNStatistics
73SMHBA_GetNumberOfPorts
74SMHBA_GetPersistentBinding
75SMHBA_GetPhyStatistics
76SMHBA_GetPortAttributesByWWN
77SMHBA_GetPortType
78SMHBA_GetProtocolStatistics
79SMHBA_GetSASPhyAttributes
80SMHBA_GetTargetMapping
81SMHBA_GetVendorLibraryAttributes
82SMHBA_GetVersion
83SMHBA_GetWrapperLibraryAttributes
84SMHBA_RegisterForAdapterAddEvents
85SMHBA_RegisterForAdapterEvents
86SMHBA_RegisterForAdapterPhyStatEvents
87SMHBA_RegisterForAdapterPortEvents
88SMHBA_RegisterForAdapterPortStatEvents
89SMHBA_RegisterForTargetEvents
90SMHBA_RegisterLibrary
91SMHBA_RemoveAllPersistentBindings
92SMHBA_RemovePersistentBinding
93SMHBA_ScsiInquiry
94SMHBA_ScsiReadCapacity
95SMHBA_ScsiReportLuns
96SMHBA_SendECHO
97SMHBA_SendSMPPassThru
98SMHBA_SendTEST
99SMHBA_SetBindingSupport
100SMHBA_SetPersistentBinding
lib/libc/mingw/lib-common/hotplug.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of hotplug.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "hotplug.DLL"
7EXPORTS
8CPlApplet
9HotPlugChildWithInvalidIdW
10HotPlugDriverBlockedW
11HotPlugEjectDevice
12HotPlugEjectDeviceEx
13HotPlugEjectVetoedW
14HotPlugHibernateVetoedW
15HotPlugRemovalVetoedW
16HotPlugSafeRemovalDriveNotificationW
17HotPlugSafeRemovalNotificationW
18HotPlugStandbyVetoedW
19HotPlugWarmEjectVetoedW
lib/libc/mingw/lib-common/hrtfapo.def created+9
......@@ -0,0 +1,9 @@
1LIBRARY hrtfapo
2
3EXPORTS
4
5CreateHrtfApo
6CreateHrtfApoWithDatasetType
7CreateHrtfEngineFactory
8GetHrtfEngineMinFrameCount
9IsHrtfApoAvailable
lib/libc/mingw/lib-common/htmlhelp.def created+15
......@@ -0,0 +1,15 @@
1; library name is libhtmlhelp.a but
2; functions exported from hhcrtl.ocx
3
4LIBRARY "hhctrl.ocx"
5EXPORTS
6LoadHHA
7DllCanUnloadNow
8AuthorMsg
9DllGetClassObject
10DllRegisterServer
11DllUnregisterServer
12doWinMain
13HtmlHelpA
14HtmlHelpW
15HhWindowThread
lib/libc/mingw/lib-common/htui.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file htUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY htUI.dll
8EXPORTS
9DllMain
10HTUI_ColorAdjustment
11HTUI_ColorAdjustmentA
12HTUI_ColorAdjustmentW
13HTUI_DeviceColorAdjustment
14HTUI_DeviceColorAdjustmentA
15HTUI_DeviceColorAdjustmentW
lib/libc/mingw/lib-common/iashlpr.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of iashlpr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iashlpr.dll"
7EXPORTS
8AllocateAttributes
9ConfigureIas
10DoRequest
11DoRequestAsync
12FreeAttributes
13GetOptionIas
14InitializeIas
15MemAllocIas
16MemFreeIas
17MemReallocIas
18SetOptionIas
19ShutdownIas
lib/libc/mingw/lib-common/iassam.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file iassam.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY iassam.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13IASParmsFreeUserParms
14IASParmsQueryRasUser0
15IASParmsQueryUserProperty
16IASParmsSetRasUser0
17IASParmsSetUserProperty
lib/libc/mingw/lib-common/iassvcs.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of iassvcs.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iassvcs.dll"
7EXPORTS
8IASAdler32
9IASAllocateUniqueID
10IASGetDictionary
11IASGetHostByName
12IASGetLocalDictionary
13IASGetProductLimits
14IASGlobalLock
15IASGlobalUnlock
16IASInitialize
17IASRadiusCrypt
18IASRegisterComponent
19IASReportEvent
20IASReportLicenseViolation
21IASReportSecurityEvent
22IASRequestThread
23IASSetMaxNumberOfThreads
24IASSetMaxThreadIdle
25IASShutdown
26IASUninitialize
27IASVariantChangeType
lib/libc/mingw/lib-common/icmp.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file icmp.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY icmp.dll
8EXPORTS
9IcmpCloseHandle
10IcmpCreateFile
11IcmpParseReplies
12IcmpSendEcho
13IcmpSendEcho2
14do_echo_rep
15do_echo_req
16register_icmp
lib/libc/mingw/lib-common/icu.def created+973
......@@ -0,0 +1,973 @@
1LIBRARY icu
2
3EXPORTS
4
5UCNV_FROM_U_CALLBACK_ESCAPE
6UCNV_FROM_U_CALLBACK_SKIP
7UCNV_FROM_U_CALLBACK_STOP
8UCNV_FROM_U_CALLBACK_SUBSTITUTE
9UCNV_TO_U_CALLBACK_ESCAPE
10UCNV_TO_U_CALLBACK_SKIP
11UCNV_TO_U_CALLBACK_STOP
12UCNV_TO_U_CALLBACK_SUBSTITUTE
13u_UCharsToChars
14u_austrcpy
15u_austrncpy
16u_catclose
17u_catgets
18u_catopen
19u_charAge
20u_charDigitValue
21u_charDirection
22u_charFromName
23u_charMirror
24u_charName
25u_charType
26u_charsToUChars
27u_cleanup
28u_countChar32
29u_digit
30u_enumCharNames
31u_enumCharTypes
32u_errorName
33u_foldCase
34u_forDigit
35u_formatMessage
36u_formatMessageWithError
37u_getBidiPairedBracket
38u_getCombiningClass
39u_getDataVersion
40u_getFC_NFKC_Closure
41u_getIntPropertyMaxValue
42u_getIntPropertyMinValue
43u_getIntPropertyValue
44u_getNumericValue
45u_getPropertyEnum
46u_getPropertyName
47u_getPropertyValueEnum
48u_getPropertyValueName
49u_getUnicodeVersion
50u_getVersion
51u_hasBinaryProperty
52u_init
53u_isIDIgnorable
54u_isIDPart
55u_isIDStart
56u_isISOControl
57u_isJavaIDPart
58u_isJavaIDStart
59u_isJavaSpaceChar
60u_isMirrored
61u_isUAlphabetic
62u_isULowercase
63u_isUUppercase
64u_isUWhiteSpace
65u_isWhitespace
66u_isalnum
67u_isalpha
68u_isbase
69u_isblank
70u_iscntrl
71u_isdefined
72u_isdigit
73u_isgraph
74u_islower
75u_isprint
76u_ispunct
77u_isspace
78u_istitle
79u_isupper
80u_isxdigit
81u_memcasecmp
82u_memchr
83u_memchr32
84u_memcmp
85u_memcmpCodePointOrder
86u_memcpy
87u_memmove
88u_memrchr
89u_memrchr32
90u_memset
91u_parseMessage
92u_parseMessageWithError
93u_setMemoryFunctions
94u_shapeArabic
95u_strCaseCompare
96u_strCompare
97u_strCompareIter
98u_strFindFirst
99u_strFindLast
100u_strFoldCase
101u_strFromJavaModifiedUTF8WithSub
102u_strFromUTF32
103u_strFromUTF32WithSub
104u_strFromUTF8
105u_strFromUTF8Lenient
106u_strFromUTF8WithSub
107u_strFromWCS
108u_strHasMoreChar32Than
109u_strToJavaModifiedUTF8
110u_strToLower
111u_strToTitle
112u_strToUTF32
113u_strToUTF32WithSub
114u_strToUTF8
115u_strToUTF8WithSub
116u_strToUpper
117u_strToWCS
118u_strcasecmp
119u_strcat
120u_strchr
121u_strchr32
122u_strcmp
123u_strcmpCodePointOrder
124u_strcpy
125u_strcspn
126u_strlen
127u_strncasecmp
128u_strncat
129u_strncmp
130u_strncmpCodePointOrder
131u_strncpy
132u_strpbrk
133u_strrchr
134u_strrchr32
135u_strrstr
136u_strspn
137u_strstr
138u_strtok_r
139u_tolower
140u_totitle
141u_toupper
142u_uastrcpy
143u_uastrncpy
144u_unescape
145u_unescapeAt
146u_versionFromString
147u_versionFromUString
148u_versionToString
149u_vformatMessage
150u_vformatMessageWithError
151u_vparseMessage
152u_vparseMessageWithError
153ubidi_close
154ubidi_countParagraphs
155ubidi_countRuns
156ubidi_getBaseDirection
157ubidi_getClassCallback
158ubidi_getCustomizedClass
159ubidi_getDirection
160ubidi_getLength
161ubidi_getLevelAt
162ubidi_getLevels
163ubidi_getLogicalIndex
164ubidi_getLogicalMap
165ubidi_getLogicalRun
166ubidi_getParaLevel
167ubidi_getParagraph
168ubidi_getParagraphByIndex
169ubidi_getProcessedLength
170ubidi_getReorderingMode
171ubidi_getReorderingOptions
172ubidi_getResultLength
173ubidi_getText
174ubidi_getVisualIndex
175ubidi_getVisualMap
176ubidi_getVisualRun
177ubidi_invertMap
178ubidi_isInverse
179ubidi_isOrderParagraphsLTR
180ubidi_open
181ubidi_openSized
182ubidi_orderParagraphsLTR
183ubidi_reorderLogical
184ubidi_reorderVisual
185ubidi_setClassCallback
186ubidi_setContext
187ubidi_setInverse
188ubidi_setLine
189ubidi_setPara
190ubidi_setReorderingMode
191ubidi_setReorderingOptions
192ubidi_writeReordered
193ubidi_writeReverse
194ubiditransform_close
195ubiditransform_open
196ubiditransform_transform
197ublock_getCode
198ubrk_close
199ubrk_countAvailable
200ubrk_current
201ubrk_first
202ubrk_following
203ubrk_getAvailable
204ubrk_getBinaryRules
205ubrk_getLocaleByType
206ubrk_getRuleStatus
207ubrk_getRuleStatusVec
208ubrk_isBoundary
209ubrk_last
210ubrk_next
211ubrk_open
212ubrk_openBinaryRules
213ubrk_openRules
214ubrk_preceding
215ubrk_previous
216ubrk_refreshUText
217ubrk_safeClone
218ubrk_setText
219ubrk_setUText
220ucal_add
221ucal_clear
222ucal_clearField
223ucal_clone
224ucal_close
225ucal_countAvailable
226ucal_equivalentTo
227ucal_get
228ucal_getAttribute
229ucal_getAvailable
230ucal_getCanonicalTimeZoneID
231ucal_getDSTSavings
232ucal_getDayOfWeekType
233ucal_getDefaultTimeZone
234ucal_getFieldDifference
235ucal_getGregorianChange
236ucal_getKeywordValuesForLocale
237ucal_getLimit
238ucal_getLocaleByType
239ucal_getMillis
240ucal_getNow
241ucal_getTZDataVersion
242ucal_getTimeZoneDisplayName
243ucal_getTimeZoneID
244ucal_getTimeZoneIDForWindowsID
245ucal_getTimeZoneTransitionDate
246ucal_getType
247ucal_getWeekendTransition
248ucal_getWindowsTimeZoneID
249ucal_inDaylightTime
250ucal_isSet
251ucal_isWeekend
252ucal_open
253ucal_openCountryTimeZones
254ucal_openTimeZoneIDEnumeration
255ucal_openTimeZones
256ucal_roll
257ucal_set
258ucal_setAttribute
259ucal_setDate
260ucal_setDateTime
261ucal_setDefaultTimeZone
262ucal_setGregorianChange
263ucal_setMillis
264ucal_setTimeZone
265ucasemap_close
266ucasemap_getBreakIterator
267ucasemap_getLocale
268ucasemap_getOptions
269ucasemap_open
270ucasemap_setBreakIterator
271ucasemap_setLocale
272ucasemap_setOptions
273ucasemap_toTitle
274ucasemap_utf8FoldCase
275ucasemap_utf8ToLower
276ucasemap_utf8ToTitle
277ucasemap_utf8ToUpper
278ucnv_cbFromUWriteBytes
279ucnv_cbFromUWriteSub
280ucnv_cbFromUWriteUChars
281ucnv_cbToUWriteSub
282ucnv_cbToUWriteUChars
283ucnv_close
284ucnv_compareNames
285ucnv_convert
286ucnv_convertEx
287ucnv_countAliases
288ucnv_countAvailable
289ucnv_countStandards
290ucnv_detectUnicodeSignature
291ucnv_fixFileSeparator
292ucnv_flushCache
293ucnv_fromAlgorithmic
294ucnv_fromUChars
295ucnv_fromUCountPending
296ucnv_fromUnicode
297ucnv_getAlias
298ucnv_getAliases
299ucnv_getAvailableName
300ucnv_getCCSID
301ucnv_getCanonicalName
302ucnv_getDefaultName
303ucnv_getDisplayName
304ucnv_getFromUCallBack
305ucnv_getInvalidChars
306ucnv_getInvalidUChars
307ucnv_getMaxCharSize
308ucnv_getMinCharSize
309ucnv_getName
310ucnv_getNextUChar
311ucnv_getPlatform
312ucnv_getStandard
313ucnv_getStandardName
314ucnv_getStarters
315ucnv_getSubstChars
316ucnv_getToUCallBack
317ucnv_getType
318ucnv_getUnicodeSet
319ucnv_isAmbiguous
320ucnv_isFixedWidth
321ucnv_open
322ucnv_openAllNames
323ucnv_openCCSID
324ucnv_openPackage
325ucnv_openStandardNames
326ucnv_openU
327ucnv_reset
328ucnv_resetFromUnicode
329ucnv_resetToUnicode
330ucnv_safeClone
331ucnv_setDefaultName
332ucnv_setFallback
333ucnv_setFromUCallBack
334ucnv_setSubstChars
335ucnv_setSubstString
336ucnv_setToUCallBack
337ucnv_toAlgorithmic
338ucnv_toUChars
339ucnv_toUCountPending
340ucnv_toUnicode
341ucnv_usesFallback
342ucnvsel_close
343ucnvsel_open
344ucnvsel_openFromSerialized
345ucnvsel_selectForString
346ucnvsel_selectForUTF8
347ucnvsel_serialize
348ucol_cloneBinary
349ucol_close
350ucol_closeElements
351ucol_countAvailable
352ucol_equal
353ucol_getAttribute
354ucol_getAvailable
355ucol_getBound
356ucol_getContractionsAndExpansions
357ucol_getDisplayName
358ucol_getEquivalentReorderCodes
359ucol_getFunctionalEquivalent
360ucol_getKeywordValues
361ucol_getKeywordValuesForLocale
362ucol_getKeywords
363ucol_getLocaleByType
364ucol_getMaxExpansion
365ucol_getMaxVariable
366ucol_getOffset
367ucol_getReorderCodes
368ucol_getRules
369ucol_getRulesEx
370ucol_getSortKey
371ucol_getStrength
372ucol_getTailoredSet
373ucol_getUCAVersion
374ucol_getVariableTop
375ucol_getVersion
376ucol_greater
377ucol_greaterOrEqual
378ucol_keyHashCode
379ucol_mergeSortkeys
380ucol_next
381ucol_nextSortKeyPart
382ucol_open
383ucol_openAvailableLocales
384ucol_openBinary
385ucol_openElements
386ucol_openRules
387ucol_previous
388ucol_primaryOrder
389ucol_reset
390ucol_safeClone
391ucol_secondaryOrder
392ucol_setAttribute
393ucol_setMaxVariable
394ucol_setOffset
395ucol_setReorderCodes
396ucol_setStrength
397ucol_setText
398ucol_strcoll
399ucol_strcollIter
400ucol_strcollUTF8
401ucol_tertiaryOrder
402ucsdet_close
403ucsdet_detect
404ucsdet_detectAll
405ucsdet_enableInputFilter
406ucsdet_getAllDetectableCharsets
407ucsdet_getConfidence
408ucsdet_getLanguage
409ucsdet_getName
410ucsdet_getUChars
411ucsdet_isInputFilterEnabled
412ucsdet_open
413ucsdet_setDeclaredEncoding
414ucsdet_setText
415ucurr_countCurrencies
416ucurr_forLocale
417ucurr_forLocaleAndDate
418ucurr_getDefaultFractionDigits
419ucurr_getDefaultFractionDigitsForUsage
420ucurr_getKeywordValuesForLocale
421ucurr_getName
422ucurr_getNumericCode
423ucurr_getPluralName
424ucurr_getRoundingIncrement
425ucurr_getRoundingIncrementForUsage
426ucurr_isAvailable
427ucurr_openISOCurrencies
428ucurr_register
429ucurr_unregister
430udat_adoptNumberFormat
431udat_adoptNumberFormatForFields
432udat_applyPattern
433udat_clone
434udat_close
435udat_countAvailable
436udat_countSymbols
437udat_format
438udat_formatCalendar
439udat_formatCalendarForFields
440udat_formatForFields
441udat_get2DigitYearStart
442udat_getAvailable
443udat_getBooleanAttribute
444udat_getCalendar
445udat_getContext
446udat_getLocaleByType
447udat_getNumberFormat
448udat_getNumberFormatForField
449udat_getSymbols
450udat_isLenient
451udat_open
452udat_parse
453udat_parseCalendar
454udat_set2DigitYearStart
455udat_setBooleanAttribute
456udat_setCalendar
457udat_setContext
458udat_setLenient
459udat_setNumberFormat
460udat_setSymbols
461udat_toCalendarDateField
462udat_toPattern
463udatpg_addPattern
464udatpg_clone
465udatpg_close
466udatpg_getAppendItemFormat
467udatpg_getAppendItemName
468udatpg_getBaseSkeleton
469udatpg_getBestPattern
470udatpg_getBestPatternWithOptions
471udatpg_getDateTimeFormat
472udatpg_getDecimal
473udatpg_getFieldDisplayName
474udatpg_getPatternForSkeleton
475udatpg_getSkeleton
476udatpg_open
477udatpg_openBaseSkeletons
478udatpg_openEmpty
479udatpg_openSkeletons
480udatpg_replaceFieldTypes
481udatpg_replaceFieldTypesWithOptions
482udatpg_setAppendItemFormat
483udatpg_setAppendItemName
484udatpg_setDateTimeFormat
485udatpg_setDecimal
486udtitvfmt_close
487udtitvfmt_format
488udtitvfmt_open
489uenum_close
490uenum_count
491uenum_next
492uenum_openCharStringsEnumeration
493uenum_openUCharStringsEnumeration
494uenum_reset
495uenum_unext
496ufieldpositer_close
497ufieldpositer_next
498ufieldpositer_open
499ufmt_close
500ufmt_getArrayItemByIndex
501ufmt_getArrayLength
502ufmt_getDate
503ufmt_getDecNumChars
504ufmt_getDouble
505ufmt_getInt64
506ufmt_getLong
507ufmt_getObject
508ufmt_getType
509ufmt_getUChars
510ufmt_isNumeric
511ufmt_open
512ugender_getInstance
513ugender_getListGender
514uidna_close
515uidna_labelToASCII
516uidna_labelToASCII_UTF8
517uidna_labelToUnicode
518uidna_labelToUnicodeUTF8
519uidna_nameToASCII
520uidna_nameToASCII_UTF8
521uidna_nameToUnicode
522uidna_nameToUnicodeUTF8
523uidna_openUTS46
524uiter_current32
525uiter_getState
526uiter_next32
527uiter_previous32
528uiter_setState
529uiter_setString
530uiter_setUTF16BE
531uiter_setUTF8
532uldn_close
533uldn_getContext
534uldn_getDialectHandling
535uldn_getLocale
536uldn_keyDisplayName
537uldn_keyValueDisplayName
538uldn_languageDisplayName
539uldn_localeDisplayName
540uldn_open
541uldn_openForContext
542uldn_regionDisplayName
543uldn_scriptCodeDisplayName
544uldn_scriptDisplayName
545uldn_variantDisplayName
546ulistfmt_close
547ulistfmt_format
548ulistfmt_open
549uloc_acceptLanguage
550uloc_acceptLanguageFromHTTP
551uloc_addLikelySubtags
552uloc_canonicalize
553uloc_countAvailable
554uloc_forLanguageTag
555uloc_getAvailable
556uloc_getBaseName
557uloc_getCharacterOrientation
558uloc_getCountry
559uloc_getDefault
560uloc_getDisplayCountry
561uloc_getDisplayKeyword
562uloc_getDisplayKeywordValue
563uloc_getDisplayLanguage
564uloc_getDisplayName
565uloc_getDisplayScript
566uloc_getDisplayVariant
567uloc_getISO3Country
568uloc_getISO3Language
569uloc_getISOCountries
570uloc_getISOLanguages
571uloc_getKeywordValue
572uloc_getLCID
573uloc_getLanguage
574uloc_getLineOrientation
575uloc_getLocaleForLCID
576uloc_getName
577uloc_getParent
578uloc_getScript
579uloc_getVariant
580uloc_isRightToLeft
581uloc_minimizeSubtags
582uloc_openKeywords
583uloc_setDefault
584uloc_setKeywordValue
585uloc_toLanguageTag
586uloc_toLegacyKey
587uloc_toLegacyType
588uloc_toUnicodeLocaleKey
589uloc_toUnicodeLocaleType
590ulocdata_close
591ulocdata_getCLDRVersion
592ulocdata_getDelimiter
593ulocdata_getExemplarSet
594ulocdata_getLocaleDisplayPattern
595ulocdata_getLocaleSeparator
596ulocdata_getMeasurementSystem
597ulocdata_getNoSubstitute
598ulocdata_getPaperSize
599ulocdata_open
600ulocdata_setNoSubstitute
601umsg_applyPattern
602umsg_autoQuoteApostrophe
603umsg_clone
604umsg_close
605umsg_format
606umsg_getLocale
607umsg_open
608umsg_parse
609umsg_setLocale
610umsg_toPattern
611umsg_vformat
612umsg_vparse
613unorm2_append
614unorm2_close
615unorm2_composePair
616unorm2_getCombiningClass
617unorm2_getDecomposition
618unorm2_getInstance
619unorm2_getNFCInstance
620unorm2_getNFDInstance
621unorm2_getNFKCCasefoldInstance
622unorm2_getNFKCInstance
623unorm2_getNFKDInstance
624unorm2_getRawDecomposition
625unorm2_hasBoundaryAfter
626unorm2_hasBoundaryBefore
627unorm2_isInert
628unorm2_isNormalized
629unorm2_normalize
630unorm2_normalizeSecondAndAppend
631unorm2_openFiltered
632unorm2_quickCheck
633unorm2_spanQuickCheckYes
634unorm_compare
635unum_applyPattern
636unum_clone
637unum_close
638unum_countAvailable
639unum_format
640unum_formatDecimal
641unum_formatDouble
642unum_formatDoubleCurrency
643unum_formatDoubleForFields
644unum_formatInt64
645unum_formatUFormattable
646unum_getAttribute
647unum_getAvailable
648unum_getContext
649unum_getDoubleAttribute
650unum_getLocaleByType
651unum_getSymbol
652unum_getTextAttribute
653unum_open
654unum_parse
655unum_parseDecimal
656unum_parseDouble
657unum_parseDoubleCurrency
658unum_parseInt64
659unum_parseToUFormattable
660unum_setAttribute
661unum_setContext
662unum_setDoubleAttribute
663unum_setSymbol
664unum_setTextAttribute
665unum_toPattern
666unumf_close
667unumf_closeResult
668unumf_formatDecimal
669unumf_formatDouble
670unumf_formatInt
671unumf_openForSkeletonAndLocale
672unumf_openResult
673unumf_resultGetAllFieldPositions
674unumf_resultNextFieldPosition
675unumf_resultToString
676unumsys_close
677unumsys_getDescription
678unumsys_getName
679unumsys_getRadix
680unumsys_isAlgorithmic
681unumsys_open
682unumsys_openAvailableNames
683unumsys_openByName
684uplrules_close
685uplrules_getKeywords
686uplrules_open
687uplrules_openForType
688uplrules_select
689uregex_appendReplacement
690uregex_appendReplacementUText
691uregex_appendTail
692uregex_appendTailUText
693uregex_clone
694uregex_close
695uregex_end
696uregex_end64
697uregex_find
698uregex_find64
699uregex_findNext
700uregex_flags
701uregex_getFindProgressCallback
702uregex_getMatchCallback
703uregex_getStackLimit
704uregex_getText
705uregex_getTimeLimit
706uregex_getUText
707uregex_group
708uregex_groupCount
709uregex_groupNumberFromCName
710uregex_groupNumberFromName
711uregex_groupUText
712uregex_hasAnchoringBounds
713uregex_hasTransparentBounds
714uregex_hitEnd
715uregex_lookingAt
716uregex_lookingAt64
717uregex_matches
718uregex_matches64
719uregex_open
720uregex_openC
721uregex_openUText
722uregex_pattern
723uregex_patternUText
724uregex_refreshUText
725uregex_regionEnd
726uregex_regionEnd64
727uregex_regionStart
728uregex_regionStart64
729uregex_replaceAll
730uregex_replaceAllUText
731uregex_replaceFirst
732uregex_replaceFirstUText
733uregex_requireEnd
734uregex_reset
735uregex_reset64
736uregex_setFindProgressCallback
737uregex_setMatchCallback
738uregex_setRegion
739uregex_setRegion64
740uregex_setRegionAndStart
741uregex_setStackLimit
742uregex_setText
743uregex_setTimeLimit
744uregex_setUText
745uregex_split
746uregex_splitUText
747uregex_start
748uregex_start64
749uregex_useAnchoringBounds
750uregex_useTransparentBounds
751uregion_areEqual
752uregion_contains
753uregion_getAvailable
754uregion_getContainedRegions
755uregion_getContainedRegionsOfType
756uregion_getContainingRegion
757uregion_getContainingRegionOfType
758uregion_getNumericCode
759uregion_getPreferredValues
760uregion_getRegionCode
761uregion_getRegionFromCode
762uregion_getRegionFromNumericCode
763uregion_getType
764ureldatefmt_close
765ureldatefmt_combineDateAndTime
766ureldatefmt_format
767ureldatefmt_formatNumeric
768ureldatefmt_open
769ures_close
770ures_getBinary
771ures_getByIndex
772ures_getByKey
773ures_getInt
774ures_getIntVector
775ures_getKey
776ures_getLocaleByType
777ures_getNextResource
778ures_getNextString
779ures_getSize
780ures_getString
781ures_getStringByIndex
782ures_getStringByKey
783ures_getType
784ures_getUInt
785ures_getUTF8String
786ures_getUTF8StringByIndex
787ures_getUTF8StringByKey
788ures_getVersion
789ures_hasNext
790ures_open
791ures_openAvailableLocales
792ures_openDirect
793ures_openU
794ures_resetIterator
795uscript_breaksBetweenLetters
796uscript_getCode
797uscript_getName
798uscript_getSampleString
799uscript_getScript
800uscript_getScriptExtensions
801uscript_getShortName
802uscript_getUsage
803uscript_hasScript
804uscript_isCased
805uscript_isRightToLeft
806usearch_close
807usearch_first
808usearch_following
809usearch_getAttribute
810usearch_getBreakIterator
811usearch_getCollator
812usearch_getMatchedLength
813usearch_getMatchedStart
814usearch_getMatchedText
815usearch_getOffset
816usearch_getPattern
817usearch_getText
818usearch_last
819usearch_next
820usearch_open
821usearch_openFromCollator
822usearch_preceding
823usearch_previous
824usearch_reset
825usearch_setAttribute
826usearch_setBreakIterator
827usearch_setCollator
828usearch_setOffset
829usearch_setPattern
830usearch_setText
831uset_add
832uset_addAll
833uset_addAllCodePoints
834uset_addRange
835uset_addString
836uset_applyIntPropertyValue
837uset_applyPattern
838uset_applyPropertyAlias
839uset_charAt
840uset_clear
841uset_clone
842uset_cloneAsThawed
843uset_close
844uset_closeOver
845uset_compact
846uset_complement
847uset_complementAll
848uset_contains
849uset_containsAll
850uset_containsAllCodePoints
851uset_containsNone
852uset_containsRange
853uset_containsSome
854uset_containsString
855uset_equals
856uset_freeze
857uset_getItem
858uset_getItemCount
859uset_getSerializedRange
860uset_getSerializedRangeCount
861uset_getSerializedSet
862uset_indexOf
863uset_isEmpty
864uset_isFrozen
865uset_open
866uset_openEmpty
867uset_openPattern
868uset_openPatternOptions
869uset_remove
870uset_removeAll
871uset_removeAllStrings
872uset_removeRange
873uset_removeString
874uset_resemblesPattern
875uset_retain
876uset_retainAll
877uset_serialize
878uset_serializedContains
879uset_set
880uset_setSerializedToOne
881uset_size
882uset_span
883uset_spanBack
884uset_spanBackUTF8
885uset_spanUTF8
886uset_toPattern
887uspoof_areConfusable
888uspoof_areConfusableUTF8
889uspoof_check
890uspoof_check2
891uspoof_check2UTF8
892uspoof_checkUTF8
893uspoof_clone
894uspoof_close
895uspoof_closeCheckResult
896uspoof_getAllowedChars
897uspoof_getAllowedLocales
898uspoof_getCheckResultChecks
899uspoof_getCheckResultNumerics
900uspoof_getCheckResultRestrictionLevel
901uspoof_getChecks
902uspoof_getInclusionSet
903uspoof_getRecommendedSet
904uspoof_getRestrictionLevel
905uspoof_getSkeleton
906uspoof_getSkeletonUTF8
907uspoof_open
908uspoof_openCheckResult
909uspoof_openFromSerialized
910uspoof_openFromSource
911uspoof_serialize
912uspoof_setAllowedChars
913uspoof_setAllowedLocales
914uspoof_setChecks
915uspoof_setRestrictionLevel
916usprep_close
917usprep_open
918usprep_openByType
919usprep_prepare
920utext_char32At
921utext_clone
922utext_close
923utext_copy
924utext_current32
925utext_equals
926utext_extract
927utext_freeze
928utext_getNativeIndex
929utext_getPreviousNativeIndex
930utext_hasMetaData
931utext_isLengthExpensive
932utext_isWritable
933utext_moveIndex32
934utext_nativeLength
935utext_next32
936utext_next32From
937utext_openUChars
938utext_openUTF8
939utext_previous32
940utext_previous32From
941utext_replace
942utext_setNativeIndex
943utext_setup
944utf8_appendCharSafeBody
945utf8_back1SafeBody
946utf8_nextCharSafeBody
947utf8_prevCharSafeBody
948utmscale_fromInt64
949utmscale_getTimeScaleValue
950utmscale_toInt64
951utrace_format
952utrace_functionName
953utrace_getFunctions
954utrace_getLevel
955utrace_setFunctions
956utrace_setLevel
957utrace_vformat
958utrans_clone
959utrans_close
960utrans_countAvailableIDs
961utrans_getSourceSet
962utrans_getUnicodeID
963utrans_openIDs
964utrans_openInverse
965utrans_openU
966utrans_register
967utrans_setFilter
968utrans_toRules
969utrans_trans
970utrans_transIncremental
971utrans_transIncrementalUChars
972utrans_transUChars
973utrans_unregisterID
lib/libc/mingw/lib-common/iernonce.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file IERNONCE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IERNONCE.dll
8EXPORTS
9InitCallback
10RunOnceExProcess
lib/libc/mingw/lib-common/imagehlp.def created+155
......@@ -0,0 +1,155 @@
1;
2; Definition file of imagehlp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "imagehlp.dll"
7EXPORTS
8RemoveRelocations
9BindImage
10BindImageEx
11CheckSumMappedFile
12EnumerateLoadedModules
13EnumerateLoadedModules64
14EnumerateLoadedModulesEx
15EnumerateLoadedModulesExW
16EnumerateLoadedModulesW64
17FindDebugInfoFile
18FindDebugInfoFileEx
19FindExecutableImage
20FindExecutableImageEx
21FindFileInPath
22FindFileInSearchPath
23GetImageConfigInformation
24GetImageUnusedHeaderBytes
25GetSymLoadError
26GetTimestampForLoadedLibrary
27ImageAddCertificate
28ImageDirectoryEntryToData
29ImageDirectoryEntryToDataEx
30ImageEnumerateCertificates
31ImageGetCertificateData
32ImageGetCertificateHeader
33ImageGetDigestStream
34ImageLoad
35ImageNtHeader
36ImageRemoveCertificate
37ImageRvaToSection
38ImageRvaToVa
39ImageUnload
40ImagehlpApiVersion
41ImagehlpApiVersionEx
42MakeSureDirectoryPathExists
43MapAndLoad
44MapDebugInformation
45MapFileAndCheckSumA
46MapFileAndCheckSumW
47ReBaseImage
48ReBaseImage64
49RemoveInvalidModuleList
50RemovePrivateCvSymbolic
51RemovePrivateCvSymbolicEx
52ReportSymbolLoadSummary
53SearchTreeForFile
54SetCheckUserInterruptShared
55SetImageConfigInformation
56SetSymLoadError
57SplitSymbols
58StackWalk
59StackWalk64
60StackWalkEx
61SymAddrIncludeInlineTrace
62SymCleanup
63SymCompareInlineTrace
64SymEnumSym
65SymEnumSymbols
66SymEnumSymbolsEx
67SymEnumSymbolsExW
68SymEnumSymbolsForAddr
69SymEnumTypes
70SymEnumTypesByName
71SymEnumTypesByNameW
72SymEnumTypesW
73SymEnumerateModules
74SymEnumerateModules64
75SymEnumerateSymbols
76SymEnumerateSymbols64
77SymEnumerateSymbolsW
78SymEnumerateSymbolsW64
79SymFindFileInPath
80SymFindFileInPathW
81SymFromAddr
82SymFromInlineContext
83SymFromInlineContextW
84SymFromName
85SymFunctionTableAccess
86SymFunctionTableAccess64
87SymFunctionTableAccess64AccessRoutines
88SymGetLineFromAddr
89SymGetLineFromAddr64
90SymGetLineFromInlineContext
91SymGetLineFromInlineContextW
92SymGetLineFromName
93SymGetLineFromName64
94SymGetLineNext
95SymGetLineNext64
96SymGetLinePrev
97SymGetLinePrev64
98SymGetModuleBase
99SymGetModuleBase64
100SymGetModuleInfo
101SymGetModuleInfo64
102SymGetModuleInfoW
103SymGetModuleInfoW64
104SymGetOptions
105SymGetSearchPath
106SymGetSourceFileFromTokenW
107SymGetSourceFileTokenW
108SymGetSourceVarFromTokenW
109SymGetSymFromAddr
110SymGetSymFromAddr64
111SymGetSymFromName
112SymGetSymFromName64
113SymGetSymNext
114SymGetSymNext64
115SymGetSymPrev
116SymGetSymPrev64
117SymGetSymbolFile
118SymGetSymbolFileW
119SymGetTypeFromName
120SymGetTypeFromNameW
121SymGetTypeInfo
122SymGetTypeInfoEx
123SymInitialize
124SymLoadModule
125SymLoadModule64
126SymMatchFileName
127SymMatchFileNameW
128SymMatchString
129SymMatchStringA
130SymMatchStringW
131SymQueryInlineTrace
132SymRegisterCallback
133SymRegisterCallback64
134SymRegisterFunctionEntryCallback
135SymRegisterFunctionEntryCallback64
136SymSetContext
137SymSetOptions
138SymSetScopeFromAddr
139SymSetScopeFromIndex
140SymSetScopeFromInlineContext
141SymSetSearchPath
142SymSrvGetFileIndexString
143SymSrvGetFileIndexStringW
144SymSrvGetFileIndexes
145SymSrvGetFileIndexesW
146SymUnDName
147SymUnDName64
148SymUnloadModule
149SymUnloadModule64
150TouchFileTimes
151UnDecorateSymbolName
152UnMapAndLoad
153UnmapDebugInformation
154UpdateDebugInfoFile
155UpdateDebugInfoFileEx
lib/libc/mingw/lib-common/imgutil.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of ImgUtil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ImgUtil.dll"
7EXPORTS
8ComputeInvCMAP
9CreateDDrawSurfaceOnDIB
10CreateMIMEMap
11DecodeImage
12DecodeImageEx
13DitherTo8
14GetMaxMIMEIDBytes
15IdentifyMIMEType
16SniffStream
lib/libc/mingw/lib-common/inetcomm.def created+121
......@@ -0,0 +1,121 @@
1;
2; Definition file of INETCOMM.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "INETCOMM.dll"
7EXPORTS
8ord_1 @1
9RichMimeEdit_CreateInstance
10CreateCommunityTransport
11CreateIMAPTransport
12CreateIMAPTransport2
13CreateNNTPTransport
14CreatePOP3Transport
15CreateRASTransport
16CreateRangeList
17CreateSMTPTransport
18EssContentHintDecodeEx
19EssContentHintEncodeEx
20EssKeyExchPreferenceDecodeEx
21EssKeyExchPreferenceEncodeEx
22EssMLHistoryDecodeEx
23EssMLHistoryEncodeEx
24EssReceiptDecodeEx
25EssReceiptEncodeEx
26EssReceiptRequestDecodeEx
27EssReceiptRequestEncodeEx
28EssSecurityLabelDecodeEx
29EssSecurityLabelEncodeEx
30EssSignCertificateDecodeEx
31EssSignCertificateEncodeEx
32GetDllMajorVersion
33HrAthGetFileName
34HrAthGetFileNameW
35HrAttachDataFromBodyPart
36HrAttachDataFromFile
37HrCreateDisplayNameWithSizeForFile
38HrDoAttachmentVerb
39HrFreeAttachData
40HrGetAttachIcon
41HrGetAttachIconByFile
42HrGetDisplayNameWithSizeForFile
43HrGetLastOpenFileDirectory
44HrGetLastOpenFileDirectoryW
45HrSaveAttachToFile
46HrSaveAttachmentAs
47MimeEditCreateMimeDocument
48MimeEditDocumentFromStream
49MimeEditGetBackgroundImageUrl
50MimeEditIsSafeToRun
51MimeEditViewSource
52MimeGetAddressFormatW
53MimeOleAlgNameFromSMimeCap
54MimeOleAlgStrengthFromSMimeCap
55MimeOleClearDirtyTree
56MimeOleConvertEnrichedToHTML
57MimeOleCreateBody
58MimeOleCreateByteStream
59MimeOleCreateHashTable
60MimeOleCreateHeaderTable
61MimeOleCreateMessage
62MimeOleCreateMessageParts
63MimeOleCreatePropertySet
64MimeOleCreateSecurity
65MimeOleCreateVirtualStream
66MimeOleDecodeHeader
67MimeOleEncodeHeader
68MimeOleFileTimeToInetDate
69MimeOleFindCharset
70MimeOleGenerateCID
71MimeOleGenerateFileName
72MimeOleGenerateMID
73MimeOleGetAllocator
74MimeOleGetBodyPropA
75MimeOleGetBodyPropW
76MimeOleGetCertsFromThumbprints
77MimeOleGetCharsetInfo
78MimeOleGetCodePageCharset
79MimeOleGetCodePageInfo
80MimeOleGetContentTypeExt
81MimeOleGetDefaultCharset
82MimeOleGetExtContentType
83MimeOleGetFileExtension
84MimeOleGetFileInfo
85MimeOleGetFileInfoW
86MimeOleGetInternat
87MimeOleGetPropA
88MimeOleGetPropW
89MimeOleGetPropertySchema
90MimeOleGetRelatedSection
91MimeOleInetDateToFileTime
92MimeOleObjectFromMoniker
93MimeOleOpenFileStream
94MimeOleParseMhtmlUrl
95MimeOleParseRfc822Address
96MimeOleParseRfc822AddressW
97MimeOleSMimeCapAddCert
98MimeOleSMimeCapAddSMimeCap
99MimeOleSMimeCapGetEncAlg
100MimeOleSMimeCapGetHashAlg
101MimeOleSMimeCapInit
102MimeOleSMimeCapRelease
103MimeOleSMimeCapsFromDlg
104MimeOleSMimeCapsFull
105MimeOleSMimeCapsToDlg
106MimeOleSetBodyPropA
107MimeOleSetBodyPropW
108MimeOleSetCompatMode
109MimeOleSetDefaultCharset
110MimeOleSetPropA
111MimeOleSetPropW
112MimeOleStripHeaders
113MimeOleUnEscapeStringInPlace
114MimeOleUnEscapeStringInPlaceW
115ord_702 @702
116ord_703 @703
117ord_704 @704
118ord_705 @705
119ord_706 @706
120ord_707 @707
121ord_708 @708
lib/libc/mingw/lib-common/inetmib1.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file inetmib1.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY inetmib1.dll
8EXPORTS
9SnmpExtensionInit
10SnmpExtensionInitEx
11SnmpExtensionQuery
12SnmpExtensionTrap
lib/libc/mingw/lib-common/inkobjcore.def created+34
......@@ -0,0 +1,34 @@
1LIBRARY inkobjcore
2
3EXPORTS
4
5AddStroke
6AddStrokeWithId
7AddWordsToWordList
8AdviseInkChange
9CreateContext
10CreateRecognizer
11DestroyContext
12DestroyRecognizer
13DestroyWordList
14EndInkInput
15GetAllRecognizers
16GetBestResultString
17GetLatticePtr
18GetLeftSeparator
19GetRecoAttributes
20GetResultPropertyList
21GetRightSeparator
22GetUnicodeRanges
23IsStringSupported
24LoadCachedAttributes
25MakeWordList
26Process
27SetConstraint
28SetEnabledUnicodeRanges
29SetFactoid
30SetFlags
31SetGuide
32SetStrokeGroupId
33SetTextContext
34SetWordList
lib/libc/mingw/lib-common/input.def created+30
......@@ -0,0 +1,30 @@
1;
2; Definition file of Input.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Input.dll"
7EXPORTS
8CPlApplet
9ord_102 @102
10ord_103 @103
11InstallLayoutOrTip
12SaveDefaultUserInputSettings
13SaveSystemAcctInputSettings
14SetDefaultLayoutOrTip
15EnumLayoutOrTipForSetup
16InstallLayoutOrTipUserReg
17EnumEnabledLayoutOrTip
18QueryLayoutOrTipString
19QueryLayoutOrTipStringUserReg
20GetDefaultLayout
21GetLayoutDescription
22ord_115 @115
23ord_116 @116
24InstallLayoutOrTipPrivate
25EnumEnabledLayoutOrTipPrivate
26ActivateInputProfile
27InputDll_DownlevelInitialize
28InputDll_DownlevelSetUILanguage
29InputDll_DownlevelUninitialize
30InputDll_DownlevelEnumLayoutOrTipForSetup
lib/libc/mingw/lib-common/inseng.def created+20
......@@ -0,0 +1,20 @@
1;
2; Exports of file inseng.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY inseng.dll
8EXPORTS
9CheckForVersionConflict
10CheckTrust
11CheckTrustEx
12DllCanUnloadNow
13DllGetClassObject
14DllInstall
15DllRegisterServer
16DllUnregisterServer
17DownloadFile
18GetICifFileFromFile
19GetICifRWFileFromFile
20PurgeDownloadDirectory
lib/libc/mingw/lib-common/iphlpapi.def+1
......@@ -210,6 +210,7 @@ InternalCreateIpForwardEntry
210210InternalCreateIpForwardEntry2
211211InternalCreateIpNetEntry
212212InternalCreateIpNetEntry2
213InternalCreateOrRefIpForwardEntry2
213214InternalCreateUnicastIpAddressEntry
214215InternalDeleteAnycastIpAddressEntry
215216InternalDeleteIpForwardEntry
lib/libc/mingw/lib-common/ipnathlp.def created+39
......@@ -0,0 +1,39 @@
1;
2; Definition file of IPNATHLP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "IPNATHLP.dll"
7EXPORTS
8NhAcceptStreamSocket
9NhAcquireFixedLengthBuffer
10NhAcquireVariableLengthBuffer
11NhCreateDatagramSocket
12NhCreateStreamSocket
13NhDeleteSocket
14NhInitializeBufferManagement
15NhReadDatagramSocket
16NhReadStreamSocket
17NhReleaseBuffer
18NhWriteDatagramSocket
19NhWriteStreamSocket
20RegisterProtocol
21SvchostPushServiceGlobals
22NatAcquirePortReservation
23NatCancelDynamicRedirect
24NatCancelRedirect
25NatCreateDynamicFullRedirect
26NatCreateDynamicRedirect
27NatCreateDynamicRedirectEx
28NatCreateRedirect
29NatCreateRedirectEx
30NatInitializePortReservation
31NatInitializeTranslator
32NatLookupAndQueryInformationSessionMapping
33NatQueryInformationRedirect
34NatQueryInformationRedirectHandle
35NatReleasePortReservation
36NatShutdownPortReservation
37NatShutdownTranslator
38NhInitializeTraceManagement
39ServiceMain
lib/libc/mingw/lib-common/jsproxy.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of JSProxy.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "JSProxy.dll"
7EXPORTS
8InternetInitializeAutoProxyDll
9InternetDeInitializeAutoProxyDll
10InternetGetProxyInfo
11InternetInitializeAutoProxyDllEx
12InternetDeInitializeAutoProxyDllEx
13InternetGetProxyInfoEx
lib/libc/mingw/lib-common/kdcom.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of kdcom.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "kdcom.dll"
7EXPORTS
8KdD0Transition
9KdD3Transition
10KdDebuggerInitialize0
11KdDebuggerInitialize1
12KdReceivePacket
13KdRestore
14KdSave
15KdSendPacket
16KdSetHiberRange
lib/libc/mingw/lib-common/kernel32.def.in+45-7
......@@ -6,6 +6,7 @@ AcquireSRWLockExclusive
66AcquireSRWLockShared
77ActivateActCtx
88ActivateActCtxWorker
9ActivatePackageVirtualizationContext
910AddAtomA
1011AddAtomW
1112AddConsoleAliasA
......@@ -38,6 +39,7 @@ AppXGetOSMaxVersionTested
3839ApplicationRecoveryFinished
3940ApplicationRecoveryInProgress
4041AreFileApisANSI
42AreShortNamesEnabled
4143AssignProcessToJobObject
4244AttachConsole
4345BackupRead
......@@ -116,6 +118,12 @@ BuildCommDCBA
116118BuildCommDCBAndTimeoutsA
117119BuildCommDCBAndTimeoutsW
118120BuildCommDCBW
121BuildIoRingCancelRequest
122BuildIoRingFlushFile
123BuildIoRingReadFile
124BuildIoRingRegisterBuffers
125BuildIoRingRegisterFileHandles
126BuildIoRingWriteFile
119127CallNamedPipeA
120128CallNamedPipeW
121129CallbackMayRunLong
......@@ -143,6 +151,7 @@ ClearCommBreak
143151ClearCommError
144152CloseConsoleHandle
145153CloseHandle
154CloseIoRing
146155ClosePackageInfo
147156ClosePrivateNamespace
148157CloseProfileUserMapping
......@@ -219,6 +228,7 @@ CreateHardLinkTransactedA
219228CreateHardLinkTransactedW
220229CreateHardLinkW
221230CreateIoCompletionPort
231CreateIoRing
222232CreateJobObjectA
223233CreateJobObjectW
224234CreateJobSet
......@@ -232,12 +242,14 @@ CreateMutexW
232242CreateNamedPipeA
233243CreateNamedPipeW
234244CreateNlsSecurityDescriptor
245CreatePackageVirtualizationContext
235246CreatePipe
236247CreatePrivateNamespaceA
237248CreatePrivateNamespaceW
238249CreateProcessA
239CreateProcessAsUserA
240CreateProcessAsUserW
250; MSDN says these are exported from ADVAPI32.DLL.
251; CreateProcessAsUserA
252; CreateProcessAsUserW
241253CreateProcessInternalA
242254CreateProcessInternalW
243255CreateProcessW
......@@ -272,6 +284,7 @@ CreateWaitableTimerW
272284CtrlRoutine
273285DeactivateActCtx
274286DeactivateActCtxWorker
287DeactivatePackageVirtualizationContext
275288DebugActiveProcess
276289DebugActiveProcessStop
277290DebugBreak
......@@ -315,6 +328,8 @@ DosPathToSessionPathW
315328DuplicateConsoleHandle
316329DuplicateEncryptionInfoFileExt
317330DuplicateHandle
331DuplicatePackageVirtualizationContext
332EnableProcessOptionalXStateFeatures
318333EnableThreadProfiling
319334EncodePointer
320335EncodeSystemPointer
......@@ -323,7 +338,6 @@ EndUpdateResourceW
323338EnterCriticalSection
324339F_X64(EnterUmsSchedulingMode)
325340EnterSynchronizationBarrier
326EnterUmsSchedulingMode
327341EnumCalendarInfoA
328342EnumCalendarInfoExA
329343EnumCalendarInfoExEx
......@@ -554,6 +568,7 @@ GetCurrentPackageFullName
554568GetCurrentPackageId
555569GetCurrentPackageInfo
556570GetCurrentPackagePath
571GetCurrentPackageVirtualizationContext
557572GetCurrentProcess
558573GetCurrentProcessId
559574GetCurrentProcessorNumber
......@@ -630,6 +645,7 @@ GetGeoInfoA
630645GetGeoInfoW
631646GetGeoInfoEx
632647GetHandleInformation
648GetIoRingInfo
633649GetLargePageMinimum
634650GetLargestConsoleWindowSize
635651GetLastError
......@@ -647,6 +663,7 @@ GetLongPathNameA
647663GetLongPathNameTransactedA
648664GetLongPathNameTransactedW
649665GetLongPathNameW
666GetMachineTypeAttributes
650667GetMailslotInfo
651668GetMaximumProcessorCount
652669GetMaximumProcessorGroupCount
......@@ -678,6 +695,7 @@ GetNumaAvailableMemoryNodeEx
678695GetNumaHighestNodeNumber
679696GetNumaNodeNumberFromHandle
680697GetNumaNodeProcessorMask
698GetNumaNodeProcessorMask2
681699GetNumaNodeProcessorMaskEx
682700GetNumaProcessorNode
683701GetNumaProcessorNodeEx
......@@ -714,9 +732,9 @@ GetPrivateProfileStructA
714732GetPrivateProfileStructW
715733GetProcAddress
716734GetProcessAffinityMask
735GetProcessDefaultCpuSetMasks
717736GetProcessDefaultCpuSets
718737GetProcessDEPPolicy
719GetProcessDefaultCpuSets
720738GetProcessGroupAffinity
721739GetProcessHandleCount
722740GetProcessHeap
......@@ -733,6 +751,7 @@ GetProcessTimes
733751GetProcessVersion
734752GetProcessWorkingSetSize
735753GetProcessWorkingSetSizeEx
754GetProcessesInVirtualizationContext
736755GetProcessorSystemCycleTime
737756GetProductInfo
738757GetProfileIntA
......@@ -786,8 +805,11 @@ GetTempFileNameA
786805GetTempFileNameW
787806GetTempPathA
788807GetTempPathW
808GetTempPath2A
809GetTempPath2W
789810GetThreadContext
790811GetThreadDescription
812GetThreadEnabledXStateFeatures
791813GetThreadErrorMode
792814GetThreadGroupAffinity
793815GetThreadIOPendingFlag
......@@ -798,6 +820,7 @@ GetThreadLocale
798820GetThreadPreferredUILanguages
799821GetThreadPriority
800822GetThreadPriorityBoost
823GetThreadSelectedCpuSetMasks
801824GetThreadSelectedCpuSets
802825GetThreadSelectorEntry
803826GetThreadTimes
......@@ -925,6 +948,7 @@ IsDBCSLeadByte
925948IsDBCSLeadByteEx
926949IsDebuggerPresent
927950IsEnclaveTypeSupported
951IsIoRingOpSupported
928952IsNLSDefinedString
929953IsNativeVhdBoot
930954IsNormalizedString
......@@ -935,6 +959,7 @@ IsSystemResumeAutomatic
935959IsThreadAFiber
936960IsThreadpoolTimerSet
937961IsTimeZoneRedirectionEnabled
962IsUserCetAvailableInEnvironment
938963IsValidCalDateTime
939964IsValidCodePage
940965IsValidLanguageGroup
......@@ -1081,7 +1106,8 @@ OpenSemaphoreW
10811106OpenState
10821107OpenStateExplicit
10831108OpenThread
1084;OpenThreadToken
1109; MSDN says this is exported from ADVAPI32.DLL.
1110; OpenThreadToken
10851111OpenWaitableTimerA
10861112OpenWaitableTimerW
10871113OutputDebugStringA
......@@ -1095,6 +1121,7 @@ ParseApplicationUserModelId
10951121PeekConsoleInputA
10961122PeekConsoleInputW
10971123PeekNamedPipe
1124PopIoRingCompletion
10981125PostQueuedCompletionStatus
10991126PowerClearRequest
11001127PowerCreateRequest
......@@ -1136,6 +1163,7 @@ QueryIdleProcessorCycleTime
11361163QueryIdleProcessorCycleTimeEx
11371164QueryInformationJobObject
11381165QueryIoRateControlInformationJobObject
1166QueryIoRingCapabilities
11391167QueryMemoryResourceNotification
11401168QueryPerformanceCounter
11411169QueryPerformanceFrequency
......@@ -1148,6 +1176,7 @@ QueryThreadpoolStackInformation
11481176F_X64(QueryUmsThreadInformation)
11491177QueryUnbiasedInterruptTime
11501178QueueUserAPC
1179QueueUserAPC2
11511180QueueUserWorkItem
11521181QuirkGetData2Worker
11531182QuirkGetDataWorker
......@@ -1182,7 +1211,6 @@ ReadFileEx
11821211ReadFileScatter
11831212ReadProcessMemory
11841213ReadThreadProfilingData
1185ReclaimVirtualMemory
11861214;
11871215; MSDN says these functions are exported
11881216; from advapi32.dll. Commented out for
......@@ -1251,6 +1279,7 @@ ReleaseActCtx
12511279ReleaseActCtxWorker
12521280ReleaseMutex
12531281ReleaseMutexWhenCallbackReturns
1282ReleasePackageVirtualizationContext
12541283ReleaseSRWLockExclusive
12551284ReleaseSRWLockShared
12561285ReleaseSemaphore
......@@ -1287,6 +1316,7 @@ RtlCopyMemory
12871316RtlDeleteFunctionTable
12881317RtlFillMemory
12891318RtlInstallFunctionTableCallback
1319RtlIsEcCode
12901320RtlLookupFunctionEntry
12911321RtlMoveMemory
12921322RtlPcToFileHeader
......@@ -1295,6 +1325,7 @@ RtlRestoreContext
12951325RtlUnwind
12961326RtlUnwindEx
12971327RtlVirtualUnwind
1328RtlVirtualUnwind2
12981329RtlZeroMemory
12991330ScrollConsoleScreenBufferA
13001331ScrollConsoleScreenBufferW
......@@ -1390,6 +1421,7 @@ SetHandleCount
13901421SetHandleInformation
13911422SetInformationJobObject
13921423SetIoRateControlInformationJobObject
1424SetIoRingCompletionEvent
13931425SetLastConsoleEventActive
13941426SetLastError
13951427SetLocalPrimaryComputerNameA
......@@ -1405,7 +1437,10 @@ SetPriorityClass
14051437SetProcessAffinityMask
14061438SetProcessAffinityUpdateMode
14071439SetProcessDEPPolicy
1440SetProcessDefaultCpuSetMasks
14081441SetProcessDefaultCpuSets
1442SetProcessDynamicEHContinuationTargets
1443SetProcessDynamicEnforcedCetCompatibleRanges
14091444SetProcessInformation
14101445SetProcessMitigationPolicy
14111446SetProcessPreferredUILanguages
......@@ -1437,9 +1472,11 @@ SetThreadLocale
14371472SetThreadPreferredUILanguages
14381473SetThreadPriority
14391474SetThreadPriorityBoost
1475SetThreadSelectedCpuSetMasks
14401476SetThreadSelectedCpuSets
14411477SetThreadStackGuarantee
1442SetThreadToken
1478; MSDN says this is exported from ADVAPI32.DLL.
1479; SetThreadToken
14431480SetThreadUILanguage
14441481SetThreadpoolStackInformation
14451482SetThreadpoolThreadMaximum
......@@ -1474,6 +1511,7 @@ SleepEx
14741511SortCloseHandle
14751512SortGetHandle
14761513StartThreadpoolIo
1514SubmitIoRing
14771515SubmitThreadpoolWork
14781516SuspendThread
14791517SwitchToFiber
lib/libc/mingw/lib-common/keymgr.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file KEYMGR.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY KEYMGR.dll
8EXPORTS
9CPlApplet
10DllMain
11KRShowKeyMgr
12PRShowRestoreFromMsginaW
13PRShowRestoreWizardExW
14PRShowRestoreWizardW
15PRShowSaveFromMsginaW
16PRShowSaveWizardExW
lib/libc/mingw/lib-common/ks.def created+254
......@@ -0,0 +1,254 @@
1;
2; Definition file of ks.sys
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "ks.sys"
7EXPORTS
8; public: __cdecl CBaseUnknown::CBaseUnknown(struct _GUID const &__ptr64 ,struct IUnknown *__ptr64)__ptr64
9??0CBaseUnknown@@QEAA@AEBU_GUID@@PEAUIUnknown@@@Z
10; public: __cdecl CBaseUnknown::CBaseUnknown(struct IUnknown *__ptr64)__ptr64
11??0CBaseUnknown@@QEAA@PEAUIUnknown@@@Z
12; public: virtual __cdecl CBaseUnknown::~CBaseUnknown(void)__ptr64
13??1CBaseUnknown@@UEAA@XZ
14; public: void __cdecl CBaseUnknown::__dflt_ctor_closure(void)__ptr64
15??_FCBaseUnknown@@QEAAXXZ
16; public: virtual unsigned long __cdecl CBaseUnknown::IndirectedAddRef(void)__ptr64
17?IndirectedAddRef@CBaseUnknown@@UEAAKXZ
18; public: virtual long __cdecl CBaseUnknown::IndirectedQueryInterface(struct _GUID const &__ptr64 ,void *__ptr64 *__ptr64)__ptr64
19?IndirectedQueryInterface@CBaseUnknown@@UEAAJAEBU_GUID@@PEAPEAX@Z
20; public: virtual unsigned long __cdecl CBaseUnknown::IndirectedRelease(void)__ptr64
21?IndirectedRelease@CBaseUnknown@@UEAAKXZ
22; public: virtual unsigned long __cdecl CBaseUnknown::NonDelegatedAddRef(void)__ptr64
23?NonDelegatedAddRef@CBaseUnknown@@UEAAKXZ
24; public: virtual long __cdecl CBaseUnknown::NonDelegatedQueryInterface(struct _GUID const &__ptr64 ,void *__ptr64 *__ptr64)__ptr64
25?NonDelegatedQueryInterface@CBaseUnknown@@UEAAJAEBU_GUID@@PEAPEAX@Z
26; public: virtual unsigned long __cdecl CBaseUnknown::NonDelegatedRelease(void)__ptr64
27?NonDelegatedRelease@CBaseUnknown@@UEAAKXZ
28DllInitialize
29KoCreateInstance
30KoDeviceInitialize
31KoDriverInitialize
32KoRelease
33KsAcquireCachedMdl
34KsAcquireControl
35KsAcquireDevice
36KsAcquireDeviceSecurityLock
37KsAcquireResetValue
38KsAddDevice
39KsAddEvent
40KsAddIrpToCancelableQueue
41KsAddItemToObjectBag
42KsAddObjectCreateItemToDeviceHeader
43KsAddObjectCreateItemToObjectHeader
44KsAllocateDefaultClock
45KsAllocateDefaultClockEx
46KsAllocateDeviceHeader
47KsAllocateExtraData
48KsAllocateObjectBag
49KsAllocateObjectCreateItem
50KsAllocateObjectHeader
51KsCacheMedium
52KsCancelIo
53KsCancelRoutine
54KsCompletePendingRequest
55KsCopyObjectBagItems
56KsCreateAllocator
57KsCreateBusEnumObject
58KsCreateClock
59KsCreateDefaultAllocator
60KsCreateDefaultAllocatorEx
61KsCreateDefaultClock
62KsCreateDefaultSecurity
63KsCreateDevice
64KsCreateFilterFactory
65KsCreatePin
66KsCreateTopologyNode
67KsDecrementCountedWorker
68KsDefaultAddEventHandler
69KsDefaultDeviceIoCompletion
70KsDefaultDispatchPnp
71KsDefaultDispatchPower
72KsDefaultForwardIrp
73KsDereferenceBusObject
74KsDereferenceSoftwareBusObject
75KsDeviceGetBusData
76KsDeviceRegisterAdapterObject
77KsDeviceRegisterThermalDispatch
78KsDeviceSetBusData
79KsDisableEvent
80KsDiscardEvent
81KsDispatchFastIoDeviceControlFailure
82KsDispatchFastReadFailure
83KsDispatchInvalidDeviceRequest
84KsDispatchIrp
85KsDispatchQuerySecurity
86KsDispatchSetSecurity
87KsDispatchSpecificMethod
88KsDispatchSpecificProperty
89KsEnableEvent
90KsEnableEventWithAllocator
91KsFastMethodHandler
92KsFastPropertyHandler
93KsFilterAcquireProcessingMutex
94KsFilterAddTopologyConnections
95KsFilterAttemptProcessing
96KsFilterCreateNode
97KsFilterCreatePinFactory
98KsFilterFactoryAddCreateItem
99KsFilterFactoryGetSymbolicLink
100KsFilterFactorySetDeviceClassesState
101KsFilterFactoryUpdateCacheData
102KsFilterGetAndGate
103KsFilterGetChildPinCount
104KsFilterGetFirstChildPin
105KsFilterRegisterPowerCallbacks
106KsFilterReleaseProcessingMutex
107KsForwardAndCatchIrp
108KsForwardIrp
109KsFreeDefaultClock
110KsFreeDeviceHeader
111KsFreeEventList
112KsFreeObjectBag
113KsFreeObjectCreateItem
114KsFreeObjectCreateItemsByContext
115KsFreeObjectHeader
116KsGenerateDataEvent
117KsGenerateEvent
118KsGenerateEventList
119KsGenerateEvents
120KsGenerateThermalEvent
121KsGetBusEnumIdentifier
122KsGetBusEnumParentFDOFromChildPDO
123KsGetBusEnumPnpDeviceObject
124KsGetDefaultClockState
125KsGetDefaultClockTime
126KsGetDevice
127KsGetDeviceForDeviceObject
128KsGetFilterFromIrp
129KsGetFirstChild
130KsGetImageNameAndResourceId
131KsGetNextSibling
132KsGetNodeIdFromIrp
133KsGetObjectFromFileObject
134KsGetObjectTypeFromFileObject
135KsGetObjectTypeFromIrp
136KsGetOuterUnknown
137KsGetParent
138KsGetPinFromIrp
139KsHandleSizedListQuery
140KsIncrementCountedWorker
141KsInitializeDevice
142KsInitializeDeviceProfile
143KsInitializeDriver
144KsInstallBusEnumInterface
145KsIsBusEnumChildDevice
146KsIsCurrentProcessFrameServer
147KsLoadResource
148KsMapModuleName
149KsMergeAutomationTables
150KsMethodHandler
151KsMethodHandlerWithAllocator
152KsMoveIrpsOnCancelableQueue
153KsNullDriverUnload
154KsPersistDeviceProfile
155KsPinAcquireProcessingMutex
156KsPinAttachAndGate
157KsPinAttachOrGate
158KsPinAttemptProcessing
159KsPinDataIntersection
160KsPinGetAndGate
161KsPinGetAvailableByteCount
162KsPinGetConnectedFilterInterface
163KsPinGetConnectedPinDeviceObject
164KsPinGetConnectedPinFileObject
165KsPinGetConnectedPinInterface
166KsPinGetCopyRelationships
167KsPinGetFirstCloneStreamPointer
168KsPinGetLeadingEdgeStreamPointer
169KsPinGetNextSiblingPin
170KsPinGetParentFilter
171KsPinGetReferenceClockInterface
172KsPinGetTrailingEdgeStreamPointer
173KsPinPropertyHandler
174KsPinRegisterFrameReturnCallback
175KsPinRegisterHandshakeCallback
176KsPinRegisterIrpCompletionCallback
177KsPinRegisterPowerCallbacks
178KsPinReleaseProcessingMutex
179KsPinSetPinClockTime
180KsPinSubmitFrame
181KsPinSubmitFrameMdl
182KsProbeStreamIrp
183KsProcessPinUpdate
184KsPropertyHandler
185KsPropertyHandlerWithAllocator
186KsPublishDeviceProfile
187KsQueryDevicePnpObject
188KsQueryInformationFile
189KsQueryObjectAccessMask
190KsQueryObjectCreateItem
191KsQueueWorkItem
192KsReadFile
193KsRecalculateStackDepth
194KsReferenceBusObject
195KsReferenceSoftwareBusObject
196KsRegisterAggregatedClientUnknown
197KsRegisterCountedWorker
198KsRegisterFilterWithNoKSPins
199KsRegisterWorker
200KsReleaseCachedMdl
201KsReleaseControl
202KsReleaseDevice
203KsReleaseDeviceSecurityLock
204KsReleaseIrpOnCancelableQueue
205KsRemoveBusEnumInterface
206KsRemoveIrpFromCancelableQueue
207KsRemoveItemFromObjectBag
208KsRemoveSpecificIrpFromCancelableQueue
209KsServiceBusEnumCreateRequest
210KsServiceBusEnumPnpRequest
211KsSetDefaultClockState
212KsSetDefaultClockTime
213KsSetDevicePnpAndBaseObject
214KsSetInformationFile
215KsSetMajorFunctionHandler
216KsSetPowerDispatch
217KsSetTargetDeviceObject
218KsSetTargetState
219KsStreamIo
220KsStreamPointerAdvance
221KsStreamPointerAdvanceOffsets
222KsStreamPointerAdvanceOffsetsAndUnlock
223KsStreamPointerCancelTimeout
224KsStreamPointerClone
225KsStreamPointerDelete
226KsStreamPointerGetIrp
227KsStreamPointerGetMdl
228KsStreamPointerGetNextClone
229KsStreamPointerLock
230KsStreamPointerScheduleTimeout
231KsStreamPointerSetStatusCode
232KsStreamPointerUnlock
233KsSynchronousIoControlDevice
234KsTerminateDevice
235KsTopologyPropertyHandler
236KsUnregisterWorker
237KsUnserializeObjectPropertiesFromRegistry
238KsUpdateCameraStreamingConsent
239KsValidateAllocatorCreateRequest
240KsValidateAllocatorFramingEx
241KsValidateClockCreateRequest
242KsValidateConnectRequest
243KsValidateTopologyNodeCreateRequest
244KsWriteFile
245KsiDefaultClockAddMarkEvent
246KsiPropertyDefaultClockGetCorrelatedPhysicalTime
247KsiPropertyDefaultClockGetCorrelatedTime
248KsiPropertyDefaultClockGetFunctionTable
249KsiPropertyDefaultClockGetPhysicalTime
250KsiPropertyDefaultClockGetResolution
251KsiPropertyDefaultClockGetState
252KsiPropertyDefaultClockGetTime
253KsiQueryObjectCreateItemsPresent
254_KsEdit
lib/libc/mingw/lib-common/ksecdd.def created+108
......@@ -0,0 +1,108 @@
1LIBRARY "ksecdd.sys"
2EXPORTS
3SystemPrng
4AcceptSecurityContext
5AcquireCredentialsHandleW
6AddCredentialsW
7ApplyControlToken
8BCryptCloseAlgorithmProvider
9BCryptCreateHash
10BCryptDecrypt
11BCryptDeriveKey
12BCryptDeriveKeyCapi
13BCryptDeriveKeyPBKDF2
14BCryptDestroyHash
15BCryptDestroyKey
16BCryptDestroySecret
17BCryptDuplicateHash
18BCryptDuplicateKey
19BCryptEncrypt
20BCryptEnumAlgorithms
21BCryptEnumProviders
22BCryptExportKey
23BCryptFinalizeKeyPair
24BCryptFinishHash
25BCryptFreeBuffer
26BCryptGenRandom
27BCryptGenerateKeyPair
28BCryptGenerateSymmetricKey
29BCryptGetFipsAlgorithmMode
30BCryptGetProperty
31BCryptHashData
32BCryptImportKey
33BCryptImportKeyPair
34BCryptKeyDerivation
35BCryptOpenAlgorithmProvider
36BCryptRegisterConfigChangeNotify
37BCryptResolveProviders
38BCryptSecretAgreement
39BCryptSetProperty
40BCryptSignHash
41BCryptUnregisterConfigChangeNotify
42BCryptVerifySignature
43CompleteAuthToken
44CredMarshalTargetInfo
45DeleteSecurityContext
46EnumerateSecurityPackagesW
47ExportSecurityContext
48FreeContextBuffer
49FreeCredentialsHandle
50GetSecurityUserInfo
51ImpersonateSecurityContext
52ImportSecurityContextW
53InitSecurityInterfaceW
54InitializeSecurityContextW
55KSecRegisterSecurityProvider
56KSecValidateBuffer
57LsaEnumerateLogonSessions
58LsaGetLogonSessionData
59MakeSignature
60MapSecurityError
61QueryContextAttributesW
62QueryCredentialsAttributesW
63QuerySecurityContextToken
64QuerySecurityPackageInfoW
65RevertSecurityContext
66SealMessage
67SecLookupAccountName
68SecLookupAccountSid
69SecLookupWellKnownSid
70SecMakeSPN
71SecMakeSPNEx
72SecMakeSPNEx2
73SecSetPagingMode
74SetCredentialsAttributesW
75SslDecryptPacket
76SslEncryptPacket
77SslExportKey
78SslFreeObject
79SslGetExtensions
80SslGetServerIdentity
81SslImportKey
82SslLookupCipherSuiteInfo
83SslOpenProvider
84SspiAcceptSecurityContextAsync
85SspiAcquireCredentialsHandleAsyncW
86SspiCompareAuthIdentities
87SspiCopyAuthIdentity
88SspiCreateAsyncContext
89SspiDeleteSecurityContextAsync
90SspiEncodeAuthIdentityAsStrings
91SspiEncodeStringsAsAuthIdentity
92SspiFreeAsyncContext
93SspiFreeAuthIdentity
94SspiFreeCredentialsHandleAsync
95SspiGetAsyncCallStatus
96SspiInitializeSecurityContextAsyncW
97SspiLocalFree
98SspiMarshalAuthIdentity
99SspiReinitAsyncContext
100SspiSetAsyncNotifyCallback
101SspiUnmarshalAuthIdentity
102SspiValidateAuthIdentity
103SspiZeroAuthIdentity
104TokenBindingGetHighestSupportedVersion
105TokenBindingGetKeyTypesServer
106TokenBindingVerifyMessage
107UnsealMessage
108VerifySignature
lib/libc/mingw/lib-common/linkinfo.def created+23
......@@ -0,0 +1,23 @@
1;
2; Exports of file LINKINFO.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LINKINFO.dll
8EXPORTS
9CompareLinkInfoReferents
10CompareLinkInfoVolumes
11CreateLinkInfo
12CreateLinkInfoA
13CreateLinkInfoW
14DestroyLinkInfo
15DisconnectLinkInfo
16GetCanonicalPathInfo
17GetCanonicalPathInfoA
18GetCanonicalPathInfoW
19GetLinkInfoData
20IsValidLinkInfo
21ResolveLinkInfo
22ResolveLinkInfoA
23ResolveLinkInfoW
lib/libc/mingw/lib-common/loghours.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file LogHours.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LogHours.dll
8EXPORTS
9LogonScheduleDialog
10ConnectionScheduleDialog
11DialinHoursDialog
12DirSyncScheduleDialog
13LogonScheduleDialogEx
14DialinHoursDialogEx
15ReplicationScheduleDialog
16ReplicationScheduleDialogEx
17ConnectionScheduleDialogEx
18DirSyncScheduleDialogEx
lib/libc/mingw/lib-common/mapistub.def created+177
......@@ -0,0 +1,177 @@
1;
2; Definition file of MAPI32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MAPI32.dll"
7EXPORTS
8ord_8 @8
9MAPILogonEx
10MAPIAllocateBuffer
11MAPIAllocateMore
12MAPIFreeBuffer
13MAPIAdminProfiles
14MAPIInitialize
15MAPIUninitialize
16PRProviderInit
17LAUNCHWIZARD
18LaunchWizard
19MAPIOpenFormMgr
20MAPIOpenLocalFormContainer
21ScInitMapiUtil
22DeinitMapiUtil
23ScGenerateMuid
24HrAllocAdviseSink
25WrapProgress
26HrThisThreadAdviseSink
27ScBinFromHexBounded
28FBinFromHex
29HexFromBin
30BuildDisplayTable
31SwapPlong
32SwapPword
33MAPIInitIdle
34MAPIDeinitIdle
35InstallFilterHook
36FtgRegisterIdleRoutine
37EnableIdleRoutine
38DeregisterIdleRoutine
39ChangeIdleRoutine
40MAPIGetDefaultMalloc
41CreateIProp
42CreateTable
43MNLS_lstrlenW
44MNLS_lstrcmpW
45MNLS_lstrcpyW
46MNLS_CompareStringW
47MNLS_MultiByteToWideChar
48MNLS_WideCharToMultiByte
49MNLS_IsBadStringPtrW
50FEqualNames
51WrapStoreEntryID
52IsBadBoundedStringPtr
53HrQueryAllRows
54PropCopyMore
55UlPropSize
56FPropContainsProp
57FPropCompareProp
58LPropCompareProp
59HrAddColumns
60HrAddColumnsEx
61FtAddFt
62FtAdcFt
63FtSubFt
64FtMulDw
65FtMulDwDw
66FtNegFt
67FtDivFtBogus
68UlAddRef
69UlRelease
70SzFindCh
71SzFindLastCh
72SzFindSz
73UFromSz
74HrGetOneProp
75HrSetOneProp
76FPropExists
77PpropFindProp
78FreePadrlist
79FreeProws
80HrSzFromEntryID
81HrEntryIDFromSz
82HrComposeEID
83HrDecomposeEID
84HrComposeMsgID
85HrDecomposeMsgID
86OpenStreamOnFile
87OpenTnefStream
88OpenTnefStreamEx
89GetTnefStreamCodepage
90UlFromSzHex
91UNKOBJ_ScAllocate
92UNKOBJ_ScAllocateMore
93UNKOBJ_Free
94UNKOBJ_FreeRows
95UNKOBJ_ScCOAllocate
96UNKOBJ_ScCOReallocate
97UNKOBJ_COFree
98UNKOBJ_ScSzFromIdsAlloc
99ScCountNotifications
100ScCopyNotifications
101ScRelocNotifications
102ScCountProps
103ScCopyProps
104ScRelocProps
105LpValFindProp
106ScDupPropset
107FBadRglpszA
108FBadRglpszW
109FBadRowSet
110FBadRglpNameID
111FBadPropTag
112FBadRow
113FBadProp
114FBadColumnSet
115RTFSync
116WrapCompressedRTFStream
117__ValidateParameters
118__CPPValidateParameters
119FBadSortOrderSet
120FBadEntryList
121FBadRestriction
122ScUNCFromLocalPath
123ScLocalPathFromUNC
124HrIStorageFromStream
125HrValidateIPMSubtree
126OpenIMsgSession
127CloseIMsgSession
128OpenIMsgOnIStg
129SetAttribIMsgOnIStg
130GetAttribIMsgOnIStg
131MapStorageSCode
132ScMAPIXFromCMC
133ScMAPIXFromSMAPI
134EncodeID
135FDecodeID
136CchOfEncoding
137CbOfEncoded
138MAPISendDocuments
139MAPILogon
140MAPILogoff
141MAPISendMail
142MAPISaveMail
143MAPIReadMail
144MAPIFindNext
145MAPIDeleteMail
146MAPIAddress
147MAPIDetails
148MAPIResolveName
149BMAPISendMail
150BMAPISaveMail
151BMAPIReadMail
152BMAPIGetReadMail
153BMAPIFindNext
154BMAPIAddress
155BMAPIGetAddress
156BMAPIDetails
157BMAPIResolveName
158cmc_act_on
159cmc_free
160cmc_list
161cmc_logoff
162cmc_logon
163cmc_look_up
164cmc_query_configuration
165cmc_read
166cmc_send
167cmc_send_documents
168HrDispatchNotifications
169HrValidateParametersV
170HrValidateParametersValist
171ScCreateConversationIndex
172HrGetOmiProvidersFlags
173HrSetOmiProvidersFlagsInvalid
174GetOutlookVersion
175FixMAPI
176FGetComponentPath
177MAPISendMailW
lib/libc/mingw/lib-common/mcicda.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MCICDA.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCICDA.dll
8EXPORTS
9DriverProc
lib/libc/mingw/lib-common/mciseq.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MCISEQ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCISEQ.dll
8EXPORTS
9DriverProc
lib/libc/mingw/lib-common/mciwave.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MCIWAVE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCIWAVE.dll
8EXPORTS
9DriverProc
lib/libc/mingw/lib-common/mdminst.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MDMINST.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MDMINST.dll
8EXPORTS
9ClassInstall32
lib/libc/mingw/lib-common/mf3216.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file mf3216.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mf3216.dll
8EXPORTS
9ConvertEmfToWmf
10Mf3216DllInitialize
lib/libc/mingw/lib-common/mfplat.def-2
......@@ -233,7 +233,6 @@ MFTRegisterLocalByCLSID
233233MFTUnregister
234234MFTUnregisterLocal
235235MFTUnregisterLocalByCLSID
236MFTraceError
237236MFTraceFuncEnter
238237MFUnblockThread
239238MFUnjoinWorkQueue
......@@ -245,6 +244,5 @@ MFUnwrapMediaType
245244MFValidateMediaTypeSize
246245MFWrapMediaType
247246MFWrapSocket
248MFllMulDiv
249247PropVariantFromStream
250248PropVariantToStream
lib/libc/mingw/lib-common/mfsensorgroup.def created+43
......@@ -0,0 +1,43 @@
1;
2; Definition file of MFSENSORGROUP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "MFSENSORGROUP.dll"
7EXPORTS
8MFCheckProcessCapabilities
9MFCleanupVirtualCameraEntries
10MFCloneSensorProfile
11MFCreatePackageFamilyNameTag
12MFCreatePassthroughTranslatedMediaType
13MFCreateRelativePanelWatcher
14MFCreateSensorActivityMonitor
15MFCreateSensorDeviceBlobByObject
16MFCreateSensorGroup
17MFCreateSensorGroupById
18MFCreateSensorGroupCollection
19MFCreateSensorGroupIdManager
20MFCreateSensorProfile
21MFCreateSensorProfileCollection
22MFCreateSensorProfileWithFlags
23MFCreateSensorStream
24MFCreateTranslatedMediaType
25MFCreateTranslatedMediaType2
26MFDeleteSensorGroupById
27MFGetDeviceFromFSUniqueId
28MFGetDeviceFromSGHash
29MFGetSGCH
30MFGetSensorDeviceProperty
31MFGetSensorDeviceRegistryProperty
32MFGetSensorGroupAttributesFromId
33MFGetSensorGroupPropertyName
34MFGetSensorOrientation
35MFInitializeSensorGroupStore
36MFIsSensorGroupName
37MFIsStreamAvailableToAppPackage
38MFLoadSensorGroupFromRegistry
39MFLoadSensorProfiles
40MFPublishSensorProfiles
41MFSensorProfileParseFilterSetString
42MFValidateSensorProfile
43MFWriteSensorGroupDataToRegistry
lib/libc/mingw/lib-common/mi.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of mi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "mi.dll"
7EXPORTS
8MI_Application_InitializeV1
9mi_clientFT_V1 DATA
lib/libc/mingw/lib-common/midimap.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file MIDIMAP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MIDIMAP.dll
8EXPORTS
9DriverProc
10modMessage
11modmCallback
lib/libc/mingw/lib-common/mlang.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file MLANG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MLANG.dll
8EXPORTS
9IsConvertINetStringAvailable
10ConvertINetString
11ConvertINetUnicodeToMultiByte
12ConvertINetMultiByteToUnicode
13ConvertINetReset
14DllCanUnloadNow
15DllGetClassObject
16DllRegisterServer
17DllUnregisterServer
18GetGlobalFontLinkObject
19LcidToRfc1766A
20LcidToRfc1766W
21Rfc1766ToLcidA
22Rfc1766ToLcidW
lib/libc/mingw/lib-common/mmdevapi.def+30
......@@ -1,3 +1,33 @@
11LIBRARY "mmdevapi.dll"
22EXPORTS
3AETraceOutputDebugString
34ActivateAudioInterfaceAsync
5CleanupDeviceAPI
6FlushDeviceTopologyCache
7GenerateMediaEvent
8GetCategoryPath
9GetClassFromEndpointId
10GetEndpointGuidFromEndpointId
11GetEndpointIdFromDeviceInterfaceId
12GetNeverSetAsDefaultProperty
13GetSessionIdFromEndpointId
14InitializeDeviceAPI
15MMDeviceCreateRegistryPropertyStore
16MMDeviceGetDeviceEnumerator
17MMDeviceGetEndpointManager
18MMDeviceGetPolicyConfig
19RegisterForMediaCallback
20UnregisterMediaCallback
21mmdDevFindMmDevProperty
22mmdDevGetDeviceIdFromPnpInterface
23mmdDevGetEndpointFormFactorFromMMDeviceId
24mmdDevGetInstanceIdFromInterfaceId
25mmdDevGetInstanceIdFromMMDeviceId
26mmdDevGetInterfaceClassGuid
27mmdDevGetInterfaceDataFlow
28mmdDevGetInterfaceIdFromMMDevice
29mmdDevGetInterfaceIdFromMMDeviceId
30mmdDevGetInterfacePropertyStore
31mmdDevGetMMDeviceFromInterfaceId
32mmdDevGetMMDeviceIdFromInterfaceId
33mmdDevGetRelatedInterfaceId
lib/libc/mingw/lib-common/modemui.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file modemui.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY modemui.dll
8EXPORTS
9drvCommConfigDialogW
10drvCommConfigDialogA
11drvSetDefaultCommConfigW
12drvSetDefaultCommConfigA
13drvGetDefaultCommConfigW
14drvGetDefaultCommConfigA
15UnimodemDevConfigDialog
16CountryRunOnce
17UnimodemGetDefaultCommConfig
18UnimodemGetExtendedCaps
19InvokeControlPanel
20ModemCplDlgProc
21ModemPropPagesProvider
22QueryModemForCountrySettings
lib/libc/mingw/lib-common/mpr.def+4
......@@ -24,6 +24,8 @@ WNetAddConnection2A
2424WNetAddConnection2W
2525WNetAddConnection3A
2626WNetAddConnection3W
27WNetAddConnection4A
28WNetAddConnection4W
2729WNetAddConnectionA
2830WNetAddConnectionW
2931WNetCancelConnection2A
......@@ -92,3 +94,5 @@ WNetSetLastErrorW
9294WNetSupportGlobalEnum
9395WNetUseConnectionA
9496WNetUseConnectionW
97WNetUseConnection4A
98WNetUseConnection4W
lib/libc/mingw/lib-common/msafd.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MSAFD.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSAFD.dll
8EXPORTS
9WSPStartup
lib/libc/mingw/lib-common/msajapi.def created+562
......@@ -0,0 +1,562 @@
1LIBRARY msajapi
2
3EXPORTS
4
5AllJoynAcceptBusConnection
6AllJoynCloseBusHandle
7AllJoynConnectToBus
8AllJoynCreateBus
9AllJoynEnumEvents
10AllJoynEventSelect
11AllJoynEventWrite
12AllJoynEventsRegister
13AllJoynEventsUnregister
14AllJoynGetConfigurationDWORD
15AllJoynReceiveFromBus
16AllJoynSendToBus
17AllJoynSetDebugLevel
18GetHResultFromQStatus
19QCC_StatusText
20RouterNodeCleanup
21RouterNodeInitialize
22RouterNodeIsIdle
23RouterNodeRun
24alljoyn_aboutdata_create
25alljoyn_aboutdata_create_empty
26alljoyn_aboutdata_create_full
27alljoyn_aboutdata_createfrommsgarg
28alljoyn_aboutdata_createfromxml
29alljoyn_aboutdata_destroy
30alljoyn_aboutdata_getaboutdata
31alljoyn_aboutdata_getajsoftwareversion
32alljoyn_aboutdata_getannouncedaboutdata
33alljoyn_aboutdata_getappid
34alljoyn_aboutdata_getappname
35alljoyn_aboutdata_getdateofmanufacture
36alljoyn_aboutdata_getdefaultlanguage
37alljoyn_aboutdata_getdescription
38alljoyn_aboutdata_getdeviceid
39alljoyn_aboutdata_getdevicename
40alljoyn_aboutdata_getfield
41alljoyn_aboutdata_getfields
42alljoyn_aboutdata_getfieldsignature
43alljoyn_aboutdata_gethardwareversion
44alljoyn_aboutdata_getmanufacturer
45alljoyn_aboutdata_getmodelnumber
46alljoyn_aboutdata_getsoftwareversion
47alljoyn_aboutdata_getsupportedlanguages
48alljoyn_aboutdata_getsupporturl
49alljoyn_aboutdata_isfieldannounced
50alljoyn_aboutdata_isfieldlocalized
51alljoyn_aboutdata_isfieldrequired
52alljoyn_aboutdata_isvalid
53alljoyn_aboutdata_setappid
54alljoyn_aboutdata_setappid_fromstring
55alljoyn_aboutdata_setappname
56alljoyn_aboutdata_setdateofmanufacture
57alljoyn_aboutdata_setdefaultlanguage
58alljoyn_aboutdata_setdescription
59alljoyn_aboutdata_setdeviceid
60alljoyn_aboutdata_setdevicename
61alljoyn_aboutdata_setfield
62alljoyn_aboutdata_sethardwareversion
63alljoyn_aboutdata_setmanufacturer
64alljoyn_aboutdata_setmodelnumber
65alljoyn_aboutdata_setsoftwareversion
66alljoyn_aboutdata_setsupportedlanguage
67alljoyn_aboutdata_setsupporturl
68alljoyn_aboutdatalistener_create
69alljoyn_aboutdatalistener_destroy
70alljoyn_abouticon_clear
71alljoyn_abouticon_create
72alljoyn_abouticon_destroy
73alljoyn_abouticon_getcontent
74alljoyn_abouticon_geturl
75alljoyn_abouticon_setcontent
76alljoyn_abouticon_setcontent_frommsgarg
77alljoyn_abouticon_seturl
78alljoyn_abouticonobj_create
79alljoyn_abouticonobj_destroy
80alljoyn_abouticonproxy_create
81alljoyn_abouticonproxy_destroy
82alljoyn_abouticonproxy_geticon
83alljoyn_abouticonproxy_getversion
84alljoyn_aboutlistener_create
85alljoyn_aboutlistener_destroy
86alljoyn_aboutobj_announce
87alljoyn_aboutobj_announce_using_datalistener
88alljoyn_aboutobj_create
89alljoyn_aboutobj_destroy
90alljoyn_aboutobj_unannounce
91alljoyn_aboutobjectdescription_clear
92alljoyn_aboutobjectdescription_create
93alljoyn_aboutobjectdescription_create_full
94alljoyn_aboutobjectdescription_createfrommsgarg
95alljoyn_aboutobjectdescription_destroy
96alljoyn_aboutobjectdescription_getinterfacepaths
97alljoyn_aboutobjectdescription_getinterfaces
98alljoyn_aboutobjectdescription_getmsgarg
99alljoyn_aboutobjectdescription_getpaths
100alljoyn_aboutobjectdescription_hasinterface
101alljoyn_aboutobjectdescription_hasinterfaceatpath
102alljoyn_aboutobjectdescription_haspath
103alljoyn_aboutproxy_create
104alljoyn_aboutproxy_destroy
105alljoyn_aboutproxy_getaboutdata
106alljoyn_aboutproxy_getobjectdescription
107alljoyn_aboutproxy_getversion
108alljoyn_applicationstatelistener_create
109alljoyn_applicationstatelistener_destroy
110alljoyn_authlistener_create
111alljoyn_authlistener_destroy
112alljoyn_authlistener_requestcredentialsresponse
113alljoyn_authlistener_setsharedsecret
114alljoyn_authlistener_verifycredentialsresponse
115alljoyn_authlistenerasync_create
116alljoyn_authlistenerasync_destroy
117alljoyn_autopinger_adddestination
118alljoyn_autopinger_addpinggroup
119alljoyn_autopinger_create
120alljoyn_autopinger_destroy
121alljoyn_autopinger_pause
122alljoyn_autopinger_removedestination
123alljoyn_autopinger_removepinggroup
124alljoyn_autopinger_resume
125alljoyn_autopinger_setpinginterval
126alljoyn_busattachment_addlogonentry
127alljoyn_busattachment_addmatch
128alljoyn_busattachment_advertisename
129alljoyn_busattachment_bindsessionport
130alljoyn_busattachment_canceladvertisename
131alljoyn_busattachment_cancelfindadvertisedname
132alljoyn_busattachment_cancelfindadvertisednamebytransport
133alljoyn_busattachment_cancelwhoimplements_interface
134alljoyn_busattachment_cancelwhoimplements_interfaces
135alljoyn_busattachment_clearkeys
136alljoyn_busattachment_clearkeystore
137alljoyn_busattachment_connect
138alljoyn_busattachment_create
139alljoyn_busattachment_create_concurrency
140alljoyn_busattachment_createinterface
141alljoyn_busattachment_createinterface_secure
142alljoyn_busattachment_createinterfacesfromxml
143alljoyn_busattachment_deletedefaultkeystore
144alljoyn_busattachment_deleteinterface
145alljoyn_busattachment_destroy
146alljoyn_busattachment_disconnect
147alljoyn_busattachment_enableconcurrentcallbacks
148alljoyn_busattachment_enablepeersecurity
149alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener
150alljoyn_busattachment_findadvertisedname
151alljoyn_busattachment_findadvertisednamebytransport
152alljoyn_busattachment_getalljoyndebugobj
153alljoyn_busattachment_getalljoynproxyobj
154alljoyn_busattachment_getconcurrency
155alljoyn_busattachment_getconnectspec
156alljoyn_busattachment_getdbusproxyobj
157alljoyn_busattachment_getglobalguidstring
158alljoyn_busattachment_getinterface
159alljoyn_busattachment_getinterfaces
160alljoyn_busattachment_getkeyexpiration
161alljoyn_busattachment_getpeerguid
162alljoyn_busattachment_getpermissionconfigurator
163alljoyn_busattachment_gettimestamp
164alljoyn_busattachment_getuniquename
165alljoyn_busattachment_isconnected
166alljoyn_busattachment_ispeersecurityenabled
167alljoyn_busattachment_isstarted
168alljoyn_busattachment_isstopping
169alljoyn_busattachment_join
170alljoyn_busattachment_joinsession
171alljoyn_busattachment_joinsessionasync
172alljoyn_busattachment_leavesession
173alljoyn_busattachment_namehasowner
174alljoyn_busattachment_ping
175alljoyn_busattachment_registeraboutlistener
176alljoyn_busattachment_registerapplicationstatelistener
177alljoyn_busattachment_registerbuslistener
178alljoyn_busattachment_registerbusobject
179alljoyn_busattachment_registerbusobject_secure
180alljoyn_busattachment_registerkeystorelistener
181alljoyn_busattachment_registersignalhandler
182alljoyn_busattachment_registersignalhandlerwithrule
183alljoyn_busattachment_releasename
184alljoyn_busattachment_reloadkeystore
185alljoyn_busattachment_removematch
186alljoyn_busattachment_removesessionmember
187alljoyn_busattachment_requestname
188alljoyn_busattachment_secureconnection
189alljoyn_busattachment_secureconnectionasync
190alljoyn_busattachment_setdaemondebug
191alljoyn_busattachment_setkeyexpiration
192alljoyn_busattachment_setlinktimeout
193alljoyn_busattachment_setlinktimeoutasync
194alljoyn_busattachment_setsessionlistener
195alljoyn_busattachment_start
196alljoyn_busattachment_stop
197alljoyn_busattachment_unbindsessionport
198alljoyn_busattachment_unregisteraboutlistener
199alljoyn_busattachment_unregisterallaboutlisteners
200alljoyn_busattachment_unregisterallhandlers
201alljoyn_busattachment_unregisterapplicationstatelistener
202alljoyn_busattachment_unregisterbuslistener
203alljoyn_busattachment_unregisterbusobject
204alljoyn_busattachment_unregistersignalhandler
205alljoyn_busattachment_unregistersignalhandlerwithrule
206alljoyn_busattachment_whoimplements_interface
207alljoyn_busattachment_whoimplements_interfaces
208alljoyn_buslistener_create
209alljoyn_buslistener_destroy
210alljoyn_busobject_addinterface
211alljoyn_busobject_addinterface_announced
212alljoyn_busobject_addmethodhandler
213alljoyn_busobject_addmethodhandlers
214alljoyn_busobject_cancelsessionlessmessage
215alljoyn_busobject_cancelsessionlessmessage_serial
216alljoyn_busobject_create
217alljoyn_busobject_destroy
218alljoyn_busobject_emitpropertieschanged
219alljoyn_busobject_emitpropertychanged
220alljoyn_busobject_getannouncedinterfacenames
221alljoyn_busobject_getbusattachment
222alljoyn_busobject_getname
223alljoyn_busobject_getpath
224alljoyn_busobject_issecure
225alljoyn_busobject_methodreply_args
226alljoyn_busobject_methodreply_err
227alljoyn_busobject_methodreply_status
228alljoyn_busobject_setannounceflag
229alljoyn_busobject_signal
230alljoyn_credentials_clear
231alljoyn_credentials_create
232alljoyn_credentials_destroy
233alljoyn_credentials_getcertchain
234alljoyn_credentials_getexpiration
235alljoyn_credentials_getlogonentry
236alljoyn_credentials_getpassword
237alljoyn_credentials_getprivateKey
238alljoyn_credentials_getusername
239alljoyn_credentials_isset
240alljoyn_credentials_setcertchain
241alljoyn_credentials_setexpiration
242alljoyn_credentials_setlogonentry
243alljoyn_credentials_setpassword
244alljoyn_credentials_setprivatekey
245alljoyn_credentials_setusername
246alljoyn_getbuildinfo
247alljoyn_getnumericversion
248alljoyn_getversion
249alljoyn_init
250alljoyn_interfacedescription_activate
251alljoyn_interfacedescription_addannotation
252alljoyn_interfacedescription_addargannotation
253alljoyn_interfacedescription_addmember
254alljoyn_interfacedescription_addmemberannotation
255alljoyn_interfacedescription_addmethod
256alljoyn_interfacedescription_addproperty
257alljoyn_interfacedescription_addpropertyannotation
258alljoyn_interfacedescription_addsignal
259alljoyn_interfacedescription_eql
260alljoyn_interfacedescription_getannotation
261alljoyn_interfacedescription_getannotationatindex
262alljoyn_interfacedescription_getannotationscount
263alljoyn_interfacedescription_getargdescriptionforlanguage
264alljoyn_interfacedescription_getdescriptionforlanguage
265alljoyn_interfacedescription_getdescriptionlanguages
266alljoyn_interfacedescription_getdescriptionlanguages2
267alljoyn_interfacedescription_getdescriptiontranslationcallback
268alljoyn_interfacedescription_getmember
269alljoyn_interfacedescription_getmemberannotation
270alljoyn_interfacedescription_getmemberargannotation
271alljoyn_interfacedescription_getmemberdescriptionforlanguage
272alljoyn_interfacedescription_getmembers
273alljoyn_interfacedescription_getmethod
274alljoyn_interfacedescription_getname
275alljoyn_interfacedescription_getproperties
276alljoyn_interfacedescription_getproperty
277alljoyn_interfacedescription_getpropertyannotation
278alljoyn_interfacedescription_getpropertydescriptionforlanguage
279alljoyn_interfacedescription_getsecuritypolicy
280alljoyn_interfacedescription_getsignal
281alljoyn_interfacedescription_hasdescription
282alljoyn_interfacedescription_hasmember
283alljoyn_interfacedescription_hasproperties
284alljoyn_interfacedescription_hasproperty
285alljoyn_interfacedescription_introspect
286alljoyn_interfacedescription_issecure
287alljoyn_interfacedescription_member_eql
288alljoyn_interfacedescription_member_getannotation
289alljoyn_interfacedescription_member_getannotationatindex
290alljoyn_interfacedescription_member_getannotationscount
291alljoyn_interfacedescription_member_getargannotation
292alljoyn_interfacedescription_member_getargannotationatindex
293alljoyn_interfacedescription_member_getargannotationscount
294alljoyn_interfacedescription_property_eql
295alljoyn_interfacedescription_property_getannotation
296alljoyn_interfacedescription_property_getannotationatindex
297alljoyn_interfacedescription_property_getannotationscount
298alljoyn_interfacedescription_setargdescription
299alljoyn_interfacedescription_setargdescriptionforlanguage
300alljoyn_interfacedescription_setdescription
301alljoyn_interfacedescription_setdescriptionforlanguage
302alljoyn_interfacedescription_setdescriptionlanguage
303alljoyn_interfacedescription_setdescriptiontranslationcallback
304alljoyn_interfacedescription_setmemberdescription
305alljoyn_interfacedescription_setmemberdescriptionforlanguage
306alljoyn_interfacedescription_setpropertydescription
307alljoyn_interfacedescription_setpropertydescriptionforlanguage
308alljoyn_keystorelistener_create
309alljoyn_keystorelistener_destroy
310alljoyn_keystorelistener_getkeys
311alljoyn_keystorelistener_putkeys
312alljoyn_keystorelistener_with_synchronization_create
313alljoyn_message_create
314alljoyn_message_description
315alljoyn_message_destroy
316alljoyn_message_eql
317alljoyn_message_getarg
318alljoyn_message_getargs
319alljoyn_message_getauthmechanism
320alljoyn_message_getcallserial
321alljoyn_message_getcompressiontoken
322alljoyn_message_getdestination
323alljoyn_message_geterrorname
324alljoyn_message_getflags
325alljoyn_message_getinterface
326alljoyn_message_getmembername
327alljoyn_message_getobjectpath
328alljoyn_message_getreceiveendpointname
329alljoyn_message_getreplyserial
330alljoyn_message_getsender
331alljoyn_message_getsessionid
332alljoyn_message_getsignature
333alljoyn_message_gettimestamp
334alljoyn_message_gettype
335alljoyn_message_isbroadcastsignal
336alljoyn_message_isencrypted
337alljoyn_message_isexpired
338alljoyn_message_isglobalbroadcast
339alljoyn_message_issessionless
340alljoyn_message_isunreliable
341alljoyn_message_parseargs
342alljoyn_message_setendianess
343alljoyn_message_tostring
344alljoyn_msgarg_array_create
345alljoyn_msgarg_array_element
346alljoyn_msgarg_array_get
347alljoyn_msgarg_array_set
348alljoyn_msgarg_array_set_offset
349alljoyn_msgarg_array_signature
350alljoyn_msgarg_array_tostring
351alljoyn_msgarg_clear
352alljoyn_msgarg_clone
353alljoyn_msgarg_copy
354alljoyn_msgarg_create
355alljoyn_msgarg_create_and_set
356alljoyn_msgarg_destroy
357alljoyn_msgarg_equal
358alljoyn_msgarg_get
359alljoyn_msgarg_get_array_element
360alljoyn_msgarg_get_array_elementsignature
361alljoyn_msgarg_get_array_numberofelements
362alljoyn_msgarg_get_bool
363alljoyn_msgarg_get_bool_array
364alljoyn_msgarg_get_double
365alljoyn_msgarg_get_double_array
366alljoyn_msgarg_get_int16
367alljoyn_msgarg_get_int16_array
368alljoyn_msgarg_get_int32
369alljoyn_msgarg_get_int32_array
370alljoyn_msgarg_get_int64
371alljoyn_msgarg_get_int64_array
372alljoyn_msgarg_get_objectpath
373alljoyn_msgarg_get_signature
374alljoyn_msgarg_get_string
375alljoyn_msgarg_get_uint16
376alljoyn_msgarg_get_uint16_array
377alljoyn_msgarg_get_uint32
378alljoyn_msgarg_get_uint32_array
379alljoyn_msgarg_get_uint64
380alljoyn_msgarg_get_uint64_array
381alljoyn_msgarg_get_uint8
382alljoyn_msgarg_get_uint8_array
383alljoyn_msgarg_get_variant
384alljoyn_msgarg_get_variant_array
385alljoyn_msgarg_getdictelement
386alljoyn_msgarg_getkey
387alljoyn_msgarg_getmember
388alljoyn_msgarg_getnummembers
389alljoyn_msgarg_gettype
390alljoyn_msgarg_getvalue
391alljoyn_msgarg_hassignature
392alljoyn_msgarg_set
393alljoyn_msgarg_set_and_stabilize
394alljoyn_msgarg_set_bool
395alljoyn_msgarg_set_bool_array
396alljoyn_msgarg_set_double
397alljoyn_msgarg_set_double_array
398alljoyn_msgarg_set_int16
399alljoyn_msgarg_set_int16_array
400alljoyn_msgarg_set_int32
401alljoyn_msgarg_set_int32_array
402alljoyn_msgarg_set_int64
403alljoyn_msgarg_set_int64_array
404alljoyn_msgarg_set_objectpath
405alljoyn_msgarg_set_objectpath_array
406alljoyn_msgarg_set_signature
407alljoyn_msgarg_set_signature_array
408alljoyn_msgarg_set_string
409alljoyn_msgarg_set_string_array
410alljoyn_msgarg_set_uint16
411alljoyn_msgarg_set_uint16_array
412alljoyn_msgarg_set_uint32
413alljoyn_msgarg_set_uint32_array
414alljoyn_msgarg_set_uint64
415alljoyn_msgarg_set_uint64_array
416alljoyn_msgarg_set_uint8
417alljoyn_msgarg_set_uint8_array
418alljoyn_msgarg_setdictentry
419alljoyn_msgarg_setstruct
420alljoyn_msgarg_signature
421alljoyn_msgarg_stabilize
422alljoyn_msgarg_tostring
423alljoyn_observer_create
424alljoyn_observer_destroy
425alljoyn_observer_get
426alljoyn_observer_getfirst
427alljoyn_observer_getnext
428alljoyn_observer_registerlistener
429alljoyn_observer_unregisteralllisteners
430alljoyn_observer_unregisterlistener
431alljoyn_observerlistener_create
432alljoyn_observerlistener_destroy
433alljoyn_passwordmanager_setcredentials
434alljoyn_permissionconfigurationlistener_create
435alljoyn_permissionconfigurationlistener_destroy
436alljoyn_permissionconfigurator_certificatechain_destroy
437alljoyn_permissionconfigurator_certificateid_cleanup
438alljoyn_permissionconfigurator_certificateidarray_cleanup
439alljoyn_permissionconfigurator_claim
440alljoyn_permissionconfigurator_endmanagement
441alljoyn_permissionconfigurator_getapplicationstate
442alljoyn_permissionconfigurator_getclaimcapabilities
443alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo
444alljoyn_permissionconfigurator_getdefaultclaimcapabilities
445alljoyn_permissionconfigurator_getdefaultpolicy
446alljoyn_permissionconfigurator_getidentity
447alljoyn_permissionconfigurator_getidentitycertificateid
448alljoyn_permissionconfigurator_getmanifests
449alljoyn_permissionconfigurator_getmanifesttemplate
450alljoyn_permissionconfigurator_getmembershipsummaries
451alljoyn_permissionconfigurator_getpolicy
452alljoyn_permissionconfigurator_getpublickey
453alljoyn_permissionconfigurator_installmanifests
454alljoyn_permissionconfigurator_installmembership
455alljoyn_permissionconfigurator_manifestarray_cleanup
456alljoyn_permissionconfigurator_manifesttemplate_destroy
457alljoyn_permissionconfigurator_policy_destroy
458alljoyn_permissionconfigurator_publickey_destroy
459alljoyn_permissionconfigurator_removemembership
460alljoyn_permissionconfigurator_reset
461alljoyn_permissionconfigurator_resetpolicy
462alljoyn_permissionconfigurator_setapplicationstate
463alljoyn_permissionconfigurator_setclaimcapabilities
464alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo
465alljoyn_permissionconfigurator_setmanifestfromxml
466alljoyn_permissionconfigurator_setmanifesttemplatefromxml
467alljoyn_permissionconfigurator_startmanagement
468alljoyn_permissionconfigurator_updateidentity
469alljoyn_permissionconfigurator_updatepolicy
470alljoyn_pinglistener_create
471alljoyn_pinglistener_destroy
472alljoyn_proxybusobject_addchild
473alljoyn_proxybusobject_addinterface
474alljoyn_proxybusobject_addinterface_by_name
475alljoyn_proxybusobject_copy
476alljoyn_proxybusobject_create
477alljoyn_proxybusobject_create_secure
478alljoyn_proxybusobject_destroy
479alljoyn_proxybusobject_enablepropertycaching
480alljoyn_proxybusobject_getallproperties
481alljoyn_proxybusobject_getallpropertiesasync
482alljoyn_proxybusobject_getchild
483alljoyn_proxybusobject_getchildren
484alljoyn_proxybusobject_getinterface
485alljoyn_proxybusobject_getinterfaces
486alljoyn_proxybusobject_getpath
487alljoyn_proxybusobject_getproperty
488alljoyn_proxybusobject_getpropertyasync
489alljoyn_proxybusobject_getservicename
490alljoyn_proxybusobject_getsessionid
491alljoyn_proxybusobject_getuniquename
492alljoyn_proxybusobject_implementsinterface
493alljoyn_proxybusobject_introspectremoteobject
494alljoyn_proxybusobject_introspectremoteobjectasync
495alljoyn_proxybusobject_issecure
496alljoyn_proxybusobject_isvalid
497alljoyn_proxybusobject_methodcall
498alljoyn_proxybusobject_methodcall_member
499alljoyn_proxybusobject_methodcall_member_noreply
500alljoyn_proxybusobject_methodcall_noreply
501alljoyn_proxybusobject_methodcallasync
502alljoyn_proxybusobject_methodcallasync_member
503alljoyn_proxybusobject_parsexml
504alljoyn_proxybusobject_ref_create
505alljoyn_proxybusobject_ref_decref
506alljoyn_proxybusobject_ref_get
507alljoyn_proxybusobject_ref_incref
508alljoyn_proxybusobject_registerpropertieschangedlistener
509alljoyn_proxybusobject_removechild
510alljoyn_proxybusobject_secureconnection
511alljoyn_proxybusobject_secureconnectionasync
512alljoyn_proxybusobject_setproperty
513alljoyn_proxybusobject_setpropertyasync
514alljoyn_proxybusobject_unregisterpropertieschangedlistener
515alljoyn_routerinit
516alljoyn_routerinitwithconfig
517alljoyn_routershutdown
518alljoyn_securityapplicationproxy_claim
519alljoyn_securityapplicationproxy_computemanifestdigest
520alljoyn_securityapplicationproxy_create
521alljoyn_securityapplicationproxy_destroy
522alljoyn_securityapplicationproxy_digest_destroy
523alljoyn_securityapplicationproxy_eccpublickey_destroy
524alljoyn_securityapplicationproxy_endmanagement
525alljoyn_securityapplicationproxy_getapplicationstate
526alljoyn_securityapplicationproxy_getclaimcapabilities
527alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo
528alljoyn_securityapplicationproxy_getdefaultpolicy
529alljoyn_securityapplicationproxy_geteccpublickey
530alljoyn_securityapplicationproxy_getmanifesttemplate
531alljoyn_securityapplicationproxy_getpermissionmanagementsessionport
532alljoyn_securityapplicationproxy_getpolicy
533alljoyn_securityapplicationproxy_installmembership
534alljoyn_securityapplicationproxy_manifest_destroy
535alljoyn_securityapplicationproxy_manifesttemplate_destroy
536alljoyn_securityapplicationproxy_policy_destroy
537alljoyn_securityapplicationproxy_reset
538alljoyn_securityapplicationproxy_resetpolicy
539alljoyn_securityapplicationproxy_setmanifestsignature
540alljoyn_securityapplicationproxy_signmanifest
541alljoyn_securityapplicationproxy_startmanagement
542alljoyn_securityapplicationproxy_updateidentity
543alljoyn_securityapplicationproxy_updatepolicy
544alljoyn_sessionlistener_create
545alljoyn_sessionlistener_destroy
546alljoyn_sessionopts_cmp
547alljoyn_sessionopts_create
548alljoyn_sessionopts_destroy
549alljoyn_sessionopts_get_multipoint
550alljoyn_sessionopts_get_proximity
551alljoyn_sessionopts_get_traffic
552alljoyn_sessionopts_get_transports
553alljoyn_sessionopts_iscompatible
554alljoyn_sessionopts_set_multipoint
555alljoyn_sessionopts_set_proximity
556alljoyn_sessionopts_set_traffic
557alljoyn_sessionopts_set_transports
558alljoyn_sessionportlistener_create
559alljoyn_sessionportlistener_destroy
560alljoyn_shutdown
561alljoyn_unity_deferred_callbacks_process
562alljoyn_unity_set_deferred_callback_mainthread_only
lib/libc/mingw/lib-common/mscat32.def created+44
......@@ -0,0 +1,44 @@
1;
2; Exports of file MSCAT32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSCAT32.dll
8EXPORTS
9CryptCATVerifyMember
10CatalogCompactHashDatabase
11CryptCATAdminAcquireContext
12CryptCATAdminAddCatalog
13CryptCATAdminCalcHashFromFileHandle
14CryptCATAdminEnumCatalogFromHash
15CryptCATAdminReleaseCatalogContext
16CryptCATAdminReleaseContext
17CryptCATCDFClose
18CryptCATCDFEnumAttributes
19CryptCATCDFEnumAttributesWithCDFTag
20CryptCATCDFEnumCatAttributes
21CryptCATCDFEnumMembers
22CryptCATCDFEnumMembersByCDFTag
23CryptCATCDFEnumMembersByCDFTagEx
24CryptCATCDFOpen
25CryptCATCatalogInfoFromContext
26CryptCATClose
27CryptCATEnumerateAttr
28CryptCATEnumerateCatAttr
29CryptCATEnumerateMember
30CryptCATGetAttrInfo
31CryptCATGetCatAttrInfo
32CryptCATGetMemberInfo
33CryptCATHandleFromStore
34CryptCATOpen
35CryptCATPersistStore
36CryptCATPutAttrInfo
37CryptCATPutCatAttrInfo
38CryptCATPutMemberInfo
39CryptCATStoreFromHandle
40DllRegisterServer
41DllUnregisterServer
42IsCatalogFile
43MsCatConstructHashTag
44MsCatFreeHashTag
lib/libc/mingw/lib-common/mscms.def created+139
......@@ -0,0 +1,139 @@
1;
2; Definition file of mscms.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "mscms.dll"
7EXPORTS
8AssociateColorProfileWithDeviceA
9AssociateColorProfileWithDeviceW
10CheckBitmapBits
11CheckColors
12CloseColorProfile
13CloseDisplay
14ColorCplGetDefaultProfileScope
15ColorCplGetDefaultRenderingIntentScope
16ColorCplGetProfileProperties
17ColorCplHasSystemWideAssociationListChanged
18ColorCplInitialize
19ColorCplLoadAssociationList
20ColorCplMergeAssociationLists
21ColorCplOverwritePerUserAssociationList
22ColorCplReleaseProfileProperties
23ColorCplResetSystemWideAssociationListChangedWarning
24ColorCplSaveAssociationList
25ColorCplSetUsePerUserProfiles
26ColorCplUninitialize
27ConvertColorNameToIndex
28ConvertIndexToColorName
29CreateColorTransformA
30CreateColorTransformW
31CreateDeviceLinkProfile
32CreateMultiProfileTransform
33CreateProfileFromLogColorSpaceA
34CreateProfileFromLogColorSpaceW
35DccwCreateDisplayProfileAssociationList
36DccwGetDisplayProfileAssociationList
37DccwGetGamutSize
38DccwReleaseDisplayProfileAssociationList
39DccwSetDisplayProfileAssociationList
40DeleteColorTransform
41DeviceRenameEvent
42DisassociateColorProfileFromDeviceA
43DisassociateColorProfileFromDeviceW
44; DllCanUnloadNow
45; DllGetClassObject
46EnumColorProfilesA
47EnumColorProfilesW
48GenerateCopyFilePaths
49GetCMMInfo
50GetColorDirectoryA
51GetColorDirectoryW
52GetColorProfileElement
53GetColorProfileElementTag
54GetColorProfileFromHandle
55GetColorProfileHeader
56GetCountColorProfileElements
57GetNamedProfileInfo
58GetPS2ColorRenderingDictionary
59GetPS2ColorRenderingIntent
60GetPS2ColorSpaceArray
61GetStandardColorSpaceProfileA
62GetStandardColorSpaceProfileW
63InstallColorProfileA
64InstallColorProfileW
65InternalGetDeviceConfig
66InternalGetPS2CSAFromLCS
67InternalGetPS2ColorRenderingDictionary
68InternalGetPS2ColorSpaceArray
69InternalGetPS2PreviewCRD
70InternalRefreshCalibration
71InternalSetDeviceConfig
72InternalWcsAssociateColorProfileWithDevice
73InternalWcsDisassociateColorProfileWithDevice
74IsColorProfileTagPresent
75IsColorProfileValid
76OpenColorProfileA
77OpenColorProfileW
78OpenDisplay
79RegisterCMMA
80RegisterCMMW
81SelectCMM
82SetColorProfileElement
83SetColorProfileElementReference
84SetColorProfileElementSize
85SetColorProfileHeader
86SetStandardColorSpaceProfileA
87SetStandardColorSpaceProfileW
88SpoolerCopyFileEvent
89TranslateBitmapBits
90TranslateColors
91UninstallColorProfileA
92UninstallColorProfileW
93UnregisterCMMA
94UnregisterCMMW
95WcsAssociateColorProfileWithDevice
96WcsCheckColors
97WcsCreateIccProfile
98WcsDisassociateColorProfileFromDevice
99WcsEnumColorProfiles
100WcsEnumColorProfilesSize
101WcsGetCalibrationManagementState
102WcsGetDefaultColorProfile
103WcsGetDefaultColorProfileSize
104WcsGetDefaultRenderingIntent
105WcsGetUsePerUserProfiles
106WcsGpCanInstallOrUninstallProfiles
107WcsGpCanModifyDeviceAssociationList
108WcsOpenColorProfileA
109WcsOpenColorProfileW
110WcsSetCalibrationManagementState
111WcsSetDefaultColorProfile
112WcsSetDefaultRenderingIntent
113WcsSetUsePerUserProfiles
114WcsTranslateColors
115InternalGetPS2ColorRenderingDictionary2
116InternalGetPS2PreviewCRD2
117InternalGetPS2ColorSpaceArray2
118InternalSetDeviceGammaRamp
119InternalSetDeviceTemperature
120InternalGetAppliedGammaRamp
121InternalGetDeviceGammaCapability
122InternalGetAppliedGDIGammaRamp
123InternalSetDeviceGDIGammaRamp
124ColorAdapterGetSystemModifyWhitePointCaps
125ColorAdapterGetDisplayCurrentStateID
126ColorAdapterUpdateDisplayGamma
127ColorAdapterUpdateDeviceProfile
128ColorAdapterGetDisplayTransformData
129ColorAdapterGetDisplayTargetWhitePoint
130ColorAdapterGetDisplayProfile
131ColorAdapterGetCurrentProfileCalibration
132ColorAdapterRegisterOEMColorService
133ColorAdapterUnregisterOEMColorService
134ColorProfileAddDisplayAssociation
135ColorProfileRemoveDisplayAssociation
136ColorProfileSetDisplayDefaultAssociation
137ColorProfileGetDisplayList
138ColorProfileGetDisplayDefault
139ColorProfileGetDisplayUserScope
lib/libc/mingw/lib-common/msctf.def created+95
......@@ -0,0 +1,95 @@
1;
2; Definition file of MSCTF.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "MSCTF.dll"
7EXPORTS
8TF_GetLangDescriptionFromHKL
9TF_GetLangIcon
10TF_GetMlngHKL
11TF_GetMlngIconIndex
12TF_GetThreadFlags
13TF_InatExtractIcon
14TF_InitMlngInfo
15TF_IsInMarshaling
16TF_MlngInfoCount
17TF_GetLangIconFromHKL
18TF_RunInputCPL
19CtfImeAssociateFocus
20CtfImeConfigure
21CtfImeConversionList
22CtfImeCreateInputContext
23CtfImeCreateThreadMgr
24CtfImeDestroy
25CtfImeDestroyInputContext
26CtfImeDestroyThreadMgr
27CtfImeDispatchDefImeMessage
28CtfImeEnumRegisterWord
29CtfImeEscape
30CtfImeEscapeEx
31CtfImeGetGuidAtom
32CtfImeGetRegisterWordStyle
33CtfImeInquire
34CtfImeInquireExW
35CtfImeIsGuidMapEnable
36CtfImeIsIME
37CtfImeProcessCicHotkey
38CtfImeProcessKey
39CtfImeRegisterWord
40CtfImeSelect
41CtfImeSelectEx
42CtfImeSetActiveContext
43CtfImeSetCompositionString
44CtfImeSetFocus
45CtfImeToAsciiEx
46CtfImeUnregisterWord
47CtfNotifyIME
48DllCanUnloadNow
49DllGetClassObject
50DllRegisterServer
51DllUnregisterServer
52SetInputScope
53SetInputScopeXML
54SetInputScopes
55SetInputScopes2
56TF_AttachThreadInput
57TF_CUASAppFix
58TF_CanUninitialize
59TF_CheckThreadInputIdle
60TF_CleanUpPrivateMessages
61TF_ClearLangBarAddIns
62TF_CreateCategoryMgr
63TF_CreateCicLoadMutex
64TF_CreateCicLoadWinStaMutex
65TF_CreateDisplayAttributeMgr
66TF_CreateInputProcessorProfiles
67TF_CreateLangBarItemMgr
68TF_CreateLangBarMgr
69TF_CreateThreadMgr
70TF_DllDetachInOther
71TF_GetAppCompatFlags
72TF_GetCompatibleKeyboardLayout
73TF_GetGlobalCompartment
74TF_GetInitSystemFlags
75TF_GetInputScope
76TF_GetShowFloatingStatus
77TF_GetThreadMgr
78TF_InitSystem
79TF_InvalidAssemblyListCache
80TF_InvalidAssemblyListCacheIfExist
81TF_IsCtfmonRunning
82TF_IsFullScreenWindowActivated
83TF_IsThreadWithFlags
84TF_MapCompatibleHKL
85TF_MapCompatibleKeyboardTip
86TF_Notify
87TF_PostAllThreadMsg
88TF_RegisterLangBarAddIn
89TF_SendLangBandMsg
90TF_SetDefaultRemoteKeyboardLayout
91TF_SetShowFloatingStatus
92TF_SetThreadFlags
93TF_UninitSystem
94TF_UnregisterLangBarAddIn
95TF_WaitForInitialized
lib/libc/mingw/lib-common/msdadiag.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file msdadiag.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msdadiag.dll
8EXPORTS
9DllBidEntryPoint
lib/libc/mingw/lib-common/msimtf.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file msimtf.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msimtf.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13MsimtfIsGuidMapEnable
14MsimtfIsWindowFiltered
lib/libc/mingw/lib-common/msisip.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file msisip.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msisip.dll
8EXPORTS
9MsiSIPIsMyTypeOfFile
10MsiSIPGetSignedDataMsg
11MsiSIPPutSignedDataMsg
12MsiSIPRemoveSignedDataMsg
13MsiSIPCreateIndirectData
14MsiSIPVerifyIndirectData
15DllRegisterServer
16DllUnregisterServer
lib/libc/mingw/lib-common/msls31.def created+87
......@@ -0,0 +1,87 @@
1;
2; Exports of file msls31.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msls31.dll
8EXPORTS
9LsCreateContext
10LsDestroyContext
11LsCreateLine
12LsModifyLineHeight
13LsDestroyLine
14LsCreateSubline
15LsFetchAppendToCurrentSubline
16LsAppendRunToCurrentSubline
17LsResetRMInCurrentSubline
18LsFinishCurrentSubline
19LsTruncateSubline
20LsFindPrevBreakSubline
21LsFindNextBreakSubline
22LsForceBreakSubline
23LsSetBreakSubline
24LsDestroySubline
25LsMatchPresSubline
26LsExpandSubline
27LsGetSpecialEffectsSubline
28LsdnFinishRegular
29LsdnFinishRegularAddAdvancePen
30LsdnFinishDelete
31LsdnFinishByPen
32LsdnFinishBySubline
33LsdnFinishDeleteAll
34LsdnFinishByOneChar
35LsdnQueryObjDimRange
36LsdnResetObjDim
37LsdnQueryPenNode
38LsdnResetPenNode
39LsdnSetRigidDup
40LsdnGetDup
41LsdnSetAbsBaseLine
42LsdnResolvePrevTab
43LsdnGetCurTabInfo
44LsdnSkipCurTab
45LsdnDistribute
46LsdnSubmitSublines
47LsDisplayLine
48LsDisplaySubline
49LsQueryLineCpPpoint
50LsQueryLinePointPcp
51LsQueryLineDup
52LsQueryFLineEmpty
53LsQueryPointPcpSubline
54LsQueryCpPpointSubline
55LsSetDoc
56LsSetModWidthPairs
57LsSetCompression
58LsSetExpansion
59LsSetBreaking
60LssbGetObjDimSubline
61LssbGetDupSubline
62LssbFDonePresSubline
63LssbGetPlsrunsFromSubline
64LssbGetNumberDnodesInSubline
65LssbGetVisibleDcpInSubline
66LsPointXYFromPointUV
67LsPointUV2FromPointUV1
68LsGetWarichuLsimethods
69LsGetRubyLsimethods
70LsGetTatenakayokoLsimethods
71LsSqueezeSubline
72LsCompressSubline
73LsGetHihLsimethods
74LsQueryTextCellDetails
75LsFetchAppendToCurrentSublineResume
76LsdnGetFormatDepth
77LssbFDoneDisplay
78LsGetReverseLsimethods
79LsEnumLine
80LsGetMinDurBreaks
81LsGetLineDur
82LsEnumSubline
83LsdnModifyParaEnding
84LssbGetDurTrailInSubline
85LssbGetDurTrailWithPensInSubline
86LssbFIsSublineEmpty
87LsLwMultDivR
lib/libc/mingw/lib-common/mspatcha.def created+23
......@@ -0,0 +1,23 @@
1;
2; Definition file of mspatcha.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mspatcha.dll"
7EXPORTS
8ApplyPatchToFileA
9ApplyPatchToFileByBuffers
10ApplyPatchToFileByHandles
11ApplyPatchToFileByHandlesEx
12ApplyPatchToFileExA
13ApplyPatchToFileExW
14ApplyPatchToFileW
15GetFilePatchSignatureA
16GetFilePatchSignatureByBuffer
17GetFilePatchSignatureByHandle
18GetFilePatchSignatureW
19NormalizeFileForPatchSignature
20TestApplyPatchToFileA
21TestApplyPatchToFileByBuffers
22TestApplyPatchToFileByHandles
23TestApplyPatchToFileW
lib/libc/mingw/lib-common/msrating.def created+39
......@@ -0,0 +1,39 @@
1;
2; Definition file of MSRATING.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSRATING.dll"
7EXPORTS
8ChangeSupervisorPassword
9ClickedOnPRF
10ClickedOnRAT
11RatingAccessDeniedDialog
12RatingAccessDeniedDialog2
13RatingAccessDeniedDialog2W
14RatingAccessDeniedDialogW
15RatingAddPropertyPages
16RatingAddToApprovedSites
17RatingCheckUserAccess
18RatingCheckUserAccessW
19RatingClickedOnPRFInternal
20RatingClickedOnRATInternal
21RatingCustomAddRatingHelper
22RatingCustomAddRatingSystem
23RatingCustomCrackData
24RatingCustomDeleteCrackedData
25RatingCustomInit
26RatingCustomRemoveRatingHelper
27RatingCustomSetDefaultBureau
28RatingCustomSetUserOptions
29RatingEnable
30RatingEnableW
31RatingEnabledQuery
32RatingFreeDetails
33RatingInit
34RatingObtainCancel
35RatingObtainQuery
36RatingObtainQueryW
37RatingSetupUI
38RatingSetupUIW
39VerifySupervisorPassword
lib/libc/mingw/lib-common/mssign32.def created+40
......@@ -0,0 +1,40 @@
1;
2; Definition file of MSSIGN32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSSIGN32.dll"
7EXPORTS
8FreeCryptProvFromCert
9FreeCryptProvFromCertEx
10GetCryptProvFromCert
11GetCryptProvFromCertEx
12PvkFreeCryptProv
13PvkGetCryptProv
14PvkPrivateKeyAcquireContext
15PvkPrivateKeyAcquireContextA
16PvkPrivateKeyAcquireContextFromMemory
17PvkPrivateKeyAcquireContextFromMemoryA
18PvkPrivateKeyLoad
19PvkPrivateKeyLoadA
20PvkPrivateKeyLoadFromMemory
21PvkPrivateKeyLoadFromMemoryA
22PvkPrivateKeyReleaseContext
23PvkPrivateKeyReleaseContextA
24PvkPrivateKeySave
25PvkPrivateKeySaveA
26PvkPrivateKeySaveToMemory
27PvkPrivateKeySaveToMemoryA
28SignError
29SignerAddTimeStampResponse
30SignerAddTimeStampResponseEx
31SignerCreateTimeStampRequest
32SignerFreeSignerContext
33SignerSign
34SignerSignEx
35SignerSignEx2
36SignerTimeStamp
37SignerTimeStampEx
38SignerTimeStampEx2
39SignerTimeStampEx3
40SpcGetCertFromKey
lib/libc/mingw/lib-common/mssip32.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file MSSIP32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSSIP32.dll
8EXPORTS
9CryptSIPGetInfo
10CryptSIPGetRegWorkingFlags
11CryptSIPCreateIndirectData
12CryptSIPGetSignedDataMsg
13CryptSIPPutSignedDataMsg
14CryptSIPRemoveSignedDataMsg
15CryptSIPVerifyIndirectData
16DllRegisterServer
17DllUnregisterServer
lib/libc/mingw/lib-common/msv1_0.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of msv1_0.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msv1_0.dll"
7EXPORTS
8SpInitialize
9MsvIsLocalhostAliases
10SpLsaModeInitialize
11SpUserModeInitialize
12LsaApCallPackage
13LsaApCallPackagePassthrough
14LsaApCallPackageUntrusted
15LsaApInitializePackage
16LsaApLogonTerminated
17LsaApLogonUserEx2
18Msv1_0ExportSubAuthenticationRoutine
19Msv1_0SubAuthenticationPresent
20MsvGetLogonAttemptCount
21MsvSamLogoff
22MsvSamValidate
23MsvValidateTarget
24SpInstanceInit
lib/libc/mingw/lib-common/msvcrt.def.in+19-4
......@@ -350,6 +350,8 @@ __wgetmainargs
350350F_X86_ANY(__winitenv DATA)
351351F_I386(_abnormal_termination)
352352F_NON_I386(_abs64)
353F_NON_I386(llabs == _abs64)
354F_NON_I386(imaxabs == _abs64)
353355_access
354356; _access_s Replaced by emu
355357_acmdln DATA
......@@ -387,7 +389,9 @@ _atodbl_l
387389_atof_l
388390_atoflt_l
389391_atoi64
392atoll == _atoi64
390393_atoi64_l
394_atoll_l == _atoi64_l
391395_atoi_l
392396_atol_l
393397_atoldbl
......@@ -459,7 +463,7 @@ _cwscanf_l
459463_cwscanf_s
460464_cwscanf_s_l
461465F_X86_ANY(_dstbias DATA)
462F_ARM_ANY(_daylight DATA)
466_daylight DATA
463467_difftime32 F_I386(== difftime)
464468_difftime64
465469_dup
......@@ -560,7 +564,7 @@ _fwscanf_s_l
560564_gcvt
561565_gcvt_s
562566F_ARM_ANY(_get_current_locale)
563F_ARM_ANY(_get_doserrno)
567_get_doserrno
564568F_ARM_ANY(_get_environ)
565569F_ARM_ANY(_get_errno)
566570F_ARM_ANY(_get_fileinfo)
......@@ -939,8 +943,8 @@ _scwprintf_p_l
939943_searchenv
940944_searchenv_s
941945F_I386(_seh_longjmp_unwind)
942F_ARM_ANY(_set_controlfp)
943F_ARM_ANY(_set_doserrno)
946_set_controlfp
947_set_doserrno
944948F_ARM_ANY(_set_errno)
945949_set_error_mode
946950F_ARM_ANY(_set_fileinfo)
......@@ -1034,10 +1038,18 @@ _strtime
10341038; _strtime_s replaced by emu
10351039_strtod_l
10361040_strtoi64
1041strtoll == _strtoi64
1042strtoimax == _strtoi64
10371043_strtoi64_l
1044_strtoll_l == _strtoi64_l
1045_strtoimax_l == _strtoi64_l
10381046_strtol_l
10391047_strtoui64
1048strtoull == _strtoui64
1049strtoumax == _strtoui64
10401050_strtoui64_l
1051_strtoull_l == _strtoui64_l
1052_strtoumax_l == _strtoui64_l
10411053_strtoul_l
10421054_strupr
10431055_strupr_l
......@@ -1061,12 +1073,14 @@ F_ARM_ANY(_tempnam_dbg)
10611073F_I386(_time32 == time)
10621074F_ARM_ANY(_time32)
10631075_time64
1076_timezone DATA
10641077_tolower
10651078_tolower_l
10661079_toupper
10671080_toupper_l
10681081_towlower_l
10691082_towupper_l
1083_tzname DATA
10701084_tzset
10711085_ui64toa
10721086_ui64toa_s
......@@ -1435,6 +1449,7 @@ F_NON_I386(log10f F_X86_ANY(DATA))
14351449F_ARM_ANY(log10l == log10)
14361450F_NON_I386(logf F_X86_ANY(DATA))
14371451F_ARM_ANY(logl == log)
1452longjmp
14381453malloc
14391454mblen
14401455F_ARM_ANY(mbrlen)
lib/libc/mingw/lib-common/msvfw32.def created+55
......@@ -0,0 +1,55 @@
1;
2; Exports of file MSVFW32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSVFW32.dll
8EXPORTS
9VideoForWindowsVersion
10DrawDibBegin
11DrawDibChangePalette
12DrawDibClose
13DrawDibDraw
14DrawDibEnd
15DrawDibGetBuffer
16DrawDibGetPalette
17DrawDibOpen
18DrawDibProfileDisplay
19DrawDibRealize
20DrawDibSetPalette
21DrawDibStart
22DrawDibStop
23DrawDibTime
24GetOpenFileNamePreview
25GetOpenFileNamePreviewA
26GetOpenFileNamePreviewW
27GetSaveFileNamePreviewA
28GetSaveFileNamePreviewW
29ICClose
30ICCompress
31ICCompressorChoose
32ICCompressorFree
33ICDecompress
34ICDraw
35ICDrawBegin
36ICGetDisplayFormat
37ICGetInfo
38ICImageCompress
39ICImageDecompress
40ICInfo
41ICInstall
42ICLocate
43ICMThunk32
44ICOpen
45ICOpenFunction
46ICRemove
47ICSendMessage
48ICSeqCompressFrame
49ICSeqCompressFrameEnd
50ICSeqCompressFrameStart
51MCIWndCreate
52MCIWndCreateA
53MCIWndCreateW
54MCIWndRegisterClass
55StretchDIB
lib/libc/mingw/lib-common/msyuv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MSYUV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSYUV.dll
8EXPORTS
9DriverProc
lib/libc/mingw/lib-common/mydocs.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file mydocs.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mydocs.dll
8EXPORTS
9PerUserInit
10DllCanUnloadNow
11DllGetClassObject
12DllInstall
13DllRegisterServer
14DllUnregisterServer
lib/libc/mingw/lib-common/ncobjapi.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file NCObjAPI.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NCObjAPI.DLL
8EXPORTS
9WmiCommitObject
10WmiAddObjectProp
11WmiCreateObject
12WmiCreateObjectWithFormat
13WmiCreateObjectWithProps
14WmiDestroyObject
15WmiEventSourceConnect
16WmiEventSourceDisconnect
17WmiIsObjectActive
18WmiSetAndCommitObject
lib/libc/mingw/lib-common/nddeapi.def created+36
......@@ -0,0 +1,36 @@
1;
2; Exports of file NDdeApi.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NDdeApi.dll
8EXPORTS
9NDdeShareAddA
10NDdeShareDelA
11NDdeShareEnumA
12NDdeShareGetInfoA
13NDdeShareSetInfoA
14NDdeGetErrorStringA
15NDdeIsValidShareNameA
16NDdeIsValidAppTopicListA
17NDdeSpecialCommandA
18NDdeGetShareSecurityA
19NDdeSetShareSecurityA
20NDdeGetTrustedShareA
21NDdeSetTrustedShareA
22NDdeTrustedShareEnumA
23NDdeShareAddW
24NDdeShareDelW
25NDdeShareEnumW
26NDdeShareGetInfoW
27NDdeShareSetInfoW
28NDdeGetErrorStringW
29NDdeIsValidShareNameW
30NDdeIsValidAppTopicListW
31NDdeSpecialCommandW
32NDdeGetShareSecurityW
33NDdeSetShareSecurityW
34NDdeGetTrustedShareW
35NDdeSetTrustedShareW
36NDdeTrustedShareEnumW
lib/libc/mingw/lib-common/ndis.def created+574
......@@ -0,0 +1,574 @@
1;
2; Definition file of NDIS.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "NDIS.SYS"
7EXPORTS
8EthFilterDprIndicateReceive
9EthFilterDprIndicateReceiveComplete
10NDIS_BUFFER_TO_SPAN_PAGES
11NdisAcquireRWLockRead
12NdisAcquireRWLockWrite
13NdisAcquireReadWriteLock
14NdisAcquireSpinLock
15NdisActiveGroupCount
16NdisAdjustBufferLength
17NdisAdjustNetBufferCurrentMdl
18NdisAdvanceNetBufferDataStart
19NdisAdvanceNetBufferListDataStart
20NdisAllocateBuffer
21NdisAllocateBufferPool
22NdisAllocateCloneNetBufferList
23NdisAllocateCloneOidRequest
24NdisAllocateFragmentNetBufferList
25NdisAllocateGenericObject
26NdisAllocateIoWorkItem
27NdisAllocateMdl
28NdisAllocateMemory
29NdisAllocateMemoryWithTag
30NdisAllocateMemoryWithTagPriority
31NdisAllocateNetBuffer
32NdisAllocateNetBufferAndNetBufferList
33NdisAllocateNetBufferList
34NdisAllocateNetBufferListContext
35NdisAllocateNetBufferListPool
36NdisAllocateNetBufferMdlAndData
37NdisAllocateNetBufferPool
38NdisAllocateOidRequest
39NdisAllocatePacket
40NdisAllocatePacketPool
41NdisAllocatePacketPoolEx
42NdisAllocateRWLock
43NdisAllocateReassembledNetBufferList
44NdisAllocateRefCount
45NdisAllocateSharedMemory
46NdisAllocateSpinLock
47NdisAllocateTimerObject
48NdisAnsiStringToUnicodeString
49NdisBufferLength
50NdisBufferVirtualAddress
51NdisBuildScatterGatherList
52NdisCancelDirectOidRequest
53NdisCancelOidRequest
54NdisCancelSendNetBufferLists
55NdisCancelSendPackets
56NdisCancelTimer
57NdisCancelTimerObject
58NdisClAddParty
59NdisClCloseAddressFamily
60NdisClCloseCall
61NdisClDeregisterSap
62NdisClDropParty
63NdisClGetProtocolVcContextFromTapiCallId
64NdisClIncomingCallComplete
65NdisClMakeCall
66NdisClModifyCallQoS
67NdisClNotifyCloseAddressFamilyComplete
68NdisClOpenAddressFamily
69NdisClOpenAddressFamilyEx
70NdisClRegisterSap
71NdisCloseAdapter
72NdisCloseAdapterEx
73NdisCloseConfiguration
74NdisCloseFile
75NdisCloseNDKAdapter
76NdisCmActivateVc
77NdisCmAddPartyComplete
78NdisCmCloseAddressFamilyComplete
79NdisCmCloseCallComplete
80NdisCmDeactivateVc
81NdisCmDeregisterSapComplete
82NdisCmDispatchCallConnected
83NdisCmDispatchIncomingCall
84NdisCmDispatchIncomingCallQoSChange
85NdisCmDispatchIncomingCloseCall
86NdisCmDispatchIncomingDropParty
87NdisCmDropPartyComplete
88NdisCmMakeCallComplete
89NdisCmModifyCallQoSComplete
90NdisCmNotifyCloseAddressFamily
91NdisCmOpenAddressFamilyComplete
92NdisCmRegisterAddressFamily
93NdisCmRegisterAddressFamilyEx
94NdisCmRegisterSapComplete
95NdisCoAssignInstanceName
96NdisCoCreateVc
97NdisCoDeleteVc
98NdisCoGetTapiCallId
99NdisCoOidRequest
100NdisCoOidRequestComplete
101NdisCoRequest
102NdisCoRequestComplete
103NdisCoSendNetBufferLists
104NdisCoSendPackets
105NdisCompareAnsiString
106NdisCompareUnicodeString
107NdisCompleteBindAdapter
108NdisCompleteBindAdapterEx
109NdisCompleteDmaTransfer
110NdisCompleteNetPnPEvent
111NdisCompletePnPEvent
112NdisCompleteUnbindAdapter
113NdisCompleteUnbindAdapterEx
114NdisConvertNdisStatusToNtStatus
115NdisConvertNtStatusToNdisStatus
116NdisCopyBuffer
117NdisCopyFromNetBufferToNetBuffer
118NdisCopyFromPacketToPacket
119NdisCopyFromPacketToPacketSafe
120NdisCopyReceiveNetBufferListInfo
121NdisCopySendNetBufferListInfo
122NdisCurrentGroupAndProcessor
123NdisCurrentProcessorIndex
124NdisDereferenceWithTag
125NdisDeregisterDeviceEx
126NdisDeregisterProtocol
127NdisDeregisterProtocolDriver
128NdisDeregisterTdiCallBack
129NdisDirectOidRequest
130NdisDllInitialize
131NdisDprAcquireReadWriteLock
132NdisDprAcquireSpinLock
133NdisDprAllocatePacket
134NdisDprAllocatePacketNonInterlocked
135NdisDprFreePacket
136NdisDprFreePacketNonInterlocked
137NdisDprReleaseReadWriteLock
138NdisDprReleaseSpinLock
139NdisEnumerateFilterModules
140NdisEqualString
141NdisFCancelDirectOidRequest
142NdisFCancelOidRequest
143NdisFCancelSendNetBufferLists
144NdisFDeregisterFilterDriver
145NdisFDevicePnPEventNotify
146NdisFDirectOidRequest
147NdisFDirectOidRequestComplete
148NdisFGetOptionalSwitchHandlers
149NdisFIndicateReceiveNetBufferLists
150NdisFIndicateStatus
151NdisFNetPnPEvent
152NdisFOidRequest
153NdisFOidRequestComplete
154NdisFPauseComplete
155NdisFRegisterFilterDriver
156NdisFRestartComplete
157NdisFRestartFilter
158NdisFRetryAttach
159NdisFReturnNetBufferLists
160NdisFSendNetBufferLists
161NdisFSendNetBufferListsComplete
162NdisFSetAttributes
163NdisFSynchronousOidRequest
164NdisFreeBuffer
165NdisFreeBufferPool
166NdisFreeCloneNetBufferList
167NdisFreeCloneOidRequest
168NdisFreeFragmentNetBufferList
169NdisFreeGenericObject
170NdisFreeIoWorkItem
171NdisFreeMdl
172NdisFreeMemory
173NdisFreeMemoryWithTag
174NdisFreeMemoryWithTagPriority
175NdisFreeNetBuffer
176NdisFreeNetBufferList
177NdisFreeNetBufferListContext
178NdisFreeNetBufferListPool
179NdisFreeNetBufferPool
180NdisFreeOidRequest
181NdisFreePacket
182NdisFreePacketPool
183NdisFreeRWLock
184NdisFreeReassembledNetBufferList
185NdisFreeRefCount
186NdisFreeScatterGatherList
187NdisFreeSharedMemory
188NdisFreeSpinLock
189NdisFreeTimerObject
190NdisGeneratePartialCancelId
191NdisGetAndReferenceCompartmentJobObject
192NdisGetBufferPhysicalArraySize
193NdisGetCurrentProcessorCounts
194NdisGetCurrentProcessorCpuUsage
195NdisGetCurrentSystemTime
196NdisGetDataBuffer
197NdisGetDeviceReservedExtension
198NdisGetDriverHandle
199NdisGetFirstBufferFromPacket
200NdisGetFirstBufferFromPacketSafe
201NdisGetHypervisorInfo
202NdisGetJobObjectCompartmentId
203NdisGetNetBufferListProtocolId
204NdisGetPacketCancelId
205NdisGetPacketFromNetBufferList
206NdisGetPoolFromNetBuffer
207NdisGetPoolFromNetBufferList
208NdisGetPoolFromPacket
209NdisGetProcessObjectCompartmentId
210NdisGetProcessorInformation
211NdisGetProcessorInformationEx
212NdisGetReceivedPacket
213NdisGetRefCount
214NdisGetRoutineAddress
215NdisGetRssProcessorInformation
216NdisGetSessionCompartmentId
217NdisGetSessionToCompartmentMappingEpochAndZero
218NdisGetSharedDataAlignment
219NdisGetSystemUpTime
220NdisGetSystemUpTimeEx
221NdisGetThreadObjectCompartmentId
222NdisGetThreadObjectCompartmentScope
223NdisGetVersion
224NdisGroupActiveProcessorCount
225NdisGroupActiveProcessorMask
226NdisGroupMaxProcessorCount
227NdisIMAssociateMiniport
228NdisIMCancelInitializeDeviceInstance
229NdisIMCopySendCompletePerPacketInfo
230NdisIMCopySendPerPacketInfo
231NdisIMDeInitializeDeviceInstance
232NdisIMDeregisterLayeredMiniport
233NdisIMGetBindingContext
234NdisIMGetCurrentPacketStack
235NdisIMGetDeviceContext
236NdisIMInitializeDeviceInstance
237NdisIMInitializeDeviceInstanceEx
238NdisIMNotifyPnPEvent
239NdisIMQueueMiniportCallback
240NdisIMRegisterLayeredMiniport
241NdisIMRevertBack
242NdisIMSwitchToMiniport
243NdisIMVBusDeviceAdd
244NdisIMVBusDeviceRemove
245NdisIfAddIfStackEntry
246NdisIfAllocateNetLuidIndex
247NdisIfAllocateNetLuidIndexEx
248NdisIfDeleteIfStackEntry
249NdisIfDeregisterInterface
250NdisIfDeregisterProvider
251NdisIfFreeNetLuidIndex
252NdisIfGetInterfaceIndexFromNetLuid
253NdisIfGetNetLuidFromInterfaceIndex
254NdisIfQueryBindingIfIndex
255NdisIfRegisterInterface
256NdisIfRegisterProvider
257NdisImmediateReadPciSlotInformation
258NdisImmediateReadPortUchar
259NdisImmediateReadPortUlong
260NdisImmediateReadPortUshort
261NdisImmediateReadSharedMemory
262NdisImmediateWritePciSlotInformation
263NdisImmediateWritePortUchar
264NdisImmediateWritePortUlong
265NdisImmediateWritePortUshort
266NdisImmediateWriteSharedMemory
267NdisInitAnsiString
268NdisInitUnicodeString
269NdisInitializeEvent
270NdisInitializeReadWriteLock
271NdisInitializeString
272NdisInitializeTimer
273NdisInitializeWrapper
274NdisInitiateOffload
275NdisInterlockedAddLargeInterger
276NdisInterlockedAddUlong
277NdisInterlockedDecrement
278NdisInterlockedIncrement
279NdisInterlockedInsertHeadList
280NdisInterlockedInsertTailList
281NdisInterlockedPopEntryList
282NdisInterlockedPushEntryList
283NdisInterlockedRemoveHeadList
284NdisInvalidateOffload
285NdisIsStatusIndicationCloneable
286NdisLWMDeregisterMiniportDriver
287NdisLWMInitializeNetworkInterface
288NdisLWMRegisterMiniportDriver
289NdisLWMStartNetworkInterface
290NdisLWMUninitializeNetworkInterface
291NdisMAllocateMapRegisters
292NdisMAllocateNetBufferSGList
293NdisMAllocatePort
294NdisMAllocateSharedMemory
295NdisMAllocateSharedMemoryAsync
296NdisMAllocateSharedMemoryAsyncEx
297NdisMCancelTimer
298NdisMCloseLog
299NdisMCmActivateVc
300NdisMCmCreateVc
301NdisMCmDeactivateVc
302NdisMCmDeleteVc
303NdisMCmOidRequest
304NdisMCmRegisterAddressFamily
305NdisMCmRegisterAddressFamilyEx
306NdisMCmRequest
307NdisMCoActivateVcComplete
308NdisMCoDeactivateVcComplete
309NdisMCoIndicateReceiveNetBufferLists
310NdisMCoIndicateReceivePacket
311NdisMCoIndicateStatus
312NdisMCoIndicateStatusEx
313NdisMCoOidRequestComplete
314NdisMCoReceiveComplete
315NdisMCoRequestComplete
316NdisMCoSendComplete
317NdisMCoSendNetBufferListsComplete
318NdisMCompleteBufferPhysicalMapping
319NdisMConfigMSIXTableEntry
320NdisMCreateLog
321NdisMDeregisterAdapterShutdownHandler
322NdisMDeregisterDevice
323NdisMDeregisterDmaChannel
324NdisMDeregisterInterrupt
325NdisMDeregisterInterruptEx
326NdisMDeregisterIoPortRange
327NdisMDeregisterMiniportDriver
328NdisMDeregisterScatterGatherDma
329NdisMDeregisterWdiMiniportDriver
330NdisMDirectOidRequestComplete
331NdisMEnableVirtualization
332NdisMFlushLog
333NdisMFreeMapRegisters
334NdisMFreeNetBufferSGList
335NdisMFreePort
336NdisMFreeSharedMemory
337NdisMGetBusData
338NdisMGetDeviceProperty
339NdisMGetDmaAlignment
340NdisMGetMiniportInitAttributes
341NdisMGetOffloadHandlers
342NdisMGetVirtualDeviceLocation
343NdisMGetVirtualFunctionBusData
344NdisMGetVirtualFunctionLocation
345NdisMIdleNotificationComplete
346NdisMIdleNotificationCompleteEx
347NdisMIdleNotificationConfirm
348NdisMIndicateReceiveNetBufferLists
349NdisMIndicateStatus
350NdisMIndicateStatusComplete
351NdisMIndicateStatusEx
352NdisMInitializeScatterGatherDma
353NdisMInitializeTimer
354NdisMInitiateOffloadComplete
355NdisMInvalidateConfigBlock
356NdisMInvalidateOffloadComplete
357NdisMMapIoSpace
358NdisMNetPnPEvent
359NdisMOffloadEventIndicate
360NdisMOidRequestComplete
361NdisMPauseComplete
362NdisMPciAssignResources
363NdisMPromoteMiniport
364NdisMQueryAdapterInstanceName
365NdisMQueryAdapterResources
366NdisMQueryInformationComplete
367NdisMQueryOffloadStateComplete
368NdisMQueryProbedBars
369NdisMQueueDpc
370NdisMQueueDpcEx
371NdisMReadConfigBlock
372NdisMReadDmaCounter
373NdisMReenumerateFailedAdapter
374NdisMRegisterAdapterShutdownHandler
375NdisMRegisterDevice
376NdisMRegisterDmaChannel
377NdisMRegisterInterrupt
378NdisMRegisterInterruptEx
379NdisMRegisterIoPortRange
380NdisMRegisterMiniport
381NdisMRegisterMiniportDriver
382NdisMRegisterScatterGatherDma
383NdisMRegisterUnloadHandler
384NdisMRegisterWdiMiniportDriver
385NdisMRemoveMiniport
386NdisMRequestDpc
387NdisMResetComplete
388NdisMResetMiniport
389NdisMRestartComplete
390NdisMSendComplete
391NdisMSendNetBufferListsComplete
392NdisMSendResourcesAvailable
393NdisMSetAttributes
394NdisMSetAttributesEx
395NdisMSetBusData
396NdisMSetInformationComplete
397NdisMSetInterfaceCompartment
398NdisMSetMiniportAttributes
399NdisMSetMiniportSecondary
400NdisMSetPeriodicTimer
401NdisMSetTimer
402NdisMSetVirtualFunctionBusData
403NdisMSleep
404NdisMStartBufferPhysicalMapping
405NdisMSynchronizeWithInterrupt
406NdisMSynchronizeWithInterruptEx
407NdisMTerminateOffloadComplete
408NdisMTransferDataComplete
409NdisMTriggerPDDrainNotification
410NdisMUnmapIoSpace
411NdisMUpdateOffloadComplete
412NdisMWanIndicateReceive
413NdisMWanIndicateReceiveComplete
414NdisMWanSendComplete
415NdisMWriteConfigBlock
416NdisMWriteLogData
417NdisMapFile
418NdisMatchPdoWithPacket
419NdisMaxGroupCount
420NdisNblTrackerDeregisterComponent
421NdisNblTrackerQueryNblCurrentOwner
422NdisNblTrackerRecordEvent
423NdisNblTrackerRegisterComponent
424NdisNblTrackerTransferOwnership
425NdisOffloadTcpDisconnect
426NdisOffloadTcpForward
427NdisOffloadTcpReceive
428NdisOffloadTcpReceiveReturn
429NdisOffloadTcpSend
430NdisOidRequest
431NdisOpenAdapter
432NdisOpenAdapterEx
433NdisOpenConfiguration
434NdisOpenConfigurationEx
435NdisOpenConfigurationKeyByIndex
436NdisOpenConfigurationKeyByName
437NdisOpenFile
438NdisOpenNDKAdapter
439NdisOpenProtocolConfiguration
440NdisOverrideBusNumber
441NdisPDStartup
442NdisPacketPoolUsage
443NdisPacketSize
444NdisProcessorIndexToNumber
445NdisProcessorNumberToIndex
446NdisQueryAdapterInstanceName
447NdisQueryBindInstanceName
448NdisQueryBuffer
449NdisQueryBufferOffset
450NdisQueryBufferSafe
451NdisQueryDiagnosticSetting
452NdisQueryMapRegisterCount
453NdisQueryNetBufferPhysicalCount
454NdisQueryOffloadState
455NdisQueryPendingIOCount
456NdisQueueIoWorkItem
457NdisReEnumerateProtocolBindings
458NdisReadConfiguration
459NdisReadEisaSlotInformation
460NdisReadEisaSlotInformationEx
461NdisReadMcaPosInformation
462NdisReadNetworkAddress
463NdisReadPciSlotInformation
464NdisReadPcmciaAttributeMemory
465NdisReferenceWithTag
466NdisRegisterDeviceEx
467NdisRegisterProtocol
468NdisRegisterProtocolDriver
469NdisRegisterTdiCallBack
470NdisReleaseNicActive
471NdisReleaseRWLock
472NdisReleaseReadWriteLock
473NdisReleaseSpinLock
474NdisRequest
475NdisRequestEx
476NdisReset
477NdisResetEvent
478NdisRetreatNetBufferDataStart
479NdisRetreatNetBufferListDataStart
480NdisReturnNetBufferLists
481NdisReturnPackets
482NdisScheduleWorkItem
483NdisSend
484NdisSendNetBufferLists
485NdisSendPackets
486NdisSetAoAcOptions
487NdisSetCoalescableTimerObject
488NdisSetEvent
489NdisSetOptionalHandlers
490NdisSetPacketCancelId
491NdisSetPacketPoolProtocolId
492NdisSetPacketStatus
493NdisSetPeriodicTimer
494NdisSetProtocolFilter
495NdisSetSessionCompartmentId
496NdisSetThreadObjectCompartmentId
497NdisSetThreadObjectCompartmentScope
498NdisSetTimer
499NdisSetTimerEx
500NdisSetTimerObject
501NdisSetupDmaTransfer
502NdisSynchronousOidRequest
503NdisSystemActiveProcessorCount
504NdisSystemProcessorCount
505NdisTerminateOffload
506NdisTerminateWrapper
507NdisTestRWLockHeldByCurrentProcessorRead
508NdisTestRWLockHeldByCurrentProcessorWrite
509NdisTransferData
510NdisTryAcquireNicActive
511NdisTryAcquireRWLockRead
512NdisTryAcquireRWLockWrite
513NdisTryPromoteRWLockFromReadToWrite
514NdisUnbindAdapter
515NdisUnchainBufferAtBack
516NdisUnchainBufferAtFront
517NdisUnicodeStringToAnsiString
518NdisUnmapFile
519NdisUpcaseUnicodeString
520NdisUpdateOffload
521NdisUpdateSharedMemory
522NdisWaitEvent
523NdisWdfAsyncPowerReferenceCompleteNotification
524NdisWdfChangeSingleInstance
525NdisWdfCloseIrpHandler
526NdisWdfCreateIrpHandler
527NdisWdfDeregisterCx
528NdisWdfDeviceControlIrpHandler
529NdisWdfDeviceInternalControlIrpHandler
530NdisWdfExecuteMethod
531NdisWdfGenerateFdoNameIndex
532NdisWdfGetAdapterContextFromAdapterHandle
533NdisWdfGetGuidToOidMap
534NdisWdfMiniportDataPathPause
535NdisWdfMiniportDataPathStart
536NdisWdfMiniportDereference
537NdisWdfMiniportSetPower
538NdisWdfMiniportStarted
539NdisWdfMiniportTryReference
540NdisWdfPnPAddDevice
541NdisWdfPnpPowerEventHandler
542NdisWdfQueryAllData
543NdisWdfQuerySingleInstance
544NdisWdfReadConfiguration
545NdisWdfRegisterCx
546NdisWdfRegisterMiniportDriver
547NdisWriteConfiguration
548NdisWriteErrorLogEntry
549NdisWriteEventLogEntry
550NdisWritePciSlotInformation
551NdisWritePcmciaAttributeMemory
552NetDmaAllocateChannel
553NetDmaChainCopyPhysicalToVirtual
554NetDmaChainCopyVirtualToVirtual
555NetDmaDeregisterClient
556NetDmaDeregisterProvider
557NetDmaEnumerateDmaProviders
558NetDmaFlushPendingDescriptors
559NetDmaFreeChannel
560NetDmaGetMaxPendingDescriptors
561NetDmaGetVersion
562NetDmaInterruptDpc
563NetDmaIsDmaCopyComplete
564NetDmaIsr
565NetDmaNullTransfer
566NetDmaPnPEventNotify
567NetDmaPrefetchNextDescriptor
568NetDmaProviderStart
569NetDmaProviderStop
570NetDmaRegisterClient
571NetDmaRegisterProvider
572NetDmaSetMaxPendingDescriptors
573TrFilterDprIndicateReceive
574TrFilterDprIndicateReceiveComplete
lib/libc/mingw/lib-common/netapi32.def-9
......@@ -70,10 +70,6 @@ I_NetDfsDeleteExitPoint
7070I_NetDfsDeleteLocalPartition
7171I_NetDfsFixLocalVolume
7272I_NetDfsGetFtServers
73I_NetDatabaseDeltas
74I_NetDatabaseRedo
75I_NetDatabaseSync
76I_NetDatabaseSync2
7773I_NetDfsGetVersion
7874I_NetDfsIsThisADomainName
7975I_NetDfsManagerReportSiteInfo
......@@ -100,11 +96,6 @@ I_NetNameValidate
10096I_NetPathCanonicalize
10197I_NetPathCompare
10298I_NetPathType
103I_NetLogonSamLogonEx
104I_NetLogonSamLogonWithFlags
105I_NetLogonSendToSam
106I_NetLogonUasLogoff
107I_NetLogonUasLogon
10899I_NetServerAuthenticate
109100I_NetServerAuthenticate2
110101I_NetServerAuthenticate3
lib/libc/mingw/lib-common/netid.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file NETID.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NETID.DLL
8EXPORTS
9CreateNetIDPropertyPage
10ShowDcNotFoundErrorDialog
lib/libc/mingw/lib-common/netio.def created+531
......@@ -0,0 +1,531 @@
1LIBRARY "NETIO.SYS"
2EXPORTS
3AgileVPNDispatchTableInit
4AgileVPNFindCompartmentIdFromTunnelId
5AgileVPNFindTunnelInfoFromInterfaceIndex
6CancelMibChangeNotify2
7CloseCompartment
8ConvertCompartmentGuidToId
9ConvertCompartmentIdToGuid
10ConvertInterfaceAliasToLuid
11ConvertInterfaceGuidToLuid
12ConvertInterfaceIndexToLuid
13ConvertInterfaceLuidToAlias
14ConvertInterfaceLuidToGuid
15ConvertInterfaceLuidToIndex
16ConvertInterfaceLuidToNameA
17ConvertInterfaceLuidToNameW
18ConvertInterfaceNameToLuidA
19ConvertInterfaceNameToLuidW
20ConvertInterfacePhysicalAddressToLuid
21ConvertIpv4MaskToLength
22ConvertLengthToIpv4Mask
23ConvertStringToInterfacePhysicalAddress
24CreateAnycastIpAddressEntry
25CreateCompartment
26CreateIpForwardEntry2
27CreateIpNetEntry2
28CreateSortedAddressPairs
29CreateUnicastIpAddressEntry
30DeleteAnycastIpAddressEntry
31DeleteCompartment
32DeleteIpForwardEntry2
33DeleteIpNetEntry2
34DeleteUnicastIpAddressEntry
35FeAcquireClassifyHandle
36FeAcquireWritableLayerDataPointer
37FeApplyModifiedLayerData
38FeCompleteClassify
39FeCopyIncomingValues
40FeGetWfpGlobalPtr
41FePendClassify
42FeReleaseCalloutContextList
43FeReleaseClassifyHandle
44FlushIpNetTable2
45FlushIpPathTable
46FreeDnsSettings
47FreeInterfaceDnsSettings
48FreeMibTable
49FsbAllocate
50FsbAllocateAtDpcLevel
51FsbCreatePool
52FsbDestroyPool
53FsbFree
54FwpmEventProviderCreate0
55FwpmEventProviderDestroy0
56FwpmEventProviderFireNetEvent0
57FwpmEventProviderIsNetEventTypeEnabled0
58FwppAdvanceStreamDataPastOffset
59FwppCopyStreamDataToBuffer
60FwppLogVpnEvent
61FwppStreamContinue
62FwppStreamDeleteDpcQueue
63FwppStreamInject
64FwppTruncateStreamDataAfterOffset
65GetAnycastIpAddressEntry
66GetAnycastIpAddressTable
67GetBestInterface
68GetBestInterfaceEx
69GetBestRoute2
70GetDefaultCompartmentId
71GetDnsSettings
72GetIfEntry2
73GetIfEntry2Ex
74GetIfStackTable
75GetIfTable2
76GetIfTable2Ex
77GetInterfaceCompartmentId
78GetInterfaceDnsSettings
79GetInvertedIfStackTable
80GetIpForwardEntry2
81GetIpForwardTable2
82GetIpInterfaceEntry
83GetIpInterfaceTable
84GetIpNetEntry2
85GetIpNetTable2
86GetIpNetworkConnectionBandwidthEstimates
87GetIpPathEntry
88GetIpPathTable
89GetMulticastIpAddressEntry
90GetMulticastIpAddressTable
91GetTeredoPort
92GetUnicastIpAddressEntry
93GetUnicastIpAddressTable
94HfAllocateHandle32
95HfCreateFactory
96HfDestroyFactory
97HfFreeHandle32
98HfGetPointerFromHandle32
99HfResumeHandle32
100HfSuspendHandle32
101IPsecGwDispatchTableInit
102IPsecGwGetTunnelInfoFromIPInformation
103IPsecGwIsUdpEspPacket
104IPsecGwProcessSecureNbl
105IPsecGwSetCallbackDispatch
106IPsecGwTransformClearTextPacket
107InitializeCompartmentEntry
108InitializeIpForwardEntry
109InitializeIpInterfaceEntry
110InitializeUnicastIpAddressEntry
111InternalCleanupPersistentStore
112InternalCreateAnycastIpAddressEntry
113InternalCreateIpForwardEntry2
114InternalCreateIpNetEntry2
115InternalCreateUnicastIpAddressEntry
116InternalDeleteAnycastIpAddressEntry
117InternalDeleteIpForwardEntry2
118InternalDeleteIpNetEntry2
119InternalDeleteUnicastIpAddressEntry
120InternalFindInterfaceByAddress
121InternalGetAnycastIpAddressEntry
122InternalGetAnycastIpAddressTable
123InternalGetForwardIpTable2
124InternalGetIfEntry2
125InternalGetIfTable2
126InternalGetIpForwardEntry2
127InternalGetIpInterfaceEntry
128InternalGetIpInterfaceTable
129InternalGetIpNetEntry2
130InternalGetIpNetTable2
131InternalGetMulticastIpAddressEntry
132InternalGetMulticastIpAddressTable
133InternalGetUnicastIpAddressEntry
134InternalGetUnicastIpAddressTable
135InternalSetIpForwardEntry2
136InternalSetIpInterfaceEntry
137InternalSetIpNetEntry2
138InternalSetTeredoPort
139InternalSetUnicastIpAddressEntry
140IoctlKfdAbortTransaction
141IoctlKfdAddCache
142IoctlKfdAddIndex
143IoctlKfdBatchUpdate
144IoctlKfdBeginEnumFilters
145IoctlKfdCommitTransaction
146IoctlKfdDeleteCache
147IoctlKfdDeleteIndex
148IoctlKfdEndEnumFilters
149IoctlKfdMoveFilter
150IoctlKfdQueryEnumFilters
151IoctlKfdQueryLayerStatistics
152IoctlKfdResetState
153IoctlKfdSetBfeEngineSd
154KfdAddCalloutEntry
155KfdAleAcquireEndpointContextFromFlow
156KfdAleAcquireFlowHandleForFlow
157KfdAleGetTableFromHandle
158KfdAleInitializeFlowHandles
159KfdAleInitializeFlowTable
160KfdAleNotifyFlowDeletion
161KfdAleReleaseFlowHandleForFlow
162KfdAleRemoveFlowContextTable
163KfdAleUninitializeFlowHandles
164KfdAleUpdateEndpointContextStatus
165KfdAuditEvent
166KfdBfeEngineAccessCheck
167KfdCheckAcceptBypass
168KfdCheckAndCacheAcceptBypass
169KfdCheckAndCacheConnectBypass
170KfdCheckClassifyNeededAndUpdateEpoch
171KfdCheckConnectBypass
172KfdCheckOffloadFastLayers
173KfdClassify
174KfdClassify2
175KfdDeRefCallout
176KfdDeleteCalloutEntry
177KfdDerefFilterContext
178KfdDeregisterLayerChangeCallback2
179KfdDeregisterLayerEventNotify
180KfdDiagnoseEvent
181KfdDirectClassify
182KfdEnumLayer
183KfdFindFilterById
184KfdFreeEnumHandle
185KfdGetLayerActionFromEnumTemplate
186KfdGetLayerCacheEpoch
187KfdGetLayerPreclassifyEpoch
188KfdGetNextFilter
189KfdGetOffloadEpoch
190KfdGetRefCallout
191KfdIsActiveCallout
192KfdIsDiagnoseEventEnabled
193KfdIsLayerEmpty
194KfdIsLsoOffloadPossibleV4
195KfdIsLsoOffloadPossibleV6
196KfdIsTfoIncompatibleFilterPresent
197KfdIsV4InTransportFastEmpty
198KfdIsV4OutTransportFastEmpty
199KfdIsV6InTransportFastEmpty
200KfdIsV6OutTransportFastEmpty
201KfdNotifyFlowDeletion
202KfdPreClassify
203KfdQueryLayerStats
204KfdQueueLruCleanupWorkItem
205KfdRegisterLayerChangeCallback2
206KfdRegisterLayerEventNotify
207KfdRegisterLayerEventNotifyEx
208KfdRegisterRscIncompatCalloutNotify
209KfdRegisterUsoIncompatCalloutNotify
210KfdReleaseCachedFilters
211KfdReleaseFilterContext
212KfdReleaseTerminatingFilters
213KfdSetWfpPerProcContextPtr
214KfdToggleFilterActivation
215MatchCondition
216MdpAllocate
217MdpAllocateAtDpcLevel
218MdpCreatePool
219MdpDestroyPool
220MdpFree
221NetioAdvanceNetBufferList
222NetioAdvanceToLocationInNetBuffer
223NetioAllocateAndInitializeStackBlock
224NetioAllocateAndReferenceCloneNetBufferList
225NetioAllocateAndReferenceCloneNetBufferListEx
226NetioAllocateAndReferenceCopyNetBufferListEx
227NetioAllocateAndReferenceFragmentNetBufferList
228NetioAllocateAndReferenceNetBufferAndNetBufferList
229NetioAllocateAndReferenceNetBufferList
230NetioAllocateAndReferenceNetBufferListNetBufferMdlAndData
231NetioAllocateAndReferenceReassembledNetBufferList
232NetioAllocateAndReferenceVacantNetBufferList
233NetioAllocateAndReferenceVacantNetBufferListEx
234NetioAllocateMdl
235NetioAllocateNetBuffer
236NetioAllocateNetBufferListNetBufferMdlAndDataPool
237NetioAllocateNetBufferMdlAndData
238NetioAllocateNetBufferMdlAndDataPool
239NetioAllocateOpaquePerProcessorContext
240NetioAssociateQoSFlowWithNbl
241NetioCleanupNetBufferListInformation
242NetioCloseKey
243NetioCompleteCloneNetBufferListChain
244NetioCompleteCopyNetBufferListChain
245NetioCompleteNetBufferAndNetBufferListChain
246NetioCompleteNetBufferListChain
247NetioCopyNetBufferListInformation
248NetioCreateForwardFlow
249NetioCreateKey
250NetioCreateQoSFlow
251NetioCreatevSwitchForwardFlow
252NetioDeleteQoSFlow
253NetioDereferenceNetBufferList
254NetioDereferenceNetBufferListChain
255NetioExpandNetBuffer
256NetioExtendNetBuffer
257NetioFlowAssociateContext
258NetioFlowRemoveContext
259NetioFlowRetrieveContext
260NetioFreeCloneNetBufferList
261NetioFreeCopyNetBufferList
262NetioFreeMdl
263NetioFreeNetBuffer
264NetioFreeNetBufferAndNetBufferList
265NetioFreeNetBufferList
266NetioFreeNetBufferListNetBufferMdlAndDataPool
267NetioFreeNetBufferMdlAndDataPool
268NetioFreeOpaquePerProcessorContext
269NetioFreeStackBlock
270NetioGetStatsForQoSFlow
271NetioGetSuperTriageBlock
272NetioInitNetworkRegistry
273NetioInitializeFlowsManager
274NetioInitializeMdl
275NetioInitializeNetBufferListAndFirstNetBufferContext
276NetioInitializeNetBufferListContext
277NetioInitializeNetBufferListContextPrimitive
278NetioInitializeNetBufferListLibrary
279NetioInitializeWorkQueue
280NetioInsertWorkQueue
281NetioLookupForwardFlow
282NetioLookupvSwitchForwardFlow
283NetioNcmActiveReferenceRequest
284NetioNcmCleanupState
285NetioNcmFastActiveReferenceRequest
286NetioNcmFastCheckAreAoAcPatternsSupported
287NetioNcmFastCheckIsAoAcCapable
288NetioNcmFastCheckIsMobileCore
289NetioNcmGetAllNotificationChannelContextParameters
290NetioNcmHandlePatternEviction
291NetioNcmInitializeState
292NetioNcmIsOwningProcessRtcApp
293NetioNcmNotificationChannelContextRequest
294NetioNcmNotifyRedirectOnInterface
295NetioNcmPatternCoalescingRequired
296NetioNcmQueryRtcPortHint
297NetioNcmQueryRtcPortRange
298NetioNcmSignalNcContextWorkQueueRoutine
299NetioNcmStoreBaseSupportedSlots
300NetioNcmStoreRtcPortHint
301NetioNcmStoreRtcPortRange
302NetioNcmTlObjectRequest
303NetioNcmTrackIsLegitimateWake
304NetioNrtAssociateContext
305NetioNrtDereferenceRecord
306NetioNrtDisassociateContext
307NetioNrtDispatch
308NetioNrtFindAndReferenceRecordByHandle
309NetioNrtFindAndReferenceRecordById
310NetioNrtFindOrCreateRecord
311NetioNrtGetIfIndex
312NetioNrtIsIpInRecord
313NetioNrtIsPktTaggingEnabled
314NetioNrtIsProxyInRecord
315NetioNrtIsTrackerDevice
316NetioNrtJoinRecords
317NetioNrtReferenceRecord
318NetioNrtStart
319NetioNrtStop
320NetioNrtWppLogRecord
321NetioOpenKey
322NetioPdcActivateNetwork
323NetioPdcDeactivateNetwork
324NetioPhClampMssOnIpPkt
325NetioPhClampMssOnTcpPkt
326NetioPhClampMssOnTcpSyn
327NetioPhFindTcpOption
328NetioPhGetIpUlProtocol
329NetioPhIsIcmpErrorForIcmpMessage
330NetioPhSkipIpv6ExtHdr
331NetioPhSkipToTransHdr
332NetioPhUpdateTcpChecksum
333NetioQueryNetBufferListTrafficClass
334NetioQueryValueKey
335NetioReferenceNetBufferList
336NetioReferenceNetBufferListChain
337NetioRefreshFlow
338NetioRegSyncDefaultChangeHandler
339NetioRegSyncInterface
340NetioRegSyncQueryAndUpdateKeyValue
341NetioRegisterProcessorAddCallback
342NetioReleaseFlow
343NetioRetreatNetBuffer
344NetioRetreatNetBufferList
345NetioSetTriageBlock
346NetioShutdownWorkQueue
347NetioStackBlockProcessorAddHandler
348NetioUnInitializeFlowsManager
349NetioUnInitializeNetBufferListLibrary
350NetioUnRegisterProcessorAddCallback
351NetioUpdateNetBufferListContext
352NetioValidateNetBuffer
353NetioValidateNetBufferList
354NetioWriteKey
355NmrClientAttachProvider
356NmrClientDetachProviderComplete
357NmrDeregisterClient
358NmrDeregisterProvider
359NmrProviderDetachClientComplete
360NmrRegisterClient
361NmrRegisterProvider
362NmrWaitForClientDeregisterComplete
363NmrWaitForProviderDeregisterComplete
364NotifyCompartmentChange
365NotifyIpInterfaceChange
366NotifyRouteChange2
367NotifyStableUnicastIpAddressTable
368NotifyTeredoPortChange
369NotifyUnicastIpAddressChange
370NsiAllocateAndGetTable
371NsiClearPersistentSetting
372NsiDeregisterChangeNotification
373NsiDeregisterChangeNotificationEx
374NsiDeregisterLegacyHandler
375NsiEnumerateObjectsAllParameters
376NsiEnumerateObjectsAllParametersEx
377NsiEnumerateObjectsAllPersistentParametersWithMask
378NsiFreeTable
379NsiGetAllParameters
380NsiGetAllParametersEx
381NsiGetAllPersistentParametersWithMask
382NsiGetModuleHandle
383NsiGetObjectSecurity
384NsiGetParameter
385NsiGetParameterEx
386NsiReferenceDefaultObjectSecurity
387NsiRegisterChangeNotification
388NsiRegisterChangeNotificationEx
389NsiRegisterLegacyHandler
390NsiResetPersistentSetting
391NsiSetAllParameters
392NsiSetAllParametersEx
393NsiSetAllPersistentParametersWithMask
394NsiSetObjectSecurity
395NsiSetParameter
396NsiSetParameterEx
397OpenCompartment
398PtCheckTable
399PtCreateTable
400PtDeleteEntry
401PtDestroyTable
402PtEnumOverTable
403PtGetData
404PtGetExactMatch
405PtGetKey
406PtGetLongestMatch
407PtGetNextShorterMatch
408PtGetNumNodes
409PtInsertEntry
410PtSetData
411ResolveIpNetEntry2
412RtlAllocateDummyMdlChain
413RtlCleanupTimerWheel
414RtlCleanupTimerWheelEntry
415RtlCleanupToeplitzHash
416RtlCompute37Hash
417RtlComputeToeplitzHash
418RtlCopyBufferToMdl
419RtlCopyMdlToBuffer
420RtlCopyMdlToMdl
421RtlCopyMdlToMdlIndirect
422RtlDeleteElementGenericTableBasicAvl
423RtlEndTimerWheelEnumeration
424RtlEnumerateNextTimerWheelEntry
425RtlFreeDummyMdlChain
426RtlGetNextExpirationTimerWheelTick
427RtlGetNextExpiredTimerWheelEntry
428RtlIndicateTimerWheelEntryTimerStart
429RtlInitializeTimerWheel
430RtlInitializeTimerWheelEntry
431RtlInitializeTimerWheelEnumeration
432RtlInitializeToeplitzHash
433RtlInsertElementGenericTableBasicAvl
434RtlInvokeStartRoutines
435RtlInvokeStopRoutines
436RtlIsTimerWheelSuspended
437RtlReinitializeToeplitzHash
438RtlResumeTimerWheel
439RtlReturnTimerWheelEntry
440RtlSuspendTimerWheel
441RtlUpdateCurrentTimerWheelTick
442SetDnsSettings
443SetInterfaceDnsSettings
444SetIpForwardEntry2
445SetIpInterfaceEntry
446SetIpNetEntry2
447SetUnicastIpAddressEntry
448SetWfpDeviceObject
449TlDefaultEventAbort
450TlDefaultEventConnect
451TlDefaultEventDisconnect
452TlDefaultEventError
453TlDefaultEventInspect
454TlDefaultEventNotify
455TlDefaultEventReceive
456TlDefaultEventReceiveMessages
457TlDefaultEventSendBacklog
458TlDefaultRequestCancel
459TlDefaultRequestCloseEndpoint
460TlDefaultRequestConnect
461TlDefaultRequestDisconnect
462TlDefaultRequestEndpoint
463TlDefaultRequestIoControl
464TlDefaultRequestIoControlEndpoint
465TlDefaultRequestListen
466TlDefaultRequestMessage
467TlDefaultRequestQueryDispatch
468TlDefaultRequestQueryDispatchEndpoint
469TlDefaultRequestReceive
470TlDefaultRequestReleaseIndicationList
471TlDefaultRequestResume
472TlDefaultRequestSend
473TlDefaultRequestSendMessages
474WfpAssociateContextToFlow
475WfpAssociateContextToFlowFast
476WfpCreateReassemblyContext
477WfpDecodedBufferFreeHelper
478WfpDeleteEntryLru
479WfpExpireEntryLru
480WfpFlowToEndpoint
481WfpFreeReassemblyContext
482WfpGetPacketTagCount
483WfpInitializeLeastRecentlyUsedList
484WfpInsertEntryLru
485WfpLruProcessExpiredEndpoint
486WfpLruQueueLruCleanupWorkItemForContext
487WfpNblInfoAlloc
488WfpNblInfoCleanup
489WfpNblInfoClearFlags
490WfpNblInfoClone
491WfpNblInfoDestroyIfUnused
492WfpNblInfoDispatchTableClear
493WfpNblInfoDispatchTableSet
494WfpNblInfoGet
495WfpNblInfoGetFlags
496WfpNblInfoInit
497WfpNblInfoSet
498WfpNblInfoSetFlags
499WfpNrptTriggerDecodeHelper
500WfpPacketTagCountIncrement
501WfpProcessFlowDelete
502WfpRefreshEntryLru
503WfpReleaseFlowLocation
504WfpRemoveContextFromFlow
505WfpRemoveContextFromFlowFast
506WfpReserveFlowLocation
507WfpScavangeLeastRecentlyUsedList
508WfpSetBucketsToEmptyLru
509WfpSetConfigureParametersDecodeHelper
510WfpSetDisconnectDecodeHelper
511WfpSetVpnTriggerFilePathsDecodeHelper
512WfpSetVpnTriggerSecurityDescriptorDecodeHelper
513WfpSetVpnTriggerSidsDecodeHelper
514WfpStartStreamShim
515WfpStopStreamShim
516WfpStreamEndpointCleanupBegin
517WfpStreamInspectDisconnect
518WfpStreamInspectReceive
519WfpStreamInspectRemoteDisconnect
520WfpStreamInspectSend
521WfpStreamIsFilterPresent
522WfpTransferReassemblyContextForFragments
523WfpTransferReassemblyContextUponCompletion
524WfpUninitializeLeastRecentlyUsedList
525WskCaptureProviderNPI
526WskDeregister
527WskQueryProviderCharacteristics
528WskRegister
529WskReleaseProviderNPI
530if_indextoname
531if_nametoindex
lib/libc/mingw/lib-common/netshell.def created+42
......@@ -0,0 +1,42 @@
1;
2; Exports of file netshell.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY netshell.dll
8EXPORTS
9DoInitialCleanup
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
14HrCreateDesktopIcon
15HrGetAnswerFileParametersForNetCard
16HrGetExtendedStatusFromNCS
17HrGetIconFromMediaType
18HrGetIconFromMediaTypeEx
19HrGetInstanceGuidOfPreNT5NetCardInstance
20HrGetNetConExtendedStatusFromGuid
21HrGetNetConExtendedStatusFromINetConnection
22HrGetStatusStringFromNetConExtendedStatus
23HrIsIpStateCheckingEnabled
24HrLaunchConnection
25HrLaunchConnectionEx
26HrLaunchNetworkOptionalComponents
27HrOemUpgrade
28HrRenameConnection
29HrRunWizard
30InvokeDunFile
31NcFreeNetconProperties
32NcIsValidConnectionName
33NetSetupAddRasConnection
34NetSetupFinishInstall
35NetSetupInstallSoftware
36NetSetupPrepareSysPrep
37NetSetupRequestWizardPages
38NetSetupSetProgressCallback
39NormalizeExtendedStatus
40RaiseSupportDialog
41RepairConnection
42StartNCW
lib/libc/mingw/lib-common/ntdllcrt.def.in created+225
......@@ -0,0 +1,225 @@
1#include "func.def.in"
2
3LIBRARY "ntdll.dll"
4EXPORTS
5#ifdef DEF_I386
6_CIcos
7_CIlog
8_CIpow
9_CIsin
10_CIsqrt
11#endif
12F_NON_I386(__C_specific_handler)
13F_NON_I386(;__chkstk)
14__isascii
15__iscsym
16__iscsymf
17F_X64(__misaligned_access)
18F_ARM32(__jump_unwind)
19__toascii
20#ifdef DEF_I386
21_alldiv
22_alldvrm@16
23_allmul@16
24_alloca_probe
25_alloca_probe_16
26_alloca_probe_8
27_allrem@16
28_allshl
29_allshr
30#endif
31_atoi64
32#ifdef DEF_I386
33_aulldiv@16
34_aulldvrm@16
35_aullrem@16
36_aullshr
37;_chkstk
38#endif
39_errno
40F_I386(_except_handler4_common)
41_fltused DATA
42#ifdef DEF_I386
43_ftol
44_ftol2
45_ftol2_sse
46#endif
47_i64toa
48_i64toa_s
49_i64tow
50_i64tow_s
51_itoa
52_itoa_s
53_itow
54_itow_s
55_lfind
56F64(_local_unwind)
57F_I386(_local_unwind4)
58_ltoa
59_ltoa_s
60_ltow
61_ltow_s
62_makepath_s
63_memccpy
64_memicmp
65F_X64(_setjmp)
66F_ARM32(_setjmp)
67F_NON_I386(_setjmpex)
68_snprintf
69_snprintf_s
70_snscanf_s
71_snwprintf
72_snwprintf_s
73_snwscanf_s
74_splitpath
75_splitpath_s
76_strcmpi
77_stricmp
78_strlwr
79strlwr == _strlwr
80_strlwr_s
81_strnicmp
82_strnset_s
83_strset_s
84_strupr
85_strupr_s
86_swprintf
87F_X86_ANY(_tolower)
88F_X86_ANY(_toupper)
89_ui64toa
90_ui64toa_s
91_ui64tow
92_ui64tow_s
93_ultoa
94_ultoa_s
95_ultow
96_ultow_s
97_vscprintf
98_vscwprintf
99_vsnprintf
100_vsnprintf_s
101_vsnwprintf
102_vsnwprintf_s
103_vswprintf
104_wcsicmp
105_wcslwr
106wcslwr == _wcslwr
107_wcslwr_s
108_wcsnicmp
109_wcsnset_s
110_wcsset_s
111_wcstoi64
112_wcstoui64
113_wcsupr
114_wcsupr_s
115_wmakepath_s
116_wsplitpath_s
117_wtoi
118_wtoi64
119_wtol
120abs
121atan F_X86_ANY(DATA)
122atan2
123atoi
124atol
125bsearch
126bsearch_s
127ceil
128cos F_X86_ANY(DATA)
129fabs F_X86_ANY(DATA)
130floor F_X86_ANY(DATA)
131isalnum
132isalpha
133iscntrl
134isdigit
135isgraph
136islower
137isprint
138ispunct
139isspace
140isupper
141iswalnum
142iswalpha
143iswascii
144iswctype
145iswdigit
146iswgraph
147iswlower
148iswprint
149iswspace
150iswxdigit
151isxdigit
152labs
153log
154F_NON_I386(longjmp)
155mbstowcs
156memchr
157memcmp
158memcpy
159memcpy_s
160memmove
161memmove_s
162memset
163pow
164qsort
165qsort_s
166sin
167sprintf
168sprintf_s
169sqrt
170sscanf
171sscanf_s
172strcat
173strcat_s
174strchr
175strcmp
176strcpy
177strcpy_s
178strcspn
179strlen
180strncat
181strncat_s
182strncmp
183strncpy
184strncpy_s
185strnlen
186strpbrk
187strrchr
188strspn
189strstr
190strtok_s
191strtol
192strtoul
193swprintf
194swprintf_s
195swscanf_s
196tan
197tolower
198toupper
199towlower
200towupper
201vsprintf
202vsprintf_s
203vswprintf_s
204wcscat
205wcscat_s
206wcschr
207wcscmp
208wcscpy
209wcscpy_s
210wcscspn
211wcslen
212wcsncat
213wcsncat_s
214wcsncmp
215wcsncpy
216wcsncpy_s
217wcsnlen
218wcspbrk
219wcsrchr
220wcsspn
221wcsstr
222wcstok_s
223wcstol
224wcstombs
225wcstoul
lib/libc/mingw/lib-common/ntquery.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of query.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "query.dll"
7EXPORTS
8LoadBinaryFilter
9LoadTextFilter
10BindIFilterFromStorage
11BindIFilterFromStream
12DllCanUnloadNow
13DllGetClassObject
14DllRegisterServer
15DllUnregisterServer
16LoadIFilter
17LoadIFilterEx
lib/libc/mingw/lib-common/occache.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of OCCACHE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "OCCACHE.dll"
7EXPORTS
8FindControlClose
9FindFirstControl
10FindFirstControlArch
11FindNextControl
12FindNextControlArch
13GetControlDependentFile
14GetControlInfo
15IsModuleRemovable
16ReleaseControlHandle
17RemoveControlByHandle2
18RemoveControlByHandle
19RemoveControlByName2
20RemoveControlByName
21RemoveExpiredControls
22SweepControlsByLastAccessDate
lib/libc/mingw/lib-common/odbccp32.def created+65
......@@ -0,0 +1,65 @@
1;
2; Exports of file ODBCCP32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ODBCCP32.dll
8EXPORTS
9SQLInstallDriver
10SQLInstallDriverManager
11SQLGetInstalledDrivers
12SQLGetAvailableDrivers
13SQLConfigDataSource
14SQLRemoveDefaultDataSource
15SQLWriteDSNToIni
16SQLRemoveDSNFromIni
17SQLInstallODBC
18SQLManageDataSources
19SQLCreateDataSource
20SQLGetTranslator
21SQLWritePrivateProfileString
22SQLGetPrivateProfileString
23SQLValidDSN
24SQLRemoveDriverManager
25SQLInstallTranslator
26SQLRemoveTranslator
27SQLRemoveDriver
28SQLConfigDriver
29SQLInstallerError
30SQLPostInstallerError
31SQLReadFileDSN
32SQLWriteFileDSN
33SQLInstallDriverEx
34SQLGetConfigMode
35SQLSetConfigMode
36SQLInstallTranslatorEx
37SQLCreateDataSourceEx
38ODBCCPlApplet
39SelectTransDlg
40SQLInstallDriverW
41SQLInstallDriverManagerW
42SQLGetInstalledDriversW
43SQLGetAvailableDriversW
44SQLConfigDataSourceW
45SQLWriteDSNToIniW
46SQLRemoveDSNFromIniW
47SQLInstallODBCW
48SQLCreateDataSourceW
49SQLGetTranslatorW
50SQLWritePrivateProfileStringW
51SQLGetPrivateProfileStringW
52SQLValidDSNW
53SQLInstallTranslatorW
54SQLRemoveTranslatorW
55SQLRemoveDriverW
56SQLConfigDriverW
57SQLInstallerErrorW
58SQLPostInstallerErrorW
59SQLReadFileDSNW
60SQLWriteFileDSNW
61SQLInstallDriverExW
62SQLInstallTranslatorExW
63SQLCreateDataSourceExW
64SQLLoadDriverListBox
65SQLLoadDataSourcesListBox
lib/libc/mingw/lib-common/oleaut32.def.in+12-13
......@@ -144,14 +144,14 @@ VarTokenizeFormatString
144144VarAdd
145145VarAnd
146146VarDiv
147F_64(BSTR_UserFree64)
148F_64(BSTR_UserMarshal64)
147F64(BSTR_UserFree64)
148F64(BSTR_UserMarshal64)
149149DispCallFunc
150150VariantChangeTypeEx
151151SafeArrayPtrOfIndex
152152SysStringByteLen
153153SysAllocStringByteLen
154F_64(BSTR_UserSize64)
154F64(BSTR_UserSize64)
155155VarEqv
156156VarIdiv
157157VarImp
......@@ -300,7 +300,7 @@ LPSAFEARRAY_Marshal
300300LPSAFEARRAY_Unmarshal
301301VarDecCmpR8
302302VarCyAdd
303F_64(BSTR_UserUnmarshal64)
303F64(BSTR_UserUnmarshal64)
304304DllCanUnloadNow
305305DllGetClassObject
306306OACreateTypeLib2
......@@ -325,11 +325,11 @@ DllRegisterServer
325325DllUnregisterServer
326326GetRecordInfoFromGuids
327327GetRecordInfoFromTypeInfo
328F_64(LPSAFEARRAY_UserFree64)
328F64(LPSAFEARRAY_UserFree64)
329329SetVarConversionLocaleSetting
330330GetVarConversionLocaleSetting
331331SetOaNoCache
332F_64(LPSAFEARRAY_UserMarshal64)
332F64(LPSAFEARRAY_UserMarshal64)
333333VarCyMulI8
334334VarDateFromUdate
335335VarUdateFromDate
......@@ -351,13 +351,12 @@ VarI2FromI8
351351VarI2FromUI8
352352VarI4FromI8
353353VarI4FromUI8
354F_64(LPSAFEARRAY_UserSize64)
355F_64(LPSAFEARRAY_UserUnmarshal64)
356OACreateTypeLib2
357F_64(VARIANT_UserFree64)
358F_64(VARIANT_UserMarshal64)
359F_64(VARIANT_UserSize64)
360F_64(VARIANT_UserUnmarshal64)
354F64(LPSAFEARRAY_UserSize64)
355F64(LPSAFEARRAY_UserUnmarshal64)
356F64(VARIANT_UserFree64)
357F64(VARIANT_UserMarshal64)
358F64(VARIANT_UserSize64)
359F64(VARIANT_UserUnmarshal64)
361360VarR4FromI8
362361VarR4FromUI8
363362VarR8FromI8
lib/libc/mingw/lib-common/opends60.def created+82
......@@ -0,0 +1,82 @@
1LIBRARY OPENDS60.dll
2EXPORTS
3ODS_init
4srv_thread
5int_getpOAInfo
6int_setpOAInfo
7srv_IgnoreAnsiToOem
8srv_ackattention
9srv_alloc
10srv_ansi_describe
11srv_ansi_paramdata
12srv_ansi_sendmsg
13srv_ansi_sendrow
14srv_bmove
15srv_bzero
16srv_clearstatistics
17srv_config
18srv_config_alloc
19srv_convert
20srv_describe
21srv_errhandle
22srv_event
23srv_eventdata
24srv_flush
25srv_free
26srv_get_text
27srv_getbindtoken
28srv_getconfig
29srv_getdtcxact
30srv_getserver
31srv_getuserdata
32srv_got_attention
33srv_handle
34srv_impersonate_client
35srv_init
36srv_iodead
37srv_langcpy
38srv_langlen
39srv_langptr
40srv_log
41srv_message_handler
42srv_paramdata
43srv_paraminfo
44srv_paramlen
45srv_parammaxlen
46srv_paramname
47srv_paramnumber
48srv_paramset
49srv_paramsetoutput
50srv_paramstatus
51srv_paramtype
52srv_pfield
53srv_pfieldex
54srv_post_completion_queue
55srv_post_handle
56srv_pre_handle
57srv_returnval
58srv_revert_to_self
59srv_rpcdb
60srv_rpcname
61srv_rpcnumber
62srv_rpcoptions
63srv_rpcowner
64srv_rpcparams
65srv_run
66srv_senddone
67srv_sendmsg
68srv_sendrow
69srv_sendstatistics
70srv_sendstatus
71srv_setcoldata
72srv_setcollen
73srv_setevent
74srv_setuserdata
75srv_setutype
76srv_sfield
77srv_symbol
78srv_tdsversion
79srv_terminatethread
80srv_willconvert
81srv_writebuf
82srv_wsendmsg
lib/libc/mingw/lib-common/osuninst.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file OSUNINST.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OSUNINST.dll
8EXPORTS
9ExecuteUninstall
10GetUninstallImageSize
11IsUninstallImageValid
12ProvideUiAlerts
13RemoveUninstallImage
lib/libc/mingw/lib-common/pcwum.def created+46
......@@ -0,0 +1,46 @@
1;
2; Definition file of pcwum.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "pcwum.dll"
7EXPORTS
8PcwAddQueryItem
9PcwClearCounterSetSecurity
10PcwCollectData
11PcwCompleteNotification
12PcwCreateNotifier
13PcwCreateQuery
14PcwDisconnectCounterSet
15PcwEnumerateInstances
16PcwIsNotifierAlive
17PcwQueryCounterSetSecurity
18PcwReadNotificationData
19PcwRegisterCounterSet
20PcwRemoveQueryItem
21PcwSendNotification
22PcwSendStatelessNotification
23PcwSetCounterSetSecurity
24PcwSetQueryItemUserData
25PerfCreateInstance
26PerfDecrementULongCounterValue
27PerfDecrementULongLongCounterValue
28PerfDeleteInstance
29PerfIncrementULongCounterValue
30PerfIncrementULongLongCounterValue
31PerfQueryInstance
32PerfSetCounterRefValue
33PerfSetCounterSetInfo
34PerfSetULongCounterValue
35PerfSetULongLongCounterValue
36PerfStartProvider
37PerfStartProviderEx
38PerfStopProvider
39StmAlignSize
40StmAllocateFlat
41StmCoalesceChunks
42StmDeinitialize
43StmInitialize
44StmReduceSize
45StmReserve
46StmWrite
lib/libc/mingw/lib-common/pdh.def created+126
......@@ -0,0 +1,126 @@
1;
2; Definition file of pdh.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "pdh.dll"
7EXPORTS
8PdhAddCounterA
9PdhAddCounterW
10PdhAddEnglishCounterA
11PdhAddEnglishCounterW
12PdhAddRelogCounter
13PdhBindInputDataSourceA
14PdhBindInputDataSourceW
15PdhBrowseCountersA
16PdhBrowseCountersHA
17PdhBrowseCountersHW
18PdhBrowseCountersW
19PdhCalculateCounterFromRawValue
20PdhCloseLog
21PdhCloseQuery
22PdhCollectQueryData
23PdhCollectQueryDataEx
24PdhCollectQueryDataWithTime
25PdhComputeCounterStatistics
26PdhConnectMachineA
27PdhConnectMachineW
28PdhCreateSQLTablesA
29PdhCreateSQLTablesW
30PdhEnumLogSetNamesA
31PdhEnumLogSetNamesW
32PdhEnumMachinesA
33PdhEnumMachinesHA
34PdhEnumMachinesHW
35PdhEnumMachinesW
36PdhEnumObjectItemsA
37PdhEnumObjectItemsHA
38PdhEnumObjectItemsHW
39PdhEnumObjectItemsW
40PdhEnumObjectsA
41PdhEnumObjectsHA
42PdhEnumObjectsHW
43PdhEnumObjectsW
44PdhExpandCounterPathA
45PdhExpandCounterPathW
46PdhExpandWildCardPathA
47PdhExpandWildCardPathHA
48PdhExpandWildCardPathHW
49PdhExpandWildCardPathW
50PdhFormatFromRawValue
51PdhGetCounterInfoA
52PdhGetCounterInfoW
53PdhGetCounterTimeBase
54PdhGetDataSourceTimeRangeA
55PdhGetDataSourceTimeRangeH
56PdhGetDataSourceTimeRangeW
57PdhGetDefaultPerfCounterA
58PdhGetDefaultPerfCounterHA
59PdhGetDefaultPerfCounterHW
60PdhGetDefaultPerfCounterW
61PdhGetDefaultPerfObjectA
62PdhGetDefaultPerfObjectHA
63PdhGetDefaultPerfObjectHW
64PdhGetDefaultPerfObjectW
65PdhGetDllVersion
66PdhGetExplainText
67PdhGetFormattedCounterArrayA
68PdhGetFormattedCounterArrayW
69PdhGetFormattedCounterValue
70PdhGetLogFileSize
71PdhGetLogFileTypeW
72PdhGetLogSetGUID
73PdhGetRawCounterArrayA
74PdhGetRawCounterArrayW
75PdhGetRawCounterValue
76PdhIsRealTimeQuery
77PdhLookupPerfIndexByNameA
78PdhLookupPerfIndexByNameW
79PdhLookupPerfNameByIndexA
80PdhLookupPerfNameByIndexW
81PdhMakeCounterPathA
82PdhMakeCounterPathW
83PdhOpenLogA
84PdhOpenLogW
85PdhOpenQuery
86PdhOpenQueryA
87PdhOpenQueryH
88PdhOpenQueryW
89PdhParseCounterPathA
90PdhParseCounterPathW
91PdhParseInstanceNameA
92PdhParseInstanceNameW
93PdhReadRawLogRecord
94PdhRelogW
95PdhRemoveCounter
96PdhResetRelogCounterValues
97PdhSelectDataSourceA
98PdhSelectDataSourceW
99PdhSetCounterScaleFactor
100PdhSetCounterValue
101PdhSetDefaultRealTimeDataSource
102PdhSetLogSetRunID
103PdhSetQueryTimeRange
104PdhTranslate009CounterW
105PdhTranslateLocaleCounterW
106PdhUpdateLogA
107PdhUpdateLogFileCatalog
108PdhUpdateLogW
109PdhValidatePathA
110PdhValidatePathExA
111PdhValidatePathExW
112PdhValidatePathW
113PdhVbAddCounter
114PdhVbCreateCounterPathList
115PdhVbGetCounterPathElements
116PdhVbGetCounterPathFromList
117PdhVbGetDoubleCounterValue
118PdhVbGetLogFileSize
119PdhVbGetOneCounterPath
120PdhVbIsGoodStatus
121PdhVbOpenLog
122PdhVbOpenQuery
123PdhVbUpdateLog
124PdhVerifySQLDBA
125PdhVerifySQLDBW
126PdhWriteRelogSample
lib/libc/mingw/lib-common/perfctrs.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file perfctrs.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY perfctrs.dll
8EXPORTS
9OpenNbfPerformanceData
10CollectNbfPerformanceData
11CloseNbfPerformanceData
12OpenTcpIpPerformanceData
13CollectTcpIpPerformanceData
14CloseTcpIpPerformanceData
15OpenIPXPerformanceData
16CollectIPXPerformanceData
17CloseIPXPerformanceData
18OpenSPXPerformanceData
19CollectSPXPerformanceData
20CloseSPXPerformanceData
21OpenNWNBPerformanceData
22CollectNWNBPerformanceData
23CloseNWNBPerformanceData
24OpenDhcpPerformanceData
25CollectDhcpPerformanceData
26CloseDhcpPerformanceData
lib/libc/mingw/lib-common/perfdisk.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PerfDisk.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PerfDisk.dll
8EXPORTS
9CloseDiskObject
10CollectDiskObjectData
11OpenDiskObject
lib/libc/mingw/lib-common/perfnet.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PerfNet.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PerfNet.dll
8EXPORTS
9CloseNetSvcsObject
10CollectNetSvcsObjectData
11OpenNetSvcsObject
lib/libc/mingw/lib-common/perfos.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PerfOS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PerfOS.dll
8EXPORTS
9CloseOSObject
10CollectOSObjectData
11OpenOSObject
lib/libc/mingw/lib-common/perfproc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PerfProc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PerfProc.dll
8EXPORTS
9CloseSysProcessObject
10CollectSysProcessObjectData
11OpenSysProcessObject
lib/libc/mingw/lib-common/perfts.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PerfTS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PerfTS.dll
8EXPORTS
9CloseTSObject
10CollectTSObjectData
11OpenTSObject
lib/libc/mingw/lib-common/photowiz.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file PHOTOWIZ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PHOTOWIZ.dll
8EXPORTS
9UsePPWForPrintTo
10DllCanUnloadNow
11DllGetClassObject
12DllInstall
13DllMain
14DllRegisterServer
15DllUnregisterServer
lib/libc/mingw/lib-common/profapi.def created+21
......@@ -0,0 +1,21 @@
1LIBRARY profapi
2
3EXPORTS
4
5CreateAppContainerEnumerator
6CreateEnvBlock
7DeleteAppContainerEnumerator
8DestroyEnvBlock
9ExpandEnvStringForUser
10GetAppContainerPath
11GetAppContainerPathFromSidString
12GetAppContainerRegistryHandle
13GetAppContainerRegistryHandleFromName
14GetAppContainerRegistryPath
15GetAppContainerSpecificSubPath
16GetBasicProfileFolderPath
17GetBasicProfileFolderPathAlloc
18GetBasicProfileFolderPathEx
19GetNextAppContainerSid
20LoadProfileBasic
21UnloadProfileBasic
lib/libc/mingw/lib-common/pstorec.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file PSTOREC.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PSTOREC.DLL
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13PStoreCreateInstance
14PStoreEnumProviders
lib/libc/mingw/lib-common/qutil.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of QUtil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "QUtil.dll"
7EXPORTS
8AllocConnections
9AllocCountedString
10AllocFixupInfo
11DllCanUnloadNow
12DllGetClassObject
13DllRegisterServer
14DllUnregisterServer
15FreeConnections
16FreeCountedString
17FreeFixupInfo
18FreeIsolationInfo
19FreeIsolationInfoEx
20FreeNapComponentRegistrationInfoArray
21FreeNetworkSoH
22FreePrivateData
23FreeSoH
24FreeSoHAttributeValue
25FreeSystemHealthAgentState
26InitializeNapAgentNotifier
27UninitializeNapAgentNotifier
lib/libc/mingw/lib-common/rasadhlp.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file rasadhlp.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasadhlp.dll
8EXPORTS
9AcsHlpAttemptConnection
10AcsHlpNbConnection
11AcsHlpNoteNewConnection
12WSAttemptAutodialAddr
13WSAttemptAutodialName
14WSNoteSuccessfulHostentLookup
lib/libc/mingw/lib-common/rasauto.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file rasauto.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasauto.dll
8EXPORTS
9ServiceMain
10SetAddressDisabledEx
lib/libc/mingw/lib-common/raschap.def created+29
......@@ -0,0 +1,29 @@
1;
2; Definition file of RASCHAP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RASCHAP.dll"
7EXPORTS
8RasEapCreateConnectionProperties2
9RasEapCreateConnectionPropertiesXml
10RasEapCreateUserProperties2
11RasCpEnumProtocolIds
12RasCpGetInfo
13RasEapCreateConnectionProperties
14RasEapCreateMethodConfiguration
15RasEapCreateUserProperties
16RasEapFreeMemory
17RasEapGetConfigBlobAndUserBlob
18RasEapGetCredentials
19RasEapGetIdentity
20RasEapGetIdentityPageGuid
21RasEapGetInfo
22RasEapGetMethodProperties
23RasEapGetNextPageGuid
24RasEapInvokeConfigUI
25RasEapInvokeInteractiveUI
26RasEapQueryCredentialInputFields
27RasEapQueryInteractiveUIInputFields
28RasEapQueryUIBlobFromInteractiveUIInputFields
29RasEapQueryUserBlobFromCredentialInputFields
lib/libc/mingw/lib-common/rasctrs.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file rasctrs.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasctrs.dll
8EXPORTS
9OpenRasPerformanceData
10CollectRasPerformanceData
11CloseRasPerformanceData
lib/libc/mingw/lib-common/rasmontr.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file RASMONTR.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RASMONTR.dll
8EXPORTS
9GetDiagnosticFunctions
10InitHelperDll
11RutlAlloc
12RutlAssignmentFromTokenAndDword
13RutlAssignmentFromTokens
14RutlCloseDumpFile
15RutlCreateDumpFile
16RutlDwordDup
17RutlFree
18RutlGetOsVersion
19RutlGetTagToken
20RutlIsHelpToken
21RutlParse
22RutlStrDup
lib/libc/mingw/lib-common/rasmxs.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file rasmxs.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasmxs.dll
8EXPORTS
9DeviceConnect
10DeviceDone
11DeviceEnum
12DeviceGetInfo
13DeviceListen
14DeviceSetInfo
15DeviceWork
lib/libc/mingw/lib-common/rasser.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file rasser.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasser.dll
8EXPORTS
9PortChangeCallback
10PortClearStatistics
11PortClose
12PortCompressionSetInfo
13PortConnect
14PortDisconnect
15PortEnum
16PortGetInfo
17PortGetPortState
18PortGetStatistics
19PortInit
20PortOpen
21PortReceive
22PortReceiveComplete
23PortSend
24PortSetFraming
25PortSetINetCfg
26PortSetInfo
27PortTestSignalState
lib/libc/mingw/lib-common/rastapi.def created+52
......@@ -0,0 +1,52 @@
1;
2; Definition file of rastapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rastapi.dll"
7EXPORTS
8AddPorts
9CheckRasmanDependency
10DeviceConnect
11DeviceDone
12DeviceEnum
13DeviceGetDevConfig
14DeviceGetDevConfigEx
15DeviceGetInfo
16DeviceListen
17DeviceSetDevConfig
18DeviceSetInfo
19DeviceWork
20EnableDeviceForDialIn
21GetConnectInfo
22GetZeroDeviceInfo
23InitializeDriverIoControl
24PortChangeCallback
25PortClearStatistics
26PortClose
27PortCompressionSetInfo
28PortConnect
29PortDisconnect
30PortEnum
31PortGetIOHandle
32PortGetInfo
33PortGetPortState
34PortGetStatistics
35PortInit
36PortOpen
37PortOpenExternal
38PortReceive
39PortReceiveComplete
40PortSend
41PortSetFraming
42PortSetInfo
43PortSetIoCompletionPort
44PortTestSignalState
45RasTapiIsPulseDial
46RastapiGetCalledID
47RastapiSetCalledID
48RefreshDevices
49RemovePort
50SetCommSettings
51UnloadRastapiDll
52UpdateTapiService
lib/libc/mingw/lib-common/rdpcfgex.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file RDPCFGEX.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RDPCFGEX.dll
8EXPORTS
9ExGetCfgVersionInfo
10ExtEncryptionLevels
11ExtEnd
12ExtGetCapabilities
13ExtGetEncryptionLevelAndDescrEx
14ExtGetEncryptionLevelDescr
15ExtGetSecurityLayerDescrString
16ExtGetSecurityLayerName
17ExtSecurityLayers
18ExtStart
lib/libc/mingw/lib-common/regapi.def created+107
......@@ -0,0 +1,107 @@
1;
2; Definition file of REGAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "REGAPI.dll"
7EXPORTS
8CheckStringForAsciiConversion
9GetDomainName
10QueryUserConfig
11QueryUserProperty
12RegBuildNumberQuery
13RegCdCreateA
14RegCdCreateW
15RegCdDeleteA
16RegCdDeleteW
17RegCdEnumerateA
18RegCdEnumerateW
19RegCdQueryA
20RegCdQueryW
21RegCloseServer
22RegConsoleShadowQueryA
23RegConsoleShadowQueryW
24RegCreateMonitorConfigW
25RegCreateUserConfigW
26RegDefaultUserConfigQueryA
27RegDefaultUserConfigQueryW
28RegDenyTSConnectionsPolicy
29RegFreeUtilityCommandList
30RegGetLicensePolicyID
31RegGetLicensingModePolicy
32RegGetMachinePolicy
33RegGetMachinePolicyEx
34RegGetMachinePolicyNew
35RegGetTServerVersion
36RegGetUserConfigFromUserParameters
37RegGetUserPolicy
38RegIsMachineInHelpMode
39RegIsMachinePolicyAllowHelp
40RegIsSrcAcceptingConnections
41RegIsTServer
42RegIsTimeZoneRedirectionEnabled
43RegMergeMachinePolicy
44RegMergeUserConfigWithUserParameters
45RegOpenServerA
46RegOpenServerW
47RegPdCreateA
48RegPdCreateW
49RegPdDeleteA
50RegPdDeleteW
51RegPdEnumerateA
52RegPdEnumerateW
53RegPdQueryA
54RegPdQueryW
55RegQueryConnectionSettings
56RegQueryListenerStart
57RegQueryMonitorSettings
58RegQueryOEMId
59RegQuerySessionSettings
60RegQueryUtilityCommandList
61RegSAMUserConfig
62RegSetLicensePolicyID
63RegSetSrcAcceptConnections
64RegUserConfigDelete
65RegUserConfigQuery
66RegUserConfigRename
67RegUserConfigSet
68RegWdCreateA
69RegWdCreateW
70RegWdDeleteA
71RegWdDeleteW
72RegWdEnumerateA
73RegWdEnumerateW
74RegWdQueryA
75RegWdQueryW
76RegWinStationAccessCheck
77RegWinStationCreateA
78RegWinStationCreateW
79RegWinStationDeleteA
80RegWinStationDeleteW
81RegWinStationEnumerateA
82RegWinStationEnumerateW
83RegWinStationQueryA
84RegWinStationQueryDefaultSecurity
85RegWinStationQueryEx
86RegWinStationQueryExNew
87RegWinStationQueryExW
88RegWinStationQueryExtendedSettingsW
89RegWinStationQueryNumValueW
90RegWinStationQuerySecurityA
91RegWinStationQuerySecurityW
92RegWinStationQueryValueW
93RegWinStationQueryW
94RegWinStationSetDefaultSecurity
95RegWinStationSetExtendedSettingsW
96RegWinStationSetNumValueW
97RegWinStationSetSecurityA
98RegWinStationSetSecurityW
99RegWinstationQuerySecurityConfig_Machine
100RegWinstationQuerySecurityConfig_Merged
101RegWinstationSetSecurityConfig
102SetUserProperty
103UsrPropGetString
104UsrPropGetValue
105UsrPropSetString
106UsrPropSetValue
107WaitForTSConnectionsPolicyChanges
lib/libc/mingw/lib-common/regsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file regsvc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY regsvc.dll
8EXPORTS
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/lib-common/riched20.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file RICHED20.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RICHED20.dll
8EXPORTS
9IID_IRichEditOle
10IID_IRichEditOleCallback
11CreateTextServices
12IID_ITextServices
13IID_ITextHost
14IID_ITextHost2
15REExtendedRegisterClass
16RichEdit10ANSIWndProc
17RichEditANSIWndProc
lib/libc/mingw/lib-common/rnr20.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file RNR20.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RNR20.dll
8EXPORTS
9NSPStartup
lib/libc/mingw/lib-common/rometadata.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of RoMetadata.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RoMetadata.dll"
7EXPORTS
8MetaDataGetDispenser
lib/libc/mingw/lib-common/rpcrt4.def-9
......@@ -34,8 +34,6 @@ CStdStubBuffer_Disconnect
3434CStdStubBuffer_Invoke
3535CStdStubBuffer_IsIIDSupported
3636CStdStubBuffer_QueryInterface
37CreateProxyFromTypeInfo
38CreateStubFromTypeInfo
3937DceErrorInqTextA
4038DceErrorInqTextW
4139DllGetClassObject
......@@ -75,7 +73,6 @@ I_RpcClearMutex
7573I_RpcCompleteAndFree
7674I_RpcConnectionInqSockBuffSize
7775I_RpcConnectionSetSockBuffSize
78I_RpcCompleteAndFree
7976I_RpcDeleteMutex
8077I_RpcEnableWmiTrace
8178I_RpcExceptionFilter
......@@ -105,7 +102,6 @@ I_RpcNsBindingSetEntryNameA
105102I_RpcNsBindingSetEntryNameW
106103I_RpcNsInterfaceExported
107104I_RpcNsInterfaceUnexported
108I_RpcOpenClientProcess
109105I_RpcParseSecurity
110106I_RpcPauseExecution
111107I_RpcProxyNewConnection
......@@ -253,13 +249,8 @@ NdrFixedArrayMarshall
253249NdrFixedArrayMemorySize
254250NdrFixedArrayUnmarshall
255251NdrFreeBuffer
256NdrFullPointerFree
257NdrFullPointerInsertRefId
258NdrFullPointerQueryPointer
259NdrFullPointerQueryRefId
260252NdrFullPointerXlatFree
261253NdrFullPointerXlatInit
262NdrGetBaseInterfaceFromStub
263254NdrGetBuffer
264255NdrGetDcomProtocolVersion
265256NdrGetSimpleTypeBufferAlignment
lib/libc/mingw/lib-common/rpcss.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file RPCSS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RPCSS.dll
8EXPORTS
9ServiceMain
10CoGetComCatalog
11GetRPCSSInfo
12WhichService
lib/libc/mingw/lib-common/rsaenh.def created+35
......@@ -0,0 +1,35 @@
1;
2; Exports of file RSAENH.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RSAENH.dll
8EXPORTS
9CPAcquireContext
10CPCreateHash
11CPDecrypt
12CPDeriveKey
13CPDestroyHash
14CPDestroyKey
15CPDuplicateHash
16CPDuplicateKey
17CPEncrypt
18CPExportKey
19CPGenKey
20CPGenRandom
21CPGetHashParam
22CPGetKeyParam
23CPGetProvParam
24CPGetUserKey
25CPHashData
26CPHashSessionKey
27CPImportKey
28CPReleaseContext
29CPSetHashParam
30CPSetKeyParam
31CPSetProvParam
32CPSignHash
33CPVerifySignature
34DllRegisterServer
35DllUnregisterServer
lib/libc/mingw/lib-common/rtutils.def created+51
......@@ -0,0 +1,51 @@
1;
2; Exports of file rtutils.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rtutils.dll
8EXPORTS
9LogErrorA
10LogErrorW
11LogEventA
12LogEventW
13MprSetupProtocolEnum
14MprSetupProtocolFree
15QueueWorkItem
16RouterAssert
17RouterGetErrorStringA
18RouterGetErrorStringW
19RouterLogDeregisterA
20RouterLogDeregisterW
21RouterLogEventA
22RouterLogEventDataA
23RouterLogEventDataW
24RouterLogEventExA
25RouterLogEventExW
26RouterLogEventStringA
27RouterLogEventStringW
28RouterLogEventValistExA
29RouterLogEventValistExW
30RouterLogEventW
31RouterLogRegisterA
32RouterLogRegisterW
33SetIoCompletionProc
34TraceDeregisterA
35TraceDeregisterExA
36TraceDeregisterExW
37TraceDeregisterW
38TraceDumpExA
39TraceDumpExW
40TraceGetConsoleA
41TraceGetConsoleW
42TracePrintfA
43TracePrintfExA
44TracePrintfExW
45TracePrintfW
46TracePutsExA
47TracePutsExW
48TraceRegisterExA
49TraceRegisterExW
50TraceVprintfExA
51TraceVprintfExW
lib/libc/mingw/lib-common/scesrv.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file SCESRV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SCESRV.dll
8EXPORTS
9ScesrvInitializeServer
10ScesrvTerminateServer
lib/libc/mingw/lib-common/schannel.def-1
......@@ -26,7 +26,6 @@ QuerySecurityPackageInfoA
2626QuerySecurityPackageInfoW
2727RevertSecurityContext
2828SealMessage
29SpLsaModeInitialize
3029SpUserModeInitialize
3130SslCrackCertificate
3231SslEmptyCacheA
lib/libc/mingw/lib-common/scrobj.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file SCROBJ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SCROBJ.dll
8EXPORTS
9GenerateTypeLib
10GenerateTypeLibW
11DllCanUnloadNow
12DllGetClassObject
13DllInstall
14DllRegisterServer
15DllRegisterServerEx
16DllRegisterServerExA
17DllRegisterServerExW
18DllUnregisterServer
19DllUnregisterServerEx
lib/libc/mingw/lib-common/scrrun.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file ScrRun.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ScrRun.dll
8EXPORTS
9DLLGetDocumentation
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
14DoOpenPipeStream
lib/libc/mingw/lib-common/sdhcinst.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file sdhcinst.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY sdhcinst.dll
8EXPORTS
9SdClassCoInstaller
10SdClassInstall
lib/libc/mingw/lib-common/seclogon.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file seclogon.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY seclogon.dll
8EXPORTS
9DllRegisterServer
10DllUnregisterServer
11SvcEntry_Seclogon
12SvchostPushServiceGlobals
lib/libc/mingw/lib-common/security.def created+44
......@@ -0,0 +1,44 @@
1;
2; Exports of file Security.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY Security.dll
8EXPORTS
9AcceptSecurityContext
10AcquireCredentialsHandleA
11AcquireCredentialsHandleW
12AddSecurityPackageA
13AddSecurityPackageW
14ApplyControlToken
15CompleteAuthToken
16DecryptMessage
17DeleteSecurityContext
18DeleteSecurityPackageA
19DeleteSecurityPackageW
20EncryptMessage
21EnumerateSecurityPackagesA
22EnumerateSecurityPackagesW
23ExportSecurityContext
24FreeContextBuffer
25FreeCredentialsHandle
26ImpersonateSecurityContext
27ImportSecurityContextA
28ImportSecurityContextW
29InitSecurityInterfaceA
30InitSecurityInterfaceW
31InitializeSecurityContextA
32InitializeSecurityContextW
33MakeSignature
34QueryContextAttributesA
35QueryContextAttributesW
36QueryCredentialsAttributesA
37QueryCredentialsAttributesW
38QuerySecurityContextToken
39QuerySecurityPackageInfoA
40QuerySecurityPackageInfoW
41RevertSecurityContext
42SealMessage
43UnsealMessage
44VerifySignature
lib/libc/mingw/lib-common/sens.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of Sens.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Sens.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
10SensNotifyNetconEvent
11SensNotifyRasEvent
12SensNotifyWinlogonEvent
lib/libc/mingw/lib-common/serialui.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file SERIALUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SERIALUI.dll
8EXPORTS
9drvCommConfigDialogW
10drvCommConfigDialogA
11drvSetDefaultCommConfigW
12drvSetDefaultCommConfigA
13drvGetDefaultCommConfigW
14drvGetDefaultCommConfigA
lib/libc/mingw/lib-common/serwvdrv.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file SERWVDRV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SERWVDRV.dll
8EXPORTS
9DriverProc
10widMessage
11wodMessage
lib/libc/mingw/lib-common/shell32.def-1
......@@ -121,7 +121,6 @@ AppCompat_RunDLLW
121121SHCreateShellFolderView
122122AssocCreateForClasses
123123AssocGetDetailsOfPropKey
124CheckEscapesW
125124CommandLineToArgvW
126125Control_RunDLL
127126Control_RunDLLA
lib/libc/mingw/lib-common/shfolder.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file SHFOLDER.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SHFOLDER.dll
8EXPORTS
9SHGetFolderPathA
10SHGetFolderPathW
lib/libc/mingw/lib-common/shimgvw.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file shimgvw.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY shimgvw.DLL
8EXPORTS
9ImageView_COMServer
10ImageView_Fullscreen
11ImageView_FullscreenA
12ImageView_FullscreenW
13ImageView_PrintTo
14ImageView_PrintToA
15ImageView_PrintToW
16imageview_fullscreenW
17ConvertDIBSECTIONToThumbnail
18DllCanUnloadNow
19DllGetClassObject
20DllInstall
21DllRegisterServer
22DllUnregisterServer
lib/libc/mingw/lib-common/shsvcs.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file SHSVCS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SHSVCS.dll
8EXPORTS
9DllInstall
10DllRegisterServer
11DllUnregisterServer
12HardwareDetectionServiceMain
13ThemeServiceMain
14CreateHardwareEventMoniker
15DllCanUnloadNow
16DllGetClassObject
lib/libc/mingw/lib-common/sisbkup.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file sisbkup.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY sisbkup.dll
8EXPORTS
9SisCSFilesToBackupForLink
10SisCreateBackupStructure
11SisCreateRestoreStructure
12SisFreeAllocatedMemory
13SisFreeBackupStructure
14SisFreeRestoreStructure
15SisRestoredCommonStoreFile
16SisRestoredLink
lib/libc/mingw/lib-common/softpub.def created+32
......@@ -0,0 +1,32 @@
1;
2; Exports of file SOFTPUB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SOFTPUB.dll
8EXPORTS
9GenericChainCertificateTrust
10GenericChainFinalProv
11HTTPSCertificateTrust
12SoftpubDefCertInit
13SoftpubFreeDefUsageCallData
14SoftpubLoadDefUsageCallData
15AddPersonalTrustDBPages
16DllRegisterServer
17DllUnregisterServer
18DriverCleanupPolicy
19DriverFinalPolicy
20DriverInitializePolicy
21FindCertsByIssuer
22HTTPSFinalProv
23OfficeCleanupPolicy
24OfficeInitializePolicy
25OpenPersonalTrustDBDialog
26SoftpubAuthenticode
27SoftpubCheckCert
28SoftpubCleanup
29SoftpubDumpStructure
30SoftpubInitialize
31SoftpubLoadMessage
32SoftpubLoadSignature
lib/libc/mingw/lib-common/sqlsrv32.def created+98
......@@ -0,0 +1,98 @@
1;
2; Exports of file SQLSRV32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SQLSRV32.dll
8EXPORTS
9SQLBindCol
10SQLCancel
11SQLColAttributeW
12SQLConnectW
13SQLDescribeColW
14SQLDisconnect
15SQLExecDirectW
16SQLExecute
17SQLFetch
18SQLFreeStmt
19SQLGetCursorNameW
20SQLNumResultCols
21SQLPrepareW
22SQLRowCount
23SQLSetCursorNameW
24SQLBulkOperations
25SQLColumnsW
26SQLDriverConnectW
27SQLGetConnectOptionW
28SQLGetData
29SQLGetFunctions
30SQLGetInfoW
31SQLGetTypeInfoW
32SQLParamData
33SQLPutData
34SQLSetConnectOptionW
35SQLSpecialColumnsW
36SQLStatisticsW
37SQLTablesW
38SQLBrowseConnectW
39SQLColumnPrivilegesW
40SQLDescribeParam
41SQLExtendedFetch
42SQLForeignKeysW
43SQLMoreResults
44SQLNativeSqlW
45SQLNumParams
46SQLParamOptions
47SQLPrimaryKeysW
48SQLProcedureColumnsW
49SQLProceduresW
50SQLSetPos
51SQLSetScrollOptions
52SQLTablePrivilegesW
53SQLBindParameter
54SQLAllocHandle
55SQLCloseCursor
56SQLCopyDesc
57SQLEndTran
58SQLFreeHandle
59SQLGetConnectAttrW
60SQLGetDescFieldW
61SQLGetDescRecW
62SQLGetDiagFieldW
63SQLGetDiagRecW
64SQLGetEnvAttr
65SQLGetStmtAttrW
66SQLSetConnectAttrW
67SQLSetDescFieldW
68SQLSetDescRec
69SQLSetEnvAttr
70SQLSetStmtAttrW
71SQLFetchScroll
72LibMain
73ConfigDSNW
74ConfigDriverW
75SQLDebug
76BCP_batch
77BCP_bind
78BCP_colfmt
79BCP_collen
80BCP_colptr
81BCP_columns
82BCP_control
83BCP_done
84BCP_init
85BCP_exec
86BCP_moretext
87BCP_sendrow
88BCP_readfmt
89BCP_writefmt
90ConnectDlgProc
91WizDSNDlgProc
92WizIntSecurityDlgProc
93WizDatabaseDlgProc
94WizLanguageDlgProc
95FinishDlgProc
96TestDlgProc
97BCP_getcolfmt
98BCP_setcolfmt
lib/libc/mingw/lib-common/srvsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file srvsvc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY srvsvc.dll
8EXPORTS
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/lib-common/streamci.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file streamci.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY streamci.dll
8EXPORTS
9StreamingDeviceClassInstaller
10StreamingDeviceRemove
11StreamingDeviceRemoveA
12StreamingDeviceRemoveW
13StreamingDeviceSetup
14StreamingDeviceSetupA
15StreamingDeviceSetupW
16SwEnumCoInstaller
lib/libc/mingw/lib-common/sxs.def created+38
......@@ -0,0 +1,38 @@
1;
2; Exports of file sxs.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY sxs.dll
8EXPORTS
9SxsFindClrClassInformation
10SxsFindClrSurrogateInformation
11SxsLookupClrGuid
12SxsRunDllInstallAssembly
13SxsRunDllInstallAssemblyW
14SxspGenerateManifestPathOnAssemblyIdentity
15SxspGeneratePolicyPathOnAssemblyIdentity
16SxspRunDllDeleteDirectory
17SxspRunDllDeleteDirectoryW
18CreateAssemblyCache
19CreateAssemblyNameObject
20DllInstall
21SxsBeginAssemblyInstall
22SxsEndAssemblyInstall
23SxsGenerateActivationContext
24SxsInstallW
25SxsOleAut32MapConfiguredClsidToReferenceClsid
26SxsOleAut32MapIIDOrCLSIDToTypeLibrary
27SxsOleAut32MapIIDToProxyStubCLSID
28SxsOleAut32MapIIDToTLBPath
29SxsOleAut32MapReferenceClsidToConfiguredClsid
30SxsOleAut32RedirectTypeLibrary
31SxsProbeAssemblyInstallation
32SxsProtectionGatherEntriesW
33SxsProtectionNotifyW
34SxsProtectionPerformScanNow
35SxsProtectionUserLogoffEvent
36SxsProtectionUserLogonEvent
37SxsQueryManifestInformation
38SxsUninstallW
lib/libc/mingw/lib-common/tapiperf.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file TAPIPERF.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY TAPIPERF.dll
8EXPORTS
9CloseTapiPerformanceData
10CollectTapiPerformanceData
11OpenTapiPerformanceData
lib/libc/mingw/lib-common/tsbyuv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file TSBYUV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY TSBYUV.dll
8EXPORTS
9DriverProc
lib/libc/mingw/lib-common/ucrtbase.def.in created+2662
......@@ -0,0 +1,2662 @@
1LIBRARY "ucrtbase.dll"
2EXPORTS
3
4#include "func.def.in"
5#define UCRTBASE
6#include "msvcrt-common.def.in"
7
8#ifdef DEF_I386
9_CIacos
10_CIasin
11_CIatan
12_CIatan2
13_CIcos
14_CIcosh
15_CIexp
16_CIfmod
17_CIlog
18_CIlog10
19_CIpow
20_CIsin
21_CIsinh
22_CIsqrt
23_CItan
24_CItanh
25#endif
26_Cbuild
27_Cmulcc
28_Cmulcr
29_CreateFrameInfo
30F_I386(_CxxThrowException@8)
31F_NON_I386(_CxxThrowException)
32F_I386(_EH_prolog)
33_Exit
34_FCbuild
35_FCmulcc
36_FCmulcr
37_FindAndUnlinkFrame
38_GetImageBase
39_GetThrowImageBase
40_Getdays
41_Getmonths
42_Gettnames
43_IsExceptionObjectToBeDestroyed
44_LCbuild
45_LCmulcc
46_LCmulcr
47_SetImageBase
48_SetThrowImageBase
49_NLG_Dispatch2
50_NLG_Return
51_NLG_Return2
52_SetWinRTOutOfMemoryExceptionCallback
53_Strftime
54_W_Getdays
55_W_Getmonths
56_W_Gettnames
57_Wcsftime
58__AdjustPointer
59__BuildCatchObject
60__BuildCatchObjectHelper
61F_NON_I386(__C_specific_handler)
62__CxxDetectRethrow
63__CxxExceptionFilter
64__CxxFrameHandler
65__CxxFrameHandler2
66__CxxFrameHandler3
67F_I386(__CxxLongjmpUnwind@4)
68__CxxQueryExceptionSize
69__CxxRegisterExceptionObject
70__CxxUnregisterExceptionObject
71__DestructExceptionObject
72__FrameUnwindFilter
73__GetPlatformExceptionInfo
74__NLG_Dispatch2
75__NLG_Return2
76__RTCastToVoid
77__RTDynamicCast
78__RTtypeid
79__TypeMatch
80___lc_codepage_func
81___lc_collate_cp_func
82___lc_locale_name_func
83___mb_cur_max_func
84___mb_cur_max_l_func
85__acrt_iob_func
86__conio_common_vcprintf
87__conio_common_vcprintf_p
88__conio_common_vcprintf_s
89__conio_common_vcscanf
90__conio_common_vcwprintf
91__conio_common_vcwprintf_p
92__conio_common_vcwprintf_s
93__conio_common_vcwscanf
94F_I386(__control87_2)
95__current_exception
96__current_exception_context
97__daylight
98__dcrt_get_wide_environment_from_os
99__dcrt_initial_narrow_environment
100__doserrno
101__dstbias
102__fpe_flt_rounds
103__fpecode
104__initialize_lconv_for_unsigned_char
105__lconv_init == __initialize_lconv_for_unsigned_char
106__intrinsic_abnormal_termination
107__intrinsic_setjmp
108F64(__intrinsic_setjmpex)
109__isascii
110__iscsym
111__iscsymf
112__iswcsym
113__iswcsymf
114#ifdef DEF_I386
115__libm_sse2_acos
116__libm_sse2_acosf
117__libm_sse2_asin
118__libm_sse2_asinf
119__libm_sse2_atan
120__libm_sse2_atan2
121__libm_sse2_atanf
122__libm_sse2_cos
123__libm_sse2_cosf
124__libm_sse2_exp
125__libm_sse2_expf
126__libm_sse2_log
127__libm_sse2_log10
128__libm_sse2_log10f
129__libm_sse2_logf
130__libm_sse2_pow
131__libm_sse2_powf
132__libm_sse2_sin
133__libm_sse2_sinf
134__libm_sse2_tan
135__libm_sse2_tanf
136#endif
137__p___argc
138__p___argv
139__p___wargv
140__p__acmdln
141__p__commode
142__p__environ
143__p__fmode
144__p__mbcasemap
145__p__mbctype
146__p__pgmptr
147__p__wcmdln
148__p__wenviron
149__p__wpgmptr
150__pctype_func
151__processing_throw
152__pwctype_func
153__pxcptinfoptrs
154__report_gsfailure
155__setusermatherr
156__std_exception_copy
157__std_exception_destroy
158__std_type_info_compare
159__std_type_info_destroy_list
160__std_type_info_hash
161__std_type_info_name
162__stdio_common_vfprintf
163__stdio_common_vfprintf_p
164__stdio_common_vfprintf_s
165__stdio_common_vfscanf
166__stdio_common_vfwprintf
167__stdio_common_vfwprintf_p
168__stdio_common_vfwprintf_s
169__stdio_common_vfwscanf
170__stdio_common_vsnprintf_s
171__stdio_common_vsnwprintf_s
172__stdio_common_vsprintf
173__stdio_common_vsprintf_p
174__stdio_common_vsprintf_s
175__stdio_common_vsscanf
176__stdio_common_vswprintf
177__stdio_common_vswprintf_p
178__stdio_common_vswprintf_s
179__stdio_common_vswscanf
180__strncnt
181__sys_errlist
182__sys_nerr
183__threadhandle
184__threadid
185__timezone
186__toascii
187__tzname
188__unDName
189__unDNameEx
190__uncaught_exception
191__wcserror
192__wcserror_s
193__wcsncnt
194_abs64
195_access
196_access_s
197_aligned_free
198_aligned_malloc
199_aligned_msize
200_aligned_offset_malloc
201_aligned_offset_realloc
202_aligned_offset_recalloc
203_aligned_realloc
204_aligned_recalloc
205; DATA set manually
206_assert
207_atodbl
208_atodbl_l
209_atof_l
210_atoflt
211_atoflt_l
212_atoi64
213_atoi64_l
214_atoi_l
215_atol_l
216_atoldbl
217_atoldbl_l
218_atoll_l
219_beep
220_beginthread
221_beginthreadex
222_byteswap_uint64
223_byteswap_ulong
224_byteswap_ushort
225_c_exit
226; DATA set manually
227_cabs DATA
228_callnewh
229_calloc_base
230_cexit
231_cgets
232_cgets_s
233_cgetws
234_cgetws_s
235_chdir
236_chdrive
237_chgsign
238_chgsignf
239F_I386(_chkesp)
240_chmod
241_chsize
242_chsize_s
243_clearfp
244_close
245_commit
246_configthreadlocale
247_configure_narrow_argv
248_configure_wide_argv
249_control87
250_controlfp
251_controlfp_s
252_copysign
253_copysignf
254_cputs
255_cputws
256_creat
257_create_locale
258_crt_at_quick_exit
259_crt_atexit
260_crt_debugger_hook
261_ctime32
262_ctime32_s
263_ctime64
264_ctime64_s
265_cwait
266_d_int
267_dclass
268_dexp
269_difftime32
270_difftime64
271_dlog
272_dnorm
273_dpcomp
274_dpoly
275_dscale
276_dsign
277_dsin
278_dtest
279_dunscale
280_dup
281_dup2
282_dupenv_s
283_ecvt
284_ecvt_s
285_endthread
286_endthreadex
287_eof
288_errno
289_except1
290F_I386(_except_handler2)
291F_I386(_except_handler3)
292F_I386(_except_handler4_common)
293_execl
294_execle
295_execlp
296_execlpe
297_execute_onexit_table
298_execv
299_execve
300_execvp
301_execvpe
302_exit
303_expand
304_fclose_nolock
305_fcloseall
306_fcvt
307_fcvt_s
308_fd_int
309_fdclass
310_fdexp
311_fdlog
312_fdnorm
313_fdopen
314_fdpcomp
315_fdpoly
316_fdscale
317_fdsign
318_fdsin
319_fdtest
320_fdunscale
321_fflush_nolock
322_fgetc_nolock
323_fgetchar
324_fgetwc_nolock
325_fgetwchar
326_filelength
327_filelengthi64
328_fileno
329_findclose
330_findfirst == _findfirst64
331_findfirst32
332_findfirst32i64
333_findfirst64
334_findfirst64i32
335_findnext == _findnext64
336_findnext32
337_findnext32i64
338_findnext64
339_findnext64i32
340_finite
341F_NON_I386(_finitef)
342_flushall
343_fpclass
344_fpclassf
345F_NON_I386(_fpieee_flt)
346; DATA added manually
347_fpreset DATA
348_fputc_nolock
349_fputchar
350_fputwc_nolock
351_fputwchar
352_fread_nolock
353_fread_nolock_s
354_free_base
355_free_locale
356_fseek_nolock
357_fseeki64
358_fseeki64_nolock
359_fsopen
360_fstat32
361_fstat32i64
362_fstat64
363_fstat64i32
364_ftell_nolock
365_ftelli64
366_ftelli64_nolock
367_ftime == _ftime64
368_ftime32
369_ftime32_s
370_ftime64
371_ftime64_s
372F_I386(_ftol)
373_fullpath
374_futime == _futime64
375_futime32
376_futime64
377_fwrite_nolock
378_gcvt
379_gcvt_s
380_get_FMA3_enable
381_get_current_locale
382_get_daylight
383_get_doserrno
384_get_dstbias
385_get_errno
386_get_fmode
387_get_heap_handle
388_get_initial_narrow_environment
389_get_initial_wide_environment
390_get_invalid_parameter_handler
391_get_narrow_winmain_command_line
392_get_osfhandle
393_get_pgmptr
394_get_printf_count_output
395_get_purecall_handler
396_get_stream_buffer_pointers
397_get_terminate
398_get_thread_local_invalid_parameter_handler
399_get_timezone
400_get_tzname
401_get_unexpected
402_get_wide_winmain_command_line
403_get_wpgmptr
404_getc_nolock
405_getch
406_getch_nolock
407_getche
408_getche_nolock
409_getcwd
410_getdcwd
411_getdiskfree
412_getdllprocaddr
413_getdrive
414_getdrives
415_getmaxstdio
416_getmbcp
417_getpid
418_getsystime
419_getw
420_getwc_nolock
421_getwch
422_getwch_nolock
423_getwche
424_getwche_nolock
425_getws
426_getws_s
427F_I386(_global_unwind2)
428_gmtime32
429_gmtime32_s
430_gmtime64
431_gmtime64_s
432_heapchk
433_heapmin
434_heapwalk
435_hypot
436_hypotf
437_i64toa
438_i64toa_s
439_i64tow
440_i64tow_s
441_initialize_narrow_environment
442_initialize_onexit_table
443_initialize_wide_environment
444_initterm
445_initterm_e
446_invalid_parameter_noinfo
447_invalid_parameter_noinfo_noreturn
448_invoke_watson
449_is_exception_typeof
450_isalnum_l
451_isalpha_l
452_isatty
453_isblank_l
454_iscntrl_l
455_isctype
456_isctype_l
457_isdigit_l
458_isgraph_l
459_isleadbyte_l
460_islower_l
461_ismbbalnum
462_ismbbalnum_l
463_ismbbalpha
464_ismbbalpha_l
465_ismbbblank
466_ismbbblank_l
467_ismbbgraph
468_ismbbgraph_l
469_ismbbkalnum
470_ismbbkalnum_l
471_ismbbkana
472_ismbbkana_l
473_ismbbkprint
474_ismbbkprint_l
475_ismbbkpunct
476_ismbbkpunct_l
477_ismbblead
478_ismbblead_l
479_ismbbprint
480_ismbbprint_l
481_ismbbpunct
482_ismbbpunct_l
483_ismbbtrail
484_ismbbtrail_l
485_ismbcalnum
486_ismbcalnum_l
487_ismbcalpha
488_ismbcalpha_l
489_ismbcblank
490_ismbcblank_l
491_ismbcdigit
492_ismbcdigit_l
493_ismbcgraph
494_ismbcgraph_l
495_ismbchira
496_ismbchira_l
497_ismbckata
498_ismbckata_l
499_ismbcl0
500_ismbcl0_l
501_ismbcl1
502_ismbcl1_l
503_ismbcl2
504_ismbcl2_l
505_ismbclegal
506_ismbclegal_l
507_ismbclower
508_ismbclower_l
509_ismbcprint
510_ismbcprint_l
511_ismbcpunct
512_ismbcpunct_l
513_ismbcspace
514_ismbcspace_l
515_ismbcsymbol
516_ismbcsymbol_l
517_ismbcupper
518_ismbcupper_l
519_ismbslead
520_ismbslead_l
521_ismbstrail
522_ismbstrail_l
523_isnan
524F_X64(_isnanf)
525_isprint_l
526_ispunct_l
527_isspace_l
528_isupper_l
529_iswalnum_l
530_iswalpha_l
531_iswblank_l
532_iswcntrl_l
533_iswcsym_l
534_iswcsymf_l
535_iswctype_l
536_iswdigit_l
537_iswgraph_l
538_iswlower_l
539_iswprint_l
540_iswpunct_l
541_iswspace_l
542_iswupper_l
543_iswxdigit_l
544_isxdigit_l
545_itoa
546_itoa_s
547_itow
548_itow_s
549_j0
550_j1
551_jn
552_kbhit
553_ld_int
554_ldclass
555_ldexp
556_ldlog
557_ldpcomp
558_ldpoly
559_ldscale
560_ldsign
561_ldsin
562_ldtest
563_ldunscale
564_lfind
565_lfind_s
566#ifdef DEF_I386
567_libm_sse2_acos_precise
568_libm_sse2_asin_precise
569_libm_sse2_atan_precise
570_libm_sse2_cos_precise
571_libm_sse2_exp_precise
572_libm_sse2_log10_precise
573_libm_sse2_log_precise
574_libm_sse2_pow_precise
575_libm_sse2_sin_precise
576_libm_sse2_sqrt_precise
577_libm_sse2_tan_precise
578#endif
579_loaddll
580F_X64(_local_unwind)
581F_I386(_local_unwind2)
582F_I386(_local_unwind4)
583_localtime32
584_localtime32_s
585_localtime64
586_localtime64_s
587_lock_file
588_lock_locales
589_locking
590_logb
591F_NON_I386(_logbf)
592F_I386(_longjmpex)
593_lrotl
594_lrotr
595_lsearch
596_lsearch_s
597_lseek
598_lseeki64
599_ltoa
600_ltoa_s
601_ltow
602_ltow_s
603_makepath
604_makepath_s
605_malloc_base
606_mbbtombc
607_mbbtombc_l
608_mbbtype
609_mbbtype_l
610; DATA added manually
611_mbcasemap DATA
612_mbccpy
613_mbccpy_l
614_mbccpy_s
615_mbccpy_s_l
616_mbcjistojms
617_mbcjistojms_l
618_mbcjmstojis
619_mbcjmstojis_l
620_mbclen
621_mbclen_l
622_mbctohira
623_mbctohira_l
624_mbctokata
625_mbctokata_l
626_mbctolower
627_mbctolower_l
628_mbctombb
629_mbctombb_l
630_mbctoupper
631_mbctoupper_l
632_mblen_l
633_mbsbtype
634_mbsbtype_l
635_mbscat_s
636_mbscat_s_l
637_mbschr
638_mbschr_l
639_mbscmp
640_mbscmp_l
641_mbscoll
642_mbscoll_l
643_mbscpy_s
644_mbscpy_s_l
645_mbscspn
646_mbscspn_l
647_mbsdec
648_mbsdec_l
649_mbsdup
650_mbsicmp
651_mbsicmp_l
652_mbsicoll
653_mbsicoll_l
654_mbsinc
655_mbsinc_l
656_mbslen
657_mbslen_l
658_mbslwr
659_mbslwr_l
660_mbslwr_s
661_mbslwr_s_l
662_mbsnbcat
663_mbsnbcat_l
664_mbsnbcat_s
665_mbsnbcat_s_l
666_mbsnbcmp
667_mbsnbcmp_l
668_mbsnbcnt
669_mbsnbcnt_l
670_mbsnbcoll
671_mbsnbcoll_l
672_mbsnbcpy
673_mbsnbcpy_l
674_mbsnbcpy_s
675_mbsnbcpy_s_l
676_mbsnbicmp
677_mbsnbicmp_l
678_mbsnbicoll
679_mbsnbicoll_l
680_mbsnbset
681_mbsnbset_l
682_mbsnbset_s
683_mbsnbset_s_l
684_mbsncat
685_mbsncat_l
686_mbsncat_s
687_mbsncat_s_l
688_mbsnccnt
689_mbsnccnt_l
690_mbsncmp
691_mbsncmp_l
692_mbsncoll
693_mbsncoll_l
694_mbsncpy
695_mbsncpy_l
696_mbsncpy_s
697_mbsncpy_s_l
698_mbsnextc
699_mbsnextc_l
700_mbsnicmp
701_mbsnicmp_l
702_mbsnicoll
703_mbsnicoll_l
704_mbsninc
705_mbsninc_l
706_mbsnlen
707_mbsnlen_l
708_mbsnset
709_mbsnset_l
710_mbsnset_s
711_mbsnset_s_l
712_mbspbrk
713_mbspbrk_l
714_mbsrchr
715_mbsrchr_l
716_mbsrev
717_mbsrev_l
718_mbsset
719_mbsset_l
720_mbsset_s
721_mbsset_s_l
722_mbsspn
723_mbsspn_l
724_mbsspnp
725_mbsspnp_l
726_mbsstr
727_mbsstr_l
728_mbstok
729_mbstok_l
730_mbstok_s
731_mbstok_s_l
732_mbstowcs_l
733_mbstowcs_s_l
734_mbstrlen
735_mbstrlen_l
736_mbstrnlen
737_mbstrnlen_l
738_mbsupr
739_mbsupr_l
740_mbsupr_s
741_mbsupr_s_l
742_mbtowc_l
743_memccpy
744_memicmp
745_memicmp_l
746_mkdir
747_mkgmtime32
748_mkgmtime64
749_mktemp
750_mktemp_s
751_mktime32
752_mktime64
753_msize
754_nextafter
755F_X64(_nextafterf)
756_o__CIacos
757_o__CIasin
758_o__CIatan
759_o__CIatan2
760_o__CIcos
761_o__CIcosh
762_o__CIexp
763_o__CIfmod
764_o__CIlog
765_o__CIlog10
766_o__CIpow
767_o__CIsin
768_o__CIsinh
769_o__CIsqrt
770_o__CItan
771_o__CItanh
772_o__Getdays
773_o__Getmonths
774_o__Gettnames
775_o__Strftime
776_o__W_Getdays
777_o__W_Getmonths
778_o__W_Gettnames
779_o__Wcsftime
780_o____lc_codepage_func
781_o____lc_collate_cp_func
782_o____lc_locale_name_func
783_o____mb_cur_max_func
784_o___acrt_iob_func
785_o___conio_common_vcprintf
786_o___conio_common_vcprintf_p
787_o___conio_common_vcprintf_s
788_o___conio_common_vcscanf
789_o___conio_common_vcwprintf
790_o___conio_common_vcwprintf_p
791_o___conio_common_vcwprintf_s
792_o___conio_common_vcwscanf
793_o___daylight
794_o___dstbias
795_o___fpe_flt_rounds
796_o___libm_sse2_acos
797_o___libm_sse2_acosf
798_o___libm_sse2_asin
799_o___libm_sse2_asinf
800_o___libm_sse2_atan
801_o___libm_sse2_atan2
802_o___libm_sse2_atanf
803_o___libm_sse2_cos
804_o___libm_sse2_cosf
805_o___libm_sse2_exp
806_o___libm_sse2_expf
807_o___libm_sse2_log
808_o___libm_sse2_log10
809_o___libm_sse2_log10f
810_o___libm_sse2_logf
811_o___libm_sse2_pow
812_o___libm_sse2_powf
813_o___libm_sse2_sin
814_o___libm_sse2_sinf
815_o___libm_sse2_tan
816_o___libm_sse2_tanf
817_o___p___argc
818_o___p___argv
819_o___p___wargv
820_o___p__acmdln
821_o___p__commode
822_o___p__environ
823_o___p__fmode
824_o___p__mbcasemap
825_o___p__mbctype
826_o___p__pgmptr
827_o___p__wcmdln
828_o___p__wenviron
829_o___p__wpgmptr
830_o___pctype_func
831_o___pwctype_func
832_o___std_exception_copy
833_o___std_exception_destroy
834_o___std_type_info_destroy_list
835_o___std_type_info_name
836_o___stdio_common_vfprintf
837_o___stdio_common_vfprintf_p
838_o___stdio_common_vfprintf_s
839_o___stdio_common_vfscanf
840_o___stdio_common_vfwprintf
841_o___stdio_common_vfwprintf_p
842_o___stdio_common_vfwprintf_s
843_o___stdio_common_vfwscanf
844_o___stdio_common_vsnprintf_s
845_o___stdio_common_vsnwprintf_s
846_o___stdio_common_vsprintf
847_o___stdio_common_vsprintf_p
848_o___stdio_common_vsprintf_s
849_o___stdio_common_vsscanf
850_o___stdio_common_vswprintf
851_o___stdio_common_vswprintf_p
852_o___stdio_common_vswprintf_s
853_o___stdio_common_vswscanf
854_o___timezone
855_o___tzname
856_o___wcserror
857_o__access
858_o__access_s
859_o__aligned_free
860_o__aligned_malloc
861_o__aligned_msize
862_o__aligned_offset_malloc
863_o__aligned_offset_realloc
864_o__aligned_offset_recalloc
865_o__aligned_realloc
866_o__aligned_recalloc
867_o__atodbl
868_o__atodbl_l
869_o__atof_l
870_o__atoflt
871_o__atoflt_l
872_o__atoi64
873_o__atoi64_l
874_o__atoi_l
875_o__atol_l
876_o__atoldbl
877_o__atoldbl_l
878_o__atoll_l
879_o__beep
880_o__beginthread
881_o__beginthreadex
882_o__cabs
883_o__callnewh
884_o__calloc_base
885_o__cexit
886_o__cgets
887_o__cgets_s
888_o__cgetws
889_o__cgetws_s
890_o__chdir
891_o__chdrive
892_o__chmod
893_o__chsize
894_o__chsize_s
895_o__close
896_o__commit
897_o__configthreadlocale
898_o__configure_narrow_argv
899_o__configure_wide_argv
900_o__controlfp_s
901_o__cputs
902_o__cputws
903_o__creat
904_o__create_locale
905_o__crt_atexit
906_o__ctime32_s
907_o__ctime64_s
908_o__cwait
909_o__d_int
910_o__dclass
911_o__difftime32
912_o__difftime64
913_o__dlog
914_o__dnorm
915_o__dpcomp
916_o__dpoly
917_o__dscale
918_o__dsign
919_o__dsin
920_o__dtest
921_o__dunscale
922_o__dup
923_o__dup2
924_o__dupenv_s
925_o__ecvt
926_o__ecvt_s
927_o__endthread
928_o__endthreadex
929_o__eof
930_o__errno
931_o__except1
932_o__execute_onexit_table
933_o__execv
934_o__execve
935_o__execvp
936_o__execvpe
937_o__exit
938_o__expand
939_o__fclose_nolock
940_o__fcloseall
941_o__fcvt
942_o__fcvt_s
943_o__fd_int
944_o__fdclass
945_o__fdexp
946_o__fdlog
947_o__fdopen
948_o__fdpcomp
949_o__fdpoly
950_o__fdscale
951_o__fdsign
952_o__fdsin
953_o__fflush_nolock
954_o__fgetc_nolock
955_o__fgetchar
956_o__fgetwc_nolock
957_o__fgetwchar
958_o__filelength
959_o__filelengthi64
960_o__fileno
961_o__findclose
962_o__findfirst32
963_o__findfirst32i64
964_o__findfirst64
965_o__findfirst64i32
966_o__findnext32
967_o__findnext32i64
968_o__findnext64
969_o__findnext64i32
970_o__flushall
971_o__fpclass
972_o__fpclassf
973_o__fputc_nolock
974_o__fputchar
975_o__fputwc_nolock
976_o__fputwchar
977_o__fread_nolock
978_o__fread_nolock_s
979_o__free_base
980_o__free_locale
981_o__fseek_nolock
982_o__fseeki64
983_o__fseeki64_nolock
984_o__fsopen
985_o__fstat32
986_o__fstat32i64
987_o__fstat64
988_o__fstat64i32
989_o__ftell_nolock
990_o__ftelli64
991_o__ftelli64_nolock
992_o__ftime32
993_o__ftime32_s
994_o__ftime64
995_o__ftime64_s
996_o__fullpath
997_o__futime32
998_o__futime64
999_o__fwrite_nolock
1000_o__gcvt
1001_o__gcvt_s
1002_o__get_daylight
1003_o__get_doserrno
1004_o__get_dstbias
1005_o__get_errno
1006_o__get_fmode
1007_o__get_heap_handle
1008_o__get_initial_narrow_environment
1009_o__get_initial_wide_environment
1010_o__get_invalid_parameter_handler
1011_o__get_narrow_winmain_command_line
1012_o__get_osfhandle
1013_o__get_pgmptr
1014_o__get_stream_buffer_pointers
1015_o__get_terminate
1016_o__get_thread_local_invalid_parameter_handler
1017_o__get_timezone
1018_o__get_tzname
1019_o__get_wide_winmain_command_line
1020_o__get_wpgmptr
1021_o__getc_nolock
1022_o__getch
1023_o__getch_nolock
1024_o__getche
1025_o__getche_nolock
1026_o__getcwd
1027_o__getdcwd
1028_o__getdiskfree
1029_o__getdllprocaddr
1030_o__getdrive
1031_o__getdrives
1032_o__getmbcp
1033_o__getsystime
1034_o__getw
1035_o__getwc_nolock
1036_o__getwch
1037_o__getwch_nolock
1038_o__getwche
1039_o__getwche_nolock
1040_o__getws
1041_o__getws_s
1042_o__gmtime32
1043_o__gmtime32_s
1044_o__gmtime64
1045_o__gmtime64_s
1046_o__heapchk
1047_o__heapmin
1048_o__hypot
1049_o__hypotf
1050_o__i64toa
1051_o__i64toa_s
1052_o__i64tow
1053_o__i64tow_s
1054_o__initialize_narrow_environment
1055_o__initialize_onexit_table
1056_o__initialize_wide_environment
1057_o__invalid_parameter_noinfo
1058_o__invalid_parameter_noinfo_noreturn
1059_o__isatty
1060_o__isctype
1061_o__isctype_l
1062_o__isleadbyte_l
1063_o__ismbbalnum
1064_o__ismbbalnum_l
1065_o__ismbbalpha
1066_o__ismbbalpha_l
1067_o__ismbbblank
1068_o__ismbbblank_l
1069_o__ismbbgraph
1070_o__ismbbgraph_l
1071_o__ismbbkalnum
1072_o__ismbbkalnum_l
1073_o__ismbbkana
1074_o__ismbbkana_l
1075_o__ismbbkprint
1076_o__ismbbkprint_l
1077_o__ismbbkpunct
1078_o__ismbbkpunct_l
1079_o__ismbblead
1080_o__ismbblead_l
1081_o__ismbbprint
1082_o__ismbbprint_l
1083_o__ismbbpunct
1084_o__ismbbpunct_l
1085_o__ismbbtrail
1086_o__ismbbtrail_l
1087_o__ismbcalnum
1088_o__ismbcalnum_l
1089_o__ismbcalpha
1090_o__ismbcalpha_l
1091_o__ismbcblank
1092_o__ismbcblank_l
1093_o__ismbcdigit
1094_o__ismbcdigit_l
1095_o__ismbcgraph
1096_o__ismbcgraph_l
1097_o__ismbchira
1098_o__ismbchira_l
1099_o__ismbckata
1100_o__ismbckata_l
1101_o__ismbcl0
1102_o__ismbcl0_l
1103_o__ismbcl1
1104_o__ismbcl1_l
1105_o__ismbcl2
1106_o__ismbcl2_l
1107_o__ismbclegal
1108_o__ismbclegal_l
1109_o__ismbclower
1110_o__ismbclower_l
1111_o__ismbcprint
1112_o__ismbcprint_l
1113_o__ismbcpunct
1114_o__ismbcpunct_l
1115_o__ismbcspace
1116_o__ismbcspace_l
1117_o__ismbcsymbol
1118_o__ismbcsymbol_l
1119_o__ismbcupper
1120_o__ismbcupper_l
1121_o__ismbslead
1122_o__ismbslead_l
1123_o__ismbstrail
1124_o__ismbstrail_l
1125_o__iswctype_l
1126_o__itoa
1127_o__itoa_s
1128_o__itow
1129_o__itow_s
1130_o__j0
1131_o__j1
1132_o__jn
1133_o__kbhit
1134_o__ld_int
1135_o__ldclass
1136_o__ldexp
1137_o__ldlog
1138_o__ldpcomp
1139_o__ldpoly
1140_o__ldscale
1141_o__ldsign
1142_o__ldsin
1143_o__ldtest
1144_o__ldunscale
1145_o__lfind
1146_o__lfind_s
1147_o__libm_sse2_acos_precise
1148_o__libm_sse2_asin_precise
1149_o__libm_sse2_atan_precise
1150_o__libm_sse2_cos_precise
1151_o__libm_sse2_exp_precise
1152_o__libm_sse2_log10_precise
1153_o__libm_sse2_log_precise
1154_o__libm_sse2_pow_precise
1155_o__libm_sse2_sin_precise
1156_o__libm_sse2_sqrt_precise
1157_o__libm_sse2_tan_precise
1158_o__loaddll
1159_o__localtime32
1160_o__localtime32_s
1161_o__localtime64
1162_o__localtime64_s
1163_o__lock_file
1164_o__locking
1165_o__logb
1166_o__logbf
1167_o__lsearch
1168_o__lsearch_s
1169_o__lseek
1170_o__lseeki64
1171_o__ltoa
1172_o__ltoa_s
1173_o__ltow
1174_o__ltow_s
1175_o__makepath
1176_o__makepath_s
1177_o__malloc_base
1178_o__mbbtombc
1179_o__mbbtombc_l
1180_o__mbbtype
1181_o__mbbtype_l
1182_o__mbccpy
1183_o__mbccpy_l
1184_o__mbccpy_s
1185_o__mbccpy_s_l
1186_o__mbcjistojms
1187_o__mbcjistojms_l
1188_o__mbcjmstojis
1189_o__mbcjmstojis_l
1190_o__mbclen
1191_o__mbclen_l
1192_o__mbctohira
1193_o__mbctohira_l
1194_o__mbctokata
1195_o__mbctokata_l
1196_o__mbctolower
1197_o__mbctolower_l
1198_o__mbctombb
1199_o__mbctombb_l
1200_o__mbctoupper
1201_o__mbctoupper_l
1202_o__mblen_l
1203_o__mbsbtype
1204_o__mbsbtype_l
1205_o__mbscat_s
1206_o__mbscat_s_l
1207_o__mbschr
1208_o__mbschr_l
1209_o__mbscmp
1210_o__mbscmp_l
1211_o__mbscoll
1212_o__mbscoll_l
1213_o__mbscpy_s
1214_o__mbscpy_s_l
1215_o__mbscspn
1216_o__mbscspn_l
1217_o__mbsdec
1218_o__mbsdec_l
1219_o__mbsicmp
1220_o__mbsicmp_l
1221_o__mbsicoll
1222_o__mbsicoll_l
1223_o__mbsinc
1224_o__mbsinc_l
1225_o__mbslen
1226_o__mbslen_l
1227_o__mbslwr
1228_o__mbslwr_l
1229_o__mbslwr_s
1230_o__mbslwr_s_l
1231_o__mbsnbcat
1232_o__mbsnbcat_l
1233_o__mbsnbcat_s
1234_o__mbsnbcat_s_l
1235_o__mbsnbcmp
1236_o__mbsnbcmp_l
1237_o__mbsnbcnt
1238_o__mbsnbcnt_l
1239_o__mbsnbcoll
1240_o__mbsnbcoll_l
1241_o__mbsnbcpy
1242_o__mbsnbcpy_l
1243_o__mbsnbcpy_s
1244_o__mbsnbcpy_s_l
1245_o__mbsnbicmp
1246_o__mbsnbicmp_l
1247_o__mbsnbicoll
1248_o__mbsnbicoll_l
1249_o__mbsnbset
1250_o__mbsnbset_l
1251_o__mbsnbset_s
1252_o__mbsnbset_s_l
1253_o__mbsncat
1254_o__mbsncat_l
1255_o__mbsncat_s
1256_o__mbsncat_s_l
1257_o__mbsnccnt
1258_o__mbsnccnt_l
1259_o__mbsncmp
1260_o__mbsncmp_l
1261_o__mbsncoll
1262_o__mbsncoll_l
1263_o__mbsncpy
1264_o__mbsncpy_l
1265_o__mbsncpy_s
1266_o__mbsncpy_s_l
1267_o__mbsnextc
1268_o__mbsnextc_l
1269_o__mbsnicmp
1270_o__mbsnicmp_l
1271_o__mbsnicoll
1272_o__mbsnicoll_l
1273_o__mbsninc
1274_o__mbsninc_l
1275_o__mbsnlen
1276_o__mbsnlen_l
1277_o__mbsnset
1278_o__mbsnset_l
1279_o__mbsnset_s
1280_o__mbsnset_s_l
1281_o__mbspbrk
1282_o__mbspbrk_l
1283_o__mbsrchr
1284_o__mbsrchr_l
1285_o__mbsrev
1286_o__mbsrev_l
1287_o__mbsset
1288_o__mbsset_l
1289_o__mbsset_s
1290_o__mbsset_s_l
1291_o__mbsspn
1292_o__mbsspn_l
1293_o__mbsspnp
1294_o__mbsspnp_l
1295_o__mbsstr
1296_o__mbsstr_l
1297_o__mbstok
1298_o__mbstok_l
1299_o__mbstok_s
1300_o__mbstok_s_l
1301_o__mbstowcs_l
1302_o__mbstowcs_s_l
1303_o__mbstrlen
1304_o__mbstrlen_l
1305_o__mbstrnlen
1306_o__mbstrnlen_l
1307_o__mbsupr
1308_o__mbsupr_l
1309_o__mbsupr_s
1310_o__mbsupr_s_l
1311_o__mbtowc_l
1312_o__memicmp
1313_o__memicmp_l
1314_o__mkdir
1315_o__mkgmtime32
1316_o__mkgmtime64
1317_o__mktemp
1318_o__mktemp_s
1319_o__mktime32
1320_o__mktime64
1321_o__msize
1322_o__nextafter
1323_o__nextafterf
1324_o__open_osfhandle
1325_o__pclose
1326_o__pipe
1327_o__popen
1328_o__purecall
1329_o__putc_nolock
1330_o__putch
1331_o__putch_nolock
1332_o__putenv
1333_o__putenv_s
1334_o__putw
1335_o__putwc_nolock
1336_o__putwch
1337_o__putwch_nolock
1338_o__putws
1339_o__read
1340_o__realloc_base
1341_o__recalloc
1342_o__register_onexit_function
1343_o__resetstkoflw
1344_o__rmdir
1345_o__rmtmp
1346_o__scalb
1347_o__scalbf
1348_o__searchenv
1349_o__searchenv_s
1350_o__seh_filter_dll
1351_o__seh_filter_exe
1352_o__set_abort_behavior
1353_o__set_app_type
1354_o__set_doserrno
1355_o__set_errno
1356_o__set_fmode
1357_o__set_invalid_parameter_handler
1358_o__set_new_handler
1359_o__set_new_mode
1360_o__set_thread_local_invalid_parameter_handler
1361_o__seterrormode
1362_o__setmbcp
1363_o__setmode
1364_o__setsystime
1365_o__sleep
1366_o__sopen
1367_o__sopen_dispatch
1368_o__sopen_s
1369_o__spawnv
1370_o__spawnve
1371_o__spawnvp
1372_o__spawnvpe
1373_o__splitpath
1374_o__splitpath_s
1375_o__stat32
1376_o__stat32i64
1377_o__stat64
1378_o__stat64i32
1379_o__strcoll_l
1380_o__strdate
1381_o__strdate_s
1382_o__strdup
1383_o__strerror
1384_o__strerror_s
1385_o__strftime_l
1386_o__stricmp
1387_o__stricmp_l
1388_o__stricoll
1389_o__stricoll_l
1390_o__strlwr
1391_o__strlwr_l
1392_o__strlwr_s
1393_o__strlwr_s_l
1394_o__strncoll
1395_o__strncoll_l
1396_o__strnicmp
1397_o__strnicmp_l
1398_o__strnicoll
1399_o__strnicoll_l
1400_o__strnset_s
1401_o__strset_s
1402_o__strtime
1403_o__strtime_s
1404_o__strtod_l
1405_o__strtof_l
1406_o__strtoi64
1407_o__strtoi64_l
1408_o__strtol_l
1409_o__strtold_l
1410_o__strtoll_l
1411_o__strtoui64
1412_o__strtoui64_l
1413_o__strtoul_l
1414_o__strtoull_l
1415_o__strupr
1416_o__strupr_l
1417_o__strupr_s
1418_o__strupr_s_l
1419_o__strxfrm_l
1420_o__swab
1421_o__tell
1422_o__telli64
1423_o__timespec32_get
1424_o__timespec64_get
1425_o__tolower
1426_o__tolower_l
1427_o__toupper
1428_o__toupper_l
1429_o__towlower_l
1430_o__towupper_l
1431_o__tzset
1432_o__ui64toa
1433_o__ui64toa_s
1434_o__ui64tow
1435_o__ui64tow_s
1436_o__ultoa
1437_o__ultoa_s
1438_o__ultow
1439_o__ultow_s
1440_o__umask
1441_o__umask_s
1442_o__ungetc_nolock
1443_o__ungetch
1444_o__ungetch_nolock
1445_o__ungetwc_nolock
1446_o__ungetwch
1447_o__ungetwch_nolock
1448_o__unlink
1449_o__unloaddll
1450_o__unlock_file
1451_o__utime32
1452_o__utime64
1453_o__waccess
1454_o__waccess_s
1455_o__wasctime
1456_o__wasctime_s
1457_o__wchdir
1458_o__wchmod
1459_o__wcreat
1460_o__wcreate_locale
1461_o__wcscoll_l
1462_o__wcsdup
1463_o__wcserror
1464_o__wcserror_s
1465_o__wcsftime_l
1466_o__wcsicmp
1467_o__wcsicmp_l
1468_o__wcsicoll
1469_o__wcsicoll_l
1470_o__wcslwr
1471_o__wcslwr_l
1472_o__wcslwr_s
1473_o__wcslwr_s_l
1474_o__wcsncoll
1475_o__wcsncoll_l
1476_o__wcsnicmp
1477_o__wcsnicmp_l
1478_o__wcsnicoll
1479_o__wcsnicoll_l
1480_o__wcsnset
1481_o__wcsnset_s
1482_o__wcsset
1483_o__wcsset_s
1484_o__wcstod_l
1485_o__wcstof_l
1486_o__wcstoi64
1487_o__wcstoi64_l
1488_o__wcstol_l
1489_o__wcstold_l
1490_o__wcstoll_l
1491_o__wcstombs_l
1492_o__wcstombs_s_l
1493_o__wcstoui64
1494_o__wcstoui64_l
1495_o__wcstoul_l
1496_o__wcstoull_l
1497_o__wcsupr
1498_o__wcsupr_l
1499_o__wcsupr_s
1500_o__wcsupr_s_l
1501_o__wcsxfrm_l
1502_o__wctime32
1503_o__wctime32_s
1504_o__wctime64
1505_o__wctime64_s
1506_o__wctomb_l
1507_o__wctomb_s_l
1508_o__wdupenv_s
1509_o__wexecv
1510_o__wexecve
1511_o__wexecvp
1512_o__wexecvpe
1513_o__wfdopen
1514_o__wfindfirst32
1515_o__wfindfirst32i64
1516_o__wfindfirst64
1517_o__wfindfirst64i32
1518_o__wfindnext32
1519_o__wfindnext32i64
1520_o__wfindnext64
1521_o__wfindnext64i32
1522_o__wfopen
1523_o__wfopen_s
1524_o__wfreopen
1525_o__wfreopen_s
1526_o__wfsopen
1527_o__wfullpath
1528_o__wgetcwd
1529_o__wgetdcwd
1530_o__wgetenv
1531_o__wgetenv_s
1532_o__wmakepath
1533_o__wmakepath_s
1534_o__wmkdir
1535_o__wmktemp
1536_o__wmktemp_s
1537_o__wperror
1538_o__wpopen
1539_o__wputenv
1540_o__wputenv_s
1541_o__wremove
1542_o__wrename
1543_o__write
1544_o__wrmdir
1545_o__wsearchenv
1546_o__wsearchenv_s
1547_o__wsetlocale
1548_o__wsopen_dispatch
1549_o__wsopen_s
1550_o__wspawnv
1551_o__wspawnve
1552_o__wspawnvp
1553_o__wspawnvpe
1554_o__wsplitpath
1555_o__wsplitpath_s
1556_o__wstat32
1557_o__wstat32i64
1558_o__wstat64
1559_o__wstat64i32
1560_o__wstrdate
1561_o__wstrdate_s
1562_o__wstrtime
1563_o__wstrtime_s
1564_o__wsystem
1565_o__wtmpnam_s
1566_o__wtof
1567_o__wtof_l
1568_o__wtoi
1569_o__wtoi64
1570_o__wtoi64_l
1571_o__wtoi_l
1572_o__wtol
1573_o__wtol_l
1574_o__wtoll
1575_o__wtoll_l
1576_o__wunlink
1577_o__wutime32
1578_o__wutime64
1579_o__y0
1580_o__y1
1581_o__yn
1582_o_abort
1583_o_acos
1584_o_acosf
1585_o_acosh
1586_o_acoshf
1587_o_acoshl
1588_o_asctime
1589_o_asctime_s
1590_o_asin
1591_o_asinf
1592_o_asinh
1593_o_asinhf
1594_o_asinhl
1595_o_atan
1596_o_atan2
1597_o_atan2f
1598_o_atanf
1599_o_atanh
1600_o_atanhf
1601_o_atanhl
1602_o_atof
1603_o_atoi
1604_o_atol
1605_o_atoll
1606_o_bsearch
1607_o_bsearch_s
1608_o_btowc
1609_o_calloc
1610_o_cbrt
1611_o_cbrtf
1612_o_ceil
1613_o_ceilf
1614_o_clearerr
1615_o_clearerr_s
1616_o_cos
1617_o_cosf
1618_o_cosh
1619_o_coshf
1620_o_erf
1621_o_erfc
1622_o_erfcf
1623_o_erfcl
1624_o_erff
1625_o_erfl
1626_o_exit
1627_o_exp
1628_o_exp2
1629_o_exp2f
1630_o_exp2l
1631_o_expf
1632_o_fabs
1633_o_fclose
1634_o_feof
1635_o_ferror
1636_o_fflush
1637_o_fgetc
1638_o_fgetpos
1639_o_fgets
1640_o_fgetwc
1641_o_fgetws
1642_o_floor
1643_o_floorf
1644_o_fma
1645_o_fmaf
1646_o_fmal
1647_o_fmod
1648_o_fmodf
1649_o_fopen
1650_o_fopen_s
1651_o_fputc
1652_o_fputs
1653_o_fputwc
1654_o_fputws
1655_o_fread
1656_o_fread_s
1657_o_free
1658_o_freopen
1659_o_freopen_s
1660_o_frexp
1661_o_fseek
1662_o_fsetpos
1663_o_ftell
1664_o_fwrite
1665_o_getc
1666_o_getchar
1667_o_getenv
1668_o_getenv_s
1669_o_gets
1670_o_gets_s
1671_o_getwc
1672_o_getwchar
1673_o_hypot
1674_o_is_wctype
1675_o_isalnum
1676_o_isalpha
1677_o_isblank
1678_o_iscntrl
1679_o_isdigit
1680_o_isgraph
1681_o_isleadbyte
1682_o_islower
1683_o_isprint
1684_o_ispunct
1685_o_isspace
1686_o_isupper
1687_o_iswalnum
1688_o_iswalpha
1689_o_iswascii
1690_o_iswblank
1691_o_iswcntrl
1692_o_iswctype
1693_o_iswdigit
1694_o_iswgraph
1695_o_iswlower
1696_o_iswprint
1697_o_iswpunct
1698_o_iswspace
1699_o_iswupper
1700_o_iswxdigit
1701_o_isxdigit
1702_o_ldexp
1703_o_lgamma
1704_o_lgammaf
1705_o_lgammal
1706_o_llrint
1707_o_llrintf
1708_o_llrintl
1709_o_llround
1710_o_llroundf
1711_o_llroundl
1712_o_localeconv
1713_o_log
1714_o_log10
1715_o_log10f
1716_o_log1p
1717_o_log1pf
1718_o_log1pl
1719_o_log2
1720_o_log2f
1721_o_log2l
1722_o_logb
1723_o_logbf
1724_o_logbl
1725_o_logf
1726_o_lrint
1727_o_lrintf
1728_o_lrintl
1729_o_lround
1730_o_lroundf
1731_o_lroundl
1732_o_malloc
1733_o_mblen
1734_o_mbrlen
1735_o_mbrtoc16
1736_o_mbrtoc32
1737_o_mbrtowc
1738_o_mbsrtowcs
1739_o_mbsrtowcs_s
1740_o_mbstowcs
1741_o_mbstowcs_s
1742_o_mbtowc
1743_o_memcpy_s
1744_o_memset
1745_o_modf
1746_o_modff
1747_o_nan
1748_o_nanf
1749_o_nanl
1750_o_nearbyint
1751_o_nearbyintf
1752_o_nearbyintl
1753_o_nextafter
1754_o_nextafterf
1755_o_nextafterl
1756_o_nexttoward
1757_o_nexttowardf
1758_o_nexttowardl
1759_o_pow
1760_o_powf
1761_o_putc
1762_o_putchar
1763_o_puts
1764_o_putwc
1765_o_putwchar
1766_o_qsort
1767_o_qsort_s
1768_o_raise
1769_o_rand
1770_o_rand_s
1771_o_realloc
1772_o_remainder
1773_o_remainderf
1774_o_remainderl
1775_o_remove
1776_o_remquo
1777_o_remquof
1778_o_remquol
1779_o_rename
1780_o_rewind
1781_o_rint
1782_o_rintf
1783_o_rintl
1784_o_round
1785_o_roundf
1786_o_roundl
1787_o_scalbln
1788_o_scalblnf
1789_o_scalblnl
1790_o_scalbn
1791_o_scalbnf
1792_o_scalbnl
1793_o_set_terminate
1794_o_setbuf
1795_o_setlocale
1796_o_setvbuf
1797_o_sin
1798_o_sinf
1799_o_sinh
1800_o_sinhf
1801_o_sqrt
1802_o_sqrtf
1803_o_srand
1804_o_strcat_s
1805_o_strcoll
1806_o_strcpy_s
1807_o_strerror
1808_o_strerror_s
1809_o_strftime
1810_o_strncat_s
1811_o_strncpy_s
1812_o_strtod
1813_o_strtof
1814_o_strtok
1815_o_strtok_s
1816_o_strtol
1817_o_strtold
1818_o_strtoll
1819_o_strtoul
1820_o_strtoull
1821_o_system
1822_o_tan
1823_o_tanf
1824_o_tanh
1825_o_tanhf
1826_o_terminate
1827_o_tgamma
1828_o_tgammaf
1829_o_tgammal
1830_o_tmpfile_s
1831_o_tmpnam_s
1832_o_tolower
1833_o_toupper
1834_o_towlower
1835_o_towupper
1836_o_ungetc
1837_o_ungetwc
1838_o_wcrtomb
1839_o_wcrtomb_s
1840_o_wcscat_s
1841_o_wcscoll
1842_o_wcscpy
1843_o_wcscpy_s
1844_o_wcsftime
1845_o_wcsncat_s
1846_o_wcsncpy_s
1847_o_wcsrtombs
1848_o_wcsrtombs_s
1849_o_wcstod
1850_o_wcstof
1851_o_wcstok
1852_o_wcstok_s
1853_o_wcstol
1854_o_wcstold
1855_o_wcstoll
1856_o_wcstombs
1857_o_wcstombs_s
1858_o_wcstoul
1859_o_wcstoull
1860_o_wctob
1861_o_wctomb
1862_o_wctomb_s
1863_o_wmemcpy_s
1864_o_wmemmove_s
1865_open
1866_open_osfhandle
1867_pclose
1868_pipe
1869_popen
1870_purecall
1871_putc_nolock
1872_putch
1873_putch_nolock
1874_putenv
1875_putenv_s
1876_putw
1877_putwc_nolock
1878_putwch
1879_putwch_nolock
1880_putws
1881_query_app_type
1882_query_new_handler
1883_query_new_mode
1884_read
1885_realloc_base
1886_recalloc
1887_register_onexit_function
1888_register_thread_local_exe_atexit_callback
1889_resetstkoflw
1890_rmdir
1891_rmtmp
1892_rotl
1893_rotl64
1894_rotr
1895_rotr64
1896_scalb
1897F_X64(_scalbf)
1898_searchenv
1899_searchenv_s
1900_seh_filter_dll
1901_seh_filter_exe
1902F64(_set_FMA3_enable)
1903F_I386(_seh_longjmp_unwind4@4)
1904F_I386(_seh_longjmp_unwind@4)
1905F_I386(_set_SSE2_enable)
1906_set_abort_behavior
1907_set_app_type
1908__set_app_type == _set_app_type
1909_set_controlfp
1910_set_doserrno
1911_set_errno
1912_set_error_mode
1913_set_fmode
1914_set_invalid_parameter_handler
1915_set_new_handler
1916_set_new_mode
1917_set_printf_count_output
1918_set_purecall_handler
1919_set_se_translator
1920_set_thread_local_invalid_parameter_handler
1921_seterrormode
1922F_I386(_setjmp3)
1923_setmaxstdio
1924_setmbcp
1925_setmode
1926_setsystime
1927_sleep
1928_sopen
1929_sopen_dispatch
1930_sopen_s
1931_spawnl
1932_spawnle
1933_spawnlp
1934_spawnlpe
1935_spawnv
1936_spawnve
1937_spawnvp
1938_spawnvpe
1939_splitpath
1940_splitpath_s
1941_stat32
1942_stat32i64
1943_stat64
1944_stat64i32
1945_statusfp
1946F_I386(_statusfp2)
1947_strcmpi == _stricmp
1948_strcoll_l
1949_strdate
1950_strdate_s
1951_strdup
1952_strerror
1953_strerror_s
1954_strftime_l
1955_stricmp
1956_stricmp_l
1957_stricoll
1958_stricoll_l
1959_strlwr
1960_strlwr_l
1961_strlwr_s
1962_strlwr_s_l
1963_strncoll
1964_strncoll_l
1965_strnicmp
1966_strnicmp_l
1967_strnicoll
1968_strnicoll_l
1969_strnset
1970_strnset_s
1971_strrev
1972_strset
1973_strset_s
1974_strtime
1975_strtime_s
1976_strtod_l
1977_strtof_l
1978_strtoi64
1979_strtoi64_l
1980_strtoimax_l
1981_strtol_l
1982_strtold_l
1983_strtoll_l
1984_strtoui64
1985_strtoui64_l
1986_strtoul_l
1987_strtoull_l
1988_strtoumax_l
1989_strupr
1990_strupr_l
1991_strupr_s
1992_strupr_s_l
1993_strxfrm_l
1994_swab
1995_tell
1996_telli64
1997_tempnam
1998_time32
1999_time64
2000_timespec32_get
2001_timespec64_get
2002_tolower
2003_tolower_l
2004_toupper
2005_toupper_l
2006_towlower_l
2007_towupper_l
2008; This is wrapped in the compat code.
2009_tzset DATA
2010_ui64toa
2011_ui64toa_s
2012_ui64tow
2013_ui64tow_s
2014_ultoa
2015_ultoa_s
2016_ultow
2017_ultow_s
2018_umask
2019_umask_s
2020_ungetc_nolock
2021_ungetch
2022_ungetch_nolock
2023_ungetwc_nolock
2024_ungetwch
2025_ungetwch_nolock
2026_unlink
2027_unloaddll
2028_unlock_file
2029_unlock_locales
2030_utime == _utime64
2031_utime32
2032_utime64
2033_waccess
2034_waccess_s
2035_wasctime
2036_wasctime_s
2037_wassert
2038_wchdir
2039_wchmod
2040_wcreat
2041_wcreate_locale
2042_wcscoll_l
2043_wcsdup
2044_wcserror
2045_wcserror_s
2046_wcsftime_l
2047_wcsicmp
2048_wcsicmp_l
2049_wcsicoll
2050_wcsicoll_l
2051_wcslwr
2052_wcslwr_l
2053_wcslwr_s
2054_wcslwr_s_l
2055_wcsncoll
2056_wcsncoll_l
2057_wcsnicmp
2058_wcsnicmp_l
2059_wcsnicoll
2060_wcsnicoll_l
2061_wcsnset
2062_wcsnset_s
2063_wcsrev
2064_wcsset
2065_wcsset_s
2066_wcstod_l
2067_wcstof_l
2068_wcstoi64
2069_wcstoi64_l
2070_wcstoimax_l
2071_wcstol_l
2072_wcstold_l
2073_wcstoll_l
2074_wcstombs_l
2075_wcstombs_s_l
2076_wcstoui64
2077_wcstoui64_l
2078_wcstoul_l
2079_wcstoull_l
2080_wcstoumax_l
2081_wcsupr
2082_wcsupr_l
2083_wcsupr_s
2084_wcsupr_s_l
2085_wcsxfrm_l
2086_wctime32
2087_wctime32_s
2088_wctime64
2089_wctime64_s
2090_wctomb_l
2091_wctomb_s_l
2092_wctype
2093_wdupenv_s
2094_wexecl
2095_wexecle
2096_wexeclp
2097_wexeclpe
2098_wexecv
2099_wexecve
2100_wexecvp
2101_wexecvpe
2102_wfdopen
2103_wfindfirst32
2104_wfindfirst32i64
2105_wfindfirst64
2106_wfindfirst64i32
2107_wfindnext32
2108_wfindnext32i64
2109_wfindnext64
2110_wfindnext64i32
2111_wfopen
2112_wfopen_s
2113_wfreopen
2114_wfreopen_s
2115_wfsopen
2116_wfullpath
2117_wgetcwd
2118_wgetdcwd
2119_wgetenv
2120_wgetenv_s
2121_wmakepath
2122_wmakepath_s
2123_wmkdir
2124_wmktemp
2125_wmktemp_s
2126_wopen
2127_wperror
2128_wpopen
2129_wputenv
2130_wputenv_s
2131_wremove
2132_wrename
2133_write
2134_wrmdir
2135_wsearchenv
2136_wsearchenv_s
2137_wsetlocale
2138_wsopen
2139_wsopen_dispatch
2140_wsopen_s
2141_wspawnl
2142_wspawnle
2143_wspawnlp
2144_wspawnlpe
2145_wspawnv
2146_wspawnve
2147_wspawnvp
2148_wspawnvpe
2149_wsplitpath
2150_wsplitpath_s
2151_wstat32
2152_wstat32i64
2153_wstat64
2154_wstat64i32
2155_wstrdate
2156_wstrdate_s
2157_wstrtime
2158_wstrtime_s
2159_wsystem
2160_wtempnam
2161_wtmpnam
2162_wtmpnam_s
2163_wtof
2164_wtof_l
2165_wtoi
2166_wtoi64
2167_wtoi64_l
2168_wtoi_l
2169_wtol
2170_wtol_l
2171_wtoll
2172_wtoll_l
2173_wunlink
2174_wutime == _wutime64
2175_wutime32
2176_wutime64
2177_y0
2178_y1
2179_yn
2180abort
2181abs
2182acos
2183F_NON_I386(acosf)
2184F_ARM_ANY(acosl == acos)
2185acosh
2186acoshf
2187acoshl F_X86_ANY(DATA)
2188asctime
2189asctime_s
2190asin
2191F_NON_I386(asinf)
2192F_ARM_ANY(asinl == asin)
2193asinh
2194asinhf
2195asinhl F_X86_ANY(DATA)
2196atan
2197atan2
2198F_NON_I386(atan2f)
2199F_ARM_ANY(atan2l == atan2)
2200F_NON_I386(atanf)
2201F_ARM_ANY(atanl == atan)
2202atanh
2203atanhf
2204atanhl F_X86_ANY(DATA)
2205atof
2206atoi
2207atol
2208atoll
2209bsearch
2210bsearch_s
2211btowc
2212c16rtomb
2213c32rtomb
2214cabs
2215cabsf
2216cabsl
2217cacos
2218cacosf
2219cacosh
2220cacoshf
2221cacoshl
2222cacosl
2223calloc
2224carg
2225cargf
2226cargl
2227casin
2228casinf
2229casinh
2230casinhf
2231casinhl
2232casinl
2233catan
2234catanf
2235catanh
2236catanhf
2237catanhl
2238catanl
2239cbrt
2240cbrtf
2241cbrtl F_X86_ANY(DATA)
2242ccos
2243ccosf
2244ccosh
2245ccoshf
2246ccoshl
2247ccosl
2248ceil
2249F_NON_I386(ceilf)
2250F_ARM_ANY(ceill == ceil)
2251cexp
2252cexpf
2253cexpl
2254cimag
2255cimagf
2256cimagl
2257clearerr
2258clearerr_s
2259clock
2260clog
2261clog10
2262clog10f
2263clog10l
2264clogf
2265clogl
2266conj
2267conjf
2268conjl
2269copysign
2270copysignf
2271copysignl F_X86_ANY(DATA)
2272cos
2273F_NON_I386(cosf)
2274F_ARM_ANY(cosl == cos)
2275cosh
2276F_NON_I386(coshf)
2277cpow
2278cpowf
2279cpowl
2280cproj
2281cprojf
2282cprojl
2283creal
2284crealf
2285creall
2286csin
2287csinf
2288csinh
2289csinhf
2290csinhl
2291csinl
2292csqrt
2293csqrtf
2294csqrtl
2295ctan
2296ctanf
2297ctanh
2298ctanhf
2299ctanhl
2300ctanl
2301div
2302erf
2303erfc
2304erfcf
2305erfcl F_X86_ANY(DATA)
2306erff
2307erfl F_X86_ANY(DATA)
2308exit
2309exp
2310exp2
2311exp2f
2312exp2l F_X86_ANY(DATA)
2313F_NON_I386(expf)
2314F_ARM_ANY(expl == exp)
2315expm1
2316expm1f
2317expm1l F_X86_ANY(DATA)
2318fabs
2319F_ARM_ANY(fabsf)
2320fclose
2321fdim
2322fdimf
2323fdiml F_X86_ANY(DATA)
2324; Don't use the float env functions from UCRT; fesetround doesn't seem to have
2325; any effect on the FPU control word as required by other libmingwex math
2326; routines.
2327feclearexcept DATA
2328fegetenv DATA
2329fegetexceptflag DATA
2330fegetround DATA
2331feholdexcept DATA
2332feof
2333ferror
2334fesetenv DATA
2335fesetexceptflag DATA
2336fesetround DATA
2337fetestexcept DATA
2338fflush
2339fgetc
2340fgetpos
2341fgets
2342fgetwc
2343fgetws
2344floor
2345F_NON_I386(floorf)
2346F_ARM_ANY(floorl == floor)
2347fma
2348fmaf
2349fmal F_X86_ANY(DATA)
2350fmax
2351fmaxf
2352fmaxl F_X86_ANY(DATA)
2353fmin
2354fminf
2355fminl F_X86_ANY(DATA)
2356fmod
2357F_NON_I386(fmodf)
2358F_ARM_ANY(fmodl == fmod)
2359fopen
2360fopen_s
2361fputc
2362fputs
2363fputwc
2364fputws
2365fread
2366fread_s
2367free
2368freopen
2369freopen_s
2370frexp
2371fseek
2372fsetpos
2373ftell
2374fwrite
2375getc
2376getchar
2377getenv
2378getenv_s
2379gets
2380gets_s
2381getwc
2382getwchar
2383hypot
2384ilogb
2385ilogbf
2386ilogbl F_X86_ANY(DATA)
2387imaxabs
2388imaxdiv
2389is_wctype
2390isalnum
2391isalpha
2392isblank
2393iscntrl
2394isdigit
2395isgraph
2396isleadbyte
2397islower
2398isprint
2399ispunct
2400isspace
2401isupper
2402iswalnum
2403iswalpha
2404iswascii
2405iswblank
2406iswcntrl
2407iswctype
2408iswdigit
2409iswgraph
2410iswlower
2411iswprint
2412iswpunct
2413iswspace
2414iswupper
2415iswxdigit
2416isxdigit
2417labs
2418ldexp
2419ldiv
2420; The UCRT lgamma functions don't set/provide the signgam variable like
2421; the mingw ones do. Therefore prefer the libmingwex version instead.
2422lgamma DATA
2423lgammaf DATA
2424lgammal DATA
2425llabs
2426lldiv
2427llrint
2428llrintf
2429llrintl F_X86_ANY(DATA)
2430llround
2431llroundf
2432llroundl F_X86_ANY(DATA)
2433localeconv
2434log
2435log10
2436F_NON_I386(log10f)
2437F_ARM_ANY(log10l == log10)
2438log1p
2439log1pf
2440log1pl F_X86_ANY(DATA)
2441log2
2442log2f
2443log2l F_X86_ANY(DATA)
2444logb
2445logbf
2446logbl F_X86_ANY(DATA)
2447F_NON_I386(logf)
2448F_ARM_ANY(logl == log)
2449longjmp
2450lrint
2451lrintf
2452lrintl F_X86_ANY(DATA)
2453lround
2454lroundf
2455lroundl F_X86_ANY(DATA)
2456malloc
2457mblen
2458mbrlen
2459mbrtoc16
2460mbrtoc32
2461mbrtowc
2462mbsrtowcs
2463mbsrtowcs_s
2464mbstowcs
2465mbstowcs_s
2466mbtowc
2467memchr
2468memcmp
2469memcpy
2470memcpy_s
2471memmove
2472memmove_s
2473memset
2474modf
2475F_NON_I386(modff)
2476nan
2477nanf
2478nanl F_X86_ANY(DATA)
2479nearbyint
2480nearbyintf
2481nearbyintl F_X86_ANY(DATA)
2482nextafter
2483nextafterf
2484nextafterl F_X86_ANY(DATA)
2485; All of the nexttoward functions take the second parameter as long doubke,
2486; making them unusable for x86.
2487nexttoward F_X86_ANY(DATA)
2488nexttowardf F_X86_ANY(DATA)
2489nexttowardl F_X86_ANY(DATA)
2490norm
2491normf
2492norml
2493perror
2494pow
2495F_NON_I386(powf)
2496F_ARM_ANY(powl == pow)
2497putc
2498putchar
2499puts
2500putwc
2501putwchar
2502qsort
2503qsort_s
2504quick_exit
2505raise
2506rand
2507rand_s
2508realloc
2509remainder
2510remainderf
2511remainderl F_X86_ANY(DATA)
2512remove
2513remquo
2514remquof
2515remquol F_X86_ANY(DATA)
2516rename
2517rewind
2518rint
2519rintf
2520rintl F_X86_ANY(DATA)
2521round
2522roundf
2523roundl F_X86_ANY(DATA)
2524scalbln
2525scalblnf
2526scalblnl F_X86_ANY(DATA)
2527scalbn
2528scalbnf
2529scalbnl F_X86_ANY(DATA)
2530set_terminate
2531set_unexpected
2532setbuf
2533F_X64(setjmp)
2534setlocale
2535setvbuf
2536signal
2537sin
2538F_NON_I386(sinf)
2539F_ARM_ANY(sinl == sin)
2540; if we implement sinh, we can set it DATA only.
2541sinh
2542F_NON_I386(sinhf)
2543sqrt
2544F_NON_I386(sqrtf)
2545srand
2546strcat
2547strcat_s
2548strchr
2549strcmp
2550strcmpi == _stricmp
2551strcoll
2552strcpy
2553strcpy_s
2554strcspn
2555strerror
2556strerror_s
2557strftime
2558strlen
2559strncat
2560strncat_s
2561strncmp
2562strncpy
2563strncpy_s
2564; strnlen replaced by emu
2565strpbrk
2566strrchr
2567strspn
2568strstr
2569strtod
2570strtof
2571strtoimax
2572strtok
2573strtok_s
2574strtol
2575; Can't use long double functions from the CRT on x86
2576F_ARM_ANY(strtold)
2577strtoll
2578strtoul
2579strtoull
2580strtoumax
2581strxfrm
2582system
2583tan
2584F_NON_I386(tanf)
2585F_ARM_ANY(tanl == tan)
2586; if we implement tanh, we can set it to DATA only.
2587tanh
2588F_NON_I386(tanhf)
2589terminate
2590tgamma
2591tgammaf
2592tgammal F_X86_ANY(DATA)
2593tmpfile
2594tmpfile_s
2595tmpnam
2596tmpnam_s
2597tolower
2598toupper
2599towctrans
2600towlower
2601towupper
2602trunc
2603truncf
2604truncl F_X86_ANY(DATA)
2605unexpected
2606ungetc
2607ungetwc
2608utime == _utime64
2609wcrtomb
2610wcrtomb_s
2611wcscat
2612wcscat_s
2613wcschr
2614wcscmp
2615wcscoll
2616wcscpy
2617wcscpy_s
2618wcscspn
2619wcsftime
2620wcslen
2621wcsncat
2622wcsncat_s
2623wcsncmp
2624wcsncpy
2625wcsncpy_s
2626; We provide replacement implementation in libmingwex
2627wcsnlen DATA
2628wcspbrk
2629wcsrchr
2630wcsrtombs
2631wcsrtombs_s
2632wcsspn
2633wcsstr
2634wcstod
2635wcstof
2636wcstoimax
2637wcstok
2638wcstok_s
2639wcstol
2640; Can't use long double functions from the CRT on x86
2641F_ARM_ANY(wcstold)
2642wcstoll
2643wcstombs
2644wcstombs_s
2645wcstoul
2646wcstoull
2647wcstoumax
2648wcsxfrm
2649wctob
2650wctomb
2651wctomb_s
2652wctrans
2653wctype
2654wmemcpy_s
2655wmemmove_s
2656; These functions may satisfy configure scripts.
2657ctime == _ctime64
2658gmtime == _gmtime64
2659localtime == _localtime64
2660mktime == _mktime64
2661time == _time64
2662timespec_get == _timespec64_get
lib/libc/mingw/lib-common/uiautomationcore.def created+106
......@@ -0,0 +1,106 @@
1;
2; Definition file of UIAutomationCore.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "UIAutomationCore.DLL"
7EXPORTS
8DockPattern_SetDockPosition
9ExpandCollapsePattern_Collapse
10ExpandCollapsePattern_Expand
11GridPattern_GetItem
12InitializeChannelBasedConnectionForProviderProxy
13InvokePattern_Invoke
14ItemContainerPattern_FindItemByProperty
15LegacyIAccessiblePattern_DoDefaultAction
16LegacyIAccessiblePattern_GetIAccessible
17LegacyIAccessiblePattern_Select
18LegacyIAccessiblePattern_SetValue
19MultipleViewPattern_GetViewName
20MultipleViewPattern_SetCurrentView
21RangeValuePattern_SetValue
22ScrollItemPattern_ScrollIntoView
23ScrollPattern_Scroll
24ScrollPattern_SetScrollPercent
25SelectionItemPattern_AddToSelection
26SelectionItemPattern_RemoveFromSelection
27SelectionItemPattern_Select
28SynchronizedInputPattern_Cancel
29SynchronizedInputPattern_StartListening
30TextPattern_GetSelection
31TextPattern_GetVisibleRanges
32TextPattern_RangeFromChild
33TextPattern_RangeFromPoint
34TextPattern_get_DocumentRange
35TextPattern_get_SupportedTextSelection
36TextRange_AddToSelection
37TextRange_Clone
38TextRange_Compare
39TextRange_CompareEndpoints
40TextRange_ExpandToEnclosingUnit
41TextRange_FindAttribute
42TextRange_FindText
43TextRange_GetAttributeValue
44TextRange_GetBoundingRectangles
45TextRange_GetChildren
46TextRange_GetEnclosingElement
47TextRange_GetText
48TextRange_Move
49TextRange_MoveEndpointByRange
50TextRange_MoveEndpointByUnit
51TextRange_RemoveFromSelection
52TextRange_ScrollIntoView
53TextRange_Select
54TogglePattern_Toggle
55TransformPattern_Move
56TransformPattern_Resize
57TransformPattern_Rotate
58UiaAddEvent
59UiaClientsAreListening
60UiaDisconnectAllProviders
61UiaDisconnectProvider
62UiaEventAddWindow
63UiaEventRemoveWindow
64UiaFind
65UiaGetErrorDescription
66UiaGetPatternProvider
67UiaGetPropertyValue
68UiaGetReservedMixedAttributeValue
69UiaGetReservedNotSupportedValue
70UiaGetRootNode
71UiaGetRuntimeId
72UiaGetUpdatedCache
73UiaHPatternObjectFromVariant
74UiaHTextRangeFromVariant
75UiaHUiaNodeFromVariant
76UiaHasServerSideProvider
77UiaHostProviderFromHwnd
78UiaIAccessibleFromProvider
79UiaLookupId
80UiaNavigate
81UiaNodeFromFocus
82UiaNodeFromHandle
83UiaNodeFromPoint
84UiaNodeFromProvider
85UiaNodeRelease
86UiaPatternRelease
87UiaProviderForNonClient
88UiaProviderFromIAccessible
89UiaRaiseActiveTextPositionChangedEvent
90UiaRaiseAsyncContentLoadedEvent
91UiaRaiseAutomationEvent
92UiaRaiseAutomationPropertyChangedEvent
93UiaRaiseChangesEvent
94UiaRaiseNotificationEvent
95UiaRaiseStructureChangedEvent
96UiaRaiseTextEditTextChangedEvent
97UiaRegisterProviderCallback
98UiaRemoveEvent
99UiaReturnRawElementProvider
100UiaSetFocus
101UiaTextRangeRelease
102ValuePattern_SetValue
103VirtualizedItemPattern_Realize
104WindowPattern_Close
105WindowPattern_SetWindowVisualState
106WindowPattern_WaitForInputIdle
lib/libc/mingw/lib-common/umdmxfrm.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file umdmxfrm.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY umdmxfrm.dll
8EXPORTS
9GetXformInfo
lib/libc/mingw/lib-common/unimdmat.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file UNIMDMAT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY UNIMDMAT.dll
8EXPORTS
9UmInitializeModemDriver
10UmDeinitializeModemDriver
11UmOpenModem
12UmCloseModem
13UmInitModem
14UmMonitorModem
15UmAnswerModem
16UmDialModem
17UmHangupModem
18UmGenerateDigit
19UmSetSpeakerPhoneState
20UmDuplicateDeviceHandle
21UmAbortCurrentModemCommand
22UmSetPassthroughMode
23UmIssueCommand
24UmWaveAction
25UmLogStringA
26UmGetDiagnostics
27UmLogDiagnostics
lib/libc/mingw/lib-common/uniplat.def created+34
......@@ -0,0 +1,34 @@
1;
2; Exports of file uniplat.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY uniplat.dll
8EXPORTS
9UmPlatformInitialize
10UmPlatformDeinitialize
11UnimodemReadFileEx
12UnimodemWriteFileEx
13UnimodemDeviceIoControlEx
14UnimodemWaitCommEventEx
15UnimodemQueueUserAPC
16CreateUnimodemTimer
17FreeUnimodemTimer
18SetUnimodemTimer
19CancelUnimodemTimer
20CreateOverStructPool
21DestroyOverStructPool
22AllocateOverStructEx
23FreeOverStruct
24ReinitOverStruct
25SyncDeviceIoControl
26WinntIsWorkstation
27UnimodemNotifyTSP
28StartMonitorThread
29StopMonitorThread
30MonitorHandle
31StopMonitoringHandle
32CallBeginning
33CallEnding
34ResetCallCount
lib/libc/mingw/lib-common/upnp.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file UPnP.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY UPnP.DLL
8EXPORTS
9HrRehydratorCreateServiceObject
10HrRehydratorInvokeServiceAction
11DllCanUnloadNow
12DllGetClassObject
13DllRegisterServer
14DllUnregisterServer
lib/libc/mingw/lib-common/url.def created+29
......@@ -0,0 +1,29 @@
1;
2; Exports of file URL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY URL.dll
8EXPORTS
9AddMIMEFileTypesPS
10AutodialHookCallback
11DllCanUnloadNow
12DllGetClassObject
13FileProtocolHandler
14FileProtocolHandlerA
15InetIsOffline
16MIMEAssociationDialogA
17MIMEAssociationDialogW
18MailToProtocolHandler
19MailToProtocolHandlerA
20NewsProtocolHandler
21NewsProtocolHandlerA
22OpenURL
23OpenURLA
24TelnetProtocolHandler
25TelnetProtocolHandlerA
26TranslateURLA
27TranslateURLW
28URLAssociationDialogA
29URLAssociationDialogW
lib/libc/mingw/lib-common/user32.def.in-1
......@@ -338,7 +338,6 @@ GetDpiForSystem
338338GetDpiForWindow
339339GetFocus
340340GetForegroundWindow
341GetGUIThreadInfo
342341GetGestureConfig
343342GetGestureExtraArgs
344343GetGestureInfo
lib/libc/mingw/lib-common/userenv.def+21-1
......@@ -8,13 +8,27 @@ EXPORTS
88RsopLoggingEnabled
99AreThereVisibleLogoffScripts
1010AreThereVisibleShutdownScripts
11CheckDirectoryOwnership
12CheckXForestLogon
13CopyProfileDirectoryEx2
1114CreateAppContainerProfile
15CreateAppContainerProfileInternal
16CreateDirectoryJunctionsForSystem
17CreateDirectoryJunctionsForUserProfile
1218CreateEnvironmentBlock
19CreateGroupEx
20CreateLinkFileEx
1321CreateProfile
1422DeleteAppContainerProfile
23DeleteAppContainerProfileInternal
24DeleteGroup
25DeleteLinkFile
1526DeleteProfileA
27DeleteProfileDirectory
28DeleteProfileDirectory2
1629DeleteProfileW
1730DeriveAppContainerSidFromAppContainerName
31DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName
1832DestroyEnvironmentBlock
1933DllGetContractDescription
2034EnterCriticalPolicySection
......@@ -35,28 +49,34 @@ GetDefaultUserProfileDirectoryA
3549GetDefaultUserProfileDirectoryW
3650GetGPOListA
3751GetGPOListW
52GetLongProfilePathName
3853GetNextFgPolicyRefreshInfo
3954GetPreviousFgPolicyRefreshInfo
4055GetProfileType
4156GetProfilesDirectoryA
4257GetProfilesDirectoryW
4358GetUserProfileDirectoryA
59GetUserProfileDirectoryForUserSidW
4460GetUserProfileDirectoryW
4561HasPolicyForegroundProcessingCompleted
62IsAppContainerProfilePresentInternal
4663LeaveCriticalPolicySection
4764LoadUserProfileA
4865LoadUserProfileW
66LookupAppContainerDisplayName
67PingComputer
4968ProcessGroupPolicyCompleted
5069ProcessGroupPolicyCompletedEx
5170RefreshPolicy
5271RefreshPolicyEx
5372RegisterGPNotification
73RemapProfile
5474RsopAccessCheckByType
5575RsopFileAccessCheck
56RsopLoggingEnabled
5776RsopResetPolicySettingStatus
5877RsopSetPolicySettingStatus
5978UnloadUserProfile
6079UnregisterGPNotification
80UpdateAppContainerProfile
6181WaitForMachinePolicyForegroundProcessing
6282WaitForUserPolicyForegroundProcessing
lib/libc/mingw/lib-common/utildll.def created+44
......@@ -0,0 +1,44 @@
1;
2; Exports of file UTILDLL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY UTILDLL.dll
8EXPORTS
9AsyncDeviceEnumerate
10CachedGetUserFromSid
11CalculateDiffTime
12CalculateElapsedTime
13CompareElapsedTime
14ConfigureModem
15CtxGetAnyDCName
16CurrentDateTimeString
17DateTimeString
18ElapsedTimeString
19EnumerateMultiUserServers
20FormDecoratedAsyncDeviceName
21GetAssociatedPortName
22GetSystemMessageA
23GetSystemMessageW
24GetUnknownString
25GetUserFromSid
26HaveAnonymousUsersChanged
27InitializeAnonymousUserCompareList
28InstallModem
29IsPartOfDomain
30NetBIOSDeviceEnumerate
31NetworkDeviceEnumerate
32ParseDecoratedAsyncDeviceName
33QueryCurrentWinStation
34RegGetNetworkDeviceName
35RegGetNetworkServiceName
36SetupAsyncCdConfig
37StandardErrorMessage
38StrAsyncConnectState
39StrConnectState
40StrProcessState
41StrSdClass
42StrSystemWaitReason
43TestUserForAdmin
44WinEnumerateDevices
lib/libc/mingw/lib-common/vcruntime140_app.def.in created+96
......@@ -0,0 +1,96 @@
1LIBRARY vcruntime140_app
2
3EXPORTS
4
5#include "func.def.in"
6
7_CreateFrameInfo
8F_I386(_CxxThrowException@8)
9F_NON_I386(_CxxThrowException)
10F_I386(_EH_prolog)
11_FindAndUnlinkFrame
12_IsExceptionObjectToBeDestroyed
13F_I386(_NLG_Dispatch2)
14F_I386(_NLG_Return)
15F_I386(_NLG_Return2)
16_SetWinRTOutOfMemoryExceptionCallback
17__AdjustPointer
18__BuildCatchObject
19__BuildCatchObjectHelper
20F_NON_I386(__C_specific_handler)
21F_NON_I386(__C_specific_handler_noexcept)
22__CxxDetectRethrow
23__CxxExceptionFilter
24__CxxFrameHandler
25__CxxFrameHandler2
26__CxxFrameHandler3
27F_I386(__CxxLongjmpUnwind@4)
28__CxxQueryExceptionSize
29__CxxRegisterExceptionObject
30__CxxUnregisterExceptionObject
31__DestructExceptionObject
32__FrameUnwindFilter
33__GetPlatformExceptionInfo
34F_NON_I386(__NLG_Dispatch2)
35F_NON_I386(__NLG_Return2)
36__RTCastToVoid
37__RTDynamicCast
38__RTtypeid
39__TypeMatch
40__current_exception
41__current_exception_context
42F_X86_ANY(__intrinsic_setjmp)
43F_ARM32(__intrinsic_setjmp)
44F_NON_I386(__intrinsic_setjmpex)
45F_ARM32(__jump_unwind)
46__processing_throw
47__report_gsfailure
48__std_exception_copy
49__std_exception_destroy
50__std_terminate
51__std_type_info_compare
52__std_type_info_destroy_list
53__std_type_info_hash
54__std_type_info_name
55__telemetry_main_invoke_trigger
56__telemetry_main_return_trigger
57__unDName
58__unDNameEx
59__uncaught_exception
60__uncaught_exceptions
61__vcrt_GetModuleFileNameW
62__vcrt_GetModuleHandleW
63__vcrt_InitializeCriticalSectionEx
64__vcrt_LoadLibraryExW
65F_I386(_chkesp)
66F_I386(_except_handler2)
67F_I386(_except_handler3)
68F_I386(_except_handler4_common)
69_get_purecall_handler
70_get_unexpected
71F_I386(_global_unwind2)
72_is_exception_typeof
73F_I386(_local_unwind2)
74F_I386(_local_unwind4)
75F_I386(_longjmpex)
76F64(_local_unwind)
77_purecall
78F_I386(_seh_longjmp_unwind4@4)
79F_I386(_seh_longjmp_unwind@4)
80_set_purecall_handler
81_set_se_translator
82F_I386(_setjmp3)
83longjmp
84memchr
85memcmp
86memcpy
87memmove
88memset
89set_unexpected
90strchr
91strrchr
92strstr
93unexpected
94wcschr
95wcsrchr
96wcsstr
lib/libc/mingw/lib-common/w32time.def created+32
......@@ -0,0 +1,32 @@
1;
2; Definition file of w32time.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "w32time.dll"
7EXPORTS
8fnW32TmI_ScSetServiceBits DATA
9fnW32TmRegisterServiceCtrlHandlerEx DATA
10fnW32TmSetServiceStatus DATA
11SvchostEntry_W32Time
12SvchostPushServiceGlobals
13TimeProvClose
14TimeProvCommand
15TimeProvOpen
16W32TimeBufferFree
17W32TimeDcPromo
18W32TimeDeleteConfig
19W32TimeGetNetlogonServiceBits
20W32TimeLog
21W32TimeQueryConfig
22W32TimeQueryConfiguration
23W32TimeQueryHardwareProviderStatus
24W32TimeQueryNTPProviderStatus
25W32TimeQueryNtpProviderConfiguration
26W32TimeQuerySource
27W32TimeQueryStatus
28W32TimeSetConfig
29W32TimeSyncNow
30W32TimeVerifyJoinConfig
31W32TimeVerifyUnjoinConfig
32W32TmServiceMain
lib/libc/mingw/lib-common/w32topl.def created+87
......@@ -0,0 +1,87 @@
1;
2; Exports of file W32TOPL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY W32TOPL.dll
8EXPORTS
9ToplAddEdgeSetToGraph
10ToplAddEdgeToGraph
11ToplDeleteComponents
12ToplDeleteGraphState
13ToplDeleteSpanningTreeEdges
14ToplEdgeAssociate
15ToplEdgeCreate
16ToplEdgeDestroy
17ToplEdgeDisassociate
18ToplEdgeFree
19ToplEdgeGetFromVertex
20ToplEdgeGetToVertex
21ToplEdgeGetWeight
22ToplEdgeInit
23ToplEdgeSetFromVertex
24ToplEdgeSetToVertex
25ToplEdgeSetVtx
26ToplEdgeSetWeight
27ToplFree
28ToplGetAlwaysSchedule
29ToplGetSpanningTreeEdgesForVtx
30ToplGraphAddVertex
31ToplGraphCreate
32ToplGraphDestroy
33ToplGraphFindEdgesForMST
34ToplGraphFree
35ToplGraphInit
36ToplGraphMakeRing
37ToplGraphNumberOfVertices
38ToplGraphRemoveVertex
39ToplGraphSetVertexIter
40ToplHeapCreate
41ToplHeapDestroy
42ToplHeapExtractMin
43ToplHeapInsert
44ToplHeapIsElementOf
45ToplHeapIsEmpty
46ToplIsToplException
47ToplIterAdvance
48ToplIterCreate
49ToplIterFree
50ToplIterGetObject
51ToplListAddElem
52ToplListCreate
53ToplListFree
54ToplListNumberOfElements
55ToplListRemoveElem
56ToplListSetIter
57ToplMakeGraphState
58ToplPScheduleValid
59ToplSTHeapAdd
60ToplSTHeapCostReduced
61ToplSTHeapDestroy
62ToplSTHeapExtractMin
63ToplSTHeapInit
64ToplScheduleCacheCreate
65ToplScheduleCacheDestroy
66ToplScheduleCreate
67ToplScheduleDuration
68ToplScheduleExportReadonly
69ToplScheduleImport
70ToplScheduleIsEqual
71ToplScheduleMaxUnavailable
72ToplScheduleMerge
73ToplScheduleNumEntries
74ToplScheduleValid
75ToplSetAllocator
76ToplVertexCreate
77ToplVertexDestroy
78ToplVertexFree
79ToplVertexGetId
80ToplVertexGetInEdge
81ToplVertexGetOutEdge
82ToplVertexGetParent
83ToplVertexInit
84ToplVertexNumberOfInEdges
85ToplVertexNumberOfOutEdges
86ToplVertexSetId
87ToplVertexSetParent
lib/libc/mingw/lib-common/wdigest.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file wdigest.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wdigest.dll
8EXPORTS
9SpInitialize
10CredentialUpdateRegister
11SsiCredentialsUpdateNotify
12CredentialUpdateFree
13CredentialUpdateNotify
14SpLsaModeInitialize
15SpUserModeInitialize
16SsiCredentialsUpdateFree
17SpInstanceInit
lib/libc/mingw/lib-common/webauthn.def created+57
......@@ -0,0 +1,57 @@
1LIBRARY "webauthn.dll"
2EXPORTS
3CryptsvcDllCtrl
4I_WebAuthNCtapDecodeGetAssertionRpcResponse
5I_WebAuthNCtapDecodeMakeCredentialRpcResponse
6I_WebAuthNCtapEncodeGetAssertionRpcRequest
7I_WebAuthNCtapEncodeMakeCredentialRpcRequest
8WebAuthNAuthenticatorGetAssertion
9WebAuthNAuthenticatorMakeCredential
10WebAuthNCancelCurrentOperation
11WebAuthNCtapChangeClientPin
12WebAuthNCtapChangeClientPinForSelectedDevice
13WebAuthNCtapFreeSelectedDeviceInformation
14WebAuthNCtapGetAssertion
15WebAuthNCtapGetSupportedTransports
16WebAuthNCtapGetWnfLocalizedString
17WebAuthNCtapIsStopSendCommandError
18WebAuthNCtapMakeCredential
19WebAuthNCtapManageAuthenticatePin
20WebAuthNCtapManageCancelEnrollFingerprint
21WebAuthNCtapManageChangePin
22WebAuthNCtapManageClose
23WebAuthNCtapManageDeleteCredential
24WebAuthNCtapManageEnrollFingerprint
25WebAuthNCtapManageFreeDisplayCredentials
26WebAuthNCtapManageGetDisplayCredentials
27WebAuthNCtapManageRemoveFingerprints
28WebAuthNCtapManageResetDevice
29WebAuthNCtapManageSelect
30WebAuthNCtapManageSetPin
31WebAuthNCtapParseAuthenticatorData
32WebAuthNCtapResetDevice
33WebAuthNCtapRpcGetAssertionUserList
34WebAuthNCtapRpcGetCborCommand
35WebAuthNCtapRpcSelectGetAssertion
36WebAuthNCtapSendCommand
37WebAuthNCtapSetClientPin
38WebAuthNCtapStartDeviceChangeNotify
39WebAuthNCtapStopDeviceChangeNotify
40WebAuthNCtapVerifyGetAssertion
41WebAuthNDecodeAccountInformation
42WebAuthNDeletePlatformCredential
43WebAuthNEncodeAccountInformation
44WebAuthNFreeAssertion
45WebAuthNFreeCredentialAttestation
46WebAuthNFreeDecodedAccountInformation
47WebAuthNFreeEncodedAccountInformation
48WebAuthNFreePlatformCredentials
49WebAuthNFreeUserEntityList
50WebAuthNGetApiVersionNumber
51WebAuthNGetCancellationId
52WebAuthNGetCoseAlgorithmIdentifier
53WebAuthNGetCredentialIdFromAuthenticatorData
54WebAuthNGetErrorName
55WebAuthNGetPlatformCredentials
56WebAuthNGetW3CExceptionDOMError
57WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable
lib/libc/mingw/lib-common/webclnt.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file webclnt.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY webclnt.dll
8EXPORTS
9DavClose
10DavInit
11ServiceMain
12SvchostPushServiceGlobals
lib/libc/mingw/lib-common/webservices.def created+200
......@@ -0,0 +1,200 @@
1;
2; Definition file of webservices.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "webservices.dll"
7EXPORTS
8WsAbandonCall
9WsAbandonMessage
10WsAbortChannel
11WsAbortListener
12WsAbortServiceHost
13WsAbortServiceProxy
14WsAcceptChannel
15WsAddCustomHeader
16WsAddErrorString
17WsAddMappedHeader
18WsAddressMessage
19WsAlloc
20WsAsyncExecute
21WsCall
22WsCheckMustUnderstandHeaders
23WsCloseChannel
24WsCloseListener
25WsCloseServiceHost
26WsCloseServiceProxy
27WsCombineUrl
28WsCopyError
29WsCopyNode
30WsCreateChannel
31WsCreateChannelForListener
32WsCreateError
33WsCreateFaultFromError
34WsCreateHeap
35WsCreateListener
36WsCreateMessage
37WsCreateMessageForChannel
38WsCreateMetadata
39WsCreateReader
40WsCreateServiceEndpointFromTemplate
41WsCreateServiceHost
42WsCreateServiceProxy
43WsCreateServiceProxyFromTemplate
44WsCreateWriter
45WsCreateXmlBuffer
46WsCreateXmlSecurityToken
47WsDateTimeToFileTime
48WsDecodeUrl
49WsEncodeUrl
50WsEndReaderCanonicalization
51WsEndWriterCanonicalization
52WsFileTimeToDateTime
53WsFillBody
54WsFillReader
55WsFindAttribute
56WsFlushBody
57WsFlushWriter
58WsFreeChannel
59WsFreeError
60WsFreeHeap
61WsFreeListener
62WsFreeMessage
63WsFreeMetadata
64WsFreeReader
65WsFreeSecurityToken
66WsFreeServiceHost
67WsFreeServiceProxy
68WsFreeWriter
69WsGetChannelProperty
70WsGetCustomHeader
71WsGetDictionary
72WsGetErrorProperty
73WsGetErrorString
74WsGetFaultErrorDetail
75WsGetFaultErrorProperty
76WsGetHeader
77WsGetHeaderAttributes
78WsGetHeapProperty
79WsGetListenerProperty
80WsGetMappedHeader
81WsGetMessageProperty
82WsGetMetadataEndpoints
83WsGetMetadataProperty
84WsGetMissingMetadataDocumentAddress
85WsGetNamespaceFromPrefix
86WsGetOperationContextProperty
87WsGetPolicyAlternativeCount
88WsGetPolicyProperty
89WsGetPrefixFromNamespace
90WsGetReaderNode
91WsGetReaderPosition
92WsGetReaderProperty
93WsGetSecurityContextProperty
94WsGetSecurityTokenProperty
95WsGetServiceHostProperty
96WsGetServiceProxyProperty
97WsGetWriterPosition
98WsGetWriterProperty
99WsGetXmlAttribute
100WsInitializeMessage
101WsMarkHeaderAsUnderstood
102WsMatchPolicyAlternative
103WsMoveReader
104WsMoveWriter
105WsOpenChannel
106WsOpenListener
107WsOpenServiceHost
108WsOpenServiceProxy
109WsPullBytes
110WsPushBytes
111WsReadArray
112WsReadAttribute
113WsReadBody
114WsReadBytes
115WsReadChars
116WsReadCharsUtf8
117WsReadElement
118WsReadEndAttribute
119WsReadEndElement
120WsReadEndpointAddressExtension
121WsReadEnvelopeEnd
122WsReadEnvelopeStart
123WsReadMessageEnd
124WsReadMessageStart
125WsReadMetadata
126WsReadNode
127WsReadQualifiedName
128WsReadStartAttribute
129WsReadStartElement
130WsReadToStartElement
131WsReadType
132WsReadValue
133WsReadXmlBuffer
134WsReadXmlBufferFromBytes
135WsReceiveMessage
136WsRegisterOperationForCancel
137WsRemoveCustomHeader
138WsRemoveHeader
139WsRemoveMappedHeader
140WsRemoveNode
141WsRequestReply
142WsRequestSecurityToken
143WsResetChannel
144WsResetError
145WsResetHeap
146WsResetListener
147WsResetMessage
148WsResetMetadata
149WsResetServiceHost
150WsResetServiceProxy
151WsRevokeSecurityContext
152WsSendFaultMessageForError
153WsSendMessage
154WsSendReplyMessage
155WsSetChannelProperty
156WsSetErrorProperty
157WsSetFaultErrorDetail
158WsSetFaultErrorProperty
159WsSetHeader
160WsSetInput
161WsSetInputToBuffer
162WsSetListenerProperty
163WsSetMessageProperty
164WsSetOutput
165WsSetOutputToBuffer
166WsSetReaderPosition
167WsSetWriterPosition
168WsShutdownSessionChannel
169WsSkipNode
170WsStartReaderCanonicalization
171WsStartWriterCanonicalization
172WsTrimXmlWhitespace
173WsVerifyXmlNCName
174WsWriteArray
175WsWriteAttribute
176WsWriteBody
177WsWriteBytes
178WsWriteChars
179WsWriteCharsUtf8
180WsWriteElement
181WsWriteEndAttribute
182WsWriteEndCData
183WsWriteEndElement
184WsWriteEndStartElement
185WsWriteEnvelopeEnd
186WsWriteEnvelopeStart
187WsWriteMessageEnd
188WsWriteMessageStart
189WsWriteNode
190WsWriteQualifiedName
191WsWriteStartAttribute
192WsWriteStartCData
193WsWriteStartElement
194WsWriteText
195WsWriteType
196WsWriteValue
197WsWriteXmlBuffer
198WsWriteXmlBufferToBytes
199WsWriteXmlnsAttribute
200WsXmlStringEquals
lib/libc/mingw/lib-common/wer.def created+96
......@@ -0,0 +1,96 @@
1;
2; Definition file of wer.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "wer.dll"
7EXPORTS
8WerAddExcludedApplication
9WerFreeString
10WerRemoveExcludedApplication
11WerReportAddDump
12WerReportAddFile
13WerReportCloseHandle
14WerReportCreate
15WerReportSetParameter
16WerReportSetUIOption
17WerReportSubmit
18WerStoreClose
19WerStoreGetFirstReportKey
20WerStoreGetNextReportKey
21WerStoreGetReportCount
22WerStoreGetSizeOnDisk
23WerStoreOpen
24WerStorePurge
25WerStoreQueryReportMetadataV1
26WerStoreQueryReportMetadataV2
27WerStoreQueryReportMetadataV3
28WerStoreUploadReport
29WerSysprepCleanup
30WerSysprepGeneralize
31WerSysprepSpecialize
32WerUnattendedSetup
33WerpAddAppCompatData
34WerpAddFile
35WerpAddMemoryBlock
36WerpAddRegisteredDataToReport
37WerpAddSecondaryParameter
38WerpAddTextToReport
39WerpArchiveReport
40WerpCancelResponseDownload
41WerpCancelUpload
42WerpCloseStore
43WerpCreateMachineStore
44WerpDeleteReport
45WerpDestroyWerString
46WerpDownloadResponse
47WerpDownloadResponseTemplate
48WerpEnumerateStoreNext
49WerpEnumerateStoreStart
50WerpExtractReportFiles
51WerpGetBucketId
52WerpGetDynamicParameter
53WerpGetEventType
54WerpGetFileByIndex
55WerpGetFilePathByIndex
56WerpGetNumFiles
57WerpGetNumSecParams
58WerpGetNumSigParams
59WerpGetReportConsent
60WerpGetReportFinalConsent
61WerpGetReportFlags
62WerpGetReportInformation
63WerpGetReportTime
64WerpGetReportType
65WerpGetResponseId
66WerpGetResponseUrl
67WerpGetSecParamByIndex
68WerpGetSigParamByIndex
69WerpGetStoreLocation
70WerpGetStoreType
71WerpGetTextFromReport
72WerpGetUIParamByIndex
73WerpGetUploadTime
74WerpGetWerStringData
75WerpIsDisabled
76WerpIsTransportAvailable
77WerpLoadReport
78WerpOpenMachineArchive
79WerpOpenMachineQueue
80WerpOpenUserArchive
81WerpOpenUserQueue
82WerpPromtUser
83WerpReportCancel
84WerpRestartApplication
85WerpSetCallBack
86WerpSetDynamicParameter
87WerpSetEventName
88WerpSetReportFlags
89WerpSetReportInformation
90WerpSetReportTime
91WerpSetReportUploadContextToken
92WerpShowNXNotification
93WerpShowSecondLevelConsent
94WerpShowUpsellUI
95WerpSubmitReportFromStore
96WerpSvcReportFromMachineQueue
lib/libc/mingw/lib-common/wiashext.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file wiashext.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wiashext.dll
8EXPORTS
9AddDeviceWasChosen
10AddDeviceWasChosenA
11AddDeviceWasChosenW
12MakeFullPidlForDevice
13DllCanUnloadNow
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
17DoDeleteAllItems
lib/libc/mingw/lib-common/wimgapi.def created+67
......@@ -0,0 +1,67 @@
1;
2; Definition file of WIMGAPI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WIMGAPI.DLL"
7EXPORTS
8;DllCanUnloadNow
9;DllMain
10WIMAddImagePath
11WIMAddImagePaths
12WIMAddWimbootEntry
13WIMApplyImage
14WIMCaptureImage
15WIMCloseHandle
16WIMCommitImageHandle
17WIMCopyFile
18WIMCreateFile
19WIMCreateImageFile
20WIMCreateWofCompressedFile
21WIMDeleteImage
22WIMDeleteImageMounts
23WIMEnumImageFiles
24WIMExportImage
25WIMExtractImageDirectory
26WIMExtractImagePath
27WIMFindFirstImageFile
28WIMFindNextImageFile
29WIMGetAttributes
30WIMGetImageCount
31WIMGetImageInformation
32WIMGetMessageCallbackCount
33WIMGetMountedImageHandle
34WIMGetMountedImageInfo
35WIMGetMountedImageInfoFromHandle
36WIMGetMountedImages
37WIMGetWIMBootEntries
38WIMGetWIMBootWIMPath
39WIMInitFileIOCallbacks
40WIMInitializeWofDriver
41WIMIsCurrentSystemWimboot
42WIMIsReferenceWim
43WIMLoadImage
44WIMMountImage
45WIMMountImageHandle
46WIMProcessCustomImage
47WIMReadFileEx
48WIMReadImageFile
49WIMRedirectFolderBeforeApply
50WIMRegisterLogFile
51WIMRegisterMessageCallback
52WIMRemountImage
53WIMSetBootImage
54WIMSetFileIOCallbackTemporaryPath
55WIMSetImageInformation
56WIMSetImageUserSpecifiedCreationTime
57WIMSetReferenceFile
58WIMSetTemporaryPath
59WIMSetWimGuid
60WIMSingleInstanceFile
61WIMSplitFile
62WIMUnmountImage
63WIMUnmountImageHandle
64WIMUnregisterLogFile
65WIMUnregisterMessageCallback
66WIMUpdateWIMBootEntry
67WIMWriteFileWithIntegrity
lib/libc/mingw/lib-common/windows.ai.machinelearning.def created+5
......@@ -0,0 +1,5 @@
1LIBRARY windows.ai.machinelearning
2
3EXPORTS
4
5MLCreateOperatorRegistry
lib/libc/mingw/lib-common/windows.data.pdf.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of Windows.Data.Pdf.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Windows.Data.Pdf.dll"
7EXPORTS
8PdfCreateRenderer
lib/libc/mingw/lib-common/windows.networking.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of Windows.Networking.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Windows.Networking.dll"
7EXPORTS
8SetSocketMediaStreamingMode
lib/libc/mingw/lib-common/winmm.def-1
......@@ -51,7 +51,6 @@ joySetThreshold
5151mci32Message
5252mciDriverNotify
5353mciDriverYield
54mciExecute
5554mciFreeCommandResource
5655mciGetCreatorTask
5756mciGetDeviceIDA
lib/libc/mingw/lib-common/winrnr.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file WINRNR.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WINRNR.dll
8EXPORTS
9InstallNTDSProvider
10NSPStartup
11RemoveNTDSProvider
lib/libc/mingw/lib-common/winspool.def-6
......@@ -91,7 +91,6 @@ DeviceCapabilities
9191DeviceCapabilitiesA
9292DeviceCapabilitiesW
9393DevicePropertySheets
94DocumentEvent
9594DocumentPropertiesA
9695DocumentPropertiesW
9796DocumentPropertySheets
......@@ -171,9 +170,6 @@ PlayGdiScriptOnPrinterIC
171170PrinterMessageBoxA
172171PrinterMessageBoxW
173172PrinterProperties
174QueryColorProfile
175QueryRemoteFonts
176QuerySpoolMode
177173ReadPrinter
178174RegisterForPrintAsyncNotifications
179175ReportJobProcessingProgress
......@@ -196,11 +192,9 @@ SetPrinterDataExW
196192SetPrinterDataW
197193SetPrinterW
198194SplDriverUnloadComplete
199SpoolerDevQueryPrintW
200195SpoolerInit
201196SpoolerPrinterEvent
202197StartDocDlgA
203StartDocDlgW
204198StartDocPrinterA
205199StartDocPrinterW
206200StartPagePrinter
lib/libc/mingw/lib-common/winsrv.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file winsrv.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY winsrv.dll
8EXPORTS
9ConServerDllInitialization
10UserServerDllInitialization
11_UserSoundSentry
12_UserTestTokenForInteractive
lib/libc/mingw/lib-common/wkssvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file wkssvc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wkssvc.dll
8EXPORTS
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/lib-common/wlanapi.def+89-1
......@@ -5,9 +5,9 @@
55;
66LIBRARY "wlanapi.dll"
77EXPORTS
8WFDGetSessionEndpointPairsInt
98QueryNetconStatus
109QueryNetconVirtualCharacteristic
10WFDAbortSessionInt
1111WFDAcceptConnectRequestAndOpenSessionInt
1212WFDAcceptGroupRequestAndOpenSessionInt
1313WFDCancelConnectorPairWithOOB
......@@ -21,54 +21,103 @@ WFDCloseOOBPairingSession
2121WFDCloseSession
2222WFDCloseSessionInt
2323WFDConfigureFirewallForSessionInt
24WFDCreateDHPrivatePublicKeyPairInt
2425WFDDeclineConnectRequestInt
2526WFDDeclineGroupRequestInt
27WFDDiscoverDeviceServiceInformationInt
28WFDDiscoverDevicesExInt
2629WFDDiscoverDevicesInt
2730WFDFlushVisibleDeviceListInt
2831WFDForceDisconnectInt
2932WFDForceDisconnectLegacyPeerInt
3033WFDFreeMemoryInt
3134WFDGetDefaultGroupProfileInt
35WFDGetDeviceDescriptorForPendingRequestInt
36WFDGetNFCCarrierConfigBlobInt
3237WFDGetOOBBlob
38WFDGetPrimaryAdapterStateInt
3339WFDGetProfileKeyInfoInt
40WFDGetSessionEndpointPairsInt
41WFDGetVisibleDevicesExInt
3442WFDGetVisibleDevicesInt
3543WFDIsInterfaceWiFiDirect
3644WFDIsWiFiDirectRunningOnWiFiAdapter
3745WFDLowPrivCancelOpenSessionInt
3846WFDLowPrivCloseHandleInt
47WFDLowPrivCloseLegacySessionInt
3948WFDLowPrivCloseSessionInt
4049WFDLowPrivConfigureFirewallForSessionInt
50WFDLowPrivDeclineDeviceApiConnectionRequestInt
51WFDLowPrivGetPendingGroupRequestDetailsInt
4152WFDLowPrivGetSessionEndpointPairsInt
4253WFDLowPrivIsWfdSupportedInt
4354WFDLowPrivOpenHandleInt
55WFDLowPrivOpenLegacySessionInt
56WFDLowPrivOpenSessionByDafObjectIdInt
57WFDLowPrivQueryPropertyInt
4458WFDLowPrivRegisterNotificationInt
4559WFDLowPrivStartOpenSessionByInterfaceIdInt
60WFDLowPrivRegisterVMgrCallerInt
61WFDLowPrivSetPropertyInt
62WFDLowPrivStartDeviceApiConnectionRequestListenerInt
63WFDLowPrivStartUsingGroupInt
64WFDLowPrivStopDeviceApiConnectionRequestListenerInt
65WFDLowPrivStopUsingGroupInt
66WFDLowPrivUnregisterVMgrCallerInt
4667WFDOpenHandle
4768WFDOpenHandleInt
4869WFDOpenLegacySession
4970WFDOpenLegacySessionInt
5071WFDPairCancelByDeviceAddressInt
5172WFDPairCancelInt
73WFDPairContinuePairWithDeviceInt
5274WFDPairEnumerateCeremoniesInt
5375WFDPairSelectCeremonyInt
5476WFDPairWithDeviceAndOpenSessionExInt
5577WFDPairWithDeviceAndOpenSessionInt
5678WFDParseOOBBlob
79WFDParseOOBBlobTypeAndGetPayloadInt
5780WFDParseProfileXmlInt
81WFDParseWfaNfcCarrierConfigBlobInt
5882WFDQueryPropertyInt
5983WFDRegisterNotificationInt
84WFDRegisterVMgrCallerInt
85WFDResetSelectedWfdMgrInt
6086WFDSetAdditionalIEsInt
6187WFDSetPropertyInt
6288WFDSetSecondaryDeviceTypeListInt
89WFDSetSelectedWfdMgrInt
90WFDStartBackgroundDiscoveryInt
6391WFDStartConnectorPairWithOOB
6492WFDStartListenerPairWithOOB
93WFDStartOffloadedDiscoveryInt
6594WFDStartOpenSession
6695WFDStartOpenSessionInt
96WFDStartUsingGroupExInt
6797WFDStartUsingGroupInt
98WFDStopBackgroundDiscoveryInt
99WFDStopDiscoverDevicesExInt
68100WFDStopDiscoverDevicesInt
101WFDStopOffloadedDiscoveryInt
69102WFDStopUsingGroupInt
103WFDSvcLowPrivAcceptSessionInt
104WFDSvcLowPrivCancelSessionInt
105WFDSvcLowPrivCloseSessionInt
106WFDSvcLowPrivConfigureSessionInt
107WFDSvcLowPrivConnectSessionInt
108WFDSvcLowPrivGetProvisioningInfoInt
109WFDSvcLowPrivGetSessionEndpointPairsInt
110WFDSvcLowPrivOpenAdvertiserSessionInt
111WFDSvcLowPrivOpenSeekerSessionInt
112WFDSvcLowPrivPublishServiceInt
113WFDSvcLowPrivUnpublishServiceInt
114WFDUnregisterVMgrCallerInt
70115WFDUpdateDeviceVisibility
116WiFiDisplayResetSinkStateInt
117WiFiDisplaySetSinkClientHandleInt
118WiFiDisplaySetSinkStateInt
71119WlanAllocateMemory
120WlanAllocateProfileIpConfiguration
72121WlanCancelPlap
73122WlanCloseHandle
74123WlanConnect
......@@ -76,6 +125,7 @@ WlanConnectEx
76125WlanConnectWithInput
77126WlanDeinitPlapParams
78127WlanDeleteProfile
128WlanDeviceServiceCommand
79129WlanDisconnect
80130WlanDoPlap
81131WlanDoesBssMatchSecurity
......@@ -85,6 +135,7 @@ WlanExtractPsdIEDataList
85135WlanFreeMemory
86136WlanGenerateProfileXmlBasicSettings
87137WlanGetAvailableNetworkList
138WlanGetAvailableNetworkList2
88139WlanGetFilterList
89140WlanGetInterfaceCapability
90141WlanGetMFPNegotiated
......@@ -96,10 +147,12 @@ WlanGetProfileIndex
96147WlanGetProfileKeyInfo
97148WlanGetProfileList
98149WlanGetProfileMetadata
150WlanGetProfileMetadataWithProfileGuid
99151WlanGetProfileSsidList
100152WlanGetRadioInformation
101153WlanGetSecuritySettings
102154WlanGetStoredRadioState
155WlanGetSupportedDeviceServices
103156WlanHostedNetworkForceStart
104157WlanHostedNetworkForceStop
105158WlanHostedNetworkFreeWCNSettings
......@@ -117,6 +170,11 @@ WlanHostedNetworkStartUsing
117170WlanHostedNetworkStopUsing
118171WlanIhvControl
119172WlanInitPlapParams
173WlanInternalCancelFTMRequest
174WlanInternalGetNetworkBssListWithFTMData
175WlanInternalNonDisruptiveScan
176WlanInternalNonDisruptiveScanEx
177WlanInternalRequestFTM
120178WlanInternalScan
121179WlanIsActiveConsoleUser
122180WlanIsNetworkSuppressed
......@@ -124,13 +182,31 @@ WlanIsUIRequestPending
124182WlanLowPrivCloseHandle
125183WlanLowPrivEnumInterfaces
126184WlanLowPrivFreeMemory
185WlanLowPrivNotifyVsIeProviderInt
127186WlanLowPrivOpenHandle
128187WlanLowPrivQueryInterface
129188WlanLowPrivSetInterface
189WlanNotifyVsIeProviderExInt
130190WlanNotifyVsIeProviderInt
131191WlanOpenHandle
132192WlanParseProfileXmlBasicSettings
193WlanPrivateCanDeleteProfile
194WlanPrivateClearAnqpCache
195WlanPrivateDeleteProfile
196WlanPrivateEnableAnqpOsuRegistration
197WlanPrivateGetAnqpCacheResponse
198WlanPrivateGetAnqpOSUProviderList
199WlanPrivateGetAnqpOsuRegistrationStatus
133200WlanPrivateGetAvailableNetworkList
201WlanPrivateParseAnqpRawData
202WlanPrivateQuery11adPairedConfig
203WlanPrivateQueryInterface
204WlanPrivateRefreshAnqpCache
205WlanPrivateSetInterface
206WlanPrivateSetProfile
207WlanProfileIpConfigurationGetAddressList
208WlanProfileIpConfigurationGetDnsServerList
209WlanProfileIpConfigurationGetGatewayList
134210WlanQueryAutoConfigParameter
135211WlanQueryCreateAllUserProfileRestricted
136212WlanQueryInterface
......@@ -139,6 +215,7 @@ WlanQueryPreConnectInput
139215WlanQueryVirtualInterfaceType
140216WlanReasonCodeToString
141217WlanRefreshConnections
218WlanRegisterDeviceServiceNotification
142219WlanRegisterNotification
143220WlanRegisterVirtualStationNotification
144221WlanRemoveUIForwardingNetworkList
......@@ -155,23 +232,34 @@ WlanSetProfileCustomUserData
155232WlanSetProfileEapUserData
156233WlanSetProfileEapXmlUserData
157234WlanSetProfileList
235WlanSetProfileListForOffload
158236WlanSetProfileMetadata
159237WlanSetProfilePosition
238WlanSetProtectedScenario
160239WlanSetPsdIEDataList
161240WlanSetSecuritySettings
162241WlanSetUIForwardingNetworkList
163242WlanSignalValueToBar
243WlanSignalValueToBarEx
164244WlanSsidToDisplayName
165245WlanStartAP
246WlanStartMovementDetector
166247WlanStopAP
248WlanStopMovementDetector
167249WlanStoreRadioStateOnEnteringAirPlaneMode
168250WlanStringToSsid
251WlanStringToUtf8Ssid
169252WlanTryUpgradeCurrentConnectionAuthCipher
253WlanUpdateBasicProfileSecurity
170254WlanUpdateProfileWithAuthCipher
171255WlanUtf8SsidToDisplayName
256WlanVMgrQueryCurrentScenariosInt
257WlanVerifyProfileIpConfiguration
258WlanWcmDisconnect
172259WlanWcmGetInterface
173260WlanWcmGetProfileList
174261WlanWcmSetInterface
262WlanWcmSetProfile
175263WlanWfdGOSetWCNSettings
176264WlanWfdGetPeerInfo
177265WlanWfdStartGO
lib/libc/mingw/lib-common/wlanui.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of wlanui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "wlanui.dll"
7EXPORTS
8WLInvokeProfileUI
9WLInvokeProfileUIFromXMLFile
10DllGetClassObject
11WLFreeProfile
12WLFreeProfileXml
13WlanUIEditProfile
lib/libc/mingw/lib-common/wlanutil.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of wlanutil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wlanutil.dll"
7EXPORTS
8WlanIsActiveConsoleUser
9WlanSignalValueToBar
10WlanSsidToDisplayName
11WlanStringToSsid
12WlanUtf8SsidToDisplayName
lib/libc/mingw/lib-common/wmi.def created+53
......@@ -0,0 +1,53 @@
1;
2; Exports of file WMI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WMI.dll
8EXPORTS
9CloseTrace
10ControlTraceA
11ControlTraceW
12CreateTraceInstanceId
13EnableTrace
14GetTraceEnableFlags
15GetTraceEnableLevel
16GetTraceLoggerHandle
17OpenTraceA
18OpenTraceW
19ProcessTrace
20QueryAllTracesA
21QueryAllTracesW
22RegisterTraceGuidsA
23RegisterTraceGuidsW
24RemoveTraceCallback
25SetTraceCallback
26StartTraceA
27StartTraceW
28TraceEvent
29TraceEventInstance
30UnregisterTraceGuids
31WmiCloseBlock
32WmiDevInstToInstanceNameA
33WmiDevInstToInstanceNameW
34WmiEnumerateGuids
35WmiExecuteMethodA
36WmiExecuteMethodW
37WmiFileHandleToInstanceNameA
38WmiFileHandleToInstanceNameW
39WmiFreeBuffer
40WmiMofEnumerateResourcesA
41WmiMofEnumerateResourcesW
42WmiNotificationRegistrationA
43WmiNotificationRegistrationW
44WmiOpenBlock
45WmiQueryAllDataA
46WmiQueryAllDataW
47WmiQueryGuidInformation
48WmiQuerySingleInstanceA
49WmiQuerySingleInstanceW
50WmiSetSingleInstanceA
51WmiSetSingleInstanceW
52WmiSetSingleItemA
53WmiSetSingleItemW
lib/libc/mingw/lib-common/wmiprop.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WmiProp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WmiProp.dll"
7EXPORTS
8WmiPropCoInstaller
9WmiPropPageProvider
lib/libc/mingw/lib-common/wpd_ci.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of wpd_ci.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wpd_ci.dll"
7EXPORTS
8CoDeviceInstall
9DoCmd
10MigrateMTPDevicesInstalledAsMSC
11RescanBus
12WpdClassInstaller
lib/libc/mingw/lib-common/wpprecorderum.def created+8
......@@ -0,0 +1,8 @@
1LIBRARY wpprecorderum
2
3EXPORTS
4
5WppAutoLogGetDefaultHandle
6WppAutoLogStart
7WppAutoLogStop
8WppAutoLogTrace
lib/libc/mingw/lib-common/ws2help.def created+31
......@@ -0,0 +1,31 @@
1;
2; Definition file of WS2HELP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WS2HELP.dll"
7EXPORTS
8WahCloseApcHelper
9WahCloseHandleHelper
10WahCloseNotificationHandleHelper
11WahCloseSocketHandle
12WahCloseThread
13WahCompleteRequest
14WahCreateHandleContextTable
15WahCreateNotificationHandle
16WahCreateSocketHandle
17WahDestroyHandleContextTable
18WahDisableNonIFSHandleSupport
19WahEnableNonIFSHandleSupport
20WahEnumerateHandleContexts
21WahInsertHandleContext
22WahNotifyAllProcesses
23WahOpenApcHelper
24WahOpenCurrentThread
25WahOpenHandleHelper
26WahOpenNotificationHandleHelper
27WahQueueUserApc
28WahReferenceContextByHandle
29WahRemoveHandleContext
30WahWaitForNotification
31WahWriteLSPEvent
lib/libc/mingw/lib-common/wscsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file WSCSVC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WSCSVC.dll
8EXPORTS
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/lib-common/wshbth.def created+25
......@@ -0,0 +1,25 @@
1;
2; Exports of file wshbth.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wshbth.dll
8EXPORTS
9NSPStartup
10WSHAddressToString
11WSHEnumProtocols
12WSHGetBroadcastSockaddr
13WSHGetProviderGuid
14WSHGetSockaddrType
15WSHGetSocketInformation
16WSHGetWSAProtocolInfo
17WSHGetWildcardSockaddr
18WSHGetWinsockMapping
19WSHIoctl
20WSHJoinLeaf
21WSHNotify
22WSHOpenSocket
23WSHOpenSocket2
24WSHSetSocketInformation
25WSHStringToAddress
lib/libc/mingw/lib-common/wslapi.def created+9
......@@ -0,0 +1,9 @@
1LIBRARY "wslapi.dll"
2EXPORTS
3WslConfigureDistribution
4WslGetDistributionConfiguration
5WslIsDistributionRegistered
6WslLaunch
7WslLaunchInteractive
8WslRegisterDistribution
9WslUnregisterDistribution
lib/libc/mingw/lib-common/xaudio2_9.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of XAudio2_9.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAudio2_9.dll"
7EXPORTS
8XAudio2Create
9CreateAudioReverb
10CreateAudioVolumeMeter
11CreateFX
12X3DAudioCalculate
13X3DAudioInitialize
14CreateAudioReverbV2_8
15XAudio2CreateV2_9
16XAudio2CreateWithVersionInfo
17XAudio2CreateWithSharedContexts
lib/libc/mingw/lib-common/xinputuap.def created+11
......@@ -0,0 +1,11 @@
1LIBRARY xinputuap
2
3EXPORTS
4
5XInputEnable
6XInputGetAudioDeviceIds
7XInputGetBatteryInformation
8XInputGetCapabilities
9XInputGetKeystroke
10XInputGetState
11XInputSetState
lib/libc/mingw/lib-common/xmllite.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of XmlLite.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XmlLite.dll"
7EXPORTS
8CreateXmlReader
9CreateXmlReaderInputWithEncodingCodePage
10CreateXmlReaderInputWithEncodingName
11CreateXmlWriter
12CreateXmlWriterOutputWithEncodingCodePage
13CreateXmlWriterOutputWithEncodingName
lib/libc/mingw/lib32/adsldpc.def created+189
......@@ -0,0 +1,189 @@
1;
2; Definition file of adsldpc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "adsldpc.dll"
7EXPORTS
8; public: __thiscall CLexer::CLexer(void)
9??0CLexer@@QAE@XZ ; has WINAPI (@0)
10; public: __thiscall CLexer::~CLexer(void)
11??1CLexer@@QAE@XZ ; has WINAPI (@0)
12ADSIPrint@0
13ADsAbandonSearch@4
14ADsCloseSearchHandle@4
15ADsCreateAttributeDefinition@8
16ADsCreateClassDefinition@8
17ADsCreateDSObject@20
18ADsCreateDSObjectExt@28
19ADsDeleteAttributeDefinition@4
20ADsDeleteClassDefinition@4
21ADsDeleteDSObject@12
22ADsEnumAttributes@44
23ADsEnumClasses@16
24ADsExecuteSearch@124
25ADsFreeColumn@4
26ADsGetColumn@20
27ADsGetFirstRow@8
28ADsGetNextColumnName@8
29ADsGetNextRow@8
30ADsGetObjectAttributes@52
31ADsGetPreviousRow@8
32ADsHelperGetCurrentRowMessage@12
33ADsObject@8
34ADsSetObjectAttributes@48
35ADsSetSearchPreference@28
36ADsWriteAttributeDefinition@8
37ADsWriteClassDefinition@8
38AdsTypeToLdapTypeCopyConstruct@20
39AdsTypeToLdapTypeCopyDNWithBinary@12
40AdsTypeToLdapTypeCopyDNWithString@12
41AdsTypeToLdapTypeCopyGeneralizedTime@12
42AdsTypeToLdapTypeCopyTime@12
43BerBvFree@4
44BerEncodingQuotaControl@12
45BuildADsParentPath@12
46BuildADsParentPathFromObjectInfo2@12
47BuildADsParentPathFromObjectInfo@20
48BuildADsPathFromLDAPPath2@24
49BuildADsPathFromLDAPPath@12
50BuildADsPathFromParent@12
51BuildLDAPPathFromADsPath2@16
52BuildLDAPPathFromADsPath@8
53ChangeSeparator@4
54Component@8
55ConvertSidToString@12
56ConvertSidToU2Trustee@20
57ConvertU2TrusteeToSid@20
58FindEntryInSearchTable@12
59FindSearchTableIndex@12
60FreeObjectInfo@4
61GetDefaultServer@28
62GetDisplayName@8
63GetDomainDNSNameForDomain@28
64GetLDAPTypeName@8
65; public: long __thiscall CLexer::GetNextToken(unsigned short *,unsigned long *)
66?GetNextToken@CLexer@@QAEJPAGPAK@Z ; has WINAPI (@8)
67GetServerAndPort@12
68GetSyntaxOfAttribute@8
69InitObjectInfo@8
70; public: long __thiscall CLexer::InitializePath(unsigned short *)
71?InitializePath@CLexer@@QAEJPAG@Z ; has WINAPI (@4)
72IsGCNamespace@4
73LdapAddExtS@20
74LdapAddS@12
75LdapAttributeFree@4
76LdapCacheAddRef@4
77LdapCloseObject@4
78LdapCompareExt@28
79LdapControlFree@4
80LdapControlsFree@4
81LdapCountEntries@8
82LdapCrackUserDNtoNTLMUser2@12
83LdapCreatePageControl@20
84LdapDeleteExtS@16
85LdapDeleteS@8
86LdapFirstAttribute@16
87LdapFirstEntry@12
88LdapGetDn@12
89LdapGetNextPageS@24
90LdapGetSchemaObjectCount@20
91LdapGetSubSchemaSubEntryPath@16
92LdapGetSyntaxIdOfAttribute@4
93LdapGetSyntaxOfAttributeOnServer@24
94LdapGetValues@20
95LdapGetValuesLen@20
96LdapInitializeSearchPreferences@8
97LdapIsClassNameValidOnServer@20
98LdapMakeSchemaCacheObsolete@12
99LdapMemFree@4
100LdapModDnS@16
101LdapModifyExtS@20
102LdapModifyS@12
103LdapMsgFree@4
104LdapNextAttribute@16
105LdapNextEntry@12
106LdapOpenObject2@24
107LdapOpenObject@20
108LdapParsePageControl@16
109LdapParseResult@32
110LdapReadAttribute2@36
111LdapReadAttribute@28
112LdapReadAttributeFast@20
113LdapRenameExtS@28
114LdapResult@24
115LdapSearch@28
116LdapSearchAbandonPage@8
117LdapSearchExtS@44
118LdapSearchInitPage@48
119LdapSearchS@28
120LdapSearchST@32
121LdapTypeBinaryToString@12
122LdapTypeCopyConstruct@16
123LdapTypeFreeLdapModList@4
124LdapTypeFreeLdapModObject@4
125LdapTypeFreeLdapObjects@4
126LdapTypeToAdsTypeDNWithBinary@8
127LdapTypeToAdsTypeDNWithString@8
128LdapTypeToAdsTypeGeneralizedTime@8
129LdapTypeToAdsTypeUTCTime@8
130LdapValueFree@4
131LdapValueFreeLen@4
132LdapcKeepHandleAround@4
133LdapcSetStickyServer@8
134PathName@8
135ReadPagingSupportedAttr@16
136ReadSecurityDescriptorControlType@16
137ReadServerSupportsIsADAMControl@16
138ReadServerSupportsIsADControl@16
139SchemaAddRef@4
140SchemaClose@4
141SchemaGetClassInfo@12
142SchemaGetClassInfoByIndex@12
143SchemaGetObjectCount@12
144SchemaGetPropertyInfo@12
145SchemaGetPropertyInfoByIndex@12
146SchemaGetStringsFromStringTable@16
147SchemaGetSyntaxOfAttribute@12
148SchemaIsClassAContainer@12
149SchemaOpen@16
150; public: void __thiscall CLexer::SetAtDisabler(int)
151?SetAtDisabler@CLexer@@QAEXH@Z ; has WINAPI (@4)
152; public: void __thiscall CLexer::SetExclaimnationDisabler(int)
153?SetExclaimnationDisabler@CLexer@@QAEXH@Z ; has WINAPI (@4)
154; public: void __thiscall CLexer::SetFSlashDisabler(int)
155?SetFSlashDisabler@CLexer@@QAEXH@Z ; has WINAPI (@4)
156SortAndRemoveDuplicateOIDs@8
157UnMarshallLDAPToLDAPSynID@20
158intcmp@0
159ADSIAbandonSearch@8
160ADSICloseDSObject@4
161ADSICloseSearchHandle@8
162ADSICreateDSObject@16
163ADSIDeleteDSObject@8
164ADSIExecuteSearch@20
165ADSIFreeColumn@8
166ADSIGetColumn@16
167ADSIGetFirstRow@8
168ADSIGetNextColumnName@12
169ADSIGetNextRow@8
170ADSIGetObjectAttributes@20
171ADSIGetPreviousRow@8
172ADSIModifyRdn@12
173ADSIOpenDSObject@20
174ADSISetObjectAttributes@16
175ADSISetSearchPreference@12
176ADsDecodeBinaryData@12
177ADsEncodeBinaryData@12
178ADsGetLastError@20
179ADsSetLastError@12
180AdsTypeFreeAdsObjects@8
181AllocADsMem@4
182AllocADsStr@4
183FreeADsMem@4
184FreeADsStr@4
185LdapTypeToAdsTypeCopyConstruct@28
186MapADSTypeToLDAPType@4
187MapLDAPTypeToADSType@4
188ReallocADsMem@12
189ReallocADsStr@8
lib/libc/mingw/lib32/advapi32.def+56-2
......@@ -67,6 +67,19 @@ AuditSetSecurity@8
6767AuditSetSystemPolicy@8
6868BackupEventLogA@8
6969BackupEventLogW@8
70BaseRegCloseKey@4
71BaseRegCreateKey@32
72BaseRegDeleteKeyEx@16
73BaseRegDeleteValue@8
74BaseRegFlushKey@4
75BaseRegGetVersion@8
76BaseRegLoadKey@12
77BaseRegOpenKey@20
78BaseRegRestoreKey@12
79BaseRegSaveKeyEx@16
80BaseRegSetKeySecurity@12
81BaseRegSetValue@20
82BaseRegUnLoadKey@8
7083BuildExplicitAccessWithNameA@20
7184BuildExplicitAccessWithNameW@20
7285BuildImpersonateExplicitAccessWithNameA@24
......@@ -88,6 +101,7 @@ ChangeServiceConfig2A@12
88101ChangeServiceConfig2W@12
89102ChangeServiceConfigA@44
90103ChangeServiceConfigW@44
104CheckForHiberboot@8
91105CheckTokenMembership@12
92106ClearEventLogA@8
93107ClearEventLogW@8
......@@ -106,6 +120,7 @@ ControlTraceA@20
106120ControlTraceW@20
107121ConvertAccessToSecurityDescriptorA@20
108122ConvertAccessToSecurityDescriptorW@20
123ConvertSDToStringSDDomainW@28
109124ConvertSDToStringSDRootDomainA@24
110125ConvertSDToStringSDRootDomainW@24
111126ConvertSecurityDescriptorToAccessA@28
......@@ -222,6 +237,7 @@ CryptSignHashA@24
222237CryptSignHashW@24
223238CryptVerifySignatureA@24
224239CryptVerifySignatureW@24
240CveEventWrite@8
225241DecryptFileA@8
226242DecryptFileW@8
227243DeleteAce@8
......@@ -261,6 +277,7 @@ EncryptedFileKeyInfo@12
261277EncryptionDisable@8
262278EnumDependentServicesA@24
263279EnumDependentServicesW@24
280EnumDynamicTimeZoneInformation@8
264281EnumServiceGroupW@36
265282EnumServicesStatusA@32
266283EnumServicesStatusExA@40
......@@ -278,6 +295,7 @@ EventActivityIdControl@8
278295EventEnabled@12
279296EventProviderEnabled@20
280297EventRegister@16
298EventSetInformation@20
281299EventUnregister@8
282300EventWrite@20
283301EventWriteEndScenario@20
......@@ -304,6 +322,7 @@ GetAuditedPermissionsFromAclA@16
304322GetAuditedPermissionsFromAclW@16
305323GetCurrentHwProfileA@4
306324GetCurrentHwProfileW@4
325GetDynamicTimeZoneInformationEffectiveYears@12
307326GetEffectiveRightsFromAclA@12
308327GetEffectiveRightsFromAclW@12
309328GetEncryptedFileMetadata@12
......@@ -353,6 +372,7 @@ GetSidIdentifierAuthority@4
353372GetSidLengthRequired@4
354373GetSidSubAuthority@8
355374GetSidSubAuthorityCount@4
375GetStringConditionFromBinary@16
356376GetSiteDirectoryA@12
357377GetSiteDirectoryW@12
358378GetSiteNameFromSid@8
......@@ -408,7 +428,7 @@ IsWellKnownSid@8
408428LockServiceDatabase@4
409429LogonUserA@24
410430LogonUserExA@40
411LogonUserExExW@44
431LogonUserExExW@44
412432LogonUserExW@40
413433LogonUserW@24
414434LookupAccountNameA@28
......@@ -427,12 +447,15 @@ LsaAddAccountRights@16
427447LsaAddPrivilegesToAccount@8
428448LsaClearAuditLog@4
429449LsaClose@4
450LsaConfigureAutoLogonCredentials@0
430451LsaCreateAccount@16
431452LsaCreateSecret@16
432453LsaCreateTrustedDomain@16
433454LsaCreateTrustedDomainEx@20
434455LsaDelete@4
435456LsaDeleteTrustedDomain@8
457LsaDisableUserArso@4
458LsaEnableUserArso@4
436459LsaEnumerateAccountRights@16
437460LsaEnumerateAccounts@20
438461LsaEnumerateAccountsWithUserRight@16
......@@ -441,6 +464,8 @@ LsaEnumeratePrivilegesOfAccount@8
441464LsaEnumerateTrustedDomains@20
442465LsaEnumerateTrustedDomainsEx@20
443466LsaFreeMemory@4
467LsaGetAppliedCAPIDs@12
468LsaGetDeviceRegistrationInfo@4
444469LsaGetQuotasForAccount@8
445470LsaGetRemoteUserName@12
446471LsaGetSystemAccessAccount@8
......@@ -449,11 +474,15 @@ LsaICLookupNames@40
449474LsaICLookupNamesWithCreds@48
450475LsaICLookupSids@36
451476LsaICLookupSidsWithCreds@48
477LsaInvokeTrustScanner@16
478LsaIsUserArsoAllowed@4
479LsaIsUserArsoEnabled@8
452480LsaLookupNames2@24
453481LsaLookupNames@20
454482LsaLookupPrivilegeDisplayName@16
455483LsaLookupPrivilegeName@12
456484LsaLookupPrivilegeValue@12
485LsaLookupSids2@24
457486LsaLookupSids@20
458487LsaManageSidNameMapping@12
459488LsaNtStatusToWinError@4
......@@ -463,7 +492,10 @@ LsaOpenPolicySce@16
463492LsaOpenSecret@16
464493LsaOpenTrustedDomain@16
465494LsaOpenTrustedDomainByName@16
495LsaProfileDeleted@4
496LsaQueryCAPs@16
466497LsaQueryDomainInformationPolicy@12
498LsaQueryForestTrustInformation2@16
467499LsaQueryForestTrustInformation@12
468500LsaQueryInfoTrustedDomain@12
469501LsaQueryInformationPolicy@12
......@@ -474,7 +506,9 @@ LsaQueryTrustedDomainInfoByName@16
474506LsaRemoveAccountRights@20
475507LsaRemovePrivilegesFromAccount@12
476508LsaRetrievePrivateData@12
509LsaSetCAPs@12
477510LsaSetDomainInformationPolicy@12
511LsaSetForestTrustInformation2@24
478512LsaSetForestTrustInformation@20
479513LsaSetInformationPolicy@12
480514LsaSetInformationTrustedDomain@12
......@@ -485,6 +519,7 @@ LsaSetSystemAccessAccount@8
485519LsaSetTrustedDomainInfoByName@16
486520LsaSetTrustedDomainInformation@16
487521LsaStorePrivateData@12
522LsaValidateProcUniqueLuid@4
488523MD4Final@4
489524MD4Init@4
490525MD4Update@12
......@@ -502,6 +537,7 @@ NotifyChangeEventLog@8
502537NotifyServiceStatusChange@12
503538NotifyServiceStatusChangeA@12
504539NotifyServiceStatusChangeW@12
540NpGetUserName@12
505541ObjectCloseAuditAlarmA@12
506542ObjectCloseAuditAlarmW@12
507543ObjectDeleteAuditAlarmA@12
......@@ -525,6 +561,8 @@ OpenThreadToken@16
525561OpenThreadWaitChainSession@8
526562OpenTraceA@4
527563OpenTraceW@4
564OperationEnd@4
565OperationStart@4
528566PerfAddCounters@12
529567PerfCloseQueryHandle@4
530568PerfCreateInstance@16
......@@ -541,6 +579,12 @@ PerfQueryCounterData@16
541579PerfQueryCounterInfo@16
542580PerfQueryCounterSetRegistrationInfo@28
543581PerfQueryInstance@16
582PerfRegCloseKey@4
583PerfRegEnumKey@24
584PerfRegEnumValue@32
585PerfRegQueryInfoKey@44
586PerfRegQueryValue@28
587PerfRegSetValue@24
544588PerfSetCounterRefValue@16
545589PerfSetCounterSetInfo@12
546590PerfSetULongCounterValue@16
......@@ -562,12 +606,14 @@ QueryServiceConfig2A@20
562606QueryServiceConfig2W@20
563607QueryServiceConfigA@16
564608QueryServiceConfigW@16
609QueryServiceDynamicInformation@12
565610QueryServiceLockStatusA@16
566611QueryServiceLockStatusW@16
567612QueryServiceObjectSecurity@20
568613QueryServiceStatus@8
569614QueryServiceStatusEx@20
570615QueryTraceA@16
616QueryTraceProcessingHandle@32
571617QueryTraceW@16
572618QueryUsersOnEncryptedFile@8
573619QueryWindows31FilesMigration@4
......@@ -595,7 +641,6 @@ RegDeleteKeyTransactedA@24
595641RegDeleteKeyTransactedW@24
596642RegDeleteKeyValueA@12
597643RegDeleteKeyValueW@12
598RegDeleteKeyW@8
599644RegDeleteTreeA@8
600645RegDeleteTreeW@8
601646RegDeleteValueA@8
......@@ -667,11 +712,18 @@ RegisterServiceCtrlHandlerW@8
667712RegisterTraceGuidsA@32
668713RegisterTraceGuidsW@32
669714RegisterWaitChainCOMCallback@8
715RemoteRegEnumKeyWrapper@20
716RemoteRegEnumValueWrapper@28
717RemoteRegQueryInfoKeyWrapper@40
718RemoteRegQueryMultipleValues2Wrapper@24
719RemoteRegQueryMultipleValuesWrapper@20
720RemoteRegQueryValueWrapper@24
670721RemoveTraceCallback@4
671722RemoveUsersFromEncryptedFile@8
672723ReportEventA@36
673724ReportEventW@36
674725RevertToSelf@0
726SafeBaseRegGetKeySecurity@16
675727SaferCloseLevel@4
676728SaferComputeTokenFromLevel@20
677729SaferCreateLevel@20
......@@ -776,6 +828,7 @@ TraceEvent@12
776828TraceEventInstance@20
777829TraceMessage
778830TraceMessageVa@24
831TraceQueryInformation@24
779832TraceSetInformation@20
780833TreeResetNamedSecurityInfoA@44
781834TreeResetNamedSecurityInfoW@44
......@@ -791,6 +844,7 @@ UpdateTraceA@16
791844UpdateTraceW@16
792845UsePinForEncryptedFilesA@12
793846UsePinForEncryptedFilesW@12
847WaitServiceState@16
794848WmiCloseBlock@4
795849WmiDevInstToInstanceNameA@16
796850WmiDevInstToInstanceNameW@16
lib/libc/mingw/lib32/apcups.def created+8
......@@ -0,0 +1,8 @@
1LIBRARY apcups.dll
2EXPORTS
3UPSCancelWait@0
4UPSGetState@0
5UPSInit@0
6UPSStop@0
7UPSTurnOff@4
8UPSWaitForStateChange@8
lib/libc/mingw/lib32/api-ms-win-appmodel-runtime-l1-1-1.def deleted-19
......@@ -1,19 +0,0 @@
1LIBRARY api-ms-win-appmodel-runtime-l1-1-1
2
3EXPORTS
4
5FormatApplicationUserModelId@16
6GetCurrentApplicationUserModelId@8
7GetCurrentPackageFamilyName@8
8GetCurrentPackageId@8
9PackageFamilyNameFromFullName@12
10PackageFamilyNameFromId@12
11PackageFullNameFromId@12
12PackageIdFromFullName@16
13PackageNameAndPublisherIdFromFamilyName@20
14ParseApplicationUserModelId@20
15VerifyApplicationUserModelId@4
16VerifyPackageFamilyName@4
17VerifyPackageFullName@4
18VerifyPackageId@4
19VerifyPackageRelativeApplicationId@4
lib/libc/mingw/lib32/api-ms-win-core-comm-l1-1-1.def deleted-23
......@@ -1,23 +0,0 @@
1LIBRARY api-ms-win-core-comm-l1-1-1
2
3EXPORTS
4
5ClearCommBreak@4
6ClearCommError@12
7EscapeCommFunction@8
8GetCommConfig@12
9GetCommMask@8
10GetCommModemStatus@8
11GetCommProperties@8
12GetCommState@8
13GetCommTimeouts@8
14OpenCommPort@
15PurgeComm@8
16SetCommBreak@4
17SetCommConfig@12
18SetCommMask@8
19SetCommState@8
20SetCommTimeouts@8
21SetupComm@12
22TransmitCommChar@8
23WaitCommEvent@12
lib/libc/mingw/lib32/api-ms-win-core-comm-l1-1-2.def deleted-24
......@@ -1,24 +0,0 @@
1LIBRARY api-ms-win-core-comm-l1-1-2
2
3EXPORTS
4
5ClearCommBreak@4
6ClearCommError@12
7EscapeCommFunction@8
8GetCommConfig@12
9GetCommMask@8
10GetCommModemStatus@8
11GetCommPorts@
12GetCommProperties@8
13GetCommState@8
14GetCommTimeouts@8
15OpenCommPort@
16PurgeComm@8
17SetCommBreak@4
18SetCommConfig@12
19SetCommMask@8
20SetCommState@8
21SetCommTimeouts@8
22SetupComm@12
23TransmitCommChar@8
24WaitCommEvent@12
lib/libc/mingw/lib32/api-ms-win-core-errorhandling-l1-1-3.def deleted-17
......@@ -1,17 +0,0 @@
1LIBRARY api-ms-win-core-errorhandling-l1-1-3
2
3EXPORTS
4
5AddVectoredExceptionHandler@8
6FatalAppExitA@8
7FatalAppExitW@8
8GetLastError@0
9GetThreadErrorMode@0
10RaiseException@16
11RaiseFailFastException@12
12RemoveVectoredExceptionHandler@4
13SetErrorMode@4
14SetLastError@4
15SetThreadErrorMode@8
16SetUnhandledExceptionFilter@4
17UnhandledExceptionFilter@4
lib/libc/mingw/lib32/api-ms-win-core-featurestaging-l1-1-0.def deleted-9
......@@ -1,9 +0,0 @@
1LIBRARY api-ms-win-core-featurestaging-l1-1-0
2
3EXPORTS
4
5GetFeatureEnabledState@8
6RecordFeatureError@8
7RecordFeatureUsage@16
8SubscribeFeatureStateChangeNotification@12
9UnsubscribeFeatureStateChangeNotification@4
lib/libc/mingw/lib32/api-ms-win-core-featurestaging-l1-1-1.def deleted-10
......@@ -1,10 +0,0 @@
1LIBRARY api-ms-win-core-featurestaging-l1-1-1
2
3EXPORTS
4
5GetFeatureEnabledState@8
6GetFeatureVariant@16
7RecordFeatureError@8
8RecordFeatureUsage@16
9SubscribeFeatureStateChangeNotification@12
10UnsubscribeFeatureStateChangeNotification@4
lib/libc/mingw/lib32/api-ms-win-core-file-fromapp-l1-1-0.def deleted-15
......@@ -1,15 +0,0 @@
1LIBRARY api-ms-win-core-file-fromapp-l1-1-0
2
3EXPORTS
4
5CopyFileFromAppW@12
6CreateDirectoryFromAppW@8
7CreateFile2FromAppW@20
8CreateFileFromAppW@28
9DeleteFileFromAppW@4
10FindFirstFileExFromAppW@24
11GetFileAttributesExFromAppW@12
12MoveFileFromAppW@8
13RemoveDirectoryFromAppW@4
14ReplaceFileFromAppW@24
15SetFileAttributesFromAppW@8
lib/libc/mingw/lib32/api-ms-win-core-handle-l1-1-0.def deleted-9
......@@ -1,9 +0,0 @@
1LIBRARY api-ms-win-core-handle-l1-1-0
2
3EXPORTS
4
5CloseHandle@4
6CompareObjectHandles@8
7DuplicateHandle@28
8GetHandleInformation@8
9SetHandleInformation@12
lib/libc/mingw/lib32/api-ms-win-core-libraryloader-l2-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-libraryloader-l2-1-0
2
3EXPORTS
4
5LoadPackagedLibrary@8
6QueryOptionalDelayLoadedAPI@16
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-3.def deleted-35
......@@ -1,35 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-3
2
3EXPORTS
4
5CreateFileMappingFromApp@24
6CreateFileMappingW@24
7DiscardVirtualMemory@8
8FlushViewOfFile@8
9GetLargePageMinimum@0
10GetProcessWorkingSetSizeEx@16
11GetWriteWatch@24
12MapViewOfFile@20
13MapViewOfFileEx@24
14MapViewOfFileFromApp@20
15OfferVirtualMemory@12
16OpenFileMappingFromApp@12
17OpenFileMappingW@12
18ReadProcessMemory@20
19ReclaimVirtualMemory@8
20ResetWriteWatch@8
21SetProcessValidCallTargets@20
22SetProcessWorkingSetSizeEx@16
23UnmapViewOfFile@4
24UnmapViewOfFileEx@8
25VirtualAlloc@16
26VirtualAllocFromApp@16
27VirtualFree@12
28VirtualFreeEx@16
29VirtualLock@8
30VirtualProtect@16
31VirtualProtectFromApp@16
32VirtualQuery@12
33VirtualQueryEx@16
34VirtualUnlock@8
35WriteProcessMemory@20
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-4.def deleted-35
......@@ -1,35 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-4
2
3EXPORTS
4
5CreateFileMappingFromApp@24
6CreateFileMappingW@24
7DiscardVirtualMemory@8
8FlushViewOfFile@8
9GetLargePageMinimum@0
10GetProcessWorkingSetSizeEx@16
11GetWriteWatch@24
12MapViewOfFile@20
13MapViewOfFileEx@24
14MapViewOfFileFromApp@20
15OfferVirtualMemory@12
16OpenFileMappingFromApp@12
17OpenFileMappingW@12
18ReadProcessMemory@20
19ReclaimVirtualMemory@8
20ResetWriteWatch@8
21SetProcessValidCallTargets@20
22SetProcessWorkingSetSizeEx@16
23UnmapViewOfFile@4
24UnmapViewOfFileEx@8
25VirtualAlloc@16
26VirtualAllocFromApp@16
27VirtualFree@12
28VirtualFreeEx@16
29VirtualLock@8
30VirtualProtect@16
31VirtualProtectFromApp@16
32VirtualQuery@12
33VirtualQueryEx@16
34VirtualUnlock@8
35WriteProcessMemory@20
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-5.def deleted-37
......@@ -1,37 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-5
2
3EXPORTS
4
5CreateFileMappingFromApp@24
6CreateFileMappingW@24
7DiscardVirtualMemory@8
8FlushViewOfFile@8
9GetLargePageMinimum@0
10GetProcessWorkingSetSizeEx@16
11GetWriteWatch@24
12MapViewOfFile@20
13MapViewOfFileEx@24
14MapViewOfFileFromApp@20
15OfferVirtualMemory@12
16OpenFileMappingFromApp@12
17OpenFileMappingW@12
18ReadProcessMemory@20
19ReclaimVirtualMemory@8
20ResetWriteWatch@8
21SetProcessValidCallTargets
22SetProcessWorkingSetSizeEx@16
23UnmapViewOfFile@4
24UnmapViewOfFile2@
25UnmapViewOfFileEx@8
26VirtualAlloc@16
27VirtualAllocFromApp@16
28VirtualFree@12
29VirtualFreeEx@16
30VirtualLock@8
31VirtualProtect@16
32VirtualProtectFromApp@16
33VirtualQuery@12
34VirtualQueryEx@16
35VirtualUnlock@8
36VirtualUnlockEx@12
37WriteProcessMemory@20
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-6.def deleted-39
......@@ -1,39 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-6
2
3EXPORTS
4
5CreateFileMappingFromApp@24
6CreateFileMappingW@24
7DiscardVirtualMemory@8
8FlushViewOfFile@8
9GetLargePageMinimum@0
10GetProcessWorkingSetSizeEx@16
11GetWriteWatch@24
12MapViewOfFile@20
13MapViewOfFile3FromApp@40
14MapViewOfFileEx@24
15MapViewOfFileFromApp@20
16OfferVirtualMemory@12
17OpenFileMappingFromApp@12
18OpenFileMappingW@12
19ReadProcessMemory@20
20ReclaimVirtualMemory@8
21ResetWriteWatch@8
22SetProcessValidCallTargets@20
23SetProcessWorkingSetSizeEx@16
24UnmapViewOfFile@4
25UnmapViewOfFile2@12
26UnmapViewOfFileEx@8
27VirtualAlloc@16
28VirtualAlloc2FromApp@28
29VirtualAllocFromApp@16
30VirtualFree@12
31VirtualFreeEx@16
32VirtualLock@8
33VirtualProtect@16
34VirtualProtectFromApp@16
35VirtualQuery@12
36VirtualQueryEx@16
37VirtualUnlock@8
38VirtualUnlockEx@12
39WriteProcessMemory@20
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-7.def deleted-40
......@@ -1,40 +0,0 @@
1LIBRARY api-ms-win-core-memory-l1-1-7
2
3EXPORTS
4
5CreateFileMappingFromApp@24
6CreateFileMappingW@24
7DiscardVirtualMemory@8
8FlushViewOfFile@8
9GetLargePageMinimum@0
10GetProcessWorkingSetSizeEx@16
11GetWriteWatch@24
12MapViewOfFile@20
13MapViewOfFile3FromApp@40
14MapViewOfFileEx@24
15MapViewOfFileFromApp@20
16OfferVirtualMemory@12
17OpenFileMappingFromApp@12
18OpenFileMappingW@12
19ReadProcessMemory@20
20ReclaimVirtualMemory@8
21ResetWriteWatch@8
22SetProcessValidCallTargets@20
23SetProcessValidCallTargetsForMappedView@32
24SetProcessWorkingSetSizeEx@16
25UnmapViewOfFile@4
26UnmapViewOfFile2@12
27UnmapViewOfFileEx@8
28VirtualAlloc@16
29VirtualAlloc2FromApp@28
30VirtualAllocFromApp@16
31VirtualFree@12
32VirtualFreeEx@16
33VirtualLock@8
34VirtualProtect@16
35VirtualProtectFromApp@16
36VirtualQuery@12
37VirtualQueryEx@16
38VirtualUnlock@8
39VirtualUnlockEx@12
40WriteProcessMemory@20
lib/libc/mingw/lib32/api-ms-win-core-path-l1-1-0.def deleted-26
......@@ -1,26 +0,0 @@
1LIBRARY api-ms-win-core-path-l1-1-0
2
3EXPORTS
4
5PathAllocCanonicalize@12
6PathAllocCombine@16
7PathCchAddBackslash@8
8PathCchAddBackslashEx@16
9PathCchAddExtension@12
10PathCchAppend@12
11PathCchAppendEx@16
12PathCchCanonicalize@12
13PathCchCanonicalizeEx@16
14PathCchCombine@16
15PathCchCombineEx@20
16PathCchFindExtension@12
17PathCchIsRoot@4
18PathCchRemoveBackslash@8
19PathCchRemoveBackslashEx@16
20PathCchRemoveExtension@8
21PathCchRemoveFileSpec@8
22PathCchRenameExtension@12
23PathCchSkipRoot@8
24PathCchStripPrefix@8
25PathCchStripToRoot@8
26PathIsUNCEx@8
lib/libc/mingw/lib32/api-ms-win-core-psm-appnotify-l1-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-psm-appnotify-l1-1-0
2
3EXPORTS
4
5RegisterAppStateChangeNotification@12
6UnregisterAppStateChangeNotification@4
lib/libc/mingw/lib32/api-ms-win-core-realtime-l1-1-1.def deleted-9
......@@ -1,9 +0,0 @@
1LIBRARY api-ms-win-core-realtime-l1-1-1
2
3EXPORTS
4
5QueryInterruptTime@4
6QueryInterruptTimePrecise@4
7QueryThreadCycleTime@8
8QueryUnbiasedInterruptTime@4
9QueryUnbiasedInterruptTimePrecise@4
lib/libc/mingw/lib32/api-ms-win-core-realtime-l1-1-2.def deleted-12
......@@ -1,12 +0,0 @@
1LIBRARY api-ms-win-core-realtime-l1-1-2
2
3EXPORTS
4
5ConvertAuxiliaryCounterToPerformanceCounter@16
6ConvertPerformanceCounterToAuxiliaryCounter@16
7QueryAuxiliaryCounterFrequency@
8QueryInterruptTime@4
9QueryInterruptTimePrecise@4
10QueryThreadCycleTime@8
11QueryUnbiasedInterruptTime@4
12QueryUnbiasedInterruptTimePrecise@4
lib/libc/mingw/lib32/api-ms-win-core-slapi-l1-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-slapi-l1-1-0
2
3EXPORTS
4
5SLQueryLicenseValueFromApp@20
6SLQueryLicenseValueFromApp2@4
lib/libc/mingw/lib32/api-ms-win-core-synch-l1-2-0.def deleted-59
......@@ -1,59 +0,0 @@
1LIBRARY api-ms-win-core-synch-l1-2-0
2
3EXPORTS
4
5AcquireSRWLockExclusive@4
6AcquireSRWLockShared@4
7CancelWaitableTimer@4
8CreateEventA@16
9CreateEventExA@16
10CreateEventExW@16
11CreateEventW@16
12CreateMutexA@12
13CreateMutexExA@16
14CreateMutexExW@16
15CreateMutexW@12
16CreateSemaphoreExW@24
17CreateWaitableTimerExW@16
18DeleteCriticalSection@4
19EnterCriticalSection@4
20InitializeConditionVariable@4
21InitializeCriticalSection@4
22InitializeCriticalSectionAndSpinCount@8
23InitializeCriticalSectionEx@12
24InitializeSRWLock@4
25InitOnceBeginInitialize@16
26InitOnceComplete@12
27InitOnceExecuteOnce@16
28InitOnceInitialize@4
29LeaveCriticalSection@4
30OpenEventA@12
31OpenEventW@12
32OpenMutexW@12
33OpenSemaphoreW@12
34OpenWaitableTimerW@12
35ReleaseMutex@4
36ReleaseSemaphore@12
37ReleaseSRWLockExclusive@4
38ReleaseSRWLockShared@4
39ResetEvent@4
40SetCriticalSectionSpinCount@8
41SetEvent@4
42SetWaitableTimer@24
43SetWaitableTimerEx@28
44SignalObjectAndWait@16
45Sleep@4
46SleepConditionVariableCS@12
47SleepConditionVariableSRW@16
48SleepEx@8
49TryAcquireSRWLockExclusive@4
50TryAcquireSRWLockShared@4
51TryEnterCriticalSection@4
52WaitForMultipleObjectsEx@20
53WaitForSingleObject@8
54WaitForSingleObjectEx@12
55WaitOnAddress@16
56WakeAllConditionVariable@4
57WakeByAddressAll@4
58WakeByAddressSingle@4
59WakeConditionVariable@4
lib/libc/mingw/lib32/api-ms-win-core-sysinfo-l1-2-0.def deleted-31
......@@ -1,31 +0,0 @@
1LIBRARY api-ms-win-core-sysinfo-l1-2-0
2
3EXPORTS
4
5EnumSystemFirmwareTables@12
6GetComputerNameExA@12
7GetComputerNameExW@12
8GetLocalTime@4
9GetLogicalProcessorInformation@8
10GetLogicalProcessorInformationEx@12
11GetNativeSystemInfo@4
12GetProductInfo@20
13GetSystemDirectoryA@8
14GetSystemDirectoryW@8
15GetSystemFirmwareTable@16
16GetSystemInfo@4
17GetSystemTime@4
18GetSystemTimeAdjustment@12
19GetSystemTimeAsFileTime@4
20GetSystemTimePreciseAsFileTime@4
21GetTickCount@0
22GetTickCount64@0
23GetVersion@0
24GetVersionExA@4
25GetVersionExW@4
26GetWindowsDirectoryA@8
27GetWindowsDirectoryW@8
28GlobalMemoryStatusEx@4
29SetLocalTime@4
30SetSystemTime@4
31VerSetConditionMask@16
lib/libc/mingw/lib32/api-ms-win-core-sysinfo-l1-2-3.def deleted-33
......@@ -1,33 +0,0 @@
1LIBRARY api-ms-win-core-sysinfo-l1-2-3
2
3EXPORTS
4
5EnumSystemFirmwareTables@12
6GetComputerNameExA@12
7GetComputerNameExW@12
8GetIntegratedDisplaySize@4
9GetLocalTime@4
10GetLogicalProcessorInformation@8
11GetLogicalProcessorInformationEx@12
12GetNativeSystemInfo@4
13GetPhysicallyInstalledSystemMemory@4
14GetProductInfo@20
15GetSystemDirectoryA@8
16GetSystemDirectoryW@8
17GetSystemFirmwareTable@16
18GetSystemInfo@4
19GetSystemTime@4
20GetSystemTimeAdjustment@12
21GetSystemTimeAsFileTime@4
22GetSystemTimePreciseAsFileTime@4
23GetTickCount@0
24GetTickCount64@0
25GetVersion@0
26GetVersionExA@4
27GetVersionExW@4
28GetWindowsDirectoryA@8
29GetWindowsDirectoryW@8
30GlobalMemoryStatusEx@4
31SetLocalTime@4
32SetSystemTime@4
33VerSetConditionMask@16
lib/libc/mingw/lib32/api-ms-win-core-winrt-error-l1-1-0.def deleted-15
......@@ -1,15 +0,0 @@
1LIBRARY api-ms-win-core-winrt-error-l1-1-0
2
3EXPORTS
4
5GetRestrictedErrorInfo@4
6RoCaptureErrorContext@4
7RoFailFastWithErrorContext@4
8RoGetErrorReportingFlags@4
9RoOriginateError@8
10RoOriginateErrorW@12
11RoResolveRestrictedErrorInfoReference@8
12RoSetErrorReportingFlags@4
13RoTransformError@12
14RoTransformErrorW@16
15SetRestrictedErrorInfo@4
lib/libc/mingw/lib32/api-ms-win-core-winrt-error-l1-1-1.def deleted-22
......@@ -1,22 +0,0 @@
1LIBRARY api-ms-win-core-winrt-error-l1-1-1
2
3EXPORTS
4
5GetRestrictedErrorInfo@4
6IsErrorPropagationEnabled@0
7RoCaptureErrorContext@4
8RoClearError@0
9RoFailFastWithErrorContext@4
10RoGetErrorReportingFlags@4
11RoGetMatchingRestrictedErrorInfo@8
12RoInspectCapturedStackBackTrace@24
13RoInspectThreadErrorInfo@20
14RoOriginateError@8
15RoOriginateErrorW@12
16RoOriginateLanguageException@12
17RoReportFailedDelegate@8
18RoReportUnhandledError@4
19RoSetErrorReportingFlags@4
20RoTransformError@12
21RoTransformErrorW@16
22SetRestrictedErrorInfo@4
lib/libc/mingw/lib32/api-ms-win-core-winrt-l1-1-0.def deleted-13
......@@ -1,13 +0,0 @@
1LIBRARY api-ms-win-core-winrt-l1-1-0
2
3EXPORTS
4
5RoActivateInstance@8
6RoGetActivationFactory@12
7RoGetApartmentIdentifier@4
8RoInitialize@4
9RoRegisterActivationFactories@16
10RoRegisterForApartmentShutdown@12
11RoRevokeActivationFactories@4
12RoUninitialize@0
13RoUnregisterForApartmentShutdown@4
lib/libc/mingw/lib32/api-ms-win-core-winrt-registration-l1-1-0.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-winrt-registration-l1-1-0
2
3EXPORTS
4
5RoGetActivatableClassRegistration@8
6RoGetServerActivatableClasses@12
lib/libc/mingw/lib32/api-ms-win-core-winrt-robuffer-l1-1-0.def deleted-5
......@@ -1,5 +0,0 @@
1LIBRARY api-ms-win-core-winrt-robuffer-l1-1-0
2
3EXPORTS
4
5RoGetBufferMarshaler@4
lib/libc/mingw/lib32/api-ms-win-core-winrt-roparameterizediid-l1-1-0.def deleted-7
......@@ -1,7 +0,0 @@
1LIBRARY api-ms-win-core-winrt-roparameterizediid-l1-1-0
2
3EXPORTS
4
5RoFreeParameterizedTypeExtra@4
6RoGetParameterizedTypeInstanceIID@20
7RoParameterizedTypeExtraGetTypeSignature@4
lib/libc/mingw/lib32/api-ms-win-core-winrt-string-l1-1-0.def deleted-30
......@@ -1,30 +0,0 @@
1LIBRARY api-ms-win-core-winrt-string-l1-1-0
2
3EXPORTS
4
5HSTRING_UserFree@8
6HSTRING_UserFree64
7HSTRING_UserMarshal@12
8HSTRING_UserMarshal64
9HSTRING_UserSize@12
10HSTRING_UserSize64
11HSTRING_UserUnmarshal@12
12HSTRING_UserUnmarshal64
13WindowsCompareStringOrdinal@12
14WindowsConcatString@12
15WindowsCreateString@12
16WindowsCreateStringReference@16
17WindowsDeleteString@4
18WindowsDeleteStringBuffer@4
19WindowsDuplicateString@8
20WindowsGetStringLen@4
21WindowsGetStringRawBuffer@8
22WindowsIsStringEmpty@4
23WindowsPreallocateStringBuffer@12
24WindowsPromoteStringBuffer@8
25WindowsReplaceString@16
26WindowsStringHasEmbeddedNull@8
27WindowsSubstring@12
28WindowsSubstringWithSpecifiedLength@16
29WindowsTrimStringEnd@12
30WindowsTrimStringStart@12
lib/libc/mingw/lib32/api-ms-win-core-wow64-l1-1-1.def deleted-6
......@@ -1,6 +0,0 @@
1LIBRARY api-ms-win-core-wow64-l1-1-1
2
3EXPORTS
4
5IsWow64Process@8
6IsWow64Process2@12
lib/libc/mingw/lib32/api-ms-win-devices-config-l1-1-1.def deleted-17
......@@ -1,17 +0,0 @@
1LIBRARY api-ms-win-devices-config-l1-1-1
2
3EXPORTS
4
5CM_Get_Device_ID_List_SizeW@12
6CM_Get_Device_ID_ListW@16
7CM_Get_Device_IDW@16
8CM_Get_Device_Interface_List_SizeW@16
9CM_Get_Device_Interface_ListW@20
10CM_Get_Device_Interface_PropertyW@24
11CM_Get_DevNode_PropertyW@24
12CM_Get_DevNode_Status@16
13CM_Get_Parent@12
14CM_Locate_DevNodeW@12
15CM_MapCrToWin32Err@8
16CM_Register_Notification@16
17CM_Unregister_Notification@4
lib/libc/mingw/lib32/api-ms-win-gaming-deviceinformation-l1-1-0.def deleted-5
......@@ -1,5 +0,0 @@
1LIBRARY api-ms-win-gaming-deviceinformation-l1-1-0
2
3EXPORTS
4
5GetGamingDeviceModelInformation@4
lib/libc/mingw/lib32/api-ms-win-gaming-expandedresources-l1-1-0.def deleted-7
......@@ -1,7 +0,0 @@
1LIBRARY api-ms-win-gaming-expandedresources-l1-1-0
2
3EXPORTS
4
5GetExpandedResourceExclusiveCpuCount@4
6HasExpandedResources@4
7ReleaseExclusiveCpuSets@0
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-0.def deleted-11
......@@ -1,11 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-0
2
3EXPORTS
4
5ProcessPendingGameUI@4
6ShowChangeFriendRelationshipUI@12
7ShowGameInviteUI@24
8ShowPlayerPickerUI@36
9ShowProfileCardUI@12
10ShowTitleAchievementsUI@12
11TryCancelPendingGameUI@0
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-2.def deleted-20
......@@ -1,20 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-2
2
3EXPORTS
4
5CheckGamingPrivilegeSilently@16
6CheckGamingPrivilegeSilentlyForUser@20
7CheckGamingPrivilegeWithUI@24
8CheckGamingPrivilegeWithUIForUser@28
9ProcessPendingGameUI@4
10ShowChangeFriendRelationshipUI@12
11ShowChangeFriendRelationshipUIForUser@16
12ShowGameInviteUI@24
13ShowGameInviteUIForUser@28
14ShowPlayerPickerUI@36
15ShowPlayerPickerUIForUser@40
16ShowProfileCardUI@12
17ShowProfileCardUIForUser@16
18ShowTitleAchievementsUI@12
19ShowTitleAchievementsUIForUser@16
20TryCancelPendingGameUI@0
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-3.def deleted-22
......@@ -1,22 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-3
2
3EXPORTS
4
5CheckGamingPrivilegeSilently@16
6CheckGamingPrivilegeSilentlyForUser@20
7CheckGamingPrivilegeWithUI@24
8CheckGamingPrivilegeWithUIForUser@28
9ProcessPendingGameUI@4
10ShowChangeFriendRelationshipUI@12
11ShowChangeFriendRelationshipUIForUser@16
12ShowGameInviteUI@24
13ShowGameInviteUIForUser@28
14ShowGameInviteUIWithContext@28
15ShowGameInviteUIWithContextForUser@32
16ShowPlayerPickerUI@36
17ShowPlayerPickerUIForUser@40
18ShowProfileCardUI@12
19ShowProfileCardUIForUser@16
20ShowTitleAchievementsUI@12
21ShowTitleAchievementsUIForUser@16
22TryCancelPendingGameUI@0
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-4.def deleted-30
......@@ -1,30 +0,0 @@
1LIBRARY api-ms-win-gaming-tcui-l1-1-4
2
3EXPORTS
4
5CheckGamingPrivilegeSilently@16
6CheckGamingPrivilegeSilentlyForUser@20
7CheckGamingPrivilegeWithUI@24
8CheckGamingPrivilegeWithUIForUser@28
9ProcessPendingGameUI@4
10ShowChangeFriendRelationshipUI@12
11ShowChangeFriendRelationshipUIForUser@16
12ShowCustomizeUserProfileUI@
13ShowCustomizeUserProfileUIForUser@12
14ShowFindFriendsUI@8
15ShowFindFriendsUIForUser@12
16ShowGameInfoUI@12
17ShowGameInfoUIForUser@16
18ShowGameInviteUI@24
19ShowGameInviteUIForUser@28
20ShowGameInviteUIWithContext@28
21ShowGameInviteUIWithContextForUser@32
22ShowPlayerPickerUI@36
23ShowPlayerPickerUIForUser@40
24ShowProfileCardUI@12
25ShowProfileCardUIForUser@16
26ShowTitleAchievementsUI@12
27ShowTitleAchievementsUIForUser@16
28ShowUserSettingsUI@8
29ShowUserSettingsUIForUser@12
30TryCancelPendingGameUI@0
lib/libc/mingw/lib32/api-ms-win-security-isolatedcontainer-l1-1-0.def deleted-5
......@@ -1,5 +0,0 @@
1LIBRARY api-ms-win-security-isolatedcontainer-l1-1-0
2
3EXPORTS
4
5IsProcessInIsolatedContainer@4
lib/libc/mingw/lib32/api-ms-win-shcore-stream-winrt-l1-1-0.def deleted-7
......@@ -1,7 +0,0 @@
1LIBRARY api-ms-win-shcore-stream-winrt-l1-1-0
2
3EXPORTS
4
5CreateRandomAccessStreamOnFile@16
6CreateRandomAccessStreamOverStream@16
7CreateStreamOverRandomAccessStream@12
lib/libc/mingw/lib32/avrt.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of AVRT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "AVRT.dll"
7EXPORTS
8AvQuerySystemResponsiveness@8
9AvRevertMmThreadCharacteristics@4
10AvRtCreateThreadOrderingGroup@16
11AvRtCreateThreadOrderingGroupExA@20
12AvRtCreateThreadOrderingGroupExW@20
13AvRtDeleteThreadOrderingGroup@4
14AvRtJoinThreadOrderingGroup@12
15AvRtLeaveThreadOrderingGroup@4
16AvRtWaitOnThreadOrderingGroup@4
17AvSetMmMaxThreadCharacteristicsA@12
18AvSetMmMaxThreadCharacteristicsW@12
19AvSetMmThreadCharacteristicsA@8
20AvSetMmThreadCharacteristicsW@8
21AvSetMmThreadPriority@8
lib/libc/mingw/lib32/bootvid.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of BOOTVID.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "BOOTVID.dll"
7EXPORTS
8VidBitBlt@12
9VidBufferToScreenBlt@24
10VidCleanUp@0
11VidDisplayString@4
12VidDisplayStringXY@16
13VidInitialize@8
14VidResetDisplay@4
15VidScreenToBufferBlt@24
16VidSetScrollRegion@16
17VidSetTextColor@4
18VidSolidColorFill@20
lib/libc/mingw/lib32/browcli.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of browcli.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "browcli.dll"
7EXPORTS
8I_BrowserDebugCall@12
9I_BrowserDebugTrace@8
10I_BrowserQueryEmulatedDomains@12
11I_BrowserQueryOtherDomains@16
12I_BrowserQueryStatistics@8
13I_BrowserResetNetlogonState@4
14I_BrowserResetStatistics@4
15I_BrowserServerEnum@44
16I_BrowserSetNetlogonState@16
17NetBrowserStatisticsGet@12
18NetServerEnum@36
19NetServerEnumEx@36
lib/libc/mingw/lib32/cabinet.def+19-7
......@@ -5,17 +5,29 @@
55;
66LIBRARY "Cabinet.dll"
77EXPORTS
8GetDllVersion@0
8CloseCompressor@4
9CloseDecompressor@4
10Compress@24
11CreateCompressor@12
12CreateDecompressor@12
13Decompress@24
14DeleteExtractedFiles@4
915DllGetVersion@4
1016Extract@8
11DeleteExtractedFiles@4
12FCICreate
1317FCIAddFile
14FCIFlushFolder
15FCIFlushCabinet
18FCICreate
1619FCIDestroy
17FDICreate
18FDIIsCabinet
20FCIFlushCabinet
21FCIFlushFolder
1922FDICopy
23FDICreate
2024FDIDestroy
25FDIIsCabinet
2126FDITruncateCabinet
27GetDllVersion@0
28QueryCompressorInformation@16
29QueryDecompressorInformation@16
30ResetCompressor@4
31ResetDecompressor@4
32SetCompressorInformation@16
33SetDecompressorInformation@16
lib/libc/mingw/lib32/cap.def created+6
......@@ -0,0 +1,6 @@
1LIBRARY CAP.DLL
2EXPORTS
3DumpCAP@0
4StartCAP@0
5StopCAP@0
6_penter
lib/libc/mingw/lib32/chakrart.def created+124
......@@ -0,0 +1,124 @@
1LIBRARY chakra
2
3EXPORTS
4
5JsAddRef@8
6JsBoolToBoolean@8
7JsBooleanToBool@8
8JsCallFunction@16
9JsCollectGarbage@4
10JsConstructObject@16
11JsConvertValueToBoolean@8
12JsConvertValueToNumber@8
13JsConvertValueToObject@8
14JsConvertValueToString@8
15JsCreateArray@8
16JsCreateArrayBuffer@8
17JsCreateContext@8
18JsCreateDataView@16
19JsCreateError@8
20JsCreateExternalArrayBuffer@20
21JsCreateExternalObject@12
22JsCreateFunction@12
23JsCreateNamedFunction@16
24JsCreateObject@4
25JsCreateRangeError@8
26JsCreateReferenceError@8
27JsCreateRuntime@12
28JsCreateSymbol@8
29JsCreateSyntaxError@8
30JsCreateThreadService@8
31JsCreateTypeError@8
32JsCreateTypedArray@20
33JsCreateURIError@8
34JsDefineProperty@16
35JsDeleteIndexedProperty@8
36JsDeleteProperty@16
37JsDisableRuntimeExecution@4
38JsDisposeRuntime@4
39JsDoubleToNumber@12
40JsEnableRuntimeExecution@4
41JsEnumerateHeap@4
42JsEquals@12
43JsGetAndClearException@4
44JsGetArrayBufferStorage@12
45JsGetContextData@8
46JsGetContextOfObject@8
47JsGetCurrentContext@4
48JsGetDataViewStorage@12
49JsGetExtensionAllowed@8
50JsGetExternalData@8
51JsGetFalseValue@4
52JsGetGlobalObject@4
53JsGetIndexedPropertiesExternalData@16
54JsGetIndexedProperty@12
55JsGetNullValue@4
56JsGetOwnPropertyDescriptor@12
57JsGetOwnPropertyNames@8
58JsGetOwnPropertySymbols@8
59JsGetProperty@12
60JsGetPropertyIdFromName@8
61JsGetPropertyIdFromSymbol@8
62JsGetPropertyIdType@8
63JsGetPropertyNameFromId@8
64JsGetPrototype@8
65JsGetRuntime@8
66JsGetRuntimeMemoryLimit@8
67JsGetRuntimeMemoryUsage@8
68JsGetStringLength@8
69JsGetSymbolFromPropertyId@8
70JsGetTrueValue@4
71JsGetTypedArrayInfo@20
72JsGetTypedArrayStorage@20
73JsGetUndefinedValue@4
74JsGetValueType@8
75JsHasException@4
76JsHasExternalData@8
77JsHasIndexedPropertiesExternalData@8
78JsHasIndexedProperty@12
79JsHasProperty@12
80JsIdle@4
81JsInspectableToObject@8
82JsInstanceOf@12
83JsIntToNumber@8
84JsIsEnumeratingHeap@4
85JsIsRuntimeExecutionDisabled@8
86JsNumberToDouble@8
87JsNumberToInt@8
88JsObjectToInspectable@8
89JsParseScript@16
90JsParseScriptWithAttributes@20
91JsParseSerializedScript@20
92JsParseSerializedScriptWithCallback@24
93JsPointerToString@12
94JsPreventExtension@4
95JsProjectWinRTNamespace@4
96JsRelease@8
97JsRunScript@16
98JsRunSerializedScript@20
99JsRunSerializedScriptWithCallback@24
100JsSerializeScript@12
101JsSetContextData@8
102JsSetCurrentContext@4
103JsSetException@4
104JsSetExternalData@8
105JsSetIndexedPropertiesToExternalData@16
106JsSetIndexedProperty@12
107JsSetObjectBeforeCollectCallback@12
108JsSetProjectionEnqueueCallback@8
109JsSetPromiseContinuationCallback@8
110JsSetProperty@16
111JsSetPrototype@8
112JsSetRuntimeBeforeCollectCallback@12
113JsSetRuntimeMemoryAllocationCallback@12
114JsSetRuntimeMemoryLimit@8
115JsStartDebugging@0
116JsStartProfiling@12
117JsStopProfiling@4
118JsStrictEquals@12
119JsStringToPointer@12
120JsValueToVariant@8
121JsVarAddRef@4
122JsVarRelease@4
123JsVarToExtension@8
124JsVariantToValue@8
lib/libc/mingw/lib32/classpnp.def created+64
......@@ -0,0 +1,64 @@
1;
2; Definition file of CLASSPNP.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "CLASSPNP.SYS"
7EXPORTS
8ClassAcquireChildLock@4
9ClassAcquireRemoveLockEx@16
10ClassAsynchronousCompletion@12
11ClassBuildRequest@8
12ClassCheckMediaState@4
13ClassClaimDevice@8
14ClassCleanupMediaChangeDetection@4
15ClassCompleteRequest@12
16ClassCreateDeviceObject@20
17ClassDebugPrint
18ClassDeleteSrbLookasideList@4
19ClassDeviceControl@8
20ClassDisableMediaChangeDetection@4
21ClassEnableMediaChangeDetection@4
22ClassFindModePage@16
23ClassForwardIrpSynchronous@8
24ClassGetDescriptor@12
25ClassGetDeviceParameter@16
26ClassGetDriverExtension@4
27ClassGetVpb@4
28ClassInitialize@12
29ClassInitializeEx@12
30ClassInitializeMediaChangeDetection@8
31ClassInitializeSrbLookasideList@8
32ClassInitializeTestUnitPolling@8
33ClassInternalIoControl@8
34ClassInterpretSenseInfo@28
35ClassInvalidateBusRelations@4
36ClassIoComplete@12
37ClassIoCompleteAssociated@12
38ClassMarkChildMissing@8
39ClassMarkChildrenMissing@4
40ClassModeSense@16
41ClassNotifyFailurePredicted@32
42ClassQueryTimeOutRegistryValue@4
43ClassReadDriveCapacity@4
44ClassReleaseChildLock@4
45ClassReleaseQueue@4
46ClassReleaseRemoveLock@8
47ClassRemoveDevice@8
48ClassResetMediaChangeTimer@4
49ClassScanForSpecial@12
50ClassSendDeviceIoControlSynchronous@28
51ClassSendIrpSynchronous@8
52ClassSendSrbAsynchronous@24
53ClassSendSrbSynchronous@20
54ClassSendStartUnit@4
55ClassSetDeviceParameter@16
56ClassSetFailurePredictionPoll@12
57ClassSetMediaChangeState@12
58ClassSignalCompletion@12
59ClassSpinDownPowerHandler@8
60ClassSplitRequest@12
61ClassStopUnitPowerHandler@8
62ClassUpdateInformationInRegistry@20
63ClassWmiCompleteRequest@20
64ClassWmiFireEvent@20
lib/libc/mingw/lib32/cmutil.def created+252
......@@ -0,0 +1,252 @@
1;
2; Definition file of cmutil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "cmutil.dll"
7EXPORTS
8; public: __thiscall CIniA::CIniA(struct HINSTANCE__ *,char const *,char const *,char const *,char const *)
9??0CIniA@@QAE@PAUHINSTANCE__@@PBD111@Z ; has WINAPI (@20)
10; public: __thiscall CIniW::CIniW(struct HINSTANCE__ *,unsigned short const *,unsigned short const *,unsigned short const *,unsigned short const *)
11??0CIniW@@QAE@PAUHINSTANCE__@@PBG111@Z ; has WINAPI (@20)
12; public: __thiscall CRandom::CRandom(unsigned int)
13??0CRandom@@QAE@I@Z ; has WINAPI (@4)
14; public: __thiscall CRandom::CRandom(void)
15??0CRandom@@QAE@XZ
16; public: __thiscall CmLogFile::CmLogFile(void)
17??0CmLogFile@@QAE@XZ
18; public: __thiscall CIniA::~CIniA(void)
19??1CIniA@@QAE@XZ
20; public: __thiscall CIniW::~CIniW(void)
21??1CIniW@@QAE@XZ
22; public: __thiscall CmLogFile::~CmLogFile(void)
23??1CmLogFile@@QAE@XZ
24; public: class CIniA &__thiscall CIniA::operator =(class CIniA const &)
25??4CIniA@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
26; public: class CIniW &__thiscall CIniW::operator =(class CIniW const &)
27??4CIniW@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
28; public: class CRandom &__thiscall CRandom::operator =(class CRandom const &)
29??4CRandom@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
30; public: class CmLogFile &__thiscall CmLogFile::operator =(class CmLogFile const &)
31??4CmLogFile@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
32; public: void __thiscall CIniA::__dflt_ctor_closure(void)
33??_FCIniA@@QAEXXZ
34; public: void __thiscall CIniW::__dflt_ctor_closure(void)
35??_FCIniW@@QAEXXZ
36; public: void __thiscall CmLogFile::Banner(void)
37?Banner@CmLogFile@@QAEXXZ
38; protected: int __thiscall CIniA::CIniA_DeleteEntryFromReg(struct HKEY__ *,char const *,char const *)const
39?CIniA_DeleteEntryFromReg@CIniA@@IBEHPAUHKEY__@@PBD1@Z ; has WINAPI (@12)
40; protected: unsigned char *__thiscall CIniA::CIniA_GetEntryFromReg(struct HKEY__ *,char const *,char const *,unsigned long,unsigned long)const
41?CIniA_GetEntryFromReg@CIniA@@IBEPAEPAUHKEY__@@PBD1KK@Z ; has WINAPI (@20)
42; protected: int __thiscall CIniA::CIniA_WriteEntryToReg(struct HKEY__ *,char const *,char const *,unsigned char const *,unsigned long,unsigned long)const
43?CIniA_WriteEntryToReg@CIniA@@IBEHPAUHKEY__@@PBD1PBEKK@Z ; has WINAPI (@24)
44; protected: int __thiscall CIniW::CIniW_DeleteEntryFromReg(struct HKEY__ *,unsigned short const *,unsigned short const *)const
45?CIniW_DeleteEntryFromReg@CIniW@@IBEHPAUHKEY__@@PBG1@Z ; has WINAPI (@12)
46; protected: unsigned char *__thiscall CIniW::CIniW_GetEntryFromReg(struct HKEY__ *,unsigned short const *,unsigned short const *,unsigned long,unsigned long)const
47?CIniW_GetEntryFromReg@CIniW@@IBEPAEPAUHKEY__@@PBG1KK@Z ; has WINAPI (@20)
48; protected: int __thiscall CIniW::CIniW_WriteEntryToReg(struct HKEY__ *,unsigned short const *,unsigned short const *,unsigned char const *,unsigned long,unsigned long)const
49?CIniW_WriteEntryToReg@CIniW@@IBEHPAUHKEY__@@PBG1PBEKK@Z ; has WINAPI (@24)
50; protected: static void __stdcall CIniA::CIni_SetFile(char **,char const *)
51?CIni_SetFile@CIniA@@KGXPAPADPBD@Z ; has WINAPI (@8)
52; protected: static void __stdcall CIniW::CIni_SetFile(unsigned short **,unsigned short const *)
53?CIni_SetFile@CIniW@@KGXPAPAGPBG@Z ; has WINAPI (@8)
54; public: void __thiscall CIniA::Clear(void)
55?Clear@CIniA@@QAEXXZ
56; public: void __thiscall CIniW::Clear(void)
57?Clear@CIniW@@QAEXXZ
58; public: void __thiscall CmLogFile::Clear(int)
59?Clear@CmLogFile@@QAEXH@Z ; has WINAPI (@4)
60; private: long __thiscall CmLogFile::CloseFile(void)
61?CloseFile@CmLogFile@@AAEJXZ
62CmAtolA@4
63CmAtolW@4
64CmBuildFullPathFromRelativeA@8
65CmBuildFullPathFromRelativeW@8
66CmCompareStringA@8
67CmCompareStringW@8
68CmConvertRelativePathW@8
69CmConvertStrToIPv6AddrA@8
70CmConvertStrToIPv6AddrW@8
71CmEndOfStrW@4
72CmFmtMsgA
73CmFmtMsgW
74CmFree@4
75CmIsDigitW@4
76CmIsIPv6AddressA@4
77CmIsIPv6AddressW@4
78CmIsSpaceW@4
79CmLoadIconA@8
80CmLoadIconW@8
81CmLoadImageW@20
82CmLoadSmallIconA@8
83CmLoadSmallIconW@8
84CmLoadStringW@8
85CmMalloc@4
86CmMoveMemory@12
87CmParsePathW@16
88CmRealloc@8
89CmStrCatAllocA@8
90CmStrCatAllocW@8
91CmStrCharCountA@8
92CmStrCharCountW@8
93CmStrCharStuffingA@8
94CmStrCharStuffingW@8
95CmStrCpyAllocA@4
96CmStrCpyAllocW@4
97CmStrStrA@8
98CmStrStrW@8
99CmStrTrimW@4
100CmStrchrA@8
101CmStrchrW@8
102CmStripFileNameW@8
103CmStripPathAndExtW@4
104CmStrrchrA@8
105CmStrrchrW@8
106CmStrtokA@8
107CmStrtokW@8
108CmWinHelp@20
109; public: long __thiscall CmLogFile::DeInit(void)
110?DeInit@CmLogFile@@QAEJXZ
111; private: void __thiscall CmLogFile::FormatWrite(enum _CMLOG_ITEM,unsigned short *)
112?FormatWrite@CmLogFile@@AAEXW4_CMLOG_ITEM@@PAG@Z ; has WINAPI (@8)
113; public: int __thiscall CIniA::GPPB(char const *,char const *,int)const
114?GPPB@CIniA@@QBEHPBD0H@Z ; has WINAPI (@12)
115; public: int __thiscall CIniW::GPPB(unsigned short const *,unsigned short const *,int)const
116?GPPB@CIniW@@QBEHPBG0H@Z ; has WINAPI (@12)
117; public: unsigned long __thiscall CIniA::GPPI(char const *,char const *,unsigned long)const
118?GPPI@CIniA@@QBEKPBD0K@Z ; has WINAPI (@12)
119; public: unsigned long __thiscall CIniW::GPPI(unsigned short const *,unsigned short const *,unsigned long)const
120?GPPI@CIniW@@QBEKPBG0K@Z ; has WINAPI (@12)
121; public: char *__thiscall CIniA::GPPS(char const *,char const *,char const *)const
122?GPPS@CIniA@@QBEPADPBD00@Z ; has WINAPI (@12)
123; public: unsigned short *__thiscall CIniW::GPPS(unsigned short const *,unsigned short const *,unsigned short const *)const
124?GPPS@CIniW@@QBEPAGPBG00@Z ; has WINAPI (@12)
125; public: int __thiscall CRandom::Generate(void)
126?Generate@CRandom@@QAEHXZ
127; public: char const *__thiscall CIniA::GetFile(void)const
128?GetFile@CIniA@@QBEPBDXZ
129; public: unsigned short const *__thiscall CIniW::GetFile(void)const
130?GetFile@CIniW@@QBEPBGXZ
131; public: struct HINSTANCE__ *__thiscall CIniA::GetHInst(void)const
132?GetHInst@CIniA@@QBEPAUHINSTANCE__@@XZ
133; public: struct HINSTANCE__ *__thiscall CIniW::GetHInst(void)const
134?GetHInst@CIniW@@QBEPAUHINSTANCE__@@XZ
135; public: unsigned short const *__thiscall CmLogFile::GetLogFilePath(void)
136?GetLogFilePath@CmLogFile@@QAEPBGXZ
137GetOSBuildNumber
138GetOSMajorVersion
139GetOSVersion
140; public: char const *__thiscall CIniA::GetPrimaryFile(void)const
141?GetPrimaryFile@CIniA@@QBEPBDXZ
142; public: unsigned short const *__thiscall CIniW::GetPrimaryFile(void)const
143?GetPrimaryFile@CIniW@@QBEPBGXZ
144; public: char const *__thiscall CIniA::GetPrimaryRegPath(void)const
145?GetPrimaryRegPath@CIniA@@QBEPBDXZ
146; public: unsigned short const *__thiscall CIniW::GetPrimaryRegPath(void)const
147?GetPrimaryRegPath@CIniW@@QBEPBGXZ
148; public: char const *__thiscall CIniA::GetRegPath(void)const
149?GetRegPath@CIniA@@QBEPBDXZ
150; public: unsigned short const *__thiscall CIniW::GetRegPath(void)const
151?GetRegPath@CIniW@@QBEPBGXZ
152; public: char const *__thiscall CIniA::GetSection(void)const
153?GetSection@CIniA@@QBEPBDXZ
154; public: unsigned short const *__thiscall CIniW::GetSection(void)const
155?GetSection@CIniW@@QBEPBGXZ
156; public: void __thiscall CRandom::Init(unsigned long)
157?Init@CRandom@@QAEXK@Z ; has WINAPI (@4)
158; public: long __thiscall CmLogFile::Init(struct HINSTANCE__ *,int,char const *)
159?Init@CmLogFile@@QAEJPAUHINSTANCE__@@HPBD@Z ; has WINAPI (@12)
160; public: long __thiscall CmLogFile::Init(struct HINSTANCE__ *,int,unsigned short const *)
161?Init@CmLogFile@@QAEJPAUHINSTANCE__@@HPBG@Z ; has WINAPI (@12)
162; public: int __thiscall CmLogFile::IsEnabled(void)
163?IsEnabled@CmLogFile@@QAEHXZ
164IsFarEastNonOSR2Win95
165IsLogonAsSystem
166; protected: char *__thiscall CIniA::LoadEntry(char const *)const
167?LoadEntry@CIniA@@IBEPADPBD@Z ; has WINAPI (@4)
168; protected: unsigned short *__thiscall CIniW::LoadEntry(unsigned short const *)const
169?LoadEntry@CIniW@@IBEPAGPBG@Z ; has WINAPI (@4)
170; public: char *__thiscall CIniA::LoadSection(char const *)const
171?LoadSection@CIniA@@QBEPADPBD@Z ; has WINAPI (@4)
172; public: unsigned short *__thiscall CIniW::LoadSection(unsigned short const *)const
173?LoadSection@CIniW@@QBEPAGPBG@Z ; has WINAPI (@4)
174; public: void __cdecl CmLogFile::Log(enum _CMLOG_ITEM,...)
175?Log@CmLogFile@@QAAXW4_CMLOG_ITEM@@ZZ
176MakeBold@8
177; private: long __thiscall CmLogFile::OpenFile(void)
178?OpenFile@CmLogFile@@AAEJXZ
179ReleaseBold@4
180; public: void __thiscall CIniA::SetEntry(char const *)
181?SetEntry@CIniA@@QAEXPBD@Z ; has WINAPI (@4)
182; public: void __thiscall CIniW::SetEntry(unsigned short const *)
183?SetEntry@CIniW@@QAEXPBG@Z ; has WINAPI (@4)
184; public: void __thiscall CIniA::SetEntryFromIdx(unsigned long)
185?SetEntryFromIdx@CIniA@@QAEXK@Z ; has WINAPI (@4)
186; public: void __thiscall CIniW::SetEntryFromIdx(unsigned long)
187?SetEntryFromIdx@CIniW@@QAEXK@Z ; has WINAPI (@4)
188; public: void __thiscall CIniA::SetFile(char const *)
189?SetFile@CIniA@@QAEXPBD@Z ; has WINAPI (@4)
190; public: void __thiscall CIniW::SetFile(unsigned short const *)
191?SetFile@CIniW@@QAEXPBG@Z ; has WINAPI (@4)
192; public: void __thiscall CIniA::SetHInst(struct HINSTANCE__ *)
193?SetHInst@CIniA@@QAEXPAUHINSTANCE__@@@Z ; has WINAPI (@4)
194; public: void __thiscall CIniW::SetHInst(struct HINSTANCE__ *)
195?SetHInst@CIniW@@QAEXPAUHINSTANCE__@@@Z ; has WINAPI (@4)
196; public: void __thiscall CIniA::SetICSDataPath(char const *)
197?SetICSDataPath@CIniA@@QAEXPBD@Z ; has WINAPI (@4)
198; public: void __thiscall CIniW::SetICSDataPath(unsigned short const *)
199?SetICSDataPath@CIniW@@QAEXPBG@Z ; has WINAPI (@4)
200; public: long __thiscall CmLogFile::SetParams(int,unsigned long,char const *)
201?SetParams@CmLogFile@@QAEJHKPBD@Z ; has WINAPI (@12)
202; public: long __thiscall CmLogFile::SetParams(int,unsigned long,unsigned short const *)
203?SetParams@CmLogFile@@QAEJHKPBG@Z ; has WINAPI (@12)
204; public: void __thiscall CIniA::SetPrimaryFile(char const *)
205?SetPrimaryFile@CIniA@@QAEXPBD@Z ; has WINAPI (@4)
206; public: void __thiscall CIniW::SetPrimaryFile(unsigned short const *)
207?SetPrimaryFile@CIniW@@QAEXPBG@Z ; has WINAPI (@4)
208; public: void __thiscall CIniA::SetPrimaryRegPath(char const *)
209?SetPrimaryRegPath@CIniA@@QAEXPBD@Z ; has WINAPI (@4)
210; public: void __thiscall CIniW::SetPrimaryRegPath(unsigned short const *)
211?SetPrimaryRegPath@CIniW@@QAEXPBG@Z ; has WINAPI (@4)
212; public: void __thiscall CIniA::SetReadICSData(int)
213?SetReadICSData@CIniA@@QAEXH@Z ; has WINAPI (@4)
214; public: void __thiscall CIniW::SetReadICSData(int)
215?SetReadICSData@CIniW@@QAEXH@Z ; has WINAPI (@4)
216; public: void __thiscall CIniA::SetRegPath(char const *)
217?SetRegPath@CIniA@@QAEXPBD@Z ; has WINAPI (@4)
218; public: void __thiscall CIniW::SetRegPath(unsigned short const *)
219?SetRegPath@CIniW@@QAEXPBG@Z ; has WINAPI (@4)
220; public: void __thiscall CIniA::SetSection(char const *)
221?SetSection@CIniA@@QAEXPBD@Z ; has WINAPI (@4)
222; public: void __thiscall CIniW::SetSection(unsigned short const *)
223?SetSection@CIniW@@QAEXPBG@Z ; has WINAPI (@4)
224; public: void __thiscall CIniA::SetWriteICSData(int)
225?SetWriteICSData@CIniA@@QAEXH@Z ; has WINAPI (@4)
226; public: void __thiscall CIniW::SetWriteICSData(int)
227?SetWriteICSData@CIniW@@QAEXH@Z ; has WINAPI (@4)
228; public: long __thiscall CmLogFile::Start(int)
229?Start@CmLogFile@@QAEJH@Z ; has WINAPI (@4)
230; public: long __thiscall CmLogFile::Stop(void)
231?Stop@CmLogFile@@QAEJXZ
232SzToWz@12
233SzToWzWithAlloc@4
234UpdateFont@4
235; public: void __thiscall CIniA::WPPB(char const *,char const *,int)
236?WPPB@CIniA@@QAEXPBD0H@Z ; has WINAPI (@12)
237; public: void __thiscall CIniW::WPPB(unsigned short const *,unsigned short const *,int)
238?WPPB@CIniW@@QAEXPBG0H@Z ; has WINAPI (@12)
239; public: void __thiscall CIniA::WPPI(char const *,char const *,unsigned long)
240?WPPI@CIniA@@QAEXPBD0K@Z ; has WINAPI (@12)
241; public: void __thiscall CIniW::WPPI(unsigned short const *,unsigned short const *,unsigned long)
242?WPPI@CIniW@@QAEXPBG0K@Z ; has WINAPI (@12)
243; public: void __thiscall CIniA::WPPS(char const *,char const *,char const *)
244?WPPS@CIniA@@QAEXPBD00@Z ; has WINAPI (@12)
245; public: void __thiscall CIniW::WPPS(unsigned short const *,unsigned short const *,unsigned short const *)
246?WPPS@CIniW@@QAEXPBG00@Z ; has WINAPI (@12)
247; private: long __thiscall CmLogFile::Write(unsigned short *)
248?Write@CmLogFile@@AAEJPAG@Z ; has WINAPI (@4)
249WzToSz@12
250WzToSzWithAlloc@4
251; public: static unsigned long const CIniW::kMaxValueLength
252?kMaxValueLength@CIniW@@2KB
lib/libc/mingw/lib32/comctl32.def+92-62
......@@ -1,70 +1,53 @@
1LIBRARY COMCTL32.DLL
1LIBRARY COMCTL32.dll
22EXPORTS
3_TrackMouseEvent@4
4AddMRUData@12
5AddMRUStringA@8
6AddMRUStringW@8
7Alloc@4
8CreateMRUListA@4
9CreateMRUListW@4
3MenuHelp@28
4ShowHideMenuCtl@12
5GetEffectiveClientRect@12
6DrawStatusTextA@16
7CreateStatusWindowA@16
8CreateToolbar@32
109CreateMappedBitmap@20
11CreatePage@8
10DPA_LoadStream@16
11DPA_SaveStream@16
12DPA_Merge@24
1213CreatePropertySheetPage@4
14MakeDragList@4
15LBItemFromPt@16
16DrawInsert@12
17CreateUpDownControl@48
18InitCommonControls@0
1319CreatePropertySheetPageA@4
1420CreatePropertySheetPageW@4
15CreateProxyPage@8
1621CreateStatusWindow@16
17CreateStatusWindowA@16
1822CreateStatusWindowW@16
19CreateToolbar@32
2023CreateToolbarEx@52
21CreateUpDownControl@48
22DPA_Clone@8
23DPA_Create@4
24DPA_CreateEx@8
25DPA_DeleteAllPtrs@4
26DPA_DeletePtr@8
27DPA_Destroy@4
28DPA_GetPtr@8
29DPA_GetPtrIndex@8
30DPA_Grow@8
31DPA_InsertPtr@12
32DPA_Search@24
33DPA_SetPtr@12
34DPA_Sort@12
35DSA_Create@8
36DSA_DeleteAllItems@4
37DSA_DeleteItem@8
38DSA_Destroy@4
39DSA_GetItem@12
40DSA_GetItemPtr@8
41DSA_InsertItem@12
42DSA_SetItem@12
43DefSubclassProc@16
44DelMRUString@8
4524DestroyPropertySheetPage@4
46DrawInsert@12
25DllGetVersion@4
26DllInstall@8
27DrawShadowText@36
4728DrawStatusText@16
48DrawStatusTextA@16
4929DrawStatusTextW@16
50EnumMRUListA@16
51EnumMRUListW@16
52FindMRUData@16
53FindMRUStringA@12
54FindMRUStringW@12
55Free@4
56FreeMRUList@4
57GetEffectiveClientRect@12
30FlatSB_EnableScrollBar@12
31FlatSB_GetScrollInfo@12
32FlatSB_GetScrollPos@8
33FlatSB_GetScrollProp@12
34FlatSB_GetScrollRange@16
35FlatSB_SetScrollInfo@16
36FlatSB_SetScrollPos@16
37FlatSB_SetScrollProp@16
38FlatSB_SetScrollRange@20
39FlatSB_ShowScrollBar@12
5840GetMUILanguage@0
59GetSize@4
60GetWindowSubclass@16
41HIMAGELIST_QueryInterface@12
6142ImageList_Add@12
6243ImageList_AddIcon@8
6344ImageList_AddMasked@12
6445ImageList_BeginDrag@16
46ImageList_CoCreateInstance@16
6547ImageList_Copy@20
6648ImageList_Create@20
6749ImageList_Destroy@4
50ImageList_DestroyShared@4
6851ImageList_DragEnter@12
6952ImageList_DragLeave@4
7053ImageList_DragMove@8
......@@ -76,6 +59,7 @@ ImageList_Duplicate@4
7659ImageList_EndDrag@0
7760ImageList_GetBkColor@4
7861ImageList_GetDragImage@8
62ImageList_GetFlags@4
7963ImageList_GetIcon@12
8064ImageList_GetIconSize@12
8165ImageList_GetImageCount@4
......@@ -86,34 +70,80 @@ ImageList_LoadImageA@28
8670ImageList_LoadImageW@28
8771ImageList_Merge@24
8872ImageList_Read@4
73ImageList_ReadEx@16
8974ImageList_Remove@8
9075ImageList_Replace@16
9176ImageList_ReplaceIcon@12
77ImageList_Resize@12
9278ImageList_SetBkColor@8
9379ImageList_SetDragCursorImage@16
80ImageList_SetFilter@12
81ImageList_SetFlags@8
9482ImageList_SetIconSize@12
9583ImageList_SetImageCount@8
9684ImageList_SetOverlayImage@12
9785ImageList_Write@8
98InitCommonControls@0
86ImageList_WriteEx@12
9987InitCommonControlsEx@4
10088InitMUILanguage@4
101LBItemFromPt@16
102LoadIconMetric@16
103MakeDragList@4
104MenuHelp@28
89InitializeFlatSB@4
10590PropertySheet@4
10691PropertySheetA@4
10792PropertySheetW@4
108ReAlloc@8
109RemoveWindowSubclass@12
110SendNotify@16
111SendNotifyEx@20
112SetWindowSubclass@16
113ShowHideMenuCtl@12
114Str_GetPtrA@12
115Str_GetPtrW@12
116Str_SetPtrA@8
93RegisterClassNameW@4
94UninitializeFlatSB@4
95_TrackMouseEvent@4
96FreeMRUList@4
97DrawSizeBox@16
98DrawScrollBar@16
99SizeBoxHwnd@4
100ScrollBar_MouseMove@12
101ScrollBar_Menu@16
102HandleScrollCmd@12
103DetachScrollBars@4
104AttachScrollBars@4
105CCSetScrollInfo@16
106CCGetScrollInfo@12
107CCEnableScrollBar@12
117108Str_SetPtrW@8
109DSA_Create@8
110DSA_Destroy@4
111DSA_GetItem@12
112DSA_GetItemPtr@8
113DSA_InsertItem@12
114DSA_SetItem@12
115DSA_DeleteItem@8
116DSA_DeleteAllItems@4
117DPA_Create@4
118DPA_Destroy@4
119DPA_Grow@8
120DPA_Clone@8
121DPA_GetPtr@8
122DPA_GetPtrIndex@8
123DPA_InsertPtr@12
124DPA_SetPtr@12
125DPA_DeletePtr@8
126DPA_DeleteAllPtrs@4
127DPA_Sort@12
128DPA_Search@24
129DPA_CreateEx@8
130DSA_Clone@4
118131TaskDialog@32
119132TaskDialogIndirect@16
133DSA_Sort@12
134DPA_GetSize@4
135DSA_GetSize@4
136LoadIconMetric@16
137LoadIconWithScaleDown@20
138DPA_EnumCallback@12
139DPA_DestroyCallback@12
140DSA_EnumCallback@12
141DSA_DestroyCallback@12
142QuerySystemGestureStatus@16
143CreateMRUListW@4
144AddMRUStringW@8
145EnumMRUListW@16
146SetWindowSubclass@16
147GetWindowSubclass@16
148RemoveWindowSubclass@12
149DefSubclassProc@16
lib/libc/mingw/lib32/connect.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of connect.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "connect.dll"
7EXPORTS
8AddConnectionOptionListEntries@12
9CreateVPNConnection@24
10DllCanUnloadNow@0
11DllGetClassObject@12
12GetInternetConnected@24
13GetNetworkConnected@24
14GetVPNConnected@24
15IsInternetConnected@0
16IsInternetConnectedGUID@8
17IsUniqueConnectionName@4
18RegisterPageWithPage@28
19UnregisterPage@8
20UnregisterPagesLink@8
lib/libc/mingw/lib32/coremessaging.def created+33
......@@ -0,0 +1,33 @@
1LIBRARY coremessaging
2
3EXPORTS
4
5CoreUICallComputeMaximumMessageSize
6CoreUICallCreateConversationHost
7CoreUICallCreateEndpointHost
8CoreUICallCreateEndpointHostWithSendPriority
9CoreUICallGetAddressOfParameterInBuffer
10CoreUICallReceive
11CoreUICallSend
12CoreUICallSendVaList
13CoreUIConfigureTestHost@0
14CoreUIConfigureUserIntegration@4
15CoreUICreate@4
16CoreUICreateAnonymousStream@4
17CoreUICreateClientWindowIDManager@4
18CoreUICreateEx@8
19CoreUICreateSystemWindowIDManager@4
20CoreUIInitializeTestService@12
21CoreUIOpenExisting@4
22CoreUIRouteToTestRegistrar@8
23CoreUIUninitializeTestService@0
24CreateDispatcherQueueController@16
25CreateDispatcherQueueForCurrentThread@4
26GetDispatcherQueueForCurrentThread@4
27MsgBlobCreateShared@12
28MsgBlobCreateStack@16
29MsgBufferShare@8
30MsgRelease@4
31MsgStringCreateShared@12
32MsgStringCreateStack@16
33ServiceMain@8
lib/libc/mingw/lib32/crtdll.def.in created+726
......@@ -0,0 +1,726 @@
1;
2;* crtdll.def
3;* This file has no copyright assigned and is placed in the Public Domain.
4;* This file is part of the mingw-runtime package.
5;* No warranty is given; refer to the file DISCLAIMER.PD within the package.
6;
7; Exports from crtdll.dll from Windows 95 SYSTEM directory. Hopefully this
8; should also work with the crtdll provided with Windows NT.
9;
10; NOTE: The crtdll is OBSOLETE and msvcrt should be used instead. The msvcrt
11; is available for free download from Microsoft Corporation and will work on
12; Windows 95. Support for the crtdll is deprecated and this file may be
13; deleted in future versions.
14;
15; These three functions appear to be name mangled in some way, so GCC is
16; probably not going to be able to use them in any case.
17;
18; ??2@YAPAXI@Z
19; ??3@YAXPAX@Z
20; ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z
21;
22; These are functions for which I have not yet written prototypes or
23; otherwise set up (they are still included below though unlike those
24; first three).
25;
26; _CIacos
27; _CIasin
28; _CIatan
29; _CIatan2
30; _CIcos
31; _CIcosh
32; _CIexp
33; _CIfmod
34; _CIlog
35; _CIlog10
36; _CIpow
37; _CIsin
38; _CIsinh
39; _CIsqrt
40; _CItan
41; _CItanh
42; __dllonexit
43; __mb_cur_max_dll
44; __threadhandle
45; __threadid
46; _abnormal_termination
47; _acmdln_dll
48; _aexit_rtn_dll
49; _amsg_exit
50; _commit
51; _commode_dll
52; _cpumode_dll
53; _ctype
54; _expand
55; _fcloseall
56; _filbuf
57; _fileinfo_dll
58; _flsbuf
59; _flushall
60; _fmode_dll
61; _fpieee_flt
62; _fsopen
63; _ftol
64; _getdiskfree
65; _getdllprocaddr
66; _getdrive
67; _getdrives
68; _getsystime
69; _initterm
70; _ismbbalnum
71; _ismbbalpha
72; _ismbbgraph
73; _ismbbkalnum
74; _ismbbkana
75; _ismbbkpunct
76; _ismbblead
77; _ismbbprint
78; _ismbbpunct
79; _ismbbtrail
80; _ismbcalpha
81; _ismbcdigit
82; _ismbchira
83; _ismbckata
84; _ismbcl0
85; _ismbcl1
86; _ismbcl2
87; _ismbclegal
88; _ismbclower
89; _ismbcprint
90; _ismbcspace
91; _ismbcsymbol
92; _ismbcupper
93; _ismbslead
94; _ismbstrail
95; _lfind
96; _loaddll
97; _lrotl
98; _lrotr
99; _lsearch
100; _makepath
101; _matherr
102; _mbbtombc
103; _mbbtype
104; _mbccpy
105; _mbcjistojms
106; _mbcjmstojis
107; _mbclen
108; _mbctohira
109; _mbctokata
110; _mbctolower
111; _mbctombb
112; _mbctoupper
113; _mbctype
114; _mbsbtype
115; _mbscat
116; _mbscmp
117; _mbscpy
118; _mbscspn
119; _mbsdec
120; _mbsdup
121; _mbsicmp
122; _mbsinc
123; _mbslen
124; _mbslwr
125; _mbsnbcat
126; _mbsnbcmp
127; _mbsnbcnt
128; _mbsnbcpy
129; _mbsnbicmp
130; _mbsnbset
131; _mbsnccnt
132; _mbsncmp
133; _mbsncpy
134; _mbsnextc
135; _mbsnicmp
136; _mbsninc
137; _mbsnset
138; _mbspbrk
139; _mbsrchr
140; _mbsrev
141; _mbsset
142; _mbsspn
143; _mbsspnp
144; _mbsstr
145; _mbstrlen
146; _mbsupr
147; _onexit
148; _osversion_dll
149; _pctype_dll
150; _purecall
151; _pwctype_dll
152; _rmtmp
153; _rotl
154; _rotr
155; _setsystime
156; _snprintf
157; _snwprintf
158; _splitpath
159; _strdate
160; _strdec
161; _strinc
162; _strncnt
163; _strnextc
164; _strninc
165; _strspnp
166; _strtime
167; _tempnam
168; _ultoa
169; _unloaddll
170; _vsnprintf
171; _vsnwprintf
172; _wtoi
173; _wtol
174;
175LIBRARY "crtdll.dll"
176EXPORTS
177
178#include "msvcrt-common.def.in"
179
180_CIacos
181_CIasin
182_CIatan
183_CIatan2
184_CIcos
185_CIcosh
186_CIexp
187_CIfmod
188_CIlog
189_CIlog10
190_CIpow
191_CIsin
192_CIsinh
193_CIsqrt
194_CItan
195_CItanh
196_HUGE_dll DATA
197_HUGE DATA == _HUGE_dll
198_XcptFilter
199__GetMainArgs
200__argc_dll DATA
201__argc DATA == __argc_dll
202__argv_dll DATA
203__argv DATA == __argv_dll
204__dllonexit
205__doserrno
206__fpecode
207__isascii
208__iscsym
209__iscsymf
210__mb_cur_max_dll DATA
211__mb_cur_max DATA == __mb_cur_max_dll
212__pxcptinfoptrs
213__threadhandle
214__threadid
215__toascii
216_abnormal_termination
217_access
218_acmdln_dll DATA
219_acmdln DATA == _acmdln_dll
220_aexit_rtn_dll DATA
221_aexit_rtn DATA == _aexit_rtn_dll
222_amsg_exit
223_assert
224_basemajor_dll DATA
225_baseminor_dll DATA
226_baseversion_dll DATA
227_beep
228_beginthread
229_c_exit
230_cabs DATA
231_cexit
232_cgets
233_chdir
234_chdrive
235_chgsign
236_chmod
237_chsize
238_clearfp
239_close
240_commit
241_commode_dll DATA
242_commode DATA == _commode_dll
243_control87
244_controlfp
245_copysign
246_cprintf
247_cpumode_dll DATA
248_cputs
249_creat
250_cscanf
251_ctype DATA
252_cwait
253_daylight_dll DATA
254_daylight DATA == _daylight_dll
255_dup
256_dup2
257_ecvt
258_endthread
259_environ_dll DATA
260_environ DATA == _environ_dll
261_eof
262_errno
263_except_handler2
264_execl
265_execle
266_execlp
267_execlpe
268_execv
269_execve
270_execvp
271_execvpe
272_exit
273_expand
274_fcloseall
275_fcvt
276_fdopen
277_fgetchar
278_fgetwchar
279_filbuf
280_fileinfo_dll DATA
281_fileinfo DATA == _fileinfo_dll
282_filelength
283_fileno
284_findclose
285_findfirst
286_findnext
287_finite
288_flsbuf
289_flushall
290_fmode_dll DATA
291_fmode DATA == _fmode_dll
292_fpclass
293_fpieee_flt
294_fpreset DATA
295_fputchar
296_fputwchar
297_fsopen
298_fstat
299_ftime
300_ftol
301_fullpath
302_futime
303_gcvt
304_get_osfhandle
305_getch
306_getche
307_getcwd
308_getdcwd
309_getdiskfree
310_getdllprocaddr
311_getdrive
312_getdrives
313_getpid
314_getsystime
315_getw
316_global_unwind2
317_heapchk
318_heapmin
319_heapset
320_heapwalk
321_hypot
322_initterm
323_iob DATA
324_isatty
325_isctype
326_ismbbalnum
327_ismbbalpha
328_ismbbgraph
329_ismbbkalnum
330_ismbbkana
331_ismbbkpunct
332_ismbblead
333_ismbbprint
334_ismbbpunct
335_ismbbtrail
336_ismbcalpha
337_ismbcdigit
338_ismbchira
339_ismbckata
340_ismbcl0
341_ismbcl1
342_ismbcl2
343_ismbclegal
344_ismbclower
345_ismbcprint
346_ismbcspace
347_ismbcsymbol
348_ismbcupper
349_ismbslead
350_ismbstrail
351_isnan
352_itoa
353_j0
354_j1
355_jn
356_kbhit
357_lfind
358_loaddll
359_local_unwind2
360_locking
361_logb
362_lrotl
363_lrotr
364_lsearch
365_lseek
366_ltoa
367_makepath
368_matherr
369_mbbtombc
370_mbbtype
371_mbccpy
372_mbcjistojms
373_mbcjmstojis
374_mbclen
375_mbctohira
376_mbctokata
377_mbctolower
378_mbctombb
379_mbctoupper
380_mbctype DATA
381_mbsbtype
382_mbscat
383_mbschr
384_mbscmp
385_mbscpy
386_mbscspn
387_mbsdec
388_mbsdup
389_mbsicmp
390_mbsinc
391_mbslen
392_mbslwr
393_mbsnbcat
394_mbsnbcmp
395_mbsnbcnt
396_mbsnbcpy
397_mbsnbicmp
398_mbsnbset
399_mbsncat
400_mbsnccnt
401_mbsncmp
402_mbsncpy
403_mbsnextc
404_mbsnicmp
405_mbsninc
406_mbsnset
407_mbspbrk
408_mbsrchr
409_mbsrev
410_mbsset
411_mbsspn
412_mbsspnp
413_mbsstr
414_mbstok
415_mbstrlen
416_mbsupr
417_memccpy
418_memicmp
419_mkdir
420_mktemp
421_msize
422_nextafter
423_onexit
424_open
425_open_osfhandle
426_osmajor_dll DATA
427_osminor_dll DATA
428_osmode_dll DATA
429_osver_dll DATA
430_osver DATA == _osver_dll
431_osversion_dll DATA
432_pclose
433_pctype_dll DATA
434_pctype DATA == _pctype_dll
435_pgmptr_dll DATA
436_pgmptr DATA == _pgmptr_dll
437_pipe
438_popen
439_purecall
440_putch
441_putenv
442_putw
443_pwctype_dll DATA
444_pwctype DATA == _pwctype_dll
445_read
446_rmdir
447_rmtmp
448_rotl
449_rotr
450_scalb
451_searchenv
452_seterrormode
453_setjmp
454_setmode
455_setsystime
456_sleep
457_snprintf
458_snwprintf
459_sopen
460_spawnl
461_spawnle
462_spawnlp
463_spawnlpe
464_spawnv
465_spawnve
466_spawnvp
467_spawnvpe
468_splitpath
469_stat
470_statusfp
471_strcmpi
472_strdate
473_strdec
474_strdup
475_strerror
476_stricmp
477_stricoll
478_strinc
479_strlwr
480strlwr == _strlwr
481_strncnt
482_strnextc
483_strnicmp
484_strninc
485_strnset
486_strrev
487_strset
488_strspnp
489_strtime
490_strupr
491_swab
492_sys_errlist DATA
493_sys_nerr_dll DATA
494_sys_nerr DATA == _sys_nerr_dll
495_tell
496_tempnam
497_timezone_dll DATA
498_timezone DATA == _timezone_dll
499_tolower
500_toupper
501_tzname DATA
502_tzset
503_ultoa
504_umask
505_ungetch
506_unlink
507_unloaddll
508_utime
509_vsnprintf
510_vsnwprintf
511_wcsdup
512_wcsicmp
513_wcsicoll
514_wcslwr
515wcslwr == _wcslwr
516_wcsnicmp
517_wcsnset
518_wcsrev
519_wcsset
520_wcsupr
521_winmajor_dll DATA
522_winmajor DATA == _winmajor_dll
523_winminor_dll DATA
524_winminor DATA == _winminor_dll
525_winver_dll DATA
526_winver DATA == _winver_dll
527_write
528_wtoi
529_wtol
530_y0
531_y1
532_yn
533abort
534abs
535acos
536asctime
537asin DATA
538atan DATA
539atan2 DATA
540atexit DATA
541atof
542atoi
543atol
544bsearch
545calloc
546ceil
547clearerr
548clock
549cos DATA
550cosh
551ctime DATA
552;_ctime32 = ctime
553difftime
554div
555exit
556exp DATA
557fabs DATA
558fclose
559feof
560ferror
561fflush
562fgetc
563fgetpos
564fgets
565fgetwc
566floor
567fmod
568fopen
569fprintf
570fputc
571fputs
572fputwc
573fread
574free
575freopen
576frexp
577fscanf
578fseek
579fsetpos
580ftell
581fwprintf
582fwrite
583fwscanf
584getc
585getchar
586getenv
587gets
588gmtime DATA
589;_gmtime32 = gmtime
590is_wctype
591isalnum
592isalpha
593iscntrl
594isdigit
595isgraph
596isleadbyte
597islower
598isprint
599ispunct
600isspace
601isupper
602iswalnum
603iswalpha
604iswascii
605iswcntrl
606iswctype
607iswdigit
608iswgraph
609iswlower
610iswprint
611iswpunct
612iswspace
613iswupper
614iswxdigit
615isxdigit
616labs
617ldexp DATA
618ldiv
619localeconv
620localtime DATA
621;_localtime32 = localtime
622log
623log10
624longjmp
625malloc
626mblen
627mbstowcs
628mbtowc
629memchr
630memcmp
631memcpy
632memmove
633memset
634mktime DATA
635;_mktime32 = mktime
636modf
637perror
638pow
639printf
640putc
641putchar
642puts
643qsort
644raise
645rand
646realloc
647remove
648rename
649rewind
650scanf
651setbuf
652setlocale
653setvbuf
654signal
655sin
656sinh
657sprintf
658sqrt
659srand
660sscanf
661strcat
662strchr
663strcmp
664strcoll
665strcpy
666strcspn
667strerror
668strftime
669strlen
670strncat
671strncmp
672strncpy
673strpbrk
674strrchr
675strspn
676strstr
677strtod
678strtok
679strtol
680strtoul
681strxfrm
682swprintf
683swscanf
684system
685tan
686tanh
687time DATA
688;_time32 = time
689tmpfile
690tmpnam
691tolower
692toupper
693towlower
694towupper
695ungetc
696ungetwc
697vfprintf
698vfwprintf
699vprintf
700vsprintf
701vswprintf
702vwprintf
703wcscat
704wcschr
705wcscmp
706wcscoll
707wcscpy
708wcscspn
709wcsftime
710wcslen
711wcsncat
712wcsncmp
713wcsncpy
714wcspbrk
715wcsrchr
716wcsspn
717wcsstr
718wcstod
719wcstok
720wcstol
721wcstombs
722wcstoul
723wcsxfrm
724wctomb
725wprintf
726wscanf
lib/libc/mingw/lib32/cryptsp.def created+48
......@@ -0,0 +1,48 @@
1;
2; Definition file of CRYPTSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "CRYPTSP.dll"
7EXPORTS
8CheckSignatureInFile@4
9CryptAcquireContextA@20
10CryptAcquireContextW@20
11CryptContextAddRef@12
12CryptCreateHash@20
13CryptDecrypt@24
14CryptDeriveKey@20
15CryptDestroyHash@4
16CryptDestroyKey@4
17CryptDuplicateHash@16
18CryptDuplicateKey@16
19CryptEncrypt@28
20CryptEnumProviderTypesA@24
21CryptEnumProviderTypesW@24
22CryptEnumProvidersA@24
23CryptEnumProvidersW@24
24CryptExportKey@24
25CryptGenKey@16
26CryptGenRandom@12
27CryptGetDefaultProviderA@20
28CryptGetDefaultProviderW@20
29CryptGetHashParam@20
30CryptGetKeyParam@20
31CryptGetProvParam@20
32CryptGetUserKey@12
33CryptHashData@16
34CryptHashSessionKey@12
35CryptImportKey@24
36CryptReleaseContext@8
37CryptSetHashParam@16
38CryptSetKeyParam@16
39CryptSetProvParam@16
40CryptSetProviderA@8
41CryptSetProviderExA@16
42CryptSetProviderExW@16
43CryptSetProviderW@8
44CryptSignHashA@24
45CryptSignHashW@24
46CryptVerifySignatureA@24
47CryptVerifySignatureW@24
48SystemFunction035@4
lib/libc/mingw/lib32/ctl3d32.def created+27
......@@ -0,0 +1,27 @@
1LIBRARY CTL3D32.DLL
2EXPORTS
3BtnWndProc3d@16
4ComboWndProc3d@16
5Ctl3dAutoSubclass@4
6Ctl3dAutoSubclassEx@8
7Ctl3dColorChange@0
8Ctl3dCtlColor@8
9Ctl3dCtlColorEx@12
10Ctl3dDlgFramePaint@16
11Ctl3dDlgProc@16
12Ctl3dEnabled@0
13Ctl3dGetVer@0
14Ctl3dIsAutoSubclass@0
15Ctl3dRegister@4
16Ctl3dSetStyle@12
17Ctl3dSubclassCtl@4
18Ctl3dSubclassCtlEx@8
19Ctl3dSubclassDlg@8
20Ctl3dSubclassDlgEx@8
21Ctl3dUnAutoSubclass@0
22Ctl3dUnregister@4
23Ctl3dUnsubclassCtl@4
24Ctl3dWinIniChange@0
25EditWndProc3d@16
26ListWndProc3d@16
27StaticWndProc3d@16
lib/libc/mingw/lib32/d2d1.def+10-2
......@@ -5,8 +5,16 @@
55;
66LIBRARY "d2d1.dll"
77EXPORTS
8D2D1ComputeMaximumScaleFactor@4
9D2D1ConvertColorSpace@12
10D2D1CreateDevice@12
11D2D1CreateDeviceContext@12
812D2D1CreateFactory@16
13D2D1GetGradientMeshInteriorPointsFromCoonsPatch@64
14D2D1InvertMatrix@4
15D2D1IsMatrixInvertible@4
916D2D1MakeRotateMatrix@16
1017D2D1MakeSkewMatrix@20
11D2D1IsMatrixInvertible@4
12D2D1InvertMatrix@4
18D2D1SinCos@12
19D2D1Tan@4
20D2D1Vec3Length@12
lib/libc/mingw/lib32/d3d11.def-1
......@@ -43,7 +43,6 @@ D3DKMTGetSharedPrimaryHandle@4
4343D3DKMTLock@4
4444D3DKMTOpenAdapterFromHdc@4
4545D3DKMTOpenResource@4
46D3DKMTPresent@4
4746D3DKMTQueryAllocationResidency@4
4847D3DKMTQueryResourceInfo@4
4948D3DKMTRender@4
lib/libc/mingw/lib32/d3d8.def created+6
......@@ -0,0 +1,6 @@
1LIBRARY d3d8.dll
2EXPORTS
3ValidatePixelShader@16
4ValidateVertexShader@20
5;DebugSetMute@0 ;unknown
6Direct3DCreate8@4
lib/libc/mingw/lib32/d3dcompiler_33.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory@44
9D3DDisassembleCode@20
10D3DDisassembleEffect@12
11D3DGetCodeDebugInfo@12
12D3DGetInputAndOutputSignatureBlob@12
13D3DGetInputSignatureBlob@12
14D3DGetOutputSignatureBlob@12
15D3DPreprocessFromMemory@28
16D3DReflectCode@16
17DebugSetMute@0
lib/libc/mingw/lib32/d3dcompiler_34.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory@44
9D3DDisassembleCode@20
10D3DDisassembleEffect@12
11D3DGetCodeDebugInfo@12
12D3DGetInputAndOutputSignatureBlob@12
13D3DGetInputSignatureBlob@12
14D3DGetOutputSignatureBlob@12
15D3DPreprocessFromMemory@28
16D3DReflectCode@16
17DebugSetMute@0
lib/libc/mingw/lib32/d3dcompiler_35.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory@44
9D3DDisassembleCode@20
10D3DDisassembleEffect@12
11D3DGetCodeDebugInfo@12
12D3DGetInputAndOutputSignatureBlob@12
13D3DGetInputSignatureBlob@12
14D3DGetOutputSignatureBlob@12
15D3DPreprocessFromMemory@28
16D3DReflectCode@16
17DebugSetMute@0
lib/libc/mingw/lib32/d3dcompiler_36.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory@44
9D3DDisassembleCode@20
10D3DDisassembleEffect@12
11D3DGetCodeDebugInfo@12
12D3DGetInputAndOutputSignatureBlob@12
13D3DGetInputSignatureBlob@12
14D3DGetOutputSignatureBlob@12
15D3DPreprocessFromMemory@28
16D3DReflectCode@16
17DebugSetMute@0
lib/libc/mingw/lib32/d3dcompiler_37.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler_37.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_37.dll"
7EXPORTS
8D3DCompileFromMemory@44
9D3DDisassembleCode@20
10D3DDisassembleEffect@12
11D3DGetCodeDebugInfo@12
12D3DGetInputAndOutputSignatureBlob@12
13D3DGetInputSignatureBlob@12
14D3DGetOutputSignatureBlob@12
15D3DPreprocessFromMemory@28
16D3DReflectCode@16
17DebugSetMute@0
lib/libc/mingw/lib32/d3dcompiler_38.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of D3DCompiler_38.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_38.dll"
7EXPORTS
8D3DCompileFromMemory@44
9D3DDisassembleCode@20
10D3DDisassembleEffect@12
11D3DGetCodeDebugInfo@12
12D3DGetInputAndOutputSignatureBlob@12
13D3DGetInputSignatureBlob@12
14D3DGetOutputSignatureBlob@12
15D3DPreprocessFromMemory@28
16D3DReflectCode@16
17D3DReturnFailure1@12
18DebugSetMute@0
lib/libc/mingw/lib32/d3dcompiler_39.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of D3DCompiler_39.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_39.dll"
7EXPORTS
8D3DCompileFromMemory@44
9D3DDisassembleCode@20
10D3DDisassembleEffect@12
11D3DGetCodeDebugInfo@12
12D3DGetInputAndOutputSignatureBlob@12
13D3DGetInputSignatureBlob@12
14D3DGetOutputSignatureBlob@12
15D3DPreprocessFromMemory@28
16D3DReflectCode@16
17D3DReturnFailure1@12
18DebugSetMute@0
lib/libc/mingw/lib32/d3dcompiler_40.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of D3DCompiler_40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_40.dll"
7EXPORTS
8DebugSetMute@0
9D3DCompile@44
10D3DDisassemble10Effect@12
11D3DDisassemble@20
12D3DGetDebugInfo@12
13D3DGetInputAndOutputSignatureBlob@12
14D3DGetInputSignatureBlob@12
15D3DGetOutputSignatureBlob@12
16D3DPreprocess@28
17D3DReflect@16
18D3DReturnFailure1@12
19D3DStripShader@16
lib/libc/mingw/lib32/d3dcompiler_41.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of D3DCompiler_41.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_41.dll"
7EXPORTS
8D3DAssemble@32
9DebugSetMute@0
10D3DCompile@44
11D3DDisassemble10Effect@12
12D3DDisassemble@20
13D3DGetDebugInfo@12
14D3DGetInputAndOutputSignatureBlob@12
15D3DGetInputSignatureBlob@12
16D3DGetOutputSignatureBlob@12
17D3DPreprocess@28
18D3DReflect@16
19D3DReturnFailure1@12
20D3DStripShader@16
lib/libc/mingw/lib32/d3dcompiler_42.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of D3DCompiler_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_42.dll"
7EXPORTS
8D3DAssemble@32
9DebugSetMute@0
10D3DCompile@44
11D3DDisassemble10Effect@12
12D3DDisassemble@20
13D3DGetDebugInfo@12
14D3DGetInputAndOutputSignatureBlob@12
15D3DGetInputSignatureBlob@12
16D3DGetOutputSignatureBlob@12
17D3DPreprocess@28
18D3DReflect@16
19D3DReturnFailure1@12
20D3DStripShader@16
lib/libc/mingw/lib32/d3dcompiler_43.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of D3DCOMPILER_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCOMPILER_43.dll"
7EXPORTS
8D3DAssemble@32
9DebugSetMute@0
10D3DCompile@44
11D3DCompressShaders@16
12D3DCreateBlob@8
13D3DDecompressShaders@32
14D3DDisassemble10Effect@12
15D3DDisassemble@20
16D3DGetBlobPart@20
17D3DGetDebugInfo@12
18D3DGetInputAndOutputSignatureBlob@12
19D3DGetInputSignatureBlob@12
20D3DGetOutputSignatureBlob@12
21D3DPreprocess@28
22D3DReflect@16
23D3DReturnFailure1@12
24D3DStripShader@16
lib/libc/mingw/lib32/d3dcompiler_46.def created+32
......@@ -0,0 +1,32 @@
1;
2; Definition file of D3DCOMPILER_46.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCOMPILER_46.dll"
7EXPORTS
8D3DAssemble@32
9DebugSetMute@0
10D3DCompile2@56
11D3DCompile@44
12D3DCompileFromFile@36
13D3DCompressShaders@16
14D3DCreateBlob@8
15D3DDecompressShaders@32
16D3DDisassemble10Effect@12
17D3DDisassemble11Trace@28
18D3DDisassemble@20
19D3DDisassembleRegion@32
20D3DGetBlobPart@20
21D3DGetDebugInfo@12
22D3DGetInputAndOutputSignatureBlob@12
23D3DGetInputSignatureBlob@12
24D3DGetOutputSignatureBlob@12
25D3DGetTraceInstructionOffsets@28
26D3DPreprocess@28
27D3DReadFileToBlob@8
28D3DReflect@16
29D3DReturnFailure1@12
30D3DSetBlobPart@28
31D3DStripShader@16
32D3DWriteBlobToFile@12
lib/libc/mingw/lib32/d3dcsx_46.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of d3dcsx_46.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dcsx_46.dll"
7EXPORTS
8D3DX11CreateFFT1DComplex@20
9D3DX11CreateFFT1DReal@20
10D3DX11CreateFFT2DComplex@24
11D3DX11CreateFFT2DReal@24
12D3DX11CreateFFT3DComplex@28
13D3DX11CreateFFT3DReal@28
14D3DX11CreateFFT@20
15D3DX11CreateScan@16
16D3DX11CreateSegmentedScan@12
lib/libc/mingw/lib32/d3dcsxd_43.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of d3dcsxd_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dcsxd_43.dll"
7EXPORTS
8D3DX11CreateFFT1DComplex@20
9D3DX11CreateFFT1DReal@20
10D3DX11CreateFFT2DComplex@24
11D3DX11CreateFFT2DReal@24
12D3DX11CreateFFT3DComplex@28
13D3DX11CreateFFT3DReal@28
14D3DX11CreateFFT@20
15D3DX11CreateScan@16
16D3DX11CreateSegmentedScan@12
lib/libc/mingw/lib32/d3dim.def created+15
......@@ -0,0 +1,15 @@
1LIBRARY d3dim.dll
2EXPORTS
3;D3DFree
4;D3DMalloc
5;D3DRealloc
6Direct3DCreate@12
7;Direct3DCreateDevice
8;Direct3DCreateTexture
9;Direct3DGetSWRastZPixFmts
10Direct3D_HALCleanUp@8
11FlushD3DDevices@4
12FlushD3DDevices2@4
13PaletteAssociateNotify@16
14PaletteUpdateNotify@20
15SurfaceFlipNotify@4
lib/libc/mingw/lib32/d3drm.def created+23
......@@ -0,0 +1,23 @@
1LIBRARY d3drm.dll
2EXPORTS
3D3DRMColorGetAlpha@4
4D3DRMColorGetBlue@4
5D3DRMColorGetGreen@4
6D3DRMColorGetRed@4
7D3DRMCreateColorRGB@12
8D3DRMCreateColorRGBA@16
9D3DRMMatrixFromQuaternion@8
10D3DRMQuaternionFromRotation@12
11D3DRMQuaternionMultiply@12
12D3DRMQuaternionSlerp@16
13D3DRMVectorAdd@12
14D3DRMVectorCrossProduct@12
15D3DRMVectorDotProduct@8
16D3DRMVectorModulus@4
17D3DRMVectorNormalize@4
18D3DRMVectorRandom@4
19D3DRMVectorReflect@12
20D3DRMVectorRotate@16
21D3DRMVectorScale@12
22D3DRMVectorSubtract@12
23Direct3DRMCreate@4
lib/libc/mingw/lib32/d3dx10_33.def created+184
......@@ -0,0 +1,184 @@
1;
2; Definition file of d3dx10_33.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_33.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateEffectFromFileA@48
29D3DX10CreateEffectFromFileW@48
30D3DX10CreateEffectFromMemory@56
31D3DX10CreateEffectFromResourceA@56
32D3DX10CreateEffectFromResourceW@56
33D3DX10CreateEffectPoolFromFileA@44
34D3DX10CreateEffectPoolFromFileW@44
35D3DX10CreateEffectPoolFromMemory@52
36D3DX10CreateEffectPoolFromResourceA@52
37D3DX10CreateEffectPoolFromResourceW@52
38D3DX10CreateFontA@48
39D3DX10CreateFontIndirectA@12
40D3DX10CreateFontIndirectW@12
41D3DX10CreateFontW@48
42D3DX10CreateMesh@32
43D3DX10CreateShaderResourceViewFromFileA@24
44D3DX10CreateShaderResourceViewFromFileW@24
45D3DX10CreateShaderResourceViewFromMemory@28
46D3DX10CreateShaderResourceViewFromResourceA@28
47D3DX10CreateShaderResourceViewFromResourceW@28
48D3DX10CreateSkinInfo@4
49D3DX10CreateSprite@12
50D3DX10CreateTextureFromFileA@24
51D3DX10CreateTextureFromFileW@24
52D3DX10CreateTextureFromMemory@28
53D3DX10CreateTextureFromResourceA@28
54D3DX10CreateTextureFromResourceW@28
55D3DX10DisassembleEffect@12
56D3DX10DisassembleShader@20
57D3DX10FilterTexture@12
58D3DX10GetDriverLevel@4
59D3DX10GetImageInfoFromFileA@16
60D3DX10GetImageInfoFromFileW@16
61D3DX10GetImageInfoFromMemory@20
62D3DX10GetImageInfoFromResourceA@20
63D3DX10GetImageInfoFromResourceW@20
64D3DX10LoadTextureFromTexture@12
65D3DX10PreprocessShaderFromFileA@28
66D3DX10PreprocessShaderFromFileW@28
67D3DX10PreprocessShaderFromMemory@36
68D3DX10PreprocessShaderFromResourceA@36
69D3DX10PreprocessShaderFromResourceW@36
70D3DX10ReflectShader@12
71D3DX10SHProjectCubeMap@20
72D3DX10SaveTextureToFileA@12
73D3DX10SaveTextureToFileW@12
74D3DX10SaveTextureToMemory@16
75D3DX10UnsetAllDeviceObjects@4
76D3DXBoxBoundProbe@16
77D3DXColorAdjustContrast@12
78D3DXColorAdjustSaturation@12
79D3DXComputeBoundingBox@20
80D3DXComputeBoundingSphere@20
81D3DXCpuOptimizations@4
82D3DXCreateMatrixStack@8
83D3DXFloat16To32Array@12
84D3DXFloat32To16Array@12
85D3DXFresnelTerm@8
86D3DXIntersectTri@32
87D3DXMatrixAffineTransformation2D@20
88D3DXMatrixAffineTransformation@20
89D3DXMatrixDecompose@16
90D3DXMatrixDeterminant@4
91D3DXMatrixInverse@12
92D3DXMatrixLookAtLH@16
93D3DXMatrixLookAtRH@16
94D3DXMatrixMultiply@12
95D3DXMatrixMultiplyTranspose@12
96D3DXMatrixOrthoLH@20
97D3DXMatrixOrthoOffCenterLH@28
98D3DXMatrixOrthoOffCenterRH@28
99D3DXMatrixOrthoRH@20
100D3DXMatrixPerspectiveFovLH@20
101D3DXMatrixPerspectiveFovRH@20
102D3DXMatrixPerspectiveLH@20
103D3DXMatrixPerspectiveOffCenterLH@28
104D3DXMatrixPerspectiveOffCenterRH@28
105D3DXMatrixPerspectiveRH@20
106D3DXMatrixReflect@8
107D3DXMatrixRotationAxis@12
108D3DXMatrixRotationQuaternion@8
109D3DXMatrixRotationX@8
110D3DXMatrixRotationY@8
111D3DXMatrixRotationYawPitchRoll@16
112D3DXMatrixRotationZ@8
113D3DXMatrixScaling@16
114D3DXMatrixShadow@12
115D3DXMatrixTransformation2D@28
116D3DXMatrixTransformation@28
117D3DXMatrixTranslation@16
118D3DXMatrixTranspose@8
119D3DXPlaneFromPointNormal@12
120D3DXPlaneFromPoints@16
121D3DXPlaneIntersectLine@16
122D3DXPlaneNormalize@8
123D3DXPlaneTransform@12
124D3DXPlaneTransformArray@24
125D3DXQuaternionBaryCentric@24
126D3DXQuaternionExp@8
127D3DXQuaternionInverse@8
128D3DXQuaternionLn@8
129D3DXQuaternionMultiply@12
130D3DXQuaternionNormalize@8
131D3DXQuaternionRotationAxis@12
132D3DXQuaternionRotationMatrix@8
133D3DXQuaternionRotationYawPitchRoll@16
134D3DXQuaternionSlerp@16
135D3DXQuaternionSquad@24
136D3DXQuaternionSquadSetup@28
137D3DXQuaternionToAxisAngle@12
138D3DXSHAdd@16
139D3DXSHDot@12
140D3DXSHEvalConeLight@36
141D3DXSHEvalDirection@12
142D3DXSHEvalDirectionalLight@32
143D3DXSHEvalHemisphereLight@52
144D3DXSHEvalSphericalLight@36
145D3DXSHMultiply2@12
146D3DXSHMultiply3@12
147D3DXSHMultiply4@12
148D3DXSHMultiply5@12
149D3DXSHMultiply6@12
150D3DXSHRotate@16
151D3DXSHRotateZ@16
152D3DXSHScale@16
153D3DXSphereBoundProbe@16
154D3DXVec2BaryCentric@24
155D3DXVec2CatmullRom@24
156D3DXVec2Hermite@24
157D3DXVec2Normalize@8
158D3DXVec2Transform@12
159D3DXVec2TransformArray@24
160D3DXVec2TransformCoord@12
161D3DXVec2TransformCoordArray@24
162D3DXVec2TransformNormal@12
163D3DXVec2TransformNormalArray@24
164D3DXVec3BaryCentric@24
165D3DXVec3CatmullRom@24
166D3DXVec3Hermite@24
167D3DXVec3Normalize@8
168D3DXVec3Project@24
169D3DXVec3ProjectArray@36
170D3DXVec3Transform@12
171D3DXVec3TransformArray@24
172D3DXVec3TransformCoord@12
173D3DXVec3TransformCoordArray@24
174D3DXVec3TransformNormal@12
175D3DXVec3TransformNormalArray@24
176D3DXVec3Unproject@24
177D3DXVec3UnprojectArray@36
178D3DXVec4BaryCentric@24
179D3DXVec4CatmullRom@24
180D3DXVec4Cross@16
181D3DXVec4Hermite@24
182D3DXVec4Normalize@8
183D3DXVec4Transform@12
184D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_34.def created+184
......@@ -0,0 +1,184 @@
1;
2; Definition file of d3dx10_34.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_34.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateEffectFromFileA@48
29D3DX10CreateEffectFromFileW@48
30D3DX10CreateEffectFromMemory@56
31D3DX10CreateEffectFromResourceA@56
32D3DX10CreateEffectFromResourceW@56
33D3DX10CreateEffectPoolFromFileA@44
34D3DX10CreateEffectPoolFromFileW@44
35D3DX10CreateEffectPoolFromMemory@52
36D3DX10CreateEffectPoolFromResourceA@52
37D3DX10CreateEffectPoolFromResourceW@52
38D3DX10CreateFontA@48
39D3DX10CreateFontIndirectA@12
40D3DX10CreateFontIndirectW@12
41D3DX10CreateFontW@48
42D3DX10CreateMesh@32
43D3DX10CreateShaderResourceViewFromFileA@24
44D3DX10CreateShaderResourceViewFromFileW@24
45D3DX10CreateShaderResourceViewFromMemory@28
46D3DX10CreateShaderResourceViewFromResourceA@28
47D3DX10CreateShaderResourceViewFromResourceW@28
48D3DX10CreateSkinInfo@4
49D3DX10CreateSprite@12
50D3DX10CreateTextureFromFileA@24
51D3DX10CreateTextureFromFileW@24
52D3DX10CreateTextureFromMemory@28
53D3DX10CreateTextureFromResourceA@28
54D3DX10CreateTextureFromResourceW@28
55D3DX10DisassembleEffect@12
56D3DX10DisassembleShader@20
57D3DX10FilterTexture@12
58D3DX10GetDriverLevel@4
59D3DX10GetImageInfoFromFileA@16
60D3DX10GetImageInfoFromFileW@16
61D3DX10GetImageInfoFromMemory@20
62D3DX10GetImageInfoFromResourceA@20
63D3DX10GetImageInfoFromResourceW@20
64D3DX10LoadTextureFromTexture@12
65D3DX10PreprocessShaderFromFileA@28
66D3DX10PreprocessShaderFromFileW@28
67D3DX10PreprocessShaderFromMemory@36
68D3DX10PreprocessShaderFromResourceA@36
69D3DX10PreprocessShaderFromResourceW@36
70D3DX10ReflectShader@12
71D3DX10SHProjectCubeMap@20
72D3DX10SaveTextureToFileA@12
73D3DX10SaveTextureToFileW@12
74D3DX10SaveTextureToMemory@16
75D3DX10UnsetAllDeviceObjects@4
76D3DXBoxBoundProbe@16
77D3DXColorAdjustContrast@12
78D3DXColorAdjustSaturation@12
79D3DXComputeBoundingBox@20
80D3DXComputeBoundingSphere@20
81D3DXCpuOptimizations@4
82D3DXCreateMatrixStack@8
83D3DXFloat16To32Array@12
84D3DXFloat32To16Array@12
85D3DXFresnelTerm@8
86D3DXIntersectTri@32
87D3DXMatrixAffineTransformation2D@20
88D3DXMatrixAffineTransformation@20
89D3DXMatrixDecompose@16
90D3DXMatrixDeterminant@4
91D3DXMatrixInverse@12
92D3DXMatrixLookAtLH@16
93D3DXMatrixLookAtRH@16
94D3DXMatrixMultiply@12
95D3DXMatrixMultiplyTranspose@12
96D3DXMatrixOrthoLH@20
97D3DXMatrixOrthoOffCenterLH@28
98D3DXMatrixOrthoOffCenterRH@28
99D3DXMatrixOrthoRH@20
100D3DXMatrixPerspectiveFovLH@20
101D3DXMatrixPerspectiveFovRH@20
102D3DXMatrixPerspectiveLH@20
103D3DXMatrixPerspectiveOffCenterLH@28
104D3DXMatrixPerspectiveOffCenterRH@28
105D3DXMatrixPerspectiveRH@20
106D3DXMatrixReflect@8
107D3DXMatrixRotationAxis@12
108D3DXMatrixRotationQuaternion@8
109D3DXMatrixRotationX@8
110D3DXMatrixRotationY@8
111D3DXMatrixRotationYawPitchRoll@16
112D3DXMatrixRotationZ@8
113D3DXMatrixScaling@16
114D3DXMatrixShadow@12
115D3DXMatrixTransformation2D@28
116D3DXMatrixTransformation@28
117D3DXMatrixTranslation@16
118D3DXMatrixTranspose@8
119D3DXPlaneFromPointNormal@12
120D3DXPlaneFromPoints@16
121D3DXPlaneIntersectLine@16
122D3DXPlaneNormalize@8
123D3DXPlaneTransform@12
124D3DXPlaneTransformArray@24
125D3DXQuaternionBaryCentric@24
126D3DXQuaternionExp@8
127D3DXQuaternionInverse@8
128D3DXQuaternionLn@8
129D3DXQuaternionMultiply@12
130D3DXQuaternionNormalize@8
131D3DXQuaternionRotationAxis@12
132D3DXQuaternionRotationMatrix@8
133D3DXQuaternionRotationYawPitchRoll@16
134D3DXQuaternionSlerp@16
135D3DXQuaternionSquad@24
136D3DXQuaternionSquadSetup@28
137D3DXQuaternionToAxisAngle@12
138D3DXSHAdd@16
139D3DXSHDot@12
140D3DXSHEvalConeLight@36
141D3DXSHEvalDirection@12
142D3DXSHEvalDirectionalLight@32
143D3DXSHEvalHemisphereLight@52
144D3DXSHEvalSphericalLight@36
145D3DXSHMultiply2@12
146D3DXSHMultiply3@12
147D3DXSHMultiply4@12
148D3DXSHMultiply5@12
149D3DXSHMultiply6@12
150D3DXSHRotate@16
151D3DXSHRotateZ@16
152D3DXSHScale@16
153D3DXSphereBoundProbe@16
154D3DXVec2BaryCentric@24
155D3DXVec2CatmullRom@24
156D3DXVec2Hermite@24
157D3DXVec2Normalize@8
158D3DXVec2Transform@12
159D3DXVec2TransformArray@24
160D3DXVec2TransformCoord@12
161D3DXVec2TransformCoordArray@24
162D3DXVec2TransformNormal@12
163D3DXVec2TransformNormalArray@24
164D3DXVec3BaryCentric@24
165D3DXVec3CatmullRom@24
166D3DXVec3Hermite@24
167D3DXVec3Normalize@8
168D3DXVec3Project@24
169D3DXVec3ProjectArray@36
170D3DXVec3Transform@12
171D3DXVec3TransformArray@24
172D3DXVec3TransformCoord@12
173D3DXVec3TransformCoordArray@24
174D3DXVec3TransformNormal@12
175D3DXVec3TransformNormalArray@24
176D3DXVec3Unproject@24
177D3DXVec3UnprojectArray@36
178D3DXVec4BaryCentric@24
179D3DXVec4CatmullRom@24
180D3DXVec4Cross@16
181D3DXVec4Hermite@24
182D3DXVec4Normalize@8
183D3DXVec4Transform@12
184D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_35.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_35.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_35.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateDevice@20
29D3DX10CreateDeviceAndSwapChain@28
30D3DX10CreateEffectFromFileA@48
31D3DX10CreateEffectFromFileW@48
32D3DX10CreateEffectFromMemory@56
33D3DX10CreateEffectFromResourceA@56
34D3DX10CreateEffectFromResourceW@56
35D3DX10CreateEffectPoolFromFileA@44
36D3DX10CreateEffectPoolFromFileW@44
37D3DX10CreateEffectPoolFromMemory@52
38D3DX10CreateEffectPoolFromResourceA@52
39D3DX10CreateEffectPoolFromResourceW@52
40D3DX10CreateFontA@48
41D3DX10CreateFontIndirectA@12
42D3DX10CreateFontIndirectW@12
43D3DX10CreateFontW@48
44D3DX10CreateMesh@32
45D3DX10CreateShaderResourceViewFromFileA@24
46D3DX10CreateShaderResourceViewFromFileW@24
47D3DX10CreateShaderResourceViewFromMemory@28
48D3DX10CreateShaderResourceViewFromResourceA@28
49D3DX10CreateShaderResourceViewFromResourceW@28
50D3DX10CreateSkinInfo@4
51D3DX10CreateSprite@12
52D3DX10CreateTextureFromFileA@24
53D3DX10CreateTextureFromFileW@24
54D3DX10CreateTextureFromMemory@28
55D3DX10CreateTextureFromResourceA@28
56D3DX10CreateTextureFromResourceW@28
57D3DX10DisassembleEffect@12
58D3DX10DisassembleShader@20
59D3DX10FilterTexture@12
60D3DX10GetDriverLevel@4
61D3DX10GetFeatureLevel1@8
62D3DX10GetImageInfoFromFileA@16
63D3DX10GetImageInfoFromFileW@16
64D3DX10GetImageInfoFromMemory@20
65D3DX10GetImageInfoFromResourceA@20
66D3DX10GetImageInfoFromResourceW@20
67D3DX10LoadTextureFromTexture@12
68D3DX10PreprocessShaderFromFileA@28
69D3DX10PreprocessShaderFromFileW@28
70D3DX10PreprocessShaderFromMemory@36
71D3DX10PreprocessShaderFromResourceA@36
72D3DX10PreprocessShaderFromResourceW@36
73D3DX10ReflectShader@12
74D3DX10SHProjectCubeMap@20
75D3DX10SaveTextureToFileA@12
76D3DX10SaveTextureToFileW@12
77D3DX10SaveTextureToMemory@16
78D3DX10UnsetAllDeviceObjects@4
79D3DXBoxBoundProbe@16
80D3DXColorAdjustContrast@12
81D3DXColorAdjustSaturation@12
82D3DXComputeBoundingBox@20
83D3DXComputeBoundingSphere@20
84D3DXCpuOptimizations@4
85D3DXCreateMatrixStack@8
86D3DXFloat16To32Array@12
87D3DXFloat32To16Array@12
88D3DXFresnelTerm@8
89D3DXIntersectTri@32
90D3DXMatrixAffineTransformation2D@20
91D3DXMatrixAffineTransformation@20
92D3DXMatrixDecompose@16
93D3DXMatrixDeterminant@4
94D3DXMatrixInverse@12
95D3DXMatrixLookAtLH@16
96D3DXMatrixLookAtRH@16
97D3DXMatrixMultiply@12
98D3DXMatrixMultiplyTranspose@12
99D3DXMatrixOrthoLH@20
100D3DXMatrixOrthoOffCenterLH@28
101D3DXMatrixOrthoOffCenterRH@28
102D3DXMatrixOrthoRH@20
103D3DXMatrixPerspectiveFovLH@20
104D3DXMatrixPerspectiveFovRH@20
105D3DXMatrixPerspectiveLH@20
106D3DXMatrixPerspectiveOffCenterLH@28
107D3DXMatrixPerspectiveOffCenterRH@28
108D3DXMatrixPerspectiveRH@20
109D3DXMatrixReflect@8
110D3DXMatrixRotationAxis@12
111D3DXMatrixRotationQuaternion@8
112D3DXMatrixRotationX@8
113D3DXMatrixRotationY@8
114D3DXMatrixRotationYawPitchRoll@16
115D3DXMatrixRotationZ@8
116D3DXMatrixScaling@16
117D3DXMatrixShadow@12
118D3DXMatrixTransformation2D@28
119D3DXMatrixTransformation@28
120D3DXMatrixTranslation@16
121D3DXMatrixTranspose@8
122D3DXPlaneFromPointNormal@12
123D3DXPlaneFromPoints@16
124D3DXPlaneIntersectLine@16
125D3DXPlaneNormalize@8
126D3DXPlaneTransform@12
127D3DXPlaneTransformArray@24
128D3DXQuaternionBaryCentric@24
129D3DXQuaternionExp@8
130D3DXQuaternionInverse@8
131D3DXQuaternionLn@8
132D3DXQuaternionMultiply@12
133D3DXQuaternionNormalize@8
134D3DXQuaternionRotationAxis@12
135D3DXQuaternionRotationMatrix@8
136D3DXQuaternionRotationYawPitchRoll@16
137D3DXQuaternionSlerp@16
138D3DXQuaternionSquad@24
139D3DXQuaternionSquadSetup@28
140D3DXQuaternionToAxisAngle@12
141D3DXSHAdd@16
142D3DXSHDot@12
143D3DXSHEvalConeLight@36
144D3DXSHEvalDirection@12
145D3DXSHEvalDirectionalLight@32
146D3DXSHEvalHemisphereLight@52
147D3DXSHEvalSphericalLight@36
148D3DXSHMultiply2@12
149D3DXSHMultiply3@12
150D3DXSHMultiply4@12
151D3DXSHMultiply5@12
152D3DXSHMultiply6@12
153D3DXSHRotate@16
154D3DXSHRotateZ@16
155D3DXSHScale@16
156D3DXSphereBoundProbe@16
157D3DXVec2BaryCentric@24
158D3DXVec2CatmullRom@24
159D3DXVec2Hermite@24
160D3DXVec2Normalize@8
161D3DXVec2Transform@12
162D3DXVec2TransformArray@24
163D3DXVec2TransformCoord@12
164D3DXVec2TransformCoordArray@24
165D3DXVec2TransformNormal@12
166D3DXVec2TransformNormalArray@24
167D3DXVec3BaryCentric@24
168D3DXVec3CatmullRom@24
169D3DXVec3Hermite@24
170D3DXVec3Normalize@8
171D3DXVec3Project@24
172D3DXVec3ProjectArray@36
173D3DXVec3Transform@12
174D3DXVec3TransformArray@24
175D3DXVec3TransformCoord@12
176D3DXVec3TransformCoordArray@24
177D3DXVec3TransformNormal@12
178D3DXVec3TransformNormalArray@24
179D3DXVec3Unproject@24
180D3DXVec3UnprojectArray@36
181D3DXVec4BaryCentric@24
182D3DXVec4CatmullRom@24
183D3DXVec4Cross@16
184D3DXVec4Hermite@24
185D3DXVec4Normalize@8
186D3DXVec4Transform@12
187D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_36.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_36.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_36.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateDevice@20
29D3DX10CreateDeviceAndSwapChain@28
30D3DX10CreateEffectFromFileA@48
31D3DX10CreateEffectFromFileW@48
32D3DX10CreateEffectFromMemory@56
33D3DX10CreateEffectFromResourceA@56
34D3DX10CreateEffectFromResourceW@56
35D3DX10CreateEffectPoolFromFileA@44
36D3DX10CreateEffectPoolFromFileW@44
37D3DX10CreateEffectPoolFromMemory@52
38D3DX10CreateEffectPoolFromResourceA@52
39D3DX10CreateEffectPoolFromResourceW@52
40D3DX10CreateFontA@48
41D3DX10CreateFontIndirectA@12
42D3DX10CreateFontIndirectW@12
43D3DX10CreateFontW@48
44D3DX10CreateMesh@32
45D3DX10CreateShaderResourceViewFromFileA@24
46D3DX10CreateShaderResourceViewFromFileW@24
47D3DX10CreateShaderResourceViewFromMemory@28
48D3DX10CreateShaderResourceViewFromResourceA@28
49D3DX10CreateShaderResourceViewFromResourceW@28
50D3DX10CreateSkinInfo@4
51D3DX10CreateSprite@12
52D3DX10CreateTextureFromFileA@24
53D3DX10CreateTextureFromFileW@24
54D3DX10CreateTextureFromMemory@28
55D3DX10CreateTextureFromResourceA@28
56D3DX10CreateTextureFromResourceW@28
57D3DX10DisassembleEffect@12
58D3DX10DisassembleShader@20
59D3DX10FilterTexture@12
60D3DX10GetDriverLevel@4
61D3DX10GetFeatureLevel1@8
62D3DX10GetImageInfoFromFileA@16
63D3DX10GetImageInfoFromFileW@16
64D3DX10GetImageInfoFromMemory@20
65D3DX10GetImageInfoFromResourceA@20
66D3DX10GetImageInfoFromResourceW@20
67D3DX10LoadTextureFromTexture@12
68D3DX10PreprocessShaderFromFileA@28
69D3DX10PreprocessShaderFromFileW@28
70D3DX10PreprocessShaderFromMemory@36
71D3DX10PreprocessShaderFromResourceA@36
72D3DX10PreprocessShaderFromResourceW@36
73D3DX10ReflectShader@12
74D3DX10SHProjectCubeMap@20
75D3DX10SaveTextureToFileA@12
76D3DX10SaveTextureToFileW@12
77D3DX10SaveTextureToMemory@16
78D3DX10UnsetAllDeviceObjects@4
79D3DXBoxBoundProbe@16
80D3DXColorAdjustContrast@12
81D3DXColorAdjustSaturation@12
82D3DXComputeBoundingBox@20
83D3DXComputeBoundingSphere@20
84D3DXCpuOptimizations@4
85D3DXCreateMatrixStack@8
86D3DXFloat16To32Array@12
87D3DXFloat32To16Array@12
88D3DXFresnelTerm@8
89D3DXIntersectTri@32
90D3DXMatrixAffineTransformation2D@20
91D3DXMatrixAffineTransformation@20
92D3DXMatrixDecompose@16
93D3DXMatrixDeterminant@4
94D3DXMatrixInverse@12
95D3DXMatrixLookAtLH@16
96D3DXMatrixLookAtRH@16
97D3DXMatrixMultiply@12
98D3DXMatrixMultiplyTranspose@12
99D3DXMatrixOrthoLH@20
100D3DXMatrixOrthoOffCenterLH@28
101D3DXMatrixOrthoOffCenterRH@28
102D3DXMatrixOrthoRH@20
103D3DXMatrixPerspectiveFovLH@20
104D3DXMatrixPerspectiveFovRH@20
105D3DXMatrixPerspectiveLH@20
106D3DXMatrixPerspectiveOffCenterLH@28
107D3DXMatrixPerspectiveOffCenterRH@28
108D3DXMatrixPerspectiveRH@20
109D3DXMatrixReflect@8
110D3DXMatrixRotationAxis@12
111D3DXMatrixRotationQuaternion@8
112D3DXMatrixRotationX@8
113D3DXMatrixRotationY@8
114D3DXMatrixRotationYawPitchRoll@16
115D3DXMatrixRotationZ@8
116D3DXMatrixScaling@16
117D3DXMatrixShadow@12
118D3DXMatrixTransformation2D@28
119D3DXMatrixTransformation@28
120D3DXMatrixTranslation@16
121D3DXMatrixTranspose@8
122D3DXPlaneFromPointNormal@12
123D3DXPlaneFromPoints@16
124D3DXPlaneIntersectLine@16
125D3DXPlaneNormalize@8
126D3DXPlaneTransform@12
127D3DXPlaneTransformArray@24
128D3DXQuaternionBaryCentric@24
129D3DXQuaternionExp@8
130D3DXQuaternionInverse@8
131D3DXQuaternionLn@8
132D3DXQuaternionMultiply@12
133D3DXQuaternionNormalize@8
134D3DXQuaternionRotationAxis@12
135D3DXQuaternionRotationMatrix@8
136D3DXQuaternionRotationYawPitchRoll@16
137D3DXQuaternionSlerp@16
138D3DXQuaternionSquad@24
139D3DXQuaternionSquadSetup@28
140D3DXQuaternionToAxisAngle@12
141D3DXSHAdd@16
142D3DXSHDot@12
143D3DXSHEvalConeLight@36
144D3DXSHEvalDirection@12
145D3DXSHEvalDirectionalLight@32
146D3DXSHEvalHemisphereLight@52
147D3DXSHEvalSphericalLight@36
148D3DXSHMultiply2@12
149D3DXSHMultiply3@12
150D3DXSHMultiply4@12
151D3DXSHMultiply5@12
152D3DXSHMultiply6@12
153D3DXSHRotate@16
154D3DXSHRotateZ@16
155D3DXSHScale@16
156D3DXSphereBoundProbe@16
157D3DXVec2BaryCentric@24
158D3DXVec2CatmullRom@24
159D3DXVec2Hermite@24
160D3DXVec2Normalize@8
161D3DXVec2Transform@12
162D3DXVec2TransformArray@24
163D3DXVec2TransformCoord@12
164D3DXVec2TransformCoordArray@24
165D3DXVec2TransformNormal@12
166D3DXVec2TransformNormalArray@24
167D3DXVec3BaryCentric@24
168D3DXVec3CatmullRom@24
169D3DXVec3Hermite@24
170D3DXVec3Normalize@8
171D3DXVec3Project@24
172D3DXVec3ProjectArray@36
173D3DXVec3Transform@12
174D3DXVec3TransformArray@24
175D3DXVec3TransformCoord@12
176D3DXVec3TransformCoordArray@24
177D3DXVec3TransformNormal@12
178D3DXVec3TransformNormalArray@24
179D3DXVec3Unproject@24
180D3DXVec3UnprojectArray@36
181D3DXVec4BaryCentric@24
182D3DXVec4CatmullRom@24
183D3DXVec4Cross@16
184D3DXVec4Hermite@24
185D3DXVec4Normalize@8
186D3DXVec4Transform@12
187D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_37.def created+188
......@@ -0,0 +1,188 @@
1;
2; Definition file of d3dx10_37.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_37.dll"
7EXPORTS
8D3DX10CreateReduction@12
9D3DX10CreateThreadPump@12
10D3DX10GetDriverLevel@4
11D3DX10CheckVersion@8
12D3DX10CompileFromFileA@44
13D3DX10CompileFromFileW@44
14D3DX10CompileFromMemory@52
15D3DX10CompileFromResourceA@52
16D3DX10CompileFromResourceW@52
17D3DX10ComputeNormalMap@20
18D3DX10CreateAsyncCompilerProcessor@40
19D3DX10CreateAsyncEffectCreateProcessor@40
20D3DX10CreateAsyncEffectPoolCreateProcessor@36
21D3DX10CreateAsyncFileLoaderA@8
22D3DX10CreateAsyncFileLoaderW@8
23D3DX10CreateAsyncMemoryLoader@12
24D3DX10CreateAsyncResourceLoaderA@12
25D3DX10CreateAsyncResourceLoaderW@12
26D3DX10CreateAsyncShaderPreprocessProcessor@24
27D3DX10CreateAsyncShaderResourceViewProcessor@12
28D3DX10CreateAsyncTextureInfoProcessor@8
29D3DX10CreateAsyncTextureProcessor@12
30D3DX10CreateDevice@20
31D3DX10CreateDeviceAndSwapChain@28
32D3DX10CreateEffectFromFileA@48
33D3DX10CreateEffectFromFileW@48
34D3DX10CreateEffectFromMemory@56
35D3DX10CreateEffectFromResourceA@56
36D3DX10CreateEffectFromResourceW@56
37D3DX10CreateEffectPoolFromFileA@44
38D3DX10CreateEffectPoolFromFileW@44
39D3DX10CreateEffectPoolFromMemory@52
40D3DX10CreateEffectPoolFromResourceA@52
41D3DX10CreateEffectPoolFromResourceW@52
42D3DX10CreateFontA@48
43D3DX10CreateFontIndirectA@12
44D3DX10CreateFontIndirectW@12
45D3DX10CreateFontW@48
46D3DX10CreateMesh@32
47D3DX10CreateShaderResourceViewFromFileA@24
48D3DX10CreateShaderResourceViewFromFileW@24
49D3DX10CreateShaderResourceViewFromMemory@28
50D3DX10CreateShaderResourceViewFromResourceA@28
51D3DX10CreateShaderResourceViewFromResourceW@28
52D3DX10CreateSkinInfo@4
53D3DX10CreateSprite@12
54D3DX10CreateTextureFromFileA@24
55D3DX10CreateTextureFromFileW@24
56D3DX10CreateTextureFromMemory@28
57D3DX10CreateTextureFromResourceA@28
58D3DX10CreateTextureFromResourceW@28
59D3DX10DisassembleEffect@12
60D3DX10DisassembleShader@20
61D3DX10FilterTexture@12
62D3DX10GetFeatureLevel1@8
63D3DX10GetImageInfoFromFileA@16
64D3DX10GetImageInfoFromFileW@16
65D3DX10GetImageInfoFromMemory@20
66D3DX10GetImageInfoFromResourceA@20
67D3DX10GetImageInfoFromResourceW@20
68D3DX10LoadTextureFromTexture@12
69D3DX10PreprocessShaderFromFileA@28
70D3DX10PreprocessShaderFromFileW@28
71D3DX10PreprocessShaderFromMemory@36
72D3DX10PreprocessShaderFromResourceA@36
73D3DX10PreprocessShaderFromResourceW@36
74D3DX10ReflectShader@12
75D3DX10SHProjectCubeMap@20
76D3DX10SaveTextureToFileA@12
77D3DX10SaveTextureToFileW@12
78D3DX10SaveTextureToMemory@16
79D3DX10UnsetAllDeviceObjects@4
80D3DXBoxBoundProbe@16
81D3DXColorAdjustContrast@12
82D3DXColorAdjustSaturation@12
83D3DXComputeBoundingBox@20
84D3DXComputeBoundingSphere@20
85D3DXCpuOptimizations@4
86D3DXCreateMatrixStack@8
87D3DXFloat16To32Array@12
88D3DXFloat32To16Array@12
89D3DXFresnelTerm@8
90D3DXIntersectTri@32
91D3DXMatrixAffineTransformation2D@20
92D3DXMatrixAffineTransformation@20
93D3DXMatrixDecompose@16
94D3DXMatrixDeterminant@4
95D3DXMatrixInverse@12
96D3DXMatrixLookAtLH@16
97D3DXMatrixLookAtRH@16
98D3DXMatrixMultiply@12
99D3DXMatrixMultiplyTranspose@12
100D3DXMatrixOrthoLH@20
101D3DXMatrixOrthoOffCenterLH@28
102D3DXMatrixOrthoOffCenterRH@28
103D3DXMatrixOrthoRH@20
104D3DXMatrixPerspectiveFovLH@20
105D3DXMatrixPerspectiveFovRH@20
106D3DXMatrixPerspectiveLH@20
107D3DXMatrixPerspectiveOffCenterLH@28
108D3DXMatrixPerspectiveOffCenterRH@28
109D3DXMatrixPerspectiveRH@20
110D3DXMatrixReflect@8
111D3DXMatrixRotationAxis@12
112D3DXMatrixRotationQuaternion@8
113D3DXMatrixRotationX@8
114D3DXMatrixRotationY@8
115D3DXMatrixRotationYawPitchRoll@16
116D3DXMatrixRotationZ@8
117D3DXMatrixScaling@16
118D3DXMatrixShadow@12
119D3DXMatrixTransformation2D@28
120D3DXMatrixTransformation@28
121D3DXMatrixTranslation@16
122D3DXMatrixTranspose@8
123D3DXPlaneFromPointNormal@12
124D3DXPlaneFromPoints@16
125D3DXPlaneIntersectLine@16
126D3DXPlaneNormalize@8
127D3DXPlaneTransform@12
128D3DXPlaneTransformArray@24
129D3DXQuaternionBaryCentric@24
130D3DXQuaternionExp@8
131D3DXQuaternionInverse@8
132D3DXQuaternionLn@8
133D3DXQuaternionMultiply@12
134D3DXQuaternionNormalize@8
135D3DXQuaternionRotationAxis@12
136D3DXQuaternionRotationMatrix@8
137D3DXQuaternionRotationYawPitchRoll@16
138D3DXQuaternionSlerp@16
139D3DXQuaternionSquad@24
140D3DXQuaternionSquadSetup@28
141D3DXQuaternionToAxisAngle@12
142D3DXSHAdd@16
143D3DXSHDot@12
144D3DXSHEvalConeLight@36
145D3DXSHEvalDirection@12
146D3DXSHEvalDirectionalLight@32
147D3DXSHEvalHemisphereLight@52
148D3DXSHEvalSphericalLight@36
149D3DXSHMultiply2@12
150D3DXSHMultiply3@12
151D3DXSHMultiply4@12
152D3DXSHMultiply5@12
153D3DXSHMultiply6@12
154D3DXSHRotate@16
155D3DXSHRotateZ@16
156D3DXSHScale@16
157D3DXSphereBoundProbe@16
158D3DXVec2BaryCentric@24
159D3DXVec2CatmullRom@24
160D3DXVec2Hermite@24
161D3DXVec2Normalize@8
162D3DXVec2Transform@12
163D3DXVec2TransformArray@24
164D3DXVec2TransformCoord@12
165D3DXVec2TransformCoordArray@24
166D3DXVec2TransformNormal@12
167D3DXVec2TransformNormalArray@24
168D3DXVec3BaryCentric@24
169D3DXVec3CatmullRom@24
170D3DXVec3Hermite@24
171D3DXVec3Normalize@8
172D3DXVec3Project@24
173D3DXVec3ProjectArray@36
174D3DXVec3Transform@12
175D3DXVec3TransformArray@24
176D3DXVec3TransformCoord@12
177D3DXVec3TransformCoordArray@24
178D3DXVec3TransformNormal@12
179D3DXVec3TransformNormalArray@24
180D3DXVec3Unproject@24
181D3DXVec3UnprojectArray@36
182D3DXVec4BaryCentric@24
183D3DXVec4CatmullRom@24
184D3DXVec4Cross@16
185D3DXVec4Hermite@24
186D3DXVec4Normalize@8
187D3DXVec4Transform@12
188D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_38.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_38.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_38.dll"
7EXPORTS
8D3DX10CreateReduction@12
9D3DX10CreateThreadPump@12
10D3DX10CheckVersion@8
11D3DX10CompileFromFileA@44
12D3DX10CompileFromFileW@44
13D3DX10CompileFromMemory@52
14D3DX10CompileFromResourceA@52
15D3DX10CompileFromResourceW@52
16D3DX10ComputeNormalMap@20
17D3DX10CreateAsyncCompilerProcessor@40
18D3DX10CreateAsyncEffectCreateProcessor@40
19D3DX10CreateAsyncEffectPoolCreateProcessor@36
20D3DX10CreateAsyncFileLoaderA@8
21D3DX10CreateAsyncFileLoaderW@8
22D3DX10CreateAsyncMemoryLoader@12
23D3DX10CreateAsyncResourceLoaderA@12
24D3DX10CreateAsyncResourceLoaderW@12
25D3DX10CreateAsyncShaderPreprocessProcessor@24
26D3DX10CreateAsyncShaderResourceViewProcessor@12
27D3DX10CreateAsyncTextureInfoProcessor@8
28D3DX10CreateAsyncTextureProcessor@12
29D3DX10CreateDevice@20
30D3DX10CreateDeviceAndSwapChain@28
31D3DX10CreateEffectFromFileA@48
32D3DX10CreateEffectFromFileW@48
33D3DX10CreateEffectFromMemory@56
34D3DX10CreateEffectFromResourceA@56
35D3DX10CreateEffectFromResourceW@56
36D3DX10CreateEffectPoolFromFileA@44
37D3DX10CreateEffectPoolFromFileW@44
38D3DX10CreateEffectPoolFromMemory@52
39D3DX10CreateEffectPoolFromResourceA@52
40D3DX10CreateEffectPoolFromResourceW@52
41D3DX10CreateFontA@48
42D3DX10CreateFontIndirectA@12
43D3DX10CreateFontIndirectW@12
44D3DX10CreateFontW@48
45D3DX10CreateMesh@32
46D3DX10CreateShaderResourceViewFromFileA@24
47D3DX10CreateShaderResourceViewFromFileW@24
48D3DX10CreateShaderResourceViewFromMemory@28
49D3DX10CreateShaderResourceViewFromResourceA@28
50D3DX10CreateShaderResourceViewFromResourceW@28
51D3DX10CreateSkinInfo@4
52D3DX10CreateSprite@12
53D3DX10CreateTextureFromFileA@24
54D3DX10CreateTextureFromFileW@24
55D3DX10CreateTextureFromMemory@28
56D3DX10CreateTextureFromResourceA@28
57D3DX10CreateTextureFromResourceW@28
58D3DX10DisassembleEffect@12
59D3DX10DisassembleShader@20
60D3DX10FilterTexture@12
61D3DX10GetFeatureLevel1@8
62D3DX10GetImageInfoFromFileA@16
63D3DX10GetImageInfoFromFileW@16
64D3DX10GetImageInfoFromMemory@20
65D3DX10GetImageInfoFromResourceA@20
66D3DX10GetImageInfoFromResourceW@20
67D3DX10LoadTextureFromTexture@12
68D3DX10PreprocessShaderFromFileA@28
69D3DX10PreprocessShaderFromFileW@28
70D3DX10PreprocessShaderFromMemory@36
71D3DX10PreprocessShaderFromResourceA@36
72D3DX10PreprocessShaderFromResourceW@36
73D3DX10ReflectShader@12
74D3DX10SHProjectCubeMap@20
75D3DX10SaveTextureToFileA@12
76D3DX10SaveTextureToFileW@12
77D3DX10SaveTextureToMemory@16
78D3DX10UnsetAllDeviceObjects@4
79D3DXBoxBoundProbe@16
80D3DXColorAdjustContrast@12
81D3DXColorAdjustSaturation@12
82D3DXComputeBoundingBox@20
83D3DXComputeBoundingSphere@20
84D3DXCpuOptimizations@4
85D3DXCreateMatrixStack@8
86D3DXFloat16To32Array@12
87D3DXFloat32To16Array@12
88D3DXFresnelTerm@8
89D3DXIntersectTri@32
90D3DXMatrixAffineTransformation2D@20
91D3DXMatrixAffineTransformation@20
92D3DXMatrixDecompose@16
93D3DXMatrixDeterminant@4
94D3DXMatrixInverse@12
95D3DXMatrixLookAtLH@16
96D3DXMatrixLookAtRH@16
97D3DXMatrixMultiply@12
98D3DXMatrixMultiplyTranspose@12
99D3DXMatrixOrthoLH@20
100D3DXMatrixOrthoOffCenterLH@28
101D3DXMatrixOrthoOffCenterRH@28
102D3DXMatrixOrthoRH@20
103D3DXMatrixPerspectiveFovLH@20
104D3DXMatrixPerspectiveFovRH@20
105D3DXMatrixPerspectiveLH@20
106D3DXMatrixPerspectiveOffCenterLH@28
107D3DXMatrixPerspectiveOffCenterRH@28
108D3DXMatrixPerspectiveRH@20
109D3DXMatrixReflect@8
110D3DXMatrixRotationAxis@12
111D3DXMatrixRotationQuaternion@8
112D3DXMatrixRotationX@8
113D3DXMatrixRotationY@8
114D3DXMatrixRotationYawPitchRoll@16
115D3DXMatrixRotationZ@8
116D3DXMatrixScaling@16
117D3DXMatrixShadow@12
118D3DXMatrixTransformation2D@28
119D3DXMatrixTransformation@28
120D3DXMatrixTranslation@16
121D3DXMatrixTranspose@8
122D3DXPlaneFromPointNormal@12
123D3DXPlaneFromPoints@16
124D3DXPlaneIntersectLine@16
125D3DXPlaneNormalize@8
126D3DXPlaneTransform@12
127D3DXPlaneTransformArray@24
128D3DXQuaternionBaryCentric@24
129D3DXQuaternionExp@8
130D3DXQuaternionInverse@8
131D3DXQuaternionLn@8
132D3DXQuaternionMultiply@12
133D3DXQuaternionNormalize@8
134D3DXQuaternionRotationAxis@12
135D3DXQuaternionRotationMatrix@8
136D3DXQuaternionRotationYawPitchRoll@16
137D3DXQuaternionSlerp@16
138D3DXQuaternionSquad@24
139D3DXQuaternionSquadSetup@28
140D3DXQuaternionToAxisAngle@12
141D3DXSHAdd@16
142D3DXSHDot@12
143D3DXSHEvalConeLight@36
144D3DXSHEvalDirection@12
145D3DXSHEvalDirectionalLight@32
146D3DXSHEvalHemisphereLight@52
147D3DXSHEvalSphericalLight@36
148D3DXSHMultiply2@12
149D3DXSHMultiply3@12
150D3DXSHMultiply4@12
151D3DXSHMultiply5@12
152D3DXSHMultiply6@12
153D3DXSHRotate@16
154D3DXSHRotateZ@16
155D3DXSHScale@16
156D3DXSphereBoundProbe@16
157D3DXVec2BaryCentric@24
158D3DXVec2CatmullRom@24
159D3DXVec2Hermite@24
160D3DXVec2Normalize@8
161D3DXVec2Transform@12
162D3DXVec2TransformArray@24
163D3DXVec2TransformCoord@12
164D3DXVec2TransformCoordArray@24
165D3DXVec2TransformNormal@12
166D3DXVec2TransformNormalArray@24
167D3DXVec3BaryCentric@24
168D3DXVec3CatmullRom@24
169D3DXVec3Hermite@24
170D3DXVec3Normalize@8
171D3DXVec3Project@24
172D3DXVec3ProjectArray@36
173D3DXVec3Transform@12
174D3DXVec3TransformArray@24
175D3DXVec3TransformCoord@12
176D3DXVec3TransformCoordArray@24
177D3DXVec3TransformNormal@12
178D3DXVec3TransformNormalArray@24
179D3DXVec3Unproject@24
180D3DXVec3UnprojectArray@36
181D3DXVec4BaryCentric@24
182D3DXVec4CatmullRom@24
183D3DXVec4Cross@16
184D3DXVec4Hermite@24
185D3DXVec4Normalize@8
186D3DXVec4Transform@12
187D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_39.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_39.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_39.dll"
7EXPORTS
8D3DX10CreateReduction@12
9D3DX10CreateThreadPump@12
10D3DX10CheckVersion@8
11D3DX10CompileFromFileA@44
12D3DX10CompileFromFileW@44
13D3DX10CompileFromMemory@52
14D3DX10CompileFromResourceA@52
15D3DX10CompileFromResourceW@52
16D3DX10ComputeNormalMap@20
17D3DX10CreateAsyncCompilerProcessor@40
18D3DX10CreateAsyncEffectCreateProcessor@40
19D3DX10CreateAsyncEffectPoolCreateProcessor@36
20D3DX10CreateAsyncFileLoaderA@8
21D3DX10CreateAsyncFileLoaderW@8
22D3DX10CreateAsyncMemoryLoader@12
23D3DX10CreateAsyncResourceLoaderA@12
24D3DX10CreateAsyncResourceLoaderW@12
25D3DX10CreateAsyncShaderPreprocessProcessor@24
26D3DX10CreateAsyncShaderResourceViewProcessor@12
27D3DX10CreateAsyncTextureInfoProcessor@8
28D3DX10CreateAsyncTextureProcessor@12
29D3DX10CreateDevice@20
30D3DX10CreateDeviceAndSwapChain@28
31D3DX10CreateEffectFromFileA@48
32D3DX10CreateEffectFromFileW@48
33D3DX10CreateEffectFromMemory@56
34D3DX10CreateEffectFromResourceA@56
35D3DX10CreateEffectFromResourceW@56
36D3DX10CreateEffectPoolFromFileA@44
37D3DX10CreateEffectPoolFromFileW@44
38D3DX10CreateEffectPoolFromMemory@52
39D3DX10CreateEffectPoolFromResourceA@52
40D3DX10CreateEffectPoolFromResourceW@52
41D3DX10CreateFontA@48
42D3DX10CreateFontIndirectA@12
43D3DX10CreateFontIndirectW@12
44D3DX10CreateFontW@48
45D3DX10CreateMesh@32
46D3DX10CreateShaderResourceViewFromFileA@24
47D3DX10CreateShaderResourceViewFromFileW@24
48D3DX10CreateShaderResourceViewFromMemory@28
49D3DX10CreateShaderResourceViewFromResourceA@28
50D3DX10CreateShaderResourceViewFromResourceW@28
51D3DX10CreateSkinInfo@4
52D3DX10CreateSprite@12
53D3DX10CreateTextureFromFileA@24
54D3DX10CreateTextureFromFileW@24
55D3DX10CreateTextureFromMemory@28
56D3DX10CreateTextureFromResourceA@28
57D3DX10CreateTextureFromResourceW@28
58D3DX10DisassembleEffect@12
59D3DX10DisassembleShader@20
60D3DX10FilterTexture@12
61D3DX10GetFeatureLevel1@8
62D3DX10GetImageInfoFromFileA@16
63D3DX10GetImageInfoFromFileW@16
64D3DX10GetImageInfoFromMemory@20
65D3DX10GetImageInfoFromResourceA@20
66D3DX10GetImageInfoFromResourceW@20
67D3DX10LoadTextureFromTexture@12
68D3DX10PreprocessShaderFromFileA@28
69D3DX10PreprocessShaderFromFileW@28
70D3DX10PreprocessShaderFromMemory@36
71D3DX10PreprocessShaderFromResourceA@36
72D3DX10PreprocessShaderFromResourceW@36
73D3DX10ReflectShader@12
74D3DX10SHProjectCubeMap@20
75D3DX10SaveTextureToFileA@12
76D3DX10SaveTextureToFileW@12
77D3DX10SaveTextureToMemory@16
78D3DX10UnsetAllDeviceObjects@4
79D3DXBoxBoundProbe@16
80D3DXColorAdjustContrast@12
81D3DXColorAdjustSaturation@12
82D3DXComputeBoundingBox@20
83D3DXComputeBoundingSphere@20
84D3DXCpuOptimizations@4
85D3DXCreateMatrixStack@8
86D3DXFloat16To32Array@12
87D3DXFloat32To16Array@12
88D3DXFresnelTerm@8
89D3DXIntersectTri@32
90D3DXMatrixAffineTransformation2D@20
91D3DXMatrixAffineTransformation@20
92D3DXMatrixDecompose@16
93D3DXMatrixDeterminant@4
94D3DXMatrixInverse@12
95D3DXMatrixLookAtLH@16
96D3DXMatrixLookAtRH@16
97D3DXMatrixMultiply@12
98D3DXMatrixMultiplyTranspose@12
99D3DXMatrixOrthoLH@20
100D3DXMatrixOrthoOffCenterLH@28
101D3DXMatrixOrthoOffCenterRH@28
102D3DXMatrixOrthoRH@20
103D3DXMatrixPerspectiveFovLH@20
104D3DXMatrixPerspectiveFovRH@20
105D3DXMatrixPerspectiveLH@20
106D3DXMatrixPerspectiveOffCenterLH@28
107D3DXMatrixPerspectiveOffCenterRH@28
108D3DXMatrixPerspectiveRH@20
109D3DXMatrixReflect@8
110D3DXMatrixRotationAxis@12
111D3DXMatrixRotationQuaternion@8
112D3DXMatrixRotationX@8
113D3DXMatrixRotationY@8
114D3DXMatrixRotationYawPitchRoll@16
115D3DXMatrixRotationZ@8
116D3DXMatrixScaling@16
117D3DXMatrixShadow@12
118D3DXMatrixTransformation2D@28
119D3DXMatrixTransformation@28
120D3DXMatrixTranslation@16
121D3DXMatrixTranspose@8
122D3DXPlaneFromPointNormal@12
123D3DXPlaneFromPoints@16
124D3DXPlaneIntersectLine@16
125D3DXPlaneNormalize@8
126D3DXPlaneTransform@12
127D3DXPlaneTransformArray@24
128D3DXQuaternionBaryCentric@24
129D3DXQuaternionExp@8
130D3DXQuaternionInverse@8
131D3DXQuaternionLn@8
132D3DXQuaternionMultiply@12
133D3DXQuaternionNormalize@8
134D3DXQuaternionRotationAxis@12
135D3DXQuaternionRotationMatrix@8
136D3DXQuaternionRotationYawPitchRoll@16
137D3DXQuaternionSlerp@16
138D3DXQuaternionSquad@24
139D3DXQuaternionSquadSetup@28
140D3DXQuaternionToAxisAngle@12
141D3DXSHAdd@16
142D3DXSHDot@12
143D3DXSHEvalConeLight@36
144D3DXSHEvalDirection@12
145D3DXSHEvalDirectionalLight@32
146D3DXSHEvalHemisphereLight@52
147D3DXSHEvalSphericalLight@36
148D3DXSHMultiply2@12
149D3DXSHMultiply3@12
150D3DXSHMultiply4@12
151D3DXSHMultiply5@12
152D3DXSHMultiply6@12
153D3DXSHRotate@16
154D3DXSHRotateZ@16
155D3DXSHScale@16
156D3DXSphereBoundProbe@16
157D3DXVec2BaryCentric@24
158D3DXVec2CatmullRom@24
159D3DXVec2Hermite@24
160D3DXVec2Normalize@8
161D3DXVec2Transform@12
162D3DXVec2TransformArray@24
163D3DXVec2TransformCoord@12
164D3DXVec2TransformCoordArray@24
165D3DXVec2TransformNormal@12
166D3DXVec2TransformNormalArray@24
167D3DXVec3BaryCentric@24
168D3DXVec3CatmullRom@24
169D3DXVec3Hermite@24
170D3DXVec3Normalize@8
171D3DXVec3Project@24
172D3DXVec3ProjectArray@36
173D3DXVec3Transform@12
174D3DXVec3TransformArray@24
175D3DXVec3TransformCoord@12
176D3DXVec3TransformCoordArray@24
177D3DXVec3TransformNormal@12
178D3DXVec3TransformNormalArray@24
179D3DXVec3Unproject@24
180D3DXVec3UnprojectArray@36
181D3DXVec4BaryCentric@24
182D3DXVec4CatmullRom@24
183D3DXVec4Cross@16
184D3DXVec4Hermite@24
185D3DXVec4Normalize@8
186D3DXVec4Transform@12
187D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_40.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_40.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateDevice@20
29D3DX10CreateDeviceAndSwapChain@28
30D3DX10CreateEffectFromFileA@48
31D3DX10CreateEffectFromFileW@48
32D3DX10CreateEffectFromMemory@56
33D3DX10CreateEffectFromResourceA@56
34D3DX10CreateEffectFromResourceW@56
35D3DX10CreateEffectPoolFromFileA@44
36D3DX10CreateEffectPoolFromFileW@44
37D3DX10CreateEffectPoolFromMemory@52
38D3DX10CreateEffectPoolFromResourceA@52
39D3DX10CreateEffectPoolFromResourceW@52
40D3DX10CreateFontA@48
41D3DX10CreateFontIndirectA@12
42D3DX10CreateFontIndirectW@12
43D3DX10CreateFontW@48
44D3DX10CreateMesh@32
45D3DX10CreateShaderResourceViewFromFileA@24
46D3DX10CreateShaderResourceViewFromFileW@24
47D3DX10CreateShaderResourceViewFromMemory@28
48D3DX10CreateShaderResourceViewFromResourceA@28
49D3DX10CreateShaderResourceViewFromResourceW@28
50D3DX10CreateSkinInfo@4
51D3DX10CreateSprite@12
52D3DX10CreateTextureFromFileA@24
53D3DX10CreateTextureFromFileW@24
54D3DX10CreateTextureFromMemory@28
55D3DX10CreateTextureFromResourceA@28
56D3DX10CreateTextureFromResourceW@28
57D3DX10FilterTexture@12
58D3DX10GetFeatureLevel1@8
59D3DX10GetImageInfoFromFileA@16
60D3DX10GetImageInfoFromFileW@16
61D3DX10GetImageInfoFromMemory@20
62D3DX10GetImageInfoFromResourceA@20
63D3DX10GetImageInfoFromResourceW@20
64D3DX10LoadTextureFromTexture@12
65D3DX10PreprocessShaderFromFileA@28
66D3DX10PreprocessShaderFromFileW@28
67D3DX10PreprocessShaderFromMemory@36
68D3DX10PreprocessShaderFromResourceA@36
69D3DX10PreprocessShaderFromResourceW@36
70D3DX10SHProjectCubeMap@20
71D3DX10SaveTextureToFileA@12
72D3DX10SaveTextureToFileW@12
73D3DX10SaveTextureToMemory@16
74D3DX10UnsetAllDeviceObjects@4
75D3DXBoxBoundProbe@16
76D3DXColorAdjustContrast@12
77D3DXColorAdjustSaturation@12
78D3DXComputeBoundingBox@20
79D3DXComputeBoundingSphere@20
80D3DXCpuOptimizations@4
81D3DXCreateMatrixStack@8
82D3DXFloat16To32Array@12
83D3DXFloat32To16Array@12
84D3DXFresnelTerm@8
85D3DXIntersectTri@32
86D3DXMatrixAffineTransformation2D@20
87D3DXMatrixAffineTransformation@20
88D3DXMatrixDecompose@16
89D3DXMatrixDeterminant@4
90D3DXMatrixInverse@12
91D3DXMatrixLookAtLH@16
92D3DXMatrixLookAtRH@16
93D3DXMatrixMultiply@12
94D3DXMatrixMultiplyTranspose@12
95D3DXMatrixOrthoLH@20
96D3DXMatrixOrthoOffCenterLH@28
97D3DXMatrixOrthoOffCenterRH@28
98D3DXMatrixOrthoRH@20
99D3DXMatrixPerspectiveFovLH@20
100D3DXMatrixPerspectiveFovRH@20
101D3DXMatrixPerspectiveLH@20
102D3DXMatrixPerspectiveOffCenterLH@28
103D3DXMatrixPerspectiveOffCenterRH@28
104D3DXMatrixPerspectiveRH@20
105D3DXMatrixReflect@8
106D3DXMatrixRotationAxis@12
107D3DXMatrixRotationQuaternion@8
108D3DXMatrixRotationX@8
109D3DXMatrixRotationY@8
110D3DXMatrixRotationYawPitchRoll@16
111D3DXMatrixRotationZ@8
112D3DXMatrixScaling@16
113D3DXMatrixShadow@12
114D3DXMatrixTransformation2D@28
115D3DXMatrixTransformation@28
116D3DXMatrixTranslation@16
117D3DXMatrixTranspose@8
118D3DXPlaneFromPointNormal@12
119D3DXPlaneFromPoints@16
120D3DXPlaneIntersectLine@16
121D3DXPlaneNormalize@8
122D3DXPlaneTransform@12
123D3DXPlaneTransformArray@24
124D3DXQuaternionBaryCentric@24
125D3DXQuaternionExp@8
126D3DXQuaternionInverse@8
127D3DXQuaternionLn@8
128D3DXQuaternionMultiply@12
129D3DXQuaternionNormalize@8
130D3DXQuaternionRotationAxis@12
131D3DXQuaternionRotationMatrix@8
132D3DXQuaternionRotationYawPitchRoll@16
133D3DXQuaternionSlerp@16
134D3DXQuaternionSquad@24
135D3DXQuaternionSquadSetup@28
136D3DXQuaternionToAxisAngle@12
137D3DXSHAdd@16
138D3DXSHDot@12
139D3DXSHEvalConeLight@36
140D3DXSHEvalDirection@12
141D3DXSHEvalDirectionalLight@32
142D3DXSHEvalHemisphereLight@52
143D3DXSHEvalSphericalLight@36
144D3DXSHMultiply2@12
145D3DXSHMultiply3@12
146D3DXSHMultiply4@12
147D3DXSHMultiply5@12
148D3DXSHMultiply6@12
149D3DXSHRotate@16
150D3DXSHRotateZ@16
151D3DXSHScale@16
152D3DXSphereBoundProbe@16
153D3DXVec2BaryCentric@24
154D3DXVec2CatmullRom@24
155D3DXVec2Hermite@24
156D3DXVec2Normalize@8
157D3DXVec2Transform@12
158D3DXVec2TransformArray@24
159D3DXVec2TransformCoord@12
160D3DXVec2TransformCoordArray@24
161D3DXVec2TransformNormal@12
162D3DXVec2TransformNormalArray@24
163D3DXVec3BaryCentric@24
164D3DXVec3CatmullRom@24
165D3DXVec3Hermite@24
166D3DXVec3Normalize@8
167D3DXVec3Project@24
168D3DXVec3ProjectArray@36
169D3DXVec3Transform@12
170D3DXVec3TransformArray@24
171D3DXVec3TransformCoord@12
172D3DXVec3TransformCoordArray@24
173D3DXVec3TransformNormal@12
174D3DXVec3TransformNormalArray@24
175D3DXVec3Unproject@24
176D3DXVec3UnprojectArray@36
177D3DXVec4BaryCentric@24
178D3DXVec4CatmullRom@24
179D3DXVec4Cross@16
180D3DXVec4Hermite@24
181D3DXVec4Normalize@8
182D3DXVec4Transform@12
183D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_41.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_41.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_41.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateDevice@20
29D3DX10CreateDeviceAndSwapChain@28
30D3DX10CreateEffectFromFileA@48
31D3DX10CreateEffectFromFileW@48
32D3DX10CreateEffectFromMemory@56
33D3DX10CreateEffectFromResourceA@56
34D3DX10CreateEffectFromResourceW@56
35D3DX10CreateEffectPoolFromFileA@44
36D3DX10CreateEffectPoolFromFileW@44
37D3DX10CreateEffectPoolFromMemory@52
38D3DX10CreateEffectPoolFromResourceA@52
39D3DX10CreateEffectPoolFromResourceW@52
40D3DX10CreateFontA@48
41D3DX10CreateFontIndirectA@12
42D3DX10CreateFontIndirectW@12
43D3DX10CreateFontW@48
44D3DX10CreateMesh@32
45D3DX10CreateShaderResourceViewFromFileA@24
46D3DX10CreateShaderResourceViewFromFileW@24
47D3DX10CreateShaderResourceViewFromMemory@28
48D3DX10CreateShaderResourceViewFromResourceA@28
49D3DX10CreateShaderResourceViewFromResourceW@28
50D3DX10CreateSkinInfo@4
51D3DX10CreateSprite@12
52D3DX10CreateTextureFromFileA@24
53D3DX10CreateTextureFromFileW@24
54D3DX10CreateTextureFromMemory@28
55D3DX10CreateTextureFromResourceA@28
56D3DX10CreateTextureFromResourceW@28
57D3DX10FilterTexture@12
58D3DX10GetFeatureLevel1@8
59D3DX10GetImageInfoFromFileA@16
60D3DX10GetImageInfoFromFileW@16
61D3DX10GetImageInfoFromMemory@20
62D3DX10GetImageInfoFromResourceA@20
63D3DX10GetImageInfoFromResourceW@20
64D3DX10LoadTextureFromTexture@12
65D3DX10PreprocessShaderFromFileA@28
66D3DX10PreprocessShaderFromFileW@28
67D3DX10PreprocessShaderFromMemory@36
68D3DX10PreprocessShaderFromResourceA@36
69D3DX10PreprocessShaderFromResourceW@36
70D3DX10SHProjectCubeMap@20
71D3DX10SaveTextureToFileA@12
72D3DX10SaveTextureToFileW@12
73D3DX10SaveTextureToMemory@16
74D3DX10UnsetAllDeviceObjects@4
75D3DXBoxBoundProbe@16
76D3DXColorAdjustContrast@12
77D3DXColorAdjustSaturation@12
78D3DXComputeBoundingBox@20
79D3DXComputeBoundingSphere@20
80D3DXCpuOptimizations@4
81D3DXCreateMatrixStack@8
82D3DXFloat16To32Array@12
83D3DXFloat32To16Array@12
84D3DXFresnelTerm@8
85D3DXIntersectTri@32
86D3DXMatrixAffineTransformation2D@20
87D3DXMatrixAffineTransformation@20
88D3DXMatrixDecompose@16
89D3DXMatrixDeterminant@4
90D3DXMatrixInverse@12
91D3DXMatrixLookAtLH@16
92D3DXMatrixLookAtRH@16
93D3DXMatrixMultiply@12
94D3DXMatrixMultiplyTranspose@12
95D3DXMatrixOrthoLH@20
96D3DXMatrixOrthoOffCenterLH@28
97D3DXMatrixOrthoOffCenterRH@28
98D3DXMatrixOrthoRH@20
99D3DXMatrixPerspectiveFovLH@20
100D3DXMatrixPerspectiveFovRH@20
101D3DXMatrixPerspectiveLH@20
102D3DXMatrixPerspectiveOffCenterLH@28
103D3DXMatrixPerspectiveOffCenterRH@28
104D3DXMatrixPerspectiveRH@20
105D3DXMatrixReflect@8
106D3DXMatrixRotationAxis@12
107D3DXMatrixRotationQuaternion@8
108D3DXMatrixRotationX@8
109D3DXMatrixRotationY@8
110D3DXMatrixRotationYawPitchRoll@16
111D3DXMatrixRotationZ@8
112D3DXMatrixScaling@16
113D3DXMatrixShadow@12
114D3DXMatrixTransformation2D@28
115D3DXMatrixTransformation@28
116D3DXMatrixTranslation@16
117D3DXMatrixTranspose@8
118D3DXPlaneFromPointNormal@12
119D3DXPlaneFromPoints@16
120D3DXPlaneIntersectLine@16
121D3DXPlaneNormalize@8
122D3DXPlaneTransform@12
123D3DXPlaneTransformArray@24
124D3DXQuaternionBaryCentric@24
125D3DXQuaternionExp@8
126D3DXQuaternionInverse@8
127D3DXQuaternionLn@8
128D3DXQuaternionMultiply@12
129D3DXQuaternionNormalize@8
130D3DXQuaternionRotationAxis@12
131D3DXQuaternionRotationMatrix@8
132D3DXQuaternionRotationYawPitchRoll@16
133D3DXQuaternionSlerp@16
134D3DXQuaternionSquad@24
135D3DXQuaternionSquadSetup@28
136D3DXQuaternionToAxisAngle@12
137D3DXSHAdd@16
138D3DXSHDot@12
139D3DXSHEvalConeLight@36
140D3DXSHEvalDirection@12
141D3DXSHEvalDirectionalLight@32
142D3DXSHEvalHemisphereLight@52
143D3DXSHEvalSphericalLight@36
144D3DXSHMultiply2@12
145D3DXSHMultiply3@12
146D3DXSHMultiply4@12
147D3DXSHMultiply5@12
148D3DXSHMultiply6@12
149D3DXSHRotate@16
150D3DXSHRotateZ@16
151D3DXSHScale@16
152D3DXSphereBoundProbe@16
153D3DXVec2BaryCentric@24
154D3DXVec2CatmullRom@24
155D3DXVec2Hermite@24
156D3DXVec2Normalize@8
157D3DXVec2Transform@12
158D3DXVec2TransformArray@24
159D3DXVec2TransformCoord@12
160D3DXVec2TransformCoordArray@24
161D3DXVec2TransformNormal@12
162D3DXVec2TransformNormalArray@24
163D3DXVec3BaryCentric@24
164D3DXVec3CatmullRom@24
165D3DXVec3Hermite@24
166D3DXVec3Normalize@8
167D3DXVec3Project@24
168D3DXVec3ProjectArray@36
169D3DXVec3Transform@12
170D3DXVec3TransformArray@24
171D3DXVec3TransformCoord@12
172D3DXVec3TransformCoordArray@24
173D3DXVec3TransformNormal@12
174D3DXVec3TransformNormalArray@24
175D3DXVec3Unproject@24
176D3DXVec3UnprojectArray@36
177D3DXVec4BaryCentric@24
178D3DXVec4CatmullRom@24
179D3DXVec4Cross@16
180D3DXVec4Hermite@24
181D3DXVec4Normalize@8
182D3DXVec4Transform@12
183D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_42.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_42.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateDevice@20
29D3DX10CreateDeviceAndSwapChain@28
30D3DX10CreateEffectFromFileA@48
31D3DX10CreateEffectFromFileW@48
32D3DX10CreateEffectFromMemory@56
33D3DX10CreateEffectFromResourceA@56
34D3DX10CreateEffectFromResourceW@56
35D3DX10CreateEffectPoolFromFileA@44
36D3DX10CreateEffectPoolFromFileW@44
37D3DX10CreateEffectPoolFromMemory@52
38D3DX10CreateEffectPoolFromResourceA@52
39D3DX10CreateEffectPoolFromResourceW@52
40D3DX10CreateFontA@48
41D3DX10CreateFontIndirectA@12
42D3DX10CreateFontIndirectW@12
43D3DX10CreateFontW@48
44D3DX10CreateMesh@32
45D3DX10CreateShaderResourceViewFromFileA@24
46D3DX10CreateShaderResourceViewFromFileW@24
47D3DX10CreateShaderResourceViewFromMemory@28
48D3DX10CreateShaderResourceViewFromResourceA@28
49D3DX10CreateShaderResourceViewFromResourceW@28
50D3DX10CreateSkinInfo@4
51D3DX10CreateSprite@12
52D3DX10CreateTextureFromFileA@24
53D3DX10CreateTextureFromFileW@24
54D3DX10CreateTextureFromMemory@28
55D3DX10CreateTextureFromResourceA@28
56D3DX10CreateTextureFromResourceW@28
57D3DX10FilterTexture@12
58D3DX10GetFeatureLevel1@8
59D3DX10GetImageInfoFromFileA@16
60D3DX10GetImageInfoFromFileW@16
61D3DX10GetImageInfoFromMemory@20
62D3DX10GetImageInfoFromResourceA@20
63D3DX10GetImageInfoFromResourceW@20
64D3DX10LoadTextureFromTexture@12
65D3DX10PreprocessShaderFromFileA@28
66D3DX10PreprocessShaderFromFileW@28
67D3DX10PreprocessShaderFromMemory@36
68D3DX10PreprocessShaderFromResourceA@36
69D3DX10PreprocessShaderFromResourceW@36
70D3DX10SHProjectCubeMap@20
71D3DX10SaveTextureToFileA@12
72D3DX10SaveTextureToFileW@12
73D3DX10SaveTextureToMemory@16
74D3DX10UnsetAllDeviceObjects@4
75D3DXBoxBoundProbe@16
76D3DXColorAdjustContrast@12
77D3DXColorAdjustSaturation@12
78D3DXComputeBoundingBox@20
79D3DXComputeBoundingSphere@20
80D3DXCpuOptimizations@4
81D3DXCreateMatrixStack@8
82D3DXFloat16To32Array@12
83D3DXFloat32To16Array@12
84D3DXFresnelTerm@8
85D3DXIntersectTri@32
86D3DXMatrixAffineTransformation2D@20
87D3DXMatrixAffineTransformation@20
88D3DXMatrixDecompose@16
89D3DXMatrixDeterminant@4
90D3DXMatrixInverse@12
91D3DXMatrixLookAtLH@16
92D3DXMatrixLookAtRH@16
93D3DXMatrixMultiply@12
94D3DXMatrixMultiplyTranspose@12
95D3DXMatrixOrthoLH@20
96D3DXMatrixOrthoOffCenterLH@28
97D3DXMatrixOrthoOffCenterRH@28
98D3DXMatrixOrthoRH@20
99D3DXMatrixPerspectiveFovLH@20
100D3DXMatrixPerspectiveFovRH@20
101D3DXMatrixPerspectiveLH@20
102D3DXMatrixPerspectiveOffCenterLH@28
103D3DXMatrixPerspectiveOffCenterRH@28
104D3DXMatrixPerspectiveRH@20
105D3DXMatrixReflect@8
106D3DXMatrixRotationAxis@12
107D3DXMatrixRotationQuaternion@8
108D3DXMatrixRotationX@8
109D3DXMatrixRotationY@8
110D3DXMatrixRotationYawPitchRoll@16
111D3DXMatrixRotationZ@8
112D3DXMatrixScaling@16
113D3DXMatrixShadow@12
114D3DXMatrixTransformation2D@28
115D3DXMatrixTransformation@28
116D3DXMatrixTranslation@16
117D3DXMatrixTranspose@8
118D3DXPlaneFromPointNormal@12
119D3DXPlaneFromPoints@16
120D3DXPlaneIntersectLine@16
121D3DXPlaneNormalize@8
122D3DXPlaneTransform@12
123D3DXPlaneTransformArray@24
124D3DXQuaternionBaryCentric@24
125D3DXQuaternionExp@8
126D3DXQuaternionInverse@8
127D3DXQuaternionLn@8
128D3DXQuaternionMultiply@12
129D3DXQuaternionNormalize@8
130D3DXQuaternionRotationAxis@12
131D3DXQuaternionRotationMatrix@8
132D3DXQuaternionRotationYawPitchRoll@16
133D3DXQuaternionSlerp@16
134D3DXQuaternionSquad@24
135D3DXQuaternionSquadSetup@28
136D3DXQuaternionToAxisAngle@12
137D3DXSHAdd@16
138D3DXSHDot@12
139D3DXSHEvalConeLight@36
140D3DXSHEvalDirection@12
141D3DXSHEvalDirectionalLight@32
142D3DXSHEvalHemisphereLight@52
143D3DXSHEvalSphericalLight@36
144D3DXSHMultiply2@12
145D3DXSHMultiply3@12
146D3DXSHMultiply4@12
147D3DXSHMultiply5@12
148D3DXSHMultiply6@12
149D3DXSHRotate@16
150D3DXSHRotateZ@16
151D3DXSHScale@16
152D3DXSphereBoundProbe@16
153D3DXVec2BaryCentric@24
154D3DXVec2CatmullRom@24
155D3DXVec2Hermite@24
156D3DXVec2Normalize@8
157D3DXVec2Transform@12
158D3DXVec2TransformArray@24
159D3DXVec2TransformCoord@12
160D3DXVec2TransformCoordArray@24
161D3DXVec2TransformNormal@12
162D3DXVec2TransformNormalArray@24
163D3DXVec3BaryCentric@24
164D3DXVec3CatmullRom@24
165D3DXVec3Hermite@24
166D3DXVec3Normalize@8
167D3DXVec3Project@24
168D3DXVec3ProjectArray@36
169D3DXVec3Transform@12
170D3DXVec3TransformArray@24
171D3DXVec3TransformCoord@12
172D3DXVec3TransformCoordArray@24
173D3DXVec3TransformNormal@12
174D3DXVec3TransformNormalArray@24
175D3DXVec3Unproject@24
176D3DXVec3UnprojectArray@36
177D3DXVec4BaryCentric@24
178D3DXVec4CatmullRom@24
179D3DXVec4Cross@16
180D3DXVec4Hermite@24
181D3DXVec4Normalize@8
182D3DXVec4Transform@12
183D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx10_43.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_43.dll"
7EXPORTS
8D3DX10CreateThreadPump@12
9D3DX10CheckVersion@8
10D3DX10CompileFromFileA@44
11D3DX10CompileFromFileW@44
12D3DX10CompileFromMemory@52
13D3DX10CompileFromResourceA@52
14D3DX10CompileFromResourceW@52
15D3DX10ComputeNormalMap@20
16D3DX10CreateAsyncCompilerProcessor@40
17D3DX10CreateAsyncEffectCreateProcessor@40
18D3DX10CreateAsyncEffectPoolCreateProcessor@36
19D3DX10CreateAsyncFileLoaderA@8
20D3DX10CreateAsyncFileLoaderW@8
21D3DX10CreateAsyncMemoryLoader@12
22D3DX10CreateAsyncResourceLoaderA@12
23D3DX10CreateAsyncResourceLoaderW@12
24D3DX10CreateAsyncShaderPreprocessProcessor@24
25D3DX10CreateAsyncShaderResourceViewProcessor@12
26D3DX10CreateAsyncTextureInfoProcessor@8
27D3DX10CreateAsyncTextureProcessor@12
28D3DX10CreateDevice@20
29D3DX10CreateDeviceAndSwapChain@28
30D3DX10CreateEffectFromFileA@48
31D3DX10CreateEffectFromFileW@48
32D3DX10CreateEffectFromMemory@56
33D3DX10CreateEffectFromResourceA@56
34D3DX10CreateEffectFromResourceW@56
35D3DX10CreateEffectPoolFromFileA@44
36D3DX10CreateEffectPoolFromFileW@44
37D3DX10CreateEffectPoolFromMemory@52
38D3DX10CreateEffectPoolFromResourceA@52
39D3DX10CreateEffectPoolFromResourceW@52
40D3DX10CreateFontA@48
41D3DX10CreateFontIndirectA@12
42D3DX10CreateFontIndirectW@12
43D3DX10CreateFontW@48
44D3DX10CreateMesh@32
45D3DX10CreateShaderResourceViewFromFileA@24
46D3DX10CreateShaderResourceViewFromFileW@24
47D3DX10CreateShaderResourceViewFromMemory@28
48D3DX10CreateShaderResourceViewFromResourceA@28
49D3DX10CreateShaderResourceViewFromResourceW@28
50D3DX10CreateSkinInfo@4
51D3DX10CreateSprite@12
52D3DX10CreateTextureFromFileA@24
53D3DX10CreateTextureFromFileW@24
54D3DX10CreateTextureFromMemory@28
55D3DX10CreateTextureFromResourceA@28
56D3DX10CreateTextureFromResourceW@28
57D3DX10FilterTexture@12
58D3DX10GetFeatureLevel1@8
59D3DX10GetImageInfoFromFileA@16
60D3DX10GetImageInfoFromFileW@16
61D3DX10GetImageInfoFromMemory@20
62D3DX10GetImageInfoFromResourceA@20
63D3DX10GetImageInfoFromResourceW@20
64D3DX10LoadTextureFromTexture@12
65D3DX10PreprocessShaderFromFileA@28
66D3DX10PreprocessShaderFromFileW@28
67D3DX10PreprocessShaderFromMemory@36
68D3DX10PreprocessShaderFromResourceA@36
69D3DX10PreprocessShaderFromResourceW@36
70D3DX10SHProjectCubeMap@20
71D3DX10SaveTextureToFileA@12
72D3DX10SaveTextureToFileW@12
73D3DX10SaveTextureToMemory@16
74D3DX10UnsetAllDeviceObjects@4
75D3DXBoxBoundProbe@16
76D3DXColorAdjustContrast@12
77D3DXColorAdjustSaturation@12
78D3DXComputeBoundingBox@20
79D3DXComputeBoundingSphere@20
80D3DXCpuOptimizations@4
81D3DXCreateMatrixStack@8
82D3DXFloat16To32Array@12
83D3DXFloat32To16Array@12
84D3DXFresnelTerm@8
85D3DXIntersectTri@32
86D3DXMatrixAffineTransformation2D@20
87D3DXMatrixAffineTransformation@20
88D3DXMatrixDecompose@16
89D3DXMatrixDeterminant@4
90D3DXMatrixInverse@12
91D3DXMatrixLookAtLH@16
92D3DXMatrixLookAtRH@16
93D3DXMatrixMultiply@12
94D3DXMatrixMultiplyTranspose@12
95D3DXMatrixOrthoLH@20
96D3DXMatrixOrthoOffCenterLH@28
97D3DXMatrixOrthoOffCenterRH@28
98D3DXMatrixOrthoRH@20
99D3DXMatrixPerspectiveFovLH@20
100D3DXMatrixPerspectiveFovRH@20
101D3DXMatrixPerspectiveLH@20
102D3DXMatrixPerspectiveOffCenterLH@28
103D3DXMatrixPerspectiveOffCenterRH@28
104D3DXMatrixPerspectiveRH@20
105D3DXMatrixReflect@8
106D3DXMatrixRotationAxis@12
107D3DXMatrixRotationQuaternion@8
108D3DXMatrixRotationX@8
109D3DXMatrixRotationY@8
110D3DXMatrixRotationYawPitchRoll@16
111D3DXMatrixRotationZ@8
112D3DXMatrixScaling@16
113D3DXMatrixShadow@12
114D3DXMatrixTransformation2D@28
115D3DXMatrixTransformation@28
116D3DXMatrixTranslation@16
117D3DXMatrixTranspose@8
118D3DXPlaneFromPointNormal@12
119D3DXPlaneFromPoints@16
120D3DXPlaneIntersectLine@16
121D3DXPlaneNormalize@8
122D3DXPlaneTransform@12
123D3DXPlaneTransformArray@24
124D3DXQuaternionBaryCentric@24
125D3DXQuaternionExp@8
126D3DXQuaternionInverse@8
127D3DXQuaternionLn@8
128D3DXQuaternionMultiply@12
129D3DXQuaternionNormalize@8
130D3DXQuaternionRotationAxis@12
131D3DXQuaternionRotationMatrix@8
132D3DXQuaternionRotationYawPitchRoll@16
133D3DXQuaternionSlerp@16
134D3DXQuaternionSquad@24
135D3DXQuaternionSquadSetup@28
136D3DXQuaternionToAxisAngle@12
137D3DXSHAdd@16
138D3DXSHDot@12
139D3DXSHEvalConeLight@36
140D3DXSHEvalDirection@12
141D3DXSHEvalDirectionalLight@32
142D3DXSHEvalHemisphereLight@52
143D3DXSHEvalSphericalLight@36
144D3DXSHMultiply2@12
145D3DXSHMultiply3@12
146D3DXSHMultiply4@12
147D3DXSHMultiply5@12
148D3DXSHMultiply6@12
149D3DXSHRotate@16
150D3DXSHRotateZ@16
151D3DXSHScale@16
152D3DXSphereBoundProbe@16
153D3DXVec2BaryCentric@24
154D3DXVec2CatmullRom@24
155D3DXVec2Hermite@24
156D3DXVec2Normalize@8
157D3DXVec2Transform@12
158D3DXVec2TransformArray@24
159D3DXVec2TransformCoord@12
160D3DXVec2TransformCoordArray@24
161D3DXVec2TransformNormal@12
162D3DXVec2TransformNormalArray@24
163D3DXVec3BaryCentric@24
164D3DXVec3CatmullRom@24
165D3DXVec3Hermite@24
166D3DXVec3Normalize@8
167D3DXVec3Project@24
168D3DXVec3ProjectArray@36
169D3DXVec3Transform@12
170D3DXVec3TransformArray@24
171D3DXVec3TransformCoord@12
172D3DXVec3TransformCoordArray@24
173D3DXVec3TransformNormal@12
174D3DXVec3TransformNormalArray@24
175D3DXVec3Unproject@24
176D3DXVec3UnprojectArray@36
177D3DXVec4BaryCentric@24
178D3DXVec4CatmullRom@24
179D3DXVec4Cross@16
180D3DXVec4Hermite@24
181D3DXVec4Normalize@8
182D3DXVec4Transform@12
183D3DXVec4TransformArray@24
lib/libc/mingw/lib32/d3dx11_42.def created+51
......@@ -0,0 +1,51 @@
1;
2; Definition file of d3dx11_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx11_42.dll"
7EXPORTS
8D3DX11CheckVersion@8
9D3DX11CompileFromFileA@44
10D3DX11CompileFromFileW@44
11D3DX11CompileFromMemory@52
12D3DX11CompileFromResourceA@52
13D3DX11CompileFromResourceW@52
14D3DX11ComputeNormalMap@24
15D3DX11CreateAsyncCompilerProcessor@40
16D3DX11CreateAsyncFileLoaderA@8
17D3DX11CreateAsyncFileLoaderW@8
18D3DX11CreateAsyncMemoryLoader@12
19D3DX11CreateAsyncResourceLoaderA@12
20D3DX11CreateAsyncResourceLoaderW@12
21D3DX11CreateAsyncShaderPreprocessProcessor@24
22D3DX11CreateAsyncShaderResourceViewProcessor@12
23D3DX11CreateAsyncTextureInfoProcessor@8
24D3DX11CreateAsyncTextureProcessor@12
25D3DX11CreateShaderResourceViewFromFileA@24
26D3DX11CreateShaderResourceViewFromFileW@24
27D3DX11CreateShaderResourceViewFromMemory@28
28D3DX11CreateShaderResourceViewFromResourceA@28
29D3DX11CreateShaderResourceViewFromResourceW@28
30D3DX11CreateTextureFromFileA@24
31D3DX11CreateTextureFromFileW@24
32D3DX11CreateTextureFromMemory@28
33D3DX11CreateTextureFromResourceA@28
34D3DX11CreateTextureFromResourceW@28
35D3DX11CreateThreadPump@12
36D3DX11FilterTexture@16
37D3DX11GetImageInfoFromFileA@16
38D3DX11GetImageInfoFromFileW@16
39D3DX11GetImageInfoFromMemory@20
40D3DX11GetImageInfoFromResourceA@20
41D3DX11GetImageInfoFromResourceW@20
42D3DX11LoadTextureFromTexture@16
43D3DX11PreprocessShaderFromFileA@28
44D3DX11PreprocessShaderFromFileW@28
45D3DX11PreprocessShaderFromMemory@36
46D3DX11PreprocessShaderFromResourceA@36
47D3DX11PreprocessShaderFromResourceW@36
48D3DX11SHProjectCubeMap@24
49D3DX11SaveTextureToFileA@16
50D3DX11SaveTextureToFileW@16
51D3DX11SaveTextureToMemory@20
lib/libc/mingw/lib32/d3dx11_43.def created+51
......@@ -0,0 +1,51 @@
1;
2; Definition file of d3dx11_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx11_43.dll"
7EXPORTS
8D3DX11CheckVersion@8
9D3DX11CompileFromFileA@44
10D3DX11CompileFromFileW@44
11D3DX11CompileFromMemory@52
12D3DX11CompileFromResourceA@52
13D3DX11CompileFromResourceW@52
14D3DX11ComputeNormalMap@24
15D3DX11CreateAsyncCompilerProcessor@40
16D3DX11CreateAsyncFileLoaderA@8
17D3DX11CreateAsyncFileLoaderW@8
18D3DX11CreateAsyncMemoryLoader@12
19D3DX11CreateAsyncResourceLoaderA@12
20D3DX11CreateAsyncResourceLoaderW@12
21D3DX11CreateAsyncShaderPreprocessProcessor@24
22D3DX11CreateAsyncShaderResourceViewProcessor@12
23D3DX11CreateAsyncTextureInfoProcessor@8
24D3DX11CreateAsyncTextureProcessor@12
25D3DX11CreateShaderResourceViewFromFileA@24
26D3DX11CreateShaderResourceViewFromFileW@24
27D3DX11CreateShaderResourceViewFromMemory@28
28D3DX11CreateShaderResourceViewFromResourceA@28
29D3DX11CreateShaderResourceViewFromResourceW@28
30D3DX11CreateTextureFromFileA@24
31D3DX11CreateTextureFromFileW@24
32D3DX11CreateTextureFromMemory@28
33D3DX11CreateTextureFromResourceA@28
34D3DX11CreateTextureFromResourceW@28
35D3DX11CreateThreadPump@12
36D3DX11FilterTexture@16
37D3DX11GetImageInfoFromFileA@16
38D3DX11GetImageInfoFromFileW@16
39D3DX11GetImageInfoFromMemory@20
40D3DX11GetImageInfoFromResourceA@20
41D3DX11GetImageInfoFromResourceW@20
42D3DX11LoadTextureFromTexture@16
43D3DX11PreprocessShaderFromFileA@28
44D3DX11PreprocessShaderFromFileW@28
45D3DX11PreprocessShaderFromMemory@36
46D3DX11PreprocessShaderFromResourceA@36
47D3DX11PreprocessShaderFromResourceW@36
48D3DX11SHProjectCubeMap@24
49D3DX11SaveTextureToFileA@16
50D3DX11SaveTextureToFileW@16
51D3DX11SaveTextureToMemory@20
lib/libc/mingw/lib32/d3dx8d.def created+208
......@@ -0,0 +1,208 @@
1LIBRARY d3dx8d.dll
2EXPORTS
3D3DXAssembleShader@24
4D3DXAssembleShaderFromFileA@20
5D3DXAssembleShaderFromFileW@20
6D3DXAssembleShaderFromResourceA@24
7D3DXAssembleShaderFromResourceW@24
8D3DXBoxBoundProbe@16
9D3DXCheckCubeTextureRequirements@24
10D3DXCheckTextureRequirements@28
11D3DXCheckVolumeTextureRequirements@32
12D3DXCleanMesh@20
13D3DXColorAdjustContrast@12
14D3DXColorAdjustSaturation@12
15D3DXCompileEffect@16
16D3DXCompileEffectFromFileA@12
17D3DXCompileEffectFromFileW@12
18D3DXComputeBoundingBox@20
19D3DXComputeBoundingSphere@20
20D3DXComputeNormalMap@24
21D3DXComputeNormals@8
22D3DXComputeTangent@28
23D3DXConvertMeshSubsetToSingleStrip@20
24D3DXConvertMeshSubsetToStrips@28
25D3DXCpuOptimizations@4
26D3DXCreateBox@24
27D3DXCreateBuffer@8
28D3DXCreateCubeTexture@28
29D3DXCreateCubeTextureFromFileA@12
30D3DXCreateCubeTextureFromFileExA@52
31D3DXCreateCubeTextureFromFileExW@52
32D3DXCreateCubeTextureFromFileInMemory@16
33D3DXCreateCubeTextureFromFileInMemoryEx@56
34D3DXCreateCubeTextureFromFileW@12
35D3DXCreateCubeTextureFromResourceA@16
36D3DXCreateCubeTextureFromResourceExA@56
37D3DXCreateCubeTextureFromResourceExW@56
38D3DXCreateCubeTextureFromResourceW@16
39D3DXCreateCylinder@32
40D3DXCreateEffect@20
41D3DXCreateEffectFromFileA@16
42D3DXCreateEffectFromFileW@16
43D3DXCreateEffectFromResourceA@16
44D3DXCreateEffectFromResourceW@16
45D3DXCreateFont@12
46D3DXCreateFontIndirect@12
47D3DXCreateMatrixStack@8
48D3DXCreateMesh@24
49D3DXCreateMeshFVF@24
50D3DXCreatePMeshFromStream@24
51D3DXCreatePolygon@20
52D3DXCreateRenderToEnvMap@24
53D3DXCreateRenderToSurface@28
54D3DXCreateSPMesh@20
55D3DXCreateSkinMesh@28
56D3DXCreateSkinMeshFVF@28
57D3DXCreateSkinMeshFromMesh@12
58D3DXCreateSphere@24
59D3DXCreateSprite@8
60D3DXCreateTeapot@12
61D3DXCreateTextA@32
62D3DXCreateTextW@32
63D3DXCreateTexture@32
64D3DXCreateTextureFromFileA@12
65D3DXCreateTextureFromFileExA@56
66D3DXCreateTextureFromFileExW@56
67D3DXCreateTextureFromFileInMemory@16
68D3DXCreateTextureFromFileInMemoryEx@60
69D3DXCreateTextureFromFileW@12
70D3DXCreateTextureFromResourceA@16
71D3DXCreateTextureFromResourceExA@60
72D3DXCreateTextureFromResourceExW@60
73D3DXCreateTextureFromResourceW@16
74D3DXCreateTorus@28
75D3DXCreateVolumeTexture@36
76D3DXCreateVolumeTextureFromFileA@12
77D3DXCreateVolumeTextureFromFileExA@56
78D3DXCreateVolumeTextureFromFileExW@56
79D3DXCreateVolumeTextureFromFileInMemory@16
80D3DXCreateVolumeTextureFromFileInMemoryEx@60
81D3DXCreateVolumeTextureFromFileW@12
82D3DXCreateVolumeTextureFromResourceA@16
83D3DXCreateVolumeTextureFromResourceExA@60
84D3DXCreateVolumeTextureFromResourceExW@60
85D3DXCreateVolumeTextureFromResourceW@16
86D3DXDeclaratorFromFVF@8
87D3DXFVFFromDeclarator@8
88D3DXFilterCubeTexture@16
89D3DXFillCubeTexture@12
90D3DXFillTexture@12
91D3DXFillVolumeTexture@12
92D3DXFilterTexture@16
93D3DXFresnelTerm@8
94D3DXFilterVolumeTexture@16
95D3DXGeneratePMesh@28
96D3DXGetErrorStringA@12
97D3DXGetErrorStringW@12
98D3DXGetFVFVertexSize@4
99D3DXGetImageInfoFromFileA@8
100D3DXGetImageInfoFromFileInMemory@12
101D3DXGetImageInfoFromFileW@8
102D3DXGetImageInfoFromResourceA@12
103D3DXGetImageInfoFromResourceW@12
104D3DXIntersect@40
105D3DXIntersectSubset@44
106D3DXIntersectTri@32
107D3DXLoadMeshFromX@28
108D3DXLoadMeshFromXInMemory@32
109D3DXLoadMeshFromXResource@36
110D3DXLoadMeshFromXof@28
111D3DXLoadSkinMeshFromXof@36
112D3DXLoadSurfaceFromFileA@32
113D3DXLoadSurfaceFromFileInMemory@36
114D3DXLoadSurfaceFromFileW@32
115D3DXLoadSurfaceFromMemory@40
116D3DXLoadSurfaceFromResourceA@36
117D3DXLoadSurfaceFromResourceW@36
118D3DXLoadSurfaceFromSurface@32
119D3DXLoadVolumeFromFileA@32
120D3DXLoadVolumeFromFileInMemory@36
121D3DXLoadVolumeFromFileW@32
122D3DXLoadVolumeFromMemory@44
123D3DXLoadVolumeFromResourceA@36
124D3DXLoadVolumeFromResourceW@36
125D3DXLoadVolumeFromVolume@32
126D3DXMatrixAffineTransformation@20
127D3DXMatrixInverse@12
128D3DXMatrixLookAtLH@16
129D3DXMatrixLookAtRH@16
130D3DXMatrixMultiply@12
131D3DXMatrixMultiplyTranspose@12
132D3DXMatrixOrthoLH@20
133D3DXMatrixOrthoOffCenterLH@28
134D3DXMatrixOrthoOffCenterRH@28
135D3DXMatrixOrthoRH@20
136D3DXMatrixPerspectiveFovLH@20
137D3DXMatrixPerspectiveFovRH@20
138D3DXMatrixPerspectiveLH@20
139D3DXMatrixPerspectiveOffCenterLH@28
140D3DXMatrixPerspectiveOffCenterRH@28
141D3DXMatrixPerspectiveRH@20
142D3DXMatrixReflect@8
143D3DXMatrixRotationAxis@12
144D3DXMatrixRotationQuaternion@8
145D3DXMatrixRotationX@8
146D3DXMatrixRotationY@8
147D3DXMatrixRotationYawPitchRoll@16
148D3DXMatrixRotationZ@8
149D3DXMatrixScaling@16
150D3DXMatrixShadow@12
151D3DXMatrixTransformation@28
152D3DXMatrixTranslation@16
153D3DXMatrixTranspose@8
154D3DXMatrixfDeterminant@4
155D3DXPlaneFromPointNormal@12
156D3DXPlaneFromPoints@16
157D3DXPlaneIntersectLine@16
158D3DXPlaneNormalize@8
159D3DXPlaneTransform@12
160D3DXQuaternionBaryCentric@24
161D3DXQuaternionExp@8
162D3DXQuaternionInverse@8
163D3DXQuaternionLn@8
164D3DXQuaternionMultiply@12
165D3DXQuaternionNormalize@8
166D3DXQuaternionRotationAxis@12
167D3DXQuaternionRotationMatrix@8
168D3DXQuaternionRotationYawPitchRoll@16
169D3DXQuaternionSlerp@16
170D3DXQuaternionSquad@24
171D3DXQuaternionSquadSetup@28
172D3DXQuaternionToAxisAngle@12
173D3DXSaveMeshToX@24
174D3DXSaveSurfaceToFileA@20
175D3DXSaveSurfaceToFileW@20
176D3DXSaveTextureToFileA@16
177D3DXSaveTextureToFileW@16
178D3DXSaveVolumeToFileA@20
179D3DXSaveVolumeToFileW@20
180D3DXSimplifyMesh@28
181D3DXSphereBoundProbe@16
182D3DXTesselateMesh@20
183D3DXSplitMesh@36
184D3DXTessellateNPatches@24
185D3DXValidMesh@12
186D3DXVec2BaryCentric@24
187D3DXVec2CatmullRom@24
188D3DXVec2Hermite@24
189D3DXVec2Normalize@8
190D3DXVec2Transform@12
191D3DXVec2TransformCoord@12
192D3DXVec2TransformNormal@12
193D3DXVec3BaryCentric@24
194D3DXVec3CatmullRom@24
195D3DXVec3Hermite@24
196D3DXVec3Normalize@8
197D3DXVec3Project@24
198D3DXVec3Transform@12
199D3DXVec3TransformCoord@12
200D3DXVec3TransformNormal@12
201D3DXVec3Unproject@24
202D3DXVec4BaryCentric@24
203D3DXVec4CatmullRom@24
204D3DXVec4Cross@16
205D3DXVec4Hermite@24
206D3DXVec4Normalize@8
207D3DXVec4Transform@12
208D3DXWeldVertices@24
lib/libc/mingw/lib32/d3dx9_24.def created+327
......@@ -0,0 +1,327 @@
1;
2; Definition file of d3dx9_24.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_24.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeNormalMap@24
29D3DXComputeNormals@8
30D3DXComputeTangent@24
31D3DXComputeTangentFrame@8
32D3DXComputeTangentFrameEx@64
33D3DXConcatenateMeshes@32
34D3DXConvertMeshSubsetToSingleStrip@20
35D3DXConvertMeshSubsetToStrips@28
36D3DXCpuOptimizations@4
37D3DXCreateAnimationController@20
38D3DXCreateBox@24
39D3DXCreateBuffer@8
40D3DXCreateCompressedAnimationSet@32
41D3DXCreateCubeTexture@28
42D3DXCreateCubeTextureFromFileA@12
43D3DXCreateCubeTextureFromFileExA@52
44D3DXCreateCubeTextureFromFileExW@52
45D3DXCreateCubeTextureFromFileInMemory@16
46D3DXCreateCubeTextureFromFileInMemoryEx@56
47D3DXCreateCubeTextureFromFileW@12
48D3DXCreateCubeTextureFromResourceA@16
49D3DXCreateCubeTextureFromResourceExA@56
50D3DXCreateCubeTextureFromResourceExW@56
51D3DXCreateCubeTextureFromResourceW@16
52D3DXCreateCylinder@32
53D3DXCreateEffect@36
54D3DXCreateEffectCompiler@28
55D3DXCreateEffectCompilerFromFileA@24
56D3DXCreateEffectCompilerFromFileW@24
57D3DXCreateEffectCompilerFromResourceA@28
58D3DXCreateEffectCompilerFromResourceW@28
59D3DXCreateEffectEx@40
60D3DXCreateEffectFromFileA@32
61D3DXCreateEffectFromFileExA@36
62D3DXCreateEffectFromFileExW@36
63D3DXCreateEffectFromFileW@32
64D3DXCreateEffectFromResourceA@36
65D3DXCreateEffectFromResourceExA@40
66D3DXCreateEffectFromResourceExW@40
67D3DXCreateEffectFromResourceW@36
68D3DXCreateEffectPool@4
69D3DXCreateFontA@48
70D3DXCreateFontIndirectA@12
71D3DXCreateFontIndirectW@12
72D3DXCreateFontW@48
73D3DXCreateFragmentLinker@12
74D3DXCreateKeyframedAnimationSet@32
75D3DXCreateLine@8
76D3DXCreateMatrixStack@8
77D3DXCreateMesh@24
78D3DXCreateMeshFVF@24
79D3DXCreateNPatchMesh@8
80D3DXCreatePMeshFromStream@28
81D3DXCreatePRTBuffer@16
82D3DXCreatePRTBufferTex@20
83D3DXCreatePRTCompBuffer@28
84D3DXCreatePRTEngine@20
85D3DXCreatePatchMesh@28
86D3DXCreatePolygon@20
87D3DXCreateRenderToEnvMap@28
88D3DXCreateRenderToSurface@28
89D3DXCreateSPMesh@20
90D3DXCreateSkinInfo@16
91D3DXCreateSkinInfoFVF@16
92D3DXCreateSkinInfoFromBlendedMesh@16
93D3DXCreateSphere@24
94D3DXCreateSprite@8
95D3DXCreateTeapot@12
96D3DXCreateTextA@32
97D3DXCreateTextW@32
98D3DXCreateTexture@32
99D3DXCreateTextureFromFileA@12
100D3DXCreateTextureFromFileExA@56
101D3DXCreateTextureFromFileExW@56
102D3DXCreateTextureFromFileInMemory@16
103D3DXCreateTextureFromFileInMemoryEx@60
104D3DXCreateTextureFromFileW@12
105D3DXCreateTextureFromResourceA@16
106D3DXCreateTextureFromResourceExA@60
107D3DXCreateTextureFromResourceExW@60
108D3DXCreateTextureFromResourceW@16
109D3DXCreateTextureGutterHelper@20
110D3DXCreateTextureShader@8
111D3DXCreateTorus@28
112D3DXCreateVolumeTexture@36
113D3DXCreateVolumeTextureFromFileA@12
114D3DXCreateVolumeTextureFromFileExA@60
115D3DXCreateVolumeTextureFromFileExW@60
116D3DXCreateVolumeTextureFromFileInMemory@16
117D3DXCreateVolumeTextureFromFileInMemoryEx@64
118D3DXCreateVolumeTextureFromFileW@12
119D3DXCreateVolumeTextureFromResourceA@16
120D3DXCreateVolumeTextureFromResourceExA@64
121D3DXCreateVolumeTextureFromResourceExW@64
122D3DXCreateVolumeTextureFromResourceW@16
123D3DXDebugMute@4
124D3DXDeclaratorFromFVF@8
125D3DXDisassembleEffect@12
126D3DXDisassembleShader@16
127D3DXFVFFromDeclarator@8
128D3DXFileCreate@4
129D3DXFillCubeTexture@12
130D3DXFillCubeTextureTX@8
131D3DXFillTexture@12
132D3DXFillTextureTX@8
133D3DXFillVolumeTexture@12
134D3DXFillVolumeTextureTX@8
135D3DXFilterTexture@16
136D3DXFindShaderComment@16
137D3DXFloat16To32Array@12
138D3DXFloat32To16Array@12
139D3DXFrameAppendChild@8
140D3DXFrameCalculateBoundingSphere@12
141D3DXFrameDestroy@8
142D3DXFrameFind@8
143D3DXFrameNumNamedMatrices@4
144D3DXFrameRegisterNamedMatrices@8
145D3DXFresnelTerm@8
146D3DXGatherFragments@28
147D3DXGatherFragmentsFromFileA@24
148D3DXGatherFragmentsFromFileW@24
149D3DXGatherFragmentsFromResourceA@28
150D3DXGatherFragmentsFromResourceW@28
151D3DXGenerateOutputDecl@8
152D3DXGeneratePMesh@28
153D3DXGetDeclLength@4
154D3DXGetDeclVertexSize@8
155D3DXGetDriverLevel@4
156D3DXGetFVFVertexSize@4
157D3DXGetImageInfoFromFileA@8
158D3DXGetImageInfoFromFileInMemory@12
159D3DXGetImageInfoFromFileW@8
160D3DXGetImageInfoFromResourceA@12
161D3DXGetImageInfoFromResourceW@12
162D3DXGetPixelShaderProfile@4
163D3DXGetShaderConstantTable@8
164D3DXGetShaderInputSemantics@12
165D3DXGetShaderOutputSemantics@12
166D3DXGetShaderSamplers@12
167D3DXGetShaderSize@4
168D3DXGetShaderVersion@4
169D3DXGetTargetDescByName@12
170D3DXGetTargetDescByVersion@12
171D3DXGetVertexShaderProfile@4
172D3DXIntersect@40
173D3DXIntersectSubset@44
174D3DXIntersectTri@32
175D3DXLoadMeshFromXA@32
176D3DXLoadMeshFromXInMemory@36
177D3DXLoadMeshFromXResource@40
178D3DXLoadMeshFromXW@32
179D3DXLoadMeshFromXof@32
180D3DXLoadMeshHierarchyFromXA@28
181D3DXLoadMeshHierarchyFromXInMemory@32
182D3DXLoadMeshHierarchyFromXW@28
183D3DXLoadPRTBufferFromFileA@8
184D3DXLoadPRTBufferFromFileW@8
185D3DXLoadPRTCompBufferFromFileA@8
186D3DXLoadPRTCompBufferFromFileW@8
187D3DXLoadPatchMeshFromXof@28
188D3DXLoadSkinMeshFromXof@36
189D3DXLoadSurfaceFromFileA@32
190D3DXLoadSurfaceFromFileInMemory@36
191D3DXLoadSurfaceFromFileW@32
192D3DXLoadSurfaceFromMemory@40
193D3DXLoadSurfaceFromResourceA@36
194D3DXLoadSurfaceFromResourceW@36
195D3DXLoadSurfaceFromSurface@32
196D3DXLoadVolumeFromFileA@32
197D3DXLoadVolumeFromFileInMemory@36
198D3DXLoadVolumeFromFileW@32
199D3DXLoadVolumeFromMemory@44
200D3DXLoadVolumeFromResourceA@36
201D3DXLoadVolumeFromResourceW@36
202D3DXLoadVolumeFromVolume@32
203D3DXMatrixAffineTransformation2D@20
204D3DXMatrixAffineTransformation@20
205D3DXMatrixDecompose@16
206D3DXMatrixDeterminant@4
207D3DXMatrixInverse@12
208D3DXMatrixLookAtLH@16
209D3DXMatrixLookAtRH@16
210D3DXMatrixMultiply@12
211D3DXMatrixMultiplyTranspose@12
212D3DXMatrixOrthoLH@20
213D3DXMatrixOrthoOffCenterLH@28
214D3DXMatrixOrthoOffCenterRH@28
215D3DXMatrixOrthoRH@20
216D3DXMatrixPerspectiveFovLH@20
217D3DXMatrixPerspectiveFovRH@20
218D3DXMatrixPerspectiveLH@20
219D3DXMatrixPerspectiveOffCenterLH@28
220D3DXMatrixPerspectiveOffCenterRH@28
221D3DXMatrixPerspectiveRH@20
222D3DXMatrixReflect@8
223D3DXMatrixRotationAxis@12
224D3DXMatrixRotationQuaternion@8
225D3DXMatrixRotationX@8
226D3DXMatrixRotationY@8
227D3DXMatrixRotationYawPitchRoll@16
228D3DXMatrixRotationZ@8
229D3DXMatrixScaling@16
230D3DXMatrixShadow@12
231D3DXMatrixTransformation2D@28
232D3DXMatrixTransformation@28
233D3DXMatrixTranslation@16
234D3DXMatrixTranspose@8
235D3DXOptimizeFaces@20
236D3DXOptimizeVertices@20
237D3DXPlaneFromPointNormal@12
238D3DXPlaneFromPoints@16
239D3DXPlaneIntersectLine@16
240D3DXPlaneNormalize@8
241D3DXPlaneTransform@12
242D3DXPlaneTransformArray@24
243D3DXQuaternionBaryCentric@24
244D3DXQuaternionExp@8
245D3DXQuaternionInverse@8
246D3DXQuaternionLn@8
247D3DXQuaternionMultiply@12
248D3DXQuaternionNormalize@8
249D3DXQuaternionRotationAxis@12
250D3DXQuaternionRotationMatrix@8
251D3DXQuaternionRotationYawPitchRoll@16
252D3DXQuaternionSlerp@16
253D3DXQuaternionSquad@24
254D3DXQuaternionSquadSetup@28
255D3DXQuaternionToAxisAngle@12
256D3DXRectPatchSize@12
257D3DXSHAdd@16
258D3DXSHDot@12
259D3DXSHEvalConeLight@36
260D3DXSHEvalDirection@12
261D3DXSHEvalDirectionalLight@32
262D3DXSHEvalHemisphereLight@52
263D3DXSHEvalSphericalLight@36
264D3DXSHPRTCompSplitMeshSC@64
265D3DXSHPRTCompSuperCluster@24
266D3DXSHProjectCubeMap@20
267D3DXSHRotate@16
268D3DXSHRotateZ@16
269D3DXSHScale@16
270D3DXSaveMeshHierarchyToFileA@20
271D3DXSaveMeshHierarchyToFileW@20
272D3DXSaveMeshToXA@28
273D3DXSaveMeshToXW@28
274D3DXSavePRTBufferToFileA@8
275D3DXSavePRTBufferToFileW@8
276D3DXSavePRTCompBufferToFileA@8
277D3DXSavePRTCompBufferToFileW@8
278D3DXSaveSurfaceToFileA@20
279D3DXSaveSurfaceToFileInMemory@20
280D3DXSaveSurfaceToFileW@20
281D3DXSaveTextureToFileA@16
282D3DXSaveTextureToFileInMemory@16
283D3DXSaveTextureToFileW@16
284D3DXSaveVolumeToFileA@20
285D3DXSaveVolumeToFileInMemory@20
286D3DXSaveVolumeToFileW@20
287D3DXSimplifyMesh@28
288D3DXSphereBoundProbe@16
289D3DXSplitMesh@36
290D3DXTessellateNPatches@24
291D3DXTessellateRectPatch@20
292D3DXTessellateTriPatch@20
293D3DXTriPatchSize@12
294D3DXValidMesh@12
295D3DXValidPatchMesh@16
296D3DXVec2BaryCentric@24
297D3DXVec2CatmullRom@24
298D3DXVec2Hermite@24
299D3DXVec2Normalize@8
300D3DXVec2Transform@12
301D3DXVec2TransformArray@24
302D3DXVec2TransformCoord@12
303D3DXVec2TransformCoordArray@24
304D3DXVec2TransformNormal@12
305D3DXVec2TransformNormalArray@24
306D3DXVec3BaryCentric@24
307D3DXVec3CatmullRom@24
308D3DXVec3Hermite@24
309D3DXVec3Normalize@8
310D3DXVec3Project@24
311D3DXVec3ProjectArray@36
312D3DXVec3Transform@12
313D3DXVec3TransformArray@24
314D3DXVec3TransformCoord@12
315D3DXVec3TransformCoordArray@24
316D3DXVec3TransformNormal@12
317D3DXVec3TransformNormalArray@24
318D3DXVec3Unproject@24
319D3DXVec3UnprojectArray@36
320D3DXVec4BaryCentric@24
321D3DXVec4CatmullRom@24
322D3DXVec4Cross@16
323D3DXVec4Hermite@24
324D3DXVec4Normalize@8
325D3DXVec4Transform@12
326D3DXVec4TransformArray@24
327D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_25.def created+330
......@@ -0,0 +1,330 @@
1;
2; Definition file of d3dx9_25.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_25.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeNormalMap@24
29D3DXComputeNormals@8
30D3DXComputeTangent@24
31D3DXComputeTangentFrame@8
32D3DXComputeTangentFrameEx@64
33D3DXConcatenateMeshes@32
34D3DXConvertMeshSubsetToSingleStrip@20
35D3DXConvertMeshSubsetToStrips@28
36D3DXCpuOptimizations@4
37D3DXCreateAnimationController@20
38D3DXCreateBox@24
39D3DXCreateBuffer@8
40D3DXCreateCompressedAnimationSet@32
41D3DXCreateCubeTexture@28
42D3DXCreateCubeTextureFromFileA@12
43D3DXCreateCubeTextureFromFileExA@52
44D3DXCreateCubeTextureFromFileExW@52
45D3DXCreateCubeTextureFromFileInMemory@16
46D3DXCreateCubeTextureFromFileInMemoryEx@56
47D3DXCreateCubeTextureFromFileW@12
48D3DXCreateCubeTextureFromResourceA@16
49D3DXCreateCubeTextureFromResourceExA@56
50D3DXCreateCubeTextureFromResourceExW@56
51D3DXCreateCubeTextureFromResourceW@16
52D3DXCreateCylinder@32
53D3DXCreateEffect@36
54D3DXCreateEffectCompiler@28
55D3DXCreateEffectCompilerFromFileA@24
56D3DXCreateEffectCompilerFromFileW@24
57D3DXCreateEffectCompilerFromResourceA@28
58D3DXCreateEffectCompilerFromResourceW@28
59D3DXCreateEffectEx@40
60D3DXCreateEffectFromFileA@32
61D3DXCreateEffectFromFileExA@36
62D3DXCreateEffectFromFileExW@36
63D3DXCreateEffectFromFileW@32
64D3DXCreateEffectFromResourceA@36
65D3DXCreateEffectFromResourceExA@40
66D3DXCreateEffectFromResourceExW@40
67D3DXCreateEffectFromResourceW@36
68D3DXCreateEffectPool@4
69D3DXCreateFontA@48
70D3DXCreateFontIndirectA@12
71D3DXCreateFontIndirectW@12
72D3DXCreateFontW@48
73D3DXCreateFragmentLinker@12
74D3DXCreateKeyframedAnimationSet@32
75D3DXCreateLine@8
76D3DXCreateMatrixStack@8
77D3DXCreateMesh@24
78D3DXCreateMeshFVF@24
79D3DXCreateNPatchMesh@8
80D3DXCreatePMeshFromStream@28
81D3DXCreatePRTBuffer@16
82D3DXCreatePRTBufferTex@20
83D3DXCreatePRTCompBuffer@28
84D3DXCreatePRTEngine@20
85D3DXCreatePatchMesh@28
86D3DXCreatePolygon@20
87D3DXCreateRenderToEnvMap@28
88D3DXCreateRenderToSurface@28
89D3DXCreateSPMesh@20
90D3DXCreateSkinInfo@16
91D3DXCreateSkinInfoFVF@16
92D3DXCreateSkinInfoFromBlendedMesh@16
93D3DXCreateSphere@24
94D3DXCreateSprite@8
95D3DXCreateTeapot@12
96D3DXCreateTextA@32
97D3DXCreateTextW@32
98D3DXCreateTexture@32
99D3DXCreateTextureFromFileA@12
100D3DXCreateTextureFromFileExA@56
101D3DXCreateTextureFromFileExW@56
102D3DXCreateTextureFromFileInMemory@16
103D3DXCreateTextureFromFileInMemoryEx@60
104D3DXCreateTextureFromFileW@12
105D3DXCreateTextureFromResourceA@16
106D3DXCreateTextureFromResourceExA@60
107D3DXCreateTextureFromResourceExW@60
108D3DXCreateTextureFromResourceW@16
109D3DXCreateTextureGutterHelper@20
110D3DXCreateTextureShader@8
111D3DXCreateTorus@28
112D3DXCreateVolumeTexture@36
113D3DXCreateVolumeTextureFromFileA@12
114D3DXCreateVolumeTextureFromFileExA@60
115D3DXCreateVolumeTextureFromFileExW@60
116D3DXCreateVolumeTextureFromFileInMemory@16
117D3DXCreateVolumeTextureFromFileInMemoryEx@64
118D3DXCreateVolumeTextureFromFileW@12
119D3DXCreateVolumeTextureFromResourceA@16
120D3DXCreateVolumeTextureFromResourceExA@64
121D3DXCreateVolumeTextureFromResourceExW@64
122D3DXCreateVolumeTextureFromResourceW@16
123D3DXDebugMute@4
124D3DXDeclaratorFromFVF@8
125D3DXDisassembleEffect@12
126D3DXDisassembleShader@16
127D3DXFVFFromDeclarator@8
128D3DXFileCreate@4
129D3DXFillCubeTexture@12
130D3DXFillCubeTextureTX@8
131D3DXFillTexture@12
132D3DXFillTextureTX@8
133D3DXFillVolumeTexture@12
134D3DXFillVolumeTextureTX@8
135D3DXFilterTexture@16
136D3DXFindShaderComment@16
137D3DXFloat16To32Array@12
138D3DXFloat32To16Array@12
139D3DXFrameAppendChild@8
140D3DXFrameCalculateBoundingSphere@12
141D3DXFrameDestroy@8
142D3DXFrameFind@8
143D3DXFrameNumNamedMatrices@4
144D3DXFrameRegisterNamedMatrices@8
145D3DXFresnelTerm@8
146D3DXGatherFragments@28
147D3DXGatherFragmentsFromFileA@24
148D3DXGatherFragmentsFromFileW@24
149D3DXGatherFragmentsFromResourceA@28
150D3DXGatherFragmentsFromResourceW@28
151D3DXGenerateOutputDecl@8
152D3DXGeneratePMesh@28
153D3DXGetDeclLength@4
154D3DXGetDeclVertexSize@8
155D3DXGetDriverLevel@4
156D3DXGetFVFVertexSize@4
157D3DXGetImageInfoFromFileA@8
158D3DXGetImageInfoFromFileInMemory@12
159D3DXGetImageInfoFromFileW@8
160D3DXGetImageInfoFromResourceA@12
161D3DXGetImageInfoFromResourceW@12
162D3DXGetPixelShaderProfile@4
163D3DXGetShaderConstantTable@8
164D3DXGetShaderInputSemantics@12
165D3DXGetShaderOutputSemantics@12
166D3DXGetShaderSamplers@12
167D3DXGetShaderSize@4
168D3DXGetShaderVersion@4
169D3DXGetTargetDescByName@12
170D3DXGetTargetDescByVersion@12
171D3DXGetVertexShaderProfile@4
172D3DXIntersect@40
173D3DXIntersectSubset@44
174D3DXIntersectTri@32
175D3DXLoadMeshFromXA@32
176D3DXLoadMeshFromXInMemory@36
177D3DXLoadMeshFromXResource@40
178D3DXLoadMeshFromXW@32
179D3DXLoadMeshFromXof@32
180D3DXLoadMeshHierarchyFromXA@28
181D3DXLoadMeshHierarchyFromXInMemory@32
182D3DXLoadMeshHierarchyFromXW@28
183D3DXLoadPRTBufferFromFileA@8
184D3DXLoadPRTBufferFromFileW@8
185D3DXLoadPRTCompBufferFromFileA@8
186D3DXLoadPRTCompBufferFromFileW@8
187D3DXLoadPatchMeshFromXof@28
188D3DXLoadSkinMeshFromXof@36
189D3DXLoadSurfaceFromFileA@32
190D3DXLoadSurfaceFromFileInMemory@36
191D3DXLoadSurfaceFromFileW@32
192D3DXLoadSurfaceFromMemory@40
193D3DXLoadSurfaceFromResourceA@36
194D3DXLoadSurfaceFromResourceW@36
195D3DXLoadSurfaceFromSurface@32
196D3DXLoadVolumeFromFileA@32
197D3DXLoadVolumeFromFileInMemory@36
198D3DXLoadVolumeFromFileW@32
199D3DXLoadVolumeFromMemory@44
200D3DXLoadVolumeFromResourceA@36
201D3DXLoadVolumeFromResourceW@36
202D3DXLoadVolumeFromVolume@32
203D3DXMatrixAffineTransformation2D@20
204D3DXMatrixAffineTransformation@20
205D3DXMatrixDecompose@16
206D3DXMatrixDeterminant@4
207D3DXMatrixInverse@12
208D3DXMatrixLookAtLH@16
209D3DXMatrixLookAtRH@16
210D3DXMatrixMultiply@12
211D3DXMatrixMultiplyTranspose@12
212D3DXMatrixOrthoLH@20
213D3DXMatrixOrthoOffCenterLH@28
214D3DXMatrixOrthoOffCenterRH@28
215D3DXMatrixOrthoRH@20
216D3DXMatrixPerspectiveFovLH@20
217D3DXMatrixPerspectiveFovRH@20
218D3DXMatrixPerspectiveLH@20
219D3DXMatrixPerspectiveOffCenterLH@28
220D3DXMatrixPerspectiveOffCenterRH@28
221D3DXMatrixPerspectiveRH@20
222D3DXMatrixReflect@8
223D3DXMatrixRotationAxis@12
224D3DXMatrixRotationQuaternion@8
225D3DXMatrixRotationX@8
226D3DXMatrixRotationY@8
227D3DXMatrixRotationYawPitchRoll@16
228D3DXMatrixRotationZ@8
229D3DXMatrixScaling@16
230D3DXMatrixShadow@12
231D3DXMatrixTransformation2D@28
232D3DXMatrixTransformation@28
233D3DXMatrixTranslation@16
234D3DXMatrixTranspose@8
235D3DXOptimizeFaces@20
236D3DXOptimizeVertices@20
237D3DXPlaneFromPointNormal@12
238D3DXPlaneFromPoints@16
239D3DXPlaneIntersectLine@16
240D3DXPlaneNormalize@8
241D3DXPlaneTransform@12
242D3DXPlaneTransformArray@24
243D3DXQuaternionBaryCentric@24
244D3DXQuaternionExp@8
245D3DXQuaternionInverse@8
246D3DXQuaternionLn@8
247D3DXQuaternionMultiply@12
248D3DXQuaternionNormalize@8
249D3DXQuaternionRotationAxis@12
250D3DXQuaternionRotationMatrix@8
251D3DXQuaternionRotationYawPitchRoll@16
252D3DXQuaternionSlerp@16
253D3DXQuaternionSquad@24
254D3DXQuaternionSquadSetup@28
255D3DXQuaternionToAxisAngle@12
256D3DXRectPatchSize@12
257D3DXSHAdd@16
258D3DXSHDot@12
259D3DXSHEvalConeLight@36
260D3DXSHEvalDirection@12
261D3DXSHEvalDirectionalLight@32
262D3DXSHEvalHemisphereLight@52
263D3DXSHEvalSphericalLight@36
264D3DXSHPRTCompSplitMeshSC@64
265D3DXSHPRTCompSuperCluster@24
266D3DXSHProjectCubeMap@20
267D3DXSHRotate@16
268D3DXSHRotateZ@16
269D3DXSHScale@16
270D3DXSaveMeshHierarchyToFileA@20
271D3DXSaveMeshHierarchyToFileW@20
272D3DXSaveMeshToXA@28
273D3DXSaveMeshToXW@28
274D3DXSavePRTBufferToFileA@8
275D3DXSavePRTBufferToFileW@8
276D3DXSavePRTCompBufferToFileA@8
277D3DXSavePRTCompBufferToFileW@8
278D3DXSaveSurfaceToFileA@20
279D3DXSaveSurfaceToFileInMemory@20
280D3DXSaveSurfaceToFileW@20
281D3DXSaveTextureToFileA@16
282D3DXSaveTextureToFileInMemory@16
283D3DXSaveTextureToFileW@16
284D3DXSaveVolumeToFileA@20
285D3DXSaveVolumeToFileInMemory@20
286D3DXSaveVolumeToFileW@20
287D3DXSimplifyMesh@28
288D3DXSphereBoundProbe@16
289D3DXSplitMesh@36
290D3DXTessellateNPatches@24
291D3DXTessellateRectPatch@20
292D3DXTessellateTriPatch@20
293D3DXTriPatchSize@12
294D3DXUVAtlasCreate@76
295D3DXUVAtlasPack@44
296D3DXUVAtlasPartition@68
297D3DXValidMesh@12
298D3DXValidPatchMesh@16
299D3DXVec2BaryCentric@24
300D3DXVec2CatmullRom@24
301D3DXVec2Hermite@24
302D3DXVec2Normalize@8
303D3DXVec2Transform@12
304D3DXVec2TransformArray@24
305D3DXVec2TransformCoord@12
306D3DXVec2TransformCoordArray@24
307D3DXVec2TransformNormal@12
308D3DXVec2TransformNormalArray@24
309D3DXVec3BaryCentric@24
310D3DXVec3CatmullRom@24
311D3DXVec3Hermite@24
312D3DXVec3Normalize@8
313D3DXVec3Project@24
314D3DXVec3ProjectArray@36
315D3DXVec3Transform@12
316D3DXVec3TransformArray@24
317D3DXVec3TransformCoord@12
318D3DXVec3TransformCoordArray@24
319D3DXVec3TransformNormal@12
320D3DXVec3TransformNormalArray@24
321D3DXVec3Unproject@24
322D3DXVec3UnprojectArray@36
323D3DXVec4BaryCentric@24
324D3DXVec4CatmullRom@24
325D3DXVec4Cross@16
326D3DXVec4Hermite@24
327D3DXVec4Normalize@8
328D3DXVec4Transform@12
329D3DXVec4TransformArray@24
330D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_26.def created+334
......@@ -0,0 +1,334 @@
1;
2; Definition file of d3dx9_26.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_26.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCpuOptimizations@4
41D3DXCreateAnimationController@20
42D3DXCreateBox@24
43D3DXCreateBuffer@8
44D3DXCreateCompressedAnimationSet@32
45D3DXCreateCubeTexture@28
46D3DXCreateCubeTextureFromFileA@12
47D3DXCreateCubeTextureFromFileExA@52
48D3DXCreateCubeTextureFromFileExW@52
49D3DXCreateCubeTextureFromFileInMemory@16
50D3DXCreateCubeTextureFromFileInMemoryEx@56
51D3DXCreateCubeTextureFromFileW@12
52D3DXCreateCubeTextureFromResourceA@16
53D3DXCreateCubeTextureFromResourceExA@56
54D3DXCreateCubeTextureFromResourceExW@56
55D3DXCreateCubeTextureFromResourceW@16
56D3DXCreateCylinder@32
57D3DXCreateEffect@36
58D3DXCreateEffectCompiler@28
59D3DXCreateEffectCompilerFromFileA@24
60D3DXCreateEffectCompilerFromFileW@24
61D3DXCreateEffectCompilerFromResourceA@28
62D3DXCreateEffectCompilerFromResourceW@28
63D3DXCreateEffectEx@40
64D3DXCreateEffectFromFileA@32
65D3DXCreateEffectFromFileExA@36
66D3DXCreateEffectFromFileExW@36
67D3DXCreateEffectFromFileW@32
68D3DXCreateEffectFromResourceA@36
69D3DXCreateEffectFromResourceExA@40
70D3DXCreateEffectFromResourceExW@40
71D3DXCreateEffectFromResourceW@36
72D3DXCreateEffectPool@4
73D3DXCreateFontA@48
74D3DXCreateFontIndirectA@12
75D3DXCreateFontIndirectW@12
76D3DXCreateFontW@48
77D3DXCreateFragmentLinker@12
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderInputSemantics@12
169D3DXGetShaderOutputSemantics@12
170D3DXGetShaderSamplers@12
171D3DXGetShaderSize@4
172D3DXGetShaderVersion@4
173D3DXGetTargetDescByName@12
174D3DXGetTargetDescByVersion@12
175D3DXGetVertexShaderProfile@4
176D3DXIntersect@40
177D3DXIntersectSubset@44
178D3DXIntersectTri@32
179D3DXLoadMeshFromXA@32
180D3DXLoadMeshFromXInMemory@36
181D3DXLoadMeshFromXResource@40
182D3DXLoadMeshFromXW@32
183D3DXLoadMeshFromXof@32
184D3DXLoadMeshHierarchyFromXA@28
185D3DXLoadMeshHierarchyFromXInMemory@32
186D3DXLoadMeshHierarchyFromXW@28
187D3DXLoadPRTBufferFromFileA@8
188D3DXLoadPRTBufferFromFileW@8
189D3DXLoadPRTCompBufferFromFileA@8
190D3DXLoadPRTCompBufferFromFileW@8
191D3DXLoadPatchMeshFromXof@28
192D3DXLoadSkinMeshFromXof@36
193D3DXLoadSurfaceFromFileA@32
194D3DXLoadSurfaceFromFileInMemory@36
195D3DXLoadSurfaceFromFileW@32
196D3DXLoadSurfaceFromMemory@40
197D3DXLoadSurfaceFromResourceA@36
198D3DXLoadSurfaceFromResourceW@36
199D3DXLoadSurfaceFromSurface@32
200D3DXLoadVolumeFromFileA@32
201D3DXLoadVolumeFromFileInMemory@36
202D3DXLoadVolumeFromFileW@32
203D3DXLoadVolumeFromMemory@44
204D3DXLoadVolumeFromResourceA@36
205D3DXLoadVolumeFromResourceW@36
206D3DXLoadVolumeFromVolume@32
207D3DXMatrixAffineTransformation2D@20
208D3DXMatrixAffineTransformation@20
209D3DXMatrixDecompose@16
210D3DXMatrixDeterminant@4
211D3DXMatrixInverse@12
212D3DXMatrixLookAtLH@16
213D3DXMatrixLookAtRH@16
214D3DXMatrixMultiply@12
215D3DXMatrixMultiplyTranspose@12
216D3DXMatrixOrthoLH@20
217D3DXMatrixOrthoOffCenterLH@28
218D3DXMatrixOrthoOffCenterRH@28
219D3DXMatrixOrthoRH@20
220D3DXMatrixPerspectiveFovLH@20
221D3DXMatrixPerspectiveFovRH@20
222D3DXMatrixPerspectiveLH@20
223D3DXMatrixPerspectiveOffCenterLH@28
224D3DXMatrixPerspectiveOffCenterRH@28
225D3DXMatrixPerspectiveRH@20
226D3DXMatrixReflect@8
227D3DXMatrixRotationAxis@12
228D3DXMatrixRotationQuaternion@8
229D3DXMatrixRotationX@8
230D3DXMatrixRotationY@8
231D3DXMatrixRotationYawPitchRoll@16
232D3DXMatrixRotationZ@8
233D3DXMatrixScaling@16
234D3DXMatrixShadow@12
235D3DXMatrixTransformation2D@28
236D3DXMatrixTransformation@28
237D3DXMatrixTranslation@16
238D3DXMatrixTranspose@8
239D3DXOptimizeFaces@20
240D3DXOptimizeVertices@20
241D3DXPlaneFromPointNormal@12
242D3DXPlaneFromPoints@16
243D3DXPlaneIntersectLine@16
244D3DXPlaneNormalize@8
245D3DXPlaneTransform@12
246D3DXPlaneTransformArray@24
247D3DXQuaternionBaryCentric@24
248D3DXQuaternionExp@8
249D3DXQuaternionInverse@8
250D3DXQuaternionLn@8
251D3DXQuaternionMultiply@12
252D3DXQuaternionNormalize@8
253D3DXQuaternionRotationAxis@12
254D3DXQuaternionRotationMatrix@8
255D3DXQuaternionRotationYawPitchRoll@16
256D3DXQuaternionSlerp@16
257D3DXQuaternionSquad@24
258D3DXQuaternionSquadSetup@28
259D3DXQuaternionToAxisAngle@12
260D3DXRectPatchSize@12
261D3DXSHAdd@16
262D3DXSHDot@12
263D3DXSHEvalConeLight@36
264D3DXSHEvalDirection@12
265D3DXSHEvalDirectionalLight@32
266D3DXSHEvalHemisphereLight@52
267D3DXSHEvalSphericalLight@36
268D3DXSHPRTCompSplitMeshSC@64
269D3DXSHPRTCompSuperCluster@24
270D3DXSHProjectCubeMap@20
271D3DXSHRotate@16
272D3DXSHRotateZ@16
273D3DXSHScale@16
274D3DXSaveMeshHierarchyToFileA@20
275D3DXSaveMeshHierarchyToFileW@20
276D3DXSaveMeshToXA@28
277D3DXSaveMeshToXW@28
278D3DXSavePRTBufferToFileA@8
279D3DXSavePRTBufferToFileW@8
280D3DXSavePRTCompBufferToFileA@8
281D3DXSavePRTCompBufferToFileW@8
282D3DXSaveSurfaceToFileA@20
283D3DXSaveSurfaceToFileInMemory@20
284D3DXSaveSurfaceToFileW@20
285D3DXSaveTextureToFileA@16
286D3DXSaveTextureToFileInMemory@16
287D3DXSaveTextureToFileW@16
288D3DXSaveVolumeToFileA@20
289D3DXSaveVolumeToFileInMemory@20
290D3DXSaveVolumeToFileW@20
291D3DXSimplifyMesh@28
292D3DXSphereBoundProbe@16
293D3DXSplitMesh@36
294D3DXTessellateNPatches@24
295D3DXTessellateRectPatch@20
296D3DXTessellateTriPatch@20
297D3DXTriPatchSize@12
298D3DXUVAtlasCreate@76
299D3DXUVAtlasPack@44
300D3DXUVAtlasPartition@68
301D3DXValidMesh@12
302D3DXValidPatchMesh@16
303D3DXVec2BaryCentric@24
304D3DXVec2CatmullRom@24
305D3DXVec2Hermite@24
306D3DXVec2Normalize@8
307D3DXVec2Transform@12
308D3DXVec2TransformArray@24
309D3DXVec2TransformCoord@12
310D3DXVec2TransformCoordArray@24
311D3DXVec2TransformNormal@12
312D3DXVec2TransformNormalArray@24
313D3DXVec3BaryCentric@24
314D3DXVec3CatmullRom@24
315D3DXVec3Hermite@24
316D3DXVec3Normalize@8
317D3DXVec3Project@24
318D3DXVec3ProjectArray@36
319D3DXVec3Transform@12
320D3DXVec3TransformArray@24
321D3DXVec3TransformCoord@12
322D3DXVec3TransformCoordArray@24
323D3DXVec3TransformNormal@12
324D3DXVec3TransformNormalArray@24
325D3DXVec3Unproject@24
326D3DXVec3UnprojectArray@36
327D3DXVec4BaryCentric@24
328D3DXVec4CatmullRom@24
329D3DXVec4Cross@16
330D3DXVec4Hermite@24
331D3DXVec4Normalize@8
332D3DXVec4Transform@12
333D3DXVec4TransformArray@24
334D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_27.def created+334
......@@ -0,0 +1,334 @@
1;
2; Definition file of d3dx9_27.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_27.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCpuOptimizations@4
41D3DXCreateAnimationController@20
42D3DXCreateBox@24
43D3DXCreateBuffer@8
44D3DXCreateCompressedAnimationSet@32
45D3DXCreateCubeTexture@28
46D3DXCreateCubeTextureFromFileA@12
47D3DXCreateCubeTextureFromFileExA@52
48D3DXCreateCubeTextureFromFileExW@52
49D3DXCreateCubeTextureFromFileInMemory@16
50D3DXCreateCubeTextureFromFileInMemoryEx@56
51D3DXCreateCubeTextureFromFileW@12
52D3DXCreateCubeTextureFromResourceA@16
53D3DXCreateCubeTextureFromResourceExA@56
54D3DXCreateCubeTextureFromResourceExW@56
55D3DXCreateCubeTextureFromResourceW@16
56D3DXCreateCylinder@32
57D3DXCreateEffect@36
58D3DXCreateEffectCompiler@28
59D3DXCreateEffectCompilerFromFileA@24
60D3DXCreateEffectCompilerFromFileW@24
61D3DXCreateEffectCompilerFromResourceA@28
62D3DXCreateEffectCompilerFromResourceW@28
63D3DXCreateEffectEx@40
64D3DXCreateEffectFromFileA@32
65D3DXCreateEffectFromFileExA@36
66D3DXCreateEffectFromFileExW@36
67D3DXCreateEffectFromFileW@32
68D3DXCreateEffectFromResourceA@36
69D3DXCreateEffectFromResourceExA@40
70D3DXCreateEffectFromResourceExW@40
71D3DXCreateEffectFromResourceW@36
72D3DXCreateEffectPool@4
73D3DXCreateFontA@48
74D3DXCreateFontIndirectA@12
75D3DXCreateFontIndirectW@12
76D3DXCreateFontW@48
77D3DXCreateFragmentLinker@12
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderInputSemantics@12
169D3DXGetShaderOutputSemantics@12
170D3DXGetShaderSamplers@12
171D3DXGetShaderSize@4
172D3DXGetShaderVersion@4
173D3DXGetTargetDescByName@12
174D3DXGetTargetDescByVersion@12
175D3DXGetVertexShaderProfile@4
176D3DXIntersect@40
177D3DXIntersectSubset@44
178D3DXIntersectTri@32
179D3DXLoadMeshFromXA@32
180D3DXLoadMeshFromXInMemory@36
181D3DXLoadMeshFromXResource@40
182D3DXLoadMeshFromXW@32
183D3DXLoadMeshFromXof@32
184D3DXLoadMeshHierarchyFromXA@28
185D3DXLoadMeshHierarchyFromXInMemory@32
186D3DXLoadMeshHierarchyFromXW@28
187D3DXLoadPRTBufferFromFileA@8
188D3DXLoadPRTBufferFromFileW@8
189D3DXLoadPRTCompBufferFromFileA@8
190D3DXLoadPRTCompBufferFromFileW@8
191D3DXLoadPatchMeshFromXof@28
192D3DXLoadSkinMeshFromXof@36
193D3DXLoadSurfaceFromFileA@32
194D3DXLoadSurfaceFromFileInMemory@36
195D3DXLoadSurfaceFromFileW@32
196D3DXLoadSurfaceFromMemory@40
197D3DXLoadSurfaceFromResourceA@36
198D3DXLoadSurfaceFromResourceW@36
199D3DXLoadSurfaceFromSurface@32
200D3DXLoadVolumeFromFileA@32
201D3DXLoadVolumeFromFileInMemory@36
202D3DXLoadVolumeFromFileW@32
203D3DXLoadVolumeFromMemory@44
204D3DXLoadVolumeFromResourceA@36
205D3DXLoadVolumeFromResourceW@36
206D3DXLoadVolumeFromVolume@32
207D3DXMatrixAffineTransformation2D@20
208D3DXMatrixAffineTransformation@20
209D3DXMatrixDecompose@16
210D3DXMatrixDeterminant@4
211D3DXMatrixInverse@12
212D3DXMatrixLookAtLH@16
213D3DXMatrixLookAtRH@16
214D3DXMatrixMultiply@12
215D3DXMatrixMultiplyTranspose@12
216D3DXMatrixOrthoLH@20
217D3DXMatrixOrthoOffCenterLH@28
218D3DXMatrixOrthoOffCenterRH@28
219D3DXMatrixOrthoRH@20
220D3DXMatrixPerspectiveFovLH@20
221D3DXMatrixPerspectiveFovRH@20
222D3DXMatrixPerspectiveLH@20
223D3DXMatrixPerspectiveOffCenterLH@28
224D3DXMatrixPerspectiveOffCenterRH@28
225D3DXMatrixPerspectiveRH@20
226D3DXMatrixReflect@8
227D3DXMatrixRotationAxis@12
228D3DXMatrixRotationQuaternion@8
229D3DXMatrixRotationX@8
230D3DXMatrixRotationY@8
231D3DXMatrixRotationYawPitchRoll@16
232D3DXMatrixRotationZ@8
233D3DXMatrixScaling@16
234D3DXMatrixShadow@12
235D3DXMatrixTransformation2D@28
236D3DXMatrixTransformation@28
237D3DXMatrixTranslation@16
238D3DXMatrixTranspose@8
239D3DXOptimizeFaces@20
240D3DXOptimizeVertices@20
241D3DXPlaneFromPointNormal@12
242D3DXPlaneFromPoints@16
243D3DXPlaneIntersectLine@16
244D3DXPlaneNormalize@8
245D3DXPlaneTransform@12
246D3DXPlaneTransformArray@24
247D3DXQuaternionBaryCentric@24
248D3DXQuaternionExp@8
249D3DXQuaternionInverse@8
250D3DXQuaternionLn@8
251D3DXQuaternionMultiply@12
252D3DXQuaternionNormalize@8
253D3DXQuaternionRotationAxis@12
254D3DXQuaternionRotationMatrix@8
255D3DXQuaternionRotationYawPitchRoll@16
256D3DXQuaternionSlerp@16
257D3DXQuaternionSquad@24
258D3DXQuaternionSquadSetup@28
259D3DXQuaternionToAxisAngle@12
260D3DXRectPatchSize@12
261D3DXSHAdd@16
262D3DXSHDot@12
263D3DXSHEvalConeLight@36
264D3DXSHEvalDirection@12
265D3DXSHEvalDirectionalLight@32
266D3DXSHEvalHemisphereLight@52
267D3DXSHEvalSphericalLight@36
268D3DXSHPRTCompSplitMeshSC@64
269D3DXSHPRTCompSuperCluster@24
270D3DXSHProjectCubeMap@20
271D3DXSHRotate@16
272D3DXSHRotateZ@16
273D3DXSHScale@16
274D3DXSaveMeshHierarchyToFileA@20
275D3DXSaveMeshHierarchyToFileW@20
276D3DXSaveMeshToXA@28
277D3DXSaveMeshToXW@28
278D3DXSavePRTBufferToFileA@8
279D3DXSavePRTBufferToFileW@8
280D3DXSavePRTCompBufferToFileA@8
281D3DXSavePRTCompBufferToFileW@8
282D3DXSaveSurfaceToFileA@20
283D3DXSaveSurfaceToFileInMemory@20
284D3DXSaveSurfaceToFileW@20
285D3DXSaveTextureToFileA@16
286D3DXSaveTextureToFileInMemory@16
287D3DXSaveTextureToFileW@16
288D3DXSaveVolumeToFileA@20
289D3DXSaveVolumeToFileInMemory@20
290D3DXSaveVolumeToFileW@20
291D3DXSimplifyMesh@28
292D3DXSphereBoundProbe@16
293D3DXSplitMesh@36
294D3DXTessellateNPatches@24
295D3DXTessellateRectPatch@20
296D3DXTessellateTriPatch@20
297D3DXTriPatchSize@12
298D3DXUVAtlasCreate@76
299D3DXUVAtlasPack@44
300D3DXUVAtlasPartition@68
301D3DXValidMesh@12
302D3DXValidPatchMesh@16
303D3DXVec2BaryCentric@24
304D3DXVec2CatmullRom@24
305D3DXVec2Hermite@24
306D3DXVec2Normalize@8
307D3DXVec2Transform@12
308D3DXVec2TransformArray@24
309D3DXVec2TransformCoord@12
310D3DXVec2TransformCoordArray@24
311D3DXVec2TransformNormal@12
312D3DXVec2TransformNormalArray@24
313D3DXVec3BaryCentric@24
314D3DXVec3CatmullRom@24
315D3DXVec3Hermite@24
316D3DXVec3Normalize@8
317D3DXVec3Project@24
318D3DXVec3ProjectArray@36
319D3DXVec3Transform@12
320D3DXVec3TransformArray@24
321D3DXVec3TransformCoord@12
322D3DXVec3TransformCoordArray@24
323D3DXVec3TransformNormal@12
324D3DXVec3TransformNormalArray@24
325D3DXVec3Unproject@24
326D3DXVec3UnprojectArray@36
327D3DXVec4BaryCentric@24
328D3DXVec4CatmullRom@24
329D3DXVec4Cross@16
330D3DXVec4Hermite@24
331D3DXVec4Normalize@8
332D3DXVec4Transform@12
333D3DXVec4TransformArray@24
334D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_28.def created+339
......@@ -0,0 +1,339 @@
1;
2; Definition file of d3dx9_28.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_28.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCpuOptimizations@4
41D3DXCreateAnimationController@20
42D3DXCreateBox@24
43D3DXCreateBuffer@8
44D3DXCreateCompressedAnimationSet@32
45D3DXCreateCubeTexture@28
46D3DXCreateCubeTextureFromFileA@12
47D3DXCreateCubeTextureFromFileExA@52
48D3DXCreateCubeTextureFromFileExW@52
49D3DXCreateCubeTextureFromFileInMemory@16
50D3DXCreateCubeTextureFromFileInMemoryEx@56
51D3DXCreateCubeTextureFromFileW@12
52D3DXCreateCubeTextureFromResourceA@16
53D3DXCreateCubeTextureFromResourceExA@56
54D3DXCreateCubeTextureFromResourceExW@56
55D3DXCreateCubeTextureFromResourceW@16
56D3DXCreateCylinder@32
57D3DXCreateEffect@36
58D3DXCreateEffectCompiler@28
59D3DXCreateEffectCompilerFromFileA@24
60D3DXCreateEffectCompilerFromFileW@24
61D3DXCreateEffectCompilerFromResourceA@28
62D3DXCreateEffectCompilerFromResourceW@28
63D3DXCreateEffectEx@40
64D3DXCreateEffectFromFileA@32
65D3DXCreateEffectFromFileExA@36
66D3DXCreateEffectFromFileExW@36
67D3DXCreateEffectFromFileW@32
68D3DXCreateEffectFromResourceA@36
69D3DXCreateEffectFromResourceExA@40
70D3DXCreateEffectFromResourceExW@40
71D3DXCreateEffectFromResourceW@36
72D3DXCreateEffectPool@4
73D3DXCreateFontA@48
74D3DXCreateFontIndirectA@12
75D3DXCreateFontIndirectW@12
76D3DXCreateFontW@48
77D3DXCreateFragmentLinker@12
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderInputSemantics@12
169D3DXGetShaderOutputSemantics@12
170D3DXGetShaderSamplers@12
171D3DXGetShaderSize@4
172D3DXGetShaderVersion@4
173D3DXGetTargetDescByName@12
174D3DXGetTargetDescByVersion@12
175D3DXGetVertexShaderProfile@4
176D3DXIntersect@40
177D3DXIntersectSubset@44
178D3DXIntersectTri@32
179D3DXLoadMeshFromXA@32
180D3DXLoadMeshFromXInMemory@36
181D3DXLoadMeshFromXResource@40
182D3DXLoadMeshFromXW@32
183D3DXLoadMeshFromXof@32
184D3DXLoadMeshHierarchyFromXA@28
185D3DXLoadMeshHierarchyFromXInMemory@32
186D3DXLoadMeshHierarchyFromXW@28
187D3DXLoadPRTBufferFromFileA@8
188D3DXLoadPRTBufferFromFileW@8
189D3DXLoadPRTCompBufferFromFileA@8
190D3DXLoadPRTCompBufferFromFileW@8
191D3DXLoadPatchMeshFromXof@28
192D3DXLoadSkinMeshFromXof@36
193D3DXLoadSurfaceFromFileA@32
194D3DXLoadSurfaceFromFileInMemory@36
195D3DXLoadSurfaceFromFileW@32
196D3DXLoadSurfaceFromMemory@40
197D3DXLoadSurfaceFromResourceA@36
198D3DXLoadSurfaceFromResourceW@36
199D3DXLoadSurfaceFromSurface@32
200D3DXLoadVolumeFromFileA@32
201D3DXLoadVolumeFromFileInMemory@36
202D3DXLoadVolumeFromFileW@32
203D3DXLoadVolumeFromMemory@44
204D3DXLoadVolumeFromResourceA@36
205D3DXLoadVolumeFromResourceW@36
206D3DXLoadVolumeFromVolume@32
207D3DXMatrixAffineTransformation2D@20
208D3DXMatrixAffineTransformation@20
209D3DXMatrixDecompose@16
210D3DXMatrixDeterminant@4
211D3DXMatrixInverse@12
212D3DXMatrixLookAtLH@16
213D3DXMatrixLookAtRH@16
214D3DXMatrixMultiply@12
215D3DXMatrixMultiplyTranspose@12
216D3DXMatrixOrthoLH@20
217D3DXMatrixOrthoOffCenterLH@28
218D3DXMatrixOrthoOffCenterRH@28
219D3DXMatrixOrthoRH@20
220D3DXMatrixPerspectiveFovLH@20
221D3DXMatrixPerspectiveFovRH@20
222D3DXMatrixPerspectiveLH@20
223D3DXMatrixPerspectiveOffCenterLH@28
224D3DXMatrixPerspectiveOffCenterRH@28
225D3DXMatrixPerspectiveRH@20
226D3DXMatrixReflect@8
227D3DXMatrixRotationAxis@12
228D3DXMatrixRotationQuaternion@8
229D3DXMatrixRotationX@8
230D3DXMatrixRotationY@8
231D3DXMatrixRotationYawPitchRoll@16
232D3DXMatrixRotationZ@8
233D3DXMatrixScaling@16
234D3DXMatrixShadow@12
235D3DXMatrixTransformation2D@28
236D3DXMatrixTransformation@28
237D3DXMatrixTranslation@16
238D3DXMatrixTranspose@8
239D3DXOptimizeFaces@20
240D3DXOptimizeVertices@20
241D3DXPlaneFromPointNormal@12
242D3DXPlaneFromPoints@16
243D3DXPlaneIntersectLine@16
244D3DXPlaneNormalize@8
245D3DXPlaneTransform@12
246D3DXPlaneTransformArray@24
247D3DXPreprocessShader@24
248D3DXPreprocessShaderFromFileA@20
249D3DXPreprocessShaderFromFileW@20
250D3DXPreprocessShaderFromResourceA@24
251D3DXPreprocessShaderFromResourceW@24
252D3DXQuaternionBaryCentric@24
253D3DXQuaternionExp@8
254D3DXQuaternionInverse@8
255D3DXQuaternionLn@8
256D3DXQuaternionMultiply@12
257D3DXQuaternionNormalize@8
258D3DXQuaternionRotationAxis@12
259D3DXQuaternionRotationMatrix@8
260D3DXQuaternionRotationYawPitchRoll@16
261D3DXQuaternionSlerp@16
262D3DXQuaternionSquad@24
263D3DXQuaternionSquadSetup@28
264D3DXQuaternionToAxisAngle@12
265D3DXRectPatchSize@12
266D3DXSHAdd@16
267D3DXSHDot@12
268D3DXSHEvalConeLight@36
269D3DXSHEvalDirection@12
270D3DXSHEvalDirectionalLight@32
271D3DXSHEvalHemisphereLight@52
272D3DXSHEvalSphericalLight@36
273D3DXSHPRTCompSplitMeshSC@64
274D3DXSHPRTCompSuperCluster@24
275D3DXSHProjectCubeMap@20
276D3DXSHRotate@16
277D3DXSHRotateZ@16
278D3DXSHScale@16
279D3DXSaveMeshHierarchyToFileA@20
280D3DXSaveMeshHierarchyToFileW@20
281D3DXSaveMeshToXA@28
282D3DXSaveMeshToXW@28
283D3DXSavePRTBufferToFileA@8
284D3DXSavePRTBufferToFileW@8
285D3DXSavePRTCompBufferToFileA@8
286D3DXSavePRTCompBufferToFileW@8
287D3DXSaveSurfaceToFileA@20
288D3DXSaveSurfaceToFileInMemory@20
289D3DXSaveSurfaceToFileW@20
290D3DXSaveTextureToFileA@16
291D3DXSaveTextureToFileInMemory@16
292D3DXSaveTextureToFileW@16
293D3DXSaveVolumeToFileA@20
294D3DXSaveVolumeToFileInMemory@20
295D3DXSaveVolumeToFileW@20
296D3DXSimplifyMesh@28
297D3DXSphereBoundProbe@16
298D3DXSplitMesh@36
299D3DXTessellateNPatches@24
300D3DXTessellateRectPatch@20
301D3DXTessellateTriPatch@20
302D3DXTriPatchSize@12
303D3DXUVAtlasCreate@76
304D3DXUVAtlasPack@44
305D3DXUVAtlasPartition@68
306D3DXValidMesh@12
307D3DXValidPatchMesh@16
308D3DXVec2BaryCentric@24
309D3DXVec2CatmullRom@24
310D3DXVec2Hermite@24
311D3DXVec2Normalize@8
312D3DXVec2Transform@12
313D3DXVec2TransformArray@24
314D3DXVec2TransformCoord@12
315D3DXVec2TransformCoordArray@24
316D3DXVec2TransformNormal@12
317D3DXVec2TransformNormalArray@24
318D3DXVec3BaryCentric@24
319D3DXVec3CatmullRom@24
320D3DXVec3Hermite@24
321D3DXVec3Normalize@8
322D3DXVec3Project@24
323D3DXVec3ProjectArray@36
324D3DXVec3Transform@12
325D3DXVec3TransformArray@24
326D3DXVec3TransformCoord@12
327D3DXVec3TransformCoordArray@24
328D3DXVec3TransformNormal@12
329D3DXVec3TransformNormalArray@24
330D3DXVec3Unproject@24
331D3DXVec3UnprojectArray@36
332D3DXVec4BaryCentric@24
333D3DXVec4CatmullRom@24
334D3DXVec4Cross@16
335D3DXVec4Hermite@24
336D3DXVec4Normalize@8
337D3DXVec4Transform@12
338D3DXVec4TransformArray@24
339D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_29.def created+339
......@@ -0,0 +1,339 @@
1;
2; Definition file of d3dx9_29.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_29.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCpuOptimizations@4
41D3DXCreateAnimationController@20
42D3DXCreateBox@24
43D3DXCreateBuffer@8
44D3DXCreateCompressedAnimationSet@32
45D3DXCreateCubeTexture@28
46D3DXCreateCubeTextureFromFileA@12
47D3DXCreateCubeTextureFromFileExA@52
48D3DXCreateCubeTextureFromFileExW@52
49D3DXCreateCubeTextureFromFileInMemory@16
50D3DXCreateCubeTextureFromFileInMemoryEx@56
51D3DXCreateCubeTextureFromFileW@12
52D3DXCreateCubeTextureFromResourceA@16
53D3DXCreateCubeTextureFromResourceExA@56
54D3DXCreateCubeTextureFromResourceExW@56
55D3DXCreateCubeTextureFromResourceW@16
56D3DXCreateCylinder@32
57D3DXCreateEffect@36
58D3DXCreateEffectCompiler@28
59D3DXCreateEffectCompilerFromFileA@24
60D3DXCreateEffectCompilerFromFileW@24
61D3DXCreateEffectCompilerFromResourceA@28
62D3DXCreateEffectCompilerFromResourceW@28
63D3DXCreateEffectEx@40
64D3DXCreateEffectFromFileA@32
65D3DXCreateEffectFromFileExA@36
66D3DXCreateEffectFromFileExW@36
67D3DXCreateEffectFromFileW@32
68D3DXCreateEffectFromResourceA@36
69D3DXCreateEffectFromResourceExA@40
70D3DXCreateEffectFromResourceExW@40
71D3DXCreateEffectFromResourceW@36
72D3DXCreateEffectPool@4
73D3DXCreateFontA@48
74D3DXCreateFontIndirectA@12
75D3DXCreateFontIndirectW@12
76D3DXCreateFontW@48
77D3DXCreateFragmentLinker@12
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderInputSemantics@12
169D3DXGetShaderOutputSemantics@12
170D3DXGetShaderSamplers@12
171D3DXGetShaderSize@4
172D3DXGetShaderVersion@4
173D3DXGetTargetDescByName@12
174D3DXGetTargetDescByVersion@12
175D3DXGetVertexShaderProfile@4
176D3DXIntersect@40
177D3DXIntersectSubset@44
178D3DXIntersectTri@32
179D3DXLoadMeshFromXA@32
180D3DXLoadMeshFromXInMemory@36
181D3DXLoadMeshFromXResource@40
182D3DXLoadMeshFromXW@32
183D3DXLoadMeshFromXof@32
184D3DXLoadMeshHierarchyFromXA@28
185D3DXLoadMeshHierarchyFromXInMemory@32
186D3DXLoadMeshHierarchyFromXW@28
187D3DXLoadPRTBufferFromFileA@8
188D3DXLoadPRTBufferFromFileW@8
189D3DXLoadPRTCompBufferFromFileA@8
190D3DXLoadPRTCompBufferFromFileW@8
191D3DXLoadPatchMeshFromXof@28
192D3DXLoadSkinMeshFromXof@36
193D3DXLoadSurfaceFromFileA@32
194D3DXLoadSurfaceFromFileInMemory@36
195D3DXLoadSurfaceFromFileW@32
196D3DXLoadSurfaceFromMemory@40
197D3DXLoadSurfaceFromResourceA@36
198D3DXLoadSurfaceFromResourceW@36
199D3DXLoadSurfaceFromSurface@32
200D3DXLoadVolumeFromFileA@32
201D3DXLoadVolumeFromFileInMemory@36
202D3DXLoadVolumeFromFileW@32
203D3DXLoadVolumeFromMemory@44
204D3DXLoadVolumeFromResourceA@36
205D3DXLoadVolumeFromResourceW@36
206D3DXLoadVolumeFromVolume@32
207D3DXMatrixAffineTransformation2D@20
208D3DXMatrixAffineTransformation@20
209D3DXMatrixDecompose@16
210D3DXMatrixDeterminant@4
211D3DXMatrixInverse@12
212D3DXMatrixLookAtLH@16
213D3DXMatrixLookAtRH@16
214D3DXMatrixMultiply@12
215D3DXMatrixMultiplyTranspose@12
216D3DXMatrixOrthoLH@20
217D3DXMatrixOrthoOffCenterLH@28
218D3DXMatrixOrthoOffCenterRH@28
219D3DXMatrixOrthoRH@20
220D3DXMatrixPerspectiveFovLH@20
221D3DXMatrixPerspectiveFovRH@20
222D3DXMatrixPerspectiveLH@20
223D3DXMatrixPerspectiveOffCenterLH@28
224D3DXMatrixPerspectiveOffCenterRH@28
225D3DXMatrixPerspectiveRH@20
226D3DXMatrixReflect@8
227D3DXMatrixRotationAxis@12
228D3DXMatrixRotationQuaternion@8
229D3DXMatrixRotationX@8
230D3DXMatrixRotationY@8
231D3DXMatrixRotationYawPitchRoll@16
232D3DXMatrixRotationZ@8
233D3DXMatrixScaling@16
234D3DXMatrixShadow@12
235D3DXMatrixTransformation2D@28
236D3DXMatrixTransformation@28
237D3DXMatrixTranslation@16
238D3DXMatrixTranspose@8
239D3DXOptimizeFaces@20
240D3DXOptimizeVertices@20
241D3DXPlaneFromPointNormal@12
242D3DXPlaneFromPoints@16
243D3DXPlaneIntersectLine@16
244D3DXPlaneNormalize@8
245D3DXPlaneTransform@12
246D3DXPlaneTransformArray@24
247D3DXPreprocessShader@24
248D3DXPreprocessShaderFromFileA@20
249D3DXPreprocessShaderFromFileW@20
250D3DXPreprocessShaderFromResourceA@24
251D3DXPreprocessShaderFromResourceW@24
252D3DXQuaternionBaryCentric@24
253D3DXQuaternionExp@8
254D3DXQuaternionInverse@8
255D3DXQuaternionLn@8
256D3DXQuaternionMultiply@12
257D3DXQuaternionNormalize@8
258D3DXQuaternionRotationAxis@12
259D3DXQuaternionRotationMatrix@8
260D3DXQuaternionRotationYawPitchRoll@16
261D3DXQuaternionSlerp@16
262D3DXQuaternionSquad@24
263D3DXQuaternionSquadSetup@28
264D3DXQuaternionToAxisAngle@12
265D3DXRectPatchSize@12
266D3DXSHAdd@16
267D3DXSHDot@12
268D3DXSHEvalConeLight@36
269D3DXSHEvalDirection@12
270D3DXSHEvalDirectionalLight@32
271D3DXSHEvalHemisphereLight@52
272D3DXSHEvalSphericalLight@36
273D3DXSHPRTCompSplitMeshSC@64
274D3DXSHPRTCompSuperCluster@24
275D3DXSHProjectCubeMap@20
276D3DXSHRotate@16
277D3DXSHRotateZ@16
278D3DXSHScale@16
279D3DXSaveMeshHierarchyToFileA@20
280D3DXSaveMeshHierarchyToFileW@20
281D3DXSaveMeshToXA@28
282D3DXSaveMeshToXW@28
283D3DXSavePRTBufferToFileA@8
284D3DXSavePRTBufferToFileW@8
285D3DXSavePRTCompBufferToFileA@8
286D3DXSavePRTCompBufferToFileW@8
287D3DXSaveSurfaceToFileA@20
288D3DXSaveSurfaceToFileInMemory@20
289D3DXSaveSurfaceToFileW@20
290D3DXSaveTextureToFileA@16
291D3DXSaveTextureToFileInMemory@16
292D3DXSaveTextureToFileW@16
293D3DXSaveVolumeToFileA@20
294D3DXSaveVolumeToFileInMemory@20
295D3DXSaveVolumeToFileW@20
296D3DXSimplifyMesh@28
297D3DXSphereBoundProbe@16
298D3DXSplitMesh@36
299D3DXTessellateNPatches@24
300D3DXTessellateRectPatch@20
301D3DXTessellateTriPatch@20
302D3DXTriPatchSize@12
303D3DXUVAtlasCreate@76
304D3DXUVAtlasPack@44
305D3DXUVAtlasPartition@68
306D3DXValidMesh@12
307D3DXValidPatchMesh@16
308D3DXVec2BaryCentric@24
309D3DXVec2CatmullRom@24
310D3DXVec2Hermite@24
311D3DXVec2Normalize@8
312D3DXVec2Transform@12
313D3DXVec2TransformArray@24
314D3DXVec2TransformCoord@12
315D3DXVec2TransformCoordArray@24
316D3DXVec2TransformNormal@12
317D3DXVec2TransformNormalArray@24
318D3DXVec3BaryCentric@24
319D3DXVec3CatmullRom@24
320D3DXVec3Hermite@24
321D3DXVec3Normalize@8
322D3DXVec3Project@24
323D3DXVec3ProjectArray@36
324D3DXVec3Transform@12
325D3DXVec3TransformArray@24
326D3DXVec3TransformCoord@12
327D3DXVec3TransformCoordArray@24
328D3DXVec3TransformNormal@12
329D3DXVec3TransformNormalArray@24
330D3DXVec3Unproject@24
331D3DXVec3UnprojectArray@36
332D3DXVec4BaryCentric@24
333D3DXVec4CatmullRom@24
334D3DXVec4Cross@16
335D3DXVec4Hermite@24
336D3DXVec4Normalize@8
337D3DXVec4Transform@12
338D3DXVec4TransformArray@24
339D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_30.def created+339
......@@ -0,0 +1,339 @@
1;
2; Definition file of d3dx9_30.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_30.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCpuOptimizations@4
41D3DXCreateAnimationController@20
42D3DXCreateBox@24
43D3DXCreateBuffer@8
44D3DXCreateCompressedAnimationSet@32
45D3DXCreateCubeTexture@28
46D3DXCreateCubeTextureFromFileA@12
47D3DXCreateCubeTextureFromFileExA@52
48D3DXCreateCubeTextureFromFileExW@52
49D3DXCreateCubeTextureFromFileInMemory@16
50D3DXCreateCubeTextureFromFileInMemoryEx@56
51D3DXCreateCubeTextureFromFileW@12
52D3DXCreateCubeTextureFromResourceA@16
53D3DXCreateCubeTextureFromResourceExA@56
54D3DXCreateCubeTextureFromResourceExW@56
55D3DXCreateCubeTextureFromResourceW@16
56D3DXCreateCylinder@32
57D3DXCreateEffect@36
58D3DXCreateEffectCompiler@28
59D3DXCreateEffectCompilerFromFileA@24
60D3DXCreateEffectCompilerFromFileW@24
61D3DXCreateEffectCompilerFromResourceA@28
62D3DXCreateEffectCompilerFromResourceW@28
63D3DXCreateEffectEx@40
64D3DXCreateEffectFromFileA@32
65D3DXCreateEffectFromFileExA@36
66D3DXCreateEffectFromFileExW@36
67D3DXCreateEffectFromFileW@32
68D3DXCreateEffectFromResourceA@36
69D3DXCreateEffectFromResourceExA@40
70D3DXCreateEffectFromResourceExW@40
71D3DXCreateEffectFromResourceW@36
72D3DXCreateEffectPool@4
73D3DXCreateFontA@48
74D3DXCreateFontIndirectA@12
75D3DXCreateFontIndirectW@12
76D3DXCreateFontW@48
77D3DXCreateFragmentLinker@12
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderInputSemantics@12
169D3DXGetShaderOutputSemantics@12
170D3DXGetShaderSamplers@12
171D3DXGetShaderSize@4
172D3DXGetShaderVersion@4
173D3DXGetTargetDescByName@12
174D3DXGetTargetDescByVersion@12
175D3DXGetVertexShaderProfile@4
176D3DXIntersect@40
177D3DXIntersectSubset@44
178D3DXIntersectTri@32
179D3DXLoadMeshFromXA@32
180D3DXLoadMeshFromXInMemory@36
181D3DXLoadMeshFromXResource@40
182D3DXLoadMeshFromXW@32
183D3DXLoadMeshFromXof@32
184D3DXLoadMeshHierarchyFromXA@28
185D3DXLoadMeshHierarchyFromXInMemory@32
186D3DXLoadMeshHierarchyFromXW@28
187D3DXLoadPRTBufferFromFileA@8
188D3DXLoadPRTBufferFromFileW@8
189D3DXLoadPRTCompBufferFromFileA@8
190D3DXLoadPRTCompBufferFromFileW@8
191D3DXLoadPatchMeshFromXof@28
192D3DXLoadSkinMeshFromXof@36
193D3DXLoadSurfaceFromFileA@32
194D3DXLoadSurfaceFromFileInMemory@36
195D3DXLoadSurfaceFromFileW@32
196D3DXLoadSurfaceFromMemory@40
197D3DXLoadSurfaceFromResourceA@36
198D3DXLoadSurfaceFromResourceW@36
199D3DXLoadSurfaceFromSurface@32
200D3DXLoadVolumeFromFileA@32
201D3DXLoadVolumeFromFileInMemory@36
202D3DXLoadVolumeFromFileW@32
203D3DXLoadVolumeFromMemory@44
204D3DXLoadVolumeFromResourceA@36
205D3DXLoadVolumeFromResourceW@36
206D3DXLoadVolumeFromVolume@32
207D3DXMatrixAffineTransformation2D@20
208D3DXMatrixAffineTransformation@20
209D3DXMatrixDecompose@16
210D3DXMatrixDeterminant@4
211D3DXMatrixInverse@12
212D3DXMatrixLookAtLH@16
213D3DXMatrixLookAtRH@16
214D3DXMatrixMultiply@12
215D3DXMatrixMultiplyTranspose@12
216D3DXMatrixOrthoLH@20
217D3DXMatrixOrthoOffCenterLH@28
218D3DXMatrixOrthoOffCenterRH@28
219D3DXMatrixOrthoRH@20
220D3DXMatrixPerspectiveFovLH@20
221D3DXMatrixPerspectiveFovRH@20
222D3DXMatrixPerspectiveLH@20
223D3DXMatrixPerspectiveOffCenterLH@28
224D3DXMatrixPerspectiveOffCenterRH@28
225D3DXMatrixPerspectiveRH@20
226D3DXMatrixReflect@8
227D3DXMatrixRotationAxis@12
228D3DXMatrixRotationQuaternion@8
229D3DXMatrixRotationX@8
230D3DXMatrixRotationY@8
231D3DXMatrixRotationYawPitchRoll@16
232D3DXMatrixRotationZ@8
233D3DXMatrixScaling@16
234D3DXMatrixShadow@12
235D3DXMatrixTransformation2D@28
236D3DXMatrixTransformation@28
237D3DXMatrixTranslation@16
238D3DXMatrixTranspose@8
239D3DXOptimizeFaces@20
240D3DXOptimizeVertices@20
241D3DXPlaneFromPointNormal@12
242D3DXPlaneFromPoints@16
243D3DXPlaneIntersectLine@16
244D3DXPlaneNormalize@8
245D3DXPlaneTransform@12
246D3DXPlaneTransformArray@24
247D3DXPreprocessShader@24
248D3DXPreprocessShaderFromFileA@20
249D3DXPreprocessShaderFromFileW@20
250D3DXPreprocessShaderFromResourceA@24
251D3DXPreprocessShaderFromResourceW@24
252D3DXQuaternionBaryCentric@24
253D3DXQuaternionExp@8
254D3DXQuaternionInverse@8
255D3DXQuaternionLn@8
256D3DXQuaternionMultiply@12
257D3DXQuaternionNormalize@8
258D3DXQuaternionRotationAxis@12
259D3DXQuaternionRotationMatrix@8
260D3DXQuaternionRotationYawPitchRoll@16
261D3DXQuaternionSlerp@16
262D3DXQuaternionSquad@24
263D3DXQuaternionSquadSetup@28
264D3DXQuaternionToAxisAngle@12
265D3DXRectPatchSize@12
266D3DXSHAdd@16
267D3DXSHDot@12
268D3DXSHEvalConeLight@36
269D3DXSHEvalDirection@12
270D3DXSHEvalDirectionalLight@32
271D3DXSHEvalHemisphereLight@52
272D3DXSHEvalSphericalLight@36
273D3DXSHPRTCompSplitMeshSC@64
274D3DXSHPRTCompSuperCluster@24
275D3DXSHProjectCubeMap@20
276D3DXSHRotate@16
277D3DXSHRotateZ@16
278D3DXSHScale@16
279D3DXSaveMeshHierarchyToFileA@20
280D3DXSaveMeshHierarchyToFileW@20
281D3DXSaveMeshToXA@28
282D3DXSaveMeshToXW@28
283D3DXSavePRTBufferToFileA@8
284D3DXSavePRTBufferToFileW@8
285D3DXSavePRTCompBufferToFileA@8
286D3DXSavePRTCompBufferToFileW@8
287D3DXSaveSurfaceToFileA@20
288D3DXSaveSurfaceToFileInMemory@20
289D3DXSaveSurfaceToFileW@20
290D3DXSaveTextureToFileA@16
291D3DXSaveTextureToFileInMemory@16
292D3DXSaveTextureToFileW@16
293D3DXSaveVolumeToFileA@20
294D3DXSaveVolumeToFileInMemory@20
295D3DXSaveVolumeToFileW@20
296D3DXSimplifyMesh@28
297D3DXSphereBoundProbe@16
298D3DXSplitMesh@36
299D3DXTessellateNPatches@24
300D3DXTessellateRectPatch@20
301D3DXTessellateTriPatch@20
302D3DXTriPatchSize@12
303D3DXUVAtlasCreate@76
304D3DXUVAtlasPack@44
305D3DXUVAtlasPartition@68
306D3DXValidMesh@12
307D3DXValidPatchMesh@16
308D3DXVec2BaryCentric@24
309D3DXVec2CatmullRom@24
310D3DXVec2Hermite@24
311D3DXVec2Normalize@8
312D3DXVec2Transform@12
313D3DXVec2TransformArray@24
314D3DXVec2TransformCoord@12
315D3DXVec2TransformCoordArray@24
316D3DXVec2TransformNormal@12
317D3DXVec2TransformNormalArray@24
318D3DXVec3BaryCentric@24
319D3DXVec3CatmullRom@24
320D3DXVec3Hermite@24
321D3DXVec3Normalize@8
322D3DXVec3Project@24
323D3DXVec3ProjectArray@36
324D3DXVec3Transform@12
325D3DXVec3TransformArray@24
326D3DXVec3TransformCoord@12
327D3DXVec3TransformCoordArray@24
328D3DXVec3TransformNormal@12
329D3DXVec3TransformNormalArray@24
330D3DXVec3Unproject@24
331D3DXVec3UnprojectArray@36
332D3DXVec4BaryCentric@24
333D3DXVec4CatmullRom@24
334D3DXVec4Cross@16
335D3DXVec4Hermite@24
336D3DXVec4Normalize@8
337D3DXVec4Transform@12
338D3DXVec4TransformArray@24
339D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_31.def created+336
......@@ -0,0 +1,336 @@
1;
2; Definition file of d3dx9_31.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_31.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateKeyframedAnimationSet@32
78D3DXCreateLine@8
79D3DXCreateMatrixStack@8
80D3DXCreateMesh@24
81D3DXCreateMeshFVF@24
82D3DXCreateNPatchMesh@8
83D3DXCreatePMeshFromStream@28
84D3DXCreatePRTBuffer@16
85D3DXCreatePRTBufferTex@20
86D3DXCreatePRTCompBuffer@28
87D3DXCreatePRTEngine@20
88D3DXCreatePatchMesh@28
89D3DXCreatePolygon@20
90D3DXCreateRenderToEnvMap@28
91D3DXCreateRenderToSurface@28
92D3DXCreateSPMesh@20
93D3DXCreateSkinInfo@16
94D3DXCreateSkinInfoFVF@16
95D3DXCreateSkinInfoFromBlendedMesh@16
96D3DXCreateSphere@24
97D3DXCreateSprite@8
98D3DXCreateTeapot@12
99D3DXCreateTextA@32
100D3DXCreateTextW@32
101D3DXCreateTexture@32
102D3DXCreateTextureFromFileA@12
103D3DXCreateTextureFromFileExA@56
104D3DXCreateTextureFromFileExW@56
105D3DXCreateTextureFromFileInMemory@16
106D3DXCreateTextureFromFileInMemoryEx@60
107D3DXCreateTextureFromFileW@12
108D3DXCreateTextureFromResourceA@16
109D3DXCreateTextureFromResourceExA@60
110D3DXCreateTextureFromResourceExW@60
111D3DXCreateTextureFromResourceW@16
112D3DXCreateTextureGutterHelper@20
113D3DXCreateTextureShader@8
114D3DXCreateTorus@28
115D3DXCreateVolumeTexture@36
116D3DXCreateVolumeTextureFromFileA@12
117D3DXCreateVolumeTextureFromFileExA@60
118D3DXCreateVolumeTextureFromFileExW@60
119D3DXCreateVolumeTextureFromFileInMemory@16
120D3DXCreateVolumeTextureFromFileInMemoryEx@64
121D3DXCreateVolumeTextureFromFileW@12
122D3DXCreateVolumeTextureFromResourceA@16
123D3DXCreateVolumeTextureFromResourceExA@64
124D3DXCreateVolumeTextureFromResourceExW@64
125D3DXCreateVolumeTextureFromResourceW@16
126D3DXDebugMute@4
127D3DXDeclaratorFromFVF@8
128D3DXDisassembleEffect@12
129D3DXDisassembleShader@16
130D3DXFVFFromDeclarator@8
131D3DXFileCreate@4
132D3DXFillCubeTexture@12
133D3DXFillCubeTextureTX@8
134D3DXFillTexture@12
135D3DXFillTextureTX@8
136D3DXFillVolumeTexture@12
137D3DXFillVolumeTextureTX@8
138D3DXFilterTexture@16
139D3DXFindShaderComment@16
140D3DXFloat16To32Array@12
141D3DXFloat32To16Array@12
142D3DXFrameAppendChild@8
143D3DXFrameCalculateBoundingSphere@12
144D3DXFrameDestroy@8
145D3DXFrameFind@8
146D3DXFrameNumNamedMatrices@4
147D3DXFrameRegisterNamedMatrices@8
148D3DXFresnelTerm@8
149D3DXGatherFragments@28
150D3DXGatherFragmentsFromFileA@24
151D3DXGatherFragmentsFromFileW@24
152D3DXGatherFragmentsFromResourceA@28
153D3DXGatherFragmentsFromResourceW@28
154D3DXGenerateOutputDecl@8
155D3DXGeneratePMesh@28
156D3DXGetDeclLength@4
157D3DXGetDeclVertexSize@8
158D3DXGetDriverLevel@4
159D3DXGetFVFVertexSize@4
160D3DXGetImageInfoFromFileA@8
161D3DXGetImageInfoFromFileInMemory@12
162D3DXGetImageInfoFromFileW@8
163D3DXGetImageInfoFromResourceA@12
164D3DXGetImageInfoFromResourceW@12
165D3DXGetPixelShaderProfile@4
166D3DXGetShaderConstantTable@8
167D3DXGetShaderInputSemantics@12
168D3DXGetShaderOutputSemantics@12
169D3DXGetShaderSamplers@12
170D3DXGetShaderSize@4
171D3DXGetShaderVersion@4
172D3DXGetVertexShaderProfile@4
173D3DXIntersect@40
174D3DXIntersectSubset@44
175D3DXIntersectTri@32
176D3DXLoadMeshFromXA@32
177D3DXLoadMeshFromXInMemory@36
178D3DXLoadMeshFromXResource@40
179D3DXLoadMeshFromXW@32
180D3DXLoadMeshFromXof@32
181D3DXLoadMeshHierarchyFromXA@28
182D3DXLoadMeshHierarchyFromXInMemory@32
183D3DXLoadMeshHierarchyFromXW@28
184D3DXLoadPRTBufferFromFileA@8
185D3DXLoadPRTBufferFromFileW@8
186D3DXLoadPRTCompBufferFromFileA@8
187D3DXLoadPRTCompBufferFromFileW@8
188D3DXLoadPatchMeshFromXof@28
189D3DXLoadSkinMeshFromXof@36
190D3DXLoadSurfaceFromFileA@32
191D3DXLoadSurfaceFromFileInMemory@36
192D3DXLoadSurfaceFromFileW@32
193D3DXLoadSurfaceFromMemory@40
194D3DXLoadSurfaceFromResourceA@36
195D3DXLoadSurfaceFromResourceW@36
196D3DXLoadSurfaceFromSurface@32
197D3DXLoadVolumeFromFileA@32
198D3DXLoadVolumeFromFileInMemory@36
199D3DXLoadVolumeFromFileW@32
200D3DXLoadVolumeFromMemory@44
201D3DXLoadVolumeFromResourceA@36
202D3DXLoadVolumeFromResourceW@36
203D3DXLoadVolumeFromVolume@32
204D3DXMatrixAffineTransformation2D@20
205D3DXMatrixAffineTransformation@20
206D3DXMatrixDecompose@16
207D3DXMatrixDeterminant@4
208D3DXMatrixInverse@12
209D3DXMatrixLookAtLH@16
210D3DXMatrixLookAtRH@16
211D3DXMatrixMultiply@12
212D3DXMatrixMultiplyTranspose@12
213D3DXMatrixOrthoLH@20
214D3DXMatrixOrthoOffCenterLH@28
215D3DXMatrixOrthoOffCenterRH@28
216D3DXMatrixOrthoRH@20
217D3DXMatrixPerspectiveFovLH@20
218D3DXMatrixPerspectiveFovRH@20
219D3DXMatrixPerspectiveLH@20
220D3DXMatrixPerspectiveOffCenterLH@28
221D3DXMatrixPerspectiveOffCenterRH@28
222D3DXMatrixPerspectiveRH@20
223D3DXMatrixReflect@8
224D3DXMatrixRotationAxis@12
225D3DXMatrixRotationQuaternion@8
226D3DXMatrixRotationX@8
227D3DXMatrixRotationY@8
228D3DXMatrixRotationYawPitchRoll@16
229D3DXMatrixRotationZ@8
230D3DXMatrixScaling@16
231D3DXMatrixShadow@12
232D3DXMatrixTransformation2D@28
233D3DXMatrixTransformation@28
234D3DXMatrixTranslation@16
235D3DXMatrixTranspose@8
236D3DXOptimizeFaces@20
237D3DXOptimizeVertices@20
238D3DXPlaneFromPointNormal@12
239D3DXPlaneFromPoints@16
240D3DXPlaneIntersectLine@16
241D3DXPlaneNormalize@8
242D3DXPlaneTransform@12
243D3DXPlaneTransformArray@24
244D3DXPreprocessShader@24
245D3DXPreprocessShaderFromFileA@20
246D3DXPreprocessShaderFromFileW@20
247D3DXPreprocessShaderFromResourceA@24
248D3DXPreprocessShaderFromResourceW@24
249D3DXQuaternionBaryCentric@24
250D3DXQuaternionExp@8
251D3DXQuaternionInverse@8
252D3DXQuaternionLn@8
253D3DXQuaternionMultiply@12
254D3DXQuaternionNormalize@8
255D3DXQuaternionRotationAxis@12
256D3DXQuaternionRotationMatrix@8
257D3DXQuaternionRotationYawPitchRoll@16
258D3DXQuaternionSlerp@16
259D3DXQuaternionSquad@24
260D3DXQuaternionSquadSetup@28
261D3DXQuaternionToAxisAngle@12
262D3DXRectPatchSize@12
263D3DXSHAdd@16
264D3DXSHDot@12
265D3DXSHEvalConeLight@36
266D3DXSHEvalDirection@12
267D3DXSHEvalDirectionalLight@32
268D3DXSHEvalHemisphereLight@52
269D3DXSHEvalSphericalLight@36
270D3DXSHPRTCompSplitMeshSC@64
271D3DXSHPRTCompSuperCluster@24
272D3DXSHProjectCubeMap@20
273D3DXSHRotate@16
274D3DXSHRotateZ@16
275D3DXSHScale@16
276D3DXSaveMeshHierarchyToFileA@20
277D3DXSaveMeshHierarchyToFileW@20
278D3DXSaveMeshToXA@28
279D3DXSaveMeshToXW@28
280D3DXSavePRTBufferToFileA@8
281D3DXSavePRTBufferToFileW@8
282D3DXSavePRTCompBufferToFileA@8
283D3DXSavePRTCompBufferToFileW@8
284D3DXSaveSurfaceToFileA@20
285D3DXSaveSurfaceToFileInMemory@20
286D3DXSaveSurfaceToFileW@20
287D3DXSaveTextureToFileA@16
288D3DXSaveTextureToFileInMemory@16
289D3DXSaveTextureToFileW@16
290D3DXSaveVolumeToFileA@20
291D3DXSaveVolumeToFileInMemory@20
292D3DXSaveVolumeToFileW@20
293D3DXSimplifyMesh@28
294D3DXSphereBoundProbe@16
295D3DXSplitMesh@36
296D3DXTessellateNPatches@24
297D3DXTessellateRectPatch@20
298D3DXTessellateTriPatch@20
299D3DXTriPatchSize@12
300D3DXUVAtlasCreate@76
301D3DXUVAtlasPack@44
302D3DXUVAtlasPartition@68
303D3DXValidMesh@12
304D3DXValidPatchMesh@16
305D3DXVec2BaryCentric@24
306D3DXVec2CatmullRom@24
307D3DXVec2Hermite@24
308D3DXVec2Normalize@8
309D3DXVec2Transform@12
310D3DXVec2TransformArray@24
311D3DXVec2TransformCoord@12
312D3DXVec2TransformCoordArray@24
313D3DXVec2TransformNormal@12
314D3DXVec2TransformNormalArray@24
315D3DXVec3BaryCentric@24
316D3DXVec3CatmullRom@24
317D3DXVec3Hermite@24
318D3DXVec3Normalize@8
319D3DXVec3Project@24
320D3DXVec3ProjectArray@36
321D3DXVec3Transform@12
322D3DXVec3TransformArray@24
323D3DXVec3TransformCoord@12
324D3DXVec3TransformCoordArray@24
325D3DXVec3TransformNormal@12
326D3DXVec3TransformNormalArray@24
327D3DXVec3Unproject@24
328D3DXVec3UnprojectArray@36
329D3DXVec4BaryCentric@24
330D3DXVec4CatmullRom@24
331D3DXVec4Cross@16
332D3DXVec4Hermite@24
333D3DXVec4Normalize@8
334D3DXVec4Transform@12
335D3DXVec4TransformArray@24
336D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_32.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_32.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateKeyframedAnimationSet@32
78D3DXCreateLine@8
79D3DXCreateMatrixStack@8
80D3DXCreateMesh@24
81D3DXCreateMeshFVF@24
82D3DXCreateNPatchMesh@8
83D3DXCreatePMeshFromStream@28
84D3DXCreatePRTBuffer@16
85D3DXCreatePRTBufferTex@20
86D3DXCreatePRTCompBuffer@28
87D3DXCreatePRTEngine@20
88D3DXCreatePatchMesh@28
89D3DXCreatePolygon@20
90D3DXCreateRenderToEnvMap@28
91D3DXCreateRenderToSurface@28
92D3DXCreateSPMesh@20
93D3DXCreateSkinInfo@16
94D3DXCreateSkinInfoFVF@16
95D3DXCreateSkinInfoFromBlendedMesh@16
96D3DXCreateSphere@24
97D3DXCreateSprite@8
98D3DXCreateTeapot@12
99D3DXCreateTextA@32
100D3DXCreateTextW@32
101D3DXCreateTexture@32
102D3DXCreateTextureFromFileA@12
103D3DXCreateTextureFromFileExA@56
104D3DXCreateTextureFromFileExW@56
105D3DXCreateTextureFromFileInMemory@16
106D3DXCreateTextureFromFileInMemoryEx@60
107D3DXCreateTextureFromFileW@12
108D3DXCreateTextureFromResourceA@16
109D3DXCreateTextureFromResourceExA@60
110D3DXCreateTextureFromResourceExW@60
111D3DXCreateTextureFromResourceW@16
112D3DXCreateTextureGutterHelper@20
113D3DXCreateTextureShader@8
114D3DXCreateTorus@28
115D3DXCreateVolumeTexture@36
116D3DXCreateVolumeTextureFromFileA@12
117D3DXCreateVolumeTextureFromFileExA@60
118D3DXCreateVolumeTextureFromFileExW@60
119D3DXCreateVolumeTextureFromFileInMemory@16
120D3DXCreateVolumeTextureFromFileInMemoryEx@64
121D3DXCreateVolumeTextureFromFileW@12
122D3DXCreateVolumeTextureFromResourceA@16
123D3DXCreateVolumeTextureFromResourceExA@64
124D3DXCreateVolumeTextureFromResourceExW@64
125D3DXCreateVolumeTextureFromResourceW@16
126D3DXDebugMute@4
127D3DXDeclaratorFromFVF@8
128D3DXDisassembleEffect@12
129D3DXDisassembleShader@16
130D3DXFVFFromDeclarator@8
131D3DXFileCreate@4
132D3DXFillCubeTexture@12
133D3DXFillCubeTextureTX@8
134D3DXFillTexture@12
135D3DXFillTextureTX@8
136D3DXFillVolumeTexture@12
137D3DXFillVolumeTextureTX@8
138D3DXFilterTexture@16
139D3DXFindShaderComment@16
140D3DXFloat16To32Array@12
141D3DXFloat32To16Array@12
142D3DXFrameAppendChild@8
143D3DXFrameCalculateBoundingSphere@12
144D3DXFrameDestroy@8
145D3DXFrameFind@8
146D3DXFrameNumNamedMatrices@4
147D3DXFrameRegisterNamedMatrices@8
148D3DXFresnelTerm@8
149D3DXGatherFragments@28
150D3DXGatherFragmentsFromFileA@24
151D3DXGatherFragmentsFromFileW@24
152D3DXGatherFragmentsFromResourceA@28
153D3DXGatherFragmentsFromResourceW@28
154D3DXGenerateOutputDecl@8
155D3DXGeneratePMesh@28
156D3DXGetDeclLength@4
157D3DXGetDeclVertexSize@8
158D3DXGetDriverLevel@4
159D3DXGetFVFVertexSize@4
160D3DXGetImageInfoFromFileA@8
161D3DXGetImageInfoFromFileInMemory@12
162D3DXGetImageInfoFromFileW@8
163D3DXGetImageInfoFromResourceA@12
164D3DXGetImageInfoFromResourceW@12
165D3DXGetPixelShaderProfile@4
166D3DXGetShaderConstantTable@8
167D3DXGetShaderInputSemantics@12
168D3DXGetShaderOutputSemantics@12
169D3DXGetShaderSamplers@12
170D3DXGetShaderSize@4
171D3DXGetShaderVersion@4
172D3DXGetVertexShaderProfile@4
173D3DXIntersect@40
174D3DXIntersectSubset@44
175D3DXIntersectTri@32
176D3DXLoadMeshFromXA@32
177D3DXLoadMeshFromXInMemory@36
178D3DXLoadMeshFromXResource@40
179D3DXLoadMeshFromXW@32
180D3DXLoadMeshFromXof@32
181D3DXLoadMeshHierarchyFromXA@28
182D3DXLoadMeshHierarchyFromXInMemory@32
183D3DXLoadMeshHierarchyFromXW@28
184D3DXLoadPRTBufferFromFileA@8
185D3DXLoadPRTBufferFromFileW@8
186D3DXLoadPRTCompBufferFromFileA@8
187D3DXLoadPRTCompBufferFromFileW@8
188D3DXLoadPatchMeshFromXof@28
189D3DXLoadSkinMeshFromXof@36
190D3DXLoadSurfaceFromFileA@32
191D3DXLoadSurfaceFromFileInMemory@36
192D3DXLoadSurfaceFromFileW@32
193D3DXLoadSurfaceFromMemory@40
194D3DXLoadSurfaceFromResourceA@36
195D3DXLoadSurfaceFromResourceW@36
196D3DXLoadSurfaceFromSurface@32
197D3DXLoadVolumeFromFileA@32
198D3DXLoadVolumeFromFileInMemory@36
199D3DXLoadVolumeFromFileW@32
200D3DXLoadVolumeFromMemory@44
201D3DXLoadVolumeFromResourceA@36
202D3DXLoadVolumeFromResourceW@36
203D3DXLoadVolumeFromVolume@32
204D3DXMatrixAffineTransformation2D@20
205D3DXMatrixAffineTransformation@20
206D3DXMatrixDecompose@16
207D3DXMatrixDeterminant@4
208D3DXMatrixInverse@12
209D3DXMatrixLookAtLH@16
210D3DXMatrixLookAtRH@16
211D3DXMatrixMultiply@12
212D3DXMatrixMultiplyTranspose@12
213D3DXMatrixOrthoLH@20
214D3DXMatrixOrthoOffCenterLH@28
215D3DXMatrixOrthoOffCenterRH@28
216D3DXMatrixOrthoRH@20
217D3DXMatrixPerspectiveFovLH@20
218D3DXMatrixPerspectiveFovRH@20
219D3DXMatrixPerspectiveLH@20
220D3DXMatrixPerspectiveOffCenterLH@28
221D3DXMatrixPerspectiveOffCenterRH@28
222D3DXMatrixPerspectiveRH@20
223D3DXMatrixReflect@8
224D3DXMatrixRotationAxis@12
225D3DXMatrixRotationQuaternion@8
226D3DXMatrixRotationX@8
227D3DXMatrixRotationY@8
228D3DXMatrixRotationYawPitchRoll@16
229D3DXMatrixRotationZ@8
230D3DXMatrixScaling@16
231D3DXMatrixShadow@12
232D3DXMatrixTransformation2D@28
233D3DXMatrixTransformation@28
234D3DXMatrixTranslation@16
235D3DXMatrixTranspose@8
236D3DXOptimizeFaces@20
237D3DXOptimizeVertices@20
238D3DXPlaneFromPointNormal@12
239D3DXPlaneFromPoints@16
240D3DXPlaneIntersectLine@16
241D3DXPlaneNormalize@8
242D3DXPlaneTransform@12
243D3DXPlaneTransformArray@24
244D3DXPreprocessShader@24
245D3DXPreprocessShaderFromFileA@20
246D3DXPreprocessShaderFromFileW@20
247D3DXPreprocessShaderFromResourceA@24
248D3DXPreprocessShaderFromResourceW@24
249D3DXQuaternionBaryCentric@24
250D3DXQuaternionExp@8
251D3DXQuaternionInverse@8
252D3DXQuaternionLn@8
253D3DXQuaternionMultiply@12
254D3DXQuaternionNormalize@8
255D3DXQuaternionRotationAxis@12
256D3DXQuaternionRotationMatrix@8
257D3DXQuaternionRotationYawPitchRoll@16
258D3DXQuaternionSlerp@16
259D3DXQuaternionSquad@24
260D3DXQuaternionSquadSetup@28
261D3DXQuaternionToAxisAngle@12
262D3DXRectPatchSize@12
263D3DXSHAdd@16
264D3DXSHDot@12
265D3DXSHEvalConeLight@36
266D3DXSHEvalDirection@12
267D3DXSHEvalDirectionalLight@32
268D3DXSHEvalHemisphereLight@52
269D3DXSHEvalSphericalLight@36
270D3DXSHMultiply2@12
271D3DXSHMultiply3@12
272D3DXSHMultiply4@12
273D3DXSHMultiply5@12
274D3DXSHMultiply6@12
275D3DXSHPRTCompSplitMeshSC@64
276D3DXSHPRTCompSuperCluster@24
277D3DXSHProjectCubeMap@20
278D3DXSHRotate@16
279D3DXSHRotateZ@16
280D3DXSHScale@16
281D3DXSaveMeshHierarchyToFileA@20
282D3DXSaveMeshHierarchyToFileW@20
283D3DXSaveMeshToXA@28
284D3DXSaveMeshToXW@28
285D3DXSavePRTBufferToFileA@8
286D3DXSavePRTBufferToFileW@8
287D3DXSavePRTCompBufferToFileA@8
288D3DXSavePRTCompBufferToFileW@8
289D3DXSaveSurfaceToFileA@20
290D3DXSaveSurfaceToFileInMemory@20
291D3DXSaveSurfaceToFileW@20
292D3DXSaveTextureToFileA@16
293D3DXSaveTextureToFileInMemory@16
294D3DXSaveTextureToFileW@16
295D3DXSaveVolumeToFileA@20
296D3DXSaveVolumeToFileInMemory@20
297D3DXSaveVolumeToFileW@20
298D3DXSimplifyMesh@28
299D3DXSphereBoundProbe@16
300D3DXSplitMesh@36
301D3DXTessellateNPatches@24
302D3DXTessellateRectPatch@20
303D3DXTessellateTriPatch@20
304D3DXTriPatchSize@12
305D3DXUVAtlasCreate@76
306D3DXUVAtlasPack@44
307D3DXUVAtlasPartition@68
308D3DXValidMesh@12
309D3DXValidPatchMesh@16
310D3DXVec2BaryCentric@24
311D3DXVec2CatmullRom@24
312D3DXVec2Hermite@24
313D3DXVec2Normalize@8
314D3DXVec2Transform@12
315D3DXVec2TransformArray@24
316D3DXVec2TransformCoord@12
317D3DXVec2TransformCoordArray@24
318D3DXVec2TransformNormal@12
319D3DXVec2TransformNormalArray@24
320D3DXVec3BaryCentric@24
321D3DXVec3CatmullRom@24
322D3DXVec3Hermite@24
323D3DXVec3Normalize@8
324D3DXVec3Project@24
325D3DXVec3ProjectArray@36
326D3DXVec3Transform@12
327D3DXVec3TransformArray@24
328D3DXVec3TransformCoord@12
329D3DXVec3TransformCoordArray@24
330D3DXVec3TransformNormal@12
331D3DXVec3TransformNormalArray@24
332D3DXVec3Unproject@24
333D3DXVec3UnprojectArray@36
334D3DXVec4BaryCentric@24
335D3DXVec4CatmullRom@24
336D3DXVec4Cross@16
337D3DXVec4Hermite@24
338D3DXVec4Normalize@8
339D3DXVec4Transform@12
340D3DXVec4TransformArray@24
341D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_33.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_33.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_33.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateKeyframedAnimationSet@32
78D3DXCreateLine@8
79D3DXCreateMatrixStack@8
80D3DXCreateMesh@24
81D3DXCreateMeshFVF@24
82D3DXCreateNPatchMesh@8
83D3DXCreatePMeshFromStream@28
84D3DXCreatePRTBuffer@16
85D3DXCreatePRTBufferTex@20
86D3DXCreatePRTCompBuffer@28
87D3DXCreatePRTEngine@20
88D3DXCreatePatchMesh@28
89D3DXCreatePolygon@20
90D3DXCreateRenderToEnvMap@28
91D3DXCreateRenderToSurface@28
92D3DXCreateSPMesh@20
93D3DXCreateSkinInfo@16
94D3DXCreateSkinInfoFVF@16
95D3DXCreateSkinInfoFromBlendedMesh@16
96D3DXCreateSphere@24
97D3DXCreateSprite@8
98D3DXCreateTeapot@12
99D3DXCreateTextA@32
100D3DXCreateTextW@32
101D3DXCreateTexture@32
102D3DXCreateTextureFromFileA@12
103D3DXCreateTextureFromFileExA@56
104D3DXCreateTextureFromFileExW@56
105D3DXCreateTextureFromFileInMemory@16
106D3DXCreateTextureFromFileInMemoryEx@60
107D3DXCreateTextureFromFileW@12
108D3DXCreateTextureFromResourceA@16
109D3DXCreateTextureFromResourceExA@60
110D3DXCreateTextureFromResourceExW@60
111D3DXCreateTextureFromResourceW@16
112D3DXCreateTextureGutterHelper@20
113D3DXCreateTextureShader@8
114D3DXCreateTorus@28
115D3DXCreateVolumeTexture@36
116D3DXCreateVolumeTextureFromFileA@12
117D3DXCreateVolumeTextureFromFileExA@60
118D3DXCreateVolumeTextureFromFileExW@60
119D3DXCreateVolumeTextureFromFileInMemory@16
120D3DXCreateVolumeTextureFromFileInMemoryEx@64
121D3DXCreateVolumeTextureFromFileW@12
122D3DXCreateVolumeTextureFromResourceA@16
123D3DXCreateVolumeTextureFromResourceExA@64
124D3DXCreateVolumeTextureFromResourceExW@64
125D3DXCreateVolumeTextureFromResourceW@16
126D3DXDebugMute@4
127D3DXDeclaratorFromFVF@8
128D3DXDisassembleEffect@12
129D3DXDisassembleShader@16
130D3DXFVFFromDeclarator@8
131D3DXFileCreate@4
132D3DXFillCubeTexture@12
133D3DXFillCubeTextureTX@8
134D3DXFillTexture@12
135D3DXFillTextureTX@8
136D3DXFillVolumeTexture@12
137D3DXFillVolumeTextureTX@8
138D3DXFilterTexture@16
139D3DXFindShaderComment@16
140D3DXFloat16To32Array@12
141D3DXFloat32To16Array@12
142D3DXFrameAppendChild@8
143D3DXFrameCalculateBoundingSphere@12
144D3DXFrameDestroy@8
145D3DXFrameFind@8
146D3DXFrameNumNamedMatrices@4
147D3DXFrameRegisterNamedMatrices@8
148D3DXFresnelTerm@8
149D3DXGatherFragments@28
150D3DXGatherFragmentsFromFileA@24
151D3DXGatherFragmentsFromFileW@24
152D3DXGatherFragmentsFromResourceA@28
153D3DXGatherFragmentsFromResourceW@28
154D3DXGenerateOutputDecl@8
155D3DXGeneratePMesh@28
156D3DXGetDeclLength@4
157D3DXGetDeclVertexSize@8
158D3DXGetDriverLevel@4
159D3DXGetFVFVertexSize@4
160D3DXGetImageInfoFromFileA@8
161D3DXGetImageInfoFromFileInMemory@12
162D3DXGetImageInfoFromFileW@8
163D3DXGetImageInfoFromResourceA@12
164D3DXGetImageInfoFromResourceW@12
165D3DXGetPixelShaderProfile@4
166D3DXGetShaderConstantTable@8
167D3DXGetShaderInputSemantics@12
168D3DXGetShaderOutputSemantics@12
169D3DXGetShaderSamplers@12
170D3DXGetShaderSize@4
171D3DXGetShaderVersion@4
172D3DXGetVertexShaderProfile@4
173D3DXIntersect@40
174D3DXIntersectSubset@44
175D3DXIntersectTri@32
176D3DXLoadMeshFromXA@32
177D3DXLoadMeshFromXInMemory@36
178D3DXLoadMeshFromXResource@40
179D3DXLoadMeshFromXW@32
180D3DXLoadMeshFromXof@32
181D3DXLoadMeshHierarchyFromXA@28
182D3DXLoadMeshHierarchyFromXInMemory@32
183D3DXLoadMeshHierarchyFromXW@28
184D3DXLoadPRTBufferFromFileA@8
185D3DXLoadPRTBufferFromFileW@8
186D3DXLoadPRTCompBufferFromFileA@8
187D3DXLoadPRTCompBufferFromFileW@8
188D3DXLoadPatchMeshFromXof@28
189D3DXLoadSkinMeshFromXof@36
190D3DXLoadSurfaceFromFileA@32
191D3DXLoadSurfaceFromFileInMemory@36
192D3DXLoadSurfaceFromFileW@32
193D3DXLoadSurfaceFromMemory@40
194D3DXLoadSurfaceFromResourceA@36
195D3DXLoadSurfaceFromResourceW@36
196D3DXLoadSurfaceFromSurface@32
197D3DXLoadVolumeFromFileA@32
198D3DXLoadVolumeFromFileInMemory@36
199D3DXLoadVolumeFromFileW@32
200D3DXLoadVolumeFromMemory@44
201D3DXLoadVolumeFromResourceA@36
202D3DXLoadVolumeFromResourceW@36
203D3DXLoadVolumeFromVolume@32
204D3DXMatrixAffineTransformation2D@20
205D3DXMatrixAffineTransformation@20
206D3DXMatrixDecompose@16
207D3DXMatrixDeterminant@4
208D3DXMatrixInverse@12
209D3DXMatrixLookAtLH@16
210D3DXMatrixLookAtRH@16
211D3DXMatrixMultiply@12
212D3DXMatrixMultiplyTranspose@12
213D3DXMatrixOrthoLH@20
214D3DXMatrixOrthoOffCenterLH@28
215D3DXMatrixOrthoOffCenterRH@28
216D3DXMatrixOrthoRH@20
217D3DXMatrixPerspectiveFovLH@20
218D3DXMatrixPerspectiveFovRH@20
219D3DXMatrixPerspectiveLH@20
220D3DXMatrixPerspectiveOffCenterLH@28
221D3DXMatrixPerspectiveOffCenterRH@28
222D3DXMatrixPerspectiveRH@20
223D3DXMatrixReflect@8
224D3DXMatrixRotationAxis@12
225D3DXMatrixRotationQuaternion@8
226D3DXMatrixRotationX@8
227D3DXMatrixRotationY@8
228D3DXMatrixRotationYawPitchRoll@16
229D3DXMatrixRotationZ@8
230D3DXMatrixScaling@16
231D3DXMatrixShadow@12
232D3DXMatrixTransformation2D@28
233D3DXMatrixTransformation@28
234D3DXMatrixTranslation@16
235D3DXMatrixTranspose@8
236D3DXOptimizeFaces@20
237D3DXOptimizeVertices@20
238D3DXPlaneFromPointNormal@12
239D3DXPlaneFromPoints@16
240D3DXPlaneIntersectLine@16
241D3DXPlaneNormalize@8
242D3DXPlaneTransform@12
243D3DXPlaneTransformArray@24
244D3DXPreprocessShader@24
245D3DXPreprocessShaderFromFileA@20
246D3DXPreprocessShaderFromFileW@20
247D3DXPreprocessShaderFromResourceA@24
248D3DXPreprocessShaderFromResourceW@24
249D3DXQuaternionBaryCentric@24
250D3DXQuaternionExp@8
251D3DXQuaternionInverse@8
252D3DXQuaternionLn@8
253D3DXQuaternionMultiply@12
254D3DXQuaternionNormalize@8
255D3DXQuaternionRotationAxis@12
256D3DXQuaternionRotationMatrix@8
257D3DXQuaternionRotationYawPitchRoll@16
258D3DXQuaternionSlerp@16
259D3DXQuaternionSquad@24
260D3DXQuaternionSquadSetup@28
261D3DXQuaternionToAxisAngle@12
262D3DXRectPatchSize@12
263D3DXSHAdd@16
264D3DXSHDot@12
265D3DXSHEvalConeLight@36
266D3DXSHEvalDirection@12
267D3DXSHEvalDirectionalLight@32
268D3DXSHEvalHemisphereLight@52
269D3DXSHEvalSphericalLight@36
270D3DXSHMultiply2@12
271D3DXSHMultiply3@12
272D3DXSHMultiply4@12
273D3DXSHMultiply5@12
274D3DXSHMultiply6@12
275D3DXSHPRTCompSplitMeshSC@64
276D3DXSHPRTCompSuperCluster@24
277D3DXSHProjectCubeMap@20
278D3DXSHRotate@16
279D3DXSHRotateZ@16
280D3DXSHScale@16
281D3DXSaveMeshHierarchyToFileA@20
282D3DXSaveMeshHierarchyToFileW@20
283D3DXSaveMeshToXA@28
284D3DXSaveMeshToXW@28
285D3DXSavePRTBufferToFileA@8
286D3DXSavePRTBufferToFileW@8
287D3DXSavePRTCompBufferToFileA@8
288D3DXSavePRTCompBufferToFileW@8
289D3DXSaveSurfaceToFileA@20
290D3DXSaveSurfaceToFileInMemory@20
291D3DXSaveSurfaceToFileW@20
292D3DXSaveTextureToFileA@16
293D3DXSaveTextureToFileInMemory@16
294D3DXSaveTextureToFileW@16
295D3DXSaveVolumeToFileA@20
296D3DXSaveVolumeToFileInMemory@20
297D3DXSaveVolumeToFileW@20
298D3DXSimplifyMesh@28
299D3DXSphereBoundProbe@16
300D3DXSplitMesh@36
301D3DXTessellateNPatches@24
302D3DXTessellateRectPatch@20
303D3DXTessellateTriPatch@20
304D3DXTriPatchSize@12
305D3DXUVAtlasCreate@76
306D3DXUVAtlasPack@44
307D3DXUVAtlasPartition@68
308D3DXValidMesh@12
309D3DXValidPatchMesh@16
310D3DXVec2BaryCentric@24
311D3DXVec2CatmullRom@24
312D3DXVec2Hermite@24
313D3DXVec2Normalize@8
314D3DXVec2Transform@12
315D3DXVec2TransformArray@24
316D3DXVec2TransformCoord@12
317D3DXVec2TransformCoordArray@24
318D3DXVec2TransformNormal@12
319D3DXVec2TransformNormalArray@24
320D3DXVec3BaryCentric@24
321D3DXVec3CatmullRom@24
322D3DXVec3Hermite@24
323D3DXVec3Normalize@8
324D3DXVec3Project@24
325D3DXVec3ProjectArray@36
326D3DXVec3Transform@12
327D3DXVec3TransformArray@24
328D3DXVec3TransformCoord@12
329D3DXVec3TransformCoordArray@24
330D3DXVec3TransformNormal@12
331D3DXVec3TransformNormalArray@24
332D3DXVec3Unproject@24
333D3DXVec3UnprojectArray@36
334D3DXVec4BaryCentric@24
335D3DXVec4CatmullRom@24
336D3DXVec4Cross@16
337D3DXVec4Hermite@24
338D3DXVec4Normalize@8
339D3DXVec4Transform@12
340D3DXVec4TransformArray@24
341D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_34.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_34.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_34.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateKeyframedAnimationSet@32
78D3DXCreateLine@8
79D3DXCreateMatrixStack@8
80D3DXCreateMesh@24
81D3DXCreateMeshFVF@24
82D3DXCreateNPatchMesh@8
83D3DXCreatePMeshFromStream@28
84D3DXCreatePRTBuffer@16
85D3DXCreatePRTBufferTex@20
86D3DXCreatePRTCompBuffer@28
87D3DXCreatePRTEngine@20
88D3DXCreatePatchMesh@28
89D3DXCreatePolygon@20
90D3DXCreateRenderToEnvMap@28
91D3DXCreateRenderToSurface@28
92D3DXCreateSPMesh@20
93D3DXCreateSkinInfo@16
94D3DXCreateSkinInfoFVF@16
95D3DXCreateSkinInfoFromBlendedMesh@16
96D3DXCreateSphere@24
97D3DXCreateSprite@8
98D3DXCreateTeapot@12
99D3DXCreateTextA@32
100D3DXCreateTextW@32
101D3DXCreateTexture@32
102D3DXCreateTextureFromFileA@12
103D3DXCreateTextureFromFileExA@56
104D3DXCreateTextureFromFileExW@56
105D3DXCreateTextureFromFileInMemory@16
106D3DXCreateTextureFromFileInMemoryEx@60
107D3DXCreateTextureFromFileW@12
108D3DXCreateTextureFromResourceA@16
109D3DXCreateTextureFromResourceExA@60
110D3DXCreateTextureFromResourceExW@60
111D3DXCreateTextureFromResourceW@16
112D3DXCreateTextureGutterHelper@20
113D3DXCreateTextureShader@8
114D3DXCreateTorus@28
115D3DXCreateVolumeTexture@36
116D3DXCreateVolumeTextureFromFileA@12
117D3DXCreateVolumeTextureFromFileExA@60
118D3DXCreateVolumeTextureFromFileExW@60
119D3DXCreateVolumeTextureFromFileInMemory@16
120D3DXCreateVolumeTextureFromFileInMemoryEx@64
121D3DXCreateVolumeTextureFromFileW@12
122D3DXCreateVolumeTextureFromResourceA@16
123D3DXCreateVolumeTextureFromResourceExA@64
124D3DXCreateVolumeTextureFromResourceExW@64
125D3DXCreateVolumeTextureFromResourceW@16
126D3DXDebugMute@4
127D3DXDeclaratorFromFVF@8
128D3DXDisassembleEffect@12
129D3DXDisassembleShader@16
130D3DXFVFFromDeclarator@8
131D3DXFileCreate@4
132D3DXFillCubeTexture@12
133D3DXFillCubeTextureTX@8
134D3DXFillTexture@12
135D3DXFillTextureTX@8
136D3DXFillVolumeTexture@12
137D3DXFillVolumeTextureTX@8
138D3DXFilterTexture@16
139D3DXFindShaderComment@16
140D3DXFloat16To32Array@12
141D3DXFloat32To16Array@12
142D3DXFrameAppendChild@8
143D3DXFrameCalculateBoundingSphere@12
144D3DXFrameDestroy@8
145D3DXFrameFind@8
146D3DXFrameNumNamedMatrices@4
147D3DXFrameRegisterNamedMatrices@8
148D3DXFresnelTerm@8
149D3DXGatherFragments@28
150D3DXGatherFragmentsFromFileA@24
151D3DXGatherFragmentsFromFileW@24
152D3DXGatherFragmentsFromResourceA@28
153D3DXGatherFragmentsFromResourceW@28
154D3DXGenerateOutputDecl@8
155D3DXGeneratePMesh@28
156D3DXGetDeclLength@4
157D3DXGetDeclVertexSize@8
158D3DXGetDriverLevel@4
159D3DXGetFVFVertexSize@4
160D3DXGetImageInfoFromFileA@8
161D3DXGetImageInfoFromFileInMemory@12
162D3DXGetImageInfoFromFileW@8
163D3DXGetImageInfoFromResourceA@12
164D3DXGetImageInfoFromResourceW@12
165D3DXGetPixelShaderProfile@4
166D3DXGetShaderConstantTable@8
167D3DXGetShaderInputSemantics@12
168D3DXGetShaderOutputSemantics@12
169D3DXGetShaderSamplers@12
170D3DXGetShaderSize@4
171D3DXGetShaderVersion@4
172D3DXGetVertexShaderProfile@4
173D3DXIntersect@40
174D3DXIntersectSubset@44
175D3DXIntersectTri@32
176D3DXLoadMeshFromXA@32
177D3DXLoadMeshFromXInMemory@36
178D3DXLoadMeshFromXResource@40
179D3DXLoadMeshFromXW@32
180D3DXLoadMeshFromXof@32
181D3DXLoadMeshHierarchyFromXA@28
182D3DXLoadMeshHierarchyFromXInMemory@32
183D3DXLoadMeshHierarchyFromXW@28
184D3DXLoadPRTBufferFromFileA@8
185D3DXLoadPRTBufferFromFileW@8
186D3DXLoadPRTCompBufferFromFileA@8
187D3DXLoadPRTCompBufferFromFileW@8
188D3DXLoadPatchMeshFromXof@28
189D3DXLoadSkinMeshFromXof@36
190D3DXLoadSurfaceFromFileA@32
191D3DXLoadSurfaceFromFileInMemory@36
192D3DXLoadSurfaceFromFileW@32
193D3DXLoadSurfaceFromMemory@40
194D3DXLoadSurfaceFromResourceA@36
195D3DXLoadSurfaceFromResourceW@36
196D3DXLoadSurfaceFromSurface@32
197D3DXLoadVolumeFromFileA@32
198D3DXLoadVolumeFromFileInMemory@36
199D3DXLoadVolumeFromFileW@32
200D3DXLoadVolumeFromMemory@44
201D3DXLoadVolumeFromResourceA@36
202D3DXLoadVolumeFromResourceW@36
203D3DXLoadVolumeFromVolume@32
204D3DXMatrixAffineTransformation2D@20
205D3DXMatrixAffineTransformation@20
206D3DXMatrixDecompose@16
207D3DXMatrixDeterminant@4
208D3DXMatrixInverse@12
209D3DXMatrixLookAtLH@16
210D3DXMatrixLookAtRH@16
211D3DXMatrixMultiply@12
212D3DXMatrixMultiplyTranspose@12
213D3DXMatrixOrthoLH@20
214D3DXMatrixOrthoOffCenterLH@28
215D3DXMatrixOrthoOffCenterRH@28
216D3DXMatrixOrthoRH@20
217D3DXMatrixPerspectiveFovLH@20
218D3DXMatrixPerspectiveFovRH@20
219D3DXMatrixPerspectiveLH@20
220D3DXMatrixPerspectiveOffCenterLH@28
221D3DXMatrixPerspectiveOffCenterRH@28
222D3DXMatrixPerspectiveRH@20
223D3DXMatrixReflect@8
224D3DXMatrixRotationAxis@12
225D3DXMatrixRotationQuaternion@8
226D3DXMatrixRotationX@8
227D3DXMatrixRotationY@8
228D3DXMatrixRotationYawPitchRoll@16
229D3DXMatrixRotationZ@8
230D3DXMatrixScaling@16
231D3DXMatrixShadow@12
232D3DXMatrixTransformation2D@28
233D3DXMatrixTransformation@28
234D3DXMatrixTranslation@16
235D3DXMatrixTranspose@8
236D3DXOptimizeFaces@20
237D3DXOptimizeVertices@20
238D3DXPlaneFromPointNormal@12
239D3DXPlaneFromPoints@16
240D3DXPlaneIntersectLine@16
241D3DXPlaneNormalize@8
242D3DXPlaneTransform@12
243D3DXPlaneTransformArray@24
244D3DXPreprocessShader@24
245D3DXPreprocessShaderFromFileA@20
246D3DXPreprocessShaderFromFileW@20
247D3DXPreprocessShaderFromResourceA@24
248D3DXPreprocessShaderFromResourceW@24
249D3DXQuaternionBaryCentric@24
250D3DXQuaternionExp@8
251D3DXQuaternionInverse@8
252D3DXQuaternionLn@8
253D3DXQuaternionMultiply@12
254D3DXQuaternionNormalize@8
255D3DXQuaternionRotationAxis@12
256D3DXQuaternionRotationMatrix@8
257D3DXQuaternionRotationYawPitchRoll@16
258D3DXQuaternionSlerp@16
259D3DXQuaternionSquad@24
260D3DXQuaternionSquadSetup@28
261D3DXQuaternionToAxisAngle@12
262D3DXRectPatchSize@12
263D3DXSHAdd@16
264D3DXSHDot@12
265D3DXSHEvalConeLight@36
266D3DXSHEvalDirection@12
267D3DXSHEvalDirectionalLight@32
268D3DXSHEvalHemisphereLight@52
269D3DXSHEvalSphericalLight@36
270D3DXSHMultiply2@12
271D3DXSHMultiply3@12
272D3DXSHMultiply4@12
273D3DXSHMultiply5@12
274D3DXSHMultiply6@12
275D3DXSHPRTCompSplitMeshSC@64
276D3DXSHPRTCompSuperCluster@24
277D3DXSHProjectCubeMap@20
278D3DXSHRotate@16
279D3DXSHRotateZ@16
280D3DXSHScale@16
281D3DXSaveMeshHierarchyToFileA@20
282D3DXSaveMeshHierarchyToFileW@20
283D3DXSaveMeshToXA@28
284D3DXSaveMeshToXW@28
285D3DXSavePRTBufferToFileA@8
286D3DXSavePRTBufferToFileW@8
287D3DXSavePRTCompBufferToFileA@8
288D3DXSavePRTCompBufferToFileW@8
289D3DXSaveSurfaceToFileA@20
290D3DXSaveSurfaceToFileInMemory@20
291D3DXSaveSurfaceToFileW@20
292D3DXSaveTextureToFileA@16
293D3DXSaveTextureToFileInMemory@16
294D3DXSaveTextureToFileW@16
295D3DXSaveVolumeToFileA@20
296D3DXSaveVolumeToFileInMemory@20
297D3DXSaveVolumeToFileW@20
298D3DXSimplifyMesh@28
299D3DXSphereBoundProbe@16
300D3DXSplitMesh@36
301D3DXTessellateNPatches@24
302D3DXTessellateRectPatch@20
303D3DXTessellateTriPatch@20
304D3DXTriPatchSize@12
305D3DXUVAtlasCreate@76
306D3DXUVAtlasPack@44
307D3DXUVAtlasPartition@68
308D3DXValidMesh@12
309D3DXValidPatchMesh@16
310D3DXVec2BaryCentric@24
311D3DXVec2CatmullRom@24
312D3DXVec2Hermite@24
313D3DXVec2Normalize@8
314D3DXVec2Transform@12
315D3DXVec2TransformArray@24
316D3DXVec2TransformCoord@12
317D3DXVec2TransformCoordArray@24
318D3DXVec2TransformNormal@12
319D3DXVec2TransformNormalArray@24
320D3DXVec3BaryCentric@24
321D3DXVec3CatmullRom@24
322D3DXVec3Hermite@24
323D3DXVec3Normalize@8
324D3DXVec3Project@24
325D3DXVec3ProjectArray@36
326D3DXVec3Transform@12
327D3DXVec3TransformArray@24
328D3DXVec3TransformCoord@12
329D3DXVec3TransformCoordArray@24
330D3DXVec3TransformNormal@12
331D3DXVec3TransformNormalArray@24
332D3DXVec3Unproject@24
333D3DXVec3UnprojectArray@36
334D3DXVec4BaryCentric@24
335D3DXVec4CatmullRom@24
336D3DXVec4Cross@16
337D3DXVec4Hermite@24
338D3DXVec4Normalize@8
339D3DXVec4Transform@12
340D3DXVec4TransformArray@24
341D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_35.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_35.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_35.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateKeyframedAnimationSet@32
78D3DXCreateLine@8
79D3DXCreateMatrixStack@8
80D3DXCreateMesh@24
81D3DXCreateMeshFVF@24
82D3DXCreateNPatchMesh@8
83D3DXCreatePMeshFromStream@28
84D3DXCreatePRTBuffer@16
85D3DXCreatePRTBufferTex@20
86D3DXCreatePRTCompBuffer@28
87D3DXCreatePRTEngine@20
88D3DXCreatePatchMesh@28
89D3DXCreatePolygon@20
90D3DXCreateRenderToEnvMap@28
91D3DXCreateRenderToSurface@28
92D3DXCreateSPMesh@20
93D3DXCreateSkinInfo@16
94D3DXCreateSkinInfoFVF@16
95D3DXCreateSkinInfoFromBlendedMesh@16
96D3DXCreateSphere@24
97D3DXCreateSprite@8
98D3DXCreateTeapot@12
99D3DXCreateTextA@32
100D3DXCreateTextW@32
101D3DXCreateTexture@32
102D3DXCreateTextureFromFileA@12
103D3DXCreateTextureFromFileExA@56
104D3DXCreateTextureFromFileExW@56
105D3DXCreateTextureFromFileInMemory@16
106D3DXCreateTextureFromFileInMemoryEx@60
107D3DXCreateTextureFromFileW@12
108D3DXCreateTextureFromResourceA@16
109D3DXCreateTextureFromResourceExA@60
110D3DXCreateTextureFromResourceExW@60
111D3DXCreateTextureFromResourceW@16
112D3DXCreateTextureGutterHelper@20
113D3DXCreateTextureShader@8
114D3DXCreateTorus@28
115D3DXCreateVolumeTexture@36
116D3DXCreateVolumeTextureFromFileA@12
117D3DXCreateVolumeTextureFromFileExA@60
118D3DXCreateVolumeTextureFromFileExW@60
119D3DXCreateVolumeTextureFromFileInMemory@16
120D3DXCreateVolumeTextureFromFileInMemoryEx@64
121D3DXCreateVolumeTextureFromFileW@12
122D3DXCreateVolumeTextureFromResourceA@16
123D3DXCreateVolumeTextureFromResourceExA@64
124D3DXCreateVolumeTextureFromResourceExW@64
125D3DXCreateVolumeTextureFromResourceW@16
126D3DXDebugMute@4
127D3DXDeclaratorFromFVF@8
128D3DXDisassembleEffect@12
129D3DXDisassembleShader@16
130D3DXFVFFromDeclarator@8
131D3DXFileCreate@4
132D3DXFillCubeTexture@12
133D3DXFillCubeTextureTX@8
134D3DXFillTexture@12
135D3DXFillTextureTX@8
136D3DXFillVolumeTexture@12
137D3DXFillVolumeTextureTX@8
138D3DXFilterTexture@16
139D3DXFindShaderComment@16
140D3DXFloat16To32Array@12
141D3DXFloat32To16Array@12
142D3DXFrameAppendChild@8
143D3DXFrameCalculateBoundingSphere@12
144D3DXFrameDestroy@8
145D3DXFrameFind@8
146D3DXFrameNumNamedMatrices@4
147D3DXFrameRegisterNamedMatrices@8
148D3DXFresnelTerm@8
149D3DXGatherFragments@28
150D3DXGatherFragmentsFromFileA@24
151D3DXGatherFragmentsFromFileW@24
152D3DXGatherFragmentsFromResourceA@28
153D3DXGatherFragmentsFromResourceW@28
154D3DXGenerateOutputDecl@8
155D3DXGeneratePMesh@28
156D3DXGetDeclLength@4
157D3DXGetDeclVertexSize@8
158D3DXGetDriverLevel@4
159D3DXGetFVFVertexSize@4
160D3DXGetImageInfoFromFileA@8
161D3DXGetImageInfoFromFileInMemory@12
162D3DXGetImageInfoFromFileW@8
163D3DXGetImageInfoFromResourceA@12
164D3DXGetImageInfoFromResourceW@12
165D3DXGetPixelShaderProfile@4
166D3DXGetShaderConstantTable@8
167D3DXGetShaderInputSemantics@12
168D3DXGetShaderOutputSemantics@12
169D3DXGetShaderSamplers@12
170D3DXGetShaderSize@4
171D3DXGetShaderVersion@4
172D3DXGetVertexShaderProfile@4
173D3DXIntersect@40
174D3DXIntersectSubset@44
175D3DXIntersectTri@32
176D3DXLoadMeshFromXA@32
177D3DXLoadMeshFromXInMemory@36
178D3DXLoadMeshFromXResource@40
179D3DXLoadMeshFromXW@32
180D3DXLoadMeshFromXof@32
181D3DXLoadMeshHierarchyFromXA@28
182D3DXLoadMeshHierarchyFromXInMemory@32
183D3DXLoadMeshHierarchyFromXW@28
184D3DXLoadPRTBufferFromFileA@8
185D3DXLoadPRTBufferFromFileW@8
186D3DXLoadPRTCompBufferFromFileA@8
187D3DXLoadPRTCompBufferFromFileW@8
188D3DXLoadPatchMeshFromXof@28
189D3DXLoadSkinMeshFromXof@36
190D3DXLoadSurfaceFromFileA@32
191D3DXLoadSurfaceFromFileInMemory@36
192D3DXLoadSurfaceFromFileW@32
193D3DXLoadSurfaceFromMemory@40
194D3DXLoadSurfaceFromResourceA@36
195D3DXLoadSurfaceFromResourceW@36
196D3DXLoadSurfaceFromSurface@32
197D3DXLoadVolumeFromFileA@32
198D3DXLoadVolumeFromFileInMemory@36
199D3DXLoadVolumeFromFileW@32
200D3DXLoadVolumeFromMemory@44
201D3DXLoadVolumeFromResourceA@36
202D3DXLoadVolumeFromResourceW@36
203D3DXLoadVolumeFromVolume@32
204D3DXMatrixAffineTransformation2D@20
205D3DXMatrixAffineTransformation@20
206D3DXMatrixDecompose@16
207D3DXMatrixDeterminant@4
208D3DXMatrixInverse@12
209D3DXMatrixLookAtLH@16
210D3DXMatrixLookAtRH@16
211D3DXMatrixMultiply@12
212D3DXMatrixMultiplyTranspose@12
213D3DXMatrixOrthoLH@20
214D3DXMatrixOrthoOffCenterLH@28
215D3DXMatrixOrthoOffCenterRH@28
216D3DXMatrixOrthoRH@20
217D3DXMatrixPerspectiveFovLH@20
218D3DXMatrixPerspectiveFovRH@20
219D3DXMatrixPerspectiveLH@20
220D3DXMatrixPerspectiveOffCenterLH@28
221D3DXMatrixPerspectiveOffCenterRH@28
222D3DXMatrixPerspectiveRH@20
223D3DXMatrixReflect@8
224D3DXMatrixRotationAxis@12
225D3DXMatrixRotationQuaternion@8
226D3DXMatrixRotationX@8
227D3DXMatrixRotationY@8
228D3DXMatrixRotationYawPitchRoll@16
229D3DXMatrixRotationZ@8
230D3DXMatrixScaling@16
231D3DXMatrixShadow@12
232D3DXMatrixTransformation2D@28
233D3DXMatrixTransformation@28
234D3DXMatrixTranslation@16
235D3DXMatrixTranspose@8
236D3DXOptimizeFaces@20
237D3DXOptimizeVertices@20
238D3DXPlaneFromPointNormal@12
239D3DXPlaneFromPoints@16
240D3DXPlaneIntersectLine@16
241D3DXPlaneNormalize@8
242D3DXPlaneTransform@12
243D3DXPlaneTransformArray@24
244D3DXPreprocessShader@24
245D3DXPreprocessShaderFromFileA@20
246D3DXPreprocessShaderFromFileW@20
247D3DXPreprocessShaderFromResourceA@24
248D3DXPreprocessShaderFromResourceW@24
249D3DXQuaternionBaryCentric@24
250D3DXQuaternionExp@8
251D3DXQuaternionInverse@8
252D3DXQuaternionLn@8
253D3DXQuaternionMultiply@12
254D3DXQuaternionNormalize@8
255D3DXQuaternionRotationAxis@12
256D3DXQuaternionRotationMatrix@8
257D3DXQuaternionRotationYawPitchRoll@16
258D3DXQuaternionSlerp@16
259D3DXQuaternionSquad@24
260D3DXQuaternionSquadSetup@28
261D3DXQuaternionToAxisAngle@12
262D3DXRectPatchSize@12
263D3DXSHAdd@16
264D3DXSHDot@12
265D3DXSHEvalConeLight@36
266D3DXSHEvalDirection@12
267D3DXSHEvalDirectionalLight@32
268D3DXSHEvalHemisphereLight@52
269D3DXSHEvalSphericalLight@36
270D3DXSHMultiply2@12
271D3DXSHMultiply3@12
272D3DXSHMultiply4@12
273D3DXSHMultiply5@12
274D3DXSHMultiply6@12
275D3DXSHPRTCompSplitMeshSC@64
276D3DXSHPRTCompSuperCluster@24
277D3DXSHProjectCubeMap@20
278D3DXSHRotate@16
279D3DXSHRotateZ@16
280D3DXSHScale@16
281D3DXSaveMeshHierarchyToFileA@20
282D3DXSaveMeshHierarchyToFileW@20
283D3DXSaveMeshToXA@28
284D3DXSaveMeshToXW@28
285D3DXSavePRTBufferToFileA@8
286D3DXSavePRTBufferToFileW@8
287D3DXSavePRTCompBufferToFileA@8
288D3DXSavePRTCompBufferToFileW@8
289D3DXSaveSurfaceToFileA@20
290D3DXSaveSurfaceToFileInMemory@20
291D3DXSaveSurfaceToFileW@20
292D3DXSaveTextureToFileA@16
293D3DXSaveTextureToFileInMemory@16
294D3DXSaveTextureToFileW@16
295D3DXSaveVolumeToFileA@20
296D3DXSaveVolumeToFileInMemory@20
297D3DXSaveVolumeToFileW@20
298D3DXSimplifyMesh@28
299D3DXSphereBoundProbe@16
300D3DXSplitMesh@36
301D3DXTessellateNPatches@24
302D3DXTessellateRectPatch@20
303D3DXTessellateTriPatch@20
304D3DXTriPatchSize@12
305D3DXUVAtlasCreate@76
306D3DXUVAtlasPack@44
307D3DXUVAtlasPartition@68
308D3DXValidMesh@12
309D3DXValidPatchMesh@16
310D3DXVec2BaryCentric@24
311D3DXVec2CatmullRom@24
312D3DXVec2Hermite@24
313D3DXVec2Normalize@8
314D3DXVec2Transform@12
315D3DXVec2TransformArray@24
316D3DXVec2TransformCoord@12
317D3DXVec2TransformCoordArray@24
318D3DXVec2TransformNormal@12
319D3DXVec2TransformNormalArray@24
320D3DXVec3BaryCentric@24
321D3DXVec3CatmullRom@24
322D3DXVec3Hermite@24
323D3DXVec3Normalize@8
324D3DXVec3Project@24
325D3DXVec3ProjectArray@36
326D3DXVec3Transform@12
327D3DXVec3TransformArray@24
328D3DXVec3TransformCoord@12
329D3DXVec3TransformCoordArray@24
330D3DXVec3TransformNormal@12
331D3DXVec3TransformNormalArray@24
332D3DXVec3Unproject@24
333D3DXVec3UnprojectArray@36
334D3DXVec4BaryCentric@24
335D3DXVec4CatmullRom@24
336D3DXVec4Cross@16
337D3DXVec4Hermite@24
338D3DXVec4Normalize@8
339D3DXVec4Transform@12
340D3DXVec4TransformArray@24
341D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_36.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_36.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_36.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateFragmentLinkerEx@16
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderConstantTableEx@12
169D3DXGetShaderInputSemantics@12
170D3DXGetShaderOutputSemantics@12
171D3DXGetShaderSamplers@12
172D3DXGetShaderSize@4
173D3DXGetShaderVersion@4
174D3DXGetVertexShaderProfile@4
175D3DXIntersect@40
176D3DXIntersectSubset@44
177D3DXIntersectTri@32
178D3DXLoadMeshFromXA@32
179D3DXLoadMeshFromXInMemory@36
180D3DXLoadMeshFromXResource@40
181D3DXLoadMeshFromXW@32
182D3DXLoadMeshFromXof@32
183D3DXLoadMeshHierarchyFromXA@28
184D3DXLoadMeshHierarchyFromXInMemory@32
185D3DXLoadMeshHierarchyFromXW@28
186D3DXLoadPRTBufferFromFileA@8
187D3DXLoadPRTBufferFromFileW@8
188D3DXLoadPRTCompBufferFromFileA@8
189D3DXLoadPRTCompBufferFromFileW@8
190D3DXLoadPatchMeshFromXof@28
191D3DXLoadSkinMeshFromXof@36
192D3DXLoadSurfaceFromFileA@32
193D3DXLoadSurfaceFromFileInMemory@36
194D3DXLoadSurfaceFromFileW@32
195D3DXLoadSurfaceFromMemory@40
196D3DXLoadSurfaceFromResourceA@36
197D3DXLoadSurfaceFromResourceW@36
198D3DXLoadSurfaceFromSurface@32
199D3DXLoadVolumeFromFileA@32
200D3DXLoadVolumeFromFileInMemory@36
201D3DXLoadVolumeFromFileW@32
202D3DXLoadVolumeFromMemory@44
203D3DXLoadVolumeFromResourceA@36
204D3DXLoadVolumeFromResourceW@36
205D3DXLoadVolumeFromVolume@32
206D3DXMatrixAffineTransformation2D@20
207D3DXMatrixAffineTransformation@20
208D3DXMatrixDecompose@16
209D3DXMatrixDeterminant@4
210D3DXMatrixInverse@12
211D3DXMatrixLookAtLH@16
212D3DXMatrixLookAtRH@16
213D3DXMatrixMultiply@12
214D3DXMatrixMultiplyTranspose@12
215D3DXMatrixOrthoLH@20
216D3DXMatrixOrthoOffCenterLH@28
217D3DXMatrixOrthoOffCenterRH@28
218D3DXMatrixOrthoRH@20
219D3DXMatrixPerspectiveFovLH@20
220D3DXMatrixPerspectiveFovRH@20
221D3DXMatrixPerspectiveLH@20
222D3DXMatrixPerspectiveOffCenterLH@28
223D3DXMatrixPerspectiveOffCenterRH@28
224D3DXMatrixPerspectiveRH@20
225D3DXMatrixReflect@8
226D3DXMatrixRotationAxis@12
227D3DXMatrixRotationQuaternion@8
228D3DXMatrixRotationX@8
229D3DXMatrixRotationY@8
230D3DXMatrixRotationYawPitchRoll@16
231D3DXMatrixRotationZ@8
232D3DXMatrixScaling@16
233D3DXMatrixShadow@12
234D3DXMatrixTransformation2D@28
235D3DXMatrixTransformation@28
236D3DXMatrixTranslation@16
237D3DXMatrixTranspose@8
238D3DXOptimizeFaces@20
239D3DXOptimizeVertices@20
240D3DXPlaneFromPointNormal@12
241D3DXPlaneFromPoints@16
242D3DXPlaneIntersectLine@16
243D3DXPlaneNormalize@8
244D3DXPlaneTransform@12
245D3DXPlaneTransformArray@24
246D3DXPreprocessShader@24
247D3DXPreprocessShaderFromFileA@20
248D3DXPreprocessShaderFromFileW@20
249D3DXPreprocessShaderFromResourceA@24
250D3DXPreprocessShaderFromResourceW@24
251D3DXQuaternionBaryCentric@24
252D3DXQuaternionExp@8
253D3DXQuaternionInverse@8
254D3DXQuaternionLn@8
255D3DXQuaternionMultiply@12
256D3DXQuaternionNormalize@8
257D3DXQuaternionRotationAxis@12
258D3DXQuaternionRotationMatrix@8
259D3DXQuaternionRotationYawPitchRoll@16
260D3DXQuaternionSlerp@16
261D3DXQuaternionSquad@24
262D3DXQuaternionSquadSetup@28
263D3DXQuaternionToAxisAngle@12
264D3DXRectPatchSize@12
265D3DXSHAdd@16
266D3DXSHDot@12
267D3DXSHEvalConeLight@36
268D3DXSHEvalDirection@12
269D3DXSHEvalDirectionalLight@32
270D3DXSHEvalHemisphereLight@52
271D3DXSHEvalSphericalLight@36
272D3DXSHMultiply2@12
273D3DXSHMultiply3@12
274D3DXSHMultiply4@12
275D3DXSHMultiply5@12
276D3DXSHMultiply6@12
277D3DXSHPRTCompSplitMeshSC@64
278D3DXSHPRTCompSuperCluster@24
279D3DXSHProjectCubeMap@20
280D3DXSHRotate@16
281D3DXSHRotateZ@16
282D3DXSHScale@16
283D3DXSaveMeshHierarchyToFileA@20
284D3DXSaveMeshHierarchyToFileW@20
285D3DXSaveMeshToXA@28
286D3DXSaveMeshToXW@28
287D3DXSavePRTBufferToFileA@8
288D3DXSavePRTBufferToFileW@8
289D3DXSavePRTCompBufferToFileA@8
290D3DXSavePRTCompBufferToFileW@8
291D3DXSaveSurfaceToFileA@20
292D3DXSaveSurfaceToFileInMemory@20
293D3DXSaveSurfaceToFileW@20
294D3DXSaveTextureToFileA@16
295D3DXSaveTextureToFileInMemory@16
296D3DXSaveTextureToFileW@16
297D3DXSaveVolumeToFileA@20
298D3DXSaveVolumeToFileInMemory@20
299D3DXSaveVolumeToFileW@20
300D3DXSimplifyMesh@28
301D3DXSphereBoundProbe@16
302D3DXSplitMesh@36
303D3DXTessellateNPatches@24
304D3DXTessellateRectPatch@20
305D3DXTessellateTriPatch@20
306D3DXTriPatchSize@12
307D3DXUVAtlasCreate@76
308D3DXUVAtlasPack@44
309D3DXUVAtlasPartition@68
310D3DXValidMesh@12
311D3DXValidPatchMesh@16
312D3DXVec2BaryCentric@24
313D3DXVec2CatmullRom@24
314D3DXVec2Hermite@24
315D3DXVec2Normalize@8
316D3DXVec2Transform@12
317D3DXVec2TransformArray@24
318D3DXVec2TransformCoord@12
319D3DXVec2TransformCoordArray@24
320D3DXVec2TransformNormal@12
321D3DXVec2TransformNormalArray@24
322D3DXVec3BaryCentric@24
323D3DXVec3CatmullRom@24
324D3DXVec3Hermite@24
325D3DXVec3Normalize@8
326D3DXVec3Project@24
327D3DXVec3ProjectArray@36
328D3DXVec3Transform@12
329D3DXVec3TransformArray@24
330D3DXVec3TransformCoord@12
331D3DXVec3TransformCoordArray@24
332D3DXVec3TransformNormal@12
333D3DXVec3TransformNormalArray@24
334D3DXVec3Unproject@24
335D3DXVec3UnprojectArray@36
336D3DXVec4BaryCentric@24
337D3DXVec4CatmullRom@24
338D3DXVec4Cross@16
339D3DXVec4Hermite@24
340D3DXVec4Normalize@8
341D3DXVec4Transform@12
342D3DXVec4TransformArray@24
343D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_37.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_37.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_37.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateFragmentLinkerEx@16
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderConstantTableEx@12
169D3DXGetShaderInputSemantics@12
170D3DXGetShaderOutputSemantics@12
171D3DXGetShaderSamplers@12
172D3DXGetShaderSize@4
173D3DXGetShaderVersion@4
174D3DXGetVertexShaderProfile@4
175D3DXIntersect@40
176D3DXIntersectSubset@44
177D3DXIntersectTri@32
178D3DXLoadMeshFromXA@32
179D3DXLoadMeshFromXInMemory@36
180D3DXLoadMeshFromXResource@40
181D3DXLoadMeshFromXW@32
182D3DXLoadMeshFromXof@32
183D3DXLoadMeshHierarchyFromXA@28
184D3DXLoadMeshHierarchyFromXInMemory@32
185D3DXLoadMeshHierarchyFromXW@28
186D3DXLoadPRTBufferFromFileA@8
187D3DXLoadPRTBufferFromFileW@8
188D3DXLoadPRTCompBufferFromFileA@8
189D3DXLoadPRTCompBufferFromFileW@8
190D3DXLoadPatchMeshFromXof@28
191D3DXLoadSkinMeshFromXof@36
192D3DXLoadSurfaceFromFileA@32
193D3DXLoadSurfaceFromFileInMemory@36
194D3DXLoadSurfaceFromFileW@32
195D3DXLoadSurfaceFromMemory@40
196D3DXLoadSurfaceFromResourceA@36
197D3DXLoadSurfaceFromResourceW@36
198D3DXLoadSurfaceFromSurface@32
199D3DXLoadVolumeFromFileA@32
200D3DXLoadVolumeFromFileInMemory@36
201D3DXLoadVolumeFromFileW@32
202D3DXLoadVolumeFromMemory@44
203D3DXLoadVolumeFromResourceA@36
204D3DXLoadVolumeFromResourceW@36
205D3DXLoadVolumeFromVolume@32
206D3DXMatrixAffineTransformation2D@20
207D3DXMatrixAffineTransformation@20
208D3DXMatrixDecompose@16
209D3DXMatrixDeterminant@4
210D3DXMatrixInverse@12
211D3DXMatrixLookAtLH@16
212D3DXMatrixLookAtRH@16
213D3DXMatrixMultiply@12
214D3DXMatrixMultiplyTranspose@12
215D3DXMatrixOrthoLH@20
216D3DXMatrixOrthoOffCenterLH@28
217D3DXMatrixOrthoOffCenterRH@28
218D3DXMatrixOrthoRH@20
219D3DXMatrixPerspectiveFovLH@20
220D3DXMatrixPerspectiveFovRH@20
221D3DXMatrixPerspectiveLH@20
222D3DXMatrixPerspectiveOffCenterLH@28
223D3DXMatrixPerspectiveOffCenterRH@28
224D3DXMatrixPerspectiveRH@20
225D3DXMatrixReflect@8
226D3DXMatrixRotationAxis@12
227D3DXMatrixRotationQuaternion@8
228D3DXMatrixRotationX@8
229D3DXMatrixRotationY@8
230D3DXMatrixRotationYawPitchRoll@16
231D3DXMatrixRotationZ@8
232D3DXMatrixScaling@16
233D3DXMatrixShadow@12
234D3DXMatrixTransformation2D@28
235D3DXMatrixTransformation@28
236D3DXMatrixTranslation@16
237D3DXMatrixTranspose@8
238D3DXOptimizeFaces@20
239D3DXOptimizeVertices@20
240D3DXPlaneFromPointNormal@12
241D3DXPlaneFromPoints@16
242D3DXPlaneIntersectLine@16
243D3DXPlaneNormalize@8
244D3DXPlaneTransform@12
245D3DXPlaneTransformArray@24
246D3DXPreprocessShader@24
247D3DXPreprocessShaderFromFileA@20
248D3DXPreprocessShaderFromFileW@20
249D3DXPreprocessShaderFromResourceA@24
250D3DXPreprocessShaderFromResourceW@24
251D3DXQuaternionBaryCentric@24
252D3DXQuaternionExp@8
253D3DXQuaternionInverse@8
254D3DXQuaternionLn@8
255D3DXQuaternionMultiply@12
256D3DXQuaternionNormalize@8
257D3DXQuaternionRotationAxis@12
258D3DXQuaternionRotationMatrix@8
259D3DXQuaternionRotationYawPitchRoll@16
260D3DXQuaternionSlerp@16
261D3DXQuaternionSquad@24
262D3DXQuaternionSquadSetup@28
263D3DXQuaternionToAxisAngle@12
264D3DXRectPatchSize@12
265D3DXSHAdd@16
266D3DXSHDot@12
267D3DXSHEvalConeLight@36
268D3DXSHEvalDirection@12
269D3DXSHEvalDirectionalLight@32
270D3DXSHEvalHemisphereLight@52
271D3DXSHEvalSphericalLight@36
272D3DXSHMultiply2@12
273D3DXSHMultiply3@12
274D3DXSHMultiply4@12
275D3DXSHMultiply5@12
276D3DXSHMultiply6@12
277D3DXSHPRTCompSplitMeshSC@64
278D3DXSHPRTCompSuperCluster@24
279D3DXSHProjectCubeMap@20
280D3DXSHRotate@16
281D3DXSHRotateZ@16
282D3DXSHScale@16
283D3DXSaveMeshHierarchyToFileA@20
284D3DXSaveMeshHierarchyToFileW@20
285D3DXSaveMeshToXA@28
286D3DXSaveMeshToXW@28
287D3DXSavePRTBufferToFileA@8
288D3DXSavePRTBufferToFileW@8
289D3DXSavePRTCompBufferToFileA@8
290D3DXSavePRTCompBufferToFileW@8
291D3DXSaveSurfaceToFileA@20
292D3DXSaveSurfaceToFileInMemory@20
293D3DXSaveSurfaceToFileW@20
294D3DXSaveTextureToFileA@16
295D3DXSaveTextureToFileInMemory@16
296D3DXSaveTextureToFileW@16
297D3DXSaveVolumeToFileA@20
298D3DXSaveVolumeToFileInMemory@20
299D3DXSaveVolumeToFileW@20
300D3DXSimplifyMesh@28
301D3DXSphereBoundProbe@16
302D3DXSplitMesh@36
303D3DXTessellateNPatches@24
304D3DXTessellateRectPatch@20
305D3DXTessellateTriPatch@20
306D3DXTriPatchSize@12
307D3DXUVAtlasCreate@76
308D3DXUVAtlasPack@44
309D3DXUVAtlasPartition@68
310D3DXValidMesh@12
311D3DXValidPatchMesh@16
312D3DXVec2BaryCentric@24
313D3DXVec2CatmullRom@24
314D3DXVec2Hermite@24
315D3DXVec2Normalize@8
316D3DXVec2Transform@12
317D3DXVec2TransformArray@24
318D3DXVec2TransformCoord@12
319D3DXVec2TransformCoordArray@24
320D3DXVec2TransformNormal@12
321D3DXVec2TransformNormalArray@24
322D3DXVec3BaryCentric@24
323D3DXVec3CatmullRom@24
324D3DXVec3Hermite@24
325D3DXVec3Normalize@8
326D3DXVec3Project@24
327D3DXVec3ProjectArray@36
328D3DXVec3Transform@12
329D3DXVec3TransformArray@24
330D3DXVec3TransformCoord@12
331D3DXVec3TransformCoordArray@24
332D3DXVec3TransformNormal@12
333D3DXVec3TransformNormalArray@24
334D3DXVec3Unproject@24
335D3DXVec3UnprojectArray@36
336D3DXVec4BaryCentric@24
337D3DXVec4CatmullRom@24
338D3DXVec4Cross@16
339D3DXVec4Hermite@24
340D3DXVec4Normalize@8
341D3DXVec4Transform@12
342D3DXVec4TransformArray@24
343D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_38.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_38.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_38.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateFragmentLinkerEx@16
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderConstantTableEx@12
169D3DXGetShaderInputSemantics@12
170D3DXGetShaderOutputSemantics@12
171D3DXGetShaderSamplers@12
172D3DXGetShaderSize@4
173D3DXGetShaderVersion@4
174D3DXGetVertexShaderProfile@4
175D3DXIntersect@40
176D3DXIntersectSubset@44
177D3DXIntersectTri@32
178D3DXLoadMeshFromXA@32
179D3DXLoadMeshFromXInMemory@36
180D3DXLoadMeshFromXResource@40
181D3DXLoadMeshFromXW@32
182D3DXLoadMeshFromXof@32
183D3DXLoadMeshHierarchyFromXA@28
184D3DXLoadMeshHierarchyFromXInMemory@32
185D3DXLoadMeshHierarchyFromXW@28
186D3DXLoadPRTBufferFromFileA@8
187D3DXLoadPRTBufferFromFileW@8
188D3DXLoadPRTCompBufferFromFileA@8
189D3DXLoadPRTCompBufferFromFileW@8
190D3DXLoadPatchMeshFromXof@28
191D3DXLoadSkinMeshFromXof@36
192D3DXLoadSurfaceFromFileA@32
193D3DXLoadSurfaceFromFileInMemory@36
194D3DXLoadSurfaceFromFileW@32
195D3DXLoadSurfaceFromMemory@40
196D3DXLoadSurfaceFromResourceA@36
197D3DXLoadSurfaceFromResourceW@36
198D3DXLoadSurfaceFromSurface@32
199D3DXLoadVolumeFromFileA@32
200D3DXLoadVolumeFromFileInMemory@36
201D3DXLoadVolumeFromFileW@32
202D3DXLoadVolumeFromMemory@44
203D3DXLoadVolumeFromResourceA@36
204D3DXLoadVolumeFromResourceW@36
205D3DXLoadVolumeFromVolume@32
206D3DXMatrixAffineTransformation2D@20
207D3DXMatrixAffineTransformation@20
208D3DXMatrixDecompose@16
209D3DXMatrixDeterminant@4
210D3DXMatrixInverse@12
211D3DXMatrixLookAtLH@16
212D3DXMatrixLookAtRH@16
213D3DXMatrixMultiply@12
214D3DXMatrixMultiplyTranspose@12
215D3DXMatrixOrthoLH@20
216D3DXMatrixOrthoOffCenterLH@28
217D3DXMatrixOrthoOffCenterRH@28
218D3DXMatrixOrthoRH@20
219D3DXMatrixPerspectiveFovLH@20
220D3DXMatrixPerspectiveFovRH@20
221D3DXMatrixPerspectiveLH@20
222D3DXMatrixPerspectiveOffCenterLH@28
223D3DXMatrixPerspectiveOffCenterRH@28
224D3DXMatrixPerspectiveRH@20
225D3DXMatrixReflect@8
226D3DXMatrixRotationAxis@12
227D3DXMatrixRotationQuaternion@8
228D3DXMatrixRotationX@8
229D3DXMatrixRotationY@8
230D3DXMatrixRotationYawPitchRoll@16
231D3DXMatrixRotationZ@8
232D3DXMatrixScaling@16
233D3DXMatrixShadow@12
234D3DXMatrixTransformation2D@28
235D3DXMatrixTransformation@28
236D3DXMatrixTranslation@16
237D3DXMatrixTranspose@8
238D3DXOptimizeFaces@20
239D3DXOptimizeVertices@20
240D3DXPlaneFromPointNormal@12
241D3DXPlaneFromPoints@16
242D3DXPlaneIntersectLine@16
243D3DXPlaneNormalize@8
244D3DXPlaneTransform@12
245D3DXPlaneTransformArray@24
246D3DXPreprocessShader@24
247D3DXPreprocessShaderFromFileA@20
248D3DXPreprocessShaderFromFileW@20
249D3DXPreprocessShaderFromResourceA@24
250D3DXPreprocessShaderFromResourceW@24
251D3DXQuaternionBaryCentric@24
252D3DXQuaternionExp@8
253D3DXQuaternionInverse@8
254D3DXQuaternionLn@8
255D3DXQuaternionMultiply@12
256D3DXQuaternionNormalize@8
257D3DXQuaternionRotationAxis@12
258D3DXQuaternionRotationMatrix@8
259D3DXQuaternionRotationYawPitchRoll@16
260D3DXQuaternionSlerp@16
261D3DXQuaternionSquad@24
262D3DXQuaternionSquadSetup@28
263D3DXQuaternionToAxisAngle@12
264D3DXRectPatchSize@12
265D3DXSHAdd@16
266D3DXSHDot@12
267D3DXSHEvalConeLight@36
268D3DXSHEvalDirection@12
269D3DXSHEvalDirectionalLight@32
270D3DXSHEvalHemisphereLight@52
271D3DXSHEvalSphericalLight@36
272D3DXSHMultiply2@12
273D3DXSHMultiply3@12
274D3DXSHMultiply4@12
275D3DXSHMultiply5@12
276D3DXSHMultiply6@12
277D3DXSHPRTCompSplitMeshSC@64
278D3DXSHPRTCompSuperCluster@24
279D3DXSHProjectCubeMap@20
280D3DXSHRotate@16
281D3DXSHRotateZ@16
282D3DXSHScale@16
283D3DXSaveMeshHierarchyToFileA@20
284D3DXSaveMeshHierarchyToFileW@20
285D3DXSaveMeshToXA@28
286D3DXSaveMeshToXW@28
287D3DXSavePRTBufferToFileA@8
288D3DXSavePRTBufferToFileW@8
289D3DXSavePRTCompBufferToFileA@8
290D3DXSavePRTCompBufferToFileW@8
291D3DXSaveSurfaceToFileA@20
292D3DXSaveSurfaceToFileInMemory@20
293D3DXSaveSurfaceToFileW@20
294D3DXSaveTextureToFileA@16
295D3DXSaveTextureToFileInMemory@16
296D3DXSaveTextureToFileW@16
297D3DXSaveVolumeToFileA@20
298D3DXSaveVolumeToFileInMemory@20
299D3DXSaveVolumeToFileW@20
300D3DXSimplifyMesh@28
301D3DXSphereBoundProbe@16
302D3DXSplitMesh@36
303D3DXTessellateNPatches@24
304D3DXTessellateRectPatch@20
305D3DXTessellateTriPatch@20
306D3DXTriPatchSize@12
307D3DXUVAtlasCreate@76
308D3DXUVAtlasPack@44
309D3DXUVAtlasPartition@68
310D3DXValidMesh@12
311D3DXValidPatchMesh@16
312D3DXVec2BaryCentric@24
313D3DXVec2CatmullRom@24
314D3DXVec2Hermite@24
315D3DXVec2Normalize@8
316D3DXVec2Transform@12
317D3DXVec2TransformArray@24
318D3DXVec2TransformCoord@12
319D3DXVec2TransformCoordArray@24
320D3DXVec2TransformNormal@12
321D3DXVec2TransformNormalArray@24
322D3DXVec3BaryCentric@24
323D3DXVec3CatmullRom@24
324D3DXVec3Hermite@24
325D3DXVec3Normalize@8
326D3DXVec3Project@24
327D3DXVec3ProjectArray@36
328D3DXVec3Transform@12
329D3DXVec3TransformArray@24
330D3DXVec3TransformCoord@12
331D3DXVec3TransformCoordArray@24
332D3DXVec3TransformNormal@12
333D3DXVec3TransformNormalArray@24
334D3DXVec3Unproject@24
335D3DXVec3UnprojectArray@36
336D3DXVec4BaryCentric@24
337D3DXVec4CatmullRom@24
338D3DXVec4Cross@16
339D3DXVec4Hermite@24
340D3DXVec4Normalize@8
341D3DXVec4Transform@12
342D3DXVec4TransformArray@24
343D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_39.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_39.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_39.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateFragmentLinkerEx@16
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderConstantTableEx@12
169D3DXGetShaderInputSemantics@12
170D3DXGetShaderOutputSemantics@12
171D3DXGetShaderSamplers@12
172D3DXGetShaderSize@4
173D3DXGetShaderVersion@4
174D3DXGetVertexShaderProfile@4
175D3DXIntersect@40
176D3DXIntersectSubset@44
177D3DXIntersectTri@32
178D3DXLoadMeshFromXA@32
179D3DXLoadMeshFromXInMemory@36
180D3DXLoadMeshFromXResource@40
181D3DXLoadMeshFromXW@32
182D3DXLoadMeshFromXof@32
183D3DXLoadMeshHierarchyFromXA@28
184D3DXLoadMeshHierarchyFromXInMemory@32
185D3DXLoadMeshHierarchyFromXW@28
186D3DXLoadPRTBufferFromFileA@8
187D3DXLoadPRTBufferFromFileW@8
188D3DXLoadPRTCompBufferFromFileA@8
189D3DXLoadPRTCompBufferFromFileW@8
190D3DXLoadPatchMeshFromXof@28
191D3DXLoadSkinMeshFromXof@36
192D3DXLoadSurfaceFromFileA@32
193D3DXLoadSurfaceFromFileInMemory@36
194D3DXLoadSurfaceFromFileW@32
195D3DXLoadSurfaceFromMemory@40
196D3DXLoadSurfaceFromResourceA@36
197D3DXLoadSurfaceFromResourceW@36
198D3DXLoadSurfaceFromSurface@32
199D3DXLoadVolumeFromFileA@32
200D3DXLoadVolumeFromFileInMemory@36
201D3DXLoadVolumeFromFileW@32
202D3DXLoadVolumeFromMemory@44
203D3DXLoadVolumeFromResourceA@36
204D3DXLoadVolumeFromResourceW@36
205D3DXLoadVolumeFromVolume@32
206D3DXMatrixAffineTransformation2D@20
207D3DXMatrixAffineTransformation@20
208D3DXMatrixDecompose@16
209D3DXMatrixDeterminant@4
210D3DXMatrixInverse@12
211D3DXMatrixLookAtLH@16
212D3DXMatrixLookAtRH@16
213D3DXMatrixMultiply@12
214D3DXMatrixMultiplyTranspose@12
215D3DXMatrixOrthoLH@20
216D3DXMatrixOrthoOffCenterLH@28
217D3DXMatrixOrthoOffCenterRH@28
218D3DXMatrixOrthoRH@20
219D3DXMatrixPerspectiveFovLH@20
220D3DXMatrixPerspectiveFovRH@20
221D3DXMatrixPerspectiveLH@20
222D3DXMatrixPerspectiveOffCenterLH@28
223D3DXMatrixPerspectiveOffCenterRH@28
224D3DXMatrixPerspectiveRH@20
225D3DXMatrixReflect@8
226D3DXMatrixRotationAxis@12
227D3DXMatrixRotationQuaternion@8
228D3DXMatrixRotationX@8
229D3DXMatrixRotationY@8
230D3DXMatrixRotationYawPitchRoll@16
231D3DXMatrixRotationZ@8
232D3DXMatrixScaling@16
233D3DXMatrixShadow@12
234D3DXMatrixTransformation2D@28
235D3DXMatrixTransformation@28
236D3DXMatrixTranslation@16
237D3DXMatrixTranspose@8
238D3DXOptimizeFaces@20
239D3DXOptimizeVertices@20
240D3DXPlaneFromPointNormal@12
241D3DXPlaneFromPoints@16
242D3DXPlaneIntersectLine@16
243D3DXPlaneNormalize@8
244D3DXPlaneTransform@12
245D3DXPlaneTransformArray@24
246D3DXPreprocessShader@24
247D3DXPreprocessShaderFromFileA@20
248D3DXPreprocessShaderFromFileW@20
249D3DXPreprocessShaderFromResourceA@24
250D3DXPreprocessShaderFromResourceW@24
251D3DXQuaternionBaryCentric@24
252D3DXQuaternionExp@8
253D3DXQuaternionInverse@8
254D3DXQuaternionLn@8
255D3DXQuaternionMultiply@12
256D3DXQuaternionNormalize@8
257D3DXQuaternionRotationAxis@12
258D3DXQuaternionRotationMatrix@8
259D3DXQuaternionRotationYawPitchRoll@16
260D3DXQuaternionSlerp@16
261D3DXQuaternionSquad@24
262D3DXQuaternionSquadSetup@28
263D3DXQuaternionToAxisAngle@12
264D3DXRectPatchSize@12
265D3DXSHAdd@16
266D3DXSHDot@12
267D3DXSHEvalConeLight@36
268D3DXSHEvalDirection@12
269D3DXSHEvalDirectionalLight@32
270D3DXSHEvalHemisphereLight@52
271D3DXSHEvalSphericalLight@36
272D3DXSHMultiply2@12
273D3DXSHMultiply3@12
274D3DXSHMultiply4@12
275D3DXSHMultiply5@12
276D3DXSHMultiply6@12
277D3DXSHPRTCompSplitMeshSC@64
278D3DXSHPRTCompSuperCluster@24
279D3DXSHProjectCubeMap@20
280D3DXSHRotate@16
281D3DXSHRotateZ@16
282D3DXSHScale@16
283D3DXSaveMeshHierarchyToFileA@20
284D3DXSaveMeshHierarchyToFileW@20
285D3DXSaveMeshToXA@28
286D3DXSaveMeshToXW@28
287D3DXSavePRTBufferToFileA@8
288D3DXSavePRTBufferToFileW@8
289D3DXSavePRTCompBufferToFileA@8
290D3DXSavePRTCompBufferToFileW@8
291D3DXSaveSurfaceToFileA@20
292D3DXSaveSurfaceToFileInMemory@20
293D3DXSaveSurfaceToFileW@20
294D3DXSaveTextureToFileA@16
295D3DXSaveTextureToFileInMemory@16
296D3DXSaveTextureToFileW@16
297D3DXSaveVolumeToFileA@20
298D3DXSaveVolumeToFileInMemory@20
299D3DXSaveVolumeToFileW@20
300D3DXSimplifyMesh@28
301D3DXSphereBoundProbe@16
302D3DXSplitMesh@36
303D3DXTessellateNPatches@24
304D3DXTessellateRectPatch@20
305D3DXTessellateTriPatch@20
306D3DXTriPatchSize@12
307D3DXUVAtlasCreate@76
308D3DXUVAtlasPack@44
309D3DXUVAtlasPartition@68
310D3DXValidMesh@12
311D3DXValidPatchMesh@16
312D3DXVec2BaryCentric@24
313D3DXVec2CatmullRom@24
314D3DXVec2Hermite@24
315D3DXVec2Normalize@8
316D3DXVec2Transform@12
317D3DXVec2TransformArray@24
318D3DXVec2TransformCoord@12
319D3DXVec2TransformCoordArray@24
320D3DXVec2TransformNormal@12
321D3DXVec2TransformNormalArray@24
322D3DXVec3BaryCentric@24
323D3DXVec3CatmullRom@24
324D3DXVec3Hermite@24
325D3DXVec3Normalize@8
326D3DXVec3Project@24
327D3DXVec3ProjectArray@36
328D3DXVec3Transform@12
329D3DXVec3TransformArray@24
330D3DXVec3TransformCoord@12
331D3DXVec3TransformCoordArray@24
332D3DXVec3TransformNormal@12
333D3DXVec3TransformNormalArray@24
334D3DXVec3Unproject@24
335D3DXVec3UnprojectArray@36
336D3DXVec4BaryCentric@24
337D3DXVec4CatmullRom@24
338D3DXVec4Cross@16
339D3DXVec4Hermite@24
340D3DXVec4Normalize@8
341D3DXVec4Transform@12
342D3DXVec4TransformArray@24
343D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_40.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_40.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateFragmentLinkerEx@16
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderConstantTableEx@12
169D3DXGetShaderInputSemantics@12
170D3DXGetShaderOutputSemantics@12
171D3DXGetShaderSamplers@12
172D3DXGetShaderSize@4
173D3DXGetShaderVersion@4
174D3DXGetVertexShaderProfile@4
175D3DXIntersect@40
176D3DXIntersectSubset@44
177D3DXIntersectTri@32
178D3DXLoadMeshFromXA@32
179D3DXLoadMeshFromXInMemory@36
180D3DXLoadMeshFromXResource@40
181D3DXLoadMeshFromXW@32
182D3DXLoadMeshFromXof@32
183D3DXLoadMeshHierarchyFromXA@28
184D3DXLoadMeshHierarchyFromXInMemory@32
185D3DXLoadMeshHierarchyFromXW@28
186D3DXLoadPRTBufferFromFileA@8
187D3DXLoadPRTBufferFromFileW@8
188D3DXLoadPRTCompBufferFromFileA@8
189D3DXLoadPRTCompBufferFromFileW@8
190D3DXLoadPatchMeshFromXof@28
191D3DXLoadSkinMeshFromXof@36
192D3DXLoadSurfaceFromFileA@32
193D3DXLoadSurfaceFromFileInMemory@36
194D3DXLoadSurfaceFromFileW@32
195D3DXLoadSurfaceFromMemory@40
196D3DXLoadSurfaceFromResourceA@36
197D3DXLoadSurfaceFromResourceW@36
198D3DXLoadSurfaceFromSurface@32
199D3DXLoadVolumeFromFileA@32
200D3DXLoadVolumeFromFileInMemory@36
201D3DXLoadVolumeFromFileW@32
202D3DXLoadVolumeFromMemory@44
203D3DXLoadVolumeFromResourceA@36
204D3DXLoadVolumeFromResourceW@36
205D3DXLoadVolumeFromVolume@32
206D3DXMatrixAffineTransformation2D@20
207D3DXMatrixAffineTransformation@20
208D3DXMatrixDecompose@16
209D3DXMatrixDeterminant@4
210D3DXMatrixInverse@12
211D3DXMatrixLookAtLH@16
212D3DXMatrixLookAtRH@16
213D3DXMatrixMultiply@12
214D3DXMatrixMultiplyTranspose@12
215D3DXMatrixOrthoLH@20
216D3DXMatrixOrthoOffCenterLH@28
217D3DXMatrixOrthoOffCenterRH@28
218D3DXMatrixOrthoRH@20
219D3DXMatrixPerspectiveFovLH@20
220D3DXMatrixPerspectiveFovRH@20
221D3DXMatrixPerspectiveLH@20
222D3DXMatrixPerspectiveOffCenterLH@28
223D3DXMatrixPerspectiveOffCenterRH@28
224D3DXMatrixPerspectiveRH@20
225D3DXMatrixReflect@8
226D3DXMatrixRotationAxis@12
227D3DXMatrixRotationQuaternion@8
228D3DXMatrixRotationX@8
229D3DXMatrixRotationY@8
230D3DXMatrixRotationYawPitchRoll@16
231D3DXMatrixRotationZ@8
232D3DXMatrixScaling@16
233D3DXMatrixShadow@12
234D3DXMatrixTransformation2D@28
235D3DXMatrixTransformation@28
236D3DXMatrixTranslation@16
237D3DXMatrixTranspose@8
238D3DXOptimizeFaces@20
239D3DXOptimizeVertices@20
240D3DXPlaneFromPointNormal@12
241D3DXPlaneFromPoints@16
242D3DXPlaneIntersectLine@16
243D3DXPlaneNormalize@8
244D3DXPlaneTransform@12
245D3DXPlaneTransformArray@24
246D3DXPreprocessShader@24
247D3DXPreprocessShaderFromFileA@20
248D3DXPreprocessShaderFromFileW@20
249D3DXPreprocessShaderFromResourceA@24
250D3DXPreprocessShaderFromResourceW@24
251D3DXQuaternionBaryCentric@24
252D3DXQuaternionExp@8
253D3DXQuaternionInverse@8
254D3DXQuaternionLn@8
255D3DXQuaternionMultiply@12
256D3DXQuaternionNormalize@8
257D3DXQuaternionRotationAxis@12
258D3DXQuaternionRotationMatrix@8
259D3DXQuaternionRotationYawPitchRoll@16
260D3DXQuaternionSlerp@16
261D3DXQuaternionSquad@24
262D3DXQuaternionSquadSetup@28
263D3DXQuaternionToAxisAngle@12
264D3DXRectPatchSize@12
265D3DXSHAdd@16
266D3DXSHDot@12
267D3DXSHEvalConeLight@36
268D3DXSHEvalDirection@12
269D3DXSHEvalDirectionalLight@32
270D3DXSHEvalHemisphereLight@52
271D3DXSHEvalSphericalLight@36
272D3DXSHMultiply2@12
273D3DXSHMultiply3@12
274D3DXSHMultiply4@12
275D3DXSHMultiply5@12
276D3DXSHMultiply6@12
277D3DXSHPRTCompSplitMeshSC@64
278D3DXSHPRTCompSuperCluster@24
279D3DXSHProjectCubeMap@20
280D3DXSHRotate@16
281D3DXSHRotateZ@16
282D3DXSHScale@16
283D3DXSaveMeshHierarchyToFileA@20
284D3DXSaveMeshHierarchyToFileW@20
285D3DXSaveMeshToXA@28
286D3DXSaveMeshToXW@28
287D3DXSavePRTBufferToFileA@8
288D3DXSavePRTBufferToFileW@8
289D3DXSavePRTCompBufferToFileA@8
290D3DXSavePRTCompBufferToFileW@8
291D3DXSaveSurfaceToFileA@20
292D3DXSaveSurfaceToFileInMemory@20
293D3DXSaveSurfaceToFileW@20
294D3DXSaveTextureToFileA@16
295D3DXSaveTextureToFileInMemory@16
296D3DXSaveTextureToFileW@16
297D3DXSaveVolumeToFileA@20
298D3DXSaveVolumeToFileInMemory@20
299D3DXSaveVolumeToFileW@20
300D3DXSimplifyMesh@28
301D3DXSphereBoundProbe@16
302D3DXSplitMesh@36
303D3DXTessellateNPatches@24
304D3DXTessellateRectPatch@20
305D3DXTessellateTriPatch@20
306D3DXTriPatchSize@12
307D3DXUVAtlasCreate@76
308D3DXUVAtlasPack@44
309D3DXUVAtlasPartition@68
310D3DXValidMesh@12
311D3DXValidPatchMesh@16
312D3DXVec2BaryCentric@24
313D3DXVec2CatmullRom@24
314D3DXVec2Hermite@24
315D3DXVec2Normalize@8
316D3DXVec2Transform@12
317D3DXVec2TransformArray@24
318D3DXVec2TransformCoord@12
319D3DXVec2TransformCoordArray@24
320D3DXVec2TransformNormal@12
321D3DXVec2TransformNormalArray@24
322D3DXVec3BaryCentric@24
323D3DXVec3CatmullRom@24
324D3DXVec3Hermite@24
325D3DXVec3Normalize@8
326D3DXVec3Project@24
327D3DXVec3ProjectArray@36
328D3DXVec3Transform@12
329D3DXVec3TransformArray@24
330D3DXVec3TransformCoord@12
331D3DXVec3TransformCoordArray@24
332D3DXVec3TransformNormal@12
333D3DXVec3TransformNormalArray@24
334D3DXVec3Unproject@24
335D3DXVec3UnprojectArray@36
336D3DXVec4BaryCentric@24
337D3DXVec4CatmullRom@24
338D3DXVec4Cross@16
339D3DXVec4Hermite@24
340D3DXVec4Normalize@8
341D3DXVec4Transform@12
342D3DXVec4TransformArray@24
343D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_41.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_41.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_41.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateFragmentLinker@12
77D3DXCreateFragmentLinkerEx@16
78D3DXCreateKeyframedAnimationSet@32
79D3DXCreateLine@8
80D3DXCreateMatrixStack@8
81D3DXCreateMesh@24
82D3DXCreateMeshFVF@24
83D3DXCreateNPatchMesh@8
84D3DXCreatePMeshFromStream@28
85D3DXCreatePRTBuffer@16
86D3DXCreatePRTBufferTex@20
87D3DXCreatePRTCompBuffer@28
88D3DXCreatePRTEngine@20
89D3DXCreatePatchMesh@28
90D3DXCreatePolygon@20
91D3DXCreateRenderToEnvMap@28
92D3DXCreateRenderToSurface@28
93D3DXCreateSPMesh@20
94D3DXCreateSkinInfo@16
95D3DXCreateSkinInfoFVF@16
96D3DXCreateSkinInfoFromBlendedMesh@16
97D3DXCreateSphere@24
98D3DXCreateSprite@8
99D3DXCreateTeapot@12
100D3DXCreateTextA@32
101D3DXCreateTextW@32
102D3DXCreateTexture@32
103D3DXCreateTextureFromFileA@12
104D3DXCreateTextureFromFileExA@56
105D3DXCreateTextureFromFileExW@56
106D3DXCreateTextureFromFileInMemory@16
107D3DXCreateTextureFromFileInMemoryEx@60
108D3DXCreateTextureFromFileW@12
109D3DXCreateTextureFromResourceA@16
110D3DXCreateTextureFromResourceExA@60
111D3DXCreateTextureFromResourceExW@60
112D3DXCreateTextureFromResourceW@16
113D3DXCreateTextureGutterHelper@20
114D3DXCreateTextureShader@8
115D3DXCreateTorus@28
116D3DXCreateVolumeTexture@36
117D3DXCreateVolumeTextureFromFileA@12
118D3DXCreateVolumeTextureFromFileExA@60
119D3DXCreateVolumeTextureFromFileExW@60
120D3DXCreateVolumeTextureFromFileInMemory@16
121D3DXCreateVolumeTextureFromFileInMemoryEx@64
122D3DXCreateVolumeTextureFromFileW@12
123D3DXCreateVolumeTextureFromResourceA@16
124D3DXCreateVolumeTextureFromResourceExA@64
125D3DXCreateVolumeTextureFromResourceExW@64
126D3DXCreateVolumeTextureFromResourceW@16
127D3DXDebugMute@4
128D3DXDeclaratorFromFVF@8
129D3DXDisassembleEffect@12
130D3DXDisassembleShader@16
131D3DXFVFFromDeclarator@8
132D3DXFileCreate@4
133D3DXFillCubeTexture@12
134D3DXFillCubeTextureTX@8
135D3DXFillTexture@12
136D3DXFillTextureTX@8
137D3DXFillVolumeTexture@12
138D3DXFillVolumeTextureTX@8
139D3DXFilterTexture@16
140D3DXFindShaderComment@16
141D3DXFloat16To32Array@12
142D3DXFloat32To16Array@12
143D3DXFrameAppendChild@8
144D3DXFrameCalculateBoundingSphere@12
145D3DXFrameDestroy@8
146D3DXFrameFind@8
147D3DXFrameNumNamedMatrices@4
148D3DXFrameRegisterNamedMatrices@8
149D3DXFresnelTerm@8
150D3DXGatherFragments@28
151D3DXGatherFragmentsFromFileA@24
152D3DXGatherFragmentsFromFileW@24
153D3DXGatherFragmentsFromResourceA@28
154D3DXGatherFragmentsFromResourceW@28
155D3DXGenerateOutputDecl@8
156D3DXGeneratePMesh@28
157D3DXGetDeclLength@4
158D3DXGetDeclVertexSize@8
159D3DXGetDriverLevel@4
160D3DXGetFVFVertexSize@4
161D3DXGetImageInfoFromFileA@8
162D3DXGetImageInfoFromFileInMemory@12
163D3DXGetImageInfoFromFileW@8
164D3DXGetImageInfoFromResourceA@12
165D3DXGetImageInfoFromResourceW@12
166D3DXGetPixelShaderProfile@4
167D3DXGetShaderConstantTable@8
168D3DXGetShaderConstantTableEx@12
169D3DXGetShaderInputSemantics@12
170D3DXGetShaderOutputSemantics@12
171D3DXGetShaderSamplers@12
172D3DXGetShaderSize@4
173D3DXGetShaderVersion@4
174D3DXGetVertexShaderProfile@4
175D3DXIntersect@40
176D3DXIntersectSubset@44
177D3DXIntersectTri@32
178D3DXLoadMeshFromXA@32
179D3DXLoadMeshFromXInMemory@36
180D3DXLoadMeshFromXResource@40
181D3DXLoadMeshFromXW@32
182D3DXLoadMeshFromXof@32
183D3DXLoadMeshHierarchyFromXA@28
184D3DXLoadMeshHierarchyFromXInMemory@32
185D3DXLoadMeshHierarchyFromXW@28
186D3DXLoadPRTBufferFromFileA@8
187D3DXLoadPRTBufferFromFileW@8
188D3DXLoadPRTCompBufferFromFileA@8
189D3DXLoadPRTCompBufferFromFileW@8
190D3DXLoadPatchMeshFromXof@28
191D3DXLoadSkinMeshFromXof@36
192D3DXLoadSurfaceFromFileA@32
193D3DXLoadSurfaceFromFileInMemory@36
194D3DXLoadSurfaceFromFileW@32
195D3DXLoadSurfaceFromMemory@40
196D3DXLoadSurfaceFromResourceA@36
197D3DXLoadSurfaceFromResourceW@36
198D3DXLoadSurfaceFromSurface@32
199D3DXLoadVolumeFromFileA@32
200D3DXLoadVolumeFromFileInMemory@36
201D3DXLoadVolumeFromFileW@32
202D3DXLoadVolumeFromMemory@44
203D3DXLoadVolumeFromResourceA@36
204D3DXLoadVolumeFromResourceW@36
205D3DXLoadVolumeFromVolume@32
206D3DXMatrixAffineTransformation2D@20
207D3DXMatrixAffineTransformation@20
208D3DXMatrixDecompose@16
209D3DXMatrixDeterminant@4
210D3DXMatrixInverse@12
211D3DXMatrixLookAtLH@16
212D3DXMatrixLookAtRH@16
213D3DXMatrixMultiply@12
214D3DXMatrixMultiplyTranspose@12
215D3DXMatrixOrthoLH@20
216D3DXMatrixOrthoOffCenterLH@28
217D3DXMatrixOrthoOffCenterRH@28
218D3DXMatrixOrthoRH@20
219D3DXMatrixPerspectiveFovLH@20
220D3DXMatrixPerspectiveFovRH@20
221D3DXMatrixPerspectiveLH@20
222D3DXMatrixPerspectiveOffCenterLH@28
223D3DXMatrixPerspectiveOffCenterRH@28
224D3DXMatrixPerspectiveRH@20
225D3DXMatrixReflect@8
226D3DXMatrixRotationAxis@12
227D3DXMatrixRotationQuaternion@8
228D3DXMatrixRotationX@8
229D3DXMatrixRotationY@8
230D3DXMatrixRotationYawPitchRoll@16
231D3DXMatrixRotationZ@8
232D3DXMatrixScaling@16
233D3DXMatrixShadow@12
234D3DXMatrixTransformation2D@28
235D3DXMatrixTransformation@28
236D3DXMatrixTranslation@16
237D3DXMatrixTranspose@8
238D3DXOptimizeFaces@20
239D3DXOptimizeVertices@20
240D3DXPlaneFromPointNormal@12
241D3DXPlaneFromPoints@16
242D3DXPlaneIntersectLine@16
243D3DXPlaneNormalize@8
244D3DXPlaneTransform@12
245D3DXPlaneTransformArray@24
246D3DXPreprocessShader@24
247D3DXPreprocessShaderFromFileA@20
248D3DXPreprocessShaderFromFileW@20
249D3DXPreprocessShaderFromResourceA@24
250D3DXPreprocessShaderFromResourceW@24
251D3DXQuaternionBaryCentric@24
252D3DXQuaternionExp@8
253D3DXQuaternionInverse@8
254D3DXQuaternionLn@8
255D3DXQuaternionMultiply@12
256D3DXQuaternionNormalize@8
257D3DXQuaternionRotationAxis@12
258D3DXQuaternionRotationMatrix@8
259D3DXQuaternionRotationYawPitchRoll@16
260D3DXQuaternionSlerp@16
261D3DXQuaternionSquad@24
262D3DXQuaternionSquadSetup@28
263D3DXQuaternionToAxisAngle@12
264D3DXRectPatchSize@12
265D3DXSHAdd@16
266D3DXSHDot@12
267D3DXSHEvalConeLight@36
268D3DXSHEvalDirection@12
269D3DXSHEvalDirectionalLight@32
270D3DXSHEvalHemisphereLight@52
271D3DXSHEvalSphericalLight@36
272D3DXSHMultiply2@12
273D3DXSHMultiply3@12
274D3DXSHMultiply4@12
275D3DXSHMultiply5@12
276D3DXSHMultiply6@12
277D3DXSHPRTCompSplitMeshSC@64
278D3DXSHPRTCompSuperCluster@24
279D3DXSHProjectCubeMap@20
280D3DXSHRotate@16
281D3DXSHRotateZ@16
282D3DXSHScale@16
283D3DXSaveMeshHierarchyToFileA@20
284D3DXSaveMeshHierarchyToFileW@20
285D3DXSaveMeshToXA@28
286D3DXSaveMeshToXW@28
287D3DXSavePRTBufferToFileA@8
288D3DXSavePRTBufferToFileW@8
289D3DXSavePRTCompBufferToFileA@8
290D3DXSavePRTCompBufferToFileW@8
291D3DXSaveSurfaceToFileA@20
292D3DXSaveSurfaceToFileInMemory@20
293D3DXSaveSurfaceToFileW@20
294D3DXSaveTextureToFileA@16
295D3DXSaveTextureToFileInMemory@16
296D3DXSaveTextureToFileW@16
297D3DXSaveVolumeToFileA@20
298D3DXSaveVolumeToFileInMemory@20
299D3DXSaveVolumeToFileW@20
300D3DXSimplifyMesh@28
301D3DXSphereBoundProbe@16
302D3DXSplitMesh@36
303D3DXTessellateNPatches@24
304D3DXTessellateRectPatch@20
305D3DXTessellateTriPatch@20
306D3DXTriPatchSize@12
307D3DXUVAtlasCreate@76
308D3DXUVAtlasPack@44
309D3DXUVAtlasPartition@68
310D3DXValidMesh@12
311D3DXValidPatchMesh@16
312D3DXVec2BaryCentric@24
313D3DXVec2CatmullRom@24
314D3DXVec2Hermite@24
315D3DXVec2Normalize@8
316D3DXVec2Transform@12
317D3DXVec2TransformArray@24
318D3DXVec2TransformCoord@12
319D3DXVec2TransformCoordArray@24
320D3DXVec2TransformNormal@12
321D3DXVec2TransformNormalArray@24
322D3DXVec3BaryCentric@24
323D3DXVec3CatmullRom@24
324D3DXVec3Hermite@24
325D3DXVec3Normalize@8
326D3DXVec3Project@24
327D3DXVec3ProjectArray@36
328D3DXVec3Transform@12
329D3DXVec3TransformArray@24
330D3DXVec3TransformCoord@12
331D3DXVec3TransformCoordArray@24
332D3DXVec3TransformNormal@12
333D3DXVec3TransformNormalArray@24
334D3DXVec3Unproject@24
335D3DXVec3UnprojectArray@36
336D3DXVec4BaryCentric@24
337D3DXVec4CatmullRom@24
338D3DXVec4Cross@16
339D3DXVec4Hermite@24
340D3DXVec4Normalize@8
341D3DXVec4Transform@12
342D3DXVec4TransformArray@24
343D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_42.def created+336
......@@ -0,0 +1,336 @@
1;
2; Definition file of d3dx9_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_42.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateKeyframedAnimationSet@32
77D3DXCreateLine@8
78D3DXCreateMatrixStack@8
79D3DXCreateMesh@24
80D3DXCreateMeshFVF@24
81D3DXCreateNPatchMesh@8
82D3DXCreatePMeshFromStream@28
83D3DXCreatePRTBuffer@16
84D3DXCreatePRTBufferTex@20
85D3DXCreatePRTCompBuffer@28
86D3DXCreatePRTEngine@20
87D3DXCreatePatchMesh@28
88D3DXCreatePolygon@20
89D3DXCreateRenderToEnvMap@28
90D3DXCreateRenderToSurface@28
91D3DXCreateSPMesh@20
92D3DXCreateSkinInfo@16
93D3DXCreateSkinInfoFVF@16
94D3DXCreateSkinInfoFromBlendedMesh@16
95D3DXCreateSphere@24
96D3DXCreateSprite@8
97D3DXCreateTeapot@12
98D3DXCreateTextA@32
99D3DXCreateTextW@32
100D3DXCreateTexture@32
101D3DXCreateTextureFromFileA@12
102D3DXCreateTextureFromFileExA@56
103D3DXCreateTextureFromFileExW@56
104D3DXCreateTextureFromFileInMemory@16
105D3DXCreateTextureFromFileInMemoryEx@60
106D3DXCreateTextureFromFileW@12
107D3DXCreateTextureFromResourceA@16
108D3DXCreateTextureFromResourceExA@60
109D3DXCreateTextureFromResourceExW@60
110D3DXCreateTextureFromResourceW@16
111D3DXCreateTextureGutterHelper@20
112D3DXCreateTextureShader@8
113D3DXCreateTorus@28
114D3DXCreateVolumeTexture@36
115D3DXCreateVolumeTextureFromFileA@12
116D3DXCreateVolumeTextureFromFileExA@60
117D3DXCreateVolumeTextureFromFileExW@60
118D3DXCreateVolumeTextureFromFileInMemory@16
119D3DXCreateVolumeTextureFromFileInMemoryEx@64
120D3DXCreateVolumeTextureFromFileW@12
121D3DXCreateVolumeTextureFromResourceA@16
122D3DXCreateVolumeTextureFromResourceExA@64
123D3DXCreateVolumeTextureFromResourceExW@64
124D3DXCreateVolumeTextureFromResourceW@16
125D3DXDebugMute@4
126D3DXDeclaratorFromFVF@8
127D3DXDisassembleEffect@12
128D3DXDisassembleShader@16
129D3DXFVFFromDeclarator@8
130D3DXFileCreate@4
131D3DXFillCubeTexture@12
132D3DXFillCubeTextureTX@8
133D3DXFillTexture@12
134D3DXFillTextureTX@8
135D3DXFillVolumeTexture@12
136D3DXFillVolumeTextureTX@8
137D3DXFilterTexture@16
138D3DXFindShaderComment@16
139D3DXFloat16To32Array@12
140D3DXFloat32To16Array@12
141D3DXFrameAppendChild@8
142D3DXFrameCalculateBoundingSphere@12
143D3DXFrameDestroy@8
144D3DXFrameFind@8
145D3DXFrameNumNamedMatrices@4
146D3DXFrameRegisterNamedMatrices@8
147D3DXFresnelTerm@8
148D3DXGenerateOutputDecl@8
149D3DXGeneratePMesh@28
150D3DXGetDeclLength@4
151D3DXGetDeclVertexSize@8
152D3DXGetDriverLevel@4
153D3DXGetFVFVertexSize@4
154D3DXGetImageInfoFromFileA@8
155D3DXGetImageInfoFromFileInMemory@12
156D3DXGetImageInfoFromFileW@8
157D3DXGetImageInfoFromResourceA@12
158D3DXGetImageInfoFromResourceW@12
159D3DXGetPixelShaderProfile@4
160D3DXGetShaderConstantTable@8
161D3DXGetShaderConstantTableEx@12
162D3DXGetShaderInputSemantics@12
163D3DXGetShaderOutputSemantics@12
164D3DXGetShaderSamplers@12
165D3DXGetShaderSize@4
166D3DXGetShaderVersion@4
167D3DXGetVertexShaderProfile@4
168D3DXIntersect@40
169D3DXIntersectSubset@44
170D3DXIntersectTri@32
171D3DXLoadMeshFromXA@32
172D3DXLoadMeshFromXInMemory@36
173D3DXLoadMeshFromXResource@40
174D3DXLoadMeshFromXW@32
175D3DXLoadMeshFromXof@32
176D3DXLoadMeshHierarchyFromXA@28
177D3DXLoadMeshHierarchyFromXInMemory@32
178D3DXLoadMeshHierarchyFromXW@28
179D3DXLoadPRTBufferFromFileA@8
180D3DXLoadPRTBufferFromFileW@8
181D3DXLoadPRTCompBufferFromFileA@8
182D3DXLoadPRTCompBufferFromFileW@8
183D3DXLoadPatchMeshFromXof@28
184D3DXLoadSkinMeshFromXof@36
185D3DXLoadSurfaceFromFileA@32
186D3DXLoadSurfaceFromFileInMemory@36
187D3DXLoadSurfaceFromFileW@32
188D3DXLoadSurfaceFromMemory@40
189D3DXLoadSurfaceFromResourceA@36
190D3DXLoadSurfaceFromResourceW@36
191D3DXLoadSurfaceFromSurface@32
192D3DXLoadVolumeFromFileA@32
193D3DXLoadVolumeFromFileInMemory@36
194D3DXLoadVolumeFromFileW@32
195D3DXLoadVolumeFromMemory@44
196D3DXLoadVolumeFromResourceA@36
197D3DXLoadVolumeFromResourceW@36
198D3DXLoadVolumeFromVolume@32
199D3DXMatrixAffineTransformation2D@20
200D3DXMatrixAffineTransformation@20
201D3DXMatrixDecompose@16
202D3DXMatrixDeterminant@4
203D3DXMatrixInverse@12
204D3DXMatrixLookAtLH@16
205D3DXMatrixLookAtRH@16
206D3DXMatrixMultiply@12
207D3DXMatrixMultiplyTranspose@12
208D3DXMatrixOrthoLH@20
209D3DXMatrixOrthoOffCenterLH@28
210D3DXMatrixOrthoOffCenterRH@28
211D3DXMatrixOrthoRH@20
212D3DXMatrixPerspectiveFovLH@20
213D3DXMatrixPerspectiveFovRH@20
214D3DXMatrixPerspectiveLH@20
215D3DXMatrixPerspectiveOffCenterLH@28
216D3DXMatrixPerspectiveOffCenterRH@28
217D3DXMatrixPerspectiveRH@20
218D3DXMatrixReflect@8
219D3DXMatrixRotationAxis@12
220D3DXMatrixRotationQuaternion@8
221D3DXMatrixRotationX@8
222D3DXMatrixRotationY@8
223D3DXMatrixRotationYawPitchRoll@16
224D3DXMatrixRotationZ@8
225D3DXMatrixScaling@16
226D3DXMatrixShadow@12
227D3DXMatrixTransformation2D@28
228D3DXMatrixTransformation@28
229D3DXMatrixTranslation@16
230D3DXMatrixTranspose@8
231D3DXOptimizeFaces@20
232D3DXOptimizeVertices@20
233D3DXPlaneFromPointNormal@12
234D3DXPlaneFromPoints@16
235D3DXPlaneIntersectLine@16
236D3DXPlaneNormalize@8
237D3DXPlaneTransform@12
238D3DXPlaneTransformArray@24
239D3DXPreprocessShader@24
240D3DXPreprocessShaderFromFileA@20
241D3DXPreprocessShaderFromFileW@20
242D3DXPreprocessShaderFromResourceA@24
243D3DXPreprocessShaderFromResourceW@24
244D3DXQuaternionBaryCentric@24
245D3DXQuaternionExp@8
246D3DXQuaternionInverse@8
247D3DXQuaternionLn@8
248D3DXQuaternionMultiply@12
249D3DXQuaternionNormalize@8
250D3DXQuaternionRotationAxis@12
251D3DXQuaternionRotationMatrix@8
252D3DXQuaternionRotationYawPitchRoll@16
253D3DXQuaternionSlerp@16
254D3DXQuaternionSquad@24
255D3DXQuaternionSquadSetup@28
256D3DXQuaternionToAxisAngle@12
257D3DXRectPatchSize@12
258D3DXSHAdd@16
259D3DXSHDot@12
260D3DXSHEvalConeLight@36
261D3DXSHEvalDirection@12
262D3DXSHEvalDirectionalLight@32
263D3DXSHEvalHemisphereLight@52
264D3DXSHEvalSphericalLight@36
265D3DXSHMultiply2@12
266D3DXSHMultiply3@12
267D3DXSHMultiply4@12
268D3DXSHMultiply5@12
269D3DXSHMultiply6@12
270D3DXSHPRTCompSplitMeshSC@64
271D3DXSHPRTCompSuperCluster@24
272D3DXSHProjectCubeMap@20
273D3DXSHRotate@16
274D3DXSHRotateZ@16
275D3DXSHScale@16
276D3DXSaveMeshHierarchyToFileA@20
277D3DXSaveMeshHierarchyToFileW@20
278D3DXSaveMeshToXA@28
279D3DXSaveMeshToXW@28
280D3DXSavePRTBufferToFileA@8
281D3DXSavePRTBufferToFileW@8
282D3DXSavePRTCompBufferToFileA@8
283D3DXSavePRTCompBufferToFileW@8
284D3DXSaveSurfaceToFileA@20
285D3DXSaveSurfaceToFileInMemory@20
286D3DXSaveSurfaceToFileW@20
287D3DXSaveTextureToFileA@16
288D3DXSaveTextureToFileInMemory@16
289D3DXSaveTextureToFileW@16
290D3DXSaveVolumeToFileA@20
291D3DXSaveVolumeToFileInMemory@20
292D3DXSaveVolumeToFileW@20
293D3DXSimplifyMesh@28
294D3DXSphereBoundProbe@16
295D3DXSplitMesh@36
296D3DXTessellateNPatches@24
297D3DXTessellateRectPatch@20
298D3DXTessellateTriPatch@20
299D3DXTriPatchSize@12
300D3DXUVAtlasCreate@76
301D3DXUVAtlasPack@44
302D3DXUVAtlasPartition@68
303D3DXValidMesh@12
304D3DXValidPatchMesh@16
305D3DXVec2BaryCentric@24
306D3DXVec2CatmullRom@24
307D3DXVec2Hermite@24
308D3DXVec2Normalize@8
309D3DXVec2Transform@12
310D3DXVec2TransformArray@24
311D3DXVec2TransformCoord@12
312D3DXVec2TransformCoordArray@24
313D3DXVec2TransformNormal@12
314D3DXVec2TransformNormalArray@24
315D3DXVec3BaryCentric@24
316D3DXVec3CatmullRom@24
317D3DXVec3Hermite@24
318D3DXVec3Normalize@8
319D3DXVec3Project@24
320D3DXVec3ProjectArray@36
321D3DXVec3Transform@12
322D3DXVec3TransformArray@24
323D3DXVec3TransformCoord@12
324D3DXVec3TransformCoordArray@24
325D3DXVec3TransformNormal@12
326D3DXVec3TransformNormalArray@24
327D3DXVec3Unproject@24
328D3DXVec3UnprojectArray@36
329D3DXVec4BaryCentric@24
330D3DXVec4CatmullRom@24
331D3DXVec4Cross@16
332D3DXVec4Hermite@24
333D3DXVec4Normalize@8
334D3DXVec4Transform@12
335D3DXVec4TransformArray@24
336D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9_43.def created+336
......@@ -0,0 +1,336 @@
1;
2; Definition file of d3dx9_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_43.dll"
7EXPORTS
8D3DXAssembleShader@28
9D3DXAssembleShaderFromFileA@24
10D3DXAssembleShaderFromFileW@24
11D3DXAssembleShaderFromResourceA@28
12D3DXAssembleShaderFromResourceW@28
13D3DXBoxBoundProbe@16
14D3DXCheckCubeTextureRequirements@24
15D3DXCheckTextureRequirements@28
16D3DXCheckVersion@8
17D3DXCheckVolumeTextureRequirements@32
18D3DXCleanMesh@24
19D3DXColorAdjustContrast@12
20D3DXColorAdjustSaturation@12
21D3DXCompileShader@40
22D3DXCompileShaderFromFileA@36
23D3DXCompileShaderFromFileW@36
24D3DXCompileShaderFromResourceA@40
25D3DXCompileShaderFromResourceW@40
26D3DXComputeBoundingBox@20
27D3DXComputeBoundingSphere@20
28D3DXComputeIMTFromPerTexelSignal@44
29D3DXComputeIMTFromPerVertexSignal@32
30D3DXComputeIMTFromSignal@40
31D3DXComputeIMTFromTexture@28
32D3DXComputeNormalMap@24
33D3DXComputeNormals@8
34D3DXComputeTangent@24
35D3DXComputeTangentFrame@8
36D3DXComputeTangentFrameEx@64
37D3DXConcatenateMeshes@32
38D3DXConvertMeshSubsetToSingleStrip@20
39D3DXConvertMeshSubsetToStrips@28
40D3DXCreateAnimationController@20
41D3DXCreateBox@24
42D3DXCreateBuffer@8
43D3DXCreateCompressedAnimationSet@32
44D3DXCreateCubeTexture@28
45D3DXCreateCubeTextureFromFileA@12
46D3DXCreateCubeTextureFromFileExA@52
47D3DXCreateCubeTextureFromFileExW@52
48D3DXCreateCubeTextureFromFileInMemory@16
49D3DXCreateCubeTextureFromFileInMemoryEx@56
50D3DXCreateCubeTextureFromFileW@12
51D3DXCreateCubeTextureFromResourceA@16
52D3DXCreateCubeTextureFromResourceExA@56
53D3DXCreateCubeTextureFromResourceExW@56
54D3DXCreateCubeTextureFromResourceW@16
55D3DXCreateCylinder@32
56D3DXCreateEffect@36
57D3DXCreateEffectCompiler@28
58D3DXCreateEffectCompilerFromFileA@24
59D3DXCreateEffectCompilerFromFileW@24
60D3DXCreateEffectCompilerFromResourceA@28
61D3DXCreateEffectCompilerFromResourceW@28
62D3DXCreateEffectEx@40
63D3DXCreateEffectFromFileA@32
64D3DXCreateEffectFromFileExA@36
65D3DXCreateEffectFromFileExW@36
66D3DXCreateEffectFromFileW@32
67D3DXCreateEffectFromResourceA@36
68D3DXCreateEffectFromResourceExA@40
69D3DXCreateEffectFromResourceExW@40
70D3DXCreateEffectFromResourceW@36
71D3DXCreateEffectPool@4
72D3DXCreateFontA@48
73D3DXCreateFontIndirectA@12
74D3DXCreateFontIndirectW@12
75D3DXCreateFontW@48
76D3DXCreateKeyframedAnimationSet@32
77D3DXCreateLine@8
78D3DXCreateMatrixStack@8
79D3DXCreateMesh@24
80D3DXCreateMeshFVF@24
81D3DXCreateNPatchMesh@8
82D3DXCreatePMeshFromStream@28
83D3DXCreatePRTBuffer@16
84D3DXCreatePRTBufferTex@20
85D3DXCreatePRTCompBuffer@28
86D3DXCreatePRTEngine@20
87D3DXCreatePatchMesh@28
88D3DXCreatePolygon@20
89D3DXCreateRenderToEnvMap@28
90D3DXCreateRenderToSurface@28
91D3DXCreateSPMesh@20
92D3DXCreateSkinInfo@16
93D3DXCreateSkinInfoFVF@16
94D3DXCreateSkinInfoFromBlendedMesh@16
95D3DXCreateSphere@24
96D3DXCreateSprite@8
97D3DXCreateTeapot@12
98D3DXCreateTextA@32
99D3DXCreateTextW@32
100D3DXCreateTexture@32
101D3DXCreateTextureFromFileA@12
102D3DXCreateTextureFromFileExA@56
103D3DXCreateTextureFromFileExW@56
104D3DXCreateTextureFromFileInMemory@16
105D3DXCreateTextureFromFileInMemoryEx@60
106D3DXCreateTextureFromFileW@12
107D3DXCreateTextureFromResourceA@16
108D3DXCreateTextureFromResourceExA@60
109D3DXCreateTextureFromResourceExW@60
110D3DXCreateTextureFromResourceW@16
111D3DXCreateTextureGutterHelper@20
112D3DXCreateTextureShader@8
113D3DXCreateTorus@28
114D3DXCreateVolumeTexture@36
115D3DXCreateVolumeTextureFromFileA@12
116D3DXCreateVolumeTextureFromFileExA@60
117D3DXCreateVolumeTextureFromFileExW@60
118D3DXCreateVolumeTextureFromFileInMemory@16
119D3DXCreateVolumeTextureFromFileInMemoryEx@64
120D3DXCreateVolumeTextureFromFileW@12
121D3DXCreateVolumeTextureFromResourceA@16
122D3DXCreateVolumeTextureFromResourceExA@64
123D3DXCreateVolumeTextureFromResourceExW@64
124D3DXCreateVolumeTextureFromResourceW@16
125D3DXDebugMute@4
126D3DXDeclaratorFromFVF@8
127D3DXDisassembleEffect@12
128D3DXDisassembleShader@16
129D3DXFVFFromDeclarator@8
130D3DXFileCreate@4
131D3DXFillCubeTexture@12
132D3DXFillCubeTextureTX@8
133D3DXFillTexture@12
134D3DXFillTextureTX@8
135D3DXFillVolumeTexture@12
136D3DXFillVolumeTextureTX@8
137D3DXFilterTexture@16
138D3DXFindShaderComment@16
139D3DXFloat16To32Array@12
140D3DXFloat32To16Array@12
141D3DXFrameAppendChild@8
142D3DXFrameCalculateBoundingSphere@12
143D3DXFrameDestroy@8
144D3DXFrameFind@8
145D3DXFrameNumNamedMatrices@4
146D3DXFrameRegisterNamedMatrices@8
147D3DXFresnelTerm@8
148D3DXGenerateOutputDecl@8
149D3DXGeneratePMesh@28
150D3DXGetDeclLength@4
151D3DXGetDeclVertexSize@8
152D3DXGetDriverLevel@4
153D3DXGetFVFVertexSize@4
154D3DXGetImageInfoFromFileA@8
155D3DXGetImageInfoFromFileInMemory@12
156D3DXGetImageInfoFromFileW@8
157D3DXGetImageInfoFromResourceA@12
158D3DXGetImageInfoFromResourceW@12
159D3DXGetPixelShaderProfile@4
160D3DXGetShaderConstantTable@8
161D3DXGetShaderConstantTableEx@12
162D3DXGetShaderInputSemantics@12
163D3DXGetShaderOutputSemantics@12
164D3DXGetShaderSamplers@12
165D3DXGetShaderSize@4
166D3DXGetShaderVersion@4
167D3DXGetVertexShaderProfile@4
168D3DXIntersect@40
169D3DXIntersectSubset@44
170D3DXIntersectTri@32
171D3DXLoadMeshFromXA@32
172D3DXLoadMeshFromXInMemory@36
173D3DXLoadMeshFromXResource@40
174D3DXLoadMeshFromXW@32
175D3DXLoadMeshFromXof@32
176D3DXLoadMeshHierarchyFromXA@28
177D3DXLoadMeshHierarchyFromXInMemory@32
178D3DXLoadMeshHierarchyFromXW@28
179D3DXLoadPRTBufferFromFileA@8
180D3DXLoadPRTBufferFromFileW@8
181D3DXLoadPRTCompBufferFromFileA@8
182D3DXLoadPRTCompBufferFromFileW@8
183D3DXLoadPatchMeshFromXof@28
184D3DXLoadSkinMeshFromXof@36
185D3DXLoadSurfaceFromFileA@32
186D3DXLoadSurfaceFromFileInMemory@36
187D3DXLoadSurfaceFromFileW@32
188D3DXLoadSurfaceFromMemory@40
189D3DXLoadSurfaceFromResourceA@36
190D3DXLoadSurfaceFromResourceW@36
191D3DXLoadSurfaceFromSurface@32
192D3DXLoadVolumeFromFileA@32
193D3DXLoadVolumeFromFileInMemory@36
194D3DXLoadVolumeFromFileW@32
195D3DXLoadVolumeFromMemory@44
196D3DXLoadVolumeFromResourceA@36
197D3DXLoadVolumeFromResourceW@36
198D3DXLoadVolumeFromVolume@32
199D3DXMatrixAffineTransformation2D@20
200D3DXMatrixAffineTransformation@20
201D3DXMatrixDecompose@16
202D3DXMatrixDeterminant@4
203D3DXMatrixInverse@12
204D3DXMatrixLookAtLH@16
205D3DXMatrixLookAtRH@16
206D3DXMatrixMultiply@12
207D3DXMatrixMultiplyTranspose@12
208D3DXMatrixOrthoLH@20
209D3DXMatrixOrthoOffCenterLH@28
210D3DXMatrixOrthoOffCenterRH@28
211D3DXMatrixOrthoRH@20
212D3DXMatrixPerspectiveFovLH@20
213D3DXMatrixPerspectiveFovRH@20
214D3DXMatrixPerspectiveLH@20
215D3DXMatrixPerspectiveOffCenterLH@28
216D3DXMatrixPerspectiveOffCenterRH@28
217D3DXMatrixPerspectiveRH@20
218D3DXMatrixReflect@8
219D3DXMatrixRotationAxis@12
220D3DXMatrixRotationQuaternion@8
221D3DXMatrixRotationX@8
222D3DXMatrixRotationY@8
223D3DXMatrixRotationYawPitchRoll@16
224D3DXMatrixRotationZ@8
225D3DXMatrixScaling@16
226D3DXMatrixShadow@12
227D3DXMatrixTransformation2D@28
228D3DXMatrixTransformation@28
229D3DXMatrixTranslation@16
230D3DXMatrixTranspose@8
231D3DXOptimizeFaces@20
232D3DXOptimizeVertices@20
233D3DXPlaneFromPointNormal@12
234D3DXPlaneFromPoints@16
235D3DXPlaneIntersectLine@16
236D3DXPlaneNormalize@8
237D3DXPlaneTransform@12
238D3DXPlaneTransformArray@24
239D3DXPreprocessShader@24
240D3DXPreprocessShaderFromFileA@20
241D3DXPreprocessShaderFromFileW@20
242D3DXPreprocessShaderFromResourceA@24
243D3DXPreprocessShaderFromResourceW@24
244D3DXQuaternionBaryCentric@24
245D3DXQuaternionExp@8
246D3DXQuaternionInverse@8
247D3DXQuaternionLn@8
248D3DXQuaternionMultiply@12
249D3DXQuaternionNormalize@8
250D3DXQuaternionRotationAxis@12
251D3DXQuaternionRotationMatrix@8
252D3DXQuaternionRotationYawPitchRoll@16
253D3DXQuaternionSlerp@16
254D3DXQuaternionSquad@24
255D3DXQuaternionSquadSetup@28
256D3DXQuaternionToAxisAngle@12
257D3DXRectPatchSize@12
258D3DXSHAdd@16
259D3DXSHDot@12
260D3DXSHEvalConeLight@36
261D3DXSHEvalDirection@12
262D3DXSHEvalDirectionalLight@32
263D3DXSHEvalHemisphereLight@52
264D3DXSHEvalSphericalLight@36
265D3DXSHMultiply2@12
266D3DXSHMultiply3@12
267D3DXSHMultiply4@12
268D3DXSHMultiply5@12
269D3DXSHMultiply6@12
270D3DXSHPRTCompSplitMeshSC@64
271D3DXSHPRTCompSuperCluster@24
272D3DXSHProjectCubeMap@20
273D3DXSHRotate@16
274D3DXSHRotateZ@16
275D3DXSHScale@16
276D3DXSaveMeshHierarchyToFileA@20
277D3DXSaveMeshHierarchyToFileW@20
278D3DXSaveMeshToXA@28
279D3DXSaveMeshToXW@28
280D3DXSavePRTBufferToFileA@8
281D3DXSavePRTBufferToFileW@8
282D3DXSavePRTCompBufferToFileA@8
283D3DXSavePRTCompBufferToFileW@8
284D3DXSaveSurfaceToFileA@20
285D3DXSaveSurfaceToFileInMemory@20
286D3DXSaveSurfaceToFileW@20
287D3DXSaveTextureToFileA@16
288D3DXSaveTextureToFileInMemory@16
289D3DXSaveTextureToFileW@16
290D3DXSaveVolumeToFileA@20
291D3DXSaveVolumeToFileInMemory@20
292D3DXSaveVolumeToFileW@20
293D3DXSimplifyMesh@28
294D3DXSphereBoundProbe@16
295D3DXSplitMesh@36
296D3DXTessellateNPatches@24
297D3DXTessellateRectPatch@20
298D3DXTessellateTriPatch@20
299D3DXTriPatchSize@12
300D3DXUVAtlasCreate@76
301D3DXUVAtlasPack@44
302D3DXUVAtlasPartition@68
303D3DXValidMesh@12
304D3DXValidPatchMesh@16
305D3DXVec2BaryCentric@24
306D3DXVec2CatmullRom@24
307D3DXVec2Hermite@24
308D3DXVec2Normalize@8
309D3DXVec2Transform@12
310D3DXVec2TransformArray@24
311D3DXVec2TransformCoord@12
312D3DXVec2TransformCoordArray@24
313D3DXVec2TransformNormal@12
314D3DXVec2TransformNormalArray@24
315D3DXVec3BaryCentric@24
316D3DXVec3CatmullRom@24
317D3DXVec3Hermite@24
318D3DXVec3Normalize@8
319D3DXVec3Project@24
320D3DXVec3ProjectArray@36
321D3DXVec3Transform@12
322D3DXVec3TransformArray@24
323D3DXVec3TransformCoord@12
324D3DXVec3TransformCoordArray@24
325D3DXVec3TransformNormal@12
326D3DXVec3TransformNormalArray@24
327D3DXVec3Unproject@24
328D3DXVec3UnprojectArray@36
329D3DXVec4BaryCentric@24
330D3DXVec4CatmullRom@24
331D3DXVec4Cross@16
332D3DXVec4Hermite@24
333D3DXVec4Normalize@8
334D3DXVec4Transform@12
335D3DXVec4TransformArray@24
336D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dx9d.def created+269
......@@ -0,0 +1,269 @@
1LIBRARY d3dx9d.dll
2EXPORTS
3D3DXAssembleShader@28
4D3DXAssembleShaderFromFileA@24
5D3DXAssembleShaderFromFileW@24
6D3DXAssembleShaderFromResourceA@28
7D3DXAssembleShaderFromResourceW@28
8D3DXBoxBoundProbe@16
9D3DXCheckCubeTextureRequirements@24
10D3DXCheckTextureRequirements@28
11D3DXCheckVersion@8
12D3DXCheckVolumeTextureRequirements@32
13D3DXCleanMesh@20
14D3DXColorAdjustContrast@12
15D3DXColorAdjustSaturation@12
16D3DXCompileShader@40
17D3DXCompileShaderFromFileA@36
18D3DXCompileShaderFromFileW@36
19D3DXCompileShaderFromResourceA@40
20D3DXCompileShaderFromResourceW@40
21D3DXComputeBoundingBox@20
22D3DXComputeBoundingSphere@20
23D3DXComputeNormalMap@24
24D3DXComputeNormals@8
25D3DXComputeTangent@24
26D3DXConvertMeshSubsetToSingleStrip@20
27D3DXConvertMeshSubsetToStrips@28
28D3DXCpuOptimizations@4
29D3DXCreateAnimationController@20
30D3DXCreateAnimationSet@16
31D3DXCreateBox@24
32D3DXCreateBuffer@8
33D3DXCreateCubeTexture@28
34D3DXCreateCubeTextureFromFileA@12
35D3DXCreateCubeTextureFromFileExA@52
36D3DXCreateCubeTextureFromFileExW@52
37D3DXCreateCubeTextureFromFileInMemory@16
38D3DXCreateCubeTextureFromFileInMemoryEx@56
39D3DXCreateCubeTextureFromFileW@12
40D3DXCreateCubeTextureFromResourceA@16
41D3DXCreateCubeTextureFromResourceExA@56
42D3DXCreateCubeTextureFromResourceExW@56
43D3DXCreateCubeTextureFromResourceW@16
44D3DXCreateCylinder@32
45D3DXCreateEffect@36
46D3DXCreateEffectCompiler@28
47D3DXCreateEffectCompilerFromFileA@24
48D3DXCreateEffectCompilerFromFileW@24
49D3DXCreateEffectCompilerFromResourceA@28
50D3DXCreateEffectCompilerFromResourceW@28
51D3DXCreateEffectFromFileA@32
52D3DXCreateEffectFromFileW@32
53D3DXCreateEffectFromResourceA@36
54D3DXCreateEffectFromResourceW@36
55D3DXCreateEffectPool@4
56D3DXCreateFont@12
57D3DXCreateFontIndirect@12
58D3DXCreateFragmentLinker@12
59D3DXCreateKeyFrameInterpolator@40
60D3DXCreateLine@8
61D3DXCreateMatrixStack@8
62D3DXCreateMesh@24
63D3DXCreateMeshFVF@24
64D3DXCreateNPatchMesh@8
65D3DXCreatePMeshFromStream@28
66D3DXCreatePatchMesh@28
67D3DXCreatePolygon@20
68D3DXCreateRenderToEnvMap@28
69D3DXCreateRenderToSurface@28
70D3DXCreateSPMesh@20
71D3DXCreateSkinInfo@16
72D3DXCreateSkinInfoFVF@16
73D3DXCreateSkinInfoFromBlendedMesh@16
74D3DXCreateSphere@24
75D3DXCreateSprite@8
76D3DXCreateTeapot@12
77D3DXCreateTextA@32
78D3DXCreateTextW@32
79D3DXCreateTexture@32
80D3DXCreateTextureFromFileA@12
81D3DXCreateTextureFromFileExA@56
82D3DXCreateTextureFromFileExW@56
83D3DXCreateTextureFromFileInMemory@16
84D3DXCreateTextureFromFileInMemoryEx@60
85D3DXCreateTextureFromFileW@12
86D3DXCreateTextureFromResourceA@16
87D3DXCreateTextureFromResourceExA@60
88D3DXCreateTextureFromResourceExW@60
89D3DXCreateTextureFromResourceW@16
90D3DXCreateTorus@28
91D3DXCreateVolumeTexture@36
92D3DXCreateVolumeTextureFromFileA@12
93D3DXCreateVolumeTextureFromFileExA@60
94D3DXCreateVolumeTextureFromFileExW@60
95D3DXCreateVolumeTextureFromFileInMemory@16
96D3DXCreateVolumeTextureFromFileInMemoryEx@64
97D3DXCreateVolumeTextureFromFileW@12
98D3DXCreateVolumeTextureFromResourceA@16
99D3DXCreateVolumeTextureFromResourceExA@64
100D3DXCreateVolumeTextureFromResourceExW@64
101D3DXCreateVolumeTextureFromResourceW@16
102D3DXDeclaratorFromFVF@8
103D3DXFVFFromDeclarator@8
104D3DXFillCubeTexture@12
105D3DXFillCubeTextureTX@16
106D3DXFillTexture@12
107D3DXFillTextureTX@16
108D3DXFillVolumeTexture@12
109D3DXFillVolumeTextureTX@16
110D3DXFilterTexture@16
111D3DXFindShaderComment@16
112D3DXFloat16To32Array@12
113D3DXFloat32To16Array@12
114D3DXFrameAppendChild@8
115D3DXFrameCalculateBoundingSphere@12
116D3DXFrameDestroy@8
117D3DXFrameFind@8
118D3DXFrameNumNamedMatrices@4
119D3DXFrameRegisterNamedMatrices@8
120D3DXFresnelTerm@8
121D3DXGatherFragments@28
122D3DXGatherFragmentsFromFileA@24
123D3DXGatherFragmentsFromFileW@24
124D3DXGatherFragmentsFromResourceA@28
125D3DXGatherFragmentsFromResourceW@28
126D3DXGenerateOutputDecl@8
127D3DXGeneratePMesh@28
128D3DXGetDeclLength@4
129D3DXGetDeclVertexSize@8
130D3DXGetFVFVertexSize@4
131D3DXGetImageInfoFromFileA@8
132D3DXGetImageInfoFromFileInMemory@12
133D3DXGetImageInfoFromFileW@8
134D3DXGetImageInfoFromResourceA@12
135D3DXGetImageInfoFromResourceW@12
136D3DXGetShaderConstantTable@8
137D3DXGetShaderDebugInfo@8
138D3DXGetShaderInputSemantics@12
139D3DXGetShaderOutputSemantics@12
140D3DXGetShaderSamplers@12
141D3DXGetTargetDescByName@12
142D3DXGetTargetDescByVersion@12
143D3DXIntersect@40
144D3DXIntersectSubset@44
145D3DXIntersectTri@32
146D3DXLoadMeshFromXA@32
147D3DXLoadMeshFromXInMemory@36
148D3DXLoadMeshFromXResource@40
149D3DXLoadMeshFromXW@32
150D3DXLoadMeshFromXof@32
151D3DXLoadMeshHierarchyFromXA@28
152D3DXLoadMeshHierarchyFromXInMemory@32
153D3DXLoadMeshHierarchyFromXW@28
154D3DXLoadPatchMeshFromXof@28
155D3DXLoadSkinMeshFromXof@36
156D3DXLoadSurfaceFromFileA@32
157D3DXLoadSurfaceFromFileInMemory@36
158D3DXLoadSurfaceFromFileW@32
159D3DXLoadSurfaceFromMemory@40
160D3DXLoadSurfaceFromResourceA@36
161D3DXLoadSurfaceFromResourceW@36
162D3DXLoadSurfaceFromSurface@32
163D3DXLoadVolumeFromFileA@32
164D3DXLoadVolumeFromFileInMemory@36
165D3DXLoadVolumeFromFileW@32
166D3DXLoadVolumeFromMemory@44
167D3DXLoadVolumeFromResourceA@36
168D3DXLoadVolumeFromResourceW@36
169D3DXLoadVolumeFromVolume@32
170D3DXMatrixAffineTransformation@20
171D3DXMatrixDeterminant@4
172D3DXMatrixInverse@12
173D3DXMatrixLookAtLH@16
174D3DXMatrixLookAtRH@16
175D3DXMatrixMultiply@12
176D3DXMatrixMultiplyTranspose@12
177D3DXMatrixOrthoLH@20
178D3DXMatrixOrthoOffCenterLH@28
179D3DXMatrixOrthoOffCenterRH@28
180D3DXMatrixOrthoRH@20
181D3DXMatrixPerspectiveFovLH@20
182D3DXMatrixPerspectiveFovRH@20
183D3DXMatrixPerspectiveLH@20
184D3DXMatrixPerspectiveOffCenterLH@28
185D3DXMatrixPerspectiveOffCenterRH@28
186D3DXMatrixPerspectiveRH@20
187D3DXMatrixReflect@8
188D3DXMatrixRotationAxis@12
189D3DXMatrixRotationQuaternion@8
190D3DXMatrixRotationX@8
191D3DXMatrixRotationY@8
192D3DXMatrixRotationYawPitchRoll@16
193D3DXMatrixRotationZ@8
194D3DXMatrixScaling@16
195D3DXMatrixShadow@12
196D3DXMatrixTransformation@28
197D3DXMatrixTranslation@16
198D3DXMatrixTranspose@8
199D3DXPlaneFromPointNormal@12
200D3DXPlaneFromPoints@16
201D3DXPlaneIntersectLine@16
202D3DXPlaneNormalize@8
203D3DXPlaneTransform@12
204D3DXPlaneTransformArray@24
205D3DXQuaternionBaryCentric@24
206D3DXQuaternionExp@8
207D3DXQuaternionInverse@8
208D3DXQuaternionLn@8
209D3DXQuaternionMultiply@12
210D3DXQuaternionNormalize@8
211D3DXQuaternionRotationAxis@12
212D3DXQuaternionRotationMatrix@8
213D3DXQuaternionRotationYawPitchRoll@16
214D3DXQuaternionSlerp@16
215D3DXQuaternionSquad@24
216D3DXQuaternionSquadSetup@28
217D3DXQuaternionToAxisAngle@12
218D3DXRectPatchSize@12
219D3DXSaveMeshHierarchyToFileA@20
220D3DXSaveMeshHierarchyToFileW@20
221D3DXSaveMeshToXA@28
222D3DXSaveMeshToXW@28
223D3DXSaveSurfaceToFileA@20
224D3DXSaveSurfaceToFileW@20
225D3DXSaveTextureToFileA@16
226D3DXSaveTextureToFileW@16
227D3DXSaveVolumeToFileA@20
228D3DXSaveVolumeToFileW@20
229D3DXSimplifyMesh@28
230D3DXSphereBoundProbe@16
231D3DXSplitMesh@36
232D3DXTessellateNPatches@24
233D3DXTessellateRectPatch@20
234D3DXTessellateTriPatch@20
235D3DXTriPatchSize@12
236D3DXValidMesh@12
237D3DXValidPatchMesh@16
238D3DXVec2BaryCentric@24
239D3DXVec2CatmullRom@24
240D3DXVec2Hermite@24
241D3DXVec2Normalize@8
242D3DXVec2Transform@12
243D3DXVec2TransformArray@24
244D3DXVec2TransformCoord@12
245D3DXVec2TransformCoordArray@24
246D3DXVec2TransformNormal@12
247D3DXVec2TransformNormalArray@24
248D3DXVec3BaryCentric@24
249D3DXVec3CatmullRom@24
250D3DXVec3Hermite@24
251D3DXVec3Normalize@8
252D3DXVec3Project@24
253D3DXVec3ProjectArray@36
254D3DXVec3Transform@12
255D3DXVec3TransformArray@24
256D3DXVec3TransformCoord@12
257D3DXVec3TransformCoordArray@24
258D3DXVec3TransformNormal@12
259D3DXVec3TransformNormalArray@24
260D3DXVec3Unproject@24
261D3DXVec3UnprojectArray@36
262D3DXVec4BaryCentric@24
263D3DXVec4CatmullRom@24
264D3DXVec4Cross@16
265D3DXVec4Hermite@24
266D3DXVec4Normalize@8
267D3DXVec4Transform@12
268D3DXVec4TransformArray@24
269D3DXWeldVertices@28
lib/libc/mingw/lib32/d3dxof.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY d3dxof.dll
2EXPORTS
3DirectXFileCreate@4
lib/libc/mingw/lib32/davhlpr.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of DAVHLPR.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DAVHLPR.dll"
7EXPORTS
8DavAddConnection@24
9DavCheckAndConvertHttpUrlToUncName@32
10DavDeleteConnection@4
11DavFlushFile@4
12DavGetExtendedError@16
13DavGetHTTPFromUNCPath@12
14DavGetServerPortAndPhysicalName@20
15DavGetUNCFromHTTPPath@12
16DavRemoveDummyShareFromFileName@4
17DavRemoveDummyShareFromFileNameEx@8
18UtfUrlStrToWideStr@16
19WideStrToUtfUrlStr@16
lib/libc/mingw/lib32/dbgeng.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of dbgeng.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "dbgeng.dll"
7EXPORTS
8DebugConnect@12
9DebugConnectWide@12
10DebugCreate@8
lib/libc/mingw/lib32/devmgr.def created+26
......@@ -0,0 +1,26 @@
1;
2; Definition file of DEVMGR.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DEVMGR.DLL"
7EXPORTS
8DeviceProperties_RunDLLA@16
9DeviceProperties_RunDLLW@16
10DevicePropertiesA@16
11DevicePropertiesW@16
12DeviceManager_ExecuteA@16
13DeviceManager_ExecuteW@16
14DeviceProblemTextA@20
15DeviceProblemTextW@20
16DeviceProblemWizardA@12
17DeviceProblemWizardW@12
18DeviceAdvancedPropertiesA@12
19DeviceAdvancedPropertiesW@12
20DeviceCreateHardwarePage@8
21DeviceCreateHardwarePageEx@16
22DevicePropertiesExA@20
23DevicePropertiesExW@20
24DeviceProblenWizard_RunDLLA@16
25DeviceProblenWizard_RunDLLW@16
26DeviceCreateHardwarePageCustom@20
lib/libc/mingw/lib32/devobj.def created+55
......@@ -0,0 +1,55 @@
1;
2; Definition file of DEVOBJ.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DEVOBJ.dll"
7EXPORTS
8DevObjBuildClassInfoList@24
9DevObjClassGuidsFromName@24
10DevObjClassNameFromGuid@24
11DevObjCreateDevRegKey@24
12DevObjCreateDeviceInfo@24
13DevObjCreateDeviceInfoList@20
14DevObjCreateDeviceInterface@24
15DevObjCreateDeviceInterfaceRegKey@20
16DevObjDeleteAllInterfacesForDevice@8
17DevObjDeleteDevRegKey@20
18DevObjDeleteDevice@8
19DevObjDeleteDeviceInfo@8
20DevObjDeleteDeviceInterfaceData@8
21DevObjDeleteDeviceInterfaceRegKey@12
22DevObjDestroyDeviceInfoList@4
23DevObjEnumDeviceInfo@12
24DevObjEnumDeviceInterfaces@20
25DevObjGetClassDescription@24
26DevObjGetClassDevs@24
27DevObjGetClassProperty@36
28DevObjGetClassPropertyKeys@28
29DevObjGetClassRegistryProperty@32
30DevObjGetDeviceInfoDetail@12
31DevObjGetDeviceInfoListClass@8
32DevObjGetDeviceInfoListDetail@8
33DevObjGetDeviceInstanceId@20
34DevObjGetDeviceInterfaceAlias@16
35DevObjGetDeviceInterfaceDetail@24
36DevObjGetDeviceInterfaceProperty@32
37DevObjGetDeviceInterfacePropertyKeys@24
38DevObjGetDeviceProperty@32
39DevObjGetDevicePropertyKeys@24
40DevObjGetDeviceRegistryProperty@28
41DevObjLocateDevice@16
42DevObjOpenClassRegKey@20
43DevObjOpenDevRegKey@24
44DevObjOpenDeviceInfo@20
45DevObjOpenDeviceInterface@16
46DevObjOpenDeviceInterfaceRegKey@16
47DevObjRegisterDeviceInfo@24
48DevObjRemoveDeviceInterface@8
49DevObjSetClassProperty@32
50DevObjSetClassRegistryProperty@24
51DevObjSetDeviceInfoDetail@12
52DevObjSetDeviceInterfaceDefault@16
53DevObjSetDeviceInterfaceProperty@28
54DevObjSetDeviceProperty@28
55DevObjSetDeviceRegistryProperty@20
lib/libc/mingw/lib32/devrtl.def created+36
......@@ -0,0 +1,36 @@
1;
2; Definition file of DEVRTL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DEVRTL.dll"
7EXPORTS
8DevRtlCloseTextLogSection@12
9DevRtlCreateTextLogSectionA@16
10DevRtlCreateTextLogSectionW@16
11DevRtlGetThreadLogToken@0
12DevRtlSetThreadLogToken@8
13DevRtlWriteTextLog@0
14DevRtlWriteTextLogError@0
15NdxTableAddObject@16
16NdxTableAddObjectToList@12
17NdxTableClose@8
18NdxTableFirstObject@12
19NdxTableFirstObjectInList@12
20NdxTableGetObjectName@16
21NdxTableGetObjectType@8
22NdxTableGetObjectTypeCount@8
23NdxTableGetObjectTypeName@20
24NdxTableGetPropertyTypeClass@16
25NdxTableGetPropertyTypeCount@12
26NdxTableGetPropertyTypeName@24
27NdxTableGetPropertyValue@20
28NdxTableNextObject@4
29NdxTableObjectFromName@16
30NdxTableObjectFromPointer@12
31NdxTableOpen@16
32NdxTableRemoveObject@4
33NdxTableRemoveObjectFromList@12
34NdxTableSetObjectPointer@12
35NdxTableSetPropertyValue@16
36NdxTableSetTypeDefinition@16
lib/libc/mingw/lib32/dhcpcsvc.def+2
......@@ -11,6 +11,7 @@ DhcpDeRegisterOptions@4
1111DhcpDeRegisterParamChange@12
1212DhcpDelPersistentRequestParams@8
1313DhcpEnableDhcp@8
14DhcpEnableDhcpAdvanced@24
1415DhcpEnableTracing@4
1516DhcpEnumClasses@16
1617DhcpEnumInterfaces@4
......@@ -31,6 +32,7 @@ DhcpGlobalServiceSyncEvent DATA
3132DhcpGlobalTerminateEvent DATA
3233DhcpHandlePnPEvent@20
3334DhcpIsEnabled@8
35DhcpIsMeteredDetected@8
3436DhcpLeaseIpAddress@24
3537DhcpLeaseIpAddressEx@32
3638DhcpNotifyConfigChange@28
lib/libc/mingw/lib32/dhcpcsvc6.def+13
......@@ -6,12 +6,25 @@
66LIBRARY "dhcpcsvc6.DLL"
77EXPORTS
88Dhcpv6AcquireParameters@4
9Dhcpv6CApiCleanup@0
10Dhcpv6CApiInitialize@4
11Dhcpv6CancelOperation@0
12Dhcpv6EnableDhcp@8
13Dhcpv6EnableTracing@4
914Dhcpv6FreeLeaseInfo@4
15Dhcpv6FreeLeaseInfoArray@8
16Dhcpv6GetTraceArray@4
17Dhcpv6GetUserClasses@16
1018Dhcpv6IsEnabled@8
1119Dhcpv6Main@4
1220Dhcpv6QueryLeaseInfo@8
21Dhcpv6QueryLeaseInfoArray@12
1322Dhcpv6ReleaseParameters@4
1423Dhcpv6ReleasePrefix@12
24Dhcpv6ReleasePrefixEx@16
1525Dhcpv6RenewPrefix@20
26Dhcpv6RenewPrefixEx@24
1627Dhcpv6RequestParams@32
1728Dhcpv6RequestPrefix@16
29Dhcpv6RequestPrefixEx@20
30Dhcpv6SetUserClass@12
lib/libc/mingw/lib32/diagnosticdataquery.def created+39
......@@ -0,0 +1,39 @@
1LIBRARY "DiagnosticDataQuery.dll"
2EXPORTS
3DdqCancelDiagnosticRecordOperation@4
4DdqCloseSession@4
5DdqCreateSession@8
6DdqExtractDiagnosticReport@16
7DdqFreeDiagnosticRecordLocaleTags@4
8DdqFreeDiagnosticRecordPage@4
9DdqFreeDiagnosticRecordProducerCategories@4
10DdqFreeDiagnosticRecordProducers@4
11DdqFreeDiagnosticReport@4
12DdqGetDiagnosticDataAccessLevelAllowed@4
13DdqGetDiagnosticRecordAtIndex@12
14DdqGetDiagnosticRecordBinaryDistribution@24
15DdqGetDiagnosticRecordCategoryAtIndex@12
16DdqGetDiagnosticRecordCategoryCount@8
17DdqGetDiagnosticRecordCount@8
18DdqGetDiagnosticRecordLocaleTagAtIndex@12
19DdqGetDiagnosticRecordLocaleTagCount@8
20DdqGetDiagnosticRecordLocaleTags@12
21DdqGetDiagnosticRecordPage@28
22DdqGetDiagnosticRecordPayload@16
23DdqGetDiagnosticRecordProducerAtIndex@12
24DdqGetDiagnosticRecordProducerCategories@12
25DdqGetDiagnosticRecordProducerCount@8
26DdqGetDiagnosticRecordProducers@8
27DdqGetDiagnosticRecordStats@20
28DdqGetDiagnosticRecordSummary@16
29DdqGetDiagnosticRecordTagDistribution@20
30DdqGetDiagnosticReport@12
31DdqGetDiagnosticReportAtIndex@12
32DdqGetDiagnosticReportCount@8
33DdqGetDiagnosticReportStoreReportCount@12
34DdqGetSessionAccessLevel@8
35DdqGetTranscriptConfiguration@8
36DdqIsDiagnosticRecordSampledIn@36
37DdqSetTranscriptConfiguration@8
38UtcSendTraceLogging2@56
39UtcSendTraceLogging@40
lib/libc/mingw/lib32/dinput.def created+5
......@@ -0,0 +1,5 @@
1LIBRARY dinput.dll
2EXPORTS
3DirectInputCreateA@16
4DirectInputCreateEx@20
5DirectInputCreateW@16
lib/libc/mingw/lib32/dinput8.def+11-1
......@@ -1,3 +1,13 @@
1LIBRARY dinput8.dll
1;
2; Definition file of DINPUT8.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DINPUT8.dll"
27EXPORTS
38DirectInput8Create@20
9DllCanUnloadNow@0
10DllGetClassObject@12
11DllRegisterServer@0
12DllUnregisterServer@0
13GetdfDIJoystick@0
lib/libc/mingw/lib32/directml.def created+6
......@@ -0,0 +1,6 @@
1LIBRARY directml
2
3EXPORTS
4
5DMLCreateDevice1@20
6DMLCreateDevice@16
lib/libc/mingw/lib32/dismapi.def created+102
......@@ -0,0 +1,102 @@
1;
2; Definition file of DismApi.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DismApi.DLL"
7EXPORTS
8DismAddCapability@32
9DismAddDriver@12
10DismAddPackage@28
11DismApplyUnattend@12
12DismCheckImageHealth@24
13DismCleanupMountpoints@0
14DismCloseSession@4
15DismCommitImage@20
16DismDelete@4
17DismDisableFeature@28
18DismEnableFeature@44
19DismGetCapabilities@12
20DismGetCapabilityInfo@12
21DismGetDriverInfo@20
22DismGetDrivers@16
23DismGetFeatureInfo@20
24DismGetFeatureParent@24
25DismGetFeatures@20
26DismGetImageInfo@12
27DismGetLastErrorMessage@4
28DismGetMountedImageInfo@8
29DismGetPackageInfo@16
30DismGetPackageInfoEx@16
31DismGetPackages@12
32DismGetReservedStorageState@8
33DismInitialize@12
34DismMountImage@36
35DismOpenSession@16
36DismRemountImage@4
37DismRemoveCapability@20
38DismRemoveDriver@8
39DismRemovePackage@24
40DismRestoreImageHealth@28
41DismSetReservedStorageState@8
42DismShutdown@0
43DismUnmountImage@20
44_DismAddCapabilityEx@32
45_DismAddDriverEx@24
46_DismAddPackageEx@40
47_DismAddPackageFamilyToUninstallBlocklist@8
48_DismAddProvisionedAppxPackage@48
49_DismApplyCustomDataImage@24
50_DismApplyFfuImage@12
51_DismApplyProvisioningPackage@20
52_DismCleanImage@24
53_DismEnableDisableFeature@48
54_DismExportDriver@20
55_DismExportSource@28
56_DismExportSourceEx@28
57_DismGetCapabilitiesEx@24
58_DismGetCapabilityInfoEx@24
59_DismGetCurrentEdition@8
60_DismGetDriversEx@24
61_DismGetEffectiveSystemUILanguage@8
62_DismGetFeaturesEx@20
63_DismGetInstallLanguage@8
64_DismGetKCacheBinaryValue@16
65_DismGetKCacheDwordValue@12
66_DismGetKCacheStringValue@12
67_DismGetLastCBSSessionID@8
68_DismGetNonRemovableAppsPolicy@12
69_DismGetOSUninstallWindow@8
70_DismGetOsInfo@8
71_DismGetProductKeyInfo@16
72_DismGetProvisionedAppxPackages@12
73_DismGetProvisioningPackageInfo@12
74_DismGetRegistryMountPoint@12
75_DismGetStateFromCBSSessionID@16
76_DismGetTargetCompositionEditions@12
77_DismGetTargetEditions@12
78_DismGetTargetVirtualEditions@16
79_DismGetUsedSpace@12
80_DismInitiateOSUninstall@8
81_DismOptimizeImage@20
82_DismOptimizeProvisionedAppxPackages@4
83_DismRemoveOSUninstall@4
84_DismRemovePackageFamilyFromUninstallBlocklist@8
85_DismRemoveProvisionedAppxPackage@8
86_DismRemoveProvisionedAppxPackageAllUsers@12
87_DismRevertPendingActions@16
88_DismSetAllIntlSettings@8
89_DismSetAppXProvisionedDataFile@12
90_DismSetEdition2@24
91_DismSetEdition@24
92_DismSetFirstBootCommandLine@12
93_DismSetMachineName@8
94_DismSetOSUninstallWindow@8
95_DismSetProductKey@8
96_DismSetSkuIntlDefaults@8
97_DismSplitFfuImage@16
98_DismStage@4
99_DismSysprepCleanup@24
100_DismSysprepGeneralize@28
101_DismSysprepSpecialize@20
102_DismValidateProductKey@8
lib/libc/mingw/lib32/dlcapi.def created+5
......@@ -0,0 +1,5 @@
1LIBRARY DLCAPI.DLL
2EXPORTS
3AcsLan@8
4DlcCallDriver@24
5NtAcsLan@16
lib/libc/mingw/lib32/dnsapi.def+1
......@@ -40,6 +40,7 @@ DnsAsyncRegisterTerm
4040DnsCancelQuery@4
4141DnsCheckNrptRuleIntegrity@4
4242DnsCheckNrptRules@12
43DnsCleanupTcpConnections@4
4344DnsConnectionDeletePolicyEntries@4
4445DnsConnectionDeletePolicyEntriesPrivate@8
4546DnsConnectionDeleteProxyInfo@8
lib/libc/mingw/lib32/dnsperf.def created+7
......@@ -0,0 +1,7 @@
1LIBRARY dnsperf
2
3EXPORTS
4
5CloseDnsPerformanceData@0
6CollectDnsPerformanceData@16
7OpenDnsPerformanceData@4
lib/libc/mingw/lib32/dpapi.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of DPAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DPAPI.dll"
7EXPORTS
8CryptProtectDataNoUI@36
9CryptProtectMemory@12
10CryptResetMachineCredentials@4
11CryptUnprotectDataNoUI@36
12CryptUnprotectMemory@12
13CryptUpdateProtectedState@20
14iCryptIdentifyProtection@20
lib/libc/mingw/lib32/dplayx.def created+8
......@@ -0,0 +1,8 @@
1LIBRARY dplayx.dll
2EXPORTS
3DirectPlayCreate@12
4DirectPlayEnumerate@8
5DirectPlayEnumerateA@8
6DirectPlayEnumerateW@8
7DirectPlayLobbyCreateA@20
8DirectPlayLobbyCreateW@20
lib/libc/mingw/lib32/dpnaddr.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY dpnaddr.dll
2EXPORTS
3DirectPlay8AddressCreate@12
lib/libc/mingw/lib32/dpnet.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY dpnet.dll
2EXPORTS
3DirectPlay8Create@12
lib/libc/mingw/lib32/dpnlobby.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY dpnlobby.def
2EXPORTS
3DirectPlay8LobbyCreate@12
lib/libc/mingw/lib32/dpvoice.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY dpvoice.dll
2EXPORTS
3DirectPlayVoiceCreate@12
lib/libc/mingw/lib32/dsetup.def created+20
......@@ -0,0 +1,20 @@
1LIBRARY dsetup.dll
2EXPORTS
3DirectXDeviceDriverSetupA@16
4DirectXDeviceDriverSetupW@16
5DirectXLoadString@12
6DirectXRegisterApplicationA@8
7DirectXRegisterApplicationW@8
8DirectXSetupA@12
9DirectXSetupCallback@20
10DirectXSetupGetEULAA@12
11DirectXSetupGetEULAW@12
12DirectXSetupGetFileVersion@12
13DirectXSetupGetVersion@8
14DirectXSetupIsEng@0
15DirectXSetupIsJapan@0
16DirectXSetupIsJapanNec@0
17DirectXSetupSetCallback@4
18DirectXSetupShowEULA@4
19DirectXSetupW@12
20DirectXUnRegisterApplication@8
lib/libc/mingw/lib32/dsparse.def created+22
......@@ -0,0 +1,22 @@
1LIBRARY "dsparse.dll"
2EXPORTS
3DsCrackSpn2A@36
4DsCrackSpn2W@36
5DsCrackSpn3W@44
6DsCrackSpn4W@48
7DsCrackSpnA@32
8DsCrackSpnW@32
9DsCrackUnquotedMangledRdnA@16
10DsCrackUnquotedMangledRdnW@16
11DsGetRdnW@24
12DsIsMangledDnA@8
13DsIsMangledDnW@8
14DsIsMangledRdnValueA@12
15DsIsMangledRdnValueW@12
16DsMakeSpn2W@32
17DsMakeSpnA@28
18DsMakeSpnW@28
19DsQuoteRdnValueA@16
20DsQuoteRdnValueW@16
21DsUnquoteRdnValueA@16
22DsUnquoteRdnValueW@16
lib/libc/mingw/lib32/dxapi.def created+9
......@@ -0,0 +1,9 @@
1LIBRARY dxapi.sys
2EXPORTS
3_DxApi@20
4_DxApiGetVersion@0
5;_DxApiInitialize@32
6;_DxAutoflipUpdate@20
7;_DxEnableIRQ@8
8;_DxLoseObject@8
9;_DxUpdateCapture@12
lib/libc/mingw/lib32/dxcore.def created+5
......@@ -0,0 +1,5 @@
1LIBRARY dxcore
2
3EXPORTS
4
5DXCoreCreateAdapterFactory@8
lib/libc/mingw/lib32/eappgnui.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of GenericUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "GenericUI.dll"
7EXPORTS
8DllCanUnloadNow@0
9DllGetClassObject@12
10DllRegisterServer@4
11DllUnregisterServer@4
12EapPeerFreeErrorMemory@4
13EapPeerFreeMemory@4
14EapPeerInvokeIdentityUI@44
lib/libc/mingw/lib32/eapphost.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of eapphost.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "eapphost.dll"
7EXPORTS
8DllCanUnloadNow@0
9DllGetClassObject@12
10DllRegisterServer@0
11DllUnregisterServer@0
12InitializeEapHost@0
13UninitializeEapHost@0
lib/libc/mingw/lib32/esent.def+69-245
......@@ -5,249 +5,18 @@
55;
66LIBRARY "ESENT.dll"
77EXPORTS
8JetAddColumnA@28@28
9JetAddColumnW@28@28
10JetAttachDatabase2A@16@16
11JetAttachDatabase2W@16@16
12JetAttachDatabaseA@12@12
13JetAttachDatabaseW@12@12
14JetAttachDatabaseWithStreamingA@24@24
15JetAttachDatabaseWithStreamingW@24@24
16JetBackupA@12@12
17JetBackupInstanceA@16@16
18JetBackupInstanceW@16@16
19JetBackupW@12@12
20JetBeginExternalBackup@4@4
21JetBeginExternalBackupInstance@8@8
22JetBeginSessionA@16@16
23JetBeginSessionW@16@16
24JetBeginTransaction2@8@8
25JetBeginTransaction@4@4
26JetCloseDatabase@12@12
27JetCloseFile@4@4
28JetCloseFileInstance@8@8
29JetCloseTable@8@8
30JetCommitTransaction@8@8
31JetCompactA@24@24
32JetCompactW@24@24
33JetComputeStats@8@8
34JetConvertDDLA@20@20
35JetConvertDDLW@20@20
36JetCreateDatabase2A@20@20
37JetCreateDatabase2W@20@20
38JetCreateDatabaseA@20@20
39JetCreateDatabaseW@20@20
40JetCreateDatabaseWithStreamingA@28@28
41JetCreateDatabaseWithStreamingW@28@28
42JetCreateIndex2A@16@16
43JetCreateIndex2W@16@16
44JetCreateIndexA@28@28
45JetCreateIndexW@28@28
46JetCreateInstance2A@16@16
47JetCreateInstance2W@16@16
48JetCreateInstanceA@8@8
49JetCreateInstanceW@8@8
50JetCreateTableA@24@24
51JetCreateTableColumnIndex2A@12@12
52JetCreateTableColumnIndex2W@12@12
53JetCreateTableColumnIndexA@12@12
54JetCreateTableColumnIndexW@12@12
55JetCreateTableW@24@24
56JetDBUtilitiesA@4@4
57JetDBUtilitiesW@4@4
58JetDefragment2A@28@28
59JetDefragment2W@28@28
60JetDefragment3A@32@32
61JetDefragment3W@32@32
62JetDefragmentA@24@24
63JetDefragmentW@24@24
64JetDelete@8@8
65JetDeleteColumn2A@16@16
66JetDeleteColumn2W@16@16
67JetDeleteColumnA@12@12
68JetDeleteColumnW@12@12
69JetDeleteIndexA@12@12
70JetDeleteIndexW@12@12
71JetDeleteTableA@12@12
72JetDeleteTableW@12@12
73JetDetachDatabase2A@12@12
74JetDetachDatabase2W@12@12
75JetDetachDatabaseA@8@8
76JetDetachDatabaseW@8@8
77JetDupCursor@16@16
78JetDupSession@8@8
79JetEnableMultiInstanceA@12@12
80JetEnableMultiInstanceW@12@12
81JetEndExternalBackup@0@0
82JetEndExternalBackupInstance2@8@8
83JetEndExternalBackupInstance@4@4
84JetEndSession@8@8
85JetEnumerateColumns@40@40
86JetEscrowUpdate@36@36
87JetExternalRestore2A@40@40
88JetExternalRestore2W@40@40
89JetExternalRestoreA@32@32
90JetExternalRestoreW@32@32
91JetFreeBuffer@4@4
92JetGetAttachInfoA@12@12
93JetGetAttachInfoInstanceA@16@16
94JetGetAttachInfoInstanceW@16@16
95JetGetAttachInfoW@12@12
96JetGetBookmark@20@20
97JetGetColumnInfoA@28@28
98JetGetColumnInfoW@28@28
99JetGetCounter@12@12
100JetGetCurrentIndexA@16@16
101JetGetCurrentIndexW@16@16
102JetGetCursorInfo@20@20
103JetGetDatabaseFileInfoA@16@16
104JetGetDatabaseFileInfoW@16@16
105JetGetDatabaseInfoA@20@20
106JetGetDatabaseInfoW@20@20
107JetGetDatabasePages@28@28
108JetGetIndexInfoA@28@28
109JetGetIndexInfoW@28@28
110JetGetInstanceInfoA@8@8
111JetGetInstanceInfoW@8@8
112JetGetInstanceMiscInfo@16@16
113JetGetLS@16@16
114JetGetLock@12@12
115JetGetLogFileInfoA@16@16
116JetGetLogFileInfoW@16@16
117JetGetLogInfoA@12@12
118JetGetLogInfoInstance2A@20@20
119JetGetLogInfoInstance2W@20@20
120JetGetLogInfoInstanceA@16@16
121JetGetLogInfoInstanceW@16@16
122JetGetLogInfoW@12@12
123JetGetMaxDatabaseSize@16@16
124JetGetObjectInfoA@32@32
125JetGetObjectInfoW@32@32
126JetGetPageInfo@24@24
127JetGetRecordPosition@16@16
128JetGetRecordSize@16@16
129JetGetResourceParam@16@16
130JetGetSecondaryIndexBookmark@36@36
131JetGetSessionInfo@16@16
132JetGetSystemParameterA@24@24
133JetGetSystemParameterW@24@24
134JetGetTableColumnInfoA@24@24
135JetGetTableColumnInfoW@24@24
136JetGetTableIndexInfoA@24@24
137JetGetTableIndexInfoW@24@24
138JetGetTableInfoA@20@20
139JetGetTableInfoW@20@20
140JetGetThreadStats@8@8
141JetGetTruncateLogInfoInstanceA@16@16
142JetGetTruncateLogInfoInstanceW@16@16
143JetGetVersion@8@8
144JetGotoBookmark@16@16
145JetGotoPosition@12@12
146JetGotoSecondaryIndexBookmark@28@28
147JetGrowDatabase@16@16
148JetIdle@8@8
149JetIndexRecordCount@16@16
150JetInit2@8@8
151JetInit3A@12@12
152JetInit3W@12@12
153JetInit@4@4
154JetIntersectIndexes@20@20
155JetMakeKey@20@20
156JetMove@16@16
157JetOSSnapshotAbort@8@8
158JetOSSnapshotEnd@8@8
159JetOSSnapshotFreezeA@16@16
160JetOSSnapshotFreezeW@16@16
161JetOSSnapshotGetFreezeInfoA@16@16
162JetOSSnapshotGetFreezeInfoW@16@16
163JetOSSnapshotPrepare@8@8
164JetOSSnapshotPrepareInstance@12@12
165JetOSSnapshotThaw@8@8
166JetOSSnapshotTruncateLog@8@8
167JetOSSnapshotTruncateLogInstance@12@12
168JetOpenDatabaseA@20@20
169JetOpenDatabaseW@20@20
170JetOpenFileA@16@16
171JetOpenFileInstanceA@20@20
172JetOpenFileInstanceW@20@20
173JetOpenFileSectionInstanceA@28@28
174JetOpenFileSectionInstanceW@28@28
175JetOpenFileW@16@16
176JetOpenTableA@28@28
177JetOpenTableW@28@28
178JetOpenTempTable2@28@28
179JetOpenTempTable3@28@28
180JetOpenTempTable@24@24
181JetOpenTemporaryTable@8@8
182JetPrepareToCommitTransaction@16@16
183JetPrepareUpdate@12@12
184JetReadFile@16@16
185JetReadFileInstance@20@20
186JetRegisterCallback@24@24
187JetRenameColumnA@20@20
188JetRenameColumnW@20@20
189JetRenameTableA@16@16
190JetRenameTableW@16@16
191JetResetCounter@8@8
192JetResetSessionContext@4@4
193JetResetTableSequential@12@12
194JetRestore2A@12@12
195JetRestore2W@12@12
196JetRestoreA@8@8
197JetRestoreInstanceA@16@16
198JetRestoreInstanceW@16@16
199JetRestoreW@8@8
200JetRetrieveColumn@32@32
201JetRetrieveColumns@16@16
202JetRetrieveKey@24@24
203JetRetrieveTaggedColumnList@28@28
204JetRollback@8@8
205JetSeek@12@12
206JetSetColumn@28@28
207JetSetColumnDefaultValueA@28@28
208JetSetColumnDefaultValueW@28@28
209JetSetColumns@16@16
210JetSetCurrentIndex2A@16@16
211JetSetCurrentIndex2W@16@16
212JetSetCurrentIndex3A@20@20
213JetSetCurrentIndex3W@20@20
214JetSetCurrentIndex4A@24@24
215JetSetCurrentIndex4W@24@24
216JetSetCurrentIndexA@12@12
217JetSetCurrentIndexW@12@12
218JetSetDatabaseSizeA@16@16
219JetSetDatabaseSizeW@16@16
220JetSetIndexRange@12@12
221JetSetLS@16@16
222JetSetMaxDatabaseSize@16@16
223JetSetResourceParam@16@16
224JetSetSessionContext@8@8
225JetSetSystemParameterA@20@20
226JetSetSystemParameterW@20@20
227JetSetTableSequential@12@12
228JetSnapshotStartA@12@12
229JetSnapshotStartW@12@12
230JetSnapshotStop@8@8
231JetStopBackup@0@0
232JetStopBackupInstance@4@4
233JetStopService@0@0
234JetStopServiceInstance@4@4
235JetTerm2@8@8
236JetTerm@4@4
237JetTracing@12@12
238JetTruncateLog@0@0
239JetTruncateLogInstance@4@4
240JetUnregisterCallback@16@16
241JetUpdate2@24@24
242JetUpdate@20@20
243JetUpgradeDatabaseA@16@16
244JetUpgradeDatabaseW@16@16
8DebugExtensionInitialize@8
9DebugExtensionNotify@12
10DebugExtensionUninitialize@0
24511JetAddColumn@28
24612JetAddColumnA@28
24713JetAddColumnW@28
24814JetAttachDatabase2@16
24915JetAttachDatabase2A@16
25016JetAttachDatabase2W@16
17JetAttachDatabase3@20
18JetAttachDatabase3A@20
19JetAttachDatabase3W@20
25120JetAttachDatabase@12
25221JetAttachDatabaseA@12
25322JetAttachDatabaseW@12
......@@ -260,37 +29,53 @@ JetBackupInstance@16
26029JetBackupInstanceA@16
26130JetBackupInstanceW@16
26231JetBackupW@12
32JetBeginDatabaseIncrementalReseed@12
33JetBeginDatabaseIncrementalReseedA@12
34JetBeginDatabaseIncrementalReseedW@12
26335JetBeginExternalBackup@4
26436JetBeginExternalBackupInstance@8
26537JetBeginSession@16
26638JetBeginSessionA@16
26739JetBeginSessionW@16
40JetBeginSurrogateBackup@16
26841JetBeginTransaction2@8
42JetBeginTransaction3@16
26943JetBeginTransaction@4
27044JetCloseDatabase@12
27145JetCloseFile@4
27246JetCloseFileInstance@8
27347JetCloseTable@8
48JetCommitTransaction2@16
27449JetCommitTransaction@8
27550JetCompact@24
27651JetCompactA@24
27752JetCompactW@24
27853JetComputeStats@8
54JetConfigureProcessForCrashDump@4
55JetConsumeLogData@20
27956JetConvertDDL@20
28057JetConvertDDLA@20
28158JetConvertDDLW@20
28259JetCreateDatabase2@20
28360JetCreateDatabase2A@20
28461JetCreateDatabase2W@20
62JetCreateDatabase3@24
63JetCreateDatabase3A@24
64JetCreateDatabase3W@24
28565JetCreateDatabase@20
28666JetCreateDatabaseA@20
28767JetCreateDatabaseW@20
28868JetCreateDatabaseWithStreaming@28
28969JetCreateDatabaseWithStreamingA@28
29070JetCreateDatabaseWithStreamingW@28
71JetCreateEncryptionKey@16
29172JetCreateIndex2@16
29273JetCreateIndex2A@16
29374JetCreateIndex2W@16
75JetCreateIndex3A@16
76JetCreateIndex3W@16
77JetCreateIndex4A@16
78JetCreateIndex4W@16
29479JetCreateIndex@28
29580JetCreateIndexA@28
29681JetCreateIndexW@28
......@@ -305,6 +90,12 @@ JetCreateTableA@24
30590JetCreateTableColumnIndex2@12
30691JetCreateTableColumnIndex2A@12
30792JetCreateTableColumnIndex2W@12
93JetCreateTableColumnIndex3A@12
94JetCreateTableColumnIndex3W@12
95JetCreateTableColumnIndex4A@12
96JetCreateTableColumnIndex4W@12
97JetCreateTableColumnIndex5A@12
98JetCreateTableColumnIndex5W@12
30899JetCreateTableColumnIndex@12
309100JetCreateTableColumnIndexA@12
310101JetCreateTableColumnIndexW@12
......@@ -312,6 +103,7 @@ JetCreateTableW@24
312103JetDBUtilities@4
313104JetDBUtilitiesA@4
314105JetDBUtilitiesW@4
106JetDatabaseScan@24
315107JetDefragment2@28
316108JetDefragment2A@28
317109JetDefragment2W@28
......@@ -345,10 +137,14 @@ JetDupSession@8
345137JetEnableMultiInstance@12
346138JetEnableMultiInstanceA@12
347139JetEnableMultiInstanceW@12
140JetEndDatabaseIncrementalReseed@24
141JetEndDatabaseIncrementalReseedA@24
142JetEndDatabaseIncrementalReseedW@24
348143JetEndExternalBackup@0
349144JetEndExternalBackupInstance2@8
350145JetEndExternalBackupInstance@4
351146JetEndSession@8
147JetEndSurrogateBackup@8
352148JetEnumerateColumns@40
353149JetEscrowUpdate@36
354150JetExternalRestore2@40
......@@ -379,7 +175,8 @@ JetGetDatabaseFileInfoW@16
379175JetGetDatabaseInfo@20
380176JetGetDatabaseInfoA@20
381177JetGetDatabaseInfoW@20
382JetGetDatabasePages@28
178JetGetDatabasePages@32
179JetGetErrorInfoW@20
383180JetGetIndexInfo@28
384181JetGetIndexInfoA@28
385182JetGetIndexInfoW@28
......@@ -405,12 +202,15 @@ JetGetMaxDatabaseSize@16
405202JetGetObjectInfo@32
406203JetGetObjectInfoA@32
407204JetGetObjectInfoW@32
205JetGetPageInfo2@24
408206JetGetPageInfo@24
409207JetGetRecordPosition@16
208JetGetRecordSize2@16
410209JetGetRecordSize@16
411210JetGetResourceParam@16
412211JetGetSecondaryIndexBookmark@36
413212JetGetSessionInfo@16
213JetGetSessionParameter@20
414214JetGetSystemParameter@24
415215JetGetSystemParameterA@24
416216JetGetSystemParameterW@24
......@@ -433,11 +233,15 @@ JetGotoPosition@12
433233JetGotoSecondaryIndexBookmark@28
434234JetGrowDatabase@16
435235JetIdle@8
236JetIndexRecordCount2@20
436237JetIndexRecordCount@16
437238JetInit2@8
438239JetInit3@12
439240JetInit3A@12
440241JetInit3W@12
242JetInit4@12
243JetInit4A@12
244JetInit4W@12
441245JetInit@4
442246JetIntersectIndexes@20
443247JetMakeKey@20
......@@ -455,6 +259,7 @@ JetOSSnapshotPrepareInstance@12
455259JetOSSnapshotThaw@8
456260JetOSSnapshotTruncateLog@8
457261JetOSSnapshotTruncateLogInstance@12
262JetOnlinePatchDatabasePage@32
458263JetOpenDatabase@20
459264JetOpenDatabaseA@20
460265JetOpenDatabaseW@20
......@@ -463,9 +268,9 @@ JetOpenFileA@16
463268JetOpenFileInstance@20
464269JetOpenFileInstanceA@20
465270JetOpenFileInstanceW@20
466JetOpenFileSectionInstance@28
467JetOpenFileSectionInstanceA@28
468JetOpenFileSectionInstanceW@28
271JetOpenFileSectionInstance@36
272JetOpenFileSectionInstanceA@36
273JetOpenFileSectionInstanceW@36
469274JetOpenFileW@16
470275JetOpenTable@28
471276JetOpenTableA@28
......@@ -473,12 +278,23 @@ JetOpenTableW@28
473278JetOpenTempTable2@28
474279JetOpenTempTable3@28
475280JetOpenTempTable@24
281JetOpenTemporaryTable2@8
476282JetOpenTemporaryTable@8
283JetPatchDatabasePages@28
284JetPatchDatabasePagesA@28
285JetPatchDatabasePagesW@28
477286JetPrepareToCommitTransaction@16
478287JetPrepareUpdate@12
288JetPrereadColumnsByReference@36
289JetPrereadIndexRange@28
290JetPrereadIndexRanges@32
291JetPrereadKeys@28
292JetPrereadTablesW@20
479293JetReadFile@16
480294JetReadFileInstance@20
481295JetRegisterCallback@24
296JetRemoveLogfileA@12
297JetRemoveLogfileW@12
482298JetRenameColumn@20
483299JetRenameColumnA@20
484300JetRenameColumnW@20
......@@ -488,6 +304,7 @@ JetRenameTableW@16
488304JetResetCounter@8
489305JetResetSessionContext@4
490306JetResetTableSequential@12
307JetResizeDatabase@20
491308JetRestore2@12
492309JetRestore2A@12
493310JetRestore2W@12
......@@ -498,6 +315,8 @@ JetRestoreInstanceA@16
498315JetRestoreInstanceW@16
499316JetRestoreW@8
500317JetRetrieveColumn@32
318JetRetrieveColumnByReference@36
319JetRetrieveColumnFromRecordStream@28
501320JetRetrieveColumns@16
502321JetRetrieveKey@24
503322JetRetrieveTaggedColumnList@28
......@@ -520,6 +339,7 @@ JetSetCurrentIndex4W@24
520339JetSetCurrentIndex@12
521340JetSetCurrentIndexA@12
522341JetSetCurrentIndexW@12
342JetSetCursorFilter@20
523343JetSetDatabaseSize@16
524344JetSetDatabaseSizeA@16
525345JetSetDatabaseSizeW@16
......@@ -528,9 +348,13 @@ JetSetLS@16
528348JetSetMaxDatabaseSize@16
529349JetSetResourceParam@16
530350JetSetSessionContext@8
351JetSetSessionParameter@16
531352JetSetSystemParameter@20
532353JetSetSystemParameterA@20
533354JetSetSystemParameterW@20
355JetSetTableInfo@20
356JetSetTableInfoA@20
357JetSetTableInfoW@20
534358JetSetTableSequential@12
535359JetSnapshotStart@12
536360JetSnapshotStartA@12
......@@ -539,9 +363,12 @@ JetSnapshotStop@8
539363JetStopBackup@0
540364JetStopBackupInstance@4
541365JetStopService@0
366JetStopServiceInstance2@8
542367JetStopServiceInstance@4
368JetStreamRecords@32
543369JetTerm2@8
544370JetTerm@4
371JetTestHook@8
545372JetTracing@12
546373JetTruncateLog@0
547374JetTruncateLogInstance@4
......@@ -551,7 +378,4 @@ JetUpdate@20
551378JetUpgradeDatabase@16
552379JetUpgradeDatabaseA@16
553380JetUpgradeDatabaseW@16
554ese@20
555esent@12
556ese@20@20
557esent@12@12
381ese@8
lib/libc/mingw/lib32/feclient.def created+43
......@@ -0,0 +1,43 @@
1;
2; Definition file of FeClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "FeClient.dll"
7EXPORTS
8EfsUtilGetCurrentKey@16
9EdpContainerizeFile@20
10EdpCredentialCreate@16
11EdpCredentialDelete@20
12EdpCredentialExists@16
13EdpCredentialQuery@16
14EdpDecontainerizeFile@12
15EdpDplPolicyEnabledForUser@8
16EdpDplUpgradePinInfo@16
17EdpDplUpgradeVerifyUser@16
18EdpDplUserCredentialsSet@16
19EdpDplUserUnlockComplete@12
20EdpDplUserUnlockStart@20
21EdpFree@4
22EdpGetContainerIdentity@8
23EdpGetCredServiceState@36
24EdpQueryCredServiceInfo@20
25EdpQueryDplEnforcedPolicyOwnerIds@8
26EdpQueryRevokedPolicyOwnerIds@12
27EdpRmsClearKeys
28EdpSetCredServiceInfo@20
29EfsClientCloseFileRaw@4
30EfsClientDecryptFile@8
31EfsClientDuplicateEncryptionInfo@20
32EfsClientEncryptFileEx@8
33EfsClientFileEncryptionStatus@8
34EfsClientFreeProtectorList@4
35EfsClientGetEncryptedFileVersion@12
36EfsClientOpenFileRaw@12
37EfsClientQueryProtectors@8
38EfsClientReadFileRaw@12
39EfsClientWriteFileRaw@12
40EfsClientWriteFileWithHeaderRaw@32
41FeClientInitialize@8
42GetLockSessionUnwrappedKey@28
43GetLockSessionWrappedKey@28
lib/libc/mingw/lib32/fontsub.def created+4
......@@ -0,0 +1,4 @@
1LIBRARY "fontsub.dll"
2EXPORTS
3CreateFontPackage
4MergeFontPackage
lib/libc/mingw/lib32/gamemode.def created+7
......@@ -0,0 +1,7 @@
1LIBRARY gamemode.dll
2
3EXPORTS
4
5GetExpandedResourceExclusiveCpuCount@4
6HasExpandedResources@4
7ReleaseExclusiveCpuSets@0
lib/libc/mingw/lib32/gdi32.def-2
......@@ -738,8 +738,6 @@ RemoveFontResourceExA@12
738738RemoveFontResourceExW@12
739739RemoveFontResourceTracking@8
740740RemoveFontResourceW@4
741RemoveFontResourceExA@12
742RemoveFontResourceExW@12
743741ResetDCA@8
744742ResetDCW@8
745743ResizePalette@8
lib/libc/mingw/lib32/glaux.def created+173
......@@ -0,0 +1,173 @@
1LIBRARY GLAUX.DLL
2EXPORTS
3AllocateMemory@4
4AllocateZeroedMemory@4
5CleanUp@0
6ComponentFromIndex@12
7CreateCIPalette@4
8CreateRGBPalette@4
9DelayPaletteRealization@0
10DestroyThisWindow@4
11FillRgbPaletteEntries@12
12FindBestPixelFormat@12
13FindExactPixelFormat@12
14FindPixelFormat@8
15FlushPalette@8
16ForceRedraw@4
17FreeMemory@4
18GetRegistrySysColors@8
19GrabStaticEntries@4
20IsPixelFormatValid@12
21PixelFormatDescriptorFromDc@8
22PrintMessage
23RealizePaletteNow@12
24ReleaseStaticEntries@4
25UpdateStaticMapping@4
26tkCloseWindow@0
27tkDisplayFunc@4
28tkErrorPopups@4
29tkExec@0
30tkExposeFunc@4
31tkGetColorMapSize@0
32tkGetDisplayMode@0
33tkGetDisplayModeID@0
34tkGetDisplayModePolicy@0
35tkGetHDC@0
36tkGetHRC@0
37tkGetHWND@0
38tkGetMouseLoc@8
39tkIdleFunc@4
40tkInitDisplayMode@4
41tkInitDisplayModeID@4
42tkInitDisplayModePolicy@4
43tkInitPosition@16
44tkInitWindow@4
45tkInitWindowAW@8
46tkKeyDownFunc@4
47tkMouseDownFunc@4
48tkMouseMoveFunc@4
49tkMouseUpFunc@4
50tkQuit@0
51tkReshapeFunc@4
52tkSetFogRamp@8
53tkSetGreyRamp@0
54tkSetOneColor@16
55tkSetRGBMap@8
56tkSwapBuffers@0
57tkWndProc@16
58RawImageClose@4
59RawImageGetData@8
60RawImageGetRow@16
61RawImageOpenAW@8
62tkRGBImageLoad@4
63tkRGBImageLoadAW@8
64tkCreateBitmapFont@4
65tkCreateFilledFont@4
66tkCreateOutlineFont@4
67tkCreateStrokeFont@4
68tkDrawStr@8
69DibNumColors@4
70tkDIBImageLoad@4
71tkDIBImageLoadAW@8
72m_popmatrix@0
73m_pushmatrix@0
74m_scale@24
75m_translate@24
76m_xformpt@16
77m_xformptonly@8
78add3@12
79copy3@8
80copymat3@8
81crossprod@12
82diff3@12
83dist3@8
84dot3@8
85error@4
86identifymat3@4
87length3@4
88normalize@4
89perpnorm@16
90samepoint@8
91scalarmult@16
92seterrorfunc@4
93xformvec3@12
94auxSolidTeapot@8
95auxWireTeapot@8
96solidTeapot@12
97wireTeapot@12
98auxSolidBox@24
99auxSolidCone@16
100auxSolidCube@8
101auxSolidCylinder@16
102auxSolidDodecahedron@8
103auxSolidIcosahedron@8
104auxSolidOctahedron@8
105auxSolidSphere@8
106auxSolidTetrahedron@8
107auxSolidTorus@16
108auxWireBox@24
109auxWireCone@16
110auxWireCube@8
111auxWireCylinder@16
112auxWireDodecahedron@8
113auxWireIcosahedron@8
114auxWireOctahedron@8
115auxWireSphere@8
116auxWireTetrahedron@8
117auxWireTorus@16
118compareParams@12
119dodecahedron@16
120doughnut@28
121drawbox@52
122drawtriangle@32
123findList@12
124icosahedron@16
125initdodec@0
126makeModelPtr@12
127octahedron@16
128pentagon@24
129recorditem@32
130subdivide@36
131tetrahedron@16
132auxDIBImageLoadA@4
133auxDIBImageLoadW@4
134auxRGBImageLoadA@4
135auxRGBImageLoadW@4
136auxCreateFont@0
137auxDrawStrA@4
138auxDrawStrAW@8
139auxDrawStrW@4
140DefaultHandleExpose@8
141DefaultHandleReshape@8
142KeyDown@8
143MouseDown@12
144MouseLoc@12
145MouseUp@12
146auxCloseWindow@0
147auxExposeFunc@4
148auxGetColorMapSize@0
149auxGetDisplayMode@0
150auxGetDisplayModeID@0
151auxGetDisplayModePolicy@0
152auxGetHDC@0
153auxGetHGLRC@0
154auxGetHWND@0
155auxGetMouseLoc@8
156auxIdleFunc@4
157auxInitDisplayMode@4
158auxInitDisplayModeID@4
159auxInitDisplayModePolicy@4
160auxInitPosition@16
161auxInitWindowA@4
162auxInitWindowAW@8
163auxInitWindowW@4
164auxKeyFunc@8
165auxMainLoop@4
166auxMouseFunc@12
167auxQuit@0
168auxReshapeFunc@4
169auxSetFogRamp@8
170auxSetGreyRamp@0
171auxSetOneColor@16
172auxSetRGBMap@8
173auxSwapBuffers@0
lib/libc/mingw/lib32/glut.def created+116
......@@ -0,0 +1,116 @@
1LIBRARY glut.dll
2EXPORTS
3glutAddMenuEntry@8
4glutAddSubMenu@8
5glutAttachMenu@4
6glutBitmapCharacter@8
7glutBitmapLength@8
8glutBitmapWidth@8
9glutButtonBoxFunc@4
10glutChangeToMenuEntry@12
11glutChangeToSubMenu@12
12glutCopyColormap@4
13glutCreateMenu@4
14glutCreateSubWindow@20
15glutCreateWindow@4
16glutDestroyMenu@4
17glutDestroyWindow@4
18glutDetachMenu@4
19glutDeviceGet@4
20glutDialsFunc@4
21glutDisplayFunc@4
22glutEnterGameMode@0
23glutEntryFunc@4
24glutEstablishOverlay@0
25glutExtensionSupported@4
26glutForceJoystickFunc@0
27glutFullScreen@0
28glutGameModeGet@4
29glutGameModeString@4
30glutGet@4
31glutGetColor@8
32glutGetMenu@0
33glutGetModifiers@0
34glutGetWindow@0
35glutHideOverlay@0
36glutHideWindow@0
37glutIconifyWindow@0
38glutIdleFunc@4
39glutIgnoreKeyRepeat@4
40glutInit@8
41glutInitDisplayMode@4
42glutInitDisplayString@4
43glutInitWindowPosition@8
44glutInitWindowSize@8
45glutJoystickFunc@8
46glutKeyboardFunc@4
47glutKeyboardUpFunc@4
48glutLayerGet@4
49glutLeaveGameMode@0
50glutMainLoop@0
51glutMenuStateFunc@4
52glutMenuStatusFunc@4
53glutMotionFunc@4
54glutMouseFunc@4
55glutOverlayDisplayFunc@4
56glutPassiveMotionFunc@4
57glutPopWindow@0
58glutPositionWindow@8
59glutPostOverlayRedisplay@0
60glutPostRedisplay@0
61glutPostWindowOverlayRedisplay@4
62glutPostWindowRedisplay@4
63glutPushWindow@0
64glutRemoveMenuItem@4
65glutRemoveOverlay@0
66glutReportErrors@0
67glutReshapeFunc@4
68glutReshapeWindow@8
69glutSetColor@16
70glutSetCursor@4
71glutSetIconTitle@4
72glutSetKeyRepeat@4
73glutSetMenu@4
74glutSetWindow@4
75glutSetWindowTitle@4
76glutSetupVideoResizing@0
77glutShowOverlay@0
78glutShowWindow@0
79glutSolidCone@24
80glutSolidCube@8
81glutSolidDodecahedron@0
82glutSolidIcosahedron@0
83glutSolidOctahedron@0
84glutSolidSphere@16
85glutSolidTeapot@8
86glutSolidTetrahedron@0
87glutSolidTorus@24
88glutSpaceballButtonFunc@4
89glutSpaceballMotionFunc@4
90glutSpaceballRotateFunc@4
91glutSpecialFunc@4
92glutSpecialUpFunc@4
93glutStopVideoResizing@0
94glutStrokeCharacter@8
95glutStrokeLength@8
96glutStrokeWidth@8
97glutSwapBuffers@0
98glutTabletButtonFunc@4
99glutTabletMotionFunc@4
100glutTimerFunc@12
101glutUseLayer@4
102glutVideoPan@16
103glutVideoResize@16
104glutVideoResizeGet@4
105glutVisibilityFunc@4
106glutWarpPointer@8
107glutWindowStatusFunc@4
108glutWireCone@24
109glutWireCube@8
110glutWireDodecahedron@0
111glutWireIcosahedron@0
112glutWireOctahedron@0
113glutWireSphere@16
114glutWireTeapot@8
115glutWireTetrahedron@0
116glutWireTorus@24
lib/libc/mingw/lib32/glut32.def created+116
......@@ -0,0 +1,116 @@
1LIBRARY glut32.dll
2EXPORTS
3glutAddMenuEntry@8
4glutAddSubMenu@8
5glutAttachMenu@4
6glutBitmapCharacter@8
7glutBitmapLength@8
8glutBitmapWidth@8
9glutButtonBoxFunc@4
10glutChangeToMenuEntry@12
11glutChangeToSubMenu@12
12glutCopyColormap@4
13glutCreateMenu@4
14glutCreateSubWindow@20
15glutCreateWindow@4
16glutDestroyMenu@4
17glutDestroyWindow@4
18glutDetachMenu@4
19glutDeviceGet@4
20glutDialsFunc@4
21glutDisplayFunc@4
22glutEnterGameMode@0
23glutEntryFunc@4
24glutEstablishOverlay@0
25glutExtensionSupported@4
26glutForceJoystickFunc@0
27glutFullScreen@0
28glutGameModeGet@4
29glutGameModeString@4
30glutGet@4
31glutGetColor@8
32glutGetMenu@0
33glutGetModifiers@0
34glutGetWindow@0
35glutHideOverlay@0
36glutHideWindow@0
37glutIconifyWindow@0
38glutIdleFunc@4
39glutIgnoreKeyRepeat@4
40glutInit@8
41glutInitDisplayMode@4
42glutInitDisplayString@4
43glutInitWindowPosition@8
44glutInitWindowSize@8
45glutJoystickFunc@8
46glutKeyboardFunc@4
47glutKeyboardUpFunc@4
48glutLayerGet@4
49glutLeaveGameMode@0
50glutMainLoop@0
51glutMenuStateFunc@4
52glutMenuStatusFunc@4
53glutMotionFunc@4
54glutMouseFunc@4
55glutOverlayDisplayFunc@4
56glutPassiveMotionFunc@4
57glutPopWindow@0
58glutPositionWindow@8
59glutPostOverlayRedisplay@0
60glutPostRedisplay@0
61glutPostWindowOverlayRedisplay@4
62glutPostWindowRedisplay@4
63glutPushWindow@0
64glutRemoveMenuItem@4
65glutRemoveOverlay@0
66glutReportErrors@0
67glutReshapeFunc@4
68glutReshapeWindow@8
69glutSetColor@16
70glutSetCursor@4
71glutSetIconTitle@4
72glutSetKeyRepeat@4
73glutSetMenu@4
74glutSetWindow@4
75glutSetWindowTitle@4
76glutSetupVideoResizing@0
77glutShowOverlay@0
78glutShowWindow@0
79glutSolidCone@24
80glutSolidCube@8
81glutSolidDodecahedron@0
82glutSolidIcosahedron@0
83glutSolidOctahedron@0
84glutSolidSphere@16
85glutSolidTeapot@8
86glutSolidTetrahedron@0
87glutSolidTorus@24
88glutSpaceballButtonFunc@4
89glutSpaceballMotionFunc@4
90glutSpaceballRotateFunc@4
91glutSpecialFunc@4
92glutSpecialUpFunc@4
93glutStopVideoResizing@0
94glutStrokeCharacter@8
95glutStrokeLength@8
96glutStrokeWidth@8
97glutSwapBuffers@0
98glutTabletButtonFunc@4
99glutTabletMotionFunc@4
100glutTimerFunc@12
101glutUseLayer@4
102glutVideoPan@16
103glutVideoResize@16
104glutVideoResizeGet@4
105glutVisibilityFunc@4
106glutWarpPointer@8
107glutWindowStatusFunc@4
108glutWireCone@24
109glutWireCube@8
110glutWireDodecahedron@0
111glutWireIcosahedron@0
112glutWireOctahedron@0
113glutWireSphere@16
114glutWireTeapot@8
115glutWireTetrahedron@0
116glutWireTorus@24
lib/libc/mingw/lib32/gpapi.def created+33
......@@ -0,0 +1,33 @@
1;
2; Definition file of GPAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "GPAPI.dll"
7EXPORTS
8ord_105@20 @105
9EnterCriticalPolicySectionInternal@4
10ord_107@8 @107
11ForceSyncFgPolicyInternal@4
12ord_109@12 @109
13ord_110@12 @110
14ord_111@8 @111
15FreeGPOListInternalA@4
16ord_113@12 @113
17ord_114@16 @114
18ord_115@20 @115
19FreeGPOListInternalW@4
20GetAppliedGPOListInternalA@20
21GetAppliedGPOListInternalW@20
22GetGPOListInternalA@4
23GetGPOListInternalW@24
24GetNextFgPolicyRefreshInfoInternal@8
25GetPreviousFgPolicyRefreshInfoInternal@8
26LeaveCriticalPolicySectionInternal@4
27RefreshPolicyExInternal@8
28RefreshPolicyInternal@4
29RegisterGPNotificationInternal@8
30RsopLoggingEnabledInternal
31UnregisterGPNotificationInternal@4
32WaitForMachinePolicyForegroundProcessingInternal
33WaitForUserPolicyForegroundProcessingInternal
lib/libc/mingw/lib32/gpprefcl.def created+74
......@@ -0,0 +1,74 @@
1;
2; Definition file of polprocl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "polprocl.dll"
7EXPORTS
8DllCanUnloadNow
9DllGetClassObject@12
10DllRegisterServer
11DllUnregisterServer
12GenerateGroupPolicyApplications@20
13GenerateGroupPolicyDataSources@20
14GenerateGroupPolicyDevices@20
15GenerateGroupPolicyDrives@20
16GenerateGroupPolicyEnviron@20
17GenerateGroupPolicyFiles@20
18GenerateGroupPolicyFolderOptions@20
19GenerateGroupPolicyFolders@20
20GenerateGroupPolicyIniFile@20
21GenerateGroupPolicyInternet@20
22GenerateGroupPolicyLocUsAndGroups@20
23GenerateGroupPolicyNetShares@20
24GenerateGroupPolicyNetworkOptions@20
25GenerateGroupPolicyPowerOptions@20
26GenerateGroupPolicyPrinters@20
27GenerateGroupPolicyRegionOptions@20
28GenerateGroupPolicyRegistry@20
29GenerateGroupPolicySchedTasks@20
30GenerateGroupPolicyServices@20
31GenerateGroupPolicyShortcuts@20
32GenerateGroupPolicyStartMenu@20
33ProcessGroupPolicyApplications@32
34ProcessGroupPolicyDataSources@32
35ProcessGroupPolicyDevices@32
36ProcessGroupPolicyDrives@32
37ProcessGroupPolicyEnviron@32
38ProcessGroupPolicyExApplications@40
39ProcessGroupPolicyExDataSources@40
40ProcessGroupPolicyExDevices@40
41ProcessGroupPolicyExDrives@40
42ProcessGroupPolicyExEnviron@40
43ProcessGroupPolicyExFiles@40
44ProcessGroupPolicyExFolderOptions@40
45ProcessGroupPolicyExFolders@40
46ProcessGroupPolicyExIniFile@40
47ProcessGroupPolicyExInternet@40
48ProcessGroupPolicyExLocUsAndGroups@40
49ProcessGroupPolicyExNetShares@40
50ProcessGroupPolicyExNetworkOptions@40
51ProcessGroupPolicyExPowerOptions@40
52ProcessGroupPolicyExPrinters@40
53ProcessGroupPolicyExRegionOptions@40
54ProcessGroupPolicyExRegistry@40
55ProcessGroupPolicyExSchedTasks@40
56ProcessGroupPolicyExServices@40
57ProcessGroupPolicyExShortcuts@40
58ProcessGroupPolicyExStartMenu@40
59ProcessGroupPolicyFiles@32
60ProcessGroupPolicyFolderOptions@32
61ProcessGroupPolicyFolders@32
62ProcessGroupPolicyIniFile@32
63ProcessGroupPolicyInternet@32
64ProcessGroupPolicyLocUsAndGroups@32
65ProcessGroupPolicyNetShares@32
66ProcessGroupPolicyNetworkOptions@32
67ProcessGroupPolicyPowerOptions@32
68ProcessGroupPolicyPrinters@32
69ProcessGroupPolicyRegionOptions@32
70ProcessGroupPolicyRegistry@32
71ProcessGroupPolicySchedTasks@32
72ProcessGroupPolicyServices@32
73ProcessGroupPolicyShortcuts@32
74ProcessGroupPolicyStartMenu@32
lib/libc/mingw/lib32/gpscript.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of GPSCRIPT.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "GPSCRIPT.DLL"
7EXPORTS
8GenerateScriptsGroupPolicy@20
9ProcessScriptsGroupPolicy@32
10ProcessScriptsGroupPolicyEx@40
11ScrRegGPOListToWbem@8
lib/libc/mingw/lib32/gptext.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of GPTEXT.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "GPTEXT.DLL"
7EXPORTS
8ProcessEQoSPolicy@32
9ProcessPSCHEDPolicy@32
10DllRegisterServer
11DllUnregisterServer
lib/libc/mingw/lib32/hal.def created+125
......@@ -0,0 +1,125 @@
1;
2; Definition file of HAL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "HAL.dll"
7EXPORTS
8@ExAcquireFastMutex@4
9@ExReleaseFastMutex@4
10@ExTryToAcquireFastMutex@4
11@HalClearSoftwareInterrupt@4
12; HalRequestClockInterrupt ; FIXME: must be a @fastcall with @4
13@HalRequestSoftwareInterrupt@4
14@HalSystemVectorDispatchEntry@12
15@KeAcquireInStackQueuedSpinLock@8
16@KeAcquireInStackQueuedSpinLockRaiseToSynch@8
17@KeAcquireQueuedSpinLock@4
18@KeAcquireQueuedSpinLockRaiseToSynch@4
19@KeAcquireSpinLockRaiseToSynch@4
20@KeReleaseInStackQueuedSpinLock@4
21@KeReleaseQueuedSpinLock@8
22@KeTryToAcquireQueuedSpinLock@8
23@KeTryToAcquireQueuedSpinLockRaiseToSynch@8
24@KfAcquireSpinLock@4
25@KfLowerIrql@4
26@KfRaiseIrql@4
27@KfReleaseSpinLock@8
28HalAcquireDisplayOwnership@4
29HalAdjustResourceList@4
30HalAllProcessorsStarted@0
31HalAllocateAdapterChannel@16
32HalAllocateCommonBuffer@16
33HalAllocateCrashDumpRegisters@8
34HalAllocateHardwareCounters@16
35HalAssignSlotResources@32
36HalBeginSystemInterrupt@12
37; HalBugCheckSystem ; FIXME: >= Win7: @8, < Win7: @4
38HalCalibratePerformanceCounter@12
39HalConvertDeviceIdtToIrql@4 ; FIXME: Verify!
40HalDisableInterrupt@4 ; FIXME: Verify!
41HalDisplayString@4
42HalEnableInterrupt@4 ; FIXME: Verify!
43HalEndSystemInterrupt@8
44HalEnumerateEnvironmentVariablesEx@12 ; FIXME: Verify!
45HalFlushCommonBuffer@20
46HalFreeCommonBuffer@24
47HalFreeHardwareCounters@4
48HalGetAdapter@8
49HalGetBusData@20
50HalGetBusDataByOffset@24
51HalGetEnvironmentVariable@12
52HalGetEnvironmentVariableEx@20 ; FIXME: Verify!
53HalGetInterruptTargetInformation@12 ; FIXME: Verify!
54HalGetInterruptVector@24
55HalGetMemoryCachingRequirements@20 ; FIXME: Verify!
56HalGetMessageRoutingInfo@8 ; FIXME: Verify!
57HalGetProcessorIdByNtNumber@8 ; FIXME: Verify!
58;HalGetVectorInput ; Check!!! Couldn't determine function argument count. Function doesn't return.
59HalHandleNMI@4
60HalInitSystem@8
61HalInitializeBios@8
62HalInitializeOnResume@4 ; FIXME: Verify!
63HalInitializeProcessor@8
64HalMakeBeep@4
65HalMcUpdateReadPCIConfig@20 ; FIXME: Verify!
66HalProcessorIdle@0
67HalQueryDisplayParameters@16
68HalQueryEnvironmentVariableInfoEx@16 ; FIXME: Verify!
69HalQueryMaximumProcessorCount@0 ; FIXME: Verify!
70HalQueryRealTimeClock@4
71HalReadDmaCounter@4
72HalRegisterDynamicProcessor@8 ; FIXME: Verify!
73HalRegisterErrataCallbacks@0 ; FIXME: Verify!
74HalReportResourceUsage@0
75HalRequestIpi@8 ; FIXME: must be @4 : func(KAFFINITY == ULONG_PTR), dll from XP dumps as @4
76HalReturnToFirmware@4
77HalSetBusData@20
78HalSetBusDataByOffset@24
79HalSetDisplayParameters@8
80HalSetEnvironmentVariable@8
81HalSetEnvironmentVariableEx@20 ; FIXME: Verify!
82HalSetProfileInterval@4
83HalSetRealTimeClock@4
84HalSetTimeIncrement@4
85HalStartDynamicProcessor@16 ; FIXME: Verify!
86HalStartNextProcessor@12 ; FIXME: must be @8 : func(PLOADER_PARAMETER_BLOCK,PKPROCESSOR_STATE), dll from xp dumps as @8
87HalStartProfileInterrupt@4
88HalStopProfileInterrupt@4
89HalTranslateBusAddress@24
90IoAssignDriveLetters@16
91IoFlushAdapterBuffers@24
92IoFreeAdapterChannel@4
93IoFreeMapRegisters@12
94IoMapTransfer@24
95IoReadPartitionTable@16
96IoSetPartitionInformation@16
97IoWritePartitionTable@20
98KdComPortInUse DATA
99KeAcquireSpinLock@8
100KeFlushWriteBuffer@0
101KeGetCurrentIrql@0
102KeLowerIrql@4
103KeQueryPerformanceCounter@4
104KeRaiseIrql@8
105KeRaiseIrqlToDpcLevel@0
106KeRaiseIrqlToSynchLevel@0
107KeReleaseSpinLock@8
108KeStallExecutionProcessor@4
109READ_PORT_BUFFER_UCHAR@12
110READ_PORT_BUFFER_ULONG@12
111READ_PORT_BUFFER_USHORT@12
112READ_PORT_UCHAR@4
113READ_PORT_ULONG@4
114READ_PORT_USHORT@4
115WRITE_PORT_BUFFER_UCHAR@12
116WRITE_PORT_BUFFER_ULONG@12
117WRITE_PORT_BUFFER_USHORT@12
118WRITE_PORT_UCHAR@8
119WRITE_PORT_ULONG@8
120WRITE_PORT_USHORT@8
121x86BiosAllocateBuffer@12
122x86BiosCall@8
123x86BiosFreeBuffer@8
124x86BiosReadMemory@16
125x86BiosWriteMemory@16
lib/libc/mingw/lib32/hidclass.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of HIDCLASS.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "HIDCLASS.SYS"
7EXPORTS
8DllInitialize@4
9DllUnload@0
10HidNotifyPresence@8
11HidRegisterMinidriver@4
lib/libc/mingw/lib32/hidparse.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of HIDPARSE.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "HIDPARSE.SYS"
7EXPORTS
8HidP_FreeCollectionDescription@4
9HidP_GetButtonCaps@16
10HidP_GetCaps@8
11HidP_GetCollectionDescription@16
12HidP_GetData@24
13HidP_GetExtendedAttributes@20
14HidP_GetLinkCollectionNodes@12
15HidP_GetScaledUsageValue@32
16HidP_GetSpecificButtonCaps@28
17HidP_GetSpecificValueCaps@28
18HidP_GetUsageValue@32
19HidP_GetUsageValueArray@36
20HidP_GetUsages@32
21HidP_GetUsagesEx@28
22HidP_GetValueCaps@16
23HidP_InitializeReportForID@20
24HidP_MaxDataListLength@8
25HidP_MaxUsageListLength@12
26HidP_SetData@24
27HidP_SetScaledUsageValue@32
28HidP_SetUsageValue@32
29HidP_SetUsageValueArray@36
30HidP_SetUsages@32
31HidP_SysPowerCaps@8
32HidP_SysPowerEvent@16
33HidP_TranslateUsageAndPagesToI8042ScanCodes@24
34HidP_TranslateUsagesToI8042ScanCodes@24
35HidP_UnsetUsages@32
36HidP_UsageAndPageListDifference@20
37HidP_UsageListDifference@20
lib/libc/mingw/lib32/hrtfapo.def created+9
......@@ -0,0 +1,9 @@
1LIBRARY hrtfapo
2
3EXPORTS
4
5CreateHrtfApo@8
6CreateHrtfApoWithDatasetType@12
7CreateHrtfEngineFactory@4
8GetHrtfEngineMinFrameCount@0
9IsHrtfApoAvailable@0
lib/libc/mingw/lib32/htmlhelp.def created+15
......@@ -0,0 +1,15 @@
1; library name is libhtmlhelp.a but
2; functions exported from hhcrtl.ocx
3
4LIBRARY "hhctrl.ocx"
5EXPORTS
6LoadHHA@8
7DllCanUnloadNow@0
8AuthorMsg@16
9DllGetClassObject@12
10DllRegisterServer@0
11DllUnregisterServer@0
12doWinMain@8
13HtmlHelpA@16
14HtmlHelpW@16
15HhWindowThread@4
lib/libc/mingw/lib32/igmpagnt.def created+6
......@@ -0,0 +1,6 @@
1LIBRARY igmpagnt.dll
2EXPORTS
3SnmpExtensionClose@0
4SnmpExtensionInit@12
5SnmpExtensionQuery@16
6SnmpExtensionTrap@20
lib/libc/mingw/lib32/imagehlp.def created+114
......@@ -0,0 +1,114 @@
1LIBRARY IMAGEHLP.DLL
2EXPORTS
3BindImage@12
4BindImageEx@20
5CheckSumMappedFile@16
6CopyPdb@12
7EnumerateLoadedModules32@12
8EnumerateLoadedModules64@12
9EnumerateLoadedModules@12
10FindDebugInfoFile@12
11FindDebugInfoFileEx@20
12FindExecutableImage@12
13GetImageConfigInformation@8
14GetImageUnusedHeaderBytes@8
15GetTimestampForLoadedLibrary@4
16ImageAddCertificate@12
17ImageDirectoryEntryToData@16
18ImageDirectoryEntryToDataEx@20
19ImageEnumerateCertificates@20
20ImageGetCertificateData@16
21ImageGetCertificateHeader@12
22ImageGetDigestStream@16
23ImageLoad@8
24ImageNtHeader@4
25ImageRemoveCertificate@8
26ImageRvaToSection@12
27ImageRvaToVa@16
28ImageUnload@4
29ImagehlpApiVersion@0
30ImagehlpApiVersionEx@4
31MakeSureDirectoryPathExists@4
32MapAndLoad@20
33MapDebugInformation32@16
34MapDebugInformation64@20
35MapDebugInformation@16
36MapFileAndCheckSumA@12
37MapFileAndCheckSumW@12
38MarkImageAsRunFromSwap@8
39ReBaseImage@44
40RemovePrivateCvSymbolic@12
41RemovePrivateCvSymbolicEx@16
42RemoveRelocations@4
43SearchTreeForFile@12
44SetImageConfigInformation@8
45SplitSymbols@16
46StackWalk32@36
47StackWalk64@36
48StackWalk@36
49SymCleanup@4
50SymEnumerateModules32@12
51SymEnumerateModules64@12
52SymEnumerateModules@12
53SymEnumerateSymbols32@16
54SymEnumerateSymbols64@20
55SymEnumerateSymbols@16
56SymFunctionTableAccess32@8
57SymFunctionTableAccess64@12
58SymFunctionTableAccess@8
59SymGetLineFromAddr32@16
60SymGetLineFromAddr64@20
61SymGetLineFromAddr@16
62SymGetLineFromName32@24
63SymGetLineFromName64@24
64SymGetLineFromName@24
65SymGetLineNext32@8
66SymGetLineNext64@8
67SymGetLineNext@8
68SymGetLinePrev32@8
69SymGetLinePrev64@8
70SymGetLinePrev@8
71SymGetModuleBase32@8
72SymGetModuleBase64@12
73SymGetModuleBase@8
74SymGetModuleInfo32@12
75SymGetModuleInfo64@16
76SymGetModuleInfo@12
77SymGetOptions@0
78SymGetSearchPath@12
79SymGetSymFromAddr32@16
80SymGetSymFromAddr64@20
81SymGetSymFromAddr@16
82SymGetSymFromName32@12
83SymGetSymFromName64@12
84SymGetSymFromName@12
85SymGetSymNext32@8
86SymGetSymNext64@8
87SymGetSymNext@8
88SymGetSymPrev32@8
89SymGetSymPrev64@8
90SymGetSymPrev@8
91SymInitialize@12
92SymLoadModule32@24
93SymLoadModule64@28
94SymLoadModule@24
95SymMatchFileName@16
96SymRegisterCallback32@12
97SymRegisterCallback64@16
98SymRegisterCallback@12
99SymSetOptions@4
100SymSetSearchPath@8
101SymUnDName32@12
102SymUnDName64@12
103SymUnDName@12
104SymUnloadModule32@8
105SymUnloadModule64@12
106SymUnloadModule@8
107TouchFileTimes@8
108UnDecorateSymbolName@16
109UnMapAndLoad@4
110UnmapDebugInformation32@4
111UnmapDebugInformation64@4
112UnmapDebugInformation@4
113UpdateDebugInfoFile@16
114UpdateDebugInfoFileEx@20
lib/libc/mingw/lib32/inkobjcore.def created+34
......@@ -0,0 +1,34 @@
1LIBRARY inkobjcore
2
3EXPORTS
4
5AddStroke@20
6AddStrokeWithId@24
7AddWordsToWordList@8
8AdviseInkChange@8
9CreateContext@8
10CreateRecognizer@8
11DestroyContext@4
12DestroyRecognizer@4
13DestroyWordList@4
14EndInkInput@4
15GetAllRecognizers@8
16GetBestResultString@12
17GetLatticePtr@8
18GetLeftSeparator@12
19GetRecoAttributes@8
20GetResultPropertyList@12
21GetRightSeparator@12
22GetUnicodeRanges@12
23IsStringSupported@12
24LoadCachedAttributes@20
25MakeWordList@12
26Process@8
27SetConstraint@12
28SetEnabledUnicodeRanges@12
29SetFactoid@12
30SetFlags@8
31SetGuide@12
32SetStrokeGroupId@12
33SetTextContext@20
34SetWordList@8
lib/libc/mingw/lib32/iphlpapi.def+1
......@@ -178,6 +178,7 @@ InternalCreateIpForwardEntry2@8
178178InternalCreateIpForwardEntry@4
179179InternalCreateIpNetEntry2@8
180180InternalCreateIpNetEntry@4
181InternalCreateOrRefIpForwardEntry2@8
181182InternalCreateUnicastIpAddressEntry@8
182183InternalDeleteAnycastIpAddressEntry@8
183184InternalDeleteIpForwardEntry2@8
lib/libc/mingw/lib32/kernel32.def+47-10
......@@ -11,6 +11,7 @@ AcquireSRWLockExclusive@4
1111AcquireSRWLockShared@4
1212ActivateActCtx@8
1313ActivateActCtxWorker@8
14ActivatePackageVirtualizationContext@8
1415AddAtomA@4
1516AddAtomW@4
1617AddConsoleAliasA@12
......@@ -33,7 +34,7 @@ AllocateUserPhysicalPages@12
3334AllocateUserPhysicalPagesNuma@16
3435AppPolicyGetClrCompat@8
3536AppPolicyGetCreateFileAccess@8
36AAppPolicyGetLifecycleManagement@8
37AppPolicyGetLifecycleManagement@8
3738AppPolicyGetMediaFoundationCodecLoading@8
3839AppPolicyGetProcessTerminationMethod@8
3940AppPolicyGetShowDeveloperDiagnostic@8
......@@ -43,6 +44,7 @@ AppXGetOSMaxVersionTested@8
4344ApplicationRecoveryFinished@4
4445ApplicationRecoveryInProgress@4
4546AreFileApisANSI@0
47AreShortNamesEnabled@8
4648AssignProcessToJobObject@8
4749AttachConsole@4
4850BackupRead@28
......@@ -116,6 +118,12 @@ BuildCommDCBA@8
116118BuildCommDCBAndTimeoutsA@12
117119BuildCommDCBAndTimeoutsW@12
118120BuildCommDCBW@8
121BuildIoRingCancelRequest@20
122BuildIoRingFlushFile@24
123BuildIoRingReadFile@44
124BuildIoRingRegisterBuffers@16
125BuildIoRingRegisterFileHandles@16
126BuildIoRingWriteFile@48
119127CallNamedPipeA@28
120128CallNamedPipeW@28
121129CallbackMayRunLong@4
......@@ -142,6 +150,7 @@ ClearCommBreak@4
142150ClearCommError@12
143151CloseConsoleHandle@4
144152CloseHandle@4
153CloseIoRing@4
145154ClosePackageInfo@4
146155ClosePrivateNamespace@8
147156CloseProfileUserMapping@0
......@@ -218,6 +227,7 @@ CreateHardLinkTransactedA@16
218227CreateHardLinkTransactedW@16
219228CreateHardLinkW@12
220229CreateIoCompletionPort@16
230CreateIoRing@24
221231CreateJobObjectA@8
222232CreateJobObjectW@8
223233CreateJobSet@12
......@@ -230,12 +240,14 @@ CreateMutexExW@16
230240CreateMutexW@12
231241CreateNamedPipeA@32
232242CreateNamedPipeW@32
243CreatePackageVirtualizationContext@8
233244CreatePipe@16
234245CreatePrivateNamespaceA@12
235246CreatePrivateNamespaceW@12
236247CreateProcessA@40
237CreateProcessAsUserA@44
238CreateProcessAsUserW@44
248; MSDN says these are exported from ADVAPI32.DLL.
249; CreateProcessAsUserA@44
250; CreateProcessAsUserW@44
239251CreateProcessInternalA@48
240252CreateProcessInternalW@48
241253CreateProcessW@40
......@@ -270,6 +282,7 @@ CreateWaitableTimerW@12
270282CtrlRoutine@4
271283DeactivateActCtx@8
272284DeactivateActCtxWorker@8
285DeactivatePackageVirtualizationContext@4
273286DebugActiveProcess@4
274287DebugActiveProcessStop@4
275288DebugBreak@0
......@@ -310,6 +323,8 @@ DosPathToSessionPathW@12
310323DuplicateConsoleHandle@16
311324DuplicateEncryptionInfoFileExt@20
312325DuplicateHandle@28
326DuplicatePackageVirtualizationContext@8
327EnableProcessOptionalXStateFeatures@8
313328EnableThreadProfiling@20
314329EncodePointer@4
315330EncodeSystemPointer@4
......@@ -548,6 +563,7 @@ GetCurrentPackageFullName@8
548563GetCurrentPackageId@8
549564GetCurrentPackageInfo@16
550565GetCurrentPackagePath@8
566GetCurrentPackageVirtualizationContext@0
551567GetCurrentProcess@0
552568GetCurrentProcessId@0
553569GetCurrentProcessorNumber@0
......@@ -620,6 +636,7 @@ GetGeoInfoEx@16
620636GetGeoInfoW@20
621637GetHandleContext@4
622638GetHandleInformation@8
639GetIoRingInfo@8
623640GetLargePageMinimum@0
624641GetLargestConsoleWindowSize@4
625642GetLastError@0
......@@ -636,6 +653,7 @@ GetLongPathNameA@12
636653GetLongPathNameTransactedA@16
637654GetLongPathNameTransactedW@16
638655GetLongPathNameW@12
656GetMachineTypeAttributes@8
639657GetMailslotInfo@20
640658GetMaximumProcessorCount@4
641659GetMaximumProcessorGroupCount@0
......@@ -664,6 +682,7 @@ GetNumaAvailableMemoryNode@8
664682GetNumaAvailableMemoryNodeEx@8
665683GetNumaHighestNodeNumber@4
666684GetNumaNodeNumberFromHandle@8
685GetNumaNodeProcessorMask2@16
667686GetNumaNodeProcessorMask@8
668687GetNumaNodeProcessorMaskEx@8
669688GetNumaProcessorNode@8
......@@ -684,7 +703,7 @@ GetPackageFamilyName@12
684703GetPackageFullName@12
685704GetPackageId@12
686705GetPackageInfo@20
687GetPackagePath@24
706GetPackagePath@16
688707GetPackagePathByFullName@12
689708GetPackagesByPackageFamily@20
690709GetPhysicallyInstalledSystemMemory@4
......@@ -702,6 +721,7 @@ GetPrivateProfileStructW@20
702721GetProcAddress@8
703722GetProcessAffinityMask@12
704723GetProcessDEPPolicy@12
724GetProcessDefaultCpuSetMasks@16
705725GetProcessDefaultCpuSets@16
706726GetProcessGroupAffinity@12
707727GetProcessHandleCount@8
......@@ -720,6 +740,7 @@ GetProcessUserModeExceptionPolicy@4
720740GetProcessVersion@4
721741GetProcessWorkingSetSize@12
722742GetProcessWorkingSetSizeEx@16
743GetProcessesInVirtualizationContext@12
723744GetProcessorSystemCycleTime@12
724745GetProductInfo@20
725746GetProductName@8
......@@ -774,8 +795,11 @@ GetTempFileNameA@16
774795GetTempFileNameW@16
775796GetTempPathA@8
776797GetTempPathW@8
798GetTempPath2A@8
799GetTempPath2W@8
777800GetThreadContext@8
778801GetThreadDescription@8
802GetThreadEnabledXStateFeatures@0
779803GetThreadErrorMode@0
780804GetThreadGroupAffinity@8
781805GetThreadIOPendingFlag@8
......@@ -786,6 +810,7 @@ GetThreadLocale@0
786810GetThreadPreferredUILanguages@16
787811GetThreadPriority@4
788812GetThreadPriorityBoost@8
813GetThreadSelectedCpuSetMasks@16
789814GetThreadSelectedCpuSets@16
790815GetThreadSelectorEntry@12
791816GetThreadTimes@20
......@@ -883,7 +908,6 @@ InitOnceInitialize@4
883908InitializeConditionVariable@4
884909InitializeContext2@24
885910InitializeContext@16
886InitializeCriticalSection@4
887911InitializeCriticalSectionAndSpinCount@8
888912InitializeCriticalSectionEx@12
889913InitializeEnclave@20
......@@ -917,6 +941,7 @@ IsDBCSLeadByte@4
917941IsDBCSLeadByteEx@8
918942IsDebuggerPresent@0
919943IsEnclaveTypeSupported@4
944IsIoRingOpSupported@8
920945IsNLSDefinedString@20
921946IsNativeVhdBoot@4
922947IsNormalizedString@12
......@@ -927,6 +952,7 @@ IsSystemResumeAutomatic@0
927952IsThreadAFiber@0
928953IsThreadpoolTimerSet@4
929954IsTimeZoneRedirectionEnabled@0
955IsUserCetAvailableInEnvironment@4
930956IsValidCalDateTime@8
931957IsValidCodePage@4
932958IsValidLanguageGroup@8
......@@ -1069,7 +1095,8 @@ OpenSemaphoreW@12
10691095OpenState@0
10701096OpenStateExplicit@8
10711097OpenThread@12
1072OpenThreadToken@16
1098; MSDN says this is exported from ADVAPI32.DLL.
1099; OpenThreadToken@16
10731100OpenWaitableTimerA@12
10741101OpenWaitableTimerW@12
10751102OutputDebugStringA@4
......@@ -1083,6 +1110,7 @@ ParseApplicationUserModelId@20
10831110PeekConsoleInputA@16
10841111PeekConsoleInputW@16
10851112PeekNamedPipe@24
1113PopIoRingCompletion@8
10861114PostQueuedCompletionStatus@16
10871115PowerClearRequest@8
10881116PowerCreateRequest@4
......@@ -1124,6 +1152,7 @@ QueryIdleProcessorCycleTime@8
11241152QueryIdleProcessorCycleTimeEx@12
11251153QueryInformationJobObject@20
11261154QueryIoRateControlInformationJobObject@16
1155QueryIoRingCapabilities@4
11271156QueryMemoryResourceNotification@8
11281157QueryPerformanceCounter@4
11291158QueryPerformanceFrequency@4
......@@ -1134,6 +1163,7 @@ QueryThreadCycleTime@8
11341163QueryThreadProfiling@8
11351164QueryThreadpoolStackInformation@8
11361165QueryUnbiasedInterruptTime@4
1166QueueUserAPC2@16
11371167QueueUserAPC@12
11381168QueueUserWorkItem@12
11391169QueryWin31IniFilesMappedToRegistry@16
......@@ -1171,7 +1201,6 @@ ReadFileScatter@20
11711201ReadFileVlm@20
11721202ReadProcessMemory@20
11731203ReadThreadProfilingData@12
1174ReclaimVirtualMemory@8
11751204;
11761205; MSDN says these functions are exported
11771206; from advapi32.dll. Commented out for
......@@ -1238,6 +1267,7 @@ ReleaseActCtx@4
12381267ReleaseActCtxWorker@4
12391268ReleaseMutex@4
12401269ReleaseMutexWhenCallbackReturns@8
1270ReleasePackageVirtualizationContext@4
12411271ReleaseSRWLockExclusive@4
12421272ReleaseSRWLockShared@4
12431273ReleaseSemaphore@12
......@@ -1264,7 +1294,6 @@ ResetWriteWatch@8
12641294ResizePseudoConsole@8
12651295ResolveDelayLoadedAPI@24
12661296ResolveDelayLoadsFromDll@12
1267ResolveLocaleName@12
12681297RestoreLastError@4
12691298ResumeThread@4
12701299RtlCaptureContext@4
......@@ -1368,6 +1397,7 @@ SetHandleCount@4
13681397SetHandleInformation@12
13691398SetInformationJobObject@16
13701399SetIoRateControlInformationJobObject@8
1400SetIoRingCompletionEvent@8
13711401SetLastConsoleEventActive@0
13721402SetLastError@4
13731403SetLocalPrimaryComputerNameA@8
......@@ -1383,7 +1413,10 @@ SetPriorityClass@8
13831413SetProcessAffinityMask@8
13841414SetProcessAffinityUpdateMode@8
13851415SetProcessDEPPolicy@4
1416SetProcessDefaultCpuSetMasks@12
13861417SetProcessDefaultCpuSets@12
1418SetProcessDynamicEHContinuationTargets@12
1419SetProcessDynamicEnforcedCetCompatibleRanges@12
13871420SetProcessInformation@16
13881421SetProcessMitigationPolicy@12
13891422SetProcessPreferredUILanguages@12
......@@ -1416,9 +1449,11 @@ SetThreadLocale@4
14161449SetThreadPreferredUILanguages@12
14171450SetThreadPriority@8
14181451SetThreadPriorityBoost@8
1452SetThreadSelectedCpuSetMasks@12
14191453SetThreadSelectedCpuSets@12
14201454SetThreadStackGuarantee@4
1421SetThreadToken@8
1455; MSDN says this is exported from ADVAPI32.DLL.
1456; SetThreadToken@8
14221457SetThreadUILanguage@4
14231458SetThreadpoolStackInformation@8
14241459SetThreadpoolThreadMaximum@8
......@@ -1452,6 +1487,7 @@ SleepEx@8
14521487SortCloseHandle@4
14531488SortGetHandle@12
14541489StartThreadpoolIo@4
1490SubmitIoRing@16
14551491SubmitThreadpoolWork@4
14561492SuspendThread@4
14571493SwitchToFiber@4
......@@ -1498,6 +1534,7 @@ UnhandledExceptionFilter@4
14981534UnlockFile@20
14991535UnlockFileEx@20
15001536UnmapViewOfFile@4
1537UnmapViewOfFileEx@8
15011538UnmapViewOfFileVlm@4
15021539UnregisterApplicationRecoveryCallback@0
15031540UnregisterApplicationRestart@0
......@@ -1538,6 +1575,7 @@ VirtualUnlock@8
15381575WTSGetActiveConsoleSessionId@0
15391576WaitCommEvent@12
15401577WaitForDebugEvent@8
1578WaitForDebugEventEx@8
15411579WaitForMultipleObjects@16
15421580WaitForMultipleObjectsEx@20
15431581WaitForSingleObject@8
......@@ -1618,7 +1656,6 @@ WriteProfileSectionW@8
16181656WriteProfileStringA@12
16191657WriteProfileStringW@12
16201658WriteTapemark@16
1621WTSGetActiveConsoleSessionId@0
16221659ZombifyActCtx@4
16231660ZombifyActCtxWorker@4
16241661_hread@12
lib/libc/mingw/lib32/ks.def created+254
......@@ -0,0 +1,254 @@
1;
2; Definition file of ks.sys
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "ks.sys"
7EXPORTS
8; public: __thiscall CBaseUnknown::CBaseUnknown(struct _GUID const &,struct IUnknown *)
9??0CBaseUnknown@@QAE@ABU_GUID@@PAUIUnknown@@@Z ; has WINAPI (@8)
10; public: __thiscall CBaseUnknown::CBaseUnknown(struct IUnknown *)
11??0CBaseUnknown@@QAE@PAUIUnknown@@@Z ; has WINAPI (@4)
12; public: virtual __thiscall CBaseUnknown::~CBaseUnknown(void)
13??1CBaseUnknown@@UAE@XZ
14; public: void __thiscall CBaseUnknown::__dflt_ctor_closure(void)
15??_FCBaseUnknown@@QAEXXZ
16; public: virtual unsigned long __stdcall CBaseUnknown::IndirectedAddRef(void)
17?IndirectedAddRef@CBaseUnknown@@UAGKXZ ; has WINAPI (@4)
18; public: virtual long __stdcall CBaseUnknown::IndirectedQueryInterface(struct _GUID const &,void **)
19?IndirectedQueryInterface@CBaseUnknown@@UAGJABU_GUID@@PAPAX@Z ; has WINAPI (@12)
20; public: virtual unsigned long __stdcall CBaseUnknown::IndirectedRelease(void)
21?IndirectedRelease@CBaseUnknown@@UAGKXZ ; has WINAPI (@4)
22; public: virtual unsigned long __stdcall CBaseUnknown::NonDelegatedAddRef(void)
23?NonDelegatedAddRef@CBaseUnknown@@UAGKXZ ; has WINAPI (@4)
24; public: virtual long __stdcall CBaseUnknown::NonDelegatedQueryInterface(struct _GUID const &,void **)
25?NonDelegatedQueryInterface@CBaseUnknown@@UAGJABU_GUID@@PAPAX@Z ; has WINAPI (@12)
26; public: virtual unsigned long __stdcall CBaseUnknown::NonDelegatedRelease(void)
27?NonDelegatedRelease@CBaseUnknown@@UAGKXZ ; has WINAPI (@4)
28DllInitialize@4
29KoCreateInstance@20
30KoDeviceInitialize@4
31KoDriverInitialize@12
32KoRelease@4
33KsAcquireCachedMdl@24
34KsAcquireControl@4
35KsAcquireDevice@4
36KsAcquireDeviceSecurityLock@8
37KsAcquireResetValue@8
38KsAddDevice@8
39KsAddEvent@8
40KsAddIrpToCancelableQueue@20
41KsAddItemToObjectBag@12
42KsAddObjectCreateItemToDeviceHeader@20
43KsAddObjectCreateItemToObjectHeader@20
44KsAllocateDefaultClock@4
45KsAllocateDefaultClockEx@28
46KsAllocateDeviceHeader@12
47KsAllocateExtraData@12
48KsAllocateObjectBag@8
49KsAllocateObjectCreateItem@16
50KsAllocateObjectHeader@20
51KsCacheMedium@12
52KsCancelIo@8
53KsCancelRoutine@8
54KsCompletePendingRequest@4
55KsCopyObjectBagItems@8
56KsCreateAllocator@12
57KsCreateBusEnumObject@24
58KsCreateClock@12
59KsCreateDefaultAllocator@4
60KsCreateDefaultAllocatorEx@24
61KsCreateDefaultClock@8
62KsCreateDefaultSecurity@8
63KsCreateDevice@20
64KsCreateFilterFactory@32
65KsCreatePin@16
66KsCreateTopologyNode@16
67KsDecrementCountedWorker@4
68KsDefaultAddEventHandler@12
69KsDefaultDeviceIoCompletion@8
70KsDefaultDispatchPnp@8
71KsDefaultDispatchPower@8
72KsDefaultForwardIrp@8
73KsDereferenceBusObject@4
74KsDereferenceSoftwareBusObject@4
75KsDeviceGetBusData@20
76KsDeviceRegisterAdapterObject@16
77KsDeviceRegisterThermalDispatch@8
78KsDeviceSetBusData@20
79KsDisableEvent@16
80KsDiscardEvent@4
81KsDispatchFastIoDeviceControlFailure@36
82KsDispatchFastReadFailure@32
83KsDispatchInvalidDeviceRequest@8
84KsDispatchIrp@8
85KsDispatchQuerySecurity@8
86KsDispatchSetSecurity@8
87KsDispatchSpecificMethod@8
88KsDispatchSpecificProperty@8
89KsEnableEvent@24
90KsEnableEventWithAllocator@32
91KsFastMethodHandler@32
92KsFastPropertyHandler@32
93KsFilterAcquireProcessingMutex@4
94KsFilterAddTopologyConnections@12
95KsFilterAttemptProcessing@8
96KsFilterCreateNode@12
97KsFilterCreatePinFactory@12
98KsFilterFactoryAddCreateItem@16
99KsFilterFactoryGetSymbolicLink@4
100KsFilterFactorySetDeviceClassesState@8
101KsFilterFactoryUpdateCacheData@8
102KsFilterGetAndGate@4
103KsFilterGetChildPinCount@8
104KsFilterGetFirstChildPin@8
105KsFilterRegisterPowerCallbacks@12
106KsFilterReleaseProcessingMutex@4
107KsForwardAndCatchIrp@16
108KsForwardIrp@12
109KsFreeDefaultClock@4
110KsFreeDeviceHeader@4
111KsFreeEventList@16
112KsFreeObjectBag@4
113KsFreeObjectCreateItem@8
114KsFreeObjectCreateItemsByContext@8
115KsFreeObjectHeader@4
116KsGenerateDataEvent@12
117KsGenerateEvent@4
118KsGenerateEventList@20
119KsGenerateEvents@28
120KsGenerateThermalEvent@8
121KsGetBusEnumIdentifier@4
122KsGetBusEnumParentFDOFromChildPDO@8
123KsGetBusEnumPnpDeviceObject@8
124KsGetDefaultClockState@4
125KsGetDefaultClockTime@4
126KsGetDevice@4
127KsGetDeviceForDeviceObject@4
128KsGetFilterFromIrp@4
129KsGetFirstChild@4
130KsGetImageNameAndResourceId@16
131KsGetNextSibling@4
132KsGetNodeIdFromIrp@4
133KsGetObjectFromFileObject@4
134KsGetObjectTypeFromFileObject@4
135KsGetObjectTypeFromIrp@4
136KsGetOuterUnknown@4
137KsGetParent@4
138KsGetPinFromIrp@4
139KsHandleSizedListQuery@16
140KsIncrementCountedWorker@4
141KsInitializeDevice@16
142KsInitializeDeviceProfile@4
143KsInitializeDriver@12
144KsInstallBusEnumInterface@4
145KsIsBusEnumChildDevice@8
146KsIsCurrentProcessFrameServer@0
147KsLoadResource@24
148KsMapModuleName@20
149KsMergeAutomationTables@16
150KsMethodHandler@12
151KsMethodHandlerWithAllocator@20
152KsMoveIrpsOnCancelableQueue@28
153KsNullDriverUnload@4
154KsPersistDeviceProfile@4
155KsPinAcquireProcessingMutex@4
156KsPinAttachAndGate@8
157KsPinAttachOrGate@8
158KsPinAttemptProcessing@8
159KsPinDataIntersection@24
160KsPinGetAndGate@4
161KsPinGetAvailableByteCount@12
162KsPinGetConnectedFilterInterface@12
163KsPinGetConnectedPinDeviceObject@4
164KsPinGetConnectedPinFileObject@4
165KsPinGetConnectedPinInterface@12
166KsPinGetCopyRelationships@12
167KsPinGetFirstCloneStreamPointer@4
168KsPinGetLeadingEdgeStreamPointer@8
169KsPinGetNextSiblingPin@4
170KsPinGetParentFilter@4
171KsPinGetReferenceClockInterface@8
172KsPinGetTrailingEdgeStreamPointer@8
173KsPinPropertyHandler@20
174KsPinRegisterFrameReturnCallback@8
175KsPinRegisterHandshakeCallback@8
176KsPinRegisterIrpCompletionCallback@8
177KsPinRegisterPowerCallbacks@12
178KsPinReleaseProcessingMutex@4
179KsPinSetPinClockTime@12
180KsPinSubmitFrame@20
181KsPinSubmitFrameMdl@16
182KsProbeStreamIrp@12
183KsProcessPinUpdate@4
184KsPropertyHandler@12
185KsPropertyHandlerWithAllocator@20
186KsPublishDeviceProfile@8
187KsQueryDevicePnpObject@4
188KsQueryInformationFile@16
189KsQueryObjectAccessMask@4
190KsQueryObjectCreateItem@4
191KsQueueWorkItem@8
192KsReadFile@32
193KsRecalculateStackDepth@8
194KsReferenceBusObject@4
195KsReferenceSoftwareBusObject@4
196KsRegisterAggregatedClientUnknown@8
197KsRegisterCountedWorker@12
198KsRegisterFilterWithNoKSPins@24
199KsRegisterWorker@8
200KsReleaseCachedMdl@12
201KsReleaseControl@4
202KsReleaseDevice@4
203KsReleaseDeviceSecurityLock@4
204KsReleaseIrpOnCancelableQueue@8
205KsRemoveBusEnumInterface@4
206KsRemoveIrpFromCancelableQueue@16
207KsRemoveItemFromObjectBag@12
208KsRemoveSpecificIrpFromCancelableQueue@4
209KsServiceBusEnumCreateRequest@8
210KsServiceBusEnumPnpRequest@8
211KsSetDefaultClockState@8
212KsSetDefaultClockTime@12
213KsSetDevicePnpAndBaseObject@12
214KsSetInformationFile@16
215KsSetMajorFunctionHandler@8
216KsSetPowerDispatch@12
217KsSetTargetDeviceObject@8
218KsSetTargetState@8
219KsStreamIo@44
220KsStreamPointerAdvance@4
221KsStreamPointerAdvanceOffsets@16
222KsStreamPointerAdvanceOffsetsAndUnlock@16
223KsStreamPointerCancelTimeout@4
224KsStreamPointerClone@16
225KsStreamPointerDelete@4
226KsStreamPointerGetIrp@12
227KsStreamPointerGetMdl@4
228KsStreamPointerGetNextClone@4
229KsStreamPointerLock@4
230KsStreamPointerScheduleTimeout@16
231KsStreamPointerSetStatusCode@8
232KsStreamPointerUnlock@8
233KsSynchronousIoControlDevice@32
234KsTerminateDevice@4
235KsTopologyPropertyHandler@16
236KsUnregisterWorker@4
237KsUnserializeObjectPropertiesFromRegistry@12
238KsUpdateCameraStreamingConsent@8
239KsValidateAllocatorCreateRequest@8
240KsValidateAllocatorFramingEx@12
241KsValidateClockCreateRequest@8
242KsValidateConnectRequest@16
243KsValidateTopologyNodeCreateRequest@12
244KsWriteFile@32
245KsiDefaultClockAddMarkEvent@12
246KsiPropertyDefaultClockGetCorrelatedPhysicalTime@12
247KsiPropertyDefaultClockGetCorrelatedTime@12
248KsiPropertyDefaultClockGetFunctionTable@12
249KsiPropertyDefaultClockGetPhysicalTime@12
250KsiPropertyDefaultClockGetResolution@12
251KsiPropertyDefaultClockGetState@12
252KsiPropertyDefaultClockGetTime@12
253KsiQueryObjectCreateItemsPresent@4
254_KsEdit@20
lib/libc/mingw/lib32/ksecdd.def created+108
......@@ -0,0 +1,108 @@
1LIBRARY "ksecdd.sys"
2EXPORTS
3SystemPrng@8
4AcceptSecurityContext@36
5AcquireCredentialsHandleW@36
6AddCredentialsW@32
7ApplyControlToken@8
8BCryptCloseAlgorithmProvider@8
9BCryptCreateHash@28
10BCryptDecrypt@40
11BCryptDeriveKey@28
12BCryptDeriveKeyCapi@20
13BCryptDeriveKeyPBKDF2@40
14BCryptDestroyHash@4
15BCryptDestroyKey@4
16BCryptDestroySecret@4
17BCryptDuplicateHash@20
18BCryptDuplicateKey@20
19BCryptEncrypt@40
20BCryptEnumAlgorithms@16
21BCryptEnumProviders@16
22BCryptExportKey@28
23BCryptFinalizeKeyPair@8
24BCryptFinishHash@16
25BCryptFreeBuffer@4
26BCryptGenRandom@16
27BCryptGenerateKeyPair@16
28BCryptGenerateSymmetricKey@28
29BCryptGetFipsAlgorithmMode@4
30BCryptGetProperty@24
31BCryptHashData@16
32BCryptImportKey@36
33BCryptImportKeyPair@28
34BCryptKeyDerivation@24
35BCryptOpenAlgorithmProvider@16
36BCryptRegisterConfigChangeNotify@4
37BCryptResolveProviders@32
38BCryptSecretAgreement@16
39BCryptSetProperty@20
40BCryptSignHash@32
41BCryptUnregisterConfigChangeNotify@4
42BCryptVerifySignature@28
43CompleteAuthToken@8
44CredMarshalTargetInfo@12
45DeleteSecurityContext@4
46EnumerateSecurityPackagesW@8
47ExportSecurityContext@16
48FreeContextBuffer@4
49FreeCredentialsHandle@4
50GetSecurityUserInfo@12
51ImpersonateSecurityContext@4
52ImportSecurityContextW@16
53InitSecurityInterfaceW@0
54InitializeSecurityContextW@48
55KSecRegisterSecurityProvider@8
56KSecValidateBuffer@8
57LsaEnumerateLogonSessions@8
58LsaGetLogonSessionData@8
59MakeSignature@16
60MapSecurityError@4
61QueryContextAttributesW@12
62QueryCredentialsAttributesW@12
63QuerySecurityContextToken@8
64QuerySecurityPackageInfoW@8
65RevertSecurityContext@4
66SealMessage@16
67SecLookupAccountName@24
68SecLookupAccountSid@24
69SecLookupWellKnownSid@16
70SecMakeSPN@32
71SecMakeSPNEx@36
72SecMakeSPNEx2@40
73SecSetPagingMode@4
74SetCredentialsAttributesW@16
75SslDecryptPacket@40
76SslEncryptPacket@44
77SslExportKey@28
78SslFreeObject@8
79SslGetExtensions@24
80SslGetServerIdentity@20
81SslImportKey@24
82SslLookupCipherSuiteInfo@24
83SslOpenProvider@12
84SspiAcceptSecurityContextAsync@40
85SspiAcquireCredentialsHandleAsyncW@40
86SspiCompareAuthIdentities@16
87SspiCopyAuthIdentity@8
88SspiCreateAsyncContext@0
89SspiDeleteSecurityContextAsync@8
90SspiEncodeAuthIdentityAsStrings@16
91SspiEncodeStringsAsAuthIdentity@16
92SspiFreeAsyncContext@4
93SspiFreeAuthIdentity@4
94SspiFreeCredentialsHandleAsync@8
95SspiGetAsyncCallStatus@4
96SspiInitializeSecurityContextAsyncW@52
97SspiLocalFree@4
98SspiMarshalAuthIdentity@12
99SspiReinitAsyncContext@4
100SspiSetAsyncNotifyCallback@12
101SspiUnmarshalAuthIdentity@12
102SspiValidateAuthIdentity@4
103SspiZeroAuthIdentity@4
104TokenBindingGetHighestSupportedVersion@8
105TokenBindingGetKeyTypesServer@4
106TokenBindingVerifyMessage@24
107UnsealMessage@16
108VerifySignature@16
lib/libc/mingw/lib32/ksproxy.def created+8
......@@ -0,0 +1,8 @@
1LIBRARY ksproxy.ax
2EXPORTS
3KsGetMediaType@16
4KsGetMediaTypeCount@12
5KsGetMultiplePinFactoryItems@16
6KsOpenDefaultDevice@12
7KsResolveRequiredAttributes@8
8KsSynchronousDeviceControl@28
lib/libc/mingw/lib32/mcd.def created+7
......@@ -0,0 +1,7 @@
1LIBRARY mcd.sys
2EXPORTS
3ChangerClassAllocatePool@8
4ChangerClassDebugPrint
5ChangerClassFreePool@4
6ChangerClassInitialize@12
7ChangerClassSendSrbSynchronous@20
lib/libc/mingw/lib32/mfcuia32.def created+12
......@@ -0,0 +1,12 @@
1LIBRARY MFCUIA32.DLL
2EXPORTS
3OleUIAddVerbMenu@36
4OleUIBusy@4
5OleUICanConvertOrActivateAs@12
6OleUIChangeIcon@4
7OleUIConvert@4
8OleUIEditLinks@4
9OleUIInsertObject@4
10OleUIPasteSpecial@4
11OleUIPromptUser
12OleUIUpdateLinks@16
lib/libc/mingw/lib32/mfplat.def-1
......@@ -245,6 +245,5 @@ MFUnwrapMediaType@8
245245MFValidateMediaTypeSize@24
246246MFWrapMediaType@16
247247MFWrapSocket@28
248MFllMulDiv@32
249248PropVariantFromStream@8
250249PropVariantToStream@8
lib/libc/mingw/lib32/mfsensorgroup.def created+43
......@@ -0,0 +1,43 @@
1;
2; Definition file of MFSENSORGROUP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "MFSENSORGROUP.dll"
7EXPORTS
8MFCheckProcessCapabilities@16
9MFCleanupVirtualCameraEntries@0
10MFCloneSensorProfile@8
11MFCreatePackageFamilyNameTag@16
12MFCreatePassthroughTranslatedMediaType@12
13MFCreateRelativePanelWatcher@12
14MFCreateSensorActivityMonitor@8
15MFCreateSensorDeviceBlobByObject@20
16MFCreateSensorGroup@8
17MFCreateSensorGroupById@12
18MFCreateSensorGroupCollection@8
19MFCreateSensorGroupIdManager@4
20MFCreateSensorProfile@16
21MFCreateSensorProfileCollection@4
22MFCreateSensorProfileWithFlags@12
23MFCreateSensorStream@16
24MFCreateTranslatedMediaType@16
25MFCreateTranslatedMediaType2@20
26MFDeleteSensorGroupById@4
27MFGetDeviceFromFSUniqueId@20
28MFGetDeviceFromSGHash@20
29MFGetSGCH@24
30MFGetSensorDeviceProperty@24
31MFGetSensorDeviceRegistryProperty@24
32MFGetSensorGroupAttributesFromId@8
33MFGetSensorGroupPropertyName@16
34MFGetSensorOrientation@8
35MFInitializeSensorGroupStore@0
36MFIsSensorGroupName@8
37MFIsStreamAvailableToAppPackage@12
38MFLoadSensorGroupFromRegistry@8
39MFLoadSensorProfiles@8
40MFPublishSensorProfiles@8
41MFSensorProfileParseFilterSetString@16
42MFValidateSensorProfile@8
43MFWriteSensorGroupDataToRegistry@24
lib/libc/mingw/lib32/mmdevapi.def+30
......@@ -1,3 +1,33 @@
11LIBRARY "mmdevapi.dll"
22EXPORTS
3AETraceOutputDebugString
34ActivateAudioInterfaceAsync@20
5CleanupDeviceAPI@0
6FlushDeviceTopologyCache@0
7GenerateMediaEvent@8
8GetCategoryPath@16
9GetClassFromEndpointId@4
10GetEndpointGuidFromEndpointId@8
11GetEndpointIdFromDeviceInterfaceId@8
12GetNeverSetAsDefaultProperty@16
13GetSessionIdFromEndpointId@4
14InitializeDeviceAPI@0
15MMDeviceCreateRegistryPropertyStore@12
16MMDeviceGetDeviceEnumerator@4
17MMDeviceGetEndpointManager@4
18MMDeviceGetPolicyConfig@4
19RegisterForMediaCallback@8
20UnregisterMediaCallback@4
21mmdDevFindMmDevProperty@12
22mmdDevGetDeviceIdFromPnpInterface@8
23mmdDevGetEndpointFormFactorFromMMDeviceId@8
24mmdDevGetInstanceIdFromInterfaceId@8
25mmdDevGetInstanceIdFromMMDeviceId@8
26mmdDevGetInterfaceClassGuid@8
27mmdDevGetInterfaceDataFlow@8
28mmdDevGetInterfaceIdFromMMDevice@8
29mmdDevGetInterfaceIdFromMMDeviceId@8
30mmdDevGetInterfacePropertyStore@12
31mmdDevGetMMDeviceFromInterfaceId@8
32mmdDevGetMMDeviceIdFromInterfaceId@8
33mmdDevGetRelatedInterfaceId@24
lib/libc/mingw/lib32/mpr.def+4
......@@ -7,6 +7,8 @@ WNetAddConnection2A@16
77WNetAddConnection2W@16
88WNetAddConnection3A@20
99WNetAddConnection3W@20
10WNetAddConnection4A@28
11WNetAddConnection4W@28
1012WNetAddConnectionA@12
1113WNetAddConnectionW@12
1214WNetCancelConnection2A@12
......@@ -70,3 +72,5 @@ WNetSetLastErrorW@12
7072WNetSupportGlobalEnum@4
7173WNetUseConnectionA@32
7274WNetUseConnectionW@32
75WNetUseConnection4A@40
76WNetUseConnection4W@40
lib/libc/mingw/lib32/mprapi.def-2
......@@ -128,9 +128,7 @@ MprSetupIpInIpInterfaceFriendlyNameFree@4
128128RasAdminConnectionClearStats@8
129129RasAdminConnectionEnum@28
130130RasAdminConnectionGetInfo@16
131MprAdminConnectionRemoveQuarantine@12
132131RasAdminGetErrorString@12
133MprAdminGetPDCServer@12
134132RasAdminPortClearStats@8
135133RasAdminPortDisconnect@8
136134RasAdminPortEnum@32
lib/libc/mingw/lib32/mqrt.def created+40
......@@ -0,0 +1,40 @@
1LIBRARY MQRT.DLL
2EXPORTS
3MQADsPathToFormatName@12
4MQBeginTransaction@4
5MQCloseCursor@4
6MQCloseQueue@4
7MQCreateCursor@8
8MQCreateInternalCert@4
9MQCreateQueue@16
10MQDeleteInternalCert@0
11MQDeleteQueue@4
12MQFreeMemory@4
13MQFreeSecurityContext@4
14MQGetInternalCert@4
15MQGetInternalCertificate@12
16MQGetMachineProperties@12
17MQGetOverlappedResult@4
18MQGetPrivateComputerInformation@8
19MQGetQueueProperties@8
20MQGetQueueSecurity@20
21MQGetSecurityContext@12
22MQGetSecurityContextEx@12
23MQGetUserCerts@12
24MQHandleToFormatName@12
25MQInstanceToFormatName@12
26MQLocateBegin@20
27MQLocateEnd@4
28MQLocateNext@12
29MQMgmtAction@12
30MQMgmtGetInfo@12
31MQOpenQueue@16
32MQPathNameToFormatName@12
33MQPurgeQueue@4
34MQReceiveMessage@32
35MQReceiveMessageByLookupId@32
36MQRegisterUserCert@4
37MQRemoveUserCert@4
38MQSendMessage@12
39MQSetQueueProperties@8
40MQSetQueueSecurity@12
lib/libc/mingw/lib32/msajapi.def created+562
......@@ -0,0 +1,562 @@
1LIBRARY msajapi
2
3EXPORTS
4
5AllJoynAcceptBusConnection@8
6AllJoynCloseBusHandle@4
7AllJoynConnectToBus@4
8AllJoynCreateBus@12
9AllJoynEnumEvents@12
10AllJoynEventSelect@12
11AllJoynEventWrite@28
12AllJoynEventsRegister@0
13AllJoynEventsUnregister@0
14AllJoynGetConfigurationDWORD@8
15AllJoynReceiveFromBus@20
16AllJoynSendToBus@20
17AllJoynSetDebugLevel@8
18GetHResultFromQStatus@4
19QCC_StatusText@4
20RouterNodeCleanup@4
21RouterNodeInitialize@0
22RouterNodeIsIdle@8
23RouterNodeRun@16
24alljoyn_aboutdata_create@4
25alljoyn_aboutdata_create_empty@0
26alljoyn_aboutdata_create_full@8
27alljoyn_aboutdata_createfrommsgarg@12
28alljoyn_aboutdata_createfromxml@8
29alljoyn_aboutdata_destroy@4
30alljoyn_aboutdata_getaboutdata@12
31alljoyn_aboutdata_getajsoftwareversion@8
32alljoyn_aboutdata_getannouncedaboutdata@8
33alljoyn_aboutdata_getappid@12
34alljoyn_aboutdata_getappname@12
35alljoyn_aboutdata_getdateofmanufacture@8
36alljoyn_aboutdata_getdefaultlanguage@8
37alljoyn_aboutdata_getdescription@12
38alljoyn_aboutdata_getdeviceid@8
39alljoyn_aboutdata_getdevicename@12
40alljoyn_aboutdata_getfield@16
41alljoyn_aboutdata_getfields@12
42alljoyn_aboutdata_getfieldsignature@8
43alljoyn_aboutdata_gethardwareversion@8
44alljoyn_aboutdata_getmanufacturer@12
45alljoyn_aboutdata_getmodelnumber@8
46alljoyn_aboutdata_getsoftwareversion@8
47alljoyn_aboutdata_getsupportedlanguages@12
48alljoyn_aboutdata_getsupporturl@8
49alljoyn_aboutdata_isfieldannounced@8
50alljoyn_aboutdata_isfieldlocalized@8
51alljoyn_aboutdata_isfieldrequired@8
52alljoyn_aboutdata_isvalid@8
53alljoyn_aboutdata_setappid@12
54alljoyn_aboutdata_setappid_fromstring@8
55alljoyn_aboutdata_setappname@12
56alljoyn_aboutdata_setdateofmanufacture@8
57alljoyn_aboutdata_setdefaultlanguage@8
58alljoyn_aboutdata_setdescription@12
59alljoyn_aboutdata_setdeviceid@8
60alljoyn_aboutdata_setdevicename@12
61alljoyn_aboutdata_setfield@16
62alljoyn_aboutdata_sethardwareversion@8
63alljoyn_aboutdata_setmanufacturer@12
64alljoyn_aboutdata_setmodelnumber@8
65alljoyn_aboutdata_setsoftwareversion@8
66alljoyn_aboutdata_setsupportedlanguage@8
67alljoyn_aboutdata_setsupporturl@8
68alljoyn_aboutdatalistener_create@8
69alljoyn_aboutdatalistener_destroy@4
70alljoyn_abouticon_clear@4
71alljoyn_abouticon_create@0
72alljoyn_abouticon_destroy@4
73alljoyn_abouticon_getcontent@12
74alljoyn_abouticon_geturl@12
75alljoyn_abouticon_setcontent@20
76alljoyn_abouticon_setcontent_frommsgarg@8
77alljoyn_abouticon_seturl@12
78alljoyn_abouticonobj_create@8
79alljoyn_abouticonobj_destroy@4
80alljoyn_abouticonproxy_create@12
81alljoyn_abouticonproxy_destroy@4
82alljoyn_abouticonproxy_geticon@8
83alljoyn_abouticonproxy_getversion@8
84alljoyn_aboutlistener_create@8
85alljoyn_aboutlistener_destroy@4
86alljoyn_aboutobj_announce@12
87alljoyn_aboutobj_announce_using_datalistener@12
88alljoyn_aboutobj_create@8
89alljoyn_aboutobj_destroy@4
90alljoyn_aboutobj_unannounce@4
91alljoyn_aboutobjectdescription_clear@4
92alljoyn_aboutobjectdescription_create@0
93alljoyn_aboutobjectdescription_create_full@4
94alljoyn_aboutobjectdescription_createfrommsgarg@8
95alljoyn_aboutobjectdescription_destroy@4
96alljoyn_aboutobjectdescription_getinterfacepaths@16
97alljoyn_aboutobjectdescription_getinterfaces@16
98alljoyn_aboutobjectdescription_getmsgarg@8
99alljoyn_aboutobjectdescription_getpaths@12
100alljoyn_aboutobjectdescription_hasinterface@8
101alljoyn_aboutobjectdescription_hasinterfaceatpath@12
102alljoyn_aboutobjectdescription_haspath@8
103alljoyn_aboutproxy_create@12
104alljoyn_aboutproxy_destroy@4
105alljoyn_aboutproxy_getaboutdata@12
106alljoyn_aboutproxy_getobjectdescription@8
107alljoyn_aboutproxy_getversion@8
108alljoyn_applicationstatelistener_create@8
109alljoyn_applicationstatelistener_destroy@4
110alljoyn_authlistener_create@8
111alljoyn_authlistener_destroy@4
112alljoyn_authlistener_requestcredentialsresponse@16
113alljoyn_authlistener_setsharedsecret@12
114alljoyn_authlistener_verifycredentialsresponse@12
115alljoyn_authlistenerasync_create@8
116alljoyn_authlistenerasync_destroy@4
117alljoyn_autopinger_adddestination@12
118alljoyn_autopinger_addpinggroup@16
119alljoyn_autopinger_create@4
120alljoyn_autopinger_destroy@4
121alljoyn_autopinger_pause@4
122alljoyn_autopinger_removedestination@16
123alljoyn_autopinger_removepinggroup@8
124alljoyn_autopinger_resume@4
125alljoyn_autopinger_setpinginterval@12
126alljoyn_busattachment_addlogonentry@16
127alljoyn_busattachment_addmatch@8
128alljoyn_busattachment_advertisename@12
129alljoyn_busattachment_bindsessionport@16
130alljoyn_busattachment_canceladvertisename@12
131alljoyn_busattachment_cancelfindadvertisedname@8
132alljoyn_busattachment_cancelfindadvertisednamebytransport@12
133alljoyn_busattachment_cancelwhoimplements_interface@8
134alljoyn_busattachment_cancelwhoimplements_interfaces@12
135alljoyn_busattachment_clearkeys@8
136alljoyn_busattachment_clearkeystore@4
137alljoyn_busattachment_connect@8
138alljoyn_busattachment_create@8
139alljoyn_busattachment_create_concurrency@12
140alljoyn_busattachment_createinterface@12
141alljoyn_busattachment_createinterface_secure@16
142alljoyn_busattachment_createinterfacesfromxml@8
143alljoyn_busattachment_deletedefaultkeystore@4
144alljoyn_busattachment_deleteinterface@8
145alljoyn_busattachment_destroy@4
146alljoyn_busattachment_disconnect@8
147alljoyn_busattachment_enableconcurrentcallbacks@4
148alljoyn_busattachment_enablepeersecurity@20
149alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener@24
150alljoyn_busattachment_findadvertisedname@8
151alljoyn_busattachment_findadvertisednamebytransport@12
152alljoyn_busattachment_getalljoyndebugobj@4
153alljoyn_busattachment_getalljoynproxyobj@4
154alljoyn_busattachment_getconcurrency@4
155alljoyn_busattachment_getconnectspec@4
156alljoyn_busattachment_getdbusproxyobj@4
157alljoyn_busattachment_getglobalguidstring@4
158alljoyn_busattachment_getinterface@8
159alljoyn_busattachment_getinterfaces@12
160alljoyn_busattachment_getkeyexpiration@12
161alljoyn_busattachment_getpeerguid@16
162alljoyn_busattachment_getpermissionconfigurator@4
163alljoyn_busattachment_gettimestamp@0
164alljoyn_busattachment_getuniquename@4
165alljoyn_busattachment_isconnected@4
166alljoyn_busattachment_ispeersecurityenabled@4
167alljoyn_busattachment_isstarted@4
168alljoyn_busattachment_isstopping@4
169alljoyn_busattachment_join@4
170alljoyn_busattachment_joinsession@24
171alljoyn_busattachment_joinsessionasync@28
172alljoyn_busattachment_leavesession@8
173alljoyn_busattachment_namehasowner@12
174alljoyn_busattachment_ping@12
175alljoyn_busattachment_registeraboutlistener@8
176alljoyn_busattachment_registerapplicationstatelistener@8
177alljoyn_busattachment_registerbuslistener@8
178alljoyn_busattachment_registerbusobject@8
179alljoyn_busattachment_registerbusobject_secure@8
180alljoyn_busattachment_registerkeystorelistener@8
181alljoyn_busattachment_registersignalhandler@40
182alljoyn_busattachment_registersignalhandlerwithrule@40
183alljoyn_busattachment_releasename@8
184alljoyn_busattachment_reloadkeystore@4
185alljoyn_busattachment_removematch@8
186alljoyn_busattachment_removesessionmember@12
187alljoyn_busattachment_requestname@12
188alljoyn_busattachment_secureconnection@12
189alljoyn_busattachment_secureconnectionasync@12
190alljoyn_busattachment_setdaemondebug@12
191alljoyn_busattachment_setkeyexpiration@12
192alljoyn_busattachment_setlinktimeout@12
193alljoyn_busattachment_setlinktimeoutasync@20
194alljoyn_busattachment_setsessionlistener@12
195alljoyn_busattachment_start@4
196alljoyn_busattachment_stop@4
197alljoyn_busattachment_unbindsessionport@8
198alljoyn_busattachment_unregisteraboutlistener@8
199alljoyn_busattachment_unregisterallaboutlisteners@4
200alljoyn_busattachment_unregisterallhandlers@4
201alljoyn_busattachment_unregisterapplicationstatelistener@8
202alljoyn_busattachment_unregisterbuslistener@8
203alljoyn_busattachment_unregisterbusobject@8
204alljoyn_busattachment_unregistersignalhandler@40
205alljoyn_busattachment_unregistersignalhandlerwithrule@40
206alljoyn_busattachment_whoimplements_interface@8
207alljoyn_busattachment_whoimplements_interfaces@12
208alljoyn_buslistener_create@8
209alljoyn_buslistener_destroy@4
210alljoyn_busobject_addinterface@8
211alljoyn_busobject_addinterface_announced@8
212alljoyn_busobject_addmethodhandler@40
213alljoyn_busobject_addmethodhandlers@12
214alljoyn_busobject_cancelsessionlessmessage@8
215alljoyn_busobject_cancelsessionlessmessage_serial@8
216alljoyn_busobject_create@16
217alljoyn_busobject_destroy@4
218alljoyn_busobject_emitpropertieschanged@20
219alljoyn_busobject_emitpropertychanged@20
220alljoyn_busobject_getannouncedinterfacenames@12
221alljoyn_busobject_getbusattachment@4
222alljoyn_busobject_getname@12
223alljoyn_busobject_getpath@4
224alljoyn_busobject_issecure@4
225alljoyn_busobject_methodreply_args@16
226alljoyn_busobject_methodreply_err@16
227alljoyn_busobject_methodreply_status@12
228alljoyn_busobject_setannounceflag@12
229alljoyn_busobject_signal@60
230alljoyn_credentials_clear@4
231alljoyn_credentials_create@0
232alljoyn_credentials_destroy@4
233alljoyn_credentials_getcertchain@4
234alljoyn_credentials_getexpiration@4
235alljoyn_credentials_getlogonentry@4
236alljoyn_credentials_getpassword@4
237alljoyn_credentials_getprivateKey@4
238alljoyn_credentials_getusername@4
239alljoyn_credentials_isset@8
240alljoyn_credentials_setcertchain@8
241alljoyn_credentials_setexpiration@8
242alljoyn_credentials_setlogonentry@8
243alljoyn_credentials_setpassword@8
244alljoyn_credentials_setprivatekey@8
245alljoyn_credentials_setusername@8
246alljoyn_getbuildinfo@0
247alljoyn_getnumericversion@0
248alljoyn_getversion@0
249alljoyn_init@0
250alljoyn_interfacedescription_activate@4
251alljoyn_interfacedescription_addannotation@12
252alljoyn_interfacedescription_addargannotation@20
253alljoyn_interfacedescription_addmember@28
254alljoyn_interfacedescription_addmemberannotation@16
255alljoyn_interfacedescription_addmethod@28
256alljoyn_interfacedescription_addproperty@16
257alljoyn_interfacedescription_addpropertyannotation@16
258alljoyn_interfacedescription_addsignal@24
259alljoyn_interfacedescription_eql@8
260alljoyn_interfacedescription_getannotation@16
261alljoyn_interfacedescription_getannotationatindex@24
262alljoyn_interfacedescription_getannotationscount@4
263alljoyn_interfacedescription_getargdescriptionforlanguage@24
264alljoyn_interfacedescription_getdescriptionforlanguage@16
265alljoyn_interfacedescription_getdescriptionlanguages2@12
266alljoyn_interfacedescription_getdescriptionlanguages@12
267alljoyn_interfacedescription_getdescriptiontranslationcallback@4
268alljoyn_interfacedescription_getmember@12
269alljoyn_interfacedescription_getmemberannotation@20
270alljoyn_interfacedescription_getmemberargannotation@24
271alljoyn_interfacedescription_getmemberdescriptionforlanguage@20
272alljoyn_interfacedescription_getmembers@12
273alljoyn_interfacedescription_getmethod@12
274alljoyn_interfacedescription_getname@4
275alljoyn_interfacedescription_getproperties@12
276alljoyn_interfacedescription_getproperty@12
277alljoyn_interfacedescription_getpropertyannotation@20
278alljoyn_interfacedescription_getpropertydescriptionforlanguage@20
279alljoyn_interfacedescription_getsecuritypolicy@4
280alljoyn_interfacedescription_getsignal@12
281alljoyn_interfacedescription_hasdescription@4
282alljoyn_interfacedescription_hasmember@16
283alljoyn_interfacedescription_hasproperties@4
284alljoyn_interfacedescription_hasproperty@8
285alljoyn_interfacedescription_introspect@16
286alljoyn_interfacedescription_issecure@4
287alljoyn_interfacedescription_member_eql@56
288alljoyn_interfacedescription_member_getannotation@40
289alljoyn_interfacedescription_member_getannotationatindex@48
290alljoyn_interfacedescription_member_getannotationscount@28
291alljoyn_interfacedescription_member_getargannotation@44
292alljoyn_interfacedescription_member_getargannotationatindex@52
293alljoyn_interfacedescription_member_getargannotationscount@32
294alljoyn_interfacedescription_property_eql@32
295alljoyn_interfacedescription_property_getannotation@28
296alljoyn_interfacedescription_property_getannotationatindex@36
297alljoyn_interfacedescription_property_getannotationscount@16
298alljoyn_interfacedescription_setargdescription@16
299alljoyn_interfacedescription_setargdescriptionforlanguage@20
300alljoyn_interfacedescription_setdescription@8
301alljoyn_interfacedescription_setdescriptionforlanguage@12
302alljoyn_interfacedescription_setdescriptionlanguage@8
303alljoyn_interfacedescription_setdescriptiontranslationcallback@8
304alljoyn_interfacedescription_setmemberdescription@12
305alljoyn_interfacedescription_setmemberdescriptionforlanguage@16
306alljoyn_interfacedescription_setpropertydescription@12
307alljoyn_interfacedescription_setpropertydescriptionforlanguage@16
308alljoyn_keystorelistener_create@8
309alljoyn_keystorelistener_destroy@4
310alljoyn_keystorelistener_getkeys@16
311alljoyn_keystorelistener_putkeys@16
312alljoyn_keystorelistener_with_synchronization_create@8
313alljoyn_message_create@4
314alljoyn_message_description@12
315alljoyn_message_destroy@4
316alljoyn_message_eql@8
317alljoyn_message_getarg@8
318alljoyn_message_getargs@12
319alljoyn_message_getauthmechanism@4
320alljoyn_message_getcallserial@4
321alljoyn_message_getcompressiontoken@4
322alljoyn_message_getdestination@4
323alljoyn_message_geterrorname@12
324alljoyn_message_getflags@4
325alljoyn_message_getinterface@4
326alljoyn_message_getmembername@4
327alljoyn_message_getobjectpath@4
328alljoyn_message_getreceiveendpointname@4
329alljoyn_message_getreplyserial@4
330alljoyn_message_getsender@4
331alljoyn_message_getsessionid@4
332alljoyn_message_getsignature@4
333alljoyn_message_gettimestamp@4
334alljoyn_message_gettype@4
335alljoyn_message_isbroadcastsignal@4
336alljoyn_message_isencrypted@4
337alljoyn_message_isexpired@8
338alljoyn_message_isglobalbroadcast@4
339alljoyn_message_issessionless@4
340alljoyn_message_isunreliable@4
341alljoyn_message_parseargs
342alljoyn_message_setendianess@4
343alljoyn_message_tostring@12
344alljoyn_msgarg_array_create@4
345alljoyn_msgarg_array_element@8
346alljoyn_msgarg_array_get
347alljoyn_msgarg_array_set
348alljoyn_msgarg_array_set_offset
349alljoyn_msgarg_array_signature@16
350alljoyn_msgarg_array_tostring@20
351alljoyn_msgarg_clear@4
352alljoyn_msgarg_clone@8
353alljoyn_msgarg_copy@4
354alljoyn_msgarg_create@0
355alljoyn_msgarg_create_and_set
356alljoyn_msgarg_destroy@4
357alljoyn_msgarg_equal@8
358alljoyn_msgarg_get
359alljoyn_msgarg_get_array_element@12
360alljoyn_msgarg_get_array_elementsignature@8
361alljoyn_msgarg_get_array_numberofelements@4
362alljoyn_msgarg_get_bool@8
363alljoyn_msgarg_get_bool_array@12
364alljoyn_msgarg_get_double@8
365alljoyn_msgarg_get_double_array@12
366alljoyn_msgarg_get_int16@8
367alljoyn_msgarg_get_int16_array@12
368alljoyn_msgarg_get_int32@8
369alljoyn_msgarg_get_int32_array@12
370alljoyn_msgarg_get_int64@8
371alljoyn_msgarg_get_int64_array@12
372alljoyn_msgarg_get_objectpath@8
373alljoyn_msgarg_get_signature@8
374alljoyn_msgarg_get_string@8
375alljoyn_msgarg_get_uint16@8
376alljoyn_msgarg_get_uint16_array@12
377alljoyn_msgarg_get_uint32@8
378alljoyn_msgarg_get_uint32_array@12
379alljoyn_msgarg_get_uint64@8
380alljoyn_msgarg_get_uint64_array@12
381alljoyn_msgarg_get_uint8@8
382alljoyn_msgarg_get_uint8_array@12
383alljoyn_msgarg_get_variant@8
384alljoyn_msgarg_get_variant_array@16
385alljoyn_msgarg_getdictelement
386alljoyn_msgarg_getkey@4
387alljoyn_msgarg_getmember@8
388alljoyn_msgarg_getnummembers@4
389alljoyn_msgarg_gettype@4
390alljoyn_msgarg_getvalue@4
391alljoyn_msgarg_hassignature@8
392alljoyn_msgarg_set
393alljoyn_msgarg_set_and_stabilize
394alljoyn_msgarg_set_bool@8
395alljoyn_msgarg_set_bool_array@12
396alljoyn_msgarg_set_double@12
397alljoyn_msgarg_set_double_array@12
398alljoyn_msgarg_set_int16@8
399alljoyn_msgarg_set_int16_array@12
400alljoyn_msgarg_set_int32@8
401alljoyn_msgarg_set_int32_array@12
402alljoyn_msgarg_set_int64@12
403alljoyn_msgarg_set_int64_array@12
404alljoyn_msgarg_set_objectpath@8
405alljoyn_msgarg_set_objectpath_array@12
406alljoyn_msgarg_set_signature@8
407alljoyn_msgarg_set_signature_array@12
408alljoyn_msgarg_set_string@8
409alljoyn_msgarg_set_string_array@12
410alljoyn_msgarg_set_uint16@8
411alljoyn_msgarg_set_uint16_array@12
412alljoyn_msgarg_set_uint32@8
413alljoyn_msgarg_set_uint32_array@12
414alljoyn_msgarg_set_uint64@12
415alljoyn_msgarg_set_uint64_array@12
416alljoyn_msgarg_set_uint8@8
417alljoyn_msgarg_set_uint8_array@12
418alljoyn_msgarg_setdictentry@12
419alljoyn_msgarg_setstruct@12
420alljoyn_msgarg_signature@12
421alljoyn_msgarg_stabilize@4
422alljoyn_msgarg_tostring@16
423alljoyn_observer_create@12
424alljoyn_observer_destroy@4
425alljoyn_observer_get@12
426alljoyn_observer_getfirst@4
427alljoyn_observer_getnext@8
428alljoyn_observer_registerlistener@12
429alljoyn_observer_unregisteralllisteners@4
430alljoyn_observer_unregisterlistener@8
431alljoyn_observerlistener_create@8
432alljoyn_observerlistener_destroy@4
433alljoyn_passwordmanager_setcredentials@8
434alljoyn_permissionconfigurationlistener_create@8
435alljoyn_permissionconfigurationlistener_destroy@4
436alljoyn_permissionconfigurator_certificatechain_destroy@4
437alljoyn_permissionconfigurator_certificateid_cleanup@4
438alljoyn_permissionconfigurator_certificateidarray_cleanup@4
439alljoyn_permissionconfigurator_claim@32
440alljoyn_permissionconfigurator_endmanagement@4
441alljoyn_permissionconfigurator_getapplicationstate@8
442alljoyn_permissionconfigurator_getclaimcapabilities@8
443alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo@8
444alljoyn_permissionconfigurator_getdefaultclaimcapabilities@0
445alljoyn_permissionconfigurator_getdefaultpolicy@8
446alljoyn_permissionconfigurator_getidentity@8
447alljoyn_permissionconfigurator_getidentitycertificateid@8
448alljoyn_permissionconfigurator_getmanifests@8
449alljoyn_permissionconfigurator_getmanifesttemplate@8
450alljoyn_permissionconfigurator_getmembershipsummaries@8
451alljoyn_permissionconfigurator_getpolicy@8
452alljoyn_permissionconfigurator_getpublickey@8
453alljoyn_permissionconfigurator_installmanifests@16
454alljoyn_permissionconfigurator_installmembership@8
455alljoyn_permissionconfigurator_manifestarray_cleanup@4
456alljoyn_permissionconfigurator_manifesttemplate_destroy@4
457alljoyn_permissionconfigurator_policy_destroy@4
458alljoyn_permissionconfigurator_publickey_destroy@4
459alljoyn_permissionconfigurator_removemembership@24
460alljoyn_permissionconfigurator_reset@4
461alljoyn_permissionconfigurator_resetpolicy@4
462alljoyn_permissionconfigurator_setapplicationstate@8
463alljoyn_permissionconfigurator_setclaimcapabilities@8
464alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo@8
465alljoyn_permissionconfigurator_setmanifestfromxml@8
466alljoyn_permissionconfigurator_setmanifesttemplatefromxml@8
467alljoyn_permissionconfigurator_startmanagement@4
468alljoyn_permissionconfigurator_updateidentity@16
469alljoyn_permissionconfigurator_updatepolicy@8
470alljoyn_pinglistener_create@8
471alljoyn_pinglistener_destroy@4
472alljoyn_proxybusobject_addchild@8
473alljoyn_proxybusobject_addinterface@8
474alljoyn_proxybusobject_addinterface_by_name@8
475alljoyn_proxybusobject_copy@4
476alljoyn_proxybusobject_create@16
477alljoyn_proxybusobject_create_secure@16
478alljoyn_proxybusobject_destroy@4
479alljoyn_proxybusobject_enablepropertycaching@4
480alljoyn_proxybusobject_getallproperties@12
481alljoyn_proxybusobject_getallpropertiesasync@20
482alljoyn_proxybusobject_getchild@8
483alljoyn_proxybusobject_getchildren@12
484alljoyn_proxybusobject_getinterface@8
485alljoyn_proxybusobject_getinterfaces@12
486alljoyn_proxybusobject_getpath@4
487alljoyn_proxybusobject_getproperty@16
488alljoyn_proxybusobject_getpropertyasync@24
489alljoyn_proxybusobject_getservicename@4
490alljoyn_proxybusobject_getsessionid@4
491alljoyn_proxybusobject_getuniquename@4
492alljoyn_proxybusobject_implementsinterface@8
493alljoyn_proxybusobject_introspectremoteobject@4
494alljoyn_proxybusobject_introspectremoteobjectasync@12
495alljoyn_proxybusobject_issecure@4
496alljoyn_proxybusobject_isvalid@4
497alljoyn_proxybusobject_methodcall@32
498alljoyn_proxybusobject_methodcall_member@52
499alljoyn_proxybusobject_methodcall_member_noreply@44
500alljoyn_proxybusobject_methodcall_noreply@24
501alljoyn_proxybusobject_methodcallasync@36
502alljoyn_proxybusobject_methodcallasync_member@56
503alljoyn_proxybusobject_parsexml@12
504alljoyn_proxybusobject_ref_create@4
505alljoyn_proxybusobject_ref_decref@4
506alljoyn_proxybusobject_ref_get@4
507alljoyn_proxybusobject_ref_incref@4
508alljoyn_proxybusobject_registerpropertieschangedlistener@24
509alljoyn_proxybusobject_removechild@8
510alljoyn_proxybusobject_secureconnection@8
511alljoyn_proxybusobject_secureconnectionasync@8
512alljoyn_proxybusobject_setproperty@16
513alljoyn_proxybusobject_setpropertyasync@28
514alljoyn_proxybusobject_unregisterpropertieschangedlistener@12
515alljoyn_routerinit@0
516alljoyn_routerinitwithconfig@4
517alljoyn_routershutdown@0
518alljoyn_securityapplicationproxy_claim@32
519alljoyn_securityapplicationproxy_computemanifestdigest@16
520alljoyn_securityapplicationproxy_create@12
521alljoyn_securityapplicationproxy_destroy@4
522alljoyn_securityapplicationproxy_digest_destroy@4
523alljoyn_securityapplicationproxy_eccpublickey_destroy@4
524alljoyn_securityapplicationproxy_endmanagement@4
525alljoyn_securityapplicationproxy_getapplicationstate@8
526alljoyn_securityapplicationproxy_getclaimcapabilities@8
527alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo@8
528alljoyn_securityapplicationproxy_getdefaultpolicy@8
529alljoyn_securityapplicationproxy_geteccpublickey@8
530alljoyn_securityapplicationproxy_getmanifesttemplate@8
531alljoyn_securityapplicationproxy_getpermissionmanagementsessionport@0
532alljoyn_securityapplicationproxy_getpolicy@8
533alljoyn_securityapplicationproxy_installmembership@8
534alljoyn_securityapplicationproxy_manifest_destroy@4
535alljoyn_securityapplicationproxy_manifesttemplate_destroy@4
536alljoyn_securityapplicationproxy_policy_destroy@4
537alljoyn_securityapplicationproxy_reset@4
538alljoyn_securityapplicationproxy_resetpolicy@4
539alljoyn_securityapplicationproxy_setmanifestsignature@20
540alljoyn_securityapplicationproxy_signmanifest@16
541alljoyn_securityapplicationproxy_startmanagement@4
542alljoyn_securityapplicationproxy_updateidentity@16
543alljoyn_securityapplicationproxy_updatepolicy@8
544alljoyn_sessionlistener_create@8
545alljoyn_sessionlistener_destroy@4
546alljoyn_sessionopts_cmp@8
547alljoyn_sessionopts_create@16
548alljoyn_sessionopts_destroy@4
549alljoyn_sessionopts_get_multipoint@4
550alljoyn_sessionopts_get_proximity@4
551alljoyn_sessionopts_get_traffic@4
552alljoyn_sessionopts_get_transports@4
553alljoyn_sessionopts_iscompatible@8
554alljoyn_sessionopts_set_multipoint@8
555alljoyn_sessionopts_set_proximity@8
556alljoyn_sessionopts_set_traffic@8
557alljoyn_sessionopts_set_transports@8
558alljoyn_sessionportlistener_create@8
559alljoyn_sessionportlistener_destroy@4
560alljoyn_shutdown@0
561alljoyn_unity_deferred_callbacks_process@0
562alljoyn_unity_set_deferred_callback_mainthread_only@4
lib/libc/mingw/lib32/mscms.def+41-2
......@@ -10,17 +10,18 @@ AssociateColorProfileWithDeviceW@12
1010CheckBitmapBits@36
1111CheckColors@20
1212CloseColorProfile@4
13CloseDisplay@4
1314ColorCplGetDefaultProfileScope@16
1415ColorCplGetDefaultRenderingIntentScope@4
1516ColorCplGetProfileProperties@8
1617ColorCplHasSystemWideAssociationListChanged@12
1718ColorCplInitialize@0
18ColorCplLoadAssociationList@16
19ColorCplLoadAssociationList@20
1920ColorCplMergeAssociationLists@8
2021ColorCplOverwritePerUserAssociationList@8
2122ColorCplReleaseProfileProperties@4
2223ColorCplResetSystemWideAssociationListChangedWarning@8
23ColorCplSaveAssociationList@16
24ColorCplSaveAssociationList@20
2425ColorCplSetUsePerUserProfiles@12
2526ColorCplUninitialize@0
2627ConvertColorNameToIndex@16
......@@ -31,10 +32,17 @@ CreateDeviceLinkProfile@28
3132CreateMultiProfileTransform@24
3233CreateProfileFromLogColorSpaceA@8
3334CreateProfileFromLogColorSpaceW@8
35DccwCreateDisplayProfileAssociationList@4
36DccwGetDisplayProfileAssociationList@12
37DccwGetGamutSize@8
38DccwReleaseDisplayProfileAssociationList@4
39DccwSetDisplayProfileAssociationList@12
3440DeleteColorTransform@4
3541DeviceRenameEvent@12
3642DisassociateColorProfileFromDeviceA@12
3743DisassociateColorProfileFromDeviceW@12
44; DllCanUnloadNow@0
45; DllGetClassObject@12
3846EnumColorProfilesA@20
3947EnumColorProfilesW@20
4048GenerateCopyFilePaths@36
......@@ -59,11 +67,15 @@ InternalGetPS2CSAFromLCS@16
5967InternalGetPS2ColorRenderingDictionary@20
6068InternalGetPS2ColorSpaceArray@24
6169InternalGetPS2PreviewCRD@24
70InternalRefreshCalibration@8
6271InternalSetDeviceConfig@24
72InternalWcsAssociateColorProfileWithDevice@20
73InternalWcsDisassociateColorProfileWithDevice@16
6374IsColorProfileTagPresent@12
6475IsColorProfileValid@8
6576OpenColorProfileA@16
6677OpenColorProfileW@16
78OpenDisplay@16
6779RegisterCMMA@12
6880RegisterCMMW@12
6981SelectCMM@4
......@@ -86,6 +98,7 @@ WcsCreateIccProfile@8
8698WcsDisassociateColorProfileFromDevice@12
8799WcsEnumColorProfiles@20
88100WcsEnumColorProfilesSize@12
101WcsGetCalibrationManagementState@4
89102WcsGetDefaultColorProfile@28
90103WcsGetDefaultColorProfileSize@24
91104WcsGetDefaultRenderingIntent@8
......@@ -94,7 +107,33 @@ WcsGpCanInstallOrUninstallProfiles@4
94107WcsGpCanModifyDeviceAssociationList@12
95108WcsOpenColorProfileA@28
96109WcsOpenColorProfileW@28
110WcsSetCalibrationManagementState@4
97111WcsSetDefaultColorProfile@24
98112WcsSetDefaultRenderingIntent@8
99113WcsSetUsePerUserProfiles@12
100114WcsTranslateColors@40
115InternalGetPS2ColorRenderingDictionary2@24
116InternalGetPS2PreviewCRD2@32
117InternalGetPS2ColorSpaceArray2@28
118InternalSetDeviceGammaRamp@12
119InternalSetDeviceTemperature@16
120InternalGetAppliedGammaRamp@8
121InternalGetDeviceGammaCapability@4
122InternalGetAppliedGDIGammaRamp@8
123InternalSetDeviceGDIGammaRamp@12
124ColorAdapterGetSystemModifyWhitePointCaps@8
125ColorAdapterGetDisplayCurrentStateID@16
126ColorAdapterUpdateDisplayGamma@20
127ColorAdapterUpdateDeviceProfile@16
128ColorAdapterGetDisplayTransformData@20
129ColorAdapterGetDisplayTargetWhitePoint@24
130ColorAdapterGetDisplayProfile@24
131ColorAdapterGetCurrentProfileCalibration@24
132ColorAdapterRegisterOEMColorService@4
133ColorAdapterUnregisterOEMColorService@4
134ColorProfileAddDisplayAssociation@28
135ColorProfileRemoveDisplayAssociation@24
136ColorProfileSetDisplayDefaultAssociation@28
137ColorProfileGetDisplayList@24
138ColorProfileGetDisplayDefault@28
139ColorProfileGetDisplayUserScope@16
lib/libc/mingw/lib32/msctf.def created+89
......@@ -0,0 +1,89 @@
1;
2; Definition file of MSCTF.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "MSCTF.dll"
7EXPORTS
8TF_GetLangDescriptionFromHKL@12
9TF_GetLangIcon@12
10TF_GetLangIconFromHKL@4
11TF_RunInputCPL@0
12CtfImeAssociateFocus@12
13CtfImeConfigure@16
14CtfImeConversionList@20
15CtfImeCreateInputContext@4
16CtfImeCreateThreadMgr@8
17CtfImeDestroy@4
18CtfImeDestroyInputContext@4
19CtfImeDestroyThreadMgr@0
20CtfImeDispatchDefImeMessage@16
21CtfImeEnumRegisterWord@20
22CtfImeEscape@12
23CtfImeEscapeEx@16
24CtfImeGetGuidAtom@12
25CtfImeGetRegisterWordStyle@8
26CtfImeInquire@12
27CtfImeInquireExW@16
28CtfImeIsGuidMapEnable@4
29CtfImeIsIME@4
30CtfImeProcessCicHotkey@12
31CtfImeProcessKey@16
32CtfImeRegisterWord@12
33CtfImeSelect@8
34CtfImeSelectEx@12
35CtfImeSetActiveContext@8
36CtfImeSetCompositionString@24
37CtfImeSetFocus@8
38CtfImeToAsciiEx@24
39CtfImeUnregisterWord@12
40CtfNotifyIME@16
41DllCanUnloadNow@0
42DllGetClassObject@12
43DllRegisterServer@0
44DllUnregisterServer@0
45SetInputScope@8
46SetInputScopeXML@8
47SetInputScopes2@24
48SetInputScopes@28
49TF_AttachThreadInput@8
50TF_CUASAppFix@4
51TF_CanUninitialize@0
52TF_CheckThreadInputIdle@8
53TF_CleanUpPrivateMessages@4
54TF_ClearLangBarAddIns@4
55TF_CreateCategoryMgr@4
56TF_CreateCicLoadMutex@4
57TF_CreateCicLoadWinStaMutex@0
58TF_CreateDisplayAttributeMgr@4
59TF_CreateInputProcessorProfiles@4
60TF_CreateLangBarItemMgr@4
61TF_CreateLangBarMgr@4
62TF_CreateThreadMgr@4
63TF_DllDetachInOther@0
64TF_GetAppCompatFlags@0
65TF_GetCompatibleKeyboardLayout@4
66TF_GetGlobalCompartment@4
67TF_GetInitSystemFlags@0
68TF_GetInputScope@8
69TF_GetShowFloatingStatus@4
70TF_GetThreadFlags@16
71TF_GetThreadMgr@4
72TF_InitSystem@4
73TF_InvalidAssemblyListCache@0
74TF_InvalidAssemblyListCacheIfExist@0
75TF_IsCtfmonRunning@0
76TF_IsFullScreenWindowActivated@0
77TF_IsThreadWithFlags@4
78TF_MapCompatibleHKL@12
79TF_MapCompatibleKeyboardTip@12
80TF_Notify@12
81TF_PostAllThreadMsg@8
82TF_RegisterLangBarAddIn@12
83TF_SendLangBandMsg@8
84TF_SetDefaultRemoteKeyboardLayout@8
85TF_SetShowFloatingStatus@8
86TF_SetThreadFlags@8
87TF_UninitSystem@0
88TF_UnregisterLangBarAddIn@8
89TF_WaitForInitialized@4
lib/libc/mingw/lib32/mshtml.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of MSHTML.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "MSHTML.dll"
7EXPORTS
8ord_100@4 @100
9ord_101@4 @101
10ord_102@4 @102
11ord_103@8 @103
12ord_104@4 @104
13ClearPhishingFilterData@0
14ConvertAndEscapePostData@12
15CreateHTMLPropertyPage@8
16DllCanUnloadNow@0
17DllEnumClassObjects@12
18DllGetClassObject@12
19IEIsXMLNSRegistered@8
20IERegisterXMLNS@24
21MatchExactGetIDsOfNames@28
22PrintHTML@16
23RunHTMLApplication@16
24ShowHTMLDialog@20
25ShowHTMLDialogEx@24
26ShowModalDialog@20
27ShowModelessHTMLDialog@20
lib/libc/mingw/lib32/mshtmled.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of mshtmled.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "mshtmled.dll"
7EXPORTS
8DllCanUnloadNow@0
9DllEnumClassObjects@12
10DllGetClassObject@12
11DllRegisterServer@0
12DllUnregisterServer@0
lib/libc/mingw/lib32/msoledbsql.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of msoledbsql.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "msoledbsql.dll"
7EXPORTS
8DllCanUnloadNow@0
9DllGetClassObject@12
10DllMain@12
11DllRegisterServer@0
12DllUnregisterServer@0
13OpenSqlFilestream@24
lib/libc/mingw/lib32/msvcp60.def created+71
......@@ -0,0 +1,71 @@
1;Submitted by: Danny Smith <danny_r_smith_2001@yahoo.co.nz>
2;Only the C functions are listed. Most of these have been commented out since
3;I don't know what they are and can't test them. Some look like data exports
4;for C++ math functions (E.G.: _Xbig).
5LIBRARY MSVCP60.DLL
6EXPORTS
7;_Cosh
8;_Denorm
9;_Dnorm
10;_Dscale
11;_Dtest
12;_Eps
13;_Exp
14;_FCosh
15;_FDenorm
16;_FDnorm
17;_FDscale
18;_FDtest
19;_FEps
20;_FExp
21;_FInf
22;_FNan
23;_FRteps
24;_FSinh
25;_FSnan
26;_FXbig
27;_Getcoll
28;_Getctype
29;_Getcvt
30;_Hugeval
31;_Inf
32;_LCosh
33;_LDenorm
34;_LDscale
35;_LDtest
36;_LEps
37;_LExp
38;_LInf
39;_LNan
40;_LPoly
41;_LRteps
42;_LSinh
43;_LSnan
44;_LXbig
45;_Mbrtowc
46;_Nan
47;_Poly
48;_Rteps
49;_Sinh
50;_Snan
51;_Stod
52;_Stof
53;_Stold
54;_Strcoll
55;_Strxfrm
56;_Tolower
57;_Toupper
58;_Wcrtomb
59;__Wcrtomb_lk
60;_Xbig
61
62btowc
63mbrlen
64mbrtowc
65mbsrtowcs
66towctrans
67wcrtomb
68wcsrtombs
69wctob
70wctrans
71wctype
\ No newline at end of file
lib/libc/mingw/lib32/nddeapi.def created+30
......@@ -0,0 +1,30 @@
1LIBRARY NDDEAPI.DLL
2EXPORTS
3NDdeGetErrorStringA@12
4NDdeGetErrorStringW@12
5NDdeGetShareSecurityA@24
6NDdeGetShareSecurityW@24
7NDdeGetTrustedShareA@20
8NDdeGetTrustedShareW@20
9NDdeIsValidAppTopicListA@4
10NDdeIsValidAppTopicListW@4
11NDdeIsValidShareNameA@4
12NDdeIsValidShareNameW@4
13NDdeSetShareSecurityA@16
14NDdeSetShareSecurityW@16
15NDdeSetTrustedShareA@12
16NDdeSetTrustedShareW@12
17NDdeShareAddA@20
18NDdeShareAddW@20
19NDdeShareDelA@12
20NDdeShareDelW@12
21NDdeShareEnumA@24
22NDdeShareEnumW@24
23NDdeShareGetInfoA@28
24NDdeShareGetInfoW@28
25NDdeShareSetInfoA@24
26NDdeShareSetInfoW@24
27NDdeSpecialCommandA@24
28NDdeSpecialCommandW@24
29NDdeTrustedShareEnumA@24
30NDdeTrustedShareEnumW@24
lib/libc/mingw/lib32/ndis.def created+578
......@@ -0,0 +1,578 @@
1;
2; Definition file of NDIS.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "NDIS.SYS"
7EXPORTS
8;ArcFilterDprIndicateReceive
9;ArcFilterDprIndicateReceiveComplete
10;EthFilterDprIndicateReceive
11;EthFilterDprIndicateReceiveComplete
12;FddiFilterDprIndicateReceive
13;FddiFilterDprIndicateReceiveComplete
14EthFilterDprIndicateReceive@32
15EthFilterDprIndicateReceiveComplete@4
16NDIS_BUFFER_TO_SPAN_PAGES@4
17NdisAcquireRWLockRead@12
18NdisAcquireRWLockWrite@12
19NdisAcquireReadWriteLock@12
20NdisAcquireSpinLock@4
21NdisActiveGroupCount@0
22NdisAdjustBufferLength@8
23NdisAdjustNetBufferCurrentMdl@4
24NdisAdvanceNetBufferDataStart@16
25NdisAdvanceNetBufferListDataStart@16
26NdisAllocateBuffer@20
27NdisAllocateBufferPool@12
28NdisAllocateCloneNetBufferList@16
29NdisAllocateCloneOidRequest@16
30NdisAllocateFragmentNetBufferList@32
31NdisAllocateGenericObject@12
32NdisAllocateIoWorkItem@4
33NdisAllocateMdl@12
34NdisAllocateMemory@20
35NdisAllocateMemoryWithTag@12
36NdisAllocateMemoryWithTagPriority@16
37NdisAllocateNetBuffer@16
38NdisAllocateNetBufferAndNetBufferList@24
39NdisAllocateNetBufferList@12
40NdisAllocateNetBufferListContext@16
41NdisAllocateNetBufferListPool@8
42NdisAllocateNetBufferMdlAndData@4
43NdisAllocateNetBufferPool@8
44NdisAllocatePacket@12
45NdisAllocatePacketPool@16
46NdisAllocatePacketPoolEx@20
47NdisAllocateRWLock@4
48NdisAllocateReassembledNetBufferList@24
49NdisAllocateRefCount@8
50NdisAllocateSharedMemory@12
51NdisAllocateSpinLock@4
52NdisAllocateTimerObject@12
53NdisAnsiStringToUnicodeString@8
54NdisBufferLength@4
55NdisBufferVirtualAddress@4
56NdisBuildScatterGatherList@8
57NdisCancelDirectOidRequest@8
58NdisCancelOidRequest@8
59NdisCancelSendNetBufferLists@8
60NdisCancelSendPackets@8
61NdisCancelTimer@8
62NdisCancelTimerObject@4
63NdisClAddParty@16
64NdisClCloseAddressFamily@4
65NdisClCloseCall@16
66NdisClDeregisterSap@4
67NdisClDropParty@12
68NdisClGetProtocolVcContextFromTapiCallId@12
69NdisClIncomingCallComplete@12
70NdisClMakeCall@16
71NdisClModifyCallQoS@8
72NdisClNotifyCloseAddressFamilyComplete@8
73NdisClOpenAddressFamily@24
74NdisClOpenAddressFamilyEx@16
75NdisClRegisterSap@16
76NdisCloseAdapter@8
77NdisCloseAdapterEx@4
78NdisCloseConfiguration@4
79NdisCloseFile@4
80NdisCloseNDKAdapter@8
81NdisCmActivateVc@8
82NdisCmAddPartyComplete@16
83NdisCmCloseAddressFamilyComplete@8
84NdisCmCloseCallComplete@12
85NdisCmDeactivateVc@4
86NdisCmDeregisterSapComplete@8
87NdisCmDispatchCallConnected@4
88NdisCmDispatchIncomingCall@12
89NdisCmDispatchIncomingCallQoSChange@8
90NdisCmDispatchIncomingCloseCall@16
91NdisCmDispatchIncomingDropParty@16
92NdisCmDropPartyComplete@8
93NdisCmMakeCallComplete@20
94NdisCmModifyCallQoSComplete@12
95NdisCmNotifyCloseAddressFamily@4
96NdisCmOpenAddressFamilyComplete@12
97NdisCmRegisterAddressFamily@16
98NdisCmRegisterAddressFamilyEx@8
99NdisCmRegisterSapComplete@12
100NdisCoAssignInstanceName@12
101NdisCoCreateVc@16
102NdisCoDeleteVc@4
103NdisCoGetTapiCallId@8
104NdisCoOidRequest@20
105NdisCoOidRequestComplete@20
106NdisCoRequest@20
107NdisCoRequestComplete@20
108NdisCoSendNetBufferLists@12
109NdisCoSendPackets@12
110NdisCompareAnsiString@12
111NdisCompareUnicodeString@12
112NdisCompleteBindAdapter@12
113NdisCompleteBindAdapterEx@8
114NdisCompleteDmaTransfer@24
115NdisCompleteNetPnPEvent@12
116NdisCompletePnPEvent@12
117NdisCompleteUnbindAdapter@8
118NdisCompleteUnbindAdapterEx@4
119NdisConvertNdisStatusToNtStatus@4
120NdisConvertNtStatusToNdisStatus@4
121NdisCopyBuffer@24
122NdisCopyFromNetBufferToNetBuffer@24
123NdisCopyFromPacketToPacket@24
124NdisCopyFromPacketToPacketSafe@28
125NdisCopyReceiveNetBufferListInfo@8
126NdisCopySendNetBufferListInfo@8
127NdisCurrentGroupAndProcessor@0
128NdisCurrentProcessorIndex@0
129NdisDereferenceWithTag@8
130NdisDeregisterDeviceEx@4
131NdisDeregisterProtocol@8
132NdisDeregisterProtocolDriver@4
133NdisDeregisterTdiCallBack@0
134NdisDirectOidRequest@8
135NdisDllInitialize@0
136NdisDprAcquireReadWriteLock@12
137NdisDprAcquireSpinLock@4
138NdisDprAllocatePacket@12
139NdisDprAllocatePacketNonInterlocked@12
140NdisDprFreePacket@4
141NdisDprFreePacketNonInterlocked@4
142;NdisDprReleaseSpinLock
143;NdisEqualString DATA
144NdisDprReleaseReadWriteLock@8
145NdisDprReleaseSpinLock@4
146NdisEnumerateFilterModules@20
147NdisEqualString@12
148NdisFCancelDirectOidRequest@8
149NdisFCancelOidRequest@8
150NdisFCancelSendNetBufferLists@8
151NdisFDeregisterFilterDriver@4
152NdisFDevicePnPEventNotify@8
153NdisFDirectOidRequest@8
154NdisFDirectOidRequestComplete@12
155NdisFGetOptionalSwitchHandlers@12
156NdisFIndicateReceiveNetBufferLists@20
157NdisFIndicateStatus@8
158NdisFNetPnPEvent@8
159NdisFOidRequest@8
160NdisFOidRequestComplete@12
161NdisFPauseComplete@4
162NdisFRegisterFilterDriver@16
163NdisFRestartComplete@8
164NdisFRestartFilter@4
165NdisFRetryAttach@8
166NdisFReturnNetBufferLists@12
167NdisFSendNetBufferLists@16
168NdisFSendNetBufferListsComplete@12
169NdisFSetAttributes@12
170NdisFSynchronousOidRequest@8
171NdisFreeBuffer@4
172NdisFreeBufferPool@4
173NdisFreeCloneNetBufferList@8
174NdisFreeCloneOidRequest@8
175NdisFreeFragmentNetBufferList@12
176NdisFreeGenericObject@4
177NdisFreeIoWorkItem@4
178NdisFreeMdl@4
179NdisFreeMemory@12
180NdisFreeMemoryWithTag@8
181NdisFreeMemoryWithTagPriority@12
182NdisFreeNetBuffer@4
183NdisFreeNetBufferList@4
184NdisFreeNetBufferListContext@8
185NdisFreeNetBufferListPool@4
186NdisFreeNetBufferPool@4
187NdisFreePacket@4
188NdisFreePacketPool@4
189;NdisFreeToBlockPool
190NdisFreeRWLock@4
191NdisFreeReassembledNetBufferList@12
192NdisFreeRefCount@4
193NdisFreeScatterGatherList@12
194NdisFreeSharedMemory@8
195NdisFreeSpinLock@4
196NdisFreeTimerObject@4
197NdisGeneratePartialCancelId@0
198NdisGetAndReferenceCompartmentJobObject@12
199NdisGetBufferPhysicalArraySize@8
200NdisGetCurrentProcessorCounts@12
201NdisGetCurrentProcessorCpuUsage@4
202NdisGetCurrentSystemTime@4
203NdisGetDataBuffer@20
204NdisGetDeviceReservedExtension@4
205NdisGetDriverHandle@8
206NdisGetFirstBufferFromPacket@20
207NdisGetFirstBufferFromPacketSafe@24
208NdisGetHypervisorInfo@4
209NdisGetJobObjectCompartmentId@4
210NdisGetNetBufferListProtocolId@4
211NdisGetPacketCancelId@4
212NdisGetPacketFromNetBufferList@8
213NdisGetPoolFromNetBuffer@4
214NdisGetPoolFromNetBufferList@4
215NdisGetPoolFromPacket@4
216NdisGetProcessObjectCompartmentId@4
217NdisGetProcessorInformation@4
218NdisGetProcessorInformationEx@12
219NdisGetReceivedPacket@8
220NdisGetRefCount@4
221NdisGetRoutineAddress@4
222NdisGetRssProcessorInformation@12
223NdisGetSessionCompartmentId@4
224NdisGetSessionToCompartmentMappingEpochAndZero@0
225NdisGetSharedDataAlignment@0
226NdisGetSystemUpTime@4
227NdisGetSystemUpTimeEx@4
228NdisGetThreadObjectCompartmentId@4
229NdisGetThreadObjectCompartmentScope@12
230NdisGetVersion@0
231NdisGroupActiveProcessorCount@4
232NdisGroupActiveProcessorMask@4
233NdisGroupMaxProcessorCount@4
234NdisIMAssociateMiniport@8
235NdisIMCancelInitializeDeviceInstance@8
236NdisIMCopySendCompletePerPacketInfo@8
237NdisIMCopySendPerPacketInfo@8
238NdisIMDeInitializeDeviceInstance@4
239NdisIMDeregisterLayeredMiniport@4
240NdisIMGetBindingContext@4
241NdisIMGetCurrentPacketStack@8
242NdisIMGetDeviceContext@4
243NdisIMInitializeDeviceInstance@8
244NdisIMInitializeDeviceInstanceEx@12
245NdisIMNotifyPnPEvent@8
246NdisIMQueueMiniportCallback@12
247NdisIMRegisterLayeredMiniport@16
248NdisIMRevertBack@8
249NdisIMSwitchToMiniport@8
250NdisIMVBusDeviceAdd@8
251NdisIMVBusDeviceRemove@8
252NdisIfAddIfStackEntry@8
253NdisIfAllocateNetLuidIndex@8
254NdisIfAllocateNetLuidIndexEx@12
255NdisIfDeleteIfStackEntry@8
256NdisIfDeregisterInterface@4
257NdisIfDeregisterProvider@4
258NdisIfFreeNetLuidIndex@8
259NdisIfGetInterfaceIndexFromNetLuid@12
260NdisIfGetNetLuidFromInterfaceIndex@8
261NdisIfQueryBindingIfIndex@20
262NdisIfRegisterInterface@24
263NdisIfRegisterProvider@12
264NdisImmediateReadPciSlotInformation@20
265NdisImmediateReadPortUchar@12
266NdisImmediateReadPortUlong@12
267NdisImmediateReadPortUshort@12
268NdisImmediateReadSharedMemory@16
269NdisImmediateWritePciSlotInformation@20
270NdisImmediateWritePortUchar@12
271NdisImmediateWritePortUlong@12
272NdisImmediateWritePortUshort@12
273NdisImmediateWriteSharedMemory@16
274NdisInitAnsiString@8
275NdisInitUnicodeString@8
276NdisInitializeEvent@4
277NdisInitializeReadWriteLock@4
278NdisInitializeString@8
279NdisInitializeTimer@12
280NdisInitializeWrapper@16
281NdisInitiateOffload@8
282NdisInterlockedAddLargeInterger@16
283NdisInterlockedAddUlong@12
284NdisInterlockedDecrement@4
285NdisInterlockedIncrement@4
286NdisInterlockedInsertHeadList@12
287NdisInterlockedInsertTailList@12
288NdisInterlockedPopEntryList@8
289NdisInterlockedPushEntryList@12
290NdisInterlockedRemoveHeadList@8
291NdisInvalidateOffload@8
292NdisIsStatusIndicationCloneable@4
293NdisLWMDeregisterMiniportDriver@4
294NdisLWMInitializeNetworkInterface@16
295NdisLWMRegisterMiniportDriver@12
296NdisLWMStartNetworkInterface@4
297NdisLWMUninitializeNetworkInterface@4
298NdisMAllocateMapRegisters@20
299NdisMAllocateNetBufferSGList@24
300NdisMAllocatePort@8
301NdisMAllocateSharedMemory@20
302NdisMAllocateSharedMemoryAsync@16
303NdisMAllocateSharedMemoryAsyncEx@16
304NdisMCancelTimer@8
305NdisMCloseLog@4
306NdisMCmActivateVc@8
307NdisMCmCreateVc@16
308NdisMCmDeactivateVc@4
309NdisMCmDeleteVc@4
310NdisMCmOidRequest@16
311NdisMCmRegisterAddressFamily@16
312NdisMCmRegisterAddressFamilyEx@8
313NdisMCmRequest@16
314NdisMCoActivateVcComplete@12
315NdisMCoDeactivateVcComplete@8
316NdisMCoIndicateReceiveNetBufferLists@16
317NdisMCoIndicateReceivePacket@12
318NdisMCoIndicateStatus@20
319NdisMCoIndicateStatusEx@12
320NdisMCoOidRequestComplete@16
321NdisMCoReceiveComplete@4
322NdisMCoRequestComplete@12
323NdisMCoSendComplete@12
324NdisMCoSendNetBufferListsComplete@12
325NdisMCompleteBufferPhysicalMapping@12
326NdisMConfigMSIXTableEntry@8
327NdisMCreateLog@12
328NdisMDeregisterAdapterShutdownHandler@4
329NdisMDeregisterDevice@4
330NdisMDeregisterDmaChannel@4
331NdisMDeregisterInterrupt@4
332NdisMDeregisterInterruptEx@4
333NdisMDeregisterIoPortRange@16
334NdisMDeregisterMiniportDriver@4
335NdisMDeregisterScatterGatherDma@4
336NdisMDeregisterWdiMiniportDriver@4
337NdisMDirectOidRequestComplete@12
338NdisMEnableVirtualization@20
339NdisMFlushLog@4
340NdisMFreeMapRegisters@4
341NdisMFreeNetBufferSGList@12
342NdisMFreePort@8
343NdisMFreeSharedMemory@24
344NdisMGetBusData@20
345NdisMGetDeviceProperty@24
346NdisMGetDmaAlignment@4
347NdisMGetMiniportInitAttributes@8
348NdisMGetOffloadHandlers@12
349NdisMGetVirtualDeviceLocation@24
350NdisMGetVirtualFunctionBusData@20
351NdisMGetVirtualFunctionLocation@20
352NdisMIdleNotificationComplete@4
353NdisMIdleNotificationCompleteEx@8
354NdisMIdleNotificationConfirm@8
355NdisMIndicateReceiveNetBufferLists@20
356NdisMIndicateStatus@16
357NdisMIndicateStatusComplete@4
358NdisMIndicateStatusEx@8
359NdisMInitializeScatterGatherDma@12
360NdisMInitializeTimer@16
361NdisMInitiateOffloadComplete@8
362NdisMInvalidateConfigBlock@16
363NdisMInvalidateOffloadComplete@8
364NdisMMapIoSpace@20
365NdisMNetPnPEvent@8
366NdisMOffloadEventIndicate@12
367NdisMOidRequestComplete@12
368NdisMPauseComplete@4
369NdisMPciAssignResources@12
370NdisMPromoteMiniport@4
371NdisMQueryAdapterInstanceName@8
372NdisMQueryAdapterResources@16
373NdisMQueryInformationComplete@8
374NdisMQueryOffloadStateComplete@8
375NdisMQueryProbedBars@8
376NdisMQueueDpc@16
377NdisMQueueDpcEx@16
378NdisMReadConfigBlock@16
379NdisMReadDmaCounter@4
380NdisMReenumerateFailedAdapter@4
381NdisMRegisterAdapterShutdownHandler@12
382NdisMRegisterDevice@24
383NdisMRegisterDmaChannel@24
384NdisMRegisterInterrupt@28
385NdisMRegisterInterruptEx@16
386NdisMRegisterIoPortRange@16
387NdisMRegisterMiniport@12
388NdisMRegisterMiniportDriver@20
389NdisMRegisterScatterGatherDma@12
390NdisMRegisterUnloadHandler@8
391NdisMRegisterWdiMiniportDriver@24
392NdisMRemoveMiniport@4
393NdisMRequestDpc@8
394NdisMResetComplete@12
395NdisMResetMiniport@4
396NdisMRestartComplete@8
397NdisMSendComplete@12
398NdisMSendNetBufferListsComplete@12
399NdisMSendResourcesAvailable@4
400NdisMSetAttributes@16
401NdisMSetAttributesEx@20
402NdisMSetBusData@20
403NdisMSetInformationComplete@8
404NdisMSetMiniportAttributes@8
405NdisMSetMiniportSecondary@8
406NdisMSetPeriodicTimer@8
407NdisMSetTimer@8
408NdisMSetVirtualFunctionBusData@20
409NdisMSleep@4
410NdisMStartBufferPhysicalMapping@24
411NdisMSynchronizeWithInterrupt@12
412NdisMSynchronizeWithInterruptEx@16
413NdisMTerminateOffloadComplete@8
414NdisMTransferDataComplete@16
415NdisMUnmapIoSpace@12
416NdisMUpdateOffloadComplete@8
417NdisMWanIndicateReceive@20
418NdisMWanIndicateReceiveComplete@8
419NdisMWanSendComplete@12
420NdisMWriteConfigBlock@16
421NdisMWriteLogData@12
422NdisMapFile@12
423NdisMatchPdoWithPacket@8
424NdisMaxGroupCount@0
425NdisNblTrackerDeregisterComponent@4
426NdisNblTrackerQueryNblCurrentOwner@4
427NdisNblTrackerRecordEvent@16
428NdisNblTrackerRegisterComponent@12
429NdisNblTrackerTransferOwnership@20
430NdisOffloadTcpDisconnect@12
431NdisOffloadTcpForward@8
432NdisOffloadTcpReceive@8
433NdisOffloadTcpReceiveReturn@8
434NdisOffloadTcpSend@8
435NdisOidRequest@8
436NdisOpenAdapter@44
437NdisOpenAdapterEx@20
438NdisOpenConfiguration@12
439NdisOpenConfigurationEx@8
440NdisOpenConfigurationKeyByIndex@20
441NdisOpenConfigurationKeyByName@16
442NdisOpenFile@24
443NdisOpenNDKAdapter@12
444NdisOpenProtocolConfiguration@12
445NdisOverrideBusNumber@12
446NdisPacketPoolUsage@4
447NdisPacketSize@4
448NdisProcessorIndexToNumber@8
449NdisProcessorNumberToIndex@4
450NdisQueryAdapterInstanceName@8
451NdisQueryBindInstanceName@8
452NdisQueryBuffer@12
453NdisQueryBufferOffset@12
454NdisQueryBufferSafe@16
455NdisQueryDiagnosticSetting@8
456NdisQueryMapRegisterCount@8
457NdisQueryNetBufferPhysicalCount@4
458NdisQueryOffloadState@8
459NdisQueryPendingIOCount@8
460NdisQueueIoWorkItem@12
461NdisReEnumerateProtocolBindings@4
462NdisReadConfiguration@20
463NdisReadEisaSlotInformation@16
464NdisReadEisaSlotInformationEx@20
465NdisReadMcaPosInformation@16
466NdisReadNetworkAddress@16
467NdisReadPciSlotInformation@20
468NdisReadPcmciaAttributeMemory@16
469NdisReferenceWithTag@8
470NdisRegisterDeviceEx@16
471NdisRegisterProtocol@16
472NdisRegisterProtocolDriver@12
473NdisRegisterTdiCallBack@8
474NdisReleaseNicActive@8
475NdisReleaseRWLock@8
476NdisReleaseReadWriteLock@8
477NdisReleaseSpinLock@4
478NdisRequest@12
479NdisRequestEx@8
480NdisReset@8
481NdisResetEvent@4
482NdisRetreatNetBufferDataStart@16
483NdisRetreatNetBufferListDataStart@20
484NdisReturnNetBufferLists@12
485NdisReturnPackets@8
486NdisScheduleWorkItem@4
487NdisSend@12
488NdisSendNetBufferLists@16
489NdisSendPackets@12
490NdisSetAoAcOptions@8
491NdisSetCoalescableTimerObject@24
492NdisSetEvent@4
493NdisSetOptionalHandlers@8
494NdisSetPacketCancelId@8
495NdisSetPacketPoolProtocolId@8
496NdisSetPacketStatus@16
497NdisSetPeriodicTimer@8
498NdisSetProtocolFilter@32
499NdisSetSessionCompartmentId@8
500NdisSetThreadObjectCompartmentId@8
501NdisSetThreadObjectCompartmentScope@8
502NdisSetTimer@8
503NdisSetTimerEx@12
504NdisSetTimerObject@20
505NdisSetupDmaTransfer@24
506NdisSynchronousOidRequest@8
507NdisSystemActiveProcessorCount@4
508NdisSystemProcessorCount@0
509NdisTerminateOffload@8
510NdisTerminateWrapper@8
511NdisTestRWLockHeldByCurrentProcessorRead@4
512NdisTestRWLockHeldByCurrentProcessorWrite@4
513NdisTransferData@28
514NdisTryAcquireNicActive@8
515NdisTryAcquireRWLockRead@12
516NdisTryAcquireRWLockWrite@12
517NdisTryPromoteRWLockFromReadToWrite@8
518NdisUnbindAdapter@4
519NdisUnchainBufferAtBack@8
520NdisUnchainBufferAtFront@8
521NdisUnicodeStringToAnsiString@8
522NdisUnmapFile@4
523NdisUpcaseUnicodeString@8
524NdisUpdateOffload@8
525NdisUpdateSharedMemory@20
526NdisWaitEvent@8
527NdisWdfAsyncPowerReferenceCompleteNotification@12
528NdisWdfChangeSingleInstance@12
529NdisWdfCloseIrpHandler@4
530NdisWdfCreateIrpHandler@8
531NdisWdfDeregisterCx@4
532NdisWdfDeviceControlIrpHandler@4
533NdisWdfDeviceInternalControlIrpHandler@4
534NdisWdfExecuteMethod@20
535NdisWdfGenerateFdoNameIndex@0
536NdisWdfGetAdapterContextFromAdapterHandle@4
537NdisWdfGetGuidToOidMap@16
538NdisWdfMiniportDataPathPause@4
539NdisWdfMiniportDataPathStart@4
540NdisWdfMiniportDereference@4
541NdisWdfMiniportSetPower@12
542NdisWdfMiniportStarted@4
543NdisWdfMiniportTryReference@4
544NdisWdfPnPAddDevice@8
545NdisWdfPnpPowerEventHandler@12
546NdisWdfQueryAllData@24
547NdisWdfQuerySingleInstance@20
548NdisWdfReadConfiguration@20
549NdisWdfRegisterCx@20
550NdisWdfRegisterMiniportDriver@24
551NdisWriteConfiguration@16
552NdisWriteErrorLogEntry@0
553NdisWriteEventLogEntry@28
554NdisWritePciSlotInformation@20
555NdisWritePcmciaAttributeMemory@16
556NetDmaAllocateChannel@16
557NetDmaChainCopyPhysicalToVirtual@36
558NetDmaChainCopyVirtualToVirtual@28
559NetDmaDeregisterClient@4
560NetDmaDeregisterProvider@4
561NetDmaEnumerateDmaProviders@20
562NetDmaFlushPendingDescriptors@4
563NetDmaFreeChannel@4
564NetDmaGetMaxPendingDescriptors@4
565NetDmaGetVersion@0
566NetDmaInterruptDpc@12
567NetDmaIsDmaCopyComplete@8
568NetDmaIsr@16
569NetDmaNullTransfer@16
570NetDmaPnPEventNotify@8
571NetDmaPrefetchNextDescriptor@4
572NetDmaProviderStart@8
573NetDmaProviderStop@4
574NetDmaRegisterClient@12
575NetDmaRegisterProvider@12
576NetDmaSetMaxPendingDescriptors@8
577TrFilterDprIndicateReceive@28
578TrFilterDprIndicateReceiveComplete@4
lib/libc/mingw/lib32/netio.def created+531
......@@ -0,0 +1,531 @@
1LIBRARY "NETIO.SYS"
2EXPORTS
3AgileVPNDispatchTableInit@4
4AgileVPNFindCompartmentIdFromTunnelId@12
5AgileVPNFindTunnelInfoFromInterfaceIndex@20
6CancelMibChangeNotify2@4
7CloseCompartment@4
8ConvertCompartmentGuidToId@8
9ConvertCompartmentIdToGuid@8
10ConvertInterfaceAliasToLuid@8
11ConvertInterfaceGuidToLuid@8
12ConvertInterfaceIndexToLuid@8
13ConvertInterfaceLuidToAlias@12
14ConvertInterfaceLuidToGuid@8
15ConvertInterfaceLuidToIndex@8
16ConvertInterfaceLuidToNameA@12
17ConvertInterfaceLuidToNameW@12
18ConvertInterfaceNameToLuidA@8
19ConvertInterfaceNameToLuidW@8
20ConvertInterfacePhysicalAddressToLuid@12
21ConvertIpv4MaskToLength@8
22ConvertLengthToIpv4Mask@8
23ConvertStringToInterfacePhysicalAddress@8
24CreateAnycastIpAddressEntry@4
25CreateCompartment@4
26CreateIpForwardEntry2@4
27CreateIpNetEntry2@4
28CreateSortedAddressPairs@28
29CreateUnicastIpAddressEntry@4
30DeleteAnycastIpAddressEntry@4
31DeleteCompartment@4
32DeleteIpForwardEntry2@4
33DeleteIpNetEntry2@4
34DeleteUnicastIpAddressEntry@4
35FeAcquireClassifyHandle@8
36FeAcquireWritableLayerDataPointer@24
37FeApplyModifiedLayerData@16
38FeCompleteClassify@16
39FeCopyIncomingValues@12
40FeGetWfpGlobalPtr@0
41FePendClassify@16
42FeReleaseCalloutContextList@4
43FeReleaseClassifyHandle@8
44FlushIpNetTable2@8
45FlushIpPathTable@4
46FreeDnsSettings@4
47FreeInterfaceDnsSettings@4
48FreeMibTable@4
49FsbAllocate@4
50FsbAllocateAtDpcLevel@4
51FsbCreatePool@16
52FsbDestroyPool@4
53FsbFree@4
54FwpmEventProviderCreate0@8
55FwpmEventProviderDestroy0@4
56FwpmEventProviderFireNetEvent0@16
57FwpmEventProviderIsNetEventTypeEnabled0@12
58FwppAdvanceStreamDataPastOffset@8
59FwppCopyStreamDataToBuffer@16
60FwppLogVpnEvent@4
61FwppStreamContinue@20
62FwppStreamDeleteDpcQueue@4
63FwppStreamInject@28
64FwppTruncateStreamDataAfterOffset@16
65GetAnycastIpAddressEntry@4
66GetAnycastIpAddressTable@8
67GetBestInterface@8
68GetBestInterfaceEx@8
69GetBestRoute2@28
70GetDefaultCompartmentId@0
71GetDnsSettings@4
72GetIfEntry2@4
73GetIfEntry2Ex@8
74GetIfStackTable@4
75GetIfTable2@4
76GetIfTable2Ex@8
77GetInterfaceCompartmentId@4
78GetInterfaceDnsSettings@20
79GetInvertedIfStackTable@4
80GetIpForwardEntry2@4
81GetIpForwardTable2@8
82GetIpInterfaceEntry@4
83GetIpInterfaceTable@8
84GetIpNetEntry2@4
85GetIpNetTable2@8
86GetIpNetworkConnectionBandwidthEstimates@12
87GetIpPathEntry@4
88GetIpPathTable@8
89GetMulticastIpAddressEntry@4
90GetMulticastIpAddressTable@8
91GetTeredoPort@4
92GetUnicastIpAddressEntry@4
93GetUnicastIpAddressTable@8
94HfAllocateHandle32@12
95HfCreateFactory@8
96HfDestroyFactory@4
97HfFreeHandle32@8
98HfGetPointerFromHandle32@12
99HfResumeHandle32@8
100HfSuspendHandle32@8
101IPsecGwDispatchTableInit@4
102IPsecGwGetTunnelInfoFromIPInformation@32
103IPsecGwIsUdpEspPacket@4
104IPsecGwProcessSecureNbl@44
105IPsecGwSetCallbackDispatch@4
106IPsecGwTransformClearTextPacket@56
107InitializeCompartmentEntry@4
108InitializeIpForwardEntry@4
109InitializeIpInterfaceEntry@4
110InitializeUnicastIpAddressEntry@4
111InternalCleanupPersistentStore@8
112InternalCreateAnycastIpAddressEntry@8
113InternalCreateIpForwardEntry2@8
114InternalCreateIpNetEntry2@8
115InternalCreateUnicastIpAddressEntry@8
116InternalDeleteAnycastIpAddressEntry@8
117InternalDeleteIpForwardEntry2@8
118InternalDeleteIpNetEntry2@8
119InternalDeleteUnicastIpAddressEntry@8
120InternalFindInterfaceByAddress@8
121InternalGetAnycastIpAddressEntry@8
122InternalGetAnycastIpAddressTable@12
123InternalGetForwardIpTable2@12
124InternalGetIfEntry2@8
125InternalGetIfTable2@8
126InternalGetIpForwardEntry2@8
127InternalGetIpInterfaceEntry@8
128InternalGetIpInterfaceTable@12
129InternalGetIpNetEntry2@8
130InternalGetIpNetTable2@12
131InternalGetMulticastIpAddressEntry@8
132InternalGetMulticastIpAddressTable@12
133InternalGetUnicastIpAddressEntry@8
134InternalGetUnicastIpAddressTable@12
135InternalSetIpForwardEntry2@8
136InternalSetIpInterfaceEntry@8
137InternalSetIpNetEntry2@8
138InternalSetTeredoPort@4
139InternalSetUnicastIpAddressEntry@8
140IoctlKfdAbortTransaction@16
141IoctlKfdAddCache@16
142IoctlKfdAddIndex@16
143IoctlKfdBatchUpdate@16
144IoctlKfdBeginEnumFilters@16
145IoctlKfdCommitTransaction@16
146IoctlKfdDeleteCache@16
147IoctlKfdDeleteIndex@16
148IoctlKfdEndEnumFilters@16
149IoctlKfdMoveFilter@16
150IoctlKfdQueryEnumFilters@16
151IoctlKfdQueryLayerStatistics@16
152IoctlKfdResetState@16
153IoctlKfdSetBfeEngineSd@12
154KfdAddCalloutEntry@32
155KfdAleAcquireEndpointContextFromFlow@8
156KfdAleAcquireFlowHandleForFlow@12
157KfdAleGetTableFromHandle@12
158KfdAleInitializeFlowHandles@0
159KfdAleInitializeFlowTable@12
160KfdAleNotifyFlowDeletion@4
161KfdAleReleaseFlowHandleForFlow@4
162KfdAleRemoveFlowContextTable@8
163KfdAleUninitializeFlowHandles@0
164KfdAleUpdateEndpointContextStatus@16
165KfdAuditEvent@4
166KfdBfeEngineAccessCheck@4
167KfdCheckAcceptBypass@16
168KfdCheckAndCacheAcceptBypass@20
169KfdCheckAndCacheConnectBypass@20
170KfdCheckClassifyNeededAndUpdateEpoch@8
171KfdCheckConnectBypass@16
172KfdCheckOffloadFastLayers@8
173KfdClassify2@8
174KfdClassify@24
175KfdDeRefCallout@4
176KfdDeleteCalloutEntry@4
177KfdDerefFilterContext@4
178KfdDeregisterLayerChangeCallback2@4
179KfdDeregisterLayerEventNotify@8
180KfdDiagnoseEvent@4
181KfdDirectClassify@24
182KfdEnumLayer@16
183KfdFindFilterById@20
184KfdFreeEnumHandle@4
185KfdGetLayerActionFromEnumTemplate@12
186KfdGetLayerCacheEpoch@8
187KfdGetLayerPreclassifyEpoch@8
188KfdGetNextFilter@12
189KfdGetOffloadEpoch@4
190KfdGetRefCallout@8
191KfdIsActiveCallout@8
192KfdIsDiagnoseEventEnabled@8
193KfdIsLayerEmpty@4
194KfdIsLsoOffloadPossibleV4@0
195KfdIsLsoOffloadPossibleV6@0
196KfdIsTfoIncompatibleFilterPresent@0
197KfdIsV4InTransportFastEmpty@0
198KfdIsV4OutTransportFastEmpty@0
199KfdIsV6InTransportFastEmpty@0
200KfdIsV6OutTransportFastEmpty@0
201KfdNotifyFlowDeletion@12
202KfdPreClassify@12
203KfdQueryLayerStats@8
204KfdQueueLruCleanupWorkItem@0
205KfdRegisterLayerChangeCallback2@4
206KfdRegisterLayerEventNotify@12
207KfdRegisterLayerEventNotifyEx@20
208KfdRegisterRscIncompatCalloutNotify@8
209KfdRegisterUsoIncompatCalloutNotify@4
210KfdReleaseCachedFilters@4
211KfdReleaseFilterContext@4
212KfdReleaseTerminatingFilters@4
213KfdSetWfpPerProcContextPtr@8
214KfdToggleFilterActivation@16
215MatchCondition@12
216MdpAllocate@8
217MdpAllocateAtDpcLevel@8
218MdpCreatePool@8
219MdpDestroyPool@4
220MdpFree@4
221NetioAdvanceNetBufferList@8
222NetioAdvanceToLocationInNetBuffer@16
223NetioAllocateAndInitializeStackBlock@8
224NetioAllocateAndReferenceCloneNetBufferList@8
225NetioAllocateAndReferenceCloneNetBufferListEx@16
226NetioAllocateAndReferenceCopyNetBufferListEx@16
227NetioAllocateAndReferenceFragmentNetBufferList@24
228NetioAllocateAndReferenceNetBufferAndNetBufferList@24
229NetioAllocateAndReferenceNetBufferList@12
230NetioAllocateAndReferenceNetBufferListNetBufferMdlAndData@24
231NetioAllocateAndReferenceReassembledNetBufferList@20
232NetioAllocateAndReferenceVacantNetBufferList@24
233NetioAllocateAndReferenceVacantNetBufferListEx@28
234NetioAllocateMdl@4
235NetioAllocateNetBuffer@16
236NetioAllocateNetBufferListNetBufferMdlAndDataPool@12
237NetioAllocateNetBufferMdlAndData@16
238NetioAllocateNetBufferMdlAndDataPool@8
239NetioAllocateOpaquePerProcessorContext@28
240NetioAssociateQoSFlowWithNbl@8
241NetioCleanupNetBufferListInformation@4
242NetioCloseKey@4
243NetioCompleteCloneNetBufferListChain@12
244NetioCompleteCopyNetBufferListChain@12
245NetioCompleteNetBufferAndNetBufferListChain@12
246NetioCompleteNetBufferListChain@12
247NetioCopyNetBufferListInformation@8
248NetioCreateForwardFlow@32
249NetioCreateKey@20
250NetioCreateQoSFlow@24
251NetioCreatevSwitchForwardFlow@48
252NetioDeleteQoSFlow@4
253NetioDereferenceNetBufferList@8
254NetioDereferenceNetBufferListChain@8
255NetioExpandNetBuffer@12
256NetioExtendNetBuffer@8
257NetioFlowAssociateContext@16
258NetioFlowRemoveContext@8
259NetioFlowRetrieveContext@16
260NetioFreeCloneNetBufferList@8
261NetioFreeCopyNetBufferList@8
262NetioFreeMdl@4
263NetioFreeNetBuffer@8
264NetioFreeNetBufferAndNetBufferList@8
265NetioFreeNetBufferList@8
266NetioFreeNetBufferListNetBufferMdlAndDataPool@4
267NetioFreeNetBufferMdlAndDataPool@4
268NetioFreeOpaquePerProcessorContext@8
269NetioFreeStackBlock@8
270NetioGetStatsForQoSFlow@8
271NetioGetSuperTriageBlock@0
272NetioInitNetworkRegistry@0
273NetioInitializeFlowsManager@4
274NetioInitializeMdl@12
275NetioInitializeNetBufferListAndFirstNetBufferContext@12
276NetioInitializeNetBufferListContext@16
277NetioInitializeNetBufferListContextPrimitive@16
278NetioInitializeNetBufferListLibrary@0
279NetioInitializeWorkQueue@16
280NetioInsertWorkQueue@8
281NetioLookupForwardFlow@24
282NetioLookupvSwitchForwardFlow@40
283NetioNcmActiveReferenceRequest@24
284NetioNcmCleanupState@0
285NetioNcmFastActiveReferenceRequest@12
286NetioNcmFastCheckAreAoAcPatternsSupported@0
287NetioNcmFastCheckIsAoAcCapable@0
288NetioNcmFastCheckIsMobileCore@0
289NetioNcmGetAllNotificationChannelContextParameters@8
290NetioNcmHandlePatternEviction@12
291NetioNcmInitializeState@4
292NetioNcmIsOwningProcessRtcApp@4
293NetioNcmNotificationChannelContextRequest@12
294NetioNcmNotifyRedirectOnInterface@4
295NetioNcmPatternCoalescingRequired@4
296NetioNcmQueryRtcPortHint@8
297NetioNcmQueryRtcPortRange@8
298NetioNcmSignalNcContextWorkQueueRoutine@4
299NetioNcmStoreBaseSupportedSlots@4
300NetioNcmStoreRtcPortHint@8
301NetioNcmStoreRtcPortRange@8
302NetioNcmTlObjectRequest@8
303NetioNcmTrackIsLegitimateWake@8
304NetioNrtAssociateContext@16
305NetioNrtDereferenceRecord@4
306NetioNrtDisassociateContext@8
307NetioNrtDispatch@8
308NetioNrtFindAndReferenceRecordByHandle@4
309NetioNrtFindAndReferenceRecordById@8
310NetioNrtFindOrCreateRecord@52
311NetioNrtGetIfIndex@4
312NetioNrtIsIpInRecord@12
313NetioNrtIsPktTaggingEnabled@0
314NetioNrtIsProxyInRecord@8
315NetioNrtIsTrackerDevice@4
316NetioNrtJoinRecords@8
317NetioNrtReferenceRecord@4
318NetioNrtStart@4
319NetioNrtStop@0
320NetioNrtWppLogRecord@8
321NetioOpenKey@12
322NetioPdcActivateNetwork@16
323NetioPdcDeactivateNetwork@12
324NetioPhClampMssOnIpPkt@8
325NetioPhClampMssOnTcpPkt@8
326NetioPhClampMssOnTcpSyn@12
327NetioPhFindTcpOption@12
328NetioPhGetIpUlProtocol@12
329NetioPhIsIcmpErrorForIcmpMessage@12
330NetioPhSkipIpv6ExtHdr@12
331NetioPhSkipToTransHdr@12
332NetioPhUpdateTcpChecksum@16
333NetioQueryNetBufferListTrafficClass@12
334NetioQueryValueKey@28
335NetioReferenceNetBufferList@4
336NetioReferenceNetBufferListChain@4
337NetioRefreshFlow@8
338NetioRegSyncDefaultChangeHandler@12
339NetioRegSyncInterface@20
340NetioRegSyncQueryAndUpdateKeyValue@12
341NetioRegisterProcessorAddCallback@12
342NetioReleaseFlow@8
343NetioRetreatNetBuffer@12
344NetioRetreatNetBufferList@12
345NetioSetTriageBlock@8
346NetioShutdownWorkQueue@4
347NetioStackBlockProcessorAddHandler@12
348NetioUnInitializeFlowsManager@4
349NetioUnInitializeNetBufferListLibrary@0
350NetioUnRegisterProcessorAddCallback@4
351NetioUpdateNetBufferListContext@12
352NetioValidateNetBuffer@4
353NetioValidateNetBufferList@4
354NetioWriteKey@20
355NmrClientAttachProvider@20
356NmrClientDetachProviderComplete@4
357NmrDeregisterClient@4
358NmrDeregisterProvider@4
359NmrProviderDetachClientComplete@4
360NmrRegisterClient@12
361NmrRegisterProvider@12
362NmrWaitForClientDeregisterComplete@4
363NmrWaitForProviderDeregisterComplete@4
364NotifyCompartmentChange@16
365NotifyIpInterfaceChange@20
366NotifyRouteChange2@20
367NotifyStableUnicastIpAddressTable@20
368NotifyTeredoPortChange@16
369NotifyUnicastIpAddressChange@20
370NsiAllocateAndGetTable@52
371NsiClearPersistentSetting@24
372NsiDeregisterChangeNotification@12
373NsiDeregisterChangeNotificationEx@4
374NsiDeregisterLegacyHandler@4
375NsiEnumerateObjectsAllParameters@52
376NsiEnumerateObjectsAllParametersEx@4
377NsiEnumerateObjectsAllPersistentParametersWithMask@36
378NsiFreeTable@16
379NsiGetAllParameters@44
380NsiGetAllParametersEx@4
381NsiGetAllPersistentParametersWithMask@28
382NsiGetModuleHandle@4
383NsiGetObjectSecurity@4
384NsiGetParameter@36
385NsiGetParameterEx@4
386NsiReferenceDefaultObjectSecurity@0
387NsiRegisterChangeNotification@24
388NsiRegisterChangeNotificationEx@4
389NsiRegisterLegacyHandler@4
390NsiResetPersistentSetting@16
391NsiSetAllParameters@32
392NsiSetAllParametersEx@4
393NsiSetAllPersistentParametersWithMask@32
394NsiSetObjectSecurity@4
395NsiSetParameter@40
396NsiSetParameterEx@4
397OpenCompartment@8
398PtCheckTable@4
399PtCreateTable@8
400PtDeleteEntry@8
401PtDestroyTable@4
402PtEnumOverTable@32
403PtGetData@4
404PtGetExactMatch@20
405PtGetKey@12
406PtGetLongestMatch@12
407PtGetNextShorterMatch@12
408PtGetNumNodes@4
409PtInsertEntry@20
410PtSetData@8
411ResolveIpNetEntry2@8
412RtlAllocateDummyMdlChain@4
413RtlCleanupTimerWheel@4
414RtlCleanupTimerWheelEntry@12
415RtlCleanupToeplitzHash@4
416RtlCompute37Hash@12
417RtlComputeToeplitzHash@16
418RtlCopyBufferToMdl@20
419RtlCopyMdlToBuffer@20
420RtlCopyMdlToMdl@24
421RtlCopyMdlToMdlIndirect@28
422RtlDeleteElementGenericTableBasicAvl@8
423RtlEndTimerWheelEnumeration@4
424RtlEnumerateNextTimerWheelEntry@4
425RtlFreeDummyMdlChain@4
426RtlGetNextExpirationTimerWheelTick@4
427RtlGetNextExpiredTimerWheelEntry@4
428RtlIndicateTimerWheelEntryTimerStart@8
429RtlInitializeTimerWheel@20
430RtlInitializeTimerWheelEntry@16
431RtlInitializeTimerWheelEnumeration@4
432RtlInitializeToeplitzHash@12
433RtlInsertElementGenericTableBasicAvl@16
434RtlInvokeStartRoutines@12
435RtlInvokeStopRoutines@12
436RtlIsTimerWheelSuspended@4
437RtlReinitializeToeplitzHash@12
438RtlResumeTimerWheel@8
439RtlReturnTimerWheelEntry@8
440RtlSuspendTimerWheel@4
441RtlUpdateCurrentTimerWheelTick@8
442SetDnsSettings@4
443SetInterfaceDnsSettings@20
444SetIpForwardEntry2@4
445SetIpInterfaceEntry@4
446SetIpNetEntry2@4
447SetUnicastIpAddressEntry@4
448SetWfpDeviceObject@4
449TlDefaultEventAbort@8
450TlDefaultEventConnect@8
451TlDefaultEventDisconnect@8
452TlDefaultEventError@8
453TlDefaultEventInspect@8
454TlDefaultEventNotify@8
455TlDefaultEventReceive@8
456TlDefaultEventReceiveMessages@8
457TlDefaultEventSendBacklog@8
458TlDefaultRequestCancel@8
459TlDefaultRequestCloseEndpoint@8
460TlDefaultRequestConnect@8
461TlDefaultRequestDisconnect@8
462TlDefaultRequestEndpoint@8
463TlDefaultRequestIoControl@8
464TlDefaultRequestIoControlEndpoint@8
465TlDefaultRequestListen@8
466TlDefaultRequestMessage@8
467TlDefaultRequestQueryDispatch@8
468TlDefaultRequestQueryDispatchEndpoint@8
469TlDefaultRequestReceive@8
470TlDefaultRequestReleaseIndicationList@8
471TlDefaultRequestResume@8
472TlDefaultRequestSend@8
473TlDefaultRequestSendMessages@8
474WfpAssociateContextToFlow@24
475WfpAssociateContextToFlowFast@24
476WfpCreateReassemblyContext@4
477WfpDecodedBufferFreeHelper@4
478WfpDeleteEntryLru@4
479WfpExpireEntryLru@4
480WfpFlowToEndpoint@8
481WfpFreeReassemblyContext@4
482WfpGetPacketTagCount@0
483WfpInitializeLeastRecentlyUsedList@52
484WfpInsertEntryLru@12
485WfpLruProcessExpiredEndpoint@16
486WfpLruQueueLruCleanupWorkItemForContext@8
487WfpNblInfoAlloc@4
488WfpNblInfoCleanup@8
489WfpNblInfoClearFlags@8
490WfpNblInfoClone@20
491WfpNblInfoDestroyIfUnused@4
492WfpNblInfoDispatchTableClear@0
493WfpNblInfoDispatchTableSet@4
494WfpNblInfoGet@4
495WfpNblInfoGetFlags@4
496WfpNblInfoInit@4
497WfpNblInfoSet@8
498WfpNblInfoSetFlags@8
499WfpNrptTriggerDecodeHelper@12
500WfpPacketTagCountIncrement@0
501WfpProcessFlowDelete@12
502WfpRefreshEntryLru@12
503WfpReleaseFlowLocation@4
504WfpRemoveContextFromFlow@16
505WfpRemoveContextFromFlowFast@12
506WfpReserveFlowLocation@8
507WfpScavangeLeastRecentlyUsedList@4
508WfpSetBucketsToEmptyLru@8
509WfpSetConfigureParametersDecodeHelper@12
510WfpSetDisconnectDecodeHelper@12
511WfpSetVpnTriggerFilePathsDecodeHelper@12
512WfpSetVpnTriggerSecurityDescriptorDecodeHelper@12
513WfpSetVpnTriggerSidsDecodeHelper@12
514WfpStartStreamShim@44
515WfpStopStreamShim@0
516WfpStreamEndpointCleanupBegin@4
517WfpStreamInspectDisconnect@8
518WfpStreamInspectReceive@28
519WfpStreamInspectRemoteDisconnect@8
520WfpStreamInspectSend@12
521WfpStreamIsFilterPresent@32
522WfpTransferReassemblyContextForFragments@8
523WfpTransferReassemblyContextUponCompletion@8
524WfpUninitializeLeastRecentlyUsedList@4
525WskCaptureProviderNPI@12
526WskDeregister@4
527WskQueryProviderCharacteristics@8
528WskRegister@8
529WskReleaseProviderNPI@4
530if_indextoname@8
531if_nametoindex@4
lib/libc/mingw/lib32/netjoin.def created+52
......@@ -0,0 +1,52 @@
1;
2; Definition file of netjoin.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "netjoin.dll"
7EXPORTS
8NetProvisionComputerAccount@32
9NetRequestOfflineDomainJoin@16
10NetSetuppCloseLog@0
11NetSetuppOpenLog@0
12NetpAvoidNetlogonSpnSet@4
13NetpChangeMachineName@24
14NetpCheckOfflineLsaPolicyUpdate@4
15NetpCompleteOfflineDomainJoin@8
16NetpControlServices@8
17NetpCrackNamesStatus2Win32Error@4
18NetpCreateComputerObjectInDs@40
19NetpDecodeProvisioningBlob@12
20NetpDecodeProvisioningData@12
21NetpDoDomainJoin@24
22NetpDoInitiateOfflineDomainJoin@16
23NetpDomainJoinLicensingCheck@0
24NetpDumpBlobToLog@8
25NetpDumpDcInfoToLog@8
26NetpDumpDnsDomainInfoToLog@8
27NetpEncodeProvisionData@24
28NetpEncodeProvisioningBlob@36
29NetpFreeLdapLsaDomainInfo@4
30NetpFreeODJBlob@4
31NetpGetJoinInformation@12
32NetpGetListOfJoinableOUs@20
33NetpGetLogIndentPrefixString@8
34NetpGetLsaPrimaryDomain@16
35NetpGetMachineAccountName@8
36NetpGetNewMachineName@4
37NetpInitAndPickleBlobWin7@36
38NetpIsSetupInProgress@0
39NetpLogPrintHelper@0
40NetpMachineValidToJoin@12
41NetpManageIPCConnect@16
42NetpManageMachineAccountWithSid@28
43NetpProvisionComputerAccount@56
44NetpQueryService@12
45NetpSeparateUserAndDomain@12
46NetpSetComputerAccountPassword@20
47NetpStopService@8
48NetpStoreInitialDcRecord@4
49NetpUnJoinDomain@16
50NetpUnpickleBlobWin7@12
51NetpUpgradePreNT5JoinInfo@0
52NetpValidateName@20
lib/libc/mingw/lib32/ntdll.def-4
......@@ -163,7 +163,6 @@ LdrLoadAlternateResourceModule@16
163163LdrLoadAlternateResourceModuleEx@20
164164LdrLoadDll@16
165165LdrLoadEnclaveModule@12
166LdrAlternateResourcesEnabled@0
167166LdrLockLoaderLock@12
168167LdrOpenImageFileOptionsKey@12
169168LdrParentInterlockedPopEntrySList@0
......@@ -957,7 +956,6 @@ RtlDeleteSecurityObject@4
957956RtlDeleteTimer@12
958957RtlDeleteTimerQueue@4
959958RtlDeleteTimerQueueEx@8
960RtlDeNormalizeProcessParams@4
961959RtlDeregisterSecureMemoryCacheCallback@4
962960RtlDeregisterWait@4
963961RtlDeregisterWaitEx@8
......@@ -1128,7 +1126,6 @@ RtlGetLengthWithoutTrailingPathSeperators@12
11281126RtlGetLocaleFileMappingAddress@12
11291127RtlGetLongestNtPathLength@0
11301128RtlGetMultiTimePrecise@12
1131RtlGetLongestNtPathLength@0
11321129RtlGetNativeSystemInformation@16
11331130RtlGetNextRange@12
11341131RtlGetNextEntryHashTable@8
......@@ -1167,7 +1164,6 @@ RtlGetUserInfoHeap@20
11671164RtlGetUserPreferredUILanguages@20
11681165RtlGetVersion@4
11691166RtlGuardCheckLongJumpTarget@12
1170RtlGUIDFromString@8
11711167RtlHashUnicodeString@16
11721168RtlHeapTrkInitialize@4
11731169RtlIdentifierAuthoritySid@4
lib/libc/mingw/lib32/ntmsapi.def created+82
......@@ -0,0 +1,82 @@
1;
2; Definition file of NTMSAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "NTMSAPI.dll"
7EXPORTS
8AccessNtmsLibraryDoor@12
9AddNtmsMediaType@12
10AllocateNtmsMedia@28
11BeginNtmsDeviceChangeDetection@8
12CancelNtmsLibraryRequest@8
13CancelNtmsOperatorRequest@8
14ChangeNtmsMediaType@12
15CleanNtmsDrive@8
16CloseNtmsNotification@4
17CloseNtmsSession@4
18CreateNtmsMediaA@16
19CreateNtmsMediaPoolA@24
20CreateNtmsMediaPoolW@24
21CreateNtmsMediaW@16
22DeallocateNtmsMedia@12
23DecommissionNtmsMedia@8
24DeleteNtmsDrive@8
25DeleteNtmsLibrary@8
26DeleteNtmsMedia@8
27DeleteNtmsMediaPool@8
28DeleteNtmsMediaType@12
29DeleteNtmsRequests@16
30DisableNtmsObject@12
31DismountNtmsDrive@8
32DismountNtmsMedia@16
33DoEjectFromSADriveW@24
34EjectDiskFromSADriveA@28
35EjectDiskFromSADriveW@28
36EjectNtmsCleaner@16
37EjectNtmsMedia@16
38EnableNtmsObject@12
39EndNtmsDeviceChangeDetection@8
40EnumerateNtmsObject@24
41ExportNtmsDatabase@4
42GetNtmsMediaPoolNameA@16
43GetNtmsMediaPoolNameW@16
44GetNtmsObjectAttributeA@24
45GetNtmsObjectAttributeW@24
46GetNtmsObjectInformationA@12
47GetNtmsObjectInformationW@12
48GetNtmsObjectSecurity@28
49GetNtmsRequestOrder@12
50GetNtmsUIOptionsA@20
51GetNtmsUIOptionsW@20
52GetVolumesFromDriveA@12
53GetVolumesFromDriveW@12
54IdentifyNtmsSlot@12
55ImportNtmsDatabase@4
56InjectNtmsCleaner@20
57InjectNtmsMedia@16
58InventoryNtmsLibrary@12
59MountNtmsMedia@32
60MoveToNtmsMediaPool@12
61OpenNtmsNotification@8
62OpenNtmsSessionA@12
63OpenNtmsSessionW@12
64ReleaseNtmsCleanerSlot@8
65ReserveNtmsCleanerSlot@12
66SatisfyNtmsOperatorRequest@8
67SetNtmsDeviceChangeDetection@20
68SetNtmsMediaComplete@8
69SetNtmsObjectAttributeA@24
70SetNtmsObjectAttributeW@24
71SetNtmsObjectInformationA@12
72SetNtmsObjectInformationW@12
73SetNtmsObjectSecurity@20
74SetNtmsRequestOrder@12
75SetNtmsUIOptionsA@20
76SetNtmsUIOptionsW@20
77SubmitNtmsOperatorRequestA@24
78SubmitNtmsOperatorRequestW@24
79SwapNtmsMedia@12
80UpdateNtmsOmidInfo@20
81WaitForNtmsNotification@12
82WaitForNtmsOperatorRequest@12
lib/libc/mingw/lib32/ntoskrnl.def created+2194
......@@ -0,0 +1,2194 @@
1;
2; Definition file of ntoskrnl.exe
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "ntoskrnl.exe"
7EXPORTS
8@ExAcquireFastMutexUnsafe@4
9@ExAcquireRundownProtection@4
10@ExAcquireRundownProtectionCacheAware@4
11@ExAcquireRundownProtectionCacheAwareEx@4
12@ExAcquireRundownProtectionEx@4
13@ExEnterCriticalRegionAndAcquireFastMutexUnsafe@4
14@ExInitializeRundownProtection@4
15@ExInterlockedAddLargeStatistic@8
16@ExInterlockedCompareExchange64@16
17@ExInterlockedFlushSList@4
18@ExInterlockedPopEntrySList@8
19@ExInterlockedPushEntrySList@12
20@ExReInitializeRundownProtection@4
21@ExReInitializeRundownProtectionCacheAware@4
22@ExReleaseFastMutexUnsafe@4
23@ExReleaseFastMutexUnsafeAndLeaveCriticalRegion@4
24@ExReleaseResourceAndLeaveCriticalRegion@4
25@ExReleaseResourceAndLeavePriorityRegion@4
26@ExReleaseResourceLite@4
27@ExReleaseRundownProtection@4
28@ExReleaseRundownProtectionCacheAware@4
29@ExReleaseRundownProtectionCacheAwareEx@8
30@ExReleaseRundownProtectionEx@8
31@ExRundownCompleted@4
32@ExRundownCompletedCacheAware@4
33@ExWaitForRundownProtectionRelease@4
34@ExWaitForRundownProtectionReleaseCacheAware@4
35@ExfAcquirePushLockExclusive@4
36@ExfAcquirePushLockShared@4
37@ExfInterlockedAddUlong@12
38@ExfInterlockedCompareExchange64@12
39@ExfInterlockedInsertHeadList@12
40@ExfInterlockedInsertTailList@12
41@ExfInterlockedPopEntryList@8
42@ExfInterlockedPushEntryList@12
43@ExfInterlockedRemoveHeadList@8
44@ExfReleasePushLock@8
45@ExfReleasePushLockExclusive@4
46@ExfReleasePushLockShared@4
47@ExfTryAcquirePushLockShared@4
48@ExfTryToWakePushLock@4
49@ExfUnblockPushLock@8
50@Exfi386InterlockedDecrementLong@4
51@Exfi386InterlockedExchangeUlong@8
52@Exfi386InterlockedIncrementLong@4
53@ExiAcquireFastMutex@4
54@ExiReleaseFastMutex@4
55@ExiTryToAcquireFastMutex@4
56@HalExamineMBR@16
57@InterlockedCompareExchange@12
58@InterlockedDecrement@4
59@InterlockedExchange@8
60@InterlockedExchangeAdd@8
61@InterlockedIncrement@4
62@InterlockedPopEntrySList@4
63@InterlockedPushEntrySList@8
64@IoGetPagingIoPriority@4
65@IoReadPartitionTable@16
66@IoSetPartitionInformation@16
67@IoWritePartitionTable@20
68@IofCallDriver@8
69@IofCompleteRequest@8
70@KeAcquireGuardedMutex@4
71@KeAcquireGuardedMutexUnsafe@4
72@KeAcquireInStackQueuedSpinLockAtDpcLevel@8
73@KeAcquireInStackQueuedSpinLockForDpc@8
74@KeAcquireSpinLockForDpc@8
75@KeInitializeGuardedMutex@4
76@KeInvalidateRangeAllCaches@8
77@KeReleaseGuardedMutex@4
78@KeReleaseGuardedMutexUnsafe@4
79@KeReleaseInStackQueuedSpinLockForDpc@4
80@KeReleaseInStackQueuedSpinLockFromDpcLevel@4
81@KeReleaseSpinLockForDpc@8
82@KeTestSpinLock@4
83@KeTryToAcquireGuardedMutex@4
84@KeTryToAcquireSpinLockAtDpcLevel@4
85;KeUpdateRunTime
86@KefAcquireSpinLockAtDpcLevel@4
87@KefReleaseSpinLockFromDpcLevel@4
88@KiAcquireSpinLock@8
89;KiCheckForSListAddress
90@KiReleaseSpinLock@4
91@ObfDereferenceObject@4
92;ObfDereferenceObjectWithTag
93@ObfReferenceObject@4
94;ObfReferenceObjectWithTag
95@RtlPrefetchMemoryNonTemporal@8
96@RtlUlongByteSwap@4
97@RtlUlonglongByteSwap@8
98@RtlUshortByteSwap@4
99;SeAuditingWithTokenForSubcategory
100;WmiGetClock
101;Kei386EoiHelper
102AlpcGetHeaderSize@4
103AlpcGetMessageAttribute@8
104AlpcInitializeMessageAttribute@16
105CcCanIWrite@16
106CcCoherencyFlushAndPurgeCache@20
107CcCopyRead@24
108CcCopyWrite@20
109CcCopyWriteWontFlush@12
110CcDeferWrite@24
111CcFastCopyRead@24
112CcFastCopyWrite@16
113CcFastMdlReadWait DATA
114CcFlushCache@16
115CcGetDirtyPages@16
116CcGetFileObjectFromBcb@4
117CcGetFileObjectFromSectionPtrs@4
118CcGetFileObjectFromSectionPtrsRef@4
119CcGetFlushedValidData@8
120CcGetLsnForFileObject@8
121CcInitializeCacheMap@20
122CcIsThereDirtyData@4
123CcIsThereDirtyDataEx@8
124CcMapData@24
125CcMdlRead@20
126CcMdlReadComplete@8
127CcMdlWriteAbort@8
128CcMdlWriteComplete@12
129CcPinMappedData@20
130CcPinRead@24
131CcPrepareMdlWrite@20
132CcPreparePinWrite@28
133CcPurgeCacheSection@16
134CcRemapBcb@4
135CcRepinBcb@4
136CcScheduleReadAhead@12
137CcSetAdditionalCacheAttributes@12
138CcSetBcbOwnerPointer@8
139CcSetDirtyPageThreshold@8
140CcSetDirtyPinnedData@8
141CcSetFileSizes@8
142CcSetFileSizesEx@8
143CcSetLogHandleForFile@12
144CcSetParallelFlushFile@8
145CcSetReadAheadGranularity@8
146CcTestControl@12
147CcUninitializeCacheMap@12
148CcUnpinData@4
149CcUnpinDataForThread@8
150CcUnpinRepinnedBcb@12
151CcWaitForCurrentLazyWriterActivity@0
152CcZeroData@16
153CmCallbackGetKeyObjectID@16
154CmGetBoundTransaction@8
155CmGetCallbackVersion@8
156CmKeyObjectType DATA
157CmRegisterCallback@12
158CmRegisterCallbackEx@24
159CmSetCallbackObjectContext@16
160CmUnRegisterCallback@8
161DbgBreakPoint@0
162DbgBreakPointWithStatus@4
163DbgCommandString@8
164DbgLoadImageSymbols@12
165DbgPrint
166DbgPrintEx
167DbgPrintReturnControlC
168DbgPrompt@12
169DbgQueryDebugFilterState@8
170DbgSetDebugFilterState@12
171DbgSetDebugPrintCallback@8
172DbgkLkmdRegisterCallback@12
173DbgkLkmdUnregisterCallback@4
174EmClientQueryRuleState@8
175EmClientRuleDeregisterNotification@4
176EmClientRuleEvaluate@16
177EmClientRuleRegisterNotification@16
178EmProviderDeregister@4
179EmProviderDeregisterEntry@4
180EmProviderRegister@24
181EmProviderRegisterEntry@16
182EmpProviderRegister@24
183EtwActivityIdControl@8
184EtwEnableTrace@44
185EtwEventEnabled@12
186EtwProviderEnabled@20
187EtwRegister@16
188EtwRegisterClassicProvider@20
189EtwSendTraceBuffer@24
190EtwUnregister@8
191EtwWrite@24
192EtwWriteEndScenario@24
193EtwWriteEx@40
194EtwWriteStartScenario@24
195EtwWriteString@28
196EtwWriteTransfer@28
197ExAcquireCacheAwarePushLockExclusive@4
198ExAcquireResourceExclusiveLite@8
199ExAcquireResourceSharedLite@8
200ExAcquireSharedStarveExclusive@8
201ExAcquireSharedWaitForExclusive@8
202ExAcquireSpinLockExclusive@4
203ExAcquireSpinLockExclusiveAtDpcLevel@4
204ExAcquireSpinLockShared@4
205ExAcquireSpinLockSharedAtDpcLevel@4
206ExAllocateCacheAwarePushLock@4
207ExAllocateCacheAwareRundownProtection@8
208ExAllocateFromPagedLookasideList@4
209ExAllocatePool@8
210ExAllocatePoolWithQuota@8
211ExAllocatePoolWithQuotaTag@12
212ExAllocatePoolWithTag@12
213ExAllocatePoolWithTagPriority@16
214ExConvertExclusiveToSharedLite@4
215ExCreateCallback@16
216ExDeleteLookasideListEx@4
217ExDeleteNPagedLookasideList@4
218ExDeletePagedLookasideList@4
219ExDeleteResourceLite@4
220ExDesktopObjectType DATA
221ExDisableResourceBoostLite@4
222ExEnterCriticalRegionAndAcquireResourceExclusive@4
223ExEnterCriticalRegionAndAcquireResourceShared@4
224ExEnterCriticalRegionAndAcquireSharedWaitForExclusive@4
225ExEnterPriorityRegionAndAcquireResourceExclusive@4
226ExEnterPriorityRegionAndAcquireResourceShared@4
227ExEnumHandleTable@16
228ExEventObjectType DATA
229ExExtendZone@12
230ExFetchLicenseData@12
231ExFlushLookasideListEx@4
232ExFreeCacheAwarePushLock@4
233ExFreeCacheAwareRundownProtection@4
234ExFreePool@4
235ExFreePoolWithTag@8
236ExFreeToPagedLookasideList@8
237ExGetCurrentProcessorCounts@12
238ExGetCurrentProcessorCpuUsage@4
239ExGetExclusiveWaiterCount@4
240ExGetLicenseTamperState@4
241ExGetPreviousMode@0
242ExGetSharedWaiterCount@4
243ExInitializeLookasideListEx@32
244ExInitializeNPagedLookasideList@28
245ExInitializePagedLookasideList@28
246ExInitializePushLock@4
247ExInitializeResourceLite@4
248ExInitializeRundownProtectionCacheAware@8
249ExInitializeZone@16
250ExInterlockedAddLargeInteger@16
251ExInterlockedAddUlong@12
252ExInterlockedDecrementLong@8
253ExInterlockedExchangeUlong@12
254ExInterlockedExtendZone@16
255@ExInterlockedIncrementLong@8
256ExInterlockedInsertHeadList@12
257ExInterlockedInsertTailList@12
258ExInterlockedPopEntryList@8
259ExInterlockedPushEntryList@12
260ExInterlockedRemoveHeadList@8
261ExIsProcessorFeaturePresent@4
262ExIsResourceAcquiredExclusiveLite@4
263ExIsResourceAcquiredSharedLite@4
264ExLocalTimeToSystemTime@8
265ExNotifyCallback@12
266ExQueryAttributeInformation@16
267ExQueryPoolBlockSize@8
268ExQueueWorkItem@8
269ExRaiseAccessViolation@0
270ExRaiseDatatypeMisalignment@0
271ExRaiseException@24
272ExRaiseHardError@24
273ExRaiseStatus@4
274ExRegisterAttributeInformationCallback@4
275ExRegisterCallback@12
276ExRegisterExtension@12
277ExReinitializeResourceLite@4
278ExReleaseCacheAwarePushLockExclusive@4
279ExReleaseResourceForThreadLite@8
280ExReleaseSpinLockExclusive@8
281ExReleaseSpinLockExclusiveFromDpcLevel@4
282ExReleaseSpinLockShared@8
283ExReleaseSpinLockSharedFromDpcLevel@4
284ExSemaphoreObjectType DATA
285ExSetLicenseTamperState@4
286ExSetResourceOwnerPointer@8
287ExSetResourceOwnerPointerEx@12
288ExSetTimerResolution@8
289ExSizeOfRundownProtectionCacheAware@0
290ExSystemExceptionFilter@0
291ExSystemTimeToLocalTime@8
292ExTryConvertSharedSpinLockExclusive@4
293ExUnregisterAttributeInformationCallback@4
294ExUnregisterCallback@4
295ExUnregisterExtension@4
296ExUpdateLicenseData@8
297ExUuidCreate@4
298ExVerifySuite@4
299ExWindowStationObjectType DATA
300Exi386InterlockedDecrementLong@4
301Exi386InterlockedExchangeUlong@8
302Exi386InterlockedIncrementLong@4
303FirstEntrySList@4
304FsRtlAcknowledgeEcp@4
305FsRtlAcquireFileExclusive@4
306FsRtlAddBaseMcbEntry@28
307FsRtlAddBaseMcbEntryEx@28
308FsRtlAddLargeMcbEntry@28
309FsRtlAddMcbEntry@16
310FsRtlAddToTunnelCache@32
311FsRtlAllocateExtraCreateParameter@24
312FsRtlAllocateExtraCreateParameterFromLookasideList@24
313FsRtlAllocateExtraCreateParameterList@8
314FsRtlAllocateFileLock@8
315FsRtlAllocatePool@8
316FsRtlAllocatePoolWithQuota@8
317FsRtlAllocatePoolWithQuotaTag@12
318FsRtlAllocatePoolWithTag@12
319FsRtlAllocateResource@0
320FsRtlAreNamesEqual@16
321FsRtlAreThereCurrentOrInProgressFileLocks@4
322FsRtlAreVolumeStartupApplicationsComplete@0
323FsRtlBalanceReads@4
324FsRtlCancellableWaitForMultipleObjects@24
325FsRtlCancellableWaitForSingleObject@12
326FsRtlChangeBackingFileObject@16
327FsRtlCheckLockForReadAccess@8
328FsRtlCheckLockForWriteAccess@8
329FsRtlCheckOplock@20
330FsRtlCheckOplockEx@24
331FsRtlCopyRead@32
332FsRtlCopyWrite@32
333FsRtlCreateSectionForDataScan@40
334FsRtlCurrentBatchOplock@4
335FsRtlCurrentOplock@4
336FsRtlCurrentOplockH@4
337FsRtlDeleteExtraCreateParameterLookasideList@8
338FsRtlDeleteKeyFromTunnelCache@12
339FsRtlDeleteTunnelCache@4
340FsRtlDeregisterUncProvider@4
341FsRtlDissectDbcs@16
342FsRtlDissectName@16
343FsRtlDoesDbcsContainWildCards@4
344FsRtlDoesNameContainWildCards@4
345FsRtlFastCheckLockForRead@24
346FsRtlFastCheckLockForWrite@24
347FsRtlFastUnlockAll@16
348FsRtlFastUnlockAllByKey@20
349FsRtlFastUnlockSingle@32
350FsRtlFindExtraCreateParameter@16
351FsRtlFindInTunnelCache@32
352FsRtlFreeExtraCreateParameter@4
353FsRtlFreeExtraCreateParameterList@4
354FsRtlFreeFileLock@4
355FsRtlGetEcpListFromIrp@8
356FsRtlGetFileSize@8
357FsRtlGetNextBaseMcbEntry@20
358FsRtlGetNextExtraCreateParameter@20
359FsRtlGetNextFileLock@8
360FsRtlGetNextLargeMcbEntry@20
361FsRtlGetNextMcbEntry@20
362FsRtlGetVirtualDiskNestingLevel@12
363FsRtlIncrementCcFastMdlReadWait@0
364FsRtlIncrementCcFastReadNoWait@0
365FsRtlIncrementCcFastReadNotPossible@0
366FsRtlIncrementCcFastReadResourceMiss@0
367FsRtlIncrementCcFastReadWait@0
368FsRtlInitExtraCreateParameterLookasideList@16
369FsRtlInitializeBaseMcb@8
370FsRtlInitializeBaseMcbEx@12
371FsRtlInitializeExtraCreateParameter@24
372FsRtlInitializeExtraCreateParameterList@4
373FsRtlInitializeFileLock@12
374FsRtlInitializeLargeMcb@8
375FsRtlInitializeMcb@8
376FsRtlInitializeOplock@4
377FsRtlInitializeTunnelCache@4
378FsRtlInsertExtraCreateParameter@8
379FsRtlInsertPerFileContext@8
380FsRtlInsertPerFileObjectContext@8
381FsRtlInsertPerStreamContext@8
382FsRtlIsDbcsInExpression@8
383FsRtlIsEcpAcknowledged@4
384FsRtlIsEcpFromUserMode@4
385FsRtlIsFatDbcsLegal@20
386FsRtlIsHpfsDbcsLegal@20
387FsRtlIsNameInExpression@16
388FsRtlIsNtstatusExpected@4
389FsRtlIsPagingFile@4
390FsRtlIsTotalDeviceFailure@4
391FsRtlLegalAnsiCharacterArray DATA
392FsRtlLogCcFlushError@20
393FsRtlLookupBaseMcbEntry@32
394FsRtlLookupLargeMcbEntry@32
395FsRtlLookupLastBaseMcbEntry@12
396FsRtlLookupLastBaseMcbEntryAndIndex@16
397FsRtlLookupLastLargeMcbEntry@12
398FsRtlLookupLastLargeMcbEntryAndIndex@16
399FsRtlLookupLastMcbEntry@12
400FsRtlLookupMcbEntry@20
401FsRtlLookupPerFileContext@12
402FsRtlLookupPerFileObjectContext@12
403FsRtlLookupPerStreamContextInternal@12
404FsRtlMdlRead@24
405FsRtlMdlReadComplete@8
406FsRtlMdlReadCompleteDev@12
407FsRtlMdlReadDev@28
408FsRtlMdlWriteComplete@12
409FsRtlMdlWriteCompleteDev@16
410FsRtlMupGetProviderIdFromName@8
411FsRtlMupGetProviderInfoFromFileObject@16
412FsRtlNormalizeNtstatus@8
413FsRtlNotifyChangeDirectory@28
414FsRtlNotifyCleanup@12
415FsRtlNotifyCleanupAll@8
416FsRtlNotifyFilterChangeDirectory@44
417FsRtlNotifyFilterReportChange@40
418FsRtlNotifyFullChangeDirectory@40
419FsRtlNotifyFullReportChange@36
420FsRtlNotifyInitializeSync@4
421FsRtlNotifyReportChange@20
422FsRtlNotifyUninitializeSync@4
423FsRtlNotifyVolumeEvent@8
424FsRtlNotifyVolumeEventEx@12
425FsRtlNumberOfRunsInBaseMcb@4
426FsRtlNumberOfRunsInLargeMcb@4
427FsRtlNumberOfRunsInMcb@4
428FsRtlOplockBreakH@24
429FsRtlOplockBreakToNone@24
430FsRtlOplockBreakToNoneEx@24
431FsRtlOplockFsctrl@12
432FsRtlOplockFsctrlEx@16
433FsRtlOplockIsFastIoPossible@4
434FsRtlOplockIsSharedRequest@4
435FsRtlOplockKeysEqual@8
436FsRtlPostPagingFileStackOverflow@12
437FsRtlPostStackOverflow@12
438FsRtlPrepareMdlWrite@24
439FsRtlPrepareMdlWriteDev@28
440FsRtlPrivateLock@48
441FsRtlProcessFileLock@12
442FsRtlQueryMaximumVirtualDiskNestingLevel@0
443FsRtlRegisterFileSystemFilterCallbacks@8
444FsRtlRegisterFltMgrCalls@4
445FsRtlRegisterMupCalls@4
446FsRtlRegisterUncProvider@12
447FsRtlRegisterUncProviderEx@16
448FsRtlReleaseFile@4
449FsRtlRemoveBaseMcbEntry@20
450FsRtlRemoveDotsFromPath@12
451FsRtlRemoveExtraCreateParameter@16
452FsRtlRemoveLargeMcbEntry@20
453FsRtlRemoveMcbEntry@12
454FsRtlRemovePerFileContext@12
455FsRtlRemovePerFileObjectContext@12
456FsRtlRemovePerStreamContext@12
457FsRtlResetBaseMcb@4
458FsRtlResetLargeMcb@8
459FsRtlSetEcpListIntoIrp@8
460FsRtlSplitBaseMcb@20
461FsRtlSplitLargeMcb@20
462FsRtlSyncVolumes@12
463FsRtlTeardownPerFileContexts@4
464FsRtlTeardownPerStreamContexts@4
465FsRtlTruncateBaseMcb@12
466FsRtlTruncateLargeMcb@12
467FsRtlTruncateMcb@8
468FsRtlUninitializeBaseMcb@4
469FsRtlUninitializeFileLock@4
470FsRtlUninitializeLargeMcb@4
471FsRtlUninitializeMcb@4
472FsRtlUninitializeOplock@4
473FsRtlValidateReparsePointBuffer@8
474HalDispatchTable DATA
475HalPrivateDispatchTable DATA
476HeadlessDispatch@20
477HvlQueryConnection@4
478InbvAcquireDisplayOwnership@0
479InbvCheckDisplayOwnership@0
480InbvDisplayString@4
481InbvEnableBootDriver@4
482InbvEnableDisplayString@4
483InbvInstallDisplayStringFilter@4
484InbvIsBootDriverInstalled@0
485InbvNotifyDisplayOwnershipLost@4
486InbvResetDisplay@0
487InbvSetScrollRegion@16
488InbvSetTextColor@4
489InbvSolidColorFill@20
490InitSafeBootMode DATA
491IoAcquireCancelSpinLock@4
492IoAcquireRemoveLockEx@20
493IoAcquireVpbSpinLock@4
494IoAdapterObjectType DATA
495IoAdjustStackSizeForRedirection@12
496IoAllocateAdapterChannel@20
497IoAllocateController@16
498IoAllocateDriverObjectExtension@16
499IoAllocateErrorLogEntry@8
500IoAllocateIrp@8
501IoAllocateMdl@20
502IoAllocateMiniCompletionPacket@8
503IoAllocateSfioStreamIdentifier@16
504IoAllocateWorkItem@4
505IoApplyPriorityInfoThread@12
506IoAssignResources@24
507IoAttachDevice@12
508IoAttachDeviceByPointer@8
509IoAttachDeviceToDeviceStack@8
510IoAttachDeviceToDeviceStackSafe@12
511IoBuildAsynchronousFsdRequest@24
512IoBuildDeviceIoControlRequest@36
513IoBuildPartialMdl@16
514IoBuildSynchronousFsdRequest@28
515IoCallDriver@8
516IoCancelFileOpen@8
517IoCancelIrp@4
518IoCheckDesiredAccess@8
519IoCheckEaBufferValidity@12
520IoCheckFunctionAccess@24
521IoCheckQuerySetFileInformation@12
522IoCheckQuerySetVolumeInformation@12
523IoCheckQuotaBufferValidity@12
524IoCheckShareAccess@20
525IoCheckShareAccessEx@24
526IoClearDependency@12
527IoClearIrpExtraCreateParameter@4
528IoCompleteRequest@8
529IoConnectInterrupt@44
530IoConnectInterruptEx@4
531IoCreateArcName@4
532IoCreateController@4
533IoCreateDevice@28
534IoCreateDisk@8
535IoCreateDriver@8
536IoCreateFile@56
537IoCreateFileEx@60
538IoCreateFileSpecifyDeviceObjectHint@60
539IoCreateNotificationEvent@8
540IoCreateStreamFileObject@8
541IoCreateStreamFileObjectEx@12
542IoCreateStreamFileObjectLite@8
543IoCreateSymbolicLink@8
544IoCreateSynchronizationEvent@8
545IoCreateUnprotectedSymbolicLink@8
546IoCsqInitialize@28
547IoCsqInitializeEx@28
548IoCsqInsertIrp@12
549IoCsqInsertIrpEx@16
550IoCsqRemoveIrp@8
551IoCsqRemoveNextIrp@8
552IoDeleteAllDependencyRelations@4
553IoDeleteController@4
554IoDeleteDevice@4
555IoDeleteDriver@4
556IoDeleteSymbolicLink@4
557IoDetachDevice@4
558IoDeviceHandlerObjectSize DATA
559IoDeviceHandlerObjectType DATA
560IoDeviceObjectType DATA
561IoDisconnectInterrupt@4
562IoDisconnectInterruptEx@4
563IoDriverObjectType DATA
564IoDuplicateDependency@12
565IoEnqueueIrp@4
566IoEnumerateDeviceObjectList@16
567IoEnumerateRegisteredFiltersList@12
568IoFastQueryNetworkAttributes@20
569IoFileObjectType DATA
570IoForwardAndCatchIrp@8
571IoForwardIrpSynchronously@8
572IoFreeController@4
573IoFreeErrorLogEntry@4
574IoFreeIrp@4
575IoFreeMdl@4
576IoFreeMiniCompletionPacket@4
577IoFreeSfioStreamIdentifier@8
578IoFreeWorkItem@4
579IoGetAffinityInterrupt@8
580IoGetAttachedDevice@4
581IoGetAttachedDeviceReference@4
582IoGetBaseFileSystemDeviceObject@4
583IoGetBootDiskInformation@8
584IoGetBootDiskInformationLite@4
585IoGetConfigurationInformation@0
586IoGetContainerInformation@16
587IoGetCurrentProcess@0
588IoGetDeviceAttachmentBaseRef@4
589IoGetDeviceInterfaceAlias@12
590IoGetDeviceInterfaces@16
591IoGetDeviceNumaNode@8
592IoGetDeviceObjectPointer@16
593IoGetDeviceProperty@20
594IoGetDevicePropertyData@32
595IoGetDeviceToVerify@4
596IoGetDiskDeviceObject@8
597IoGetDmaAdapter@12
598IoGetDriverObjectExtension@8
599IoGetFileObjectGenericMapping@0
600IoGetInitialStack@0
601IoGetIoPriorityHint@4
602IoGetIrpExtraCreateParameter@8
603IoGetLowerDeviceObject@4
604IoGetOplockKeyContext@4
605IoGetRelatedDeviceObject@4
606IoGetRequestorProcess@4
607IoGetRequestorProcessId@4
608IoGetRequestorSessionId@8
609IoGetSfioStreamIdentifier@8
610IoGetStackLimits@8
611IoGetSymlinkSupportInformation@8
612IoGetTopLevelIrp@0
613IoGetTransactionParameterBlock@4
614IoInitializeIrp@12
615IoInitializeRemoveLockEx@20
616IoInitializeTimer@12
617IoInitializeWorkItem@8
618IoInvalidateDeviceRelations@8
619IoInvalidateDeviceState@4
620IoIsFileObjectIgnoringSharing@4
621IoIsFileOriginRemote@4
622IoIsOperationSynchronous@4
623IoIsSystemThread@4
624IoIsValidNameGraftingBuffer@8
625IoIsWdmVersionAvailable@8
626IoMakeAssociatedIrp@8
627IoOpenDeviceInterfaceRegistryKey@12
628IoOpenDeviceRegistryKey@16
629IoPageRead@20
630IoQueryDeviceDescription@32
631IoQueryFileDosDeviceName@8
632IoQueryFileInformation@20
633IoQueryVolumeInformation@20
634IoQueueThreadIrp@4
635IoQueueWorkItem@16
636IoQueueWorkItemEx@16
637IoRaiseHardError@12
638IoRaiseInformationalHardError@12
639IoReadDiskSignature@12
640IoReadOperationCount DATA
641IoReadPartitionTableEx@8
642IoReadTransferCount DATA
643IoRegisterBootDriverReinitialization@12
644IoRegisterContainerNotification@20
645IoRegisterDeviceInterface@16
646IoRegisterDriverReinitialization@12
647IoRegisterFileSystem@4
648IoRegisterFsRegistrationChange@8
649IoRegisterFsRegistrationChangeMountAware@12
650IoRegisterLastChanceShutdownNotification@4
651IoRegisterPlugPlayNotification@28
652IoRegisterPriorityCallback@8
653IoRegisterShutdownNotification@4
654IoReleaseCancelSpinLock@4
655IoReleaseRemoveLockAndWaitEx@12
656IoReleaseRemoveLockEx@12
657IoReleaseVpbSpinLock@4
658IoRemoveShareAccess@8
659IoReplaceFileObjectName@12
660IoReplacePartitionUnit@12
661IoReportDetectedDevice@32
662IoReportHalResourceUsage@16
663IoReportResourceForDetection@28
664IoReportResourceUsage@36
665IoReportRootDevice@4
666IoReportTargetDeviceChange@8
667IoReportTargetDeviceChangeAsynchronous@16
668IoRequestDeviceEject@4
669IoRequestDeviceEjectEx@16
670IoRetrievePriorityInfo@16
671IoReuseIrp@8
672IoSetCompletionRoutineEx@28
673IoSetDependency@8
674IoSetDeviceInterfaceState@8
675IoSetDevicePropertyData@28
676IoSetDeviceToVerify@8
677IoSetFileObjectIgnoreSharing@4
678IoSetFileOrigin@8
679IoSetHardErrorOrVerifyDevice@8
680IoSetInformation@16
681IoSetIoCompletion@24
682IoSetIoCompletionEx@28
683IoSetIoPriorityHint@8
684IoSetIoPriorityHintIntoFileObject@8
685IoSetIoPriorityHintIntoThread@8
686IoSetIrpExtraCreateParameter@8
687IoSetOplockKeyContext@12
688IoSetPartitionInformationEx@12
689IoSetShareAccess@16
690IoSetShareAccessEx@20
691IoSetStartIoAttributes@12
692IoSetSystemPartition@4
693IoSetThreadHardErrorMode@4
694IoSetTopLevelIrp@4
695IoSizeofWorkItem@0
696IoStartNextPacket@8
697IoStartNextPacketByKey@12
698IoStartPacket@16
699IoStartTimer@4
700IoStatisticsLock DATA
701IoStopTimer@4
702IoSynchronousInvalidateDeviceRelations@8
703IoSynchronousPageWrite@20
704IoThreadToProcess@4
705IoTranslateBusAddress@24
706IoUninitializeWorkItem@4
707IoUnregisterContainerNotification@4
708IoUnregisterFileSystem@4
709IoUnregisterFsRegistrationChange@8
710IoUnregisterPlugPlayNotification@4
711IoUnregisterPlugPlayNotificationEx@4
712IoUnregisterPriorityCallback@4
713IoUnregisterShutdownNotification@4
714IoUpdateShareAccess@8
715IoValidateDeviceIoControlAccess@8
716IoVerifyPartitionTable@8
717IoVerifyVolume@8
718IoVolumeDeviceToDosName@8
719IoWMIAllocateInstanceIds@12
720IoWMIDeviceObjectToInstanceName@12
721IoWMIExecuteMethod@24
722IoWMIHandleToInstanceName@12
723IoWMIOpenBlock@12
724IoWMIQueryAllData@12
725IoWMIQueryAllDataMultiple@16
726IoWMIQuerySingleInstance@16
727IoWMIQuerySingleInstanceMultiple@20
728IoWMIRegistrationControl@8
729IoWMISetNotificationCallback@12
730IoWMISetSingleInstance@20
731IoWMISetSingleItem@24
732IoWMISuggestInstanceName@16
733IoWMIWriteEvent@4
734IoWithinStackLimits@8
735IoWriteErrorLogEntry@4
736IoWriteOperationCount DATA
737IoWritePartitionTableEx@8
738IoWriteTransferCount DATA
739KdChangeOption@24
740KdDebuggerEnabled DATA
741KdDebuggerNotPresent DATA
742KdDisableDebugger@0
743KdEnableDebugger@0
744KdEnteredDebugger DATA
745KdPollBreakIn@0
746KdPowerTransition@4
747KdRefreshDebuggerNotPresent@0
748KdSystemDebugControl@28
749Ke386CallBios@8
750Ke386IoSetAccessProcess@8
751Ke386QueryIoAccessMap@8
752Ke386SetIoAccessMap@8
753KeAcquireInterruptSpinLock@4
754KeAcquireSpinLockAtDpcLevel@4
755KeAddGroupAffinityEx@12
756KeAddProcessorAffinityEx@8
757KeAddProcessorGroupAffinity@8
758KeAddSystemServiceTable@20
759KeAlertThread@8
760KeAllocateCalloutStack@4
761KeAllocateCalloutStackEx@16
762KeAndAffinityEx@12
763KeAndGroupAffinityEx@12
764KeAreAllApcsDisabled@0
765KeAreApcsDisabled@0
766KeAttachProcess@4
767KeBugCheck@4
768KeBugCheckEx@20
769KeCancelTimer@4
770KeCapturePersistentThreadState@32
771KeCheckProcessorAffinityEx@8
772KeCheckProcessorGroupAffinity@8
773KeClearEvent@4
774KeComplementAffinityEx@8
775KeCopyAffinityEx@8
776KeCountSetBitsAffinityEx@4
777KeCountSetBitsGroupAffinity@4
778KeDelayExecutionThread@12
779KeDeregisterBugCheckCallback@4
780KeDeregisterBugCheckReasonCallback@4
781KeDeregisterNmiCallback@4
782KeDeregisterProcessorChangeCallback@4
783KeDetachProcess@0
784KeEnterCriticalRegion@0
785KeEnterGuardedRegion@0
786KeEnterKernelDebugger@0
787KeEnumerateNextProcessor@8
788KeExpandKernelStackAndCallout@12
789KeExpandKernelStackAndCalloutEx@20
790KeFindConfigurationEntry@16
791KeFindConfigurationNextEntry@20
792KeFindFirstSetLeftAffinityEx@4
793KeFindFirstSetLeftGroupAffinity@4
794KeFindFirstSetRightGroupAffinity@4
795KeFirstGroupAffinityEx@8
796KeFlushEntireTb@8
797KeFlushQueuedDpcs@0
798KeFreeCalloutStack@4
799KeGenericCallDpc@8
800KeGetCurrentNodeNumber@0
801KeGetCurrentProcessorNumberEx@4
802KeGetCurrentThread@0
803KeGetPreviousMode@0
804KeGetProcessorIndexFromNumber@4
805KeGetProcessorNumberFromIndex@8
806KeGetRecommendedSharedDataAlignment@0
807KeGetXSaveFeatureFlags@0
808KeI386AbiosCall@16
809KeI386AllocateGdtSelectors@8
810KeI386Call16BitCStyleFunction@0
811KeI386Call16BitFunction@0
812KeI386FlatToGdtSelector@12
813KeI386GetLid@20
814KeI386MachineType DATA
815KeI386ReleaseGdtSelectors@8
816KeI386ReleaseLid@8
817KeI386SetGdtSelector@8
818KeInitializeAffinityEx@4
819KeInitializeApc@32
820KeInitializeCrashDumpHeader@20
821KeInitializeDeviceQueue@4
822KeInitializeDpc@12
823KeInitializeEnumerationContext@8
824KeInitializeEnumerationContextFromGroup@8
825KeInitializeEvent@12
826KeInitializeInterrupt@52
827KeInitializeMutant@8
828KeInitializeMutex@8
829KeInitializeQueue@8
830KeInitializeSemaphore@12
831KeInitializeSpinLock@4
832KeInitializeThreadedDpc@12
833KeInitializeTimer@4
834KeInitializeTimerEx@8
835KeInsertByKeyDeviceQueue@12
836KeInsertDeviceQueue@8
837KeInsertHeadQueue@8
838KeInsertQueue@8
839KeInsertQueueApc@16
840KeInsertQueueDpc@12
841KeInterlockedClearProcessorAffinityEx@8
842KeInterlockedSetProcessorAffinityEx@8
843KeInvalidateAllCaches@0
844KeIpiGenericCall@8
845KeIsAttachedProcess@0
846KeIsEmptyAffinityEx@4
847KeIsEqualAffinityEx@8
848KeIsExecutingDpc@0
849KeIsSingleGroupAffinityEx@8
850KeIsSubsetAffinityEx@8
851KeIsWaitListEmpty@4
852KeLeaveCriticalRegion@0
853KeLeaveGuardedRegion@0
854KeLoaderBlock DATA
855KeNumberProcessors DATA
856KeOrAffinityEx@12
857KePollFreezeExecution@0
858KeProcessorGroupAffinity@8
859KeProfileInterrupt@8
860KeProfileInterruptWithSource@8
861KePulseEvent@12
862KeQueryActiveGroupCount@0
863KeQueryActiveProcessorAffinity@4
864KeQueryActiveProcessorCount@4
865KeQueryActiveProcessorCountEx@4
866KeQueryActiveProcessors@0
867KeQueryDpcWatchdogInformation@4
868KeQueryGroupAffinity@4
869KeQueryGroupAffinityEx@8
870KeQueryHardwareCounterConfiguration@12
871KeQueryHighestNodeNumber@0
872KeQueryInterruptTime@0
873KeQueryLogicalProcessorRelationship@16
874KeQueryMaximumGroupCount@0
875KeQueryMaximumProcessorCount@0
876KeQueryMaximumProcessorCountEx@4
877KeQueryNodeActiveAffinity@12
878KeQueryNodeMaximumProcessorCount@4
879KeQueryPriorityThread@4
880KeQueryRuntimeThread@8
881KeQuerySystemTime@4
882KeQueryTickCount@4
883KeQueryTimeIncrement@0
884KeQueryUnbiasedInterruptTime@0
885KeRaiseUserException@4
886KeReadStateEvent@4
887KeReadStateMutant@4
888KeReadStateMutex@4
889KeReadStateQueue@4
890KeReadStateSemaphore@4
891KeReadStateTimer@4
892KeRegisterBugCheckCallback@20
893KeRegisterBugCheckReasonCallback@16
894KeRegisterNmiCallback@8
895KeRegisterProcessorChangeCallback@12
896KeReleaseInterruptSpinLock@8
897KeReleaseMutant@16
898KeReleaseMutex@8
899KeReleaseSemaphore@16
900KeReleaseSpinLockFromDpcLevel@4
901KeRemoveByKeyDeviceQueue@8
902KeRemoveByKeyDeviceQueueIfBusy@8
903KeRemoveDeviceQueue@4
904KeRemoveEntryDeviceQueue@8
905KeRemoveGroupAffinityEx@12
906KeRemoveProcessorAffinityEx@8
907KeRemoveProcessorGroupAffinity@8
908KeRemoveQueue@12
909KeRemoveQueueDpc@4
910KeRemoveQueueEx@24
911KeRemoveSystemServiceTable@4
912KeResetEvent@4
913KeRestoreExtendedProcessorState@4
914KeRestoreFloatingPointState@4
915KeRevertToUserAffinityThread@0
916KeRevertToUserAffinityThreadEx@4
917KeRevertToUserGroupAffinityThread@4
918KeRundownQueue@4
919KeSaveExtendedProcessorState@12
920KeSaveFloatingPointState@4
921KeSaveStateForHibernate@0
922KeServiceDescriptorTable DATA
923KeSetActualBasePriorityThread@8
924KeSetAffinityThread@8
925KeSetBasePriorityThread@8
926KeSetCoalescableTimer@24
927KeSetDmaIoCoherency@4
928KeSetEvent@12
929KeSetEventBoostPriority@8
930KeSetHardwareCounterConfiguration@8
931KeSetIdealProcessorThread@8
932KeSetImportanceDpc@8
933KeSetKernelStackSwapEnable@4
934KeSetPriorityThread@8
935KeSetProfileIrql@4
936KeSetSystemAffinityThread@4
937KeSetSystemAffinityThreadEx@4
938KeSetSystemGroupAffinityThread@8
939KeSetTargetProcessorDpc@8
940KeSetTargetProcessorDpcEx@8
941KeSetTimeIncrement@8
942KeSetTimer@16
943KeSetTimerEx@20
944KeSignalCallDpcDone@4
945KeSignalCallDpcSynchronize@4
946KeStackAttachProcess@8
947KeStartDynamicProcessor@16
948KeSubtractAffinityEx@12
949KeSynchronizeExecution@12
950KeTestAlertThread@4
951KeTickCount DATA
952KeUnstackDetachProcess@4
953KeUpdateSystemTime@0
954KeUserModeCallback@20
955KeWaitForMultipleObjects@32
956KeWaitForMutexObject@20
957KeWaitForSingleObject@20
958KiBugCheckData DATA
959KiCheckForKernelApcDelivery@0
960KiCoprocessorError@0
961KiDeliverApc@12
962KiDispatchInterrupt@0
963KiIpiServiceRoutine@8
964;KiUnexpectedInterrupt ; Check!!! Couldn't determine function argument count. Function doesn't return.
965LdrAccessResource@16
966LdrEnumResources@20
967LdrFindResourceDirectory_U@16
968LdrFindResourceEx_U@20
969LdrFindResource_U@16
970LdrResFindResource@36
971LdrResFindResourceDirectory@28
972LdrResSearchResource@32
973LpcPortObjectType DATA
974LpcReplyWaitReplyPort@12
975LpcRequestPort@8
976LpcRequestWaitReplyPort@12
977LpcRequestWaitReplyPortEx@12
978LpcSendWaitReceivePort@28
979LsaCallAuthenticationPackage@28
980LsaDeregisterLogonProcess@4
981LsaFreeReturnBuffer@4
982LsaLogonUser@56
983LsaLookupAuthenticationPackage@12
984LsaRegisterLogonProcess@12
985Mm64BitPhysicalAddress DATA
986MmAddPhysicalMemory@8
987MmAddVerifierThunks@8
988MmAdjustWorkingSetSize@16
989MmAdvanceMdl@8
990MmAllocateContiguousMemory@12
991MmAllocateContiguousMemorySpecifyCache@32
992MmAllocateContiguousMemorySpecifyCacheNode@36
993MmAllocateMappingAddress@8
994MmAllocateNonCachedMemory@4
995MmAllocatePagesForMdl@28
996MmAllocatePagesForMdlEx@36
997MmBadPointer DATA
998MmBuildMdlForNonPagedPool@4
999MmCanFileBeTruncated@8
1000MmCommitSessionMappedView@8
1001MmCopyVirtualMemory@28
1002MmCreateMdl@12
1003MmCreateMirror@0
1004MmCreateSection@32
1005MmDisableModifiedWriteOfSection@4
1006MmDoesFileHaveUserWritableReferences@4
1007MmFlushImageSection@8
1008MmForceSectionClosed@8
1009MmFreeContiguousMemory@4
1010MmFreeContiguousMemorySpecifyCache@12
1011MmFreeMappingAddress@8
1012MmFreeNonCachedMemory@8
1013MmFreePagesFromMdl@4
1014MmGetPhysicalAddress@4
1015MmGetPhysicalMemoryRanges@0
1016MmGetSystemRoutineAddress@4
1017MmGetVirtualForPhysical@8
1018MmGrowKernelStack@4
1019MmHighestUserAddress DATA
1020MmIsAddressValid@4
1021MmIsDriverVerifying@4
1022MmIsDriverVerifyingByAddress@4
1023MmIsIoSpaceActive@12
1024MmIsNonPagedSystemAddressValid@4
1025MmIsRecursiveIoFault@0
1026MmIsThisAnNtAsSystem@0
1027MmIsVerifierEnabled@4
1028MmLockPagableDataSection@4
1029MmLockPagableImageSection@4
1030MmLockPagableSectionByHandle@4
1031MmMapIoSpace@16
1032MmMapLockedPages@8
1033MmMapLockedPagesSpecifyCache@24
1034MmMapLockedPagesWithReservedMapping@16
1035MmMapMemoryDumpMdl@4
1036MmMapUserAddressesToPage@12
1037MmMapVideoDisplay@16
1038MmMapViewInSessionSpace@12
1039MmMapViewInSystemSpace@12
1040MmMapViewOfSection@40
1041MmMarkPhysicalMemoryAsBad@8
1042MmMarkPhysicalMemoryAsGood@8
1043MmPageEntireDriver@4
1044MmPrefetchPages@8
1045MmProbeAndLockPages@12
1046MmProbeAndLockProcessPages@16
1047MmProbeAndLockSelectedPages@16
1048MmProtectMdlSystemAddress@8
1049MmQuerySystemSize@0
1050MmRemovePhysicalMemory@8
1051MmResetDriverPaging@4
1052MmRotatePhysicalView@24
1053MmSectionObjectType DATA
1054MmSecureVirtualMemory@12
1055MmSetAddressRangeModified@8
1056MmSetBankedSection@24
1057MmSizeOfMdl@8
1058MmSystemRangeStart DATA
1059MmTrimAllSystemPagableMemory@4
1060MmUnlockPagableImageSection@4
1061MmUnlockPages@4
1062MmUnmapIoSpace@8
1063MmUnmapLockedPages@8
1064MmUnmapReservedMapping@12
1065MmUnmapVideoDisplay@8
1066MmUnmapViewInSessionSpace@4
1067MmUnmapViewInSystemSpace@4
1068MmUnmapViewOfSection@8
1069MmUnsecureVirtualMemory@4
1070MmUserProbeAddress DATA
1071NlsAnsiCodePage DATA
1072NlsLeadByteInfo DATA
1073NlsMbCodePageTag DATA
1074NlsMbOemCodePageTag DATA
1075NlsOemCodePage DATA
1076NlsOemLeadByteInfo DATA
1077NtAddAtom@12
1078NtAdjustPrivilegesToken@24
1079NtAllocateLocallyUniqueId@4
1080NtAllocateUuids@16
1081NtAllocateVirtualMemory@24
1082NtBuildGUID@0
1083NtBuildLab@0
1084NtBuildNumber@0
1085NtClose@4
1086NtCommitComplete@8
1087NtCommitEnlistment@8
1088NtCommitTransaction@8
1089NtConnectPort@32
1090NtCreateEnlistment@32
1091NtCreateEvent@20
1092NtCreateFile@44
1093NtCreateResourceManager@28
1094NtCreateSection@28
1095NtCreateTransaction@40
1096NtCreateTransactionManager@24
1097NtDeleteAtom@4
1098NtDeleteFile@4
1099NtDeviceIoControlFile@40
1100NtDuplicateObject@28
1101NtDuplicateToken@24
1102NtEnumerateTransactionObject@20
1103NtFindAtom@12
1104NtFreeVirtualMemory@16
1105NtFreezeTransactions@8
1106NtFsControlFile@40
1107NtGetEnvironmentVariableEx@20
1108NtGetNotificationResourceManager@28
1109NtGlobalFlag DATA
1110NtLockFile@40
1111NtMakePermanentObject@4
1112NtMapViewOfSection@40
1113NtNotifyChangeDirectoryFile@36
1114NtOpenEnlistment@20
1115NtOpenFile@24
1116NtOpenProcess@16
1117NtOpenProcessToken@12
1118NtOpenProcessTokenEx@16
1119NtOpenResourceManager@20
1120NtOpenThread@16
1121NtOpenThreadToken@16
1122NtOpenThreadTokenEx@20
1123NtOpenTransaction@20
1124NtOpenTransactionManager@24
1125NtPrePrepareComplete@8
1126NtPrePrepareEnlistment@8
1127NtPrepareComplete@8
1128NtPrepareEnlistment@8
1129NtPropagationComplete@16
1130NtPropagationFailed@12
1131NtQueryDirectoryFile@44
1132NtQueryEaFile@36
1133NtQueryEnvironmentVariableInfoEx@16
1134NtQueryInformationAtom@20
1135NtQueryInformationEnlistment@20
1136NtQueryInformationFile@20
1137NtQueryInformationProcess@20
1138NtQueryInformationResourceManager@20
1139NtQueryInformationThread@20
1140NtQueryInformationToken@20
1141NtQueryInformationTransaction@20
1142NtQueryInformationTransactionManager@20
1143NtQueryQuotaInformationFile@36
1144NtQuerySecurityAttributesToken@24
1145NtQuerySecurityObject@20
1146NtQuerySystemInformation@16
1147NtQuerySystemInformationEx@24
1148NtQueryVolumeInformationFile@20
1149NtReadFile@36
1150NtReadOnlyEnlistment@8
1151NtRecoverEnlistment@8
1152NtRecoverResourceManager@4
1153NtRecoverTransactionManager@4
1154NtRequestPort@8
1155NtRequestWaitReplyPort@12
1156NtRollbackComplete@8
1157NtRollbackEnlistment@8
1158NtRollbackTransaction@8
1159NtSetEaFile@16
1160NtSetEvent@8
1161NtSetInformationEnlistment@16
1162NtSetInformationFile@20
1163NtSetInformationProcess@16
1164NtSetInformationResourceManager@16
1165NtSetInformationThread@16
1166NtSetInformationToken@16
1167NtSetInformationTransaction@16
1168NtSetQuotaInformationFile@16
1169NtSetSecurityObject@12
1170NtSetVolumeInformationFile@20
1171NtShutdownSystem@4
1172NtThawTransactions@0
1173NtTraceControl@24
1174NtTraceEvent@16
1175NtUnlockFile@20
1176NtVdmControl@8
1177NtWaitForSingleObject@12
1178NtWriteFile@36
1179ObAssignSecurity@16
1180ObCheckCreateObjectAccess@28
1181ObCheckObjectAccess@20
1182ObCloseHandle@8
1183ObCreateObject@36
1184ObCreateObjectType@16
1185ObDeleteCapturedInsertInfo@4
1186ObDereferenceObject@4
1187ObDereferenceObjectDeferDelete@4
1188ObDereferenceObjectDeferDeleteWithTag@8
1189ObDereferenceSecurityDescriptor@8
1190ObFindHandleForObject@20
1191ObGetFilterVersion@0
1192ObGetObjectSecurity@12
1193ObGetObjectType@4
1194ObInsertObject@24
1195ObIsDosDeviceLocallyMapped@8
1196ObIsKernelHandle@4
1197ObLogSecurityDescriptor@12
1198ObMakeTemporaryObject@4
1199ObOpenObjectByName@28
1200ObOpenObjectByPointer@28
1201ObOpenObjectByPointerWithTag@32
1202ObQueryNameInfo@4
1203ObQueryNameString@16
1204ObQueryObjectAuditingByHandle@8
1205ObReferenceObjectByHandle@24
1206ObReferenceObjectByHandleWithTag@28
1207ObReferenceObjectByName@32
1208ObReferenceObjectByPointer@16
1209ObReferenceObjectByPointerWithTag@20
1210ObReferenceSecurityDescriptor@8
1211ObRegisterCallbacks@8
1212ObReleaseObjectSecurity@8
1213ObSetHandleAttributes@12
1214ObSetSecurityDescriptorInfo@24
1215ObSetSecurityObjectByPointer@12
1216ObUnRegisterCallbacks@4
1217POGOBuffer DATA
1218PcwAddInstance@20
1219PcwCloseInstance@4
1220PcwCreateInstance@20
1221PcwRegister@8
1222PcwUnregister@4
1223PfFileInfoNotify@4
1224PfxFindPrefix@8
1225PfxInitialize@4
1226PfxInsertPrefix@12
1227PfxRemovePrefix@8
1228PoCallDriver@8
1229PoCancelDeviceNotify@4
1230PoClearPowerRequest@8
1231PoCreatePowerRequest@12
1232PoDeletePowerRequest@4
1233PoDisableSleepStates@12
1234PoEndDeviceBusy@4
1235PoGetSystemWake@4
1236PoQueryWatchdogTime@8
1237PoQueueShutdownWorkItem@4
1238PoReenableSleepStates@4
1239PoRegisterDeviceForIdleDetection@16
1240PoRegisterDeviceNotify@24
1241PoRegisterPowerSettingCallback@20
1242PoRegisterSystemState@8
1243PoRequestPowerIrp@24
1244PoRequestShutdownEvent@4
1245PoSetDeviceBusyEx@4
1246PoSetFixedWakeSource@4
1247PoSetHiberRange@20
1248PoSetPowerRequest@8
1249PoSetPowerState@12
1250PoSetSystemState@4
1251PoSetSystemWake@4
1252PoShutdownBugCheck@4
1253PoStartDeviceBusy@4
1254PoStartNextPowerIrp@4
1255PoUnregisterPowerSettingCallback@4
1256PoUnregisterSystemState@4
1257PoUserShutdownInitiated@0
1258ProbeForRead@12
1259ProbeForWrite@12
1260PsCreateSystemProcess@12
1261PsAcquireProcessExitSynchronization@4
1262PsAssignImpersonationToken@8
1263PsChargePoolQuota@12
1264PsChargeProcessCpuCycles@12
1265PsChargeProcessNonPagedPoolQuota@8
1266PsChargeProcessPagedPoolQuota@8
1267PsChargeProcessPoolQuota@12
1268PsCreateSystemThread@28
1269PsDereferenceImpersonationToken@4
1270PsDereferencePrimaryToken@4
1271PsDisableImpersonation@8
1272PsEnterPriorityRegion@0
1273PsEstablishWin32Callouts@4
1274PsGetContextThread@12
1275PsGetCurrentProcess@0
1276PsGetCurrentProcessId@0
1277PsGetCurrentProcessSessionId@0
1278PsGetCurrentProcessWin32Process@0
1279PsGetCurrentThread@0
1280PsGetCurrentThreadId@0
1281PsGetCurrentThreadPreviousMode@0
1282PsGetCurrentThreadProcess@0
1283PsGetCurrentThreadProcessId@0
1284PsGetCurrentThreadStackBase@0
1285PsGetCurrentThreadStackLimit@0
1286PsGetCurrentThreadTeb@0
1287PsGetCurrentThreadWin32Thread@0
1288PsGetCurrentThreadWin32ThreadAndEnterCriticalRegion@4
1289PsGetJobLock@4
1290PsGetJobSessionId@4
1291PsGetJobUIRestrictionsClass@4
1292PsGetProcessCreateTimeQuadPart@4
1293PsGetProcessDebugPort@4
1294PsGetProcessExitProcessCalled@4
1295PsGetProcessExitStatus@4
1296PsGetProcessExitTime@0
1297PsGetProcessId@4
1298PsGetProcessImageFileName@4
1299PsGetProcessInheritedFromUniqueProcessId@4
1300PsGetProcessJob@4
1301PsGetProcessPeb@4
1302PsGetProcessPriorityClass@4
1303PsGetProcessSectionBaseAddress@4
1304PsGetProcessSecurityPort@4
1305PsGetProcessSessionId@4
1306PsGetProcessSessionIdEx@4
1307PsGetProcessWin32Process@4
1308PsGetProcessWin32WindowStation@4
1309PsGetThreadFreezeCount@4
1310PsGetThreadHardErrorsAreDisabled@4
1311PsGetThreadId@4
1312PsGetThreadProcess@4
1313PsGetThreadProcessId@4
1314PsGetThreadSessionId@4
1315PsGetThreadTeb@4
1316PsGetThreadWin32Thread@4
1317PsGetVersion@16
1318PsImpersonateClient@20
1319PsInitialSystemProcess DATA
1320PsIsCurrentThreadPrefetching@0
1321PsIsProcessBeingDebugged@4
1322PsIsProtectedProcess@4
1323PsIsSystemProcess@4
1324PsIsSystemThread@4
1325PsIsThreadImpersonating@4
1326PsIsThreadTerminating@4
1327PsJobType DATA
1328PsLeavePriorityRegion@0
1329PsLookupProcessByProcessId@8
1330PsLookupProcessThreadByCid@12
1331PsLookupThreadByThreadId@8
1332PsProcessType DATA
1333PsQueryProcessExceptionFlags@12
1334PsReferenceImpersonationToken@16
1335PsReferencePrimaryToken@4
1336PsReferenceProcessFilePointer@8
1337PsReleaseProcessExitSynchronization@4
1338PsRemoveCreateThreadNotifyRoutine@4
1339PsRemoveLoadImageNotifyRoutine@4
1340PsRestoreImpersonation@8
1341PsResumeProcess@4
1342PsReturnPoolQuota@12
1343PsReturnProcessNonPagedPoolQuota@8
1344PsReturnProcessPagedPoolQuota@8
1345PsRevertThreadToSelf@4
1346PsRevertToSelf@0
1347PsSetContextThread@12
1348PsSetCreateProcessNotifyRoutine@8
1349PsSetCreateProcessNotifyRoutineEx@8
1350PsSetCreateThreadNotifyRoutine@4
1351PsSetCurrentThreadPrefetching@4
1352PsSetJobUIRestrictionsClass@8
1353PsSetLegoNotifyRoutine@4
1354PsSetLoadImageNotifyRoutine@4
1355PsSetProcessPriorityByClass@8
1356PsSetProcessPriorityClass@8
1357PsSetProcessSecurityPort@8
1358PsSetProcessWin32Process@12
1359PsSetProcessWindowStation@8
1360PsSetThreadHardErrorsAreDisabled@8
1361PsSetThreadWin32Thread@12
1362PsSuspendProcess@4
1363PsTerminateSystemThread@4
1364PsThreadType DATA
1365PsUILanguageComitted DATA
1366PsWrapApcWow64Thread@8
1367READ_REGISTER_BUFFER_UCHAR@12
1368READ_REGISTER_BUFFER_ULONG@12
1369READ_REGISTER_BUFFER_USHORT@12
1370READ_REGISTER_UCHAR@4
1371READ_REGISTER_ULONG@4
1372READ_REGISTER_USHORT@4
1373RtlAbsoluteToSelfRelativeSD@12
1374RtlAddAccessAllowedAce@16
1375RtlAddAccessAllowedAceEx@20
1376RtlAddAce@20
1377RtlAddAtomToAtomTable@12
1378RtlAddRange@36
1379RtlAllocateHeap@12
1380RtlAnsiCharToUnicodeChar@4
1381RtlAnsiStringToUnicodeSize@4
1382RtlAnsiStringToUnicodeString@12
1383RtlAppendAsciizToString@8
1384RtlAppendStringToString@8
1385RtlAppendUnicodeStringToString@8
1386RtlAppendUnicodeToString@8
1387RtlAreAllAccessesGranted@8
1388RtlAreAnyAccessesGranted@8
1389RtlAreBitsClear@12
1390RtlAreBitsSet@12
1391RtlAssert@16
1392RtlCaptureContext@4
1393RtlCaptureStackBackTrace@16
1394RtlCharToInteger@12
1395RtlCheckRegistryKey@8
1396RtlClearAllBits@4
1397RtlClearBit@8
1398RtlClearBits@12
1399RtlCmDecodeMemIoResource@8
1400RtlCmEncodeMemIoResource@24
1401RtlCompareAltitudes@8
1402RtlCompareMemory@12
1403RtlCompareMemoryUlong@12
1404RtlCompareString@12
1405RtlCompareUnicodeString@12
1406RtlCompareUnicodeStrings@20
1407RtlCompressBuffer@32
1408RtlCompressChunks@28
1409RtlComputeCrc32@12
1410RtlContractHashTable@4
1411RtlConvertLongToLargeInteger@4
1412RtlConvertSidToUnicodeString@12
1413RtlConvertUlongToLargeInteger@4
1414RtlCopyLuid@8
1415RtlCopyLuidAndAttributesArray@12
1416RtlCopyRangeList@8
1417RtlCopySid@12
1418RtlCopySidAndAttributesArray@28
1419RtlCopyString@8
1420RtlCopyUnicodeString@8
1421RtlCreateAcl@12
1422RtlCreateAtomTable@8
1423RtlCreateHashTable@12
1424RtlCreateHeap@24
1425RtlCreateRegistryKey@8
1426RtlCreateSecurityDescriptor@8
1427RtlCreateSystemVolumeInformationFolder@4
1428RtlCreateUnicodeString@8
1429RtlCustomCPToUnicodeN@24
1430RtlDecompressBuffer@24
1431RtlDecompressChunks@28
1432RtlDecompressFragment@32
1433RtlDelete@4
1434RtlDeleteAce@8
1435RtlDeleteAtomFromAtomTable@8
1436RtlDeleteElementGenericTable@8
1437RtlDeleteElementGenericTableAvl@8
1438RtlDeleteHashTable@4
1439RtlDeleteNoSplay@8
1440RtlDeleteOwnersRanges@8
1441RtlDeleteRange@24
1442RtlDeleteRegistryValue@12
1443RtlDescribeChunk@20
1444RtlDestroyAtomTable@4
1445RtlDestroyHeap@4
1446RtlDowncaseUnicodeChar@4
1447RtlDowncaseUnicodeString@12
1448RtlDuplicateUnicodeString@12
1449RtlEmptyAtomTable@8
1450RtlEndEnumerationHashTable@8
1451RtlEndWeakEnumerationHashTable@8
1452RtlEnlargedIntegerMultiply@8
1453RtlEnlargedUnsignedDivide@16
1454RtlEnlargedUnsignedMultiply@8
1455RtlEnumerateEntryHashTable@8
1456RtlEnumerateGenericTable@8
1457RtlEnumerateGenericTableAvl@8
1458RtlEnumerateGenericTableLikeADirectory@28
1459RtlEnumerateGenericTableWithoutSplaying@8
1460RtlEnumerateGenericTableWithoutSplayingAvl@8
1461RtlEqualLuid@8
1462RtlEqualSid@8
1463RtlEqualString@12
1464RtlEqualUnicodeString@12
1465RtlEthernetAddressToStringA@8
1466RtlEthernetAddressToStringW@8
1467RtlEthernetStringToAddressA@12
1468RtlEthernetStringToAddressW@12
1469RtlExpandHashTable@4
1470RtlExtendedIntegerMultiply@12
1471RtlExtendedLargeIntegerDivide@16
1472RtlExtendedMagicDivide@20
1473RtlFillMemory@12
1474RtlFillMemoryUlong@12
1475RtlFillMemoryUlonglong@16
1476RtlFindAceByType@12
1477RtlFindClearBits@12
1478RtlFindClearBitsAndSet@12
1479RtlFindClearRuns@16
1480RtlFindClosestEncodableLength@12
1481RtlFindFirstRunClear@8
1482RtlFindLastBackwardRunClear@12
1483RtlFindLeastSignificantBit@8
1484RtlFindLongestRunClear@8
1485RtlFindMessage@20
1486RtlFindMostSignificantBit@8
1487RtlFindNextForwardRunClear@12
1488RtlFindRange@48
1489RtlFindSetBits@12
1490RtlFindSetBitsAndClear@12
1491RtlFindUnicodePrefix@12
1492RtlFormatCurrentUserKeyPath@4
1493RtlFormatMessage@36
1494RtlFreeAnsiString@4
1495RtlFreeHeap@12
1496RtlFreeOemString@4
1497RtlFreeRangeList@4
1498RtlFreeUnicodeString@4
1499RtlGUIDFromString@8
1500RtlGenerate8dot3Name@16
1501RtlGetAce@12
1502RtlGetCallersAddress@8
1503RtlGetCompressionWorkSpaceSize@12
1504RtlGetDaclSecurityDescriptor@16
1505RtlGetDefaultCodePage@8
1506RtlGetElementGenericTable@8
1507RtlGetElementGenericTableAvl@8
1508RtlGetEnabledExtendedFeatures@8
1509RtlGetFirstRange@12
1510RtlGetGroupSecurityDescriptor@12
1511RtlGetIntegerAtom@8
1512RtlGetLastRange@12
1513RtlGetNextEntryHashTable@8
1514RtlGetNextRange@12
1515RtlGetNtGlobalFlags@0
1516RtlGetOwnerSecurityDescriptor@12
1517RtlGetProductInfo@20
1518RtlGetSaclSecurityDescriptor@16
1519RtlGetSetBootStatusData@24
1520RtlGetThreadLangIdByIndex@16
1521RtlGetVersion@4
1522RtlHashUnicodeString@16
1523RtlIdnToAscii@20
1524RtlIdnToNameprepUnicode@20
1525RtlIdnToUnicode@20
1526RtlImageDirectoryEntryToData@16
1527RtlImageNtHeader@4
1528RtlInitAnsiString@8
1529RtlInitAnsiStringEx@8
1530RtlInitCodePageTable@8
1531RtlInitEnumerationHashTable@8
1532RtlInitString@8
1533RtlInitUnicodeString@8
1534RtlInitUnicodeStringEx@8
1535RtlInitWeakEnumerationHashTable@8
1536RtlInitializeBitMap@12
1537RtlInitializeGenericTable@20
1538RtlInitializeGenericTableAvl@20
1539RtlInitializeRangeList@4
1540RtlInitializeSid@12
1541RtlInitializeUnicodePrefix@4
1542RtlInsertElementGenericTable@16
1543RtlInsertElementGenericTableAvl@16
1544RtlInsertElementGenericTableFull@24
1545RtlInsertElementGenericTableFullAvl@24
1546RtlInsertEntryHashTable@16
1547RtlInsertUnicodePrefix@12
1548RtlInt64ToUnicodeString@16
1549RtlIntegerToChar@16
1550RtlIntegerToUnicode@16
1551RtlIntegerToUnicodeString@12
1552RtlInvertRangeList@8
1553RtlInvertRangeListEx@20
1554RtlIoDecodeMemIoResource@16
1555RtlIoEncodeMemIoResource@40
1556RtlIpv4AddressToStringA@8
1557RtlIpv4AddressToStringExA@16
1558RtlIpv4AddressToStringExW@16
1559RtlIpv4AddressToStringW@8
1560RtlIpv4StringToAddressA@16
1561RtlIpv4StringToAddressExA@16
1562RtlIpv4StringToAddressExW@16
1563RtlIpv4StringToAddressW@16
1564RtlIpv6AddressToStringA@8
1565RtlIpv6AddressToStringExA@20
1566RtlIpv6AddressToStringExW@20
1567RtlIpv6AddressToStringW@8
1568RtlIpv6StringToAddressA@12
1569RtlIpv6StringToAddressExA@16
1570RtlIpv6StringToAddressExW@16
1571RtlIpv6StringToAddressW@12
1572RtlIsGenericTableEmpty@4
1573RtlIsGenericTableEmptyAvl@4
1574RtlIsNameLegalDOS8Dot3@12
1575RtlIsNormalizedString@16
1576RtlIsNtDdiVersionAvailable@4
1577RtlIsRangeAvailable@40
1578RtlIsServicePackVersionInstalled@4
1579RtlIsValidOemCharacter@4
1580RtlLargeIntegerAdd@16
1581RtlLargeIntegerArithmeticShift@12
1582RtlLargeIntegerDivide@20
1583RtlLargeIntegerNegate@8
1584RtlLargeIntegerShiftLeft@12
1585RtlLargeIntegerShiftRight@12
1586RtlLargeIntegerSubtract@16
1587RtlLengthRequiredSid@4
1588RtlLengthSecurityDescriptor@4
1589RtlLengthSid@4
1590RtlLoadString@32
1591RtlLocalTimeToSystemTime@8
1592RtlLockBootStatusData@4
1593RtlLookupAtomInAtomTable@12
1594RtlLookupElementGenericTable@8
1595RtlLookupElementGenericTableAvl@8
1596RtlLookupElementGenericTableFull@16
1597RtlLookupElementGenericTableFullAvl@16
1598RtlLookupEntryHashTable@12
1599RtlLookupFirstMatchingElementGenericTableAvl@12
1600RtlMapGenericMask@8
1601RtlMapSecurityErrorToNtStatus@4
1602RtlMergeRangeLists@16
1603RtlMoveMemory@12
1604RtlMultiByteToUnicodeN@20
1605RtlMultiByteToUnicodeSize@12
1606RtlNextUnicodePrefix@8
1607RtlNormalizeString@20
1608RtlNtStatusToDosError@4
1609RtlNtStatusToDosErrorNoTeb@4
1610RtlNumberGenericTableElements@4
1611RtlNumberGenericTableElementsAvl@4
1612RtlNumberOfClearBits@4
1613RtlNumberOfSetBits@4
1614RtlNumberOfSetBitsUlongPtr@4
1615RtlOemStringToCountedUnicodeString@12
1616RtlOemStringToUnicodeSize@4
1617RtlOemStringToUnicodeString@12
1618RtlOemToUnicodeN@20
1619RtlOwnerAcesPresent@4
1620RtlPinAtomInAtomTable@8
1621RtlPrefixString@12
1622RtlPrefixUnicodeString@12
1623RtlQueryAtomInAtomTable@24
1624RtlQueryDynamicTimeZoneInformation@4
1625RtlQueryElevationFlags@4
1626RtlQueryModuleInformation@12
1627RtlQueryRegistryValues@20
1628RtlQueryTimeZoneInformation@4
1629RtlRaiseException@24
1630RtlRandom@4
1631RtlRandomEx@4
1632RtlRealPredecessor@4
1633RtlRealSuccessor@4
1634RtlRemoveEntryHashTable@12
1635RtlRemoveUnicodePrefix@8
1636RtlReplaceSidInSd@16
1637RtlReserveChunk@20
1638RtlRunOnceBeginInitialize@12
1639RtlRunOnceComplete@12
1640RtlRunOnceExecuteOnce@16
1641RtlRunOnceInitialize@4
1642RtlSecondsSince1970ToTime@8
1643RtlSecondsSince1980ToTime@8
1644RtlSelfRelativeToAbsoluteSD2@8
1645RtlSelfRelativeToAbsoluteSD@44
1646RtlSetAllBits@4
1647RtlSetBit@8
1648RtlSetBits@12
1649RtlSetDaclSecurityDescriptor@16
1650RtlSetDynamicTimeZoneInformation@4
1651RtlSetGroupSecurityDescriptor@12
1652RtlSetOwnerSecurityDescriptor@12
1653RtlSetSaclSecurityDescriptor@16
1654RtlSetTimeZoneInformation@4
1655RtlSidHashInitialize@12
1656RtlSidHashLookup@8
1657RtlSizeHeap@12
1658RtlSplay@4
1659RtlStringFromGUID@8
1660RtlSubAuthorityCountSid@4
1661RtlSubAuthoritySid@8
1662RtlSubtreePredecessor@4
1663RtlSubtreeSuccessor@4
1664RtlSystemTimeToLocalTime@8
1665RtlTestBit@8
1666RtlTimeFieldsToTime@8
1667RtlTimeToElapsedTimeFields@8
1668RtlTimeToSecondsSince1970@8
1669RtlTimeToSecondsSince1980@8
1670RtlTimeToTimeFields@8
1671RtlTraceDatabaseAdd@16
1672RtlTraceDatabaseCreate@20
1673RtlTraceDatabaseDestroy@4
1674RtlTraceDatabaseEnumerate@12
1675RtlTraceDatabaseFind@16
1676RtlTraceDatabaseLock@4
1677RtlTraceDatabaseUnlock@4
1678RtlTraceDatabaseValidate@4
1679RtlUTF8ToUnicodeN@20
1680RtlUnicodeStringToAnsiSize@4
1681RtlUnicodeStringToAnsiString@12
1682RtlUnicodeStringToCountedOemString@12
1683RtlUnicodeStringToInteger@12
1684RtlUnicodeStringToOemSize@4
1685RtlUnicodeStringToOemString@12
1686RtlUnicodeToCustomCPN@24
1687RtlUnicodeToMultiByteN@20
1688RtlUnicodeToMultiByteSize@12
1689RtlUnicodeToOemN@20
1690RtlUnicodeToUTF8N@20
1691RtlUnlockBootStatusData@4
1692RtlUnwind@16
1693RtlUpcaseUnicodeChar@4
1694RtlUpcaseUnicodeString@12
1695RtlUpcaseUnicodeStringToAnsiString@12
1696RtlUpcaseUnicodeStringToCountedOemString@12
1697RtlUpcaseUnicodeStringToOemString@12
1698RtlUpcaseUnicodeToCustomCPN@24
1699RtlUpcaseUnicodeToMultiByteN@20
1700RtlUpcaseUnicodeToOemN@20
1701RtlUpperChar@4
1702RtlUpperString@8
1703RtlValidRelativeSecurityDescriptor@12
1704RtlValidSecurityDescriptor@4
1705RtlValidSid@4
1706RtlValidateUnicodeString@8
1707RtlVerifyVersionInfo@16
1708RtlVolumeDeviceToDosName@8
1709RtlWalkFrameChain@12
1710RtlWeaklyEnumerateEntryHashTable@8
1711RtlWriteRegistryValue@24
1712RtlZeroHeap@8
1713RtlZeroMemory@8
1714RtlxAnsiStringToUnicodeSize@4
1715RtlxOemStringToUnicodeSize@4
1716RtlxUnicodeStringToAnsiSize@4
1717RtlxUnicodeStringToOemSize@4
1718SeAccessCheck@40
1719SeAccessCheckEx@24
1720SeAccessCheckFromState@40
1721SeAccessCheckWithHint@44
1722SeAppendPrivileges@8
1723SeAssignSecurity@28
1724SeAssignSecurityEx@36
1725SeAuditHardLinkCreation@12
1726SeAuditHardLinkCreationWithTransaction@16
1727SeAuditTransactionStateChange@12
1728SeAuditingAnyFileEventsWithContext@8
1729SeAuditingFileEvents@8
1730SeAuditingFileEventsWithContext@12
1731SeAuditingFileOrGlobalEvents@12
1732SeAuditingHardLinkEvents@8
1733SeAuditingHardLinkEventsWithContext@12
1734SeCaptureSecurityDescriptor@20
1735SeCaptureSubjectContext@4
1736SeCaptureSubjectContextEx@12
1737SeCloseObjectAuditAlarm@12
1738SeCloseObjectAuditAlarmForNonObObject@16
1739SeComputeAutoInheritByObjectType@12
1740SeCreateAccessState@16
1741SeCreateAccessStateEx@24
1742SeCreateClientSecurity@16
1743SeCreateClientSecurityFromSubjectContext@16
1744SeDeassignSecurity@4
1745SeDeleteAccessState@4
1746SeDeleteObjectAuditAlarm@8
1747SeDeleteObjectAuditAlarmWithTransaction@12
1748SeExamineSacl@24
1749SeExports DATA
1750SeFilterToken@24
1751SeFreePrivileges@4
1752SeGetLinkedToken@12
1753SeImpersonateClient@8
1754SeImpersonateClientEx@8
1755SeLocateProcessImageName@8
1756SeLockSubjectContext@4
1757SeMarkLogonSessionForTerminationNotification@4
1758SeOpenObjectAuditAlarm@36
1759SeOpenObjectAuditAlarmForNonObObject@44
1760SeOpenObjectAuditAlarmWithTransaction@40
1761SeOpenObjectForDeleteAuditAlarm@36
1762SeOpenObjectForDeleteAuditAlarmWithTransaction@40
1763SePrivilegeCheck@12
1764SePrivilegeObjectAuditAlarm@24
1765SePublicDefaultDacl DATA
1766SeQueryAuthenticationIdToken@8
1767SeQueryInformationToken@12
1768SeQuerySecurityAttributesToken@24
1769SeQuerySecurityDescriptorInfo@16
1770SeQuerySessionIdToken@8
1771SeRegisterLogonSessionTerminatedRoutine@4
1772SeReleaseSecurityDescriptor@12
1773SeReleaseSubjectContext@4
1774SeReportSecurityEvent@16
1775SeReportSecurityEventWithSubCategory@20
1776SeSetAccessStateGenericMapping@8
1777SeSetAuditParameter@16
1778SeSetSecurityAttributesToken@16
1779SeSetSecurityDescriptorInfo@24
1780SeSetSecurityDescriptorInfoEx@28
1781SeSinglePrivilegeCheck@12
1782SeSrpAccessCheck@24
1783SeSystemDefaultDacl DATA
1784SeTokenImpersonationLevel@4
1785SeTokenIsAdmin@4
1786SeTokenIsRestricted@4
1787SeTokenIsWriteRestricted@4
1788SeTokenObjectType DATA
1789SeTokenType@4
1790SeUnlockSubjectContext@4
1791SeUnregisterLogonSessionTerminatedRoutine@4
1792SeValidSecurityDescriptor@8
1793TmCancelPropagationRequest@4
1794TmCommitComplete@8
1795TmCommitEnlistment@8
1796TmCommitTransaction@8
1797TmCreateEnlistment@36
1798TmCurrentTransaction@4
1799TmDereferenceEnlistmentKey@8
1800TmEnableCallbacks@12
1801TmEndPropagationRequest@4
1802TmEnlistmentObjectType DATA
1803TmFreezeTransactions@12
1804TmGetTransactionId@8
1805TmInitSystem@0
1806TmInitSystemPhase2@0
1807TmInitializeResourceManager@20
1808TmInitializeTransaction@36
1809TmIsTransactionActive@4
1810TmPrePrepareComplete@8
1811TmPrePrepareEnlistment@8
1812TmPrepareComplete@8
1813TmPrepareEnlistment@8
1814TmPropagationComplete@16
1815TmPropagationFailed@12
1816TmReadOnlyEnlistment@8
1817TmRecoverEnlistment@8
1818TmRecoverResourceManager@4
1819TmRecoverTransactionManager@8
1820TmReferenceEnlistmentKey@8
1821TmRequestOutcomeEnlistment@8
1822TmResourceManagerObjectType DATA
1823TmRollbackComplete@8
1824TmRollbackEnlistment@8
1825TmRollbackTransaction@8
1826TmSetCurrentTransaction@4
1827TmThawTransactions@0
1828TmTransactionManagerObjectType DATA
1829TmTransactionObjectType DATA
1830TmpIsKTMCommitCoordinator@4
1831VerSetConditionMask@16
1832VfFailDeviceNode@0
1833VfFailDriver@0
1834VfFailSystemBIOS@0
1835VfIsVerificationEnabled@8
1836WRITE_REGISTER_BUFFER_UCHAR@12
1837WRITE_REGISTER_BUFFER_ULONG@12
1838WRITE_REGISTER_BUFFER_USHORT@12
1839WRITE_REGISTER_UCHAR@8
1840WRITE_REGISTER_ULONG@8
1841WRITE_REGISTER_USHORT@8
1842WheaAddErrorSource@8
1843WheaConfigureErrorSource@8
1844WheaGetErrorSource@4
1845WheaInitializeRecordHeader@4
1846WheaReportHwError@4
1847WmiQueryTraceInformation@20
1848WmiTraceMessage
1849WmiTraceMessageVa@24
1850XIPDispatch@12
1851ZwAccessCheckAndAuditAlarm@44
1852ZwAddBootEntry@8
1853ZwAddDriverEntry@8
1854ZwAdjustPrivilegesToken@24
1855ZwAlertThread@4
1856ZwAllocateLocallyUniqueId@4
1857ZwAllocateVirtualMemory@24
1858ZwAlpcAcceptConnectPort@36
1859ZwAlpcCancelMessage@12
1860ZwAlpcConnectPort@44
1861ZwAlpcCreatePort@12
1862ZwAlpcCreatePortSection@24
1863ZwAlpcCreateResourceReserve@16
1864ZwAlpcCreateSectionView@12
1865ZwAlpcCreateSecurityContext@12
1866ZwAlpcDeletePortSection@12
1867ZwAlpcDeleteResourceReserve@12
1868ZwAlpcDeleteSectionView@12
1869ZwAlpcDeleteSecurityContext@12
1870ZwAlpcDisconnectPort@8
1871ZwAlpcQueryInformation@20
1872ZwAlpcSendWaitReceivePort@32
1873ZwAlpcSetInformation@16
1874ZwAssignProcessToJobObject@8
1875ZwCancelIoFile@8
1876ZwCancelTimer@8
1877ZwClearEvent@4
1878ZwClose@4
1879ZwCloseObjectAuditAlarm@12
1880ZwCommitComplete@8
1881ZwCommitEnlistment@8
1882ZwCommitTransaction@8
1883ZwConnectPort@32
1884ZwCreateDirectoryObject@12
1885ZwCreateEnlistment@32
1886ZwCreateEvent@20
1887ZwCreateFile@44
1888ZwCreateIoCompletion@16
1889ZwCreateJobObject@12
1890ZwCreateKey@28
1891ZwCreateKeyTransacted@32
1892ZwCreateResourceManager@28
1893ZwCreateSection@28
1894ZwCreateSymbolicLinkObject@16
1895ZwCreateTimer@16
1896ZwCreateTransaction@40
1897ZwCreateTransactionManager@24
1898ZwDeleteBootEntry@4
1899ZwDeleteDriverEntry@4
1900ZwDeleteFile@4
1901ZwDeleteKey@4
1902ZwDeleteValueKey@8
1903ZwDeviceIoControlFile@40
1904ZwDisplayString@4
1905ZwDuplicateObject@28
1906ZwDuplicateToken@24
1907ZwEnumerateBootEntries@8
1908ZwEnumerateDriverEntries@8
1909ZwEnumerateKey@24
1910ZwEnumerateTransactionObject@20
1911ZwEnumerateValueKey@24
1912ZwFlushBuffersFile@8
1913ZwFlushInstructionCache@12
1914ZwFlushKey@4
1915ZwFlushVirtualMemory@16
1916ZwFreeVirtualMemory@16
1917ZwFsControlFile@40
1918ZwGetNotificationResourceManager@28
1919ZwImpersonateAnonymousToken@4
1920ZwInitiatePowerAction@16
1921ZwIsProcessInJob@8
1922ZwLoadDriver@4
1923ZwLoadKey@8
1924ZwLoadKeyEx@32
1925ZwLockFile@40
1926ZwLockProductActivationKeys@8
1927ZwMakeTemporaryObject@4
1928ZwMapViewOfSection@40
1929ZwModifyBootEntry@4
1930ZwModifyDriverEntry@4
1931ZwNotifyChangeKey@40
1932ZwNotifyChangeSession@32
1933ZwOpenDirectoryObject@12
1934ZwOpenEnlistment@20
1935ZwOpenEvent@12
1936ZwOpenFile@24
1937ZwOpenJobObject@12
1938ZwOpenKey@12
1939ZwOpenKeyEx@16
1940ZwOpenKeyTransacted@16
1941ZwOpenKeyTransactedEx@20
1942ZwOpenProcess@16
1943ZwOpenProcessToken@12
1944ZwOpenProcessTokenEx@16
1945ZwOpenResourceManager@20
1946ZwOpenSection@12
1947ZwOpenSession@12
1948ZwOpenSymbolicLinkObject@12
1949ZwOpenThread@16
1950ZwOpenThreadToken@16
1951ZwOpenThreadTokenEx@20
1952ZwOpenTimer@12
1953ZwOpenTransaction@20
1954ZwOpenTransactionManager@24
1955ZwPowerInformation@20
1956ZwPrePrepareComplete@8
1957ZwPrePrepareEnlistment@8
1958ZwPrepareComplete@8
1959ZwPrepareEnlistment@8
1960ZwPropagationComplete@16
1961ZwPropagationFailed@12
1962ZwPulseEvent@8
1963ZwQueryBootEntryOrder@8
1964ZwQueryBootOptions@8
1965ZwQueryDefaultLocale@8
1966ZwQueryDefaultUILanguage@4
1967ZwQueryDirectoryFile@44
1968ZwQueryDirectoryObject@28
1969ZwQueryDriverEntryOrder@8
1970ZwQueryEaFile@36
1971ZwQueryFullAttributesFile@8
1972ZwQueryInformationEnlistment@20
1973ZwQueryInformationFile@20
1974ZwQueryInformationJobObject@20
1975ZwQueryInformationProcess@20
1976ZwQueryInformationResourceManager@20
1977ZwQueryInformationThread@20
1978ZwQueryInformationToken@20
1979ZwQueryInformationTransaction@20
1980ZwQueryInformationTransactionManager@20
1981ZwQueryInstallUILanguage@4
1982ZwQueryKey@20
1983ZwQueryLicenseValue@20
1984ZwQueryObject@20
1985ZwQueryQuotaInformationFile@36
1986ZwQuerySection@20
1987ZwQuerySecurityAttributesToken@24
1988ZwQuerySecurityObject@20
1989ZwQuerySymbolicLinkObject@12
1990ZwQuerySystemInformation@16
1991ZwQueryValueKey@24
1992ZwQueryVirtualMemory@24
1993ZwQueryVolumeInformationFile@20
1994ZwReadFile@36
1995ZwReadOnlyEnlistment@8
1996ZwRecoverEnlistment@8
1997ZwRecoverResourceManager@4
1998ZwRecoverTransactionManager@4
1999ZwRemoveIoCompletion@20
2000ZwRemoveIoCompletionEx@24
2001ZwReplaceKey@12
2002ZwRequestPort@8
2003ZwRequestWaitReplyPort@12
2004ZwResetEvent@8
2005ZwRestoreKey@12
2006ZwRollbackComplete@8
2007ZwRollbackEnlistment@8
2008ZwRollbackTransaction@8
2009ZwSaveKey@8
2010ZwSaveKeyEx@12
2011ZwSecureConnectPort@36
2012ZwSetBootEntryOrder@8
2013ZwSetBootOptions@8
2014ZwSetDefaultLocale@8
2015ZwSetDefaultUILanguage@4
2016ZwSetDriverEntryOrder@8
2017ZwSetEaFile@16
2018ZwSetEvent@8
2019ZwSetInformationEnlistment@16
2020ZwSetInformationFile@20
2021ZwSetInformationJobObject@16
2022ZwSetInformationObject@16
2023ZwSetInformationProcess@16
2024ZwSetInformationResourceManager@16
2025ZwSetInformationThread@16
2026ZwSetInformationToken@16
2027ZwSetInformationTransaction@16
2028ZwSetQuotaInformationFile@16
2029ZwSetSecurityObject@12
2030ZwSetSystemInformation@12
2031ZwSetSystemTime@8
2032ZwSetTimer@28
2033ZwSetTimerEx@16
2034ZwSetValueKey@24
2035ZwSetVolumeInformationFile@20
2036ZwTerminateJobObject@8
2037ZwTerminateProcess@8
2038ZwTraceEvent@16
2039ZwTranslateFilePath@16
2040ZwUnloadDriver@4
2041ZwUnloadKey@4
2042ZwUnloadKeyEx@8
2043ZwUnlockFile@20
2044ZwUnmapViewOfSection@8
2045ZwWaitForMultipleObjects@20
2046ZwWaitForSingleObject@12
2047ZwWriteFile@36
2048ZwYieldExecution@0
2049_CIcos
2050_CIsin
2051_CIsqrt
2052_abnormal_termination
2053_alldiv@16
2054_alldvrm@16
2055_allmul@16
2056_alloca_probe
2057_alloca_probe_16
2058_alloca_probe_8
2059_allrem@16
2060_allshl
2061_allshr
2062_aulldiv@16
2063_aulldvrm@16
2064_aullrem@16
2065_aullshr
2066;_chkstk
2067_except_handler2
2068_except_handler3
2069_global_unwind2
2070_i64toa_s
2071_i64tow_s
2072_itoa
2073_itoa_s
2074_itow
2075_itow_s
2076_local_unwind2
2077_ltoa_s
2078_ltow_s
2079_makepath_s
2080_purecall
2081_snprintf
2082_snprintf_s
2083_snscanf_s
2084_snwprintf
2085_snwprintf_s
2086_snwscanf_s
2087_splitpath_s
2088_stricmp
2089_strlwr
2090strlwr == _strlwr
2091_strnicmp
2092_strnset
2093_strnset_s
2094_strrev
2095_strset
2096_strset_s
2097_strtoui64
2098_strupr
2099_swprintf
2100_ui64toa_s
2101_ui64tow_s
2102_ultoa_s
2103_ultow_s
2104_vsnprintf
2105_vsnprintf_s
2106_vsnwprintf
2107_vsnwprintf_s
2108_vswprintf
2109_wcsicmp
2110_wcslwr
2111wcslwr == _wcslwr
2112_wcsnicmp
2113_wcsnset
2114_wcsnset_s
2115_wcsrev
2116_wcsset_s
2117_wcsupr
2118_wmakepath_s
2119_wsplitpath_s
2120_wtoi
2121_wtol
2122atoi
2123atol
2124bsearch
2125isdigit
2126islower
2127isprint
2128isspace
2129isupper
2130isxdigit
2131mbstowcs
2132mbtowc
2133memchr
2134memcpy
2135memcpy_s
2136memmove
2137memmove_s
2138memset
2139psMUITest DATA
2140qsort
2141rand
2142sprintf
2143sprintf_s
2144srand
2145sscanf_s
2146strcat
2147strcat_s
2148strchr
2149strcmp
2150strcpy
2151strcpy_s
2152strlen
2153strncat
2154strncat_s
2155strncmp
2156strncpy
2157strncpy_s
2158strnlen
2159strrchr
2160strspn
2161strstr
2162strtok_s
2163swprintf
2164swprintf_s
2165swscanf_s
2166tolower
2167toupper
2168towlower
2169towupper
2170vDbgPrintEx@16
2171vDbgPrintExWithPrefix@20
2172vsprintf
2173vsprintf_s
2174vswprintf_s
2175wcscat
2176wcscat_s
2177wcschr
2178wcscmp
2179wcscpy
2180wcscpy_s
2181wcscspn
2182wcslen
2183wcsncat
2184wcsncat_s
2185wcsncmp
2186wcsncpy
2187wcsncpy_s
2188wcsnlen
2189wcsrchr
2190wcsspn
2191wcsstr
2192wcstombs
2193wcstoul
2194wctomb
lib/libc/mingw/lib32/ntquery.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of query.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "query.dll"
7EXPORTS
8LoadBinaryFilter@8
9LoadTextFilter@8
10BindIFilterFromStorage@12
11BindIFilterFromStream@12
12DllCanUnloadNow
13DllGetClassObject@12
14DllRegisterServer
15DllUnregisterServer
16LoadIFilter@12
17LoadIFilterEx@16
lib/libc/mingw/lib32/odbccp32.def created+54
......@@ -0,0 +1,54 @@
1LIBRARY ODBCCP32.dll
2EXPORTS
3SQLConfigDataSource@16
4SQLConfigDataSourceW@16
5SQLConfigDriver@28
6SQLConfigDriverW@28
7SQLCreateDataSource@8
8SQLCreateDataSourceW@8
9SQLGetAvailableDrivers@16
10SQLGetAvailableDriversW@16
11SQLGetConfigMode@4
12SQLGetInstalledDrivers@12
13SQLGetInstalledDriversW@12
14SQLGetPrivateProfileString@24
15SQLGetPrivateProfileStringW@24
16SQLGetTranslator@32
17SQLGetTranslatorW@32
18SQLInstallDriver@20
19SQLInstallDriverEx@28
20SQLInstallDriverExW@28
21SQLInstallDriverManager@12
22SQLInstallDriverManagerW@12
23SQLInstallDriverW@20
24SQLInstallODBC@16
25SQLInstallODBCW@16
26SQLInstallTranslator@32
27SQLInstallTranslatorEx@28
28SQLInstallTranslatorExW@28
29SQLInstallTranslatorW@32
30SQLInstallerError@20
31SQLInstallerErrorW@20
32SQLManageDataSources@4
33SQLPostInstallerError@8
34SQLPostInstallerErrorW@8
35SQLReadFileDSN@24
36SQLReadFileDSNW@24
37SQLRemoveDSNFromIni@4
38SQLRemoveDSNFromIniW@4
39SQLRemoveDefaultDataSource@0
40SQLRemoveDriver@12
41SQLRemoveDriverManager@4
42SQLRemoveDriverW@12
43SQLRemoveTranslator@8
44SQLRemoveTranslatorW@8
45SQLSetConfigMode@4
46SQLValidDSN@4
47SQLValidDSNW@4
48SQLWriteDSNToIni@8
49SQLWriteDSNToIniW@8
50SQLWriteFileDSN@16
51SQLWriteFileDSNW@16
52SQLWritePrivateProfileString@16
53SQLWritePrivateProfileStringW@16
54ODBC___GetSetupProc@4
\ No newline at end of file
lib/libc/mingw/lib32/ole32.def-2
......@@ -383,8 +383,6 @@ StgOpenStorageOnHandle@24
383383StgOpenStorageOnILockBytes@24
384384StgPropertyLengthAsVariant@16
385385StgSetTimes@16
386StgCreateStorageEx@32
387StgOpenStorageEx@32
388386StringFromCLSID@8
389387StringFromGUID2@12
390388StringFromIID@8
lib/libc/mingw/lib32/olecli32.def created+185
......@@ -0,0 +1,185 @@
1;
2; Definition file of OLECLI32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "OLECLI32.dll"
7EXPORTS
8WEP@4
9OleDelete@4
10OleSaveToStream@8
11OleLoadFromStream@24
12OleClone@20
13OleCopyFromLink@24
14OleEqual@8
15OleQueryLinkFromClip@12
16OleQueryCreateFromClip@12
17OleCreateLinkFromClip@28
18OleCreateFromClip@28
19OleCopyToClipboard@4
20OleQueryType@8
21OleSetHostNames@12
22OleSetTargetDevice@8
23OleSetBounds@8
24OleQueryBounds@8
25OleDraw@20
26OleQueryOpen@4
27OleActivate@24
28OleUpdate@4
29OleReconnect@4
30OleGetLinkUpdateOptions@8
31OleSetLinkUpdateOptions@8
32OleEnumFormats@8
33OleClose@4
34OleGetData@12
35OleSetData@12
36OleQueryProtocol@8
37OleQueryOutOfDate@4
38OleObjectConvert@24
39OleCreateFromTemplate@32
40OleCreate@32
41OleQueryReleaseStatus@4
42OleQueryReleaseError@4
43OleQueryReleaseMethod@4
44OleCreateFromFile@36
45OleCreateLinkFromFile@40
46OleRelease@4
47OleRegisterClientDoc@16
48OleRevokeClientDoc@4
49OleRenameClientDoc@8
50OleRevertClientDoc@4
51OleSavedClientDoc@4
52OleRename@8
53OleEnumObjects@8
54OleQueryName@12
55OleSetColorScheme@8
56OleRequestData@8
57OleLockServer@8
58OleUnlockServer@4
59OleQuerySize@8
60OleExecute@12
61OleCreateInvisible@36
62OleQueryClientVersion@0
63OleIsDcMeta@4
64DocWndProc@16
65SrvrWndProc@16
66MfCallbackFunc@20
67DefLoadFromStream@36
68DefCreateFromClip@32
69DefCreateLinkFromClip@28
70DefCreateFromTemplate@32
71DefCreate@32
72DefCreateFromFile@36
73DefCreateLinkFromFile@40
74DefCreateInvisible@36
75LeRelease@4
76LeShow@8
77LeGetData@12
78LeSetData@12
79LeSetHostNames@12
80LeSetTargetDevice@8
81LeSetBounds@8
82LeSaveToStream@8
83LeClone@20
84LeCopyFromLink@20
85LeEqual@8
86LeCopy@4
87LeQueryType@8
88LeQueryBounds@8
89LeDraw@20
90LeQueryOpen@4
91LeActivate@24
92LeUpdate@4
93LeReconnect@4
94LeEnumFormat@8
95LeQueryProtocol@8
96LeQueryOutOfDate@4
97LeObjectConvert@24
98LeChangeData@16
99LeClose@4
100LeGetUpdateOptions@8
101LeSetUpdateOptions@8
102LeExecute@12
103LeObjectLong@12
104LeCreateInvisible@32
105MfRelease@4
106MfGetData@12
107MfSaveToStream@8
108MfClone@20
109MfEqual@8
110MfCopy@4
111MfQueryBounds@8
112MfDraw@20
113MfEnumFormat@8
114MfChangeData@16
115BmRelease@4
116BmGetData@12
117BmSaveToStream@8
118BmClone@20
119BmEqual@8
120BmCopy@4
121BmQueryBounds@8
122BmDraw@20
123BmEnumFormat@8
124BmChangeData@16
125DibRelease@4
126DibGetData@12
127DibSaveToStream@8
128DibClone@20
129DibEqual@8
130DibCopy@4
131DibQueryBounds@8
132DibDraw@20
133DibEnumFormat@8
134DibChangeData@16
135GenRelease@4
136GenGetData@12
137GenSetData@12
138GenSaveToStream@8
139GenClone@20
140GenEqual@8
141GenCopy@4
142GenQueryBounds@8
143GenDraw@20
144GenEnumFormat@8
145GenChangeData@16
146ErrShow@8
147ErrSetData@12
148ErrSetHostNames@12
149ErrSetTargetDevice@8
150ErrSetBounds@8
151ErrCopyFromLink@20
152ErrQueryOpen@4
153ErrActivate@24
154ErrClose@4
155ErrUpdate@4
156ErrReconnect@4
157ErrQueryProtocol@8
158ErrQueryOutOfDate@4
159ErrObjectConvert@24
160ErrGetUpdateOptions@8
161ErrSetUpdateOptions@8
162ErrExecute@12
163ErrObjectLong@12
164PbLoadFromStream@36
165PbCreateFromClip@32
166PbCreateLinkFromClip@28
167PbCreateFromTemplate@32
168PbCreate@32
169PbDraw@20
170PbQueryBounds@8
171PbCopyToClipboard@4
172PbCreateFromFile@36
173PbCreateLinkFromFile@40
174PbEnumFormats@8
175PbGetData@12
176PbCreateInvisible@36
177ObjQueryName@12
178ObjRename@8
179ObjQueryType@8
180ObjQuerySize@8
181ConnectDlgProc@16
182SetNetName@4
183CheckNetDrive@8
184SetNextNetDrive@12
185GetTaskVisibleWindow@8
lib/libc/mingw/lib32/olepro32.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of OLEPRO32.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "OLEPRO32.DLL"
7EXPORTS
8OleIconToCursor@8
9OleCreatePropertyFrameIndirect@4
10OleCreatePropertyFrame@44
11OleLoadPicture@20
12OleCreatePictureIndirect@16
13OleCreateFontIndirect@12
14OleTranslateColor@12
15DllCanUnloadNow@0
16DllGetClassObject@12
17DllRegisterServer@0
18DllUnregisterServer@0
lib/libc/mingw/lib32/olesvr32.def created+30
......@@ -0,0 +1,30 @@
1;
2; Definition file of OLESVR32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "OLESVR32.dll"
7EXPORTS
8WEP@4
9OleRegisterServer@20
10OleRevokeServer@4
11OleBlockServer@4
12OleUnblockServer@8
13OleRegisterServerDoc@16
14OleRevokeServerDoc@4
15OleRenameServerDoc@8
16OleRevertServerDoc@4
17OleSavedServerDoc@4
18OleRevokeObject@4
19OleQueryServerVersion@0
20SrvrWndProc@16
21DocWndProc@16
22ItemWndProc@16
23SendDataMsg@12
24FindItemWnd@8
25ItemCallBack@12
26TerminateClients@12
27TerminateDocClients@12
28DeleteClientInfo@12
29SendRenameMsg@12
30EnumForTerminate@12
lib/libc/mingw/lib32/olethk32.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of OLETHK32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "OLETHK32.dll"
7EXPORTS
8InvokeOn32@12
9IntOpInitialize@12
10CallbackProcessing_3216@12
11IUnknownObj32@12
12CSm16ReleaseHandler_Release32@12
13ThkMgrInitialize@12
14ThkMgrUninitialize@12
15TransformHRESULT_1632@4
16TransformHRESULT_3216@4
17ConvertObjDescriptor@8
18ConvertHr1632Thunk@12
19ConvertHr3216Thunk@12
20IntOpUninitialize@12
21ThkAddAppCompatFlag@4
lib/libc/mingw/lib32/p2pcollab.def created+92
......@@ -0,0 +1,92 @@
1;
2; Definition file of P2PCOLLAB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "P2PCOLLAB.dll"
7EXPORTS
8AIApplicationGetRegistrationInfo@12
9AIApplicationRegister@8
10AIApplicationUnregister@8
11AIAsyncSend@20
12AICancel@4
13AICloseHandle@4
14AIEnumApplicationRegistrationInfo@8
15AIGetApplicationLaunchInfo@4
16AIGetResponse@8
17AIRespond@8
18AIShutdown@0
19AISpecificStart@4
20AISpecificStop@0
21AIStartup@8
22AISyncSend@16
23CollabAddContact@8
24CollabConvertBitmapToPicture@12
25CollabConvertPicture@12
26CollabConvertPictureToBitmap@8
27CollabCreateXMLContactBlob@12
28CollabDeleteContact@4
29CollabDisableAutoStart@0
30CollabDisplayPrivacyWebpage@8
31CollabEnableAutoStart@0
32CollabEnumContacts@4
33CollabExportContact@8
34CollabExportScopedContact@12
35CollabGetContact@8
36CollabGetContactPicture@16
37CollabGetScopedContact@12
38CollabGetSignInInfo@4
39CollabGetUserSettings@4
40CollabLayerInitialize@8
41CollabLayerShutdown@0
42CollabLoadPrivacyStmt@8
43CollabParseContact@8
44CollabPublicationInitialize@8
45CollabPublicationListen@4
46CollabPublicationPublish@0
47CollabPublicationShutdown@0
48CollabPublicationStopListen@4
49CollabPublicationUnpublish@0
50CollabRegisterIPAddrChange@4
51CollabSetSignInInfo@4
52CollabSetUserSettings@8
53CollabSetup@4
54CollabTrimNicknameSpaces@12
55CollabUnregisterIPAddrChange@4
56CollabUpdateContact@4
57ContactManagerCleanup@0
58ContactManagerInit@4
59PeopleNearMeGetEndpointsNearMe@8
60PeopleNearMeInitialize@4
61PeopleNearMeSignin@4
62PeopleNearMeSignout@0
63PeopleNearMeUninitialize@0
64PeopleNearMeUpdateEndpointName@4
65PeopleNearMeUpdateFriendlyName@4
66SPDeleteContact@4
67SPEndRequest@4
68SPGetApplications@16
69SPGetEndpointName@4
70SPGetEndpoints@12
71SPGetObjects@16
72SPGetPresenceInfo@8
73SPPublishObject@8
74SPQueryContactData@8
75SPRegisterApplication@4
76SPRequestPublishedItems@4
77SPSetEndpointName@4
78SPSetPresenceInfo@4
79SPSubscribeEndpoint@8
80SPUnpublishObjects@4
81SPUnregisterApplication@4
82SPUnsubscribeEndpoint@8
83SPUnsubscribeOnRundown@4
84SPUpdateContact@8
85SPUpdateMeContact@0
86SPUpdateUserPicture@0
87SPUpdateUserSettings@4
88SSPAddCredentials@12
89SSPRemoveCredentials@4
90DllMain@12
91InitSecurityInterfaceW@0
92QuerySecurityPackageInfoW@8
lib/libc/mingw/lib32/pcwum.def created+46
......@@ -0,0 +1,46 @@
1;
2; Definition file of pcwum.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "pcwum.dll"
7EXPORTS
8PcwAddQueryItem@36
9PcwClearCounterSetSecurity@4
10PcwCollectData@16
11PcwCompleteNotification@20
12PcwCreateNotifier@8
13PcwCreateQuery@8
14PcwDisconnectCounterSet@8
15PcwEnumerateInstances@24
16PcwIsNotifierAlive@12
17PcwQueryCounterSetSecurity@20
18PcwReadNotificationData@16
19PcwRegisterCounterSet@12
20PcwRemoveQueryItem@8
21PcwSendNotification@32
22PcwSendStatelessNotification@32
23PcwSetCounterSetSecurity@12
24PcwSetQueryItemUserData@12
25PerfCreateInstance@16
26PerfDecrementULongCounterValue@16
27PerfDecrementULongLongCounterValue@20
28PerfDeleteInstance@8
29PerfIncrementULongCounterValue@16
30PerfIncrementULongLongCounterValue@20
31PerfQueryInstance@16
32PerfSetCounterRefValue@16
33PerfSetCounterSetInfo@12
34PerfSetULongCounterValue@16
35PerfSetULongLongCounterValue@20
36PerfStartProvider@12
37PerfStartProviderEx@12
38PerfStopProvider@4
39StmAlignSize@4
40StmAllocateFlat@8
41StmCoalesceChunks@12
42StmDeinitialize@4
43StmInitialize@20
44StmReduceSize@8
45StmReserve@12
46StmWrite@12
lib/libc/mingw/lib32/pdhui.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of pdhui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "pdhui.dll"
7EXPORTS
8PdhUiBrowseCountersA@4
9PdhUiBrowseCountersExA@4
10PdhUiBrowseCountersExHA@4
11PdhUiBrowseCountersExHW@4
12PdhUiBrowseCountersExW@4
13PdhUiBrowseCountersHA@4
14PdhUiBrowseCountersHW@4
15PdhUiBrowseCountersW@4
16PdhUiSelectDataSourceA@16
17PdhUiSelectDataSourceW@16
lib/libc/mingw/lib32/penwin32.def created+101
......@@ -0,0 +1,101 @@
1LIBRARY PENWIN32.DLL
2EXPORTS
3AddInksetInterval@8
4AddPenDataHRC@8
5AddPenInputHRC@20
6AddPointsPenData@16
7AddWordsHWL@12
8BoundingRectFromPoints@12
9CharacterToSymbol@12
10CompressPenData@12
11ConfigHREC@16
12CorrectWriting@24
13CreateCompatibleHRC@8
14CreateHWL@16
15CreateInkset@4
16CreateInksetHRCRESULT@12
17CreatePenDataEx@16
18CreatePenDataHRC@4
19CreatePenDataRegion@8
20DPtoTP@8
21DestroyHRC@4
22DestroyHRCRESULT@4
23DestroyHWL@4
24DestroyInkset@4
25DestroyPenData@4
26DoDefaultPenInput@8
27DrawPenDataEx@40
28DuplicatePenData@8
29EnableGestureSetHRC@12
30EnableSystemDictionaryHRC@8
31EndPenInputHRC@4
32ExtractPenDataPoints@28
33ExtractPenDataStrokes@20
34GetAlphabetHRC@12
35GetAlphabetPriorityHRC@12
36GetAlternateWordsHRCRESULT@20
37GetBoxMappingHRCRESULT@16
38GetBoxResultsHRC@24
39GetGuideHRC@12
40GetHRECFromHRC@4
41GetHotspotsHRCRESULT@16
42GetInksetInterval@12
43GetInksetIntervalCount@4
44GetInternationalHRC@20
45GetMaxResultsHRC@4
46GetPenAppFlags@0
47GetPenAsyncState@4
48GetPenDataAttributes@12
49GetPenDataInfo@16
50GetPenInput@24
51GetPenMiscInfo@8
52GetPointsFromPenData@20
53GetResultsHRC@16
54GetStrokeAttributes@16
55GetStrokeTableAttributes@16
56GetSymbolCountHRCRESULT@4
57GetSymbolsHRCRESULT@16
58GetVersionPenWin@0
59GetWordlistCoercionHRC@4
60GetWordlistHRC@8
61HitTestPenData@20
62InsertPenData@12
63InsertPenDataPoints@24
64InsertPenDataStroke@20
65InstallRecognizer@4
66IsPenEvent@8
67MetricScalePenData@8
68OffsetPenData@12
69PeekPenInput@20
70PenDataFromBuffer@20
71PenDataToBuffer@16
72ProcessHRC@8
73ReadHWL@8
74RedisplayPenData@24
75RemovePenDataStrokes@12
76ResizePenData@8
77SetAlphabetHRC@12
78SetAlphabetPriorityHRC@12
79SetBoxAlphabetHRC@12
80SetGuideHRC@12
81SetInternationalHRC@20
82SetMaxResultsHRC@8
83SetPenAppFlags@8
84SetPenMiscInfo@8
85SetResultsHookHREC@8
86SetStrokeAttributes@16
87SetStrokeTableAttributes@16
88SetWordlistCoercionHRC@8
89SetWordlistHRC@8
90StartInking@12
91StartPenInput@16
92StopInking@4
93StopPenInput@12
94SymbolToCharacter@16
95TPtoDP@8
96TargetPoints@20
97TrainHREC@20
98TrimPenData@12
99UnhookResultsHookHREC@8
100UninstallRecognizer@4
101WriteHWL@8
lib/libc/mingw/lib32/pkpd32.def created+36
......@@ -0,0 +1,36 @@
1LIBRARY PKPD32.DLL
2EXPORTS
3AddInksetInterval@8
4AddPointsPenData@16
5BoundingRectFromPoints@12
6CompressPenData@12
7CreateInkset@4
8CreatePenDataEx@16
9CreatePenDataRegion@8
10DestroyInkset@4
11DestroyPenData@4
12DrawPenDataEx@40
13DuplicatePenData@8
14ExtractPenDataPoints@28
15ExtractPenDataStrokes@20
16GetInksetInterval@12
17GetInksetIntervalCount@4
18GetPenDataAttributes@12
19GetPenDataInfo@16
20GetPointsFromPenData@20
21GetStrokeAttributes@16
22GetStrokeTableAttributes@16
23HitTestPenData@20
24InsertPenData@12
25InsertPenDataPoints@24
26InsertPenDataStroke@20
27MetricScalePenData@8
28OffsetPenData@12
29PenDataFromBuffer@20
30PenDataToBuffer@16
31RedisplayPenData@24
32RemovePenDataStrokes@12
33ResizePenData@8
34SetStrokeAttributes@16
35SetStrokeTableAttributes@16
36TrimPenData@12
lib/libc/mingw/lib32/profapi.def created+21
......@@ -0,0 +1,21 @@
1LIBRARY profapi
2
3EXPORTS
4
5CreateAppContainerEnumerator@8
6CreateEnvBlock@12
7DeleteAppContainerEnumerator@4
8DestroyEnvBlock@4
9ExpandEnvStringForUser@16
10GetAppContainerPath@12
11GetAppContainerPathFromSidString@16
12GetAppContainerRegistryHandle@8
13GetAppContainerRegistryHandleFromName@20
14GetAppContainerRegistryPath@8
15GetAppContainerSpecificSubPath@16
16GetBasicProfileFolderPath@16
17GetBasicProfileFolderPathAlloc@12
18GetBasicProfileFolderPathEx@20
19GetNextAppContainerSid@8
20LoadProfileBasic@8
21UnloadProfileBasic@8
lib/libc/mingw/lib32/qutil.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of QUtil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "QUtil.dll"
7EXPORTS
8AllocConnections@8
9AllocCountedString@8
10AllocFixupInfo@8
11DllCanUnloadNow@0
12DllGetClassObject@12
13DllRegisterServer@0
14DllUnregisterServer@0
15FreeConnections@4
16FreeCountedString@4
17FreeFixupInfo@4
18FreeIsolationInfo@4
19FreeIsolationInfoEx@4
20FreeNapComponentRegistrationInfoArray@8
21FreeNetworkSoH@4
22FreePrivateData@4
23FreeSoH@4
24FreeSoHAttributeValue@8
25FreeSystemHealthAgentState@4
26InitializeNapAgentNotifier@8
27UninitializeNapAgentNotifier@4
lib/libc/mingw/lib32/rapi.def created+84
......@@ -0,0 +1,84 @@
1LIBRARY RAPI.DLL
2EXPORTS
3CeCheckPassword@4
4CeCloseHandle@4
5CeCopyFile@12
6CeCreateDatabase@16
7CeCreateDirectory@8
8CeCreateFile@28
9CeCreateProcess@40
10CeDeleteDatabase@4
11CeDeleteFile@4
12CeDeleteRecord@8
13CeFindAllDatabases@16
14CeFindAllFiles@16
15CeFindClose@4
16CeFindFirstDatabase@4
17CeFindFirstFile@8
18CeFindNextDatabase@4
19CeFindNextFile@8
20CeGetClassName@12
21CeGetDesktopDeviceCaps@4
22CeGetFileAttributes@4
23CeGetFileSize@8
24CeGetFileTime@16
25CeGetLastError@0
26CeGetSpecialFolderPath@12
27CeGetStoreInformation@4
28CeGetSystemInfo@4
29CeGetSystemMetrics@4
30CeGetSystemPowerStatusEx@8
31CeGetTempPath@8
32CeGetVersionEx@4
33CeGetWindow@8
34CeGetWindowLong@8
35CeGetWindowText@12
36CeGlobalMemoryStatus@4
37CeMoveFile@8
38CeOidGetInfo@8
39CeOpenDatabase@20
40CeRapiFreeBuffer@4
41CeRapiGetError@0
42CeRapiInit@0
43CeRapiInitEx@4
44CeRapiInvoke@32
45CeRapiUninit@0
46CeReadFile@20
47CeReadRecordProps@24
48CeRegCloseKey@4
49CeRegCreateKeyEx@36
50CeRegDeleteKey@8
51CeRegDeleteValue@8
52CeRegEnumKeyEx@32
53CeRegEnumValue@32
54CeRegOpenKeyEx@20
55CeRegQueryInfoKey@48
56CeRegQueryValueEx@24
57CeRegSetValueEx@24
58CeRemoveDirectory@4
59CeSHCreateShortcut@8
60CeSHGetShortcutTarget@12
61CeSeekDatabase@16
62CeSetDatabaseInfo@8
63CeSetEndOfFile@4
64CeSetFileAttributes@8
65CeSetFilePointer@16
66CeSetFileTime@16
67CeWriteFile@20
68CeWriteRecordProps@16
69GetRapiError@0
70RAPI_EXP_10@4
71RAPI_EXP_11@8
72RAPI_EXP_12@4
73RAPI_EXP_13@0
74RAPI_EXP_14@4
75RAPI_EXP_15@4
76RAPI_EXP_16@0
77RAPI_EXP_17@8
78RAPI_EXP_18@8
79RAPI_EXP_19@12
80RAPI_EXP_20@4
81RAPI_EXP_21@8
82RAPI_EXP_22@8
83RAPI_EXP_23@12
84RapiFreeBuffer@4
lib/libc/mingw/lib32/resutil.def created+85
......@@ -0,0 +1,85 @@
1;
2; Definition file of RESUTILS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "RESUTILS.dll"
7EXPORTS
8ClusWorkerCheckTerminate@4
9ClusWorkerCreate@12
10ClusWorkerStart@4
11ClusWorkerTerminate@4
12ResUtilAddUnknownProperties@24
13ResUtilCreateDirectoryTree@4
14ResUtilDupParameterBlock@12
15ResUtilDupString@4
16ResUtilEnumPrivateProperties@20
17ResUtilEnumProperties@20
18ResUtilEnumResources@16
19ResUtilEnumResourcesEx@20
20ResUtilExpandEnvironmentStrings@4
21ResUtilFindBinaryProperty@20
22ResUtilFindDependentDiskResourceDriveLetter@16
23ResUtilFindDwordProperty@16
24ResUtilFindExpandSzProperty@16
25ResUtilFindExpandedSzProperty@16
26ResUtilFindFileTimeProperty@16
27ResUtilFindLongProperty@16
28ResUtilFindMultiSzProperty@20
29ResUtilFindSzProperty@16
30ResUtilFreeEnvironment@4
31ResUtilFreeParameterBlock@12
32ResUtilGetAllProperties@24
33ResUtilGetBinaryProperty@28
34ResUtilGetBinaryValue@16
35ResUtilGetClusterRoleState@8
36ResUtilGetCoreClusterResources@16
37ResUtilGetDwordProperty@28
38ResUtilGetDwordValue@16
39ResUtilGetEnvironmentWithNetName@4
40ResUtilGetFileTimeProperty@40
41ResUtilGetLongProperty@28
42ResUtilGetMultiSzProperty@28
43ResUtilGetPrivateProperties@20
44ResUtilGetProperties@24
45ResUtilGetPropertiesToParameterBlock@20
46ResUtilGetProperty@16
47ResUtilGetPropertyFormats@20
48ResUtilGetPropertySize@16
49ResUtilGetQwordValue@20
50ResUtilGetResourceDependency@8
51ResUtilGetResourceDependencyByClass@16
52ResUtilGetResourceDependencyByName@16
53ResUtilGetResourceDependentIPAddressProps@28
54ResUtilGetResourceName@12
55ResUtilGetResourceNameDependency@8
56ResUtilGetSzProperty@20
57ResUtilGetSzValue@8
58ResUtilIsPathValid@4
59ResUtilIsResourceClassEqual@8
60ResUtilPropertyListFromParameterBlock@24
61ResUtilRemoveResourceServiceEnvironment@12
62ResUtilResourceTypesEqual@8
63ResUtilResourcesEqual@8
64ResUtilSetBinaryValue@24
65ResUtilSetDwordValue@16
66ResUtilSetExpandSzValue@16
67ResUtilSetMultiSzValue@24
68ResUtilSetPrivatePropertyList@12
69ResUtilSetPropertyParameterBlock@28
70ResUtilSetPropertyParameterBlockEx@32
71ResUtilSetPropertyTable@28
72ResUtilSetPropertyTableEx@32
73ResUtilSetQwordValue@20
74ResUtilSetResourceServiceEnvironment@16
75ResUtilSetResourceServiceStartParameters@20
76ResUtilSetSzValue@16
77ResUtilSetUnknownProperties@16
78ResUtilStartResourceService@8
79ResUtilStopResourceService@4
80ResUtilStopService@4
81ResUtilTerminateServiceProcessFromResDll@20
82ResUtilVerifyPrivatePropertyList@8
83ResUtilVerifyPropertyTable@24
84ResUtilVerifyResourceService@4
85ResUtilVerifyService@4
lib/libc/mingw/lib32/rometadata.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY "RoMetadata.dll"
2EXPORTS
3MetaDataGetDispenser@12
lib/libc/mingw/lib32/rpcdce4.def created+26
......@@ -0,0 +1,26 @@
1LIBRARY RPCDCE4.dll
2EXPORTS
3DceErrorInqTextA@8
4DceErrorInqTextW@8
5MIDL_user_allocate@4
6MIDL_user_free@4
7RpcBindingToStringBindingA@8
8RpcBindingToStringBindingW@8
9RpcMgmtEpEltInqBegin@24
10RpcMgmtEpEltInqDone@4
11RpcMgmtEpEltInqNextA@20
12RpcMgmtEpEltInqNextW@20
13RpcMgmtEpUnregister@16
14RpcMgmtInqIfIds@8
15RpcMgmtInqServerPrincNameA@12
16RpcMgmtInqServerPrincNameW@12
17RpcMgmtInqStats@8
18RpcMgmtIsServerListening@4
19RpcMgmtSetAuthorizationFn@4
20RpcMgmtStopServerListening@4
21RpcServerListen@12
22UuidCompare@12
23UuidCreateNil@4
24UuidEqual@12
25UuidHash@8
26UuidIsNil@8
lib/libc/mingw/lib32/rpcdiag.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of RpcDiag.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "RpcDiag.dll"
7EXPORTS
8I_RpcSetupDiagCallback@4
9RpcDiagnoseError@24
lib/libc/mingw/lib32/rpchttp.def created+54
......@@ -0,0 +1,54 @@
1;
2; Definition file of rpchttp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "rpchttp.dll"
7EXPORTS
8CompareHttpTransportCredentials@8
9ConvertToUnicodeHttpTransportCredentials@4
10DuplicateHttpTransportCredentials@4
11FreeHttpTransportCredentials@4
12HTTP2AbortConnection@4
13HTTP2ChannelDataOriginatorDirectSend@20
14HTTP2ContinueDrainChannel@4
15HTTP2DirectReceive@20
16HTTP2EpRecvFailed@12
17HTTP2FlowControlChannelDirectSend@24
18HTTP2IISDirectReceive@4
19HTTP2IISSenderDirectSend@4
20HTTP2PlugChannelDirectSend@20
21HTTP2ProcessComplexTReceive@20
22HTTP2ProcessComplexTSend@12
23HTTP2RecycleChannel@4
24HTTP2TestHook@12
25HTTP2TimerReschedule@4
26HTTP2WinHttpDelayedReceive@4
27HTTP2WinHttpDirectReceive@16
28HTTP2WinHttpDirectSend@12
29HTTP_Abort@4
30HTTP_Close@8
31HTTP_CopyResolverHint@12
32HTTP_FreeResolverHint@4
33HTTP_Initialize@16
34HTTP_Open@56
35HTTP_QueryClientAddress@8
36HTTP_QueryClientId@8
37HTTP_QueryClientIpAddress@8
38HTTP_QueryLocalAddress@16
39HTTP_Recv@4
40HTTP_Send@16
41HTTP_ServerListen@28
42HTTP_SetLastBufferToFree@12
43HTTP_SyncRecv@16
44HTTP_SyncSend@24
45HTTP_TurnOnOffKeepAlives@24
46HttpParseNetworkOptions@36
47HttpSendIdentifyResponse@4
48I_RpcGetRpcProxy@8
49I_RpcTransFreeHttpCredentials@4
50I_RpcTransGetHttpCredentials@4
51WS_HTTP2_CONNECTION__Initialize@4
52WS_HTTP2_INITIAL_CONNECTION__new@4
53I_RpcProxyNewConnection@28
54I_RpcReplyToClientWithStatus@8
lib/libc/mingw/lib32/rpcrt4.def-7
......@@ -257,13 +257,6 @@ NdrFixedArrayMarshall@12
257257NdrFixedArrayMemorySize@8
258258NdrFixedArrayUnmarshall@16
259259NdrFreeBuffer@4
260NdrFullPointerFree@8
261NdrFullPointerInsertRefId@12
262NdrFullPointerQueryPointer@16
263NdrFullPointerQueryRefId@16
264NdrFullPointerInsertRefId@12
265NdrFullPointerQueryPointer@16
266NdrFullPointerQueryRefId@16
267260NdrFullPointerXlatFree@4
268261NdrFullPointerXlatInit@8
269262NdrGetBuffer@12
lib/libc/mingw/lib32/rtutils.def created+54
......@@ -0,0 +1,54 @@
1LIBRARY RTUTILS.DLL
2EXPORTS
3CreateWaitEvent@40
4CreateWaitEventBinding@20
5CreateWaitTimer@16
6DeRegisterWaitEventBinding@4
7DeRegisterWaitEventBindingSelf@4
8DeRegisterWaitEventsTimers@8
9DeRegisterWaitEventsTimersSelf@8
10DebugPrintWaitWorkerThreads@4
11LogErrorA@16
12LogErrorW@16
13LogEventA@16
14LogEventW@16
15MprSetupProtocolEnum@12
16MprSetupProtocolFree@4
17QueueWorkItem@12
18RegisterWaitEventBinding@4
19RegisterWaitEventsTimers@8
20RouterAssert@16
21RouterGetErrorStringA@8
22RouterGetErrorStringW@8
23RouterLogDeregisterA@4
24RouterLogDeregisterW@4
25RouterLogEventA@24
26RouterLogEventW@24
27RouterLogEventDataA@28
28RouterLogEventDataW@28
29RouterLogEventExA@24
30RouterLogEventExW@24
31RouterLogEventStringA@28
32RouterLogEventStringW@28
33RouterLogEventValistExA@24
34RouterLogEventValistExW@24
35RouterLogRegisterA@4
36RouterLogRegisterW@4
37SetIoCompletionProc@8
38TraceDeregisterA@4
39TraceDeregisterW@4
40TraceDeregisterExA@8
41TraceDeregisterExW@8
42TraceDumpExA@28
43TraceDumpExW@28
44TraceGetConsoleA@8
45TraceGetConsoleW@8
46TracePutsExA@12
47TracePutsExW@12
48TraceRegisterExA@8
49TraceRegisterExW@8
50TraceVprintfExA@8
51TraceVprintfExW@8
52UpdateWaitTimer@8
53WTFreeEvent@4
54WTFreeTimer@4
lib/libc/mingw/lib32/scsiport.def created+49
......@@ -0,0 +1,49 @@
1LIBRARY scsiport.sys
2EXPORTS
3DllInitialize@4
4ScsiDebugPrint
5ScsiPortCompleteRequest@20
6;ScsiPortConvertPhysicalAddressToUlong
7ScsiPortConvertUlongToPhysicalAddress@4
8ScsiPortFlushDma@4
9ScsiPortFreeDeviceBase@8
10ScsiPortGetBusData@24
11ScsiPortGetDeviceBase@28
12ScsiPortGetLogicalUnit@16
13ScsiPortGetPhysicalAddress@16
14ScsiPortGetSrb@20
15ScsiPortGetUncachedExtension@12
16ScsiPortGetVirtualAddress@12
17ScsiPortInitialize@16
18ScsiPortIoMapTransfer@16
19ScsiPortLogError@28
20ScsiPortMoveMemory@12
21ScsiPortNotification
22ScsiPortQuerySystemTime@4
23ScsiPortReadPortBufferUchar@12
24ScsiPortReadPortBufferUlong@12
25ScsiPortReadPortBufferUshort@12
26ScsiPortReadPortUchar@4
27ScsiPortReadPortUlong@4
28ScsiPortReadPortUshort@4
29ScsiPortReadRegisterBufferUchar@12
30ScsiPortReadRegisterBufferUlong@12
31ScsiPortReadRegisterBufferUshort@12
32ScsiPortReadRegisterUchar@4
33ScsiPortReadRegisterUlong@4
34ScsiPortReadRegisterUshort@4
35ScsiPortSetBusDataByOffset@28
36ScsiPortStallExecution@4
37ScsiPortValidateRange@28
38ScsiPortWritePortBufferUchar@12
39ScsiPortWritePortBufferUlong@12
40ScsiPortWritePortBufferUshort@12
41ScsiPortWritePortUchar@8
42ScsiPortWritePortUlong@8
43ScsiPortWritePortUshort@8
44ScsiPortWriteRegisterBufferUchar@12
45ScsiPortWriteRegisterBufferUlong@12
46ScsiPortWriteRegisterBufferUshort@12
47ScsiPortWriteRegisterUchar@8
48ScsiPortWriteRegisterUlong@8
49ScsiPortWriteRegisterUshort@8
lib/libc/mingw/lib32/security.def created+38
......@@ -0,0 +1,38 @@
1LIBRARY Security.dll
2EXPORTS
3AcceptSecurityContext@36
4AcquireCredentialsHandleA@36
5AcquireCredentialsHandleW@36
6AddSecurityPackageA@8
7AddSecurityPackageW@8
8ApplyControlToken@8
9CompleteAuthToken@8
10DecryptMessage@16
11DeleteSecurityContext@4
12DeleteSecurityPackageA@4
13DeleteSecurityPackageW@4
14EncryptMessage@16
15EnumerateSecurityPackagesA@8
16EnumerateSecurityPackagesW@8
17ExportSecurityContext@16
18FreeContextBuffer@4
19FreeCredentialsHandle@4
20ImpersonateSecurityContext@4
21ImportSecurityContextA@16
22ImportSecurityContextW@16
23InitSecurityInterfaceA@0
24InitSecurityInterfaceW@0
25InitializeSecurityContextA@48
26InitializeSecurityContextW@48
27MakeSignature@16
28QueryContextAttributesA@12
29QueryContextAttributesW@12
30QueryCredentialsAttributesA@12
31QueryCredentialsAttributesW@12
32QuerySecurityContextToken@8
33QuerySecurityPackageInfoA@8
34QuerySecurityPackageInfoW@8
35RevertSecurityContext@4
36SealMessage@16
37UnsealMessage@16
38VerifySignature@16
lib/libc/mingw/lib32/sens.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of Sens.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "Sens.dll"
7EXPORTS
8ServiceMain@8
9SvchostPushServiceGlobals@4
10SensNotifyNetconEvent@4
11SensNotifyRasEvent@4
12SensNotifyWinlogonEvent@4
lib/libc/mingw/lib32/sensapi.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of SensApi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "SensApi.dll"
7EXPORTS
8IsDestinationReachableA@8
9IsDestinationReachableW@8
10IsNetworkAlive@4
lib/libc/mingw/lib32/shfolder.def created+4
......@@ -0,0 +1,4 @@
1LIBRARY SHFOLDER.DLL
2EXPORTS
3SHGetFolderPathA@20
4SHGetFolderPathW@20
lib/libc/mingw/lib32/svrapi.def created+22
......@@ -0,0 +1,22 @@
1LIBRARY SVRAPI.DLL
2EXPORTS
3NetAccessAdd@16
4NetAccessCheck@20
5NetAccessDel@8
6NetAccessEnum@32
7NetAccessGetInfo@24
8NetAccessGetUserPerms@16
9NetAccessSetInfo@24
10NetConnectionEnum@28
11NetFileClose2@8
12NetFileEnum@28
13NetSecurityGetInfo@20
14NetServerGetInfo@20
15NetSessionDel@12
16NetSessionEnum@24
17NetSessionGetInfo@24
18NetShareAdd@16
19NetShareDel@12
20NetShareEnum@24
21NetShareGetInfo@24
22NetShareSetInfo@24
lib/libc/mingw/lib32/sxs.def created+28
......@@ -0,0 +1,28 @@
1;
2; Definition file of sxs.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "sxs.dll"
7EXPORTS
8SxsFindClrClassInformation@24
9SxsFindClrSurrogateInformation@24
10SxsLookupClrGuid@24
11SxsRunDllInstallAssembly@16
12SxsRunDllInstallAssemblyW@16
13SxspGenerateManifestPathOnAssemblyIdentity@16
14CreateAssemblyCache@8
15CreateAssemblyNameObject@16
16SxsBeginAssemblyInstall@24
17SxsEndAssemblyInstall@12
18SxsGenerateActivationContext@4
19SxsInstallW@4
20SxsOleAut32MapConfiguredClsidToReferenceClsid@8
21SxsOleAut32MapIIDOrCLSIDToTypeLibrary@8
22SxsOleAut32MapIIDToProxyStubCLSID@8
23SxsOleAut32MapIIDToTLBPath@16
24SxsOleAut32MapReferenceClsidToConfiguredClsid@8
25SxsOleAut32RedirectTypeLibrary@28
26SxsProbeAssemblyInstallation@12
27SxsQueryManifestInformation@28
28SxsUninstallW@8
lib/libc/mingw/lib32/tdi.def created+50
......@@ -0,0 +1,50 @@
1LIBRARY tdi.sys
2EXPORTS
3;CTEAllocateString
4;CTEBlock
5;CTEInitEvent
6;CTEInitString
7;CTEInitTimer
8;CTEInitialize
9;CTELogEvent
10;CTEScheduleDelayedEvent
11;CTEScheduleEvent
12;CTESignal
13;CTEStartTimer
14;CTESystemUpTime
15TdiBuildNetbiosAddress@12
16TdiBuildNetbiosAddressEa@12
17TdiCopyBufferToMdl@24
18TdiCopyMdlChainToMdlChain@20
19TdiCopyMdlToBuffer@24
20TdiDefaultChainedRcvDatagramHandler@40
21TdiDefaultChainedRcvExpeditedHandler@28
22TdiDefaultChainedReceiveHandler@28
23TdiDefaultConnectHandler@36
24TdiDefaultDisconnectHandler@28
25TdiDefaultErrorHandler@8
26TdiDefaultRcvDatagramHandler@44
27TdiDefaultRcvExpeditedHandler@32
28TdiDefaultReceiveHandler@32
29TdiDefaultSendPossibleHandler@12
30TdiDeregisterAddressChangeHandler@4
31TdiDeregisterDeviceObject@4
32TdiDeregisterNetAddress@4
33;TdiDeregisterNotificationHandler
34TdiDeregisterPnPHandlers@4
35TdiDeregisterProvider@4
36TdiEnumerateAddresses@4
37TdiInitialize@0
38TdiMapUserRequest@12
39TdiMatchPdoWithChainedReceiveContext@8
40;TdiOpenNetbiosAddress
41TdiPnPPowerComplete@12
42TdiPnPPowerRequest@20
43TdiProviderReady@4
44TdiRegisterAddressChangeHandler@12
45TdiRegisterDeviceObject@8
46TdiRegisterNetAddress@16
47TdiRegisterNotificationHandler@12
48TdiRegisterPnPHandlers@12
49TdiRegisterProvider@8
50TdiReturnChainedReceives@8
lib/libc/mingw/lib32/uiautomationcore.def created+106
......@@ -0,0 +1,106 @@
1;
2; Definition file of UIAutomationCore.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "UIAutomationCore.DLL"
7EXPORTS
8DockPattern_SetDockPosition@8
9ExpandCollapsePattern_Collapse@4
10ExpandCollapsePattern_Expand@4
11GridPattern_GetItem@16
12InitializeChannelBasedConnectionForProviderProxy@12
13InvokePattern_Invoke@4
14ItemContainerPattern_FindItemByProperty@32
15LegacyIAccessiblePattern_DoDefaultAction@4
16LegacyIAccessiblePattern_GetIAccessible@8
17LegacyIAccessiblePattern_Select@8
18LegacyIAccessiblePattern_SetValue@8
19MultipleViewPattern_GetViewName@12
20MultipleViewPattern_SetCurrentView@8
21RangeValuePattern_SetValue@12
22ScrollItemPattern_ScrollIntoView@4
23ScrollPattern_Scroll@12
24ScrollPattern_SetScrollPercent@20
25SelectionItemPattern_AddToSelection@4
26SelectionItemPattern_RemoveFromSelection@4
27SelectionItemPattern_Select@4
28SynchronizedInputPattern_Cancel@4
29SynchronizedInputPattern_StartListening@8
30TextPattern_GetSelection@8
31TextPattern_GetVisibleRanges@8
32TextPattern_RangeFromChild@12
33TextPattern_RangeFromPoint@24
34TextPattern_get_DocumentRange@8
35TextPattern_get_SupportedTextSelection@8
36TextRange_AddToSelection@4
37TextRange_Clone@8
38TextRange_Compare@12
39TextRange_CompareEndpoints@20
40TextRange_ExpandToEnclosingUnit@8
41TextRange_FindAttribute@32
42TextRange_FindText@20
43TextRange_GetAttributeValue@12
44TextRange_GetBoundingRectangles@8
45TextRange_GetChildren@8
46TextRange_GetEnclosingElement@8
47TextRange_GetText@12
48TextRange_Move@16
49TextRange_MoveEndpointByRange@16
50TextRange_MoveEndpointByUnit@20
51TextRange_RemoveFromSelection@4
52TextRange_ScrollIntoView@8
53TextRange_Select@4
54TogglePattern_Toggle@4
55TransformPattern_Move@20
56TransformPattern_Resize@20
57TransformPattern_Rotate@12
58UiaAddEvent@32
59UiaClientsAreListening@0
60UiaDisconnectAllProviders@0
61UiaDisconnectProvider@4
62UiaEventAddWindow@8
63UiaEventRemoveWindow@8
64UiaFind@24
65UiaGetErrorDescription@4
66UiaGetPatternProvider@12
67UiaGetPropertyValue@12
68UiaGetReservedMixedAttributeValue@4
69UiaGetReservedNotSupportedValue@4
70UiaGetRootNode@4
71UiaGetRuntimeId@8
72UiaGetUpdatedCache@24
73UiaHPatternObjectFromVariant@8
74UiaHTextRangeFromVariant@8
75UiaHUiaNodeFromVariant@8
76UiaHasServerSideProvider@4
77UiaHostProviderFromHwnd@8
78UiaIAccessibleFromProvider@16
79UiaLookupId@8
80UiaNavigate@24
81UiaNodeFromFocus@12
82UiaNodeFromHandle@8
83UiaNodeFromPoint@28
84UiaNodeFromProvider@8
85UiaNodeRelease@4
86UiaPatternRelease@4
87UiaProviderForNonClient@16
88UiaProviderFromIAccessible@16
89UiaRaiseActiveTextPositionChangedEvent@8
90UiaRaiseAsyncContentLoadedEvent@16
91UiaRaiseAutomationEvent@8
92UiaRaiseAutomationPropertyChangedEvent@40
93UiaRaiseChangesEvent@12
94UiaRaiseNotificationEvent@20
95UiaRaiseStructureChangedEvent@16
96UiaRaiseTextEditTextChangedEvent@12
97UiaRegisterProviderCallback@4
98UiaRemoveEvent@4
99UiaReturnRawElementProvider@16
100UiaSetFocus@4
101UiaTextRangeRelease@4
102ValuePattern_SetValue@8
103VirtualizedItemPattern_Realize@4
104WindowPattern_Close@4
105WindowPattern_SetWindowVisualState@8
106WindowPattern_WaitForInputIdle@12
lib/libc/mingw/lib32/url.def created+9
......@@ -0,0 +1,9 @@
1LIBRARY URL.DLL
2EXPORTS
3URLAssociationDialogW@24
4URLAssociationDialogA@24
5TranslateURLW@12
6TranslateURLA@12
7MIMEAssociationDialogW@24
8MIMEAssociationDialogA@24
9InetIsOffline@4
lib/libc/mingw/lib32/usbcamd.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of USBCAMD.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "USBCAMD.SYS"
7EXPORTS
8DllUnload@0
9USBCAMD_AdapterReceivePacket@16
10USBCAMD_ControlVendorCommand@36
11USBCAMD_Debug_LogEntry@16
12USBCAMD_DriverEntry@20
13USBCAMD_GetRegistryKeyValue@20
14USBCAMD_InitializeNewInterface@16
15USBCAMD_SelectAlternateInterface@8
lib/libc/mingw/lib32/usbcamd2.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of USBCAMD2.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "USBCAMD2.SYS"
7EXPORTS
8DllUnload@0
9USBCAMD_AdapterReceivePacket@16
10USBCAMD_ControlVendorCommand@36
11USBCAMD_Debug_LogEntry@16
12USBCAMD_DriverEntry@20
13USBCAMD_GetRegistryKeyValue@20
14USBCAMD_InitializeNewInterface@16
15USBCAMD_SelectAlternateInterface@8
lib/libc/mingw/lib32/usbd.def created+45
......@@ -0,0 +1,45 @@
1;
2; Definition file of USBD.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "USBD.SYS"
7EXPORTS
8; USBD_CreateConfigurationRequestEx@8
9; USBD_ParseConfigurationDescriptorEx@28
10; USBD_ParseDescriptors@16
11DllInitialize@4
12DllUnload@0
13USBD_AllocateDeviceName@4
14USBD_CalculateUsbBandwidth@12
15USBD_CompleteRequest@8
16USBD_CreateConfigurationRequest@8
17; _USBD_CreateConfigurationRequestEx@8@8
18USBD_CreateDevice@20
19USBD_Debug_GetHeap@16
20USBD_Debug_LogEntry@16
21USBD_Debug_RetHeap@12
22USBD_Dispatch@16
23USBD_FreeDeviceMutex@4
24USBD_FreeDeviceName@4
25USBD_GetDeviceInformation@12
26USBD_GetInterfaceLength@8
27USBD_GetPdoRegistryParameter@20
28USBD_GetSuspendPowerState@4
29USBD_GetUSBDIVersion@4
30USBD_InitializeDevice@24
31USBD_MakePdoName@8
32USBD_ParseConfigurationDescriptor@12
33; _USBD_ParseConfigurationDescriptorEx@28@28
34; _USBD_ParseDescriptors@16@16
35USBD_QueryBusTime@8
36USBD_RegisterHcDeviceCapabilities@12
37USBD_RegisterHcFilter@8
38USBD_RegisterHostController@40
39USBD_RemoveDevice@12
40USBD_RestoreDevice@12
41USBD_SetSuspendPowerState@8
42USBD_WaitDeviceMutex@4
43USBD_CreateConfigurationRequestEx@8==_USBD_CreateConfigurationRequestEx@8
44USBD_ParseConfigurationDescriptorEx@28==_USBD_ParseConfigurationDescriptorEx@28
45USBD_ParseDescriptors@16==_USBD_ParseDescriptors@16
lib/libc/mingw/lib32/usbport.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of USBPORT.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "USBPORT.SYS"
7EXPORTS
8DllUnload@0
9USBPORT_GetHciMn@0
10USBPORT_RegisterUSBPortDriver@12
lib/libc/mingw/lib32/userenv.def+30
......@@ -6,10 +6,29 @@
66LIBRARY "USERENV.dll"
77EXPORTS
88RsopLoggingEnabled@0
9AreThereVisibleLogoffScripts@4
10AreThereVisibleShutdownScripts@4
11CheckDirectoryOwnership@12
12CheckXForestLogon@4
13CopyProfileDirectoryEx2@28
14CreateAppContainerProfile@24
15CreateAppContainerProfileInternal@28
16CreateDirectoryJunctionsForSystem@0
17CreateDirectoryJunctionsForUserProfile@4
918CreateEnvironmentBlock@12
19CreateGroupEx@16
20CreateLinkFileEx@48
1021CreateProfile@16
22DeleteAppContainerProfile@4
23DeleteAppContainerProfileInternal@8
24DeleteGroup@8
25DeleteLinkFile@16
1126DeleteProfileA@12
27DeleteProfileDirectory2@16
28DeleteProfileDirectory@12
1229DeleteProfileW@12
30DeriveAppContainerSidFromAppContainerName@8
31DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName@12
1332DestroyEnvironmentBlock@4
1433;DllCanUnloadNow@0
1534;DllGetClassObject@12
......@@ -22,34 +41,45 @@ ExpandEnvironmentStringsForUserW@16
2241ForceSyncFgPolicy@4
2342FreeGPOListA@4
2443FreeGPOListW@4
44GenerateGPNotification@12
2545GetAllUsersProfileDirectoryA@8
2646GetAllUsersProfileDirectoryW@8
47GetAppContainerFolderPath@8
48GetAppContainerRegistryLocation@8
2749GetAppliedGPOListA@20
2850GetAppliedGPOListW@20
2951GetDefaultUserProfileDirectoryA@8
3052GetDefaultUserProfileDirectoryW@8
3153GetGPOListA@24
3254GetGPOListW@24
55GetLongProfilePathName@12
3356GetNextFgPolicyRefreshInfo@8
3457GetPreviousFgPolicyRefreshInfo@8
3558GetProfileType@4
3659GetProfilesDirectoryA@8
3760GetProfilesDirectoryW@8
3861GetUserProfileDirectoryA@12
62GetUserProfileDirectoryForUserSidW@12
3963GetUserProfileDirectoryW@12
64HasPolicyForegroundProcessingCompleted@20
65IsAppContainerProfilePresentInternal@12
4066LeaveCriticalPolicySection@4
4167LoadUserProfileA@8
4268LoadUserProfileW@8
69LookupAppContainerDisplayName@8
70PingComputer@8
4371ProcessGroupPolicyCompleted@12
4472ProcessGroupPolicyCompletedEx@16
4573RefreshPolicy@4
4674RefreshPolicyEx@8
4775RegisterGPNotification@8
76RemapProfile@12
4877RsopAccessCheckByType@44
4978RsopFileAccessCheck@20
5079RsopResetPolicySettingStatus@12
5180RsopSetPolicySettingStatus@20
5281UnloadUserProfile@8
5382UnregisterGPNotification@4
83UpdateAppContainerProfile@28
5484WaitForMachinePolicyForegroundProcessing@0
5585WaitForUserPolicyForegroundProcessing@0
lib/libc/mingw/lib32/vdmdbg.def created+18
......@@ -0,0 +1,18 @@
1LIBRARY VDMDBG.dll
2EXPORTS
3VDMBreakThread@8
4VDMDetectWOW@0
5VDMEnumProcessWOW@8
6VDMEnumTaskWOW@12
7VDMGetModuleSelector@20
8VDMGetPointer@20
9VDMGetSelectorModule@32
10VDMGetThreadContext@8
11VDMGetThreadSelectorEntry@16
12VDMGlobalFirst@24
13VDMGlobalNext@24
14VDMKillWOW@0
15VDMModuleFirst@20
16VDMModuleNext@20
17VDMProcessException@4
18VDMSetThreadContext@8
lib/libc/mingw/lib32/videoprt.def created+116
......@@ -0,0 +1,116 @@
1LIBRARY videoprt.sys
2EXPORTS
3VideoPortAcquireDeviceLock@4
4VideoPortAcquireSpinLock@12
5VideoPortAcquireSpinLockAtDpcLevel@8
6VideoPortAllocateBuffer@12
7VideoPortAllocateCommonBuffer@24
8VideoPortAllocateContiguousMemory@16
9VideoPortAllocatePool@16
10VideoPortAssociateEventsWithDmaHandle@16
11;VideoPortCheckForDeviceExistance
12VideoPortCheckForDeviceExistence@28
13VideoPortClearEvent@8
14VideoPortCompareMemory@12
15VideoPortCompleteDma@16
16VideoPortCreateEvent@16
17VideoPortCreateSecondaryDisplay@12
18VideoPortCreateSpinLock@8
19VideoPortDDCMonitorHelper@16
20VideoPortDebugPrint
21VideoPortDeleteEvent@8
22VideoPortDeleteSpinLock@8
23VideoPortDisableInterrupt@4
24VideoPortDoDma@12
25VideoPortEnableInterrupt@4
26VideoPortEnumerateChildren@8
27;VideoPortFlushRegistry
28VideoPortFreeCommonBuffer@24
29VideoPortFreeDeviceBase@8
30VideoPortFreePool@8
31VideoPortGetAccessRanges@32
32VideoPortGetAgpServices@8
33VideoPortGetAssociatedDeviceExtension@4
34VideoPortGetAssociatedDeviceID@4
35VideoPortGetBusData@24
36VideoPortGetBytesUsed@8
37VideoPortGetCommonBuffer@24
38VideoPortGetCurrentIrql@0
39VideoPortGetDeviceBase@20
40VideoPortGetDeviceData@16
41VideoPortGetDmaAdapter@8
42VideoPortGetDmaContext@8
43VideoPortGetMdl@8
44VideoPortGetRegistryParameters@20
45VideoPortGetRomImage@16
46VideoPortGetVersion@8
47VideoPortGetVgaStatus@8
48VideoPortInitialize@16
49VideoPortInt10@8
50@VideoPortInterlockedDecrement@4
51@VideoPortInterlockedExchange@8
52@VideoPortInterlockedIncrement@4
53VideoPortLockBuffer@16
54VideoPortLockPages@20
55VideoPortLogError@16
56VideoPortMapBankedMemory@40
57VideoPortMapDmaMemory@36
58VideoPortMapMemory@24
59VideoPortMoveMemory@12
60VideoPortPutDmaAdapter@8
61VideoPortQueryPerformanceCounter@8
62VideoPortQueryServices@12
63VideoPortQuerySystemTime@4
64VideoPortQueueDpc@12
65VideoPortReadPortBufferUchar@12
66VideoPortReadPortBufferUlong@12
67VideoPortReadPortBufferUshort@12
68VideoPortReadPortUchar@4
69VideoPortReadPortUlong@4
70VideoPortReadPortUshort@4
71VideoPortReadRegisterBufferUchar@12
72VideoPortReadRegisterBufferUlong@12
73VideoPortReadRegisterBufferUshort@12
74VideoPortReadRegisterUchar@4
75VideoPortReadRegisterUlong@4
76VideoPortReadRegisterUshort@4
77VideoPortReadStateEvent@8
78VideoPortRegisterBugcheckCallback@16
79VideoPortReleaseBuffer@8
80VideoPortReleaseCommonBuffer@28
81VideoPortReleaseDeviceLock@4
82VideoPortReleaseSpinLock@12
83VideoPortReleaseSpinLockFromDpcLevel@8
84VideoPortScanRom@16
85VideoPortSetBusData@24
86VideoPortSetBytesUsed@12
87VideoPortSetDmaContext@12
88VideoPortSetEvent@8
89VideoPortSetRegistryParameters@16
90VideoPortSetTrappedEmulatorPorts@12
91VideoPortSignalDmaComplete@8
92VideoPortStallExecution@4
93VideoPortStartDma@32
94VideoPortStartTimer@4
95VideoPortStopTimer@4
96VideoPortSynchronizeExecution@16
97VideoPortUnlockBuffer@8
98VideoPortUnlockPages@8
99VideoPortUnmapDmaMemory@16
100VideoPortUnmapMemory@12
101VideoPortVerifyAccessRanges@12
102VideoPortWaitForSingleObject@12
103VideoPortWritePortBufferUchar@12
104VideoPortWritePortBufferUlong@12
105VideoPortWritePortBufferUshort@12
106VideoPortWritePortUchar@8
107VideoPortWritePortUlong@8
108VideoPortWritePortUshort@8
109VideoPortWriteRegisterBufferUchar@12
110VideoPortWriteRegisterBufferUlong@12
111VideoPortWriteRegisterBufferUshort@12
112VideoPortWriteRegisterUchar@8
113VideoPortWriteRegisterUlong@8
114VideoPortWriteRegisterUshort@8
115VideoPortZeroDeviceMemory@8
116VideoPortZeroMemory@8
lib/libc/mingw/lib32/vss_ps.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of vss_ps.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "vss_ps.dll"
7EXPORTS
8DllCanUnloadNow@0
9DllGetClassObject@12
10DllRegisterServer@0
11DllUnregisterServer@0
12GetProxyDllInfo@8
lib/libc/mingw/lib32/wdsclient.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of WdsClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WdsClient.dll"
7EXPORTS
8CallBack_WdsClient_ConnectToImageStore@8
9CallBack_WdsClient_DetectWdsMode@8
10CallBack_WdsClient_GetImageList@8
11CallBack_WdsClient_ImageSelectionDone@8
12CallBack_WdsClient_ProcessCmdLine@8
13GetServerParamsFromBootPacket@8
14Module_Init_WdsClient@16
15g_Kernel32 DATA
16g_Mpr DATA
17g_Wdscore DATA
18g_Wdslib DATA
19g_hSession DATA
lib/libc/mingw/lib32/wdscore.def created+234
......@@ -0,0 +1,234 @@
1;
2; Definition file of WDSCORE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WDSCORE.dll"
7EXPORTS
8; public: __thiscall <unsigned char,unsigned char *>::<unsigned char,unsigned char *>(unsigned int)
9??0?$CDynamicArray@EPAE@@QAE@I@Z ; has WINAPI (@4)
10; public: __thiscall <unsigned char,struct SKey *>::<unsigned char,struct SKey *>(unsigned int)
11??0?$CDynamicArray@EPAUSKey@@@@QAE@I@Z ; has WINAPI (@4)
12; public: __thiscall <unsigned char,struct SValue *>::<unsigned char,struct SValue *>(unsigned int)
13??0?$CDynamicArray@EPAUSValue@@@@QAE@I@Z ; has WINAPI (@4)
14; public: __thiscall <unsigned short,unsigned short *>::<unsigned short,unsigned short *>(unsigned int)
15??0?$CDynamicArray@GPAG@@QAE@I@Z ; has WINAPI (@4)
16; public: __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::<struct SEnumBinContext *,struct SEnumBinContext **>(unsigned int)
17??0?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAE@I@Z ; has WINAPI (@4)
18; public: __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::<struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>(unsigned int)
19??0?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAE@I@Z ; has WINAPI (@4)
20; public: __thiscall <unsigned __int64,unsigned __int64 *>::<unsigned __int64,unsigned __int64 *>(unsigned int)
21??0?$CDynamicArray@_KPA_K@@QAE@I@Z ; has WINAPI (@4)
22; public: __thiscall <unsigned char,unsigned char *>::~<unsigned char,unsigned char *>(void)
23??1?$CDynamicArray@EPAE@@QAE@XZ
24; public: __thiscall <unsigned char,struct SKey *>::~<unsigned char,struct SKey *>(void)
25??1?$CDynamicArray@EPAUSKey@@@@QAE@XZ
26; public: __thiscall <unsigned char,struct SValue *>::~<unsigned char,struct SValue *>(void)
27??1?$CDynamicArray@EPAUSValue@@@@QAE@XZ
28; public: __thiscall <unsigned short,unsigned short *>::~<unsigned short,unsigned short *>(void)
29??1?$CDynamicArray@GPAG@@QAE@XZ
30; public: __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::~<struct SEnumBinContext *,struct SEnumBinContext **>(void)
31??1?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAE@XZ
32; public: __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::~<struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>(void)
33??1?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAE@XZ
34; public: __thiscall <unsigned __int64,unsigned __int64 *>::~<unsigned __int64,unsigned __int64 *>(void)
35??1?$CDynamicArray@_KPA_K@@QAE@XZ
36; public: class <unsigned char,unsigned char *> &__thiscall <unsigned char,unsigned char *>::operator =(class <unsigned char,unsigned char *> const &)
37??4?$CDynamicArray@EPAE@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
38; public: class <unsigned char,struct SKey *> &__thiscall <unsigned char,struct SKey *>::operator =(class <unsigned char,struct SKey *> const &)
39??4?$CDynamicArray@EPAUSKey@@@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
40; public: class <unsigned char,struct SValue *> &__thiscall <unsigned char,struct SValue *>::operator =(class <unsigned char,struct SValue *> const &)
41??4?$CDynamicArray@EPAUSValue@@@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
42; public: class <unsigned short,unsigned short *> &__thiscall <unsigned short,unsigned short *>::operator =(class <unsigned short,unsigned short *> const &)
43??4?$CDynamicArray@GPAG@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
44; public: class <struct SEnumBinContext *,struct SEnumBinContext **> &__thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::operator =(class <struct SEnumBinContext *,struct SEnumBinContext **> const &)
45??4?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
46; public: class <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *> &__thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::operator =(class <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *> const &)
47??4?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
48; public: class <unsigned __int64,unsigned __int64 *> &__thiscall <unsigned __int64,unsigned __int64 *>::operator =(class <unsigned __int64,unsigned __int64 *> const &)
49??4?$CDynamicArray@_KPA_K@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
50; public: struct SEnumBinContext *&__thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::operator[](unsigned int)
51??A?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAEAAPAUSEnumBinContext@@I@Z ; has WINAPI (@4)
52; public: unsigned __int64 &__thiscall <unsigned __int64,unsigned __int64 *>::operator[](unsigned int)
53??A?$CDynamicArray@_KPA_K@@QAEAA_KI@Z ; has WINAPI (@4)
54; public: void __thiscall <unsigned char,struct SKey *>::operator struct SKey *(...)const throw()
55??B?$CDynamicArray@EPAUSKey@@@@QBEPAUSKey@@XZ
56; public: void __thiscall <unsigned char,struct SValue *>::operator struct SValue *(...)const throw()
57??B?$CDynamicArray@EPAUSValue@@@@QBEPAUSValue@@XZ
58; public: void __thiscall <unsigned short,unsigned short *>::operator unsigned short *(...)const throw()
59??B?$CDynamicArray@GPAG@@QBEPAGXZ
60; public: struct SKey *__thiscall <unsigned char,struct SKey *>::operator ->(void)const
61??C?$CDynamicArray@EPAUSKey@@@@QBEPAUSKey@@XZ
62; public: struct SValue *__thiscall <unsigned char,struct SValue *>::operator ->(void)const
63??C?$CDynamicArray@EPAUSValue@@@@QBEPAUSValue@@XZ
64; public: void __thiscall <unsigned char,unsigned char *>::__dflt_ctor_closure(void)
65??_F?$CDynamicArray@EPAE@@QAEXXZ
66; public: void __thiscall <unsigned char,struct SKey *>::__dflt_ctor_closure(void)
67??_F?$CDynamicArray@EPAUSKey@@@@QAEXXZ
68; public: void __thiscall <unsigned char,struct SValue *>::__dflt_ctor_closure(void)
69??_F?$CDynamicArray@EPAUSValue@@@@QAEXXZ
70; public: void __thiscall <unsigned short,unsigned short *>::__dflt_ctor_closure(void)
71??_F?$CDynamicArray@GPAG@@QAEXXZ
72; public: void __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::__dflt_ctor_closure(void)
73??_F?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAEXXZ
74; public: void __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::__dflt_ctor_closure(void)
75??_F?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAEXXZ
76; public: void __thiscall <unsigned __int64,unsigned __int64 *>::__dflt_ctor_closure(void)
77??_F?$CDynamicArray@_KPA_K@@QAEXXZ
78; public: int __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::Add(struct SEnumBinContext *&)
79?Add@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAEHAAPAUSEnumBinContext@@@Z ; has WINAPI (@4)
80; public: int __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::Add(struct CBlackboardFactory::SKeeperEntry &)
81?Add@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAEHAAUSKeeperEntry@CBlackboardFactory@@@Z ; has WINAPI (@4)
82; public: int __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::Add(struct CBlackboardFactory::SKeeperEntry &,unsigned int &)
83?Add@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAEHAAUSKeeperEntry@CBlackboardFactory@@AAI@Z ; has WINAPI (@8)
84; public: int __thiscall <unsigned __int64,unsigned __int64 *>::Add(unsigned __int64 &)
85?Add@?$CDynamicArray@_KPA_K@@QAEHAA_K@Z ; has WINAPI (@4)
86; public: unsigned short &__thiscall <unsigned short,unsigned short *>::ElementAt(unsigned int)
87?ElementAt@?$CDynamicArray@GPAG@@QAEAAGI@Z ; has WINAPI (@4)
88; public: struct CBlackboardFactory::SKeeperEntry &__thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::ElementAt(unsigned int)
89?ElementAt@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAEAAUSKeeperEntry@CBlackboardFactory@@I@Z ; has WINAPI (@4)
90; public: unsigned char *__thiscall <unsigned char,unsigned char *>::GetBuffer(unsigned int)
91?GetBuffer@?$CDynamicArray@EPAE@@QAEPAEI@Z ; has WINAPI (@4)
92; public: struct SValue *__thiscall <unsigned char,struct SValue *>::GetBuffer(unsigned int)
93?GetBuffer@?$CDynamicArray@EPAUSValue@@@@QAEPAUSValue@@I@Z ; has WINAPI (@4)
94; public: unsigned short *__thiscall <unsigned short,unsigned short *>::GetBuffer(unsigned int)
95?GetBuffer@?$CDynamicArray@GPAG@@QAEPAGI@Z ; has WINAPI (@4)
96; public: unsigned int __thiscall <unsigned char,unsigned char *>::GetSize(void)const
97?GetSize@?$CDynamicArray@EPAE@@QBEIXZ
98; public: unsigned int __thiscall <unsigned short,unsigned short *>::GetSize(void)const
99?GetSize@?$CDynamicArray@GPAG@@QBEIXZ
100; public: unsigned int __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::GetSize(void)const
101?GetSize@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QBEIXZ
102; public: unsigned int __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::GetSize(void)const
103?GetSize@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QBEIXZ
104; public: unsigned int __thiscall <unsigned __int64,unsigned __int64 *>::GetSize(void)const
105?GetSize@?$CDynamicArray@_KPA_K@@QBEIXZ
106; protected: void __thiscall <unsigned char,unsigned char *>::Init(unsigned int)
107?Init@?$CDynamicArray@EPAE@@IAEXI@Z ; has WINAPI (@4)
108; protected: void __thiscall <unsigned char,struct SKey *>::Init(unsigned int)
109?Init@?$CDynamicArray@EPAUSKey@@@@IAEXI@Z ; has WINAPI (@4)
110; protected: void __thiscall <unsigned char,struct SValue *>::Init(unsigned int)
111?Init@?$CDynamicArray@EPAUSValue@@@@IAEXI@Z ; has WINAPI (@4)
112; protected: void __thiscall <unsigned short,unsigned short *>::Init(unsigned int)
113?Init@?$CDynamicArray@GPAG@@IAEXI@Z ; has WINAPI (@4)
114; protected: void __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::Init(unsigned int)
115?Init@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@IAEXI@Z ; has WINAPI (@4)
116; protected: void __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::Init(unsigned int)
117?Init@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@IAEXI@Z ; has WINAPI (@4)
118; protected: void __thiscall <unsigned __int64,unsigned __int64 *>::Init(unsigned int)
119?Init@?$CDynamicArray@_KPA_K@@IAEXI@Z ; has WINAPI (@4)
120; public: void __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::RemoveAll(void)
121?RemoveAll@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAEXXZ
122; public: void __thiscall <unsigned __int64,unsigned __int64 *>::RemoveAll(void)
123?RemoveAll@?$CDynamicArray@_KPA_K@@QAEXXZ
124; public: void __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::RemoveItemFromTail(void)
125?RemoveItemFromTail@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAEXXZ
126; public: int __thiscall <unsigned char,unsigned char *>::SetSize(unsigned long)
127?SetSize@?$CDynamicArray@EPAE@@QAEHK@Z ; has WINAPI (@4)
128; public: int __thiscall <unsigned char,struct SKey *>::SetSize(unsigned long)
129?SetSize@?$CDynamicArray@EPAUSKey@@@@QAEHK@Z ; has WINAPI (@4)
130; public: int __thiscall <unsigned char,struct SValue *>::SetSize(unsigned long)
131?SetSize@?$CDynamicArray@EPAUSValue@@@@QAEHK@Z ; has WINAPI (@4)
132; public: int __thiscall <unsigned short,unsigned short *>::SetSize(unsigned long)
133?SetSize@?$CDynamicArray@GPAG@@QAEHK@Z ; has WINAPI (@4)
134; public: int __thiscall <struct SEnumBinContext *,struct SEnumBinContext **>::SetSize(unsigned long)
135?SetSize@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAEHK@Z ; has WINAPI (@4)
136; public: int __thiscall <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *>::SetSize(unsigned long)
137?SetSize@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAEHK@Z ; has WINAPI (@4)
138; public: int __thiscall <unsigned __int64,unsigned __int64 *>::SetSize(unsigned long)
139?SetSize@?$CDynamicArray@_KPA_K@@QAEHK@Z ; has WINAPI (@4)
140WdsGetPointer@4
141g_Kernel32 DATA
142g_bEnableDiagnosticMode DATA
143ConstructPartialMsgIfA
144ConstructPartialMsgIfW
145ConstructPartialMsgVA@12
146ConstructPartialMsgVW@12
147CurrentIP
148EndMajorTask
149EndMinorTask
150GetMajorTask
151GetMajorTaskA
152GetMinorTask
153GetMinorTaskA
154StartMajorTask@4
155StartMinorTask@4
156WdsAbortBlackboardItemEnum@4
157WdsAddModule@16
158WdsAddUsmtLogStack@12
159WdsAllocCollection
160WdsCollectionAddValue@12
161WdsCollectionGetValue@12
162WdsCopyBlackboardItems@16
163WdsCopyBlackboardItemsEx@24
164WdsCreateBlackboard@12
165WdsDeleteBlackboardValue@12
166WdsDeleteEvent@4
167WdsDestroyBlackboard@4
168WdsDuplicateData@8
169WdsEnableDiagnosticMode@4
170WdsEnableExit@4
171WdsEnableExitEx@8
172WdsEnumFirstBlackboardItem@20
173WdsEnumFirstCollectionValue@8
174WdsEnumNextBlackboardItem@4
175WdsEnumNextCollectionValue@4
176WdsExecuteWorkQueue2@24
177WdsExecuteWorkQueue@24
178WdsExecuteWorkQueueEx@28
179WdsExitImmediately@4
180WdsExitImmediatelyEx@8
181WdsFreeCollection@4
182WdsFreeData@4
183WdsGenericSetupLogInit@8
184WdsGetAssertFlags
185WdsGetBlackboardBinaryData@24
186WdsGetBlackboardStringA@20
187WdsGetBlackboardStringW@20
188WdsGetBlackboardUintPtr@16
189WdsGetBlackboardValue@16
190WdsGetCurrentExecutionGroup@8
191WdsGetSetupLog
192WdsGetTempDir@12
193WdsInitialize@28
194WdsInitializeCallbackArray@12
195WdsInitializeDataBinary@12
196WdsInitializeDataStringA@8
197WdsInitializeDataStringW@8
198WdsInitializeDataUInt32@8
199WdsInitializeDataUInt64@12
200WdsIsDiagnosticModeEnabled
201WdsIterateOfflineQueue@28
202WdsIterateQueue@28
203WdsLockBlackboardValue@16
204WdsLockExecutionGroup
205WdsLogCreate@12
206WdsLogDestroy@4
207WdsLogRegStockProviders
208WdsLogRegisterProvider@8
209WdsLogStructuredException@4
210WdsLogUnRegStockProviders
211WdsLogUnRegisterProvider@4
212WdsPackCollection@8
213WdsPublish@24
214WdsPublishEx@28
215WdsPublishImmediateAsync@24
216WdsPublishImmediateEx@20
217WdsPublishOffline@24
218WdsSeqAlloc@8
219WdsSeqFree@4
220WdsSetAssertFlags@4
221WdsSetBlackboardValue@16
222WdsSetNextExecutionGroup@4
223WdsSetUILanguage@4
224WdsSetupLogDestroy
225WdsSetupLogInit@12
226WdsSetupLogMessageA@44
227WdsSetupLogMessageW@44
228WdsSubscribeEx@20
229WdsTerminate
230WdsUnlockExecutionGroup
231WdsUnpackCollection@4
232WdsUnsubscribe@4
233WdsUnsubscribeEx@16
234WdsValidBlackboard@4
lib/libc/mingw/lib32/wdscsl.def created+23
......@@ -0,0 +1,23 @@
1;
2; Definition file of WDSCSL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WDSCSL.dll"
7EXPORTS
8WdsClientExecute@32
9WdsClientInitializeLibrary
10WdsClientPacketAllocate@4
11WdsClientPacketFree@4
12WdsClientRegisterTrace@4
13WdsClientSessionCreate@16
14WdsClientSessionExecute@28
15WdsClientSessionShutdown@4
16WdsCpPacketGetBuffer@12
17WdsCpPacketInitialize@12
18WdsCpPacketRelease@4
19WdsCpParameterAdd@20
20WdsCpParameterDelete@8
21WdsCpParameterQuery@24
22WdsCpParameterValidate@28
23WdsCpRecvPacketInitialize@20
lib/libc/mingw/lib32/wdsimage.def created+81
......@@ -0,0 +1,81 @@
1;
2; Definition file of WdsImage.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WdsImage.dll"
7EXPORTS
8FindFirstImage@8
9FindNextImage@4
10WDSFreeImageInformation@4
11WDSGetImageInformation@8
12WDSInitializeEmptyImageInformation@4
13WDSParseImageInformation@12
14WDSSetImageInformation@8
15WdsImgAddReference@4
16WdsImgApplyImage@20
17WdsImgCaptureImage@40
18WdsImgClose@4
19WdsImgCopyImage@12
20WdsImgCreateImageGroup@20
21WdsImgDeleteImage@4
22WdsImgDeleteImageGroup@4
23WdsImgDeleteUnattendFile@4
24WdsImgExportImage@36
25WdsImgExtractFiles@20
26WdsImgFindFirstImage@16
27WdsImgFindFirstImageGroup@12
28WdsImgFindNextImage@4
29WdsImgFindNextImageGroup@4
30WdsImgGetArchitecture@8
31WdsImgGetBootIndex@8
32WdsImgGetCompressionType@8
33WdsImgGetCreationTime@8
34WdsImgGetDependantFiles@12
35WdsImgGetDescription@8
36WdsImgGetEnabled@8
37WdsImgGetExFlags@8
38WdsImgGetFlags@8
39WdsImgGetHalName@8
40WdsImgGetHandleFromFindHandle@8
41WdsImgGetImageType@8
42WdsImgGetIndex@8
43WdsImgGetLanguage@8
44WdsImgGetLanguages@12
45WdsImgGetLastModifiedTime@8
46WdsImgGetName@8
47WdsImgGetPartitionStyle@8
48WdsImgGetPath@8
49WdsImgGetProductFamily@8
50WdsImgGetProductName@8
51WdsImgGetResourcePath@8
52WdsImgGetSecurity@8
53WdsImgGetServicePackLevel@8
54WdsImgGetSize@8
55WdsImgGetSystemRoot@8
56WdsImgGetUnattendFilePresent@8
57WdsImgGetVersion@8
58WdsImgGetXml@8
59WdsImgGroupCanImportImage@8
60WdsImgGroupGetName@8
61WdsImgGroupGetSecurity@8
62WdsImgGroupSetName@8
63WdsImgGroupSetSecurity@8
64WdsImgImportImage@32
65WdsImgIsAccessible@8
66WdsImgIsBootImage@8
67WdsImgIsFoundationImage@8
68WdsImgIsValidImageFile@8
69WdsImgOpenBootImageGroup@12
70WdsImgOpenImage@16
71WdsImgOpenImageGroup@12
72WdsImgOpenImageStore@8
73WdsImgRefreshData@4
74WdsImgReplaceImage@32
75WdsImgSetBootImage@8
76WdsImgSetDescription@8
77WdsImgSetEnabled@8
78WdsImgSetName@8
79WdsImgSetSecurity@8
80WdsImgSetUnattendFile@12
81WdsImgVerifyImageFile@8
lib/libc/mingw/lib32/wdsupgcompl.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WdsUpgCompl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WdsUpgCompl.dll"
7EXPORTS
8WdsUpgradeComplianceCheck@8
lib/libc/mingw/lib32/wdsutil.def created+525
......@@ -0,0 +1,525 @@
1;
2; Definition file of WDSUTIL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WDSUTIL.dll"
7EXPORTS
8; public: __thiscall <class CStringUserSetting>::<class CStringUserSetting>(class <class CStringUserSetting> const &)
9??0?$CShimUserSetting@VCStringUserSetting@@@@QAE@ABV0@@Z ; has WINAPI (@4)
10; public: __thiscall <class CStringUserSetting>::<class CStringUserSetting>(void)
11??0?$CShimUserSetting@VCStringUserSetting@@@@QAE@XZ
12; public: __thiscall <class CUInt32UserSetting>::<class CUInt32UserSetting>(class <class CUInt32UserSetting> const &)
13??0?$CShimUserSetting@VCUInt32UserSetting@@@@QAE@ABV0@@Z ; has WINAPI (@4)
14; public: __thiscall <class CUInt32UserSetting>::<class CUInt32UserSetting>(void)
15??0?$CShimUserSetting@VCUInt32UserSetting@@@@QAE@XZ
16; public: __thiscall <class CUInt64UserSetting>::<class CUInt64UserSetting>(class <class CUInt64UserSetting> const &)
17??0?$CShimUserSetting@VCUInt64UserSetting@@@@QAE@ABV0@@Z ; has WINAPI (@4)
18; public: __thiscall <class CUInt64UserSetting>::<class CUInt64UserSetting>(void)
19??0?$CShimUserSetting@VCUInt64UserSetting@@@@QAE@XZ
20; public: __thiscall CComputerNameSetting::CComputerNameSetting(class CComputerNameSetting const &)
21??0CComputerNameSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
22; public: __thiscall CComputerNameSetting::CComputerNameSetting(void)
23??0CComputerNameSetting@@QAE@XZ
24; public: __thiscall CDUUIProgressSetting::CDUUIProgressSetting(class CDUUIProgressSetting const &)
25??0CDUUIProgressSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
26; public: __thiscall CDUUIProgressSetting::CDUUIProgressSetting(void)
27??0CDUUIProgressSetting@@QAE@XZ
28; public: __thiscall CDUUIWelcomeSetting::CDUUIWelcomeSetting(class CDUUIWelcomeSetting const &)
29??0CDUUIWelcomeSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
30; public: __thiscall CDUUIWelcomeSetting::CDUUIWelcomeSetting(void)
31??0CDUUIWelcomeSetting@@QAE@XZ
32; public: __thiscall CDiskPartFileSystemUserSetting::CDiskPartFileSystemUserSetting(class CDiskPartFileSystemUserSetting const &)
33??0CDiskPartFileSystemUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
34; public: __thiscall CDiskPartFileSystemUserSetting::CDiskPartFileSystemUserSetting(void)
35??0CDiskPartFileSystemUserSetting@@QAE@XZ
36; public: __thiscall CDiskPartFormatUserSetting::CDiskPartFormatUserSetting(class CDiskPartFormatUserSetting const &)
37??0CDiskPartFormatUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
38; public: __thiscall CDiskPartFormatUserSetting::CDiskPartFormatUserSetting(void)
39??0CDiskPartFormatUserSetting@@QAE@XZ
40; public: __thiscall CDiskPartUserSetting::CDiskPartUserSetting(class CDiskPartUserSetting const &)
41??0CDiskPartUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
42; public: __thiscall CDiskPartUserSetting::CDiskPartUserSetting(void)
43??0CDiskPartUserSetting@@QAE@XZ
44; public: __thiscall CEulaSetting::CEulaSetting(class CEulaSetting const &)
45??0CEulaSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
46; public: __thiscall CEulaSetting::CEulaSetting(void)
47??0CEulaSetting@@QAE@XZ
48; public: __thiscall CIBSUIImageSelectionSetting::CIBSUIImageSelectionSetting(class CIBSUIImageSelectionSetting const &)
49??0CIBSUIImageSelectionSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
50; public: __thiscall CIBSUIImageSelectionSetting::CIBSUIImageSelectionSetting(void)
51??0CIBSUIImageSelectionSetting@@QAE@XZ
52; public: __thiscall CKeyboardSetting::CKeyboardSetting(class CKeyboardSetting const &)
53??0CKeyboardSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
54; public: __thiscall CKeyboardSetting::CKeyboardSetting(void)
55??0CKeyboardSetting@@QAE@XZ
56; public: __thiscall COOBEUIFinishSetting::COOBEUIFinishSetting(class COOBEUIFinishSetting const &)
57??0COOBEUIFinishSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
58; public: __thiscall COOBEUIFinishSetting::COOBEUIFinishSetting(void)
59??0COOBEUIFinishSetting@@QAE@XZ
60; public: __thiscall COOBEUIWelcomeSetting::COOBEUIWelcomeSetting(class COOBEUIWelcomeSetting const &)
61??0COOBEUIWelcomeSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
62; public: __thiscall COOBEUIWelcomeSetting::COOBEUIWelcomeSetting(void)
63??0COOBEUIWelcomeSetting@@QAE@XZ
64; public: __thiscall CProductKeyUserSetting::CProductKeyUserSetting(class CProductKeyUserSetting const &)
65??0CProductKeyUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
66; public: __thiscall CProductKeyUserSetting::CProductKeyUserSetting(void)
67??0CProductKeyUserSetting@@QAE@XZ
68; public: __thiscall CSetupUISummarySetting::CSetupUISummarySetting(class CSetupUISummarySetting const &)
69??0CSetupUISummarySetting@@QAE@ABV0@@Z ; has WINAPI (@4)
70; public: __thiscall CSetupUISummarySetting::CSetupUISummarySetting(void)
71??0CSetupUISummarySetting@@QAE@XZ
72; public: __thiscall CSetupUIWelcomeSetting::CSetupUIWelcomeSetting(class CSetupUIWelcomeSetting const &)
73??0CSetupUIWelcomeSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
74; public: __thiscall CSetupUIWelcomeSetting::CSetupUIWelcomeSetting(void)
75??0CSetupUIWelcomeSetting@@QAE@XZ
76; public: __thiscall CShimStringUserSetting::CShimStringUserSetting(class CShimStringUserSetting const &)
77??0CShimStringUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
78; public: __thiscall CShimStringUserSetting::CShimStringUserSetting(void)
79??0CShimStringUserSetting@@QAE@XZ
80; public: __thiscall CShimUInt32UserSetting::CShimUInt32UserSetting(class CShimUInt32UserSetting const &)
81??0CShimUInt32UserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
82; public: __thiscall CShimUInt32UserSetting::CShimUInt32UserSetting(void)
83??0CShimUInt32UserSetting@@QAE@XZ
84; public: __thiscall CShimUInt64UserSetting::CShimUInt64UserSetting(class CShimUInt64UserSetting const &)
85??0CShimUInt64UserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
86; public: __thiscall CShimUInt64UserSetting::CShimUInt64UserSetting(void)
87??0CShimUInt64UserSetting@@QAE@XZ
88; protected: __thiscall CShowFlagUserSetting::CShowFlagUserSetting(void)
89??0CShowFlagUserSetting@@IAE@XZ
90; public: __thiscall CShowFlagUserSetting::CShowFlagUserSetting(class CShowFlagUserSetting const &)
91??0CShowFlagUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
92; public: __thiscall CSimpleStringUserSetting::CSimpleStringUserSetting(class CSimpleStringUserSetting const &)
93??0CSimpleStringUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
94; public: __thiscall CSimpleStringUserSetting::CSimpleStringUserSetting(void)
95??0CSimpleStringUserSetting@@QAE@XZ
96; public: __thiscall CSimpleUInt32UserSetting::CSimpleUInt32UserSetting(class CSimpleUInt32UserSetting const &)
97??0CSimpleUInt32UserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
98; public: __thiscall CSimpleUInt32UserSetting::CSimpleUInt32UserSetting(void)
99??0CSimpleUInt32UserSetting@@QAE@XZ
100; public: __thiscall CSimpleUInt64UserSetting::CSimpleUInt64UserSetting(class CSimpleUInt64UserSetting const &)
101??0CSimpleUInt64UserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
102; public: __thiscall CSimpleUInt64UserSetting::CSimpleUInt64UserSetting(void)
103??0CSimpleUInt64UserSetting@@QAE@XZ
104; protected: __thiscall CStringUserSetting::CStringUserSetting(void)
105??0CStringUserSetting@@IAE@XZ
106; public: __thiscall CStringUserSetting::CStringUserSetting(class CStringUserSetting const &)
107??0CStringUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
108; public: __thiscall CTimezoneSetting::CTimezoneSetting(class CTimezoneSetting const &)
109??0CTimezoneSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
110; public: __thiscall CTimezoneSetting::CTimezoneSetting(void)
111??0CTimezoneSetting@@QAE@XZ
112; protected: __thiscall CUInt32UserSetting::CUInt32UserSetting(void)
113??0CUInt32UserSetting@@IAE@XZ
114; public: __thiscall CUInt32UserSetting::CUInt32UserSetting(class CUInt32UserSetting const &)
115??0CUInt32UserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
116; protected: __thiscall CUInt64UserSetting::CUInt64UserSetting(void)
117??0CUInt64UserSetting@@IAE@XZ
118; public: __thiscall CUInt64UserSetting::CUInt64UserSetting(class CUInt64UserSetting const &)
119??0CUInt64UserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
120; public: __thiscall CUpgStoreUserSetting::CUpgStoreUserSetting(class CUpgStoreUserSetting const &)
121??0CUpgStoreUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
122; public: __thiscall CUpgStoreUserSetting::CUpgStoreUserSetting(void)
123??0CUpgStoreUserSetting@@QAE@XZ
124; public: __thiscall CUpgradeUserSetting::CUpgradeUserSetting(class CUpgradeUserSetting const &)
125??0CUpgradeUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
126; public: __thiscall CUpgradeUserSetting::CUpgradeUserSetting(void)
127??0CUpgradeUserSetting@@QAE@XZ
128; public: __thiscall CUserSetting::CUserSetting(class CUserSetting const &)
129??0CUserSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
130; public: __thiscall CUserSetting::CUserSetting(void)
131??0CUserSetting@@QAE@XZ
132; public: __thiscall CWDSUIImageSelectionSetting::CWDSUIImageSelectionSetting(class CWDSUIImageSelectionSetting const &)
133??0CWDSUIImageSelectionSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
134; public: __thiscall CWDSUIImageSelectionSetting::CWDSUIImageSelectionSetting(void)
135??0CWDSUIImageSelectionSetting@@QAE@XZ
136; public: __thiscall CWDSUIWelcomeSetting::CWDSUIWelcomeSetting(class CWDSUIWelcomeSetting const &)
137??0CWDSUIWelcomeSetting@@QAE@ABV0@@Z ; has WINAPI (@4)
138; public: __thiscall CWDSUIWelcomeSetting::CWDSUIWelcomeSetting(void)
139??0CWDSUIWelcomeSetting@@QAE@XZ
140; public: __thiscall <class CStringUserSetting>::~<class CStringUserSetting>(void)
141??1?$CShimUserSetting@VCStringUserSetting@@@@QAE@XZ
142; public: __thiscall <class CUInt32UserSetting>::~<class CUInt32UserSetting>(void)
143??1?$CShimUserSetting@VCUInt32UserSetting@@@@QAE@XZ
144; public: __thiscall <class CUInt64UserSetting>::~<class CUInt64UserSetting>(void)
145??1?$CShimUserSetting@VCUInt64UserSetting@@@@QAE@XZ
146; public: __thiscall CComputerNameSetting::~CComputerNameSetting(void)
147??1CComputerNameSetting@@QAE@XZ
148; public: __thiscall CDUUIProgressSetting::~CDUUIProgressSetting(void)
149??1CDUUIProgressSetting@@QAE@XZ
150; public: __thiscall CDUUIWelcomeSetting::~CDUUIWelcomeSetting(void)
151??1CDUUIWelcomeSetting@@QAE@XZ
152; public: __thiscall CDiskPartFileSystemUserSetting::~CDiskPartFileSystemUserSetting(void)
153??1CDiskPartFileSystemUserSetting@@QAE@XZ
154; public: __thiscall CDiskPartFormatUserSetting::~CDiskPartFormatUserSetting(void)
155??1CDiskPartFormatUserSetting@@QAE@XZ
156; public: __thiscall CDiskPartUserSetting::~CDiskPartUserSetting(void)
157??1CDiskPartUserSetting@@QAE@XZ
158; public: __thiscall CEulaSetting::~CEulaSetting(void)
159??1CEulaSetting@@QAE@XZ
160; public: __thiscall CIBSUIImageSelectionSetting::~CIBSUIImageSelectionSetting(void)
161??1CIBSUIImageSelectionSetting@@QAE@XZ
162; public: __thiscall CKeyboardSetting::~CKeyboardSetting(void)
163??1CKeyboardSetting@@QAE@XZ
164; public: __thiscall COOBEUIFinishSetting::~COOBEUIFinishSetting(void)
165??1COOBEUIFinishSetting@@QAE@XZ
166; public: __thiscall COOBEUIWelcomeSetting::~COOBEUIWelcomeSetting(void)
167??1COOBEUIWelcomeSetting@@QAE@XZ
168; public: __thiscall CProductKeyUserSetting::~CProductKeyUserSetting(void)
169??1CProductKeyUserSetting@@QAE@XZ
170; public: __thiscall CSetupUISummarySetting::~CSetupUISummarySetting(void)
171??1CSetupUISummarySetting@@QAE@XZ
172; public: __thiscall CSetupUIWelcomeSetting::~CSetupUIWelcomeSetting(void)
173??1CSetupUIWelcomeSetting@@QAE@XZ
174; public: __thiscall CShimStringUserSetting::~CShimStringUserSetting(void)
175??1CShimStringUserSetting@@QAE@XZ
176; public: __thiscall CShimUInt32UserSetting::~CShimUInt32UserSetting(void)
177??1CShimUInt32UserSetting@@QAE@XZ
178; public: __thiscall CShimUInt64UserSetting::~CShimUInt64UserSetting(void)
179??1CShimUInt64UserSetting@@QAE@XZ
180; protected: __thiscall CShowFlagUserSetting::~CShowFlagUserSetting(void)
181??1CShowFlagUserSetting@@IAE@XZ
182; public: __thiscall CSimpleStringUserSetting::~CSimpleStringUserSetting(void)
183??1CSimpleStringUserSetting@@QAE@XZ
184; public: __thiscall CSimpleUInt32UserSetting::~CSimpleUInt32UserSetting(void)
185??1CSimpleUInt32UserSetting@@QAE@XZ
186; public: __thiscall CSimpleUInt64UserSetting::~CSimpleUInt64UserSetting(void)
187??1CSimpleUInt64UserSetting@@QAE@XZ
188; protected: __thiscall CStringUserSetting::~CStringUserSetting(void)
189??1CStringUserSetting@@IAE@XZ
190; public: __thiscall CTimezoneSetting::~CTimezoneSetting(void)
191??1CTimezoneSetting@@QAE@XZ
192; protected: __thiscall CUInt32UserSetting::~CUInt32UserSetting(void)
193??1CUInt32UserSetting@@IAE@XZ
194; protected: __thiscall CUInt64UserSetting::~CUInt64UserSetting(void)
195??1CUInt64UserSetting@@IAE@XZ
196; public: __thiscall CUpgStoreUserSetting::~CUpgStoreUserSetting(void)
197??1CUpgStoreUserSetting@@QAE@XZ
198; public: __thiscall CUpgradeUserSetting::~CUpgradeUserSetting(void)
199??1CUpgradeUserSetting@@QAE@XZ
200; public: __thiscall CUserSetting::~CUserSetting(void)
201??1CUserSetting@@QAE@XZ
202; public: __thiscall CWDSUIImageSelectionSetting::~CWDSUIImageSelectionSetting(void)
203??1CWDSUIImageSelectionSetting@@QAE@XZ
204; public: __thiscall CWDSUIWelcomeSetting::~CWDSUIWelcomeSetting(void)
205??1CWDSUIWelcomeSetting@@QAE@XZ
206; public: class <class CStringUserSetting> &__thiscall <class CStringUserSetting>::operator =(class <class CStringUserSetting> const &)
207??4?$CShimUserSetting@VCStringUserSetting@@@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
208; public: class <class CUInt32UserSetting> &__thiscall <class CUInt32UserSetting>::operator =(class <class CUInt32UserSetting> const &)
209??4?$CShimUserSetting@VCUInt32UserSetting@@@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
210; public: class <class CUInt64UserSetting> &__thiscall <class CUInt64UserSetting>::operator =(class <class CUInt64UserSetting> const &)
211??4?$CShimUserSetting@VCUInt64UserSetting@@@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
212; public: class CComputerNameSetting &__thiscall CComputerNameSetting::operator =(class CComputerNameSetting const &)
213??4CComputerNameSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
214; public: class CDUUIProgressSetting &__thiscall CDUUIProgressSetting::operator =(class CDUUIProgressSetting const &)
215??4CDUUIProgressSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
216; public: class CDUUIWelcomeSetting &__thiscall CDUUIWelcomeSetting::operator =(class CDUUIWelcomeSetting const &)
217??4CDUUIWelcomeSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
218; public: class CDiskPartFileSystemUserSetting &__thiscall CDiskPartFileSystemUserSetting::operator =(class CDiskPartFileSystemUserSetting const &)
219??4CDiskPartFileSystemUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
220; public: class CDiskPartFormatUserSetting &__thiscall CDiskPartFormatUserSetting::operator =(class CDiskPartFormatUserSetting const &)
221??4CDiskPartFormatUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
222; public: class CDiskPartUserSetting &__thiscall CDiskPartUserSetting::operator =(class CDiskPartUserSetting const &)
223??4CDiskPartUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
224; public: class CEulaSetting &__thiscall CEulaSetting::operator =(class CEulaSetting const &)
225??4CEulaSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
226; public: class CIBSUIImageSelectionSetting &__thiscall CIBSUIImageSelectionSetting::operator =(class CIBSUIImageSelectionSetting const &)
227??4CIBSUIImageSelectionSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
228; public: class CKeyboardSetting &__thiscall CKeyboardSetting::operator =(class CKeyboardSetting const &)
229??4CKeyboardSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
230; public: class COOBEUIFinishSetting &__thiscall COOBEUIFinishSetting::operator =(class COOBEUIFinishSetting const &)
231??4COOBEUIFinishSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
232; public: class COOBEUIWelcomeSetting &__thiscall COOBEUIWelcomeSetting::operator =(class COOBEUIWelcomeSetting const &)
233??4COOBEUIWelcomeSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
234; public: class CProductKeyUserSetting &__thiscall CProductKeyUserSetting::operator =(class CProductKeyUserSetting const &)
235??4CProductKeyUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
236; public: class CSetupUISummarySetting &__thiscall CSetupUISummarySetting::operator =(class CSetupUISummarySetting const &)
237??4CSetupUISummarySetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
238; public: class CSetupUIWelcomeSetting &__thiscall CSetupUIWelcomeSetting::operator =(class CSetupUIWelcomeSetting const &)
239??4CSetupUIWelcomeSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
240; public: class CShimStringUserSetting &__thiscall CShimStringUserSetting::operator =(class CShimStringUserSetting const &)
241??4CShimStringUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
242; public: class CShimUInt32UserSetting &__thiscall CShimUInt32UserSetting::operator =(class CShimUInt32UserSetting const &)
243??4CShimUInt32UserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
244; public: class CShimUInt64UserSetting &__thiscall CShimUInt64UserSetting::operator =(class CShimUInt64UserSetting const &)
245??4CShimUInt64UserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
246; public: class CShowFlagUserSetting &__thiscall CShowFlagUserSetting::operator =(class CShowFlagUserSetting const &)
247??4CShowFlagUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
248; public: class CSimpleStringUserSetting &__thiscall CSimpleStringUserSetting::operator =(class CSimpleStringUserSetting const &)
249??4CSimpleStringUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
250; public: class CSimpleUInt32UserSetting &__thiscall CSimpleUInt32UserSetting::operator =(class CSimpleUInt32UserSetting const &)
251??4CSimpleUInt32UserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
252; public: class CSimpleUInt64UserSetting &__thiscall CSimpleUInt64UserSetting::operator =(class CSimpleUInt64UserSetting const &)
253??4CSimpleUInt64UserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
254; public: class CStringUserSetting &__thiscall CStringUserSetting::operator =(class CStringUserSetting const &)
255??4CStringUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
256; public: class CTimezoneSetting &__thiscall CTimezoneSetting::operator =(class CTimezoneSetting const &)
257??4CTimezoneSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
258; public: class CUInt32UserSetting &__thiscall CUInt32UserSetting::operator =(class CUInt32UserSetting const &)
259??4CUInt32UserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
260; public: class CUInt64UserSetting &__thiscall CUInt64UserSetting::operator =(class CUInt64UserSetting const &)
261??4CUInt64UserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
262; public: class CUpgStoreUserSetting &__thiscall CUpgStoreUserSetting::operator =(class CUpgStoreUserSetting const &)
263??4CUpgStoreUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
264; public: class CUpgradeUserSetting &__thiscall CUpgradeUserSetting::operator =(class CUpgradeUserSetting const &)
265??4CUpgradeUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
266; public: class CUserSetting &__thiscall CUserSetting::operator =(class CUserSetting const &)
267??4CUserSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
268; public: class CWDSUIImageSelectionSetting &__thiscall CWDSUIImageSelectionSetting::operator =(class CWDSUIImageSelectionSetting const &)
269??4CWDSUIImageSelectionSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
270; public: class CWDSUIWelcomeSetting &__thiscall CWDSUIWelcomeSetting::operator =(class CWDSUIWelcomeSetting const &)
271??4CWDSUIWelcomeSetting@@QAEAAV0@ABV0@@Z ; has WINAPI (@4)
272; const <class CStringUserSetting>::$vftable
273??_7?$CShimUserSetting@VCStringUserSetting@@@@6B@ DATA
274; const <class CUInt32UserSetting>::$vftable
275??_7?$CShimUserSetting@VCUInt32UserSetting@@@@6B@ DATA
276; const <class CUInt64UserSetting>::$vftable
277??_7?$CShimUserSetting@VCUInt64UserSetting@@@@6B@ DATA
278; const CComputerNameSetting::$vftable
279??_7CComputerNameSetting@@6B@ DATA
280; const CDUUIProgressSetting::$vftable
281??_7CDUUIProgressSetting@@6B@ DATA
282; const CDUUIWelcomeSetting::$vftable
283??_7CDUUIWelcomeSetting@@6B@ DATA
284; const CDiskPartFileSystemUserSetting::$vftable
285??_7CDiskPartFileSystemUserSetting@@6B@ DATA
286; const CDiskPartFormatUserSetting::$vftable
287??_7CDiskPartFormatUserSetting@@6B@ DATA
288; const CDiskPartUserSetting::$vftable
289??_7CDiskPartUserSetting@@6B@ DATA
290; const CEulaSetting::$vftable
291??_7CEulaSetting@@6B@ DATA
292; const CIBSUIImageSelectionSetting::$vftable
293??_7CIBSUIImageSelectionSetting@@6B@ DATA
294; const CKeyboardSetting::$vftable
295??_7CKeyboardSetting@@6B@ DATA
296; const COOBEUIFinishSetting::$vftable
297??_7COOBEUIFinishSetting@@6B@ DATA
298; const COOBEUIWelcomeSetting::$vftable
299??_7COOBEUIWelcomeSetting@@6B@ DATA
300; const CProductKeyUserSetting::$vftable
301??_7CProductKeyUserSetting@@6B@ DATA
302; const CSetupUISummarySetting::$vftable
303??_7CSetupUISummarySetting@@6B@ DATA
304; const CSetupUIWelcomeSetting::$vftable
305??_7CSetupUIWelcomeSetting@@6B@ DATA
306; const CShimStringUserSetting::$vftable
307??_7CShimStringUserSetting@@6B@ DATA
308; const CShimUInt32UserSetting::$vftable
309??_7CShimUInt32UserSetting@@6B@ DATA
310; const CShimUInt64UserSetting::$vftable
311??_7CShimUInt64UserSetting@@6B@ DATA
312; const CShowFlagUserSetting::$vftable
313??_7CShowFlagUserSetting@@6B@ DATA
314; const CSimpleStringUserSetting::$vftable
315??_7CSimpleStringUserSetting@@6B@ DATA
316; const CSimpleUInt32UserSetting::$vftable
317??_7CSimpleUInt32UserSetting@@6B@ DATA
318; const CSimpleUInt64UserSetting::$vftable
319??_7CSimpleUInt64UserSetting@@6B@ DATA
320; const CStringUserSetting::$vftable
321??_7CStringUserSetting@@6B@ DATA
322; const CTimezoneSetting::$vftable
323??_7CTimezoneSetting@@6B@ DATA
324; const CUInt32UserSetting::$vftable
325??_7CUInt32UserSetting@@6B@ DATA
326; const CUInt64UserSetting::$vftable
327??_7CUInt64UserSetting@@6B@ DATA
328; const CUpgStoreUserSetting::$vftable
329??_7CUpgStoreUserSetting@@6B@ DATA
330; const CUpgradeUserSetting::$vftable
331??_7CUpgradeUserSetting@@6B@ DATA
332; const CUserSetting::$vftable
333??_7CUserSetting@@6B@ DATA
334; const CWDSUIImageSelectionSetting::$vftable
335??_7CWDSUIImageSelectionSetting@@6B@ DATA
336; const CWDSUIWelcomeSetting::$vftable
337??_7CWDSUIWelcomeSetting@@6B@ DATA
338; protected: void __thiscall CUserSetting::AcquireMutex(void)
339?AcquireMutex@CUserSetting@@IAEXXZ
340; protected: long __thiscall CUserSetting::DeserializeField(unsigned short const *,unsigned int,struct WDS_DATA *,int)
341?DeserializeField@CUserSetting@@IAEJPBGIPAUWDS_DATA@@H@Z ; has WINAPI (@16)
342; protected: long __thiscall CStringUserSetting::DeserializeString(unsigned short **,int)
343?DeserializeString@CStringUserSetting@@IAEJPAPAGH@Z ; has WINAPI (@8)
344; protected: long __thiscall CUInt32UserSetting::DeserializeUInt32(unsigned int *,int)
345?DeserializeUInt32@CUInt32UserSetting@@IAEJPAIH@Z ; has WINAPI (@8)
346; protected: long __thiscall CUInt64UserSetting::DeserializeUInt64(unsigned __int64 *,int)
347?DeserializeUInt64@CUInt64UserSetting@@IAEJPA_KH@Z ; has WINAPI (@8)
348DiskRegionSupportsCapabilityForType@28
349DiskSupportsCapabilityForType@20
350FreeReason@4
351GetApplicableDiskReason@20
352GetApplicableDiskRegionReason@28
353; protected: struct _BLACKBOARD *__thiscall CUserSetting::GetBlackboard(void)
354?GetBlackboard@CUserSetting@@IAEPAU_BLACKBOARD@@XZ
355GetDiskKey@8
356; protected: long __thiscall CUserSetting::GetKeyName(unsigned short *,int,int)
357?GetKeyName@CUserSetting@@IAEJPAGHH@Z ; has WINAPI (@12)
358; public: void *__thiscall CUserSetting::GetModuleId(void)
359?GetModuleId@CUserSetting@@QAEPAXXZ
360GetRegionKey@16
361; public: static int __stdcall CUpgradeUserSetting::IsUpgrade(void)
362?IsUpgrade@CUpgradeUserSetting@@SGHXZ
363LogDiskReasons@8
364LogDiskRegionReasons@16
365; protected: long __thiscall CUserSetting::ReadError(long *,int)
366?ReadError@CUserSetting@@IAEJPAJH@Z ; has WINAPI (@8)
367; protected: long __thiscall CUserSetting::ReadShow(int *,int)
368?ReadShow@CUserSetting@@IAEJPAHH@Z ; has WINAPI (@8)
369; protected: void __thiscall CUserSetting::ReleaseMutex(void)
370?ReleaseMutex@CUserSetting@@IAEXXZ
371; protected: void __thiscall CUserSetting::SerializeField(unsigned short const *,struct WDS_DATA *)
372?SerializeField@CUserSetting@@IAEXPBGPAUWDS_DATA@@@Z ; has WINAPI (@8)
373; protected: void __thiscall CStringUserSetting::SerializeString(unsigned short const *)
374?SerializeString@CStringUserSetting@@IAEXPBG@Z ; has WINAPI (@4)
375; protected: void __thiscall CUInt32UserSetting::SerializeUInt32(unsigned int)
376?SerializeUInt32@CUInt32UserSetting@@IAEXI@Z ; has WINAPI (@4)
377; protected: void __thiscall CUInt64UserSetting::SerializeUInt64(unsigned __int64)
378?SerializeUInt64@CUInt64UserSetting@@IAEX_K@Z ; has WINAPI (@8)
379; public: void __thiscall CUserSetting::SetModuleId(void *)
380?SetModuleId@CUserSetting@@QAEXPAX@Z ; has WINAPI (@4)
381; protected: long __thiscall CStringUserSetting::Simple_get_String(unsigned short **)
382?Simple_get_String@CStringUserSetting@@IAEJPAPAG@Z ; has WINAPI (@4)
383; protected: long __thiscall CUInt32UserSetting::Simple_get_UInt32(unsigned int *)
384?Simple_get_UInt32@CUInt32UserSetting@@IAEJPAI@Z ; has WINAPI (@4)
385; protected: long __thiscall CUInt64UserSetting::Simple_get_UInt64(unsigned __int64 *)
386?Simple_get_UInt64@CUInt64UserSetting@@IAEJPA_K@Z ; has WINAPI (@4)
387; protected: long __thiscall CStringUserSetting::Simple_set_String(unsigned short const *)
388?Simple_set_String@CStringUserSetting@@IAEJPBG@Z ; has WINAPI (@4)
389; protected: long __thiscall CUInt32UserSetting::Simple_set_UInt32(unsigned int)
390?Simple_set_UInt32@CUInt32UserSetting@@IAEJI@Z ; has WINAPI (@4)
391; protected: long __thiscall CUInt64UserSetting::Simple_set_UInt64(unsigned __int64)
392?Simple_set_UInt64@CUInt64UserSetting@@IAEJ_K@Z ; has WINAPI (@8)
393; public: static int __stdcall CUpgradeUserSetting::UnattendChecked(void)
394?UnattendChecked@CUpgradeUserSetting@@SGHXZ
395; protected: static unsigned short const *const const CUserSetting::c_stErrorName
396?c_stErrorName@CUserSetting@@1QBGB DATA
397; protected: static unsigned short const *const const CUserSetting::c_stMutex
398?c_stMutex@CUserSetting@@1QBGB DATA
399; protected: static unsigned short const *const const CUserSetting::c_stShowName
400?c_stShowName@CUserSetting@@1QBGB DATA
401; protected: static unsigned short const *const const CUserSetting::c_stValueName
402?c_stValueName@CUserSetting@@1QBGB DATA
403; public: virtual long __thiscall <class CStringUserSetting>::get_Error(long *)
404?get_Error@?$CShimUserSetting@VCStringUserSetting@@@@UAEJPAJ@Z ; has WINAPI (@4)
405; public: virtual long __thiscall <class CUInt32UserSetting>::get_Error(long *)
406?get_Error@?$CShimUserSetting@VCUInt32UserSetting@@@@UAEJPAJ@Z ; has WINAPI (@4)
407; public: virtual long __thiscall <class CUInt64UserSetting>::get_Error(long *)
408?get_Error@?$CShimUserSetting@VCUInt64UserSetting@@@@UAEJPAJ@Z ; has WINAPI (@4)
409; public: virtual long __thiscall CShowFlagUserSetting::get_Error(long *)
410?get_Error@CShowFlagUserSetting@@UAEJPAJ@Z ; has WINAPI (@4)
411; public: virtual long __thiscall CSimpleStringUserSetting::get_Error(long *)
412?get_Error@CSimpleStringUserSetting@@UAEJPAJ@Z ; has WINAPI (@4)
413; public: virtual long __thiscall CSimpleUInt32UserSetting::get_Error(long *)
414?get_Error@CSimpleUInt32UserSetting@@UAEJPAJ@Z ; has WINAPI (@4)
415; public: virtual long __thiscall CSimpleUInt64UserSetting::get_Error(long *)
416?get_Error@CSimpleUInt64UserSetting@@UAEJPAJ@Z ; has WINAPI (@4)
417; private: virtual unsigned short *__thiscall CComputerNameSetting::get_Name(void)
418?get_Name@CComputerNameSetting@@EAEPAGXZ
419; private: virtual unsigned short *__thiscall CDUUIProgressSetting::get_Name(void)
420?get_Name@CDUUIProgressSetting@@EAEPAGXZ
421; private: virtual unsigned short *__thiscall CDUUIWelcomeSetting::get_Name(void)
422?get_Name@CDUUIWelcomeSetting@@EAEPAGXZ
423; private: virtual unsigned short *__thiscall CDiskPartFileSystemUserSetting::get_Name(void)
424?get_Name@CDiskPartFileSystemUserSetting@@EAEPAGXZ
425; private: virtual unsigned short *__thiscall CDiskPartFormatUserSetting::get_Name(void)
426?get_Name@CDiskPartFormatUserSetting@@EAEPAGXZ
427; private: virtual unsigned short *__thiscall CDiskPartUserSetting::get_Name(void)
428?get_Name@CDiskPartUserSetting@@EAEPAGXZ
429; private: virtual unsigned short *__thiscall CEulaSetting::get_Name(void)
430?get_Name@CEulaSetting@@EAEPAGXZ
431; private: virtual unsigned short *__thiscall CIBSUIImageSelectionSetting::get_Name(void)
432?get_Name@CIBSUIImageSelectionSetting@@EAEPAGXZ
433; private: virtual unsigned short *__thiscall CKeyboardSetting::get_Name(void)
434?get_Name@CKeyboardSetting@@EAEPAGXZ
435; private: virtual unsigned short *__thiscall COOBEUIFinishSetting::get_Name(void)
436?get_Name@COOBEUIFinishSetting@@EAEPAGXZ
437; private: virtual unsigned short *__thiscall COOBEUIWelcomeSetting::get_Name(void)
438?get_Name@COOBEUIWelcomeSetting@@EAEPAGXZ
439; private: virtual unsigned short *__thiscall CProductKeyUserSetting::get_Name(void)
440?get_Name@CProductKeyUserSetting@@EAEPAGXZ
441; private: virtual unsigned short *__thiscall CSetupUISummarySetting::get_Name(void)
442?get_Name@CSetupUISummarySetting@@EAEPAGXZ
443; private: virtual unsigned short *__thiscall CSetupUIWelcomeSetting::get_Name(void)
444?get_Name@CSetupUIWelcomeSetting@@EAEPAGXZ
445; private: virtual unsigned short *__thiscall CTimezoneSetting::get_Name(void)
446?get_Name@CTimezoneSetting@@EAEPAGXZ
447; private: virtual unsigned short *__thiscall CUpgStoreUserSetting::get_Name(void)
448?get_Name@CUpgStoreUserSetting@@EAEPAGXZ
449; private: virtual unsigned short *__thiscall CUpgradeUserSetting::get_Name(void)
450?get_Name@CUpgradeUserSetting@@EAEPAGXZ
451; private: virtual unsigned short *__thiscall CWDSUIImageSelectionSetting::get_Name(void)
452?get_Name@CWDSUIImageSelectionSetting@@EAEPAGXZ
453; private: virtual unsigned short *__thiscall CWDSUIWelcomeSetting::get_Name(void)
454?get_Name@CWDSUIWelcomeSetting@@EAEPAGXZ
455; public: virtual long __thiscall <class CStringUserSetting>::get_Show(int *)
456?get_Show@?$CShimUserSetting@VCStringUserSetting@@@@UAEJPAH@Z ; has WINAPI (@4)
457; public: virtual long __thiscall <class CUInt32UserSetting>::get_Show(int *)
458?get_Show@?$CShimUserSetting@VCUInt32UserSetting@@@@UAEJPAH@Z ; has WINAPI (@4)
459; public: virtual long __thiscall <class CUInt64UserSetting>::get_Show(int *)
460?get_Show@?$CShimUserSetting@VCUInt64UserSetting@@@@UAEJPAH@Z ; has WINAPI (@4)
461; public: virtual long __thiscall CComputerNameSetting::get_Show(int *)
462?get_Show@CComputerNameSetting@@UAEJPAH@Z ; has WINAPI (@4)
463; public: virtual long __thiscall CDiskPartUserSetting::get_Show(int *)
464?get_Show@CDiskPartUserSetting@@UAEJPAH@Z ; has WINAPI (@4)
465; public: virtual long __thiscall CShowFlagUserSetting::get_Show(int *)
466?get_Show@CShowFlagUserSetting@@UAEJPAH@Z ; has WINAPI (@4)
467; public: virtual long __thiscall CSimpleStringUserSetting::get_Show(int *)
468?get_Show@CSimpleStringUserSetting@@UAEJPAH@Z ; has WINAPI (@4)
469; public: virtual long __thiscall CSimpleUInt32UserSetting::get_Show(int *)
470?get_Show@CSimpleUInt32UserSetting@@UAEJPAH@Z ; has WINAPI (@4)
471; public: virtual long __thiscall CSimpleUInt64UserSetting::get_Show(int *)
472?get_Show@CSimpleUInt64UserSetting@@UAEJPAH@Z ; has WINAPI (@4)
473; public: virtual long __thiscall CShimStringUserSetting::get_String(unsigned short **)
474?get_String@CShimStringUserSetting@@UAEJPAPAG@Z ; has WINAPI (@4)
475; public: virtual long __thiscall CSimpleStringUserSetting::get_String(unsigned short **)
476?get_String@CSimpleStringUserSetting@@UAEJPAPAG@Z ; has WINAPI (@4)
477; public: virtual long __thiscall CDiskPartUserSetting::get_UInt32(unsigned int *)
478?get_UInt32@CDiskPartUserSetting@@UAEJPAI@Z ; has WINAPI (@4)
479; public: virtual long __thiscall CShimUInt32UserSetting::get_UInt32(unsigned int *)
480?get_UInt32@CShimUInt32UserSetting@@UAEJPAI@Z ; has WINAPI (@4)
481; public: virtual long __thiscall CSimpleUInt32UserSetting::get_UInt32(unsigned int *)
482?get_UInt32@CSimpleUInt32UserSetting@@UAEJPAI@Z ; has WINAPI (@4)
483; public: virtual long __thiscall CShimUInt64UserSetting::get_UInt64(unsigned __int64 *)
484?get_UInt64@CShimUInt64UserSetting@@UAEJPA_K@Z ; has WINAPI (@4)
485; public: virtual long __thiscall CSimpleUInt64UserSetting::get_UInt64(unsigned __int64 *)
486?get_UInt64@CSimpleUInt64UserSetting@@UAEJPA_K@Z ; has WINAPI (@4)
487; private: virtual int __thiscall CComputerNameSetting::get_ValidateID(void)
488?get_ValidateID@CComputerNameSetting@@EAEHXZ
489; private: virtual int __thiscall CDiskPartUserSetting::get_ValidateID(void)
490?get_ValidateID@CDiskPartUserSetting@@EAEHXZ
491; private: virtual int __thiscall CProductKeyUserSetting::get_ValidateID(void)
492?get_ValidateID@CProductKeyUserSetting@@EAEHXZ
493; public: long __thiscall CUserSetting::set_Error(long)
494?set_Error@CUserSetting@@QAEJJ@Z ; has WINAPI (@4)
495; public: long __thiscall CUserSetting::set_Show(int)
496?set_Show@CUserSetting@@QAEJH@Z ; has WINAPI (@4)
497; public: virtual long __thiscall CComputerNameSetting::set_String(unsigned short const *)
498?set_String@CComputerNameSetting@@UAEJPBG@Z ; has WINAPI (@4)
499; public: virtual long __thiscall CShimStringUserSetting::set_String(unsigned short const *)
500?set_String@CShimStringUserSetting@@UAEJPBG@Z ; has WINAPI (@4)
501; public: virtual long __thiscall CSimpleStringUserSetting::set_String(unsigned short const *)
502?set_String@CSimpleStringUserSetting@@UAEJPBG@Z ; has WINAPI (@4)
503; public: virtual long __thiscall CDiskPartUserSetting::set_UInt32(unsigned int)
504?set_UInt32@CDiskPartUserSetting@@UAEJI@Z ; has WINAPI (@4)
505; public: virtual long __thiscall CShimUInt32UserSetting::set_UInt32(unsigned int)
506?set_UInt32@CShimUInt32UserSetting@@UAEJI@Z ; has WINAPI (@4)
507; public: virtual long __thiscall CSimpleUInt32UserSetting::set_UInt32(unsigned int)
508?set_UInt32@CSimpleUInt32UserSetting@@UAEJI@Z ; has WINAPI (@4)
509; public: virtual long __thiscall CUpgradeUserSetting::set_UInt32(unsigned int)
510?set_UInt32@CUpgradeUserSetting@@UAEJI@Z ; has WINAPI (@4)
511; public: virtual long __thiscall CShimUInt64UserSetting::set_UInt64(unsigned __int64)
512?set_UInt64@CShimUInt64UserSetting@@UAEJ_K@Z ; has WINAPI (@8)
513; public: virtual long __thiscall CSimpleUInt64UserSetting::set_UInt64(unsigned __int64)
514?set_UInt64@CSimpleUInt64UserSetting@@UAEJ_K@Z ; has WINAPI (@8)
515CallbackGetArgumentInt32@12
516CallbackGetArgumentString@12
517CallbackGetArgumentUInt64@12
518IsCrossArchitectureInstall@8
519PublishMessage
520SignalSetupComplianceBlock@8
521WdsCollectionAddString@12
522WdsCollectionAddUInt32@12
523WdsCollectionAddUInt64@16
524WdsPickTempDriveBasedOnInstallDrive@20
525WdsValidateInstallDrive@20
lib/libc/mingw/lib32/webauthn.def created+57
......@@ -0,0 +1,57 @@
1LIBRARY "webauthn.dll"
2EXPORTS
3CryptsvcDllCtrl@16
4I_WebAuthNCtapDecodeGetAssertionRpcResponse@32
5I_WebAuthNCtapDecodeMakeCredentialRpcResponse@24
6I_WebAuthNCtapEncodeGetAssertionRpcRequest@56
7I_WebAuthNCtapEncodeMakeCredentialRpcRequest@56
8WebAuthNAuthenticatorGetAssertion@20
9WebAuthNAuthenticatorMakeCredential@28
10WebAuthNCancelCurrentOperation@4
11WebAuthNCtapChangeClientPin@28
12WebAuthNCtapChangeClientPinForSelectedDevice@24
13WebAuthNCtapFreeSelectedDeviceInformation@4
14WebAuthNCtapGetAssertion@52
15WebAuthNCtapGetSupportedTransports@8
16WebAuthNCtapGetWnfLocalizedString@24
17WebAuthNCtapIsStopSendCommandError@4
18WebAuthNCtapMakeCredential@52
19WebAuthNCtapManageAuthenticatePin@20
20WebAuthNCtapManageCancelEnrollFingerprint@8
21WebAuthNCtapManageChangePin@24
22WebAuthNCtapManageClose@4
23WebAuthNCtapManageDeleteCredential@16
24WebAuthNCtapManageEnrollFingerprint@24
25WebAuthNCtapManageFreeDisplayCredentials@4
26WebAuthNCtapManageGetDisplayCredentials@12
27WebAuthNCtapManageRemoveFingerprints@8
28WebAuthNCtapManageResetDevice@8
29WebAuthNCtapManageSelect@16
30WebAuthNCtapManageSetPin@16
31WebAuthNCtapParseAuthenticatorData@16
32WebAuthNCtapResetDevice@12
33WebAuthNCtapRpcGetAssertionUserList@24
34WebAuthNCtapRpcGetCborCommand@12
35WebAuthNCtapRpcSelectGetAssertion@20
36WebAuthNCtapSendCommand@28
37WebAuthNCtapSetClientPin@20
38WebAuthNCtapStartDeviceChangeNotify@0
39WebAuthNCtapStopDeviceChangeNotify@0
40WebAuthNCtapVerifyGetAssertion@20
41WebAuthNDecodeAccountInformation@12
42WebAuthNDeletePlatformCredential@8
43WebAuthNEncodeAccountInformation@12
44WebAuthNFreeAssertion@4
45WebAuthNFreeCredentialAttestation@4
46WebAuthNFreeDecodedAccountInformation@4
47WebAuthNFreeEncodedAccountInformation@4
48WebAuthNFreePlatformCredentials@4
49WebAuthNFreeUserEntityList@4
50WebAuthNGetApiVersionNumber@0
51WebAuthNGetCancellationId@4
52WebAuthNGetCoseAlgorithmIdentifier@8
53WebAuthNGetCredentialIdFromAuthenticatorData@16
54WebAuthNGetErrorName@4
55WebAuthNGetPlatformCredentials@12
56WebAuthNGetW3CExceptionDOMError@4
57WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable@4
lib/libc/mingw/lib32/webservices.def created+200
......@@ -0,0 +1,200 @@
1;
2; Definition file of webservices.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "webservices.dll"
7EXPORTS
8WsAbandonCall@12
9WsAbandonMessage@12
10WsAbortChannel@8
11WsAbortListener@8
12WsAbortServiceHost@8
13WsAbortServiceProxy@8
14WsAcceptChannel@16
15WsAddCustomHeader@28
16WsAddErrorString@8
17WsAddMappedHeader@28
18WsAddressMessage@12
19WsAlloc@16
20WsAsyncExecute@24
21WsCall@32
22WsCheckMustUnderstandHeaders@8
23WsCloseChannel@12
24WsCloseListener@12
25WsCloseServiceHost@12
26WsCloseServiceProxy@12
27WsCombineUrl@24
28WsCopyError@8
29WsCopyNode@12
30WsCreateChannel@28
31WsCreateChannelForListener@20
32WsCreateError@12
33WsCreateFaultFromError@20
34WsCreateHeap@24
35WsCreateListener@28
36WsCreateMessage@24
37WsCreateMessageForChannel@20
38WsCreateMetadata@16
39WsCreateReader@16
40WsCreateServiceEndpointFromTemplate@56
41WsCreateServiceHost@24
42WsCreateServiceProxy@36
43WsCreateServiceProxyFromTemplate@40
44WsCreateWriter@16
45WsCreateXmlBuffer@20
46WsCreateXmlSecurityToken@24
47WsDateTimeToFileTime@12
48WsDecodeUrl@20
49WsEncodeUrl@20
50WsEndReaderCanonicalization@8
51WsEndWriterCanonicalization@8
52WsFileTimeToDateTime@12
53WsFillBody@16
54WsFillReader@16
55WsFindAttribute@24
56WsFlushBody@16
57WsFlushWriter@16
58WsFreeChannel@4
59WsFreeError@4
60WsFreeHeap@4
61WsFreeListener@4
62WsFreeMessage@4
63WsFreeMetadata@4
64WsFreeReader@4
65WsFreeSecurityToken@4
66WsFreeServiceHost@4
67WsFreeServiceProxy@4
68WsFreeWriter@4
69WsGetChannelProperty@20
70WsGetCustomHeader@40
71WsGetDictionary@12
72WsGetErrorProperty@16
73WsGetErrorString@12
74WsGetFaultErrorDetail@24
75WsGetFaultErrorProperty@16
76WsGetHeader@32
77WsGetHeaderAttributes@16
78WsGetHeapProperty@20
79WsGetListenerProperty@20
80WsGetMappedHeader@40
81WsGetMessageProperty@20
82WsGetMetadataEndpoints@12
83WsGetMetadataProperty@20
84WsGetMissingMetadataDocumentAddress@12
85WsGetNamespaceFromPrefix@20
86WsGetOperationContextProperty@20
87WsGetPolicyAlternativeCount@12
88WsGetPolicyProperty@20
89WsGetPrefixFromNamespace@20
90WsGetReaderNode@12
91WsGetReaderPosition@12
92WsGetReaderProperty@20
93WsGetSecurityContextProperty@20
94WsGetSecurityTokenProperty@24
95WsGetServiceHostProperty@20
96WsGetServiceProxyProperty@20
97WsGetWriterPosition@12
98WsGetWriterProperty@20
99WsGetXmlAttribute@24
100WsInitializeMessage@16
101WsMarkHeaderAsUnderstood@12
102WsMatchPolicyAlternative@24
103WsMoveReader@16
104WsMoveWriter@16
105WsOpenChannel@16
106WsOpenListener@16
107WsOpenServiceHost@12
108WsOpenServiceProxy@16
109WsPullBytes@16
110WsPushBytes@16
111WsReadArray@40
112WsReadAttribute@28
113WsReadBody@28
114WsReadBytes@20
115WsReadChars@20
116WsReadCharsUtf8@20
117WsReadElement@28
118WsReadEndAttribute@8
119WsReadEndElement@8
120WsReadEndpointAddressExtension@32
121WsReadEnvelopeEnd@8
122WsReadEnvelopeStart@20
123WsReadMessageEnd@16
124WsReadMessageStart@16
125WsReadMetadata@16
126WsReadNode@8
127WsReadQualifiedName@24
128WsReadStartAttribute@12
129WsReadStartElement@8
130WsReadToStartElement@20
131WsReadType@36
132WsReadValue@20
133WsReadXmlBuffer@16
134WsReadXmlBufferFromBytes@36
135WsReceiveMessage@48
136WsRegisterOperationForCancel@20
137WsRemoveCustomHeader@16
138WsRemoveHeader@12
139WsRemoveMappedHeader@12
140WsRemoveNode@8
141WsRequestReply@56
142WsRequestSecurityToken@24
143WsResetChannel@8
144WsResetError@4
145WsResetHeap@8
146WsResetListener@8
147WsResetMessage@8
148WsResetMetadata@8
149WsResetServiceHost@8
150WsResetServiceProxy@8
151WsRevokeSecurityContext@8
152WsSendFaultMessageForError@32
153WsSendMessage@32
154WsSendReplyMessage@36
155WsSetChannelProperty@20
156WsSetErrorProperty@16
157WsSetFaultErrorDetail@20
158WsSetFaultErrorProperty@16
159WsSetHeader@28
160WsSetInput@24
161WsSetInputToBuffer@20
162WsSetListenerProperty@20
163WsSetMessageProperty@20
164WsSetOutput@24
165WsSetOutputToBuffer@20
166WsSetReaderPosition@12
167WsSetWriterPosition@12
168WsShutdownSessionChannel@12
169WsSkipNode@8
170WsStartReaderCanonicalization@24
171WsStartWriterCanonicalization@24
172WsTrimXmlWhitespace@20
173WsVerifyXmlNCName@12
174WsWriteArray@36
175WsWriteAttribute@24
176WsWriteBody@24
177WsWriteBytes@16
178WsWriteChars@16
179WsWriteCharsUtf8@16
180WsWriteElement@24
181WsWriteEndAttribute@8
182WsWriteEndCData@8
183WsWriteEndElement@8
184WsWriteEndStartElement@8
185WsWriteEnvelopeEnd@8
186WsWriteEnvelopeStart@20
187WsWriteMessageEnd@16
188WsWriteMessageStart@16
189WsWriteNode@12
190WsWriteQualifiedName@20
191WsWriteStartAttribute@24
192WsWriteStartCData@8
193WsWriteStartElement@20
194WsWriteText@12
195WsWriteType@32
196WsWriteValue@20
197WsWriteXmlBuffer@12
198WsWriteXmlBufferToBytes@36
199WsWriteXmlnsAttribute@20
200WsXmlStringEquals@12
lib/libc/mingw/lib32/wer.def+26-14
......@@ -5,6 +5,27 @@
55;
66LIBRARY "wer.dll"
77EXPORTS
8WerAddExcludedApplication@8
9WerFreeString@4
10WerRemoveExcludedApplication@8
11WerReportAddDump@28
12WerReportAddFile@16
13WerReportCloseHandle@4
14WerReportCreate@16
15WerReportSetParameter@16
16WerReportSetUIOption@12
17WerReportSubmit@16
18WerStoreClose@4
19WerStoreGetFirstReportKey@8
20WerStoreGetNextReportKey@8
21WerStoreGetReportCount@8
22WerStoreGetSizeOnDisk@8
23WerStoreOpen@8
24WerStorePurge@0
25WerStoreQueryReportMetadataV1@12
26WerStoreQueryReportMetadataV2@12
27WerStoreQueryReportMetadataV3@12
28WerStoreUploadReport@16
829WerSysprepCleanup@0
930WerSysprepGeneralize@0
1031WerSysprepSpecialize@0
......@@ -35,6 +56,7 @@ WerpGetFilePathByIndex@12
3556WerpGetNumFiles@8
3657WerpGetNumSecParams@8
3758WerpGetNumSigParams@8
59WerpGetReportConsent@12
3860WerpGetReportFinalConsent@8
3961WerpGetReportFlags@8
4062WerpGetReportInformation@8
......@@ -50,13 +72,17 @@ WerpGetTextFromReport@12
5072WerpGetUIParamByIndex@12
5173WerpGetUploadTime@8
5274WerpGetWerStringData@4
75WerpIsDisabled@8
5376WerpIsTransportAvailable@0
5477WerpLoadReport@16
5578WerpOpenMachineArchive@8
5679WerpOpenMachineQueue@8
5780WerpOpenUserArchive@8
81WerpOpenUserQueue@8
82WerpPromtUser@16
5883WerpReportCancel@4
5984WerpRestartApplication@20
85WerpSetCallBack@12
6086WerpSetDynamicParameter@16
6187WerpSetEventName@8
6288WerpSetReportFlags@8
......@@ -68,17 +94,3 @@ WerpShowSecondLevelConsent@12
6894WerpShowUpsellUI@8
6995WerpSubmitReportFromStore@28
7096WerpSvcReportFromMachineQueue@8
71WerAddExcludedApplication@8
72WerRemoveExcludedApplication@8
73WerReportAddDump@28
74WerReportAddFile@16
75WerReportCloseHandle@4
76WerReportCreate@16
77WerReportSetParameter@16
78WerReportSetUIOption@12
79WerReportSubmit@16
80WerpGetReportConsent@12
81WerpIsDisabled@8
82WerpOpenUserQueue@8
83WerpPromtUser@16
84WerpSetCallBack@12
lib/libc/mingw/lib32/wevtfwd.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of WEVTFWD.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WEVTFWD.DLL"
7EXPORTS
8WSManProvPullEvents@16
9WSManProvShutdown@12
10WSManProvStartup@16
11WSManProvSubscribe@40
12WSManProvUnsubscribe@12
lib/libc/mingw/lib32/wiadss.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of WIADSS.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WIADSS.DLL"
7EXPORTS
8FindFirstImportDS@8
9FindNextImportDS@8
10CloseFindContext@4
11LoadImportDS@16
12UnloadImportDS@4
13GetLoaderStatus@4
14FindImportDSByDeviceName@8
lib/libc/mingw/lib32/wimgapi.def created+67
......@@ -0,0 +1,67 @@
1;
2; Definition file of WIMGAPI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WIMGAPI.DLL"
7EXPORTS
8;DllCanUnloadNow@0
9;DllMain@12
10WIMAddImagePath@16
11WIMAddImagePaths@20
12WIMAddWimbootEntry@16
13WIMApplyImage@12
14WIMCaptureImage@12
15WIMCloseHandle@4
16WIMCommitImageHandle@12
17WIMCopyFile@24
18WIMCreateFile@24
19WIMCreateImageFile@20
20WIMCreateWofCompressedFile@12
21WIMDeleteImage@8
22WIMDeleteImageMounts@4
23WIMEnumImageFiles@16
24WIMExportImage@12
25WIMExtractImageDirectory@16
26WIMExtractImagePath@16
27WIMFindFirstImageFile@12
28WIMFindNextImageFile@8
29WIMGetAttributes@12
30WIMGetImageCount@4
31WIMGetImageInformation@12
32WIMGetMessageCallbackCount@4
33WIMGetMountedImageHandle@16
34WIMGetMountedImageInfo@20
35WIMGetMountedImageInfoFromHandle@20
36WIMGetMountedImages@8
37WIMGetWIMBootEntries@12
38WIMGetWIMBootWIMPath@8
39WIMInitFileIOCallbacks@4
40WIMInitializeWofDriver@8
41WIMIsCurrentSystemWimboot@0
42WIMIsReferenceWim@20
43WIMLoadImage@8
44WIMMountImage@16
45WIMMountImageHandle@12
46WIMProcessCustomImage@12
47WIMReadFileEx@20
48WIMReadImageFile@20
49WIMRedirectFolderBeforeApply@12
50WIMRegisterLogFile@8
51WIMRegisterMessageCallback@12
52WIMRemountImage@8
53WIMSetBootImage@8
54WIMSetFileIOCallbackTemporaryPath@4
55WIMSetImageInformation@12
56WIMSetImageUserSpecifiedCreationTime@8
57WIMSetReferenceFile@12
58WIMSetTemporaryPath@8
59WIMSetWimGuid@8
60WIMSingleInstanceFile@16
61WIMSplitFile@16
62WIMUnmountImage@16
63WIMUnmountImageHandle@8
64WIMUnregisterLogFile@4
65WIMUnregisterMessageCallback@8
66WIMUpdateWIMBootEntry@16
67WIMWriteFileWithIntegrity@16
lib/libc/mingw/lib32/win32k.def created+226
......@@ -0,0 +1,226 @@
1LIBRARY win32k.sys
2EXPORTS
3BRUSHOBJ_hGetColorTransform@4
4BRUSHOBJ_pvAllocRbrush@8
5BRUSHOBJ_pvGetRbrush@4
6BRUSHOBJ_ulGetBrushColor@4
7CLIPOBJ_bEnum@12
8CLIPOBJ_cEnumStart@20
9CLIPOBJ_ppoGetPath@4
10EngAcquireSemaphore@4
11EngAllocMem@12
12EngAllocPrivateUserMem@12
13;EngAllocSectionMem@16
14EngAllocUserMem@8
15EngAlphaBlend@28
16EngAssociateSurface@12
17EngBitBlt@44
18EngCheckAbort@4
19EngClearEvent@4
20EngComputeGlyphSet@12
21EngControlSprites@8
22EngCopyBits@24
23EngCreateBitmap@24
24EngCreateClip@0
25EngCreateDeviceBitmap@16
26EngCreateDeviceSurface@16
27;EngCreateDriverObj@12
28EngCreateEvent@4
29EngCreatePalette@24
30EngCreatePath@0
31EngCreateSemaphore@0
32EngCreateWnd@20
33EngDebugBreak@0
34EngDebugPrint@12
35EngDeleteClip@4
36EngDeleteDriverObj@12
37EngDeleteEvent@4
38EngDeleteFile@4
39EngDeletePalette@4
40EngDeletePath@4
41EngDeleteSafeSemaphore@4
42EngDeleteSemaphore@4
43EngDeleteSurface@4
44EngDeleteWnd@4
45EngDeviceIoControl@28
46EngDitherColor@16
47;EngDxIoctl@12
48EngEnumForms@24
49EngEraseSurface@12
50;EngFileIoControl@28
51;EngFileWrite@16
52EngFillPath@28
53EngFindImageProcAddress@8
54EngFindResource@16
55EngFntCacheAlloc@8
56EngFntCacheFault@8
57EngFntCacheLookUp@8
58EngFreeMem@4
59EngFreeModule@4
60EngFreePrivateUserMem@8
61;EngFreeSectionMem@8
62EngFreeUserMem@4
63EngGetCurrentCodePage@8
64EngGetCurrentProcessId@0
65EngGetCurrentThreadId@0
66EngGetDriverName@4
67EngGetFileChangeTime@8
68EngGetFilePath@8
69EngGetForm@24
70EngGetLastError@0
71EngGetPrinter@20
72EngGetPrinterData@24
73EngGetPrinterDataFileName@4
74EngGetPrinterDriver@24
75EngGetProcessHandle@0
76;EngGetTickCount@0
77EngGetType1FontList@24
78EngGradientFill@40
79EngHangNotification@8
80EngInitializeSafeSemaphore@4
81EngIsSemaphoreOwned@4
82EngIsSemaphoreOwnedByCurrentThread@4
83EngLineTo@36
84EngLoadImage@4
85EngLoadModule@4
86EngLoadModuleForWrite@8
87EngLockDirectDrawSurface@4
88;EngLockDriverObj@4
89EngLockSurface@4
90EngLpkInstalled@0
91EngMapEvent@20
92EngMapFile@12
93EngMapFontFile@12
94EngMapFontFileFD@12
95EngMapModule@8
96;EngMapSection@16
97EngMarkBandingSurface@4
98EngModifySurface@32
99EngMovePointer@16
100EngMulDiv@12
101EngMultiByteToUnicodeN@20
102EngMultiByteToWideChar@20
103;EngNineGrid@36
104EngPaint@20
105EngPlgBlt@44
106EngProbeForRead@12
107EngProbeForReadAndWrite@12
108EngQueryDeviceAttribute@24
109EngQueryLocalTime@4
110EngQueryPalette@16
111EngQueryPerformanceCounter@4
112EngQueryPerformanceFrequency@4
113EngQuerySystemAttribute@8
114EngReadStateEvent@4
115EngReleaseSemaphore@4
116EngRestoreFloatingPointState@4
117EngSaveFloatingPointState@8
118EngSecureMem@8
119EngSetEvent@4
120EngSetLastError@4
121EngSetPointerShape@40
122EngSetPointerTag@20
123EngSetPrinterData@20
124EngSort@16
125EngStretchBlt@44
126EngStretchBltROP@52
127EngStrokeAndFillPath@40
128EngStrokePath@32
129EngTextOut@40
130EngTransparentBlt@32
131EngUnicodeToMultiByteN@20
132EngUnloadImage@4
133EngUnlockDirectDrawSurface@4
134EngUnlockDriverObj@4
135EngUnlockSurface@4
136EngUnmapEvent@4
137EngUnmapFile@4
138EngUnmapFontFile@4
139EngUnmapFontFileFD@4
140EngUnsecureMem@4
141EngWaitForSingleObject@8
142EngWideCharToMultiByte@20
143EngWritePrinter@16
144FLOATOBJ_Add@8
145FLOATOBJ_AddFloat@8
146;FLOATOBJ_AddFloatObj
147FLOATOBJ_AddLong@8
148FLOATOBJ_Div@8
149FLOATOBJ_DivFloat@8
150;FLOATOBJ_DivFloatObj
151FLOATOBJ_DivLong@8
152FLOATOBJ_Equal@8
153FLOATOBJ_EqualLong@8
154FLOATOBJ_GetFloat@4
155FLOATOBJ_GetLong@4
156FLOATOBJ_GreaterThan@8
157FLOATOBJ_GreaterThanLong@8
158FLOATOBJ_LessThan@8
159FLOATOBJ_LessThanLong@8
160FLOATOBJ_Mul@8
161FLOATOBJ_MulFloat@8
162;FLOATOBJ_MulFloatObj
163FLOATOBJ_MulLong@8
164FLOATOBJ_Neg@4
165FLOATOBJ_SetFloat@8
166FLOATOBJ_SetLong@8
167FLOATOBJ_Sub@8
168FLOATOBJ_SubFloat@8
169;FLOATOBJ_SubFloatObj
170FLOATOBJ_SubLong@8
171FONTOBJ_cGetAllGlyphHandles@8
172FONTOBJ_cGetGlyphs@20
173FONTOBJ_pQueryGlyphAttrs@8
174FONTOBJ_pfdg@4
175FONTOBJ_pifi@4
176FONTOBJ_pjOpenTypeTablePointer@12
177FONTOBJ_pvTrueTypeFontFile@8
178FONTOBJ_pwszFontFilePaths@8
179FONTOBJ_pxoGetXform@4
180FONTOBJ_vGetInfo@12
181HT_ComputeRGBGammaTable@24
182HT_Get8BPPFormatPalette@16
183HT_Get8BPPMaskPalette@24
184HeapVidMemAllocAligned@20
185PALOBJ_cGetColors@16
186PATHOBJ_bCloseFigure@4
187PATHOBJ_bEnum@8
188PATHOBJ_bEnumClipLines@12
189PATHOBJ_bMoveTo@12
190PATHOBJ_bPolyBezierTo@12
191PATHOBJ_bPolyLineTo@12
192PATHOBJ_vEnumStart@4
193PATHOBJ_vEnumStartClipLines@16
194PATHOBJ_vGetBounds@8
195;RtlAnsiCharToUnicodeChar@4
196;RtlMultiByteToUnicodeN@20
197;RtlRaiseException
198;RtlUnicodeToMultiByteN@20
199;RtlUnicodeToMultiByteSize@12
200;RtlUnwind@16
201RtlUpcaseUnicodeChar@4
202;RtlUpcaseUnicodeToMultiByteN@20
203STROBJ_bEnum@12
204STROBJ_bEnumPositionsOnly@12
205STROBJ_bGetAdvanceWidths@16
206STROBJ_dwGetCodePage@4
207STROBJ_fxBreakExtra@4
208STROBJ_fxCharacterExtra@4
209STROBJ_vEnumStart@4
210VidMemFree@8
211WNDOBJ_bEnum@12
212WNDOBJ_cEnumStart@16
213WNDOBJ_vSetConsumer@8
214XFORMOBJ_bApplyXform@20
215XFORMOBJ_iGetFloatObjXform@8
216XFORMOBJ_iGetXform@8
217XLATEOBJ_cGetPalette@16
218XLATEOBJ_hGetColorTransform@4
219XLATEOBJ_iXlate@8
220XLATEOBJ_piVector@4
221;_abnormal_termination
222;_except_handler2
223;_global_unwind2
224;_itoa
225;_itow
226;_local_unwind2
lib/libc/mingw/lib32/win32spl.def created+16
......@@ -0,0 +1,16 @@
1LIBRARY WIN32SPL.DLL
2EXPORTS
3AddPortExW@16
4AddPortW@12
5ClosePort@4
6ConfigurePortW@12
7DeletePortW@12
8EndDocPort@4
9EnumPortsW@24
10InitializeMonitor@4
11InitializePrintProvidor@12
12LibMain@12
13OpenPort@8
14ReadPort@16
15StartDocPort@20
16WritePort@16
lib/libc/mingw/lib32/windows.ai.machinelearning.def created+5
......@@ -0,0 +1,5 @@
1LIBRARY windows.ai.machinelearning
2
3EXPORTS
4
5MLCreateOperatorRegistry@4
lib/libc/mingw/lib32/windows.data.pdf.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY "Windows.Data.Pdf.dll"
2EXPORTS
3PdfCreateRenderer@8
lib/libc/mingw/lib32/windows.networking.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY "Windows.Networking.dll"
2EXPORTS
3SetSocketMediaStreamingMode@4
lib/libc/mingw/lib32/winspool.def-1
......@@ -195,7 +195,6 @@ SpoolerInit@0
195195SplDriverUnloadComplete@4
196196SpoolerPrinterEvent@20
197197StartDocDlgA@8
198StartDocDlgW@8
199198StartDocPrinterA@12
200199StartDocPrinterW@12
201200StartPagePrinter@4
lib/libc/mingw/lib32/winstrm.def created+9
......@@ -0,0 +1,9 @@
1LIBRARY WINSTRM.DLL
2EXPORTS
3OpenStream@4
4getmsg@16
5poll@12
6putmsg@16
7s_ioctl@12
8s_open@12
9s_perror@8
lib/libc/mingw/lib32/wlanapi.def+224-2
......@@ -1,35 +1,228 @@
11;
2; Definition file of Wlanapi.dll
2; Definition file of wlanapi.dll
33; Automatic generated by gendef
44; written by Kai Tietz 2008
55;
6LIBRARY "Wlanapi.dll"
6LIBRARY "wlanapi.dll"
77EXPORTS
8QueryNetconStatus@8
9QueryNetconVirtualCharacteristic@8
10WFDAbortSessionInt@4
11WFDAcceptConnectRequestAndOpenSessionInt@24
12WFDAcceptGroupRequestAndOpenSessionInt@44
13WFDCancelConnectorPairWithOOB@4
14WFDCancelListenerPairWithOOB@4
15WFDCancelOpenSession@4
16WFDCancelOpenSessionInt@4
17WFDCloseHandle@4
18WFDCloseHandleInt@4
19WFDCloseLegacySessionInt@12
20WFDCloseOOBPairingSession@4
21WFDCloseSession@4
22WFDCloseSessionInt@4
23WFDConfigureFirewallForSessionInt@8
24WFDCreateDHPrivatePublicKeyPairInt@16
25WFDDeclineConnectRequestInt@8
26WFDDeclineGroupRequestInt@8
27WFDDiscoverDeviceServiceInformationInt@24
28WFDDiscoverDevicesExInt@16
29WFDDiscoverDevicesInt@12
30WFDFlushVisibleDeviceListInt@4
31WFDForceDisconnectInt@8
32WFDForceDisconnectLegacyPeerInt@12
33WFDFreeMemoryInt@4
34WFDGetDefaultGroupProfileInt@8
35WFDGetDeviceDescriptorForPendingRequestInt@16
36WFDGetNFCCarrierConfigBlobInt@24
37WFDGetOOBBlob@24
38WFDGetPrimaryAdapterStateInt@8
39WFDGetProfileKeyInfoInt@20
40WFDGetSessionEndpointPairsInt@12
41WFDGetVisibleDevicesExInt@12
42WFDGetVisibleDevicesInt@8
43WFDIsInterfaceWiFiDirect@24
44WFDIsWiFiDirectRunningOnWiFiAdapter@20
45WFDLowPrivCancelOpenSessionInt@4
46WFDLowPrivCloseHandleInt@4
47WFDLowPrivCloseLegacySessionInt@12
48WFDLowPrivCloseSessionInt@4
49WFDLowPrivConfigureFirewallForSessionInt@8
50WFDLowPrivDeclineDeviceApiConnectionRequestInt@8
51WFDLowPrivGetPendingGroupRequestDetailsInt@12
52WFDLowPrivGetSessionEndpointPairsInt@12
53WFDLowPrivIsWfdSupportedInt@4
54WFDLowPrivOpenHandleInt@12
55WFDLowPrivOpenLegacySessionInt@12
56WFDLowPrivOpenSessionByDafObjectIdInt@44
57WFDLowPrivQueryPropertyInt@16
58WFDLowPrivRegisterNotificationInt@24
59WFDLowPrivRegisterVMgrCallerInt@12
60WFDLowPrivSetPropertyInt@16
61WFDLowPrivStartDeviceApiConnectionRequestListenerInt@4
62WFDLowPrivStartUsingGroupInt@16
63WFDLowPrivStopDeviceApiConnectionRequestListenerInt@4
64WFDLowPrivStopUsingGroupInt@8
65WFDLowPrivUnregisterVMgrCallerInt@4
66WFDOpenHandle@12
67WFDOpenHandleInt@12
68WFDOpenLegacySession@16
69WFDOpenLegacySessionInt@12
70WFDPairCancelByDeviceAddressInt@8
71WFDPairCancelInt@4
72WFDPairContinuePairWithDeviceInt@12
73WFDPairEnumerateCeremoniesInt@28
74WFDPairSelectCeremonyInt@12
75WFDPairWithDeviceAndOpenSessionExInt@32
76WFDPairWithDeviceAndOpenSessionInt@28
77WFDParseOOBBlob@12
78WFDParseOOBBlobTypeAndGetPayloadInt@20
79WFDParseProfileXmlInt@12
80WFDParseWfaNfcCarrierConfigBlobInt@12
81WFDQueryPropertyInt@16
82WFDRegisterNotificationInt@24
83WFDRegisterVMgrCallerInt@12
84WFDResetSelectedWfdMgrInt@4
85WFDSetAdditionalIEsInt@8
86WFDSetPropertyInt@16
87WFDSetSecondaryDeviceTypeListInt@8
88WFDSetSelectedWfdMgrInt@8
89WFDStartBackgroundDiscoveryInt@8
90WFDStartConnectorPairWithOOB@20
91WFDStartListenerPairWithOOB@28
92WFDStartOffloadedDiscoveryInt@8
93WFDStartOpenSession@20
94WFDStartOpenSessionInt@28
95WFDStartUsingGroupExInt@16
96WFDStartUsingGroupInt@12
97WFDStopBackgroundDiscoveryInt@4
98WFDStopDiscoverDevicesExInt@8
99WFDStopDiscoverDevicesInt@4
100WFDStopOffloadedDiscoveryInt@4
101WFDStopUsingGroupInt@8
102WFDSvcLowPrivAcceptSessionInt@12
103WFDSvcLowPrivCancelSessionInt@4
104WFDSvcLowPrivCloseSessionInt@4
105WFDSvcLowPrivConfigureSessionInt@16
106WFDSvcLowPrivConnectSessionInt@12
107WFDSvcLowPrivGetProvisioningInfoInt@32
108WFDSvcLowPrivGetSessionEndpointPairsInt@12
109WFDSvcLowPrivOpenAdvertiserSessionInt@20
110WFDSvcLowPrivOpenSeekerSessionInt@28
111WFDSvcLowPrivPublishServiceInt@20
112WFDSvcLowPrivUnpublishServiceInt@8
113WFDUnregisterVMgrCallerInt@4
114WFDUpdateDeviceVisibility@4
115WiFiDisplayResetSinkStateInt@4
116WiFiDisplaySetSinkClientHandleInt@4
117WiFiDisplaySetSinkStateInt@4
8118WlanAllocateMemory@4
119WlanAllocateProfileIpConfiguration@20
120WlanCancelPlap@4
9121WlanCloseHandle@8
10122WlanConnect@16
123WlanConnectEx@16
124WlanConnectWithInput@12
125WlanDeinitPlapParams@0
11126WlanDeleteProfile@16
127WlanDeviceServiceCommand@36
12128WlanDisconnect@12
129WlanDoPlap@44
130WlanDoesBssMatchSecurity@16
131WlanEnumAllInterfaces@4
13132WlanEnumInterfaces@12
14133WlanExtractPsdIEDataList@24
15134WlanFreeMemory@4
135WlanGenerateProfileXmlBasicSettings@40
136WlanGetAvailableNetworkList2@20
16137WlanGetAvailableNetworkList@20
17138WlanGetFilterList@16
18139WlanGetInterfaceCapability@16
140WlanGetMFPNegotiated@8
19141WlanGetNetworkBssList@28
20142WlanGetProfile@28
21143WlanGetProfileCustomUserData@24
144WlanGetProfileEapUserDataInfo@16
145WlanGetProfileIndex@12
146WlanGetProfileKeyInfo@24
22147WlanGetProfileList@16
148WlanGetProfileMetadata@24
149WlanGetProfileMetadataWithProfileGuid@24
150WlanGetProfileSsidList@8
151WlanGetRadioInformation@12
23152WlanGetSecuritySettings@20
153WlanGetStoredRadioState@12
154WlanGetSupportedDeviceServices@12
155WlanHostedNetworkForceStart@12
156WlanHostedNetworkForceStop@12
157WlanHostedNetworkFreeWCNSettings@4
158WlanHostedNetworkHlpQueryEverUsed@0
159WlanHostedNetworkInitSettings@12
160WlanHostedNetworkQueryProperty@24
161WlanHostedNetworkQuerySecondaryKey@28
162WlanHostedNetworkQueryStatus@12
163WlanHostedNetworkQueryWCNSettings@4
164WlanHostedNetworkRefreshSecuritySettings@12
165WlanHostedNetworkSetProperty@24
166WlanHostedNetworkSetSecondaryKey@28
167WlanHostedNetworkSetWCNSettings@4
168WlanHostedNetworkStartUsing@12
169WlanHostedNetworkStopUsing@12
24170WlanIhvControl@32
171WlanInitPlapParams@4
172WlanInternalCancelFTMRequest@4
173WlanInternalGetNetworkBssListWithFTMData@12
174WlanInternalNonDisruptiveScan@8
175WlanInternalNonDisruptiveScanEx@12
176WlanInternalRequestFTM@28
177WlanInternalScan@8
178WlanIsActiveConsoleUser@0
179WlanIsNetworkSuppressed@8
180WlanIsUIRequestPending@12
181WlanLowPrivCloseHandle@4
182WlanLowPrivEnumInterfaces@8
183WlanLowPrivFreeMemory@4
184WlanLowPrivNotifyVsIeProviderInt@28
185WlanLowPrivOpenHandle@12
186WlanLowPrivQueryInterface@24
187WlanLowPrivSetInterface@20
188WlanNotifyVsIeProviderExInt@28
189WlanNotifyVsIeProviderInt@24
25190WlanOpenHandle@16
191WlanParseProfileXmlBasicSettings@40
192WlanPrivateCanDeleteProfile@16
193WlanPrivateClearAnqpCache@0
194WlanPrivateDeleteProfile@20
195WlanPrivateEnableAnqpOsuRegistration@4
196WlanPrivateGetAnqpCacheResponse@16
197WlanPrivateGetAnqpOSUProviderList@16
198WlanPrivateGetAnqpOsuRegistrationStatus@4
199WlanPrivateGetAvailableNetworkList@16
200WlanPrivateParseAnqpRawData@16
201WlanPrivateQuery11adPairedConfig@12
202WlanPrivateQueryInterface@20
203WlanPrivateRefreshAnqpCache@12
204WlanPrivateSetInterface@20
205WlanPrivateSetProfile@36
206WlanProfileIpConfigurationGetAddressList@8
207WlanProfileIpConfigurationGetDnsServerList@8
208WlanProfileIpConfigurationGetGatewayList@8
26209WlanQueryAutoConfigParameter@24
210WlanQueryCreateAllUserProfileRestricted@8
27211WlanQueryInterface@28
212WlanQueryPlapCredentials@32
213WlanQueryPreConnectInput@12
214WlanQueryVirtualInterfaceType@8
28215WlanReasonCodeToString@16
216WlanRefreshConnections@4
217WlanRegisterDeviceServiceNotification@8
29218WlanRegisterNotification@28
219WlanRegisterVirtualStationNotification@12
220WlanRemoveUIForwardingNetworkList@4
30221WlanRenameProfile@20
31222WlanSaveTemporaryProfile@28
32223WlanScan@20
224WlanSendUIResponse@8
225WlanSetAllUserProfileRestricted@4
33226WlanSetAutoConfigParameter@20
34227WlanSetFilterList@16
35228WlanSetInterface@24
......@@ -38,6 +231,35 @@ WlanSetProfileCustomUserData@24
38231WlanSetProfileEapUserData@44
39232WlanSetProfileEapXmlUserData@24
40233WlanSetProfileList@20
234WlanSetProfileListForOffload@16
235WlanSetProfileMetadata@24
41236WlanSetProfilePosition@20
237WlanSetProtectedScenario@16
42238WlanSetPsdIEDataList@16
43239WlanSetSecuritySettings@12
240WlanSetUIForwardingNetworkList@12
241WlanSignalValueToBar@4
242WlanSignalValueToBarEx@8
243WlanSsidToDisplayName@16
244WlanStartAP@24
245WlanStartMovementDetector@8
246WlanStopAP@12
247WlanStopMovementDetector@4
248WlanStoreRadioStateOnEnteringAirPlaneMode@12
249WlanStringToSsid@8
250WlanStringToUtf8Ssid@8
251WlanTryUpgradeCurrentConnectionAuthCipher@8
252WlanUpdateBasicProfileSecurity@24
253WlanUpdateProfileWithAuthCipher@28
254WlanUtf8SsidToDisplayName@16
255WlanVMgrQueryCurrentScenariosInt@8
256WlanVerifyProfileIpConfiguration@8
257WlanWcmDisconnect@4
258WlanWcmGetInterface@16
259WlanWcmGetProfileList@12
260WlanWcmSetInterface@16
261WlanWcmSetProfile@28
262WlanWfdGOSetWCNSettings@8
263WlanWfdGetPeerInfo@20
264WlanWfdStartGO@4
265WlanWfdStopGO@4
lib/libc/mingw/lib32/wlanui.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of wlanui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "wlanui.dll"
7EXPORTS
8WLInvokeProfileUI@32
9WLInvokeProfileUIFromXMLFile@40
10DllGetClassObject@12
11WLFreeProfile@4
12WLFreeProfileXml@4
13WlanUIEditProfile@28
lib/libc/mingw/lib32/wlanutil.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of wlanutil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "wlanutil.dll"
7EXPORTS
8WlanIsActiveConsoleUser@0
9WlanSsidToDisplayName@16
10WlanStringToSsid@8
lib/libc/mingw/lib32/wmilib.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of WMILIB.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WMILIB.SYS"
7EXPORTS
8WmiCompleteRequest@20
9WmiFireEvent@20
10WmiSystemControl@16
lib/libc/mingw/lib32/wow32.def created+19
......@@ -0,0 +1,19 @@
1LIBRARY WOW32.DLL
2EXPORTS
3WOWCallback16@8
4WOWCallback16Ex@20
5WOWDirectedYield16@4
6WOWGetDescriptor@8
7WOWGetVDMPointer@12
8WOWGetVDMPointerFix@12
9WOWGetVDMPointerUnfix@4
10WOWGlobalAlloc16@8
11WOWGlobalAllocLock16@12
12WOWGlobalFree16@4
13WOWGlobalLock16@4
14WOWGlobalLockSize16@8
15WOWGlobalUnlock16@4
16WOWGlobalUnlockFree16@4
17WOWHandle16@8
18WOWHandle32@8
19WOWYield16@0
lib/libc/mingw/lib32/wpprecorderum.def created+8
......@@ -0,0 +1,8 @@
1LIBRARY wpprecorderum
2
3EXPORTS
4
5WppAutoLogGetDefaultHandle@4
6WppAutoLogStart
7WppAutoLogStop
8WppAutoLogTrace
lib/libc/mingw/lib32/wst.def created+3
......@@ -0,0 +1,3 @@
1LIBRARY WST.DLL
2EXPORTS
3_penter
lib/libc/mingw/lib32/wtsapi32.def+4
......@@ -15,7 +15,11 @@ WTSEnumerateServersA@20
1515WTSEnumerateServersW@20
1616WTSEnumerateSessionsA@20
1717WTSEnumerateSessionsW@20
18WTSEnumerateSessionsExA@20
19WTSEnumerateSessionsExW@20
1820WTSFreeMemory@4
21WTSFreeMemoryExA@12
22WTSFreeMemoryExW@12
1923WTSLogoffSession@12
2024WTSOpenServerA@4
2125WTSOpenServerW@4
lib/libc/mingw/lib32/x3daudio1_2.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of X3DAudio1_2.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_2.dll"
7EXPORTS
8;_X3DAudioCalculate@20@20
9;_X3DAudioInitialize@12@12
10_X3DAudioCalculate@20 == _X3DAudioCalculate@20
11_X3DAudioInitialize@12 == _X3DAudioInitialize@12
lib/libc/mingw/lib32/x3daudio1_3.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_3.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_3.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib32/x3daudio1_4.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_4.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_4.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib32/x3daudio1_5.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_5.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_5.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib32/x3daudio1_6.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_6.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_6.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib32/x3daudio1_7.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_7.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_7.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib32/x3daudiod1_7.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of X3DAudioD1_7.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudioD1_7.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
10X3DAudioSetValidationCallback
lib/libc/mingw/lib32/xapofx1_0.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_0.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_0.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib32/xapofx1_1.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_1.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_1.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib32/xapofx1_2.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_2.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_2.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib32/xapofx1_3.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_3.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_3.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib32/xapofx1_4.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_4.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_4.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib32/xapofx1_5.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_5.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_5.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib32/xapofxd1_5.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFXd1_5.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFXd1_5.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib32/xaudio2_9.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of XAudio2_9.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAudio2_9.dll"
7EXPORTS
8XAudio2Create@12
9CreateAudioReverb@4
10CreateAudioVolumeMeter@4
11CreateFX@0
12X3DAudioCalculate@0
13X3DAudioInitialize@0
14CreateAudioReverbV2_8@4
15XAudio2CreateV2_9@12
16XAudio2CreateWithVersionInfo@16
17XAudio2CreateWithSharedContexts@16
lib/libc/mingw/lib32/xinput1_1.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of XINPUT1_1.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT1_1.dll"
7EXPORTS
8;DllMain@12
9XInputEnable@4
10XInputGetCapabilities@12
11XInputGetDSoundAudioDeviceGuids@12
12XInputGetState@8
13XInputSetState@8
lib/libc/mingw/lib32/xinput1_2.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of XINPUT1_2.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT1_2.dll"
7EXPORTS
8;DllMain@12
9XInputEnable@4
10XInputGetCapabilities@12
11XInputGetDSoundAudioDeviceGuids@12
12XInputGetState@8
13XInputSetState@8
lib/libc/mingw/lib32/xinput1_3.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of XINPUT1_3.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT1_3.dll"
7EXPORTS
8;DllMain@12
9XInputGetState@8
10XInputSetState@8
11XInputGetCapabilities@12
12XInputEnable@4
13XInputGetDSoundAudioDeviceGuids@12
14XInputGetBatteryInformation@12
15XInputGetKeystroke@12
16;ord_100@8 @100
17;ord_101@12 @101
18;ord_102@4 @102
19;ord_103@4 @103
lib/libc/mingw/lib32/xinput9_1_0.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of XINPUT9_1_0.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT9_1_0.dll"
7EXPORTS
8;DllMain@12
9XInputGetCapabilities@12
10XInputGetDSoundAudioDeviceGuids@12
11XInputGetState@8
12XInputSetState@8
lib/libc/mingw/lib32/xinputuap.def created+11
......@@ -0,0 +1,11 @@
1LIBRARY xinputuap
2
3EXPORTS
4
5XInputEnable@4
6XInputGetAudioDeviceIds@20
7XInputGetBatteryInformation@12
8XInputGetCapabilities@12
9XInputGetKeystroke@12
10XInputGetState@8
11XInputSetState@8
lib/libc/mingw/lib32/xmllite.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of XmlLite.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XmlLite.dll"
7EXPORTS
8CreateXmlReader@12
9CreateXmlReaderInputWithEncodingCodePage@24
10CreateXmlReaderInputWithEncodingName@24
11CreateXmlWriter@12
12CreateXmlWriterOutputWithEncodingCodePage@16
13CreateXmlWriterOutputWithEncodingName@16
lib/libc/mingw/lib64/CINTIME.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file CINTIME.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CINTIME.DLL
8EXPORTS
9UniCreateInstLInstance
lib/libc/mingw/lib64/PS5UI.def created+21
......@@ -0,0 +1,21 @@
1;
2; Exports of file ps5ui.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ps5ui.dll
8EXPORTS
9DrvSplDeviceCaps
10DevQueryPrintEx
11DllMain
12DrvConvertDevMode
13DrvDeviceCapabilities
14DrvDevicePropertySheets
15DrvDocumentEvent
16DrvDocumentPropertySheets
17DrvDriverEvent
18DrvPrinterEvent
19DrvQueryColorProfile
20DrvQueryJobAttributes
21DrvUpgradePrinter
lib/libc/mingw/lib64/PSCRIPT5.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file pscript5.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY pscript5.dll
8EXPORTS
9DllMain
10DrvDisableDriver
11DrvEnableDriver
12DrvQueryDriverInfo
lib/libc/mingw/lib64/UNIDRV.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file unidrv.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY unidrv.dll
8EXPORTS
9DllMain
10DrvDisableDriver
11DrvEnableDriver
12DrvQueryDriverInfo
lib/libc/mingw/lib64/UNIDRVUI.def created+21
......@@ -0,0 +1,21 @@
1;
2; Exports of file unidrvui.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY unidrvui.dll
8EXPORTS
9DrvSplDeviceCaps
10DevQueryPrintEx
11DllMain
12DrvConvertDevMode
13DrvDeviceCapabilities
14DrvDevicePropertySheets
15DrvDocumentEvent
16DrvDocumentPropertySheets
17DrvDriverEvent
18DrvPrinterEvent
19DrvQueryColorProfile
20DrvQueryJobAttributes
21DrvUpgradePrinter
lib/libc/mingw/lib64/admparse.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file admparse.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY admparse.dll
8EXPORTS
9DllMain
10IsAdmDirty
11ResetAdmDirtyFlag
12AdmClose
13AdmFinishedA
14AdmFinishedW
15AdmInitA
16AdmInitW
17AdmResetA
18AdmResetW
19AdmSaveData
20CheckDuplicateKeysA
21CheckDuplicateKeysW
22CreateAdmUiA
23CreateAdmUiW
24GetAdmCategoriesA
25GetAdmCategoriesW
26GetFontInfoA
27GetFontInfoW
lib/libc/mingw/lib64/admwprox.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file ADMWPROX.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ADMWPROX.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13ReleaseObjectSecurityContextW
lib/libc/mingw/lib64/adptif.def created+48
......@@ -0,0 +1,48 @@
1;
2; Exports of file adptif.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY adptif.dll
8EXPORTS
9CreateSocketPort
10DeleteSocketPort
11FwBindFwInterfaceToAdapter
12FwConnectionRequestFailed
13FwCreateInterface
14FwDeleteInterface
15FwDisableFwInterface
16FwEnableFwInterface
17FwGetInterface
18FwGetNotificationResult
19FwGetStaticNetbiosNames
20FwIsStarted
21FwNotifyConnectionRequest
22FwSetInterface
23FwSetStaticNetbiosNames
24FwStart
25FwStop
26FwUnbindFwInterfaceFromAdapter
27FwUpdateConfig
28FwUpdateRouteTable
29GetAdapterNameFromMacAddrW
30GetAdapterNameW
31GetFilters
32IpxAdjustIoCompletionParams
33IpxCreateAdapterConfigurationPort
34IpxDeleteAdapterConfigurationPort
35IpxDoesRouteExist
36IpxGetAdapterConfig
37IpxGetAdapterList
38IpxGetOverlappedResult
39IpxGetQueuedAdapterConfigurationStatus
40IpxGetQueuedCompletionStatus
41IpxPostQueuedCompletionStatus
42IpxRecvPacket
43IpxSendPacket
44IpxWanCreateAdapterConfigurationPort
45IpxWanQueryInactivityTimer
46IpxWanSetAdapterConfiguration
47ServiceMain
48SetFilters
lib/libc/mingw/lib64/adsiisex.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file ADSIISEX.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ADSIISEX.dll
8EXPORTS
9IsExtensionClass
10CreateExtensionClass
lib/libc/mingw/lib64/adsldpc.def created+188
......@@ -0,0 +1,188 @@
1;
2; Exports of file adsldpc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY adsldpc.dll
8EXPORTS
9; public: __cdecl CLexer::CLexer(void) __ptr64
10??0CLexer@@QEAA@XZ
11; public: __cdecl CLexer::~CLexer(void) __ptr64
12??1CLexer@@QEAA@XZ
13ADsAbandonSearch
14ADsCloseSearchHandle
15ADsCreateAttributeDefinition
16ADsCreateClassDefinition
17ADsCreateDSObject
18ADsCreateDSObjectExt
19ADsDeleteAttributeDefinition
20ADsDeleteClassDefinition
21ADsDeleteDSObject
22ADsEnumAttributes
23ADsEnumClasses
24ADsExecuteSearch
25ADsFreeColumn
26ADsGetColumn
27ADsGetFirstRow
28ADsGetNextColumnName
29ADsGetNextRow
30ADsGetObjectAttributes
31ADsGetPreviousRow
32ADsHelperGetCurrentRowMessage
33ADsObject
34ADsSetObjectAttributes
35ADsSetSearchPreference
36ADsWriteAttributeDefinition
37ADsWriteClassDefinition
38AdsTypeToLdapTypeCopyConstruct
39AdsTypeToLdapTypeCopyDNWithBinary
40AdsTypeToLdapTypeCopyDNWithString
41AdsTypeToLdapTypeCopyGeneralizedTime
42AdsTypeToLdapTypeCopyTime
43BerBvFree
44BerEncodingQuotaControl
45BuildADsParentPath
46BuildADsParentPathFromObjectInfo2
47BuildADsParentPathFromObjectInfo
48BuildADsPathFromLDAPPath2
49BuildADsPathFromLDAPPath
50BuildADsPathFromParent
51BuildLDAPPathFromADsPath2
52BuildLDAPPathFromADsPath
53ChangeSeparator
54Component
55ConvertSidToString
56ConvertSidToU2Trustee
57ConvertU2TrusteeToSid
58FindEntryInSearchTable
59FindSearchTableIndex
60FreeObjectInfo
61GetDefaultServer
62GetDisplayName
63GetDomainDNSNameForDomain
64GetLDAPTypeName
65; public: long __cdecl CLexer::GetNextToken(unsigned short * __ptr64,unsigned long * __ptr64) __ptr64
66?GetNextToken@CLexer@@QEAAJPEAGPEAK@Z
67GetSyntaxOfAttribute
68InitObjectInfo
69; public: long __cdecl CLexer::InitializePath(unsigned short * __ptr64) __ptr64
70?InitializePath@CLexer@@QEAAJPEAG@Z
71IsGCNamespace
72LdapAddExtS
73LdapAddS
74LdapAttributeFree
75LdapCacheAddRef
76LdapCloseObject
77LdapCompareExt
78LdapControlFree
79LdapControlsFree
80LdapCountEntries
81LdapCrackUserDNtoNTLMUser2
82LdapCrackUserDNtoNTLMUser
83LdapCreatePageControl
84LdapDeleteExtS
85LdapDeleteS
86LdapFirstAttribute
87LdapFirstEntry
88LdapGetDn
89LdapGetNextPageS
90LdapGetSchemaObjectCount
91LdapGetSubSchemaSubEntryPath
92LdapGetSyntaxIdOfAttribute
93LdapGetSyntaxOfAttributeOnServer
94LdapGetValues
95LdapGetValuesLen
96LdapInitializeSearchPreferences
97LdapIsClassNameValidOnServer
98LdapMakeSchemaCacheObsolete
99LdapMemFree
100LdapModDnS
101LdapModifyExtS
102LdapModifyS
103LdapMsgFree
104LdapNextAttribute
105LdapNextEntry
106LdapOpenObject2
107LdapOpenObject
108LdapParsePageControl
109LdapParseResult
110LdapReadAttribute2
111LdapReadAttribute
112LdapReadAttributeFast
113LdapRenameExtS
114LdapResult
115LdapSearch
116LdapSearchAbandonPage
117LdapSearchExtS
118LdapSearchInitPage
119LdapSearchS
120LdapSearchST
121LdapTypeBinaryToString
122LdapTypeCopyConstruct
123LdapTypeFreeLdapModList
124LdapTypeFreeLdapModObject
125LdapTypeFreeLdapObjects
126LdapTypeToAdsTypeDNWithBinary
127LdapTypeToAdsTypeDNWithString
128LdapTypeToAdsTypeGeneralizedTime
129LdapTypeToAdsTypeUTCTime
130LdapValueFree
131LdapValueFreeLen
132LdapcKeepHandleAround
133LdapcSetStickyServer
134PathName
135ReadPagingSupportedAttr
136ReadSecurityDescriptorControlType
137ReadServerSupportsIsADControl
138SchemaAddRef
139SchemaClose
140SchemaGetClassInfo
141SchemaGetClassInfoByIndex
142SchemaGetObjectCount
143SchemaGetPropertyInfo
144SchemaGetPropertyInfoByIndex
145SchemaGetStringsFromStringTable
146SchemaGetSyntaxOfAttribute
147SchemaIsClassAContainer
148SchemaOpen
149; public: void __cdecl CLexer::SetAtDisabler(int) __ptr64
150?SetAtDisabler@CLexer@@QEAAXH@Z
151; public: void __cdecl CLexer::SetExclaimnationDisabler(int) __ptr64
152?SetExclaimnationDisabler@CLexer@@QEAAXH@Z
153; public: void __cdecl CLexer::SetFSlashDisabler(int) __ptr64
154?SetFSlashDisabler@CLexer@@QEAAXH@Z
155SortAndRemoveDuplicateOIDs
156UnMarshallLDAPToLDAPSynID
157intcmp
158ADSIAbandonSearch
159ADSICloseDSObject
160ADSICloseSearchHandle
161ADSICreateDSObject
162ADSIDeleteDSObject
163ADSIExecuteSearch
164ADSIFreeColumn
165ADSIGetColumn
166ADSIGetFirstRow
167ADSIGetNextColumnName
168ADSIGetNextRow
169ADSIGetObjectAttributes
170ADSIGetPreviousRow
171ADSIModifyRdn
172ADSIOpenDSObject
173ADSISetObjectAttributes
174ADSISetSearchPreference
175ADsDecodeBinaryData
176ADsEncodeBinaryData
177ADsGetLastError
178ADsSetLastError
179AdsTypeFreeAdsObjects
180AllocADsMem
181AllocADsStr
182FreeADsMem
183FreeADsStr
184LdapTypeToAdsTypeCopyConstruct
185MapADSTypeToLDAPType
186MapLDAPTypeToADSType
187ReallocADsMem
188ReallocADsStr
lib/libc/mingw/lib64/agentanm.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file AgentAnm.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AgentAnm.DLL
8EXPORTS
9CreateAgentAnimA
10CreateAgentAnimW
11CreateAgentRenderA
12CreateAgentRenderW
lib/libc/mingw/lib64/akscoinst.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file AKSCLASS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AKSCLASS.dll
8EXPORTS
9AksHaspCoInstallEntryPoint
lib/libc/mingw/lib64/alrsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file alrsvc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY alrsvc.dll
8EXPORTS
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/lib64/apcups.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file apcups.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY apcups.dll
8EXPORTS
9UPSCancelWait
10UPSGetState
11UPSInit
12UPSStop
13UPSTurnOff
14UPSWaitForStateChange
lib/libc/mingw/lib64/aqueue.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file aqueue.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY aqueue.dll
8EXPORTS
9HrAdvQueueInitialize
10HrAdvQueueDeinitialize
11HrAdvQueueInitializeEx
12HrAdvQueueDeinitializeEx
13DllCanUnloadNow
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
lib/libc/mingw/lib64/asp.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file asp.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY asp.dll
8EXPORTS
9AspStatusHtmlDump
10DllRegisterServer
11DllUnregisterServer
12GetExtensionVersion
13HttpExtensionProc
14TerminateExtension
lib/libc/mingw/lib64/aspperf.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file aspperf.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY aspperf.dll
8EXPORTS
9OpenASPPerformanceData
10CollectASPPerformanceData
11CloseASPPerformanceData
12RegisterAXS
13UnRegisterAXS
lib/libc/mingw/lib64/atkctrs.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file atkctrs.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY atkctrs.dll
8EXPORTS
9OpenAtkPerformanceData
10CollectAtkPerformanceData
11CloseAtkPerformanceData
lib/libc/mingw/lib64/atmlib.def created+84
......@@ -0,0 +1,84 @@
1;
2; Exports of file ATMLIB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ATMLIB.dll
8EXPORTS
9ATMAddFont
10ATMAddFontA
11ATMAddFontEx
12ATMAddFontExA
13ATMAddFontExW
14ATMAddFontW
15ATMBBoxBaseXYShowText
16ATMBBoxBaseXYShowTextA
17ATMBBoxBaseXYShowTextW
18ATMBeginFontChange
19ATMClient
20ATMEndFontChange
21ATMEnumFonts
22ATMEnumFontsA
23ATMEnumFontsW
24ATMEnumMMFonts
25ATMEnumMMFontsA
26ATMEnumMMFontsW
27ATMFinish
28ATMFontAvailable
29ATMFontAvailableA
30ATMFontAvailableW
31ATMFontSelected
32ATMFontStatus
33ATMFontStatusA
34ATMFontStatusW
35ATMForceFontChange
36ATMGetBuildStr
37ATMGetBuildStrA
38ATMGetBuildStrW
39ATMGetFontBBox
40ATMGetFontInfo
41ATMGetFontInfoA
42ATMGetFontInfoW
43ATMGetFontPaths
44ATMGetFontPathsA
45ATMGetFontPathsW
46ATMGetGlyphList
47ATMGetGlyphListA
48ATMGetGlyphListW
49ATMGetMenuName
50ATMGetMenuNameA
51ATMGetMenuNameW
52ATMGetNtmFields
53ATMGetNtmFieldsA
54ATMGetNtmFieldsW
55ATMGetOutline
56ATMGetOutlineA
57ATMGetOutlineW
58ATMGetPostScriptName
59ATMGetPostScriptNameA
60ATMGetPostScriptNameW
61ATMGetVersion
62ATMGetVersionEx
63ATMGetVersionExA
64ATMGetVersionExW
65ATMInstallSubstFontA
66ATMInstallSubstFontW
67ATMMakePFM
68ATMMakePFMA
69ATMMakePFMW
70ATMMakePSS
71ATMMakePSSA
72ATMMakePSSW
73ATMProperlyLoaded
74ATMRemoveFont
75ATMRemoveFontA
76ATMRemoveFontW
77ATMRemoveSubstFontA
78ATMRemoveSubstFontW
79ATMSelectEncoding
80ATMSelectObject
81ATMSetFlags
82ATMXYShowText
83ATMXYShowTextA
84ATMXYShowTextW
lib/libc/mingw/lib64/atrace.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file atrace.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY atrace.dll
8EXPORTS
9INTERNAL__AsyncBinaryTrace
10INTERNAL__AsyncStringTrace
11INTERNAL__DebugAssert
12INTERNAL__FlushAsyncTrace
13INTERNAL__InitAsyncTrace
14INTERNAL__SetAsyncTraceParams
15INTERNAL__TermAsyncTrace
lib/libc/mingw/lib64/autodisc.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file AutoDisc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AutoDisc.dll
8EXPORTS
9AddEmailToAutoComplete
10AutoDiscoverAndOpenEmail
11DllCanUnloadNow
12DllGetClassObject
13DllInstall
14DllRegisterServer
15DllUnregisterServer
lib/libc/mingw/lib64/avicap32.def deleted-14
......@@ -1,14 +0,0 @@
1;
2; Exports of file AVICAP32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AVICAP32.dll
8EXPORTS
9AppCleanup
10capCreateCaptureWindowA
11capCreateCaptureWindowW
12capGetDriverDescriptionA
13capGetDriverDescriptionW
14videoThunk32
lib/libc/mingw/lib64/avifil32.def deleted-84
......@@ -1,84 +0,0 @@
1;
2; Exports of file AVIFIL32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AVIFIL32.dll
8EXPORTS
9AVIBuildFilter
10AVIBuildFilterA
11AVIBuildFilterW
12AVIClearClipboard
13AVIFileAddRef
14AVIFileCreateStream
15AVIFileCreateStreamA
16AVIFileCreateStreamW
17AVIFileEndRecord
18AVIFileExit
19AVIFileGetStream
20AVIFileInfo
21AVIFileInfoA
22AVIFileInfoW
23AVIFileInit
24AVIFileOpen
25AVIFileOpenA
26AVIFileOpenW
27AVIFileReadData
28AVIFileRelease
29AVIFileWriteData
30AVIGetFromClipboard
31AVIMakeCompressedStream
32AVIMakeFileFromStreams
33AVIMakeStreamFromClipboard
34AVIPutFileOnClipboard
35AVISave
36AVISaveA
37AVISaveOptions
38AVISaveOptionsFree
39AVISaveV
40AVISaveVA
41AVISaveVW
42AVISaveW
43AVIStreamAddRef
44AVIStreamBeginStreaming
45AVIStreamCreate
46AVIStreamEndStreaming
47AVIStreamFindSample
48AVIStreamGetFrame
49AVIStreamGetFrameClose
50AVIStreamGetFrameOpen
51AVIStreamInfo
52AVIStreamInfoA
53AVIStreamInfoW
54AVIStreamLength
55AVIStreamOpenFromFile
56AVIStreamOpenFromFileA
57AVIStreamOpenFromFileW
58AVIStreamRead
59AVIStreamReadData
60AVIStreamReadFormat
61AVIStreamRelease
62AVIStreamSampleToTime
63AVIStreamSetFormat
64AVIStreamStart
65AVIStreamTimeToSample
66AVIStreamWrite
67AVIStreamWriteData
68CreateEditableStream
69DllCanUnloadNow
70DllGetClassObject
71EditStreamClone
72EditStreamCopy
73EditStreamCut
74EditStreamPaste
75EditStreamSetInfo
76EditStreamSetInfoA
77EditStreamSetInfoW
78EditStreamSetName
79EditStreamSetNameA
80EditStreamSetNameW
81IID_IAVIEditStream
82IID_IAVIFile
83IID_IAVIStream
84IID_IGetFrame
lib/libc/mingw/lib64/batmeter.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file BatMeter.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY BatMeter.dll
8EXPORTS
9BatMeterCapabilities
10CreateBatMeter
11DestroyBatMeter
12PowerCapabilities
13UpdateBatMeter
lib/libc/mingw/lib64/batt.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file batt.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY batt.dll
8EXPORTS
9BatteryClassCoInstaller
10BatteryClassInstall
lib/libc/mingw/lib64/cards.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file CARDS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CARDS.dll
8EXPORTS
9WEP
10cdtAnimate
11cdtDraw
12cdtDrawExt
13cdtInit
14cdtTerm
lib/libc/mingw/lib64/catsrv.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file catsrv.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY catsrv.dll
8EXPORTS
9; long __cdecl CancelWriteICR(struct IComponentRecords * __ptr64 * __ptr64)
10?CancelWriteICR@@YAJPEAPEAUIComponentRecords@@@Z
11CreateComponentLibraryTS
12GetCatalogCRMClerk
13; long __cdecl GetReadICR(int,struct IComponentRecords * __ptr64 * __ptr64)
14?GetReadICR@@YAJHPEAPEAUIComponentRecords@@@Z
15; long __cdecl GetWriteICR(struct IComponentRecords * __ptr64 * __ptr64)
16?GetWriteICR@@YAJPEAPEAUIComponentRecords@@@Z
17OpenComponentLibrarySharedTS
18OpenComponentLibraryTS
19; void __cdecl ReleaseReadICR(struct IComponentRecords * __ptr64 * __ptr64)
20?ReleaseReadICR@@YAXPEAPEAUIComponentRecords@@@Z
21; long __cdecl SaveWriteICR(struct IComponentRecords * __ptr64 * __ptr64)
22?SaveWriteICR@@YAJPEAPEAUIComponentRecords@@@Z
23DllCanUnloadNow
24DllGetClassObject
25DllRegisterServer
26DllUnregisterServer
lib/libc/mingw/lib64/catsrvut.def created+56
......@@ -0,0 +1,56 @@
1;
2; Exports of file catsrvut.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY catsrvut.DLL
8EXPORTS
9; public: __cdecl CComPlusComponent::CComPlusComponent(class CComPlusComponent const & __ptr64) __ptr64
10??0CComPlusComponent@@QEAA@AEBV0@@Z
11; public: __cdecl CComPlusInterface::CComPlusInterface(class CComPlusInterface const & __ptr64) __ptr64
12??0CComPlusInterface@@QEAA@AEBV0@@Z
13; public: __cdecl CComPlusMethod::CComPlusMethod(class CComPlusMethod const & __ptr64) __ptr64
14??0CComPlusMethod@@QEAA@AEBV0@@Z
15; public: __cdecl CComPlusObject::CComPlusObject(class CComPlusObject const & __ptr64) __ptr64
16??0CComPlusObject@@QEAA@AEBV0@@Z
17; public: virtual __cdecl CComPlusComponent::~CComPlusComponent(void) __ptr64
18??1CComPlusComponent@@UEAA@XZ
19; public: virtual __cdecl CComPlusInterface::~CComPlusInterface(void) __ptr64
20??1CComPlusInterface@@UEAA@XZ
21; public: class CComPlusComponent & __ptr64 __cdecl CComPlusComponent::operator=(class CComPlusComponent const & __ptr64) __ptr64
22??4CComPlusComponent@@QEAAAEAV0@AEBV0@@Z
23; public: class CComPlusInterface & __ptr64 __cdecl CComPlusInterface::operator=(class CComPlusInterface const & __ptr64) __ptr64
24??4CComPlusInterface@@QEAAAEAV0@AEBV0@@Z
25; public: class CComPlusMethod & __ptr64 __cdecl CComPlusMethod::operator=(class CComPlusMethod const & __ptr64) __ptr64
26??4CComPlusMethod@@QEAAAEAV0@AEBV0@@Z
27; public: class CComPlusObject & __ptr64 __cdecl CComPlusObject::operator=(class CComPlusObject const & __ptr64) __ptr64
28??4CComPlusObject@@QEAAAEAV0@AEBV0@@Z
29; public: class CComPlusTypelib & __ptr64 __cdecl CComPlusTypelib::operator=(class CComPlusTypelib const & __ptr64) __ptr64
30??4CComPlusTypelib@@QEAAAEAV0@AEBV0@@Z
31; const CComPlusComponent::`vftable'
32??_7CComPlusComponent@@6B@
33; const CComPlusInterface::`vftable'
34??_7CComPlusInterface@@6B@
35; const CComPlusMethod::`vftable'
36??_7CComPlusMethod@@6B@
37; const CComPlusObject::`vftable'
38??_7CComPlusObject@@6B@
39; public: struct ITypeLib * __ptr64 __cdecl CComPlusTypelib::GetITypeLib(void) __ptr64
40?GetITypeLib@CComPlusTypelib@@QEAAPEAUITypeLib@@XZ
41RegDBBackup
42RegDBRestore
43StartMTSTOCOM
44WinlogonHandlePendingInfOperations
45CGMIsAdministrator
46COMPlusUninstallActionW
47DllCanUnloadNow
48DllGetClassObject
49DllRegisterServer
50DllUnregisterServer
51FindAssemblyModulesW
52ManagedRequestW
53QueryUserDllW
54RunMTSToCom
55SysprepComplus
56SysprepComplus2
lib/libc/mingw/lib64/ccfgnt.def created+23
......@@ -0,0 +1,23 @@
1;
2; Exports of file ICFGNT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ICFGNT.dll
8EXPORTS
9IcfgSetInstallSourcePath
10InetSetAutodialAddress
11IcfgGetLastInstallErrorText
12IcfgInstallInetComponents
13IcfgInstallModem
14IcfgIsFileSharingTurnedOn
15IcfgIsGlobalDNS
16IcfgNeedInetComponents
17IcfgNeedModem
18IcfgRemoveGlobalDNS
19IcfgStartServices
20IcfgTurnOffFileSharing
21InetGetAutodial
22InetGetSupportedPlatform
23InetSetAutodial
lib/libc/mingw/lib64/cdfview.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file CdfView.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CdfView.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13OpenChannel
14ParseDesktopComponent
15Subscribe
16SubscribeToCDF
lib/libc/mingw/lib64/cdm.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file CDM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CDM.dll
8EXPORTS
9CancelCDMOperation
10CloseCDMContext
11DetFilesDownloaded
12DownloadGetUpdatedFiles
13DownloadIsInternetAvailable
14DownloadUpdatedFiles
15FindMatchingDriver
16LogDriverNotFound
17OpenCDMContext
18OpenCDMContextEx
19QueryDetectionFiles
lib/libc/mingw/lib64/certcli.def created+89
......@@ -0,0 +1,89 @@
1;
2; Exports of file certcli.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY certcli.dll
8EXPORTS
9CAAccessCheck
10CAAccessCheckEx
11CAAddCACertificateType
12CACertTypeAccessCheck
13CACertTypeAccessCheckEx
14CACertTypeGetSecurity
15CACertTypeQuery
16CACertTypeRegisterQuery
17CACertTypeSetSecurity
18CACertTypeUnregisterQuery
19CACloneCertType
20CACloseCA
21CACloseCertType
22CACountCAs
23CACountCertTypes
24CACreateAutoEnrollmentObjectEx
25CACreateCertType
26CACreateLocalAutoEnrollmentObject
27CACreateNewCA
28CADeleteCA
29CADeleteCertType
30CADeleteLocalAutoEnrollmentObject
31CAEnumCertTypes
32CAEnumCertTypesEx
33CAEnumCertTypesForCA
34CAEnumCertTypesForCAEx
35CAEnumFirstCA
36CAEnumNextCA
37CAEnumNextCertType
38CAFindByCertType
39CAFindByIssuerDN
40CAFindByName
41CAFindCertTypeByName
42CAFreeCAProperty
43CAFreeCertTypeExtensions
44CAFreeCertTypeProperty
45CAGetCACertificate
46CAGetCAExpiration
47CAGetCAFlags
48CAGetCAProperty
49CAGetCASecurity
50CAGetCertTypeExpiration
51CAGetCertTypeExtensions
52CAGetCertTypeExtensionsEx
53CAGetCertTypeFlags
54CAGetCertTypeFlagsEx
55CAGetCertTypeKeySpec
56CAGetCertTypeProperty
57CAGetCertTypePropertyEx
58CAGetDN
59CAInstallDefaultCertType
60CAIsCertTypeCurrent
61CAOIDAdd
62CAOIDCreateNew
63CAOIDDelete
64CAOIDFreeLdapURL
65CAOIDFreeProperty
66CAOIDGetLdapURL
67CAOIDGetProperty
68CAOIDSetProperty
69CARemoveCACertificateType
70CASetCACertificate
71CASetCAExpiration
72CASetCAFlags
73CASetCAProperty
74CASetCASecurity
75CASetCertTypeExpiration
76CASetCertTypeExtension
77CASetCertTypeFlags
78CASetCertTypeFlagsEx
79CASetCertTypeKeySpec
80CASetCertTypeProperty
81CASetCertTypePropertyEx
82CAUpdateCA
83CAUpdateCertType
84DllCanUnloadNow
85DllGetClassObject
86DllInstall
87DllRegisterServer
88DllUnregisterServer
89GetProxyDllInfo
lib/libc/mingw/lib64/chtskdic.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file imeskdic.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY imeskdic.dll
8EXPORTS
9CreateIImeSkdicInstance
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/cimwin32.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file cimwin32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY cimwin32.dll
8EXPORTS
9; public: __cdecl CTcpMib::CTcpMib(class CTcpMib const & __ptr64) __ptr64
10??0CTcpMib@@QEAA@AEBV0@@Z
11; public: __cdecl CTcpMib::CTcpMib(void) __ptr64
12??0CTcpMib@@QEAA@XZ
13; public: virtual __cdecl CTcpMib::~CTcpMib(void) __ptr64
14??1CTcpMib@@UEAA@XZ
15; public: class CTcpMib & __ptr64 __cdecl CTcpMib::operator=(class CTcpMib const & __ptr64) __ptr64
16??4CTcpMib@@QEAAAEAV0@AEBV0@@Z
17; const CTcpMib::`vftable'
18??_7CTcpMib@@6B@
19; class Win32SecurityDescriptor MySecurityDescriptor
20?MySecurityDescriptor@@3VWin32SecurityDescriptor@@A DATA
21DllCanUnloadNow
22DllGetClassObject
23DllRegisterServer
24DllUnregisterServer
25GetSDFromWin32SecurityDescriptor
26SetWin32SecurityDescriptorFromSD
lib/libc/mingw/lib64/classpnp.def created+67
......@@ -0,0 +1,67 @@
1;
2; Definition file of CLASSPNP.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "CLASSPNP.SYS"
7EXPORTS
8ClassAcquireChildLock
9ClassAcquireRemoveLockEx
10ClassAsynchronousCompletion
11ClassBuildRequest
12ClassCheckMediaState
13ClassClaimDevice
14ClassCleanupMediaChangeDetection
15ClassCompleteRequest
16ClassCreateDeviceObject
17ClassDebugPrint
18ClassDeleteSrbLookasideList
19ClassDeviceControl
20ClassDisableMediaChangeDetection
21ClassEnableMediaChangeDetection
22ClassFindModePage
23ClassForwardIrpSynchronous
24ClassGetDescriptor
25ClassGetDeviceParameter
26ClassGetDriverExtension
27ClassGetFsContext
28ClassGetVpb
29ClassInitialize
30ClassInitializeEx
31ClassInitializeMediaChangeDetection
32ClassInitializeSrbLookasideList
33ClassInitializeTestUnitPolling
34ClassInternalIoControl
35ClassInterpretSenseInfo
36ClassInvalidateBusRelations
37ClassIoComplete
38ClassIoCompleteAssociated
39ClassMarkChildMissing
40ClassMarkChildrenMissing
41ClassModeSense
42ClassNotifyFailurePredicted
43ClassQueryTimeOutRegistryValue
44ClassReadDriveCapacity
45ClassReleaseChildLock
46ClassReleaseQueue
47ClassReleaseRemoveLock
48ClassRemoveDevice
49ClassResetMediaChangeTimer
50ClassScanForSpecial
51ClassSendDeviceIoControlSynchronous
52ClassSendIrpSynchronous
53ClassSendNotification
54ClassSendSrbAsynchronous
55ClassSendSrbSynchronous
56ClassSendStartUnit
57ClassSetDeviceParameter
58ClassSetFailurePredictionPoll
59ClassSetMediaChangeState
60ClassSignalCompletion
61ClassSpinDownPowerHandler
62ClassSplitRequest
63ClassStopUnitPowerHandler
64ClassUpdateInformationInRegistry
65ClassWmiCompleteRequest
66ClassWmiFireEvent
67DllUnload
lib/libc/mingw/lib64/cmcfg32.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file cmcfg32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY cmcfg32.dll
8EXPORTS
9CmstpExtensionProc
10CMConfig
11CMConfigEx
lib/libc/mingw/lib64/cmdial32.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file cmdial32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY cmdial32.dll
8EXPORTS
9AutoDialFunc
10CmCustomDialDlg
11CmCustomHangUp
12CmReConnect
13GetCustomProperty
14InetDialHandler
15RasCustomDeleteEntryNotify
16RasCustomDial
17RasCustomDialDlg
18RasCustomEntryDlg
19RasCustomHangUp
lib/libc/mingw/lib64/cmpbk32.def created+31
......@@ -0,0 +1,31 @@
1;
2; Exports of file cmpbk32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY cmpbk32.dll
8EXPORTS
9PhoneBookCopyFilter
10PhoneBookEnumCountries
11PhoneBookEnumNumbers
12PhoneBookEnumNumbersWithRegionsZero
13PhoneBookEnumRegions
14PhoneBookFreeFilter
15PhoneBookGetCountryId
16PhoneBookGetCountryNameA
17PhoneBookGetCountryNameW
18PhoneBookGetCurrentCountryId
19PhoneBookGetPhoneCanonicalA
20PhoneBookGetPhoneDUNA
21PhoneBookGetPhoneDescA
22PhoneBookGetPhoneDispA
23PhoneBookGetPhoneNonCanonicalA
24PhoneBookGetPhoneType
25PhoneBookGetRegionNameA
26PhoneBookHasPhoneType
27PhoneBookLoad
28PhoneBookMatchFilter
29PhoneBookMergeChanges
30PhoneBookParseInfoA
31PhoneBookUnload
lib/libc/mingw/lib64/cmutil.def created+261
......@@ -0,0 +1,261 @@
1;
2; Definition file of cmutil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "cmutil.dll"
7EXPORTS
8; public: __cdecl CIniA::CIniA(struct HINSTANCE__ *__ptr64,char const *__ptr64,char const *__ptr64,char const *__ptr64,char const *__ptr64)__ptr64
9??0CIniA@@QEAA@PEAUHINSTANCE__@@PEBD111@Z
10; public: __cdecl CIniW::CIniW(struct HINSTANCE__ *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64)__ptr64
11??0CIniW@@QEAA@PEAUHINSTANCE__@@PEBG111@Z
12; public: __cdecl CRandom::CRandom(unsigned int)__ptr64
13??0CRandom@@QEAA@I@Z
14; public: __cdecl CRandom::CRandom(void)__ptr64
15??0CRandom@@QEAA@XZ
16; public: __cdecl CmLogFile::CmLogFile(void)__ptr64
17??0CmLogFile@@QEAA@XZ
18; public: __cdecl CIniA::~CIniA(void)__ptr64
19??1CIniA@@QEAA@XZ
20; public: __cdecl CIniW::~CIniW(void)__ptr64
21??1CIniW@@QEAA@XZ
22; public: __cdecl CmLogFile::~CmLogFile(void)__ptr64
23??1CmLogFile@@QEAA@XZ
24; public: class CIniA &__ptr64 __cdecl CIniA::operator =(class CIniA const &__ptr64 )__ptr64
25??4CIniA@@QEAAAEAV0@AEBV0@@Z
26; public: class CIniW &__ptr64 __cdecl CIniW::operator =(class CIniW const &__ptr64 )__ptr64
27??4CIniW@@QEAAAEAV0@AEBV0@@Z
28; public: class CRandom &__ptr64 __cdecl CRandom::operator =(class CRandom const &__ptr64 )__ptr64
29??4CRandom@@QEAAAEAV0@AEBV0@@Z
30; public: class CmLogFile &__ptr64 __cdecl CmLogFile::operator =(class CmLogFile const &__ptr64 )__ptr64
31??4CmLogFile@@QEAAAEAV0@AEBV0@@Z
32; public: void __cdecl CIniA::__dflt_ctor_closure(void)__ptr64
33??_FCIniA@@QEAAXXZ
34; public: void __cdecl CIniW::__dflt_ctor_closure(void)__ptr64
35??_FCIniW@@QEAAXXZ
36; public: void __cdecl CmLogFile::Banner(void)__ptr64
37?Banner@CmLogFile@@QEAAXXZ
38; protected: int __cdecl CIniA::CIniA_DeleteEntryFromReg(struct HKEY__ *__ptr64,char const *__ptr64,char const *__ptr64)const __ptr64
39?CIniA_DeleteEntryFromReg@CIniA@@IEBAHPEAUHKEY__@@PEBD1@Z
40; protected: unsigned char *__ptr64 __cdecl CIniA::CIniA_GetEntryFromReg(struct HKEY__ *__ptr64,char const *__ptr64,char const *__ptr64,unsigned long,unsigned long)const __ptr64
41?CIniA_GetEntryFromReg@CIniA@@IEBAPEAEPEAUHKEY__@@PEBD1KK@Z
42; protected: int __cdecl CIniA::CIniA_WriteEntryToReg(struct HKEY__ *__ptr64,char const *__ptr64,char const *__ptr64,unsigned char const *__ptr64,unsigned long,unsigned long)const __ptr64
43?CIniA_WriteEntryToReg@CIniA@@IEBAHPEAUHKEY__@@PEBD1PEBEKK@Z
44; protected: int __cdecl CIniW::CIniW_DeleteEntryFromReg(struct HKEY__ *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64)const __ptr64
45?CIniW_DeleteEntryFromReg@CIniW@@IEBAHPEAUHKEY__@@PEBG1@Z
46; protected: unsigned char *__ptr64 __cdecl CIniW::CIniW_GetEntryFromReg(struct HKEY__ *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned long,unsigned long)const __ptr64
47?CIniW_GetEntryFromReg@CIniW@@IEBAPEAEPEAUHKEY__@@PEBG1KK@Z
48; protected: int __cdecl CIniW::CIniW_WriteEntryToReg(struct HKEY__ *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned char const *__ptr64,unsigned long,unsigned long)const __ptr64
49?CIniW_WriteEntryToReg@CIniW@@IEBAHPEAUHKEY__@@PEBG1PEBEKK@Z
50; protected: static void __cdecl CIniA::CIni_SetFile(char *__ptr64 *__ptr64,char const *__ptr64)
51?CIni_SetFile@CIniA@@KAXPEAPEADPEBD@Z
52; protected: static void __cdecl CIniW::CIni_SetFile(unsigned short *__ptr64 *__ptr64,unsigned short const *__ptr64)
53?CIni_SetFile@CIniW@@KAXPEAPEAGPEBG@Z
54; public: void __cdecl CIniA::Clear(void)__ptr64
55?Clear@CIniA@@QEAAXXZ
56; public: void __cdecl CIniW::Clear(void)__ptr64
57?Clear@CIniW@@QEAAXXZ
58; public: void __cdecl CmLogFile::Clear(int)__ptr64
59?Clear@CmLogFile@@QEAAXH@Z
60; private: long __cdecl CmLogFile::CloseFile(void)__ptr64
61?CloseFile@CmLogFile@@AEAAJXZ
62CmAtolA
63CmAtolW
64CmBuildFullPathFromRelativeA
65CmBuildFullPathFromRelativeW
66CmCompareStringA
67CmCompareStringW
68CmConvertRelativePathA
69CmConvertRelativePathW
70CmEndOfStrA
71CmConvertStrToIPv6AddrA
72CmConvertStrToIPv6AddrW
73CmEndOfStrW
74CmFmtMsgA
75CmFmtMsgW
76CmFree
77CmIsDigitA
78CmIsDigitW
79CmIsIPv6AddressA
80CmIsIPv6AddressW
81CmIsSpaceA
82CmIsSpaceW
83CmLoadIconA
84CmLoadIconW
85CmLoadImageA
86CmLoadImageW
87CmLoadSmallIconA
88CmLoadSmallIconW
89CmLoadStringA
90CmLoadStringW
91CmMalloc
92CmParsePathA
93CmParsePathW
94CmRealloc
95CmStrCatAllocA
96CmStrCatAllocW
97CmStrCharCountA
98CmStrCharCountW
99CmStrCharStuffingA
100CmStrCharStuffingW
101CmStrCpyAllocA
102CmStrCpyAllocW
103CmStrStrA
104CmStrStrW
105CmStrTrimA
106CmStrTrimW
107CmStrchrA
108CmStrchrW
109CmStripFileNameA
110CmStripFileNameW
111CmStripPathAndExtA
112CmStripPathAndExtW
113CmStrrchrA
114CmStrrchrW
115CmStrtokA
116CmStrtokW
117CmWinHelp
118; public: long __cdecl CmLogFile::DeInit(void)__ptr64
119?DeInit@CmLogFile@@QEAAJXZ
120; private: void __cdecl CmLogFile::FormatWrite(enum _CMLOG_ITEM,unsigned short *__ptr64)__ptr64
121?FormatWrite@CmLogFile@@AEAAXW4_CMLOG_ITEM@@PEAG@Z
122; public: int __cdecl CIniA::GPPB(char const *__ptr64,char const *__ptr64,int)const __ptr64
123?GPPB@CIniA@@QEBAHPEBD0H@Z
124; public: int __cdecl CIniW::GPPB(unsigned short const *__ptr64,unsigned short const *__ptr64,int)const __ptr64
125?GPPB@CIniW@@QEBAHPEBG0H@Z
126; public: unsigned long __cdecl CIniA::GPPI(char const *__ptr64,char const *__ptr64,unsigned long)const __ptr64
127?GPPI@CIniA@@QEBAKPEBD0K@Z
128; public: unsigned long __cdecl CIniW::GPPI(unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned long)const __ptr64
129?GPPI@CIniW@@QEBAKPEBG0K@Z
130; public: char *__ptr64 __cdecl CIniA::GPPS(char const *__ptr64,char const *__ptr64,char const *__ptr64)const __ptr64
131?GPPS@CIniA@@QEBAPEADPEBD00@Z
132; public: unsigned short *__ptr64 __cdecl CIniW::GPPS(unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64)const __ptr64
133?GPPS@CIniW@@QEBAPEAGPEBG00@Z
134; public: int __cdecl CRandom::Generate(void)__ptr64
135?Generate@CRandom@@QEAAHXZ
136; public: char const *__ptr64 __cdecl CIniA::GetFile(void)const __ptr64
137?GetFile@CIniA@@QEBAPEBDXZ
138; public: unsigned short const *__ptr64 __cdecl CIniW::GetFile(void)const __ptr64
139?GetFile@CIniW@@QEBAPEBGXZ
140; public: struct HINSTANCE__ *__ptr64 __cdecl CIniA::GetHInst(void)const __ptr64
141?GetHInst@CIniA@@QEBAPEAUHINSTANCE__@@XZ
142; public: struct HINSTANCE__ *__ptr64 __cdecl CIniW::GetHInst(void)const __ptr64
143?GetHInst@CIniW@@QEBAPEAUHINSTANCE__@@XZ
144; public: unsigned short const *__ptr64 __cdecl CmLogFile::GetLogFilePath(void)__ptr64
145?GetLogFilePath@CmLogFile@@QEAAPEBGXZ
146GetOSBuildNumber
147GetOSMajorVersion
148GetOSVersion
149; public: char const *__ptr64 __cdecl CIniA::GetPrimaryFile(void)const __ptr64
150?GetPrimaryFile@CIniA@@QEBAPEBDXZ
151; public: unsigned short const *__ptr64 __cdecl CIniW::GetPrimaryFile(void)const __ptr64
152?GetPrimaryFile@CIniW@@QEBAPEBGXZ
153; public: char const *__ptr64 __cdecl CIniA::GetPrimaryRegPath(void)const __ptr64
154?GetPrimaryRegPath@CIniA@@QEBAPEBDXZ
155; public: unsigned short const *__ptr64 __cdecl CIniW::GetPrimaryRegPath(void)const __ptr64
156?GetPrimaryRegPath@CIniW@@QEBAPEBGXZ
157; public: char const *__ptr64 __cdecl CIniA::GetRegPath(void)const __ptr64
158?GetRegPath@CIniA@@QEBAPEBDXZ
159; public: unsigned short const *__ptr64 __cdecl CIniW::GetRegPath(void)const __ptr64
160?GetRegPath@CIniW@@QEBAPEBGXZ
161; public: char const *__ptr64 __cdecl CIniA::GetSection(void)const __ptr64
162?GetSection@CIniA@@QEBAPEBDXZ
163; public: unsigned short const *__ptr64 __cdecl CIniW::GetSection(void)const __ptr64
164?GetSection@CIniW@@QEBAPEBGXZ
165; public: void __cdecl CRandom::Init(unsigned long)__ptr64
166?Init@CRandom@@QEAAXK@Z
167; public: long __cdecl CmLogFile::Init(struct HINSTANCE__ *__ptr64,int,char const *__ptr64)__ptr64
168?Init@CmLogFile@@QEAAJPEAUHINSTANCE__@@HPEBD@Z
169; public: long __cdecl CmLogFile::Init(struct HINSTANCE__ *__ptr64,int,unsigned short const *__ptr64)__ptr64
170?Init@CmLogFile@@QEAAJPEAUHINSTANCE__@@HPEBG@Z
171; public: int __cdecl CmLogFile::IsEnabled(void)__ptr64
172?IsEnabled@CmLogFile@@QEAAHXZ
173IsFarEastNonOSR2Win95
174IsLogonAsSystem
175; protected: char *__ptr64 __cdecl CIniA::LoadEntry(char const *__ptr64)const __ptr64
176?LoadEntry@CIniA@@IEBAPEADPEBD@Z
177; protected: unsigned short *__ptr64 __cdecl CIniW::LoadEntry(unsigned short const *__ptr64)const __ptr64
178?LoadEntry@CIniW@@IEBAPEAGPEBG@Z
179; public: char *__ptr64 __cdecl CIniA::LoadSection(char const *__ptr64)const __ptr64
180?LoadSection@CIniA@@QEBAPEADPEBD@Z
181; public: unsigned short *__ptr64 __cdecl CIniW::LoadSection(unsigned short const *__ptr64)const __ptr64
182?LoadSection@CIniW@@QEBAPEAGPEBG@Z
183; public: void __cdecl CmLogFile::Log(enum _CMLOG_ITEM,...)__ptr64
184?Log@CmLogFile@@QEAAXW4_CMLOG_ITEM@@ZZ
185MakeBold
186; private: long __cdecl CmLogFile::OpenFile(void)__ptr64
187?OpenFile@CmLogFile@@AEAAJXZ
188ReleaseBold
189; public: void __cdecl CIniA::SetEntry(char const *__ptr64)__ptr64
190?SetEntry@CIniA@@QEAAXPEBD@Z
191; public: void __cdecl CIniW::SetEntry(unsigned short const *__ptr64)__ptr64
192?SetEntry@CIniW@@QEAAXPEBG@Z
193; public: void __cdecl CIniA::SetEntryFromIdx(unsigned long)__ptr64
194?SetEntryFromIdx@CIniA@@QEAAXK@Z
195; public: void __cdecl CIniW::SetEntryFromIdx(unsigned long)__ptr64
196?SetEntryFromIdx@CIniW@@QEAAXK@Z
197; public: void __cdecl CIniA::SetFile(char const *__ptr64)__ptr64
198?SetFile@CIniA@@QEAAXPEBD@Z
199; public: void __cdecl CIniW::SetFile(unsigned short const *__ptr64)__ptr64
200?SetFile@CIniW@@QEAAXPEBG@Z
201; public: void __cdecl CIniA::SetHInst(struct HINSTANCE__ *__ptr64)__ptr64
202?SetHInst@CIniA@@QEAAXPEAUHINSTANCE__@@@Z
203; public: void __cdecl CIniW::SetHInst(struct HINSTANCE__ *__ptr64)__ptr64
204?SetHInst@CIniW@@QEAAXPEAUHINSTANCE__@@@Z
205; public: void __cdecl CIniA::SetICSDataPath(char const *__ptr64)__ptr64
206?SetICSDataPath@CIniA@@QEAAXPEBD@Z
207; public: void __cdecl CIniW::SetICSDataPath(unsigned short const *__ptr64)__ptr64
208?SetICSDataPath@CIniW@@QEAAXPEBG@Z
209; public: long __cdecl CmLogFile::SetParams(int,unsigned long,char const *__ptr64)__ptr64
210?SetParams@CmLogFile@@QEAAJHKPEBD@Z
211; public: long __cdecl CmLogFile::SetParams(int,unsigned long,unsigned short const *__ptr64)__ptr64
212?SetParams@CmLogFile@@QEAAJHKPEBG@Z
213; public: void __cdecl CIniA::SetPrimaryFile(char const *__ptr64)__ptr64
214?SetPrimaryFile@CIniA@@QEAAXPEBD@Z
215; public: void __cdecl CIniW::SetPrimaryFile(unsigned short const *__ptr64)__ptr64
216?SetPrimaryFile@CIniW@@QEAAXPEBG@Z
217; public: void __cdecl CIniA::SetPrimaryRegPath(char const *__ptr64)__ptr64
218?SetPrimaryRegPath@CIniA@@QEAAXPEBD@Z
219; public: void __cdecl CIniW::SetPrimaryRegPath(unsigned short const *__ptr64)__ptr64
220?SetPrimaryRegPath@CIniW@@QEAAXPEBG@Z
221; public: void __cdecl CIniA::SetReadICSData(int)__ptr64
222?SetReadICSData@CIniA@@QEAAXH@Z
223; public: void __cdecl CIniW::SetReadICSData(int)__ptr64
224?SetReadICSData@CIniW@@QEAAXH@Z
225; public: void __cdecl CIniA::SetRegPath(char const *__ptr64)__ptr64
226?SetRegPath@CIniA@@QEAAXPEBD@Z
227; public: void __cdecl CIniW::SetRegPath(unsigned short const *__ptr64)__ptr64
228?SetRegPath@CIniW@@QEAAXPEBG@Z
229; public: void __cdecl CIniA::SetSection(char const *__ptr64)__ptr64
230?SetSection@CIniA@@QEAAXPEBD@Z
231; public: void __cdecl CIniW::SetSection(unsigned short const *__ptr64)__ptr64
232?SetSection@CIniW@@QEAAXPEBG@Z
233; public: void __cdecl CIniA::SetWriteICSData(int)__ptr64
234?SetWriteICSData@CIniA@@QEAAXH@Z
235; public: void __cdecl CIniW::SetWriteICSData(int)__ptr64
236?SetWriteICSData@CIniW@@QEAAXH@Z
237; public: long __cdecl CmLogFile::Start(int)__ptr64
238?Start@CmLogFile@@QEAAJH@Z
239; public: long __cdecl CmLogFile::Stop(void)__ptr64
240?Stop@CmLogFile@@QEAAJXZ
241SzToWz
242SzToWzWithAlloc
243UpdateFont
244; public: void __cdecl CIniA::WPPB(char const *__ptr64,char const *__ptr64,int)__ptr64
245?WPPB@CIniA@@QEAAXPEBD0H@Z
246; public: void __cdecl CIniW::WPPB(unsigned short const *__ptr64,unsigned short const *__ptr64,int)__ptr64
247?WPPB@CIniW@@QEAAXPEBG0H@Z
248; public: void __cdecl CIniA::WPPI(char const *__ptr64,char const *__ptr64,unsigned long)__ptr64
249?WPPI@CIniA@@QEAAXPEBD0K@Z
250; public: void __cdecl CIniW::WPPI(unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned long)__ptr64
251?WPPI@CIniW@@QEAAXPEBG0K@Z
252; public: void __cdecl CIniA::WPPS(char const *__ptr64,char const *__ptr64,char const *__ptr64)__ptr64
253?WPPS@CIniA@@QEAAXPEBD00@Z
254; public: void __cdecl CIniW::WPPS(unsigned short const *__ptr64,unsigned short const *__ptr64,unsigned short const *__ptr64)__ptr64
255?WPPS@CIniW@@QEAAXPEBG00@Z
256; private: long __cdecl CmLogFile::Write(unsigned short *__ptr64)__ptr64
257?Write@CmLogFile@@AEAAJPEAG@Z
258WzToSz
259WzToSzWithAlloc
260; public: static unsigned long const CIniW::kMaxValueLength
261?kMaxValueLength@CIniW@@2KB
lib/libc/mingw/lib64/cnetcfg.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file CNETCFG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CNETCFG.dll
8EXPORTS
9InetConfigSystem
10InetNeedModem
11InetNeedSystemComponents
12InetStartServices
lib/libc/mingw/lib64/coadmin.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file COADMIN.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY COADMIN.dll
8EXPORTS
9DllCanUnloadNow
10DllRegisterServer
11DllUnregisterServer
12InitComAdmindata
13TerminateComAdmindata
lib/libc/mingw/lib64/comres.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file COMRes.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY COMRes.dll
8EXPORTS
9COMResModuleInstance
lib/libc/mingw/lib64/comsetup.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file comsetup.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY comsetup.dll
8EXPORTS
9HandlePendingInfOperations
10InstallOnReboot
11OcEntry
12RunComPlusSetWebApplicationServerRoleW
13SetupPrintLog
14UpgradeDSSchema
15ComPlusGetWebApplicationServerRole
16ComPlusSetWebApplicationServerRole
lib/libc/mingw/lib64/corpol.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file corpol.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY corpol.dll
8EXPORTS
9CORLockDownProvider
10CORPolicyEE
11CORPolicyProvider
12DllCanUnloadNow
13DllRegisterServer
14DllUnregisterServer
15GetPublisher
16GetUnsignedPermissions
lib/libc/mingw/lib64/cscdll.def created+76
......@@ -0,0 +1,76 @@
1;
2; Exports of file CSCDLL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CSCDLL.dll
8EXPORTS
9MprServiceProc
10ReInt_WndProc
11LogonHappened
12LogoffHappened
13Update
14RefreshConnections
15BreakConnections
16CheckCSC
17CSCIsCSCEnabled
18CSCFindClose
19CSCSetMaxSpace
20CSCFreeSpace
21CheckCSCEx
22CSCDoEnableDisable
23CSCPinFileA
24CSCUnpinFileA
25CSCQueryFileStatusA
26CSCFindFirstFileA
27CSCFindNextFileA
28CSCDeleteA
29CSCFillSparseFilesA
30CSCMergeShareA
31CSCCopyReplicaA
32CSCEnumForStatsA
33CSCIsServerOfflineA
34CSCGetSpaceUsageA
35CSCTransitionServerOnlineA
36CSCCheckShareOnlineA
37CSCDoLocalRenameA
38CSCEnumForStatsExA
39CSCFindFirstFileForSidA
40CSCQueryFileStatusExA
41CSCQueryShareStatusA
42CSCPurgeUnpinnedFiles
43CSCPinFileW
44CSCUnpinFileW
45CSCQueryFileStatusW
46CSCFindFirstFileW
47CSCFindNextFileW
48CSCDeleteW
49CSCFillSparseFilesW
50CSCMergeShareW
51CSCCopyReplicaW
52CSCEnumForStatsW
53CSCIsServerOfflineW
54CSCGetSpaceUsageW
55CSCTransitionServerOnlineW
56CSCCheckShareOnlineW
57CSCDoLocalRenameW
58CSCEnumForStatsExW
59CSCDoLocalRenameExW
60CSCCheckShareOnlineExW
61CSCBeginSynchronizationW
62CSCEndSynchronizationW
63CSCFindFirstFileForSidW
64CSCEncryptDecryptDatabase
65CSCQueryDatabaseStatus
66CSCQueryFileStatusExW
67CSCQueryShareStatusW
68CSCShareIdToShareName
69WinlogonLogonEvent
70WinlogonLogoffEvent
71WinlogonScreenSaverEvent
72WinlogonShutdownEvent
73WinlogonLockEvent
74WinlogonUnlockEvent
75WinlogonStartShellEvent
76WinlogonStartupEvent
lib/libc/mingw/lib64/cscui.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file CSCUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CSCUI.dll
8EXPORTS
9CSCUIOptionsPropertySheet
10ProcessGroupPolicy
11CSCOptions_RunDLL
12CSCOptions_RunDLLA
13CSCOptions_RunDLLW
14CSCUIInitialize
15CSCUIMsgProcess
16CSCUIRemoveFolderFromCache
17CSCUISetState
18CscPolicyProcessing_RunDLLW
19DllCanUnloadNow
20DllGetClassObject
21DllRegisterServer
22DllUnregisterServer
lib/libc/mingw/lib64/csrsrv.def created+43
......@@ -0,0 +1,43 @@
1;
2; Exports of file CSRSRV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY CSRSRV.dll
8EXPORTS
9CsrAddStaticServerThread
10CsrCallServerFromServer
11CsrConnectToUser
12CsrCreateProcess
13CsrCreateRemoteThread
14CsrCreateThread
15CsrCreateWait
16CsrDebugProcess
17CsrDebugProcessStop
18CsrDereferenceProcess
19CsrDereferenceThread
20CsrDereferenceWait
21CsrDestroyProcess
22CsrDestroyThread
23CsrExecServerThread
24CsrGetProcessLuid
25CsrImpersonateClient
26CsrLockProcessByClientId
27CsrLockThreadByClientId
28CsrMoveSatisfiedWait
29CsrNotifyWait
30CsrPopulateDosDevices
31CsrQueryApiPort
32CsrReferenceThread
33CsrRevertToSelf
34CsrServerInitialization
35CsrSetBackgroundPriority
36CsrSetCallingSpooler
37CsrSetForegroundPriority
38CsrShutdownProcesses
39CsrUnhandledExceptionFilter
40CsrUnlockProcess
41CsrUnlockThread
42CsrValidateMessageBuffer
43CsrValidateMessageString
lib/libc/mingw/lib64/d3d8thk.def created+64
......@@ -0,0 +1,64 @@
1;
2; Exports of file d3d8thk.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY d3d8thk.dll
8EXPORTS
9OsThunkD3dContextCreate
10OsThunkD3dContextDestroy
11OsThunkD3dContextDestroyAll
12OsThunkD3dDrawPrimitives2
13OsThunkD3dValidateTextureStageState
14OsThunkDdAddAttachedSurface
15OsThunkDdAlphaBlt
16OsThunkDdAttachSurface
17OsThunkDdBeginMoCompFrame
18OsThunkDdBlt
19OsThunkDdCanCreateD3DBuffer
20OsThunkDdCanCreateSurface
21OsThunkDdColorControl
22OsThunkDdCreateD3DBuffer
23OsThunkDdCreateDirectDrawObject
24OsThunkDdCreateMoComp
25OsThunkDdCreateSurface
26OsThunkDdCreateSurfaceEx
27OsThunkDdCreateSurfaceObject
28OsThunkDdDeleteDirectDrawObject
29OsThunkDdDeleteSurfaceObject
30OsThunkDdDestroyD3DBuffer
31OsThunkDdDestroyMoComp
32OsThunkDdDestroySurface
33OsThunkDdEndMoCompFrame
34OsThunkDdFlip
35OsThunkDdFlipToGDISurface
36OsThunkDdGetAvailDriverMemory
37OsThunkDdGetBltStatus
38OsThunkDdGetDC
39OsThunkDdGetDriverInfo
40OsThunkDdGetDriverState
41OsThunkDdGetDxHandle
42OsThunkDdGetFlipStatus
43OsThunkDdGetInternalMoCompInfo
44OsThunkDdGetMoCompBuffInfo
45OsThunkDdGetMoCompFormats
46OsThunkDdGetMoCompGuids
47OsThunkDdGetScanLine
48OsThunkDdLock
49OsThunkDdLockD3D
50OsThunkDdQueryDirectDrawObject
51OsThunkDdQueryMoCompStatus
52OsThunkDdReenableDirectDrawObject
53OsThunkDdReleaseDC
54OsThunkDdRenderMoComp
55OsThunkDdResetVisrgn
56OsThunkDdSetColorKey
57OsThunkDdSetExclusiveMode
58OsThunkDdSetGammaRamp
59OsThunkDdSetOverlayPosition
60OsThunkDdUnattachSurface
61OsThunkDdUnlock
62OsThunkDdUnlockD3D
63OsThunkDdUpdateOverlay
64OsThunkDdWaitForVerticalBlank
lib/libc/mingw/lib64/d3dcompiler_33.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory
9D3DDisassembleCode
10D3DDisassembleEffect
11D3DGetCodeDebugInfo
12D3DGetInputAndOutputSignatureBlob
13D3DGetInputSignatureBlob
14D3DGetOutputSignatureBlob
15D3DPreprocessFromMemory
16D3DReflectCode
17DebugSetMute
lib/libc/mingw/lib64/d3dcompiler_34.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory
9D3DDisassembleCode
10D3DDisassembleEffect
11D3DGetCodeDebugInfo
12D3DGetInputAndOutputSignatureBlob
13D3DGetInputSignatureBlob
14D3DGetOutputSignatureBlob
15D3DPreprocessFromMemory
16D3DReflectCode
17DebugSetMute
lib/libc/mingw/lib64/d3dcompiler_35.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory
9D3DDisassembleCode
10D3DDisassembleEffect
11D3DGetCodeDebugInfo
12D3DGetInputAndOutputSignatureBlob
13D3DGetInputSignatureBlob
14D3DGetOutputSignatureBlob
15D3DPreprocessFromMemory
16D3DReflectCode
17DebugSetMute
lib/libc/mingw/lib64/d3dcompiler_36.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler.dll"
7EXPORTS
8D3DCompileFromMemory
9D3DDisassembleCode
10D3DDisassembleEffect
11D3DGetCodeDebugInfo
12D3DGetInputAndOutputSignatureBlob
13D3DGetInputSignatureBlob
14D3DGetOutputSignatureBlob
15D3DPreprocessFromMemory
16D3DReflectCode
17DebugSetMute
lib/libc/mingw/lib64/d3dcompiler_37.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of D3DCompiler_37.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_37.dll"
7EXPORTS
8D3DCompileFromMemory
9D3DDisassembleCode
10D3DDisassembleEffect
11D3DGetCodeDebugInfo
12D3DGetInputAndOutputSignatureBlob
13D3DGetInputSignatureBlob
14D3DGetOutputSignatureBlob
15D3DPreprocessFromMemory
16D3DReflectCode
17DebugSetMute
lib/libc/mingw/lib64/d3dcompiler_38.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of D3DCompiler_38.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_38.dll"
7EXPORTS
8D3DCompileFromMemory
9D3DDisassembleCode
10D3DDisassembleEffect
11D3DGetCodeDebugInfo
12D3DGetInputAndOutputSignatureBlob
13D3DGetInputSignatureBlob
14D3DGetOutputSignatureBlob
15D3DPreprocessFromMemory
16D3DReflectCode
17D3DReturnFailure1
18DebugSetMute
lib/libc/mingw/lib64/d3dcompiler_39.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of D3DCompiler_39.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_39.dll"
7EXPORTS
8D3DCompileFromMemory
9D3DDisassembleCode
10D3DDisassembleEffect
11D3DGetCodeDebugInfo
12D3DGetInputAndOutputSignatureBlob
13D3DGetInputSignatureBlob
14D3DGetOutputSignatureBlob
15D3DPreprocessFromMemory
16D3DReflectCode
17D3DReturnFailure1
18DebugSetMute
lib/libc/mingw/lib64/d3dcompiler_40.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of D3DCompiler_40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_40.dll"
7EXPORTS
8DebugSetMute
9D3DCompile
10D3DDisassemble
11D3DDisassemble10Effect
12D3DGetDebugInfo
13D3DGetInputAndOutputSignatureBlob
14D3DGetInputSignatureBlob
15D3DGetOutputSignatureBlob
16D3DPreprocess
17D3DReflect
18D3DReturnFailure1
19D3DStripShader
lib/libc/mingw/lib64/d3dcompiler_41.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of D3DCompiler_41.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_41.dll"
7EXPORTS
8D3DAssemble
9DebugSetMute
10D3DCompile
11D3DDisassemble
12D3DDisassemble10Effect
13D3DGetDebugInfo
14D3DGetInputAndOutputSignatureBlob
15D3DGetInputSignatureBlob
16D3DGetOutputSignatureBlob
17D3DPreprocess
18D3DReflect
19D3DReturnFailure1
20D3DStripShader
lib/libc/mingw/lib64/d3dcompiler_42.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of D3DCompiler_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCompiler_42.dll"
7EXPORTS
8D3DAssemble
9DebugSetMute
10D3DCompile
11D3DDisassemble
12D3DDisassemble10Effect
13D3DGetDebugInfo
14D3DGetInputAndOutputSignatureBlob
15D3DGetInputSignatureBlob
16D3DGetOutputSignatureBlob
17D3DPreprocess
18D3DReflect
19D3DReturnFailure1
20D3DStripShader
lib/libc/mingw/lib64/d3dcompiler_43.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of D3DCOMPILER_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCOMPILER_43.dll"
7EXPORTS
8D3DAssemble
9DebugSetMute
10D3DCompile
11D3DCompressShaders
12D3DCreateBlob
13D3DDecompressShaders
14D3DDisassemble
15D3DDisassemble10Effect
16D3DGetBlobPart
17D3DGetDebugInfo
18D3DGetInputAndOutputSignatureBlob
19D3DGetInputSignatureBlob
20D3DGetOutputSignatureBlob
21D3DPreprocess
22D3DReflect
23D3DReturnFailure1
24D3DStripShader
lib/libc/mingw/lib64/d3dcompiler_46.def created+32
......@@ -0,0 +1,32 @@
1;
2; Definition file of D3DCOMPILER_46.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "D3DCOMPILER_46.dll"
7EXPORTS
8D3DAssemble
9DebugSetMute
10D3DCompile
11D3DCompile2
12D3DCompileFromFile
13D3DCompressShaders
14D3DCreateBlob
15D3DDecompressShaders
16D3DDisassemble
17D3DDisassemble10Effect
18D3DDisassemble11Trace
19D3DDisassembleRegion
20D3DGetBlobPart
21D3DGetDebugInfo
22D3DGetInputAndOutputSignatureBlob
23D3DGetInputSignatureBlob
24D3DGetOutputSignatureBlob
25D3DGetTraceInstructionOffsets
26D3DPreprocess
27D3DReadFileToBlob
28D3DReflect
29D3DReturnFailure1
30D3DSetBlobPart
31D3DStripShader
32D3DWriteBlobToFile
lib/libc/mingw/lib64/d3dcsx_46.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of d3dcsx_46.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dcsx_46.dll"
7EXPORTS
8D3DX11CreateFFT
9D3DX11CreateFFT1DComplex
10D3DX11CreateFFT1DReal
11D3DX11CreateFFT2DComplex
12D3DX11CreateFFT2DReal
13D3DX11CreateFFT3DComplex
14D3DX11CreateFFT3DReal
15D3DX11CreateScan
16D3DX11CreateSegmentedScan
lib/libc/mingw/lib64/d3dcsxd_43.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of d3dcsxd_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dcsxd_43.dll"
7EXPORTS
8D3DX11CreateFFT
9D3DX11CreateFFT1DComplex
10D3DX11CreateFFT1DReal
11D3DX11CreateFFT2DComplex
12D3DX11CreateFFT2DReal
13D3DX11CreateFFT3DComplex
14D3DX11CreateFFT3DReal
15D3DX11CreateScan
16D3DX11CreateSegmentedScan
lib/libc/mingw/lib64/d3dx10_33.def created+184
......@@ -0,0 +1,184 @@
1;
2; Definition file of d3dx10_33.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_33.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateEffectFromFileA
29D3DX10CreateEffectFromFileW
30D3DX10CreateEffectFromMemory
31D3DX10CreateEffectFromResourceA
32D3DX10CreateEffectFromResourceW
33D3DX10CreateEffectPoolFromFileA
34D3DX10CreateEffectPoolFromFileW
35D3DX10CreateEffectPoolFromMemory
36D3DX10CreateEffectPoolFromResourceA
37D3DX10CreateEffectPoolFromResourceW
38D3DX10CreateFontA
39D3DX10CreateFontIndirectA
40D3DX10CreateFontIndirectW
41D3DX10CreateFontW
42D3DX10CreateMesh
43D3DX10CreateShaderResourceViewFromFileA
44D3DX10CreateShaderResourceViewFromFileW
45D3DX10CreateShaderResourceViewFromMemory
46D3DX10CreateShaderResourceViewFromResourceA
47D3DX10CreateShaderResourceViewFromResourceW
48D3DX10CreateSkinInfo
49D3DX10CreateSprite
50D3DX10CreateTextureFromFileA
51D3DX10CreateTextureFromFileW
52D3DX10CreateTextureFromMemory
53D3DX10CreateTextureFromResourceA
54D3DX10CreateTextureFromResourceW
55D3DX10DisassembleEffect
56D3DX10DisassembleShader
57D3DX10FilterTexture
58D3DX10GetDriverLevel
59D3DX10GetImageInfoFromFileA
60D3DX10GetImageInfoFromFileW
61D3DX10GetImageInfoFromMemory
62D3DX10GetImageInfoFromResourceA
63D3DX10GetImageInfoFromResourceW
64D3DX10LoadTextureFromTexture
65D3DX10PreprocessShaderFromFileA
66D3DX10PreprocessShaderFromFileW
67D3DX10PreprocessShaderFromMemory
68D3DX10PreprocessShaderFromResourceA
69D3DX10PreprocessShaderFromResourceW
70D3DX10ReflectShader
71D3DX10SHProjectCubeMap
72D3DX10SaveTextureToFileA
73D3DX10SaveTextureToFileW
74D3DX10SaveTextureToMemory
75D3DX10UnsetAllDeviceObjects
76D3DXBoxBoundProbe
77D3DXColorAdjustContrast
78D3DXColorAdjustSaturation
79D3DXComputeBoundingBox
80D3DXComputeBoundingSphere
81D3DXCpuOptimizations
82D3DXCreateMatrixStack
83D3DXFloat16To32Array
84D3DXFloat32To16Array
85D3DXFresnelTerm
86D3DXIntersectTri
87D3DXMatrixAffineTransformation
88D3DXMatrixAffineTransformation2D
89D3DXMatrixDecompose
90D3DXMatrixDeterminant
91D3DXMatrixInverse
92D3DXMatrixLookAtLH
93D3DXMatrixLookAtRH
94D3DXMatrixMultiply
95D3DXMatrixMultiplyTranspose
96D3DXMatrixOrthoLH
97D3DXMatrixOrthoOffCenterLH
98D3DXMatrixOrthoOffCenterRH
99D3DXMatrixOrthoRH
100D3DXMatrixPerspectiveFovLH
101D3DXMatrixPerspectiveFovRH
102D3DXMatrixPerspectiveLH
103D3DXMatrixPerspectiveOffCenterLH
104D3DXMatrixPerspectiveOffCenterRH
105D3DXMatrixPerspectiveRH
106D3DXMatrixReflect
107D3DXMatrixRotationAxis
108D3DXMatrixRotationQuaternion
109D3DXMatrixRotationX
110D3DXMatrixRotationY
111D3DXMatrixRotationYawPitchRoll
112D3DXMatrixRotationZ
113D3DXMatrixScaling
114D3DXMatrixShadow
115D3DXMatrixTransformation
116D3DXMatrixTransformation2D
117D3DXMatrixTranslation
118D3DXMatrixTranspose
119D3DXPlaneFromPointNormal
120D3DXPlaneFromPoints
121D3DXPlaneIntersectLine
122D3DXPlaneNormalize
123D3DXPlaneTransform
124D3DXPlaneTransformArray
125D3DXQuaternionBaryCentric
126D3DXQuaternionExp
127D3DXQuaternionInverse
128D3DXQuaternionLn
129D3DXQuaternionMultiply
130D3DXQuaternionNormalize
131D3DXQuaternionRotationAxis
132D3DXQuaternionRotationMatrix
133D3DXQuaternionRotationYawPitchRoll
134D3DXQuaternionSlerp
135D3DXQuaternionSquad
136D3DXQuaternionSquadSetup
137D3DXQuaternionToAxisAngle
138D3DXSHAdd
139D3DXSHDot
140D3DXSHEvalConeLight
141D3DXSHEvalDirection
142D3DXSHEvalDirectionalLight
143D3DXSHEvalHemisphereLight
144D3DXSHEvalSphericalLight
145D3DXSHMultiply2
146D3DXSHMultiply3
147D3DXSHMultiply4
148D3DXSHMultiply5
149D3DXSHMultiply6
150D3DXSHRotate
151D3DXSHRotateZ
152D3DXSHScale
153D3DXSphereBoundProbe
154D3DXVec2BaryCentric
155D3DXVec2CatmullRom
156D3DXVec2Hermite
157D3DXVec2Normalize
158D3DXVec2Transform
159D3DXVec2TransformArray
160D3DXVec2TransformCoord
161D3DXVec2TransformCoordArray
162D3DXVec2TransformNormal
163D3DXVec2TransformNormalArray
164D3DXVec3BaryCentric
165D3DXVec3CatmullRom
166D3DXVec3Hermite
167D3DXVec3Normalize
168D3DXVec3Project
169D3DXVec3ProjectArray
170D3DXVec3Transform
171D3DXVec3TransformArray
172D3DXVec3TransformCoord
173D3DXVec3TransformCoordArray
174D3DXVec3TransformNormal
175D3DXVec3TransformNormalArray
176D3DXVec3Unproject
177D3DXVec3UnprojectArray
178D3DXVec4BaryCentric
179D3DXVec4CatmullRom
180D3DXVec4Cross
181D3DXVec4Hermite
182D3DXVec4Normalize
183D3DXVec4Transform
184D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_34.def created+184
......@@ -0,0 +1,184 @@
1;
2; Definition file of d3dx10_34.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_34.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateEffectFromFileA
29D3DX10CreateEffectFromFileW
30D3DX10CreateEffectFromMemory
31D3DX10CreateEffectFromResourceA
32D3DX10CreateEffectFromResourceW
33D3DX10CreateEffectPoolFromFileA
34D3DX10CreateEffectPoolFromFileW
35D3DX10CreateEffectPoolFromMemory
36D3DX10CreateEffectPoolFromResourceA
37D3DX10CreateEffectPoolFromResourceW
38D3DX10CreateFontA
39D3DX10CreateFontIndirectA
40D3DX10CreateFontIndirectW
41D3DX10CreateFontW
42D3DX10CreateMesh
43D3DX10CreateShaderResourceViewFromFileA
44D3DX10CreateShaderResourceViewFromFileW
45D3DX10CreateShaderResourceViewFromMemory
46D3DX10CreateShaderResourceViewFromResourceA
47D3DX10CreateShaderResourceViewFromResourceW
48D3DX10CreateSkinInfo
49D3DX10CreateSprite
50D3DX10CreateTextureFromFileA
51D3DX10CreateTextureFromFileW
52D3DX10CreateTextureFromMemory
53D3DX10CreateTextureFromResourceA
54D3DX10CreateTextureFromResourceW
55D3DX10DisassembleEffect
56D3DX10DisassembleShader
57D3DX10FilterTexture
58D3DX10GetDriverLevel
59D3DX10GetImageInfoFromFileA
60D3DX10GetImageInfoFromFileW
61D3DX10GetImageInfoFromMemory
62D3DX10GetImageInfoFromResourceA
63D3DX10GetImageInfoFromResourceW
64D3DX10LoadTextureFromTexture
65D3DX10PreprocessShaderFromFileA
66D3DX10PreprocessShaderFromFileW
67D3DX10PreprocessShaderFromMemory
68D3DX10PreprocessShaderFromResourceA
69D3DX10PreprocessShaderFromResourceW
70D3DX10ReflectShader
71D3DX10SHProjectCubeMap
72D3DX10SaveTextureToFileA
73D3DX10SaveTextureToFileW
74D3DX10SaveTextureToMemory
75D3DX10UnsetAllDeviceObjects
76D3DXBoxBoundProbe
77D3DXColorAdjustContrast
78D3DXColorAdjustSaturation
79D3DXComputeBoundingBox
80D3DXComputeBoundingSphere
81D3DXCpuOptimizations
82D3DXCreateMatrixStack
83D3DXFloat16To32Array
84D3DXFloat32To16Array
85D3DXFresnelTerm
86D3DXIntersectTri
87D3DXMatrixAffineTransformation
88D3DXMatrixAffineTransformation2D
89D3DXMatrixDecompose
90D3DXMatrixDeterminant
91D3DXMatrixInverse
92D3DXMatrixLookAtLH
93D3DXMatrixLookAtRH
94D3DXMatrixMultiply
95D3DXMatrixMultiplyTranspose
96D3DXMatrixOrthoLH
97D3DXMatrixOrthoOffCenterLH
98D3DXMatrixOrthoOffCenterRH
99D3DXMatrixOrthoRH
100D3DXMatrixPerspectiveFovLH
101D3DXMatrixPerspectiveFovRH
102D3DXMatrixPerspectiveLH
103D3DXMatrixPerspectiveOffCenterLH
104D3DXMatrixPerspectiveOffCenterRH
105D3DXMatrixPerspectiveRH
106D3DXMatrixReflect
107D3DXMatrixRotationAxis
108D3DXMatrixRotationQuaternion
109D3DXMatrixRotationX
110D3DXMatrixRotationY
111D3DXMatrixRotationYawPitchRoll
112D3DXMatrixRotationZ
113D3DXMatrixScaling
114D3DXMatrixShadow
115D3DXMatrixTransformation
116D3DXMatrixTransformation2D
117D3DXMatrixTranslation
118D3DXMatrixTranspose
119D3DXPlaneFromPointNormal
120D3DXPlaneFromPoints
121D3DXPlaneIntersectLine
122D3DXPlaneNormalize
123D3DXPlaneTransform
124D3DXPlaneTransformArray
125D3DXQuaternionBaryCentric
126D3DXQuaternionExp
127D3DXQuaternionInverse
128D3DXQuaternionLn
129D3DXQuaternionMultiply
130D3DXQuaternionNormalize
131D3DXQuaternionRotationAxis
132D3DXQuaternionRotationMatrix
133D3DXQuaternionRotationYawPitchRoll
134D3DXQuaternionSlerp
135D3DXQuaternionSquad
136D3DXQuaternionSquadSetup
137D3DXQuaternionToAxisAngle
138D3DXSHAdd
139D3DXSHDot
140D3DXSHEvalConeLight
141D3DXSHEvalDirection
142D3DXSHEvalDirectionalLight
143D3DXSHEvalHemisphereLight
144D3DXSHEvalSphericalLight
145D3DXSHMultiply2
146D3DXSHMultiply3
147D3DXSHMultiply4
148D3DXSHMultiply5
149D3DXSHMultiply6
150D3DXSHRotate
151D3DXSHRotateZ
152D3DXSHScale
153D3DXSphereBoundProbe
154D3DXVec2BaryCentric
155D3DXVec2CatmullRom
156D3DXVec2Hermite
157D3DXVec2Normalize
158D3DXVec2Transform
159D3DXVec2TransformArray
160D3DXVec2TransformCoord
161D3DXVec2TransformCoordArray
162D3DXVec2TransformNormal
163D3DXVec2TransformNormalArray
164D3DXVec3BaryCentric
165D3DXVec3CatmullRom
166D3DXVec3Hermite
167D3DXVec3Normalize
168D3DXVec3Project
169D3DXVec3ProjectArray
170D3DXVec3Transform
171D3DXVec3TransformArray
172D3DXVec3TransformCoord
173D3DXVec3TransformCoordArray
174D3DXVec3TransformNormal
175D3DXVec3TransformNormalArray
176D3DXVec3Unproject
177D3DXVec3UnprojectArray
178D3DXVec4BaryCentric
179D3DXVec4CatmullRom
180D3DXVec4Cross
181D3DXVec4Hermite
182D3DXVec4Normalize
183D3DXVec4Transform
184D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_35.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_35.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_35.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateDevice
29D3DX10CreateDeviceAndSwapChain
30D3DX10CreateEffectFromFileA
31D3DX10CreateEffectFromFileW
32D3DX10CreateEffectFromMemory
33D3DX10CreateEffectFromResourceA
34D3DX10CreateEffectFromResourceW
35D3DX10CreateEffectPoolFromFileA
36D3DX10CreateEffectPoolFromFileW
37D3DX10CreateEffectPoolFromMemory
38D3DX10CreateEffectPoolFromResourceA
39D3DX10CreateEffectPoolFromResourceW
40D3DX10CreateFontA
41D3DX10CreateFontIndirectA
42D3DX10CreateFontIndirectW
43D3DX10CreateFontW
44D3DX10CreateMesh
45D3DX10CreateShaderResourceViewFromFileA
46D3DX10CreateShaderResourceViewFromFileW
47D3DX10CreateShaderResourceViewFromMemory
48D3DX10CreateShaderResourceViewFromResourceA
49D3DX10CreateShaderResourceViewFromResourceW
50D3DX10CreateSkinInfo
51D3DX10CreateSprite
52D3DX10CreateTextureFromFileA
53D3DX10CreateTextureFromFileW
54D3DX10CreateTextureFromMemory
55D3DX10CreateTextureFromResourceA
56D3DX10CreateTextureFromResourceW
57D3DX10DisassembleEffect
58D3DX10DisassembleShader
59D3DX10FilterTexture
60D3DX10GetDriverLevel
61D3DX10GetFeatureLevel1
62D3DX10GetImageInfoFromFileA
63D3DX10GetImageInfoFromFileW
64D3DX10GetImageInfoFromMemory
65D3DX10GetImageInfoFromResourceA
66D3DX10GetImageInfoFromResourceW
67D3DX10LoadTextureFromTexture
68D3DX10PreprocessShaderFromFileA
69D3DX10PreprocessShaderFromFileW
70D3DX10PreprocessShaderFromMemory
71D3DX10PreprocessShaderFromResourceA
72D3DX10PreprocessShaderFromResourceW
73D3DX10ReflectShader
74D3DX10SHProjectCubeMap
75D3DX10SaveTextureToFileA
76D3DX10SaveTextureToFileW
77D3DX10SaveTextureToMemory
78D3DX10UnsetAllDeviceObjects
79D3DXBoxBoundProbe
80D3DXColorAdjustContrast
81D3DXColorAdjustSaturation
82D3DXComputeBoundingBox
83D3DXComputeBoundingSphere
84D3DXCpuOptimizations
85D3DXCreateMatrixStack
86D3DXFloat16To32Array
87D3DXFloat32To16Array
88D3DXFresnelTerm
89D3DXIntersectTri
90D3DXMatrixAffineTransformation
91D3DXMatrixAffineTransformation2D
92D3DXMatrixDecompose
93D3DXMatrixDeterminant
94D3DXMatrixInverse
95D3DXMatrixLookAtLH
96D3DXMatrixLookAtRH
97D3DXMatrixMultiply
98D3DXMatrixMultiplyTranspose
99D3DXMatrixOrthoLH
100D3DXMatrixOrthoOffCenterLH
101D3DXMatrixOrthoOffCenterRH
102D3DXMatrixOrthoRH
103D3DXMatrixPerspectiveFovLH
104D3DXMatrixPerspectiveFovRH
105D3DXMatrixPerspectiveLH
106D3DXMatrixPerspectiveOffCenterLH
107D3DXMatrixPerspectiveOffCenterRH
108D3DXMatrixPerspectiveRH
109D3DXMatrixReflect
110D3DXMatrixRotationAxis
111D3DXMatrixRotationQuaternion
112D3DXMatrixRotationX
113D3DXMatrixRotationY
114D3DXMatrixRotationYawPitchRoll
115D3DXMatrixRotationZ
116D3DXMatrixScaling
117D3DXMatrixShadow
118D3DXMatrixTransformation
119D3DXMatrixTransformation2D
120D3DXMatrixTranslation
121D3DXMatrixTranspose
122D3DXPlaneFromPointNormal
123D3DXPlaneFromPoints
124D3DXPlaneIntersectLine
125D3DXPlaneNormalize
126D3DXPlaneTransform
127D3DXPlaneTransformArray
128D3DXQuaternionBaryCentric
129D3DXQuaternionExp
130D3DXQuaternionInverse
131D3DXQuaternionLn
132D3DXQuaternionMultiply
133D3DXQuaternionNormalize
134D3DXQuaternionRotationAxis
135D3DXQuaternionRotationMatrix
136D3DXQuaternionRotationYawPitchRoll
137D3DXQuaternionSlerp
138D3DXQuaternionSquad
139D3DXQuaternionSquadSetup
140D3DXQuaternionToAxisAngle
141D3DXSHAdd
142D3DXSHDot
143D3DXSHEvalConeLight
144D3DXSHEvalDirection
145D3DXSHEvalDirectionalLight
146D3DXSHEvalHemisphereLight
147D3DXSHEvalSphericalLight
148D3DXSHMultiply2
149D3DXSHMultiply3
150D3DXSHMultiply4
151D3DXSHMultiply5
152D3DXSHMultiply6
153D3DXSHRotate
154D3DXSHRotateZ
155D3DXSHScale
156D3DXSphereBoundProbe
157D3DXVec2BaryCentric
158D3DXVec2CatmullRom
159D3DXVec2Hermite
160D3DXVec2Normalize
161D3DXVec2Transform
162D3DXVec2TransformArray
163D3DXVec2TransformCoord
164D3DXVec2TransformCoordArray
165D3DXVec2TransformNormal
166D3DXVec2TransformNormalArray
167D3DXVec3BaryCentric
168D3DXVec3CatmullRom
169D3DXVec3Hermite
170D3DXVec3Normalize
171D3DXVec3Project
172D3DXVec3ProjectArray
173D3DXVec3Transform
174D3DXVec3TransformArray
175D3DXVec3TransformCoord
176D3DXVec3TransformCoordArray
177D3DXVec3TransformNormal
178D3DXVec3TransformNormalArray
179D3DXVec3Unproject
180D3DXVec3UnprojectArray
181D3DXVec4BaryCentric
182D3DXVec4CatmullRom
183D3DXVec4Cross
184D3DXVec4Hermite
185D3DXVec4Normalize
186D3DXVec4Transform
187D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_36.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_36.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_36.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateDevice
29D3DX10CreateDeviceAndSwapChain
30D3DX10CreateEffectFromFileA
31D3DX10CreateEffectFromFileW
32D3DX10CreateEffectFromMemory
33D3DX10CreateEffectFromResourceA
34D3DX10CreateEffectFromResourceW
35D3DX10CreateEffectPoolFromFileA
36D3DX10CreateEffectPoolFromFileW
37D3DX10CreateEffectPoolFromMemory
38D3DX10CreateEffectPoolFromResourceA
39D3DX10CreateEffectPoolFromResourceW
40D3DX10CreateFontA
41D3DX10CreateFontIndirectA
42D3DX10CreateFontIndirectW
43D3DX10CreateFontW
44D3DX10CreateMesh
45D3DX10CreateShaderResourceViewFromFileA
46D3DX10CreateShaderResourceViewFromFileW
47D3DX10CreateShaderResourceViewFromMemory
48D3DX10CreateShaderResourceViewFromResourceA
49D3DX10CreateShaderResourceViewFromResourceW
50D3DX10CreateSkinInfo
51D3DX10CreateSprite
52D3DX10CreateTextureFromFileA
53D3DX10CreateTextureFromFileW
54D3DX10CreateTextureFromMemory
55D3DX10CreateTextureFromResourceA
56D3DX10CreateTextureFromResourceW
57D3DX10DisassembleEffect
58D3DX10DisassembleShader
59D3DX10FilterTexture
60D3DX10GetDriverLevel
61D3DX10GetFeatureLevel1
62D3DX10GetImageInfoFromFileA
63D3DX10GetImageInfoFromFileW
64D3DX10GetImageInfoFromMemory
65D3DX10GetImageInfoFromResourceA
66D3DX10GetImageInfoFromResourceW
67D3DX10LoadTextureFromTexture
68D3DX10PreprocessShaderFromFileA
69D3DX10PreprocessShaderFromFileW
70D3DX10PreprocessShaderFromMemory
71D3DX10PreprocessShaderFromResourceA
72D3DX10PreprocessShaderFromResourceW
73D3DX10ReflectShader
74D3DX10SHProjectCubeMap
75D3DX10SaveTextureToFileA
76D3DX10SaveTextureToFileW
77D3DX10SaveTextureToMemory
78D3DX10UnsetAllDeviceObjects
79D3DXBoxBoundProbe
80D3DXColorAdjustContrast
81D3DXColorAdjustSaturation
82D3DXComputeBoundingBox
83D3DXComputeBoundingSphere
84D3DXCpuOptimizations
85D3DXCreateMatrixStack
86D3DXFloat16To32Array
87D3DXFloat32To16Array
88D3DXFresnelTerm
89D3DXIntersectTri
90D3DXMatrixAffineTransformation
91D3DXMatrixAffineTransformation2D
92D3DXMatrixDecompose
93D3DXMatrixDeterminant
94D3DXMatrixInverse
95D3DXMatrixLookAtLH
96D3DXMatrixLookAtRH
97D3DXMatrixMultiply
98D3DXMatrixMultiplyTranspose
99D3DXMatrixOrthoLH
100D3DXMatrixOrthoOffCenterLH
101D3DXMatrixOrthoOffCenterRH
102D3DXMatrixOrthoRH
103D3DXMatrixPerspectiveFovLH
104D3DXMatrixPerspectiveFovRH
105D3DXMatrixPerspectiveLH
106D3DXMatrixPerspectiveOffCenterLH
107D3DXMatrixPerspectiveOffCenterRH
108D3DXMatrixPerspectiveRH
109D3DXMatrixReflect
110D3DXMatrixRotationAxis
111D3DXMatrixRotationQuaternion
112D3DXMatrixRotationX
113D3DXMatrixRotationY
114D3DXMatrixRotationYawPitchRoll
115D3DXMatrixRotationZ
116D3DXMatrixScaling
117D3DXMatrixShadow
118D3DXMatrixTransformation
119D3DXMatrixTransformation2D
120D3DXMatrixTranslation
121D3DXMatrixTranspose
122D3DXPlaneFromPointNormal
123D3DXPlaneFromPoints
124D3DXPlaneIntersectLine
125D3DXPlaneNormalize
126D3DXPlaneTransform
127D3DXPlaneTransformArray
128D3DXQuaternionBaryCentric
129D3DXQuaternionExp
130D3DXQuaternionInverse
131D3DXQuaternionLn
132D3DXQuaternionMultiply
133D3DXQuaternionNormalize
134D3DXQuaternionRotationAxis
135D3DXQuaternionRotationMatrix
136D3DXQuaternionRotationYawPitchRoll
137D3DXQuaternionSlerp
138D3DXQuaternionSquad
139D3DXQuaternionSquadSetup
140D3DXQuaternionToAxisAngle
141D3DXSHAdd
142D3DXSHDot
143D3DXSHEvalConeLight
144D3DXSHEvalDirection
145D3DXSHEvalDirectionalLight
146D3DXSHEvalHemisphereLight
147D3DXSHEvalSphericalLight
148D3DXSHMultiply2
149D3DXSHMultiply3
150D3DXSHMultiply4
151D3DXSHMultiply5
152D3DXSHMultiply6
153D3DXSHRotate
154D3DXSHRotateZ
155D3DXSHScale
156D3DXSphereBoundProbe
157D3DXVec2BaryCentric
158D3DXVec2CatmullRom
159D3DXVec2Hermite
160D3DXVec2Normalize
161D3DXVec2Transform
162D3DXVec2TransformArray
163D3DXVec2TransformCoord
164D3DXVec2TransformCoordArray
165D3DXVec2TransformNormal
166D3DXVec2TransformNormalArray
167D3DXVec3BaryCentric
168D3DXVec3CatmullRom
169D3DXVec3Hermite
170D3DXVec3Normalize
171D3DXVec3Project
172D3DXVec3ProjectArray
173D3DXVec3Transform
174D3DXVec3TransformArray
175D3DXVec3TransformCoord
176D3DXVec3TransformCoordArray
177D3DXVec3TransformNormal
178D3DXVec3TransformNormalArray
179D3DXVec3Unproject
180D3DXVec3UnprojectArray
181D3DXVec4BaryCentric
182D3DXVec4CatmullRom
183D3DXVec4Cross
184D3DXVec4Hermite
185D3DXVec4Normalize
186D3DXVec4Transform
187D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_37.def created+188
......@@ -0,0 +1,188 @@
1;
2; Definition file of d3dx10_37.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_37.dll"
7EXPORTS
8D3DX10CreateReduction
9D3DX10CreateThreadPump
10D3DX10GetDriverLevel
11D3DX10CheckVersion
12D3DX10CompileFromFileA
13D3DX10CompileFromFileW
14D3DX10CompileFromMemory
15D3DX10CompileFromResourceA
16D3DX10CompileFromResourceW
17D3DX10ComputeNormalMap
18D3DX10CreateAsyncCompilerProcessor
19D3DX10CreateAsyncEffectCreateProcessor
20D3DX10CreateAsyncEffectPoolCreateProcessor
21D3DX10CreateAsyncFileLoaderA
22D3DX10CreateAsyncFileLoaderW
23D3DX10CreateAsyncMemoryLoader
24D3DX10CreateAsyncResourceLoaderA
25D3DX10CreateAsyncResourceLoaderW
26D3DX10CreateAsyncShaderPreprocessProcessor
27D3DX10CreateAsyncShaderResourceViewProcessor
28D3DX10CreateAsyncTextureInfoProcessor
29D3DX10CreateAsyncTextureProcessor
30D3DX10CreateDevice
31D3DX10CreateDeviceAndSwapChain
32D3DX10CreateEffectFromFileA
33D3DX10CreateEffectFromFileW
34D3DX10CreateEffectFromMemory
35D3DX10CreateEffectFromResourceA
36D3DX10CreateEffectFromResourceW
37D3DX10CreateEffectPoolFromFileA
38D3DX10CreateEffectPoolFromFileW
39D3DX10CreateEffectPoolFromMemory
40D3DX10CreateEffectPoolFromResourceA
41D3DX10CreateEffectPoolFromResourceW
42D3DX10CreateFontA
43D3DX10CreateFontIndirectA
44D3DX10CreateFontIndirectW
45D3DX10CreateFontW
46D3DX10CreateMesh
47D3DX10CreateShaderResourceViewFromFileA
48D3DX10CreateShaderResourceViewFromFileW
49D3DX10CreateShaderResourceViewFromMemory
50D3DX10CreateShaderResourceViewFromResourceA
51D3DX10CreateShaderResourceViewFromResourceW
52D3DX10CreateSkinInfo
53D3DX10CreateSprite
54D3DX10CreateTextureFromFileA
55D3DX10CreateTextureFromFileW
56D3DX10CreateTextureFromMemory
57D3DX10CreateTextureFromResourceA
58D3DX10CreateTextureFromResourceW
59D3DX10DisassembleEffect
60D3DX10DisassembleShader
61D3DX10FilterTexture
62D3DX10GetFeatureLevel1
63D3DX10GetImageInfoFromFileA
64D3DX10GetImageInfoFromFileW
65D3DX10GetImageInfoFromMemory
66D3DX10GetImageInfoFromResourceA
67D3DX10GetImageInfoFromResourceW
68D3DX10LoadTextureFromTexture
69D3DX10PreprocessShaderFromFileA
70D3DX10PreprocessShaderFromFileW
71D3DX10PreprocessShaderFromMemory
72D3DX10PreprocessShaderFromResourceA
73D3DX10PreprocessShaderFromResourceW
74D3DX10ReflectShader
75D3DX10SHProjectCubeMap
76D3DX10SaveTextureToFileA
77D3DX10SaveTextureToFileW
78D3DX10SaveTextureToMemory
79D3DX10UnsetAllDeviceObjects
80D3DXBoxBoundProbe
81D3DXColorAdjustContrast
82D3DXColorAdjustSaturation
83D3DXComputeBoundingBox
84D3DXComputeBoundingSphere
85D3DXCpuOptimizations
86D3DXCreateMatrixStack
87D3DXFloat16To32Array
88D3DXFloat32To16Array
89D3DXFresnelTerm
90D3DXIntersectTri
91D3DXMatrixAffineTransformation
92D3DXMatrixAffineTransformation2D
93D3DXMatrixDecompose
94D3DXMatrixDeterminant
95D3DXMatrixInverse
96D3DXMatrixLookAtLH
97D3DXMatrixLookAtRH
98D3DXMatrixMultiply
99D3DXMatrixMultiplyTranspose
100D3DXMatrixOrthoLH
101D3DXMatrixOrthoOffCenterLH
102D3DXMatrixOrthoOffCenterRH
103D3DXMatrixOrthoRH
104D3DXMatrixPerspectiveFovLH
105D3DXMatrixPerspectiveFovRH
106D3DXMatrixPerspectiveLH
107D3DXMatrixPerspectiveOffCenterLH
108D3DXMatrixPerspectiveOffCenterRH
109D3DXMatrixPerspectiveRH
110D3DXMatrixReflect
111D3DXMatrixRotationAxis
112D3DXMatrixRotationQuaternion
113D3DXMatrixRotationX
114D3DXMatrixRotationY
115D3DXMatrixRotationYawPitchRoll
116D3DXMatrixRotationZ
117D3DXMatrixScaling
118D3DXMatrixShadow
119D3DXMatrixTransformation
120D3DXMatrixTransformation2D
121D3DXMatrixTranslation
122D3DXMatrixTranspose
123D3DXPlaneFromPointNormal
124D3DXPlaneFromPoints
125D3DXPlaneIntersectLine
126D3DXPlaneNormalize
127D3DXPlaneTransform
128D3DXPlaneTransformArray
129D3DXQuaternionBaryCentric
130D3DXQuaternionExp
131D3DXQuaternionInverse
132D3DXQuaternionLn
133D3DXQuaternionMultiply
134D3DXQuaternionNormalize
135D3DXQuaternionRotationAxis
136D3DXQuaternionRotationMatrix
137D3DXQuaternionRotationYawPitchRoll
138D3DXQuaternionSlerp
139D3DXQuaternionSquad
140D3DXQuaternionSquadSetup
141D3DXQuaternionToAxisAngle
142D3DXSHAdd
143D3DXSHDot
144D3DXSHEvalConeLight
145D3DXSHEvalDirection
146D3DXSHEvalDirectionalLight
147D3DXSHEvalHemisphereLight
148D3DXSHEvalSphericalLight
149D3DXSHMultiply2
150D3DXSHMultiply3
151D3DXSHMultiply4
152D3DXSHMultiply5
153D3DXSHMultiply6
154D3DXSHRotate
155D3DXSHRotateZ
156D3DXSHScale
157D3DXSphereBoundProbe
158D3DXVec2BaryCentric
159D3DXVec2CatmullRom
160D3DXVec2Hermite
161D3DXVec2Normalize
162D3DXVec2Transform
163D3DXVec2TransformArray
164D3DXVec2TransformCoord
165D3DXVec2TransformCoordArray
166D3DXVec2TransformNormal
167D3DXVec2TransformNormalArray
168D3DXVec3BaryCentric
169D3DXVec3CatmullRom
170D3DXVec3Hermite
171D3DXVec3Normalize
172D3DXVec3Project
173D3DXVec3ProjectArray
174D3DXVec3Transform
175D3DXVec3TransformArray
176D3DXVec3TransformCoord
177D3DXVec3TransformCoordArray
178D3DXVec3TransformNormal
179D3DXVec3TransformNormalArray
180D3DXVec3Unproject
181D3DXVec3UnprojectArray
182D3DXVec4BaryCentric
183D3DXVec4CatmullRom
184D3DXVec4Cross
185D3DXVec4Hermite
186D3DXVec4Normalize
187D3DXVec4Transform
188D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_38.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_38.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_38.dll"
7EXPORTS
8D3DX10CreateReduction
9D3DX10CreateThreadPump
10D3DX10CheckVersion
11D3DX10CompileFromFileA
12D3DX10CompileFromFileW
13D3DX10CompileFromMemory
14D3DX10CompileFromResourceA
15D3DX10CompileFromResourceW
16D3DX10ComputeNormalMap
17D3DX10CreateAsyncCompilerProcessor
18D3DX10CreateAsyncEffectCreateProcessor
19D3DX10CreateAsyncEffectPoolCreateProcessor
20D3DX10CreateAsyncFileLoaderA
21D3DX10CreateAsyncFileLoaderW
22D3DX10CreateAsyncMemoryLoader
23D3DX10CreateAsyncResourceLoaderA
24D3DX10CreateAsyncResourceLoaderW
25D3DX10CreateAsyncShaderPreprocessProcessor
26D3DX10CreateAsyncShaderResourceViewProcessor
27D3DX10CreateAsyncTextureInfoProcessor
28D3DX10CreateAsyncTextureProcessor
29D3DX10CreateDevice
30D3DX10CreateDeviceAndSwapChain
31D3DX10CreateEffectFromFileA
32D3DX10CreateEffectFromFileW
33D3DX10CreateEffectFromMemory
34D3DX10CreateEffectFromResourceA
35D3DX10CreateEffectFromResourceW
36D3DX10CreateEffectPoolFromFileA
37D3DX10CreateEffectPoolFromFileW
38D3DX10CreateEffectPoolFromMemory
39D3DX10CreateEffectPoolFromResourceA
40D3DX10CreateEffectPoolFromResourceW
41D3DX10CreateFontA
42D3DX10CreateFontIndirectA
43D3DX10CreateFontIndirectW
44D3DX10CreateFontW
45D3DX10CreateMesh
46D3DX10CreateShaderResourceViewFromFileA
47D3DX10CreateShaderResourceViewFromFileW
48D3DX10CreateShaderResourceViewFromMemory
49D3DX10CreateShaderResourceViewFromResourceA
50D3DX10CreateShaderResourceViewFromResourceW
51D3DX10CreateSkinInfo
52D3DX10CreateSprite
53D3DX10CreateTextureFromFileA
54D3DX10CreateTextureFromFileW
55D3DX10CreateTextureFromMemory
56D3DX10CreateTextureFromResourceA
57D3DX10CreateTextureFromResourceW
58D3DX10DisassembleEffect
59D3DX10DisassembleShader
60D3DX10FilterTexture
61D3DX10GetFeatureLevel1
62D3DX10GetImageInfoFromFileA
63D3DX10GetImageInfoFromFileW
64D3DX10GetImageInfoFromMemory
65D3DX10GetImageInfoFromResourceA
66D3DX10GetImageInfoFromResourceW
67D3DX10LoadTextureFromTexture
68D3DX10PreprocessShaderFromFileA
69D3DX10PreprocessShaderFromFileW
70D3DX10PreprocessShaderFromMemory
71D3DX10PreprocessShaderFromResourceA
72D3DX10PreprocessShaderFromResourceW
73D3DX10ReflectShader
74D3DX10SHProjectCubeMap
75D3DX10SaveTextureToFileA
76D3DX10SaveTextureToFileW
77D3DX10SaveTextureToMemory
78D3DX10UnsetAllDeviceObjects
79D3DXBoxBoundProbe
80D3DXColorAdjustContrast
81D3DXColorAdjustSaturation
82D3DXComputeBoundingBox
83D3DXComputeBoundingSphere
84D3DXCpuOptimizations
85D3DXCreateMatrixStack
86D3DXFloat16To32Array
87D3DXFloat32To16Array
88D3DXFresnelTerm
89D3DXIntersectTri
90D3DXMatrixAffineTransformation
91D3DXMatrixAffineTransformation2D
92D3DXMatrixDecompose
93D3DXMatrixDeterminant
94D3DXMatrixInverse
95D3DXMatrixLookAtLH
96D3DXMatrixLookAtRH
97D3DXMatrixMultiply
98D3DXMatrixMultiplyTranspose
99D3DXMatrixOrthoLH
100D3DXMatrixOrthoOffCenterLH
101D3DXMatrixOrthoOffCenterRH
102D3DXMatrixOrthoRH
103D3DXMatrixPerspectiveFovLH
104D3DXMatrixPerspectiveFovRH
105D3DXMatrixPerspectiveLH
106D3DXMatrixPerspectiveOffCenterLH
107D3DXMatrixPerspectiveOffCenterRH
108D3DXMatrixPerspectiveRH
109D3DXMatrixReflect
110D3DXMatrixRotationAxis
111D3DXMatrixRotationQuaternion
112D3DXMatrixRotationX
113D3DXMatrixRotationY
114D3DXMatrixRotationYawPitchRoll
115D3DXMatrixRotationZ
116D3DXMatrixScaling
117D3DXMatrixShadow
118D3DXMatrixTransformation
119D3DXMatrixTransformation2D
120D3DXMatrixTranslation
121D3DXMatrixTranspose
122D3DXPlaneFromPointNormal
123D3DXPlaneFromPoints
124D3DXPlaneIntersectLine
125D3DXPlaneNormalize
126D3DXPlaneTransform
127D3DXPlaneTransformArray
128D3DXQuaternionBaryCentric
129D3DXQuaternionExp
130D3DXQuaternionInverse
131D3DXQuaternionLn
132D3DXQuaternionMultiply
133D3DXQuaternionNormalize
134D3DXQuaternionRotationAxis
135D3DXQuaternionRotationMatrix
136D3DXQuaternionRotationYawPitchRoll
137D3DXQuaternionSlerp
138D3DXQuaternionSquad
139D3DXQuaternionSquadSetup
140D3DXQuaternionToAxisAngle
141D3DXSHAdd
142D3DXSHDot
143D3DXSHEvalConeLight
144D3DXSHEvalDirection
145D3DXSHEvalDirectionalLight
146D3DXSHEvalHemisphereLight
147D3DXSHEvalSphericalLight
148D3DXSHMultiply2
149D3DXSHMultiply3
150D3DXSHMultiply4
151D3DXSHMultiply5
152D3DXSHMultiply6
153D3DXSHRotate
154D3DXSHRotateZ
155D3DXSHScale
156D3DXSphereBoundProbe
157D3DXVec2BaryCentric
158D3DXVec2CatmullRom
159D3DXVec2Hermite
160D3DXVec2Normalize
161D3DXVec2Transform
162D3DXVec2TransformArray
163D3DXVec2TransformCoord
164D3DXVec2TransformCoordArray
165D3DXVec2TransformNormal
166D3DXVec2TransformNormalArray
167D3DXVec3BaryCentric
168D3DXVec3CatmullRom
169D3DXVec3Hermite
170D3DXVec3Normalize
171D3DXVec3Project
172D3DXVec3ProjectArray
173D3DXVec3Transform
174D3DXVec3TransformArray
175D3DXVec3TransformCoord
176D3DXVec3TransformCoordArray
177D3DXVec3TransformNormal
178D3DXVec3TransformNormalArray
179D3DXVec3Unproject
180D3DXVec3UnprojectArray
181D3DXVec4BaryCentric
182D3DXVec4CatmullRom
183D3DXVec4Cross
184D3DXVec4Hermite
185D3DXVec4Normalize
186D3DXVec4Transform
187D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_39.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of d3dx10_39.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_39.dll"
7EXPORTS
8D3DX10CreateReduction
9D3DX10CreateThreadPump
10D3DX10CheckVersion
11D3DX10CompileFromFileA
12D3DX10CompileFromFileW
13D3DX10CompileFromMemory
14D3DX10CompileFromResourceA
15D3DX10CompileFromResourceW
16D3DX10ComputeNormalMap
17D3DX10CreateAsyncCompilerProcessor
18D3DX10CreateAsyncEffectCreateProcessor
19D3DX10CreateAsyncEffectPoolCreateProcessor
20D3DX10CreateAsyncFileLoaderA
21D3DX10CreateAsyncFileLoaderW
22D3DX10CreateAsyncMemoryLoader
23D3DX10CreateAsyncResourceLoaderA
24D3DX10CreateAsyncResourceLoaderW
25D3DX10CreateAsyncShaderPreprocessProcessor
26D3DX10CreateAsyncShaderResourceViewProcessor
27D3DX10CreateAsyncTextureInfoProcessor
28D3DX10CreateAsyncTextureProcessor
29D3DX10CreateDevice
30D3DX10CreateDeviceAndSwapChain
31D3DX10CreateEffectFromFileA
32D3DX10CreateEffectFromFileW
33D3DX10CreateEffectFromMemory
34D3DX10CreateEffectFromResourceA
35D3DX10CreateEffectFromResourceW
36D3DX10CreateEffectPoolFromFileA
37D3DX10CreateEffectPoolFromFileW
38D3DX10CreateEffectPoolFromMemory
39D3DX10CreateEffectPoolFromResourceA
40D3DX10CreateEffectPoolFromResourceW
41D3DX10CreateFontA
42D3DX10CreateFontIndirectA
43D3DX10CreateFontIndirectW
44D3DX10CreateFontW
45D3DX10CreateMesh
46D3DX10CreateShaderResourceViewFromFileA
47D3DX10CreateShaderResourceViewFromFileW
48D3DX10CreateShaderResourceViewFromMemory
49D3DX10CreateShaderResourceViewFromResourceA
50D3DX10CreateShaderResourceViewFromResourceW
51D3DX10CreateSkinInfo
52D3DX10CreateSprite
53D3DX10CreateTextureFromFileA
54D3DX10CreateTextureFromFileW
55D3DX10CreateTextureFromMemory
56D3DX10CreateTextureFromResourceA
57D3DX10CreateTextureFromResourceW
58D3DX10DisassembleEffect
59D3DX10DisassembleShader
60D3DX10FilterTexture
61D3DX10GetFeatureLevel1
62D3DX10GetImageInfoFromFileA
63D3DX10GetImageInfoFromFileW
64D3DX10GetImageInfoFromMemory
65D3DX10GetImageInfoFromResourceA
66D3DX10GetImageInfoFromResourceW
67D3DX10LoadTextureFromTexture
68D3DX10PreprocessShaderFromFileA
69D3DX10PreprocessShaderFromFileW
70D3DX10PreprocessShaderFromMemory
71D3DX10PreprocessShaderFromResourceA
72D3DX10PreprocessShaderFromResourceW
73D3DX10ReflectShader
74D3DX10SHProjectCubeMap
75D3DX10SaveTextureToFileA
76D3DX10SaveTextureToFileW
77D3DX10SaveTextureToMemory
78D3DX10UnsetAllDeviceObjects
79D3DXBoxBoundProbe
80D3DXColorAdjustContrast
81D3DXColorAdjustSaturation
82D3DXComputeBoundingBox
83D3DXComputeBoundingSphere
84D3DXCpuOptimizations
85D3DXCreateMatrixStack
86D3DXFloat16To32Array
87D3DXFloat32To16Array
88D3DXFresnelTerm
89D3DXIntersectTri
90D3DXMatrixAffineTransformation
91D3DXMatrixAffineTransformation2D
92D3DXMatrixDecompose
93D3DXMatrixDeterminant
94D3DXMatrixInverse
95D3DXMatrixLookAtLH
96D3DXMatrixLookAtRH
97D3DXMatrixMultiply
98D3DXMatrixMultiplyTranspose
99D3DXMatrixOrthoLH
100D3DXMatrixOrthoOffCenterLH
101D3DXMatrixOrthoOffCenterRH
102D3DXMatrixOrthoRH
103D3DXMatrixPerspectiveFovLH
104D3DXMatrixPerspectiveFovRH
105D3DXMatrixPerspectiveLH
106D3DXMatrixPerspectiveOffCenterLH
107D3DXMatrixPerspectiveOffCenterRH
108D3DXMatrixPerspectiveRH
109D3DXMatrixReflect
110D3DXMatrixRotationAxis
111D3DXMatrixRotationQuaternion
112D3DXMatrixRotationX
113D3DXMatrixRotationY
114D3DXMatrixRotationYawPitchRoll
115D3DXMatrixRotationZ
116D3DXMatrixScaling
117D3DXMatrixShadow
118D3DXMatrixTransformation
119D3DXMatrixTransformation2D
120D3DXMatrixTranslation
121D3DXMatrixTranspose
122D3DXPlaneFromPointNormal
123D3DXPlaneFromPoints
124D3DXPlaneIntersectLine
125D3DXPlaneNormalize
126D3DXPlaneTransform
127D3DXPlaneTransformArray
128D3DXQuaternionBaryCentric
129D3DXQuaternionExp
130D3DXQuaternionInverse
131D3DXQuaternionLn
132D3DXQuaternionMultiply
133D3DXQuaternionNormalize
134D3DXQuaternionRotationAxis
135D3DXQuaternionRotationMatrix
136D3DXQuaternionRotationYawPitchRoll
137D3DXQuaternionSlerp
138D3DXQuaternionSquad
139D3DXQuaternionSquadSetup
140D3DXQuaternionToAxisAngle
141D3DXSHAdd
142D3DXSHDot
143D3DXSHEvalConeLight
144D3DXSHEvalDirection
145D3DXSHEvalDirectionalLight
146D3DXSHEvalHemisphereLight
147D3DXSHEvalSphericalLight
148D3DXSHMultiply2
149D3DXSHMultiply3
150D3DXSHMultiply4
151D3DXSHMultiply5
152D3DXSHMultiply6
153D3DXSHRotate
154D3DXSHRotateZ
155D3DXSHScale
156D3DXSphereBoundProbe
157D3DXVec2BaryCentric
158D3DXVec2CatmullRom
159D3DXVec2Hermite
160D3DXVec2Normalize
161D3DXVec2Transform
162D3DXVec2TransformArray
163D3DXVec2TransformCoord
164D3DXVec2TransformCoordArray
165D3DXVec2TransformNormal
166D3DXVec2TransformNormalArray
167D3DXVec3BaryCentric
168D3DXVec3CatmullRom
169D3DXVec3Hermite
170D3DXVec3Normalize
171D3DXVec3Project
172D3DXVec3ProjectArray
173D3DXVec3Transform
174D3DXVec3TransformArray
175D3DXVec3TransformCoord
176D3DXVec3TransformCoordArray
177D3DXVec3TransformNormal
178D3DXVec3TransformNormalArray
179D3DXVec3Unproject
180D3DXVec3UnprojectArray
181D3DXVec4BaryCentric
182D3DXVec4CatmullRom
183D3DXVec4Cross
184D3DXVec4Hermite
185D3DXVec4Normalize
186D3DXVec4Transform
187D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_40.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_40.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateDevice
29D3DX10CreateDeviceAndSwapChain
30D3DX10CreateEffectFromFileA
31D3DX10CreateEffectFromFileW
32D3DX10CreateEffectFromMemory
33D3DX10CreateEffectFromResourceA
34D3DX10CreateEffectFromResourceW
35D3DX10CreateEffectPoolFromFileA
36D3DX10CreateEffectPoolFromFileW
37D3DX10CreateEffectPoolFromMemory
38D3DX10CreateEffectPoolFromResourceA
39D3DX10CreateEffectPoolFromResourceW
40D3DX10CreateFontA
41D3DX10CreateFontIndirectA
42D3DX10CreateFontIndirectW
43D3DX10CreateFontW
44D3DX10CreateMesh
45D3DX10CreateShaderResourceViewFromFileA
46D3DX10CreateShaderResourceViewFromFileW
47D3DX10CreateShaderResourceViewFromMemory
48D3DX10CreateShaderResourceViewFromResourceA
49D3DX10CreateShaderResourceViewFromResourceW
50D3DX10CreateSkinInfo
51D3DX10CreateSprite
52D3DX10CreateTextureFromFileA
53D3DX10CreateTextureFromFileW
54D3DX10CreateTextureFromMemory
55D3DX10CreateTextureFromResourceA
56D3DX10CreateTextureFromResourceW
57D3DX10FilterTexture
58D3DX10GetFeatureLevel1
59D3DX10GetImageInfoFromFileA
60D3DX10GetImageInfoFromFileW
61D3DX10GetImageInfoFromMemory
62D3DX10GetImageInfoFromResourceA
63D3DX10GetImageInfoFromResourceW
64D3DX10LoadTextureFromTexture
65D3DX10PreprocessShaderFromFileA
66D3DX10PreprocessShaderFromFileW
67D3DX10PreprocessShaderFromMemory
68D3DX10PreprocessShaderFromResourceA
69D3DX10PreprocessShaderFromResourceW
70D3DX10SHProjectCubeMap
71D3DX10SaveTextureToFileA
72D3DX10SaveTextureToFileW
73D3DX10SaveTextureToMemory
74D3DX10UnsetAllDeviceObjects
75D3DXBoxBoundProbe
76D3DXColorAdjustContrast
77D3DXColorAdjustSaturation
78D3DXComputeBoundingBox
79D3DXComputeBoundingSphere
80D3DXCpuOptimizations
81D3DXCreateMatrixStack
82D3DXFloat16To32Array
83D3DXFloat32To16Array
84D3DXFresnelTerm
85D3DXIntersectTri
86D3DXMatrixAffineTransformation
87D3DXMatrixAffineTransformation2D
88D3DXMatrixDecompose
89D3DXMatrixDeterminant
90D3DXMatrixInverse
91D3DXMatrixLookAtLH
92D3DXMatrixLookAtRH
93D3DXMatrixMultiply
94D3DXMatrixMultiplyTranspose
95D3DXMatrixOrthoLH
96D3DXMatrixOrthoOffCenterLH
97D3DXMatrixOrthoOffCenterRH
98D3DXMatrixOrthoRH
99D3DXMatrixPerspectiveFovLH
100D3DXMatrixPerspectiveFovRH
101D3DXMatrixPerspectiveLH
102D3DXMatrixPerspectiveOffCenterLH
103D3DXMatrixPerspectiveOffCenterRH
104D3DXMatrixPerspectiveRH
105D3DXMatrixReflect
106D3DXMatrixRotationAxis
107D3DXMatrixRotationQuaternion
108D3DXMatrixRotationX
109D3DXMatrixRotationY
110D3DXMatrixRotationYawPitchRoll
111D3DXMatrixRotationZ
112D3DXMatrixScaling
113D3DXMatrixShadow
114D3DXMatrixTransformation
115D3DXMatrixTransformation2D
116D3DXMatrixTranslation
117D3DXMatrixTranspose
118D3DXPlaneFromPointNormal
119D3DXPlaneFromPoints
120D3DXPlaneIntersectLine
121D3DXPlaneNormalize
122D3DXPlaneTransform
123D3DXPlaneTransformArray
124D3DXQuaternionBaryCentric
125D3DXQuaternionExp
126D3DXQuaternionInverse
127D3DXQuaternionLn
128D3DXQuaternionMultiply
129D3DXQuaternionNormalize
130D3DXQuaternionRotationAxis
131D3DXQuaternionRotationMatrix
132D3DXQuaternionRotationYawPitchRoll
133D3DXQuaternionSlerp
134D3DXQuaternionSquad
135D3DXQuaternionSquadSetup
136D3DXQuaternionToAxisAngle
137D3DXSHAdd
138D3DXSHDot
139D3DXSHEvalConeLight
140D3DXSHEvalDirection
141D3DXSHEvalDirectionalLight
142D3DXSHEvalHemisphereLight
143D3DXSHEvalSphericalLight
144D3DXSHMultiply2
145D3DXSHMultiply3
146D3DXSHMultiply4
147D3DXSHMultiply5
148D3DXSHMultiply6
149D3DXSHRotate
150D3DXSHRotateZ
151D3DXSHScale
152D3DXSphereBoundProbe
153D3DXVec2BaryCentric
154D3DXVec2CatmullRom
155D3DXVec2Hermite
156D3DXVec2Normalize
157D3DXVec2Transform
158D3DXVec2TransformArray
159D3DXVec2TransformCoord
160D3DXVec2TransformCoordArray
161D3DXVec2TransformNormal
162D3DXVec2TransformNormalArray
163D3DXVec3BaryCentric
164D3DXVec3CatmullRom
165D3DXVec3Hermite
166D3DXVec3Normalize
167D3DXVec3Project
168D3DXVec3ProjectArray
169D3DXVec3Transform
170D3DXVec3TransformArray
171D3DXVec3TransformCoord
172D3DXVec3TransformCoordArray
173D3DXVec3TransformNormal
174D3DXVec3TransformNormalArray
175D3DXVec3Unproject
176D3DXVec3UnprojectArray
177D3DXVec4BaryCentric
178D3DXVec4CatmullRom
179D3DXVec4Cross
180D3DXVec4Hermite
181D3DXVec4Normalize
182D3DXVec4Transform
183D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_41.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_41.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_41.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateDevice
29D3DX10CreateDeviceAndSwapChain
30D3DX10CreateEffectFromFileA
31D3DX10CreateEffectFromFileW
32D3DX10CreateEffectFromMemory
33D3DX10CreateEffectFromResourceA
34D3DX10CreateEffectFromResourceW
35D3DX10CreateEffectPoolFromFileA
36D3DX10CreateEffectPoolFromFileW
37D3DX10CreateEffectPoolFromMemory
38D3DX10CreateEffectPoolFromResourceA
39D3DX10CreateEffectPoolFromResourceW
40D3DX10CreateFontA
41D3DX10CreateFontIndirectA
42D3DX10CreateFontIndirectW
43D3DX10CreateFontW
44D3DX10CreateMesh
45D3DX10CreateShaderResourceViewFromFileA
46D3DX10CreateShaderResourceViewFromFileW
47D3DX10CreateShaderResourceViewFromMemory
48D3DX10CreateShaderResourceViewFromResourceA
49D3DX10CreateShaderResourceViewFromResourceW
50D3DX10CreateSkinInfo
51D3DX10CreateSprite
52D3DX10CreateTextureFromFileA
53D3DX10CreateTextureFromFileW
54D3DX10CreateTextureFromMemory
55D3DX10CreateTextureFromResourceA
56D3DX10CreateTextureFromResourceW
57D3DX10FilterTexture
58D3DX10GetFeatureLevel1
59D3DX10GetImageInfoFromFileA
60D3DX10GetImageInfoFromFileW
61D3DX10GetImageInfoFromMemory
62D3DX10GetImageInfoFromResourceA
63D3DX10GetImageInfoFromResourceW
64D3DX10LoadTextureFromTexture
65D3DX10PreprocessShaderFromFileA
66D3DX10PreprocessShaderFromFileW
67D3DX10PreprocessShaderFromMemory
68D3DX10PreprocessShaderFromResourceA
69D3DX10PreprocessShaderFromResourceW
70D3DX10SHProjectCubeMap
71D3DX10SaveTextureToFileA
72D3DX10SaveTextureToFileW
73D3DX10SaveTextureToMemory
74D3DX10UnsetAllDeviceObjects
75D3DXBoxBoundProbe
76D3DXColorAdjustContrast
77D3DXColorAdjustSaturation
78D3DXComputeBoundingBox
79D3DXComputeBoundingSphere
80D3DXCpuOptimizations
81D3DXCreateMatrixStack
82D3DXFloat16To32Array
83D3DXFloat32To16Array
84D3DXFresnelTerm
85D3DXIntersectTri
86D3DXMatrixAffineTransformation
87D3DXMatrixAffineTransformation2D
88D3DXMatrixDecompose
89D3DXMatrixDeterminant
90D3DXMatrixInverse
91D3DXMatrixLookAtLH
92D3DXMatrixLookAtRH
93D3DXMatrixMultiply
94D3DXMatrixMultiplyTranspose
95D3DXMatrixOrthoLH
96D3DXMatrixOrthoOffCenterLH
97D3DXMatrixOrthoOffCenterRH
98D3DXMatrixOrthoRH
99D3DXMatrixPerspectiveFovLH
100D3DXMatrixPerspectiveFovRH
101D3DXMatrixPerspectiveLH
102D3DXMatrixPerspectiveOffCenterLH
103D3DXMatrixPerspectiveOffCenterRH
104D3DXMatrixPerspectiveRH
105D3DXMatrixReflect
106D3DXMatrixRotationAxis
107D3DXMatrixRotationQuaternion
108D3DXMatrixRotationX
109D3DXMatrixRotationY
110D3DXMatrixRotationYawPitchRoll
111D3DXMatrixRotationZ
112D3DXMatrixScaling
113D3DXMatrixShadow
114D3DXMatrixTransformation
115D3DXMatrixTransformation2D
116D3DXMatrixTranslation
117D3DXMatrixTranspose
118D3DXPlaneFromPointNormal
119D3DXPlaneFromPoints
120D3DXPlaneIntersectLine
121D3DXPlaneNormalize
122D3DXPlaneTransform
123D3DXPlaneTransformArray
124D3DXQuaternionBaryCentric
125D3DXQuaternionExp
126D3DXQuaternionInverse
127D3DXQuaternionLn
128D3DXQuaternionMultiply
129D3DXQuaternionNormalize
130D3DXQuaternionRotationAxis
131D3DXQuaternionRotationMatrix
132D3DXQuaternionRotationYawPitchRoll
133D3DXQuaternionSlerp
134D3DXQuaternionSquad
135D3DXQuaternionSquadSetup
136D3DXQuaternionToAxisAngle
137D3DXSHAdd
138D3DXSHDot
139D3DXSHEvalConeLight
140D3DXSHEvalDirection
141D3DXSHEvalDirectionalLight
142D3DXSHEvalHemisphereLight
143D3DXSHEvalSphericalLight
144D3DXSHMultiply2
145D3DXSHMultiply3
146D3DXSHMultiply4
147D3DXSHMultiply5
148D3DXSHMultiply6
149D3DXSHRotate
150D3DXSHRotateZ
151D3DXSHScale
152D3DXSphereBoundProbe
153D3DXVec2BaryCentric
154D3DXVec2CatmullRom
155D3DXVec2Hermite
156D3DXVec2Normalize
157D3DXVec2Transform
158D3DXVec2TransformArray
159D3DXVec2TransformCoord
160D3DXVec2TransformCoordArray
161D3DXVec2TransformNormal
162D3DXVec2TransformNormalArray
163D3DXVec3BaryCentric
164D3DXVec3CatmullRom
165D3DXVec3Hermite
166D3DXVec3Normalize
167D3DXVec3Project
168D3DXVec3ProjectArray
169D3DXVec3Transform
170D3DXVec3TransformArray
171D3DXVec3TransformCoord
172D3DXVec3TransformCoordArray
173D3DXVec3TransformNormal
174D3DXVec3TransformNormalArray
175D3DXVec3Unproject
176D3DXVec3UnprojectArray
177D3DXVec4BaryCentric
178D3DXVec4CatmullRom
179D3DXVec4Cross
180D3DXVec4Hermite
181D3DXVec4Normalize
182D3DXVec4Transform
183D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_42.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_42.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateDevice
29D3DX10CreateDeviceAndSwapChain
30D3DX10CreateEffectFromFileA
31D3DX10CreateEffectFromFileW
32D3DX10CreateEffectFromMemory
33D3DX10CreateEffectFromResourceA
34D3DX10CreateEffectFromResourceW
35D3DX10CreateEffectPoolFromFileA
36D3DX10CreateEffectPoolFromFileW
37D3DX10CreateEffectPoolFromMemory
38D3DX10CreateEffectPoolFromResourceA
39D3DX10CreateEffectPoolFromResourceW
40D3DX10CreateFontA
41D3DX10CreateFontIndirectA
42D3DX10CreateFontIndirectW
43D3DX10CreateFontW
44D3DX10CreateMesh
45D3DX10CreateShaderResourceViewFromFileA
46D3DX10CreateShaderResourceViewFromFileW
47D3DX10CreateShaderResourceViewFromMemory
48D3DX10CreateShaderResourceViewFromResourceA
49D3DX10CreateShaderResourceViewFromResourceW
50D3DX10CreateSkinInfo
51D3DX10CreateSprite
52D3DX10CreateTextureFromFileA
53D3DX10CreateTextureFromFileW
54D3DX10CreateTextureFromMemory
55D3DX10CreateTextureFromResourceA
56D3DX10CreateTextureFromResourceW
57D3DX10FilterTexture
58D3DX10GetFeatureLevel1
59D3DX10GetImageInfoFromFileA
60D3DX10GetImageInfoFromFileW
61D3DX10GetImageInfoFromMemory
62D3DX10GetImageInfoFromResourceA
63D3DX10GetImageInfoFromResourceW
64D3DX10LoadTextureFromTexture
65D3DX10PreprocessShaderFromFileA
66D3DX10PreprocessShaderFromFileW
67D3DX10PreprocessShaderFromMemory
68D3DX10PreprocessShaderFromResourceA
69D3DX10PreprocessShaderFromResourceW
70D3DX10SHProjectCubeMap
71D3DX10SaveTextureToFileA
72D3DX10SaveTextureToFileW
73D3DX10SaveTextureToMemory
74D3DX10UnsetAllDeviceObjects
75D3DXBoxBoundProbe
76D3DXColorAdjustContrast
77D3DXColorAdjustSaturation
78D3DXComputeBoundingBox
79D3DXComputeBoundingSphere
80D3DXCpuOptimizations
81D3DXCreateMatrixStack
82D3DXFloat16To32Array
83D3DXFloat32To16Array
84D3DXFresnelTerm
85D3DXIntersectTri
86D3DXMatrixAffineTransformation
87D3DXMatrixAffineTransformation2D
88D3DXMatrixDecompose
89D3DXMatrixDeterminant
90D3DXMatrixInverse
91D3DXMatrixLookAtLH
92D3DXMatrixLookAtRH
93D3DXMatrixMultiply
94D3DXMatrixMultiplyTranspose
95D3DXMatrixOrthoLH
96D3DXMatrixOrthoOffCenterLH
97D3DXMatrixOrthoOffCenterRH
98D3DXMatrixOrthoRH
99D3DXMatrixPerspectiveFovLH
100D3DXMatrixPerspectiveFovRH
101D3DXMatrixPerspectiveLH
102D3DXMatrixPerspectiveOffCenterLH
103D3DXMatrixPerspectiveOffCenterRH
104D3DXMatrixPerspectiveRH
105D3DXMatrixReflect
106D3DXMatrixRotationAxis
107D3DXMatrixRotationQuaternion
108D3DXMatrixRotationX
109D3DXMatrixRotationY
110D3DXMatrixRotationYawPitchRoll
111D3DXMatrixRotationZ
112D3DXMatrixScaling
113D3DXMatrixShadow
114D3DXMatrixTransformation
115D3DXMatrixTransformation2D
116D3DXMatrixTranslation
117D3DXMatrixTranspose
118D3DXPlaneFromPointNormal
119D3DXPlaneFromPoints
120D3DXPlaneIntersectLine
121D3DXPlaneNormalize
122D3DXPlaneTransform
123D3DXPlaneTransformArray
124D3DXQuaternionBaryCentric
125D3DXQuaternionExp
126D3DXQuaternionInverse
127D3DXQuaternionLn
128D3DXQuaternionMultiply
129D3DXQuaternionNormalize
130D3DXQuaternionRotationAxis
131D3DXQuaternionRotationMatrix
132D3DXQuaternionRotationYawPitchRoll
133D3DXQuaternionSlerp
134D3DXQuaternionSquad
135D3DXQuaternionSquadSetup
136D3DXQuaternionToAxisAngle
137D3DXSHAdd
138D3DXSHDot
139D3DXSHEvalConeLight
140D3DXSHEvalDirection
141D3DXSHEvalDirectionalLight
142D3DXSHEvalHemisphereLight
143D3DXSHEvalSphericalLight
144D3DXSHMultiply2
145D3DXSHMultiply3
146D3DXSHMultiply4
147D3DXSHMultiply5
148D3DXSHMultiply6
149D3DXSHRotate
150D3DXSHRotateZ
151D3DXSHScale
152D3DXSphereBoundProbe
153D3DXVec2BaryCentric
154D3DXVec2CatmullRom
155D3DXVec2Hermite
156D3DXVec2Normalize
157D3DXVec2Transform
158D3DXVec2TransformArray
159D3DXVec2TransformCoord
160D3DXVec2TransformCoordArray
161D3DXVec2TransformNormal
162D3DXVec2TransformNormalArray
163D3DXVec3BaryCentric
164D3DXVec3CatmullRom
165D3DXVec3Hermite
166D3DXVec3Normalize
167D3DXVec3Project
168D3DXVec3ProjectArray
169D3DXVec3Transform
170D3DXVec3TransformArray
171D3DXVec3TransformCoord
172D3DXVec3TransformCoordArray
173D3DXVec3TransformNormal
174D3DXVec3TransformNormalArray
175D3DXVec3Unproject
176D3DXVec3UnprojectArray
177D3DXVec4BaryCentric
178D3DXVec4CatmullRom
179D3DXVec4Cross
180D3DXVec4Hermite
181D3DXVec4Normalize
182D3DXVec4Transform
183D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx10_43.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of d3dx10_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx10_43.dll"
7EXPORTS
8D3DX10CreateThreadPump
9D3DX10CheckVersion
10D3DX10CompileFromFileA
11D3DX10CompileFromFileW
12D3DX10CompileFromMemory
13D3DX10CompileFromResourceA
14D3DX10CompileFromResourceW
15D3DX10ComputeNormalMap
16D3DX10CreateAsyncCompilerProcessor
17D3DX10CreateAsyncEffectCreateProcessor
18D3DX10CreateAsyncEffectPoolCreateProcessor
19D3DX10CreateAsyncFileLoaderA
20D3DX10CreateAsyncFileLoaderW
21D3DX10CreateAsyncMemoryLoader
22D3DX10CreateAsyncResourceLoaderA
23D3DX10CreateAsyncResourceLoaderW
24D3DX10CreateAsyncShaderPreprocessProcessor
25D3DX10CreateAsyncShaderResourceViewProcessor
26D3DX10CreateAsyncTextureInfoProcessor
27D3DX10CreateAsyncTextureProcessor
28D3DX10CreateDevice
29D3DX10CreateDeviceAndSwapChain
30D3DX10CreateEffectFromFileA
31D3DX10CreateEffectFromFileW
32D3DX10CreateEffectFromMemory
33D3DX10CreateEffectFromResourceA
34D3DX10CreateEffectFromResourceW
35D3DX10CreateEffectPoolFromFileA
36D3DX10CreateEffectPoolFromFileW
37D3DX10CreateEffectPoolFromMemory
38D3DX10CreateEffectPoolFromResourceA
39D3DX10CreateEffectPoolFromResourceW
40D3DX10CreateFontA
41D3DX10CreateFontIndirectA
42D3DX10CreateFontIndirectW
43D3DX10CreateFontW
44D3DX10CreateMesh
45D3DX10CreateShaderResourceViewFromFileA
46D3DX10CreateShaderResourceViewFromFileW
47D3DX10CreateShaderResourceViewFromMemory
48D3DX10CreateShaderResourceViewFromResourceA
49D3DX10CreateShaderResourceViewFromResourceW
50D3DX10CreateSkinInfo
51D3DX10CreateSprite
52D3DX10CreateTextureFromFileA
53D3DX10CreateTextureFromFileW
54D3DX10CreateTextureFromMemory
55D3DX10CreateTextureFromResourceA
56D3DX10CreateTextureFromResourceW
57D3DX10FilterTexture
58D3DX10GetFeatureLevel1
59D3DX10GetImageInfoFromFileA
60D3DX10GetImageInfoFromFileW
61D3DX10GetImageInfoFromMemory
62D3DX10GetImageInfoFromResourceA
63D3DX10GetImageInfoFromResourceW
64D3DX10LoadTextureFromTexture
65D3DX10PreprocessShaderFromFileA
66D3DX10PreprocessShaderFromFileW
67D3DX10PreprocessShaderFromMemory
68D3DX10PreprocessShaderFromResourceA
69D3DX10PreprocessShaderFromResourceW
70D3DX10SHProjectCubeMap
71D3DX10SaveTextureToFileA
72D3DX10SaveTextureToFileW
73D3DX10SaveTextureToMemory
74D3DX10UnsetAllDeviceObjects
75D3DXBoxBoundProbe
76D3DXColorAdjustContrast
77D3DXColorAdjustSaturation
78D3DXComputeBoundingBox
79D3DXComputeBoundingSphere
80D3DXCpuOptimizations
81D3DXCreateMatrixStack
82D3DXFloat16To32Array
83D3DXFloat32To16Array
84D3DXFresnelTerm
85D3DXIntersectTri
86D3DXMatrixAffineTransformation
87D3DXMatrixAffineTransformation2D
88D3DXMatrixDecompose
89D3DXMatrixDeterminant
90D3DXMatrixInverse
91D3DXMatrixLookAtLH
92D3DXMatrixLookAtRH
93D3DXMatrixMultiply
94D3DXMatrixMultiplyTranspose
95D3DXMatrixOrthoLH
96D3DXMatrixOrthoOffCenterLH
97D3DXMatrixOrthoOffCenterRH
98D3DXMatrixOrthoRH
99D3DXMatrixPerspectiveFovLH
100D3DXMatrixPerspectiveFovRH
101D3DXMatrixPerspectiveLH
102D3DXMatrixPerspectiveOffCenterLH
103D3DXMatrixPerspectiveOffCenterRH
104D3DXMatrixPerspectiveRH
105D3DXMatrixReflect
106D3DXMatrixRotationAxis
107D3DXMatrixRotationQuaternion
108D3DXMatrixRotationX
109D3DXMatrixRotationY
110D3DXMatrixRotationYawPitchRoll
111D3DXMatrixRotationZ
112D3DXMatrixScaling
113D3DXMatrixShadow
114D3DXMatrixTransformation
115D3DXMatrixTransformation2D
116D3DXMatrixTranslation
117D3DXMatrixTranspose
118D3DXPlaneFromPointNormal
119D3DXPlaneFromPoints
120D3DXPlaneIntersectLine
121D3DXPlaneNormalize
122D3DXPlaneTransform
123D3DXPlaneTransformArray
124D3DXQuaternionBaryCentric
125D3DXQuaternionExp
126D3DXQuaternionInverse
127D3DXQuaternionLn
128D3DXQuaternionMultiply
129D3DXQuaternionNormalize
130D3DXQuaternionRotationAxis
131D3DXQuaternionRotationMatrix
132D3DXQuaternionRotationYawPitchRoll
133D3DXQuaternionSlerp
134D3DXQuaternionSquad
135D3DXQuaternionSquadSetup
136D3DXQuaternionToAxisAngle
137D3DXSHAdd
138D3DXSHDot
139D3DXSHEvalConeLight
140D3DXSHEvalDirection
141D3DXSHEvalDirectionalLight
142D3DXSHEvalHemisphereLight
143D3DXSHEvalSphericalLight
144D3DXSHMultiply2
145D3DXSHMultiply3
146D3DXSHMultiply4
147D3DXSHMultiply5
148D3DXSHMultiply6
149D3DXSHRotate
150D3DXSHRotateZ
151D3DXSHScale
152D3DXSphereBoundProbe
153D3DXVec2BaryCentric
154D3DXVec2CatmullRom
155D3DXVec2Hermite
156D3DXVec2Normalize
157D3DXVec2Transform
158D3DXVec2TransformArray
159D3DXVec2TransformCoord
160D3DXVec2TransformCoordArray
161D3DXVec2TransformNormal
162D3DXVec2TransformNormalArray
163D3DXVec3BaryCentric
164D3DXVec3CatmullRom
165D3DXVec3Hermite
166D3DXVec3Normalize
167D3DXVec3Project
168D3DXVec3ProjectArray
169D3DXVec3Transform
170D3DXVec3TransformArray
171D3DXVec3TransformCoord
172D3DXVec3TransformCoordArray
173D3DXVec3TransformNormal
174D3DXVec3TransformNormalArray
175D3DXVec3Unproject
176D3DXVec3UnprojectArray
177D3DXVec4BaryCentric
178D3DXVec4CatmullRom
179D3DXVec4Cross
180D3DXVec4Hermite
181D3DXVec4Normalize
182D3DXVec4Transform
183D3DXVec4TransformArray
lib/libc/mingw/lib64/d3dx11_42.def created+51
......@@ -0,0 +1,51 @@
1;
2; Definition file of d3dx11_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx11_42.dll"
7EXPORTS
8D3DX11CheckVersion
9D3DX11CompileFromFileA
10D3DX11CompileFromFileW
11D3DX11CompileFromMemory
12D3DX11CompileFromResourceA
13D3DX11CompileFromResourceW
14D3DX11ComputeNormalMap
15D3DX11CreateAsyncCompilerProcessor
16D3DX11CreateAsyncFileLoaderA
17D3DX11CreateAsyncFileLoaderW
18D3DX11CreateAsyncMemoryLoader
19D3DX11CreateAsyncResourceLoaderA
20D3DX11CreateAsyncResourceLoaderW
21D3DX11CreateAsyncShaderPreprocessProcessor
22D3DX11CreateAsyncShaderResourceViewProcessor
23D3DX11CreateAsyncTextureInfoProcessor
24D3DX11CreateAsyncTextureProcessor
25D3DX11CreateShaderResourceViewFromFileA
26D3DX11CreateShaderResourceViewFromFileW
27D3DX11CreateShaderResourceViewFromMemory
28D3DX11CreateShaderResourceViewFromResourceA
29D3DX11CreateShaderResourceViewFromResourceW
30D3DX11CreateTextureFromFileA
31D3DX11CreateTextureFromFileW
32D3DX11CreateTextureFromMemory
33D3DX11CreateTextureFromResourceA
34D3DX11CreateTextureFromResourceW
35D3DX11CreateThreadPump
36D3DX11FilterTexture
37D3DX11GetImageInfoFromFileA
38D3DX11GetImageInfoFromFileW
39D3DX11GetImageInfoFromMemory
40D3DX11GetImageInfoFromResourceA
41D3DX11GetImageInfoFromResourceW
42D3DX11LoadTextureFromTexture
43D3DX11PreprocessShaderFromFileA
44D3DX11PreprocessShaderFromFileW
45D3DX11PreprocessShaderFromMemory
46D3DX11PreprocessShaderFromResourceA
47D3DX11PreprocessShaderFromResourceW
48D3DX11SHProjectCubeMap
49D3DX11SaveTextureToFileA
50D3DX11SaveTextureToFileW
51D3DX11SaveTextureToMemory
lib/libc/mingw/lib64/d3dx11_43.def created+51
......@@ -0,0 +1,51 @@
1;
2; Definition file of d3dx11_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx11_43.dll"
7EXPORTS
8D3DX11CheckVersion
9D3DX11CompileFromFileA
10D3DX11CompileFromFileW
11D3DX11CompileFromMemory
12D3DX11CompileFromResourceA
13D3DX11CompileFromResourceW
14D3DX11ComputeNormalMap
15D3DX11CreateAsyncCompilerProcessor
16D3DX11CreateAsyncFileLoaderA
17D3DX11CreateAsyncFileLoaderW
18D3DX11CreateAsyncMemoryLoader
19D3DX11CreateAsyncResourceLoaderA
20D3DX11CreateAsyncResourceLoaderW
21D3DX11CreateAsyncShaderPreprocessProcessor
22D3DX11CreateAsyncShaderResourceViewProcessor
23D3DX11CreateAsyncTextureInfoProcessor
24D3DX11CreateAsyncTextureProcessor
25D3DX11CreateShaderResourceViewFromFileA
26D3DX11CreateShaderResourceViewFromFileW
27D3DX11CreateShaderResourceViewFromMemory
28D3DX11CreateShaderResourceViewFromResourceA
29D3DX11CreateShaderResourceViewFromResourceW
30D3DX11CreateTextureFromFileA
31D3DX11CreateTextureFromFileW
32D3DX11CreateTextureFromMemory
33D3DX11CreateTextureFromResourceA
34D3DX11CreateTextureFromResourceW
35D3DX11CreateThreadPump
36D3DX11FilterTexture
37D3DX11GetImageInfoFromFileA
38D3DX11GetImageInfoFromFileW
39D3DX11GetImageInfoFromMemory
40D3DX11GetImageInfoFromResourceA
41D3DX11GetImageInfoFromResourceW
42D3DX11LoadTextureFromTexture
43D3DX11PreprocessShaderFromFileA
44D3DX11PreprocessShaderFromFileW
45D3DX11PreprocessShaderFromMemory
46D3DX11PreprocessShaderFromResourceA
47D3DX11PreprocessShaderFromResourceW
48D3DX11SHProjectCubeMap
49D3DX11SaveTextureToFileA
50D3DX11SaveTextureToFileW
51D3DX11SaveTextureToMemory
lib/libc/mingw/lib64/d3dx9_24.def created+327
......@@ -0,0 +1,327 @@
1;
2; Definition file of d3dx9_24.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_24.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeNormalMap
29D3DXComputeNormals
30D3DXComputeTangent
31D3DXComputeTangentFrame
32D3DXComputeTangentFrameEx
33D3DXConcatenateMeshes
34D3DXConvertMeshSubsetToSingleStrip
35D3DXConvertMeshSubsetToStrips
36D3DXCpuOptimizations
37D3DXCreateAnimationController
38D3DXCreateBox
39D3DXCreateBuffer
40D3DXCreateCompressedAnimationSet
41D3DXCreateCubeTexture
42D3DXCreateCubeTextureFromFileA
43D3DXCreateCubeTextureFromFileExA
44D3DXCreateCubeTextureFromFileExW
45D3DXCreateCubeTextureFromFileInMemory
46D3DXCreateCubeTextureFromFileInMemoryEx
47D3DXCreateCubeTextureFromFileW
48D3DXCreateCubeTextureFromResourceA
49D3DXCreateCubeTextureFromResourceExA
50D3DXCreateCubeTextureFromResourceExW
51D3DXCreateCubeTextureFromResourceW
52D3DXCreateCylinder
53D3DXCreateEffect
54D3DXCreateEffectCompiler
55D3DXCreateEffectCompilerFromFileA
56D3DXCreateEffectCompilerFromFileW
57D3DXCreateEffectCompilerFromResourceA
58D3DXCreateEffectCompilerFromResourceW
59D3DXCreateEffectEx
60D3DXCreateEffectFromFileA
61D3DXCreateEffectFromFileExA
62D3DXCreateEffectFromFileExW
63D3DXCreateEffectFromFileW
64D3DXCreateEffectFromResourceA
65D3DXCreateEffectFromResourceExA
66D3DXCreateEffectFromResourceExW
67D3DXCreateEffectFromResourceW
68D3DXCreateEffectPool
69D3DXCreateFontA
70D3DXCreateFontIndirectA
71D3DXCreateFontIndirectW
72D3DXCreateFontW
73D3DXCreateFragmentLinker
74D3DXCreateKeyframedAnimationSet
75D3DXCreateLine
76D3DXCreateMatrixStack
77D3DXCreateMesh
78D3DXCreateMeshFVF
79D3DXCreateNPatchMesh
80D3DXCreatePMeshFromStream
81D3DXCreatePRTBuffer
82D3DXCreatePRTBufferTex
83D3DXCreatePRTCompBuffer
84D3DXCreatePRTEngine
85D3DXCreatePatchMesh
86D3DXCreatePolygon
87D3DXCreateRenderToEnvMap
88D3DXCreateRenderToSurface
89D3DXCreateSPMesh
90D3DXCreateSkinInfo
91D3DXCreateSkinInfoFVF
92D3DXCreateSkinInfoFromBlendedMesh
93D3DXCreateSphere
94D3DXCreateSprite
95D3DXCreateTeapot
96D3DXCreateTextA
97D3DXCreateTextW
98D3DXCreateTexture
99D3DXCreateTextureFromFileA
100D3DXCreateTextureFromFileExA
101D3DXCreateTextureFromFileExW
102D3DXCreateTextureFromFileInMemory
103D3DXCreateTextureFromFileInMemoryEx
104D3DXCreateTextureFromFileW
105D3DXCreateTextureFromResourceA
106D3DXCreateTextureFromResourceExA
107D3DXCreateTextureFromResourceExW
108D3DXCreateTextureFromResourceW
109D3DXCreateTextureGutterHelper
110D3DXCreateTextureShader
111D3DXCreateTorus
112D3DXCreateVolumeTexture
113D3DXCreateVolumeTextureFromFileA
114D3DXCreateVolumeTextureFromFileExA
115D3DXCreateVolumeTextureFromFileExW
116D3DXCreateVolumeTextureFromFileInMemory
117D3DXCreateVolumeTextureFromFileInMemoryEx
118D3DXCreateVolumeTextureFromFileW
119D3DXCreateVolumeTextureFromResourceA
120D3DXCreateVolumeTextureFromResourceExA
121D3DXCreateVolumeTextureFromResourceExW
122D3DXCreateVolumeTextureFromResourceW
123D3DXDebugMute
124D3DXDeclaratorFromFVF
125D3DXDisassembleEffect
126D3DXDisassembleShader
127D3DXFVFFromDeclarator
128D3DXFileCreate
129D3DXFillCubeTexture
130D3DXFillCubeTextureTX
131D3DXFillTexture
132D3DXFillTextureTX
133D3DXFillVolumeTexture
134D3DXFillVolumeTextureTX
135D3DXFilterTexture
136D3DXFindShaderComment
137D3DXFloat16To32Array
138D3DXFloat32To16Array
139D3DXFrameAppendChild
140D3DXFrameCalculateBoundingSphere
141D3DXFrameDestroy
142D3DXFrameFind
143D3DXFrameNumNamedMatrices
144D3DXFrameRegisterNamedMatrices
145D3DXFresnelTerm
146D3DXGatherFragments
147D3DXGatherFragmentsFromFileA
148D3DXGatherFragmentsFromFileW
149D3DXGatherFragmentsFromResourceA
150D3DXGatherFragmentsFromResourceW
151D3DXGenerateOutputDecl
152D3DXGeneratePMesh
153D3DXGetDeclLength
154D3DXGetDeclVertexSize
155D3DXGetDriverLevel
156D3DXGetFVFVertexSize
157D3DXGetImageInfoFromFileA
158D3DXGetImageInfoFromFileInMemory
159D3DXGetImageInfoFromFileW
160D3DXGetImageInfoFromResourceA
161D3DXGetImageInfoFromResourceW
162D3DXGetPixelShaderProfile
163D3DXGetShaderConstantTable
164D3DXGetShaderInputSemantics
165D3DXGetShaderOutputSemantics
166D3DXGetShaderSamplers
167D3DXGetShaderSize
168D3DXGetShaderVersion
169D3DXGetTargetDescByName
170D3DXGetTargetDescByVersion
171D3DXGetVertexShaderProfile
172D3DXIntersect
173D3DXIntersectSubset
174D3DXIntersectTri
175D3DXLoadMeshFromXA
176D3DXLoadMeshFromXInMemory
177D3DXLoadMeshFromXResource
178D3DXLoadMeshFromXW
179D3DXLoadMeshFromXof
180D3DXLoadMeshHierarchyFromXA
181D3DXLoadMeshHierarchyFromXInMemory
182D3DXLoadMeshHierarchyFromXW
183D3DXLoadPRTBufferFromFileA
184D3DXLoadPRTBufferFromFileW
185D3DXLoadPRTCompBufferFromFileA
186D3DXLoadPRTCompBufferFromFileW
187D3DXLoadPatchMeshFromXof
188D3DXLoadSkinMeshFromXof
189D3DXLoadSurfaceFromFileA
190D3DXLoadSurfaceFromFileInMemory
191D3DXLoadSurfaceFromFileW
192D3DXLoadSurfaceFromMemory
193D3DXLoadSurfaceFromResourceA
194D3DXLoadSurfaceFromResourceW
195D3DXLoadSurfaceFromSurface
196D3DXLoadVolumeFromFileA
197D3DXLoadVolumeFromFileInMemory
198D3DXLoadVolumeFromFileW
199D3DXLoadVolumeFromMemory
200D3DXLoadVolumeFromResourceA
201D3DXLoadVolumeFromResourceW
202D3DXLoadVolumeFromVolume
203D3DXMatrixAffineTransformation
204D3DXMatrixAffineTransformation2D
205D3DXMatrixDecompose
206D3DXMatrixDeterminant
207D3DXMatrixInverse
208D3DXMatrixLookAtLH
209D3DXMatrixLookAtRH
210D3DXMatrixMultiply
211D3DXMatrixMultiplyTranspose
212D3DXMatrixOrthoLH
213D3DXMatrixOrthoOffCenterLH
214D3DXMatrixOrthoOffCenterRH
215D3DXMatrixOrthoRH
216D3DXMatrixPerspectiveFovLH
217D3DXMatrixPerspectiveFovRH
218D3DXMatrixPerspectiveLH
219D3DXMatrixPerspectiveOffCenterLH
220D3DXMatrixPerspectiveOffCenterRH
221D3DXMatrixPerspectiveRH
222D3DXMatrixReflect
223D3DXMatrixRotationAxis
224D3DXMatrixRotationQuaternion
225D3DXMatrixRotationX
226D3DXMatrixRotationY
227D3DXMatrixRotationYawPitchRoll
228D3DXMatrixRotationZ
229D3DXMatrixScaling
230D3DXMatrixShadow
231D3DXMatrixTransformation
232D3DXMatrixTransformation2D
233D3DXMatrixTranslation
234D3DXMatrixTranspose
235D3DXOptimizeFaces
236D3DXOptimizeVertices
237D3DXPlaneFromPointNormal
238D3DXPlaneFromPoints
239D3DXPlaneIntersectLine
240D3DXPlaneNormalize
241D3DXPlaneTransform
242D3DXPlaneTransformArray
243D3DXQuaternionBaryCentric
244D3DXQuaternionExp
245D3DXQuaternionInverse
246D3DXQuaternionLn
247D3DXQuaternionMultiply
248D3DXQuaternionNormalize
249D3DXQuaternionRotationAxis
250D3DXQuaternionRotationMatrix
251D3DXQuaternionRotationYawPitchRoll
252D3DXQuaternionSlerp
253D3DXQuaternionSquad
254D3DXQuaternionSquadSetup
255D3DXQuaternionToAxisAngle
256D3DXRectPatchSize
257D3DXSHAdd
258D3DXSHDot
259D3DXSHEvalConeLight
260D3DXSHEvalDirection
261D3DXSHEvalDirectionalLight
262D3DXSHEvalHemisphereLight
263D3DXSHEvalSphericalLight
264D3DXSHPRTCompSplitMeshSC
265D3DXSHPRTCompSuperCluster
266D3DXSHProjectCubeMap
267D3DXSHRotate
268D3DXSHRotateZ
269D3DXSHScale
270D3DXSaveMeshHierarchyToFileA
271D3DXSaveMeshHierarchyToFileW
272D3DXSaveMeshToXA
273D3DXSaveMeshToXW
274D3DXSavePRTBufferToFileA
275D3DXSavePRTBufferToFileW
276D3DXSavePRTCompBufferToFileA
277D3DXSavePRTCompBufferToFileW
278D3DXSaveSurfaceToFileA
279D3DXSaveSurfaceToFileInMemory
280D3DXSaveSurfaceToFileW
281D3DXSaveTextureToFileA
282D3DXSaveTextureToFileInMemory
283D3DXSaveTextureToFileW
284D3DXSaveVolumeToFileA
285D3DXSaveVolumeToFileInMemory
286D3DXSaveVolumeToFileW
287D3DXSimplifyMesh
288D3DXSphereBoundProbe
289D3DXSplitMesh
290D3DXTessellateNPatches
291D3DXTessellateRectPatch
292D3DXTessellateTriPatch
293D3DXTriPatchSize
294D3DXValidMesh
295D3DXValidPatchMesh
296D3DXVec2BaryCentric
297D3DXVec2CatmullRom
298D3DXVec2Hermite
299D3DXVec2Normalize
300D3DXVec2Transform
301D3DXVec2TransformArray
302D3DXVec2TransformCoord
303D3DXVec2TransformCoordArray
304D3DXVec2TransformNormal
305D3DXVec2TransformNormalArray
306D3DXVec3BaryCentric
307D3DXVec3CatmullRom
308D3DXVec3Hermite
309D3DXVec3Normalize
310D3DXVec3Project
311D3DXVec3ProjectArray
312D3DXVec3Transform
313D3DXVec3TransformArray
314D3DXVec3TransformCoord
315D3DXVec3TransformCoordArray
316D3DXVec3TransformNormal
317D3DXVec3TransformNormalArray
318D3DXVec3Unproject
319D3DXVec3UnprojectArray
320D3DXVec4BaryCentric
321D3DXVec4CatmullRom
322D3DXVec4Cross
323D3DXVec4Hermite
324D3DXVec4Normalize
325D3DXVec4Transform
326D3DXVec4TransformArray
327D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_25.def created+330
......@@ -0,0 +1,330 @@
1;
2; Definition file of d3dx9_25.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_25.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeNormalMap
29D3DXComputeNormals
30D3DXComputeTangent
31D3DXComputeTangentFrame
32D3DXComputeTangentFrameEx
33D3DXConcatenateMeshes
34D3DXConvertMeshSubsetToSingleStrip
35D3DXConvertMeshSubsetToStrips
36D3DXCpuOptimizations
37D3DXCreateAnimationController
38D3DXCreateBox
39D3DXCreateBuffer
40D3DXCreateCompressedAnimationSet
41D3DXCreateCubeTexture
42D3DXCreateCubeTextureFromFileA
43D3DXCreateCubeTextureFromFileExA
44D3DXCreateCubeTextureFromFileExW
45D3DXCreateCubeTextureFromFileInMemory
46D3DXCreateCubeTextureFromFileInMemoryEx
47D3DXCreateCubeTextureFromFileW
48D3DXCreateCubeTextureFromResourceA
49D3DXCreateCubeTextureFromResourceExA
50D3DXCreateCubeTextureFromResourceExW
51D3DXCreateCubeTextureFromResourceW
52D3DXCreateCylinder
53D3DXCreateEffect
54D3DXCreateEffectCompiler
55D3DXCreateEffectCompilerFromFileA
56D3DXCreateEffectCompilerFromFileW
57D3DXCreateEffectCompilerFromResourceA
58D3DXCreateEffectCompilerFromResourceW
59D3DXCreateEffectEx
60D3DXCreateEffectFromFileA
61D3DXCreateEffectFromFileExA
62D3DXCreateEffectFromFileExW
63D3DXCreateEffectFromFileW
64D3DXCreateEffectFromResourceA
65D3DXCreateEffectFromResourceExA
66D3DXCreateEffectFromResourceExW
67D3DXCreateEffectFromResourceW
68D3DXCreateEffectPool
69D3DXCreateFontA
70D3DXCreateFontIndirectA
71D3DXCreateFontIndirectW
72D3DXCreateFontW
73D3DXCreateFragmentLinker
74D3DXCreateKeyframedAnimationSet
75D3DXCreateLine
76D3DXCreateMatrixStack
77D3DXCreateMesh
78D3DXCreateMeshFVF
79D3DXCreateNPatchMesh
80D3DXCreatePMeshFromStream
81D3DXCreatePRTBuffer
82D3DXCreatePRTBufferTex
83D3DXCreatePRTCompBuffer
84D3DXCreatePRTEngine
85D3DXCreatePatchMesh
86D3DXCreatePolygon
87D3DXCreateRenderToEnvMap
88D3DXCreateRenderToSurface
89D3DXCreateSPMesh
90D3DXCreateSkinInfo
91D3DXCreateSkinInfoFVF
92D3DXCreateSkinInfoFromBlendedMesh
93D3DXCreateSphere
94D3DXCreateSprite
95D3DXCreateTeapot
96D3DXCreateTextA
97D3DXCreateTextW
98D3DXCreateTexture
99D3DXCreateTextureFromFileA
100D3DXCreateTextureFromFileExA
101D3DXCreateTextureFromFileExW
102D3DXCreateTextureFromFileInMemory
103D3DXCreateTextureFromFileInMemoryEx
104D3DXCreateTextureFromFileW
105D3DXCreateTextureFromResourceA
106D3DXCreateTextureFromResourceExA
107D3DXCreateTextureFromResourceExW
108D3DXCreateTextureFromResourceW
109D3DXCreateTextureGutterHelper
110D3DXCreateTextureShader
111D3DXCreateTorus
112D3DXCreateVolumeTexture
113D3DXCreateVolumeTextureFromFileA
114D3DXCreateVolumeTextureFromFileExA
115D3DXCreateVolumeTextureFromFileExW
116D3DXCreateVolumeTextureFromFileInMemory
117D3DXCreateVolumeTextureFromFileInMemoryEx
118D3DXCreateVolumeTextureFromFileW
119D3DXCreateVolumeTextureFromResourceA
120D3DXCreateVolumeTextureFromResourceExA
121D3DXCreateVolumeTextureFromResourceExW
122D3DXCreateVolumeTextureFromResourceW
123D3DXDebugMute
124D3DXDeclaratorFromFVF
125D3DXDisassembleEffect
126D3DXDisassembleShader
127D3DXFVFFromDeclarator
128D3DXFileCreate
129D3DXFillCubeTexture
130D3DXFillCubeTextureTX
131D3DXFillTexture
132D3DXFillTextureTX
133D3DXFillVolumeTexture
134D3DXFillVolumeTextureTX
135D3DXFilterTexture
136D3DXFindShaderComment
137D3DXFloat16To32Array
138D3DXFloat32To16Array
139D3DXFrameAppendChild
140D3DXFrameCalculateBoundingSphere
141D3DXFrameDestroy
142D3DXFrameFind
143D3DXFrameNumNamedMatrices
144D3DXFrameRegisterNamedMatrices
145D3DXFresnelTerm
146D3DXGatherFragments
147D3DXGatherFragmentsFromFileA
148D3DXGatherFragmentsFromFileW
149D3DXGatherFragmentsFromResourceA
150D3DXGatherFragmentsFromResourceW
151D3DXGenerateOutputDecl
152D3DXGeneratePMesh
153D3DXGetDeclLength
154D3DXGetDeclVertexSize
155D3DXGetDriverLevel
156D3DXGetFVFVertexSize
157D3DXGetImageInfoFromFileA
158D3DXGetImageInfoFromFileInMemory
159D3DXGetImageInfoFromFileW
160D3DXGetImageInfoFromResourceA
161D3DXGetImageInfoFromResourceW
162D3DXGetPixelShaderProfile
163D3DXGetShaderConstantTable
164D3DXGetShaderInputSemantics
165D3DXGetShaderOutputSemantics
166D3DXGetShaderSamplers
167D3DXGetShaderSize
168D3DXGetShaderVersion
169D3DXGetTargetDescByName
170D3DXGetTargetDescByVersion
171D3DXGetVertexShaderProfile
172D3DXIntersect
173D3DXIntersectSubset
174D3DXIntersectTri
175D3DXLoadMeshFromXA
176D3DXLoadMeshFromXInMemory
177D3DXLoadMeshFromXResource
178D3DXLoadMeshFromXW
179D3DXLoadMeshFromXof
180D3DXLoadMeshHierarchyFromXA
181D3DXLoadMeshHierarchyFromXInMemory
182D3DXLoadMeshHierarchyFromXW
183D3DXLoadPRTBufferFromFileA
184D3DXLoadPRTBufferFromFileW
185D3DXLoadPRTCompBufferFromFileA
186D3DXLoadPRTCompBufferFromFileW
187D3DXLoadPatchMeshFromXof
188D3DXLoadSkinMeshFromXof
189D3DXLoadSurfaceFromFileA
190D3DXLoadSurfaceFromFileInMemory
191D3DXLoadSurfaceFromFileW
192D3DXLoadSurfaceFromMemory
193D3DXLoadSurfaceFromResourceA
194D3DXLoadSurfaceFromResourceW
195D3DXLoadSurfaceFromSurface
196D3DXLoadVolumeFromFileA
197D3DXLoadVolumeFromFileInMemory
198D3DXLoadVolumeFromFileW
199D3DXLoadVolumeFromMemory
200D3DXLoadVolumeFromResourceA
201D3DXLoadVolumeFromResourceW
202D3DXLoadVolumeFromVolume
203D3DXMatrixAffineTransformation
204D3DXMatrixAffineTransformation2D
205D3DXMatrixDecompose
206D3DXMatrixDeterminant
207D3DXMatrixInverse
208D3DXMatrixLookAtLH
209D3DXMatrixLookAtRH
210D3DXMatrixMultiply
211D3DXMatrixMultiplyTranspose
212D3DXMatrixOrthoLH
213D3DXMatrixOrthoOffCenterLH
214D3DXMatrixOrthoOffCenterRH
215D3DXMatrixOrthoRH
216D3DXMatrixPerspectiveFovLH
217D3DXMatrixPerspectiveFovRH
218D3DXMatrixPerspectiveLH
219D3DXMatrixPerspectiveOffCenterLH
220D3DXMatrixPerspectiveOffCenterRH
221D3DXMatrixPerspectiveRH
222D3DXMatrixReflect
223D3DXMatrixRotationAxis
224D3DXMatrixRotationQuaternion
225D3DXMatrixRotationX
226D3DXMatrixRotationY
227D3DXMatrixRotationYawPitchRoll
228D3DXMatrixRotationZ
229D3DXMatrixScaling
230D3DXMatrixShadow
231D3DXMatrixTransformation
232D3DXMatrixTransformation2D
233D3DXMatrixTranslation
234D3DXMatrixTranspose
235D3DXOptimizeFaces
236D3DXOptimizeVertices
237D3DXPlaneFromPointNormal
238D3DXPlaneFromPoints
239D3DXPlaneIntersectLine
240D3DXPlaneNormalize
241D3DXPlaneTransform
242D3DXPlaneTransformArray
243D3DXQuaternionBaryCentric
244D3DXQuaternionExp
245D3DXQuaternionInverse
246D3DXQuaternionLn
247D3DXQuaternionMultiply
248D3DXQuaternionNormalize
249D3DXQuaternionRotationAxis
250D3DXQuaternionRotationMatrix
251D3DXQuaternionRotationYawPitchRoll
252D3DXQuaternionSlerp
253D3DXQuaternionSquad
254D3DXQuaternionSquadSetup
255D3DXQuaternionToAxisAngle
256D3DXRectPatchSize
257D3DXSHAdd
258D3DXSHDot
259D3DXSHEvalConeLight
260D3DXSHEvalDirection
261D3DXSHEvalDirectionalLight
262D3DXSHEvalHemisphereLight
263D3DXSHEvalSphericalLight
264D3DXSHPRTCompSplitMeshSC
265D3DXSHPRTCompSuperCluster
266D3DXSHProjectCubeMap
267D3DXSHRotate
268D3DXSHRotateZ
269D3DXSHScale
270D3DXSaveMeshHierarchyToFileA
271D3DXSaveMeshHierarchyToFileW
272D3DXSaveMeshToXA
273D3DXSaveMeshToXW
274D3DXSavePRTBufferToFileA
275D3DXSavePRTBufferToFileW
276D3DXSavePRTCompBufferToFileA
277D3DXSavePRTCompBufferToFileW
278D3DXSaveSurfaceToFileA
279D3DXSaveSurfaceToFileInMemory
280D3DXSaveSurfaceToFileW
281D3DXSaveTextureToFileA
282D3DXSaveTextureToFileInMemory
283D3DXSaveTextureToFileW
284D3DXSaveVolumeToFileA
285D3DXSaveVolumeToFileInMemory
286D3DXSaveVolumeToFileW
287D3DXSimplifyMesh
288D3DXSphereBoundProbe
289D3DXSplitMesh
290D3DXTessellateNPatches
291D3DXTessellateRectPatch
292D3DXTessellateTriPatch
293D3DXTriPatchSize
294D3DXUVAtlasCreate
295D3DXUVAtlasPack
296D3DXUVAtlasPartition
297D3DXValidMesh
298D3DXValidPatchMesh
299D3DXVec2BaryCentric
300D3DXVec2CatmullRom
301D3DXVec2Hermite
302D3DXVec2Normalize
303D3DXVec2Transform
304D3DXVec2TransformArray
305D3DXVec2TransformCoord
306D3DXVec2TransformCoordArray
307D3DXVec2TransformNormal
308D3DXVec2TransformNormalArray
309D3DXVec3BaryCentric
310D3DXVec3CatmullRom
311D3DXVec3Hermite
312D3DXVec3Normalize
313D3DXVec3Project
314D3DXVec3ProjectArray
315D3DXVec3Transform
316D3DXVec3TransformArray
317D3DXVec3TransformCoord
318D3DXVec3TransformCoordArray
319D3DXVec3TransformNormal
320D3DXVec3TransformNormalArray
321D3DXVec3Unproject
322D3DXVec3UnprojectArray
323D3DXVec4BaryCentric
324D3DXVec4CatmullRom
325D3DXVec4Cross
326D3DXVec4Hermite
327D3DXVec4Normalize
328D3DXVec4Transform
329D3DXVec4TransformArray
330D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_26.def created+334
......@@ -0,0 +1,334 @@
1;
2; Definition file of d3dx9_26.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_26.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCpuOptimizations
41D3DXCreateAnimationController
42D3DXCreateBox
43D3DXCreateBuffer
44D3DXCreateCompressedAnimationSet
45D3DXCreateCubeTexture
46D3DXCreateCubeTextureFromFileA
47D3DXCreateCubeTextureFromFileExA
48D3DXCreateCubeTextureFromFileExW
49D3DXCreateCubeTextureFromFileInMemory
50D3DXCreateCubeTextureFromFileInMemoryEx
51D3DXCreateCubeTextureFromFileW
52D3DXCreateCubeTextureFromResourceA
53D3DXCreateCubeTextureFromResourceExA
54D3DXCreateCubeTextureFromResourceExW
55D3DXCreateCubeTextureFromResourceW
56D3DXCreateCylinder
57D3DXCreateEffect
58D3DXCreateEffectCompiler
59D3DXCreateEffectCompilerFromFileA
60D3DXCreateEffectCompilerFromFileW
61D3DXCreateEffectCompilerFromResourceA
62D3DXCreateEffectCompilerFromResourceW
63D3DXCreateEffectEx
64D3DXCreateEffectFromFileA
65D3DXCreateEffectFromFileExA
66D3DXCreateEffectFromFileExW
67D3DXCreateEffectFromFileW
68D3DXCreateEffectFromResourceA
69D3DXCreateEffectFromResourceExA
70D3DXCreateEffectFromResourceExW
71D3DXCreateEffectFromResourceW
72D3DXCreateEffectPool
73D3DXCreateFontA
74D3DXCreateFontIndirectA
75D3DXCreateFontIndirectW
76D3DXCreateFontW
77D3DXCreateFragmentLinker
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderInputSemantics
169D3DXGetShaderOutputSemantics
170D3DXGetShaderSamplers
171D3DXGetShaderSize
172D3DXGetShaderVersion
173D3DXGetTargetDescByName
174D3DXGetTargetDescByVersion
175D3DXGetVertexShaderProfile
176D3DXIntersect
177D3DXIntersectSubset
178D3DXIntersectTri
179D3DXLoadMeshFromXA
180D3DXLoadMeshFromXInMemory
181D3DXLoadMeshFromXResource
182D3DXLoadMeshFromXW
183D3DXLoadMeshFromXof
184D3DXLoadMeshHierarchyFromXA
185D3DXLoadMeshHierarchyFromXInMemory
186D3DXLoadMeshHierarchyFromXW
187D3DXLoadPRTBufferFromFileA
188D3DXLoadPRTBufferFromFileW
189D3DXLoadPRTCompBufferFromFileA
190D3DXLoadPRTCompBufferFromFileW
191D3DXLoadPatchMeshFromXof
192D3DXLoadSkinMeshFromXof
193D3DXLoadSurfaceFromFileA
194D3DXLoadSurfaceFromFileInMemory
195D3DXLoadSurfaceFromFileW
196D3DXLoadSurfaceFromMemory
197D3DXLoadSurfaceFromResourceA
198D3DXLoadSurfaceFromResourceW
199D3DXLoadSurfaceFromSurface
200D3DXLoadVolumeFromFileA
201D3DXLoadVolumeFromFileInMemory
202D3DXLoadVolumeFromFileW
203D3DXLoadVolumeFromMemory
204D3DXLoadVolumeFromResourceA
205D3DXLoadVolumeFromResourceW
206D3DXLoadVolumeFromVolume
207D3DXMatrixAffineTransformation
208D3DXMatrixAffineTransformation2D
209D3DXMatrixDecompose
210D3DXMatrixDeterminant
211D3DXMatrixInverse
212D3DXMatrixLookAtLH
213D3DXMatrixLookAtRH
214D3DXMatrixMultiply
215D3DXMatrixMultiplyTranspose
216D3DXMatrixOrthoLH
217D3DXMatrixOrthoOffCenterLH
218D3DXMatrixOrthoOffCenterRH
219D3DXMatrixOrthoRH
220D3DXMatrixPerspectiveFovLH
221D3DXMatrixPerspectiveFovRH
222D3DXMatrixPerspectiveLH
223D3DXMatrixPerspectiveOffCenterLH
224D3DXMatrixPerspectiveOffCenterRH
225D3DXMatrixPerspectiveRH
226D3DXMatrixReflect
227D3DXMatrixRotationAxis
228D3DXMatrixRotationQuaternion
229D3DXMatrixRotationX
230D3DXMatrixRotationY
231D3DXMatrixRotationYawPitchRoll
232D3DXMatrixRotationZ
233D3DXMatrixScaling
234D3DXMatrixShadow
235D3DXMatrixTransformation
236D3DXMatrixTransformation2D
237D3DXMatrixTranslation
238D3DXMatrixTranspose
239D3DXOptimizeFaces
240D3DXOptimizeVertices
241D3DXPlaneFromPointNormal
242D3DXPlaneFromPoints
243D3DXPlaneIntersectLine
244D3DXPlaneNormalize
245D3DXPlaneTransform
246D3DXPlaneTransformArray
247D3DXQuaternionBaryCentric
248D3DXQuaternionExp
249D3DXQuaternionInverse
250D3DXQuaternionLn
251D3DXQuaternionMultiply
252D3DXQuaternionNormalize
253D3DXQuaternionRotationAxis
254D3DXQuaternionRotationMatrix
255D3DXQuaternionRotationYawPitchRoll
256D3DXQuaternionSlerp
257D3DXQuaternionSquad
258D3DXQuaternionSquadSetup
259D3DXQuaternionToAxisAngle
260D3DXRectPatchSize
261D3DXSHAdd
262D3DXSHDot
263D3DXSHEvalConeLight
264D3DXSHEvalDirection
265D3DXSHEvalDirectionalLight
266D3DXSHEvalHemisphereLight
267D3DXSHEvalSphericalLight
268D3DXSHPRTCompSplitMeshSC
269D3DXSHPRTCompSuperCluster
270D3DXSHProjectCubeMap
271D3DXSHRotate
272D3DXSHRotateZ
273D3DXSHScale
274D3DXSaveMeshHierarchyToFileA
275D3DXSaveMeshHierarchyToFileW
276D3DXSaveMeshToXA
277D3DXSaveMeshToXW
278D3DXSavePRTBufferToFileA
279D3DXSavePRTBufferToFileW
280D3DXSavePRTCompBufferToFileA
281D3DXSavePRTCompBufferToFileW
282D3DXSaveSurfaceToFileA
283D3DXSaveSurfaceToFileInMemory
284D3DXSaveSurfaceToFileW
285D3DXSaveTextureToFileA
286D3DXSaveTextureToFileInMemory
287D3DXSaveTextureToFileW
288D3DXSaveVolumeToFileA
289D3DXSaveVolumeToFileInMemory
290D3DXSaveVolumeToFileW
291D3DXSimplifyMesh
292D3DXSphereBoundProbe
293D3DXSplitMesh
294D3DXTessellateNPatches
295D3DXTessellateRectPatch
296D3DXTessellateTriPatch
297D3DXTriPatchSize
298D3DXUVAtlasCreate
299D3DXUVAtlasPack
300D3DXUVAtlasPartition
301D3DXValidMesh
302D3DXValidPatchMesh
303D3DXVec2BaryCentric
304D3DXVec2CatmullRom
305D3DXVec2Hermite
306D3DXVec2Normalize
307D3DXVec2Transform
308D3DXVec2TransformArray
309D3DXVec2TransformCoord
310D3DXVec2TransformCoordArray
311D3DXVec2TransformNormal
312D3DXVec2TransformNormalArray
313D3DXVec3BaryCentric
314D3DXVec3CatmullRom
315D3DXVec3Hermite
316D3DXVec3Normalize
317D3DXVec3Project
318D3DXVec3ProjectArray
319D3DXVec3Transform
320D3DXVec3TransformArray
321D3DXVec3TransformCoord
322D3DXVec3TransformCoordArray
323D3DXVec3TransformNormal
324D3DXVec3TransformNormalArray
325D3DXVec3Unproject
326D3DXVec3UnprojectArray
327D3DXVec4BaryCentric
328D3DXVec4CatmullRom
329D3DXVec4Cross
330D3DXVec4Hermite
331D3DXVec4Normalize
332D3DXVec4Transform
333D3DXVec4TransformArray
334D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_27.def created+334
......@@ -0,0 +1,334 @@
1;
2; Definition file of d3dx9_27.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_27.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCpuOptimizations
41D3DXCreateAnimationController
42D3DXCreateBox
43D3DXCreateBuffer
44D3DXCreateCompressedAnimationSet
45D3DXCreateCubeTexture
46D3DXCreateCubeTextureFromFileA
47D3DXCreateCubeTextureFromFileExA
48D3DXCreateCubeTextureFromFileExW
49D3DXCreateCubeTextureFromFileInMemory
50D3DXCreateCubeTextureFromFileInMemoryEx
51D3DXCreateCubeTextureFromFileW
52D3DXCreateCubeTextureFromResourceA
53D3DXCreateCubeTextureFromResourceExA
54D3DXCreateCubeTextureFromResourceExW
55D3DXCreateCubeTextureFromResourceW
56D3DXCreateCylinder
57D3DXCreateEffect
58D3DXCreateEffectCompiler
59D3DXCreateEffectCompilerFromFileA
60D3DXCreateEffectCompilerFromFileW
61D3DXCreateEffectCompilerFromResourceA
62D3DXCreateEffectCompilerFromResourceW
63D3DXCreateEffectEx
64D3DXCreateEffectFromFileA
65D3DXCreateEffectFromFileExA
66D3DXCreateEffectFromFileExW
67D3DXCreateEffectFromFileW
68D3DXCreateEffectFromResourceA
69D3DXCreateEffectFromResourceExA
70D3DXCreateEffectFromResourceExW
71D3DXCreateEffectFromResourceW
72D3DXCreateEffectPool
73D3DXCreateFontA
74D3DXCreateFontIndirectA
75D3DXCreateFontIndirectW
76D3DXCreateFontW
77D3DXCreateFragmentLinker
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderInputSemantics
169D3DXGetShaderOutputSemantics
170D3DXGetShaderSamplers
171D3DXGetShaderSize
172D3DXGetShaderVersion
173D3DXGetTargetDescByName
174D3DXGetTargetDescByVersion
175D3DXGetVertexShaderProfile
176D3DXIntersect
177D3DXIntersectSubset
178D3DXIntersectTri
179D3DXLoadMeshFromXA
180D3DXLoadMeshFromXInMemory
181D3DXLoadMeshFromXResource
182D3DXLoadMeshFromXW
183D3DXLoadMeshFromXof
184D3DXLoadMeshHierarchyFromXA
185D3DXLoadMeshHierarchyFromXInMemory
186D3DXLoadMeshHierarchyFromXW
187D3DXLoadPRTBufferFromFileA
188D3DXLoadPRTBufferFromFileW
189D3DXLoadPRTCompBufferFromFileA
190D3DXLoadPRTCompBufferFromFileW
191D3DXLoadPatchMeshFromXof
192D3DXLoadSkinMeshFromXof
193D3DXLoadSurfaceFromFileA
194D3DXLoadSurfaceFromFileInMemory
195D3DXLoadSurfaceFromFileW
196D3DXLoadSurfaceFromMemory
197D3DXLoadSurfaceFromResourceA
198D3DXLoadSurfaceFromResourceW
199D3DXLoadSurfaceFromSurface
200D3DXLoadVolumeFromFileA
201D3DXLoadVolumeFromFileInMemory
202D3DXLoadVolumeFromFileW
203D3DXLoadVolumeFromMemory
204D3DXLoadVolumeFromResourceA
205D3DXLoadVolumeFromResourceW
206D3DXLoadVolumeFromVolume
207D3DXMatrixAffineTransformation
208D3DXMatrixAffineTransformation2D
209D3DXMatrixDecompose
210D3DXMatrixDeterminant
211D3DXMatrixInverse
212D3DXMatrixLookAtLH
213D3DXMatrixLookAtRH
214D3DXMatrixMultiply
215D3DXMatrixMultiplyTranspose
216D3DXMatrixOrthoLH
217D3DXMatrixOrthoOffCenterLH
218D3DXMatrixOrthoOffCenterRH
219D3DXMatrixOrthoRH
220D3DXMatrixPerspectiveFovLH
221D3DXMatrixPerspectiveFovRH
222D3DXMatrixPerspectiveLH
223D3DXMatrixPerspectiveOffCenterLH
224D3DXMatrixPerspectiveOffCenterRH
225D3DXMatrixPerspectiveRH
226D3DXMatrixReflect
227D3DXMatrixRotationAxis
228D3DXMatrixRotationQuaternion
229D3DXMatrixRotationX
230D3DXMatrixRotationY
231D3DXMatrixRotationYawPitchRoll
232D3DXMatrixRotationZ
233D3DXMatrixScaling
234D3DXMatrixShadow
235D3DXMatrixTransformation
236D3DXMatrixTransformation2D
237D3DXMatrixTranslation
238D3DXMatrixTranspose
239D3DXOptimizeFaces
240D3DXOptimizeVertices
241D3DXPlaneFromPointNormal
242D3DXPlaneFromPoints
243D3DXPlaneIntersectLine
244D3DXPlaneNormalize
245D3DXPlaneTransform
246D3DXPlaneTransformArray
247D3DXQuaternionBaryCentric
248D3DXQuaternionExp
249D3DXQuaternionInverse
250D3DXQuaternionLn
251D3DXQuaternionMultiply
252D3DXQuaternionNormalize
253D3DXQuaternionRotationAxis
254D3DXQuaternionRotationMatrix
255D3DXQuaternionRotationYawPitchRoll
256D3DXQuaternionSlerp
257D3DXQuaternionSquad
258D3DXQuaternionSquadSetup
259D3DXQuaternionToAxisAngle
260D3DXRectPatchSize
261D3DXSHAdd
262D3DXSHDot
263D3DXSHEvalConeLight
264D3DXSHEvalDirection
265D3DXSHEvalDirectionalLight
266D3DXSHEvalHemisphereLight
267D3DXSHEvalSphericalLight
268D3DXSHPRTCompSplitMeshSC
269D3DXSHPRTCompSuperCluster
270D3DXSHProjectCubeMap
271D3DXSHRotate
272D3DXSHRotateZ
273D3DXSHScale
274D3DXSaveMeshHierarchyToFileA
275D3DXSaveMeshHierarchyToFileW
276D3DXSaveMeshToXA
277D3DXSaveMeshToXW
278D3DXSavePRTBufferToFileA
279D3DXSavePRTBufferToFileW
280D3DXSavePRTCompBufferToFileA
281D3DXSavePRTCompBufferToFileW
282D3DXSaveSurfaceToFileA
283D3DXSaveSurfaceToFileInMemory
284D3DXSaveSurfaceToFileW
285D3DXSaveTextureToFileA
286D3DXSaveTextureToFileInMemory
287D3DXSaveTextureToFileW
288D3DXSaveVolumeToFileA
289D3DXSaveVolumeToFileInMemory
290D3DXSaveVolumeToFileW
291D3DXSimplifyMesh
292D3DXSphereBoundProbe
293D3DXSplitMesh
294D3DXTessellateNPatches
295D3DXTessellateRectPatch
296D3DXTessellateTriPatch
297D3DXTriPatchSize
298D3DXUVAtlasCreate
299D3DXUVAtlasPack
300D3DXUVAtlasPartition
301D3DXValidMesh
302D3DXValidPatchMesh
303D3DXVec2BaryCentric
304D3DXVec2CatmullRom
305D3DXVec2Hermite
306D3DXVec2Normalize
307D3DXVec2Transform
308D3DXVec2TransformArray
309D3DXVec2TransformCoord
310D3DXVec2TransformCoordArray
311D3DXVec2TransformNormal
312D3DXVec2TransformNormalArray
313D3DXVec3BaryCentric
314D3DXVec3CatmullRom
315D3DXVec3Hermite
316D3DXVec3Normalize
317D3DXVec3Project
318D3DXVec3ProjectArray
319D3DXVec3Transform
320D3DXVec3TransformArray
321D3DXVec3TransformCoord
322D3DXVec3TransformCoordArray
323D3DXVec3TransformNormal
324D3DXVec3TransformNormalArray
325D3DXVec3Unproject
326D3DXVec3UnprojectArray
327D3DXVec4BaryCentric
328D3DXVec4CatmullRom
329D3DXVec4Cross
330D3DXVec4Hermite
331D3DXVec4Normalize
332D3DXVec4Transform
333D3DXVec4TransformArray
334D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_28.def created+339
......@@ -0,0 +1,339 @@
1;
2; Definition file of d3dx9_28.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_28.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCpuOptimizations
41D3DXCreateAnimationController
42D3DXCreateBox
43D3DXCreateBuffer
44D3DXCreateCompressedAnimationSet
45D3DXCreateCubeTexture
46D3DXCreateCubeTextureFromFileA
47D3DXCreateCubeTextureFromFileExA
48D3DXCreateCubeTextureFromFileExW
49D3DXCreateCubeTextureFromFileInMemory
50D3DXCreateCubeTextureFromFileInMemoryEx
51D3DXCreateCubeTextureFromFileW
52D3DXCreateCubeTextureFromResourceA
53D3DXCreateCubeTextureFromResourceExA
54D3DXCreateCubeTextureFromResourceExW
55D3DXCreateCubeTextureFromResourceW
56D3DXCreateCylinder
57D3DXCreateEffect
58D3DXCreateEffectCompiler
59D3DXCreateEffectCompilerFromFileA
60D3DXCreateEffectCompilerFromFileW
61D3DXCreateEffectCompilerFromResourceA
62D3DXCreateEffectCompilerFromResourceW
63D3DXCreateEffectEx
64D3DXCreateEffectFromFileA
65D3DXCreateEffectFromFileExA
66D3DXCreateEffectFromFileExW
67D3DXCreateEffectFromFileW
68D3DXCreateEffectFromResourceA
69D3DXCreateEffectFromResourceExA
70D3DXCreateEffectFromResourceExW
71D3DXCreateEffectFromResourceW
72D3DXCreateEffectPool
73D3DXCreateFontA
74D3DXCreateFontIndirectA
75D3DXCreateFontIndirectW
76D3DXCreateFontW
77D3DXCreateFragmentLinker
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderInputSemantics
169D3DXGetShaderOutputSemantics
170D3DXGetShaderSamplers
171D3DXGetShaderSize
172D3DXGetShaderVersion
173D3DXGetTargetDescByName
174D3DXGetTargetDescByVersion
175D3DXGetVertexShaderProfile
176D3DXIntersect
177D3DXIntersectSubset
178D3DXIntersectTri
179D3DXLoadMeshFromXA
180D3DXLoadMeshFromXInMemory
181D3DXLoadMeshFromXResource
182D3DXLoadMeshFromXW
183D3DXLoadMeshFromXof
184D3DXLoadMeshHierarchyFromXA
185D3DXLoadMeshHierarchyFromXInMemory
186D3DXLoadMeshHierarchyFromXW
187D3DXLoadPRTBufferFromFileA
188D3DXLoadPRTBufferFromFileW
189D3DXLoadPRTCompBufferFromFileA
190D3DXLoadPRTCompBufferFromFileW
191D3DXLoadPatchMeshFromXof
192D3DXLoadSkinMeshFromXof
193D3DXLoadSurfaceFromFileA
194D3DXLoadSurfaceFromFileInMemory
195D3DXLoadSurfaceFromFileW
196D3DXLoadSurfaceFromMemory
197D3DXLoadSurfaceFromResourceA
198D3DXLoadSurfaceFromResourceW
199D3DXLoadSurfaceFromSurface
200D3DXLoadVolumeFromFileA
201D3DXLoadVolumeFromFileInMemory
202D3DXLoadVolumeFromFileW
203D3DXLoadVolumeFromMemory
204D3DXLoadVolumeFromResourceA
205D3DXLoadVolumeFromResourceW
206D3DXLoadVolumeFromVolume
207D3DXMatrixAffineTransformation
208D3DXMatrixAffineTransformation2D
209D3DXMatrixDecompose
210D3DXMatrixDeterminant
211D3DXMatrixInverse
212D3DXMatrixLookAtLH
213D3DXMatrixLookAtRH
214D3DXMatrixMultiply
215D3DXMatrixMultiplyTranspose
216D3DXMatrixOrthoLH
217D3DXMatrixOrthoOffCenterLH
218D3DXMatrixOrthoOffCenterRH
219D3DXMatrixOrthoRH
220D3DXMatrixPerspectiveFovLH
221D3DXMatrixPerspectiveFovRH
222D3DXMatrixPerspectiveLH
223D3DXMatrixPerspectiveOffCenterLH
224D3DXMatrixPerspectiveOffCenterRH
225D3DXMatrixPerspectiveRH
226D3DXMatrixReflect
227D3DXMatrixRotationAxis
228D3DXMatrixRotationQuaternion
229D3DXMatrixRotationX
230D3DXMatrixRotationY
231D3DXMatrixRotationYawPitchRoll
232D3DXMatrixRotationZ
233D3DXMatrixScaling
234D3DXMatrixShadow
235D3DXMatrixTransformation
236D3DXMatrixTransformation2D
237D3DXMatrixTranslation
238D3DXMatrixTranspose
239D3DXOptimizeFaces
240D3DXOptimizeVertices
241D3DXPlaneFromPointNormal
242D3DXPlaneFromPoints
243D3DXPlaneIntersectLine
244D3DXPlaneNormalize
245D3DXPlaneTransform
246D3DXPlaneTransformArray
247D3DXPreprocessShader
248D3DXPreprocessShaderFromFileA
249D3DXPreprocessShaderFromFileW
250D3DXPreprocessShaderFromResourceA
251D3DXPreprocessShaderFromResourceW
252D3DXQuaternionBaryCentric
253D3DXQuaternionExp
254D3DXQuaternionInverse
255D3DXQuaternionLn
256D3DXQuaternionMultiply
257D3DXQuaternionNormalize
258D3DXQuaternionRotationAxis
259D3DXQuaternionRotationMatrix
260D3DXQuaternionRotationYawPitchRoll
261D3DXQuaternionSlerp
262D3DXQuaternionSquad
263D3DXQuaternionSquadSetup
264D3DXQuaternionToAxisAngle
265D3DXRectPatchSize
266D3DXSHAdd
267D3DXSHDot
268D3DXSHEvalConeLight
269D3DXSHEvalDirection
270D3DXSHEvalDirectionalLight
271D3DXSHEvalHemisphereLight
272D3DXSHEvalSphericalLight
273D3DXSHPRTCompSplitMeshSC
274D3DXSHPRTCompSuperCluster
275D3DXSHProjectCubeMap
276D3DXSHRotate
277D3DXSHRotateZ
278D3DXSHScale
279D3DXSaveMeshHierarchyToFileA
280D3DXSaveMeshHierarchyToFileW
281D3DXSaveMeshToXA
282D3DXSaveMeshToXW
283D3DXSavePRTBufferToFileA
284D3DXSavePRTBufferToFileW
285D3DXSavePRTCompBufferToFileA
286D3DXSavePRTCompBufferToFileW
287D3DXSaveSurfaceToFileA
288D3DXSaveSurfaceToFileInMemory
289D3DXSaveSurfaceToFileW
290D3DXSaveTextureToFileA
291D3DXSaveTextureToFileInMemory
292D3DXSaveTextureToFileW
293D3DXSaveVolumeToFileA
294D3DXSaveVolumeToFileInMemory
295D3DXSaveVolumeToFileW
296D3DXSimplifyMesh
297D3DXSphereBoundProbe
298D3DXSplitMesh
299D3DXTessellateNPatches
300D3DXTessellateRectPatch
301D3DXTessellateTriPatch
302D3DXTriPatchSize
303D3DXUVAtlasCreate
304D3DXUVAtlasPack
305D3DXUVAtlasPartition
306D3DXValidMesh
307D3DXValidPatchMesh
308D3DXVec2BaryCentric
309D3DXVec2CatmullRom
310D3DXVec2Hermite
311D3DXVec2Normalize
312D3DXVec2Transform
313D3DXVec2TransformArray
314D3DXVec2TransformCoord
315D3DXVec2TransformCoordArray
316D3DXVec2TransformNormal
317D3DXVec2TransformNormalArray
318D3DXVec3BaryCentric
319D3DXVec3CatmullRom
320D3DXVec3Hermite
321D3DXVec3Normalize
322D3DXVec3Project
323D3DXVec3ProjectArray
324D3DXVec3Transform
325D3DXVec3TransformArray
326D3DXVec3TransformCoord
327D3DXVec3TransformCoordArray
328D3DXVec3TransformNormal
329D3DXVec3TransformNormalArray
330D3DXVec3Unproject
331D3DXVec3UnprojectArray
332D3DXVec4BaryCentric
333D3DXVec4CatmullRom
334D3DXVec4Cross
335D3DXVec4Hermite
336D3DXVec4Normalize
337D3DXVec4Transform
338D3DXVec4TransformArray
339D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_29.def created+339
......@@ -0,0 +1,339 @@
1;
2; Definition file of d3dx9_29.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_29.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCpuOptimizations
41D3DXCreateAnimationController
42D3DXCreateBox
43D3DXCreateBuffer
44D3DXCreateCompressedAnimationSet
45D3DXCreateCubeTexture
46D3DXCreateCubeTextureFromFileA
47D3DXCreateCubeTextureFromFileExA
48D3DXCreateCubeTextureFromFileExW
49D3DXCreateCubeTextureFromFileInMemory
50D3DXCreateCubeTextureFromFileInMemoryEx
51D3DXCreateCubeTextureFromFileW
52D3DXCreateCubeTextureFromResourceA
53D3DXCreateCubeTextureFromResourceExA
54D3DXCreateCubeTextureFromResourceExW
55D3DXCreateCubeTextureFromResourceW
56D3DXCreateCylinder
57D3DXCreateEffect
58D3DXCreateEffectCompiler
59D3DXCreateEffectCompilerFromFileA
60D3DXCreateEffectCompilerFromFileW
61D3DXCreateEffectCompilerFromResourceA
62D3DXCreateEffectCompilerFromResourceW
63D3DXCreateEffectEx
64D3DXCreateEffectFromFileA
65D3DXCreateEffectFromFileExA
66D3DXCreateEffectFromFileExW
67D3DXCreateEffectFromFileW
68D3DXCreateEffectFromResourceA
69D3DXCreateEffectFromResourceExA
70D3DXCreateEffectFromResourceExW
71D3DXCreateEffectFromResourceW
72D3DXCreateEffectPool
73D3DXCreateFontA
74D3DXCreateFontIndirectA
75D3DXCreateFontIndirectW
76D3DXCreateFontW
77D3DXCreateFragmentLinker
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderInputSemantics
169D3DXGetShaderOutputSemantics
170D3DXGetShaderSamplers
171D3DXGetShaderSize
172D3DXGetShaderVersion
173D3DXGetTargetDescByName
174D3DXGetTargetDescByVersion
175D3DXGetVertexShaderProfile
176D3DXIntersect
177D3DXIntersectSubset
178D3DXIntersectTri
179D3DXLoadMeshFromXA
180D3DXLoadMeshFromXInMemory
181D3DXLoadMeshFromXResource
182D3DXLoadMeshFromXW
183D3DXLoadMeshFromXof
184D3DXLoadMeshHierarchyFromXA
185D3DXLoadMeshHierarchyFromXInMemory
186D3DXLoadMeshHierarchyFromXW
187D3DXLoadPRTBufferFromFileA
188D3DXLoadPRTBufferFromFileW
189D3DXLoadPRTCompBufferFromFileA
190D3DXLoadPRTCompBufferFromFileW
191D3DXLoadPatchMeshFromXof
192D3DXLoadSkinMeshFromXof
193D3DXLoadSurfaceFromFileA
194D3DXLoadSurfaceFromFileInMemory
195D3DXLoadSurfaceFromFileW
196D3DXLoadSurfaceFromMemory
197D3DXLoadSurfaceFromResourceA
198D3DXLoadSurfaceFromResourceW
199D3DXLoadSurfaceFromSurface
200D3DXLoadVolumeFromFileA
201D3DXLoadVolumeFromFileInMemory
202D3DXLoadVolumeFromFileW
203D3DXLoadVolumeFromMemory
204D3DXLoadVolumeFromResourceA
205D3DXLoadVolumeFromResourceW
206D3DXLoadVolumeFromVolume
207D3DXMatrixAffineTransformation
208D3DXMatrixAffineTransformation2D
209D3DXMatrixDecompose
210D3DXMatrixDeterminant
211D3DXMatrixInverse
212D3DXMatrixLookAtLH
213D3DXMatrixLookAtRH
214D3DXMatrixMultiply
215D3DXMatrixMultiplyTranspose
216D3DXMatrixOrthoLH
217D3DXMatrixOrthoOffCenterLH
218D3DXMatrixOrthoOffCenterRH
219D3DXMatrixOrthoRH
220D3DXMatrixPerspectiveFovLH
221D3DXMatrixPerspectiveFovRH
222D3DXMatrixPerspectiveLH
223D3DXMatrixPerspectiveOffCenterLH
224D3DXMatrixPerspectiveOffCenterRH
225D3DXMatrixPerspectiveRH
226D3DXMatrixReflect
227D3DXMatrixRotationAxis
228D3DXMatrixRotationQuaternion
229D3DXMatrixRotationX
230D3DXMatrixRotationY
231D3DXMatrixRotationYawPitchRoll
232D3DXMatrixRotationZ
233D3DXMatrixScaling
234D3DXMatrixShadow
235D3DXMatrixTransformation
236D3DXMatrixTransformation2D
237D3DXMatrixTranslation
238D3DXMatrixTranspose
239D3DXOptimizeFaces
240D3DXOptimizeVertices
241D3DXPlaneFromPointNormal
242D3DXPlaneFromPoints
243D3DXPlaneIntersectLine
244D3DXPlaneNormalize
245D3DXPlaneTransform
246D3DXPlaneTransformArray
247D3DXPreprocessShader
248D3DXPreprocessShaderFromFileA
249D3DXPreprocessShaderFromFileW
250D3DXPreprocessShaderFromResourceA
251D3DXPreprocessShaderFromResourceW
252D3DXQuaternionBaryCentric
253D3DXQuaternionExp
254D3DXQuaternionInverse
255D3DXQuaternionLn
256D3DXQuaternionMultiply
257D3DXQuaternionNormalize
258D3DXQuaternionRotationAxis
259D3DXQuaternionRotationMatrix
260D3DXQuaternionRotationYawPitchRoll
261D3DXQuaternionSlerp
262D3DXQuaternionSquad
263D3DXQuaternionSquadSetup
264D3DXQuaternionToAxisAngle
265D3DXRectPatchSize
266D3DXSHAdd
267D3DXSHDot
268D3DXSHEvalConeLight
269D3DXSHEvalDirection
270D3DXSHEvalDirectionalLight
271D3DXSHEvalHemisphereLight
272D3DXSHEvalSphericalLight
273D3DXSHPRTCompSplitMeshSC
274D3DXSHPRTCompSuperCluster
275D3DXSHProjectCubeMap
276D3DXSHRotate
277D3DXSHRotateZ
278D3DXSHScale
279D3DXSaveMeshHierarchyToFileA
280D3DXSaveMeshHierarchyToFileW
281D3DXSaveMeshToXA
282D3DXSaveMeshToXW
283D3DXSavePRTBufferToFileA
284D3DXSavePRTBufferToFileW
285D3DXSavePRTCompBufferToFileA
286D3DXSavePRTCompBufferToFileW
287D3DXSaveSurfaceToFileA
288D3DXSaveSurfaceToFileInMemory
289D3DXSaveSurfaceToFileW
290D3DXSaveTextureToFileA
291D3DXSaveTextureToFileInMemory
292D3DXSaveTextureToFileW
293D3DXSaveVolumeToFileA
294D3DXSaveVolumeToFileInMemory
295D3DXSaveVolumeToFileW
296D3DXSimplifyMesh
297D3DXSphereBoundProbe
298D3DXSplitMesh
299D3DXTessellateNPatches
300D3DXTessellateRectPatch
301D3DXTessellateTriPatch
302D3DXTriPatchSize
303D3DXUVAtlasCreate
304D3DXUVAtlasPack
305D3DXUVAtlasPartition
306D3DXValidMesh
307D3DXValidPatchMesh
308D3DXVec2BaryCentric
309D3DXVec2CatmullRom
310D3DXVec2Hermite
311D3DXVec2Normalize
312D3DXVec2Transform
313D3DXVec2TransformArray
314D3DXVec2TransformCoord
315D3DXVec2TransformCoordArray
316D3DXVec2TransformNormal
317D3DXVec2TransformNormalArray
318D3DXVec3BaryCentric
319D3DXVec3CatmullRom
320D3DXVec3Hermite
321D3DXVec3Normalize
322D3DXVec3Project
323D3DXVec3ProjectArray
324D3DXVec3Transform
325D3DXVec3TransformArray
326D3DXVec3TransformCoord
327D3DXVec3TransformCoordArray
328D3DXVec3TransformNormal
329D3DXVec3TransformNormalArray
330D3DXVec3Unproject
331D3DXVec3UnprojectArray
332D3DXVec4BaryCentric
333D3DXVec4CatmullRom
334D3DXVec4Cross
335D3DXVec4Hermite
336D3DXVec4Normalize
337D3DXVec4Transform
338D3DXVec4TransformArray
339D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_30.def created+339
......@@ -0,0 +1,339 @@
1;
2; Definition file of d3dx9_30.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_30.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCpuOptimizations
41D3DXCreateAnimationController
42D3DXCreateBox
43D3DXCreateBuffer
44D3DXCreateCompressedAnimationSet
45D3DXCreateCubeTexture
46D3DXCreateCubeTextureFromFileA
47D3DXCreateCubeTextureFromFileExA
48D3DXCreateCubeTextureFromFileExW
49D3DXCreateCubeTextureFromFileInMemory
50D3DXCreateCubeTextureFromFileInMemoryEx
51D3DXCreateCubeTextureFromFileW
52D3DXCreateCubeTextureFromResourceA
53D3DXCreateCubeTextureFromResourceExA
54D3DXCreateCubeTextureFromResourceExW
55D3DXCreateCubeTextureFromResourceW
56D3DXCreateCylinder
57D3DXCreateEffect
58D3DXCreateEffectCompiler
59D3DXCreateEffectCompilerFromFileA
60D3DXCreateEffectCompilerFromFileW
61D3DXCreateEffectCompilerFromResourceA
62D3DXCreateEffectCompilerFromResourceW
63D3DXCreateEffectEx
64D3DXCreateEffectFromFileA
65D3DXCreateEffectFromFileExA
66D3DXCreateEffectFromFileExW
67D3DXCreateEffectFromFileW
68D3DXCreateEffectFromResourceA
69D3DXCreateEffectFromResourceExA
70D3DXCreateEffectFromResourceExW
71D3DXCreateEffectFromResourceW
72D3DXCreateEffectPool
73D3DXCreateFontA
74D3DXCreateFontIndirectA
75D3DXCreateFontIndirectW
76D3DXCreateFontW
77D3DXCreateFragmentLinker
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderInputSemantics
169D3DXGetShaderOutputSemantics
170D3DXGetShaderSamplers
171D3DXGetShaderSize
172D3DXGetShaderVersion
173D3DXGetTargetDescByName
174D3DXGetTargetDescByVersion
175D3DXGetVertexShaderProfile
176D3DXIntersect
177D3DXIntersectSubset
178D3DXIntersectTri
179D3DXLoadMeshFromXA
180D3DXLoadMeshFromXInMemory
181D3DXLoadMeshFromXResource
182D3DXLoadMeshFromXW
183D3DXLoadMeshFromXof
184D3DXLoadMeshHierarchyFromXA
185D3DXLoadMeshHierarchyFromXInMemory
186D3DXLoadMeshHierarchyFromXW
187D3DXLoadPRTBufferFromFileA
188D3DXLoadPRTBufferFromFileW
189D3DXLoadPRTCompBufferFromFileA
190D3DXLoadPRTCompBufferFromFileW
191D3DXLoadPatchMeshFromXof
192D3DXLoadSkinMeshFromXof
193D3DXLoadSurfaceFromFileA
194D3DXLoadSurfaceFromFileInMemory
195D3DXLoadSurfaceFromFileW
196D3DXLoadSurfaceFromMemory
197D3DXLoadSurfaceFromResourceA
198D3DXLoadSurfaceFromResourceW
199D3DXLoadSurfaceFromSurface
200D3DXLoadVolumeFromFileA
201D3DXLoadVolumeFromFileInMemory
202D3DXLoadVolumeFromFileW
203D3DXLoadVolumeFromMemory
204D3DXLoadVolumeFromResourceA
205D3DXLoadVolumeFromResourceW
206D3DXLoadVolumeFromVolume
207D3DXMatrixAffineTransformation
208D3DXMatrixAffineTransformation2D
209D3DXMatrixDecompose
210D3DXMatrixDeterminant
211D3DXMatrixInverse
212D3DXMatrixLookAtLH
213D3DXMatrixLookAtRH
214D3DXMatrixMultiply
215D3DXMatrixMultiplyTranspose
216D3DXMatrixOrthoLH
217D3DXMatrixOrthoOffCenterLH
218D3DXMatrixOrthoOffCenterRH
219D3DXMatrixOrthoRH
220D3DXMatrixPerspectiveFovLH
221D3DXMatrixPerspectiveFovRH
222D3DXMatrixPerspectiveLH
223D3DXMatrixPerspectiveOffCenterLH
224D3DXMatrixPerspectiveOffCenterRH
225D3DXMatrixPerspectiveRH
226D3DXMatrixReflect
227D3DXMatrixRotationAxis
228D3DXMatrixRotationQuaternion
229D3DXMatrixRotationX
230D3DXMatrixRotationY
231D3DXMatrixRotationYawPitchRoll
232D3DXMatrixRotationZ
233D3DXMatrixScaling
234D3DXMatrixShadow
235D3DXMatrixTransformation
236D3DXMatrixTransformation2D
237D3DXMatrixTranslation
238D3DXMatrixTranspose
239D3DXOptimizeFaces
240D3DXOptimizeVertices
241D3DXPlaneFromPointNormal
242D3DXPlaneFromPoints
243D3DXPlaneIntersectLine
244D3DXPlaneNormalize
245D3DXPlaneTransform
246D3DXPlaneTransformArray
247D3DXPreprocessShader
248D3DXPreprocessShaderFromFileA
249D3DXPreprocessShaderFromFileW
250D3DXPreprocessShaderFromResourceA
251D3DXPreprocessShaderFromResourceW
252D3DXQuaternionBaryCentric
253D3DXQuaternionExp
254D3DXQuaternionInverse
255D3DXQuaternionLn
256D3DXQuaternionMultiply
257D3DXQuaternionNormalize
258D3DXQuaternionRotationAxis
259D3DXQuaternionRotationMatrix
260D3DXQuaternionRotationYawPitchRoll
261D3DXQuaternionSlerp
262D3DXQuaternionSquad
263D3DXQuaternionSquadSetup
264D3DXQuaternionToAxisAngle
265D3DXRectPatchSize
266D3DXSHAdd
267D3DXSHDot
268D3DXSHEvalConeLight
269D3DXSHEvalDirection
270D3DXSHEvalDirectionalLight
271D3DXSHEvalHemisphereLight
272D3DXSHEvalSphericalLight
273D3DXSHPRTCompSplitMeshSC
274D3DXSHPRTCompSuperCluster
275D3DXSHProjectCubeMap
276D3DXSHRotate
277D3DXSHRotateZ
278D3DXSHScale
279D3DXSaveMeshHierarchyToFileA
280D3DXSaveMeshHierarchyToFileW
281D3DXSaveMeshToXA
282D3DXSaveMeshToXW
283D3DXSavePRTBufferToFileA
284D3DXSavePRTBufferToFileW
285D3DXSavePRTCompBufferToFileA
286D3DXSavePRTCompBufferToFileW
287D3DXSaveSurfaceToFileA
288D3DXSaveSurfaceToFileInMemory
289D3DXSaveSurfaceToFileW
290D3DXSaveTextureToFileA
291D3DXSaveTextureToFileInMemory
292D3DXSaveTextureToFileW
293D3DXSaveVolumeToFileA
294D3DXSaveVolumeToFileInMemory
295D3DXSaveVolumeToFileW
296D3DXSimplifyMesh
297D3DXSphereBoundProbe
298D3DXSplitMesh
299D3DXTessellateNPatches
300D3DXTessellateRectPatch
301D3DXTessellateTriPatch
302D3DXTriPatchSize
303D3DXUVAtlasCreate
304D3DXUVAtlasPack
305D3DXUVAtlasPartition
306D3DXValidMesh
307D3DXValidPatchMesh
308D3DXVec2BaryCentric
309D3DXVec2CatmullRom
310D3DXVec2Hermite
311D3DXVec2Normalize
312D3DXVec2Transform
313D3DXVec2TransformArray
314D3DXVec2TransformCoord
315D3DXVec2TransformCoordArray
316D3DXVec2TransformNormal
317D3DXVec2TransformNormalArray
318D3DXVec3BaryCentric
319D3DXVec3CatmullRom
320D3DXVec3Hermite
321D3DXVec3Normalize
322D3DXVec3Project
323D3DXVec3ProjectArray
324D3DXVec3Transform
325D3DXVec3TransformArray
326D3DXVec3TransformCoord
327D3DXVec3TransformCoordArray
328D3DXVec3TransformNormal
329D3DXVec3TransformNormalArray
330D3DXVec3Unproject
331D3DXVec3UnprojectArray
332D3DXVec4BaryCentric
333D3DXVec4CatmullRom
334D3DXVec4Cross
335D3DXVec4Hermite
336D3DXVec4Normalize
337D3DXVec4Transform
338D3DXVec4TransformArray
339D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_31.def created+336
......@@ -0,0 +1,336 @@
1;
2; Definition file of d3dx9_31.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_31.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateKeyframedAnimationSet
78D3DXCreateLine
79D3DXCreateMatrixStack
80D3DXCreateMesh
81D3DXCreateMeshFVF
82D3DXCreateNPatchMesh
83D3DXCreatePMeshFromStream
84D3DXCreatePRTBuffer
85D3DXCreatePRTBufferTex
86D3DXCreatePRTCompBuffer
87D3DXCreatePRTEngine
88D3DXCreatePatchMesh
89D3DXCreatePolygon
90D3DXCreateRenderToEnvMap
91D3DXCreateRenderToSurface
92D3DXCreateSPMesh
93D3DXCreateSkinInfo
94D3DXCreateSkinInfoFVF
95D3DXCreateSkinInfoFromBlendedMesh
96D3DXCreateSphere
97D3DXCreateSprite
98D3DXCreateTeapot
99D3DXCreateTextA
100D3DXCreateTextW
101D3DXCreateTexture
102D3DXCreateTextureFromFileA
103D3DXCreateTextureFromFileExA
104D3DXCreateTextureFromFileExW
105D3DXCreateTextureFromFileInMemory
106D3DXCreateTextureFromFileInMemoryEx
107D3DXCreateTextureFromFileW
108D3DXCreateTextureFromResourceA
109D3DXCreateTextureFromResourceExA
110D3DXCreateTextureFromResourceExW
111D3DXCreateTextureFromResourceW
112D3DXCreateTextureGutterHelper
113D3DXCreateTextureShader
114D3DXCreateTorus
115D3DXCreateVolumeTexture
116D3DXCreateVolumeTextureFromFileA
117D3DXCreateVolumeTextureFromFileExA
118D3DXCreateVolumeTextureFromFileExW
119D3DXCreateVolumeTextureFromFileInMemory
120D3DXCreateVolumeTextureFromFileInMemoryEx
121D3DXCreateVolumeTextureFromFileW
122D3DXCreateVolumeTextureFromResourceA
123D3DXCreateVolumeTextureFromResourceExA
124D3DXCreateVolumeTextureFromResourceExW
125D3DXCreateVolumeTextureFromResourceW
126D3DXDebugMute
127D3DXDeclaratorFromFVF
128D3DXDisassembleEffect
129D3DXDisassembleShader
130D3DXFVFFromDeclarator
131D3DXFileCreate
132D3DXFillCubeTexture
133D3DXFillCubeTextureTX
134D3DXFillTexture
135D3DXFillTextureTX
136D3DXFillVolumeTexture
137D3DXFillVolumeTextureTX
138D3DXFilterTexture
139D3DXFindShaderComment
140D3DXFloat16To32Array
141D3DXFloat32To16Array
142D3DXFrameAppendChild
143D3DXFrameCalculateBoundingSphere
144D3DXFrameDestroy
145D3DXFrameFind
146D3DXFrameNumNamedMatrices
147D3DXFrameRegisterNamedMatrices
148D3DXFresnelTerm
149D3DXGatherFragments
150D3DXGatherFragmentsFromFileA
151D3DXGatherFragmentsFromFileW
152D3DXGatherFragmentsFromResourceA
153D3DXGatherFragmentsFromResourceW
154D3DXGenerateOutputDecl
155D3DXGeneratePMesh
156D3DXGetDeclLength
157D3DXGetDeclVertexSize
158D3DXGetDriverLevel
159D3DXGetFVFVertexSize
160D3DXGetImageInfoFromFileA
161D3DXGetImageInfoFromFileInMemory
162D3DXGetImageInfoFromFileW
163D3DXGetImageInfoFromResourceA
164D3DXGetImageInfoFromResourceW
165D3DXGetPixelShaderProfile
166D3DXGetShaderConstantTable
167D3DXGetShaderInputSemantics
168D3DXGetShaderOutputSemantics
169D3DXGetShaderSamplers
170D3DXGetShaderSize
171D3DXGetShaderVersion
172D3DXGetVertexShaderProfile
173D3DXIntersect
174D3DXIntersectSubset
175D3DXIntersectTri
176D3DXLoadMeshFromXA
177D3DXLoadMeshFromXInMemory
178D3DXLoadMeshFromXResource
179D3DXLoadMeshFromXW
180D3DXLoadMeshFromXof
181D3DXLoadMeshHierarchyFromXA
182D3DXLoadMeshHierarchyFromXInMemory
183D3DXLoadMeshHierarchyFromXW
184D3DXLoadPRTBufferFromFileA
185D3DXLoadPRTBufferFromFileW
186D3DXLoadPRTCompBufferFromFileA
187D3DXLoadPRTCompBufferFromFileW
188D3DXLoadPatchMeshFromXof
189D3DXLoadSkinMeshFromXof
190D3DXLoadSurfaceFromFileA
191D3DXLoadSurfaceFromFileInMemory
192D3DXLoadSurfaceFromFileW
193D3DXLoadSurfaceFromMemory
194D3DXLoadSurfaceFromResourceA
195D3DXLoadSurfaceFromResourceW
196D3DXLoadSurfaceFromSurface
197D3DXLoadVolumeFromFileA
198D3DXLoadVolumeFromFileInMemory
199D3DXLoadVolumeFromFileW
200D3DXLoadVolumeFromMemory
201D3DXLoadVolumeFromResourceA
202D3DXLoadVolumeFromResourceW
203D3DXLoadVolumeFromVolume
204D3DXMatrixAffineTransformation
205D3DXMatrixAffineTransformation2D
206D3DXMatrixDecompose
207D3DXMatrixDeterminant
208D3DXMatrixInverse
209D3DXMatrixLookAtLH
210D3DXMatrixLookAtRH
211D3DXMatrixMultiply
212D3DXMatrixMultiplyTranspose
213D3DXMatrixOrthoLH
214D3DXMatrixOrthoOffCenterLH
215D3DXMatrixOrthoOffCenterRH
216D3DXMatrixOrthoRH
217D3DXMatrixPerspectiveFovLH
218D3DXMatrixPerspectiveFovRH
219D3DXMatrixPerspectiveLH
220D3DXMatrixPerspectiveOffCenterLH
221D3DXMatrixPerspectiveOffCenterRH
222D3DXMatrixPerspectiveRH
223D3DXMatrixReflect
224D3DXMatrixRotationAxis
225D3DXMatrixRotationQuaternion
226D3DXMatrixRotationX
227D3DXMatrixRotationY
228D3DXMatrixRotationYawPitchRoll
229D3DXMatrixRotationZ
230D3DXMatrixScaling
231D3DXMatrixShadow
232D3DXMatrixTransformation
233D3DXMatrixTransformation2D
234D3DXMatrixTranslation
235D3DXMatrixTranspose
236D3DXOptimizeFaces
237D3DXOptimizeVertices
238D3DXPlaneFromPointNormal
239D3DXPlaneFromPoints
240D3DXPlaneIntersectLine
241D3DXPlaneNormalize
242D3DXPlaneTransform
243D3DXPlaneTransformArray
244D3DXPreprocessShader
245D3DXPreprocessShaderFromFileA
246D3DXPreprocessShaderFromFileW
247D3DXPreprocessShaderFromResourceA
248D3DXPreprocessShaderFromResourceW
249D3DXQuaternionBaryCentric
250D3DXQuaternionExp
251D3DXQuaternionInverse
252D3DXQuaternionLn
253D3DXQuaternionMultiply
254D3DXQuaternionNormalize
255D3DXQuaternionRotationAxis
256D3DXQuaternionRotationMatrix
257D3DXQuaternionRotationYawPitchRoll
258D3DXQuaternionSlerp
259D3DXQuaternionSquad
260D3DXQuaternionSquadSetup
261D3DXQuaternionToAxisAngle
262D3DXRectPatchSize
263D3DXSHAdd
264D3DXSHDot
265D3DXSHEvalConeLight
266D3DXSHEvalDirection
267D3DXSHEvalDirectionalLight
268D3DXSHEvalHemisphereLight
269D3DXSHEvalSphericalLight
270D3DXSHPRTCompSplitMeshSC
271D3DXSHPRTCompSuperCluster
272D3DXSHProjectCubeMap
273D3DXSHRotate
274D3DXSHRotateZ
275D3DXSHScale
276D3DXSaveMeshHierarchyToFileA
277D3DXSaveMeshHierarchyToFileW
278D3DXSaveMeshToXA
279D3DXSaveMeshToXW
280D3DXSavePRTBufferToFileA
281D3DXSavePRTBufferToFileW
282D3DXSavePRTCompBufferToFileA
283D3DXSavePRTCompBufferToFileW
284D3DXSaveSurfaceToFileA
285D3DXSaveSurfaceToFileInMemory
286D3DXSaveSurfaceToFileW
287D3DXSaveTextureToFileA
288D3DXSaveTextureToFileInMemory
289D3DXSaveTextureToFileW
290D3DXSaveVolumeToFileA
291D3DXSaveVolumeToFileInMemory
292D3DXSaveVolumeToFileW
293D3DXSimplifyMesh
294D3DXSphereBoundProbe
295D3DXSplitMesh
296D3DXTessellateNPatches
297D3DXTessellateRectPatch
298D3DXTessellateTriPatch
299D3DXTriPatchSize
300D3DXUVAtlasCreate
301D3DXUVAtlasPack
302D3DXUVAtlasPartition
303D3DXValidMesh
304D3DXValidPatchMesh
305D3DXVec2BaryCentric
306D3DXVec2CatmullRom
307D3DXVec2Hermite
308D3DXVec2Normalize
309D3DXVec2Transform
310D3DXVec2TransformArray
311D3DXVec2TransformCoord
312D3DXVec2TransformCoordArray
313D3DXVec2TransformNormal
314D3DXVec2TransformNormalArray
315D3DXVec3BaryCentric
316D3DXVec3CatmullRom
317D3DXVec3Hermite
318D3DXVec3Normalize
319D3DXVec3Project
320D3DXVec3ProjectArray
321D3DXVec3Transform
322D3DXVec3TransformArray
323D3DXVec3TransformCoord
324D3DXVec3TransformCoordArray
325D3DXVec3TransformNormal
326D3DXVec3TransformNormalArray
327D3DXVec3Unproject
328D3DXVec3UnprojectArray
329D3DXVec4BaryCentric
330D3DXVec4CatmullRom
331D3DXVec4Cross
332D3DXVec4Hermite
333D3DXVec4Normalize
334D3DXVec4Transform
335D3DXVec4TransformArray
336D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_32.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_32.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateKeyframedAnimationSet
78D3DXCreateLine
79D3DXCreateMatrixStack
80D3DXCreateMesh
81D3DXCreateMeshFVF
82D3DXCreateNPatchMesh
83D3DXCreatePMeshFromStream
84D3DXCreatePRTBuffer
85D3DXCreatePRTBufferTex
86D3DXCreatePRTCompBuffer
87D3DXCreatePRTEngine
88D3DXCreatePatchMesh
89D3DXCreatePolygon
90D3DXCreateRenderToEnvMap
91D3DXCreateRenderToSurface
92D3DXCreateSPMesh
93D3DXCreateSkinInfo
94D3DXCreateSkinInfoFVF
95D3DXCreateSkinInfoFromBlendedMesh
96D3DXCreateSphere
97D3DXCreateSprite
98D3DXCreateTeapot
99D3DXCreateTextA
100D3DXCreateTextW
101D3DXCreateTexture
102D3DXCreateTextureFromFileA
103D3DXCreateTextureFromFileExA
104D3DXCreateTextureFromFileExW
105D3DXCreateTextureFromFileInMemory
106D3DXCreateTextureFromFileInMemoryEx
107D3DXCreateTextureFromFileW
108D3DXCreateTextureFromResourceA
109D3DXCreateTextureFromResourceExA
110D3DXCreateTextureFromResourceExW
111D3DXCreateTextureFromResourceW
112D3DXCreateTextureGutterHelper
113D3DXCreateTextureShader
114D3DXCreateTorus
115D3DXCreateVolumeTexture
116D3DXCreateVolumeTextureFromFileA
117D3DXCreateVolumeTextureFromFileExA
118D3DXCreateVolumeTextureFromFileExW
119D3DXCreateVolumeTextureFromFileInMemory
120D3DXCreateVolumeTextureFromFileInMemoryEx
121D3DXCreateVolumeTextureFromFileW
122D3DXCreateVolumeTextureFromResourceA
123D3DXCreateVolumeTextureFromResourceExA
124D3DXCreateVolumeTextureFromResourceExW
125D3DXCreateVolumeTextureFromResourceW
126D3DXDebugMute
127D3DXDeclaratorFromFVF
128D3DXDisassembleEffect
129D3DXDisassembleShader
130D3DXFVFFromDeclarator
131D3DXFileCreate
132D3DXFillCubeTexture
133D3DXFillCubeTextureTX
134D3DXFillTexture
135D3DXFillTextureTX
136D3DXFillVolumeTexture
137D3DXFillVolumeTextureTX
138D3DXFilterTexture
139D3DXFindShaderComment
140D3DXFloat16To32Array
141D3DXFloat32To16Array
142D3DXFrameAppendChild
143D3DXFrameCalculateBoundingSphere
144D3DXFrameDestroy
145D3DXFrameFind
146D3DXFrameNumNamedMatrices
147D3DXFrameRegisterNamedMatrices
148D3DXFresnelTerm
149D3DXGatherFragments
150D3DXGatherFragmentsFromFileA
151D3DXGatherFragmentsFromFileW
152D3DXGatherFragmentsFromResourceA
153D3DXGatherFragmentsFromResourceW
154D3DXGenerateOutputDecl
155D3DXGeneratePMesh
156D3DXGetDeclLength
157D3DXGetDeclVertexSize
158D3DXGetDriverLevel
159D3DXGetFVFVertexSize
160D3DXGetImageInfoFromFileA
161D3DXGetImageInfoFromFileInMemory
162D3DXGetImageInfoFromFileW
163D3DXGetImageInfoFromResourceA
164D3DXGetImageInfoFromResourceW
165D3DXGetPixelShaderProfile
166D3DXGetShaderConstantTable
167D3DXGetShaderInputSemantics
168D3DXGetShaderOutputSemantics
169D3DXGetShaderSamplers
170D3DXGetShaderSize
171D3DXGetShaderVersion
172D3DXGetVertexShaderProfile
173D3DXIntersect
174D3DXIntersectSubset
175D3DXIntersectTri
176D3DXLoadMeshFromXA
177D3DXLoadMeshFromXInMemory
178D3DXLoadMeshFromXResource
179D3DXLoadMeshFromXW
180D3DXLoadMeshFromXof
181D3DXLoadMeshHierarchyFromXA
182D3DXLoadMeshHierarchyFromXInMemory
183D3DXLoadMeshHierarchyFromXW
184D3DXLoadPRTBufferFromFileA
185D3DXLoadPRTBufferFromFileW
186D3DXLoadPRTCompBufferFromFileA
187D3DXLoadPRTCompBufferFromFileW
188D3DXLoadPatchMeshFromXof
189D3DXLoadSkinMeshFromXof
190D3DXLoadSurfaceFromFileA
191D3DXLoadSurfaceFromFileInMemory
192D3DXLoadSurfaceFromFileW
193D3DXLoadSurfaceFromMemory
194D3DXLoadSurfaceFromResourceA
195D3DXLoadSurfaceFromResourceW
196D3DXLoadSurfaceFromSurface
197D3DXLoadVolumeFromFileA
198D3DXLoadVolumeFromFileInMemory
199D3DXLoadVolumeFromFileW
200D3DXLoadVolumeFromMemory
201D3DXLoadVolumeFromResourceA
202D3DXLoadVolumeFromResourceW
203D3DXLoadVolumeFromVolume
204D3DXMatrixAffineTransformation
205D3DXMatrixAffineTransformation2D
206D3DXMatrixDecompose
207D3DXMatrixDeterminant
208D3DXMatrixInverse
209D3DXMatrixLookAtLH
210D3DXMatrixLookAtRH
211D3DXMatrixMultiply
212D3DXMatrixMultiplyTranspose
213D3DXMatrixOrthoLH
214D3DXMatrixOrthoOffCenterLH
215D3DXMatrixOrthoOffCenterRH
216D3DXMatrixOrthoRH
217D3DXMatrixPerspectiveFovLH
218D3DXMatrixPerspectiveFovRH
219D3DXMatrixPerspectiveLH
220D3DXMatrixPerspectiveOffCenterLH
221D3DXMatrixPerspectiveOffCenterRH
222D3DXMatrixPerspectiveRH
223D3DXMatrixReflect
224D3DXMatrixRotationAxis
225D3DXMatrixRotationQuaternion
226D3DXMatrixRotationX
227D3DXMatrixRotationY
228D3DXMatrixRotationYawPitchRoll
229D3DXMatrixRotationZ
230D3DXMatrixScaling
231D3DXMatrixShadow
232D3DXMatrixTransformation
233D3DXMatrixTransformation2D
234D3DXMatrixTranslation
235D3DXMatrixTranspose
236D3DXOptimizeFaces
237D3DXOptimizeVertices
238D3DXPlaneFromPointNormal
239D3DXPlaneFromPoints
240D3DXPlaneIntersectLine
241D3DXPlaneNormalize
242D3DXPlaneTransform
243D3DXPlaneTransformArray
244D3DXPreprocessShader
245D3DXPreprocessShaderFromFileA
246D3DXPreprocessShaderFromFileW
247D3DXPreprocessShaderFromResourceA
248D3DXPreprocessShaderFromResourceW
249D3DXQuaternionBaryCentric
250D3DXQuaternionExp
251D3DXQuaternionInverse
252D3DXQuaternionLn
253D3DXQuaternionMultiply
254D3DXQuaternionNormalize
255D3DXQuaternionRotationAxis
256D3DXQuaternionRotationMatrix
257D3DXQuaternionRotationYawPitchRoll
258D3DXQuaternionSlerp
259D3DXQuaternionSquad
260D3DXQuaternionSquadSetup
261D3DXQuaternionToAxisAngle
262D3DXRectPatchSize
263D3DXSHAdd
264D3DXSHDot
265D3DXSHEvalConeLight
266D3DXSHEvalDirection
267D3DXSHEvalDirectionalLight
268D3DXSHEvalHemisphereLight
269D3DXSHEvalSphericalLight
270D3DXSHMultiply2
271D3DXSHMultiply3
272D3DXSHMultiply4
273D3DXSHMultiply5
274D3DXSHMultiply6
275D3DXSHPRTCompSplitMeshSC
276D3DXSHPRTCompSuperCluster
277D3DXSHProjectCubeMap
278D3DXSHRotate
279D3DXSHRotateZ
280D3DXSHScale
281D3DXSaveMeshHierarchyToFileA
282D3DXSaveMeshHierarchyToFileW
283D3DXSaveMeshToXA
284D3DXSaveMeshToXW
285D3DXSavePRTBufferToFileA
286D3DXSavePRTBufferToFileW
287D3DXSavePRTCompBufferToFileA
288D3DXSavePRTCompBufferToFileW
289D3DXSaveSurfaceToFileA
290D3DXSaveSurfaceToFileInMemory
291D3DXSaveSurfaceToFileW
292D3DXSaveTextureToFileA
293D3DXSaveTextureToFileInMemory
294D3DXSaveTextureToFileW
295D3DXSaveVolumeToFileA
296D3DXSaveVolumeToFileInMemory
297D3DXSaveVolumeToFileW
298D3DXSimplifyMesh
299D3DXSphereBoundProbe
300D3DXSplitMesh
301D3DXTessellateNPatches
302D3DXTessellateRectPatch
303D3DXTessellateTriPatch
304D3DXTriPatchSize
305D3DXUVAtlasCreate
306D3DXUVAtlasPack
307D3DXUVAtlasPartition
308D3DXValidMesh
309D3DXValidPatchMesh
310D3DXVec2BaryCentric
311D3DXVec2CatmullRom
312D3DXVec2Hermite
313D3DXVec2Normalize
314D3DXVec2Transform
315D3DXVec2TransformArray
316D3DXVec2TransformCoord
317D3DXVec2TransformCoordArray
318D3DXVec2TransformNormal
319D3DXVec2TransformNormalArray
320D3DXVec3BaryCentric
321D3DXVec3CatmullRom
322D3DXVec3Hermite
323D3DXVec3Normalize
324D3DXVec3Project
325D3DXVec3ProjectArray
326D3DXVec3Transform
327D3DXVec3TransformArray
328D3DXVec3TransformCoord
329D3DXVec3TransformCoordArray
330D3DXVec3TransformNormal
331D3DXVec3TransformNormalArray
332D3DXVec3Unproject
333D3DXVec3UnprojectArray
334D3DXVec4BaryCentric
335D3DXVec4CatmullRom
336D3DXVec4Cross
337D3DXVec4Hermite
338D3DXVec4Normalize
339D3DXVec4Transform
340D3DXVec4TransformArray
341D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_33.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_33.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_33.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateKeyframedAnimationSet
78D3DXCreateLine
79D3DXCreateMatrixStack
80D3DXCreateMesh
81D3DXCreateMeshFVF
82D3DXCreateNPatchMesh
83D3DXCreatePMeshFromStream
84D3DXCreatePRTBuffer
85D3DXCreatePRTBufferTex
86D3DXCreatePRTCompBuffer
87D3DXCreatePRTEngine
88D3DXCreatePatchMesh
89D3DXCreatePolygon
90D3DXCreateRenderToEnvMap
91D3DXCreateRenderToSurface
92D3DXCreateSPMesh
93D3DXCreateSkinInfo
94D3DXCreateSkinInfoFVF
95D3DXCreateSkinInfoFromBlendedMesh
96D3DXCreateSphere
97D3DXCreateSprite
98D3DXCreateTeapot
99D3DXCreateTextA
100D3DXCreateTextW
101D3DXCreateTexture
102D3DXCreateTextureFromFileA
103D3DXCreateTextureFromFileExA
104D3DXCreateTextureFromFileExW
105D3DXCreateTextureFromFileInMemory
106D3DXCreateTextureFromFileInMemoryEx
107D3DXCreateTextureFromFileW
108D3DXCreateTextureFromResourceA
109D3DXCreateTextureFromResourceExA
110D3DXCreateTextureFromResourceExW
111D3DXCreateTextureFromResourceW
112D3DXCreateTextureGutterHelper
113D3DXCreateTextureShader
114D3DXCreateTorus
115D3DXCreateVolumeTexture
116D3DXCreateVolumeTextureFromFileA
117D3DXCreateVolumeTextureFromFileExA
118D3DXCreateVolumeTextureFromFileExW
119D3DXCreateVolumeTextureFromFileInMemory
120D3DXCreateVolumeTextureFromFileInMemoryEx
121D3DXCreateVolumeTextureFromFileW
122D3DXCreateVolumeTextureFromResourceA
123D3DXCreateVolumeTextureFromResourceExA
124D3DXCreateVolumeTextureFromResourceExW
125D3DXCreateVolumeTextureFromResourceW
126D3DXDebugMute
127D3DXDeclaratorFromFVF
128D3DXDisassembleEffect
129D3DXDisassembleShader
130D3DXFVFFromDeclarator
131D3DXFileCreate
132D3DXFillCubeTexture
133D3DXFillCubeTextureTX
134D3DXFillTexture
135D3DXFillTextureTX
136D3DXFillVolumeTexture
137D3DXFillVolumeTextureTX
138D3DXFilterTexture
139D3DXFindShaderComment
140D3DXFloat16To32Array
141D3DXFloat32To16Array
142D3DXFrameAppendChild
143D3DXFrameCalculateBoundingSphere
144D3DXFrameDestroy
145D3DXFrameFind
146D3DXFrameNumNamedMatrices
147D3DXFrameRegisterNamedMatrices
148D3DXFresnelTerm
149D3DXGatherFragments
150D3DXGatherFragmentsFromFileA
151D3DXGatherFragmentsFromFileW
152D3DXGatherFragmentsFromResourceA
153D3DXGatherFragmentsFromResourceW
154D3DXGenerateOutputDecl
155D3DXGeneratePMesh
156D3DXGetDeclLength
157D3DXGetDeclVertexSize
158D3DXGetDriverLevel
159D3DXGetFVFVertexSize
160D3DXGetImageInfoFromFileA
161D3DXGetImageInfoFromFileInMemory
162D3DXGetImageInfoFromFileW
163D3DXGetImageInfoFromResourceA
164D3DXGetImageInfoFromResourceW
165D3DXGetPixelShaderProfile
166D3DXGetShaderConstantTable
167D3DXGetShaderInputSemantics
168D3DXGetShaderOutputSemantics
169D3DXGetShaderSamplers
170D3DXGetShaderSize
171D3DXGetShaderVersion
172D3DXGetVertexShaderProfile
173D3DXIntersect
174D3DXIntersectSubset
175D3DXIntersectTri
176D3DXLoadMeshFromXA
177D3DXLoadMeshFromXInMemory
178D3DXLoadMeshFromXResource
179D3DXLoadMeshFromXW
180D3DXLoadMeshFromXof
181D3DXLoadMeshHierarchyFromXA
182D3DXLoadMeshHierarchyFromXInMemory
183D3DXLoadMeshHierarchyFromXW
184D3DXLoadPRTBufferFromFileA
185D3DXLoadPRTBufferFromFileW
186D3DXLoadPRTCompBufferFromFileA
187D3DXLoadPRTCompBufferFromFileW
188D3DXLoadPatchMeshFromXof
189D3DXLoadSkinMeshFromXof
190D3DXLoadSurfaceFromFileA
191D3DXLoadSurfaceFromFileInMemory
192D3DXLoadSurfaceFromFileW
193D3DXLoadSurfaceFromMemory
194D3DXLoadSurfaceFromResourceA
195D3DXLoadSurfaceFromResourceW
196D3DXLoadSurfaceFromSurface
197D3DXLoadVolumeFromFileA
198D3DXLoadVolumeFromFileInMemory
199D3DXLoadVolumeFromFileW
200D3DXLoadVolumeFromMemory
201D3DXLoadVolumeFromResourceA
202D3DXLoadVolumeFromResourceW
203D3DXLoadVolumeFromVolume
204D3DXMatrixAffineTransformation
205D3DXMatrixAffineTransformation2D
206D3DXMatrixDecompose
207D3DXMatrixDeterminant
208D3DXMatrixInverse
209D3DXMatrixLookAtLH
210D3DXMatrixLookAtRH
211D3DXMatrixMultiply
212D3DXMatrixMultiplyTranspose
213D3DXMatrixOrthoLH
214D3DXMatrixOrthoOffCenterLH
215D3DXMatrixOrthoOffCenterRH
216D3DXMatrixOrthoRH
217D3DXMatrixPerspectiveFovLH
218D3DXMatrixPerspectiveFovRH
219D3DXMatrixPerspectiveLH
220D3DXMatrixPerspectiveOffCenterLH
221D3DXMatrixPerspectiveOffCenterRH
222D3DXMatrixPerspectiveRH
223D3DXMatrixReflect
224D3DXMatrixRotationAxis
225D3DXMatrixRotationQuaternion
226D3DXMatrixRotationX
227D3DXMatrixRotationY
228D3DXMatrixRotationYawPitchRoll
229D3DXMatrixRotationZ
230D3DXMatrixScaling
231D3DXMatrixShadow
232D3DXMatrixTransformation
233D3DXMatrixTransformation2D
234D3DXMatrixTranslation
235D3DXMatrixTranspose
236D3DXOptimizeFaces
237D3DXOptimizeVertices
238D3DXPlaneFromPointNormal
239D3DXPlaneFromPoints
240D3DXPlaneIntersectLine
241D3DXPlaneNormalize
242D3DXPlaneTransform
243D3DXPlaneTransformArray
244D3DXPreprocessShader
245D3DXPreprocessShaderFromFileA
246D3DXPreprocessShaderFromFileW
247D3DXPreprocessShaderFromResourceA
248D3DXPreprocessShaderFromResourceW
249D3DXQuaternionBaryCentric
250D3DXQuaternionExp
251D3DXQuaternionInverse
252D3DXQuaternionLn
253D3DXQuaternionMultiply
254D3DXQuaternionNormalize
255D3DXQuaternionRotationAxis
256D3DXQuaternionRotationMatrix
257D3DXQuaternionRotationYawPitchRoll
258D3DXQuaternionSlerp
259D3DXQuaternionSquad
260D3DXQuaternionSquadSetup
261D3DXQuaternionToAxisAngle
262D3DXRectPatchSize
263D3DXSHAdd
264D3DXSHDot
265D3DXSHEvalConeLight
266D3DXSHEvalDirection
267D3DXSHEvalDirectionalLight
268D3DXSHEvalHemisphereLight
269D3DXSHEvalSphericalLight
270D3DXSHMultiply2
271D3DXSHMultiply3
272D3DXSHMultiply4
273D3DXSHMultiply5
274D3DXSHMultiply6
275D3DXSHPRTCompSplitMeshSC
276D3DXSHPRTCompSuperCluster
277D3DXSHProjectCubeMap
278D3DXSHRotate
279D3DXSHRotateZ
280D3DXSHScale
281D3DXSaveMeshHierarchyToFileA
282D3DXSaveMeshHierarchyToFileW
283D3DXSaveMeshToXA
284D3DXSaveMeshToXW
285D3DXSavePRTBufferToFileA
286D3DXSavePRTBufferToFileW
287D3DXSavePRTCompBufferToFileA
288D3DXSavePRTCompBufferToFileW
289D3DXSaveSurfaceToFileA
290D3DXSaveSurfaceToFileInMemory
291D3DXSaveSurfaceToFileW
292D3DXSaveTextureToFileA
293D3DXSaveTextureToFileInMemory
294D3DXSaveTextureToFileW
295D3DXSaveVolumeToFileA
296D3DXSaveVolumeToFileInMemory
297D3DXSaveVolumeToFileW
298D3DXSimplifyMesh
299D3DXSphereBoundProbe
300D3DXSplitMesh
301D3DXTessellateNPatches
302D3DXTessellateRectPatch
303D3DXTessellateTriPatch
304D3DXTriPatchSize
305D3DXUVAtlasCreate
306D3DXUVAtlasPack
307D3DXUVAtlasPartition
308D3DXValidMesh
309D3DXValidPatchMesh
310D3DXVec2BaryCentric
311D3DXVec2CatmullRom
312D3DXVec2Hermite
313D3DXVec2Normalize
314D3DXVec2Transform
315D3DXVec2TransformArray
316D3DXVec2TransformCoord
317D3DXVec2TransformCoordArray
318D3DXVec2TransformNormal
319D3DXVec2TransformNormalArray
320D3DXVec3BaryCentric
321D3DXVec3CatmullRom
322D3DXVec3Hermite
323D3DXVec3Normalize
324D3DXVec3Project
325D3DXVec3ProjectArray
326D3DXVec3Transform
327D3DXVec3TransformArray
328D3DXVec3TransformCoord
329D3DXVec3TransformCoordArray
330D3DXVec3TransformNormal
331D3DXVec3TransformNormalArray
332D3DXVec3Unproject
333D3DXVec3UnprojectArray
334D3DXVec4BaryCentric
335D3DXVec4CatmullRom
336D3DXVec4Cross
337D3DXVec4Hermite
338D3DXVec4Normalize
339D3DXVec4Transform
340D3DXVec4TransformArray
341D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_34.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_34.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_34.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateKeyframedAnimationSet
78D3DXCreateLine
79D3DXCreateMatrixStack
80D3DXCreateMesh
81D3DXCreateMeshFVF
82D3DXCreateNPatchMesh
83D3DXCreatePMeshFromStream
84D3DXCreatePRTBuffer
85D3DXCreatePRTBufferTex
86D3DXCreatePRTCompBuffer
87D3DXCreatePRTEngine
88D3DXCreatePatchMesh
89D3DXCreatePolygon
90D3DXCreateRenderToEnvMap
91D3DXCreateRenderToSurface
92D3DXCreateSPMesh
93D3DXCreateSkinInfo
94D3DXCreateSkinInfoFVF
95D3DXCreateSkinInfoFromBlendedMesh
96D3DXCreateSphere
97D3DXCreateSprite
98D3DXCreateTeapot
99D3DXCreateTextA
100D3DXCreateTextW
101D3DXCreateTexture
102D3DXCreateTextureFromFileA
103D3DXCreateTextureFromFileExA
104D3DXCreateTextureFromFileExW
105D3DXCreateTextureFromFileInMemory
106D3DXCreateTextureFromFileInMemoryEx
107D3DXCreateTextureFromFileW
108D3DXCreateTextureFromResourceA
109D3DXCreateTextureFromResourceExA
110D3DXCreateTextureFromResourceExW
111D3DXCreateTextureFromResourceW
112D3DXCreateTextureGutterHelper
113D3DXCreateTextureShader
114D3DXCreateTorus
115D3DXCreateVolumeTexture
116D3DXCreateVolumeTextureFromFileA
117D3DXCreateVolumeTextureFromFileExA
118D3DXCreateVolumeTextureFromFileExW
119D3DXCreateVolumeTextureFromFileInMemory
120D3DXCreateVolumeTextureFromFileInMemoryEx
121D3DXCreateVolumeTextureFromFileW
122D3DXCreateVolumeTextureFromResourceA
123D3DXCreateVolumeTextureFromResourceExA
124D3DXCreateVolumeTextureFromResourceExW
125D3DXCreateVolumeTextureFromResourceW
126D3DXDebugMute
127D3DXDeclaratorFromFVF
128D3DXDisassembleEffect
129D3DXDisassembleShader
130D3DXFVFFromDeclarator
131D3DXFileCreate
132D3DXFillCubeTexture
133D3DXFillCubeTextureTX
134D3DXFillTexture
135D3DXFillTextureTX
136D3DXFillVolumeTexture
137D3DXFillVolumeTextureTX
138D3DXFilterTexture
139D3DXFindShaderComment
140D3DXFloat16To32Array
141D3DXFloat32To16Array
142D3DXFrameAppendChild
143D3DXFrameCalculateBoundingSphere
144D3DXFrameDestroy
145D3DXFrameFind
146D3DXFrameNumNamedMatrices
147D3DXFrameRegisterNamedMatrices
148D3DXFresnelTerm
149D3DXGatherFragments
150D3DXGatherFragmentsFromFileA
151D3DXGatherFragmentsFromFileW
152D3DXGatherFragmentsFromResourceA
153D3DXGatherFragmentsFromResourceW
154D3DXGenerateOutputDecl
155D3DXGeneratePMesh
156D3DXGetDeclLength
157D3DXGetDeclVertexSize
158D3DXGetDriverLevel
159D3DXGetFVFVertexSize
160D3DXGetImageInfoFromFileA
161D3DXGetImageInfoFromFileInMemory
162D3DXGetImageInfoFromFileW
163D3DXGetImageInfoFromResourceA
164D3DXGetImageInfoFromResourceW
165D3DXGetPixelShaderProfile
166D3DXGetShaderConstantTable
167D3DXGetShaderInputSemantics
168D3DXGetShaderOutputSemantics
169D3DXGetShaderSamplers
170D3DXGetShaderSize
171D3DXGetShaderVersion
172D3DXGetVertexShaderProfile
173D3DXIntersect
174D3DXIntersectSubset
175D3DXIntersectTri
176D3DXLoadMeshFromXA
177D3DXLoadMeshFromXInMemory
178D3DXLoadMeshFromXResource
179D3DXLoadMeshFromXW
180D3DXLoadMeshFromXof
181D3DXLoadMeshHierarchyFromXA
182D3DXLoadMeshHierarchyFromXInMemory
183D3DXLoadMeshHierarchyFromXW
184D3DXLoadPRTBufferFromFileA
185D3DXLoadPRTBufferFromFileW
186D3DXLoadPRTCompBufferFromFileA
187D3DXLoadPRTCompBufferFromFileW
188D3DXLoadPatchMeshFromXof
189D3DXLoadSkinMeshFromXof
190D3DXLoadSurfaceFromFileA
191D3DXLoadSurfaceFromFileInMemory
192D3DXLoadSurfaceFromFileW
193D3DXLoadSurfaceFromMemory
194D3DXLoadSurfaceFromResourceA
195D3DXLoadSurfaceFromResourceW
196D3DXLoadSurfaceFromSurface
197D3DXLoadVolumeFromFileA
198D3DXLoadVolumeFromFileInMemory
199D3DXLoadVolumeFromFileW
200D3DXLoadVolumeFromMemory
201D3DXLoadVolumeFromResourceA
202D3DXLoadVolumeFromResourceW
203D3DXLoadVolumeFromVolume
204D3DXMatrixAffineTransformation
205D3DXMatrixAffineTransformation2D
206D3DXMatrixDecompose
207D3DXMatrixDeterminant
208D3DXMatrixInverse
209D3DXMatrixLookAtLH
210D3DXMatrixLookAtRH
211D3DXMatrixMultiply
212D3DXMatrixMultiplyTranspose
213D3DXMatrixOrthoLH
214D3DXMatrixOrthoOffCenterLH
215D3DXMatrixOrthoOffCenterRH
216D3DXMatrixOrthoRH
217D3DXMatrixPerspectiveFovLH
218D3DXMatrixPerspectiveFovRH
219D3DXMatrixPerspectiveLH
220D3DXMatrixPerspectiveOffCenterLH
221D3DXMatrixPerspectiveOffCenterRH
222D3DXMatrixPerspectiveRH
223D3DXMatrixReflect
224D3DXMatrixRotationAxis
225D3DXMatrixRotationQuaternion
226D3DXMatrixRotationX
227D3DXMatrixRotationY
228D3DXMatrixRotationYawPitchRoll
229D3DXMatrixRotationZ
230D3DXMatrixScaling
231D3DXMatrixShadow
232D3DXMatrixTransformation
233D3DXMatrixTransformation2D
234D3DXMatrixTranslation
235D3DXMatrixTranspose
236D3DXOptimizeFaces
237D3DXOptimizeVertices
238D3DXPlaneFromPointNormal
239D3DXPlaneFromPoints
240D3DXPlaneIntersectLine
241D3DXPlaneNormalize
242D3DXPlaneTransform
243D3DXPlaneTransformArray
244D3DXPreprocessShader
245D3DXPreprocessShaderFromFileA
246D3DXPreprocessShaderFromFileW
247D3DXPreprocessShaderFromResourceA
248D3DXPreprocessShaderFromResourceW
249D3DXQuaternionBaryCentric
250D3DXQuaternionExp
251D3DXQuaternionInverse
252D3DXQuaternionLn
253D3DXQuaternionMultiply
254D3DXQuaternionNormalize
255D3DXQuaternionRotationAxis
256D3DXQuaternionRotationMatrix
257D3DXQuaternionRotationYawPitchRoll
258D3DXQuaternionSlerp
259D3DXQuaternionSquad
260D3DXQuaternionSquadSetup
261D3DXQuaternionToAxisAngle
262D3DXRectPatchSize
263D3DXSHAdd
264D3DXSHDot
265D3DXSHEvalConeLight
266D3DXSHEvalDirection
267D3DXSHEvalDirectionalLight
268D3DXSHEvalHemisphereLight
269D3DXSHEvalSphericalLight
270D3DXSHMultiply2
271D3DXSHMultiply3
272D3DXSHMultiply4
273D3DXSHMultiply5
274D3DXSHMultiply6
275D3DXSHPRTCompSplitMeshSC
276D3DXSHPRTCompSuperCluster
277D3DXSHProjectCubeMap
278D3DXSHRotate
279D3DXSHRotateZ
280D3DXSHScale
281D3DXSaveMeshHierarchyToFileA
282D3DXSaveMeshHierarchyToFileW
283D3DXSaveMeshToXA
284D3DXSaveMeshToXW
285D3DXSavePRTBufferToFileA
286D3DXSavePRTBufferToFileW
287D3DXSavePRTCompBufferToFileA
288D3DXSavePRTCompBufferToFileW
289D3DXSaveSurfaceToFileA
290D3DXSaveSurfaceToFileInMemory
291D3DXSaveSurfaceToFileW
292D3DXSaveTextureToFileA
293D3DXSaveTextureToFileInMemory
294D3DXSaveTextureToFileW
295D3DXSaveVolumeToFileA
296D3DXSaveVolumeToFileInMemory
297D3DXSaveVolumeToFileW
298D3DXSimplifyMesh
299D3DXSphereBoundProbe
300D3DXSplitMesh
301D3DXTessellateNPatches
302D3DXTessellateRectPatch
303D3DXTessellateTriPatch
304D3DXTriPatchSize
305D3DXUVAtlasCreate
306D3DXUVAtlasPack
307D3DXUVAtlasPartition
308D3DXValidMesh
309D3DXValidPatchMesh
310D3DXVec2BaryCentric
311D3DXVec2CatmullRom
312D3DXVec2Hermite
313D3DXVec2Normalize
314D3DXVec2Transform
315D3DXVec2TransformArray
316D3DXVec2TransformCoord
317D3DXVec2TransformCoordArray
318D3DXVec2TransformNormal
319D3DXVec2TransformNormalArray
320D3DXVec3BaryCentric
321D3DXVec3CatmullRom
322D3DXVec3Hermite
323D3DXVec3Normalize
324D3DXVec3Project
325D3DXVec3ProjectArray
326D3DXVec3Transform
327D3DXVec3TransformArray
328D3DXVec3TransformCoord
329D3DXVec3TransformCoordArray
330D3DXVec3TransformNormal
331D3DXVec3TransformNormalArray
332D3DXVec3Unproject
333D3DXVec3UnprojectArray
334D3DXVec4BaryCentric
335D3DXVec4CatmullRom
336D3DXVec4Cross
337D3DXVec4Hermite
338D3DXVec4Normalize
339D3DXVec4Transform
340D3DXVec4TransformArray
341D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_35.def created+341
......@@ -0,0 +1,341 @@
1;
2; Definition file of d3dx9_35.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_35.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateKeyframedAnimationSet
78D3DXCreateLine
79D3DXCreateMatrixStack
80D3DXCreateMesh
81D3DXCreateMeshFVF
82D3DXCreateNPatchMesh
83D3DXCreatePMeshFromStream
84D3DXCreatePRTBuffer
85D3DXCreatePRTBufferTex
86D3DXCreatePRTCompBuffer
87D3DXCreatePRTEngine
88D3DXCreatePatchMesh
89D3DXCreatePolygon
90D3DXCreateRenderToEnvMap
91D3DXCreateRenderToSurface
92D3DXCreateSPMesh
93D3DXCreateSkinInfo
94D3DXCreateSkinInfoFVF
95D3DXCreateSkinInfoFromBlendedMesh
96D3DXCreateSphere
97D3DXCreateSprite
98D3DXCreateTeapot
99D3DXCreateTextA
100D3DXCreateTextW
101D3DXCreateTexture
102D3DXCreateTextureFromFileA
103D3DXCreateTextureFromFileExA
104D3DXCreateTextureFromFileExW
105D3DXCreateTextureFromFileInMemory
106D3DXCreateTextureFromFileInMemoryEx
107D3DXCreateTextureFromFileW
108D3DXCreateTextureFromResourceA
109D3DXCreateTextureFromResourceExA
110D3DXCreateTextureFromResourceExW
111D3DXCreateTextureFromResourceW
112D3DXCreateTextureGutterHelper
113D3DXCreateTextureShader
114D3DXCreateTorus
115D3DXCreateVolumeTexture
116D3DXCreateVolumeTextureFromFileA
117D3DXCreateVolumeTextureFromFileExA
118D3DXCreateVolumeTextureFromFileExW
119D3DXCreateVolumeTextureFromFileInMemory
120D3DXCreateVolumeTextureFromFileInMemoryEx
121D3DXCreateVolumeTextureFromFileW
122D3DXCreateVolumeTextureFromResourceA
123D3DXCreateVolumeTextureFromResourceExA
124D3DXCreateVolumeTextureFromResourceExW
125D3DXCreateVolumeTextureFromResourceW
126D3DXDebugMute
127D3DXDeclaratorFromFVF
128D3DXDisassembleEffect
129D3DXDisassembleShader
130D3DXFVFFromDeclarator
131D3DXFileCreate
132D3DXFillCubeTexture
133D3DXFillCubeTextureTX
134D3DXFillTexture
135D3DXFillTextureTX
136D3DXFillVolumeTexture
137D3DXFillVolumeTextureTX
138D3DXFilterTexture
139D3DXFindShaderComment
140D3DXFloat16To32Array
141D3DXFloat32To16Array
142D3DXFrameAppendChild
143D3DXFrameCalculateBoundingSphere
144D3DXFrameDestroy
145D3DXFrameFind
146D3DXFrameNumNamedMatrices
147D3DXFrameRegisterNamedMatrices
148D3DXFresnelTerm
149D3DXGatherFragments
150D3DXGatherFragmentsFromFileA
151D3DXGatherFragmentsFromFileW
152D3DXGatherFragmentsFromResourceA
153D3DXGatherFragmentsFromResourceW
154D3DXGenerateOutputDecl
155D3DXGeneratePMesh
156D3DXGetDeclLength
157D3DXGetDeclVertexSize
158D3DXGetDriverLevel
159D3DXGetFVFVertexSize
160D3DXGetImageInfoFromFileA
161D3DXGetImageInfoFromFileInMemory
162D3DXGetImageInfoFromFileW
163D3DXGetImageInfoFromResourceA
164D3DXGetImageInfoFromResourceW
165D3DXGetPixelShaderProfile
166D3DXGetShaderConstantTable
167D3DXGetShaderInputSemantics
168D3DXGetShaderOutputSemantics
169D3DXGetShaderSamplers
170D3DXGetShaderSize
171D3DXGetShaderVersion
172D3DXGetVertexShaderProfile
173D3DXIntersect
174D3DXIntersectSubset
175D3DXIntersectTri
176D3DXLoadMeshFromXA
177D3DXLoadMeshFromXInMemory
178D3DXLoadMeshFromXResource
179D3DXLoadMeshFromXW
180D3DXLoadMeshFromXof
181D3DXLoadMeshHierarchyFromXA
182D3DXLoadMeshHierarchyFromXInMemory
183D3DXLoadMeshHierarchyFromXW
184D3DXLoadPRTBufferFromFileA
185D3DXLoadPRTBufferFromFileW
186D3DXLoadPRTCompBufferFromFileA
187D3DXLoadPRTCompBufferFromFileW
188D3DXLoadPatchMeshFromXof
189D3DXLoadSkinMeshFromXof
190D3DXLoadSurfaceFromFileA
191D3DXLoadSurfaceFromFileInMemory
192D3DXLoadSurfaceFromFileW
193D3DXLoadSurfaceFromMemory
194D3DXLoadSurfaceFromResourceA
195D3DXLoadSurfaceFromResourceW
196D3DXLoadSurfaceFromSurface
197D3DXLoadVolumeFromFileA
198D3DXLoadVolumeFromFileInMemory
199D3DXLoadVolumeFromFileW
200D3DXLoadVolumeFromMemory
201D3DXLoadVolumeFromResourceA
202D3DXLoadVolumeFromResourceW
203D3DXLoadVolumeFromVolume
204D3DXMatrixAffineTransformation
205D3DXMatrixAffineTransformation2D
206D3DXMatrixDecompose
207D3DXMatrixDeterminant
208D3DXMatrixInverse
209D3DXMatrixLookAtLH
210D3DXMatrixLookAtRH
211D3DXMatrixMultiply
212D3DXMatrixMultiplyTranspose
213D3DXMatrixOrthoLH
214D3DXMatrixOrthoOffCenterLH
215D3DXMatrixOrthoOffCenterRH
216D3DXMatrixOrthoRH
217D3DXMatrixPerspectiveFovLH
218D3DXMatrixPerspectiveFovRH
219D3DXMatrixPerspectiveLH
220D3DXMatrixPerspectiveOffCenterLH
221D3DXMatrixPerspectiveOffCenterRH
222D3DXMatrixPerspectiveRH
223D3DXMatrixReflect
224D3DXMatrixRotationAxis
225D3DXMatrixRotationQuaternion
226D3DXMatrixRotationX
227D3DXMatrixRotationY
228D3DXMatrixRotationYawPitchRoll
229D3DXMatrixRotationZ
230D3DXMatrixScaling
231D3DXMatrixShadow
232D3DXMatrixTransformation
233D3DXMatrixTransformation2D
234D3DXMatrixTranslation
235D3DXMatrixTranspose
236D3DXOptimizeFaces
237D3DXOptimizeVertices
238D3DXPlaneFromPointNormal
239D3DXPlaneFromPoints
240D3DXPlaneIntersectLine
241D3DXPlaneNormalize
242D3DXPlaneTransform
243D3DXPlaneTransformArray
244D3DXPreprocessShader
245D3DXPreprocessShaderFromFileA
246D3DXPreprocessShaderFromFileW
247D3DXPreprocessShaderFromResourceA
248D3DXPreprocessShaderFromResourceW
249D3DXQuaternionBaryCentric
250D3DXQuaternionExp
251D3DXQuaternionInverse
252D3DXQuaternionLn
253D3DXQuaternionMultiply
254D3DXQuaternionNormalize
255D3DXQuaternionRotationAxis
256D3DXQuaternionRotationMatrix
257D3DXQuaternionRotationYawPitchRoll
258D3DXQuaternionSlerp
259D3DXQuaternionSquad
260D3DXQuaternionSquadSetup
261D3DXQuaternionToAxisAngle
262D3DXRectPatchSize
263D3DXSHAdd
264D3DXSHDot
265D3DXSHEvalConeLight
266D3DXSHEvalDirection
267D3DXSHEvalDirectionalLight
268D3DXSHEvalHemisphereLight
269D3DXSHEvalSphericalLight
270D3DXSHMultiply2
271D3DXSHMultiply3
272D3DXSHMultiply4
273D3DXSHMultiply5
274D3DXSHMultiply6
275D3DXSHPRTCompSplitMeshSC
276D3DXSHPRTCompSuperCluster
277D3DXSHProjectCubeMap
278D3DXSHRotate
279D3DXSHRotateZ
280D3DXSHScale
281D3DXSaveMeshHierarchyToFileA
282D3DXSaveMeshHierarchyToFileW
283D3DXSaveMeshToXA
284D3DXSaveMeshToXW
285D3DXSavePRTBufferToFileA
286D3DXSavePRTBufferToFileW
287D3DXSavePRTCompBufferToFileA
288D3DXSavePRTCompBufferToFileW
289D3DXSaveSurfaceToFileA
290D3DXSaveSurfaceToFileInMemory
291D3DXSaveSurfaceToFileW
292D3DXSaveTextureToFileA
293D3DXSaveTextureToFileInMemory
294D3DXSaveTextureToFileW
295D3DXSaveVolumeToFileA
296D3DXSaveVolumeToFileInMemory
297D3DXSaveVolumeToFileW
298D3DXSimplifyMesh
299D3DXSphereBoundProbe
300D3DXSplitMesh
301D3DXTessellateNPatches
302D3DXTessellateRectPatch
303D3DXTessellateTriPatch
304D3DXTriPatchSize
305D3DXUVAtlasCreate
306D3DXUVAtlasPack
307D3DXUVAtlasPartition
308D3DXValidMesh
309D3DXValidPatchMesh
310D3DXVec2BaryCentric
311D3DXVec2CatmullRom
312D3DXVec2Hermite
313D3DXVec2Normalize
314D3DXVec2Transform
315D3DXVec2TransformArray
316D3DXVec2TransformCoord
317D3DXVec2TransformCoordArray
318D3DXVec2TransformNormal
319D3DXVec2TransformNormalArray
320D3DXVec3BaryCentric
321D3DXVec3CatmullRom
322D3DXVec3Hermite
323D3DXVec3Normalize
324D3DXVec3Project
325D3DXVec3ProjectArray
326D3DXVec3Transform
327D3DXVec3TransformArray
328D3DXVec3TransformCoord
329D3DXVec3TransformCoordArray
330D3DXVec3TransformNormal
331D3DXVec3TransformNormalArray
332D3DXVec3Unproject
333D3DXVec3UnprojectArray
334D3DXVec4BaryCentric
335D3DXVec4CatmullRom
336D3DXVec4Cross
337D3DXVec4Hermite
338D3DXVec4Normalize
339D3DXVec4Transform
340D3DXVec4TransformArray
341D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_36.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_36.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_36.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateFragmentLinkerEx
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderConstantTableEx
169D3DXGetShaderInputSemantics
170D3DXGetShaderOutputSemantics
171D3DXGetShaderSamplers
172D3DXGetShaderSize
173D3DXGetShaderVersion
174D3DXGetVertexShaderProfile
175D3DXIntersect
176D3DXIntersectSubset
177D3DXIntersectTri
178D3DXLoadMeshFromXA
179D3DXLoadMeshFromXInMemory
180D3DXLoadMeshFromXResource
181D3DXLoadMeshFromXW
182D3DXLoadMeshFromXof
183D3DXLoadMeshHierarchyFromXA
184D3DXLoadMeshHierarchyFromXInMemory
185D3DXLoadMeshHierarchyFromXW
186D3DXLoadPRTBufferFromFileA
187D3DXLoadPRTBufferFromFileW
188D3DXLoadPRTCompBufferFromFileA
189D3DXLoadPRTCompBufferFromFileW
190D3DXLoadPatchMeshFromXof
191D3DXLoadSkinMeshFromXof
192D3DXLoadSurfaceFromFileA
193D3DXLoadSurfaceFromFileInMemory
194D3DXLoadSurfaceFromFileW
195D3DXLoadSurfaceFromMemory
196D3DXLoadSurfaceFromResourceA
197D3DXLoadSurfaceFromResourceW
198D3DXLoadSurfaceFromSurface
199D3DXLoadVolumeFromFileA
200D3DXLoadVolumeFromFileInMemory
201D3DXLoadVolumeFromFileW
202D3DXLoadVolumeFromMemory
203D3DXLoadVolumeFromResourceA
204D3DXLoadVolumeFromResourceW
205D3DXLoadVolumeFromVolume
206D3DXMatrixAffineTransformation
207D3DXMatrixAffineTransformation2D
208D3DXMatrixDecompose
209D3DXMatrixDeterminant
210D3DXMatrixInverse
211D3DXMatrixLookAtLH
212D3DXMatrixLookAtRH
213D3DXMatrixMultiply
214D3DXMatrixMultiplyTranspose
215D3DXMatrixOrthoLH
216D3DXMatrixOrthoOffCenterLH
217D3DXMatrixOrthoOffCenterRH
218D3DXMatrixOrthoRH
219D3DXMatrixPerspectiveFovLH
220D3DXMatrixPerspectiveFovRH
221D3DXMatrixPerspectiveLH
222D3DXMatrixPerspectiveOffCenterLH
223D3DXMatrixPerspectiveOffCenterRH
224D3DXMatrixPerspectiveRH
225D3DXMatrixReflect
226D3DXMatrixRotationAxis
227D3DXMatrixRotationQuaternion
228D3DXMatrixRotationX
229D3DXMatrixRotationY
230D3DXMatrixRotationYawPitchRoll
231D3DXMatrixRotationZ
232D3DXMatrixScaling
233D3DXMatrixShadow
234D3DXMatrixTransformation
235D3DXMatrixTransformation2D
236D3DXMatrixTranslation
237D3DXMatrixTranspose
238D3DXOptimizeFaces
239D3DXOptimizeVertices
240D3DXPlaneFromPointNormal
241D3DXPlaneFromPoints
242D3DXPlaneIntersectLine
243D3DXPlaneNormalize
244D3DXPlaneTransform
245D3DXPlaneTransformArray
246D3DXPreprocessShader
247D3DXPreprocessShaderFromFileA
248D3DXPreprocessShaderFromFileW
249D3DXPreprocessShaderFromResourceA
250D3DXPreprocessShaderFromResourceW
251D3DXQuaternionBaryCentric
252D3DXQuaternionExp
253D3DXQuaternionInverse
254D3DXQuaternionLn
255D3DXQuaternionMultiply
256D3DXQuaternionNormalize
257D3DXQuaternionRotationAxis
258D3DXQuaternionRotationMatrix
259D3DXQuaternionRotationYawPitchRoll
260D3DXQuaternionSlerp
261D3DXQuaternionSquad
262D3DXQuaternionSquadSetup
263D3DXQuaternionToAxisAngle
264D3DXRectPatchSize
265D3DXSHAdd
266D3DXSHDot
267D3DXSHEvalConeLight
268D3DXSHEvalDirection
269D3DXSHEvalDirectionalLight
270D3DXSHEvalHemisphereLight
271D3DXSHEvalSphericalLight
272D3DXSHMultiply2
273D3DXSHMultiply3
274D3DXSHMultiply4
275D3DXSHMultiply5
276D3DXSHMultiply6
277D3DXSHPRTCompSplitMeshSC
278D3DXSHPRTCompSuperCluster
279D3DXSHProjectCubeMap
280D3DXSHRotate
281D3DXSHRotateZ
282D3DXSHScale
283D3DXSaveMeshHierarchyToFileA
284D3DXSaveMeshHierarchyToFileW
285D3DXSaveMeshToXA
286D3DXSaveMeshToXW
287D3DXSavePRTBufferToFileA
288D3DXSavePRTBufferToFileW
289D3DXSavePRTCompBufferToFileA
290D3DXSavePRTCompBufferToFileW
291D3DXSaveSurfaceToFileA
292D3DXSaveSurfaceToFileInMemory
293D3DXSaveSurfaceToFileW
294D3DXSaveTextureToFileA
295D3DXSaveTextureToFileInMemory
296D3DXSaveTextureToFileW
297D3DXSaveVolumeToFileA
298D3DXSaveVolumeToFileInMemory
299D3DXSaveVolumeToFileW
300D3DXSimplifyMesh
301D3DXSphereBoundProbe
302D3DXSplitMesh
303D3DXTessellateNPatches
304D3DXTessellateRectPatch
305D3DXTessellateTriPatch
306D3DXTriPatchSize
307D3DXUVAtlasCreate
308D3DXUVAtlasPack
309D3DXUVAtlasPartition
310D3DXValidMesh
311D3DXValidPatchMesh
312D3DXVec2BaryCentric
313D3DXVec2CatmullRom
314D3DXVec2Hermite
315D3DXVec2Normalize
316D3DXVec2Transform
317D3DXVec2TransformArray
318D3DXVec2TransformCoord
319D3DXVec2TransformCoordArray
320D3DXVec2TransformNormal
321D3DXVec2TransformNormalArray
322D3DXVec3BaryCentric
323D3DXVec3CatmullRom
324D3DXVec3Hermite
325D3DXVec3Normalize
326D3DXVec3Project
327D3DXVec3ProjectArray
328D3DXVec3Transform
329D3DXVec3TransformArray
330D3DXVec3TransformCoord
331D3DXVec3TransformCoordArray
332D3DXVec3TransformNormal
333D3DXVec3TransformNormalArray
334D3DXVec3Unproject
335D3DXVec3UnprojectArray
336D3DXVec4BaryCentric
337D3DXVec4CatmullRom
338D3DXVec4Cross
339D3DXVec4Hermite
340D3DXVec4Normalize
341D3DXVec4Transform
342D3DXVec4TransformArray
343D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_37.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_37.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_37.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateFragmentLinkerEx
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderConstantTableEx
169D3DXGetShaderInputSemantics
170D3DXGetShaderOutputSemantics
171D3DXGetShaderSamplers
172D3DXGetShaderSize
173D3DXGetShaderVersion
174D3DXGetVertexShaderProfile
175D3DXIntersect
176D3DXIntersectSubset
177D3DXIntersectTri
178D3DXLoadMeshFromXA
179D3DXLoadMeshFromXInMemory
180D3DXLoadMeshFromXResource
181D3DXLoadMeshFromXW
182D3DXLoadMeshFromXof
183D3DXLoadMeshHierarchyFromXA
184D3DXLoadMeshHierarchyFromXInMemory
185D3DXLoadMeshHierarchyFromXW
186D3DXLoadPRTBufferFromFileA
187D3DXLoadPRTBufferFromFileW
188D3DXLoadPRTCompBufferFromFileA
189D3DXLoadPRTCompBufferFromFileW
190D3DXLoadPatchMeshFromXof
191D3DXLoadSkinMeshFromXof
192D3DXLoadSurfaceFromFileA
193D3DXLoadSurfaceFromFileInMemory
194D3DXLoadSurfaceFromFileW
195D3DXLoadSurfaceFromMemory
196D3DXLoadSurfaceFromResourceA
197D3DXLoadSurfaceFromResourceW
198D3DXLoadSurfaceFromSurface
199D3DXLoadVolumeFromFileA
200D3DXLoadVolumeFromFileInMemory
201D3DXLoadVolumeFromFileW
202D3DXLoadVolumeFromMemory
203D3DXLoadVolumeFromResourceA
204D3DXLoadVolumeFromResourceW
205D3DXLoadVolumeFromVolume
206D3DXMatrixAffineTransformation
207D3DXMatrixAffineTransformation2D
208D3DXMatrixDecompose
209D3DXMatrixDeterminant
210D3DXMatrixInverse
211D3DXMatrixLookAtLH
212D3DXMatrixLookAtRH
213D3DXMatrixMultiply
214D3DXMatrixMultiplyTranspose
215D3DXMatrixOrthoLH
216D3DXMatrixOrthoOffCenterLH
217D3DXMatrixOrthoOffCenterRH
218D3DXMatrixOrthoRH
219D3DXMatrixPerspectiveFovLH
220D3DXMatrixPerspectiveFovRH
221D3DXMatrixPerspectiveLH
222D3DXMatrixPerspectiveOffCenterLH
223D3DXMatrixPerspectiveOffCenterRH
224D3DXMatrixPerspectiveRH
225D3DXMatrixReflect
226D3DXMatrixRotationAxis
227D3DXMatrixRotationQuaternion
228D3DXMatrixRotationX
229D3DXMatrixRotationY
230D3DXMatrixRotationYawPitchRoll
231D3DXMatrixRotationZ
232D3DXMatrixScaling
233D3DXMatrixShadow
234D3DXMatrixTransformation
235D3DXMatrixTransformation2D
236D3DXMatrixTranslation
237D3DXMatrixTranspose
238D3DXOptimizeFaces
239D3DXOptimizeVertices
240D3DXPlaneFromPointNormal
241D3DXPlaneFromPoints
242D3DXPlaneIntersectLine
243D3DXPlaneNormalize
244D3DXPlaneTransform
245D3DXPlaneTransformArray
246D3DXPreprocessShader
247D3DXPreprocessShaderFromFileA
248D3DXPreprocessShaderFromFileW
249D3DXPreprocessShaderFromResourceA
250D3DXPreprocessShaderFromResourceW
251D3DXQuaternionBaryCentric
252D3DXQuaternionExp
253D3DXQuaternionInverse
254D3DXQuaternionLn
255D3DXQuaternionMultiply
256D3DXQuaternionNormalize
257D3DXQuaternionRotationAxis
258D3DXQuaternionRotationMatrix
259D3DXQuaternionRotationYawPitchRoll
260D3DXQuaternionSlerp
261D3DXQuaternionSquad
262D3DXQuaternionSquadSetup
263D3DXQuaternionToAxisAngle
264D3DXRectPatchSize
265D3DXSHAdd
266D3DXSHDot
267D3DXSHEvalConeLight
268D3DXSHEvalDirection
269D3DXSHEvalDirectionalLight
270D3DXSHEvalHemisphereLight
271D3DXSHEvalSphericalLight
272D3DXSHMultiply2
273D3DXSHMultiply3
274D3DXSHMultiply4
275D3DXSHMultiply5
276D3DXSHMultiply6
277D3DXSHPRTCompSplitMeshSC
278D3DXSHPRTCompSuperCluster
279D3DXSHProjectCubeMap
280D3DXSHRotate
281D3DXSHRotateZ
282D3DXSHScale
283D3DXSaveMeshHierarchyToFileA
284D3DXSaveMeshHierarchyToFileW
285D3DXSaveMeshToXA
286D3DXSaveMeshToXW
287D3DXSavePRTBufferToFileA
288D3DXSavePRTBufferToFileW
289D3DXSavePRTCompBufferToFileA
290D3DXSavePRTCompBufferToFileW
291D3DXSaveSurfaceToFileA
292D3DXSaveSurfaceToFileInMemory
293D3DXSaveSurfaceToFileW
294D3DXSaveTextureToFileA
295D3DXSaveTextureToFileInMemory
296D3DXSaveTextureToFileW
297D3DXSaveVolumeToFileA
298D3DXSaveVolumeToFileInMemory
299D3DXSaveVolumeToFileW
300D3DXSimplifyMesh
301D3DXSphereBoundProbe
302D3DXSplitMesh
303D3DXTessellateNPatches
304D3DXTessellateRectPatch
305D3DXTessellateTriPatch
306D3DXTriPatchSize
307D3DXUVAtlasCreate
308D3DXUVAtlasPack
309D3DXUVAtlasPartition
310D3DXValidMesh
311D3DXValidPatchMesh
312D3DXVec2BaryCentric
313D3DXVec2CatmullRom
314D3DXVec2Hermite
315D3DXVec2Normalize
316D3DXVec2Transform
317D3DXVec2TransformArray
318D3DXVec2TransformCoord
319D3DXVec2TransformCoordArray
320D3DXVec2TransformNormal
321D3DXVec2TransformNormalArray
322D3DXVec3BaryCentric
323D3DXVec3CatmullRom
324D3DXVec3Hermite
325D3DXVec3Normalize
326D3DXVec3Project
327D3DXVec3ProjectArray
328D3DXVec3Transform
329D3DXVec3TransformArray
330D3DXVec3TransformCoord
331D3DXVec3TransformCoordArray
332D3DXVec3TransformNormal
333D3DXVec3TransformNormalArray
334D3DXVec3Unproject
335D3DXVec3UnprojectArray
336D3DXVec4BaryCentric
337D3DXVec4CatmullRom
338D3DXVec4Cross
339D3DXVec4Hermite
340D3DXVec4Normalize
341D3DXVec4Transform
342D3DXVec4TransformArray
343D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_38.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_38.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_38.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateFragmentLinkerEx
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderConstantTableEx
169D3DXGetShaderInputSemantics
170D3DXGetShaderOutputSemantics
171D3DXGetShaderSamplers
172D3DXGetShaderSize
173D3DXGetShaderVersion
174D3DXGetVertexShaderProfile
175D3DXIntersect
176D3DXIntersectSubset
177D3DXIntersectTri
178D3DXLoadMeshFromXA
179D3DXLoadMeshFromXInMemory
180D3DXLoadMeshFromXResource
181D3DXLoadMeshFromXW
182D3DXLoadMeshFromXof
183D3DXLoadMeshHierarchyFromXA
184D3DXLoadMeshHierarchyFromXInMemory
185D3DXLoadMeshHierarchyFromXW
186D3DXLoadPRTBufferFromFileA
187D3DXLoadPRTBufferFromFileW
188D3DXLoadPRTCompBufferFromFileA
189D3DXLoadPRTCompBufferFromFileW
190D3DXLoadPatchMeshFromXof
191D3DXLoadSkinMeshFromXof
192D3DXLoadSurfaceFromFileA
193D3DXLoadSurfaceFromFileInMemory
194D3DXLoadSurfaceFromFileW
195D3DXLoadSurfaceFromMemory
196D3DXLoadSurfaceFromResourceA
197D3DXLoadSurfaceFromResourceW
198D3DXLoadSurfaceFromSurface
199D3DXLoadVolumeFromFileA
200D3DXLoadVolumeFromFileInMemory
201D3DXLoadVolumeFromFileW
202D3DXLoadVolumeFromMemory
203D3DXLoadVolumeFromResourceA
204D3DXLoadVolumeFromResourceW
205D3DXLoadVolumeFromVolume
206D3DXMatrixAffineTransformation
207D3DXMatrixAffineTransformation2D
208D3DXMatrixDecompose
209D3DXMatrixDeterminant
210D3DXMatrixInverse
211D3DXMatrixLookAtLH
212D3DXMatrixLookAtRH
213D3DXMatrixMultiply
214D3DXMatrixMultiplyTranspose
215D3DXMatrixOrthoLH
216D3DXMatrixOrthoOffCenterLH
217D3DXMatrixOrthoOffCenterRH
218D3DXMatrixOrthoRH
219D3DXMatrixPerspectiveFovLH
220D3DXMatrixPerspectiveFovRH
221D3DXMatrixPerspectiveLH
222D3DXMatrixPerspectiveOffCenterLH
223D3DXMatrixPerspectiveOffCenterRH
224D3DXMatrixPerspectiveRH
225D3DXMatrixReflect
226D3DXMatrixRotationAxis
227D3DXMatrixRotationQuaternion
228D3DXMatrixRotationX
229D3DXMatrixRotationY
230D3DXMatrixRotationYawPitchRoll
231D3DXMatrixRotationZ
232D3DXMatrixScaling
233D3DXMatrixShadow
234D3DXMatrixTransformation
235D3DXMatrixTransformation2D
236D3DXMatrixTranslation
237D3DXMatrixTranspose
238D3DXOptimizeFaces
239D3DXOptimizeVertices
240D3DXPlaneFromPointNormal
241D3DXPlaneFromPoints
242D3DXPlaneIntersectLine
243D3DXPlaneNormalize
244D3DXPlaneTransform
245D3DXPlaneTransformArray
246D3DXPreprocessShader
247D3DXPreprocessShaderFromFileA
248D3DXPreprocessShaderFromFileW
249D3DXPreprocessShaderFromResourceA
250D3DXPreprocessShaderFromResourceW
251D3DXQuaternionBaryCentric
252D3DXQuaternionExp
253D3DXQuaternionInverse
254D3DXQuaternionLn
255D3DXQuaternionMultiply
256D3DXQuaternionNormalize
257D3DXQuaternionRotationAxis
258D3DXQuaternionRotationMatrix
259D3DXQuaternionRotationYawPitchRoll
260D3DXQuaternionSlerp
261D3DXQuaternionSquad
262D3DXQuaternionSquadSetup
263D3DXQuaternionToAxisAngle
264D3DXRectPatchSize
265D3DXSHAdd
266D3DXSHDot
267D3DXSHEvalConeLight
268D3DXSHEvalDirection
269D3DXSHEvalDirectionalLight
270D3DXSHEvalHemisphereLight
271D3DXSHEvalSphericalLight
272D3DXSHMultiply2
273D3DXSHMultiply3
274D3DXSHMultiply4
275D3DXSHMultiply5
276D3DXSHMultiply6
277D3DXSHPRTCompSplitMeshSC
278D3DXSHPRTCompSuperCluster
279D3DXSHProjectCubeMap
280D3DXSHRotate
281D3DXSHRotateZ
282D3DXSHScale
283D3DXSaveMeshHierarchyToFileA
284D3DXSaveMeshHierarchyToFileW
285D3DXSaveMeshToXA
286D3DXSaveMeshToXW
287D3DXSavePRTBufferToFileA
288D3DXSavePRTBufferToFileW
289D3DXSavePRTCompBufferToFileA
290D3DXSavePRTCompBufferToFileW
291D3DXSaveSurfaceToFileA
292D3DXSaveSurfaceToFileInMemory
293D3DXSaveSurfaceToFileW
294D3DXSaveTextureToFileA
295D3DXSaveTextureToFileInMemory
296D3DXSaveTextureToFileW
297D3DXSaveVolumeToFileA
298D3DXSaveVolumeToFileInMemory
299D3DXSaveVolumeToFileW
300D3DXSimplifyMesh
301D3DXSphereBoundProbe
302D3DXSplitMesh
303D3DXTessellateNPatches
304D3DXTessellateRectPatch
305D3DXTessellateTriPatch
306D3DXTriPatchSize
307D3DXUVAtlasCreate
308D3DXUVAtlasPack
309D3DXUVAtlasPartition
310D3DXValidMesh
311D3DXValidPatchMesh
312D3DXVec2BaryCentric
313D3DXVec2CatmullRom
314D3DXVec2Hermite
315D3DXVec2Normalize
316D3DXVec2Transform
317D3DXVec2TransformArray
318D3DXVec2TransformCoord
319D3DXVec2TransformCoordArray
320D3DXVec2TransformNormal
321D3DXVec2TransformNormalArray
322D3DXVec3BaryCentric
323D3DXVec3CatmullRom
324D3DXVec3Hermite
325D3DXVec3Normalize
326D3DXVec3Project
327D3DXVec3ProjectArray
328D3DXVec3Transform
329D3DXVec3TransformArray
330D3DXVec3TransformCoord
331D3DXVec3TransformCoordArray
332D3DXVec3TransformNormal
333D3DXVec3TransformNormalArray
334D3DXVec3Unproject
335D3DXVec3UnprojectArray
336D3DXVec4BaryCentric
337D3DXVec4CatmullRom
338D3DXVec4Cross
339D3DXVec4Hermite
340D3DXVec4Normalize
341D3DXVec4Transform
342D3DXVec4TransformArray
343D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_39.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_39.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_39.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateFragmentLinkerEx
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderConstantTableEx
169D3DXGetShaderInputSemantics
170D3DXGetShaderOutputSemantics
171D3DXGetShaderSamplers
172D3DXGetShaderSize
173D3DXGetShaderVersion
174D3DXGetVertexShaderProfile
175D3DXIntersect
176D3DXIntersectSubset
177D3DXIntersectTri
178D3DXLoadMeshFromXA
179D3DXLoadMeshFromXInMemory
180D3DXLoadMeshFromXResource
181D3DXLoadMeshFromXW
182D3DXLoadMeshFromXof
183D3DXLoadMeshHierarchyFromXA
184D3DXLoadMeshHierarchyFromXInMemory
185D3DXLoadMeshHierarchyFromXW
186D3DXLoadPRTBufferFromFileA
187D3DXLoadPRTBufferFromFileW
188D3DXLoadPRTCompBufferFromFileA
189D3DXLoadPRTCompBufferFromFileW
190D3DXLoadPatchMeshFromXof
191D3DXLoadSkinMeshFromXof
192D3DXLoadSurfaceFromFileA
193D3DXLoadSurfaceFromFileInMemory
194D3DXLoadSurfaceFromFileW
195D3DXLoadSurfaceFromMemory
196D3DXLoadSurfaceFromResourceA
197D3DXLoadSurfaceFromResourceW
198D3DXLoadSurfaceFromSurface
199D3DXLoadVolumeFromFileA
200D3DXLoadVolumeFromFileInMemory
201D3DXLoadVolumeFromFileW
202D3DXLoadVolumeFromMemory
203D3DXLoadVolumeFromResourceA
204D3DXLoadVolumeFromResourceW
205D3DXLoadVolumeFromVolume
206D3DXMatrixAffineTransformation
207D3DXMatrixAffineTransformation2D
208D3DXMatrixDecompose
209D3DXMatrixDeterminant
210D3DXMatrixInverse
211D3DXMatrixLookAtLH
212D3DXMatrixLookAtRH
213D3DXMatrixMultiply
214D3DXMatrixMultiplyTranspose
215D3DXMatrixOrthoLH
216D3DXMatrixOrthoOffCenterLH
217D3DXMatrixOrthoOffCenterRH
218D3DXMatrixOrthoRH
219D3DXMatrixPerspectiveFovLH
220D3DXMatrixPerspectiveFovRH
221D3DXMatrixPerspectiveLH
222D3DXMatrixPerspectiveOffCenterLH
223D3DXMatrixPerspectiveOffCenterRH
224D3DXMatrixPerspectiveRH
225D3DXMatrixReflect
226D3DXMatrixRotationAxis
227D3DXMatrixRotationQuaternion
228D3DXMatrixRotationX
229D3DXMatrixRotationY
230D3DXMatrixRotationYawPitchRoll
231D3DXMatrixRotationZ
232D3DXMatrixScaling
233D3DXMatrixShadow
234D3DXMatrixTransformation
235D3DXMatrixTransformation2D
236D3DXMatrixTranslation
237D3DXMatrixTranspose
238D3DXOptimizeFaces
239D3DXOptimizeVertices
240D3DXPlaneFromPointNormal
241D3DXPlaneFromPoints
242D3DXPlaneIntersectLine
243D3DXPlaneNormalize
244D3DXPlaneTransform
245D3DXPlaneTransformArray
246D3DXPreprocessShader
247D3DXPreprocessShaderFromFileA
248D3DXPreprocessShaderFromFileW
249D3DXPreprocessShaderFromResourceA
250D3DXPreprocessShaderFromResourceW
251D3DXQuaternionBaryCentric
252D3DXQuaternionExp
253D3DXQuaternionInverse
254D3DXQuaternionLn
255D3DXQuaternionMultiply
256D3DXQuaternionNormalize
257D3DXQuaternionRotationAxis
258D3DXQuaternionRotationMatrix
259D3DXQuaternionRotationYawPitchRoll
260D3DXQuaternionSlerp
261D3DXQuaternionSquad
262D3DXQuaternionSquadSetup
263D3DXQuaternionToAxisAngle
264D3DXRectPatchSize
265D3DXSHAdd
266D3DXSHDot
267D3DXSHEvalConeLight
268D3DXSHEvalDirection
269D3DXSHEvalDirectionalLight
270D3DXSHEvalHemisphereLight
271D3DXSHEvalSphericalLight
272D3DXSHMultiply2
273D3DXSHMultiply3
274D3DXSHMultiply4
275D3DXSHMultiply5
276D3DXSHMultiply6
277D3DXSHPRTCompSplitMeshSC
278D3DXSHPRTCompSuperCluster
279D3DXSHProjectCubeMap
280D3DXSHRotate
281D3DXSHRotateZ
282D3DXSHScale
283D3DXSaveMeshHierarchyToFileA
284D3DXSaveMeshHierarchyToFileW
285D3DXSaveMeshToXA
286D3DXSaveMeshToXW
287D3DXSavePRTBufferToFileA
288D3DXSavePRTBufferToFileW
289D3DXSavePRTCompBufferToFileA
290D3DXSavePRTCompBufferToFileW
291D3DXSaveSurfaceToFileA
292D3DXSaveSurfaceToFileInMemory
293D3DXSaveSurfaceToFileW
294D3DXSaveTextureToFileA
295D3DXSaveTextureToFileInMemory
296D3DXSaveTextureToFileW
297D3DXSaveVolumeToFileA
298D3DXSaveVolumeToFileInMemory
299D3DXSaveVolumeToFileW
300D3DXSimplifyMesh
301D3DXSphereBoundProbe
302D3DXSplitMesh
303D3DXTessellateNPatches
304D3DXTessellateRectPatch
305D3DXTessellateTriPatch
306D3DXTriPatchSize
307D3DXUVAtlasCreate
308D3DXUVAtlasPack
309D3DXUVAtlasPartition
310D3DXValidMesh
311D3DXValidPatchMesh
312D3DXVec2BaryCentric
313D3DXVec2CatmullRom
314D3DXVec2Hermite
315D3DXVec2Normalize
316D3DXVec2Transform
317D3DXVec2TransformArray
318D3DXVec2TransformCoord
319D3DXVec2TransformCoordArray
320D3DXVec2TransformNormal
321D3DXVec2TransformNormalArray
322D3DXVec3BaryCentric
323D3DXVec3CatmullRom
324D3DXVec3Hermite
325D3DXVec3Normalize
326D3DXVec3Project
327D3DXVec3ProjectArray
328D3DXVec3Transform
329D3DXVec3TransformArray
330D3DXVec3TransformCoord
331D3DXVec3TransformCoordArray
332D3DXVec3TransformNormal
333D3DXVec3TransformNormalArray
334D3DXVec3Unproject
335D3DXVec3UnprojectArray
336D3DXVec4BaryCentric
337D3DXVec4CatmullRom
338D3DXVec4Cross
339D3DXVec4Hermite
340D3DXVec4Normalize
341D3DXVec4Transform
342D3DXVec4TransformArray
343D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_40.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_40.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateFragmentLinkerEx
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderConstantTableEx
169D3DXGetShaderInputSemantics
170D3DXGetShaderOutputSemantics
171D3DXGetShaderSamplers
172D3DXGetShaderSize
173D3DXGetShaderVersion
174D3DXGetVertexShaderProfile
175D3DXIntersect
176D3DXIntersectSubset
177D3DXIntersectTri
178D3DXLoadMeshFromXA
179D3DXLoadMeshFromXInMemory
180D3DXLoadMeshFromXResource
181D3DXLoadMeshFromXW
182D3DXLoadMeshFromXof
183D3DXLoadMeshHierarchyFromXA
184D3DXLoadMeshHierarchyFromXInMemory
185D3DXLoadMeshHierarchyFromXW
186D3DXLoadPRTBufferFromFileA
187D3DXLoadPRTBufferFromFileW
188D3DXLoadPRTCompBufferFromFileA
189D3DXLoadPRTCompBufferFromFileW
190D3DXLoadPatchMeshFromXof
191D3DXLoadSkinMeshFromXof
192D3DXLoadSurfaceFromFileA
193D3DXLoadSurfaceFromFileInMemory
194D3DXLoadSurfaceFromFileW
195D3DXLoadSurfaceFromMemory
196D3DXLoadSurfaceFromResourceA
197D3DXLoadSurfaceFromResourceW
198D3DXLoadSurfaceFromSurface
199D3DXLoadVolumeFromFileA
200D3DXLoadVolumeFromFileInMemory
201D3DXLoadVolumeFromFileW
202D3DXLoadVolumeFromMemory
203D3DXLoadVolumeFromResourceA
204D3DXLoadVolumeFromResourceW
205D3DXLoadVolumeFromVolume
206D3DXMatrixAffineTransformation
207D3DXMatrixAffineTransformation2D
208D3DXMatrixDecompose
209D3DXMatrixDeterminant
210D3DXMatrixInverse
211D3DXMatrixLookAtLH
212D3DXMatrixLookAtRH
213D3DXMatrixMultiply
214D3DXMatrixMultiplyTranspose
215D3DXMatrixOrthoLH
216D3DXMatrixOrthoOffCenterLH
217D3DXMatrixOrthoOffCenterRH
218D3DXMatrixOrthoRH
219D3DXMatrixPerspectiveFovLH
220D3DXMatrixPerspectiveFovRH
221D3DXMatrixPerspectiveLH
222D3DXMatrixPerspectiveOffCenterLH
223D3DXMatrixPerspectiveOffCenterRH
224D3DXMatrixPerspectiveRH
225D3DXMatrixReflect
226D3DXMatrixRotationAxis
227D3DXMatrixRotationQuaternion
228D3DXMatrixRotationX
229D3DXMatrixRotationY
230D3DXMatrixRotationYawPitchRoll
231D3DXMatrixRotationZ
232D3DXMatrixScaling
233D3DXMatrixShadow
234D3DXMatrixTransformation
235D3DXMatrixTransformation2D
236D3DXMatrixTranslation
237D3DXMatrixTranspose
238D3DXOptimizeFaces
239D3DXOptimizeVertices
240D3DXPlaneFromPointNormal
241D3DXPlaneFromPoints
242D3DXPlaneIntersectLine
243D3DXPlaneNormalize
244D3DXPlaneTransform
245D3DXPlaneTransformArray
246D3DXPreprocessShader
247D3DXPreprocessShaderFromFileA
248D3DXPreprocessShaderFromFileW
249D3DXPreprocessShaderFromResourceA
250D3DXPreprocessShaderFromResourceW
251D3DXQuaternionBaryCentric
252D3DXQuaternionExp
253D3DXQuaternionInverse
254D3DXQuaternionLn
255D3DXQuaternionMultiply
256D3DXQuaternionNormalize
257D3DXQuaternionRotationAxis
258D3DXQuaternionRotationMatrix
259D3DXQuaternionRotationYawPitchRoll
260D3DXQuaternionSlerp
261D3DXQuaternionSquad
262D3DXQuaternionSquadSetup
263D3DXQuaternionToAxisAngle
264D3DXRectPatchSize
265D3DXSHAdd
266D3DXSHDot
267D3DXSHEvalConeLight
268D3DXSHEvalDirection
269D3DXSHEvalDirectionalLight
270D3DXSHEvalHemisphereLight
271D3DXSHEvalSphericalLight
272D3DXSHMultiply2
273D3DXSHMultiply3
274D3DXSHMultiply4
275D3DXSHMultiply5
276D3DXSHMultiply6
277D3DXSHPRTCompSplitMeshSC
278D3DXSHPRTCompSuperCluster
279D3DXSHProjectCubeMap
280D3DXSHRotate
281D3DXSHRotateZ
282D3DXSHScale
283D3DXSaveMeshHierarchyToFileA
284D3DXSaveMeshHierarchyToFileW
285D3DXSaveMeshToXA
286D3DXSaveMeshToXW
287D3DXSavePRTBufferToFileA
288D3DXSavePRTBufferToFileW
289D3DXSavePRTCompBufferToFileA
290D3DXSavePRTCompBufferToFileW
291D3DXSaveSurfaceToFileA
292D3DXSaveSurfaceToFileInMemory
293D3DXSaveSurfaceToFileW
294D3DXSaveTextureToFileA
295D3DXSaveTextureToFileInMemory
296D3DXSaveTextureToFileW
297D3DXSaveVolumeToFileA
298D3DXSaveVolumeToFileInMemory
299D3DXSaveVolumeToFileW
300D3DXSimplifyMesh
301D3DXSphereBoundProbe
302D3DXSplitMesh
303D3DXTessellateNPatches
304D3DXTessellateRectPatch
305D3DXTessellateTriPatch
306D3DXTriPatchSize
307D3DXUVAtlasCreate
308D3DXUVAtlasPack
309D3DXUVAtlasPartition
310D3DXValidMesh
311D3DXValidPatchMesh
312D3DXVec2BaryCentric
313D3DXVec2CatmullRom
314D3DXVec2Hermite
315D3DXVec2Normalize
316D3DXVec2Transform
317D3DXVec2TransformArray
318D3DXVec2TransformCoord
319D3DXVec2TransformCoordArray
320D3DXVec2TransformNormal
321D3DXVec2TransformNormalArray
322D3DXVec3BaryCentric
323D3DXVec3CatmullRom
324D3DXVec3Hermite
325D3DXVec3Normalize
326D3DXVec3Project
327D3DXVec3ProjectArray
328D3DXVec3Transform
329D3DXVec3TransformArray
330D3DXVec3TransformCoord
331D3DXVec3TransformCoordArray
332D3DXVec3TransformNormal
333D3DXVec3TransformNormalArray
334D3DXVec3Unproject
335D3DXVec3UnprojectArray
336D3DXVec4BaryCentric
337D3DXVec4CatmullRom
338D3DXVec4Cross
339D3DXVec4Hermite
340D3DXVec4Normalize
341D3DXVec4Transform
342D3DXVec4TransformArray
343D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_41.def created+343
......@@ -0,0 +1,343 @@
1;
2; Definition file of d3dx9_41.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_41.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateFragmentLinker
77D3DXCreateFragmentLinkerEx
78D3DXCreateKeyframedAnimationSet
79D3DXCreateLine
80D3DXCreateMatrixStack
81D3DXCreateMesh
82D3DXCreateMeshFVF
83D3DXCreateNPatchMesh
84D3DXCreatePMeshFromStream
85D3DXCreatePRTBuffer
86D3DXCreatePRTBufferTex
87D3DXCreatePRTCompBuffer
88D3DXCreatePRTEngine
89D3DXCreatePatchMesh
90D3DXCreatePolygon
91D3DXCreateRenderToEnvMap
92D3DXCreateRenderToSurface
93D3DXCreateSPMesh
94D3DXCreateSkinInfo
95D3DXCreateSkinInfoFVF
96D3DXCreateSkinInfoFromBlendedMesh
97D3DXCreateSphere
98D3DXCreateSprite
99D3DXCreateTeapot
100D3DXCreateTextA
101D3DXCreateTextW
102D3DXCreateTexture
103D3DXCreateTextureFromFileA
104D3DXCreateTextureFromFileExA
105D3DXCreateTextureFromFileExW
106D3DXCreateTextureFromFileInMemory
107D3DXCreateTextureFromFileInMemoryEx
108D3DXCreateTextureFromFileW
109D3DXCreateTextureFromResourceA
110D3DXCreateTextureFromResourceExA
111D3DXCreateTextureFromResourceExW
112D3DXCreateTextureFromResourceW
113D3DXCreateTextureGutterHelper
114D3DXCreateTextureShader
115D3DXCreateTorus
116D3DXCreateVolumeTexture
117D3DXCreateVolumeTextureFromFileA
118D3DXCreateVolumeTextureFromFileExA
119D3DXCreateVolumeTextureFromFileExW
120D3DXCreateVolumeTextureFromFileInMemory
121D3DXCreateVolumeTextureFromFileInMemoryEx
122D3DXCreateVolumeTextureFromFileW
123D3DXCreateVolumeTextureFromResourceA
124D3DXCreateVolumeTextureFromResourceExA
125D3DXCreateVolumeTextureFromResourceExW
126D3DXCreateVolumeTextureFromResourceW
127D3DXDebugMute
128D3DXDeclaratorFromFVF
129D3DXDisassembleEffect
130D3DXDisassembleShader
131D3DXFVFFromDeclarator
132D3DXFileCreate
133D3DXFillCubeTexture
134D3DXFillCubeTextureTX
135D3DXFillTexture
136D3DXFillTextureTX
137D3DXFillVolumeTexture
138D3DXFillVolumeTextureTX
139D3DXFilterTexture
140D3DXFindShaderComment
141D3DXFloat16To32Array
142D3DXFloat32To16Array
143D3DXFrameAppendChild
144D3DXFrameCalculateBoundingSphere
145D3DXFrameDestroy
146D3DXFrameFind
147D3DXFrameNumNamedMatrices
148D3DXFrameRegisterNamedMatrices
149D3DXFresnelTerm
150D3DXGatherFragments
151D3DXGatherFragmentsFromFileA
152D3DXGatherFragmentsFromFileW
153D3DXGatherFragmentsFromResourceA
154D3DXGatherFragmentsFromResourceW
155D3DXGenerateOutputDecl
156D3DXGeneratePMesh
157D3DXGetDeclLength
158D3DXGetDeclVertexSize
159D3DXGetDriverLevel
160D3DXGetFVFVertexSize
161D3DXGetImageInfoFromFileA
162D3DXGetImageInfoFromFileInMemory
163D3DXGetImageInfoFromFileW
164D3DXGetImageInfoFromResourceA
165D3DXGetImageInfoFromResourceW
166D3DXGetPixelShaderProfile
167D3DXGetShaderConstantTable
168D3DXGetShaderConstantTableEx
169D3DXGetShaderInputSemantics
170D3DXGetShaderOutputSemantics
171D3DXGetShaderSamplers
172D3DXGetShaderSize
173D3DXGetShaderVersion
174D3DXGetVertexShaderProfile
175D3DXIntersect
176D3DXIntersectSubset
177D3DXIntersectTri
178D3DXLoadMeshFromXA
179D3DXLoadMeshFromXInMemory
180D3DXLoadMeshFromXResource
181D3DXLoadMeshFromXW
182D3DXLoadMeshFromXof
183D3DXLoadMeshHierarchyFromXA
184D3DXLoadMeshHierarchyFromXInMemory
185D3DXLoadMeshHierarchyFromXW
186D3DXLoadPRTBufferFromFileA
187D3DXLoadPRTBufferFromFileW
188D3DXLoadPRTCompBufferFromFileA
189D3DXLoadPRTCompBufferFromFileW
190D3DXLoadPatchMeshFromXof
191D3DXLoadSkinMeshFromXof
192D3DXLoadSurfaceFromFileA
193D3DXLoadSurfaceFromFileInMemory
194D3DXLoadSurfaceFromFileW
195D3DXLoadSurfaceFromMemory
196D3DXLoadSurfaceFromResourceA
197D3DXLoadSurfaceFromResourceW
198D3DXLoadSurfaceFromSurface
199D3DXLoadVolumeFromFileA
200D3DXLoadVolumeFromFileInMemory
201D3DXLoadVolumeFromFileW
202D3DXLoadVolumeFromMemory
203D3DXLoadVolumeFromResourceA
204D3DXLoadVolumeFromResourceW
205D3DXLoadVolumeFromVolume
206D3DXMatrixAffineTransformation
207D3DXMatrixAffineTransformation2D
208D3DXMatrixDecompose
209D3DXMatrixDeterminant
210D3DXMatrixInverse
211D3DXMatrixLookAtLH
212D3DXMatrixLookAtRH
213D3DXMatrixMultiply
214D3DXMatrixMultiplyTranspose
215D3DXMatrixOrthoLH
216D3DXMatrixOrthoOffCenterLH
217D3DXMatrixOrthoOffCenterRH
218D3DXMatrixOrthoRH
219D3DXMatrixPerspectiveFovLH
220D3DXMatrixPerspectiveFovRH
221D3DXMatrixPerspectiveLH
222D3DXMatrixPerspectiveOffCenterLH
223D3DXMatrixPerspectiveOffCenterRH
224D3DXMatrixPerspectiveRH
225D3DXMatrixReflect
226D3DXMatrixRotationAxis
227D3DXMatrixRotationQuaternion
228D3DXMatrixRotationX
229D3DXMatrixRotationY
230D3DXMatrixRotationYawPitchRoll
231D3DXMatrixRotationZ
232D3DXMatrixScaling
233D3DXMatrixShadow
234D3DXMatrixTransformation
235D3DXMatrixTransformation2D
236D3DXMatrixTranslation
237D3DXMatrixTranspose
238D3DXOptimizeFaces
239D3DXOptimizeVertices
240D3DXPlaneFromPointNormal
241D3DXPlaneFromPoints
242D3DXPlaneIntersectLine
243D3DXPlaneNormalize
244D3DXPlaneTransform
245D3DXPlaneTransformArray
246D3DXPreprocessShader
247D3DXPreprocessShaderFromFileA
248D3DXPreprocessShaderFromFileW
249D3DXPreprocessShaderFromResourceA
250D3DXPreprocessShaderFromResourceW
251D3DXQuaternionBaryCentric
252D3DXQuaternionExp
253D3DXQuaternionInverse
254D3DXQuaternionLn
255D3DXQuaternionMultiply
256D3DXQuaternionNormalize
257D3DXQuaternionRotationAxis
258D3DXQuaternionRotationMatrix
259D3DXQuaternionRotationYawPitchRoll
260D3DXQuaternionSlerp
261D3DXQuaternionSquad
262D3DXQuaternionSquadSetup
263D3DXQuaternionToAxisAngle
264D3DXRectPatchSize
265D3DXSHAdd
266D3DXSHDot
267D3DXSHEvalConeLight
268D3DXSHEvalDirection
269D3DXSHEvalDirectionalLight
270D3DXSHEvalHemisphereLight
271D3DXSHEvalSphericalLight
272D3DXSHMultiply2
273D3DXSHMultiply3
274D3DXSHMultiply4
275D3DXSHMultiply5
276D3DXSHMultiply6
277D3DXSHPRTCompSplitMeshSC
278D3DXSHPRTCompSuperCluster
279D3DXSHProjectCubeMap
280D3DXSHRotate
281D3DXSHRotateZ
282D3DXSHScale
283D3DXSaveMeshHierarchyToFileA
284D3DXSaveMeshHierarchyToFileW
285D3DXSaveMeshToXA
286D3DXSaveMeshToXW
287D3DXSavePRTBufferToFileA
288D3DXSavePRTBufferToFileW
289D3DXSavePRTCompBufferToFileA
290D3DXSavePRTCompBufferToFileW
291D3DXSaveSurfaceToFileA
292D3DXSaveSurfaceToFileInMemory
293D3DXSaveSurfaceToFileW
294D3DXSaveTextureToFileA
295D3DXSaveTextureToFileInMemory
296D3DXSaveTextureToFileW
297D3DXSaveVolumeToFileA
298D3DXSaveVolumeToFileInMemory
299D3DXSaveVolumeToFileW
300D3DXSimplifyMesh
301D3DXSphereBoundProbe
302D3DXSplitMesh
303D3DXTessellateNPatches
304D3DXTessellateRectPatch
305D3DXTessellateTriPatch
306D3DXTriPatchSize
307D3DXUVAtlasCreate
308D3DXUVAtlasPack
309D3DXUVAtlasPartition
310D3DXValidMesh
311D3DXValidPatchMesh
312D3DXVec2BaryCentric
313D3DXVec2CatmullRom
314D3DXVec2Hermite
315D3DXVec2Normalize
316D3DXVec2Transform
317D3DXVec2TransformArray
318D3DXVec2TransformCoord
319D3DXVec2TransformCoordArray
320D3DXVec2TransformNormal
321D3DXVec2TransformNormalArray
322D3DXVec3BaryCentric
323D3DXVec3CatmullRom
324D3DXVec3Hermite
325D3DXVec3Normalize
326D3DXVec3Project
327D3DXVec3ProjectArray
328D3DXVec3Transform
329D3DXVec3TransformArray
330D3DXVec3TransformCoord
331D3DXVec3TransformCoordArray
332D3DXVec3TransformNormal
333D3DXVec3TransformNormalArray
334D3DXVec3Unproject
335D3DXVec3UnprojectArray
336D3DXVec4BaryCentric
337D3DXVec4CatmullRom
338D3DXVec4Cross
339D3DXVec4Hermite
340D3DXVec4Normalize
341D3DXVec4Transform
342D3DXVec4TransformArray
343D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_42.def created+336
......@@ -0,0 +1,336 @@
1;
2; Definition file of d3dx9_42.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_42.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateKeyframedAnimationSet
77D3DXCreateLine
78D3DXCreateMatrixStack
79D3DXCreateMesh
80D3DXCreateMeshFVF
81D3DXCreateNPatchMesh
82D3DXCreatePMeshFromStream
83D3DXCreatePRTBuffer
84D3DXCreatePRTBufferTex
85D3DXCreatePRTCompBuffer
86D3DXCreatePRTEngine
87D3DXCreatePatchMesh
88D3DXCreatePolygon
89D3DXCreateRenderToEnvMap
90D3DXCreateRenderToSurface
91D3DXCreateSPMesh
92D3DXCreateSkinInfo
93D3DXCreateSkinInfoFVF
94D3DXCreateSkinInfoFromBlendedMesh
95D3DXCreateSphere
96D3DXCreateSprite
97D3DXCreateTeapot
98D3DXCreateTextA
99D3DXCreateTextW
100D3DXCreateTexture
101D3DXCreateTextureFromFileA
102D3DXCreateTextureFromFileExA
103D3DXCreateTextureFromFileExW
104D3DXCreateTextureFromFileInMemory
105D3DXCreateTextureFromFileInMemoryEx
106D3DXCreateTextureFromFileW
107D3DXCreateTextureFromResourceA
108D3DXCreateTextureFromResourceExA
109D3DXCreateTextureFromResourceExW
110D3DXCreateTextureFromResourceW
111D3DXCreateTextureGutterHelper
112D3DXCreateTextureShader
113D3DXCreateTorus
114D3DXCreateVolumeTexture
115D3DXCreateVolumeTextureFromFileA
116D3DXCreateVolumeTextureFromFileExA
117D3DXCreateVolumeTextureFromFileExW
118D3DXCreateVolumeTextureFromFileInMemory
119D3DXCreateVolumeTextureFromFileInMemoryEx
120D3DXCreateVolumeTextureFromFileW
121D3DXCreateVolumeTextureFromResourceA
122D3DXCreateVolumeTextureFromResourceExA
123D3DXCreateVolumeTextureFromResourceExW
124D3DXCreateVolumeTextureFromResourceW
125D3DXDebugMute
126D3DXDeclaratorFromFVF
127D3DXDisassembleEffect
128D3DXDisassembleShader
129D3DXFVFFromDeclarator
130D3DXFileCreate
131D3DXFillCubeTexture
132D3DXFillCubeTextureTX
133D3DXFillTexture
134D3DXFillTextureTX
135D3DXFillVolumeTexture
136D3DXFillVolumeTextureTX
137D3DXFilterTexture
138D3DXFindShaderComment
139D3DXFloat16To32Array
140D3DXFloat32To16Array
141D3DXFrameAppendChild
142D3DXFrameCalculateBoundingSphere
143D3DXFrameDestroy
144D3DXFrameFind
145D3DXFrameNumNamedMatrices
146D3DXFrameRegisterNamedMatrices
147D3DXFresnelTerm
148D3DXGenerateOutputDecl
149D3DXGeneratePMesh
150D3DXGetDeclLength
151D3DXGetDeclVertexSize
152D3DXGetDriverLevel
153D3DXGetFVFVertexSize
154D3DXGetImageInfoFromFileA
155D3DXGetImageInfoFromFileInMemory
156D3DXGetImageInfoFromFileW
157D3DXGetImageInfoFromResourceA
158D3DXGetImageInfoFromResourceW
159D3DXGetPixelShaderProfile
160D3DXGetShaderConstantTable
161D3DXGetShaderConstantTableEx
162D3DXGetShaderInputSemantics
163D3DXGetShaderOutputSemantics
164D3DXGetShaderSamplers
165D3DXGetShaderSize
166D3DXGetShaderVersion
167D3DXGetVertexShaderProfile
168D3DXIntersect
169D3DXIntersectSubset
170D3DXIntersectTri
171D3DXLoadMeshFromXA
172D3DXLoadMeshFromXInMemory
173D3DXLoadMeshFromXResource
174D3DXLoadMeshFromXW
175D3DXLoadMeshFromXof
176D3DXLoadMeshHierarchyFromXA
177D3DXLoadMeshHierarchyFromXInMemory
178D3DXLoadMeshHierarchyFromXW
179D3DXLoadPRTBufferFromFileA
180D3DXLoadPRTBufferFromFileW
181D3DXLoadPRTCompBufferFromFileA
182D3DXLoadPRTCompBufferFromFileW
183D3DXLoadPatchMeshFromXof
184D3DXLoadSkinMeshFromXof
185D3DXLoadSurfaceFromFileA
186D3DXLoadSurfaceFromFileInMemory
187D3DXLoadSurfaceFromFileW
188D3DXLoadSurfaceFromMemory
189D3DXLoadSurfaceFromResourceA
190D3DXLoadSurfaceFromResourceW
191D3DXLoadSurfaceFromSurface
192D3DXLoadVolumeFromFileA
193D3DXLoadVolumeFromFileInMemory
194D3DXLoadVolumeFromFileW
195D3DXLoadVolumeFromMemory
196D3DXLoadVolumeFromResourceA
197D3DXLoadVolumeFromResourceW
198D3DXLoadVolumeFromVolume
199D3DXMatrixAffineTransformation
200D3DXMatrixAffineTransformation2D
201D3DXMatrixDecompose
202D3DXMatrixDeterminant
203D3DXMatrixInverse
204D3DXMatrixLookAtLH
205D3DXMatrixLookAtRH
206D3DXMatrixMultiply
207D3DXMatrixMultiplyTranspose
208D3DXMatrixOrthoLH
209D3DXMatrixOrthoOffCenterLH
210D3DXMatrixOrthoOffCenterRH
211D3DXMatrixOrthoRH
212D3DXMatrixPerspectiveFovLH
213D3DXMatrixPerspectiveFovRH
214D3DXMatrixPerspectiveLH
215D3DXMatrixPerspectiveOffCenterLH
216D3DXMatrixPerspectiveOffCenterRH
217D3DXMatrixPerspectiveRH
218D3DXMatrixReflect
219D3DXMatrixRotationAxis
220D3DXMatrixRotationQuaternion
221D3DXMatrixRotationX
222D3DXMatrixRotationY
223D3DXMatrixRotationYawPitchRoll
224D3DXMatrixRotationZ
225D3DXMatrixScaling
226D3DXMatrixShadow
227D3DXMatrixTransformation
228D3DXMatrixTransformation2D
229D3DXMatrixTranslation
230D3DXMatrixTranspose
231D3DXOptimizeFaces
232D3DXOptimizeVertices
233D3DXPlaneFromPointNormal
234D3DXPlaneFromPoints
235D3DXPlaneIntersectLine
236D3DXPlaneNormalize
237D3DXPlaneTransform
238D3DXPlaneTransformArray
239D3DXPreprocessShader
240D3DXPreprocessShaderFromFileA
241D3DXPreprocessShaderFromFileW
242D3DXPreprocessShaderFromResourceA
243D3DXPreprocessShaderFromResourceW
244D3DXQuaternionBaryCentric
245D3DXQuaternionExp
246D3DXQuaternionInverse
247D3DXQuaternionLn
248D3DXQuaternionMultiply
249D3DXQuaternionNormalize
250D3DXQuaternionRotationAxis
251D3DXQuaternionRotationMatrix
252D3DXQuaternionRotationYawPitchRoll
253D3DXQuaternionSlerp
254D3DXQuaternionSquad
255D3DXQuaternionSquadSetup
256D3DXQuaternionToAxisAngle
257D3DXRectPatchSize
258D3DXSHAdd
259D3DXSHDot
260D3DXSHEvalConeLight
261D3DXSHEvalDirection
262D3DXSHEvalDirectionalLight
263D3DXSHEvalHemisphereLight
264D3DXSHEvalSphericalLight
265D3DXSHMultiply2
266D3DXSHMultiply3
267D3DXSHMultiply4
268D3DXSHMultiply5
269D3DXSHMultiply6
270D3DXSHPRTCompSplitMeshSC
271D3DXSHPRTCompSuperCluster
272D3DXSHProjectCubeMap
273D3DXSHRotate
274D3DXSHRotateZ
275D3DXSHScale
276D3DXSaveMeshHierarchyToFileA
277D3DXSaveMeshHierarchyToFileW
278D3DXSaveMeshToXA
279D3DXSaveMeshToXW
280D3DXSavePRTBufferToFileA
281D3DXSavePRTBufferToFileW
282D3DXSavePRTCompBufferToFileA
283D3DXSavePRTCompBufferToFileW
284D3DXSaveSurfaceToFileA
285D3DXSaveSurfaceToFileInMemory
286D3DXSaveSurfaceToFileW
287D3DXSaveTextureToFileA
288D3DXSaveTextureToFileInMemory
289D3DXSaveTextureToFileW
290D3DXSaveVolumeToFileA
291D3DXSaveVolumeToFileInMemory
292D3DXSaveVolumeToFileW
293D3DXSimplifyMesh
294D3DXSphereBoundProbe
295D3DXSplitMesh
296D3DXTessellateNPatches
297D3DXTessellateRectPatch
298D3DXTessellateTriPatch
299D3DXTriPatchSize
300D3DXUVAtlasCreate
301D3DXUVAtlasPack
302D3DXUVAtlasPartition
303D3DXValidMesh
304D3DXValidPatchMesh
305D3DXVec2BaryCentric
306D3DXVec2CatmullRom
307D3DXVec2Hermite
308D3DXVec2Normalize
309D3DXVec2Transform
310D3DXVec2TransformArray
311D3DXVec2TransformCoord
312D3DXVec2TransformCoordArray
313D3DXVec2TransformNormal
314D3DXVec2TransformNormalArray
315D3DXVec3BaryCentric
316D3DXVec3CatmullRom
317D3DXVec3Hermite
318D3DXVec3Normalize
319D3DXVec3Project
320D3DXVec3ProjectArray
321D3DXVec3Transform
322D3DXVec3TransformArray
323D3DXVec3TransformCoord
324D3DXVec3TransformCoordArray
325D3DXVec3TransformNormal
326D3DXVec3TransformNormalArray
327D3DXVec3Unproject
328D3DXVec3UnprojectArray
329D3DXVec4BaryCentric
330D3DXVec4CatmullRom
331D3DXVec4Cross
332D3DXVec4Hermite
333D3DXVec4Normalize
334D3DXVec4Transform
335D3DXVec4TransformArray
336D3DXWeldVertices
lib/libc/mingw/lib64/d3dx9_43.def created+336
......@@ -0,0 +1,336 @@
1;
2; Definition file of d3dx9_43.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "d3dx9_43.dll"
7EXPORTS
8D3DXAssembleShader
9D3DXAssembleShaderFromFileA
10D3DXAssembleShaderFromFileW
11D3DXAssembleShaderFromResourceA
12D3DXAssembleShaderFromResourceW
13D3DXBoxBoundProbe
14D3DXCheckCubeTextureRequirements
15D3DXCheckTextureRequirements
16D3DXCheckVersion
17D3DXCheckVolumeTextureRequirements
18D3DXCleanMesh
19D3DXColorAdjustContrast
20D3DXColorAdjustSaturation
21D3DXCompileShader
22D3DXCompileShaderFromFileA
23D3DXCompileShaderFromFileW
24D3DXCompileShaderFromResourceA
25D3DXCompileShaderFromResourceW
26D3DXComputeBoundingBox
27D3DXComputeBoundingSphere
28D3DXComputeIMTFromPerTexelSignal
29D3DXComputeIMTFromPerVertexSignal
30D3DXComputeIMTFromSignal
31D3DXComputeIMTFromTexture
32D3DXComputeNormalMap
33D3DXComputeNormals
34D3DXComputeTangent
35D3DXComputeTangentFrame
36D3DXComputeTangentFrameEx
37D3DXConcatenateMeshes
38D3DXConvertMeshSubsetToSingleStrip
39D3DXConvertMeshSubsetToStrips
40D3DXCreateAnimationController
41D3DXCreateBox
42D3DXCreateBuffer
43D3DXCreateCompressedAnimationSet
44D3DXCreateCubeTexture
45D3DXCreateCubeTextureFromFileA
46D3DXCreateCubeTextureFromFileExA
47D3DXCreateCubeTextureFromFileExW
48D3DXCreateCubeTextureFromFileInMemory
49D3DXCreateCubeTextureFromFileInMemoryEx
50D3DXCreateCubeTextureFromFileW
51D3DXCreateCubeTextureFromResourceA
52D3DXCreateCubeTextureFromResourceExA
53D3DXCreateCubeTextureFromResourceExW
54D3DXCreateCubeTextureFromResourceW
55D3DXCreateCylinder
56D3DXCreateEffect
57D3DXCreateEffectCompiler
58D3DXCreateEffectCompilerFromFileA
59D3DXCreateEffectCompilerFromFileW
60D3DXCreateEffectCompilerFromResourceA
61D3DXCreateEffectCompilerFromResourceW
62D3DXCreateEffectEx
63D3DXCreateEffectFromFileA
64D3DXCreateEffectFromFileExA
65D3DXCreateEffectFromFileExW
66D3DXCreateEffectFromFileW
67D3DXCreateEffectFromResourceA
68D3DXCreateEffectFromResourceExA
69D3DXCreateEffectFromResourceExW
70D3DXCreateEffectFromResourceW
71D3DXCreateEffectPool
72D3DXCreateFontA
73D3DXCreateFontIndirectA
74D3DXCreateFontIndirectW
75D3DXCreateFontW
76D3DXCreateKeyframedAnimationSet
77D3DXCreateLine
78D3DXCreateMatrixStack
79D3DXCreateMesh
80D3DXCreateMeshFVF
81D3DXCreateNPatchMesh
82D3DXCreatePMeshFromStream
83D3DXCreatePRTBuffer
84D3DXCreatePRTBufferTex
85D3DXCreatePRTCompBuffer
86D3DXCreatePRTEngine
87D3DXCreatePatchMesh
88D3DXCreatePolygon
89D3DXCreateRenderToEnvMap
90D3DXCreateRenderToSurface
91D3DXCreateSPMesh
92D3DXCreateSkinInfo
93D3DXCreateSkinInfoFVF
94D3DXCreateSkinInfoFromBlendedMesh
95D3DXCreateSphere
96D3DXCreateSprite
97D3DXCreateTeapot
98D3DXCreateTextA
99D3DXCreateTextW
100D3DXCreateTexture
101D3DXCreateTextureFromFileA
102D3DXCreateTextureFromFileExA
103D3DXCreateTextureFromFileExW
104D3DXCreateTextureFromFileInMemory
105D3DXCreateTextureFromFileInMemoryEx
106D3DXCreateTextureFromFileW
107D3DXCreateTextureFromResourceA
108D3DXCreateTextureFromResourceExA
109D3DXCreateTextureFromResourceExW
110D3DXCreateTextureFromResourceW
111D3DXCreateTextureGutterHelper
112D3DXCreateTextureShader
113D3DXCreateTorus
114D3DXCreateVolumeTexture
115D3DXCreateVolumeTextureFromFileA
116D3DXCreateVolumeTextureFromFileExA
117D3DXCreateVolumeTextureFromFileExW
118D3DXCreateVolumeTextureFromFileInMemory
119D3DXCreateVolumeTextureFromFileInMemoryEx
120D3DXCreateVolumeTextureFromFileW
121D3DXCreateVolumeTextureFromResourceA
122D3DXCreateVolumeTextureFromResourceExA
123D3DXCreateVolumeTextureFromResourceExW
124D3DXCreateVolumeTextureFromResourceW
125D3DXDebugMute
126D3DXDeclaratorFromFVF
127D3DXDisassembleEffect
128D3DXDisassembleShader
129D3DXFVFFromDeclarator
130D3DXFileCreate
131D3DXFillCubeTexture
132D3DXFillCubeTextureTX
133D3DXFillTexture
134D3DXFillTextureTX
135D3DXFillVolumeTexture
136D3DXFillVolumeTextureTX
137D3DXFilterTexture
138D3DXFindShaderComment
139D3DXFloat16To32Array
140D3DXFloat32To16Array
141D3DXFrameAppendChild
142D3DXFrameCalculateBoundingSphere
143D3DXFrameDestroy
144D3DXFrameFind
145D3DXFrameNumNamedMatrices
146D3DXFrameRegisterNamedMatrices
147D3DXFresnelTerm
148D3DXGenerateOutputDecl
149D3DXGeneratePMesh
150D3DXGetDeclLength
151D3DXGetDeclVertexSize
152D3DXGetDriverLevel
153D3DXGetFVFVertexSize
154D3DXGetImageInfoFromFileA
155D3DXGetImageInfoFromFileInMemory
156D3DXGetImageInfoFromFileW
157D3DXGetImageInfoFromResourceA
158D3DXGetImageInfoFromResourceW
159D3DXGetPixelShaderProfile
160D3DXGetShaderConstantTable
161D3DXGetShaderConstantTableEx
162D3DXGetShaderInputSemantics
163D3DXGetShaderOutputSemantics
164D3DXGetShaderSamplers
165D3DXGetShaderSize
166D3DXGetShaderVersion
167D3DXGetVertexShaderProfile
168D3DXIntersect
169D3DXIntersectSubset
170D3DXIntersectTri
171D3DXLoadMeshFromXA
172D3DXLoadMeshFromXInMemory
173D3DXLoadMeshFromXResource
174D3DXLoadMeshFromXW
175D3DXLoadMeshFromXof
176D3DXLoadMeshHierarchyFromXA
177D3DXLoadMeshHierarchyFromXInMemory
178D3DXLoadMeshHierarchyFromXW
179D3DXLoadPRTBufferFromFileA
180D3DXLoadPRTBufferFromFileW
181D3DXLoadPRTCompBufferFromFileA
182D3DXLoadPRTCompBufferFromFileW
183D3DXLoadPatchMeshFromXof
184D3DXLoadSkinMeshFromXof
185D3DXLoadSurfaceFromFileA
186D3DXLoadSurfaceFromFileInMemory
187D3DXLoadSurfaceFromFileW
188D3DXLoadSurfaceFromMemory
189D3DXLoadSurfaceFromResourceA
190D3DXLoadSurfaceFromResourceW
191D3DXLoadSurfaceFromSurface
192D3DXLoadVolumeFromFileA
193D3DXLoadVolumeFromFileInMemory
194D3DXLoadVolumeFromFileW
195D3DXLoadVolumeFromMemory
196D3DXLoadVolumeFromResourceA
197D3DXLoadVolumeFromResourceW
198D3DXLoadVolumeFromVolume
199D3DXMatrixAffineTransformation
200D3DXMatrixAffineTransformation2D
201D3DXMatrixDecompose
202D3DXMatrixDeterminant
203D3DXMatrixInverse
204D3DXMatrixLookAtLH
205D3DXMatrixLookAtRH
206D3DXMatrixMultiply
207D3DXMatrixMultiplyTranspose
208D3DXMatrixOrthoLH
209D3DXMatrixOrthoOffCenterLH
210D3DXMatrixOrthoOffCenterRH
211D3DXMatrixOrthoRH
212D3DXMatrixPerspectiveFovLH
213D3DXMatrixPerspectiveFovRH
214D3DXMatrixPerspectiveLH
215D3DXMatrixPerspectiveOffCenterLH
216D3DXMatrixPerspectiveOffCenterRH
217D3DXMatrixPerspectiveRH
218D3DXMatrixReflect
219D3DXMatrixRotationAxis
220D3DXMatrixRotationQuaternion
221D3DXMatrixRotationX
222D3DXMatrixRotationY
223D3DXMatrixRotationYawPitchRoll
224D3DXMatrixRotationZ
225D3DXMatrixScaling
226D3DXMatrixShadow
227D3DXMatrixTransformation
228D3DXMatrixTransformation2D
229D3DXMatrixTranslation
230D3DXMatrixTranspose
231D3DXOptimizeFaces
232D3DXOptimizeVertices
233D3DXPlaneFromPointNormal
234D3DXPlaneFromPoints
235D3DXPlaneIntersectLine
236D3DXPlaneNormalize
237D3DXPlaneTransform
238D3DXPlaneTransformArray
239D3DXPreprocessShader
240D3DXPreprocessShaderFromFileA
241D3DXPreprocessShaderFromFileW
242D3DXPreprocessShaderFromResourceA
243D3DXPreprocessShaderFromResourceW
244D3DXQuaternionBaryCentric
245D3DXQuaternionExp
246D3DXQuaternionInverse
247D3DXQuaternionLn
248D3DXQuaternionMultiply
249D3DXQuaternionNormalize
250D3DXQuaternionRotationAxis
251D3DXQuaternionRotationMatrix
252D3DXQuaternionRotationYawPitchRoll
253D3DXQuaternionSlerp
254D3DXQuaternionSquad
255D3DXQuaternionSquadSetup
256D3DXQuaternionToAxisAngle
257D3DXRectPatchSize
258D3DXSHAdd
259D3DXSHDot
260D3DXSHEvalConeLight
261D3DXSHEvalDirection
262D3DXSHEvalDirectionalLight
263D3DXSHEvalHemisphereLight
264D3DXSHEvalSphericalLight
265D3DXSHMultiply2
266D3DXSHMultiply3
267D3DXSHMultiply4
268D3DXSHMultiply5
269D3DXSHMultiply6
270D3DXSHPRTCompSplitMeshSC
271D3DXSHPRTCompSuperCluster
272D3DXSHProjectCubeMap
273D3DXSHRotate
274D3DXSHRotateZ
275D3DXSHScale
276D3DXSaveMeshHierarchyToFileA
277D3DXSaveMeshHierarchyToFileW
278D3DXSaveMeshToXA
279D3DXSaveMeshToXW
280D3DXSavePRTBufferToFileA
281D3DXSavePRTBufferToFileW
282D3DXSavePRTCompBufferToFileA
283D3DXSavePRTCompBufferToFileW
284D3DXSaveSurfaceToFileA
285D3DXSaveSurfaceToFileInMemory
286D3DXSaveSurfaceToFileW
287D3DXSaveTextureToFileA
288D3DXSaveTextureToFileInMemory
289D3DXSaveTextureToFileW
290D3DXSaveVolumeToFileA
291D3DXSaveVolumeToFileInMemory
292D3DXSaveVolumeToFileW
293D3DXSimplifyMesh
294D3DXSphereBoundProbe
295D3DXSplitMesh
296D3DXTessellateNPatches
297D3DXTessellateRectPatch
298D3DXTessellateTriPatch
299D3DXTriPatchSize
300D3DXUVAtlasCreate
301D3DXUVAtlasPack
302D3DXUVAtlasPartition
303D3DXValidMesh
304D3DXValidPatchMesh
305D3DXVec2BaryCentric
306D3DXVec2CatmullRom
307D3DXVec2Hermite
308D3DXVec2Normalize
309D3DXVec2Transform
310D3DXVec2TransformArray
311D3DXVec2TransformCoord
312D3DXVec2TransformCoordArray
313D3DXVec2TransformNormal
314D3DXVec2TransformNormalArray
315D3DXVec3BaryCentric
316D3DXVec3CatmullRom
317D3DXVec3Hermite
318D3DXVec3Normalize
319D3DXVec3Project
320D3DXVec3ProjectArray
321D3DXVec3Transform
322D3DXVec3TransformArray
323D3DXVec3TransformCoord
324D3DXVec3TransformCoordArray
325D3DXVec3TransformNormal
326D3DXVec3TransformNormalArray
327D3DXVec3Unproject
328D3DXVec3UnprojectArray
329D3DXVec4BaryCentric
330D3DXVec4CatmullRom
331D3DXVec4Cross
332D3DXVec4Hermite
333D3DXVec4Normalize
334D3DXVec4Transform
335D3DXVec4TransformArray
336D3DXWeldVertices
lib/libc/mingw/lib64/d3dxof.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file d3dxof.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY d3dxof.dll
8EXPORTS
9DirectXFileCreate
10DllCanUnloadNow
11DllGetClassObject
lib/libc/mingw/lib64/dhcpcsvc6.def deleted-17
......@@ -1,17 +0,0 @@
1;
2; Definition file of dhcpcsvc6.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "dhcpcsvc6.DLL"
7EXPORTS
8Dhcpv6AcquireParameters
9Dhcpv6FreeLeaseInfo
10Dhcpv6IsEnabled
11Dhcpv6Main
12Dhcpv6QueryLeaseInfo
13Dhcpv6ReleaseParameters
14Dhcpv6ReleasePrefix
15Dhcpv6RenewPrefix
16Dhcpv6RequestParams
17Dhcpv6RequestPrefix
lib/libc/mingw/lib64/digest.def created+31
......@@ -0,0 +1,31 @@
1;
2; Exports of file DIGEST.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DIGEST.dll
8EXPORTS
9AcceptSecurityContext
10AcquireCredentialsHandleA
11AcquireCredentialsHandleW
12ApplyControlToken
13CompleteAuthToken
14DeleteSecurityContext
15DllInstall
16EnumerateSecurityPackagesA
17EnumerateSecurityPackagesW
18FreeContextBuffer
19FreeCredentialsHandle
20ImpersonateSecurityContext
21InitSecurityInterfaceA
22InitSecurityInterfaceW
23InitializeSecurityContextA
24InitializeSecurityContextW
25MakeSignature
26QueryContextAttributesA
27QueryContextAttributesW
28QuerySecurityPackageInfoA
29QuerySecurityPackageInfoW
30RevertSecurityContext
31VerifySignature
lib/libc/mingw/lib64/dimsntfy.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file dimsntfy.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY dimsntfy.dll
8EXPORTS
9WlDimsLock
10WlDimsLogoff
11WlDimsLogon
12WlDimsShutdown
13WlDimsStartShell
14WlDimsStartup
15WlDimsUnlock
lib/libc/mingw/lib64/dmconfig.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file dmconfig.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY dmconfig.dll
8EXPORTS
9DllMain
10cs_get_api_calls
lib/libc/mingw/lib64/dmdskmgr.def created+433
......@@ -0,0 +1,433 @@
1;
2; Exports of file DMDskMgr.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DMDskMgr.dll
8EXPORTS
9; public: __cdecl CDataCache::CDataCache(void) __ptr64
10??0CDataCache@@QEAA@XZ
11; public: __cdecl CDMNodeObj::~CDMNodeObj(void) __ptr64
12??1CDMNodeObj@@QEAA@XZ
13; public: virtual __cdecl CDataCache::~CDataCache(void) __ptr64
14??1CDataCache@@UEAA@XZ
15; public: void __cdecl CDataCache::AddFileSystemInfoToListAndMap(unsigned long,struct filesysteminfo * __ptr64) __ptr64
16?AddFileSystemInfoToListAndMap@CDataCache@@QEAAXKPEAUfilesysteminfo@@@Z
17; public: void __cdecl CDataCache::AddInstalledFileSystemsToList(unsigned long,struct ifilesysteminfo * __ptr64) __ptr64
18?AddInstalledFileSystemsToList@CDataCache@@QEAAXKPEAUifilesysteminfo@@@Z
19; public: void __cdecl CDataCache::AddLDMObjMapEntry(struct _LDM_OBJ_MAP_ENTRY * __ptr64) __ptr64
20?AddLDMObjMapEntry@CDataCache@@QEAAXPEAU_LDM_OBJ_MAP_ENTRY@@@Z
21; public: void __cdecl CDataCache::AddRegionToVolumeMemberList(class CDMNodeObj * __ptr64) __ptr64
22?AddRegionToVolumeMemberList@CDataCache@@QEAAXPEAVCDMNodeObj@@@Z
23; public: void __cdecl CDMComponentData::AddRow(__int64) __ptr64
24?AddRow@CDMComponentData@@QEAAX_J@Z
25; public: void __cdecl CDataCache::AdjustRegionCountInLegendList(enum _REGIONTYPE,int) __ptr64
26?AdjustRegionCountInLegendList@CDataCache@@QEAAXW4_REGIONTYPE@@H@Z
27; public: void __cdecl CDataCache::AdjustVolumeCountInLegendList(enum _VOLUMELAYOUT,int) __ptr64
28?AdjustVolumeCountInLegendList@CDataCache@@QEAAXW4_VOLUMELAYOUT@@H@Z
29; public: int __cdecl CDMNodeObj::CanHaveGPT(void) __ptr64
30?CanHaveGPT@CDMNodeObj@@QEAAHXZ
31; public: void __cdecl CDMComponentData::ChangeRow(__int64) __ptr64
32?ChangeRow@CDMComponentData@@QEAAX_J@Z
33; public: long __cdecl CContextMenu::Command(long,struct IDataObject * __ptr64,__int64) __ptr64
34?Command@CContextMenu@@QEAAJJPEAUIDataObject@@_J@Z
35; int __cdecl CompareDiskNames(__int64,__int64)
36?CompareDiskNames@@YAH_J0@Z
37; public: int __cdecl CDMNodeObj::ContainsActivePartition(void) __ptr64
38?ContainsActivePartition@CDMNodeObj@@QEAAHXZ
39; public: int __cdecl CDMNodeObj::ContainsBootIniPartition(void) __ptr64
40?ContainsBootIniPartition@CDMNodeObj@@QEAAHXZ
41; public: int __cdecl CDMNodeObj::ContainsBootIniPartitionForWolfpack(void) __ptr64
42?ContainsBootIniPartitionForWolfpack@CDMNodeObj@@QEAAHXZ
43; public: int __cdecl CDMNodeObj::ContainsBootVolumesNumberChange(__int64,int * __ptr64) __ptr64
44?ContainsBootVolumesNumberChange@CDMNodeObj@@QEAAH_JPEAH@Z
45; public: int __cdecl CDMNodeObj::ContainsESPPartition(void) __ptr64
46?ContainsESPPartition@CDMNodeObj@@QEAAHXZ
47; public: int __cdecl CDMNodeObj::ContainsLogicalDrvBootPartition(void) __ptr64
48?ContainsLogicalDrvBootPartition@CDMNodeObj@@QEAAHXZ
49; public: int __cdecl CDMNodeObj::ContainsPageFile(void) __ptr64
50?ContainsPageFile@CDMNodeObj@@QEAAHXZ
51; public: int __cdecl CDMNodeObj::ContainsRealSystemPartition(void) __ptr64
52?ContainsRealSystemPartition@CDMNodeObj@@QEAAHXZ
53; public: int __cdecl CDMNodeObj::ContainsSubDiskNeedResync(void) __ptr64
54?ContainsSubDiskNeedResync@CDMNodeObj@@QEAAHXZ
55; public: int __cdecl CDMNodeObj::ContainsSystemInformation(void) __ptr64
56?ContainsSystemInformation@CDMNodeObj@@QEAAHXZ
57; public: int __cdecl CDMNodeObj::ContainsSystemPartition(void) __ptr64
58?ContainsSystemPartition@CDMNodeObj@@QEAAHXZ
59; unsigned long __cdecl ConvertBytesToMB(__int64)
60?ConvertBytesToMB@@YAK_J@Z
61; __int64 __cdecl ConvertMBToBytes(__int64)
62?ConvertMBToBytes@@YA_J_J@Z
63; void __cdecl CookieSort(__int64 * __ptr64,long,long,int (__cdecl*)(__int64,__int64))
64?CookieSort@@YAXPEA_JJJP6AH_J1@Z@Z
65; public: void __cdecl CDataCache::CreateDiskList(void) __ptr64
66?CreateDiskList@CDataCache@@QEAAXXZ
67; public: class CDMNodeObj * __ptr64 __cdecl CDataCache::CreateNodeObjAndAddToMap(int,enum _NODEOBJ_TYPES,class CDataCache * __ptr64,void * __ptr64,__int64) __ptr64
68?CreateNodeObjAndAddToMap@CDataCache@@QEAAPEAVCDMNodeObj@@HW4_NODEOBJ_TYPES@@PEAV1@PEAX_J@Z
69; public: class CDMNodeObj * __ptr64 __cdecl CDataCache::CreateRegionNodeObj(class CDMNodeObj * __ptr64,struct regioninfoex * __ptr64) __ptr64
70?CreateRegionNodeObj@CDataCache@@QEAAPEAVCDMNodeObj@@PEAV2@PEAUregioninfoex@@@Z
71; public: void __cdecl CDataCache::CreateShortDiskName(struct diskinfoex & __ptr64) __ptr64
72?CreateShortDiskName@CDataCache@@QEAAXAEAUdiskinfoex@@@Z
73; public: void __cdecl CDataCache::CreateVolumeList(void) __ptr64
74?CreateVolumeList@CDataCache@@QEAAXXZ
75; public: void __cdecl CDataCache::DeleteDiskGroupData(struct DISK_GROUP_DATA * __ptr64) __ptr64
76?DeleteDiskGroupData@CDataCache@@QEAAXPEAUDISK_GROUP_DATA@@@Z
77; public: void __cdecl CDataCache::DeleteEncapsulateData(struct ENCAPSULATE_DATA * __ptr64) __ptr64
78?DeleteEncapsulateData@CDataCache@@QEAAXPEAUENCAPSULATE_DATA@@@Z
79; public: void __cdecl CDataCache::DeleteLists(void) __ptr64
80?DeleteLists@CDataCache@@QEAAXXZ
81; public: void __cdecl CDataCache::DeleteRegionFromVolumeMemberList(class CDMNodeObj * __ptr64) __ptr64
82?DeleteRegionFromVolumeMemberList@CDataCache@@QEAAXPEAVCDMNodeObj@@@Z
83; public: void __cdecl CDMComponentData::DeleteRow(__int64) __ptr64
84?DeleteRow@CDMComponentData@@QEAAX_J@Z
85; public: void __cdecl CContextMenu::DoDelete(__int64) __ptr64
86?DoDelete@CContextMenu@@QEAAX_J@Z
87; public: void __cdecl CDMComponentData::EmptyOcxViewData(void) __ptr64
88?EmptyOcxViewData@CDMComponentData@@QEAAXXZ
89; public: int __cdecl CDMNodeObj::EnhancedIsUpgradeable(class CTaskData * __ptr64) __ptr64
90?EnhancedIsUpgradeable@CDMNodeObj@@QEAAHPEAVCTaskData@@@Z
91; public: void __cdecl CDMNodeObj::EnumDiskRegions(__int64 * __ptr64 * __ptr64,long & __ptr64) __ptr64
92?EnumDiskRegions@CDMNodeObj@@QEAAXPEAPEA_JAEAJ@Z
93; public: void __cdecl CTaskData::EnumDisks(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64) __ptr64
94?EnumDisks@CTaskData@@QEAAXAEAKPEAPEA_J@Z
95; public: void __cdecl CDMNodeObj::EnumFirstVolumeMember(__int64 & __ptr64,long & __ptr64) __ptr64
96?EnumFirstVolumeMember@CDMNodeObj@@QEAAXAEA_JAEAJ@Z
97; public: void __cdecl CDataCache::EnumNTFSwithDriveLetter(int * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
98?EnumNTFSwithDriveLetter@CDataCache@@QEAAXPEAHPEAPEAG@Z
99; public: void __cdecl CTaskData::EnumNTFSwithDriveLetter(int * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
100?EnumNTFSwithDriveLetter@CTaskData@@QEAAXPEAHPEAPEAG@Z
101; public: void __cdecl CDMNodeObj::EnumVolumeMembers(__int64 * __ptr64 * __ptr64,long & __ptr64) __ptr64
102?EnumVolumeMembers@CDMNodeObj@@QEAAXPEAPEA_JAEAJ@Z
103; public: void __cdecl CTaskData::EnumVolumes(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64) __ptr64
104?EnumVolumes@CTaskData@@QEAAXAEAKPEAPEA_J@Z
105; public: void __cdecl CDataCache::FillDeviceInstanceId(unsigned short * __ptr64,unsigned short * __ptr64) __ptr64
106?FillDeviceInstanceId@CDataCache@@QEAAXPEAG0@Z
107; public: void __cdecl CTaskData::FilterCookiesBigEnoughForFTRepair(unsigned long & __ptr64,__int64 * __ptr64,__int64 * __ptr64 * __ptr64,long,class CDMNodeObj * __ptr64) __ptr64
108?FilterCookiesBigEnoughForFTRepair@CTaskData@@QEAAXAEAKPEA_JPEAPEA_JJPEAVCDMNodeObj@@@Z
109; public: void __cdecl CTaskData::FilterCookiesBigEnoughForRAID5Repair(unsigned long & __ptr64,__int64 * __ptr64,__int64 * __ptr64 * __ptr64,long,class CDMNodeObj * __ptr64) __ptr64
110?FilterCookiesBigEnoughForRAID5Repair@CTaskData@@QEAAXAEAKPEA_JPEAPEA_JJPEAVCDMNodeObj@@@Z
111; public: int __cdecl CDataCache::FindCookieAndRemoveFromList(__int64,class CList<class CDMNodeObj * __ptr64,class CDMNodeObj * __ptr64> * __ptr64) __ptr64
112?FindCookieAndRemoveFromList@CDataCache@@QEAAH_JPEAV?$CList@PEAVCDMNodeObj@@PEAV1@@@@Z
113; public: unsigned short * __ptr64 __cdecl CDataCache::FindDeviceInstanceId(__int64) __ptr64
114?FindDeviceInstanceId@CDataCache@@QEAAPEAG_J@Z
115; public: int __cdecl CDataCache::FindDiskPtrFromDiskId(__int64,class CDMNodeObj * __ptr64 * __ptr64) __ptr64
116?FindDiskPtrFromDiskId@CDataCache@@QEAAH_JPEAPEAVCDMNodeObj@@@Z
117; public: int __cdecl CDataCache::FindDriveLetter(__int64,unsigned short & __ptr64) __ptr64
118?FindDriveLetter@CDataCache@@QEAAH_JAEAG@Z
119; public: void __cdecl CTaskData::FindDriveLetter(__int64,unsigned short & __ptr64) __ptr64
120?FindDriveLetter@CTaskData@@QEAAX_JAEAG@Z
121; int __cdecl FindDriveLetterHelper(struct driveletterinfo * __ptr64,int,__int64,unsigned short & __ptr64)
122?FindDriveLetterHelper@@YAHPEAUdriveletterinfo@@H_JAEAG@Z
123; public: int __cdecl CDataCache::FindFileSystem(__int64,struct filesysteminfo & __ptr64) __ptr64
124?FindFileSystem@CDataCache@@QEAAH_JAEAUfilesysteminfo@@@Z
125; public: int __cdecl CTaskData::FindFileSystem(__int64,struct filesysteminfo & __ptr64) __ptr64
126?FindFileSystem@CTaskData@@QEAAH_JAEAUfilesysteminfo@@@Z
127; public: int __cdecl CDataCache::FindRegionPtrFromRegionId(__int64,class CDMNodeObj * __ptr64 * __ptr64) __ptr64
128?FindRegionPtrFromRegionId@CDataCache@@QEAAH_JPEAPEAVCDMNodeObj@@@Z
129; public: int __cdecl CTaskData::FindRegionPtrFromRegionId(__int64,class CDMNodeObj * __ptr64 * __ptr64) __ptr64
130?FindRegionPtrFromRegionId@CTaskData@@QEAAH_JPEAPEAVCDMNodeObj@@@Z
131; public: int __cdecl CDataCache::FindRegionPtrOnDiskFromRegionId(class CDMNodeObj * __ptr64,__int64,class CDMNodeObj * __ptr64 * __ptr64,struct __POSITION * __ptr64 & __ptr64) __ptr64
132?FindRegionPtrOnDiskFromRegionId@CDataCache@@QEAAHPEAVCDMNodeObj@@_JPEAPEAV2@AEAPEAU__POSITION@@@Z
133; public: int __cdecl CTaskData::GetAssignedDriveLetter(__int64,unsigned short & __ptr64) __ptr64
134?GetAssignedDriveLetter@CTaskData@@QEAAH_JAEAG@Z
135; public: int __cdecl CTaskData::GetBootPort(void) __ptr64
136?GetBootPort@CTaskData@@QEAAHXZ
137; public: int __cdecl CDMSnapin::GetBottomViewStyle(void) __ptr64
138?GetBottomViewStyle@CDMSnapin@@QEAAHXZ
139; public: unsigned long __cdecl CDMNodeObj::GetColorRef(void) __ptr64
140?GetColorRef@CDMNodeObj@@QEAAKXZ
141; public: class CDMNodeObj * __ptr64 __cdecl CTaskData::GetDMDataObjPtrFromId(__int64) __ptr64
142?GetDMDataObjPtrFromId@CTaskData@@QEAAPEAVCDMNodeObj@@_J@Z
143; public: unsigned long __cdecl CDMNodeObj::GetDeviceState(void) __ptr64
144?GetDeviceState@CDMNodeObj@@QEAAKXZ
145; public: unsigned long __cdecl CDMNodeObj::GetDeviceType(void) __ptr64
146?GetDeviceType@CDMNodeObj@@QEAAKXZ
147; protected: void __cdecl CDataCache::GetDiskCookies(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64) __ptr64
148?GetDiskCookies@CDataCache@@IEAAXAEAKPEAPEA_J@Z
149; public: void __cdecl CTaskData::GetDiskCookies(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64,int,unsigned long,int) __ptr64
150?GetDiskCookies@CTaskData@@QEAAXAEAKPEAPEA_JHKH@Z
151; public: void __cdecl CTaskData::GetDiskCookiesForSig(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64) __ptr64
152?GetDiskCookiesForSig@CTaskData@@QEAAXAEAKPEAPEA_J@Z
153; public: void __cdecl CTaskData::GetDiskCookiesForUpgrade(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64) __ptr64
154?GetDiskCookiesForUpgrade@CTaskData@@QEAAXAEAKPEAPEA_J@Z
155; public: void __cdecl CTaskData::GetDiskCookiesToEncap(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64) __ptr64
156?GetDiskCookiesToEncap@CTaskData@@QEAAXAEAKPEAPEA_J@Z
157; public: unsigned long __cdecl CDataCache::GetDiskCount(void) __ptr64
158?GetDiskCount@CDataCache@@QEAAKXZ
159; public: int __cdecl CDMNodeObj::GetDiskInfo(struct diskinfoex & __ptr64) __ptr64
160?GetDiskInfo@CDMNodeObj@@QEAAHAEAUdiskinfoex@@@Z
161; public: void __cdecl CTaskData::GetDiskInfoFromVolCookie(__int64,int & __ptr64,unsigned long & __ptr64,__int64 * __ptr64 * __ptr64,unsigned long,int) __ptr64
162?GetDiskInfoFromVolCookie@CTaskData@@QEAAX_JAEAHAEAKPEAPEA_JKH@Z
163; public: int __cdecl CDMSnapin::GetDiskScaling(void) __ptr64
164?GetDiskScaling@CDMSnapin@@QEAAHXZ
165; public: int __cdecl CDMNodeObj::GetDiskSpec(struct diskspec & __ptr64) __ptr64
166?GetDiskSpec@CDMNodeObj@@QEAAHAEAUdiskspec@@@Z
167; public: int __cdecl CDMNodeObj::GetDiskStatus(class CString & __ptr64) __ptr64
168?GetDiskStatus@CDMNodeObj@@QEAAHAEAVCString@@@Z
169; int __cdecl GetDiskStatusHelper(struct diskinfoex * __ptr64,class CString & __ptr64,int)
170?GetDiskStatusHelper@@YAHPEAUdiskinfoex@@AEAVCString@@H@Z
171; public: void __cdecl CDMNodeObj::GetDiskTypeName(class CString & __ptr64) __ptr64
172?GetDiskTypeName@CDMNodeObj@@QEAAXAEAVCString@@@Z
173; void __cdecl GetDiskTypeNameHelper(struct diskinfoex * __ptr64,class CString & __ptr64,unsigned short)
174?GetDiskTypeNameHelper@@YAXPEAUdiskinfoex@@AEAVCString@@G@Z
175; public: void __cdecl CDMNodeObj::GetDriveLetter(unsigned short & __ptr64) __ptr64
176?GetDriveLetter@CDMNodeObj@@QEAAXAEAG@Z
177; protected: void __cdecl CDataCache::GetDriveLetters(short & __ptr64,unsigned short * __ptr64 * __ptr64,unsigned short) __ptr64
178?GetDriveLetters@CDataCache@@IEAAXAEAFPEAPEAGG@Z
179; public: void __cdecl CTaskData::GetDriveLetters(short & __ptr64,unsigned short * __ptr64 * __ptr64,unsigned short) __ptr64
180?GetDriveLetters@CTaskData@@QEAAXAEAFPEAPEAGG@Z
181; public: unsigned long __cdecl CDMNodeObj::GetExtendedRegionColor(void) __ptr64
182?GetExtendedRegionColor@CDMNodeObj@@QEAAKXZ
183; public: int __cdecl CDMNodeObj::GetExtraRegionStatus(class CString & __ptr64,int) __ptr64
184?GetExtraRegionStatus@CDMNodeObj@@QEAAHAEAVCString@@H@Z
185; public: void __cdecl CDMNodeObj::GetFileSystemLabel(class CString & __ptr64) __ptr64
186?GetFileSystemLabel@CDMNodeObj@@QEAAXAEAVCString@@@Z
187; public: void __cdecl CDMNodeObj::GetFileSystemName(class CString & __ptr64) __ptr64
188?GetFileSystemName@CDMNodeObj@@QEAAXAEAVCString@@@Z
189; public: void __cdecl CDMNodeObj::GetFileSystemSize(long & __ptr64) __ptr64
190?GetFileSystemSize@CDMNodeObj@@QEAAXAEAJ@Z
191; public: int __cdecl CDMNodeObj::GetFileSystemType(void) __ptr64
192?GetFileSystemType@CDMNodeObj@@QEAAHXZ
193; public: void __cdecl CDataCache::GetFileSystemTypes(unsigned long & __ptr64,struct ifilesysteminfo * __ptr64 * __ptr64) __ptr64
194?GetFileSystemTypes@CDataCache@@QEAAXAEAKPEAPEAUifilesysteminfo@@@Z
195; public: void __cdecl CTaskData::GetFileSystemTypes(unsigned long & __ptr64,struct ifilesysteminfo * __ptr64 * __ptr64) __ptr64
196?GetFileSystemTypes@CTaskData@@QEAAXAEAKPEAPEAUifilesysteminfo@@@Z
197; public: int __cdecl CDMSnapin::GetFilterToggle(void) __ptr64
198?GetFilterToggle@CDMSnapin@@QEAAHXZ
199; public: long __cdecl CDMNodeObj::GetFlags(void) __ptr64
200?GetFlags@CDMNodeObj@@QEAAJXZ
201; public: short __cdecl CDMNodeObj::GetIVolumeClientVersion(void) __ptr64
202?GetIVolumeClientVersion@CDMNodeObj@@QEAAFXZ
203; public: short __cdecl CTaskData::GetIVolumeClientVersion(void) __ptr64
204?GetIVolumeClientVersion@CTaskData@@QEAAFXZ
205; public: unsigned int __cdecl CDMNodeObj::GetIconId(int) __ptr64
206?GetIconId@CDMNodeObj@@QEAAIH@Z
207; public: int __cdecl CDMNodeObj::GetImageNum(void) __ptr64
208?GetImageNum@CDMNodeObj@@QEAAHXZ
209; public: __int64 __cdecl CDataCache::GetLastKnownState(__int64) __ptr64
210?GetLastKnownState@CDataCache@@QEAA_J_J@Z
211; public: enum _LAYOUT_TYPES __cdecl CDMNodeObj::GetLayoutType(void) __ptr64
212?GetLayoutType@CDMNodeObj@@QEAA?AW4_LAYOUT_TYPES@@XZ
213; public: __int64 __cdecl CDMNodeObj::GetLdmObjectId(void) __ptr64
214?GetLdmObjectId@CDMNodeObj@@QEAA_JXZ
215; public: int __cdecl CDMSnapin::GetListBehavior(void) __ptr64
216?GetListBehavior@CDMSnapin@@QEAAHXZ
217; public: unsigned long __cdecl CDMNodeObj::GetLogicalDriveCount(void) __ptr64
218?GetLogicalDriveCount@CDMNodeObj@@QEAAKXZ
219; public: void __cdecl CDMNodeObj::GetLongName(class CString & __ptr64,int) __ptr64
220?GetLongName@CDMNodeObj@@QEAAXAEAVCString@@H@Z
221; public: struct HWND__ * __ptr64 __cdecl CDMComponentData::GetMMCWindow(void) __ptr64
222?GetMMCWindow@CDMComponentData@@QEAAPEAUHWND__@@XZ
223; public: void __cdecl CDMNodeObj::GetMaxAdjustedFreeSize(__int64 & __ptr64) __ptr64
224?GetMaxAdjustedFreeSize@CDMNodeObj@@QEAAXAEA_J@Z
225; public: unsigned long __cdecl CDMNodeObj::GetMaxPartitionCount(void) __ptr64
226?GetMaxPartitionCount@CDMNodeObj@@QEAAKXZ
227; protected: void __cdecl CDataCache::GetMinMaxPartitionSizes(__int64,unsigned long & __ptr64,unsigned long & __ptr64) __ptr64
228?GetMinMaxPartitionSizes@CDataCache@@IEAAX_JAEAK1@Z
229; public: void __cdecl CTaskData::GetMinMaxPartitionSizes(__int64,unsigned long & __ptr64,unsigned long & __ptr64) __ptr64
230?GetMinMaxPartitionSizes@CTaskData@@QEAAX_JAEAK1@Z
231; public: void __cdecl CDMNodeObj::GetName(class CString & __ptr64) __ptr64
232?GetName@CDMNodeObj@@QEAAXAEAVCString@@@Z
233; public: unsigned long __cdecl CDMNodeObj::GetNumMembers(void) __ptr64
234?GetNumMembers@CDMNodeObj@@QEAAKXZ
235; public: unsigned long __cdecl CDMNodeObj::GetNumRegions(void) __ptr64
236?GetNumRegions@CDMNodeObj@@QEAAKXZ
237; public: void __cdecl CDMNodeObj::GetObjectId(__int64 & __ptr64) __ptr64
238?GetObjectId@CDMNodeObj@@QEAAXAEA_J@Z
239; public: class CWnd * __ptr64 __cdecl CTaskData::GetOcxFrameCWndPtr(void) __ptr64
240?GetOcxFrameCWndPtr@CTaskData@@QEAAPEAVCWnd@@XZ
241; public: class CDMNodeObj * __ptr64 __cdecl CDMNodeObj::GetParentDiskPtr(void) __ptr64
242?GetParentDiskPtr@CDMNodeObj@@QEAAPEAV1@XZ
243; public: class CDMNodeObj * __ptr64 __cdecl CDMNodeObj::GetParentVolumePtr(void) __ptr64
244?GetParentVolumePtr@CDMNodeObj@@QEAAPEAV1@XZ
245; public: enum _PARTITIONSTYLE __cdecl CDMNodeObj::GetPartitionStyle(void) __ptr64
246?GetPartitionStyle@CDMNodeObj@@QEAA?AW4_PARTITIONSTYLE@@XZ
247; public: void __cdecl CDMNodeObj::GetPartitionStyleString(class CString & __ptr64,int) __ptr64
248?GetPartitionStyleString@CDMNodeObj@@QEAAXAEAVCString@@H@Z
249; void __cdecl GetPartitionStyleStringHelper(enum _PARTITIONSTYLE,class CString & __ptr64,int,unsigned long,unsigned long,int)
250?GetPartitionStyleStringHelper@@YAXW4_PARTITIONSTYLE@@AEAVCString@@HKKH@Z
251; public: int __cdecl CDMNodeObj::GetPatternRef(void) __ptr64
252?GetPatternRef@CDMNodeObj@@QEAAHXZ
253; public: int __cdecl CDMNodeObj::GetPort(void) __ptr64
254?GetPort@CDMNodeObj@@QEAAHXZ
255; public: unsigned long __cdecl CDMNodeObj::GetPrimaryPartitionCount(void) __ptr64
256?GetPrimaryPartitionCount@CDMNodeObj@@QEAAKXZ
257GetPropertyPageData
258; public: void __cdecl CTaskData::GetRegionColorStructPtr(struct _REGION_COLORS * __ptr64 * __ptr64,int & __ptr64) __ptr64
259?GetRegionColorStructPtr@CTaskData@@QEAAXPEAPEAU_REGION_COLORS@@AEAH@Z
260; public: int __cdecl CDMNodeObj::GetRegionInfo(struct regioninfoex & __ptr64) __ptr64
261?GetRegionInfo@CDMNodeObj@@QEAAHAEAUregioninfoex@@@Z
262; public: int __cdecl CDMSnapin::GetRegionScaling(void) __ptr64
263?GetRegionScaling@CDMSnapin@@QEAAHXZ
264; public: int __cdecl CDMNodeObj::GetResultStringArray(class CStringArray & __ptr64) __ptr64
265?GetResultStringArray@CDMNodeObj@@QEAAHAEAVCStringArray@@@Z
266; public: class CString & __ptr64 __cdecl CServerRequests::GetRevertDiskName(void) __ptr64
267?GetRevertDiskName@CServerRequests@@QEAAAEAVCString@@XZ
268; public: class CString __cdecl CDataCache::GetServerName(void) __ptr64
269?GetServerName@CDataCache@@QEAA?AVCString@@XZ
270; public: class CString __cdecl CTaskData::GetServerName(void) __ptr64
271?GetServerName@CTaskData@@QEAA?AVCString@@XZ
272; public: void __cdecl CDMNodeObj::GetShortName(class CString & __ptr64) __ptr64
273?GetShortName@CDMNodeObj@@QEAAXAEAVCString@@@Z
274; public: void __cdecl CDMNodeObj::GetSize(long & __ptr64) __ptr64
275?GetSize@CDMNodeObj@@QEAAXAEAJ@Z
276; public: void __cdecl CDMNodeObj::GetSize(__int64 & __ptr64,int) __ptr64
277?GetSize@CDMNodeObj@@QEAAXAEA_JH@Z
278; public: void __cdecl CDMNodeObj::GetSizeString(class CString & __ptr64) __ptr64
279?GetSizeString@CDMNodeObj@@QEAAXAEAVCString@@@Z
280; public: __int64 __cdecl CDMNodeObj::GetStartOffset(void) __ptr64
281?GetStartOffset@CDMNodeObj@@QEAA_JXZ
282; public: int __cdecl CDMNodeObj::GetStatus(void) __ptr64
283?GetStatus@CDMNodeObj@@QEAAHXZ
284; public: enum _STORAGE_TYPES __cdecl CDMNodeObj::GetStorageType(void) __ptr64
285?GetStorageType@CDMNodeObj@@QEAA?AW4_STORAGE_TYPES@@XZ
286; public: void __cdecl CDMNodeObj::GetStorageType(class CString & __ptr64,int) __ptr64
287?GetStorageType@CDMNodeObj@@QEAAXAEAVCString@@H@Z
288; class CString __cdecl GetStringFromRc(unsigned long)
289?GetStringFromRc@@YA?AVCString@@K@Z
290; public: int __cdecl CDMSnapin::GetTopViewStyle(void) __ptr64
291?GetTopViewStyle@CDMSnapin@@QEAAHXZ
292; public: unsigned long __cdecl CTaskData::GetUIState(void) __ptr64
293?GetUIState@CTaskData@@QEAAKXZ
294; public: __int64 __cdecl CDMNodeObj::GetUnallocSpace(int) __ptr64
295?GetUnallocSpace@CDMNodeObj@@QEAA_JH@Z
296; protected: void __cdecl CDataCache::GetVolumeCookies(unsigned long & __ptr64,__int64 * __ptr64 * __ptr64) __ptr64
297?GetVolumeCookies@CDataCache@@IEAAXAEAKPEAPEA_J@Z
298; public: unsigned long __cdecl CDataCache::GetVolumeCount(void) __ptr64
299?GetVolumeCount@CDataCache@@QEAAKXZ
300; public: int __cdecl CDMNodeObj::GetVolumeInfo(struct volumeinfo & __ptr64) __ptr64
301?GetVolumeInfo@CDMNodeObj@@QEAAHAEAUvolumeinfo@@@Z
302; public: int __cdecl CDMNodeObj::GetVolumeStatus(class CString & __ptr64) __ptr64
303?GetVolumeStatus@CDMNodeObj@@QEAAHAEAVCString@@@Z
304; public: int __cdecl CDMSnapin::GetWaitCursor(void) __ptr64
305?GetWaitCursor@CDMSnapin@@QEAAHXZ
306; public: int __cdecl CDMNodeObj::HasExtendedPartition(void) __ptr64
307?HasExtendedPartition@CDMNodeObj@@QEAAHXZ
308; public: int __cdecl CDataCache::HasNTFSwithDriveLetter(void) __ptr64
309?HasNTFSwithDriveLetter@CDataCache@@QEAAHXZ
310; public: int __cdecl CTaskData::HasNTFSwithDriveLetter(void) __ptr64
311?HasNTFSwithDriveLetter@CTaskData@@QEAAHXZ
312; public: int __cdecl CDataCache::HasVMDisk(void) __ptr64
313?HasVMDisk@CDataCache@@QEAAHXZ
314; public: int __cdecl CDMNodeObj::IsActive(void) __ptr64
315?IsActive@CDMNodeObj@@QEAAHXZ
316; public: int __cdecl CDataCache::IsAlpha(void) __ptr64
317?IsAlpha@CDataCache@@QEAAHXZ
318; public: int __cdecl CTaskData::IsAlpha(void) __ptr64
319?IsAlpha@CTaskData@@QEAAHXZ
320; public: int __cdecl CDMNodeObj::IsCurrBootVolume(void) __ptr64
321?IsCurrBootVolume@CDMNodeObj@@QEAAHXZ
322; public: int __cdecl CDMNodeObj::IsCurrSystemVolume(void) __ptr64
323?IsCurrSystemVolume@CDMNodeObj@@QEAAHXZ
324; public: int __cdecl CDMNodeObj::IsDiskEmpty(void) __ptr64
325?IsDiskEmpty@CDMNodeObj@@QEAAHXZ
326; public: int __cdecl CDataCache::IsDynamic1394(void) __ptr64
327?IsDynamic1394@CDataCache@@QEAAHXZ
328; public: int __cdecl CDMNodeObj::IsEECoveredGPTDisk(void) __ptr64
329?IsEECoveredGPTDisk@CDMNodeObj@@QEAAHXZ
330; public: int __cdecl CDMNodeObj::IsESPPartition(void) __ptr64
331?IsESPPartition@CDMNodeObj@@QEAAHXZ
332; public: int __cdecl CDataCache::IsEfi(void) __ptr64
333?IsEfi@CDataCache@@QEAAHXZ
334; public: int __cdecl CTaskData::IsEfi(void) __ptr64
335?IsEfi@CTaskData@@QEAAHXZ
336; public: int __cdecl CDMNodeObj::IsFTVolume(void) __ptr64
337?IsFTVolume@CDMNodeObj@@QEAAHXZ
338IsFailPopupMgmtSupported
339; public: int __cdecl CDMNodeObj::IsFakeVolume(void) __ptr64
340?IsFakeVolume@CDMNodeObj@@QEAAHXZ
341; public: int __cdecl CDMNodeObj::IsFirstFreeRegion(void) __ptr64
342?IsFirstFreeRegion@CDMNodeObj@@QEAAHXZ
343; int __cdecl IsHiddenRegion(struct regioninfoex & __ptr64)
344?IsHiddenRegion@@YAHAEAUregioninfoex@@@Z
345; public: int __cdecl CDMNodeObj::IsHiddenRegion(void) __ptr64
346?IsHiddenRegion@CDMNodeObj@@QEAAHXZ
347; public: int __cdecl CDMNodeObj::IsInFlux(void) __ptr64
348?IsInFlux@CDMNodeObj@@QEAAHXZ
349; public: int __cdecl CTaskData::IsLocalMachine(void) __ptr64
350?IsLocalMachine@CTaskData@@QEAAHXZ
351; int __cdecl IsMbrEEPartition(struct regioninfoex & __ptr64)
352?IsMbrEEPartition@@YAHAEAUregioninfoex@@@Z
353; public: int __cdecl CDMNodeObj::IsMbrEEPartition(void) __ptr64
354?IsMbrEEPartition@CDMNodeObj@@QEAAHXZ
355; public: int __cdecl CDMNodeObj::IsMember(class CDMNodeObj * __ptr64) __ptr64
356?IsMember@CDMNodeObj@@QEAAHPEAV1@@Z
357; public: int __cdecl CDMNodeObj::IsNEC_98Disk(void) __ptr64
358?IsNEC_98Disk@CDMNodeObj@@QEAAHXZ
359; public: int __cdecl CDataCache::IsNEC_98Server(void) __ptr64
360?IsNEC_98Server@CDataCache@@QEAAHXZ
361; public: int __cdecl CTaskData::IsNEC_98Server(void) __ptr64
362?IsNEC_98Server@CTaskData@@QEAAHXZ
363; public: int __cdecl CTaskData::IsNTServer(void) __ptr64
364?IsNTServer@CTaskData@@QEAAHXZ
365; public: int __cdecl CDMNodeObj::IsOemPartition(void) __ptr64
366?IsOemPartition@CDMNodeObj@@QEAAHXZ
367; public: int __cdecl CDataCache::IsPersonalOrLapTopServer(void) __ptr64
368?IsPersonalOrLapTopServer@CDataCache@@QEAAHXZ
369IsRequestPending
370; public: int __cdecl CDMNodeObj::IsRevertable(void) __ptr64
371?IsRevertable@CDMNodeObj@@QEAAHXZ
372; public: int __cdecl CTaskData::IsSecureSystemPartition(void) __ptr64
373?IsSecureSystemPartition@CTaskData@@QEAAHXZ
374; public: int __cdecl CDMNodeObj::IsUnknownPartition(void) __ptr64
375?IsUnknownPartition@CDMNodeObj@@QEAAHXZ
376; public: int __cdecl CDMNodeObj::IsUpgradeable(void) __ptr64
377?IsUpgradeable@CDMNodeObj@@QEAAHXZ
378; public: int __cdecl CTaskData::IsWolfpack(void) __ptr64
379?IsWolfpack@CTaskData@@QEAAHXZ
380; public: void __cdecl CDMComponentData::LoadData(long) __ptr64
381?LoadData@CDMComponentData@@QEAAXJ@Z
382LoadPropertyPageData
383; void __cdecl ParseDeviceName(int * __ptr64,int * __ptr64,int * __ptr64,unsigned short * __ptr64)
384?ParseDeviceName@@YAXPEAH00PEAG@Z
385; public: void __cdecl CContextMenu::PopUpInit(class CDMNodeObj * __ptr64,int & __ptr64,int) __ptr64
386?PopUpInit@CContextMenu@@QEAAXPEAVCDMNodeObj@@AEAHH@Z
387; public: void __cdecl CDataCache::PopulateDiskGroupData(struct DISK_GROUP_DATA * __ptr64) __ptr64
388?PopulateDiskGroupData@CDataCache@@QEAAXPEAUDISK_GROUP_DATA@@@Z
389; public: void __cdecl CDataCache::PopulateEncapsulateData(struct ENCAPSULATE_DATA * __ptr64) __ptr64
390?PopulateEncapsulateData@CDataCache@@QEAAXPEAUENCAPSULATE_DATA@@@Z
391; public: void __cdecl CDMNodeObj::RecalculateSpace(void) __ptr64
392?RecalculateSpace@CDMNodeObj@@QEAAXXZ
393; public: void __cdecl CDMComponentData::RefreshDiskView(void) __ptr64
394?RefreshDiskView@CDMComponentData@@QEAAXXZ
395; public: void __cdecl CContextMenu::RefreshFileSys(__int64) __ptr64
396?RefreshFileSys@CContextMenu@@QEAAX_J@Z
397; public: void __cdecl CDMComponentData::ReloadData(void) __ptr64
398?ReloadData@CDMComponentData@@QEAAXXZ
399; __int64 __cdecl RoundUpToMB(__int64)
400?RoundUpToMB@@YA_J_J@Z
401; public: void __cdecl CDMSnapin::SetDescriptionBarText(void) __ptr64
402?SetDescriptionBarText@CDMSnapin@@QEAAXXZ
403; public: void __cdecl CDataCache::SetDiskList(struct diskinfoex * __ptr64,unsigned long) __ptr64
404?SetDiskList@CDataCache@@QEAAXPEAUdiskinfoex@@K@Z
405; public: void __cdecl CDataCache::SetDriveLetterInUse(unsigned short,int) __ptr64
406?SetDriveLetterInUse@CDataCache@@QEAAXGH@Z
407; public: void __cdecl CDMNodeObj::SetFSId(__int64) __ptr64
408?SetFSId@CDMNodeObj@@QEAAX_J@Z
409; public: void __cdecl CDMComponentData::SetOcxViewType(void) __ptr64
410?SetOcxViewType@CDMComponentData@@QEAAXXZ
411; public: void __cdecl CDMComponentData::SetOcxViewTypeForce(void) __ptr64
412?SetOcxViewTypeForce@CDMComponentData@@QEAAXXZ
413; public: void __cdecl CTaskData::SetUIState(unsigned long) __ptr64
414?SetUIState@CTaskData@@QEAAXK@Z
415; public: void __cdecl CDataCache::SetVolumeList(struct volumeinfo * __ptr64,unsigned long) __ptr64
416?SetVolumeList@CDataCache@@QEAAXPEAUvolumeinfo@@K@Z
417; public: long __cdecl CContextMenu::ShowContextMenu(class CWnd * __ptr64,long,long,__int64) __ptr64
418?ShowContextMenu@CContextMenu@@QEAAJPEAVCWnd@@JJ_J@Z
419; public: int __cdecl CDataCache::SupportGpt(void) __ptr64
420?SupportGpt@CDataCache@@QEAAHXZ
421; public: int __cdecl CTaskData::SupportGpt(void) __ptr64
422?SupportGpt@CTaskData@@QEAAHXZ
423; public: void __cdecl CDMComponentData::UIStateChange(unsigned long) __ptr64
424?UIStateChange@CDMComponentData@@QEAAXK@Z
425; public: void __cdecl CDMSnapin::UpDateConsoleView(void) __ptr64
426?UpDateConsoleView@CDMSnapin@@QEAAXXZ
427; public: int __cdecl CDMNodeObj::VolumeContainsActiveRegion(void) __ptr64
428?VolumeContainsActiveRegion@CDMNodeObj@@QEAAHXZ
429; int __cdecl namecmp(unsigned short const * __ptr64,unsigned short const * __ptr64)
430?namecmp@@YAHPEBG0@Z
431DllCanUnloadNow
432DllGetClassObject
433DllRegisterServer
lib/libc/mingw/lib64/dmivcitf.def created+42
......@@ -0,0 +1,42 @@
1;
2; Exports of file dmivcitf.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY dmivcitf.dll
8EXPORTS
9; public: void __cdecl CDataCache::AddLDMObjMapEntry(struct _LDM_OBJ_MAP_ENTRY * __ptr64) __ptr64
10?AddLDMObjMapEntry@CDataCache@@QEAAXPEAU_LDM_OBJ_MAP_ENTRY@@@Z
11CreateDataCacheX
12CreateServerRequestsX
13; public: int __cdecl CDMSnapin::GetBottomViewStyle(void) __ptr64
14?GetBottomViewStyle@CDMSnapin@@QEAAHXZ
15; public: unsigned long __cdecl CDataCache::GetDiskCount(void) __ptr64
16?GetDiskCount@CDataCache@@QEAAKXZ
17; public: int __cdecl CDMSnapin::GetDiskScaling(void) __ptr64
18?GetDiskScaling@CDMSnapin@@QEAAHXZ
19; public: int __cdecl CDMSnapin::GetFilterToggle(void) __ptr64
20?GetFilterToggle@CDMSnapin@@QEAAHXZ
21; public: __int64 __cdecl CDMNodeObj::GetLdmObjectId(void) __ptr64
22?GetLdmObjectId@CDMNodeObj@@QEAA_JXZ
23; public: int __cdecl CDMSnapin::GetListBehavior(void) __ptr64
24?GetListBehavior@CDMSnapin@@QEAAHXZ
25; public: unsigned long __cdecl CDMNodeObj::GetNumMembers(void) __ptr64
26?GetNumMembers@CDMNodeObj@@QEAAKXZ
27; public: class CWnd * __ptr64 __cdecl CTaskData::GetOcxFrameCWndPtr(void) __ptr64
28?GetOcxFrameCWndPtr@CTaskData@@QEAAPEAVCWnd@@XZ
29; public: void __cdecl CTaskData::GetRegionColorStructPtr(struct _REGION_COLORS * __ptr64 * __ptr64,int & __ptr64) __ptr64
30?GetRegionColorStructPtr@CTaskData@@QEAAXPEAPEAU_REGION_COLORS@@AEAH@Z
31; public: int __cdecl CDMSnapin::GetRegionScaling(void) __ptr64
32?GetRegionScaling@CDMSnapin@@QEAAHXZ
33; public: class CString __cdecl CDataCache::GetServerName(void) __ptr64
34?GetServerName@CDataCache@@QEAA?AVCString@@XZ
35; public: int __cdecl CDMSnapin::GetTopViewStyle(void) __ptr64
36?GetTopViewStyle@CDMSnapin@@QEAAHXZ
37; public: unsigned long __cdecl CDataCache::GetVolumeCount(void) __ptr64
38?GetVolumeCount@CDataCache@@QEAAKXZ
39; public: int __cdecl CDMSnapin::GetWaitCursor(void) __ptr64
40?GetWaitCursor@CDMSnapin@@QEAAHXZ
41HrGetErrorData
42LoadPropertyPageData
lib/libc/mingw/lib64/dmvdsitf.def created+40
......@@ -0,0 +1,40 @@
1;
2; Exports of file dmivcitf.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY dmivcitf.dll
8EXPORTS
9; public: void __cdecl CDataCache::AddLDMObjMapEntry(struct _LDM_OBJ_MAP_ENTRY * __ptr64) __ptr64
10?AddLDMObjMapEntry@CDataCache@@QEAAXPEAU_LDM_OBJ_MAP_ENTRY@@@Z
11CreateDataCacheZ
12CreateServerRequestsZ
13; public: int __cdecl CDMSnapin::GetBottomViewStyle(void) __ptr64
14?GetBottomViewStyle@CDMSnapin@@QEAAHXZ
15; public: unsigned long __cdecl CDataCache::GetDiskCount(void) __ptr64
16?GetDiskCount@CDataCache@@QEAAKXZ
17; public: int __cdecl CDMSnapin::GetDiskScaling(void) __ptr64
18?GetDiskScaling@CDMSnapin@@QEAAHXZ
19; public: int __cdecl CDMSnapin::GetFilterToggle(void) __ptr64
20?GetFilterToggle@CDMSnapin@@QEAAHXZ
21; public: __int64 __cdecl CDMNodeObj::GetLdmObjectId(void) __ptr64
22?GetLdmObjectId@CDMNodeObj@@QEAA_JXZ
23; public: int __cdecl CDMSnapin::GetListBehavior(void) __ptr64
24?GetListBehavior@CDMSnapin@@QEAAHXZ
25; public: unsigned long __cdecl CDMNodeObj::GetNumMembers(void) __ptr64
26?GetNumMembers@CDMNodeObj@@QEAAKXZ
27; public: class CWnd * __ptr64 __cdecl CTaskData::GetOcxFrameCWndPtr(void) __ptr64
28?GetOcxFrameCWndPtr@CTaskData@@QEAAPEAVCWnd@@XZ
29; public: void __cdecl CTaskData::GetRegionColorStructPtr(struct _REGION_COLORS * __ptr64 * __ptr64,int & __ptr64) __ptr64
30?GetRegionColorStructPtr@CTaskData@@QEAAXPEAPEAU_REGION_COLORS@@AEAH@Z
31; public: int __cdecl CDMSnapin::GetRegionScaling(void) __ptr64
32?GetRegionScaling@CDMSnapin@@QEAAHXZ
33; public: class CString __cdecl CDataCache::GetServerName(void) __ptr64
34?GetServerName@CDataCache@@QEAA?AVCString@@XZ
35; public: int __cdecl CDMSnapin::GetTopViewStyle(void) __ptr64
36?GetTopViewStyle@CDMSnapin@@QEAAHXZ
37; public: unsigned long __cdecl CDataCache::GetVolumeCount(void) __ptr64
38?GetVolumeCount@CDataCache@@QEAAKXZ
39; public: int __cdecl CDMSnapin::GetWaitCursor(void) __ptr64
40?GetWaitCursor@CDMSnapin@@QEAAHXZ
lib/libc/mingw/lib64/dpapi.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of DPAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "DPAPI.dll"
7EXPORTS
8CryptProtectDataNoUI
9CryptProtectMemory
10CryptResetMachineCredentials
11CryptUnprotectDataNoUI
12CryptUnprotectMemory
13CryptUpdateProtectedState
14iCryptIdentifyProtection
lib/libc/mingw/lib64/dpnaddr.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file dpnaddr.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY dpnaddr.dll
8EXPORTS
9DirectPlay8AddressCreate
lib/libc/mingw/lib64/dpnet.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file DPNet.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DPNet.dll
8EXPORTS
9DirectPlay8Create
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/dpnhupnp.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file DPNHUPNP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DPNHUPNP.dll
8EXPORTS
9DirectPlayNATHelpCreate
10DllRegisterServer
11DllCanUnloadNow
12DllGetClassObject
13DllUnregisterServer
lib/libc/mingw/lib64/dpnlobby.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file DPNLobby.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DPNLobby.dll
8EXPORTS
9DirectPlay8LobbyCreate
lib/libc/mingw/lib64/dpvoice.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file DPVOICE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DPVOICE.dll
8EXPORTS
9DirectPlayVoiceCreate
10DllRegisterServer
11DllCanUnloadNow
12DllGetClassObject
13DllUnregisterServer
lib/libc/mingw/lib64/ds32gt.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file DS32GT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DS32GT.dll
8EXPORTS
9Dispatch
lib/libc/mingw/lib64/dsound3d.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file DSOUND3D.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY DSOUND3D.dll
8EXPORTS
9CafBiquadCoeffs
lib/libc/mingw/lib64/es.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file ES.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ES.dll
8EXPORTS
9NotifyLogoffUser
10NotifyLogonUser
11ServiceMain
12LCEControlServer
13RegisterTheEventServiceDuringSetup
14RegisterTheEventServiceAfterSetup
15DllRegisterServer
16DllUnregisterServer
17DllCanUnloadNow
18DllGetClassObject
lib/libc/mingw/lib64/esent.def deleted-318
......@@ -1,318 +0,0 @@
1;
2; Definition file of ESENT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "ESENT.dll"
7EXPORTS
8JetAddColumn
9JetAddColumnA
10JetAddColumnW
11JetAttachDatabase
12JetAttachDatabase2
13JetAttachDatabase2A
14JetAttachDatabase2W
15JetAttachDatabaseA
16JetAttachDatabaseW
17JetAttachDatabaseWithStreaming
18JetAttachDatabaseWithStreamingA
19JetAttachDatabaseWithStreamingW
20JetBackup
21JetBackupA
22JetBackupInstance
23JetBackupInstanceA
24JetBackupInstanceW
25JetBackupW
26JetBeginExternalBackup
27JetBeginExternalBackupInstance
28JetBeginSession
29JetBeginSessionA
30JetBeginSessionW
31JetBeginTransaction
32JetBeginTransaction2
33JetCloseDatabase
34JetCloseFile
35JetCloseFileInstance
36JetCloseTable
37JetCommitTransaction
38JetCompact
39JetCompactA
40JetCompactW
41JetComputeStats
42JetConvertDDL
43JetConvertDDLA
44JetConvertDDLW
45JetCreateDatabase
46JetCreateDatabase2
47JetCreateDatabase2A
48JetCreateDatabase2W
49JetCreateDatabaseA
50JetCreateDatabaseW
51JetCreateDatabaseWithStreaming
52JetCreateDatabaseWithStreamingA
53JetCreateDatabaseWithStreamingW
54JetCreateIndex
55JetCreateIndex2
56JetCreateIndex2A
57JetCreateIndex2W
58JetCreateIndexA
59JetCreateIndexW
60JetCreateInstance
61JetCreateInstance2
62JetCreateInstance2A
63JetCreateInstance2W
64JetCreateInstanceA
65JetCreateInstanceW
66JetCreateTable
67JetCreateTableA
68JetCreateTableColumnIndex
69JetCreateTableColumnIndex2
70JetCreateTableColumnIndex2A
71JetCreateTableColumnIndex2W
72JetCreateTableColumnIndexA
73JetCreateTableColumnIndexW
74JetCreateTableW
75JetDBUtilities
76JetDBUtilitiesA
77JetDBUtilitiesW
78JetDefragment
79JetDefragment2
80JetDefragment2A
81JetDefragment2W
82JetDefragment3
83JetDefragment3A
84JetDefragment3W
85JetDefragmentA
86JetDefragmentW
87JetDelete
88JetDeleteColumn
89JetDeleteColumn2
90JetDeleteColumn2A
91JetDeleteColumn2W
92JetDeleteColumnA
93JetDeleteColumnW
94JetDeleteIndex
95JetDeleteIndexA
96JetDeleteIndexW
97JetDeleteTable
98JetDeleteTableA
99JetDeleteTableW
100JetDetachDatabase
101JetDetachDatabase2
102JetDetachDatabase2A
103JetDetachDatabase2W
104JetDetachDatabaseA
105JetDetachDatabaseW
106JetDupCursor
107JetDupSession
108JetEnableMultiInstance
109JetEnableMultiInstanceA
110JetEnableMultiInstanceW
111JetEndExternalBackup
112JetEndExternalBackupInstance
113JetEndExternalBackupInstance2
114JetEndSession
115JetEnumerateColumns
116JetEscrowUpdate
117JetExternalRestore
118JetExternalRestore2
119JetExternalRestore2A
120JetExternalRestore2W
121JetExternalRestoreA
122JetExternalRestoreW
123JetFreeBuffer
124JetGetAttachInfo
125JetGetAttachInfoA
126JetGetAttachInfoInstance
127JetGetAttachInfoInstanceA
128JetGetAttachInfoInstanceW
129JetGetAttachInfoW
130JetGetBookmark
131JetGetColumnInfo
132JetGetColumnInfoA
133JetGetColumnInfoW
134JetGetCounter
135JetGetCurrentIndex
136JetGetCurrentIndexA
137JetGetCurrentIndexW
138JetGetCursorInfo
139JetGetDatabaseFileInfo
140JetGetDatabaseFileInfoA
141JetGetDatabaseFileInfoW
142JetGetDatabaseInfo
143JetGetDatabaseInfoA
144JetGetDatabaseInfoW
145JetGetDatabasePages
146JetGetIndexInfo
147JetGetIndexInfoA
148JetGetIndexInfoW
149JetGetInstanceInfo
150JetGetInstanceInfoA
151JetGetInstanceInfoW
152JetGetInstanceMiscInfo
153JetGetLS
154JetGetLock
155JetGetLogFileInfo
156JetGetLogFileInfoA
157JetGetLogFileInfoW
158JetGetLogInfo
159JetGetLogInfoA
160JetGetLogInfoInstance
161JetGetLogInfoInstance2
162JetGetLogInfoInstance2A
163JetGetLogInfoInstance2W
164JetGetLogInfoInstanceA
165JetGetLogInfoInstanceW
166JetGetLogInfoW
167JetGetMaxDatabaseSize
168JetGetObjectInfo
169JetGetObjectInfoA
170JetGetObjectInfoW
171JetGetPageInfo
172JetGetRecordPosition
173JetGetRecordSize
174JetGetResourceParam
175JetGetSecondaryIndexBookmark
176JetGetSessionInfo
177JetGetSystemParameter
178JetGetSystemParameterA
179JetGetSystemParameterW
180JetGetTableColumnInfo
181JetGetTableColumnInfoA
182JetGetTableColumnInfoW
183JetGetTableIndexInfo
184JetGetTableIndexInfoA
185JetGetTableIndexInfoW
186JetGetTableInfo
187JetGetTableInfoA
188JetGetTableInfoW
189JetGetThreadStats
190JetGetTruncateLogInfoInstance
191JetGetTruncateLogInfoInstanceA
192JetGetTruncateLogInfoInstanceW
193JetGetVersion
194JetGotoBookmark
195JetGotoPosition
196JetGotoSecondaryIndexBookmark
197JetGrowDatabase
198JetIdle
199JetIndexRecordCount
200JetInit
201JetInit2
202JetInit3
203JetInit3A
204JetInit3W
205JetIntersectIndexes
206JetMakeKey
207JetMove
208JetOSSnapshotAbort
209JetOSSnapshotEnd
210JetOSSnapshotFreeze
211JetOSSnapshotFreezeA
212JetOSSnapshotFreezeW
213JetOSSnapshotGetFreezeInfo
214JetOSSnapshotGetFreezeInfoA
215JetOSSnapshotGetFreezeInfoW
216JetOSSnapshotPrepare
217JetOSSnapshotPrepareInstance
218JetOSSnapshotThaw
219JetOSSnapshotTruncateLog
220JetOSSnapshotTruncateLogInstance
221JetOpenDatabase
222JetOpenDatabaseA
223JetOpenDatabaseW
224JetOpenFile
225JetOpenFileA
226JetOpenFileInstance
227JetOpenFileInstanceA
228JetOpenFileInstanceW
229JetOpenFileSectionInstance
230JetOpenFileSectionInstanceA
231JetOpenFileSectionInstanceW
232JetOpenFileW
233JetOpenTable
234JetOpenTableA
235JetOpenTableW
236JetOpenTempTable
237JetOpenTempTable2
238JetOpenTempTable3
239JetOpenTemporaryTable
240JetPrepareToCommitTransaction
241JetPrepareUpdate
242JetReadFile
243JetReadFileInstance
244JetRegisterCallback
245JetRenameColumn
246JetRenameColumnA
247JetRenameColumnW
248JetRenameTable
249JetRenameTableA
250JetRenameTableW
251JetResetCounter
252JetResetSessionContext
253JetResetTableSequential
254JetRestore
255JetRestore2
256JetRestore2A
257JetRestore2W
258JetRestoreA
259JetRestoreInstance
260JetRestoreInstanceA
261JetRestoreInstanceW
262JetRestoreW
263JetRetrieveColumn
264JetRetrieveColumns
265JetRetrieveKey
266JetRetrieveTaggedColumnList
267JetRollback
268JetSeek
269JetSetColumn
270JetSetColumnDefaultValue
271JetSetColumnDefaultValueA
272JetSetColumnDefaultValueW
273JetSetColumns
274JetSetCurrentIndex
275JetSetCurrentIndex2
276JetSetCurrentIndex2A
277JetSetCurrentIndex2W
278JetSetCurrentIndex3
279JetSetCurrentIndex3A
280JetSetCurrentIndex3W
281JetSetCurrentIndex4
282JetSetCurrentIndex4A
283JetSetCurrentIndex4W
284JetSetCurrentIndexA
285JetSetCurrentIndexW
286JetSetDatabaseSize
287JetSetDatabaseSizeA
288JetSetDatabaseSizeW
289JetSetIndexRange
290JetSetLS
291JetSetMaxDatabaseSize
292JetSetResourceParam
293JetSetSessionContext
294JetSetSystemParameter
295JetSetSystemParameterA
296JetSetSystemParameterW
297JetSetTableSequential
298JetSnapshotStart
299JetSnapshotStartA
300JetSnapshotStartW
301JetSnapshotStop
302JetStopBackup
303JetStopBackupInstance
304JetStopService
305JetStopServiceInstance
306JetTerm
307JetTerm2
308JetTracing
309JetTruncateLog
310JetTruncateLogInstance
311JetUnregisterCallback
312JetUpdate
313JetUpdate2
314JetUpgradeDatabase
315JetUpgradeDatabaseA
316JetUpgradeDatabaseW
317ese
318esent
lib/libc/mingw/lib64/eventlog.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file eventlog.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY eventlog.dll
8EXPORTS
9SvcEntry_Eventlog
lib/libc/mingw/lib64/evntagnt.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file snmpelea.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY snmpelea.dll
8EXPORTS
9SnmpExtensionClose
10SnmpExtensionInit
11SnmpExtensionQuery
12SnmpExtensionTrap
lib/libc/mingw/lib64/exstrace.def created+21
......@@ -0,0 +1,21 @@
1;
2; Exports of file exstrace.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY exstrace.dll
8EXPORTS
9AsyncBinaryTrace
10AsyncStringTrace
11DebugAssert
12DllMain
13FlushAsyncTrace
14InitAsyncTrace
15SetAsyncTraceParams
16SetAsyncTraceParamsEx
17TermAsyncTrace
18__dwEnabledTraces DATA
19g_TestTrace
20g_TestTraceDisable
21g_TestTraceEnable
lib/libc/mingw/lib64/fastprox.def created+3113
......@@ -0,0 +1,3113 @@
1;
2; Exports of file FastProx.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FastProx.dll
8EXPORTS
9; public: __cdecl CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>(class CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc> const & __ptr64) __ptr64
10??0?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@QEAA@AEBV0@@Z
11; public: __cdecl CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>(class CWmiObjectTextSrc * __ptr64) __ptr64
12??0?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@QEAA@PEAVCWmiObjectTextSrc@@@Z
13; public: __cdecl CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>(class CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc> const & __ptr64) __ptr64
14??0?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@QEAA@AEBV0@@Z
15; public: __cdecl CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>(class CWbemRefreshingSvc * __ptr64) __ptr64
16??0?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@QEAA@PEAVCWbemRefreshingSvc@@@Z
17; public: __cdecl CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>(class CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher> const & __ptr64) __ptr64
18??0?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@QEAA@AEBV0@@Z
19; public: __cdecl CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>(class CWbemRemoteRefresher * __ptr64) __ptr64
20??0?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@QEAA@PEAVCWbemRemoteRefresher@@@Z
21; public: __cdecl CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>(class CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc> const & __ptr64) __ptr64
22??0?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@QEAA@AEBV0@@Z
23; public: __cdecl CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>(class CWbemRefreshingSvc * __ptr64) __ptr64
24??0?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@QEAA@PEAVCWbemRefreshingSvc@@@Z
25; public: __cdecl CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>(class CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling> const & __ptr64) __ptr64
26??0?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@QEAA@AEBV0@@Z
27; public: __cdecl CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>(class CWbemEnumMarshaling * __ptr64) __ptr64
28??0?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@QEAA@PEAVCWbemEnumMarshaling@@@Z
29; public: __cdecl CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>(class CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr> const & __ptr64) __ptr64
30??0?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@QEAA@AEBV0@@Z
31; public: __cdecl CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>(class CWbemFetchRefrMgr * __ptr64) __ptr64
32??0?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@QEAA@PEAVCWbemFetchRefrMgr@@@Z
33; public: __cdecl CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>(class CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory> const & __ptr64) __ptr64
34??0?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@QEAA@AEBV0@@Z
35; public: __cdecl CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>(class CWmiObjectFactory * __ptr64) __ptr64
36??0?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@QEAA@PEAVCWmiObjectFactory@@@Z
37; public: __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>(class CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray> & __ptr64) __ptr64
38??0?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAA@AEAV0@@Z
39; public: __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>(class CReferenceManager<class CFastPropertyBagItem> const & __ptr64) __ptr64
40??0?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAA@AEBV?$CReferenceManager@VCFastPropertyBagItem@@@@@Z
41; public: __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>(class CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray> & __ptr64) __ptr64
42??0?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAA@AEAV0@@Z
43; public: __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>(class CReferenceManager<class CWmiTextSource> const & __ptr64) __ptr64
44??0?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAA@AEBV?$CReferenceManager@VCWmiTextSource@@@@@Z
45; public: __cdecl CRefedPointerArray<class CFastPropertyBagItem>::CRefedPointerArray<class CFastPropertyBagItem>(class CRefedPointerArray<class CFastPropertyBagItem> & __ptr64) __ptr64
46??0?$CRefedPointerArray@VCFastPropertyBagItem@@@@QEAA@AEAV0@@Z
47; public: __cdecl CRefedPointerArray<class CFastPropertyBagItem>::CRefedPointerArray<class CFastPropertyBagItem>(void) __ptr64
48??0?$CRefedPointerArray@VCFastPropertyBagItem@@@@QEAA@XZ
49; public: __cdecl CRefedPointerArray<class CWmiTextSource>::CRefedPointerArray<class CWmiTextSource>(class CRefedPointerArray<class CWmiTextSource> & __ptr64) __ptr64
50??0?$CRefedPointerArray@VCWmiTextSource@@@@QEAA@AEAV0@@Z
51; public: __cdecl CRefedPointerArray<class CWmiTextSource>::CRefedPointerArray<class CWmiTextSource>(void) __ptr64
52??0?$CRefedPointerArray@VCWmiTextSource@@@@QEAA@XZ
53; public: __cdecl CBasicQualifierSet::CBasicQualifierSet(void) __ptr64
54??0CBasicQualifierSet@@QEAA@XZ
55; public: __cdecl CClassAndMethods::CClassAndMethods(class CClassAndMethods const & __ptr64) __ptr64
56??0CClassAndMethods@@QEAA@AEBV0@@Z
57; public: __cdecl CClassAndMethods::CClassAndMethods(void) __ptr64
58??0CClassAndMethods@@QEAA@XZ
59; public: __cdecl CClassPart::CClassPart(class CClassPart const & __ptr64) __ptr64
60??0CClassPart@@QEAA@AEBV0@@Z
61; public: __cdecl CClassPart::CClassPart(void) __ptr64
62??0CClassPart@@QEAA@XZ
63; public: __cdecl CClassPartContainer::CClassPartContainer(class CClassPartContainer const & __ptr64) __ptr64
64??0CClassPartContainer@@QEAA@AEBV0@@Z
65; public: __cdecl CClassPartContainer::CClassPartContainer(void) __ptr64
66??0CClassPartContainer@@QEAA@XZ
67; public: __cdecl CClassQualifierSet::CClassQualifierSet(class CClassQualifierSet const & __ptr64) __ptr64
68??0CClassQualifierSet@@QEAA@AEBV0@@Z
69; public: __cdecl CClassQualifierSet::CClassQualifierSet(int) __ptr64
70??0CClassQualifierSet@@QEAA@H@Z
71; public: __cdecl CDecorationPart::CDecorationPart(void) __ptr64
72??0CDecorationPart@@QEAA@XZ
73; public: __cdecl CFastPropertyBag::CFastPropertyBag(class CFastPropertyBag & __ptr64) __ptr64
74??0CFastPropertyBag@@QEAA@AEAV0@@Z
75; public: __cdecl CFastPropertyBag::CFastPropertyBag(void) __ptr64
76??0CFastPropertyBag@@QEAA@XZ
77; public: __cdecl CFixedBSTRArray::CFixedBSTRArray(void) __ptr64
78??0CFixedBSTRArray@@QEAA@XZ
79; public: __cdecl CHiPerfLock::CHiPerfLock(void) __ptr64
80??0CHiPerfLock@@QEAA@XZ
81; public: __cdecl CInstancePQSContainer::CInstancePQSContainer(class CInstancePQSContainer const & __ptr64) __ptr64
82??0CInstancePQSContainer@@QEAA@AEBV0@@Z
83; public: __cdecl CInstancePQSContainer::CInstancePQSContainer(void) __ptr64
84??0CInstancePQSContainer@@QEAA@XZ
85; public: __cdecl CInstancePart::CInstancePart(class CInstancePart const & __ptr64) __ptr64
86??0CInstancePart@@QEAA@AEBV0@@Z
87; public: __cdecl CInstancePart::CInstancePart(void) __ptr64
88??0CInstancePart@@QEAA@XZ
89; public: __cdecl CInstancePartContainer::CInstancePartContainer(class CInstancePartContainer const & __ptr64) __ptr64
90??0CInstancePartContainer@@QEAA@AEBV0@@Z
91; public: __cdecl CInstancePartContainer::CInstancePartContainer(void) __ptr64
92??0CInstancePartContainer@@QEAA@XZ
93; public: __cdecl CInstanceQualifierSet::CInstanceQualifierSet(class CInstanceQualifierSet const & __ptr64) __ptr64
94??0CInstanceQualifierSet@@QEAA@AEBV0@@Z
95; public: __cdecl CInstanceQualifierSet::CInstanceQualifierSet(int) __ptr64
96??0CInstanceQualifierSet@@QEAA@H@Z
97; public: __cdecl CInternalString::CInternalString(class CInternalString const & __ptr64) __ptr64
98??0CInternalString@@QEAA@AEBV0@@Z
99; public: __cdecl CInternalString::CInternalString(unsigned short const * __ptr64) __ptr64
100??0CInternalString@@QEAA@PEBG@Z
101; public: __cdecl CInternalString::CInternalString(void) __ptr64
102??0CInternalString@@QEAA@XZ
103; public: __cdecl CLimitationMapping::CLimitationMapping(class CLimitationMapping & __ptr64) __ptr64
104??0CLimitationMapping@@QEAA@AEAV0@@Z
105; public: __cdecl CLimitationMapping::CLimitationMapping(void) __ptr64
106??0CLimitationMapping@@QEAA@XZ
107; public: __cdecl CMethodPart::CMethodPart(class CMethodPart const & __ptr64) __ptr64
108??0CMethodPart@@QEAA@AEBV0@@Z
109; public: __cdecl CMethodPart::CMethodPart(void) __ptr64
110??0CMethodPart@@QEAA@XZ
111; public: __cdecl CMethodPartContainer::CMethodPartContainer(class CMethodPartContainer const & __ptr64) __ptr64
112??0CMethodPartContainer@@QEAA@AEBV0@@Z
113; public: __cdecl CMethodPartContainer::CMethodPartContainer(void) __ptr64
114??0CMethodPartContainer@@QEAA@XZ
115; public: __cdecl CMethodQualifierSet::CMethodQualifierSet(class CMethodQualifierSet const & __ptr64) __ptr64
116??0CMethodQualifierSet@@QEAA@AEBV0@@Z
117; public: __cdecl CMethodQualifierSet::CMethodQualifierSet(void) __ptr64
118??0CMethodQualifierSet@@QEAA@XZ
119; public: __cdecl CMethodQualifierSetContainer::CMethodQualifierSetContainer(class CMethodQualifierSetContainer const & __ptr64) __ptr64
120??0CMethodQualifierSetContainer@@QEAA@AEBV0@@Z
121; public: __cdecl CMethodQualifierSetContainer::CMethodQualifierSetContainer(void) __ptr64
122??0CMethodQualifierSetContainer@@QEAA@XZ
123; public: __cdecl CPropertyBagItemArray::CPropertyBagItemArray(class CPropertyBagItemArray & __ptr64) __ptr64
124??0CPropertyBagItemArray@@QEAA@AEAV0@@Z
125; public: __cdecl CPropertyBagItemArray::CPropertyBagItemArray(void) __ptr64
126??0CPropertyBagItemArray@@QEAA@XZ
127; public: __cdecl CQualifierSet::CQualifierSet(class CQualifierSet const & __ptr64) __ptr64
128??0CQualifierSet@@QEAA@AEBV0@@Z
129; public: __cdecl CQualifierSet::CQualifierSet(int,int) __ptr64
130??0CQualifierSet@@QEAA@HH@Z
131; public: __cdecl CQualifierSetListContainer::CQualifierSetListContainer(class CQualifierSetListContainer const & __ptr64) __ptr64
132??0CQualifierSetListContainer@@QEAA@AEBV0@@Z
133; public: __cdecl CQualifierSetListContainer::CQualifierSetListContainer(void) __ptr64
134??0CQualifierSetListContainer@@QEAA@XZ
135; public: __cdecl CType::CType(unsigned long) __ptr64
136??0CType@@QEAA@K@Z
137; public: __cdecl CType::CType(void) __ptr64
138??0CType@@QEAA@XZ
139; public: __cdecl CWbemCallSecurity::CWbemCallSecurity(class CWbemCallSecurity const & __ptr64) __ptr64
140??0CWbemCallSecurity@@QEAA@AEBV0@@Z
141; public: __cdecl CWbemCallSecurity::CWbemCallSecurity(class CLifeControl * __ptr64) __ptr64
142??0CWbemCallSecurity@@QEAA@PEAVCLifeControl@@@Z
143; public: __cdecl CWbemClass::CWbemClass(class CWbemClass const & __ptr64) __ptr64
144??0CWbemClass@@QEAA@AEBV0@@Z
145; public: __cdecl CWbemClass::CWbemClass(void) __ptr64
146??0CWbemClass@@QEAA@XZ
147; public: __cdecl CWbemClassCache::CWbemClassCache(class CWbemClassCache const & __ptr64) __ptr64
148??0CWbemClassCache@@QEAA@AEBV0@@Z
149; public: __cdecl CWbemClassCache::CWbemClassCache(unsigned long) __ptr64
150??0CWbemClassCache@@QEAA@K@Z
151; protected: __cdecl CWbemDataPacket::CWbemDataPacket(void) __ptr64
152??0CWbemDataPacket@@IEAA@XZ
153; public: __cdecl CWbemDataPacket::CWbemDataPacket(unsigned char * __ptr64,unsigned long,bool) __ptr64
154??0CWbemDataPacket@@QEAA@PEAEK_N@Z
155; public: __cdecl CWbemEnumMarshaling::CWbemEnumMarshaling(class CWbemEnumMarshaling const & __ptr64) __ptr64
156??0CWbemEnumMarshaling@@QEAA@AEBV0@@Z
157; public: __cdecl CWbemEnumMarshaling::CWbemEnumMarshaling(class CLifeControl * __ptr64,struct IUnknown * __ptr64) __ptr64
158??0CWbemEnumMarshaling@@QEAA@PEAVCLifeControl@@PEAUIUnknown@@@Z
159; public: __cdecl CWbemFetchRefrMgr::CWbemFetchRefrMgr(class CWbemFetchRefrMgr const & __ptr64) __ptr64
160??0CWbemFetchRefrMgr@@QEAA@AEBV0@@Z
161; public: __cdecl CWbemFetchRefrMgr::CWbemFetchRefrMgr(class CLifeControl * __ptr64,struct IUnknown * __ptr64) __ptr64
162??0CWbemFetchRefrMgr@@QEAA@PEAVCLifeControl@@PEAUIUnknown@@@Z
163; public: __cdecl CWbemGuidToClassMap::CWbemGuidToClassMap(class CWbemGuidToClassMap const & __ptr64) __ptr64
164??0CWbemGuidToClassMap@@QEAA@AEBV0@@Z
165; public: __cdecl CWbemGuidToClassMap::CWbemGuidToClassMap(void) __ptr64
166??0CWbemGuidToClassMap@@QEAA@XZ
167; public: __cdecl CWbemInstance::CWbemInstance(class CWbemInstance const & __ptr64) __ptr64
168??0CWbemInstance@@QEAA@AEBV0@@Z
169; public: __cdecl CWbemInstance::CWbemInstance(void) __ptr64
170??0CWbemInstance@@QEAA@XZ
171; private: __cdecl CWbemMtgtDeliverEventPacket::CWbemMtgtDeliverEventPacket(void) __ptr64
172??0CWbemMtgtDeliverEventPacket@@AEAA@XZ
173; public: __cdecl CWbemMtgtDeliverEventPacket::CWbemMtgtDeliverEventPacket(unsigned char * __ptr64,unsigned long,bool) __ptr64
174??0CWbemMtgtDeliverEventPacket@@QEAA@PEAEK_N@Z
175; protected: __cdecl CWbemObject::CWbemObject(class CDataTable & __ptr64,class CFastHeap & __ptr64,class CDerivationList & __ptr64) __ptr64
176??0CWbemObject@@IEAA@AEAVCDataTable@@AEAVCFastHeap@@AEAVCDerivationList@@@Z
177; public: __cdecl CWbemObject::CWbemObject(class CWbemObject const & __ptr64) __ptr64
178??0CWbemObject@@QEAA@AEBV0@@Z
179; public: __cdecl CWbemObjectArrayPacket::CWbemObjectArrayPacket(unsigned char * __ptr64,unsigned long,bool) __ptr64
180??0CWbemObjectArrayPacket@@QEAA@PEAEK_N@Z
181; public: __cdecl CWbemRefreshingSvc::CWbemRefreshingSvc(class CWbemRefreshingSvc const & __ptr64) __ptr64
182??0CWbemRefreshingSvc@@QEAA@AEBV0@@Z
183; public: __cdecl CWbemRefreshingSvc::CWbemRefreshingSvc(class CLifeControl * __ptr64,struct IUnknown * __ptr64) __ptr64
184??0CWbemRefreshingSvc@@QEAA@PEAVCLifeControl@@PEAUIUnknown@@@Z
185; private: __cdecl CWbemSmartEnumNextPacket::CWbemSmartEnumNextPacket(void) __ptr64
186??0CWbemSmartEnumNextPacket@@AEAA@XZ
187; public: __cdecl CWbemSmartEnumNextPacket::CWbemSmartEnumNextPacket(unsigned char * __ptr64,unsigned long,bool) __ptr64
188??0CWbemSmartEnumNextPacket@@QEAA@PEAEK_N@Z
189; public: __cdecl CWbemThreadSecurityHandle::CWbemThreadSecurityHandle(class CWbemThreadSecurityHandle const & __ptr64) __ptr64
190??0CWbemThreadSecurityHandle@@QEAA@AEBV0@@Z
191; public: __cdecl CWbemThreadSecurityHandle::CWbemThreadSecurityHandle(class CLifeControl * __ptr64) __ptr64
192??0CWbemThreadSecurityHandle@@QEAA@PEAVCLifeControl@@@Z
193; public: __cdecl CWmiObjectFactory::CWmiObjectFactory(class CWmiObjectFactory const & __ptr64) __ptr64
194??0CWmiObjectFactory@@QEAA@AEBV0@@Z
195; public: __cdecl CWmiObjectFactory::CWmiObjectFactory(class CLifeControl * __ptr64,struct IUnknown * __ptr64) __ptr64
196??0CWmiObjectFactory@@QEAA@PEAVCLifeControl@@PEAUIUnknown@@@Z
197; public: __cdecl CWmiTextSourceArray::CWmiTextSourceArray(class CWmiTextSourceArray & __ptr64) __ptr64
198??0CWmiTextSourceArray@@QEAA@AEAV0@@Z
199; public: __cdecl CWmiTextSourceArray::CWmiTextSourceArray(void) __ptr64
200??0CWmiTextSourceArray@@QEAA@XZ
201; public: __cdecl SHARED_LOCK_DATA::SHARED_LOCK_DATA(void) __ptr64
202??0SHARED_LOCK_DATA@@QEAA@XZ
203; public: __cdecl CWbemRefreshingSvc::XCfgRefrSrvc::XCfgRefrSrvc(class XCfgRefrSrvc::XCfgRefrSrvc const & __ptr64) __ptr64
204??0XCfgRefrSrvc@CWbemRefreshingSvc@@QEAA@AEBV01@@Z
205; public: __cdecl CWbemRefreshingSvc::XCfgRefrSrvc::XCfgRefrSrvc(class XCfgRefrSrvc * __ptr64) __ptr64
206??0XCfgRefrSrvc@CWbemRefreshingSvc@@QEAA@PEAV1@@Z
207; public: __cdecl CWbemEnumMarshaling::XEnumMarshaling::XEnumMarshaling(class XEnumMarshaling::XEnumMarshaling const & __ptr64) __ptr64
208??0XEnumMarshaling@CWbemEnumMarshaling@@QEAA@AEBV01@@Z
209; public: __cdecl CWbemEnumMarshaling::XEnumMarshaling::XEnumMarshaling(class XEnumMarshaling * __ptr64) __ptr64
210??0XEnumMarshaling@CWbemEnumMarshaling@@QEAA@PEAV1@@Z
211; public: __cdecl CWbemFetchRefrMgr::XFetchRefrMgr::XFetchRefrMgr(class XFetchRefrMgr::XFetchRefrMgr const & __ptr64) __ptr64
212??0XFetchRefrMgr@CWbemFetchRefrMgr@@QEAA@AEBV01@@Z
213; public: __cdecl CWbemFetchRefrMgr::XFetchRefrMgr::XFetchRefrMgr(class XFetchRefrMgr * __ptr64) __ptr64
214??0XFetchRefrMgr@CWbemFetchRefrMgr@@QEAA@PEAV1@@Z
215; public: __cdecl CWmiObjectFactory::XObjectFactory::XObjectFactory(class XObjectFactory::XObjectFactory const & __ptr64) __ptr64
216??0XObjectFactory@CWmiObjectFactory@@QEAA@AEBV01@@Z
217; public: __cdecl CWmiObjectFactory::XObjectFactory::XObjectFactory(class XObjectFactory * __ptr64) __ptr64
218??0XObjectFactory@CWmiObjectFactory@@QEAA@PEAV1@@Z
219; public: __cdecl CWmiObjectTextSrc::XObjectTextSrc::XObjectTextSrc(class XObjectTextSrc::XObjectTextSrc const & __ptr64) __ptr64
220??0XObjectTextSrc@CWmiObjectTextSrc@@QEAA@AEBV01@@Z
221; public: __cdecl CWmiObjectTextSrc::XObjectTextSrc::XObjectTextSrc(class XObjectTextSrc * __ptr64) __ptr64
222??0XObjectTextSrc@CWmiObjectTextSrc@@QEAA@PEAV1@@Z
223; public: __cdecl CWbemRefreshingSvc::XWbemRefrSvc::XWbemRefrSvc(class XWbemRefrSvc::XWbemRefrSvc const & __ptr64) __ptr64
224??0XWbemRefrSvc@CWbemRefreshingSvc@@QEAA@AEBV01@@Z
225; public: __cdecl CWbemRefreshingSvc::XWbemRefrSvc::XWbemRefrSvc(class XWbemRefrSvc * __ptr64) __ptr64
226??0XWbemRefrSvc@CWbemRefreshingSvc@@QEAA@PEAV1@@Z
227; public: __cdecl CWbemRemoteRefresher::XWbemRemoteRefr::XWbemRemoteRefr(class XWbemRemoteRefr::XWbemRemoteRefr const & __ptr64) __ptr64
228??0XWbemRemoteRefr@CWbemRemoteRefresher@@QEAA@AEBV01@@Z
229; public: __cdecl CWbemRemoteRefresher::XWbemRemoteRefr::XWbemRemoteRefr(class XWbemRemoteRefr * __ptr64) __ptr64
230??0XWbemRemoteRefr@CWbemRemoteRefresher@@QEAA@PEAV1@@Z
231; public: __cdecl CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::~CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>(void) __ptr64
232??1?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@QEAA@XZ
233; public: __cdecl CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::~CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>(void) __ptr64
234??1?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@QEAA@XZ
235; public: __cdecl CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::~CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>(void) __ptr64
236??1?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@QEAA@XZ
237; public: __cdecl CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::~CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>(void) __ptr64
238??1?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@QEAA@XZ
239; public: __cdecl CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::~CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>(void) __ptr64
240??1?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@QEAA@XZ
241; public: __cdecl CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::~CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>(void) __ptr64
242??1?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@QEAA@XZ
243; public: __cdecl CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::~CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>(void) __ptr64
244??1?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@QEAA@XZ
245; public: __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::~CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>(void) __ptr64
246??1?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAA@XZ
247; public: __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::~CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>(void) __ptr64
248??1?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAA@XZ
249; public: __cdecl CRefedPointerArray<class CFastPropertyBagItem>::~CRefedPointerArray<class CFastPropertyBagItem>(void) __ptr64
250??1?$CRefedPointerArray@VCFastPropertyBagItem@@@@QEAA@XZ
251; public: __cdecl CRefedPointerArray<class CWmiTextSource>::~CRefedPointerArray<class CWmiTextSource>(void) __ptr64
252??1?$CRefedPointerArray@VCWmiTextSource@@@@QEAA@XZ
253; public: __cdecl CBasicQualifierSet::~CBasicQualifierSet(void) __ptr64
254??1CBasicQualifierSet@@QEAA@XZ
255; public: __cdecl CClassAndMethods::~CClassAndMethods(void) __ptr64
256??1CClassAndMethods@@QEAA@XZ
257; public: __cdecl CClassPart::~CClassPart(void) __ptr64
258??1CClassPart@@QEAA@XZ
259; public: virtual __cdecl CClassQualifierSet::~CClassQualifierSet(void) __ptr64
260??1CClassQualifierSet@@UEAA@XZ
261; public: virtual __cdecl CFastPropertyBag::~CFastPropertyBag(void) __ptr64
262??1CFastPropertyBag@@UEAA@XZ
263; public: __cdecl CFixedBSTRArray::~CFixedBSTRArray(void) __ptr64
264??1CFixedBSTRArray@@QEAA@XZ
265; public: __cdecl CInstancePQSContainer::~CInstancePQSContainer(void) __ptr64
266??1CInstancePQSContainer@@QEAA@XZ
267; public: __cdecl CInstancePart::~CInstancePart(void) __ptr64
268??1CInstancePart@@QEAA@XZ
269; public: virtual __cdecl CInstanceQualifierSet::~CInstanceQualifierSet(void) __ptr64
270??1CInstanceQualifierSet@@UEAA@XZ
271; public: __cdecl CInternalString::~CInternalString(void) __ptr64
272??1CInternalString@@QEAA@XZ
273; public: __cdecl CLimitationMapping::~CLimitationMapping(void) __ptr64
274??1CLimitationMapping@@QEAA@XZ
275; public: virtual __cdecl CMethodQualifierSet::~CMethodQualifierSet(void) __ptr64
276??1CMethodQualifierSet@@UEAA@XZ
277; public: __cdecl CMethodQualifierSetContainer::~CMethodQualifierSetContainer(void) __ptr64
278??1CMethodQualifierSetContainer@@QEAA@XZ
279; public: __cdecl CPropertyBagItemArray::~CPropertyBagItemArray(void) __ptr64
280??1CPropertyBagItemArray@@QEAA@XZ
281; public: virtual __cdecl CQualifierSet::~CQualifierSet(void) __ptr64
282??1CQualifierSet@@UEAA@XZ
283; public: __cdecl CWbemCallSecurity::~CWbemCallSecurity(void) __ptr64
284??1CWbemCallSecurity@@QEAA@XZ
285; public: virtual __cdecl CWbemClass::~CWbemClass(void) __ptr64
286??1CWbemClass@@UEAA@XZ
287; public: __cdecl CWbemClassCache::~CWbemClassCache(void) __ptr64
288??1CWbemClassCache@@QEAA@XZ
289; public: __cdecl CWbemDataPacket::~CWbemDataPacket(void) __ptr64
290??1CWbemDataPacket@@QEAA@XZ
291; public: virtual __cdecl CWbemEnumMarshaling::~CWbemEnumMarshaling(void) __ptr64
292??1CWbemEnumMarshaling@@UEAA@XZ
293; public: virtual __cdecl CWbemFetchRefrMgr::~CWbemFetchRefrMgr(void) __ptr64
294??1CWbemFetchRefrMgr@@UEAA@XZ
295; public: __cdecl CWbemGuidToClassMap::~CWbemGuidToClassMap(void) __ptr64
296??1CWbemGuidToClassMap@@QEAA@XZ
297; public: virtual __cdecl CWbemInstance::~CWbemInstance(void) __ptr64
298??1CWbemInstance@@UEAA@XZ
299; public: __cdecl CWbemMtgtDeliverEventPacket::~CWbemMtgtDeliverEventPacket(void) __ptr64
300??1CWbemMtgtDeliverEventPacket@@QEAA@XZ
301; public: virtual __cdecl CWbemObject::~CWbemObject(void) __ptr64
302??1CWbemObject@@UEAA@XZ
303; public: __cdecl CWbemObjectArrayPacket::~CWbemObjectArrayPacket(void) __ptr64
304??1CWbemObjectArrayPacket@@QEAA@XZ
305; public: virtual __cdecl CWbemRefreshingSvc::~CWbemRefreshingSvc(void) __ptr64
306??1CWbemRefreshingSvc@@UEAA@XZ
307; public: __cdecl CWbemSmartEnumNextPacket::~CWbemSmartEnumNextPacket(void) __ptr64
308??1CWbemSmartEnumNextPacket@@QEAA@XZ
309; public: __cdecl CWbemThreadSecurityHandle::~CWbemThreadSecurityHandle(void) __ptr64
310??1CWbemThreadSecurityHandle@@QEAA@XZ
311; public: virtual __cdecl CWmiObjectFactory::~CWmiObjectFactory(void) __ptr64
312??1CWmiObjectFactory@@UEAA@XZ
313; public: __cdecl CWmiTextSourceArray::~CWmiTextSourceArray(void) __ptr64
314??1CWmiTextSourceArray@@QEAA@XZ
315; public: __cdecl CWbemRefreshingSvc::XCfgRefrSrvc::~XCfgRefrSrvc(void) __ptr64
316??1XCfgRefrSrvc@CWbemRefreshingSvc@@QEAA@XZ
317; public: __cdecl CWbemEnumMarshaling::XEnumMarshaling::~XEnumMarshaling(void) __ptr64
318??1XEnumMarshaling@CWbemEnumMarshaling@@QEAA@XZ
319; public: __cdecl CWbemFetchRefrMgr::XFetchRefrMgr::~XFetchRefrMgr(void) __ptr64
320??1XFetchRefrMgr@CWbemFetchRefrMgr@@QEAA@XZ
321; public: __cdecl CWmiObjectFactory::XObjectFactory::~XObjectFactory(void) __ptr64
322??1XObjectFactory@CWmiObjectFactory@@QEAA@XZ
323; public: __cdecl CWmiObjectTextSrc::XObjectTextSrc::~XObjectTextSrc(void) __ptr64
324??1XObjectTextSrc@CWmiObjectTextSrc@@QEAA@XZ
325; public: __cdecl CWbemRefreshingSvc::XWbemRefrSvc::~XWbemRefrSvc(void) __ptr64
326??1XWbemRefrSvc@CWbemRefreshingSvc@@QEAA@XZ
327; public: __cdecl CWbemRemoteRefresher::XWbemRemoteRefr::~XWbemRemoteRefr(void) __ptr64
328??1XWbemRemoteRefr@CWbemRemoteRefresher@@QEAA@XZ
329; public: class CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc> & __ptr64 __cdecl CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::operator=(class CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc> const & __ptr64) __ptr64
330??4?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@QEAAAEAV0@AEBV0@@Z
331; public: class CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc> & __ptr64 __cdecl CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::operator=(class CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc> const & __ptr64) __ptr64
332??4?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@QEAAAEAV0@AEBV0@@Z
333; public: class CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher> & __ptr64 __cdecl CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::operator=(class CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher> const & __ptr64) __ptr64
334??4?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@QEAAAEAV0@AEBV0@@Z
335; public: class CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc> & __ptr64 __cdecl CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::operator=(class CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc> const & __ptr64) __ptr64
336??4?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@QEAAAEAV0@AEBV0@@Z
337; public: class CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling> & __ptr64 __cdecl CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::operator=(class CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling> const & __ptr64) __ptr64
338??4?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@QEAAAEAV0@AEBV0@@Z
339; public: class CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr> & __ptr64 __cdecl CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::operator=(class CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr> const & __ptr64) __ptr64
340??4?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@QEAAAEAV0@AEBV0@@Z
341; public: class CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory> & __ptr64 __cdecl CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::operator=(class CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory> const & __ptr64) __ptr64
342??4?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@QEAAAEAV0@AEBV0@@Z
343; public: class CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray> & __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::operator=(class CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray> & __ptr64) __ptr64
344??4?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAAEAV0@AEAV0@@Z
345; public: class CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray> & __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::operator=(class CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray> & __ptr64) __ptr64
346??4?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAAEAV0@AEAV0@@Z
347; public: class CRefedPointerArray<class CFastPropertyBagItem> & __ptr64 __cdecl CRefedPointerArray<class CFastPropertyBagItem>::operator=(class CRefedPointerArray<class CFastPropertyBagItem> & __ptr64) __ptr64
348??4?$CRefedPointerArray@VCFastPropertyBagItem@@@@QEAAAEAV0@AEAV0@@Z
349; public: class CRefedPointerArray<class CWmiTextSource> & __ptr64 __cdecl CRefedPointerArray<class CWmiTextSource>::operator=(class CRefedPointerArray<class CWmiTextSource> & __ptr64) __ptr64
350??4?$CRefedPointerArray@VCWmiTextSource@@@@QEAAAEAV0@AEAV0@@Z
351; public: class CBasicQualifierSet & __ptr64 __cdecl CBasicQualifierSet::operator=(class CBasicQualifierSet const & __ptr64) __ptr64
352??4CBasicQualifierSet@@QEAAAEAV0@AEBV0@@Z
353; public: class CClassAndMethods & __ptr64 __cdecl CClassAndMethods::operator=(class CClassAndMethods const & __ptr64) __ptr64
354??4CClassAndMethods@@QEAAAEAV0@AEBV0@@Z
355; public: class CClassPart & __ptr64 __cdecl CClassPart::operator=(class CClassPart const & __ptr64) __ptr64
356??4CClassPart@@QEAAAEAV0@AEBV0@@Z
357; public: class CClassPartContainer & __ptr64 __cdecl CClassPartContainer::operator=(class CClassPartContainer const & __ptr64) __ptr64
358??4CClassPartContainer@@QEAAAEAV0@AEBV0@@Z
359; public: class CClassQualifierSet & __ptr64 __cdecl CClassQualifierSet::operator=(class CClassQualifierSet const & __ptr64) __ptr64
360??4CClassQualifierSet@@QEAAAEAV0@AEBV0@@Z
361; public: class CCompressedString & __ptr64 __cdecl CCompressedString::operator=(class CCompressedString const & __ptr64) __ptr64
362??4CCompressedString@@QEAAAEAV0@AEBV0@@Z
363; public: class CCompressedStringList & __ptr64 __cdecl CCompressedStringList::operator=(class CCompressedStringList const & __ptr64) __ptr64
364??4CCompressedStringList@@QEAAAEAV0@AEBV0@@Z
365; public: class CDataTable & __ptr64 __cdecl CDataTable::operator=(class CDataTable const & __ptr64) __ptr64
366??4CDataTable@@QEAAAEAV0@AEBV0@@Z
367; public: class CDecorationPart & __ptr64 __cdecl CDecorationPart::operator=(class CDecorationPart const & __ptr64) __ptr64
368??4CDecorationPart@@QEAAAEAV0@AEBV0@@Z
369; public: class CDerivationList & __ptr64 __cdecl CDerivationList::operator=(class CDerivationList const & __ptr64) __ptr64
370??4CDerivationList@@QEAAAEAV0@AEBV0@@Z
371; public: class CEmbeddedObject & __ptr64 __cdecl CEmbeddedObject::operator=(class CEmbeddedObject const & __ptr64) __ptr64
372??4CEmbeddedObject@@QEAAAEAV0@AEBV0@@Z
373; public: class CFastHeap & __ptr64 __cdecl CFastHeap::operator=(class CFastHeap const & __ptr64) __ptr64
374??4CFastHeap@@QEAAAEAV0@AEBV0@@Z
375; public: class CFastPropertyBag & __ptr64 __cdecl CFastPropertyBag::operator=(class CFastPropertyBag & __ptr64) __ptr64
376??4CFastPropertyBag@@QEAAAEAV0@AEAV0@@Z
377; public: class CFixedBSTRArray & __ptr64 __cdecl CFixedBSTRArray::operator=(class CFixedBSTRArray const & __ptr64) __ptr64
378??4CFixedBSTRArray@@QEAAAEAV0@AEBV0@@Z
379; public: class CHiPerfLock & __ptr64 __cdecl CHiPerfLock::operator=(class CHiPerfLock const & __ptr64) __ptr64
380??4CHiPerfLock@@QEAAAEAV0@AEBV0@@Z
381; public: class CInstancePQSContainer & __ptr64 __cdecl CInstancePQSContainer::operator=(class CInstancePQSContainer const & __ptr64) __ptr64
382??4CInstancePQSContainer@@QEAAAEAV0@AEBV0@@Z
383; public: class CInstancePart & __ptr64 __cdecl CInstancePart::operator=(class CInstancePart const & __ptr64) __ptr64
384??4CInstancePart@@QEAAAEAV0@AEBV0@@Z
385; public: class CInstancePartContainer & __ptr64 __cdecl CInstancePartContainer::operator=(class CInstancePartContainer const & __ptr64) __ptr64
386??4CInstancePartContainer@@QEAAAEAV0@AEBV0@@Z
387; public: class CInstanceQualifierSet & __ptr64 __cdecl CInstanceQualifierSet::operator=(class CInstanceQualifierSet const & __ptr64) __ptr64
388??4CInstanceQualifierSet@@QEAAAEAV0@AEBV0@@Z
389; public: class CInternalString & __ptr64 __cdecl CInternalString::operator=(class CInternalString const & __ptr64) __ptr64
390??4CInternalString@@QEAAAEAV0@AEBV0@@Z
391; public: int __cdecl CInternalString::operator=(class CCompressedString * __ptr64) __ptr64
392??4CInternalString@@QEAAHPEAVCCompressedString@@@Z
393; public: int __cdecl CInternalString::operator=(unsigned short const * __ptr64) __ptr64
394??4CInternalString@@QEAAHPEBG@Z
395; public: class CKnownStringTable & __ptr64 __cdecl CKnownStringTable::operator=(class CKnownStringTable const & __ptr64) __ptr64
396??4CKnownStringTable@@QEAAAEAV0@AEBV0@@Z
397; public: class CLimitationMapping & __ptr64 __cdecl CLimitationMapping::operator=(class CLimitationMapping & __ptr64) __ptr64
398??4CLimitationMapping@@QEAAAEAV0@AEAV0@@Z
399; public: struct CMethodDescription & __ptr64 __cdecl CMethodDescription::operator=(struct CMethodDescription const & __ptr64) __ptr64
400??4CMethodDescription@@QEAAAEAU0@AEBU0@@Z
401; public: class CMethodPart & __ptr64 __cdecl CMethodPart::operator=(class CMethodPart const & __ptr64) __ptr64
402??4CMethodPart@@QEAAAEAV0@AEBV0@@Z
403; public: class CMethodPartContainer & __ptr64 __cdecl CMethodPartContainer::operator=(class CMethodPartContainer const & __ptr64) __ptr64
404??4CMethodPartContainer@@QEAAAEAV0@AEBV0@@Z
405; public: class CMethodQualifierSet & __ptr64 __cdecl CMethodQualifierSet::operator=(class CMethodQualifierSet const & __ptr64) __ptr64
406??4CMethodQualifierSet@@QEAAAEAV0@AEBV0@@Z
407; public: class CMethodQualifierSetContainer & __ptr64 __cdecl CMethodQualifierSetContainer::operator=(class CMethodQualifierSetContainer const & __ptr64) __ptr64
408??4CMethodQualifierSetContainer@@QEAAAEAV0@AEBV0@@Z
409; public: class CPropertyBagItemArray & __ptr64 __cdecl CPropertyBagItemArray::operator=(class CPropertyBagItemArray & __ptr64) __ptr64
410??4CPropertyBagItemArray@@QEAAAEAV0@AEAV0@@Z
411; public: class CPropertyLookupTable & __ptr64 __cdecl CPropertyLookupTable::operator=(class CPropertyLookupTable const & __ptr64) __ptr64
412??4CPropertyLookupTable@@QEAAAEAV0@AEBV0@@Z
413; public: class CQualifierSet & __ptr64 __cdecl CQualifierSet::operator=(class CQualifierSet const & __ptr64) __ptr64
414??4CQualifierSet@@QEAAAEAV0@AEBV0@@Z
415; public: class CQualifierSetList & __ptr64 __cdecl CQualifierSetList::operator=(class CQualifierSetList const & __ptr64) __ptr64
416??4CQualifierSetList@@QEAAAEAV0@AEBV0@@Z
417; public: class CQualifierSetListContainer & __ptr64 __cdecl CQualifierSetListContainer::operator=(class CQualifierSetListContainer const & __ptr64) __ptr64
418??4CQualifierSetListContainer@@QEAAAEAV0@AEBV0@@Z
419; public: class CReservedWordTable & __ptr64 __cdecl CReservedWordTable::operator=(class CReservedWordTable const & __ptr64) __ptr64
420??4CReservedWordTable@@QEAAAEAV0@AEBV0@@Z
421; public: class CSharedLock & __ptr64 __cdecl CSharedLock::operator=(class CSharedLock const & __ptr64) __ptr64
422??4CSharedLock@@QEAAAEAV0@AEBV0@@Z
423; public: class CSystemProperties & __ptr64 __cdecl CSystemProperties::operator=(class CSystemProperties const & __ptr64) __ptr64
424??4CSystemProperties@@QEAAAEAV0@AEBV0@@Z
425; public: class CType & __ptr64 __cdecl CType::operator=(class CType const & __ptr64) __ptr64
426??4CType@@QEAAAEAV0@AEBV0@@Z
427; public: class CUntypedArray & __ptr64 __cdecl CUntypedArray::operator=(class CUntypedArray const & __ptr64) __ptr64
428??4CUntypedArray@@QEAAAEAV0@AEBV0@@Z
429; public: class CWbemCallSecurity & __ptr64 __cdecl CWbemCallSecurity::operator=(class CWbemCallSecurity const & __ptr64) __ptr64
430??4CWbemCallSecurity@@QEAAAEAV0@AEBV0@@Z
431; public: class CWbemClassCache & __ptr64 __cdecl CWbemClassCache::operator=(class CWbemClassCache const & __ptr64) __ptr64
432??4CWbemClassCache@@QEAAAEAV0@AEBV0@@Z
433; public: class CWbemDataPacket & __ptr64 __cdecl CWbemDataPacket::operator=(class CWbemDataPacket const & __ptr64) __ptr64
434??4CWbemDataPacket@@QEAAAEAV0@AEBV0@@Z
435; public: class CWbemEnumMarshaling & __ptr64 __cdecl CWbemEnumMarshaling::operator=(class CWbemEnumMarshaling const & __ptr64) __ptr64
436??4CWbemEnumMarshaling@@QEAAAEAV0@AEBV0@@Z
437; public: class CWbemFetchRefrMgr & __ptr64 __cdecl CWbemFetchRefrMgr::operator=(class CWbemFetchRefrMgr const & __ptr64) __ptr64
438??4CWbemFetchRefrMgr@@QEAAAEAV0@AEBV0@@Z
439; public: class CWbemGuidToClassMap & __ptr64 __cdecl CWbemGuidToClassMap::operator=(class CWbemGuidToClassMap const & __ptr64) __ptr64
440??4CWbemGuidToClassMap@@QEAAAEAV0@AEBV0@@Z
441; public: class CWbemMtgtDeliverEventPacket & __ptr64 __cdecl CWbemMtgtDeliverEventPacket::operator=(class CWbemMtgtDeliverEventPacket const & __ptr64) __ptr64
442??4CWbemMtgtDeliverEventPacket@@QEAAAEAV0@AEBV0@@Z
443; public: class CWbemObjectArrayPacket & __ptr64 __cdecl CWbemObjectArrayPacket::operator=(class CWbemObjectArrayPacket const & __ptr64) __ptr64
444??4CWbemObjectArrayPacket@@QEAAAEAV0@AEBV0@@Z
445; public: class CWbemRefreshingSvc & __ptr64 __cdecl CWbemRefreshingSvc::operator=(class CWbemRefreshingSvc const & __ptr64) __ptr64
446??4CWbemRefreshingSvc@@QEAAAEAV0@AEBV0@@Z
447; public: class CWbemSmartEnumNextPacket & __ptr64 __cdecl CWbemSmartEnumNextPacket::operator=(class CWbemSmartEnumNextPacket const & __ptr64) __ptr64
448??4CWbemSmartEnumNextPacket@@QEAAAEAV0@AEBV0@@Z
449; public: class CWbemThreadSecurityHandle & __ptr64 __cdecl CWbemThreadSecurityHandle::operator=(class CWbemThreadSecurityHandle const & __ptr64) __ptr64
450??4CWbemThreadSecurityHandle@@QEAAAEAV0@AEBV0@@Z
451; public: class CWmiObjectFactory & __ptr64 __cdecl CWmiObjectFactory::operator=(class CWmiObjectFactory const & __ptr64) __ptr64
452??4CWmiObjectFactory@@QEAAAEAV0@AEBV0@@Z
453; public: class CWmiTextSourceArray & __ptr64 __cdecl CWmiTextSourceArray::operator=(class CWmiTextSourceArray & __ptr64) __ptr64
454??4CWmiTextSourceArray@@QEAAAEAV0@AEAV0@@Z
455; public: struct SHARED_LOCK_DATA & __ptr64 __cdecl SHARED_LOCK_DATA::operator=(struct SHARED_LOCK_DATA const & __ptr64) __ptr64
456??4SHARED_LOCK_DATA@@QEAAAEAU0@AEBU0@@Z
457; public: struct SHMEM_HANDLE & __ptr64 __cdecl SHMEM_HANDLE::operator=(struct SHMEM_HANDLE const & __ptr64) __ptr64
458??4SHMEM_HANDLE@@QEAAAEAU0@AEBU0@@Z
459; public: class CWbemRefreshingSvc::XCfgRefrSrvc & __ptr64 __cdecl CWbemRefreshingSvc::XCfgRefrSrvc::operator=(class CWbemRefreshingSvc::XCfgRefrSrvc const & __ptr64) __ptr64
460??4XCfgRefrSrvc@CWbemRefreshingSvc@@QEAAAEAV01@AEBV01@@Z
461; public: class CWbemEnumMarshaling::XEnumMarshaling & __ptr64 __cdecl CWbemEnumMarshaling::XEnumMarshaling::operator=(class CWbemEnumMarshaling::XEnumMarshaling const & __ptr64) __ptr64
462??4XEnumMarshaling@CWbemEnumMarshaling@@QEAAAEAV01@AEBV01@@Z
463; public: class CWbemFetchRefrMgr::XFetchRefrMgr & __ptr64 __cdecl CWbemFetchRefrMgr::XFetchRefrMgr::operator=(class CWbemFetchRefrMgr::XFetchRefrMgr const & __ptr64) __ptr64
464??4XFetchRefrMgr@CWbemFetchRefrMgr@@QEAAAEAV01@AEBV01@@Z
465; public: class CWmiObjectFactory::XObjectFactory & __ptr64 __cdecl CWmiObjectFactory::XObjectFactory::operator=(class CWmiObjectFactory::XObjectFactory const & __ptr64) __ptr64
466??4XObjectFactory@CWmiObjectFactory@@QEAAAEAV01@AEBV01@@Z
467; public: class CWmiObjectTextSrc::XObjectTextSrc & __ptr64 __cdecl CWmiObjectTextSrc::XObjectTextSrc::operator=(class CWmiObjectTextSrc::XObjectTextSrc const & __ptr64) __ptr64
468??4XObjectTextSrc@CWmiObjectTextSrc@@QEAAAEAV01@AEBV01@@Z
469; public: class CWbemRefreshingSvc::XWbemRefrSvc & __ptr64 __cdecl CWbemRefreshingSvc::XWbemRefrSvc::operator=(class CWbemRefreshingSvc::XWbemRefrSvc const & __ptr64) __ptr64
470??4XWbemRefrSvc@CWbemRefreshingSvc@@QEAAAEAV01@AEBV01@@Z
471; public: class CWbemRemoteRefresher::XWbemRemoteRefr & __ptr64 __cdecl CWbemRemoteRefresher::XWbemRemoteRefr::operator=(class CWbemRemoteRefresher::XWbemRemoteRefr const & __ptr64) __ptr64
472??4XWbemRemoteRefr@CWbemRemoteRefresher@@QEAAAEAV01@AEBV01@@Z
473; public: bool __cdecl CInternalString::operator==(class CInternalString const & __ptr64)const __ptr64
474??8CInternalString@@QEBA_NAEBV0@@Z
475; public: bool __cdecl CInternalString::operator==(unsigned short const * __ptr64)const __ptr64
476??8CInternalString@@QEBA_NPEBG@Z
477; public: int __cdecl CQualifierSet::operator==(class CQualifierSet & __ptr64) __ptr64
478??8CQualifierSet@@QEAAHAEAV0@@Z
479; public: bool __cdecl CInternalString::operator!=(class CInternalString const & __ptr64)const __ptr64
480??9CInternalString@@QEBA_NAEBV0@@Z
481; public: class CFastPropertyBagItem * __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::operator[](int) __ptr64
482??A?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAPEAVCFastPropertyBagItem@@H@Z
483; public: class CFastPropertyBagItem const * __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::operator[](int)const __ptr64
484??A?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEBAPEBVCFastPropertyBagItem@@H@Z
485; public: class CWmiTextSource * __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::operator[](int) __ptr64
486??A?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAPEAVCWmiTextSource@@H@Z
487; public: class CWmiTextSource const * __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::operator[](int)const __ptr64
488??A?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEBAPEBVCWmiTextSource@@H@Z
489; public: unsigned short * __ptr64 & __ptr64 __cdecl CFixedBSTRArray::operator[](int) __ptr64
490??ACFixedBSTRArray@@QEAAAEAPEAGH@Z
491; private: __cdecl CInternalString::operator class CCompressedString * __ptr64(void) __ptr64
492??BCInternalString@@AEAAPEAVCCompressedString@@XZ
493; private: __cdecl CInternalString::operator class CCompressedString * __ptr64(void)const __ptr64
494??BCInternalString@@AEBAPEAVCCompressedString@@XZ
495; public: __cdecl CInternalString::operator class WString(void)const __ptr64
496??BCInternalString@@QEBA?AVWString@@XZ
497; public: __cdecl CType::operator unsigned long(void) __ptr64
498??BCType@@QEAAKXZ
499; public: bool __cdecl CInternalString::operator<(class CInternalString const & __ptr64)const __ptr64
500??MCInternalString@@QEBA_NAEBV0@@Z
501; public: bool __cdecl CInternalString::operator>(class CInternalString const & __ptr64)const __ptr64
502??OCInternalString@@QEBA_NAEBV0@@Z
503; const CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::`vftable'
504??_7?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@6B@
505; const CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::`vftable'
506??_7?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@6B@
507; const CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::`vftable'
508??_7?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@6B@
509; const CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::`vftable'
510??_7?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@6B@
511; const CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::`vftable'
512??_7?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@6B@
513; const CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::`vftable'
514??_7?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@6B@
515; const CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::`vftable'
516??_7?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@6B@
517; const CClassAndMethods::`vftable'{for `CClassPartContainer'}
518??_7CClassAndMethods@@6BCClassPartContainer@@@
519; const CClassAndMethods::`vftable'{for `CMethodPartContainer'}
520??_7CClassAndMethods@@6BCMethodPartContainer@@@
521; const CClassPart::`vftable'{for `CDataTableContainer'}
522??_7CClassPart@@6BCDataTableContainer@@@
523; const CClassPart::`vftable'{for `CHeapContainer'}
524??_7CClassPart@@6BCHeapContainer@@@
525; const CClassPart::`vftable'{for `CPropertyTableContainer'}
526??_7CClassPart@@6BCPropertyTableContainer@@@
527; const CClassPart::`vftable'{for `CQualifierSetContainer'}
528??_7CClassPart@@6BCQualifierSetContainer@@@
529; const CClassPartContainer::`vftable'
530??_7CClassPartContainer@@6B@
531; const CClassQualifierSet::`vftable'
532??_7CClassQualifierSet@@6B@
533; const CFastPropertyBag::`vftable'
534??_7CFastPropertyBag@@6B@
535; const CInstancePQSContainer::`vftable'
536??_7CInstancePQSContainer@@6B@
537; const CInstancePart::`vftable'{for `CDataTableContainer'}
538??_7CInstancePart@@6BCDataTableContainer@@@
539; const CInstancePart::`vftable'{for `CHeapContainer'}
540??_7CInstancePart@@6BCHeapContainer@@@
541; const CInstancePart::`vftable'{for `CQualifierSetContainer'}
542??_7CInstancePart@@6BCQualifierSetContainer@@@
543; const CInstancePart::`vftable'{for `CQualifierSetListContainer'}
544??_7CInstancePart@@6BCQualifierSetListContainer@@@
545; const CInstancePartContainer::`vftable'
546??_7CInstancePartContainer@@6B@
547; const CInstanceQualifierSet::`vftable'
548??_7CInstanceQualifierSet@@6B@
549; const CMethodPart::`vftable'
550??_7CMethodPart@@6B@
551; const CMethodPartContainer::`vftable'
552??_7CMethodPartContainer@@6B@
553; const CMethodQualifierSet::`vftable'
554??_7CMethodQualifierSet@@6B@
555; const CMethodQualifierSetContainer::`vftable'
556??_7CMethodQualifierSetContainer@@6B@
557; const CQualifierSet::`vftable'
558??_7CQualifierSet@@6B@
559; const CQualifierSetListContainer::`vftable'
560??_7CQualifierSetListContainer@@6B@
561; const CWbemCallSecurity::`vftable'{for `IServerSecurity'}
562??_7CWbemCallSecurity@@6BIServerSecurity@@@
563; const CWbemCallSecurity::`vftable'{for `_IWmiCallSec'}
564??_7CWbemCallSecurity@@6B_IWmiCallSec@@@
565; const CWbemClass::`vftable'{for `IErrorInfo'}
566??_7CWbemClass@@6BIErrorInfo@@@
567; const CWbemClass::`vftable'{for `IMarshal'}
568??_7CWbemClass@@6BIMarshal@@@
569; const CWbemClass::`vftable'{for `IWbemConstructClassObject'}
570??_7CWbemClass@@6BIWbemConstructClassObject@@@
571; const CWbemClass::`vftable'{for `IWbemPropertySource'}
572??_7CWbemClass@@6BIWbemPropertySource@@@
573; const CWbemClass::`vftable'{for `_IWmiObject'}
574??_7CWbemClass@@6B_IWmiObject@@@
575; const CWbemEnumMarshaling::`vftable'
576??_7CWbemEnumMarshaling@@6B@
577; const CWbemFetchRefrMgr::`vftable'
578??_7CWbemFetchRefrMgr@@6B@
579; const CWbemInstance::`vftable'{for `CClassPartContainer'}
580??_7CWbemInstance@@6BCClassPartContainer@@@
581; const CWbemInstance::`vftable'{for `CInstancePartContainer'}
582??_7CWbemInstance@@6BCInstancePartContainer@@@
583; const CWbemInstance::`vftable'{for `IErrorInfo'}
584??_7CWbemInstance@@6BIErrorInfo@@@
585; const CWbemInstance::`vftable'{for `IMarshal'}
586??_7CWbemInstance@@6BIMarshal@@@
587; const CWbemInstance::`vftable'{for `IWbemConstructClassObject'}
588??_7CWbemInstance@@6BIWbemConstructClassObject@@@
589; const CWbemInstance::`vftable'{for `IWbemPropertySource'}
590??_7CWbemInstance@@6BIWbemPropertySource@@@
591; const CWbemInstance::`vftable'{for `_IWmiObject'}
592??_7CWbemInstance@@6B_IWmiObject@@@
593; const CWbemObject::`vftable'{for `IErrorInfo'}
594??_7CWbemObject@@6BIErrorInfo@@@
595; const CWbemObject::`vftable'{for `IMarshal'}
596??_7CWbemObject@@6BIMarshal@@@
597; const CWbemObject::`vftable'{for `IWbemConstructClassObject'}
598??_7CWbemObject@@6BIWbemConstructClassObject@@@
599; const CWbemObject::`vftable'{for `IWbemPropertySource'}
600??_7CWbemObject@@6BIWbemPropertySource@@@
601; const CWbemObject::`vftable'{for `_IWmiObject'}
602??_7CWbemObject@@6B_IWmiObject@@@
603; const CWbemRefreshingSvc::`vftable'
604??_7CWbemRefreshingSvc@@6B@
605; const CWbemThreadSecurityHandle::`vftable'
606??_7CWbemThreadSecurityHandle@@6B@
607; const CWmiObjectFactory::`vftable'
608??_7CWmiObjectFactory@@6B@
609; const CWbemRefreshingSvc::XCfgRefrSrvc::`vftable'
610??_7XCfgRefrSrvc@CWbemRefreshingSvc@@6B@
611; const CWbemEnumMarshaling::XEnumMarshaling::`vftable'
612??_7XEnumMarshaling@CWbemEnumMarshaling@@6B@
613; const CWbemFetchRefrMgr::XFetchRefrMgr::`vftable'
614??_7XFetchRefrMgr@CWbemFetchRefrMgr@@6B@
615; const CWmiObjectFactory::XObjectFactory::`vftable'
616??_7XObjectFactory@CWmiObjectFactory@@6B@
617; const CWmiObjectTextSrc::XObjectTextSrc::`vftable'
618??_7XObjectTextSrc@CWmiObjectTextSrc@@6B@
619; const CWbemRefreshingSvc::XWbemRefrSvc::`vftable'
620??_7XWbemRefrSvc@CWbemRefreshingSvc@@6B@
621; const CWbemRemoteRefresher::XWbemRemoteRefr::`vftable'
622??_7XWbemRemoteRefr@CWbemRemoteRefresher@@6B@
623; public: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::`default constructor closure'(void) __ptr64
624??_F?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAXXZ
625; public: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::`default constructor closure'(void) __ptr64
626??_F?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAXXZ
627; public: void __cdecl CClassQualifierSet::`default constructor closure'(void) __ptr64
628??_FCClassQualifierSet@@QEAAXXZ
629; public: void __cdecl CInstanceQualifierSet::`default constructor closure'(void) __ptr64
630??_FCInstanceQualifierSet@@QEAAXXZ
631; public: void __cdecl CWbemClassCache::`default constructor closure'(void) __ptr64
632??_FCWbemClassCache@@QEAAXXZ
633; protected: unsigned long __cdecl CFastHeap::AbsoluteToHeap(unsigned char * __ptr64) __ptr64
634?AbsoluteToHeap@CFastHeap@@IEAAKPEAE@Z
635; public: void __cdecl CInternalString::AcquireCompressedString(class CCompressedString * __ptr64) __ptr64
636?AcquireCompressedString@CInternalString@@QEAAXPEAVCCompressedString@@@Z
637; public: int __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::Add(class CFastPropertyBagItem * __ptr64) __ptr64
638?Add@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAHPEAVCFastPropertyBagItem@@@Z
639; public: int __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::Add(class CWmiTextSource * __ptr64) __ptr64
640?Add@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAHPEAVCWmiTextSource@@@Z
641; public: long __cdecl CFastPropertyBag::Add(unsigned short const * __ptr64,long,unsigned long,unsigned long,void * __ptr64) __ptr64
642?Add@CFastPropertyBag@@QEAAJPEBGJKKPEAX@Z
643; protected: virtual long __cdecl CWbemRefreshingSvc::AddEnumToRefresher(struct _WBEM_REFRESHER_ID * __ptr64,unsigned short const * __ptr64,long,struct IWbemContext * __ptr64,unsigned long,struct _WBEM_REFRESH_INFO * __ptr64,unsigned long * __ptr64) __ptr64
644?AddEnumToRefresher@CWbemRefreshingSvc@@MEAAJPEAU_WBEM_REFRESHER_ID@@PEBGJPEAUIWbemContext@@KPEAU_WBEM_REFRESH_INFO@@PEAK@Z
645; public: virtual long __cdecl CWbemRefreshingSvc::XWbemRefrSvc::AddEnumToRefresher(struct _WBEM_REFRESHER_ID * __ptr64,unsigned short const * __ptr64,long,struct IWbemContext * __ptr64,unsigned long,struct _WBEM_REFRESH_INFO * __ptr64,unsigned long * __ptr64) __ptr64
646?AddEnumToRefresher@XWbemRefrSvc@CWbemRefreshingSvc@@UEAAJPEAU_WBEM_REFRESHER_ID@@PEBGJPEAUIWbemContext@@KPEAU_WBEM_REFRESH_INFO@@PEAK@Z
647; protected: long __cdecl CWbemRefreshingSvc::AddEnumToRefresher_(int,struct _WBEM_REFRESHER_ID * __ptr64,class CWbemObject * __ptr64,unsigned short const * __ptr64,long,struct IWbemContext * __ptr64,struct _WBEM_REFRESH_INFO * __ptr64) __ptr64
648?AddEnumToRefresher_@CWbemRefreshingSvc@@IEAAJHPEAU_WBEM_REFRESHER_ID@@PEAVCWbemObject@@PEBGJPEAUIWbemContext@@PEAU_WBEM_REFRESH_INFO@@@Z
649; public: long __cdecl CWbemGuidToClassMap::AddMap(class CGUID & __ptr64,class CWbemClassToIdMap * __ptr64 * __ptr64) __ptr64
650?AddMap@CWbemGuidToClassMap@@QEAAJAEAVCGUID@@PEAPEAVCWbemClassToIdMap@@@Z
651; public: long __cdecl CWbemClassCache::AddObject(struct _GUID & __ptr64,struct IWbemClassObject * __ptr64) __ptr64
652?AddObject@CWbemClassCache@@QEAAJAEAU_GUID@@PEAUIWbemClassObject@@@Z
653; protected: virtual long __cdecl CWbemRefreshingSvc::AddObjectToRefresher(struct _WBEM_REFRESHER_ID * __ptr64,unsigned short const * __ptr64,long,struct IWbemContext * __ptr64,unsigned long,struct _WBEM_REFRESH_INFO * __ptr64,unsigned long * __ptr64) __ptr64
654?AddObjectToRefresher@CWbemRefreshingSvc@@MEAAJPEAU_WBEM_REFRESHER_ID@@PEBGJPEAUIWbemContext@@KPEAU_WBEM_REFRESH_INFO@@PEAK@Z
655; public: virtual long __cdecl CWbemRefreshingSvc::XWbemRefrSvc::AddObjectToRefresher(struct _WBEM_REFRESHER_ID * __ptr64,unsigned short const * __ptr64,long,struct IWbemContext * __ptr64,unsigned long,struct _WBEM_REFRESH_INFO * __ptr64,unsigned long * __ptr64) __ptr64
656?AddObjectToRefresher@XWbemRefrSvc@CWbemRefreshingSvc@@UEAAJPEAU_WBEM_REFRESHER_ID@@PEBGJPEAUIWbemContext@@KPEAU_WBEM_REFRESH_INFO@@PEAK@Z
657; protected: virtual long __cdecl CWbemRefreshingSvc::AddObjectToRefresherByTemplate(struct _WBEM_REFRESHER_ID * __ptr64,struct IWbemClassObject * __ptr64,long,struct IWbemContext * __ptr64,unsigned long,struct _WBEM_REFRESH_INFO * __ptr64,unsigned long * __ptr64) __ptr64
658?AddObjectToRefresherByTemplate@CWbemRefreshingSvc@@MEAAJPEAU_WBEM_REFRESHER_ID@@PEAUIWbemClassObject@@JPEAUIWbemContext@@KPEAU_WBEM_REFRESH_INFO@@PEAK@Z
659; public: virtual long __cdecl CWbemRefreshingSvc::XWbemRefrSvc::AddObjectToRefresherByTemplate(struct _WBEM_REFRESHER_ID * __ptr64,struct IWbemClassObject * __ptr64,long,struct IWbemContext * __ptr64,unsigned long,struct _WBEM_REFRESH_INFO * __ptr64,unsigned long * __ptr64) __ptr64
660?AddObjectToRefresherByTemplate@XWbemRefrSvc@CWbemRefreshingSvc@@UEAAJPEAU_WBEM_REFRESHER_ID@@PEAUIWbemClassObject@@JPEAUIWbemContext@@KPEAU_WBEM_REFRESH_INFO@@PEAK@Z
661; protected: long __cdecl CWbemRefreshingSvc::AddObjectToRefresher_(int,struct _WBEM_REFRESHER_ID * __ptr64,class CWbemObject * __ptr64,long,struct IWbemContext * __ptr64,struct _WBEM_REFRESH_INFO * __ptr64) __ptr64
662?AddObjectToRefresher_@CWbemRefreshingSvc@@IEAAJHPEAU_WBEM_REFRESHER_ID@@PEAVCWbemObject@@JPEAUIWbemContext@@PEAU_WBEM_REFRESH_INFO@@@Z
663; public: long __cdecl CWbemClass::AddPropertyText(class WString & __ptr64,struct CPropertyLookup * __ptr64,class CPropertyInformation * __ptr64,long) __ptr64
664?AddPropertyText@CWbemClass@@QEAAJAEAVWString@@PEAUCPropertyLookup@@PEAVCPropertyInformation@@J@Z
665; public: static void __cdecl CType::AddPropertyType(class WString & __ptr64,unsigned short const * __ptr64)
666?AddPropertyType@CType@@SAXAEAVWString@@PEBG@Z
667; protected: long __cdecl CQualifierSet::AddQualifierConflicts(class CVarVector & __ptr64) __ptr64
668?AddQualifierConflicts@CQualifierSet@@IEAAJAEAVCVarVector@@@Z
669; public: virtual unsigned long __cdecl CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::AddRef(void) __ptr64
670?AddRef@?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@UEAAKXZ
671; public: virtual unsigned long __cdecl CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::AddRef(void) __ptr64
672?AddRef@?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@UEAAKXZ
673; public: virtual unsigned long __cdecl CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::AddRef(void) __ptr64
674?AddRef@?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@UEAAKXZ
675; public: virtual unsigned long __cdecl CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::AddRef(void) __ptr64
676?AddRef@?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@UEAAKXZ
677; public: virtual unsigned long __cdecl CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::AddRef(void) __ptr64
678?AddRef@?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@UEAAKXZ
679; public: virtual unsigned long __cdecl CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::AddRef(void) __ptr64
680?AddRef@?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@UEAAKXZ
681; public: virtual unsigned long __cdecl CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::AddRef(void) __ptr64
682?AddRef@?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@UEAAKXZ
683; public: virtual unsigned long __cdecl CQualifierSet::AddRef(void) __ptr64
684?AddRef@CQualifierSet@@UEAAKXZ
685; public: virtual unsigned long __cdecl CWbemCallSecurity::AddRef(void) __ptr64
686?AddRef@CWbemCallSecurity@@UEAAKXZ
687; public: virtual unsigned long __cdecl CWbemObject::AddRef(void) __ptr64
688?AddRef@CWbemObject@@UEAAKXZ
689; public: virtual unsigned long __cdecl CWbemThreadSecurityHandle::AddRef(void) __ptr64
690?AddRef@CWbemThreadSecurityHandle@@UEAAKXZ
691; protected: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::AddRefElement(class CFastPropertyBagItem * __ptr64) __ptr64
692?AddRefElement@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@IEAAXPEAVCFastPropertyBagItem@@@Z
693; protected: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::AddRefElement(class CWmiTextSource * __ptr64) __ptr64
694?AddRefElement@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@IEAAXPEAVCWmiTextSource@@@Z
695; public: void __cdecl CCompressedStringList::AddString(unsigned short const * __ptr64) __ptr64
696?AddString@CCompressedStringList@@QEAAXPEBG@Z
697; public: static long __cdecl CMethodDescription::AddText(struct CMethodDescription * __ptr64 __ptr64,class WString & __ptr64,class CFastHeap * __ptr64,long)
698?AddText@CMethodDescription@@SAJPEFAU1@AEAVWString@@PEAVCFastHeap@@J@Z
699; public: long __cdecl CMethodPart::AddText(class WString & __ptr64,long) __ptr64
700?AddText@CMethodPart@@QEAAJAEAVWString@@J@Z
701; public: int __cdecl CFastHeap::Allocate(unsigned long,unsigned long & __ptr64 __ptr64) __ptr64
702?Allocate@CFastHeap@@QEAAHKAEFAK@Z
703; public: int __cdecl CFastHeap::AllocateString(char const * __ptr64,unsigned long & __ptr64 __ptr64) __ptr64
704?AllocateString@CFastHeap@@QEAAHPEBDAEFAK@Z
705; public: int __cdecl CFastHeap::AllocateString(unsigned short const * __ptr64,unsigned long & __ptr64 __ptr64) __ptr64
706?AllocateString@CFastHeap@@QEAAHPEBGAEFAK@Z
707; public: virtual long __cdecl CWbemObject::AppendArrayPropRangeByHandle(long,long,unsigned long,unsigned long,void * __ptr64) __ptr64
708?AppendArrayPropRangeByHandle@CWbemObject@@UEAAJJJKKPEAX@Z
709; public: long __cdecl CWbemObject::AppendQualifierArrayRange(unsigned short const * __ptr64,unsigned short const * __ptr64,int,long,long,unsigned long,unsigned long,void * __ptr64) __ptr64
710?AppendQualifierArrayRange@CWbemObject@@QEAAJPEBG0HJJKKPEAX@Z
711; public: static long __cdecl CUntypedArray::AppendRange(class CPtrSource * __ptr64,unsigned long,unsigned long,class CFastHeap * __ptr64,unsigned long,unsigned long,void * __ptr64)
712?AppendRange@CUntypedArray@@SAJPEAVCPtrSource@@KKPEAVCFastHeap@@KKPEAX@Z
713; public: static int __cdecl CWbemObject::AreEqual(class CWbemObject * __ptr64,class CWbemObject * __ptr64,long)
714?AreEqual@CWbemObject@@SAHPEAV1@0J@Z
715; public: int __cdecl CDecorationPart::AreKeysRemoved(void) __ptr64
716?AreKeysRemoved@CDecorationPart@@QEAAHXZ
717; public: int __cdecl CLimitationMapping::ArePropertiesLimited(void) __ptr64
718?ArePropertiesLimited@CLimitationMapping@@QEAAHXZ
719; public: static long __cdecl CWbemInstance::AsymmetricMerge(class CWbemInstance * __ptr64,class CWbemInstance * __ptr64)
720?AsymmetricMerge@CWbemInstance@@SAJPEAV1@0@Z
721; protected: unsigned long __cdecl CFastHeap::AugmentRequest(unsigned long,unsigned long) __ptr64
722?AugmentRequest@CFastHeap@@IEAAKKK@Z
723; public: virtual long __cdecl CQualifierSet::BeginEnumeration(long) __ptr64
724?BeginEnumeration@CQualifierSet@@UEAAJJ@Z
725; public: virtual long __cdecl CWbemObject::BeginEnumeration(long) __ptr64
726?BeginEnumeration@CWbemObject@@UEAAJJ@Z
727; public: virtual long __cdecl CWbemObject::BeginEnumerationEx(long,long) __ptr64
728?BeginEnumerationEx@CWbemObject@@UEAAJJJ@Z
729; public: virtual long __cdecl CWbemClass::BeginMethodEnumeration(long) __ptr64
730?BeginMethodEnumeration@CWbemClass@@UEAAJJ@Z
731; public: virtual long __cdecl CWbemInstance::BeginMethodEnumeration(long) __ptr64
732?BeginMethodEnumeration@CWbemInstance@@UEAAJJ@Z
733; public: void __cdecl CLimitationMapping::Build(int) __ptr64
734?Build@CLimitationMapping@@QEAAXH@Z
735; public: virtual long __cdecl CWbemObject::CIMTYPEToVARTYPE(long,unsigned short * __ptr64) __ptr64
736?CIMTYPEToVARTYPE@CWbemObject@@UEAAJJPEAG@Z
737; public: static class CType __cdecl CType::CVarToType(class CVar & __ptr64)
738?CVarToType@CType@@SA?AV1@AEAVCVar@@@Z
739; public: class CVar * __ptr64 __cdecl CWbemInstance::CalculateCachedKey(void) __ptr64
740?CalculateCachedKey@CWbemInstance@@QEAAPEAVCVar@@XZ
741; public: long __cdecl CWbemMtgtDeliverEventPacket::CalculateLength(long,struct IWbemClassObject * __ptr64 * __ptr64,unsigned long * __ptr64,class CWbemClassToIdMap & __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
742?CalculateLength@CWbemMtgtDeliverEventPacket@@QEAAJJPEAPEAUIWbemClassObject@@PEAKAEAVCWbemClassToIdMap@@PEAU_GUID@@PEAH@Z
743; public: long __cdecl CWbemObjectArrayPacket::CalculateLength(long,struct IWbemClassObject * __ptr64 * __ptr64,unsigned long * __ptr64,class CWbemClassToIdMap & __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
744?CalculateLength@CWbemObjectArrayPacket@@QEAAJJPEAPEAUIWbemClassObject@@PEAKAEAVCWbemClassToIdMap@@PEAU_GUID@@PEAH@Z
745; public: long __cdecl CWbemSmartEnumNextPacket::CalculateLength(long,struct IWbemClassObject * __ptr64 * __ptr64,unsigned long * __ptr64,class CWbemClassToIdMap & __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
746?CalculateLength@CWbemSmartEnumNextPacket@@QEAAJJPEAPEAUIWbemClassObject@@PEAKAEAVCWbemClassToIdMap@@PEAU_GUID@@PEAH@Z
747; public: static unsigned long __cdecl CUntypedArray::CalculateNecessarySpaceByLength(int,int)
748?CalculateNecessarySpaceByLength@CUntypedArray@@SAKHH@Z
749; public: static unsigned long __cdecl CUntypedArray::CalculateNecessarySpaceByType(class CType,int)
750?CalculateNecessarySpaceByType@CUntypedArray@@SAKVCType@@H@Z
751; public: static int __cdecl CType::CanBeKey(unsigned long)
752?CanBeKey@CType@@SAHK@Z
753; public: int __cdecl CBasicQualifierSet::CanBeReconciledWith(class CBasicQualifierSet & __ptr64) __ptr64
754?CanBeReconciledWith@CBasicQualifierSet@@QEAAHAEAV1@@Z
755; public: enum EReconciliation __cdecl CClassAndMethods::CanBeReconciledWith(class CClassAndMethods & __ptr64) __ptr64
756?CanBeReconciledWith@CClassAndMethods@@QEAA?AW4EReconciliation@@AEAV1@@Z
757; public: enum EReconciliation __cdecl CClassPart::CanBeReconciledWith(class CClassPart & __ptr64) __ptr64
758?CanBeReconciledWith@CClassPart@@QEAA?AW4EReconciliation@@AEAV1@@Z
759; public: enum EReconciliation __cdecl CMethodPart::CanBeReconciledWith(class CMethodPart & __ptr64) __ptr64
760?CanBeReconciledWith@CMethodPart@@QEAA?AW4EReconciliation@@AEAV1@@Z
761; public: enum EReconciliation __cdecl CWbemClass::CanBeReconciledWith(class CWbemClass * __ptr64) __ptr64
762?CanBeReconciledWith@CWbemClass@@QEAA?AW4EReconciliation@@PEAV1@@Z
763; public: virtual long __cdecl CClassPart::CanContainAbstract(int) __ptr64
764?CanContainAbstract@CClassPart@@UEAAJH@Z
765; public: virtual long __cdecl CInstancePQSContainer::CanContainAbstract(int) __ptr64
766?CanContainAbstract@CInstancePQSContainer@@UEAAJH@Z
767; public: virtual long __cdecl CInstancePart::CanContainAbstract(int) __ptr64
768?CanContainAbstract@CInstancePart@@UEAAJH@Z
769; public: virtual long __cdecl CMethodQualifierSetContainer::CanContainAbstract(int) __ptr64
770?CanContainAbstract@CMethodQualifierSetContainer@@UEAAJH@Z
771; public: virtual long __cdecl CClassPart::CanContainDynamic(void) __ptr64
772?CanContainDynamic@CClassPart@@UEAAJXZ
773; public: virtual long __cdecl CInstancePQSContainer::CanContainDynamic(void) __ptr64
774?CanContainDynamic@CInstancePQSContainer@@UEAAJXZ
775; public: virtual long __cdecl CInstancePart::CanContainDynamic(void) __ptr64
776?CanContainDynamic@CInstancePart@@UEAAJXZ
777; public: virtual long __cdecl CMethodQualifierSetContainer::CanContainDynamic(void) __ptr64
778?CanContainDynamic@CMethodQualifierSetContainer@@UEAAJXZ
779; public: virtual long __cdecl CClassPart::CanContainKey(void) __ptr64
780?CanContainKey@CClassPart@@UEAAJXZ
781; public: virtual long __cdecl CInstancePQSContainer::CanContainKey(void) __ptr64
782?CanContainKey@CInstancePQSContainer@@UEAAJXZ
783; public: virtual long __cdecl CInstancePart::CanContainKey(void) __ptr64
784?CanContainKey@CInstancePart@@UEAAJXZ
785; public: virtual long __cdecl CMethodQualifierSetContainer::CanContainKey(void) __ptr64
786?CanContainKey@CMethodQualifierSetContainer@@UEAAJXZ
787; public: int __cdecl CClassPart::CanContainKeyedProps(void) __ptr64
788?CanContainKeyedProps@CClassPart@@QEAAHXZ
789; public: virtual long __cdecl CClassPart::CanContainSingleton(void) __ptr64
790?CanContainSingleton@CClassPart@@UEAAJXZ
791; public: virtual long __cdecl CInstancePQSContainer::CanContainSingleton(void) __ptr64
792?CanContainSingleton@CInstancePQSContainer@@UEAAJXZ
793; public: virtual long __cdecl CInstancePart::CanContainSingleton(void) __ptr64
794?CanContainSingleton@CInstancePart@@UEAAJXZ
795; public: virtual long __cdecl CMethodQualifierSetContainer::CanContainSingleton(void) __ptr64
796?CanContainSingleton@CMethodQualifierSetContainer@@UEAAJXZ
797; public: virtual int __cdecl CClassPart::CanHaveCimtype(unsigned short const * __ptr64) __ptr64
798?CanHaveCimtype@CClassPart@@UEAAHPEBG@Z
799; public: virtual int __cdecl CInstancePQSContainer::CanHaveCimtype(unsigned short const * __ptr64) __ptr64
800?CanHaveCimtype@CInstancePQSContainer@@UEAAHPEBG@Z
801; public: virtual int __cdecl CInstancePart::CanHaveCimtype(unsigned short const * __ptr64) __ptr64
802?CanHaveCimtype@CInstancePart@@UEAAHPEBG@Z
803; public: virtual int __cdecl CMethodQualifierSetContainer::CanHaveCimtype(unsigned short const * __ptr64) __ptr64
804?CanHaveCimtype@CMethodQualifierSetContainer@@UEAAHPEBG@Z
805; public: int __cdecl CCompressedString::CheapCompare(class CCompressedString const & __ptr64)const __ptr64
806?CheapCompare@CCompressedString@@QEBAHAEBV1@@Z
807; public: int __cdecl CClassPart::CheckBoolQualifier(unsigned short const * __ptr64) __ptr64
808?CheckBoolQualifier@CClassPart@@QEAAHPEBG@Z
809; public: int __cdecl CWbemObject::CheckBooleanPropQual(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
810?CheckBooleanPropQual@CWbemObject@@QEAAHPEBG0@Z
811; public: static int __cdecl CUntypedArray::CheckCVarVector(class CVarVector & __ptr64,unsigned long)
812?CheckCVarVector@CUntypedArray@@SAHAEAVCVarVector@@K@Z
813; protected: long __cdecl CMethodPart::CheckDuplicateParameters(class CWbemObject * __ptr64,class CWbemObject * __ptr64) __ptr64
814?CheckDuplicateParameters@CMethodPart@@IEAAJPEAVCWbemObject@@0@Z
815; protected: long __cdecl CMethodPart::CheckIds(class CWbemClass * __ptr64,class CWbemClass * __ptr64) __ptr64
816?CheckIds@CMethodPart@@IEAAJPEAVCWbemClass@@0@Z
817; public: static int __cdecl CUntypedArray::CheckIntervalDateTime(class CVarVector & __ptr64)
818?CheckIntervalDateTime@CUntypedArray@@SAHAEAVCVarVector@@@Z
819; public: int __cdecl CClassPart::CheckLocalBoolQualifier(unsigned short const * __ptr64) __ptr64
820?CheckLocalBoolQualifier@CClassPart@@QEAAHPEBG@Z
821; public: static long __cdecl CUntypedArray::CheckRangeSize(unsigned long,unsigned long,unsigned long,unsigned long,void * __ptr64)
822?CheckRangeSize@CUntypedArray@@SAJKKKKPEAX@Z
823; protected: static long __cdecl CUntypedArray::CheckRangeSizeForGet(unsigned long,unsigned long,unsigned long,unsigned long,unsigned long * __ptr64)
824?CheckRangeSizeForGet@CUntypedArray@@KAJKKKKPEAK@Z
825; private: void __cdecl CWbemClassCache::Clear(void) __ptr64
826?Clear@CWbemClassCache@@AEAAXXZ
827; private: void __cdecl CWbemGuidToClassMap::Clear(void) __ptr64
828?Clear@CWbemGuidToClassMap@@AEAAXXZ
829; public: void __cdecl CWbemInstance::ClearCachedKey(void) __ptr64
830?ClearCachedKey@CWbemInstance@@QEAAXXZ
831; public: virtual void __cdecl CWbemInstance::ClearCachedKeyValue(void) __ptr64
832?ClearCachedKeyValue@CWbemInstance@@UEAAXXZ
833; public: virtual long __cdecl CWbemClass::ClearWriteOnlyProperties(void) __ptr64
834?ClearWriteOnlyProperties@CWbemClass@@UEAAJXZ
835; public: virtual long __cdecl CWbemInstance::ClearWriteOnlyProperties(void) __ptr64
836?ClearWriteOnlyProperties@CWbemInstance@@UEAAJXZ
837; public: virtual long __cdecl CWbemClass::Clone(struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
838?Clone@CWbemClass@@UEAAJPEAPEAUIWbemClassObject@@@Z
839; public: virtual long __cdecl CWbemInstance::Clone(struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
840?Clone@CWbemInstance@@UEAAJPEAPEAUIWbemClassObject@@@Z
841; public: virtual long __cdecl CWbemClass::CloneAndDecorate(long,unsigned short * __ptr64,unsigned short * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
842?CloneAndDecorate@CWbemClass@@UEAAJJPEAG0PEAPEAUIWbemClassObject@@@Z
843; public: virtual long __cdecl CWbemInstance::CloneAndDecorate(long,unsigned short * __ptr64,unsigned short * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
844?CloneAndDecorate@CWbemInstance@@UEAAJJPEAG0PEAPEAUIWbemClassObject@@@Z
845; public: virtual long __cdecl CWbemClass::CloneEx(long,struct _IWmiObject * __ptr64) __ptr64
846?CloneEx@CWbemClass@@UEAAJJPEAU_IWmiObject@@@Z
847; public: virtual long __cdecl CWbemInstance::CloneEx(long,struct _IWmiObject * __ptr64) __ptr64
848?CloneEx@CWbemInstance@@UEAAJJPEAU_IWmiObject@@@Z
849; public: long __cdecl CWbemThreadSecurityHandle::CloneProcessContext(void) __ptr64
850?CloneProcessContext@CWbemThreadSecurityHandle@@QEAAJXZ
851; public: long __cdecl CWbemThreadSecurityHandle::CloneRpcContext(struct IServerSecurity * __ptr64) __ptr64
852?CloneRpcContext@CWbemThreadSecurityHandle@@QEAAJPEAUIServerSecurity@@@Z
853; public: long __cdecl CWbemThreadSecurityHandle::CloneThreadContext(unsigned long) __ptr64
854?CloneThreadContext@CWbemThreadSecurityHandle@@QEAAJK@Z
855; public: void __cdecl CClassAndMethods::Compact(void) __ptr64
856?Compact@CClassAndMethods@@QEAAXXZ
857; public: void __cdecl CClassPart::Compact(void) __ptr64
858?Compact@CClassPart@@QEAAXXZ
859; public: void __cdecl CInstancePart::Compact(bool) __ptr64
860?Compact@CInstancePart@@QEAAX_N@Z
861; public: void __cdecl CMethodPart::Compact(void) __ptr64
862?Compact@CMethodPart@@QEAAXXZ
863; public: virtual void __cdecl CWbemClass::CompactAll(void) __ptr64
864?CompactAll@CWbemClass@@UEAAXXZ
865; public: virtual void __cdecl CWbemInstance::CompactAll(void) __ptr64
866?CompactAll@CWbemInstance@@UEAAXXZ
867; public: void __cdecl CWbemInstance::CompactClass(void) __ptr64
868?CompactClass@CWbemInstance@@QEAAXXZ
869; public: int __cdecl CBasicQualifierSet::Compare(class CBasicQualifierSet & __ptr64,unsigned char,unsigned short const * __ptr64 * __ptr64,unsigned long) __ptr64
870?Compare@CBasicQualifierSet@@QEAAHAEAV1@EPEAPEBGK@Z
871; public: int __cdecl CCompressedString::Compare(class CCompressedString const & __ptr64)const __ptr64
872?Compare@CCompressedString@@QEBAHAEBV1@@Z
873; public: int __cdecl CCompressedString::Compare(char const * __ptr64)const __ptr64
874?Compare@CCompressedString@@QEBAHPEBD@Z
875; public: int __cdecl CCompressedString::Compare(unsigned short const * __ptr64)const __ptr64
876?Compare@CCompressedString@@QEBAHPEBG@Z
877; public: int __cdecl CInternalString::Compare(class CInternalString const & __ptr64)const __ptr64
878?Compare@CInternalString@@QEBAHAEBV1@@Z
879; public: int __cdecl CInternalString::Compare(unsigned short const * __ptr64)const __ptr64
880?Compare@CInternalString@@QEBAHPEBG@Z
881; public: int __cdecl CQualifierSet::Compare(class CQualifierSet & __ptr64,class CFixedBSTRArray * __ptr64,int) __ptr64
882?Compare@CQualifierSet@@QEAAHAEAV1@PEAVCFixedBSTRArray@@H@Z
883; public: virtual long __cdecl CWbemObject::CompareClassParts(struct IWbemClassObject * __ptr64,long) __ptr64
884?CompareClassParts@CWbemObject@@UEAAJPEAUIWbemClassObject@@J@Z
885; public: int __cdecl CClassPart::CompareDefs(class CClassPart & __ptr64) __ptr64
886?CompareDefs@CClassPart@@QEAAHAEAV1@@Z
887; public: virtual long __cdecl CWbemClass::CompareDerivedMostClass(long,struct _IWmiObject * __ptr64) __ptr64
888?CompareDerivedMostClass@CWbemClass@@UEAAJJPEAU_IWmiObject@@@Z
889; public: virtual long __cdecl CWbemInstance::CompareDerivedMostClass(long,struct _IWmiObject * __ptr64) __ptr64
890?CompareDerivedMostClass@CWbemInstance@@UEAAJJPEAU_IWmiObject@@@Z
891; public: enum EReconciliation __cdecl CClassPart::CompareExactMatch(class CClassPart & __ptr64,int) __ptr64
892?CompareExactMatch@CClassPart@@QEAA?AW4EReconciliation@@AEAV1@H@Z
893; public: enum EReconciliation __cdecl CMethodPart::CompareExactMatch(class CMethodPart & __ptr64) __ptr64
894?CompareExactMatch@CMethodPart@@QEAA?AW4EReconciliation@@AEAV1@@Z
895; public: int __cdecl CBasicQualifierSet::CompareLocalizedSet(class CBasicQualifierSet & __ptr64) __ptr64
896?CompareLocalizedSet@CBasicQualifierSet@@QEAAHAEAV1@@Z
897; public: long __cdecl CWbemClass::CompareMostDerivedClass(class CWbemClass * __ptr64) __ptr64
898?CompareMostDerivedClass@CWbemClass@@QEAAJPEAV1@@Z
899; public: int __cdecl CCompressedString::CompareNoCase(class CCompressedString const & __ptr64)const __ptr64
900?CompareNoCase@CCompressedString@@QEBAHAEBV1@@Z
901; public: int __cdecl CCompressedString::CompareNoCase(char const * __ptr64)const __ptr64
902?CompareNoCase@CCompressedString@@QEBAHPEBD@Z
903; public: int __cdecl CCompressedString::CompareNoCase(unsigned short const * __ptr64)const __ptr64
904?CompareNoCase@CCompressedString@@QEBAHPEBG@Z
905; public: enum EReconciliation __cdecl CClassAndMethods::CompareTo(class CClassAndMethods & __ptr64) __ptr64
906?CompareTo@CClassAndMethods@@QEAA?AW4EReconciliation@@AEAV1@@Z
907; public: int __cdecl CDecorationPart::CompareTo(class CDecorationPart & __ptr64) __ptr64
908?CompareTo@CDecorationPart@@QEAAHAEAV1@@Z
909; public: long __cdecl CMethodPart::CompareTo(long,class CMethodPart & __ptr64) __ptr64
910?CompareTo@CMethodPart@@QEAAJJAEAV1@@Z
911; public: virtual long __cdecl CQualifierSet::CompareTo(long,struct IWbemQualifierSet * __ptr64) __ptr64
912?CompareTo@CQualifierSet@@UEAAJJPEAUIWbemQualifierSet@@@Z
913; public: virtual long __cdecl CWbemClass::CompareTo(long,struct IWbemClassObject * __ptr64) __ptr64
914?CompareTo@CWbemClass@@UEAAJJPEAUIWbemClassObject@@@Z
915; public: virtual long __cdecl CWbemObject::CompareTo(long,struct IWbemClassObject * __ptr64) __ptr64
916?CompareTo@CWbemObject@@UEAAJJPEAUIWbemClassObject@@@Z
917; protected: static int __cdecl CCompressedString::CompareUnicodeToAscii(unsigned short const * __ptr64 __ptr64,char const * __ptr64)
918?CompareUnicodeToAscii@CCompressedString@@KAHPEFBGPEBD@Z
919; protected: static int __cdecl CCompressedString::CompareUnicodeToAsciiNoCase(unsigned short const * __ptr64 __ptr64,char const * __ptr64,int)
920?CompareUnicodeToAsciiNoCase@CCompressedString@@KAHPEFBGPEBDH@Z
921; public: static unsigned long __cdecl CBasicQualifierSet::ComputeMergeSpace(unsigned char * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64,int)
922?ComputeMergeSpace@CBasicQualifierSet@@SAKPEAEPEAVCFastHeap@@01H@Z
923; public: static int __cdecl CCompressedString::ComputeNecessarySpace(char const * __ptr64)
924?ComputeNecessarySpace@CCompressedString@@SAHPEBD@Z
925; public: static int __cdecl CCompressedString::ComputeNecessarySpace(unsigned short const * __ptr64)
926?ComputeNecessarySpace@CCompressedString@@SAHPEBG@Z
927; public: static int __cdecl CCompressedString::ComputeNecessarySpace(unsigned short const * __ptr64,int & __ptr64)
928?ComputeNecessarySpace@CCompressedString@@SAHPEBGAEAH@Z
929; public: unsigned long __cdecl CCompressedStringList::ComputeNecessarySpace(class CCompressedString * __ptr64) __ptr64
930?ComputeNecessarySpace@CCompressedStringList@@QEAAKPEAVCCompressedString@@@Z
931; public: static unsigned long __cdecl CDataTable::ComputeNecessarySpace(int,int)
932?ComputeNecessarySpace@CDataTable@@SAKHH@Z
933; public: static unsigned long __cdecl CDecorationPart::ComputeNecessarySpace(unsigned short const * __ptr64,unsigned short const * __ptr64)
934?ComputeNecessarySpace@CDecorationPart@@SAKPEBG0@Z
935; public: static unsigned long __cdecl CInstancePart::ComputeNecessarySpace(class CClassPart * __ptr64)
936?ComputeNecessarySpace@CInstancePart@@SAKPEAVCClassPart@@@Z
937; public: static unsigned long __cdecl CQualifierSetList::ComputeNecessarySpace(int)
938?ComputeNecessarySpace@CQualifierSetList@@SAKH@Z
939; public: static unsigned long __cdecl CBasicQualifierSet::ComputeNecessarySpaceForPropagation(unsigned char * __ptr64,unsigned char)
940?ComputeNecessarySpaceForPropagation@CBasicQualifierSet@@SAKPEAEE@Z
941; public: static unsigned long __cdecl CQualifierSetList::ComputeRealSpace(int)
942?ComputeRealSpace@CQualifierSetList@@SAKH@Z
943; public: static unsigned long __cdecl CBasicQualifierSet::ComputeUnmergedSpace(unsigned char * __ptr64)
944?ComputeUnmergedSpace@CBasicQualifierSet@@SAKPEAE@Z
945; public: unsigned char * __ptr64 __cdecl CInstancePart::ConvertToClass(class CClassPart & __ptr64,unsigned long,unsigned char * __ptr64) __ptr64
946?ConvertToClass@CInstancePart@@QEAAPEAEAEAVCClassPart@@KPEAE@Z
947; public: long __cdecl CWbemInstance::ConvertToClass(class CWbemClass * __ptr64,class CWbemInstance * __ptr64 * __ptr64) __ptr64
948?ConvertToClass@CWbemInstance@@QEAAJPEAVCWbemClass@@PEAPEAV1@@Z
949; public: long __cdecl CWbemInstance::ConvertToMergedInstance(void) __ptr64
950?ConvertToMergedInstance@CWbemInstance@@QEAAJXZ
951; public: void __cdecl CCompressedString::ConvertToUnicode(unsigned short * __ptr64)const __ptr64
952?ConvertToUnicode@CCompressedString@@QEBAXPEAG@Z
953; public: void __cdecl CFastHeap::Copy(unsigned long,unsigned long,unsigned long) __ptr64
954?Copy@CFastHeap@@QEAAXKKK@Z
955; public: long __cdecl CFastPropertyBag::Copy(class CFastPropertyBag const & __ptr64) __ptr64
956?Copy@CFastPropertyBag@@QEAAJAEBV1@@Z
957; public: long __cdecl CWbemInstance::CopyActualTransferBlob(long,unsigned char * __ptr64) __ptr64
958?CopyActualTransferBlob@CWbemInstance@@QEAAJJPEAE@Z
959; public: long __cdecl CWbemInstance::CopyBlob(unsigned char * __ptr64,int) __ptr64
960?CopyBlob@CWbemInstance@@QEAAJPEAEH@Z
961; public: virtual long __cdecl CWbemClass::CopyBlobOf(class CWbemObject * __ptr64) __ptr64
962?CopyBlobOf@CWbemClass@@UEAAJPEAVCWbemObject@@@Z
963; public: virtual long __cdecl CWbemInstance::CopyBlobOf(class CWbemObject * __ptr64) __ptr64
964?CopyBlobOf@CWbemInstance@@UEAAJPEAVCWbemObject@@@Z
965; public: unsigned char * __ptr64 __cdecl CCompressedStringList::CopyData(unsigned char * __ptr64) __ptr64
966?CopyData@CCompressedStringList@@QEAAPEAEPEAE@Z
967; protected: void __cdecl CLimitationMapping::CopyInfo(class CPropertyInformation & __ptr64,class CPropertyInformation const & __ptr64) __ptr64
968?CopyInfo@CLimitationMapping@@IEAAXAEAVCPropertyInformation@@AEBV2@@Z
969; public: virtual long __cdecl CWbemClass::CopyInstanceData(long,struct _IWmiObject * __ptr64) __ptr64
970?CopyInstanceData@CWbemClass@@UEAAJJPEAU_IWmiObject@@@Z
971; public: virtual long __cdecl CWbemInstance::CopyInstanceData(long,struct _IWmiObject * __ptr64) __ptr64
972?CopyInstanceData@CWbemInstance@@UEAAJJPEAU_IWmiObject@@@Z
973; public: long __cdecl CQualifierSet::CopyLocalQualifiers(class CQualifierSet & __ptr64) __ptr64
974?CopyLocalQualifiers@CQualifierSet@@QEAAJAEAV1@@Z
975; public: void __cdecl CDataTable::CopyNullness(class CDataTable * __ptr64) __ptr64
976?CopyNullness@CDataTable@@QEAAXPEAV1@@Z
977; public: long __cdecl CClassPart::CopyParentProperty(class CClassPart & __ptr64,unsigned short const * __ptr64) __ptr64
978?CopyParentProperty@CClassPart@@QEAAJAEAV1@PEBG@Z
979; public: static int __cdecl CCompressedString::CopyToNewHeap(unsigned long,class CFastHeap * __ptr64,class CFastHeap * __ptr64,unsigned long & __ptr64 __ptr64)
980?CopyToNewHeap@CCompressedString@@SAHKPEAVCFastHeap@@0AEFAK@Z
981; public: static int __cdecl CEmbeddedObject::CopyToNewHeap(unsigned long,class CFastHeap * __ptr64,class CFastHeap * __ptr64,unsigned long & __ptr64 __ptr64)
982?CopyToNewHeap@CEmbeddedObject@@SAHKPEAVCFastHeap@@0AEFAK@Z
983; public: static int __cdecl CUntypedArray::CopyToNewHeap(unsigned long,class CType,class CFastHeap * __ptr64,class CFastHeap * __ptr64,unsigned long & __ptr64 __ptr64)
984?CopyToNewHeap@CUntypedArray@@SAHKVCType@@PEAVCFastHeap@@1AEFAK@Z
985; public: static long __cdecl CWbemInstance::CopyTransferArrayBlob(class CWbemInstance * __ptr64,long,long,unsigned char * __ptr64,class CFlexArray & __ptr64,long * __ptr64)
986?CopyTransferArrayBlob@CWbemInstance@@SAJPEAV1@JJPEAEAEAVCFlexArray@@PEAJ@Z
987; public: long __cdecl CWbemInstance::CopyTransferBlob(long,long,unsigned char * __ptr64) __ptr64
988?CopyTransferBlob@CWbemInstance@@QEAAJJJPEAE@Z
989; public: void __cdecl CDecorationPart::Create(unsigned char,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned char * __ptr64) __ptr64
990?Create@CDecorationPart@@QEAAXEPEBG0PEAE@Z
991; public: void __cdecl CFixedBSTRArray::Create(int) __ptr64
992?Create@CFixedBSTRArray@@QEAAXH@Z
993; public: void __cdecl CInstancePQSContainer::Create(class CQualifierSetList * __ptr64,int,class CClassPart * __ptr64,unsigned long) __ptr64
994?Create@CInstancePQSContainer@@QEAAXPEAVCQualifierSetList@@HPEAVCClassPart@@K@Z
995; public: unsigned char * __ptr64 __cdecl CInstancePart::Create(unsigned char * __ptr64,class CClassPart * __ptr64,class CInstancePartContainer * __ptr64) __ptr64
996?Create@CInstancePart@@QEAAPEAEPEAEPEAVCClassPart@@PEAVCInstancePartContainer@@@Z
997; public: long __cdecl CWmiObjectFactory::Create(struct IUnknown * __ptr64,unsigned long,struct _GUID const & __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
998?Create@CWmiObjectFactory@@QEAAJPEAUIUnknown@@KAEBU_GUID@@1PEAPEAX@Z
999; public: virtual long __cdecl CWmiObjectFactory::XObjectFactory::Create(struct IUnknown * __ptr64,unsigned long,struct _GUID const & __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
1000?Create@XObjectFactory@CWmiObjectFactory@@UEAAJPEAUIUnknown@@KAEBU_GUID@@1PEAPEAX@Z
1001; public: unsigned short * __ptr64 __cdecl CCompressedString::CreateBSTRCopy(void)const __ptr64
1002?CreateBSTRCopy@CCompressedString@@QEBAPEAGXZ
1003; public: class CVarVector * __ptr64 __cdecl CUntypedArray::CreateCVarVector(class CType,class CFastHeap * __ptr64) __ptr64
1004?CreateCVarVector@CUntypedArray@@QEAAPEAVCVarVector@@VCType@@PEAVCFastHeap@@@Z
1005; public: long __cdecl CWbemClass::CreateDerivedClass(class CWbemClass * __ptr64 * __ptr64) __ptr64
1006?CreateDerivedClass@CWbemClass@@QEAAJPEAPEAV1@@Z
1007; public: long __cdecl CWbemClass::CreateDerivedClass(class CWbemClass * __ptr64,int,class CDecorationPart * __ptr64) __ptr64
1008?CreateDerivedClass@CWbemClass@@QEAAJPEAV1@HPEAVCDecorationPart@@@Z
1009; public: unsigned char * __ptr64 __cdecl CClassAndMethods::CreateDerivedPart(unsigned char * __ptr64,unsigned long) __ptr64
1010?CreateDerivedPart@CClassAndMethods@@QEAAPEAEPEAEK@Z
1011; public: unsigned char * __ptr64 __cdecl CClassPart::CreateDerivedPart(unsigned char * __ptr64,int) __ptr64
1012?CreateDerivedPart@CClassPart@@QEAAPEAEPEAEH@Z
1013; public: unsigned char * __ptr64 __cdecl CMethodPart::CreateDerivedPart(unsigned char * __ptr64,unsigned long) __ptr64
1014?CreateDerivedPart@CMethodPart@@QEAAPEAEPEAEK@Z
1015; public: static int __cdecl CMethodDescription::CreateDerivedVersion(struct CMethodDescription * __ptr64 __ptr64,struct CMethodDescription * __ptr64 __ptr64,class CFastHeap * __ptr64,class CFastHeap * __ptr64)
1016?CreateDerivedVersion@CMethodDescription@@SAHPEFAU1@0PEAVCFastHeap@@1@Z
1017; public: static unsigned char * __ptr64 __cdecl CBasicQualifierSet::CreateEmpty(unsigned char * __ptr64)
1018?CreateEmpty@CBasicQualifierSet@@SAPEAEPEAE@Z
1019; public: static unsigned char * __ptr64 __cdecl CClassAndMethods::CreateEmpty(unsigned char * __ptr64)
1020?CreateEmpty@CClassAndMethods@@SAPEAEPEAE@Z
1021; public: static unsigned char * __ptr64 __cdecl CClassPart::CreateEmpty(unsigned char * __ptr64)
1022?CreateEmpty@CClassPart@@SAPEAEPEAE@Z
1023; public: static unsigned char * __ptr64 __cdecl CCompressedString::CreateEmpty(unsigned char * __ptr64)
1024?CreateEmpty@CCompressedString@@SAPEAEPEAE@Z
1025; public: static unsigned char * __ptr64 __cdecl CCompressedStringList::CreateEmpty(unsigned char * __ptr64)
1026?CreateEmpty@CCompressedStringList@@SAPEAEPEAE@Z
1027; public: static unsigned char * __ptr64 __cdecl CDataTable::CreateEmpty(unsigned char * __ptr64)
1028?CreateEmpty@CDataTable@@SAPEAEPEAE@Z
1029; public: unsigned char * __ptr64 __cdecl CDecorationPart::CreateEmpty(unsigned char,unsigned char * __ptr64) __ptr64
1030?CreateEmpty@CDecorationPart@@QEAAPEAEEPEAE@Z
1031; public: static unsigned char * __ptr64 __cdecl CFastHeap::CreateEmpty(unsigned char * __ptr64)
1032?CreateEmpty@CFastHeap@@SAPEAEPEAE@Z
1033; public: static unsigned char * __ptr64 __cdecl CMethodPart::CreateEmpty(unsigned char * __ptr64)
1034?CreateEmpty@CMethodPart@@SAPEAEPEAE@Z
1035; public: static unsigned char * __ptr64 __cdecl CPropertyLookupTable::CreateEmpty(unsigned char * __ptr64)
1036?CreateEmpty@CPropertyLookupTable@@SAPEAEPEAE@Z
1037; public: static unsigned char * __ptr64 __cdecl CWbemClass::CreateEmpty(unsigned char * __ptr64)
1038?CreateEmpty@CWbemClass@@SAPEAEPEAE@Z
1039; public: static class CWbemClass * __ptr64 __cdecl CWbemClass::CreateFromBlob2(class CWbemClass * __ptr64,unsigned char * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64)
1040?CreateFromBlob2@CWbemClass@@SAPEAV1@PEAV1@PEAEPEAG2@Z
1041; public: static class CWbemInstance * __ptr64 __cdecl CWbemInstance::CreateFromBlob2(class CWbemClass * __ptr64,unsigned char * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64)
1042?CreateFromBlob2@CWbemInstance@@SAPEAV1@PEAVCWbemClass@@PEAEPEAG2@Z
1043; public: static class CWbemClass * __ptr64 __cdecl CWbemClass::CreateFromBlob(class CWbemClass * __ptr64,unsigned char * __ptr64,unsigned __int64)
1044?CreateFromBlob@CWbemClass@@SAPEAV1@PEAV1@PEAE_K@Z
1045; public: static class CWbemInstance * __ptr64 __cdecl CWbemInstance::CreateFromBlob(class CWbemClass * __ptr64,unsigned char * __ptr64,unsigned __int64)
1046?CreateFromBlob@CWbemInstance@@SAPEAV1@PEAVCWbemClass@@PEAE_K@Z
1047; public: static class CWbemObject * __ptr64 __cdecl CWbemObject::CreateFromMemory(unsigned char * __ptr64,int,int,class CBlobControl & __ptr64)
1048?CreateFromMemory@CWbemObject@@SAPEAV1@PEAEHHAEAVCBlobControl@@@Z
1049; public: static class CWbemObject * __ptr64 __cdecl CWbemObject::CreateFromStream(struct IStream * __ptr64)
1050?CreateFromStream@CWbemObject@@SAPEAV1@PEAUIStream@@@Z
1051; public: virtual long __cdecl CWmiObjectTextSrc::XObjectTextSrc::CreateFromText(long,unsigned short * __ptr64,unsigned long,struct IWbemContext * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
1052?CreateFromText@XObjectTextSrc@CWmiObjectTextSrc@@UEAAJJPEAGKPEAUIWbemContext@@PEAPEAUIWbemClassObject@@@Z
1053; public: unsigned short * __ptr64 __cdecl CInternalString::CreateLPWSTRCopy(void)const __ptr64
1054?CreateLPWSTRCopy@CInternalString@@QEBAPEAGXZ
1055; public: unsigned char * __ptr64 __cdecl CClassAndMethods::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,int,unsigned char * __ptr64,int & __ptr64) __ptr64
1056?CreateLimitedRepresentation@CClassAndMethods@@QEAAPEAEPEAVCLimitationMapping@@HPEAEAEAH@Z
1057; public: unsigned char * __ptr64 __cdecl CClassPart::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,int,unsigned char * __ptr64,int & __ptr64) __ptr64
1058?CreateLimitedRepresentation@CClassPart@@QEAAPEAEPEAVCLimitationMapping@@HPEAEAEAH@Z
1059; public: unsigned char * __ptr64 __cdecl CDataTable::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,int,class CFastHeap * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64) __ptr64
1060?CreateLimitedRepresentation@CDataTable@@QEAAPEAEPEAVCLimitationMapping@@HPEAVCFastHeap@@1PEAE@Z
1061; public: unsigned char * __ptr64 __cdecl CDecorationPart::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,unsigned char * __ptr64) __ptr64
1062?CreateLimitedRepresentation@CDecorationPart@@QEAAPEAEPEAVCLimitationMapping@@PEAE@Z
1063; public: unsigned char * __ptr64 __cdecl CDerivationList::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,unsigned char * __ptr64) __ptr64
1064?CreateLimitedRepresentation@CDerivationList@@QEAAPEAEPEAVCLimitationMapping@@PEAE@Z
1065; public: unsigned char * __ptr64 __cdecl CInstancePart::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,int,unsigned char * __ptr64) __ptr64
1066?CreateLimitedRepresentation@CInstancePart@@QEAAPEAEPEAVCLimitationMapping@@HPEAE@Z
1067; public: unsigned char * __ptr64 __cdecl CPropertyLookupTable::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,int & __ptr64) __ptr64
1068?CreateLimitedRepresentation@CPropertyLookupTable@@QEAAPEAEPEAVCLimitationMapping@@PEAVCFastHeap@@PEAEAEAH@Z
1069; public: unsigned char * __ptr64 __cdecl CQualifierSetList::CreateLimitedRepresentation(class CLimitationMapping * __ptr64,class CFastHeap * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64) __ptr64
1070?CreateLimitedRepresentation@CQualifierSetList@@QEAAPEAEPEAVCLimitationMapping@@PEAVCFastHeap@@1PEAE@Z
1071; public: static unsigned char * __ptr64 __cdecl CQualifierSetList::CreateListOfEmpties(unsigned char * __ptr64,int)
1072?CreateListOfEmpties@CQualifierSetList@@SAPEAEPEAEH@Z
1073; protected: long __cdecl CMethodPart::CreateMethod(unsigned short const * __ptr64,class CWbemObject * __ptr64,class CWbemObject * __ptr64) __ptr64
1074?CreateMethod@CMethodPart@@IEAAJPEBGPEAVCWbemObject@@1@Z
1075; public: int __cdecl CFastHeap::CreateNoCaseStringHeapPtr(unsigned short const * __ptr64,unsigned long & __ptr64 __ptr64) __ptr64
1076?CreateNoCaseStringHeapPtr@CFastHeap@@QEAAHPEBGAEFAK@Z
1077; public: unsigned char * __ptr64 __cdecl CFastHeap::CreateOutOfLine(unsigned char * __ptr64,unsigned long) __ptr64
1078?CreateOutOfLine@CFastHeap@@QEAAPEAEPEAEK@Z
1079; protected: long __cdecl CWbemRefreshingSvc::CreateRefreshableObjectTemplate(unsigned short const * __ptr64,long,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
1080?CreateRefreshableObjectTemplate@CWbemRefreshingSvc@@IEAAJPEBGJPEAPEAUIWbemClassObject@@@Z
1081; public: static int __cdecl CMethodDescription::CreateUnmergedVersion(struct CMethodDescription * __ptr64 __ptr64,struct CMethodDescription * __ptr64 __ptr64,class CFastHeap * __ptr64,class CFastHeap * __ptr64)
1082?CreateUnmergedVersion@CMethodDescription@@SAHPEFAU1@0PEAVCFastHeap@@1@Z
1083; public: class WString __cdecl CCompressedString::CreateWStringCopy(void)const __ptr64
1084?CreateWStringCopy@CCompressedString@@QEBA?AVWString@@XZ
1085; public: unsigned char * __ptr64 __cdecl CCompressedStringList::CreateWithExtra(unsigned char * __ptr64,class CCompressedString * __ptr64) __ptr64
1086?CreateWithExtra@CCompressedStringList@@QEAAPEAEPEAEPEAVCCompressedString@@@Z
1087; public: virtual long __cdecl CWbemClass::Decorate(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1088?Decorate@CWbemClass@@UEAAJPEBG0@Z
1089; public: virtual long __cdecl CWbemInstance::Decorate(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1090?Decorate@CWbemInstance@@UEAAJPEBG0@Z
1091; public: static void __cdecl CBasicQualifierSet::Delete(unsigned char * __ptr64,class CFastHeap * __ptr64)
1092?Delete@CBasicQualifierSet@@SAXPEAEPEAVCFastHeap@@@Z
1093; public: virtual long __cdecl CQualifierSet::Delete(unsigned short const * __ptr64) __ptr64
1094?Delete@CQualifierSet@@UEAAJPEBG@Z
1095; public: void __cdecl CUntypedArray::Delete(class CType,class CFastHeap * __ptr64) __ptr64
1096?Delete@CUntypedArray@@QEAAXVCType@@PEAVCFastHeap@@@Z
1097; public: virtual long __cdecl CWbemClass::Delete(unsigned short const * __ptr64) __ptr64
1098?Delete@CWbemClass@@UEAAJPEBG@Z
1099; public: virtual long __cdecl CWbemInstance::Delete(unsigned short const * __ptr64) __ptr64
1100?Delete@CWbemInstance@@UEAAJPEBG@Z
1101; public: long __cdecl CMethodPart::DeleteMethod(unsigned short const * __ptr64) __ptr64
1102?DeleteMethod@CMethodPart@@QEAAJPEBG@Z
1103; public: virtual long __cdecl CWbemClass::DeleteMethod(unsigned short const * __ptr64) __ptr64
1104?DeleteMethod@CWbemClass@@UEAAJPEBG@Z
1105; public: virtual long __cdecl CWbemInstance::DeleteMethod(unsigned short const * __ptr64) __ptr64
1106?DeleteMethod@CWbemInstance@@UEAAJPEBG@Z
1107; public: long __cdecl CClassPart::DeleteProperty(unsigned short const * __ptr64) __ptr64
1108?DeleteProperty@CClassPart@@QEAAJPEBG@Z
1109; public: void __cdecl CClassPart::DeleteProperty(int) __ptr64
1110?DeleteProperty@CClassPart@@QEAAXH@Z
1111; public: void __cdecl CInstancePart::DeleteProperty(class CPropertyInformation * __ptr64) __ptr64
1112?DeleteProperty@CInstancePart@@QEAAXPEAVCPropertyInformation@@@Z
1113; public: void __cdecl CPropertyLookupTable::DeleteProperty(struct CPropertyLookup * __ptr64,int) __ptr64
1114?DeleteProperty@CPropertyLookupTable@@QEAAXPEAUCPropertyLookup@@H@Z
1115; public: long __cdecl CWbemInstance::DeleteProperty(int) __ptr64
1116?DeleteProperty@CWbemInstance@@QEAAJH@Z
1117; public: long __cdecl CQualifierSet::DeleteQualifier(unsigned short const * __ptr64,int) __ptr64
1118?DeleteQualifier@CQualifierSet@@QEAAJPEBGH@Z
1119; public: void __cdecl CQualifierSetList::DeleteQualifierSet(int) __ptr64
1120?DeleteQualifierSet@CQualifierSetList@@QEAAXH@Z
1121; protected: void __cdecl CMethodPart::DeleteSignature(int,int) __ptr64
1122?DeleteSignature@CMethodPart@@IEAAXHH@Z
1123; protected: static long __cdecl CWbemObject::DisabledValidateObject(class CWbemObject * __ptr64)
1124?DisabledValidateObject@CWbemObject@@KAJPEAV1@@Z
1125; public: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::Discard(int) __ptr64
1126?Discard@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAXH@Z
1127; public: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::Discard(int) __ptr64
1128?Discard@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAXH@Z
1129; public: virtual long __cdecl CWbemObject::DisconnectObject(unsigned long) __ptr64
1130?DisconnectObject@CWbemObject@@UEAAJK@Z
1131; protected: int __cdecl CMethodPart::DoSignaturesMatch(int,enum METHOD_SIGNATURE_TYPE,class CWbemObject * __ptr64) __ptr64
1132?DoSignaturesMatch@CMethodPart@@IEAAHHW4METHOD_SIGNATURE_TYPE@@PEAVCWbemObject@@@Z
1133; public: static int __cdecl CType::DoesCIMTYPEMatchVARTYPE(long,unsigned short)
1134?DoesCIMTYPEMatchVARTYPE@CType@@SAHJG@Z
1135; protected: int __cdecl CMethodPart::DoesSignatureMatchOther(class CMethodPart & __ptr64,int,enum METHOD_SIGNATURE_TYPE) __ptr64
1136?DoesSignatureMatchOther@CMethodPart@@IEAAHAEAV1@HW4METHOD_SIGNATURE_TYPE@@@Z
1137; public: int __cdecl CFastHeap::ElementMaxSize(unsigned long) __ptr64
1138?ElementMaxSize@CFastHeap@@QEAAHK@Z
1139; public: void __cdecl CFastHeap::Empty(void) __ptr64
1140?Empty@CFastHeap@@QEAAXXZ
1141; public: void __cdecl CInternalString::Empty(void) __ptr64
1142?Empty@CInternalString@@QEAAXXZ
1143; protected: static long __cdecl CWbemObject::EnabledValidateObject(class CWbemObject * __ptr64)
1144?EnabledValidateObject@CWbemObject@@KAJPEAV1@@Z
1145; public: virtual long __cdecl CQualifierSet::EndEnumeration(void) __ptr64
1146?EndEnumeration@CQualifierSet@@UEAAJXZ
1147; public: virtual long __cdecl CWbemObject::EndEnumeration(void) __ptr64
1148?EndEnumeration@CWbemObject@@UEAAJXZ
1149; public: virtual long __cdecl CWbemClass::EndMethodEnumeration(void) __ptr64
1150?EndMethodEnumeration@CWbemClass@@UEAAJXZ
1151; public: virtual long __cdecl CWbemInstance::EndMethodEnumeration(void) __ptr64
1152?EndMethodEnumeration@CWbemInstance@@UEAAJXZ
1153; public: long __cdecl CClassPart::EnsureProperty(unsigned short const * __ptr64,unsigned short,long,int) __ptr64
1154?EnsureProperty@CClassPart@@QEAAJPEBGGJH@Z
1155; public: long __cdecl CMethodPart::EnsureQualifier(class CWbemObject * __ptr64,unsigned short const * __ptr64,class CWbemObject * __ptr64 * __ptr64) __ptr64
1156?EnsureQualifier@CMethodPart@@QEAAJPEAVCWbemObject@@PEBGPEAPEAV2@@Z
1157; public: long __cdecl CWbemClass::EnsureQualifier(unsigned short const * __ptr64) __ptr64
1158?EnsureQualifier@CWbemClass@@QEAAJPEBG@Z
1159; public: int __cdecl CQualifierSetList::EnsureReal(void) __ptr64
1160?EnsureReal@CQualifierSetList@@QEAAHXZ
1161; public: long __cdecl CBasicQualifierSet::EnumPrimaryQualifiers(unsigned char,unsigned char,class CFixedBSTRArray & __ptr64,class CFixedBSTRArray & __ptr64) __ptr64
1162?EnumPrimaryQualifiers@CBasicQualifierSet@@QEAAJEEAEAVCFixedBSTRArray@@0@Z
1163; public: long __cdecl CQualifierSet::EnumQualifiers(unsigned char,unsigned char,class CFixedBSTRArray & __ptr64) __ptr64
1164?EnumQualifiers@CQualifierSet@@QEAAJEEAEAVCFixedBSTRArray@@@Z
1165; public: unsigned long __cdecl CWbemClass::EstimateDerivedClassSpace(class CDecorationPart * __ptr64) __ptr64
1166?EstimateDerivedClassSpace@CWbemClass@@QEAAKPEAVCDecorationPart@@@Z
1167; public: unsigned long __cdecl CClassAndMethods::EstimateDerivedPartSpace(void) __ptr64
1168?EstimateDerivedPartSpace@CClassAndMethods@@QEAAKXZ
1169; public: unsigned long __cdecl CClassPart::EstimateDerivedPartSpace(void) __ptr64
1170?EstimateDerivedPartSpace@CClassPart@@QEAAKXZ
1171; public: unsigned long __cdecl CMethodPart::EstimateDerivedPartSpace(void) __ptr64
1172?EstimateDerivedPartSpace@CMethodPart@@QEAAKXZ
1173; public: static unsigned long __cdecl CCompressedStringList::EstimateExtraSpace(class CCompressedString * __ptr64)
1174?EstimateExtraSpace@CCompressedStringList@@SAKPEAVCCompressedString@@@Z
1175; public: static unsigned long __cdecl CCompressedStringList::EstimateExtraSpace(unsigned short const * __ptr64)
1176?EstimateExtraSpace@CCompressedStringList@@SAKPEBG@Z
1177; public: static unsigned long __cdecl CWbemInstance::EstimateInstanceSpace(class CClassPart & __ptr64,class CDecorationPart * __ptr64)
1178?EstimateInstanceSpace@CWbemInstance@@SAKAEAVCClassPart@@PEAVCDecorationPart@@@Z
1179; public: unsigned long __cdecl CWbemObject::EstimateLimitedRepresentationSpace(long,class CWStringArray * __ptr64) __ptr64
1180?EstimateLimitedRepresentationSpace@CWbemObject@@QEAAKJPEAVCWStringArray@@@Z
1181; public: static unsigned long __cdecl CClassAndMethods::EstimateMergeSpace(class CClassAndMethods & __ptr64,class CClassAndMethods & __ptr64)
1182?EstimateMergeSpace@CClassAndMethods@@SAKAEAV1@0@Z
1183; public: static unsigned long __cdecl CClassPart::EstimateMergeSpace(class CClassPart & __ptr64,class CClassPart & __ptr64)
1184?EstimateMergeSpace@CClassPart@@SAKAEAV1@0@Z
1185; public: static unsigned long __cdecl CMethodPart::EstimateMergeSpace(class CMethodPart & __ptr64,class CMethodPart & __ptr64)
1186?EstimateMergeSpace@CMethodPart@@SAKAEAV1@0@Z
1187; public: unsigned long __cdecl CWbemClass::EstimateMergeSpace(unsigned char * __ptr64,long) __ptr64
1188?EstimateMergeSpace@CWbemClass@@QEAAKPEAEJ@Z
1189; public: static unsigned long __cdecl CEmbeddedObject::EstimateNecessarySpace(class CVar & __ptr64)
1190?EstimateNecessarySpace@CEmbeddedObject@@SAKAEAVCVar@@@Z
1191; public: static unsigned long __cdecl CEmbeddedObject::EstimateNecessarySpace(class CWbemObject * __ptr64)
1192?EstimateNecessarySpace@CEmbeddedObject@@SAKPEAVCWbemObject@@@Z
1193; public: unsigned long __cdecl CClassAndMethods::EstimateUnmergeSpace(void) __ptr64
1194?EstimateUnmergeSpace@CClassAndMethods@@QEAAKXZ
1195; public: unsigned long __cdecl CClassPart::EstimateUnmergeSpace(void) __ptr64
1196?EstimateUnmergeSpace@CClassPart@@QEAAKXZ
1197; public: unsigned long __cdecl CMethodPart::EstimateUnmergeSpace(void) __ptr64
1198?EstimateUnmergeSpace@CMethodPart@@QEAAKXZ
1199; public: virtual unsigned long __cdecl CWbemClass::EstimateUnmergeSpace(void) __ptr64
1200?EstimateUnmergeSpace@CWbemClass@@UEAAKXZ
1201; public: virtual unsigned long __cdecl CWbemInstance::EstimateUnmergeSpace(void) __ptr64
1202?EstimateUnmergeSpace@CWbemInstance@@UEAAKXZ
1203; public: int __cdecl CFastHeap::Extend(unsigned long,unsigned long,unsigned long) __ptr64
1204?Extend@CFastHeap@@QEAAHKKK@Z
1205; public: int __cdecl CWbemClass::ExtendClassAndMethodsSpace(unsigned long) __ptr64
1206?ExtendClassAndMethodsSpace@CWbemClass@@QEAAHK@Z
1207; public: virtual int __cdecl CClassAndMethods::ExtendClassPartSpace(class CClassPart * __ptr64,unsigned long) __ptr64
1208?ExtendClassPartSpace@CClassAndMethods@@UEAAHPEAVCClassPart@@K@Z
1209; public: virtual int __cdecl CWbemInstance::ExtendClassPartSpace(class CClassPart * __ptr64,unsigned long) __ptr64
1210?ExtendClassPartSpace@CWbemInstance@@UEAAHPEAVCClassPart@@K@Z
1211; public: virtual int __cdecl CClassPart::ExtendDataTableSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
1212?ExtendDataTableSpace@CClassPart@@UEAAHPEAEKK@Z
1213; public: virtual int __cdecl CInstancePart::ExtendDataTableSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
1214?ExtendDataTableSpace@CInstancePart@@UEAAHPEAEKK@Z
1215; public: virtual int __cdecl CClassPart::ExtendHeapSize(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
1216?ExtendHeapSize@CClassPart@@UEAAHPEAEKK@Z
1217; public: virtual int __cdecl CInstancePart::ExtendHeapSize(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
1218?ExtendHeapSize@CInstancePart@@UEAAHPEAEKK@Z
1219; public: virtual int __cdecl CMethodPart::ExtendHeapSize(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
1220?ExtendHeapSize@CMethodPart@@UEAAHPEAEKK@Z
1221; public: virtual int __cdecl CWbemInstance::ExtendInstancePartSpace(class CInstancePart * __ptr64,unsigned long) __ptr64
1222?ExtendInstancePartSpace@CWbemInstance@@UEAAHPEAVCInstancePart@@K@Z
1223; public: virtual int __cdecl CClassAndMethods::ExtendMethodPartSpace(class CMethodPart * __ptr64,unsigned long) __ptr64
1224?ExtendMethodPartSpace@CClassAndMethods@@UEAAHPEAVCMethodPart@@K@Z
1225; public: virtual int __cdecl CClassPart::ExtendPropertyTableSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
1226?ExtendPropertyTableSpace@CClassPart@@UEAAHPEAEKK@Z
1227; public: virtual int __cdecl CInstancePart::ExtendQualifierSetListSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
1228?ExtendQualifierSetListSpace@CInstancePart@@UEAAHPEAEKK@Z
1229; public: virtual int __cdecl CClassPart::ExtendQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
1230?ExtendQualifierSetSpace@CClassPart@@UEAAHPEAVCBasicQualifierSet@@K@Z
1231; public: virtual int __cdecl CInstancePQSContainer::ExtendQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
1232?ExtendQualifierSetSpace@CInstancePQSContainer@@UEAAHPEAVCBasicQualifierSet@@K@Z
1233; public: virtual int __cdecl CInstancePart::ExtendQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
1234?ExtendQualifierSetSpace@CInstancePart@@UEAAHPEAVCBasicQualifierSet@@K@Z
1235; public: virtual int __cdecl CMethodQualifierSetContainer::ExtendQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
1236?ExtendQualifierSetSpace@CMethodQualifierSetContainer@@UEAAHPEAVCBasicQualifierSet@@K@Z
1237; public: int __cdecl CQualifierSetList::ExtendQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
1238?ExtendQualifierSetSpace@CQualifierSetList@@QEAAHPEAVCBasicQualifierSet@@K@Z
1239; public: int __cdecl CDataTable::ExtendTo(unsigned short,unsigned long) __ptr64
1240?ExtendTo@CDataTable@@QEAAHGK@Z
1241; public: long __cdecl CWbemInstance::FastClone(class CWbemInstance * __ptr64) __ptr64
1242?FastClone@CWbemInstance@@QEAAJPEAV1@@Z
1243; public: void __cdecl CFixedBSTRArray::Filter(unsigned short const * __ptr64,int) __ptr64
1244?Filter@CFixedBSTRArray@@QEAAXPEBGH@Z
1245; public: int __cdecl CCompressedStringList::Find(unsigned short const * __ptr64) __ptr64
1246?Find@CCompressedStringList@@QEAAHPEBG@Z
1247; public: class WString __cdecl CWbemClass::FindLimitationError(long,class CWStringArray * __ptr64) __ptr64
1248?FindLimitationError@CWbemClass@@QEAA?AVWString@@JPEAVCWStringArray@@@Z
1249; protected: int __cdecl CMethodPart::FindMethod(unsigned short const * __ptr64) __ptr64
1250?FindMethod@CMethodPart@@IEAAHPEBG@Z
1251; public: virtual long __cdecl CWbemClass::FindMethod(unsigned short const * __ptr64) __ptr64
1252?FindMethod@CWbemClass@@UEAAJPEBG@Z
1253; public: virtual long __cdecl CWbemObject::FindMethod(unsigned short const * __ptr64) __ptr64
1254?FindMethod@CWbemObject@@UEAAJPEBG@Z
1255; public: static int __cdecl CSystemProperties::FindName(unsigned short const * __ptr64)
1256?FindName@CSystemProperties@@SAHPEBG@Z
1257; protected: class CFastPropertyBagItem * __ptr64 __cdecl CFastPropertyBag::FindProperty(unsigned short const * __ptr64) __ptr64
1258?FindProperty@CFastPropertyBag@@IEAAPEAVCFastPropertyBagItem@@PEBG@Z
1259; public: struct CPropertyLookup * __ptr64 __cdecl CPropertyLookupTable::FindProperty(unsigned short const * __ptr64) __ptr64
1260?FindProperty@CPropertyLookupTable@@QEAAPEAUCPropertyLookup@@PEBG@Z
1261; public: struct CPropertyLookup * __ptr64 __cdecl CPropertyLookupTable::FindPropertyByName(class CCompressedString * __ptr64) __ptr64
1262?FindPropertyByName@CPropertyLookupTable@@QEAAPEAUCPropertyLookup@@PEAVCCompressedString@@@Z
1263; public: struct CPropertyLookup * __ptr64 __cdecl CPropertyLookupTable::FindPropertyByOffset(unsigned long) __ptr64
1264?FindPropertyByOffset@CPropertyLookupTable@@QEAAPEAUCPropertyLookup@@K@Z
1265; public: struct CPropertyLookup * __ptr64 __cdecl CPropertyLookupTable::FindPropertyByPtr(unsigned long) __ptr64
1266?FindPropertyByPtr@CPropertyLookupTable@@QEAAPEAUCPropertyLookup@@K@Z
1267; protected: int __cdecl CFastPropertyBag::FindPropertyIndex(unsigned short const * __ptr64) __ptr64
1268?FindPropertyIndex@CFastPropertyBag@@IEAAHPEBG@Z
1269; public: class CPropertyInformation * __ptr64 __cdecl CClassPart::FindPropertyInfo(unsigned short const * __ptr64) __ptr64
1270?FindPropertyInfo@CClassPart@@QEAAPEAVCPropertyInformation@@PEBG@Z
1271; public: long __cdecl CWbemClass::ForcePropValue(unsigned short const * __ptr64,class CVar * __ptr64,long) __ptr64
1272?ForcePropValue@CWbemClass@@QEAAJPEBGPEAVCVar@@J@Z
1273; public: long __cdecl CWbemClass::ForcePut(unsigned short const * __ptr64,long,struct tagVARIANT * __ptr64,long) __ptr64
1274?ForcePut@CWbemClass@@QEAAJPEBGJPEAUtagVARIANT@@J@Z
1275; public: void __cdecl CFastHeap::Free(unsigned long,unsigned long) __ptr64
1276?Free@CFastHeap@@QEAAXKK@Z
1277; public: void __cdecl CFixedBSTRArray::Free(void) __ptr64
1278?Free@CFixedBSTRArray@@QEAAXXZ
1279; public: void __cdecl CFastHeap::FreeString(unsigned long) __ptr64
1280?FreeString@CFastHeap@@QEAAXK@Z
1281; public: long __cdecl CFastPropertyBag::Get(int,unsigned short const * __ptr64 * __ptr64,long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64 * __ptr64) __ptr64
1282?Get@CFastPropertyBag@@QEAAJHPEAPEBGPEAJPEAK2PEAPEAX@Z
1283; public: long __cdecl CFastPropertyBag::Get(unsigned short const * __ptr64,long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64 * __ptr64) __ptr64
1284?Get@CFastPropertyBag@@QEAAJPEBGPEAJPEAK2PEAPEAX@Z
1285; public: virtual long __cdecl CQualifierSet::Get(unsigned short const * __ptr64,long,struct tagVARIANT * __ptr64,long * __ptr64) __ptr64
1286?Get@CQualifierSet@@UEAAJPEBGJPEAUtagVARIANT@@PEAJ@Z
1287; public: long __cdecl CWbemFetchRefrMgr::Get(struct _IWbemRefresherMgr * __ptr64 * __ptr64) __ptr64
1288?Get@CWbemFetchRefrMgr@@QEAAJPEAPEAU_IWbemRefresherMgr@@@Z
1289; public: virtual long __cdecl CWbemObject::Get(unsigned short const * __ptr64,long,struct tagVARIANT * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1290?Get@CWbemObject@@UEAAJPEBGJPEAUtagVARIANT@@PEAJ2@Z
1291; public: virtual long __cdecl CWbemFetchRefrMgr::XFetchRefrMgr::Get(struct _IWbemRefresherMgr * __ptr64 * __ptr64) __ptr64
1292?Get@XFetchRefrMgr@CWbemFetchRefrMgr@@UEAAJPEAPEAU_IWbemRefresherMgr@@@Z
1293; public: unsigned char __cdecl CClassPart::GetAbstractFlavor(void) __ptr64
1294?GetAbstractFlavor@CClassPart@@QEAAEXZ
1295; public: unsigned char __cdecl CWbemClass::GetAbstractFlavor(void) __ptr64
1296?GetAbstractFlavor@CWbemClass@@QEAAEXZ
1297; public: void __cdecl CWbemInstance::GetActualTransferBlob(unsigned char * __ptr64) __ptr64
1298?GetActualTransferBlob@CWbemInstance@@QEAAXPEAE@Z
1299; public: long __cdecl CWbemInstance::GetActualTransferBlobSize(void) __ptr64
1300?GetActualTransferBlobSize@CWbemInstance@@QEAAJXZ
1301; public: unsigned long __cdecl CType::GetActualType(void) __ptr64
1302?GetActualType@CType@@QEAAKXZ
1303; public: static unsigned long __cdecl CType::GetActualType(unsigned long)
1304?GetActualType@CType@@SAKK@Z
1305; public: long __cdecl CInstancePart::GetActualValue(class CPropertyInformation * __ptr64,class CVar * __ptr64) __ptr64
1306?GetActualValue@CInstancePart@@QEAAJPEAVCPropertyInformation@@PEAVCVar@@@Z
1307; public: unsigned long __cdecl CFastHeap::GetAllocatedDataLength(void) __ptr64
1308?GetAllocatedDataLength@CFastHeap@@QEAAKXZ
1309; public: class CFlexArray & __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::GetArray(void) __ptr64
1310?GetArray@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAAEAVCFlexArray@@XZ
1311; public: class CFlexArray & __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::GetArray(void) __ptr64
1312?GetArray@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAAEAVCFlexArray@@XZ
1313; public: class CUntypedArray * __ptr64 __cdecl CWbemObject::GetArrayByHandle(long) __ptr64
1314?GetArrayByHandle@CWbemObject@@QEAAPEAVCUntypedArray@@J@Z
1315; public: virtual long __cdecl CWbemObject::GetArrayPropAddrByHandle(long,long,unsigned long * __ptr64,void * __ptr64 * __ptr64) __ptr64
1316?GetArrayPropAddrByHandle@CWbemObject@@UEAAJJJPEAKPEAPEAX@Z
1317; public: virtual long __cdecl CWbemObject::GetArrayPropElementByHandle(long,long,unsigned long,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64 * __ptr64) __ptr64
1318?GetArrayPropElementByHandle@CWbemObject@@UEAAJJJKPEAK0PEAPEAX@Z
1319; public: virtual long __cdecl CWbemObject::GetArrayPropInfoByHandle(long,long,unsigned short * __ptr64 * __ptr64,long * __ptr64,unsigned long * __ptr64) __ptr64
1320?GetArrayPropInfoByHandle@CWbemObject@@UEAAJJJPEAPEAGPEAJPEAK@Z
1321; public: virtual long __cdecl CWbemObject::GetArrayPropRangeByHandle(long,long,unsigned long,unsigned long,unsigned long,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64) __ptr64
1322?GetArrayPropRangeByHandle@CWbemObject@@UEAAJJJKKKPEAK0PEAX@Z
1323; public: long __cdecl CWbemObject::GetArrayPropertyHandle(unsigned short const * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1324?GetArrayPropertyHandle@CWbemObject@@QEAAJPEBGPEAJ1@Z
1325; public: class CFastPropertyBagItem * __ptr64 * __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::GetArrayPtr(void) __ptr64
1326?GetArrayPtr@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAPEAPEAVCFastPropertyBagItem@@XZ
1327; public: class CWmiTextSource * __ptr64 * __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::GetArrayPtr(void) __ptr64
1328?GetArrayPtr@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAPEAPEAVCWmiTextSource@@XZ
1329; public: class CFastPropertyBagItem * __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::GetAt(int) __ptr64
1330?GetAt@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAPEAVCFastPropertyBagItem@@H@Z
1331; public: class CFastPropertyBagItem const * __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::GetAt(int)const __ptr64
1332?GetAt@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEBAPEBVCFastPropertyBagItem@@H@Z
1333; public: class CWmiTextSource * __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::GetAt(int) __ptr64
1334?GetAt@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAPEAVCWmiTextSource@@H@Z
1335; public: class CWmiTextSource const * __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::GetAt(int)const __ptr64
1336?GetAt@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEBAPEBVCWmiTextSource@@H@Z
1337; public: unsigned short * __ptr64 & __ptr64 __cdecl CFixedBSTRArray::GetAt(int) __ptr64
1338?GetAt@CFixedBSTRArray@@QEAAAEAPEAGH@Z
1339; public: struct CPropertyLookup * __ptr64 __cdecl CPropertyLookupTable::GetAt(int) __ptr64
1340?GetAt@CPropertyLookupTable@@QEAAPEAUCPropertyLookup@@H@Z
1341; public: class CCompressedString * __ptr64 __cdecl CCompressedStringList::GetAtFromLast(int) __ptr64
1342?GetAtFromLast@CCompressedStringList@@QEAAPEAVCCompressedString@@H@Z
1343; public: long __cdecl CWbemCallSecurity::GetAuthentication(unsigned long * __ptr64) __ptr64
1344?GetAuthentication@CWbemCallSecurity@@QEAAJPEAK@Z
1345; public: virtual long __cdecl CWbemThreadSecurityHandle::GetAuthentication(unsigned long * __ptr64) __ptr64
1346?GetAuthentication@CWbemThreadSecurityHandle@@UEAAJPEAK@Z
1347; public: unsigned long __cdecl CWbemThreadSecurityHandle::GetAuthenticationLevel(void) __ptr64
1348?GetAuthenticationLevel@CWbemThreadSecurityHandle@@QEAAKXZ
1349; public: virtual long __cdecl CWbemCallSecurity::GetAuthenticationLuid(void * __ptr64) __ptr64
1350?GetAuthenticationLuid@CWbemCallSecurity@@UEAAJPEAX@Z
1351; public: virtual long __cdecl CWbemThreadSecurityHandle::GetAuthenticationLuid(void * __ptr64) __ptr64
1352?GetAuthenticationLuid@CWbemThreadSecurityHandle@@UEAAJPEAX@Z
1353; public: unsigned long __cdecl CWbemThreadSecurityHandle::GetAuthenticationService(void) __ptr64
1354?GetAuthenticationService@CWbemThreadSecurityHandle@@QEAAKXZ
1355; public: unsigned long __cdecl CWbemThreadSecurityHandle::GetAuthorizationService(void) __ptr64
1356?GetAuthorizationService@CWbemThreadSecurityHandle@@QEAAKXZ
1357; public: unsigned long __cdecl CType::GetBasic(void) __ptr64
1358?GetBasic@CType@@QEAAKXZ
1359; public: static unsigned long __cdecl CType::GetBasic(unsigned long)
1360?GetBasic@CType@@SAKK@Z
1361; protected: virtual unsigned long __cdecl CWbemClass::GetBlockLength(void) __ptr64
1362?GetBlockLength@CWbemClass@@MEAAKXZ
1363; protected: virtual unsigned long __cdecl CWbemInstance::GetBlockLength(void) __ptr64
1364?GetBlockLength@CWbemInstance@@MEAAKXZ
1365; public: unsigned long __cdecl CClassPart::GetClassIndex(unsigned short const * __ptr64) __ptr64
1366?GetClassIndex@CClassPart@@QEAAKPEBG@Z
1367; public: unsigned long __cdecl CWbemObject::GetClassIndex(unsigned short const * __ptr64) __ptr64
1368?GetClassIndex@CWbemObject@@QEAAKPEBG@Z
1369; public: class CCompressedString * __ptr64 __cdecl CWbemObject::GetClassInternal(void) __ptr64
1370?GetClassInternal@CWbemObject@@QEAAPEAVCCompressedString@@XZ
1371; public: static long __cdecl CClassAndMethods::GetClassNameW(class WString & __ptr64,unsigned char * __ptr64)
1372?GetClassNameW@CClassAndMethods@@SAJAEAVWString@@PEAE@Z
1373; public: long __cdecl CClassPart::GetClassNameW(class CVar * __ptr64) __ptr64
1374?GetClassNameW@CClassPart@@QEAAJPEAVCVar@@@Z
1375; public: class CCompressedString * __ptr64 __cdecl CClassPart::GetClassNameW(void) __ptr64
1376?GetClassNameW@CClassPart@@QEAAPEAVCCompressedString@@XZ
1377; public: virtual long __cdecl CWbemClass::GetClassNameW(class CVar * __ptr64) __ptr64
1378?GetClassNameW@CWbemClass@@UEAAJPEAVCVar@@@Z
1379; public: virtual long __cdecl CWbemInstance::GetClassNameW(class CVar * __ptr64) __ptr64
1380?GetClassNameW@CWbemInstance@@UEAAJPEAVCVar@@@Z
1381; private: long __cdecl CWbemObjectArrayPacket::GetClassObject(class CWbemObjectPacket & __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
1382?GetClassObject@CWbemObjectArrayPacket@@AEAAJAEAVCWbemObjectPacket@@PEAPEAUIWbemClassObject@@@Z
1383; protected: virtual class CClassPart * __ptr64 __cdecl CWbemClass::GetClassPart(void) __ptr64
1384?GetClassPart@CWbemClass@@MEAAPEAVCClassPart@@XZ
1385; public: virtual long __cdecl CWbemClass::GetClassPart(void * __ptr64,unsigned long,unsigned long * __ptr64) __ptr64
1386?GetClassPart@CWbemClass@@UEAAJPEAXKPEAK@Z
1387; protected: virtual class CClassPart * __ptr64 __cdecl CWbemInstance::GetClassPart(void) __ptr64
1388?GetClassPart@CWbemInstance@@MEAAPEAVCClassPart@@XZ
1389; public: virtual long __cdecl CWbemInstance::GetClassPart(void * __ptr64,unsigned long,unsigned long * __ptr64) __ptr64
1390?GetClassPart@CWbemInstance@@UEAAJPEAXKPEAK@Z
1391; public: long __cdecl CClassPart::GetClassQualifier(unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1392?GetClassQualifier@CClassPart@@QEAAJPEBGPEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1393; public: long __cdecl CClassPart::GetClassQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1394?GetClassQualifier@CClassPart@@QEAAJPEBGPEAVCVar@@PEAJ2@Z
1395; public: virtual long __cdecl CWbemClass::GetClassSubset(unsigned long,unsigned short const * __ptr64 * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
1396?GetClassSubset@CWbemClass@@UEAAJKPEAPEBGPEAPEAU_IWmiObject@@@Z
1397; public: virtual long __cdecl CWbemInstance::GetClassSubset(unsigned long,unsigned short const * __ptr64 * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
1398?GetClassSubset@CWbemInstance@@UEAAJKPEAPEBGPEAPEAU_IWmiObject@@@Z
1399; private: long __cdecl CWbemObjectArrayPacket::GetClasslessInstanceObject(class CWbemObjectPacket & __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,class CWbemClassCache & __ptr64) __ptr64
1400?GetClasslessInstanceObject@CWbemObjectArrayPacket@@AEAAJAEAVCWbemObjectPacket@@PEAPEAUIWbemClassObject@@AEAVCWbemClassCache@@@Z
1401; public: virtual unsigned long __cdecl CClassAndMethods::GetCurrentOrigin(void) __ptr64
1402?GetCurrentOrigin@CClassAndMethods@@UEAAKXZ
1403; public: virtual unsigned long __cdecl CClassPart::GetCurrentOrigin(void) __ptr64
1404?GetCurrentOrigin@CClassPart@@UEAAKXZ
1405; public: unsigned long __cdecl CWbemClass::GetCurrentOrigin(void) __ptr64
1406?GetCurrentOrigin@CWbemClass@@QEAAKXZ
1407; public: unsigned long __cdecl CDataTable::GetDataLength(void) __ptr64
1408?GetDataLength@CDataTable@@QEAAKXZ
1409; public: virtual class CDataTable * __ptr64 __cdecl CClassPart::GetDataTable(void) __ptr64
1410?GetDataTable@CClassPart@@UEAAPEAVCDataTable@@XZ
1411; public: class CDataTable * __ptr64 __cdecl CInstancePart::GetDataTable(void) __ptr64
1412?GetDataTable@CInstancePart@@QEAAPEAVCDataTable@@XZ
1413; public: static unsigned char * __ptr64 __cdecl CInstancePart::GetDataTableData(unsigned char * __ptr64)
1414?GetDataTableData@CInstancePart@@SAPEAEPEAE@Z
1415; public: long __cdecl CClassPart::GetDefaultByHandle(long,long,long * __ptr64,unsigned char * __ptr64) __ptr64
1416?GetDefaultByHandle@CClassPart@@QEAAJJJPEAJPEAE@Z
1417; public: long __cdecl CClassPart::GetDefaultPtrByHandle(long,void * __ptr64 * __ptr64) __ptr64
1418?GetDefaultPtrByHandle@CClassPart@@QEAAJJPEAPEAX@Z
1419; public: long __cdecl CClassPart::GetDefaultValue(class CPropertyInformation * __ptr64,class CVar * __ptr64) __ptr64
1420?GetDefaultValue@CClassPart@@QEAAJPEAVCPropertyInformation@@PEAVCVar@@@Z
1421; public: long __cdecl CClassPart::GetDefaultValue(unsigned short const * __ptr64,class CVar * __ptr64) __ptr64
1422?GetDefaultValue@CClassPart@@QEAAJPEBGPEAVCVar@@@Z
1423; public: long __cdecl CClassPart::GetDerivation(class CVar * __ptr64) __ptr64
1424?GetDerivation@CClassPart@@QEAAJPEAVCVar@@@Z
1425; public: long __cdecl CWbemObject::GetDerivation(class CVar * __ptr64) __ptr64
1426?GetDerivation@CWbemObject@@QEAAJPEAVCVar@@@Z
1427; public: virtual long __cdecl CWbemObject::GetDerivation(long,unsigned long,unsigned long * __ptr64,unsigned long * __ptr64,unsigned short * __ptr64) __ptr64
1428?GetDerivation@CWbemObject@@UEAAJJKPEAK0PEAG@Z
1429; public: virtual long __cdecl CWbemObject::GetDescription(unsigned short * __ptr64 * __ptr64) __ptr64
1430?GetDescription@CWbemObject@@UEAAJPEAPEAG@Z
1431; public: long __cdecl CClassPart::GetDynasty(class CVar * __ptr64) __ptr64
1432?GetDynasty@CClassPart@@QEAAJPEAVCVar@@@Z
1433; public: class CCompressedString * __ptr64 __cdecl CClassPart::GetDynasty(void) __ptr64
1434?GetDynasty@CClassPart@@QEAAPEAVCCompressedString@@XZ
1435; public: virtual long __cdecl CWbemClass::GetDynasty(class CVar * __ptr64) __ptr64
1436?GetDynasty@CWbemClass@@UEAAJPEAVCVar@@@Z
1437; public: virtual long __cdecl CWbemInstance::GetDynasty(class CVar * __ptr64) __ptr64
1438?GetDynasty@CWbemInstance@@UEAAJPEAVCVar@@@Z
1439; public: unsigned char * __ptr64 __cdecl CUntypedArray::GetElement(int,int) __ptr64
1440?GetElement@CUntypedArray@@QEAAPEAEHH@Z
1441; public: class CWbemObject * __ptr64 __cdecl CEmbeddedObject::GetEmbedded(void) __ptr64
1442?GetEmbedded@CEmbeddedObject@@QEAAPEAVCWbemObject@@XZ
1443; public: class CWbemObject * __ptr64 __cdecl CWbemObject::GetEmbeddedObj(long) __ptr64
1444?GetEmbeddedObj@CWbemObject@@QEAAPEAV1@J@Z
1445; public: class CCompressedString * __ptr64 __cdecl CCompressedStringList::GetFirst(void) __ptr64
1446?GetFirst@CCompressedStringList@@QEAAPEAVCCompressedString@@XZ
1447; public: struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetFirstQualifier(void) __ptr64
1448?GetFirstQualifier@CBasicQualifierSet@@QEAAPEAUCQualifier@@XZ
1449; public: static struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetFirstQualifierFromData(unsigned char * __ptr64)
1450?GetFirstQualifierFromData@CBasicQualifierSet@@SAPEAUCQualifier@@PEAE@Z
1451; public: long __cdecl CLimitationMapping::GetFlags(void) __ptr64
1452?GetFlags@CLimitationMapping@@QEAAJXZ
1453; public: unsigned short * __ptr64 __cdecl CWbemObject::GetFullPath(void) __ptr64
1454?GetFullPath@CWbemObject@@QEAAPEAGXZ
1455; public: virtual long __cdecl CWbemObject::GetGUID(struct _GUID * __ptr64) __ptr64
1456?GetGUID@CWbemObject@@UEAAJPEAU_GUID@@@Z
1457; public: virtual long __cdecl CWbemClass::GetGenus(class CVar * __ptr64) __ptr64
1458?GetGenus@CWbemClass@@UEAAJPEAVCVar@@@Z
1459; public: virtual long __cdecl CWbemInstance::GetGenus(class CVar * __ptr64) __ptr64
1460?GetGenus@CWbemInstance@@UEAAJPEAVCVar@@@Z
1461; public: virtual long __cdecl CWbemRemoteRefresher::XWbemRemoteRefr::GetGuid(long,struct _GUID * __ptr64) __ptr64
1462?GetGuid@XWbemRemoteRefr@CWbemRemoteRefresher@@UEAAJJPEAU_GUID@@@Z
1463; public: virtual long __cdecl CWbemThreadSecurityHandle::GetHandleType(unsigned long * __ptr64) __ptr64
1464?GetHandleType@CWbemThreadSecurityHandle@@UEAAJPEAK@Z
1465; public: static unsigned long __cdecl CCompressedStringList::GetHeaderLength(void)
1466?GetHeaderLength@CCompressedStringList@@SAKXZ
1467; protected: unsigned long __cdecl CFastHeap::GetHeaderLength(void) __ptr64
1468?GetHeaderLength@CFastHeap@@IEAAKXZ
1469; public: static int __cdecl CQualifierSetList::GetHeaderLength(void)
1470?GetHeaderLength@CQualifierSetList@@SAHXZ
1471; public: static unsigned long __cdecl CUntypedArray::GetHeaderLength(void)
1472?GetHeaderLength@CUntypedArray@@SAKXZ
1473; public: class CFastHeap * __ptr64 __cdecl CBasicQualifierSet::GetHeap(void) __ptr64
1474?GetHeap@CBasicQualifierSet@@QEAAPEAVCFastHeap@@XZ
1475; public: virtual class CFastHeap * __ptr64 __cdecl CClassPart::GetHeap(void) __ptr64
1476?GetHeap@CClassPart@@UEAAPEAVCFastHeap@@XZ
1477; public: virtual class CFastHeap * __ptr64 __cdecl CInstancePQSContainer::GetHeap(void) __ptr64
1478?GetHeap@CInstancePQSContainer@@UEAAPEAVCFastHeap@@XZ
1479; public: virtual class CFastHeap * __ptr64 __cdecl CInstancePart::GetHeap(void) __ptr64
1480?GetHeap@CInstancePart@@UEAAPEAVCFastHeap@@XZ
1481; public: class CFastHeap * __ptr64 __cdecl CMethodPart::GetHeap(void) __ptr64
1482?GetHeap@CMethodPart@@QEAAPEAVCFastHeap@@XZ
1483; public: virtual class CFastHeap * __ptr64 __cdecl CMethodQualifierSetContainer::GetHeap(void) __ptr64
1484?GetHeap@CMethodQualifierSetContainer@@UEAAPEAVCFastHeap@@XZ
1485; public: class CFastHeap * __ptr64 __cdecl CPropertyLookupTable::GetHeap(void) __ptr64
1486?GetHeap@CPropertyLookupTable@@QEAAPEAVCFastHeap@@XZ
1487; public: class CFastHeap * __ptr64 __cdecl CQualifierSetList::GetHeap(void) __ptr64
1488?GetHeap@CQualifierSetList@@QEAAPEAVCFastHeap@@XZ
1489; public: unsigned char * __ptr64 __cdecl CFastHeap::GetHeapData(void) __ptr64
1490?GetHeapData@CFastHeap@@QEAAPEAEXZ
1491; public: unsigned long __cdecl CClassPart::GetHeapPtrByHandle(long) __ptr64
1492?GetHeapPtrByHandle@CClassPart@@QEAAKJ@Z
1493; public: unsigned long __cdecl CWbemObject::GetHeapPtrByHandle(long) __ptr64
1494?GetHeapPtrByHandle@CWbemObject@@QEAAKJ@Z
1495; public: virtual long __cdecl CWbemObject::GetHelpContext(unsigned long * __ptr64) __ptr64
1496?GetHelpContext@CWbemObject@@UEAAJPEAK@Z
1497; public: virtual long __cdecl CWbemObject::GetHelpFile(unsigned short * __ptr64 * __ptr64) __ptr64
1498?GetHelpFile@CWbemObject@@UEAAJPEAPEAG@Z
1499; public: unsigned short * __ptr64 __cdecl CWbemThreadSecurityHandle::GetIdentity(void) __ptr64
1500?GetIdentity@CWbemThreadSecurityHandle@@QEAAPEAGXZ
1501; public: long __cdecl CWbemClass::GetIds(class CFlexArray & __ptr64,class CWbemClass * __ptr64) __ptr64
1502?GetIds@CWbemClass@@QEAAJAEAVCFlexArray@@PEAV1@@Z
1503; public: virtual long __cdecl CWbemCallSecurity::GetImpersonation(unsigned long * __ptr64) __ptr64
1504?GetImpersonation@CWbemCallSecurity@@UEAAJPEAK@Z
1505; public: virtual long __cdecl CWbemThreadSecurityHandle::GetImpersonation(unsigned long * __ptr64) __ptr64
1506?GetImpersonation@CWbemThreadSecurityHandle@@UEAAJPEAK@Z
1507; public: unsigned long __cdecl CWbemThreadSecurityHandle::GetImpersonationLevel(void) __ptr64
1508?GetImpersonationLevel@CWbemThreadSecurityHandle@@QEAAKXZ
1509; protected: unsigned long * __ptr64 __ptr64 __cdecl CFastHeap::GetInLineLength(void) __ptr64
1510?GetInLineLength@CFastHeap@@IEAAPEFAKXZ
1511; public: static int __cdecl CFastHeap::GetIndexFromFake(unsigned long)
1512?GetIndexFromFake@CFastHeap@@SAHK@Z
1513; public: static int __cdecl CKnownStringTable::GetIndexOfKey(void)
1514?GetIndexOfKey@CKnownStringTable@@SAHXZ
1515; public: static int __cdecl CClassAndMethods::GetIndexedProps(class CWStringArray & __ptr64,unsigned char * __ptr64)
1516?GetIndexedProps@CClassAndMethods@@SAHAEAVCWStringArray@@PEAE@Z
1517; public: int __cdecl CClassPart::GetIndexedProps(class CWStringArray & __ptr64) __ptr64
1518?GetIndexedProps@CClassPart@@QEAAHAEAVCWStringArray@@@Z
1519; public: virtual int __cdecl CWbemClass::GetIndexedProps(class CWStringArray & __ptr64) __ptr64
1520?GetIndexedProps@CWbemClass@@UEAAHAEAVCWStringArray@@@Z
1521; public: virtual int __cdecl CWbemInstance::GetIndexedProps(class CWStringArray & __ptr64) __ptr64
1522?GetIndexedProps@CWbemInstance@@UEAAHAEAVCWStringArray@@@Z
1523; private: long __cdecl CWbemObjectArrayPacket::GetInstanceObject(class CWbemObjectPacket & __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,class CWbemClassCache & __ptr64) __ptr64
1524?GetInstanceObject@CWbemObjectArrayPacket@@AEAAJAEAVCWbemObjectPacket@@PEAPEAUIWbemClassObject@@AEAVCWbemClassCache@@@Z
1525; public: virtual struct IUnknown * __ptr64 __cdecl CWbemInstance::GetInstanceObjectUnknown(void) __ptr64
1526?GetInstanceObjectUnknown@CWbemInstance@@UEAAPEAUIUnknown@@XZ
1527; protected: virtual void * __ptr64 __cdecl CWbemEnumMarshaling::GetInterface(struct _GUID const & __ptr64) __ptr64
1528?GetInterface@CWbemEnumMarshaling@@MEAAPEAXAEBU_GUID@@@Z
1529; protected: virtual void * __ptr64 __cdecl CWbemFetchRefrMgr::GetInterface(struct _GUID const & __ptr64) __ptr64
1530?GetInterface@CWbemFetchRefrMgr@@MEAAPEAXAEBU_GUID@@@Z
1531; protected: virtual void * __ptr64 __cdecl CWbemRefreshingSvc::GetInterface(struct _GUID const & __ptr64) __ptr64
1532?GetInterface@CWbemRefreshingSvc@@MEAAPEAXAEBU_GUID@@@Z
1533; protected: virtual void * __ptr64 __cdecl CWmiObjectFactory::GetInterface(struct _GUID const & __ptr64) __ptr64
1534?GetInterface@CWmiObjectFactory@@MEAAPEAXAEBU_GUID@@@Z
1535; public: class CVar * __ptr64 __cdecl CWbemInstance::GetKey(void) __ptr64
1536?GetKey@CWbemInstance@@QEAAPEAVCVar@@XZ
1537; public: long __cdecl CClassPart::GetKeyOrigin(class WString & __ptr64) __ptr64
1538?GetKeyOrigin@CClassPart@@QEAAJAEAVWString@@@Z
1539; public: virtual long __cdecl CWbemClass::GetKeyOrigin(class WString & __ptr64) __ptr64
1540?GetKeyOrigin@CWbemClass@@UEAAJAEAVWString@@@Z
1541; public: virtual long __cdecl CWbemInstance::GetKeyOrigin(class WString & __ptr64) __ptr64
1542?GetKeyOrigin@CWbemInstance@@UEAAJAEAVWString@@@Z
1543; public: virtual long __cdecl CWbemObject::GetKeyOrigin(long,unsigned long,unsigned long * __ptr64,unsigned short * __ptr64) __ptr64
1544?GetKeyOrigin@CWbemObject@@UEAAJJKPEAKPEAG@Z
1545; public: int __cdecl CClassPart::GetKeyProps(class CWStringArray & __ptr64) __ptr64
1546?GetKeyProps@CClassPart@@QEAAHAEAVCWStringArray@@@Z
1547; public: virtual int __cdecl CWbemClass::GetKeyProps(class CWStringArray & __ptr64) __ptr64
1548?GetKeyProps@CWbemClass@@UEAAHAEAVCWStringArray@@@Z
1549; public: virtual int __cdecl CWbemInstance::GetKeyProps(class CWStringArray & __ptr64) __ptr64
1550?GetKeyProps@CWbemInstance@@UEAAHAEAVCWStringArray@@@Z
1551; public: unsigned short * __ptr64 __cdecl CWbemInstance::GetKeyStr(void) __ptr64
1552?GetKeyStr@CWbemInstance@@QEAAPEAGXZ
1553; public: virtual long __cdecl CWbemObject::GetKeyString(long,unsigned short * __ptr64 * __ptr64) __ptr64
1554?GetKeyString@CWbemObject@@UEAAJJPEAPEAG@Z
1555; public: struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetKnownQualifierLocally(int) __ptr64
1556?GetKnownQualifierLocally@CBasicQualifierSet@@QEAAPEAUCQualifier@@H@Z
1557; public: static struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetKnownQualifierLocally(unsigned char * __ptr64,int)
1558?GetKnownQualifierLocally@CBasicQualifierSet@@SAPEAUCQualifier@@PEAEH@Z
1559; public: static class CCompressedString & __ptr64 __cdecl CKnownStringTable::GetKnownString(int)
1560?GetKnownString@CKnownStringTable@@SAAEAVCCompressedString@@H@Z
1561; public: static int __cdecl CKnownStringTable::GetKnownStringIndex(unsigned short const * __ptr64)
1562?GetKnownStringIndex@CKnownStringTable@@SAHPEBG@Z
1563; public: class CCompressedString * __ptr64 __cdecl CCompressedStringList::GetLast(void) __ptr64
1564?GetLast@CCompressedStringList@@QEAAPEAVCCompressedString@@XZ
1565; public: unsigned long __cdecl CBasicQualifierSet::GetLength(void) __ptr64
1566?GetLength@CBasicQualifierSet@@QEAAKXZ
1567; public: unsigned long __cdecl CClassAndMethods::GetLength(void) __ptr64
1568?GetLength@CClassAndMethods@@QEAAKXZ
1569; public: unsigned long __cdecl CClassPart::GetLength(void) __ptr64
1570?GetLength@CClassPart@@QEAAKXZ
1571; public: int __cdecl CCompressedString::GetLength(void)const __ptr64
1572?GetLength@CCompressedString@@QEBAHXZ
1573; public: unsigned long __cdecl CCompressedStringList::GetLength(void) __ptr64
1574?GetLength@CCompressedStringList@@QEAAKXZ
1575; public: unsigned long __cdecl CDataTable::GetLength(void) __ptr64
1576?GetLength@CDataTable@@QEAAKXZ
1577; public: unsigned long __cdecl CDecorationPart::GetLength(void) __ptr64
1578?GetLength@CDecorationPart@@QEAAKXZ
1579; public: unsigned long __cdecl CEmbeddedObject::GetLength(void) __ptr64
1580?GetLength@CEmbeddedObject@@QEAAKXZ
1581; public: unsigned long __cdecl CFastHeap::GetLength(void) __ptr64
1582?GetLength@CFastHeap@@QEAAKXZ
1583; public: int __cdecl CFixedBSTRArray::GetLength(void) __ptr64
1584?GetLength@CFixedBSTRArray@@QEAAHXZ
1585; public: int __cdecl CInstancePart::GetLength(void) __ptr64
1586?GetLength@CInstancePart@@QEAAHXZ
1587; public: static int __cdecl CInstancePart::GetLength(unsigned char * __ptr64)
1588?GetLength@CInstancePart@@SAHPEAE@Z
1589; public: int __cdecl CInternalString::GetLength(void)const __ptr64
1590?GetLength@CInternalString@@QEBAHXZ
1591; public: unsigned long __cdecl CMethodPart::GetLength(void) __ptr64
1592?GetLength@CMethodPart@@QEAAKXZ
1593; public: int __cdecl CPropertyLookupTable::GetLength(void) __ptr64
1594?GetLength@CPropertyLookupTable@@QEAAHXZ
1595; public: int __cdecl CQualifierSetList::GetLength(void) __ptr64
1596?GetLength@CQualifierSetList@@QEAAHXZ
1597; public: static int __cdecl CQualifierSetList::GetLength(unsigned char * __ptr64,int)
1598?GetLength@CQualifierSetList@@SAHPEAEH@Z
1599; public: unsigned long __cdecl CType::GetLength(void) __ptr64
1600?GetLength@CType@@QEAAKXZ
1601; public: static unsigned long __cdecl CType::GetLength(unsigned long)
1602?GetLength@CType@@SAKK@Z
1603; public: unsigned long __cdecl CWbemClass::GetLength(void) __ptr64
1604?GetLength@CWbemClass@@QEAAKXZ
1605; public: unsigned long __cdecl CWbemInstance::GetLength(void) __ptr64
1606?GetLength@CWbemInstance@@QEAAKXZ
1607; public: unsigned long __cdecl CUntypedArray::GetLengthByActualLength(int) __ptr64
1608?GetLengthByActualLength@CUntypedArray@@QEAAKH@Z
1609; public: unsigned long __cdecl CUntypedArray::GetLengthByType(class CType) __ptr64
1610?GetLengthByType@CUntypedArray@@QEAAKVCType@@@Z
1611; public: static unsigned long __cdecl CBasicQualifierSet::GetLengthFromData(unsigned char * __ptr64)
1612?GetLengthFromData@CBasicQualifierSet@@SAKPEAE@Z
1613; public: long __cdecl CWbemClass::GetLimitedVersion(class CLimitationMapping * __ptr64,class CWbemClass * __ptr64 * __ptr64) __ptr64
1614?GetLimitedVersion@CWbemClass@@QEAAJPEAVCLimitationMapping@@PEAPEAV1@@Z
1615; public: long __cdecl CWbemInstance::GetLimitedVersion(class CLimitationMapping * __ptr64,class CWbemInstance * __ptr64 * __ptr64) __ptr64
1616?GetLimitedVersion@CWbemInstance@@QEAAJPEAVCLimitationMapping@@PEAPEAV1@@Z
1617; public: long __cdecl CWbemGuidToClassMap::GetMap(class CGUID & __ptr64,class CWbemClassToIdMap * __ptr64 * __ptr64) __ptr64
1618?GetMap@CWbemGuidToClassMap@@QEAAJAEAVCGUID@@PEAPEAVCWbemClassToIdMap@@@Z
1619; public: unsigned short __cdecl CLimitationMapping::GetMapped(unsigned short) __ptr64
1620?GetMapped@CLimitationMapping@@QEAAGG@Z
1621; public: class CPropertyInformation * __ptr64 __cdecl CLimitationMapping::GetMapped(class CPropertyInformation * __ptr64) __ptr64
1622?GetMapped@CLimitationMapping@@QEAAPEAVCPropertyInformation@@PEAV2@@Z
1623; public: long __cdecl CWbemEnumMarshaling::GetMarshalPacket(struct _GUID const & __ptr64,unsigned long,struct IWbemClassObject * __ptr64 * __ptr64,unsigned long * __ptr64,unsigned char * __ptr64 * __ptr64) __ptr64
1624?GetMarshalPacket@CWbemEnumMarshaling@@QEAAJAEBU_GUID@@KPEAPEAUIWbemClassObject@@PEAKPEAPEAE@Z
1625; public: virtual long __cdecl CWbemEnumMarshaling::XEnumMarshaling::GetMarshalPacket(struct _GUID const & __ptr64,unsigned long,struct IWbemClassObject * __ptr64 * __ptr64,unsigned long * __ptr64,unsigned char * __ptr64 * __ptr64) __ptr64
1626?GetMarshalPacket@XEnumMarshaling@CWbemEnumMarshaling@@UEAAJAEBU_GUID@@KPEAPEAUIWbemClassObject@@PEAKPEAPEAE@Z
1627; public: virtual long __cdecl CWbemObject::GetMarshalSizeMax(struct _GUID const & __ptr64,void * __ptr64,unsigned long,void * __ptr64,unsigned long,unsigned long * __ptr64) __ptr64
1628?GetMarshalSizeMax@CWbemObject@@UEAAJAEBU_GUID@@PEAXK1KPEAK@Z
1629; public: virtual long __cdecl CWbemInstance::GetMaxMarshalStreamSize(unsigned long * __ptr64) __ptr64
1630?GetMaxMarshalStreamSize@CWbemInstance@@UEAAJPEAK@Z
1631; public: virtual long __cdecl CWbemObject::GetMaxMarshalStreamSize(unsigned long * __ptr64) __ptr64
1632?GetMaxMarshalStreamSize@CWbemObject@@UEAAJPEAK@Z
1633; public: virtual unsigned char * __ptr64 __cdecl CClassPart::GetMemoryLimit(void) __ptr64
1634?GetMemoryLimit@CClassPart@@UEAAPEAEXZ
1635; public: virtual unsigned char * __ptr64 __cdecl CInstancePart::GetMemoryLimit(void) __ptr64
1636?GetMemoryLimit@CInstancePart@@UEAAPEAEXZ
1637; public: virtual unsigned char * __ptr64 __cdecl CMethodPart::GetMemoryLimit(void) __ptr64
1638?GetMemoryLimit@CMethodPart@@UEAAPEAEXZ
1639; public: long __cdecl CMethodPart::GetMethod(unsigned short const * __ptr64,long,class CWbemObject * __ptr64 * __ptr64,class CWbemObject * __ptr64 * __ptr64) __ptr64
1640?GetMethod@CMethodPart@@QEAAJPEBGJPEAPEAVCWbemObject@@1@Z
1641; public: virtual long __cdecl CWbemClass::GetMethod(unsigned short const * __ptr64,long,struct IWbemClassObject * __ptr64 * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
1642?GetMethod@CWbemClass@@UEAAJPEBGJPEAPEAUIWbemClassObject@@1@Z
1643; public: virtual long __cdecl CWbemInstance::GetMethod(unsigned short const * __ptr64,long,struct IWbemClassObject * __ptr64 * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
1644?GetMethod@CWbemInstance@@UEAAJPEBGJPEAPEAUIWbemClassObject@@1@Z
1645; public: long __cdecl CMethodPart::GetMethodAt(int,unsigned short * __ptr64 * __ptr64,class CWbemObject * __ptr64 * __ptr64,class CWbemObject * __ptr64 * __ptr64) __ptr64
1646?GetMethodAt@CMethodPart@@QEAAJHPEAPEAGPEAPEAVCWbemObject@@1@Z
1647; public: long __cdecl CMethodPart::GetMethodOrigin(unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1648?GetMethodOrigin@CMethodPart@@QEAAJPEBGPEAK@Z
1649; public: virtual long __cdecl CWbemClass::GetMethodOrigin(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
1650?GetMethodOrigin@CWbemClass@@UEAAJPEBGPEAPEAG@Z
1651; public: virtual long __cdecl CWbemInstance::GetMethodOrigin(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
1652?GetMethodOrigin@CWbemInstance@@UEAAJPEBGPEAPEAG@Z
1653; public: virtual long __cdecl CWbemObject::GetMethodQual(unsigned short const * __ptr64,unsigned short const * __ptr64,long,unsigned long,long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64) __ptr64
1654?GetMethodQual@CWbemObject@@UEAAJPEBG0JKPEAJPEAK2PEAX@Z
1655; public: virtual long __cdecl CWbemClass::GetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1656?GetMethodQualifier@CWbemClass@@UEAAJPEBG0PEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1657; public: virtual long __cdecl CWbemClass::GetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1658?GetMethodQualifier@CWbemClass@@UEAAJPEBG0PEAVCVar@@PEAJ2@Z
1659; public: virtual long __cdecl CWbemInstance::GetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1660?GetMethodQualifier@CWbemInstance@@UEAAJPEBG0PEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1661; public: virtual long __cdecl CWbemInstance::GetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1662?GetMethodQualifier@CWbemInstance@@UEAAJPEBG0PEAVCVar@@PEAJ2@Z
1663; public: long __cdecl CMethodPart::GetMethodQualifierSet(unsigned short const * __ptr64,struct IWbemQualifierSet * __ptr64 * __ptr64) __ptr64
1664?GetMethodQualifierSet@CMethodPart@@QEAAJPEBGPEAPEAUIWbemQualifierSet@@@Z
1665; public: virtual long __cdecl CWbemClass::GetMethodQualifierSet(unsigned short const * __ptr64,struct IWbemQualifierSet * __ptr64 * __ptr64) __ptr64
1666?GetMethodQualifierSet@CWbemClass@@UEAAJPEBGPEAPEAUIWbemQualifierSet@@@Z
1667; public: virtual long __cdecl CWbemInstance::GetMethodQualifierSet(unsigned short const * __ptr64,struct IWbemQualifierSet * __ptr64 * __ptr64) __ptr64
1668?GetMethodQualifierSet@CWbemInstance@@UEAAJPEBGPEAPEAUIWbemQualifierSet@@@Z
1669; public: unsigned long __cdecl CWbemDataPacket::GetMinHeaderSize(void) __ptr64
1670?GetMinHeaderSize@CWbemDataPacket@@QEAAKXZ
1671; public: static unsigned long __cdecl CBasicQualifierSet::GetMinLength(void)
1672?GetMinLength@CBasicQualifierSet@@SAKXZ
1673; public: static unsigned long __cdecl CClassAndMethods::GetMinLength(void)
1674?GetMinLength@CClassAndMethods@@SAKXZ
1675; public: static int __cdecl CClassPart::GetMinLength(void)
1676?GetMinLength@CClassPart@@SAHXZ
1677; public: static unsigned long __cdecl CDataTable::GetMinLength(void)
1678?GetMinLength@CDataTable@@SAKXZ
1679; public: static unsigned long __cdecl CDecorationPart::GetMinLength(void)
1680?GetMinLength@CDecorationPart@@SAKXZ
1681; public: static unsigned long __cdecl CFastHeap::GetMinLength(void)
1682?GetMinLength@CFastHeap@@SAKXZ
1683; public: static unsigned long __cdecl CMethodPart::GetMinLength(void)
1684?GetMinLength@CMethodPart@@SAKXZ
1685; public: static unsigned long __cdecl CPropertyLookupTable::GetMinLength(void)
1686?GetMinLength@CPropertyLookupTable@@SAKXZ
1687; public: static unsigned long __cdecl CWbemClass::GetMinLength(void)
1688?GetMinLength@CWbemClass@@SAKXZ
1689; protected: class CCompressedString * __ptr64 __cdecl CMethodPart::GetName(int) __ptr64
1690?GetName@CMethodPart@@IEAAPEAVCCompressedString@@H@Z
1691; public: static unsigned short * __ptr64 __cdecl CSystemProperties::GetNameAsBSTR(int)
1692?GetNameAsBSTR@CSystemProperties@@SAPEAGH@Z
1693; public: virtual long __cdecl CQualifierSet::GetNames(long,struct tagSAFEARRAY * __ptr64 * __ptr64) __ptr64
1694?GetNames@CQualifierSet@@UEAAJJPEAPEAUtagSAFEARRAY@@@Z
1695; public: virtual long __cdecl CWbemObject::GetNames(unsigned short const * __ptr64,long,struct tagVARIANT * __ptr64,struct tagSAFEARRAY * __ptr64 * __ptr64) __ptr64
1696?GetNames@CWbemObject@@UEAAJPEBGJPEAUtagVARIANT@@PEAPEAUtagSAFEARRAY@@@Z
1697; public: long __cdecl CWbemObject::GetNamespace(class CVar * __ptr64) __ptr64
1698?GetNamespace@CWbemObject@@QEAAJPEAVCVar@@@Z
1699; public: class CCompressedString * __ptr64 __cdecl CCompressedStringList::GetNext(class CCompressedString * __ptr64) __ptr64
1700?GetNext@CCompressedStringList@@QEAAPEAVCCompressedString@@PEAV2@@Z
1701; public: long __cdecl CWbemInstance::GetNonsystemPropertyValue(unsigned short const * __ptr64,class CVar * __ptr64) __ptr64
1702?GetNonsystemPropertyValue@CWbemInstance@@QEAAJPEBGPEAVCVar@@@Z
1703; public: virtual long __cdecl CWbemObject::GetNormalizedPath(long,unsigned short * __ptr64 * __ptr64) __ptr64
1704?GetNormalizedPath@CWbemObject@@UEAAJJPEAPEAG@Z
1705; public: unsigned long __cdecl CDataTable::GetNullnessLength(void) __ptr64
1706?GetNullnessLength@CDataTable@@QEAAKXZ
1707; public: static int __cdecl CSystemProperties::GetNumDecorationIndependentProperties(void)
1708?GetNumDecorationIndependentProperties@CSystemProperties@@SAHXZ
1709; public: int __cdecl CUntypedArray::GetNumElements(void) __ptr64
1710?GetNumElements@CUntypedArray@@QEAAHXZ
1711; public: int __cdecl CLimitationMapping::GetNumMappings(void) __ptr64
1712?GetNumMappings@CLimitationMapping@@QEAAHXZ
1713; protected: int __cdecl CMethodPart::GetNumMethods(void) __ptr64
1714?GetNumMethods@CMethodPart@@IEAAHXZ
1715; public: int __cdecl CWbemObject::GetNumParents(void) __ptr64
1716?GetNumParents@CWbemObject@@QEAAHXZ
1717; public: int __cdecl CPropertyLookupTable::GetNumProperties(void) __ptr64
1718?GetNumProperties@CPropertyLookupTable@@QEAAHXZ
1719; public: virtual int __cdecl CWbemClass::GetNumProperties(void) __ptr64
1720?GetNumProperties@CWbemClass@@UEAAHXZ
1721; public: virtual int __cdecl CWbemInstance::GetNumProperties(void) __ptr64
1722?GetNumProperties@CWbemInstance@@UEAAHXZ
1723; public: int __cdecl CQualifierSetList::GetNumSets(void) __ptr64
1724?GetNumSets@CQualifierSetList@@QEAAHXZ
1725; public: int __cdecl CCompressedStringList::GetNumStrings(void) __ptr64
1726?GetNumStrings@CCompressedStringList@@QEAAHXZ
1727; public: static int __cdecl CSystemProperties::GetNumSystemProperties(void)
1728?GetNumSystemProperties@CSystemProperties@@SAHXZ
1729; public: int __cdecl CBasicQualifierSet::GetNumUpperBound(void) __ptr64
1730?GetNumUpperBound@CBasicQualifierSet@@QEAAHXZ
1731; public: virtual long __cdecl CWbemObject::GetObjQual(unsigned short const * __ptr64,long,unsigned long,long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64) __ptr64
1732?GetObjQual@CWbemObject@@UEAAJPEBGJKPEAJPEAK2PEAX@Z
1733; public: virtual long __cdecl CWbemObject::GetObjectMemory(void * __ptr64,unsigned long,unsigned long * __ptr64) __ptr64
1734?GetObjectMemory@CWbemObject@@UEAAJPEAXKPEAK@Z
1735; public: virtual long __cdecl CWbemClass::GetObjectParts(void * __ptr64,unsigned long,unsigned long,unsigned long * __ptr64) __ptr64
1736?GetObjectParts@CWbemClass@@UEAAJPEAXKKPEAK@Z
1737; public: virtual long __cdecl CWbemInstance::GetObjectParts(void * __ptr64,unsigned long,unsigned long,unsigned long * __ptr64) __ptr64
1738?GetObjectParts@CWbemInstance@@UEAAJPEAXKKPEAK@Z
1739; public: long __cdecl CInstancePart::GetObjectQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64) __ptr64
1740?GetObjectQualifier@CInstancePart@@QEAAJPEBGPEAVCVar@@PEAJ@Z
1741; public: virtual long __cdecl CWbemClass::GetObjectText(long,unsigned short * __ptr64 * __ptr64) __ptr64
1742?GetObjectText@CWbemClass@@UEAAJJPEAPEAG@Z
1743; public: virtual long __cdecl CWbemInstance::GetObjectText(long,unsigned short * __ptr64 * __ptr64) __ptr64
1744?GetObjectText@CWbemInstance@@UEAAJJPEAPEAG@Z
1745; public: long __cdecl CWbemClassCache::GetObjectW(struct _GUID & __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
1746?GetObjectW@CWbemClassCache@@QEAAJAEAU_GUID@@PEAPEAUIWbemClassObject@@@Z
1747; public: class CUntypedValue * __ptr64 __cdecl CDataTable::GetOffset(unsigned long) __ptr64
1748?GetOffset@CDataTable@@QEAAPEAVCUntypedValue@@K@Z
1749; public: class CCompressedString * __ptr64 __cdecl CWbemObject::GetParentAtIndex(int) __ptr64
1750?GetParentAtIndex@CWbemObject@@QEAAPEAVCCompressedString@@H@Z
1751; public: virtual long __cdecl CWbemClass::GetParentClassFromBlob(long,unsigned long,void * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
1752?GetParentClassFromBlob@CWbemClass@@UEAAJJKPEAXPEAPEAG@Z
1753; public: virtual long __cdecl CWbemObject::GetParentClassFromBlob(long,unsigned long,void * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
1754?GetParentClassFromBlob@CWbemObject@@UEAAJJKPEAXPEAPEAG@Z
1755; public: long __cdecl CWbemObject::GetPath(class CVar * __ptr64) __ptr64
1756?GetPath@CWbemObject@@QEAAJPEAVCVar@@@Z
1757; public: static class CUntypedArray * __ptr64 __cdecl CUntypedArray::GetPointer(class CPtrSource * __ptr64)
1758?GetPointer@CUntypedArray@@SAPEAV1@PEAVCPtrSource@@@Z
1759; public: class CCompressedString * __ptr64 __cdecl CCompressedStringList::GetPrevious(class CCompressedString * __ptr64) __ptr64
1760?GetPrevious@CCompressedStringList@@QEAAPEAVCCompressedString@@PEAV2@@Z
1761; public: virtual long __cdecl CWbemObject::GetPropAddrByHandle(long,long,unsigned long * __ptr64,void * __ptr64 * __ptr64) __ptr64
1762?GetPropAddrByHandle@CWbemObject@@UEAAJJJPEAKPEAPEAX@Z
1763; public: virtual long __cdecl CWbemClass::GetPropName(int,class CVar * __ptr64) __ptr64
1764?GetPropName@CWbemClass@@UEAAJHPEAVCVar@@@Z
1765; public: virtual long __cdecl CWbemInstance::GetPropName(int,class CVar * __ptr64) __ptr64
1766?GetPropName@CWbemInstance@@UEAAJHPEAVCVar@@@Z
1767; public: virtual long __cdecl CWbemObject::GetPropQual(unsigned short const * __ptr64,unsigned short const * __ptr64,long,unsigned long,long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64) __ptr64
1768?GetPropQual@CWbemObject@@UEAAJPEBG0JKPEAJPEAK2PEAX@Z
1769; public: long __cdecl CClassPart::GetPropQualifier(class CPropertyInformation * __ptr64,unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1770?GetPropQualifier@CClassPart@@QEAAJPEAVCPropertyInformation@@PEBGPEAVCVar@@PEAJ3@Z
1771; public: long __cdecl CClassPart::GetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1772?GetPropQualifier@CClassPart@@QEAAJPEBG0PEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1773; public: virtual long __cdecl CWbemClass::GetPropQualifier(class CPropertyInformation * __ptr64,unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1774?GetPropQualifier@CWbemClass@@UEAAJPEAVCPropertyInformation@@PEBGPEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1775; public: virtual long __cdecl CWbemClass::GetPropQualifier(class CPropertyInformation * __ptr64,unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1776?GetPropQualifier@CWbemClass@@UEAAJPEAVCPropertyInformation@@PEBGPEAVCVar@@PEAJ3@Z
1777; public: virtual long __cdecl CWbemClass::GetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1778?GetPropQualifier@CWbemClass@@UEAAJPEBG0PEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1779; public: virtual long __cdecl CWbemClass::GetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1780?GetPropQualifier@CWbemClass@@UEAAJPEBG0PEAVCVar@@PEAJ2@Z
1781; public: virtual long __cdecl CWbemInstance::GetPropQualifier(class CPropertyInformation * __ptr64,unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1782?GetPropQualifier@CWbemInstance@@UEAAJPEAVCPropertyInformation@@PEBGPEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1783; public: virtual long __cdecl CWbemInstance::GetPropQualifier(class CPropertyInformation * __ptr64,unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1784?GetPropQualifier@CWbemInstance@@UEAAJPEAVCPropertyInformation@@PEBGPEAVCVar@@PEAJ3@Z
1785; public: virtual long __cdecl CWbemInstance::GetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1786?GetPropQualifier@CWbemInstance@@UEAAJPEBG0PEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1787; public: virtual long __cdecl CWbemInstance::GetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1788?GetPropQualifier@CWbemInstance@@UEAAJPEBG0PEAVCVar@@PEAJ2@Z
1789; protected: virtual long __cdecl CWbemClass::GetProperty(class CPropertyInformation * __ptr64,class CVar * __ptr64) __ptr64
1790?GetProperty@CWbemClass@@MEAAJPEAVCPropertyInformation@@PEAVCVar@@@Z
1791; public: virtual long __cdecl CWbemClass::GetProperty(unsigned short const * __ptr64,class CVar * __ptr64) __ptr64
1792?GetProperty@CWbemClass@@UEAAJPEBGPEAVCVar@@@Z
1793; protected: virtual long __cdecl CWbemInstance::GetProperty(class CPropertyInformation * __ptr64,class CVar * __ptr64) __ptr64
1794?GetProperty@CWbemInstance@@MEAAJPEAVCPropertyInformation@@PEAVCVar@@@Z
1795; public: virtual long __cdecl CWbemInstance::GetProperty(unsigned short const * __ptr64,class CVar * __ptr64) __ptr64
1796?GetProperty@CWbemInstance@@UEAAJPEBGPEAVCVar@@@Z
1797; public: long __cdecl CClassPart::GetPropertyCount(class CVar * __ptr64) __ptr64
1798?GetPropertyCount@CClassPart@@QEAAJPEAVCVar@@@Z
1799; public: virtual long __cdecl CWbemClass::GetPropertyCount(class CVar * __ptr64) __ptr64
1800?GetPropertyCount@CWbemClass@@UEAAJPEAVCVar@@@Z
1801; public: virtual long __cdecl CWbemInstance::GetPropertyCount(class CVar * __ptr64) __ptr64
1802?GetPropertyCount@CWbemInstance@@UEAAJPEAVCVar@@@Z
1803; public: long __cdecl CClassPart::GetPropertyHandle(unsigned short const * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1804?GetPropertyHandle@CClassPart@@QEAAJPEBGPEAJ1@Z
1805; public: virtual long __cdecl CWbemObject::GetPropertyHandle(unsigned short const * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1806?GetPropertyHandle@CWbemObject@@UEAAJPEBGPEAJ1@Z
1807; public: long __cdecl CClassPart::GetPropertyHandleEx(unsigned short const * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1808?GetPropertyHandleEx@CClassPart@@QEAAJPEBGPEAJ1@Z
1809; public: virtual long __cdecl CWbemObject::GetPropertyHandleEx(unsigned short const * __ptr64,long,long * __ptr64,long * __ptr64) __ptr64
1810?GetPropertyHandleEx@CWbemObject@@UEAAJPEBGJPEAJ1@Z
1811; public: long __cdecl CWbemObject::GetPropertyIndex(unsigned short const * __ptr64,int * __ptr64) __ptr64
1812?GetPropertyIndex@CWbemObject@@QEAAJPEBGPEAH@Z
1813; public: long __cdecl CClassPart::GetPropertyInfoByHandle(long,unsigned short * __ptr64 * __ptr64,long * __ptr64) __ptr64
1814?GetPropertyInfoByHandle@CClassPart@@QEAAJJPEAPEAGPEAJ@Z
1815; public: virtual long __cdecl CWbemObject::GetPropertyInfoByHandle(long,unsigned short * __ptr64 * __ptr64,long * __ptr64) __ptr64
1816?GetPropertyInfoByHandle@CWbemObject@@UEAAJJPEAPEAGPEAJ@Z
1817; public: struct CPropertyLookup * __ptr64 __cdecl CClassPart::GetPropertyLookup(int) __ptr64
1818?GetPropertyLookup@CClassPart@@QEAAPEAUCPropertyLookup@@H@Z
1819; public: long __cdecl CWbemObject::GetPropertyNameFromIndex(int,unsigned short * __ptr64 * __ptr64) __ptr64
1820?GetPropertyNameFromIndex@CWbemObject@@QEAAJHPEAPEAG@Z
1821; public: long __cdecl CClassPart::GetPropertyOrigin(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
1822?GetPropertyOrigin@CClassPart@@QEAAJPEBGPEAPEAG@Z
1823; public: virtual long __cdecl CWbemObject::GetPropertyOrigin(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
1824?GetPropertyOrigin@CWbemObject@@UEAAJPEBGPEAPEAG@Z
1825; public: virtual long __cdecl CWbemClass::GetPropertyQualifierSet(unsigned short const * __ptr64,struct IWbemQualifierSet * __ptr64 * __ptr64) __ptr64
1826?GetPropertyQualifierSet@CWbemClass@@UEAAJPEBGPEAPEAUIWbemQualifierSet@@@Z
1827; public: virtual long __cdecl CWbemInstance::GetPropertyQualifierSet(unsigned short const * __ptr64,struct IWbemQualifierSet * __ptr64 * __ptr64) __ptr64
1828?GetPropertyQualifierSet@CWbemInstance@@UEAAJPEBGPEAPEAUIWbemQualifierSet@@@Z
1829; public: unsigned char * __ptr64 __cdecl CClassPart::GetPropertyQualifierSetData(unsigned short const * __ptr64) __ptr64
1830?GetPropertyQualifierSetData@CClassPart@@QEAAPEAEPEBG@Z
1831; public: class CCompressedString * __ptr64 __cdecl CWbemObject::GetPropertyString(long) __ptr64
1832?GetPropertyString@CWbemObject@@QEAAPEAVCCompressedString@@J@Z
1833; public: long __cdecl CClassPart::GetPropertyType(class CPropertyInformation * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1834?GetPropertyType@CClassPart@@QEAAJPEAVCPropertyInformation@@PEAJ1@Z
1835; public: long __cdecl CClassPart::GetPropertyType(unsigned short const * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1836?GetPropertyType@CClassPart@@QEAAJPEBGPEAJ1@Z
1837; public: static long __cdecl CSystemProperties::GetPropertyType(unsigned short const * __ptr64,long * __ptr64,long * __ptr64)
1838?GetPropertyType@CSystemProperties@@SAJPEBGPEAJ1@Z
1839; public: virtual long __cdecl CWbemClass::GetPropertyType(class CPropertyInformation * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1840?GetPropertyType@CWbemClass@@UEAAJPEAVCPropertyInformation@@PEAJ1@Z
1841; public: virtual long __cdecl CWbemClass::GetPropertyType(unsigned short const * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1842?GetPropertyType@CWbemClass@@UEAAJPEBGPEAJ1@Z
1843; public: virtual long __cdecl CWbemInstance::GetPropertyType(class CPropertyInformation * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1844?GetPropertyType@CWbemInstance@@UEAAJPEAVCPropertyInformation@@PEAJ1@Z
1845; public: virtual long __cdecl CWbemInstance::GetPropertyType(unsigned short const * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1846?GetPropertyType@CWbemInstance@@UEAAJPEBGPEAJ1@Z
1847; public: virtual long __cdecl CWbemObject::GetPropertyValue(struct _tag_WbemPropertyName * __ptr64,long,unsigned short * __ptr64 * __ptr64,struct tagVARIANT * __ptr64) __ptr64
1848?GetPropertyValue@CWbemObject@@UEAAJPEAU_tag_WbemPropertyName@@JPEAPEAGPEAUtagVARIANT@@@Z
1849; public: long __cdecl CClassPart::GetQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1850?GetQualifier@CClassPart@@QEAAJPEBGPEAVCVar@@PEAJ2@Z
1851; public: long __cdecl CInstancePart::GetQualifier(unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1852?GetQualifier@CInstancePart@@QEAAJPEBGPEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1853; public: long __cdecl CInstancePart::GetQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1854?GetQualifier@CInstancePart@@QEAAJPEBGPEAVCVar@@PEAJ2@Z
1855; public: long __cdecl CQualifierSet::GetQualifier(unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1856?GetQualifier@CQualifierSet@@QEAAJPEBGPEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1857; public: long __cdecl CQualifierSet::GetQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1858?GetQualifier@CQualifierSet@@QEAAJPEBGPEAVCVar@@PEAJ2@Z
1859; public: struct CQualifier * __ptr64 __cdecl CQualifierSet::GetQualifier(unsigned short const * __ptr64) __ptr64
1860?GetQualifier@CQualifierSet@@QEAAPEAUCQualifier@@PEBG@Z
1861; public: struct CQualifier * __ptr64 __cdecl CQualifierSet::GetQualifier(unsigned short const * __ptr64,int & __ptr64) __ptr64
1862?GetQualifier@CQualifierSet@@QEAAPEAUCQualifier@@PEBGAEAH@Z
1863; public: virtual long __cdecl CWbemClass::GetQualifier(unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1864?GetQualifier@CWbemClass@@UEAAJPEBGPEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1865; public: virtual long __cdecl CWbemClass::GetQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1866?GetQualifier@CWbemClass@@UEAAJPEBGPEAVCVar@@PEAJ2@Z
1867; public: virtual long __cdecl CWbemInstance::GetQualifier(unsigned short const * __ptr64,long * __ptr64,class CTypedValue * __ptr64,class CFastHeap * __ptr64 * __ptr64,int) __ptr64
1868?GetQualifier@CWbemInstance@@UEAAJPEBGPEAJPEAVCTypedValue@@PEAPEAVCFastHeap@@H@Z
1869; public: virtual long __cdecl CWbemInstance::GetQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long * __ptr64,long * __ptr64) __ptr64
1870?GetQualifier@CWbemInstance@@UEAAJPEBGPEAVCVar@@PEAJ2@Z
1871; public: long __cdecl CWbemObject::GetQualifierArrayInfo(unsigned short const * __ptr64,unsigned short const * __ptr64,int,long,long * __ptr64,unsigned long * __ptr64) __ptr64
1872?GetQualifierArrayInfo@CWbemObject@@QEAAJPEBG0HJPEAJPEAK@Z
1873; public: long __cdecl CWbemObject::GetQualifierArrayRange(unsigned short const * __ptr64,unsigned short const * __ptr64,int,long,unsigned long,unsigned long,unsigned long,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64) __ptr64
1874?GetQualifierArrayRange@CWbemObject@@QEAAJPEBG0HJKKKPEAK1PEAX@Z
1875; public: struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetQualifierLocally(class CCompressedString * __ptr64) __ptr64
1876?GetQualifierLocally@CBasicQualifierSet@@QEAAPEAUCQualifier@@PEAVCCompressedString@@@Z
1877; public: struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetQualifierLocally(unsigned short const * __ptr64) __ptr64
1878?GetQualifierLocally@CBasicQualifierSet@@QEAAPEAUCQualifier@@PEBG@Z
1879; public: struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetQualifierLocally(unsigned short const * __ptr64,int & __ptr64) __ptr64
1880?GetQualifierLocally@CBasicQualifierSet@@QEAAPEAUCQualifier@@PEBGAEAH@Z
1881; public: static struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetQualifierLocally(unsigned char * __ptr64,class CFastHeap * __ptr64,class CCompressedString * __ptr64)
1882?GetQualifierLocally@CBasicQualifierSet@@SAPEAUCQualifier@@PEAEPEAVCFastHeap@@PEAVCCompressedString@@@Z
1883; public: static struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetQualifierLocally(unsigned char * __ptr64,class CFastHeap * __ptr64,unsigned short const * __ptr64)
1884?GetQualifierLocally@CBasicQualifierSet@@SAPEAUCQualifier@@PEAEPEAVCFastHeap@@PEBG@Z
1885; public: static struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetQualifierLocally(unsigned char * __ptr64,class CFastHeap * __ptr64,unsigned short const * __ptr64,int & __ptr64)
1886?GetQualifierLocally@CBasicQualifierSet@@SAPEAUCQualifier@@PEAEPEAVCFastHeap@@PEBGAEAH@Z
1887; public: virtual long __cdecl CWbemClass::GetQualifierSet(struct IWbemQualifierSet * __ptr64 * __ptr64) __ptr64
1888?GetQualifierSet@CWbemClass@@UEAAJPEAPEAUIWbemQualifierSet@@@Z
1889; public: virtual long __cdecl CWbemInstance::GetQualifierSet(struct IWbemQualifierSet * __ptr64 * __ptr64) __ptr64
1890?GetQualifierSet@CWbemInstance@@UEAAJPEAPEAUIWbemQualifierSet@@@Z
1891; public: unsigned char * __ptr64 __cdecl CQualifierSetList::GetQualifierSetData(int) __ptr64
1892?GetQualifierSetData@CQualifierSetList@@QEAAPEAEH@Z
1893; public: static unsigned char * __ptr64 __cdecl CQualifierSetList::GetQualifierSetData(unsigned char * __ptr64,int)
1894?GetQualifierSetData@CQualifierSetList@@SAPEAEPEAEH@Z
1895; public: virtual unsigned char * __ptr64 __cdecl CInstancePart::GetQualifierSetListStart(void) __ptr64
1896?GetQualifierSetListStart@CInstancePart@@UEAAPEAEXZ
1897; public: virtual unsigned char * __ptr64 __cdecl CClassPart::GetQualifierSetStart(void) __ptr64
1898?GetQualifierSetStart@CClassPart@@UEAAPEAEXZ
1899; public: virtual unsigned char * __ptr64 __cdecl CInstancePQSContainer::GetQualifierSetStart(void) __ptr64
1900?GetQualifierSetStart@CInstancePQSContainer@@UEAAPEAEXZ
1901; public: virtual unsigned char * __ptr64 __cdecl CInstancePart::GetQualifierSetStart(void) __ptr64
1902?GetQualifierSetStart@CInstancePart@@UEAAPEAEXZ
1903; public: virtual unsigned char * __ptr64 __cdecl CMethodQualifierSetContainer::GetQualifierSetStart(void) __ptr64
1904?GetQualifierSetStart@CMethodQualifierSetContainer@@UEAAPEAEXZ
1905; public: static long __cdecl CUntypedArray::GetRange(class CPtrSource * __ptr64,unsigned long,unsigned long,class CFastHeap * __ptr64,unsigned long,unsigned long,unsigned long,unsigned long * __ptr64,void * __ptr64)
1906?GetRange@CUntypedArray@@SAJPEAVCPtrSource@@KKPEAVCFastHeap@@KKKPEAKPEAX@Z
1907; public: unsigned char * __ptr64 __cdecl CCompressedString::GetRawData(void)const __ptr64
1908?GetRawData@CCompressedString@@QEBAPEAEXZ
1909; public: unsigned long __cdecl CFastHeap::GetRealLength(void) __ptr64
1910?GetRealLength@CFastHeap@@QEAAKXZ
1911; protected: long __cdecl CWbemRefreshingSvc::GetRefrMgr(struct _IWbemRefresherMgr * __ptr64 * __ptr64) __ptr64
1912?GetRefrMgr@CWbemRefreshingSvc@@IEAAJPEAPEAU_IWbemRefresherMgr@@@Z
1913; public: struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetRegularQualifierLocally(unsigned short const * __ptr64) __ptr64
1914?GetRegularQualifierLocally@CBasicQualifierSet@@QEAAPEAUCQualifier@@PEBG@Z
1915; public: static struct CQualifier * __ptr64 __cdecl CBasicQualifierSet::GetRegularQualifierLocally(unsigned char * __ptr64,class CFastHeap * __ptr64,unsigned short const * __ptr64)
1916?GetRegularQualifierLocally@CBasicQualifierSet@@SAPEAUCQualifier@@PEAEPEAVCFastHeap@@PEBG@Z
1917; public: virtual unsigned short * __ptr64 __cdecl CWbemClass::GetRelPath(int) __ptr64
1918?GetRelPath@CWbemClass@@UEAAPEAGH@Z
1919; public: virtual unsigned short * __ptr64 __cdecl CWbemInstance::GetRelPath(int) __ptr64
1920?GetRelPath@CWbemInstance@@UEAAPEAGH@Z
1921; public: long __cdecl CWbemObject::GetRelPath(class CVar * __ptr64) __ptr64
1922?GetRelPath@CWbemObject@@QEAAJPEAVCVar@@@Z
1923; protected: virtual long __cdecl CWbemRefreshingSvc::GetRemoteRefresher(struct _WBEM_REFRESHER_ID * __ptr64,long,unsigned long,struct IWbemRemoteRefresher * __ptr64 * __ptr64,struct _GUID * __ptr64,unsigned long * __ptr64) __ptr64
1924?GetRemoteRefresher@CWbemRefreshingSvc@@MEAAJPEAU_WBEM_REFRESHER_ID@@JKPEAPEAUIWbemRemoteRefresher@@PEAU_GUID@@PEAK@Z
1925; public: virtual long __cdecl CWbemRefreshingSvc::XWbemRefrSvc::GetRemoteRefresher(struct _WBEM_REFRESHER_ID * __ptr64,long,unsigned long,struct IWbemRemoteRefresher * __ptr64 * __ptr64,struct _GUID * __ptr64,unsigned long * __ptr64) __ptr64
1926?GetRemoteRefresher@XWbemRefrSvc@CWbemRefreshingSvc@@UEAAJPEAU_WBEM_REFRESHER_ID@@JKPEAPEAUIWbemRemoteRefresher@@PEAU_GUID@@PEAK@Z
1927; public: class CBasicQualifierSet * __ptr64 __cdecl CMethodQualifierSetContainer::GetSecondarySet(void) __ptr64
1928?GetSecondarySet@CMethodQualifierSetContainer@@QEAAPEAVCBasicQualifierSet@@XZ
1929; protected: static unsigned long __cdecl CCompressedStringList::GetSeparatorLength(void)
1930?GetSeparatorLength@CCompressedStringList@@KAKXZ
1931; public: long __cdecl CWbemObject::GetServer(class CVar * __ptr64) __ptr64
1932?GetServer@CWbemObject@@QEAAJPEAVCVar@@@Z
1933; public: long __cdecl CWbemObject::GetServerAndNamespace(class CVar * __ptr64) __ptr64
1934?GetServerAndNamespace@CWbemObject@@QEAAJPEAVCVar@@@Z
1935; public: unsigned short * __ptr64 __cdecl CWbemThreadSecurityHandle::GetServerPrincipalName(void) __ptr64
1936?GetServerPrincipalName@CWbemThreadSecurityHandle@@QEAAPEAGXZ
1937; public: unsigned long __cdecl CMethodDescription::GetSig(int) __ptr64
1938?GetSig@CMethodDescription@@QEAAKH@Z
1939; protected: void __cdecl CMethodPart::GetSignature(int,int,class CWbemObject * __ptr64 * __ptr64) __ptr64
1940?GetSignature@CMethodPart@@IEAAXHHPEAPEAVCWbemObject@@@Z
1941; public: int __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::GetSize(void)const __ptr64
1942?GetSize@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEBAHXZ
1943; public: int __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::GetSize(void)const __ptr64
1944?GetSize@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEBAHXZ
1945; public: virtual long __cdecl CWbemObject::GetSource(unsigned short * __ptr64 * __ptr64) __ptr64
1946?GetSource@CWbemObject@@UEAAJPEAPEAG@Z
1947; public: unsigned char * __ptr64 __cdecl CBasicQualifierSet::GetStart(void) __ptr64
1948?GetStart@CBasicQualifierSet@@QEAAPEAEXZ
1949; public: unsigned char * __ptr64 __cdecl CClassAndMethods::GetStart(void) __ptr64
1950?GetStart@CClassAndMethods@@QEAAPEAEXZ
1951; public: unsigned char * __ptr64 __cdecl CClassPart::GetStart(void) __ptr64
1952?GetStart@CClassPart@@QEAAPEAEXZ
1953; public: unsigned char * __ptr64 __cdecl CCompressedString::GetStart(void) __ptr64
1954?GetStart@CCompressedString@@QEAAPEAEXZ
1955; public: unsigned char * __ptr64 __cdecl CCompressedStringList::GetStart(void) __ptr64
1956?GetStart@CCompressedStringList@@QEAAPEAEXZ
1957; public: unsigned char * __ptr64 __cdecl CDataTable::GetStart(void) __ptr64
1958?GetStart@CDataTable@@QEAAPEAEXZ
1959; public: unsigned char * __ptr64 __cdecl CDecorationPart::GetStart(void) __ptr64
1960?GetStart@CDecorationPart@@QEAAPEAEXZ
1961; public: unsigned char * __ptr64 __cdecl CEmbeddedObject::GetStart(void) __ptr64
1962?GetStart@CEmbeddedObject@@QEAAPEAEXZ
1963; public: unsigned char * __ptr64 __cdecl CFastHeap::GetStart(void) __ptr64
1964?GetStart@CFastHeap@@QEAAPEAEXZ
1965; public: unsigned char * __ptr64 __cdecl CInstancePart::GetStart(void) __ptr64
1966?GetStart@CInstancePart@@QEAAPEAEXZ
1967; public: unsigned char * __ptr64 __cdecl CMethodPart::GetStart(void) __ptr64
1968?GetStart@CMethodPart@@QEAAPEAEXZ
1969; public: unsigned char * __ptr64 __cdecl CPropertyLookupTable::GetStart(void) __ptr64
1970?GetStart@CPropertyLookupTable@@QEAAPEAEXZ
1971; public: unsigned char * __ptr64 __cdecl CQualifierSetList::GetStart(void) __ptr64
1972?GetStart@CQualifierSetList@@QEAAPEAEXZ
1973; public: unsigned char * __ptr64 __cdecl CWbemInstance::GetStart(void) __ptr64
1974?GetStart@CWbemInstance@@QEAAPEAEXZ
1975; public: unsigned char * __ptr64 __cdecl CWbemObject::GetStart(void) __ptr64
1976?GetStart@CWbemObject@@QEAAPEAEXZ
1977; public: int __cdecl CCompressedString::GetStringLength(void)const __ptr64
1978?GetStringLength@CCompressedString@@QEBAHXZ
1979; public: static long __cdecl CClassAndMethods::GetSuperclassName(class WString & __ptr64,unsigned char * __ptr64)
1980?GetSuperclassName@CClassAndMethods@@SAJAEAVWString@@PEAE@Z
1981; public: long __cdecl CClassPart::GetSuperclassName(class CVar * __ptr64) __ptr64
1982?GetSuperclassName@CClassPart@@QEAAJPEAVCVar@@@Z
1983; public: class CCompressedString * __ptr64 __cdecl CClassPart::GetSuperclassName(void) __ptr64
1984?GetSuperclassName@CClassPart@@QEAAPEAVCCompressedString@@XZ
1985; public: virtual long __cdecl CWbemClass::GetSuperclassName(class CVar * __ptr64) __ptr64
1986?GetSuperclassName@CWbemClass@@UEAAJPEAVCVar@@@Z
1987; public: virtual long __cdecl CWbemInstance::GetSuperclassName(class CVar * __ptr64) __ptr64
1988?GetSuperclassName@CWbemInstance@@UEAAJPEAVCVar@@@Z
1989; public: unsigned short * __ptr64 __cdecl CType::GetSyntax(void) __ptr64
1990?GetSyntax@CType@@QEAAPEAGXZ
1991; public: static unsigned short * __ptr64 __cdecl CType::GetSyntax(unsigned long)
1992?GetSyntax@CType@@SAPEAGK@Z
1993; public: long __cdecl CWbemObject::GetSystemProperty(int,class CVar * __ptr64) __ptr64
1994?GetSystemProperty@CWbemObject@@QEAAJHPEAVCVar@@@Z
1995; public: long __cdecl CWbemObject::GetSystemPropertyByName(unsigned short const * __ptr64,class CVar * __ptr64) __ptr64
1996?GetSystemPropertyByName@CWbemObject@@QEAAJPEBGPEAVCVar@@@Z
1997; public: long __cdecl CBasicQualifierSet::GetText(long,class WString & __ptr64) __ptr64
1998?GetText@CBasicQualifierSet@@QEAAJJAEAVWString@@@Z
1999; public: static long __cdecl CBasicQualifierSet::GetText(unsigned char * __ptr64,class CFastHeap * __ptr64,long,class WString & __ptr64)
2000?GetText@CBasicQualifierSet@@SAJPEAEPEAVCFastHeap@@JAEAVWString@@@Z
2001; public: char const * __ptr64 __cdecl CInternalString::GetText(void)const __ptr64
2002?GetText@CInternalString@@QEBAPEBDXZ
2003; public: virtual long __cdecl CWmiObjectTextSrc::XObjectTextSrc::GetText(long,struct IWbemClassObject * __ptr64,unsigned long,struct IWbemContext * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
2004?GetText@XObjectTextSrc@CWmiObjectTextSrc@@UEAAJJPEAUIWbemClassObject@@KPEAUIWbemContext@@PEAPEAG@Z
2005; public: virtual long __cdecl CWbemCallSecurity::GetThreadSecurity(enum tag_WMI_THREAD_SECURITY_ORIGIN,struct _IWmiThreadSecHandle * __ptr64 * __ptr64) __ptr64
2006?GetThreadSecurity@CWbemCallSecurity@@UEAAJW4tag_WMI_THREAD_SECURITY_ORIGIN@@PEAPEAU_IWmiThreadSecHandle@@@Z
2007; public: class CWbemThreadSecurityHandle * __ptr64 __cdecl CWbemCallSecurity::GetThreadSecurityHandle(void) __ptr64
2008?GetThreadSecurityHandle@CWbemCallSecurity@@QEAAPEAVCWbemThreadSecurityHandle@@XZ
2009; public: void * __ptr64 __cdecl CWbemThreadSecurityHandle::GetThreadToken(void) __ptr64
2010?GetThreadToken@CWbemThreadSecurityHandle@@QEAAPEAXXZ
2011; public: virtual long __cdecl CWbemThreadSecurityHandle::GetToken(void * __ptr64 * __ptr64) __ptr64
2012?GetToken@CWbemThreadSecurityHandle@@UEAAJPEAPEAX@Z
2013; public: virtual long __cdecl CWbemThreadSecurityHandle::GetTokenOrigin(enum tag_WMI_THREAD_SECURITY_ORIGIN * __ptr64) __ptr64
2014?GetTokenOrigin@CWbemThreadSecurityHandle@@UEAAJPEAW4tag_WMI_THREAD_SECURITY_ORIGIN@@@Z
2015; public: unsigned long __cdecl CClassPart::GetTotalRealLength(void) __ptr64
2016?GetTotalRealLength@CClassPart@@QEAAKXZ
2017; public: unsigned long __cdecl CInstancePart::GetTotalRealLength(void) __ptr64
2018?GetTotalRealLength@CInstancePart@@QEAAKXZ
2019; public: long __cdecl CWbemInstance::GetTransferArrayBlob(long,unsigned char * __ptr64 * __ptr64,long * __ptr64) __ptr64
2020?GetTransferArrayBlob@CWbemInstance@@QEAAJJPEAPEAEPEAJ@Z
2021; public: long __cdecl CWbemInstance::GetTransferArrayBlobSize(void) __ptr64
2022?GetTransferArrayBlobSize@CWbemInstance@@QEAAJXZ
2023; public: static long __cdecl CWbemInstance::GetTransferArrayHeaderSize(void)
2024?GetTransferArrayHeaderSize@CWbemInstance@@SAJXZ
2025; public: long __cdecl CWbemInstance::GetTransferBlob(long * __ptr64,long * __ptr64,unsigned char * __ptr64 * __ptr64) __ptr64
2026?GetTransferBlob@CWbemInstance@@QEAAJPEAJ0PEAPEAE@Z
2027; public: long __cdecl CWbemInstance::GetTransferBlobSize(void) __ptr64
2028?GetTransferBlobSize@CWbemInstance@@QEAAJXZ
2029; public: virtual long __cdecl CWbemObject::GetUnmarshalClass(struct _GUID const & __ptr64,void * __ptr64,unsigned long,void * __ptr64,unsigned long,struct _GUID * __ptr64) __ptr64
2030?GetUnmarshalClass@CWbemObject@@UEAAJAEBU_GUID@@PEAXK1KPEAU2@@Z
2031; public: unsigned long __cdecl CFastHeap::GetUsedLength(void) __ptr64
2032?GetUsedLength@CFastHeap@@QEAAKXZ
2033; public: virtual long __cdecl CWbemCallSecurity::GetUser(unsigned long * __ptr64,unsigned short * __ptr64) __ptr64
2034?GetUser@CWbemCallSecurity@@UEAAJPEAKPEAG@Z
2035; public: virtual long __cdecl CWbemThreadSecurityHandle::GetUser(unsigned long * __ptr64,unsigned short * __ptr64) __ptr64
2036?GetUser@CWbemThreadSecurityHandle@@UEAAJPEAKPEAG@Z
2037; public: virtual long __cdecl CWbemCallSecurity::GetUserSid(unsigned long * __ptr64,void * __ptr64) __ptr64
2038?GetUserSid@CWbemCallSecurity@@UEAAJPEAKPEAX@Z
2039; public: virtual long __cdecl CWbemThreadSecurityHandle::GetUserSid(unsigned long * __ptr64,void * __ptr64) __ptr64
2040?GetUserSid@CWbemThreadSecurityHandle@@UEAAJPEAKPEAX@Z
2041; public: unsigned short __cdecl CType::GetVARTYPE(void) __ptr64
2042?GetVARTYPE@CType@@QEAAGXZ
2043; public: static unsigned short __cdecl CType::GetVARTYPE(unsigned long)
2044?GetVARTYPE@CType@@SAGK@Z
2045; public: static unsigned short * __ptr64 __cdecl CWbemObject::GetValueText(long,class CVar & __ptr64,unsigned long)
2046?GetValueText@CWbemObject@@SAPEAGJAEAVCVar@@K@Z
2047; public: unsigned long __cdecl CLimitationMapping::GetVtableLength(void) __ptr64
2048?GetVtableLength@CLimitationMapping@@QEAAKXZ
2049; public: virtual struct IUnknown * __ptr64 __cdecl CClassAndMethods::GetWbemObjectUnknown(void) __ptr64
2050?GetWbemObjectUnknown@CClassAndMethods@@UEAAPEAUIUnknown@@XZ
2051; public: virtual struct IUnknown * __ptr64 __cdecl CClassPart::GetWbemObjectUnknown(void) __ptr64
2052?GetWbemObjectUnknown@CClassPart@@UEAAPEAUIUnknown@@XZ
2053; public: virtual struct IUnknown * __ptr64 __cdecl CInstancePQSContainer::GetWbemObjectUnknown(void) __ptr64
2054?GetWbemObjectUnknown@CInstancePQSContainer@@UEAAPEAUIUnknown@@XZ
2055; public: virtual struct IUnknown * __ptr64 __cdecl CInstancePart::GetWbemObjectUnknown(void) __ptr64
2056?GetWbemObjectUnknown@CInstancePart@@UEAAPEAUIUnknown@@XZ
2057; public: struct IUnknown * __ptr64 __cdecl CMethodPart::GetWbemObjectUnknown(void) __ptr64
2058?GetWbemObjectUnknown@CMethodPart@@QEAAPEAUIUnknown@@XZ
2059; public: virtual struct IUnknown * __ptr64 __cdecl CMethodQualifierSetContainer::GetWbemObjectUnknown(void) __ptr64
2060?GetWbemObjectUnknown@CMethodQualifierSetContainer@@UEAAPEAUIUnknown@@XZ
2061; public: struct IUnknown * __ptr64 __cdecl CQualifierSetList::GetWbemObjectUnknown(void) __ptr64
2062?GetWbemObjectUnknown@CQualifierSetList@@QEAAPEAUIUnknown@@XZ
2063; public: struct IUnknown * __ptr64 __cdecl CWbemClass::GetWbemObjectUnknown(void) __ptr64
2064?GetWbemObjectUnknown@CWbemClass@@QEAAPEAUIUnknown@@XZ
2065; public: virtual struct IUnknown * __ptr64 __cdecl CWbemInstance::GetWbemObjectUnknown(void) __ptr64
2066?GetWbemObjectUnknown@CWbemInstance@@UEAAPEAUIUnknown@@XZ
2067; public: static int __cdecl CBasicQualifierSet::HasLocalQualifiers(unsigned char * __ptr64)
2068?HasLocalQualifiers@CBasicQualifierSet@@SAHPEAE@Z
2069; public: int __cdecl CWbemObject::HasRefs(void) __ptr64
2070?HasRefs@CWbemObject@@QEAAHXZ
2071; public: virtual long __cdecl CWbemCallSecurity::ImpersonateClient(void) __ptr64
2072?ImpersonateClient@CWbemCallSecurity@@UEAAJXZ
2073; public: void __cdecl CBasicQualifierSet::IncrementLength(unsigned long) __ptr64
2074?IncrementLength@CBasicQualifierSet@@QEAAXK@Z
2075; public: int __cdecl CClassPart::InheritsFrom(unsigned short const * __ptr64) __ptr64
2076?InheritsFrom@CClassPart@@QEAAHPEBG@Z
2077; public: virtual long __cdecl CWbemObject::InheritsFrom(unsigned short const * __ptr64) __ptr64
2078?InheritsFrom@CWbemObject@@UEAAJPEBG@Z
2079; public: long __cdecl CWbemFetchRefrMgr::Init(struct _IWmiProvSS * __ptr64,struct IWbemServices * __ptr64) __ptr64
2080?Init@CWbemFetchRefrMgr@@QEAAJPEAU_IWmiProvSS@@PEAUIWbemServices@@@Z
2081; public: virtual long __cdecl CWbemFetchRefrMgr::XFetchRefrMgr::Init(struct _IWmiProvSS * __ptr64,struct IWbemServices * __ptr64) __ptr64
2082?Init@XFetchRefrMgr@CWbemFetchRefrMgr@@UEAAJPEAU_IWmiProvSS@@PEAUIWbemServices@@@Z
2083; public: long __cdecl CWbemClass::InitEmpty(int,int) __ptr64
2084?InitEmpty@CWbemClass@@QEAAJHH@Z
2085; public: long __cdecl CWbemInstance::InitEmptyInstance(class CClassPart & __ptr64,unsigned char * __ptr64,int,class CDecorationPart * __ptr64) __ptr64
2086?InitEmptyInstance@CWbemInstance@@QEAAJAEAVCClassPart@@PEAEHPEAVCDecorationPart@@@Z
2087; public: long __cdecl CWbemInstance::InitNew(class CWbemClass * __ptr64,int,class CDecorationPart * __ptr64) __ptr64
2088?InitNew@CWbemInstance@@QEAAJPEAVCWbemClass@@HPEAVCDecorationPart@@@Z
2089; public: long __cdecl CClassPart::InitPropertyQualifierSet(unsigned short const * __ptr64,class CClassPropertyQualifierSet * __ptr64) __ptr64
2090?InitPropertyQualifierSet@CClassPart@@QEAAJPEBGPEAVCClassPropertyQualifierSet@@@Z
2091; public: static void __cdecl CKnownStringTable::Initialize(void)
2092?Initialize@CKnownStringTable@@SAXXZ
2093; public: virtual int __cdecl CWbemRefreshingSvc::Initialize(void) __ptr64
2094?Initialize@CWbemRefreshingSvc@@UEAAHXZ
2095; protected: long __cdecl CWbemInstance::InitializePropQualifierSet(class CPropertyInformation * __ptr64,class CInstancePropertyQualifierSet & __ptr64) __ptr64
2096?InitializePropQualifierSet@CWbemInstance@@IEAAJPEAVCPropertyInformation@@AEAVCInstancePropertyQualifierSet@@@Z
2097; protected: long __cdecl CWbemInstance::InitializePropQualifierSet(unsigned short const * __ptr64,class CInstancePropertyQualifierSet & __ptr64) __ptr64
2098?InitializePropQualifierSet@CWbemInstance@@IEAAJPEBGAEAVCInstancePropertyQualifierSet@@@Z
2099; public: bool __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::InsertAt(int,class CFastPropertyBagItem * __ptr64) __ptr64
2100?InsertAt@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAA_NHPEAVCFastPropertyBagItem@@@Z
2101; public: bool __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::InsertAt(int,class CWmiTextSource * __ptr64) __ptr64
2102?InsertAt@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAA_NHPEAVCWmiTextSource@@@Z
2103; public: long __cdecl CPropertyLookupTable::InsertProperty(struct CPropertyLookup const & __ptr64,int & __ptr64) __ptr64
2104?InsertProperty@CPropertyLookupTable@@QEAAJAEBUCPropertyLookup@@AEAH@Z
2105; public: long __cdecl CPropertyLookupTable::InsertProperty(unsigned short const * __ptr64,unsigned long,int & __ptr64) __ptr64
2106?InsertProperty@CPropertyLookupTable@@QEAAJPEBGKAEAH@Z
2107; public: long __cdecl CQualifierSetList::InsertQualifierSet(int) __ptr64
2108?InsertQualifierSet@CQualifierSetList@@QEAAJH@Z
2109; public: int __cdecl CClassPart::IsAbstract(void) __ptr64
2110?IsAbstract@CClassPart@@QEAAHXZ
2111; public: int __cdecl CWbemClass::IsAbstract(void) __ptr64
2112?IsAbstract@CWbemClass@@QEAAHXZ
2113; public: int __cdecl CClassPart::IsAmendment(void) __ptr64
2114?IsAmendment@CClassPart@@QEAAHXZ
2115; public: int __cdecl CWbemClass::IsAmendment(void) __ptr64
2116?IsAmendment@CWbemClass@@QEAAHXZ
2117; public: int __cdecl CType::IsArray(void) __ptr64
2118?IsArray@CType@@QEAAHXZ
2119; public: static int __cdecl CType::IsArray(unsigned long)
2120?IsArray@CType@@SAHK@Z
2121; public: long __cdecl CWbemObject::IsArrayPropertyHandle(long,long * __ptr64,unsigned long * __ptr64) __ptr64
2122?IsArrayPropertyHandle@CWbemObject@@QEAAJJPEAJPEAK@Z
2123; public: long __cdecl CUntypedArray::IsArrayValid(class CType,class CFastHeap * __ptr64) __ptr64
2124?IsArrayValid@CUntypedArray@@QEAAJVCType@@PEAVCFastHeap@@@Z
2125; protected: static int __cdecl CCompressedString::IsAsciiable(unsigned short const * __ptr64)
2126?IsAsciiable@CCompressedString@@KAHPEBG@Z
2127; public: int __cdecl CClassPart::IsAssociation(void) __ptr64
2128?IsAssociation@CClassPart@@QEAAHXZ
2129; public: int __cdecl CClassPart::IsAutocook(void) __ptr64
2130?IsAutocook@CClassPart@@QEAAHXZ
2131; public: int __cdecl CWbemClass::IsChildOf(class CWbemClass * __ptr64) __ptr64
2132?IsChildOf@CWbemClass@@QEAAHPEAV1@@Z
2133; protected: int __cdecl CWbemInstance::IsClassPartAvailable(void) __ptr64
2134?IsClassPartAvailable@CWbemInstance@@IEAAHXZ
2135; protected: int __cdecl CWbemInstance::IsClassPartInternal(void) __ptr64
2136?IsClassPartInternal@CWbemInstance@@IEAAHXZ
2137; protected: int __cdecl CWbemInstance::IsClassPartShared(void) __ptr64
2138?IsClassPartShared@CWbemInstance@@IEAAHXZ
2139; public: int __cdecl CDecorationPart::IsClientOnly(void) __ptr64
2140?IsClientOnly@CDecorationPart@@QEAAHXZ
2141; public: int __cdecl CWbemObject::IsClientOnly(void) __ptr64
2142?IsClientOnly@CWbemObject@@QEAAHXZ
2143; public: int __cdecl CQualifierSet::IsComplete(void) __ptr64
2144?IsComplete@CQualifierSet@@QEAAHXZ
2145; public: int __cdecl CClassPart::IsCompressed(void) __ptr64
2146?IsCompressed@CClassPart@@QEAAHXZ
2147; public: int __cdecl CWbemClass::IsCompressed(void) __ptr64
2148?IsCompressed@CWbemClass@@QEAAHXZ
2149; public: int __cdecl CDecorationPart::IsDecorated(void) __ptr64
2150?IsDecorated@CDecorationPart@@QEAAHXZ
2151; protected: int __cdecl CWbemInstance::IsDecorationPartAvailable(void) __ptr64
2152?IsDecorationPartAvailable@CWbemInstance@@IEAAHXZ
2153; public: int __cdecl CDataTable::IsDefault(int) __ptr64
2154?IsDefault@CDataTable@@QEAAHH@Z
2155; public: int __cdecl CClassPart::IsDynamic(void) __ptr64
2156?IsDynamic@CClassPart@@QEAAHXZ
2157; public: int __cdecl CWbemClass::IsDynamic(void) __ptr64
2158?IsDynamic@CWbemClass@@QEAAHXZ
2159; public: int __cdecl CBasicQualifierSet::IsEmpty(void) __ptr64
2160?IsEmpty@CBasicQualifierSet@@QEAAHXZ
2161; public: static int __cdecl CBasicQualifierSet::IsEmpty(unsigned char * __ptr64)
2162?IsEmpty@CBasicQualifierSet@@SAHPEAE@Z
2163; public: int __cdecl CCompressedStringList::IsEmpty(void) __ptr64
2164?IsEmpty@CCompressedStringList@@QEAAHXZ
2165; public: bool __cdecl CInternalString::IsEmpty(void) __ptr64
2166?IsEmpty@CInternalString@@QEAA_NXZ
2167; public: int __cdecl CQualifierSetList::IsEmpty(void) __ptr64
2168?IsEmpty@CQualifierSetList@@QEAAHXZ
2169; public: static int __cdecl CFastHeap::IsFakeAddress(unsigned long)
2170?IsFakeAddress@CFastHeap@@SAHK@Z
2171; public: int __cdecl CClassPart::IsHiPerf(void) __ptr64
2172?IsHiPerf@CClassPart@@QEAAHXZ
2173; public: int __cdecl CClassPart::IsIdenticalWith(class CClassPart & __ptr64) __ptr64
2174?IsIdenticalWith@CClassPart@@QEAAHAEAV1@@Z
2175; public: static int __cdecl CSystemProperties::IsIllegalDerivedClass(unsigned short const * __ptr64)
2176?IsIllegalDerivedClass@CSystemProperties@@SAHPEBG@Z
2177; public: virtual int __cdecl CWbemCallSecurity::IsImpersonating(void) __ptr64
2178?IsImpersonating@CWbemCallSecurity@@UEAAHXZ
2179; public: int __cdecl CWbemClass::IsIndexLocal(unsigned short const * __ptr64) __ptr64
2180?IsIndexLocal@CWbemClass@@QEAAHPEBG@Z
2181; public: int __cdecl CDecorationPart::IsInstance(void) __ptr64
2182?IsInstance@CDecorationPart@@QEAAHXZ
2183; public: int __cdecl CWbemObject::IsInstance(void) __ptr64
2184?IsInstance@CWbemObject@@QEAAHXZ
2185; public: int __cdecl CWbemInstance::IsInstanceOf(class CWbemClass * __ptr64) __ptr64
2186?IsInstanceOf@CWbemInstance@@QEAAHPEAVCWbemClass@@@Z
2187; protected: int __cdecl CWbemInstance::IsInstancePartAvailable(void) __ptr64
2188?IsInstancePartAvailable@CWbemInstance@@IEAAHXZ
2189; public: int __cdecl CWbemClass::IsKeyLocal(unsigned short const * __ptr64) __ptr64
2190?IsKeyLocal@CWbemClass@@QEAAHPEBG@Z
2191; public: int __cdecl CClassPart::IsKeyed(void) __ptr64
2192?IsKeyed@CClassPart@@QEAAHXZ
2193; public: virtual int __cdecl CWbemClass::IsKeyed(void) __ptr64
2194?IsKeyed@CWbemClass@@UEAAHXZ
2195; public: virtual int __cdecl CWbemInstance::IsKeyed(void) __ptr64
2196?IsKeyed@CWbemInstance@@UEAAHXZ
2197; public: int __cdecl CDecorationPart::IsLimited(void) __ptr64
2198?IsLimited@CDecorationPart@@QEAAHXZ
2199; public: int __cdecl CWbemObject::IsLimited(void) __ptr64
2200?IsLimited@CWbemObject@@QEAAHXZ
2201; public: int __cdecl CClassPart::IsLocalized(void) __ptr64
2202?IsLocalized@CClassPart@@QEAAHXZ
2203; public: int __cdecl CInstancePart::IsLocalized(void) __ptr64
2204?IsLocalized@CInstancePart@@QEAAHXZ
2205; public: virtual int __cdecl CWbemClass::IsLocalized(void) __ptr64
2206?IsLocalized@CWbemClass@@UEAAHXZ
2207; public: virtual int __cdecl CWbemInstance::IsLocalized(void) __ptr64
2208?IsLocalized@CWbemInstance@@UEAAHXZ
2209; public: static int __cdecl CType::IsMemCopyAble(unsigned short,long)
2210?IsMemCopyAble@CType@@SAHGJ@Z
2211; public: int __cdecl CType::IsNonArrayPointerType(void) __ptr64
2212?IsNonArrayPointerType@CType@@QEAAHXZ
2213; public: static int __cdecl CType::IsNonArrayPointerType(unsigned long)
2214?IsNonArrayPointerType@CType@@SAHK@Z
2215; public: int __cdecl CDataTable::IsNull(int) __ptr64
2216?IsNull@CDataTable@@QEAAHH@Z
2217; public: virtual long __cdecl CWbemObject::IsObjectInstance(void) __ptr64
2218?IsObjectInstance@CWbemObject@@UEAAJXZ
2219; protected: int __cdecl CFastHeap::IsOutOfLine(void) __ptr64
2220?IsOutOfLine@CFastHeap@@IEAAHXZ
2221; public: virtual long __cdecl CWbemClass::IsParentClass(long,struct _IWmiObject * __ptr64) __ptr64
2222?IsParentClass@CWbemClass@@UEAAJJPEAU_IWmiObject@@@Z
2223; public: virtual long __cdecl CWbemInstance::IsParentClass(long,struct _IWmiObject * __ptr64) __ptr64
2224?IsParentClass@CWbemInstance@@UEAAJJPEAU_IWmiObject@@@Z
2225; public: int __cdecl CType::IsParents(void) __ptr64
2226?IsParents@CType@@QEAAHXZ
2227; public: static int __cdecl CType::IsParents(unsigned long)
2228?IsParents@CType@@SAHK@Z
2229; public: int __cdecl CType::IsPointerType(void) __ptr64
2230?IsPointerType@CType@@QEAAHXZ
2231; public: static int __cdecl CType::IsPointerType(unsigned long)
2232?IsPointerType@CType@@SAHK@Z
2233; public: static int __cdecl CSystemProperties::IsPossibleSystemPropertyName(unsigned short const * __ptr64)
2234?IsPossibleSystemPropertyName@CSystemProperties@@SAHPEBG@Z
2235; protected: int __cdecl CMethodPart::IsPropagated(int) __ptr64
2236?IsPropagated@CMethodPart@@IEAAHH@Z
2237; public: int __cdecl CClassPart::IsPropertyIndexed(unsigned short const * __ptr64) __ptr64
2238?IsPropertyIndexed@CClassPart@@QEAAHPEBG@Z
2239; public: int __cdecl CClassPart::IsPropertyKeyed(unsigned short const * __ptr64) __ptr64
2240?IsPropertyKeyed@CClassPart@@QEAAHPEBG@Z
2241; public: static int __cdecl CReservedWordTable::IsReservedWord(unsigned short const * __ptr64)
2242?IsReservedWord@CReservedWordTable@@SAHPEBG@Z
2243; public: int __cdecl CWbemObject::IsSameClass(class CWbemObject * __ptr64) __ptr64
2244?IsSameClass@CWbemObject@@QEAAHPEAV1@@Z
2245; public: int __cdecl CClassPart::IsSingleton(void) __ptr64
2246?IsSingleton@CClassPart@@QEAAHXZ
2247; public: int __cdecl CWbemClass::IsSingleton(void) __ptr64
2248?IsSingleton@CWbemClass@@QEAAHXZ
2249; public: int __cdecl CType::IsStringType(void) __ptr64
2250?IsStringType@CType@@QEAAHXZ
2251; public: static int __cdecl CType::IsStringType(unsigned long)
2252?IsStringType@CType@@SAHK@Z
2253; public: int __cdecl CClassPart::IsTopLevel(void) __ptr64
2254?IsTopLevel@CClassPart@@QEAAHXZ
2255; public: static int __cdecl CMethodDescription::IsTouched(struct CMethodDescription * __ptr64 __ptr64,class CFastHeap * __ptr64)
2256?IsTouched@CMethodDescription@@SAHPEFAU1@PEAVCFastHeap@@@Z
2257; public: int __cdecl CMethodPart::IsTouched(int,int * __ptr64) __ptr64
2258?IsTouched@CMethodPart@@QEAAHHPEAH@Z
2259; public: int __cdecl CMethodPart::IsTouched(unsigned short const * __ptr64,int * __ptr64) __ptr64
2260?IsTouched@CMethodPart@@QEAAHPEBGPEAH@Z
2261; public: int __cdecl CCompressedString::IsUnicode(void)const __ptr64
2262?IsUnicode@CCompressedString@@QEBAHXZ
2263; public: long __cdecl CWbemDataPacket::IsValid(void) __ptr64
2264?IsValid@CWbemDataPacket@@QEAAJXZ
2265; public: bool __cdecl CWbemObjectArrayPacket::IsValid(class CWbemClassCache * __ptr64) __ptr64
2266?IsValid@CWbemObjectArrayPacket@@QEAA_NPEAVCWbemClassCache@@@Z
2267; public: long __cdecl CClassPart::IsValidClassPart(void) __ptr64
2268?IsValidClassPart@CClassPart@@QEAAJXZ
2269; public: long __cdecl CInstancePart::IsValidInstancePart(class CClassPart * __ptr64,class std::vector<struct EmbeddedObj,class wbem_allocator<struct EmbeddedObj> > & __ptr64) __ptr64
2270?IsValidInstancePart@CInstancePart@@QEAAJPEAVCClassPart@@AEAV?$vector@UEmbeddedObj@@V?$wbem_allocator@UEmbeddedObj@@@@@std@@@Z
2271; public: int __cdecl CWbemInstance::IsValidKey(unsigned short const * __ptr64) __ptr64
2272?IsValidKey@CWbemInstance@@QEAAHPEBG@Z
2273; public: long __cdecl CMethodPart::IsValidMethodPart(void) __ptr64
2274?IsValidMethodPart@CMethodPart@@QEAAJXZ
2275; public: virtual long __cdecl CWbemClass::IsValidObj(void) __ptr64
2276?IsValidObj@CWbemClass@@UEAAJXZ
2277; public: virtual long __cdecl CWbemInstance::IsValidObj(void) __ptr64
2278?IsValidObj@CWbemInstance@@UEAAJXZ
2279; public: long __cdecl CClassPart::IsValidPropertyHandle(long) __ptr64
2280?IsValidPropertyHandle@CClassPart@@QEAAJJ@Z
2281; public: long __cdecl CWbemObject::IsValidPropertyHandle(long) __ptr64
2282?IsValidPropertyHandle@CWbemObject@@QEAAJJ@Z
2283; public: bool __cdecl CFastHeap::IsValidPtr(unsigned long) __ptr64
2284?IsValidPtr@CFastHeap@@QEAA_NK@Z
2285; public: long __cdecl CBasicQualifierSet::IsValidQualifierSet(void) __ptr64
2286?IsValidQualifierSet@CBasicQualifierSet@@QEAAJXZ
2287; public: static int __cdecl CBasicQualifierSet::IsValidQualifierType(unsigned short)
2288?IsValidQualifierType@CBasicQualifierSet@@SAHG@Z
2289; protected: int __cdecl CWbemRefreshingSvc::IsWinmgmt(struct _WBEM_REFRESHER_ID * __ptr64) __ptr64
2290?IsWinmgmt@CWbemRefreshingSvc@@IEAAHPEAU_WBEM_REFRESHER_ID@@@Z
2291; public: static long __cdecl CUntypedArray::LoadFromCVarVector(class CPtrSource * __ptr64,class CVarVector & __ptr64,unsigned long,class CFastHeap * __ptr64,unsigned long & __ptr64,int)
2292?LoadFromCVarVector@CUntypedArray@@SAJPEAVCPtrSource@@AEAVCVarVector@@KPEAVCFastHeap@@AEAKH@Z
2293; protected: long __cdecl CWbemObject::LocalizeProperties(int,bool,struct IWbemClassObject * __ptr64,struct IWbemClassObject * __ptr64,bool & __ptr64) __ptr64
2294?LocalizeProperties@CWbemObject@@IEAAJH_NPEAUIWbemClassObject@@1AEA_N@Z
2295; protected: long __cdecl CWbemObject::LocalizeQualifiers(int,bool,struct IWbemQualifierSet * __ptr64,struct IWbemQualifierSet * __ptr64,bool & __ptr64) __ptr64
2296?LocalizeQualifiers@CWbemObject@@IEAAJH_NPEAUIWbemQualifierSet@@1AEA_N@Z
2297; public: int __cdecl CHiPerfLock::Lock(unsigned long) __ptr64
2298?Lock@CHiPerfLock@@QEAAHK@Z
2299; public: int __cdecl CSharedLock::Lock(unsigned long) __ptr64
2300?Lock@CSharedLock@@QEAAHK@Z
2301; public: virtual long __cdecl CWbemObject::Lock(long) __ptr64
2302?Lock@CWbemObject@@UEAAJJ@Z
2303; protected: static char __cdecl CCompressedString::LowerByte(unsigned short)
2304?LowerByte@CCompressedString@@KADG@Z
2305; public: static unsigned long __cdecl CType::MakeArray(unsigned long)
2306?MakeArray@CType@@SAKK@Z
2307; public: static unsigned long __cdecl CFastHeap::MakeFakeFromIndex(int)
2308?MakeFakeFromIndex@CFastHeap@@SAKH@Z
2309; public: static unsigned long __cdecl CType::MakeLocal(unsigned long)
2310?MakeLocal@CType@@SAKK@Z
2311; public: void __cdecl CCompressedString::MakeLowercase(void) __ptr64
2312?MakeLowercase@CCompressedString@@QEAAXXZ
2313; public: static unsigned long __cdecl CType::MakeNotArray(unsigned long)
2314?MakeNotArray@CType@@SAKK@Z
2315; public: static unsigned long __cdecl CType::MakeParents(unsigned long)
2316?MakeParents@CType@@SAKK@Z
2317; public: virtual long __cdecl CWbemClass::MakeSubsetInst(struct _IWmiObject * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2318?MakeSubsetInst@CWbemClass@@UEAAJPEAU_IWmiObject@@PEAPEAU2@@Z
2319; public: virtual long __cdecl CWbemInstance::MakeSubsetInst(struct _IWmiObject * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2320?MakeSubsetInst@CWbemInstance@@UEAAJPEAU_IWmiObject@@PEAPEAU2@@Z
2321; public: void __cdecl CLimitationMapping::Map(class CPropertyInformation * __ptr64,class CPropertyInformation * __ptr64,int) __ptr64
2322?Map@CLimitationMapping@@QEAAXPEAVCPropertyInformation@@0H@Z
2323; public: int __cdecl CClassPart::MapLimitation(long,class CWStringArray * __ptr64,class CLimitationMapping * __ptr64) __ptr64
2324?MapLimitation@CClassPart@@QEAAHJPEAVCWStringArray@@PEAVCLimitationMapping@@@Z
2325; public: static int __cdecl CDecorationPart::MapLimitation(class CWStringArray * __ptr64,class CLimitationMapping * __ptr64)
2326?MapLimitation@CDecorationPart@@SAHPEAVCWStringArray@@PEAVCLimitationMapping@@@Z
2327; public: int __cdecl CPropertyLookupTable::MapLimitation(long,class CWStringArray * __ptr64,class CLimitationMapping * __ptr64) __ptr64
2328?MapLimitation@CPropertyLookupTable@@QEAAHJPEAVCWStringArray@@PEAVCLimitationMapping@@@Z
2329; public: int __cdecl CWbemClass::MapLimitation(long,class CWStringArray * __ptr64,class CLimitationMapping * __ptr64) __ptr64
2330?MapLimitation@CWbemClass@@QEAAHJPEAVCWStringArray@@PEAVCLimitationMapping@@@Z
2331; public: static void __cdecl CDecorationPart::MarkKeyRemoval(unsigned char * __ptr64)
2332?MarkKeyRemoval@CDecorationPart@@SAXPEAE@Z
2333; public: virtual long __cdecl CWbemObject::MarshalInterface(struct IStream * __ptr64,struct _GUID const & __ptr64,void * __ptr64,unsigned long,void * __ptr64,unsigned long) __ptr64
2334?MarshalInterface@CWbemObject@@UEAAJPEAUIStream@@AEBU_GUID@@PEAXK2K@Z
2335; public: long __cdecl CWbemMtgtDeliverEventPacket::MarshalPacket(long,struct IWbemClassObject * __ptr64 * __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
2336?MarshalPacket@CWbemMtgtDeliverEventPacket@@QEAAJJPEAPEAUIWbemClassObject@@PEAU_GUID@@PEAH@Z
2337; public: long __cdecl CWbemMtgtDeliverEventPacket::MarshalPacket(unsigned char * __ptr64,unsigned long,long,struct IWbemClassObject * __ptr64 * __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
2338?MarshalPacket@CWbemMtgtDeliverEventPacket@@QEAAJPEAEKJPEAPEAUIWbemClassObject@@PEAU_GUID@@PEAH@Z
2339; public: long __cdecl CWbemObjectArrayPacket::MarshalPacket(long,struct IWbemClassObject * __ptr64 * __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
2340?MarshalPacket@CWbemObjectArrayPacket@@QEAAJJPEAPEAUIWbemClassObject@@PEAU_GUID@@PEAH@Z
2341; public: long __cdecl CWbemObjectArrayPacket::MarshalPacket(unsigned char * __ptr64,unsigned long,long,struct IWbemClassObject * __ptr64 * __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
2342?MarshalPacket@CWbemObjectArrayPacket@@QEAAJPEAEKJPEAPEAUIWbemClassObject@@PEAU_GUID@@PEAH@Z
2343; public: long __cdecl CWbemSmartEnumNextPacket::MarshalPacket(long,struct IWbemClassObject * __ptr64 * __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
2344?MarshalPacket@CWbemSmartEnumNextPacket@@QEAAJJPEAPEAUIWbemClassObject@@PEAU_GUID@@PEAH@Z
2345; public: long __cdecl CWbemSmartEnumNextPacket::MarshalPacket(unsigned char * __ptr64,unsigned long,long,struct IWbemClassObject * __ptr64 * __ptr64,struct _GUID * __ptr64,int * __ptr64) __ptr64
2346?MarshalPacket@CWbemSmartEnumNextPacket@@QEAAJPEAEKJPEAPEAUIWbemClassObject@@PEAU_GUID@@PEAH@Z
2347; public: static int __cdecl CSystemProperties::MaxNumProperties(void)
2348?MaxNumProperties@CSystemProperties@@SAHXZ
2349; public: static unsigned char * __ptr64 __cdecl CBasicQualifierSet::Merge(unsigned char * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64,int)
2350?Merge@CBasicQualifierSet@@SAPEAEPEAEPEAVCFastHeap@@0101H@Z
2351; public: static unsigned char * __ptr64 __cdecl CClassAndMethods::Merge(class CClassAndMethods & __ptr64,class CClassAndMethods & __ptr64,unsigned char * __ptr64,int)
2352?Merge@CClassAndMethods@@SAPEAEAEAV1@0PEAEH@Z
2353; public: static unsigned char * __ptr64 __cdecl CClassPart::Merge(class CClassPart & __ptr64,class CClassPart & __ptr64,unsigned char * __ptr64,int)
2354?Merge@CClassPart@@SAPEAEAEAV1@0PEAEH@Z
2355; public: static unsigned char * __ptr64 __cdecl CDataTable::Merge(class CDataTable * __ptr64,class CFastHeap * __ptr64,class CDataTable * __ptr64,class CFastHeap * __ptr64,class CPropertyLookupTable * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64)
2356?Merge@CDataTable@@SAPEAEPEAV1@PEAVCFastHeap@@01PEAVCPropertyLookupTable@@PEAE1@Z
2357; public: static unsigned char * __ptr64 __cdecl CDerivationList::Merge(class CCompressedStringList & __ptr64,class CCompressedStringList & __ptr64,unsigned char * __ptr64)
2358?Merge@CDerivationList@@SAPEAEAEAVCCompressedStringList@@0PEAE@Z
2359; public: static unsigned char * __ptr64 __cdecl CMethodPart::Merge(class CMethodPart & __ptr64,class CMethodPart & __ptr64,unsigned char * __ptr64,unsigned long)
2360?Merge@CMethodPart@@SAPEAEAEAV1@0PEAEK@Z
2361; public: static unsigned char * __ptr64 __cdecl CPropertyLookupTable::Merge(class CPropertyLookupTable * __ptr64,class CFastHeap * __ptr64,class CPropertyLookupTable * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64,int)
2362?Merge@CPropertyLookupTable@@SAPEAEPEAV1@PEAVCFastHeap@@01PEAE1H@Z
2363; public: unsigned char * __ptr64 __cdecl CWbemClass::Merge(unsigned char * __ptr64,unsigned char * __ptr64,int,int) __ptr64
2364?Merge@CWbemClass@@QEAAPEAEPEAE0HH@Z
2365; public: virtual long __cdecl CWbemClass::Merge(long,unsigned long,void * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2366?Merge@CWbemClass@@UEAAJJKPEAXPEAPEAU_IWmiObject@@@Z
2367; public: virtual long __cdecl CWbemInstance::Merge(long,unsigned long,void * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2368?Merge@CWbemInstance@@UEAAJJKPEAXPEAPEAU_IWmiObject@@@Z
2369; public: virtual long __cdecl CWbemObject::MergeAmended(long,struct _IWmiObject * __ptr64) __ptr64
2370?MergeAmended@CWbemObject@@UEAAJJPEAU_IWmiObject@@@Z
2371; public: virtual long __cdecl CWbemClass::MergeAndDecorate(long,unsigned long,void * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2372?MergeAndDecorate@CWbemClass@@UEAAJJKPEAXPEAG1PEAPEAU_IWmiObject@@@Z
2373; public: virtual long __cdecl CWbemInstance::MergeAndDecorate(long,unsigned long,void * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2374?MergeAndDecorate@CWbemInstance@@UEAAJJKPEAXPEAG1PEAPEAU_IWmiObject@@@Z
2375; public: virtual long __cdecl CWbemClass::MergeClassPart(struct IWbemClassObject * __ptr64) __ptr64
2376?MergeClassPart@CWbemClass@@UEAAJPEAUIWbemClassObject@@@Z
2377; public: virtual long __cdecl CWbemInstance::MergeClassPart(struct IWbemClassObject * __ptr64) __ptr64
2378?MergeClassPart@CWbemInstance@@UEAAJPEAUIWbemClassObject@@@Z
2379; public: bool __cdecl CCompressedString::NValidateSize(int)const __ptr64
2380?NValidateSize@CCompressedString@@QEBA_NH@Z
2381; public: static class CWbemCallSecurity * __ptr64 __cdecl CWbemCallSecurity::New(void)
2382?New@CWbemCallSecurity@@SAPEAV1@XZ
2383; public: static class CWbemThreadSecurityHandle * __ptr64 __cdecl CWbemThreadSecurityHandle::New(void)
2384?New@CWbemThreadSecurityHandle@@SAPEAV1@XZ
2385; public: virtual long __cdecl CQualifierSet::Next(long,unsigned short * __ptr64 * __ptr64,struct tagVARIANT * __ptr64,long * __ptr64) __ptr64
2386?Next@CQualifierSet@@UEAAJJPEAPEAGPEAUtagVARIANT@@PEAJ@Z
2387; public: virtual long __cdecl CWbemObject::Next(long,unsigned short * __ptr64 * __ptr64,struct tagVARIANT * __ptr64,long * __ptr64,long * __ptr64) __ptr64
2388?Next@CWbemObject@@UEAAJJPEAPEAGPEAUtagVARIANT@@PEAJ2@Z
2389; public: int __cdecl CLimitationMapping::NextMapping(class CPropertyInformation * __ptr64,class CPropertyInformation * __ptr64) __ptr64
2390?NextMapping@CLimitationMapping@@QEAAHPEAVCPropertyInformation@@0@Z
2391; public: virtual long __cdecl CWbemClass::NextMethod(long,unsigned short * __ptr64 * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
2392?NextMethod@CWbemClass@@UEAAJJPEAPEAGPEAPEAUIWbemClassObject@@1@Z
2393; public: virtual long __cdecl CWbemInstance::NextMethod(long,unsigned short * __ptr64 * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
2394?NextMethod@CWbemInstance@@UEAAJJPEAPEAGPEAPEAUIWbemClassObject@@1@Z
2395; public: long __cdecl CWbemInstance::PlugKeyHoles(void) __ptr64
2396?PlugKeyHoles@CWbemInstance@@QEAAJXZ
2397; public: virtual long __cdecl CQualifierSet::Put(unsigned short const * __ptr64,struct tagVARIANT * __ptr64,long) __ptr64
2398?Put@CQualifierSet@@UEAAJPEBGPEAUtagVARIANT@@J@Z
2399; public: virtual long __cdecl CWbemClass::Put(unsigned short const * __ptr64,long,struct tagVARIANT * __ptr64,long) __ptr64
2400?Put@CWbemClass@@UEAAJPEBGJPEAUtagVARIANT@@J@Z
2401; public: virtual long __cdecl CWbemInstance::Put(unsigned short const * __ptr64,long,struct tagVARIANT * __ptr64,long) __ptr64
2402?Put@CWbemInstance@@UEAAJPEBGJPEAUtagVARIANT@@J@Z
2403; public: long __cdecl CMethodPart::PutMethod(unsigned short const * __ptr64,long,class CWbemObject * __ptr64,class CWbemObject * __ptr64) __ptr64
2404?PutMethod@CMethodPart@@QEAAJPEBGJPEAVCWbemObject@@1@Z
2405; public: virtual long __cdecl CWbemClass::PutMethod(unsigned short const * __ptr64,long,struct IWbemClassObject * __ptr64,struct IWbemClassObject * __ptr64) __ptr64
2406?PutMethod@CWbemClass@@UEAAJPEBGJPEAUIWbemClassObject@@1@Z
2407; public: virtual long __cdecl CWbemInstance::PutMethod(unsigned short const * __ptr64,long,struct IWbemClassObject * __ptr64,struct IWbemClassObject * __ptr64) __ptr64
2408?PutMethod@CWbemInstance@@UEAAJPEBGJPEAUIWbemClassObject@@1@Z
2409; public: virtual long __cdecl CWbemCallSecurity::QueryBlanket(unsigned long * __ptr64,unsigned long * __ptr64,unsigned short * __ptr64 * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
2410?QueryBlanket@CWbemCallSecurity@@UEAAJPEAK0PEAPEAG00PEAPEAX0@Z
2411; public: virtual long __cdecl CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2412?QueryInterface@?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@UEAAJAEBU_GUID@@PEAPEAX@Z
2413; public: virtual long __cdecl CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2414?QueryInterface@?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@UEAAJAEBU_GUID@@PEAPEAX@Z
2415; public: virtual long __cdecl CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2416?QueryInterface@?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@UEAAJAEBU_GUID@@PEAPEAX@Z
2417; public: virtual long __cdecl CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2418?QueryInterface@?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@UEAAJAEBU_GUID@@PEAPEAX@Z
2419; public: virtual long __cdecl CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2420?QueryInterface@?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@UEAAJAEBU_GUID@@PEAPEAX@Z
2421; public: virtual long __cdecl CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2422?QueryInterface@?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@UEAAJAEBU_GUID@@PEAPEAX@Z
2423; public: virtual long __cdecl CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2424?QueryInterface@?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@UEAAJAEBU_GUID@@PEAPEAX@Z
2425; public: virtual long __cdecl CQualifierSet::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2426?QueryInterface@CQualifierSet@@UEAAJAEBU_GUID@@PEAPEAX@Z
2427; public: virtual long __cdecl CWbemCallSecurity::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2428?QueryInterface@CWbemCallSecurity@@UEAAJAEBU_GUID@@PEAPEAX@Z
2429; public: virtual long __cdecl CWbemObject::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2430?QueryInterface@CWbemObject@@UEAAJAEBU_GUID@@PEAPEAX@Z
2431; public: virtual long __cdecl CWbemThreadSecurityHandle::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2432?QueryInterface@CWbemThreadSecurityHandle@@UEAAJAEBU_GUID@@PEAPEAX@Z
2433; public: virtual long __cdecl CWbemObject::QueryObjectFlags(long,unsigned __int64,unsigned __int64 * __ptr64) __ptr64
2434?QueryObjectFlags@CWbemObject@@UEAAJJ_KPEA_K@Z
2435; public: virtual long __cdecl CWbemObject::QueryPartInfo(unsigned long * __ptr64) __ptr64
2436?QueryPartInfo@CWbemObject@@UEAAJPEAK@Z
2437; public: virtual long __cdecl CWbemObject::QueryPropertyFlags(long,unsigned short const * __ptr64,unsigned __int64,unsigned __int64 * __ptr64) __ptr64
2438?QueryPropertyFlags@CWbemObject@@UEAAJJPEBG_KPEA_K@Z
2439; public: virtual long __cdecl CWbemObject::ReadDWORD(long,unsigned long * __ptr64) __ptr64
2440?ReadDWORD@CWbemObject@@UEAAJJPEAK@Z
2441; public: virtual long __cdecl CWbemObject::ReadProp(unsigned short const * __ptr64,long,unsigned long,long * __ptr64,long * __ptr64,int * __ptr64,unsigned long * __ptr64,void * __ptr64) __ptr64
2442?ReadProp@CWbemObject@@UEAAJPEBGJKPEAJ1PEAHPEAKPEAX@Z
2443; public: virtual long __cdecl CWbemObject::ReadPropertyValue(long,long,long * __ptr64,unsigned char * __ptr64) __ptr64
2444?ReadPropertyValue@CWbemObject@@UEAAJJJPEAJPEAE@Z
2445; public: virtual long __cdecl CWbemObject::ReadQWORD(long,unsigned __int64 * __ptr64) __ptr64
2446?ReadQWORD@CWbemObject@@UEAAJJPEA_K@Z
2447; public: int __cdecl CClassPart::ReallocAndCompact(unsigned long) __ptr64
2448?ReallocAndCompact@CClassPart@@QEAAHK@Z
2449; public: int __cdecl CInstancePart::ReallocAndCompact(unsigned long) __ptr64
2450?ReallocAndCompact@CInstancePart@@QEAAHK@Z
2451; protected: static long __cdecl CUntypedArray::ReallocArray(class CPtrSource * __ptr64,unsigned long,class CFastHeap * __ptr64,unsigned long,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64)
2452?ReallocArray@CUntypedArray@@KAJPEAVCPtrSource@@KPEAVCFastHeap@@KPEAK22@Z
2453; public: int __cdecl CFastHeap::Reallocate(unsigned long,unsigned long,unsigned long,unsigned long & __ptr64 __ptr64) __ptr64
2454?Reallocate@CFastHeap@@QEAAHKKKAEFAK@Z
2455; protected: unsigned char * __ptr64 __cdecl CWbemObject::Reallocate(unsigned long) __ptr64
2456?Reallocate@CWbemObject@@IEAAPEAEK@Z
2457; public: void __cdecl CBasicQualifierSet::Rebase(unsigned char * __ptr64) __ptr64
2458?Rebase@CBasicQualifierSet@@QEAAXPEAE@Z
2459; public: void __cdecl CClassAndMethods::Rebase(unsigned char * __ptr64) __ptr64
2460?Rebase@CClassAndMethods@@QEAAXPEAE@Z
2461; public: void __cdecl CClassPart::Rebase(unsigned char * __ptr64) __ptr64
2462?Rebase@CClassPart@@QEAAXPEAE@Z
2463; public: void __cdecl CCompressedStringList::Rebase(unsigned char * __ptr64) __ptr64
2464?Rebase@CCompressedStringList@@QEAAXPEAE@Z
2465; public: void __cdecl CDataTable::Rebase(unsigned char * __ptr64) __ptr64
2466?Rebase@CDataTable@@QEAAXPEAE@Z
2467; public: void __cdecl CDecorationPart::Rebase(unsigned char * __ptr64) __ptr64
2468?Rebase@CDecorationPart@@QEAAXPEAE@Z
2469; public: void __cdecl CFastHeap::Rebase(unsigned char * __ptr64) __ptr64
2470?Rebase@CFastHeap@@QEAAXPEAE@Z
2471; public: void __cdecl CInstancePart::Rebase(unsigned char * __ptr64) __ptr64
2472?Rebase@CInstancePart@@QEAAXPEAE@Z
2473; public: void __cdecl CMethodPart::Rebase(unsigned char * __ptr64) __ptr64
2474?Rebase@CMethodPart@@QEAAXPEAE@Z
2475; public: void __cdecl CPropertyLookupTable::Rebase(unsigned char * __ptr64) __ptr64
2476?Rebase@CPropertyLookupTable@@QEAAXPEAE@Z
2477; public: void __cdecl CQualifierSetList::Rebase(unsigned char * __ptr64) __ptr64
2478?Rebase@CQualifierSetList@@QEAAXPEAE@Z
2479; public: void __cdecl CQualifierSetList::Rebase(void) __ptr64
2480?Rebase@CQualifierSetList@@QEAAXXZ
2481; public: void __cdecl CWbemClass::Rebase(unsigned char * __ptr64) __ptr64
2482?Rebase@CWbemClass@@QEAAXPEAE@Z
2483; public: void __cdecl CWbemInstance::Rebase(unsigned char * __ptr64) __ptr64
2484?Rebase@CWbemInstance@@QEAAXPEAE@Z
2485; public: void __cdecl CInstancePQSContainer::RebaseSecondarySet(void) __ptr64
2486?RebaseSecondarySet@CInstancePQSContainer@@QEAAXXZ
2487; public: enum EReconciliation __cdecl CClassAndMethods::ReconcileWith(class CClassAndMethods & __ptr64) __ptr64
2488?ReconcileWith@CClassAndMethods@@QEAA?AW4EReconciliation@@AEAV1@@Z
2489; public: enum EReconciliation __cdecl CClassPart::ReconcileWith(class CClassPart & __ptr64) __ptr64
2490?ReconcileWith@CClassPart@@QEAA?AW4EReconciliation@@AEAV1@@Z
2491; public: enum EReconciliation __cdecl CMethodPart::ReconcileWith(class CMethodPart & __ptr64) __ptr64
2492?ReconcileWith@CMethodPart@@QEAA?AW4EReconciliation@@AEAV1@@Z
2493; public: enum EReconciliation __cdecl CWbemClass::ReconcileWith(class CWbemClass * __ptr64) __ptr64
2494?ReconcileWith@CWbemClass@@QEAA?AW4EReconciliation@@PEAV1@@Z
2495; public: virtual long __cdecl CWbemClass::ReconcileWith(long,struct _IWmiObject * __ptr64) __ptr64
2496?ReconcileWith@CWbemClass@@UEAAJJPEAU_IWmiObject@@@Z
2497; public: virtual long __cdecl CWbemInstance::ReconcileWith(long,struct _IWmiObject * __ptr64) __ptr64
2498?ReconcileWith@CWbemInstance@@UEAAJJPEAU_IWmiObject@@@Z
2499; protected: virtual long __cdecl CWbemRefreshingSvc::ReconnectRemoteRefresher(struct _WBEM_REFRESHER_ID * __ptr64,long,long,unsigned long,struct _WBEM_RECONNECT_INFO * __ptr64,struct _WBEM_RECONNECT_RESULTS * __ptr64,unsigned long * __ptr64) __ptr64
2500?ReconnectRemoteRefresher@CWbemRefreshingSvc@@MEAAJPEAU_WBEM_REFRESHER_ID@@JJKPEAU_WBEM_RECONNECT_INFO@@PEAU_WBEM_RECONNECT_RESULTS@@PEAK@Z
2501; public: virtual long __cdecl CWbemRefreshingSvc::XWbemRefrSvc::ReconnectRemoteRefresher(struct _WBEM_REFRESHER_ID * __ptr64,long,long,unsigned long,struct _WBEM_RECONNECT_INFO * __ptr64,struct _WBEM_RECONNECT_RESULTS * __ptr64,unsigned long * __ptr64) __ptr64
2502?ReconnectRemoteRefresher@XWbemRefrSvc@CWbemRefreshingSvc@@UEAAJPEAU_WBEM_REFRESHER_ID@@JJKPEAU_WBEM_RECONNECT_INFO@@PEAU_WBEM_RECONNECT_RESULTS@@PEAK@Z
2503; public: void __cdecl CFastHeap::Reduce(unsigned long,unsigned long,unsigned long) __ptr64
2504?Reduce@CFastHeap@@QEAAXKKK@Z
2505; public: void __cdecl CWbemClass::ReduceClassAndMethodsSpace(unsigned long) __ptr64
2506?ReduceClassAndMethodsSpace@CWbemClass@@QEAAXK@Z
2507; public: virtual void __cdecl CClassAndMethods::ReduceClassPartSpace(class CClassPart * __ptr64,unsigned long) __ptr64
2508?ReduceClassPartSpace@CClassAndMethods@@UEAAXPEAVCClassPart@@K@Z
2509; public: virtual void __cdecl CWbemInstance::ReduceClassPartSpace(class CClassPart * __ptr64,unsigned long) __ptr64
2510?ReduceClassPartSpace@CWbemInstance@@UEAAXPEAVCClassPart@@K@Z
2511; public: virtual void __cdecl CClassPart::ReduceDataTableSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
2512?ReduceDataTableSpace@CClassPart@@UEAAXPEAEKK@Z
2513; public: virtual void __cdecl CInstancePart::ReduceDataTableSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
2514?ReduceDataTableSpace@CInstancePart@@UEAAXPEAEKK@Z
2515; public: virtual void __cdecl CClassPart::ReduceHeapSize(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
2516?ReduceHeapSize@CClassPart@@UEAAXPEAEKK@Z
2517; public: virtual void __cdecl CInstancePart::ReduceHeapSize(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
2518?ReduceHeapSize@CInstancePart@@UEAAXPEAEKK@Z
2519; public: virtual void __cdecl CMethodPart::ReduceHeapSize(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
2520?ReduceHeapSize@CMethodPart@@UEAAXPEAEKK@Z
2521; public: virtual void __cdecl CWbemInstance::ReduceInstancePartSpace(class CInstancePart * __ptr64,unsigned long) __ptr64
2522?ReduceInstancePartSpace@CWbemInstance@@UEAAXPEAVCInstancePart@@K@Z
2523; public: virtual void __cdecl CClassAndMethods::ReduceMethodPartSpace(class CMethodPart * __ptr64,unsigned long) __ptr64
2524?ReduceMethodPartSpace@CClassAndMethods@@UEAAXPEAVCMethodPart@@K@Z
2525; public: virtual void __cdecl CClassPart::ReducePropertyTableSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
2526?ReducePropertyTableSpace@CClassPart@@UEAAXPEAEKK@Z
2527; public: virtual void __cdecl CInstancePart::ReduceQualifierSetListSpace(unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
2528?ReduceQualifierSetListSpace@CInstancePart@@UEAAXPEAEKK@Z
2529; public: virtual void __cdecl CClassPart::ReduceQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
2530?ReduceQualifierSetSpace@CClassPart@@UEAAXPEAVCBasicQualifierSet@@K@Z
2531; public: virtual void __cdecl CInstancePQSContainer::ReduceQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
2532?ReduceQualifierSetSpace@CInstancePQSContainer@@UEAAXPEAVCBasicQualifierSet@@K@Z
2533; public: virtual void __cdecl CInstancePart::ReduceQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
2534?ReduceQualifierSetSpace@CInstancePart@@UEAAXPEAVCBasicQualifierSet@@K@Z
2535; public: virtual void __cdecl CMethodQualifierSetContainer::ReduceQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
2536?ReduceQualifierSetSpace@CMethodQualifierSetContainer@@UEAAXPEAVCBasicQualifierSet@@K@Z
2537; public: void __cdecl CQualifierSetList::ReduceQualifierSetSpace(class CBasicQualifierSet * __ptr64,unsigned long) __ptr64
2538?ReduceQualifierSetSpace@CQualifierSetList@@QEAAXPEAVCBasicQualifierSet@@K@Z
2539; public: virtual unsigned long __cdecl CImpl<struct IWbemObjectTextSrc,class CWmiObjectTextSrc>::Release(void) __ptr64
2540?Release@?$CImpl@UIWbemObjectTextSrc@@VCWmiObjectTextSrc@@@@UEAAKXZ
2541; public: virtual unsigned long __cdecl CImpl<struct IWbemRefreshingServices,class CWbemRefreshingSvc>::Release(void) __ptr64
2542?Release@?$CImpl@UIWbemRefreshingServices@@VCWbemRefreshingSvc@@@@UEAAKXZ
2543; public: virtual unsigned long __cdecl CImpl<struct IWbemRemoteRefresher,class CWbemRemoteRefresher>::Release(void) __ptr64
2544?Release@?$CImpl@UIWbemRemoteRefresher@@VCWbemRemoteRefresher@@@@UEAAKXZ
2545; public: virtual unsigned long __cdecl CImpl<struct _IWbemConfigureRefreshingSvcs,class CWbemRefreshingSvc>::Release(void) __ptr64
2546?Release@?$CImpl@U_IWbemConfigureRefreshingSvcs@@VCWbemRefreshingSvc@@@@UEAAKXZ
2547; public: virtual unsigned long __cdecl CImpl<struct _IWbemEnumMarshaling,class CWbemEnumMarshaling>::Release(void) __ptr64
2548?Release@?$CImpl@U_IWbemEnumMarshaling@@VCWbemEnumMarshaling@@@@UEAAKXZ
2549; public: virtual unsigned long __cdecl CImpl<struct _IWbemFetchRefresherMgr,class CWbemFetchRefrMgr>::Release(void) __ptr64
2550?Release@?$CImpl@U_IWbemFetchRefresherMgr@@VCWbemFetchRefrMgr@@@@UEAAKXZ
2551; public: virtual unsigned long __cdecl CImpl<struct _IWmiObjectFactory,class CWmiObjectFactory>::Release(void) __ptr64
2552?Release@?$CImpl@U_IWmiObjectFactory@@VCWmiObjectFactory@@@@UEAAKXZ
2553; public: virtual unsigned long __cdecl CClassQualifierSet::Release(void) __ptr64
2554?Release@CClassQualifierSet@@UEAAKXZ
2555; public: virtual unsigned long __cdecl CInstanceQualifierSet::Release(void) __ptr64
2556?Release@CInstanceQualifierSet@@UEAAKXZ
2557; public: virtual unsigned long __cdecl CMethodQualifierSet::Release(void) __ptr64
2558?Release@CMethodQualifierSet@@UEAAKXZ
2559; public: virtual unsigned long __cdecl CQualifierSet::Release(void) __ptr64
2560?Release@CQualifierSet@@UEAAKXZ
2561; public: virtual unsigned long __cdecl CWbemCallSecurity::Release(void) __ptr64
2562?Release@CWbemCallSecurity@@UEAAKXZ
2563; public: virtual unsigned long __cdecl CWbemObject::Release(void) __ptr64
2564?Release@CWbemObject@@UEAAKXZ
2565; public: virtual unsigned long __cdecl CWbemThreadSecurityHandle::Release(void) __ptr64
2566?Release@CWbemThreadSecurityHandle@@UEAAKXZ
2567; protected: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::ReleaseElement(class CFastPropertyBagItem * __ptr64) __ptr64
2568?ReleaseElement@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@IEAAXPEAVCFastPropertyBagItem@@@Z
2569; protected: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::ReleaseElement(class CWmiTextSource * __ptr64) __ptr64
2570?ReleaseElement@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@IEAAXPEAVCWmiTextSource@@@Z
2571; public: virtual long __cdecl CWbemObject::ReleaseMarshalData(struct IStream * __ptr64) __ptr64
2572?ReleaseMarshalData@CWbemObject@@UEAAJPEAUIStream@@@Z
2573; public: virtual long __cdecl CWbemRemoteRefresher::XWbemRemoteRefr::RemoteRefresh(long,long * __ptr64,struct _WBEM_REFRESHED_OBJECT * __ptr64 * __ptr64) __ptr64
2574?RemoteRefresh@XWbemRemoteRefr@CWbemRemoteRefresher@@UEAAJJPEAJPEAPEAU_WBEM_REFRESHED_OBJECT@@@Z
2575; public: long __cdecl CFastPropertyBag::Remove(unsigned short const * __ptr64) __ptr64
2576?Remove@CFastPropertyBag@@QEAAJPEBG@Z
2577; public: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::RemoveAll(void) __ptr64
2578?RemoveAll@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAXXZ
2579; public: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::RemoveAll(void) __ptr64
2580?RemoveAll@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAXXZ
2581; public: long __cdecl CFastPropertyBag::RemoveAll(void) __ptr64
2582?RemoveAll@CFastPropertyBag@@QEAAJXZ
2583; public: virtual long __cdecl CWbemObject::RemoveArrayPropElementByHandle(long,long,unsigned long) __ptr64
2584?RemoveArrayPropElementByHandle@CWbemObject@@UEAAJJJK@Z
2585; public: virtual long __cdecl CWbemObject::RemoveArrayPropRangeByHandle(long,long,unsigned long,unsigned long) __ptr64
2586?RemoveArrayPropRangeByHandle@CWbemObject@@UEAAJJJKK@Z
2587; public: bool __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::RemoveAt(int,class CFastPropertyBagItem * __ptr64 * __ptr64) __ptr64
2588?RemoveAt@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAA_NHPEAPEAVCFastPropertyBagItem@@@Z
2589; public: bool __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::RemoveAt(int,class CWmiTextSource * __ptr64 * __ptr64) __ptr64
2590?RemoveAt@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAA_NHPEAPEAVCWmiTextSource@@@Z
2591; public: virtual long __cdecl CWbemObject::RemoveDecoration(void) __ptr64
2592?RemoveDecoration@CWbemObject@@UEAAJXZ
2593; protected: virtual long __cdecl CWbemRefreshingSvc::RemoveObjectFromRefresher(struct _WBEM_REFRESHER_ID * __ptr64,long,long,unsigned long,unsigned long * __ptr64) __ptr64
2594?RemoveObjectFromRefresher@CWbemRefreshingSvc@@MEAAJPEAU_WBEM_REFRESHER_ID@@JJKPEAK@Z
2595; public: virtual long __cdecl CWbemRefreshingSvc::XWbemRefrSvc::RemoveObjectFromRefresher(struct _WBEM_REFRESHER_ID * __ptr64,long,long,unsigned long,unsigned long * __ptr64) __ptr64
2596?RemoveObjectFromRefresher@XWbemRefrSvc@CWbemRefreshingSvc@@UEAAJPEAU_WBEM_REFRESHER_ID@@JJKPEAK@Z
2597; public: void __cdecl CDataTable::RemoveProperty(unsigned short,unsigned long,unsigned long) __ptr64
2598?RemoveProperty@CDataTable@@QEAAXGKK@Z
2599; public: long __cdecl CWbemObject::RemoveQualifierArrayRange(unsigned short const * __ptr64,unsigned short const * __ptr64,int,long,unsigned long,unsigned long) __ptr64
2600?RemoveQualifierArrayRange@CWbemObject@@QEAAJPEBG0HJKK@Z
2601; public: static long __cdecl CUntypedArray::RemoveRange(class CPtrSource * __ptr64,unsigned long,unsigned long,class CFastHeap * __ptr64,unsigned long,unsigned long)
2602?RemoveRange@CUntypedArray@@SAJPEAVCPtrSource@@KKPEAVCFastHeap@@KK@Z
2603; public: void __cdecl CLimitationMapping::RemoveSpecific(void) __ptr64
2604?RemoveSpecific@CLimitationMapping@@QEAAXXZ
2605; public: long __cdecl CWbemInstance::Reparent(class CWbemClass * __ptr64,class CWbemInstance * __ptr64 * __ptr64) __ptr64
2606?Reparent@CWbemInstance@@QEAAJPEAVCWbemClass@@PEAPEAV1@@Z
2607; public: void __cdecl CCompressedStringList::Reset(void) __ptr64
2608?Reset@CCompressedStringList@@QEAAXXZ
2609; public: void __cdecl CLimitationMapping::Reset(void) __ptr64
2610?Reset@CLimitationMapping@@QEAAXXZ
2611; protected: long __cdecl CWbemRefreshingSvc::ResetRefreshInfo(struct _WBEM_REFRESH_INFO * __ptr64) __ptr64
2612?ResetRefreshInfo@CWbemRefreshingSvc@@IEAAJPEAU_WBEM_REFRESH_INFO@@@Z
2613; public: unsigned char * __ptr64 __cdecl CClassPart::ResolveHeapPointer(unsigned long) __ptr64
2614?ResolveHeapPointer@CClassPart@@QEAAPEAEK@Z
2615; public: unsigned char * __ptr64 __cdecl CFastHeap::ResolveHeapPointer(unsigned long) __ptr64
2616?ResolveHeapPointer@CFastHeap@@QEAAPEAEK@Z
2617; public: class CCompressedString * __ptr64 __cdecl CClassPart::ResolveHeapString(unsigned long) __ptr64
2618?ResolveHeapString@CClassPart@@QEAAPEAVCCompressedString@@K@Z
2619; public: class CCompressedString * __ptr64 __cdecl CFastHeap::ResolveString(unsigned long) __ptr64
2620?ResolveString@CFastHeap@@QEAAPEAVCCompressedString@@K@Z
2621; public: virtual long __cdecl CWbemCallSecurity::RevertToSelf(void) __ptr64
2622?RevertToSelf@CWbemCallSecurity@@UEAAJXZ
2623; public: int __cdecl CQualifierSet::SelfRebase(void) __ptr64
2624?SelfRebase@CQualifierSet@@QEAAHXZ
2625; public: long __cdecl CInstancePart::SetActualValue(class CPropertyInformation * __ptr64,class CVar * __ptr64) __ptr64
2626?SetActualValue@CInstancePart@@QEAAJPEAVCPropertyInformation@@PEAVCVar@@@Z
2627; public: void __cdecl CLimitationMapping::SetAddChildKeys(int) __ptr64
2628?SetAddChildKeys@CLimitationMapping@@QEAAXH@Z
2629; public: void __cdecl CDataTable::SetAllToDefault(void) __ptr64
2630?SetAllToDefault@CDataTable@@QEAAXXZ
2631; public: void __cdecl CFastHeap::SetAllocatedDataLength(unsigned long) __ptr64
2632?SetAllocatedDataLength@CFastHeap@@QEAAXK@Z
2633; public: virtual long __cdecl CWbemObject::SetArrayPropElementByHandle(long,long,unsigned long,unsigned long,void * __ptr64) __ptr64
2634?SetArrayPropElementByHandle@CWbemObject@@UEAAJJJKKPEAX@Z
2635; public: virtual long __cdecl CWbemObject::SetArrayPropRangeByHandle(long,long,unsigned long,unsigned long,unsigned long,void * __ptr64) __ptr64
2636?SetArrayPropRangeByHandle@CWbemObject@@UEAAJJJKKKPEAX@Z
2637; public: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::SetAt(int,class CFastPropertyBagItem * __ptr64,class CFastPropertyBagItem * __ptr64 * __ptr64) __ptr64
2638?SetAt@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAXHPEAVCFastPropertyBagItem@@PEAPEAV2@@Z
2639; public: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::SetAt(int,class CWmiTextSource * __ptr64,class CWmiTextSource * __ptr64 * __ptr64) __ptr64
2640?SetAt@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAXHPEAVCWmiTextSource@@PEAPEAV2@@Z
2641; public: long __cdecl CClassPart::SetClassName(class CVar * __ptr64) __ptr64
2642?SetClassName@CClassPart@@QEAAJPEAVCVar@@@Z
2643; public: void __cdecl CLimitationMapping::SetClassObject(class CWbemClass * __ptr64) __ptr64
2644?SetClassObject@CLimitationMapping@@QEAAXPEAVCWbemClass@@@Z
2645; public: virtual long __cdecl CWbemClass::SetClassPart(void * __ptr64,unsigned long) __ptr64
2646?SetClassPart@CWbemClass@@UEAAJPEAXK@Z
2647; public: virtual long __cdecl CWbemInstance::SetClassPart(void * __ptr64,unsigned long) __ptr64
2648?SetClassPart@CWbemInstance@@UEAAJPEAXK@Z
2649; public: long __cdecl CClassPart::SetClassQualifier(unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2650?SetClassQualifier@CClassPart@@QEAAJPEBGJPEAVCTypedValue@@@Z
2651; public: long __cdecl CClassPart::SetClassQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long) __ptr64
2652?SetClassQualifier@CClassPart@@QEAAJPEBGPEAVCVar@@J@Z
2653; public: void __cdecl CDecorationPart::SetClientOnly(void) __ptr64
2654?SetClientOnly@CDecorationPart@@QEAAXXZ
2655; public: void __cdecl CWbemObject::SetClientOnly(void) __ptr64
2656?SetClientOnly@CWbemObject@@QEAAXXZ
2657; public: void __cdecl CFastHeap::SetContainer(class CHeapContainer * __ptr64) __ptr64
2658?SetContainer@CFastHeap@@QEAAXPEAVCHeapContainer@@@Z
2659; public: void __cdecl CBasicQualifierSet::SetData(unsigned char * __ptr64,class CFastHeap * __ptr64) __ptr64
2660?SetData@CBasicQualifierSet@@QEAAXPEAEPEAVCFastHeap@@@Z
2661; public: void __cdecl CClassAndMethods::SetData(unsigned char * __ptr64,class CWbemClass * __ptr64,class CClassAndMethods * __ptr64) __ptr64
2662?SetData@CClassAndMethods@@QEAAXPEAEPEAVCWbemClass@@PEAV1@@Z
2663; public: void __cdecl CClassPart::SetData(unsigned char * __ptr64,class CClassPartContainer * __ptr64,class CClassPart * __ptr64) __ptr64
2664?SetData@CClassPart@@QEAAXPEAEPEAVCClassPartContainer@@PEAV1@@Z
2665; public: void __cdecl CCompressedStringList::SetData(unsigned char * __ptr64) __ptr64
2666?SetData@CCompressedStringList@@QEAAXPEAE@Z
2667; public: void __cdecl CDataTable::SetData(unsigned char * __ptr64,int,int,class CDataTableContainer * __ptr64) __ptr64
2668?SetData@CDataTable@@QEAAXPEAEHHPEAVCDataTableContainer@@@Z
2669; public: void __cdecl CDecorationPart::SetData(unsigned char * __ptr64) __ptr64
2670?SetData@CDecorationPart@@QEAAXPEAE@Z
2671; public: int __cdecl CFastHeap::SetData(unsigned char * __ptr64,class CHeapContainer * __ptr64) __ptr64
2672?SetData@CFastHeap@@QEAAHPEAEPEAVCHeapContainer@@@Z
2673; public: void __cdecl CInstancePart::SetData(unsigned char * __ptr64,class CInstancePartContainer * __ptr64,class CClassPart & __ptr64,unsigned __int64) __ptr64
2674?SetData@CInstancePart@@QEAAXPEAEPEAVCInstancePartContainer@@AEAVCClassPart@@_K@Z
2675; public: void __cdecl CMethodPart::SetData(unsigned char * __ptr64,class CMethodPartContainer * __ptr64,class CMethodPart * __ptr64) __ptr64
2676?SetData@CMethodPart@@QEAAXPEAEPEAVCMethodPartContainer@@PEAV1@@Z
2677; public: void __cdecl CMethodQualifierSet::SetData(class CMethodPart * __ptr64,class CMethodPart * __ptr64,unsigned short const * __ptr64) __ptr64
2678?SetData@CMethodQualifierSet@@QEAAXPEAVCMethodPart@@0PEBG@Z
2679; public: void __cdecl CMethodQualifierSetContainer::SetData(class CMethodPart * __ptr64,class CMethodPart * __ptr64,unsigned short const * __ptr64) __ptr64
2680?SetData@CMethodQualifierSetContainer@@QEAAXPEAVCMethodPart@@0PEBG@Z
2681; public: void __cdecl CPropertyLookupTable::SetData(unsigned char * __ptr64,class CPropertyTableContainer * __ptr64) __ptr64
2682?SetData@CPropertyLookupTable@@QEAAXPEAEPEAVCPropertyTableContainer@@@Z
2683; public: void __cdecl CQualifierSet::SetData(unsigned char * __ptr64,class CQualifierSetContainer * __ptr64,class CBasicQualifierSet * __ptr64) __ptr64
2684?SetData@CQualifierSet@@QEAAXPEAEPEAVCQualifierSetContainer@@PEAVCBasicQualifierSet@@@Z
2685; public: void __cdecl CQualifierSetList::SetData(unsigned char * __ptr64,int,class CQualifierSetListContainer * __ptr64) __ptr64
2686?SetData@CQualifierSetList@@QEAAXPEAEHPEAVCQualifierSetListContainer@@@Z
2687; public: void __cdecl CSharedLock::SetData(struct SHARED_LOCK_DATA * __ptr64) __ptr64
2688?SetData@CSharedLock@@QEAAXPEAUSHARED_LOCK_DATA@@@Z
2689; public: virtual void __cdecl CWbemClass::SetData(unsigned char * __ptr64,int) __ptr64
2690?SetData@CWbemClass@@UEAAXPEAEH@Z
2691; public: void __cdecl CWbemDataPacket::SetData(unsigned char * __ptr64,unsigned long,bool) __ptr64
2692?SetData@CWbemDataPacket@@QEAAXPEAEK_N@Z
2693; public: void __cdecl CWbemInstance::SetData(unsigned char * __ptr64,int,unsigned long) __ptr64
2694?SetData@CWbemInstance@@QEAAXPEAEHK@Z
2695; public: virtual void __cdecl CWbemInstance::SetData(unsigned char * __ptr64,int) __ptr64
2696?SetData@CWbemInstance@@UEAAXPEAEH@Z
2697; public: void __cdecl CWbemMtgtDeliverEventPacket::SetData(unsigned char * __ptr64,unsigned long,bool) __ptr64
2698?SetData@CWbemMtgtDeliverEventPacket@@QEAAXPEAEK_N@Z
2699; public: void __cdecl CWbemObjectArrayPacket::SetData(unsigned char * __ptr64,unsigned long,bool) __ptr64
2700?SetData@CWbemObjectArrayPacket@@QEAAXPEAEK_N@Z
2701; public: void __cdecl CWbemSmartEnumNextPacket::SetData(unsigned char * __ptr64,unsigned long,bool) __ptr64
2702?SetData@CWbemSmartEnumNextPacket@@QEAAXPEAEK_N@Z
2703; protected: static void __cdecl CBasicQualifierSet::SetDataLength(unsigned char * __ptr64,unsigned long)
2704?SetDataLength@CBasicQualifierSet@@KAXPEAEK@Z
2705; public: void __cdecl CClassPart::SetDataLength(unsigned long) __ptr64
2706?SetDataLength@CClassPart@@QEAAXK@Z
2707; public: void __cdecl CInstancePart::SetDataLength(unsigned long) __ptr64
2708?SetDataLength@CInstancePart@@QEAAXK@Z
2709; public: static void __cdecl CBasicQualifierSet::SetDataToNone(unsigned char * __ptr64)
2710?SetDataToNone@CBasicQualifierSet@@SAXPEAE@Z
2711; public: void __cdecl CClassAndMethods::SetDataWithNumProps(unsigned char * __ptr64,class CWbemClass * __ptr64,unsigned long,class CClassAndMethods * __ptr64) __ptr64
2712?SetDataWithNumProps@CClassAndMethods@@QEAAXPEAEPEAVCWbemClass@@KPEAV1@@Z
2713; public: void __cdecl CClassPart::SetDataWithNumProps(unsigned char * __ptr64,class CClassPartContainer * __ptr64,unsigned long,class CClassPart * __ptr64) __ptr64
2714?SetDataWithNumProps@CClassPart@@QEAAXPEAEPEAVCClassPartContainer@@KPEAV1@@Z
2715; public: virtual long __cdecl CWbemObject::SetDecoration(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
2716?SetDecoration@CWbemObject@@UEAAJPEBG0@Z
2717; protected: long __cdecl CClassPart::SetDefaultValue(class CPropertyInformation * __ptr64,class CVar * __ptr64) __ptr64
2718?SetDefaultValue@CClassPart@@IEAAJPEAVCPropertyInformation@@PEAVCVar@@@Z
2719; public: long __cdecl CClassPart::SetDefaultValue(unsigned short const * __ptr64,class CVar * __ptr64) __ptr64
2720?SetDefaultValue@CClassPart@@QEAAJPEBGPEAVCVar@@@Z
2721; public: void __cdecl CDataTable::SetDefaultness(int,int) __ptr64
2722?SetDefaultness@CDataTable@@QEAAXHH@Z
2723; public: void __cdecl CLimitationMapping::SetFlags(long) __ptr64
2724?SetFlags@CLimitationMapping@@QEAAXJ@Z
2725; public: void __cdecl CCompressedString::SetFromAscii(char const * __ptr64,unsigned __int64) __ptr64
2726?SetFromAscii@CCompressedString@@QEAAXPEBD_K@Z
2727; public: void __cdecl CCompressedString::SetFromUnicode(int,unsigned short const * __ptr64) __ptr64
2728?SetFromUnicode@CCompressedString@@QEAAXHPEBG@Z
2729; public: void __cdecl CCompressedString::SetFromUnicode(unsigned short const * __ptr64) __ptr64
2730?SetFromUnicode@CCompressedString@@QEAAXPEBG@Z
2731; protected: void __cdecl CFastHeap::SetInLineLength(unsigned long) __ptr64
2732?SetInLineLength@CFastHeap@@IEAAXK@Z
2733; public: void __cdecl CLimitationMapping::SetIncludeDerivation(int) __ptr64
2734?SetIncludeDerivation@CLimitationMapping@@QEAAXH@Z
2735; public: void __cdecl CLimitationMapping::SetIncludeNamespace(int) __ptr64
2736?SetIncludeNamespace@CLimitationMapping@@QEAAXH@Z
2737; public: void __cdecl CLimitationMapping::SetIncludeServer(int) __ptr64
2738?SetIncludeServer@CLimitationMapping@@QEAAXH@Z
2739; public: long __cdecl CClassPart::SetInheritanceChain(long,unsigned short * __ptr64 * __ptr64) __ptr64
2740?SetInheritanceChain@CClassPart@@QEAAJJPEAPEAG@Z
2741; public: virtual long __cdecl CWbemClass::SetInheritanceChain(long,unsigned short * __ptr64 * __ptr64) __ptr64
2742?SetInheritanceChain@CWbemClass@@UEAAJJPEAPEAG@Z
2743; public: virtual long __cdecl CWbemInstance::SetInheritanceChain(long,unsigned short * __ptr64 * __ptr64) __ptr64
2744?SetInheritanceChain@CWbemInstance@@UEAAJJPEAPEAG@Z
2745; public: long __cdecl CInstancePart::SetInstanceQualifier(unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2746?SetInstanceQualifier@CInstancePart@@QEAAJPEBGJPEAVCTypedValue@@@Z
2747; public: long __cdecl CInstancePart::SetInstanceQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long) __ptr64
2748?SetInstanceQualifier@CInstancePart@@QEAAJPEBGPEAVCVar@@J@Z
2749; public: void __cdecl CFixedBSTRArray::SetLength(int) __ptr64
2750?SetLength@CFixedBSTRArray@@QEAAXH@Z
2751; public: void __cdecl CDecorationPart::SetLimited(void) __ptr64
2752?SetLimited@CDecorationPart@@QEAAXXZ
2753; public: void __cdecl CClassPart::SetLocalized(int) __ptr64
2754?SetLocalized@CClassPart@@QEAAXH@Z
2755; public: void __cdecl CInstancePart::SetLocalized(int) __ptr64
2756?SetLocalized@CInstancePart@@QEAAXH@Z
2757; public: virtual void __cdecl CWbemClass::SetLocalized(int) __ptr64
2758?SetLocalized@CWbemClass@@UEAAXH@Z
2759; public: virtual void __cdecl CWbemInstance::SetLocalized(int) __ptr64
2760?SetLocalized@CWbemInstance@@UEAAXH@Z
2761; public: long __cdecl CMethodPart::SetMethodOrigin(unsigned short const * __ptr64,long) __ptr64
2762?SetMethodOrigin@CMethodPart@@QEAAJPEBGJ@Z
2763; public: virtual long __cdecl CWbemClass::SetMethodOrigin(unsigned short const * __ptr64,long) __ptr64
2764?SetMethodOrigin@CWbemClass@@UEAAJPEBGJ@Z
2765; public: virtual long __cdecl CWbemInstance::SetMethodOrigin(unsigned short const * __ptr64,long) __ptr64
2766?SetMethodOrigin@CWbemInstance@@UEAAJPEBGJ@Z
2767; public: virtual long __cdecl CWbemObject::SetMethodQual(unsigned short const * __ptr64,unsigned short const * __ptr64,long,unsigned long,unsigned long,long,unsigned long,void * __ptr64) __ptr64
2768?SetMethodQual@CWbemObject@@UEAAJPEBG0JKKJKPEAX@Z
2769; public: virtual long __cdecl CWbemClass::SetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2770?SetMethodQualifier@CWbemClass@@UEAAJPEBG0JPEAVCTypedValue@@@Z
2771; public: virtual long __cdecl CWbemClass::SetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CVar * __ptr64) __ptr64
2772?SetMethodQualifier@CWbemClass@@UEAAJPEBG0JPEAVCVar@@@Z
2773; public: virtual long __cdecl CWbemInstance::SetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2774?SetMethodQualifier@CWbemInstance@@UEAAJPEBG0JPEAVCTypedValue@@@Z
2775; public: virtual long __cdecl CWbemInstance::SetMethodQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CVar * __ptr64) __ptr64
2776?SetMethodQualifier@CWbemInstance@@UEAAJPEBG0JPEAVCVar@@@Z
2777; public: void __cdecl CDataTable::SetNullness(int,int) __ptr64
2778?SetNullness@CDataTable@@QEAAXHH@Z
2779; public: virtual long __cdecl CWbemObject::SetObjQual(unsigned short const * __ptr64,long,unsigned long,unsigned long,long,unsigned long,void * __ptr64) __ptr64
2780?SetObjQual@CWbemObject@@UEAAJPEBGJKKJKPEAX@Z
2781; public: virtual long __cdecl CWbemObject::SetObjectFlags(long,unsigned __int64,unsigned __int64) __ptr64
2782?SetObjectFlags@CWbemObject@@UEAAJJ_K0@Z
2783; public: virtual long __cdecl CWbemObject::SetObjectMemory(void * __ptr64,unsigned long) __ptr64
2784?SetObjectMemory@CWbemObject@@UEAAJPEAXK@Z
2785; public: virtual long __cdecl CWbemClass::SetObjectParts(void * __ptr64,unsigned long,unsigned long) __ptr64
2786?SetObjectParts@CWbemClass@@UEAAJPEAXKK@Z
2787; public: virtual long __cdecl CWbemInstance::SetObjectParts(void * __ptr64,unsigned long,unsigned long) __ptr64
2788?SetObjectParts@CWbemInstance@@UEAAJPEAXKK@Z
2789; public: void __cdecl CWbemThreadSecurityHandle::SetOrigin(enum tag_WMI_THREAD_SECURITY_ORIGIN) __ptr64
2790?SetOrigin@CWbemThreadSecurityHandle@@QEAAXW4tag_WMI_THREAD_SECURITY_ORIGIN@@@Z
2791; public: virtual long __cdecl CWbemObject::SetPropByHandle(long,long,unsigned long,void * __ptr64) __ptr64
2792?SetPropByHandle@CWbemObject@@UEAAJJJKPEAX@Z
2793; public: virtual long __cdecl CWbemObject::SetPropQual(unsigned short const * __ptr64,unsigned short const * __ptr64,long,unsigned long,unsigned long,long,unsigned long,void * __ptr64) __ptr64
2794?SetPropQual@CWbemObject@@UEAAJPEBG0JKKJKPEAX@Z
2795; public: long __cdecl CClassPart::SetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2796?SetPropQualifier@CClassPart@@QEAAJPEBG0JPEAVCTypedValue@@@Z
2797; public: long __cdecl CClassPart::SetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CVar * __ptr64) __ptr64
2798?SetPropQualifier@CClassPart@@QEAAJPEBG0JPEAVCVar@@@Z
2799; public: virtual long __cdecl CWbemClass::SetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2800?SetPropQualifier@CWbemClass@@UEAAJPEBG0JPEAVCTypedValue@@@Z
2801; public: virtual long __cdecl CWbemClass::SetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CVar * __ptr64) __ptr64
2802?SetPropQualifier@CWbemClass@@UEAAJPEBG0JPEAVCVar@@@Z
2803; public: virtual long __cdecl CWbemInstance::SetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2804?SetPropQualifier@CWbemInstance@@UEAAJPEBG0JPEAVCTypedValue@@@Z
2805; public: virtual long __cdecl CWbemInstance::SetPropQualifier(unsigned short const * __ptr64,unsigned short const * __ptr64,long,class CVar * __ptr64) __ptr64
2806?SetPropQualifier@CWbemInstance@@UEAAJPEBG0JPEAVCVar@@@Z
2807; public: virtual long __cdecl CWbemClass::SetPropValue(unsigned short const * __ptr64,class CVar * __ptr64,long) __ptr64
2808?SetPropValue@CWbemClass@@UEAAJPEBGPEAVCVar@@J@Z
2809; public: virtual long __cdecl CWbemInstance::SetPropValue(unsigned short const * __ptr64,class CVar * __ptr64,long) __ptr64
2810?SetPropValue@CWbemInstance@@UEAAJPEBGPEAVCVar@@J@Z
2811; public: long __cdecl CClassPart::SetPropertyOrigin(unsigned short const * __ptr64,long) __ptr64
2812?SetPropertyOrigin@CClassPart@@QEAAJPEBGJ@Z
2813; public: virtual long __cdecl CWbemClass::SetPropertyOrigin(unsigned short const * __ptr64,long) __ptr64
2814?SetPropertyOrigin@CWbemClass@@UEAAJPEBGJ@Z
2815; public: virtual long __cdecl CWbemInstance::SetPropertyOrigin(unsigned short const * __ptr64,long) __ptr64
2816?SetPropertyOrigin@CWbemInstance@@UEAAJPEBGJ@Z
2817; public: virtual long __cdecl CWbemClass::SetQualifier(unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2818?SetQualifier@CWbemClass@@UEAAJPEBGJPEAVCTypedValue@@@Z
2819; public: virtual long __cdecl CWbemClass::SetQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long) __ptr64
2820?SetQualifier@CWbemClass@@UEAAJPEBGPEAVCVar@@J@Z
2821; public: virtual long __cdecl CWbemInstance::SetQualifier(unsigned short const * __ptr64,long,class CTypedValue * __ptr64) __ptr64
2822?SetQualifier@CWbemInstance@@UEAAJPEBGJPEAVCTypedValue@@@Z
2823; public: virtual long __cdecl CWbemInstance::SetQualifier(unsigned short const * __ptr64,class CVar * __ptr64,long) __ptr64
2824?SetQualifier@CWbemInstance@@UEAAJPEBGPEAVCVar@@J@Z
2825; public: long __cdecl CWbemObject::SetQualifierArrayRange(unsigned short const * __ptr64,unsigned short const * __ptr64,int,long,unsigned long,long,unsigned long,unsigned long,unsigned long,void * __ptr64) __ptr64
2826?SetQualifierArrayRange@CWbemObject@@QEAAJPEBG0HJKJKKKPEAX@Z
2827; public: long __cdecl CQualifierSet::SetQualifierValue(unsigned short const * __ptr64,unsigned char,class CTypedValue * __ptr64,int,int) __ptr64
2828?SetQualifierValue@CQualifierSet@@QEAAJPEBGEPEAVCTypedValue@@HH@Z
2829; public: static long __cdecl CUntypedArray::SetRange(class CPtrSource * __ptr64,long,unsigned long,unsigned long,class CFastHeap * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64)
2830?SetRange@CUntypedArray@@SAJPEAVCPtrSource@@JKKPEAVCFastHeap@@KKKPEAX@Z
2831; public: void __cdecl CInstancePQSContainer::SetSecondarySetData(void) __ptr64
2832?SetSecondarySetData@CInstancePQSContainer@@QEAAXXZ
2833; public: virtual long __cdecl CWbemObject::SetServerNamespace(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
2834?SetServerNamespace@CWbemObject@@UEAAJPEBG0@Z
2835; protected: virtual long __cdecl CWbemRefreshingSvc::SetServiceData(unsigned short * __ptr64,unsigned short * __ptr64) __ptr64
2836?SetServiceData@CWbemRefreshingSvc@@MEAAJPEAG0@Z
2837; public: virtual long __cdecl CWbemRefreshingSvc::XCfgRefrSrvc::SetServiceData(unsigned short * __ptr64,unsigned short * __ptr64) __ptr64
2838?SetServiceData@XCfgRefrSrvc@CWbemRefreshingSvc@@UEAAJPEAG0@Z
2839; public: void __cdecl CMethodDescription::SetSig(int,unsigned long) __ptr64
2840?SetSig@CMethodDescription@@QEAAXHK@Z
2841; protected: long __cdecl CMethodPart::SetSignature(int,enum METHOD_SIGNATURE_TYPE,class CWbemObject * __ptr64) __ptr64
2842?SetSignature@CMethodPart@@IEAAJHW4METHOD_SIGNATURE_TYPE@@PEAVCWbemObject@@@Z
2843; public: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::SetSize(int) __ptr64
2844?SetSize@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAXH@Z
2845; public: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::SetSize(int) __ptr64
2846?SetSize@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAXH@Z
2847; public: virtual long __cdecl CWbemCallSecurity::SetThreadSecurity(struct _IWmiThreadSecHandle * __ptr64) __ptr64
2848?SetThreadSecurity@CWbemCallSecurity@@UEAAJPEAU_IWmiThreadSecHandle@@@Z
2849; public: void __cdecl CFastHeap::SetUsedLength(unsigned long) __ptr64
2850?SetUsedLength@CFastHeap@@QEAAXK@Z
2851; public: void __cdecl CLimitationMapping::SetVtableLength(unsigned long,int) __ptr64
2852?SetVtableLength@CLimitationMapping@@QEAAXKH@Z
2853; protected: long __cdecl CWbemDataPacket::SetupDataPacketHeader(unsigned long,unsigned char,unsigned long,unsigned long) __ptr64
2854?SetupDataPacketHeader@CWbemDataPacket@@IEAAJKEKK@Z
2855; public: int __cdecl CLimitationMapping::ShouldAddChildKeys(void) __ptr64
2856?ShouldAddChildKeys@CLimitationMapping@@QEAAHXZ
2857; public: int __cdecl CLimitationMapping::ShouldIncludeDerivation(void) __ptr64
2858?ShouldIncludeDerivation@CLimitationMapping@@QEAAHXZ
2859; public: int __cdecl CLimitationMapping::ShouldIncludeNamespace(void) __ptr64
2860?ShouldIncludeNamespace@CLimitationMapping@@QEAAHXZ
2861; public: int __cdecl CLimitationMapping::ShouldIncludeServer(void) __ptr64
2862?ShouldIncludeServer@CLimitationMapping@@QEAAHXZ
2863; public: int __cdecl CFastPropertyBag::Size(void) __ptr64
2864?Size@CFastPropertyBag@@QEAAHXZ
2865; public: unsigned char * __ptr64 __cdecl CBasicQualifierSet::Skip(void) __ptr64
2866?Skip@CBasicQualifierSet@@QEAAPEAEXZ
2867; public: unsigned char * __ptr64 __cdecl CFastHeap::Skip(void) __ptr64
2868?Skip@CFastHeap@@QEAAPEAEXZ
2869; public: unsigned char * __ptr64 __cdecl CPropertyLookupTable::Skip(void) __ptr64
2870?Skip@CPropertyLookupTable@@QEAAPEAEXZ
2871; public: void __cdecl CFixedBSTRArray::SortInPlace(void) __ptr64
2872?SortInPlace@CFixedBSTRArray@@QEAAXXZ
2873; public: virtual long __cdecl CWbemClass::SpawnDerivedClass(long,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
2874?SpawnDerivedClass@CWbemClass@@UEAAJJPEAPEAUIWbemClassObject@@@Z
2875; public: virtual long __cdecl CWbemInstance::SpawnDerivedClass(long,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
2876?SpawnDerivedClass@CWbemInstance@@UEAAJJPEAPEAUIWbemClassObject@@@Z
2877; public: virtual long __cdecl CWbemClass::SpawnInstance(long,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
2878?SpawnInstance@CWbemClass@@UEAAJJPEAPEAUIWbemClassObject@@@Z
2879; public: virtual long __cdecl CWbemInstance::SpawnInstance(long,struct IWbemClassObject * __ptr64 * __ptr64) __ptr64
2880?SpawnInstance@CWbemInstance@@UEAAJJPEAPEAUIWbemClassObject@@@Z
2881; public: virtual long __cdecl CWbemClass::SpawnKeyedInstance(long,unsigned short const * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2882?SpawnKeyedInstance@CWbemClass@@UEAAJJPEBGPEAPEAU_IWmiObject@@@Z
2883; public: virtual long __cdecl CWbemInstance::SpawnKeyedInstance(long,unsigned short const * __ptr64,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2884?SpawnKeyedInstance@CWbemInstance@@UEAAJJPEBGPEAPEAU_IWmiObject@@@Z
2885; public: int __cdecl CCompressedString::StartsWithNoCase(unsigned short const * __ptr64)const __ptr64
2886?StartsWithNoCase@CCompressedString@@QEBAHPEBG@Z
2887; public: virtual long __cdecl CWbemRemoteRefresher::XWbemRemoteRefr::StopRefreshing(long,long * __ptr64,long) __ptr64
2888?StopRefreshing@XWbemRemoteRefr@CWbemRemoteRefresher@@UEAAJJPEAJJ@Z
2889; public: void __cdecl CEmbeddedObject::StoreEmbedded(unsigned long,class CVar & __ptr64) __ptr64
2890?StoreEmbedded@CEmbeddedObject@@QEAAXKAEAVCVar@@@Z
2891; public: void __cdecl CEmbeddedObject::StoreEmbedded(unsigned long,class CWbemObject * __ptr64) __ptr64
2892?StoreEmbedded@CEmbeddedObject@@QEAAXKPEAVCWbemObject@@@Z
2893; protected: long __cdecl CQualifierSet::StoreQualifierConflicts(unsigned short const * __ptr64,class CVar & __ptr64,class CQualifierFlavor & __ptr64,class CVarVector & __ptr64) __ptr64
2894?StoreQualifierConflicts@CQualifierSet@@IEAAJPEBGAEAVCVar@@AEAVCQualifierFlavor@@AEAVCVarVector@@@Z
2895; public: int __cdecl CCompressedString::StoreToCVar(class CVar & __ptr64)const __ptr64
2896?StoreToCVar@CCompressedString@@QEBAHAEAVCVar@@@Z
2897; public: void __cdecl CEmbeddedObject::StoreToCVar(class CVar & __ptr64) __ptr64
2898?StoreToCVar@CEmbeddedObject@@QEAAXAEAVCVar@@@Z
2899; public: virtual long __cdecl CWbemClass::StripClassPart(void) __ptr64
2900?StripClassPart@CWbemClass@@UEAAJXZ
2901; public: virtual long __cdecl CWbemInstance::StripClassPart(void) __ptr64
2902?StripClassPart@CWbemInstance@@UEAAJXZ
2903; public: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::Swap(int,int) __ptr64
2904?Swap@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAXHH@Z
2905; public: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::Swap(int,int) __ptr64
2906?Swap@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAXHH@Z
2907; public: long __cdecl CClassPart::TestCircularReference(unsigned short const * __ptr64) __ptr64
2908?TestCircularReference@CClassPart@@QEAAJPEBG@Z
2909; public: void __cdecl CFixedBSTRArray::ThreeWayMergeOrdered(class CFixedBSTRArray & __ptr64,class CFixedBSTRArray & __ptr64,class CFixedBSTRArray & __ptr64) __ptr64
2910?ThreeWayMergeOrdered@CFixedBSTRArray@@QEAAXAEAV1@00@Z
2911; public: static int __cdecl CBasicQualifierSet::TranslateToNewHeap(class CPtrSource * __ptr64,class CFastHeap * __ptr64,class CFastHeap * __ptr64)
2912?TranslateToNewHeap@CBasicQualifierSet@@SAHPEAVCPtrSource@@PEAVCFastHeap@@1@Z
2913; public: int __cdecl CCompressedString::TranslateToNewHeap(class CFastHeap * __ptr64,class CFastHeap * __ptr64) __ptr64
2914?TranslateToNewHeap@CCompressedString@@QEAAHPEAVCFastHeap@@0@Z
2915; public: int __cdecl CDataTable::TranslateToNewHeap(class CPropertyLookupTable * __ptr64,int,class CFastHeap * __ptr64,class CFastHeap * __ptr64) __ptr64
2916?TranslateToNewHeap@CDataTable@@QEAAHPEAVCPropertyLookupTable@@HPEAVCFastHeap@@1@Z
2917; public: int __cdecl CInstancePart::TranslateToNewHeap(class CClassPart & __ptr64,class CFastHeap * __ptr64,class CFastHeap * __ptr64) __ptr64
2918?TranslateToNewHeap@CInstancePart@@QEAAHAEAVCClassPart@@PEAVCFastHeap@@1@Z
2919; public: int __cdecl CQualifierSetList::TranslateToNewHeap(class CFastHeap * __ptr64,class CFastHeap * __ptr64) __ptr64
2920?TranslateToNewHeap@CQualifierSetList@@QEAAHPEAVCFastHeap@@0@Z
2921; public: static int __cdecl CUntypedArray::TranslateToNewHeap(class CPtrSource * __ptr64,class CType,class CFastHeap * __ptr64,class CFastHeap * __ptr64)
2922?TranslateToNewHeap@CUntypedArray@@SAHPEAVCPtrSource@@VCType@@PEAVCFastHeap@@2@Z
2923; public: void __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::Trim(void) __ptr64
2924?Trim@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAXXZ
2925; public: void __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::Trim(void) __ptr64
2926?Trim@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAXXZ
2927; public: void __cdecl CFastHeap::Trim(void) __ptr64
2928?Trim@CFastHeap@@QEAAXXZ
2929; public: void __cdecl CInternalString::Unbind(void) __ptr64
2930?Unbind@CInternalString@@QEAAXXZ
2931; public: class CFastPropertyBagItem * __ptr64 * __ptr64 __cdecl CPointerArray<class CFastPropertyBagItem,class CReferenceManager<class CFastPropertyBagItem>,class CFlexArray>::UnbindPtr(void) __ptr64
2932?UnbindPtr@?$CPointerArray@VCFastPropertyBagItem@@V?$CReferenceManager@VCFastPropertyBagItem@@@@VCFlexArray@@@@QEAAPEAPEAVCFastPropertyBagItem@@XZ
2933; public: class CWmiTextSource * __ptr64 * __ptr64 __cdecl CPointerArray<class CWmiTextSource,class CReferenceManager<class CWmiTextSource>,class CFlexArray>::UnbindPtr(void) __ptr64
2934?UnbindPtr@?$CPointerArray@VCWmiTextSource@@V?$CReferenceManager@VCWmiTextSource@@@@VCFlexArray@@@@QEAAPEAPEAVCWmiTextSource@@XZ
2935; public: virtual void __cdecl CWbemClass::Undecorate(void) __ptr64
2936?Undecorate@CWbemClass@@UEAAXXZ
2937; public: virtual void __cdecl CWbemInstance::Undecorate(void) __ptr64
2938?Undecorate@CWbemInstance@@UEAAXXZ
2939; public: long __cdecl CWbemFetchRefrMgr::Uninit(void) __ptr64
2940?Uninit@CWbemFetchRefrMgr@@QEAAJXZ
2941; public: virtual long __cdecl CWbemFetchRefrMgr::XFetchRefrMgr::Uninit(void) __ptr64
2942?Uninit@XFetchRefrMgr@CWbemFetchRefrMgr@@UEAAJXZ
2943; public: int __cdecl CHiPerfLock::Unlock(void) __ptr64
2944?Unlock@CHiPerfLock@@QEAAHXZ
2945; public: int __cdecl CSharedLock::Unlock(void) __ptr64
2946?Unlock@CSharedLock@@QEAAHXZ
2947; public: virtual long __cdecl CWbemObject::Unlock(long) __ptr64
2948?Unlock@CWbemObject@@UEAAJJ@Z
2949; public: virtual long __cdecl CWbemObject::UnmarshalInterface(struct IStream * __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
2950?UnmarshalInterface@CWbemObject@@UEAAJPEAUIStream@@AEBU_GUID@@PEAPEAX@Z
2951; public: long __cdecl CWbemMtgtDeliverEventPacket::UnmarshalPacket(long & __ptr64,struct IWbemClassObject * __ptr64 * __ptr64 & __ptr64,class CWbemClassCache & __ptr64) __ptr64
2952?UnmarshalPacket@CWbemMtgtDeliverEventPacket@@QEAAJAEAJAEAPEAPEAUIWbemClassObject@@AEAVCWbemClassCache@@@Z
2953; public: long __cdecl CWbemObjectArrayPacket::UnmarshalPacket(long & __ptr64,struct IWbemClassObject * __ptr64 * __ptr64 & __ptr64,class CWbemClassCache & __ptr64) __ptr64
2954?UnmarshalPacket@CWbemObjectArrayPacket@@QEAAJAEAJAEAPEAPEAUIWbemClassObject@@AEAVCWbemClassCache@@@Z
2955; public: long __cdecl CWbemSmartEnumNextPacket::UnmarshalPacket(long & __ptr64,struct IWbemClassObject * __ptr64 * __ptr64 & __ptr64,class CWbemClassCache & __ptr64) __ptr64
2956?UnmarshalPacket@CWbemSmartEnumNextPacket@@QEAAJAEAJAEAPEAPEAUIWbemClassObject@@AEAVCWbemClassCache@@@Z
2957; public: static unsigned char * __ptr64 __cdecl CBasicQualifierSet::Unmerge(unsigned char * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64)
2958?Unmerge@CBasicQualifierSet@@SAPEAEPEAEPEAVCFastHeap@@01@Z
2959; public: unsigned char * __ptr64 __cdecl CClassAndMethods::Unmerge(unsigned char * __ptr64,unsigned long) __ptr64
2960?Unmerge@CClassAndMethods@@QEAAPEAEPEAEK@Z
2961; public: unsigned char * __ptr64 __cdecl CClassPart::Unmerge(unsigned char * __ptr64,int) __ptr64
2962?Unmerge@CClassPart@@QEAAPEAEPEAEH@Z
2963; public: unsigned char * __ptr64 __cdecl CDataTable::Unmerge(class CPropertyLookupTable * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64) __ptr64
2964?Unmerge@CDataTable@@QEAAPEAEPEAVCPropertyLookupTable@@PEAVCFastHeap@@PEAE1@Z
2965; public: unsigned char * __ptr64 __cdecl CDerivationList::Unmerge(unsigned char * __ptr64) __ptr64
2966?Unmerge@CDerivationList@@QEAAPEAEPEAE@Z
2967; public: unsigned char * __ptr64 __cdecl CMethodPart::Unmerge(unsigned char * __ptr64,unsigned long) __ptr64
2968?Unmerge@CMethodPart@@QEAAPEAEPEAEK@Z
2969; public: unsigned char * __ptr64 __cdecl CPropertyLookupTable::Unmerge(class CDataTable * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64) __ptr64
2970?Unmerge@CPropertyLookupTable@@QEAAPEAEPEAVCDataTable@@PEAVCFastHeap@@PEAE1@Z
2971; public: virtual long __cdecl CWbemClass::Unmerge(unsigned char * __ptr64,int,unsigned long * __ptr64) __ptr64
2972?Unmerge@CWbemClass@@UEAAJPEAEHPEAK@Z
2973; public: virtual long __cdecl CWbemInstance::Unmerge(unsigned char * __ptr64,int,unsigned long * __ptr64) __ptr64
2974?Unmerge@CWbemInstance@@UEAAJPEAEHPEAK@Z
2975; public: unsigned long __cdecl CWbemObject::Unmerge(unsigned char * __ptr64 * __ptr64) __ptr64
2976?Unmerge@CWbemObject@@QEAAKPEAPEAE@Z
2977; public: virtual long __cdecl CWbemObject::Unmerge(long,unsigned long,unsigned long * __ptr64,void * __ptr64) __ptr64
2978?Unmerge@CWbemObject@@UEAAJJKPEAKPEAX@Z
2979; public: static long __cdecl CClassAndMethods::Update(class CClassAndMethods & __ptr64,class CClassAndMethods & __ptr64,long)
2980?Update@CClassAndMethods@@SAJAEAV1@0J@Z
2981; public: static long __cdecl CClassPart::Update(class CClassPart & __ptr64,class CClassPart & __ptr64,long)
2982?Update@CClassPart@@SAJAEAV1@0J@Z
2983; public: static long __cdecl CMethodPart::Update(class CMethodPart & __ptr64,class CMethodPart & __ptr64,long)
2984?Update@CMethodPart@@SAJAEAV1@0J@Z
2985; public: long __cdecl CQualifierSet::Update(class CBasicQualifierSet & __ptr64,long,class CFixedBSTRArray * __ptr64) __ptr64
2986?Update@CQualifierSet@@QEAAJAEAVCBasicQualifierSet@@JPEAVCFixedBSTRArray@@@Z
2987; public: long __cdecl CWbemClass::Update(class CWbemClass * __ptr64,long,class CWbemClass * __ptr64 * __ptr64) __ptr64
2988?Update@CWbemClass@@QEAAJPEAV1@JPEAPEAV1@@Z
2989; public: virtual long __cdecl CWbemClass::Update(struct _IWmiObject * __ptr64,long,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2990?Update@CWbemClass@@UEAAJPEAU_IWmiObject@@JPEAPEAU2@@Z
2991; public: virtual long __cdecl CWbemInstance::Update(struct _IWmiObject * __ptr64,long,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2992?Update@CWbemInstance@@UEAAJPEAU_IWmiObject@@JPEAPEAU2@@Z
2993; public: static long __cdecl CClassPart::UpdateProperties(class CClassPart & __ptr64,class CClassPart & __ptr64,long)
2994?UpdateProperties@CClassPart@@SAJAEAV1@0J@Z
2995; public: virtual long __cdecl CWbemClass::Upgrade(struct _IWmiObject * __ptr64,long,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2996?Upgrade@CWbemClass@@UEAAJPEAU_IWmiObject@@JPEAPEAU2@@Z
2997; public: virtual long __cdecl CWbemInstance::Upgrade(struct _IWmiObject * __ptr64,long,struct _IWmiObject * __ptr64 * __ptr64) __ptr64
2998?Upgrade@CWbemInstance@@UEAAJPEAU_IWmiObject@@JPEAPEAU2@@Z
2999; protected: static char __cdecl CCompressedString::UpperByte(unsigned short)
3000?UpperByte@CCompressedString@@KADG@Z
3001; public: static class CType __cdecl CType::VARTYPEToType(unsigned short)
3002?VARTYPEToType@CType@@SA?AV1@G@Z
3003; public: long __cdecl CWbemInstance::Validate(void) __ptr64
3004?Validate@CWbemInstance@@QEAAJXZ
3005; public: static unsigned __int64 __cdecl CBasicQualifierSet::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3006?ValidateBuffer@CBasicQualifierSet@@SA_KPEAE_K@Z
3007; public: static unsigned __int64 __cdecl CClassAndMethods::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3008?ValidateBuffer@CClassAndMethods@@SA_KPEAE_K@Z
3009; public: static unsigned __int64 __cdecl CClassPart::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3010?ValidateBuffer@CClassPart@@SA_KPEAE_K@Z
3011; public: static unsigned __int64 __cdecl CCompressedStringList::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3012?ValidateBuffer@CCompressedStringList@@SA_KPEAE_K@Z
3013; public: static unsigned __int64 __cdecl CDataTable::ValidateBuffer(unsigned char * __ptr64,unsigned __int64,int)
3014?ValidateBuffer@CDataTable@@SA_KPEAE_KH@Z
3015; public: static unsigned __int64 __cdecl CDecorationPart::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3016?ValidateBuffer@CDecorationPart@@SA_KPEAE_K@Z
3017; public: static void __cdecl CEmbeddedObject::ValidateBuffer(unsigned char * __ptr64,unsigned __int64,class std::vector<struct EmbeddedObj,class wbem_allocator<struct EmbeddedObj> > & __ptr64)
3018?ValidateBuffer@CEmbeddedObject@@SAXPEAE_KAEAV?$vector@UEmbeddedObj@@V?$wbem_allocator@UEmbeddedObj@@@@@std@@@Z
3019; public: static unsigned __int64 __cdecl CFastHeap::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3020?ValidateBuffer@CFastHeap@@SA_KPEAE_K@Z
3021; public: static unsigned __int64 __cdecl CInstancePart::ValidateBuffer(unsigned char * __ptr64,unsigned __int64,class CClassPart & __ptr64,class std::vector<struct EmbeddedObj,class wbem_allocator<struct EmbeddedObj> > & __ptr64)
3022?ValidateBuffer@CInstancePart@@SA_KPEAE_KAEAVCClassPart@@AEAV?$vector@UEmbeddedObj@@V?$wbem_allocator@UEmbeddedObj@@@@@std@@@Z
3023; public: static unsigned __int64 __cdecl CMethodPart::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3024?ValidateBuffer@CMethodPart@@SA_KPEAE_K@Z
3025; public: static unsigned __int64 __cdecl CPropertyLookupTable::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3026?ValidateBuffer@CPropertyLookupTable@@SA_KPEAE_K@Z
3027; public: static unsigned __int64 __cdecl CQualifierSetList::ValidateBuffer(unsigned char * __ptr64,unsigned __int64,int)
3028?ValidateBuffer@CQualifierSetList@@SA_KPEAE_KH@Z
3029; public: static unsigned __int64 __cdecl CWbemClass::ValidateBuffer(unsigned char * __ptr64,unsigned __int64)
3030?ValidateBuffer@CWbemClass@@SA_KPEAE_K@Z
3031; public: static unsigned __int64 __cdecl CWbemInstance::ValidateBuffer(unsigned char * __ptr64,int,unsigned long,class std::vector<struct EmbeddedObj,class wbem_allocator<struct EmbeddedObj> > & __ptr64)
3032?ValidateBuffer@CWbemInstance@@SA_KPEAEHKAEAV?$vector@UEmbeddedObj@@V?$wbem_allocator@UEmbeddedObj@@@@@std@@@Z
3033; public: static unsigned __int64 __cdecl CWbemInstance::ValidateBuffer(unsigned char * __ptr64,int,class CWbemInstance * __ptr64,class std::vector<struct EmbeddedObj,class wbem_allocator<struct EmbeddedObj> > & __ptr64)
3034?ValidateBuffer@CWbemInstance@@SA_KPEAEHPEAV1@AEAV?$vector@UEmbeddedObj@@V?$wbem_allocator@UEmbeddedObj@@@@@std@@@Z
3035; public: static unsigned __int64 __cdecl CWbemInstance::ValidateBuffer(unsigned char * __ptr64,unsigned __int64,class std::vector<struct EmbeddedObj,class wbem_allocator<struct EmbeddedObj> > & __ptr64)
3036?ValidateBuffer@CWbemInstance@@SA_KPEAE_KAEAV?$vector@UEmbeddedObj@@V?$wbem_allocator@UEmbeddedObj@@@@@std@@@Z
3037; public: long __cdecl CLimitationMapping::ValidateInstance(class CWbemInstance * __ptr64) __ptr64
3038?ValidateInstance@CLimitationMapping@@QEAAJPEAVCWbemInstance@@@Z
3039; public: virtual long __cdecl CWbemObject::ValidateObject(long) __ptr64
3040?ValidateObject@CWbemObject@@UEAAJJ@Z
3041; protected: long __cdecl CMethodPart::ValidateOutParams(class CWbemObject * __ptr64) __ptr64
3042?ValidateOutParams@CMethodPart@@IEAAJPEAVCWbemObject@@@Z
3043; public: long __cdecl CWbemObject::ValidatePath(struct ParsedObjectPath * __ptr64) __ptr64
3044?ValidatePath@CWbemObject@@QEAAJPEAUParsedObjectPath@@@Z
3045; public: long __cdecl CPropertyLookupTable::ValidateRange(unsigned short * __ptr64 * __ptr64,class CDataTable * __ptr64,class CFastHeap * __ptr64) __ptr64
3046?ValidateRange@CPropertyLookupTable@@QEAAJPEAPEAGPEAVCDataTable@@PEAVCFastHeap@@@Z
3047; public: int __cdecl CWbemObject::ValidateRange(unsigned short * __ptr64 * __ptr64) __ptr64
3048?ValidateRange@CWbemObject@@QEAAHPEAPEAG@Z
3049; public: long __cdecl CQualifierSet::ValidateSet(unsigned short const * __ptr64,unsigned char,class CTypedValue * __ptr64,int,int) __ptr64
3050?ValidateSet@CQualifierSet@@QEAAJPEBGEPEAVCTypedValue@@HH@Z
3051; public: int __cdecl CCompressedString::ValidateSize(int)const __ptr64
3052?ValidateSize@CCompressedString@@QEBAHH@Z
3053; public: static long __cdecl CWbemObject::WbemObjectFromCOMPtr(struct IUnknown * __ptr64,class CWbemObject * __ptr64 * __ptr64)
3054?WbemObjectFromCOMPtr@CWbemObject@@SAJPEAUIUnknown@@PEAPEAV1@@Z
3055; unsigned short * __ptr64 __cdecl WbemStringCopy(unsigned short const * __ptr64)
3056?WbemStringCopy@@YAPEAGPEBG@Z
3057; void __cdecl WbemStringFree(unsigned short * __ptr64)
3058?WbemStringFree@@YAXPEAG@Z
3059; protected: long __cdecl CWbemRefreshingSvc::WrapRemoteRefresher(struct IWbemRemoteRefresher * __ptr64 * __ptr64) __ptr64
3060?WrapRemoteRefresher@CWbemRefreshingSvc@@IEAAJPEAPEAUIWbemRemoteRefresher@@@Z
3061; public: virtual long __cdecl CWbemObject::WriteDWORD(long,unsigned long) __ptr64
3062?WriteDWORD@CWbemObject@@UEAAJJK@Z
3063; public: long __cdecl CWbemClass::WriteDerivedClass(unsigned char * __ptr64,int,class CDecorationPart * __ptr64) __ptr64
3064?WriteDerivedClass@CWbemClass@@QEAAJPEAEHPEAVCDecorationPart@@@Z
3065; public: virtual long __cdecl CWbemObject::WriteProp(unsigned short const * __ptr64,long,unsigned long,unsigned long,long,void * __ptr64) __ptr64
3066?WriteProp@CWbemObject@@UEAAJPEBGJKKJPEAX@Z
3067; public: static unsigned char * __ptr64 __cdecl CBasicQualifierSet::WritePropagatedVersion(class CPtrSource * __ptr64,unsigned char,class CPtrSource * __ptr64,class CFastHeap * __ptr64,class CFastHeap * __ptr64)
3068?WritePropagatedVersion@CBasicQualifierSet@@SAPEAEPEAVCPtrSource@@E0PEAVCFastHeap@@1@Z
3069; public: unsigned char * __ptr64 __cdecl CDataTable::WritePropagatedVersion(class CPropertyLookupTable * __ptr64,class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64) __ptr64
3070?WritePropagatedVersion@CDataTable@@QEAAPEAEPEAVCPropertyLookupTable@@PEAVCFastHeap@@PEAE1@Z
3071; public: unsigned char * __ptr64 __cdecl CPropertyLookupTable::WritePropagatedVersion(class CFastHeap * __ptr64,unsigned char * __ptr64,class CFastHeap * __ptr64) __ptr64
3072?WritePropagatedVersion@CPropertyLookupTable@@QEAAPEAEPEAVCFastHeap@@PEAE0@Z
3073; public: long __cdecl CWbemClass::WritePropertyAsMethodParam(class WString & __ptr64,int,long,class CWbemClass * __ptr64,int) __ptr64
3074?WritePropertyAsMethodParam@CWbemClass@@QEAAJAEAVWString@@HJPEAV1@H@Z
3075; public: virtual long __cdecl CWbemObject::WritePropertyValue(long,long,unsigned char const * __ptr64) __ptr64
3076?WritePropertyValue@CWbemObject@@UEAAJJJPEBE@Z
3077; public: virtual long __cdecl CWbemObject::WriteQWORD(long,unsigned __int64) __ptr64
3078?WriteQWORD@CWbemObject@@UEAAJJ_K@Z
3079; public: unsigned char * __ptr64 __cdecl CDataTable::WriteSmallerVersion(int,unsigned long,unsigned char * __ptr64) __ptr64
3080?WriteSmallerVersion@CDataTable@@QEAAPEAEHKPEAE@Z
3081; public: unsigned char * __ptr64 __cdecl CQualifierSetList::WriteSmallerVersion(int,unsigned char * __ptr64) __ptr64
3082?WriteSmallerVersion@CQualifierSetList@@QEAAPEAEHPEAE@Z
3083; public: virtual long __cdecl CWbemInstance::WriteToStream(struct IStream * __ptr64) __ptr64
3084?WriteToStream@CWbemInstance@@UEAAJPEAUIStream@@@Z
3085; public: virtual long __cdecl CWbemObject::WriteToStream(struct IStream * __ptr64) __ptr64
3086?WriteToStream@CWbemObject@@UEAAJPEAUIStream@@@Z
3087; public: static void __cdecl CWbemInstance::WriteTransferArrayHeader(long,unsigned char * __ptr64 * __ptr64)
3088?WriteTransferArrayHeader@CWbemInstance@@SAXJPEAPEAE@Z
3089; public: virtual long __cdecl CWbemObject::_GetCoreInfo(long,void * __ptr64 * __ptr64) __ptr64
3090?_GetCoreInfo@CWbemObject@@UEAAJJPEAPEAX@Z
3091; public: static unsigned short * __ptr64 __cdecl CCompressedString::fast_wcscpy(unsigned short * __ptr64,unsigned short const * __ptr64)
3092?fast_wcscpy@CCompressedString@@SAPEAGPEAGPEBG@Z
3093; public: static int __cdecl CCompressedString::fast_wcslen(unsigned short const * __ptr64)
3094?fast_wcslen@CCompressedString@@SAHPEBG@Z
3095; public: static unsigned short * __ptr64 __cdecl CCompressedString::fast_wcsncpy(unsigned short * __ptr64,unsigned short const * __ptr64,int)
3096?fast_wcsncpy@CCompressedString@@SAPEAGPEAGPEBGH@Z
3097; protected: static unsigned char * CWbemDataPacket::s_abSignature
3098?s_abSignature@CWbemDataPacket@@1PAEA DATA
3099; private: static unsigned short const * __ptr64 * CReservedWordTable::s_apwszReservedWords
3100?s_apwszReservedWords@CReservedWordTable@@0PAPEBGA DATA
3101; protected: static class CStaticCritSec CWbemFetchRefrMgr::s_cs
3102?s_cs@CWbemFetchRefrMgr@@1VCStaticCritSec@@A DATA
3103; protected: static struct _IWbemRefresherMgr * __ptr64 __ptr64 CWbemFetchRefrMgr::s_pRefrMgr
3104?s_pRefrMgr@CWbemFetchRefrMgr@@1PEAU_IWbemRefresherMgr@@EA DATA
3105; private: static unsigned short const * __ptr64 const __ptr64 CReservedWordTable::s_pszStartingCharsLCase
3106?s_pszStartingCharsLCase@CReservedWordTable@@0PEBGEB DATA
3107; private: static unsigned short const * __ptr64 const __ptr64 CReservedWordTable::s_pszStartingCharsUCase
3108?s_pszStartingCharsUCase@CReservedWordTable@@0PEBGEB DATA
3109DllCanUnloadNow
3110DllGetClassObject
3111DllRegisterServer
3112DllUnregisterServer
3113GetObjectCount
lib/libc/mingw/lib64/fcachdll.def created+43
......@@ -0,0 +1,43 @@
1;
2; Exports of file FCACHDLL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FCACHDLL.dll
8EXPORTS
9AddRefContext
10AssociateContextWithName
11AssociateFile
12AssociateFileEx
13CacheCreateFile
14CacheRemoveFiles
15CacheRichCreateFile
16CloseNonCachedFile
17CompleteDotStuffingOnWrites
18FIOInitialize
19FIOReadFile
20FIOReadFileEx
21FIOTerminate
22FIOWriteFile
23FIOWriteFileEx
24FindContextFromName
25FindOrCreateNameCache
26FindSyncContextFromName
27GetDotStuffState
28GetFileSizeFromContext
29GetIsFileDotTerminated
30InitializeCache
31InsertFile
32InvalidateName
33ProduceDotStuffedContext
34ProduceDotStuffedContextInContext
35ReleaseContext
36ReleaseNameCache
37SetDotScanningOnReads
38SetDotScanningOnWrites
39SetDotStuffState
40SetDotStuffingOnWrites
41SetIsFileDotTerminated
42SetNameCacheSecurityFunction
43TerminateCache
lib/libc/mingw/lib64/fldrclnr.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file FldrClnr.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FldrClnr.dll
8EXPORTS
9DllInstall
10DllMain
11DllRegisterServer
12Wizard_RunDLL
lib/libc/mingw/lib64/framedyn.def created+1219
......@@ -0,0 +1,1219 @@
1;
2; Exports of file framedyn.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY framedyn.dll
8EXPORTS
9; public: __cdecl CAutoEvent::CAutoEvent(void) __ptr64
10??0CAutoEvent@@QEAA@XZ
11; public: __cdecl CFrameworkQuery::CFrameworkQuery(class CFrameworkQuery const & __ptr64) __ptr64
12??0CFrameworkQuery@@QEAA@AEBV0@@Z
13; public: __cdecl CFrameworkQuery::CFrameworkQuery(void) __ptr64
14??0CFrameworkQuery@@QEAA@XZ
15; public: __cdecl CFrameworkQueryEx::CFrameworkQueryEx(class CFrameworkQueryEx const & __ptr64) __ptr64
16??0CFrameworkQueryEx@@QEAA@AEBV0@@Z
17; public: __cdecl CFrameworkQueryEx::CFrameworkQueryEx(void) __ptr64
18??0CFrameworkQueryEx@@QEAA@XZ
19; public: __cdecl CHPtrArray::CHPtrArray(void) __ptr64
20??0CHPtrArray@@QEAA@XZ
21; public: __cdecl CHString::CHString(class CHString const & __ptr64) __ptr64
22??0CHString@@QEAA@AEBV0@@Z
23; public: __cdecl CHString::CHString(unsigned short,int) __ptr64
24??0CHString@@QEAA@GH@Z
25; public: __cdecl CHString::CHString(char const * __ptr64) __ptr64
26??0CHString@@QEAA@PEBD@Z
27; public: __cdecl CHString::CHString(unsigned char const * __ptr64) __ptr64
28??0CHString@@QEAA@PEBE@Z
29; public: __cdecl CHString::CHString(unsigned short const * __ptr64) __ptr64
30??0CHString@@QEAA@PEBG@Z
31; public: __cdecl CHString::CHString(unsigned short const * __ptr64,int) __ptr64
32??0CHString@@QEAA@PEBGH@Z
33; public: __cdecl CHString::CHString(void) __ptr64
34??0CHString@@QEAA@XZ
35; public: __cdecl CHStringArray::CHStringArray(void) __ptr64
36??0CHStringArray@@QEAA@XZ
37; public: __cdecl CInstance::CInstance(class CInstance const & __ptr64) __ptr64
38??0CInstance@@QEAA@AEBV0@@Z
39; public: __cdecl CInstance::CInstance(struct IWbemClassObject * __ptr64,class MethodContext * __ptr64) __ptr64
40??0CInstance@@QEAA@PEAUIWbemClassObject@@PEAVMethodContext@@@Z
41; public: __cdecl CObjectPathParser::CObjectPathParser(enum ObjectParserFlags) __ptr64
42??0CObjectPathParser@@QEAA@W4ObjectParserFlags@@@Z
43; public: __cdecl CRegistry::CRegistry(class CRegistry const & __ptr64) __ptr64
44??0CRegistry@@QEAA@AEBV0@@Z
45; public: __cdecl CRegistry::CRegistry(void) __ptr64
46??0CRegistry@@QEAA@XZ
47; public: __cdecl CRegistrySearch::CRegistrySearch(class CRegistrySearch const & __ptr64) __ptr64
48??0CRegistrySearch@@QEAA@AEBV0@@Z
49; public: __cdecl CRegistrySearch::CRegistrySearch(void) __ptr64
50??0CRegistrySearch@@QEAA@XZ
51; public: __cdecl CThreadBase::CThreadBase(class CThreadBase const & __ptr64) __ptr64
52??0CThreadBase@@QEAA@AEBV0@@Z
53; public: __cdecl CThreadBase::CThreadBase(enum CThreadBase::THREAD_SAFETY_MECHANISM) __ptr64
54??0CThreadBase@@QEAA@W4THREAD_SAFETY_MECHANISM@0@@Z
55; public: __cdecl CWbemGlueFactory::CWbemGlueFactory(class CWbemGlueFactory const & __ptr64) __ptr64
56??0CWbemGlueFactory@@QEAA@AEBV0@@Z
57; public: __cdecl CWbemGlueFactory::CWbemGlueFactory(long * __ptr64) __ptr64
58??0CWbemGlueFactory@@QEAA@PEAJ@Z
59; public: __cdecl CWbemGlueFactory::CWbemGlueFactory(void) __ptr64
60??0CWbemGlueFactory@@QEAA@XZ
61; public: __cdecl CWbemProviderGlue::CWbemProviderGlue(class CWbemProviderGlue const & __ptr64) __ptr64
62??0CWbemProviderGlue@@QEAA@AEBV0@@Z
63; public: __cdecl CWbemProviderGlue::CWbemProviderGlue(long * __ptr64) __ptr64
64??0CWbemProviderGlue@@QEAA@PEAJ@Z
65; public: __cdecl CWbemProviderGlue::CWbemProviderGlue(void) __ptr64
66??0CWbemProviderGlue@@QEAA@XZ
67; public: __cdecl CWinMsgEvent::CWinMsgEvent(class CWinMsgEvent const & __ptr64) __ptr64
68??0CWinMsgEvent@@QEAA@AEBV0@@Z
69; public: __cdecl CWinMsgEvent::CWinMsgEvent(void) __ptr64
70??0CWinMsgEvent@@QEAA@XZ
71; public: __cdecl CreateMutexAsProcess::CreateMutexAsProcess(unsigned short const * __ptr64) __ptr64
72??0CreateMutexAsProcess@@QEAA@PEBG@Z
73; public: __cdecl KeyRef::KeyRef(unsigned short const * __ptr64,struct tagVARIANT const * __ptr64) __ptr64
74??0KeyRef@@QEAA@PEBGPEBUtagVARIANT@@@Z
75; public: __cdecl KeyRef::KeyRef(void) __ptr64
76??0KeyRef@@QEAA@XZ
77; public: __cdecl MethodContext::MethodContext(class MethodContext const & __ptr64) __ptr64
78??0MethodContext@@QEAA@AEBV0@@Z
79; public: __cdecl MethodContext::MethodContext(struct IWbemContext * __ptr64,class CWbemProviderGlue * __ptr64) __ptr64
80??0MethodContext@@QEAA@PEAUIWbemContext@@PEAVCWbemProviderGlue@@@Z
81; public: __cdecl ParsedObjectPath::ParsedObjectPath(void) __ptr64
82??0ParsedObjectPath@@QEAA@XZ
83; public: __cdecl Provider::Provider(class Provider const & __ptr64) __ptr64
84??0Provider@@QEAA@AEBV0@@Z
85; public: __cdecl Provider::Provider(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
86??0Provider@@QEAA@PEBG0@Z
87; public: __cdecl ProviderLog::ProviderLog(class ProviderLog const & __ptr64) __ptr64
88??0ProviderLog@@QEAA@AEBV0@@Z
89; public: __cdecl ProviderLog::ProviderLog(void) __ptr64
90??0ProviderLog@@QEAA@XZ
91; public: __cdecl WBEMTime::WBEMTime(struct _FILETIME const & __ptr64) __ptr64
92??0WBEMTime@@QEAA@AEBU_FILETIME@@@Z
93; public: __cdecl WBEMTime::WBEMTime(struct _SYSTEMTIME const & __ptr64) __ptr64
94??0WBEMTime@@QEAA@AEBU_SYSTEMTIME@@@Z
95; public: __cdecl WBEMTime::WBEMTime(struct tm const & __ptr64) __ptr64
96??0WBEMTime@@QEAA@AEBUtm@@@Z
97; public: __cdecl WBEMTime::WBEMTime(__int64 const & __ptr64) __ptr64
98??0WBEMTime@@QEAA@AEB_J@Z
99; public: __cdecl WBEMTime::WBEMTime(unsigned short * __ptr64 const) __ptr64
100??0WBEMTime@@QEAA@QEAG@Z
101; public: __cdecl WBEMTime::WBEMTime(void) __ptr64
102??0WBEMTime@@QEAA@XZ
103; public: __cdecl WBEMTimeSpan::WBEMTimeSpan(struct _FILETIME const & __ptr64) __ptr64
104??0WBEMTimeSpan@@QEAA@AEBU_FILETIME@@@Z
105; public: __cdecl WBEMTimeSpan::WBEMTimeSpan(__int64 const & __ptr64) __ptr64
106??0WBEMTimeSpan@@QEAA@AEB_J@Z
107; public: __cdecl WBEMTimeSpan::WBEMTimeSpan(int,int,int,int,int,int,int) __ptr64
108??0WBEMTimeSpan@@QEAA@HHHHHHH@Z
109; public: __cdecl WBEMTimeSpan::WBEMTimeSpan(unsigned short * __ptr64 const) __ptr64
110??0WBEMTimeSpan@@QEAA@QEAG@Z
111; public: __cdecl WBEMTimeSpan::WBEMTimeSpan(void) __ptr64
112??0WBEMTimeSpan@@QEAA@XZ
113; public: __cdecl std::_Lockit::_Lockit(void) __ptr64
114??0_Lockit@std@@QEAA@XZ
115; public: __cdecl CAutoEvent::~CAutoEvent(void) __ptr64
116??1CAutoEvent@@QEAA@XZ
117; public: __cdecl CFrameworkQuery::~CFrameworkQuery(void) __ptr64
118??1CFrameworkQuery@@QEAA@XZ
119; public: __cdecl CFrameworkQueryEx::~CFrameworkQueryEx(void) __ptr64
120??1CFrameworkQueryEx@@QEAA@XZ
121; public: __cdecl CHPtrArray::~CHPtrArray(void) __ptr64
122??1CHPtrArray@@QEAA@XZ
123; public: __cdecl CHString::~CHString(void) __ptr64
124??1CHString@@QEAA@XZ
125; public: __cdecl CHStringArray::~CHStringArray(void) __ptr64
126??1CHStringArray@@QEAA@XZ
127; public: virtual __cdecl CInstance::~CInstance(void) __ptr64
128??1CInstance@@UEAA@XZ
129; public: __cdecl CObjectPathParser::~CObjectPathParser(void) __ptr64
130??1CObjectPathParser@@QEAA@XZ
131; public: __cdecl CRegistry::~CRegistry(void) __ptr64
132??1CRegistry@@QEAA@XZ
133; public: __cdecl CRegistrySearch::~CRegistrySearch(void) __ptr64
134??1CRegistrySearch@@QEAA@XZ
135; public: virtual __cdecl CThreadBase::~CThreadBase(void) __ptr64
136??1CThreadBase@@UEAA@XZ
137; public: __cdecl CWbemGlueFactory::~CWbemGlueFactory(void) __ptr64
138??1CWbemGlueFactory@@QEAA@XZ
139; public: __cdecl CWbemProviderGlue::~CWbemProviderGlue(void) __ptr64
140??1CWbemProviderGlue@@QEAA@XZ
141; public: __cdecl CWinMsgEvent::~CWinMsgEvent(void) __ptr64
142??1CWinMsgEvent@@QEAA@XZ
143; public: __cdecl CreateMutexAsProcess::~CreateMutexAsProcess(void) __ptr64
144??1CreateMutexAsProcess@@QEAA@XZ
145; public: __cdecl KeyRef::~KeyRef(void) __ptr64
146??1KeyRef@@QEAA@XZ
147; public: virtual __cdecl MethodContext::~MethodContext(void) __ptr64
148??1MethodContext@@UEAA@XZ
149; public: __cdecl ParsedObjectPath::~ParsedObjectPath(void) __ptr64
150??1ParsedObjectPath@@QEAA@XZ
151; public: virtual __cdecl Provider::~Provider(void) __ptr64
152??1Provider@@UEAA@XZ
153; public: virtual __cdecl ProviderLog::~ProviderLog(void) __ptr64
154??1ProviderLog@@UEAA@XZ
155; public: __cdecl std::_Lockit::~_Lockit(void) __ptr64
156??1_Lockit@std@@QEAA@XZ
157; public: class CAutoEvent & __ptr64 __cdecl CAutoEvent::operator=(class CAutoEvent const & __ptr64) __ptr64
158??4CAutoEvent@@QEAAAEAV0@AEBV0@@Z
159; public: class CFrameworkQuery & __ptr64 __cdecl CFrameworkQuery::operator=(class CFrameworkQuery const & __ptr64) __ptr64
160??4CFrameworkQuery@@QEAAAEAV0@AEBV0@@Z
161; public: class CFrameworkQueryEx & __ptr64 __cdecl CFrameworkQueryEx::operator=(class CFrameworkQueryEx const & __ptr64) __ptr64
162??4CFrameworkQueryEx@@QEAAAEAV0@AEBV0@@Z
163; public: class CHPtrArray & __ptr64 __cdecl CHPtrArray::operator=(class CHPtrArray const & __ptr64) __ptr64
164??4CHPtrArray@@QEAAAEAV0@AEBV0@@Z
165; public: class CHString const & __ptr64 __cdecl CHString::operator=(class CHString const & __ptr64) __ptr64
166??4CHString@@QEAAAEBV0@AEBV0@@Z
167; public: class CHString const & __ptr64 __cdecl CHString::operator=(char) __ptr64
168??4CHString@@QEAAAEBV0@D@Z
169; public: class CHString const & __ptr64 __cdecl CHString::operator=(unsigned short) __ptr64
170??4CHString@@QEAAAEBV0@G@Z
171; public: class CHString const & __ptr64 __cdecl CHString::operator=(class CHString * __ptr64) __ptr64
172??4CHString@@QEAAAEBV0@PEAV0@@Z
173; public: class CHString const & __ptr64 __cdecl CHString::operator=(char const * __ptr64) __ptr64
174??4CHString@@QEAAAEBV0@PEBD@Z
175; public: class CHString const & __ptr64 __cdecl CHString::operator=(unsigned char const * __ptr64) __ptr64
176??4CHString@@QEAAAEBV0@PEBE@Z
177; public: class CHString const & __ptr64 __cdecl CHString::operator=(unsigned short const * __ptr64) __ptr64
178??4CHString@@QEAAAEBV0@PEBG@Z
179; public: class CHStringArray & __ptr64 __cdecl CHStringArray::operator=(class CHStringArray const & __ptr64) __ptr64
180??4CHStringArray@@QEAAAEAV0@AEBV0@@Z
181; public: class CInstance & __ptr64 __cdecl CInstance::operator=(class CInstance const & __ptr64) __ptr64
182??4CInstance@@QEAAAEAV0@AEBV0@@Z
183; public: class CObjectPathParser & __ptr64 __cdecl CObjectPathParser::operator=(class CObjectPathParser const & __ptr64) __ptr64
184??4CObjectPathParser@@QEAAAEAV0@AEBV0@@Z
185; public: class CRegistry & __ptr64 __cdecl CRegistry::operator=(class CRegistry const & __ptr64) __ptr64
186??4CRegistry@@QEAAAEAV0@AEBV0@@Z
187; public: class CRegistrySearch & __ptr64 __cdecl CRegistrySearch::operator=(class CRegistrySearch const & __ptr64) __ptr64
188??4CRegistrySearch@@QEAAAEAV0@AEBV0@@Z
189; public: class CThreadBase & __ptr64 __cdecl CThreadBase::operator=(class CThreadBase const & __ptr64) __ptr64
190??4CThreadBase@@QEAAAEAV0@AEBV0@@Z
191; public: class CWbemGlueFactory & __ptr64 __cdecl CWbemGlueFactory::operator=(class CWbemGlueFactory const & __ptr64) __ptr64
192??4CWbemGlueFactory@@QEAAAEAV0@AEBV0@@Z
193; public: class CWbemProviderGlue & __ptr64 __cdecl CWbemProviderGlue::operator=(class CWbemProviderGlue const & __ptr64) __ptr64
194??4CWbemProviderGlue@@QEAAAEAV0@AEBV0@@Z
195; public: class CWinMsgEvent & __ptr64 __cdecl CWinMsgEvent::operator=(class CWinMsgEvent const & __ptr64) __ptr64
196??4CWinMsgEvent@@QEAAAEAV0@AEBV0@@Z
197; public: class CreateMutexAsProcess & __ptr64 __cdecl CreateMutexAsProcess::operator=(class CreateMutexAsProcess const & __ptr64) __ptr64
198??4CreateMutexAsProcess@@QEAAAEAV0@AEBV0@@Z
199; public: struct KeyRef & __ptr64 __cdecl KeyRef::operator=(struct KeyRef const & __ptr64) __ptr64
200??4KeyRef@@QEAAAEAU0@AEBU0@@Z
201; public: class MethodContext & __ptr64 __cdecl MethodContext::operator=(class MethodContext const & __ptr64) __ptr64
202??4MethodContext@@QEAAAEAV0@AEBV0@@Z
203; public: struct ParsedObjectPath & __ptr64 __cdecl ParsedObjectPath::operator=(struct ParsedObjectPath const & __ptr64) __ptr64
204??4ParsedObjectPath@@QEAAAEAU0@AEBU0@@Z
205; public: class Provider & __ptr64 __cdecl Provider::operator=(class Provider const & __ptr64) __ptr64
206??4Provider@@QEAAAEAV0@AEBV0@@Z
207; public: class ProviderLog & __ptr64 __cdecl ProviderLog::operator=(class ProviderLog const & __ptr64) __ptr64
208??4ProviderLog@@QEAAAEAV0@AEBV0@@Z
209; public: class WBEMTime & __ptr64 __cdecl WBEMTime::operator=(class WBEMTime const & __ptr64) __ptr64
210??4WBEMTime@@QEAAAEAV0@AEBV0@@Z
211; public: class WBEMTime const & __ptr64 __cdecl WBEMTime::operator=(struct _FILETIME const & __ptr64) __ptr64
212??4WBEMTime@@QEAAAEBV0@AEBU_FILETIME@@@Z
213; public: class WBEMTime const & __ptr64 __cdecl WBEMTime::operator=(struct _SYSTEMTIME const & __ptr64) __ptr64
214??4WBEMTime@@QEAAAEBV0@AEBU_SYSTEMTIME@@@Z
215; public: class WBEMTime const & __ptr64 __cdecl WBEMTime::operator=(struct tm const & __ptr64) __ptr64
216??4WBEMTime@@QEAAAEBV0@AEBUtm@@@Z
217; public: class WBEMTime const & __ptr64 __cdecl WBEMTime::operator=(__int64 const & __ptr64) __ptr64
218??4WBEMTime@@QEAAAEBV0@AEB_J@Z
219; public: class WBEMTime const & __ptr64 __cdecl WBEMTime::operator=(unsigned short * __ptr64 const) __ptr64
220??4WBEMTime@@QEAAAEBV0@QEAG@Z
221; public: class WBEMTimeSpan & __ptr64 __cdecl WBEMTimeSpan::operator=(class WBEMTimeSpan const & __ptr64) __ptr64
222??4WBEMTimeSpan@@QEAAAEAV0@AEBV0@@Z
223; public: class WBEMTimeSpan const & __ptr64 __cdecl WBEMTimeSpan::operator=(struct _FILETIME const & __ptr64) __ptr64
224??4WBEMTimeSpan@@QEAAAEBV0@AEBU_FILETIME@@@Z
225; public: class WBEMTimeSpan const & __ptr64 __cdecl WBEMTimeSpan::operator=(__int64 const & __ptr64) __ptr64
226??4WBEMTimeSpan@@QEAAAEBV0@AEB_J@Z
227; public: class WBEMTimeSpan const & __ptr64 __cdecl WBEMTimeSpan::operator=(unsigned short * __ptr64 const) __ptr64
228??4WBEMTimeSpan@@QEAAAEBV0@QEAG@Z
229; public: int __cdecl WBEMTime::operator==(class WBEMTime const & __ptr64)const __ptr64
230??8WBEMTime@@QEBAHAEBV0@@Z
231; public: int __cdecl WBEMTimeSpan::operator==(class WBEMTimeSpan const & __ptr64)const __ptr64
232??8WBEMTimeSpan@@QEBAHAEBV0@@Z
233; public: int __cdecl WBEMTime::operator!=(class WBEMTime const & __ptr64)const __ptr64
234??9WBEMTime@@QEBAHAEBV0@@Z
235; public: int __cdecl WBEMTimeSpan::operator!=(class WBEMTimeSpan const & __ptr64)const __ptr64
236??9WBEMTimeSpan@@QEBAHAEBV0@@Z
237; public: void * __ptr64 & __ptr64 __cdecl CHPtrArray::operator[](int) __ptr64
238??ACHPtrArray@@QEAAAEAPEAXH@Z
239; public: void * __ptr64 __cdecl CHPtrArray::operator[](int)const __ptr64
240??ACHPtrArray@@QEBAPEAXH@Z
241; public: unsigned short __cdecl CHString::operator[](int)const __ptr64
242??ACHString@@QEBAGH@Z
243; public: class CHString & __ptr64 __cdecl CHStringArray::operator[](int) __ptr64
244??ACHStringArray@@QEAAAEAVCHString@@H@Z
245; public: class CHString __cdecl CHStringArray::operator[](int)const __ptr64
246??ACHStringArray@@QEBA?AVCHString@@H@Z
247; public: __cdecl CHString::operator unsigned short const * __ptr64(void)const __ptr64
248??BCHString@@QEBAPEBGXZ
249; public: class WBEMTimeSpan __cdecl WBEMTime::operator-(class WBEMTime const & __ptr64) __ptr64
250??GWBEMTime@@QEAA?AVWBEMTimeSpan@@AEBV0@@Z
251; public: class WBEMTime __cdecl WBEMTime::operator-(class WBEMTimeSpan const & __ptr64)const __ptr64
252??GWBEMTime@@QEBA?AV0@AEBVWBEMTimeSpan@@@Z
253; public: class WBEMTimeSpan __cdecl WBEMTimeSpan::operator-(class WBEMTimeSpan const & __ptr64)const __ptr64
254??GWBEMTimeSpan@@QEBA?AV0@AEBV0@@Z
255; class CHString __cdecl operator+(class CHString const & __ptr64,class CHString const & __ptr64)
256??H@YA?AVCHString@@AEBV0@0@Z
257; class CHString __cdecl operator+(class CHString const & __ptr64,unsigned short)
258??H@YA?AVCHString@@AEBV0@G@Z
259; class CHString __cdecl operator+(class CHString const & __ptr64,unsigned short const * __ptr64)
260??H@YA?AVCHString@@AEBV0@PEBG@Z
261; class CHString __cdecl operator+(unsigned short,class CHString const & __ptr64)
262??H@YA?AVCHString@@GAEBV0@@Z
263; class CHString __cdecl operator+(unsigned short const * __ptr64,class CHString const & __ptr64)
264??H@YA?AVCHString@@PEBGAEBV0@@Z
265; public: class WBEMTime __cdecl WBEMTime::operator+(class WBEMTimeSpan const & __ptr64)const __ptr64
266??HWBEMTime@@QEBA?AV0@AEBVWBEMTimeSpan@@@Z
267; public: class WBEMTimeSpan __cdecl WBEMTimeSpan::operator+(class WBEMTimeSpan const & __ptr64)const __ptr64
268??HWBEMTimeSpan@@QEBA?AV0@AEBV0@@Z
269; public: int __cdecl WBEMTime::operator<(class WBEMTime const & __ptr64)const __ptr64
270??MWBEMTime@@QEBAHAEBV0@@Z
271; public: int __cdecl WBEMTimeSpan::operator<(class WBEMTimeSpan const & __ptr64)const __ptr64
272??MWBEMTimeSpan@@QEBAHAEBV0@@Z
273; public: int __cdecl WBEMTime::operator<=(class WBEMTime const & __ptr64)const __ptr64
274??NWBEMTime@@QEBAHAEBV0@@Z
275; public: int __cdecl WBEMTimeSpan::operator<=(class WBEMTimeSpan const & __ptr64)const __ptr64
276??NWBEMTimeSpan@@QEBAHAEBV0@@Z
277; public: int __cdecl WBEMTime::operator>(class WBEMTime const & __ptr64)const __ptr64
278??OWBEMTime@@QEBAHAEBV0@@Z
279; public: int __cdecl WBEMTimeSpan::operator>(class WBEMTimeSpan const & __ptr64)const __ptr64
280??OWBEMTimeSpan@@QEBAHAEBV0@@Z
281; public: int __cdecl WBEMTime::operator>=(class WBEMTime const & __ptr64)const __ptr64
282??PWBEMTime@@QEBAHAEBV0@@Z
283; public: int __cdecl WBEMTimeSpan::operator>=(class WBEMTimeSpan const & __ptr64)const __ptr64
284??PWBEMTimeSpan@@QEBAHAEBV0@@Z
285; public: class CHString const & __ptr64 __cdecl CHString::operator+=(class CHString const & __ptr64) __ptr64
286??YCHString@@QEAAAEBV0@AEBV0@@Z
287; public: class CHString const & __ptr64 __cdecl CHString::operator+=(char) __ptr64
288??YCHString@@QEAAAEBV0@D@Z
289; public: class CHString const & __ptr64 __cdecl CHString::operator+=(unsigned short) __ptr64
290??YCHString@@QEAAAEBV0@G@Z
291; public: class CHString const & __ptr64 __cdecl CHString::operator+=(unsigned short const * __ptr64) __ptr64
292??YCHString@@QEAAAEBV0@PEBG@Z
293; public: class WBEMTime const & __ptr64 __cdecl WBEMTime::operator+=(class WBEMTimeSpan const & __ptr64) __ptr64
294??YWBEMTime@@QEAAAEBV0@AEBVWBEMTimeSpan@@@Z
295; public: class WBEMTimeSpan const & __ptr64 __cdecl WBEMTimeSpan::operator+=(class WBEMTimeSpan const & __ptr64) __ptr64
296??YWBEMTimeSpan@@QEAAAEBV0@AEBV0@@Z
297; public: class WBEMTime const & __ptr64 __cdecl WBEMTime::operator-=(class WBEMTimeSpan const & __ptr64) __ptr64
298??ZWBEMTime@@QEAAAEBV0@AEBVWBEMTimeSpan@@@Z
299; public: class WBEMTimeSpan const & __ptr64 __cdecl WBEMTimeSpan::operator-=(class WBEMTimeSpan const & __ptr64) __ptr64
300??ZWBEMTimeSpan@@QEAAAEBV0@AEBV0@@Z
301; const CFrameworkQueryEx::`vftable'
302??_7CFrameworkQueryEx@@6B@
303; const CInstance::`vftable'
304??_7CInstance@@6B@
305; const CThreadBase::`vftable'
306??_7CThreadBase@@6B@
307; const CWbemGlueFactory::`vftable'
308??_7CWbemGlueFactory@@6B@
309; const CWbemProviderGlue::`vftable'{for `IWbemProviderInit'}
310??_7CWbemProviderGlue@@6BIWbemProviderInit@@@
311; const CWbemProviderGlue::`vftable'{for `IWbemServices'}
312??_7CWbemProviderGlue@@6BIWbemServices@@@
313; const CWinMsgEvent::`vftable'
314??_7CWinMsgEvent@@6B@
315; const MethodContext::`vftable'
316??_7MethodContext@@6B@
317; const Provider::`vftable'
318??_7Provider@@6B@
319; const ProviderLog::`vftable'
320??_7ProviderLog@@6B@
321; public: void __cdecl CObjectPathParser::`default constructor closure'(void) __ptr64
322??_FCObjectPathParser@@QEAAXXZ
323; public: void __cdecl CThreadBase::`default constructor closure'(void) __ptr64
324??_FCThreadBase@@QEAAXXZ
325; public: int __cdecl CHPtrArray::Add(void * __ptr64) __ptr64
326?Add@CHPtrArray@@QEAAHPEAX@Z
327; public: int __cdecl CHStringArray::Add(unsigned short const * __ptr64) __ptr64
328?Add@CHStringArray@@QEAAHPEBG@Z
329; private: void __cdecl CWbemProviderGlue::AddFlushPtr(void * __ptr64) __ptr64
330?AddFlushPtr@CWbemProviderGlue@@AEAAXPEAX@Z
331; public: int __cdecl ParsedObjectPath::AddKeyRef(struct KeyRef * __ptr64) __ptr64
332?AddKeyRef@ParsedObjectPath@@QEAAHPEAUKeyRef@@@Z
333; public: int __cdecl ParsedObjectPath::AddKeyRef(unsigned short const * __ptr64,struct tagVARIANT const * __ptr64) __ptr64
334?AddKeyRef@ParsedObjectPath@@QEAAHPEBGPEBUtagVARIANT@@@Z
335; public: int __cdecl ParsedObjectPath::AddKeyRefEx(unsigned short const * __ptr64,struct tagVARIANT const * __ptr64) __ptr64
336?AddKeyRefEx@ParsedObjectPath@@QEAAHPEBGPEBUtagVARIANT@@@Z
337; public: int __cdecl ParsedObjectPath::AddNamespace(unsigned short const * __ptr64) __ptr64
338?AddNamespace@ParsedObjectPath@@QEAAHPEBG@Z
339; private: static class Provider * __ptr64 __cdecl CWbemProviderGlue::AddProviderToMap(unsigned short const * __ptr64,unsigned short const * __ptr64,class Provider * __ptr64)
340?AddProviderToMap@CWbemProviderGlue@@CAPEAVProvider@@PEBG0PEAV2@@Z
341; public: long __cdecl CInstance::AddRef(void) __ptr64
342?AddRef@CInstance@@QEAAJXZ
343; public: long __cdecl CThreadBase::AddRef(void) __ptr64
344?AddRef@CThreadBase@@QEAAJXZ
345; public: virtual unsigned long __cdecl CWbemGlueFactory::AddRef(void) __ptr64
346?AddRef@CWbemGlueFactory@@UEAAKXZ
347; public: virtual unsigned long __cdecl CWbemProviderGlue::AddRef(void) __ptr64
348?AddRef@CWbemProviderGlue@@UEAAKXZ
349; public: long __cdecl MethodContext::AddRef(void) __ptr64
350?AddRef@MethodContext@@QEAAJXZ
351; protected: static void __cdecl CWbemProviderGlue::AddToFactoryMap(class CWbemGlueFactory const * __ptr64,long * __ptr64)
352?AddToFactoryMap@CWbemProviderGlue@@KAXPEBVCWbemGlueFactory@@PEAJ@Z
353; public: bool __cdecl CFrameworkQuery::AllPropertiesAreRequired(void) __ptr64
354?AllPropertiesAreRequired@CFrameworkQuery@@QEAA_NXZ
355; protected: void __cdecl CHString::AllocBeforeWrite(int) __ptr64
356?AllocBeforeWrite@CHString@@IEAAXH@Z
357; protected: void __cdecl CHString::AllocBuffer(int) __ptr64
358?AllocBuffer@CHString@@IEAAXH@Z
359; protected: void __cdecl CHString::AllocCopy(class CHString & __ptr64,int,int,int)const __ptr64
360?AllocCopy@CHString@@IEBAXAEAV1@HHH@Z
361; public: unsigned short * __ptr64 __cdecl CHString::AllocSysString(void)const __ptr64
362?AllocSysString@CHString@@QEBAPEAGXZ
363; public: int __cdecl CHPtrArray::Append(class CHPtrArray const & __ptr64) __ptr64
364?Append@CHPtrArray@@QEAAHAEBV1@@Z
365; public: int __cdecl CHStringArray::Append(class CHStringArray const & __ptr64) __ptr64
366?Append@CHStringArray@@QEAAHAEBV1@@Z
367; protected: void __cdecl CHString::AssignCopy(int,unsigned short const * __ptr64) __ptr64
368?AssignCopy@CHString@@IEAAXHPEBG@Z
369; public: int __cdecl CThreadBase::BeginRead(unsigned long) __ptr64
370?BeginRead@CThreadBase@@QEAAHK@Z
371; public: int __cdecl CThreadBase::BeginWrite(unsigned long) __ptr64
372?BeginWrite@CThreadBase@@QEAAHK@Z
373; public: virtual long __cdecl CWbemProviderGlue::CancelAsyncCall(struct IWbemObjectSink * __ptr64) __ptr64
374?CancelAsyncCall@CWbemProviderGlue@@UEAAJPEAUIWbemObjectSink@@@Z
375; public: virtual long __cdecl CWbemProviderGlue::CancelAsyncRequest(long) __ptr64
376?CancelAsyncRequest@CWbemProviderGlue@@UEAAJJ@Z
377; private: void __cdecl CRegistrySearch::CheckAndAddToList(class CRegistry * __ptr64,class CHString,class CHString,class CHPtrArray & __ptr64,class CHString,class CHString,int) __ptr64
378?CheckAndAddToList@CRegistrySearch@@AEAAXPEAVCRegistry@@VCHString@@1AEAVCHPtrArray@@11H@Z
379; private: void __cdecl ProviderLog::CheckFileSize(union _LARGE_INTEGER & __ptr64,class CHString const & __ptr64) __ptr64
380?CheckFileSize@ProviderLog@@AEAAXAEAT_LARGE_INTEGER@@AEBVCHString@@@Z
381; private: static long __cdecl CWbemProviderGlue::CheckImpersonationLevel(void)
382?CheckImpersonationLevel@CWbemProviderGlue@@CAJXZ
383; public: void __cdecl WBEMTime::Clear(void) __ptr64
384?Clear@WBEMTime@@QEAAXXZ
385; public: void __cdecl WBEMTimeSpan::Clear(void) __ptr64
386?Clear@WBEMTimeSpan@@QEAAXXZ
387; public: void __cdecl ParsedObjectPath::ClearKeys(void) __ptr64
388?ClearKeys@ParsedObjectPath@@QEAAXXZ
389; public: void __cdecl CRegistry::Close(void) __ptr64
390?Close@CRegistry@@QEAAXXZ
391; private: void __cdecl CRegistry::CloseSubKey(void) __ptr64
392?CloseSubKey@CRegistry@@AEAAXXZ
393; public: int __cdecl CHString::Collate(unsigned short const * __ptr64)const __ptr64
394?Collate@CHString@@QEBAHPEBG@Z
395; public: long __cdecl CInstance::Commit(void) __ptr64
396?Commit@CInstance@@QEAAJXZ
397; protected: long __cdecl Provider::Commit(class CInstance * __ptr64,bool) __ptr64
398?Commit@Provider@@IEAAJPEAVCInstance@@_N@Z
399; public: int __cdecl CHString::Compare(unsigned short const * __ptr64)const __ptr64
400?Compare@CHString@@QEBAHPEBG@Z
401; public: int __cdecl CHString::CompareNoCase(unsigned short const * __ptr64)const __ptr64
402?CompareNoCase@CHString@@QEBAHPEBG@Z
403; protected: void __cdecl CHString::ConcatCopy(int,unsigned short const * __ptr64,int,unsigned short const * __ptr64) __ptr64
404?ConcatCopy@CHString@@IEAAXHPEBGH0@Z
405; protected: void __cdecl CHString::ConcatInPlace(int,unsigned short const * __ptr64) __ptr64
406?ConcatInPlace@CHString@@IEAAXHPEBG@Z
407; public: void __cdecl CHPtrArray::Copy(class CHPtrArray const & __ptr64) __ptr64
408?Copy@CHPtrArray@@QEAAXAEBV1@@Z
409; public: void __cdecl CHStringArray::Copy(class CHStringArray const & __ptr64) __ptr64
410?Copy@CHStringArray@@QEAAXAEBV1@@Z
411; protected: void __cdecl CHString::CopyBeforeWrite(void) __ptr64
412?CopyBeforeWrite@CHString@@IEAAXXZ
413; public: virtual long __cdecl CWbemProviderGlue::CreateClassEnum(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IEnumWbemClassObject * __ptr64 * __ptr64) __ptr64
414?CreateClassEnum@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAPEAUIEnumWbemClassObject@@@Z
415; public: virtual long __cdecl CWbemProviderGlue::CreateClassEnumAsync(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
416?CreateClassEnumAsync@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
417; public: virtual long __cdecl CWbemGlueFactory::CreateInstance(struct IUnknown * __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
418?CreateInstance@CWbemGlueFactory@@UEAAJPEAUIUnknown@@AEBU_GUID@@PEAPEAX@Z
419; public: virtual long __cdecl CWbemProviderGlue::CreateInstanceEnum(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IEnumWbemClassObject * __ptr64 * __ptr64) __ptr64
420?CreateInstanceEnum@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAPEAUIEnumWbemClassObject@@@Z
421; private: long __cdecl Provider::CreateInstanceEnum(class MethodContext * __ptr64,long) __ptr64
422?CreateInstanceEnum@Provider@@AEAAJPEAVMethodContext@@J@Z
423; public: virtual long __cdecl CWbemProviderGlue::CreateInstanceEnumAsync(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
424?CreateInstanceEnumAsync@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
425; private: static void __cdecl CWinMsgEvent::CreateMsgProvider(void)
426?CreateMsgProvider@CWinMsgEvent@@CAXXZ
427; private: static struct HWND__ * __ptr64 __cdecl CWinMsgEvent::CreateMsgWindow(void)
428?CreateMsgWindow@CWinMsgEvent@@CAPEAUHWND__@@XZ
429; protected: class CInstance * __ptr64 __cdecl Provider::CreateNewInstance(class MethodContext * __ptr64) __ptr64
430?CreateNewInstance@Provider@@IEAAPEAVCInstance@@PEAVMethodContext@@@Z
431; public: long __cdecl CRegistry::CreateOpen(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned short * __ptr64,unsigned long,unsigned long,struct _SECURITY_ATTRIBUTES * __ptr64,unsigned long * __ptr64) __ptr64
432?CreateOpen@CRegistry@@QEAAJPEAUHKEY__@@PEBGPEAGKKPEAU_SECURITY_ATTRIBUTES@@PEAK@Z
433; private: static int __cdecl CWinMsgEvent::CtrlHandlerRoutine(unsigned long)
434?CtrlHandlerRoutine@CWinMsgEvent@@CAHK@Z
435; protected: static long __cdecl CWbemProviderGlue::DecrementMapCount(long * __ptr64)
436?DecrementMapCount@CWbemProviderGlue@@KAJPEAJ@Z
437; protected: static long __cdecl CWbemProviderGlue::DecrementMapCount(class CWbemGlueFactory const * __ptr64)
438?DecrementMapCount@CWbemProviderGlue@@KAJPEBVCWbemGlueFactory@@@Z
439; public: static long __cdecl CWbemProviderGlue::DecrementObjectCount(void)
440?DecrementObjectCount@CWbemProviderGlue@@SAJXZ
441; public: virtual long __cdecl CWbemProviderGlue::DeleteClass(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemCallResult * __ptr64 * __ptr64) __ptr64
442?DeleteClass@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAPEAUIWbemCallResult@@@Z
443; public: virtual long __cdecl CWbemProviderGlue::DeleteClassAsync(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
444?DeleteClassAsync@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
445; public: unsigned long __cdecl CRegistry::DeleteCurrentKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64) __ptr64
446?DeleteCurrentKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBG@Z
447; public: unsigned long __cdecl CRegistry::DeleteCurrentKeyValue(unsigned short const * __ptr64) __ptr64
448?DeleteCurrentKeyValue@CRegistry@@QEAAKPEBG@Z
449; public: virtual long __cdecl CWbemProviderGlue::DeleteInstance(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemCallResult * __ptr64 * __ptr64) __ptr64
450?DeleteInstance@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAPEAUIWbemCallResult@@@Z
451; private: long __cdecl Provider::DeleteInstance(struct ParsedObjectPath * __ptr64,long,class MethodContext * __ptr64) __ptr64
452?DeleteInstance@Provider@@AEAAJPEAUParsedObjectPath@@JPEAVMethodContext@@@Z
453; protected: virtual long __cdecl Provider::DeleteInstance(class CInstance const & __ptr64,long) __ptr64
454?DeleteInstance@Provider@@MEAAJAEBVCInstance@@J@Z
455; public: virtual long __cdecl CWbemProviderGlue::DeleteInstanceAsync(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
456?DeleteInstanceAsync@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
457; public: long __cdecl CRegistry::DeleteKey(class CHString * __ptr64) __ptr64
458?DeleteKey@CRegistry@@QEAAJPEAVCHString@@@Z
459; public: long __cdecl CRegistry::DeleteValue(unsigned short const * __ptr64) __ptr64
460?DeleteValue@CRegistry@@QEAAJPEBG@Z
461; private: static void __cdecl CWinMsgEvent::DestroyMsgWindow(void)
462?DestroyMsgWindow@CWinMsgEvent@@CAXXZ
463; public: void * __ptr64 & __ptr64 __cdecl CHPtrArray::ElementAt(int) __ptr64
464?ElementAt@CHPtrArray@@QEAAAEAPEAXH@Z
465; public: class CHString & __ptr64 __cdecl CHStringArray::ElementAt(int) __ptr64
466?ElementAt@CHStringArray@@QEAAAEAVCHString@@H@Z
467; public: void __cdecl CHString::Empty(void) __ptr64
468?Empty@CHString@@QEAAXXZ
469; private: void __cdecl CObjectPathParser::Empty(void) __ptr64
470?Empty@CObjectPathParser@@AEAAXXZ
471; public: void __cdecl CThreadBase::EndRead(void) __ptr64
472?EndRead@CThreadBase@@QEAAXXZ
473; public: void __cdecl CThreadBase::EndWrite(void) __ptr64
474?EndWrite@CThreadBase@@QEAAXXZ
475; public: long __cdecl CRegistry::EnumerateAndGetValues(unsigned long & __ptr64,unsigned short * __ptr64 & __ptr64,unsigned char * __ptr64 & __ptr64) __ptr64
476?EnumerateAndGetValues@CRegistry@@QEAAJAEAKAEAPEAGAEAPEAE@Z
477; protected: virtual long __cdecl Provider::EnumerateInstances(class MethodContext * __ptr64,long) __ptr64
478?EnumerateInstances@Provider@@MEAAJPEAVMethodContext@@J@Z
479; public: virtual long __cdecl CWbemProviderGlue::ExecMethod(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemClassObject * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,struct IWbemCallResult * __ptr64 * __ptr64) __ptr64
480?ExecMethod@CWbemProviderGlue@@UEAAJQEAG0JPEAUIWbemContext@@PEAUIWbemClassObject@@PEAPEAU3@PEAPEAUIWbemCallResult@@@Z
481; private: long __cdecl Provider::ExecMethod(struct ParsedObjectPath * __ptr64,unsigned short * __ptr64,long,class CInstance * __ptr64,class CInstance * __ptr64,class MethodContext * __ptr64) __ptr64
482?ExecMethod@Provider@@AEAAJPEAUParsedObjectPath@@PEAGJPEAVCInstance@@2PEAVMethodContext@@@Z
483; protected: virtual long __cdecl Provider::ExecMethod(class CInstance const & __ptr64,unsigned short * __ptr64 const,class CInstance * __ptr64,class CInstance * __ptr64,long) __ptr64
484?ExecMethod@Provider@@MEAAJAEBVCInstance@@QEAGPEAV2@2J@Z
485; public: virtual long __cdecl CWbemProviderGlue::ExecMethodAsync(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemClassObject * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
486?ExecMethodAsync@CWbemProviderGlue@@UEAAJQEAG0JPEAUIWbemContext@@PEAUIWbemClassObject@@PEAUIWbemObjectSink@@@Z
487; public: virtual long __cdecl CWbemProviderGlue::ExecNotificationQuery(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IEnumWbemClassObject * __ptr64 * __ptr64) __ptr64
488?ExecNotificationQuery@CWbemProviderGlue@@UEAAJQEAG0JPEAUIWbemContext@@PEAPEAUIEnumWbemClassObject@@@Z
489; public: virtual long __cdecl CWbemProviderGlue::ExecNotificationQueryAsync(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
490?ExecNotificationQueryAsync@CWbemProviderGlue@@UEAAJQEAG0JPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
491; public: virtual long __cdecl CWbemProviderGlue::ExecQuery(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IEnumWbemClassObject * __ptr64 * __ptr64) __ptr64
492?ExecQuery@CWbemProviderGlue@@UEAAJQEAG0JPEAUIWbemContext@@PEAPEAUIEnumWbemClassObject@@@Z
493; protected: virtual long __cdecl Provider::ExecQuery(class MethodContext * __ptr64,class CFrameworkQuery & __ptr64,long) __ptr64
494?ExecQuery@Provider@@MEAAJPEAVMethodContext@@AEAVCFrameworkQuery@@J@Z
495; public: virtual long __cdecl CWbemProviderGlue::ExecQueryAsync(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
496?ExecQueryAsync@CWbemProviderGlue@@UEAAJQEAG0JPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
497; private: long __cdecl Provider::ExecuteQuery(class MethodContext * __ptr64,class CFrameworkQuery & __ptr64,long) __ptr64
498?ExecuteQuery@Provider@@AEAAJPEAVMethodContext@@AEAVCFrameworkQuery@@J@Z
499; public: static long __cdecl CWbemProviderGlue::FillInstance(class CInstance * __ptr64,unsigned short const * __ptr64)
500?FillInstance@CWbemProviderGlue@@SAJPEAVCInstance@@PEBG@Z
501; public: static long __cdecl CWbemProviderGlue::FillInstance(class MethodContext * __ptr64,class CInstance * __ptr64)
502?FillInstance@CWbemProviderGlue@@SAJPEAVMethodContext@@PEAVCInstance@@@Z
503; public: int __cdecl CHString::Find(unsigned short)const __ptr64
504?Find@CHString@@QEBAHG@Z
505; public: int __cdecl CHString::Find(unsigned short const * __ptr64)const __ptr64
506?Find@CHString@@QEBAHPEBG@Z
507; public: int __cdecl CHString::FindOneOf(unsigned short const * __ptr64)const __ptr64
508?FindOneOf@CHString@@QEBAHPEBG@Z
509; protected: virtual void __cdecl Provider::Flush(void) __ptr64
510?Flush@Provider@@MEAAXXZ
511; private: void __cdecl CWbemProviderGlue::FlushAll(void) __ptr64
512?FlushAll@CWbemProviderGlue@@AEAAXXZ
513; public: void __cdecl CHString::Format(unsigned int,...) __ptr64
514?Format@CHString@@QEAAXIZZ
515; public: void __cdecl CHString::Format(unsigned short const * __ptr64,...) __ptr64
516?Format@CHString@@QEAAXPEBGZZ
517; public: void __cdecl CHString::FormatMessageW(unsigned int,...) __ptr64
518?FormatMessageW@CHString@@QEAAXIZZ
519; public: void __cdecl CHString::FormatMessageW(unsigned short const * __ptr64,...) __ptr64
520?FormatMessageW@CHString@@QEAAXPEBGZZ
521; public: void __cdecl CHString::FormatV(unsigned short const * __ptr64,char * __ptr64) __ptr64
522?FormatV@CHString@@QEAAXPEBGPEAD@Z
523; public: static void __cdecl CWbemProviderGlue::FrameworkLogin(unsigned short const * __ptr64,class Provider * __ptr64,unsigned short const * __ptr64)
524?FrameworkLogin@CWbemProviderGlue@@SAXPEBGPEAVProvider@@0@Z
525; public: static int __cdecl CWbemProviderGlue::FrameworkLoginDLL(unsigned short const * __ptr64)
526?FrameworkLoginDLL@CWbemProviderGlue@@SAHPEBG@Z
527; public: static int __cdecl CWbemProviderGlue::FrameworkLoginDLL(unsigned short const * __ptr64,long * __ptr64)
528?FrameworkLoginDLL@CWbemProviderGlue@@SAHPEBGPEAJ@Z
529; public: static void __cdecl CWbemProviderGlue::FrameworkLogoff(unsigned short const * __ptr64,unsigned short const * __ptr64)
530?FrameworkLogoff@CWbemProviderGlue@@SAXPEBG0@Z
531; public: static int __cdecl CWbemProviderGlue::FrameworkLogoffDLL(unsigned short const * __ptr64)
532?FrameworkLogoffDLL@CWbemProviderGlue@@SAHPEBG@Z
533; public: static int __cdecl CWbemProviderGlue::FrameworkLogoffDLL(unsigned short const * __ptr64,long * __ptr64)
534?FrameworkLogoffDLL@CWbemProviderGlue@@SAHPEBGPEAJ@Z
535; public: void __cdecl CObjectPathParser::Free(struct ParsedObjectPath * __ptr64) __ptr64
536?Free@CObjectPathParser@@QEAAXPEAUParsedObjectPath@@@Z
537; public: void __cdecl CHPtrArray::FreeExtra(void) __ptr64
538?FreeExtra@CHPtrArray@@QEAAXXZ
539; public: void __cdecl CHString::FreeExtra(void) __ptr64
540?FreeExtra@CHString@@QEAAXXZ
541; public: void __cdecl CHStringArray::FreeExtra(void) __ptr64
542?FreeExtra@CHStringArray@@QEAAXXZ
543; public: int __cdecl CRegistrySearch::FreeSearchList(int,class CHPtrArray & __ptr64) __ptr64
544?FreeSearchList@CRegistrySearch@@QEAAHHAEAVCHPtrArray@@@Z
545; public: static long __cdecl CWbemProviderGlue::GetAllDerivedInstances(unsigned short const * __ptr64,class TRefPointerCollection<class CInstance> * __ptr64,class MethodContext * __ptr64,unsigned short const * __ptr64)
546?GetAllDerivedInstances@CWbemProviderGlue@@SAJPEBGPEAV?$TRefPointerCollection@VCInstance@@@@PEAVMethodContext@@0@Z
547; public: static long __cdecl CWbemProviderGlue::GetAllDerivedInstancesAsynch(unsigned short const * __ptr64,class Provider * __ptr64,long (__cdecl*)(class Provider * __ptr64,class CInstance * __ptr64,class MethodContext * __ptr64,void * __ptr64),unsigned short const * __ptr64,class MethodContext * __ptr64,void * __ptr64)
548?GetAllDerivedInstancesAsynch@CWbemProviderGlue@@SAJPEBGPEAVProvider@@P6AJ1PEAVCInstance@@PEAVMethodContext@@PEAX@Z034@Z
549; public: static long __cdecl CWbemProviderGlue::GetAllInstances(unsigned short const * __ptr64,class TRefPointerCollection<class CInstance> * __ptr64,unsigned short const * __ptr64,class MethodContext * __ptr64)
550?GetAllInstances@CWbemProviderGlue@@SAJPEBGPEAV?$TRefPointerCollection@VCInstance@@@@0PEAVMethodContext@@@Z
551; public: static long __cdecl CWbemProviderGlue::GetAllInstancesAsynch(unsigned short const * __ptr64,class Provider * __ptr64,long (__cdecl*)(class Provider * __ptr64,class CInstance * __ptr64,class MethodContext * __ptr64,void * __ptr64),unsigned short const * __ptr64,class MethodContext * __ptr64,void * __ptr64)
552?GetAllInstancesAsynch@CWbemProviderGlue@@SAJPEBGPEAVProvider@@P6AJ1PEAVCInstance@@PEAVMethodContext@@PEAX@Z034@Z
553; public: int __cdecl CHString::GetAllocLength(void)const __ptr64
554?GetAllocLength@CHString@@QEBAHXZ
555; public: void * __ptr64 __cdecl CHPtrArray::GetAt(int)const __ptr64
556?GetAt@CHPtrArray@@QEBAPEAXH@Z
557; public: unsigned short __cdecl CHString::GetAt(int)const __ptr64
558?GetAt@CHString@@QEBAGH@Z
559; public: class CHString __cdecl CHStringArray::GetAt(int)const __ptr64
560?GetAt@CHStringArray@@QEBA?AVCHString@@H@Z
561; public: unsigned short * __ptr64 __cdecl WBEMTime::GetBSTR(void)const __ptr64
562?GetBSTR@WBEMTime@@QEBAPEAGXZ
563; public: unsigned short * __ptr64 __cdecl WBEMTimeSpan::GetBSTR(void)const __ptr64
564?GetBSTR@WBEMTimeSpan@@QEBAPEAGXZ
565; public: unsigned short * __ptr64 __cdecl CHString::GetBuffer(int) __ptr64
566?GetBuffer@CHString@@QEAAPEAGH@Z
567; public: unsigned short * __ptr64 __cdecl CHString::GetBufferSetLength(int) __ptr64
568?GetBufferSetLength@CHString@@QEAAPEAGH@Z
569; public: bool __cdecl CInstance::GetByte(unsigned short const * __ptr64,unsigned char & __ptr64)const __ptr64
570?GetByte@CInstance@@QEBA_NPEBGAEAE@Z
571; public: bool __cdecl CInstance::GetCHString(unsigned short const * __ptr64,class CHString & __ptr64)const __ptr64
572?GetCHString@CInstance@@QEBA_NPEBGAEAVCHString@@@Z
573; public: static unsigned short const * __ptr64 __cdecl CWbemProviderGlue::GetCSDVersion(void)
574?GetCSDVersion@CWbemProviderGlue@@SAPEBGXZ
575; public: unsigned short * __ptr64 __cdecl CRegistry::GetClassNameW(void) __ptr64
576?GetClassNameW@CRegistry@@QEAAPEAGXZ
577; public: struct IWbemClassObject * __ptr64 __cdecl CInstance::GetClassObjectInterface(void) __ptr64
578?GetClassObjectInterface@CInstance@@QEAAPEAUIWbemClassObject@@XZ
579; private: struct IWbemClassObject * __ptr64 __cdecl Provider::GetClassObjectInterface(class MethodContext * __ptr64) __ptr64
580?GetClassObjectInterface@Provider@@AEAAPEAUIWbemClassObject@@PEAVMethodContext@@@Z
581; private: static void __cdecl CWbemProviderGlue::GetComputerNameW(class CHString & __ptr64)
582?GetComputerNameW@CWbemProviderGlue@@CAXAEAVCHString@@@Z
583; public: unsigned long __cdecl CRegistry::GetCurrentBinaryKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64) __ptr64
584?GetCurrentBinaryKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBGPEAEPEAK@Z
585; public: unsigned long __cdecl CRegistry::GetCurrentBinaryKeyValue(unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
586?GetCurrentBinaryKeyValue@CRegistry@@QEAAKPEBGAEAVCHString@@@Z
587; public: unsigned long __cdecl CRegistry::GetCurrentBinaryKeyValue(unsigned short const * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64) __ptr64
588?GetCurrentBinaryKeyValue@CRegistry@@QEAAKPEBGPEAEPEAK@Z
589; public: unsigned long __cdecl CRegistry::GetCurrentKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long & __ptr64) __ptr64
590?GetCurrentKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBGAEAK@Z
591; public: unsigned long __cdecl CRegistry::GetCurrentKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
592?GetCurrentKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBGAEAVCHString@@@Z
593; public: unsigned long __cdecl CRegistry::GetCurrentKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,class CHStringArray & __ptr64) __ptr64
594?GetCurrentKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBGAEAVCHStringArray@@@Z
595; public: unsigned long __cdecl CRegistry::GetCurrentKeyValue(unsigned short const * __ptr64,unsigned long & __ptr64) __ptr64
596?GetCurrentKeyValue@CRegistry@@QEAAKPEBGAEAK@Z
597; public: unsigned long __cdecl CRegistry::GetCurrentKeyValue(unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
598?GetCurrentKeyValue@CRegistry@@QEAAKPEBGAEAVCHString@@@Z
599; public: unsigned long __cdecl CRegistry::GetCurrentKeyValue(unsigned short const * __ptr64,class CHStringArray & __ptr64) __ptr64
600?GetCurrentKeyValue@CRegistry@@QEAAKPEBGAEAVCHStringArray@@@Z
601; private: unsigned long __cdecl CRegistry::GetCurrentRawKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,void * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
602?GetCurrentRawKeyValue@CRegistry@@AEAAKPEAUHKEY__@@PEBGPEAXPEAK3@Z
603; private: unsigned long __cdecl CRegistry::GetCurrentRawSubKeyValue(unsigned short const * __ptr64,void * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
604?GetCurrentRawSubKeyValue@CRegistry@@AEAAKPEBGPEAXPEAK2@Z
605; public: unsigned long __cdecl CRegistry::GetCurrentSubKeyCount(void) __ptr64
606?GetCurrentSubKeyCount@CRegistry@@QEAAKXZ
607; public: unsigned long __cdecl CRegistry::GetCurrentSubKeyName(class CHString & __ptr64) __ptr64
608?GetCurrentSubKeyName@CRegistry@@QEAAKAEAVCHString@@@Z
609; public: unsigned long __cdecl CRegistry::GetCurrentSubKeyPath(class CHString & __ptr64) __ptr64
610?GetCurrentSubKeyPath@CRegistry@@QEAAKAEAVCHString@@@Z
611; public: unsigned long __cdecl CRegistry::GetCurrentSubKeyValue(unsigned short const * __ptr64,unsigned long & __ptr64) __ptr64
612?GetCurrentSubKeyValue@CRegistry@@QEAAKPEBGAEAK@Z
613; public: unsigned long __cdecl CRegistry::GetCurrentSubKeyValue(unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
614?GetCurrentSubKeyValue@CRegistry@@QEAAKPEBGAEAVCHString@@@Z
615; public: unsigned long __cdecl CRegistry::GetCurrentSubKeyValue(unsigned short const * __ptr64,void * __ptr64,unsigned long * __ptr64) __ptr64
616?GetCurrentSubKeyValue@CRegistry@@QEAAKPEBGPEAXPEAK@Z
617; public: unsigned short * __ptr64 __cdecl WBEMTime::GetDMTF(int)const __ptr64
618?GetDMTF@WBEMTime@@QEBAPEAGH@Z
619; public: unsigned short * __ptr64 __cdecl WBEMTime::GetDMTFNonNtfs(void)const __ptr64
620?GetDMTFNonNtfs@WBEMTime@@QEBAPEAGXZ
621; public: bool __cdecl CInstance::GetDOUBLE(unsigned short const * __ptr64,double & __ptr64)const __ptr64
622?GetDOUBLE@CInstance@@QEBA_NPEBGAEAN@Z
623; public: bool __cdecl CInstance::GetDWORD(unsigned short const * __ptr64,unsigned long & __ptr64)const __ptr64
624?GetDWORD@CInstance@@QEBA_NPEBGAEAK@Z
625; public: void * __ptr64 * __ptr64 __cdecl CHPtrArray::GetData(void) __ptr64
626?GetData@CHPtrArray@@QEAAPEAPEAXXZ
627; public: void const * __ptr64 * __ptr64 __cdecl CHPtrArray::GetData(void)const __ptr64
628?GetData@CHPtrArray@@QEBAPEAPEBXXZ
629; protected: struct CHStringData * __ptr64 __cdecl CHString::GetData(void)const __ptr64
630?GetData@CHString@@IEBAPEAUCHStringData@@XZ
631; public: class CHString * __ptr64 __cdecl CHStringArray::GetData(void) __ptr64
632?GetData@CHStringArray@@QEAAPEAVCHString@@XZ
633; public: class CHString const * __ptr64 __cdecl CHStringArray::GetData(void)const __ptr64
634?GetData@CHStringArray@@QEBAPEBVCHString@@XZ
635; public: bool __cdecl CInstance::GetDateTime(unsigned short const * __ptr64,class WBEMTime & __ptr64)const __ptr64
636?GetDateTime@CInstance@@QEBA_NPEBGAEAVWBEMTime@@@Z
637; public: bool __cdecl CInstance::GetEmbeddedObject(unsigned short const * __ptr64,class CInstance * __ptr64 * __ptr64,class MethodContext * __ptr64)const __ptr64
638?GetEmbeddedObject@CInstance@@QEBA_NPEBGPEAPEAV1@PEAVMethodContext@@@Z
639; public: static long __cdecl CWbemProviderGlue::GetEmptyInstance(class MethodContext * __ptr64,unsigned short const * __ptr64,class CInstance * __ptr64 * __ptr64,unsigned short const * __ptr64)
640?GetEmptyInstance@CWbemProviderGlue@@SAJPEAVMethodContext@@PEBGPEAPEAVCInstance@@1@Z
641; public: static long __cdecl CWbemProviderGlue::GetEmptyInstance(unsigned short const * __ptr64,class CInstance * __ptr64 * __ptr64,unsigned short const * __ptr64)
642?GetEmptyInstance@CWbemProviderGlue@@SAJPEBGPEAPEAVCInstance@@0@Z
643; public: int __cdecl WBEMTime::GetFILETIME(struct _FILETIME * __ptr64)const __ptr64
644?GetFILETIME@WBEMTime@@QEBAHPEAU_FILETIME@@@Z
645; public: int __cdecl WBEMTimeSpan::GetFILETIME(struct _FILETIME * __ptr64)const __ptr64
646?GetFILETIME@WBEMTimeSpan@@QEBAHPEAU_FILETIME@@@Z
647; public: virtual struct IWbemContext * __ptr64 __cdecl MethodContext::GetIWBEMContext(void) __ptr64
648?GetIWBEMContext@MethodContext@@UEAAPEAUIWbemContext@@XZ
649; public: static long __cdecl CWbemProviderGlue::GetInstanceByPath(unsigned short const * __ptr64,class CInstance * __ptr64 * __ptr64,class MethodContext * __ptr64)
650?GetInstanceByPath@CWbemProviderGlue@@SAJPEBGPEAPEAVCInstance@@PEAVMethodContext@@@Z
651; private: static long __cdecl CWbemProviderGlue::GetInstanceFromCIMOM(unsigned short const * __ptr64,unsigned short const * __ptr64,class MethodContext * __ptr64,class CInstance * __ptr64 * __ptr64)
652?GetInstanceFromCIMOM@CWbemProviderGlue@@CAJPEBG0PEAVMethodContext@@PEAPEAVCInstance@@@Z
653; public: static long __cdecl CWbemProviderGlue::GetInstanceKeysByPath(unsigned short const * __ptr64,class CInstance * __ptr64 * __ptr64,class MethodContext * __ptr64)
654?GetInstanceKeysByPath@CWbemProviderGlue@@SAJPEBGPEAPEAVCInstance@@PEAVMethodContext@@@Z
655; public: static long __cdecl CWbemProviderGlue::GetInstancePropertiesByPath(unsigned short const * __ptr64,class CInstance * __ptr64 * __ptr64,class MethodContext * __ptr64,class CHStringArray & __ptr64)
656?GetInstancePropertiesByPath@CWbemProviderGlue@@SAJPEBGPEAPEAVCInstance@@PEAVMethodContext@@AEAVCHStringArray@@@Z
657; public: static long __cdecl CWbemProviderGlue::GetInstancesByQuery(unsigned short const * __ptr64,class TRefPointerCollection<class CInstance> * __ptr64,class MethodContext * __ptr64,unsigned short const * __ptr64)
658?GetInstancesByQuery@CWbemProviderGlue@@SAJPEBGPEAV?$TRefPointerCollection@VCInstance@@@@PEAVMethodContext@@0@Z
659; public: static long __cdecl CWbemProviderGlue::GetInstancesByQueryAsynch(unsigned short const * __ptr64,class Provider * __ptr64,long (__cdecl*)(class Provider * __ptr64,class CInstance * __ptr64,class MethodContext * __ptr64,void * __ptr64),unsigned short const * __ptr64,class MethodContext * __ptr64,void * __ptr64)
660?GetInstancesByQueryAsynch@CWbemProviderGlue@@SAJPEBGPEAVProvider@@P6AJ1PEAVCInstance@@PEAVMethodContext@@PEAX@Z034@Z
661; public: unsigned short * __ptr64 __cdecl ParsedObjectPath::GetKeyString(void) __ptr64
662?GetKeyString@ParsedObjectPath@@QEAAPEAGXZ
663; public: int __cdecl CHString::GetLength(void)const __ptr64
664?GetLength@CHString@@QEBAHXZ
665; protected: class CHString const & __ptr64 __cdecl Provider::GetLocalComputerName(void) __ptr64
666?GetLocalComputerName@Provider@@IEAAAEBVCHString@@XZ
667; protected: bool __cdecl Provider::GetLocalInstancePath(class CInstance const * __ptr64,class CHString & __ptr64) __ptr64
668?GetLocalInstancePath@Provider@@IEAA_NPEBVCInstance@@AEAVCHString@@@Z
669; public: static long __cdecl WBEMTime::GetLocalOffsetForDate(__int64 const & __ptr64)
670?GetLocalOffsetForDate@WBEMTime@@SAJAEB_J@Z
671; public: static long __cdecl WBEMTime::GetLocalOffsetForDate(struct _FILETIME const * __ptr64)
672?GetLocalOffsetForDate@WBEMTime@@SAJPEBU_FILETIME@@@Z
673; public: static long __cdecl WBEMTime::GetLocalOffsetForDate(struct _SYSTEMTIME const * __ptr64)
674?GetLocalOffsetForDate@WBEMTime@@SAJPEBU_SYSTEMTIME@@@Z
675; public: static long __cdecl WBEMTime::GetLocalOffsetForDate(struct tm const * __ptr64)
676?GetLocalOffsetForDate@WBEMTime@@SAJPEBUtm@@@Z
677; public: unsigned long __cdecl CRegistry::GetLongestClassStringSize(void) __ptr64
678?GetLongestClassStringSize@CRegistry@@QEAAKXZ
679; public: unsigned long __cdecl CRegistry::GetLongestSubKeySize(void) __ptr64
680?GetLongestSubKeySize@CRegistry@@QEAAKXZ
681; public: unsigned long __cdecl CRegistry::GetLongestValueData(void) __ptr64
682?GetLongestValueData@CRegistry@@QEAAKXZ
683; public: unsigned long __cdecl CRegistry::GetLongestValueName(void) __ptr64
684?GetLongestValueName@CRegistry@@QEAAKXZ
685; protected: static long * __ptr64 __cdecl CWbemProviderGlue::GetMapCountPtr(class CWbemGlueFactory const * __ptr64)
686?GetMapCountPtr@CWbemProviderGlue@@KAPEAJPEBVCWbemGlueFactory@@@Z
687; public: class MethodContext * __ptr64 __cdecl CInstance::GetMethodContext(void)const __ptr64
688?GetMethodContext@CInstance@@QEBAPEAVMethodContext@@XZ
689; protected: class CHString const & __ptr64 __cdecl CFrameworkQuery::GetNamespace(void) __ptr64
690?GetNamespace@CFrameworkQuery@@IEAAAEBVCHString@@XZ
691; protected: class CHString const & __ptr64 __cdecl Provider::GetNamespace(void) __ptr64
692?GetNamespace@Provider@@IEAAAEBVCHString@@XZ
693; public: static struct IWbemServices * __ptr64 __cdecl CWbemProviderGlue::GetNamespaceConnection(unsigned short const * __ptr64)
694?GetNamespaceConnection@CWbemProviderGlue@@SAPEAUIWbemServices@@PEBG@Z
695; public: static struct IWbemServices * __ptr64 __cdecl CWbemProviderGlue::GetNamespaceConnection(unsigned short const * __ptr64,class MethodContext * __ptr64)
696?GetNamespaceConnection@CWbemProviderGlue@@SAPEAUIWbemServices@@PEBGPEAVMethodContext@@@Z
697; public: unsigned short * __ptr64 __cdecl ParsedObjectPath::GetNamespacePart(void) __ptr64
698?GetNamespacePart@ParsedObjectPath@@QEAAPEAGXZ
699; public: static unsigned long __cdecl CWbemProviderGlue::GetOSMajorVersion(void)
700?GetOSMajorVersion@CWbemProviderGlue@@SAKXZ
701; public: virtual long __cdecl CWbemProviderGlue::GetObject(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,struct IWbemCallResult * __ptr64 * __ptr64) __ptr64
702?GetObject@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAPEAUIWbemClassObject@@PEAPEAUIWbemCallResult@@@Z
703; private: long __cdecl Provider::GetObject(struct ParsedObjectPath * __ptr64,class MethodContext * __ptr64,long) __ptr64
704?GetObject@Provider@@AEAAJPEAUParsedObjectPath@@PEAVMethodContext@@J@Z
705; protected: virtual long __cdecl Provider::GetObject(class CInstance * __ptr64,long) __ptr64
706?GetObject@Provider@@MEAAJPEAVCInstance@@J@Z
707; protected: virtual long __cdecl Provider::GetObject(class CInstance * __ptr64,long,class CFrameworkQuery & __ptr64) __ptr64
708?GetObject@Provider@@MEAAJPEAVCInstance@@JAEAVCFrameworkQuery@@@Z
709; public: virtual long __cdecl CWbemProviderGlue::GetObjectAsync(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
710?GetObjectAsync@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
711; public: unsigned short * __ptr64 __cdecl ParsedObjectPath::GetParentNamespacePart(void) __ptr64
712?GetParentNamespacePart@ParsedObjectPath@@QEAAPEAGXZ
713; public: static unsigned long __cdecl CWbemProviderGlue::GetPlatform(void)
714?GetPlatform@CWbemProviderGlue@@SAKXZ
715; public: void __cdecl CFrameworkQueryEx::GetPropertyBitMask(class CHPtrArray const & __ptr64,void * __ptr64) __ptr64
716?GetPropertyBitMask@CFrameworkQueryEx@@QEAAXAEBVCHPtrArray@@PEAX@Z
717; private: class CWbemProviderGlue * __ptr64 __cdecl MethodContext::GetProviderGlue(void) __ptr64
718?GetProviderGlue@MethodContext@@AEAAPEAVCWbemProviderGlue@@XZ
719; protected: class CHString const & __ptr64 __cdecl Provider::GetProviderName(void) __ptr64
720?GetProviderName@Provider@@IEAAAEBVCHString@@XZ
721; public: class CHString const & __ptr64 __cdecl CFrameworkQuery::GetQuery(void) __ptr64
722?GetQuery@CFrameworkQuery@@QEAAAEBVCHString@@XZ
723; public: unsigned short * __ptr64 __cdecl CFrameworkQuery::GetQueryClassName(void) __ptr64
724?GetQueryClassName@CFrameworkQuery@@QEAAPEAGXZ
725; public: static unsigned short * __ptr64 __cdecl CObjectPathParser::GetRelativePath(unsigned short * __ptr64)
726?GetRelativePath@CObjectPathParser@@SAPEAGPEAG@Z
727; public: void __cdecl CFrameworkQuery::GetRequiredProperties(class CHStringArray & __ptr64) __ptr64
728?GetRequiredProperties@CFrameworkQuery@@QEAAXAEAVCHStringArray@@@Z
729; public: int __cdecl WBEMTime::GetSYSTEMTIME(struct _SYSTEMTIME * __ptr64)const __ptr64
730?GetSYSTEMTIME@WBEMTime@@QEBAHPEAU_SYSTEMTIME@@@Z
731; public: int __cdecl CHPtrArray::GetSize(void)const __ptr64
732?GetSize@CHPtrArray@@QEBAHXZ
733; public: int __cdecl CHStringArray::GetSize(void)const __ptr64
734?GetSize@CHStringArray@@QEBAHXZ
735; public: bool __cdecl CInstance::GetStatus(unsigned short const * __ptr64,bool & __ptr64,unsigned short & __ptr64)const __ptr64
736?GetStatus@CInstance@@QEBA_NPEBGAEA_NAEAG@Z
737; private: static struct IWbemClassObject * __ptr64 __cdecl CWbemProviderGlue::GetStatusObject(class MethodContext * __ptr64,unsigned short const * __ptr64)
738?GetStatusObject@CWbemProviderGlue@@CAPEAUIWbemClassObject@@PEAVMethodContext@@PEBG@Z
739; public: struct IWbemClassObject * __ptr64 __cdecl MethodContext::GetStatusObject(void) __ptr64
740?GetStatusObject@MethodContext@@QEAAPEAUIWbemClassObject@@XZ
741; public: bool __cdecl CInstance::GetStringArray(unsigned short const * __ptr64,struct tagSAFEARRAY * __ptr64 & __ptr64)const __ptr64
742?GetStringArray@CInstance@@QEBA_NPEBGAEAPEAUtagSAFEARRAY@@@Z
743; public: int __cdecl WBEMTime::GetStructtm(struct tm * __ptr64)const __ptr64
744?GetStructtm@WBEMTime@@QEBAHPEAUtm@@@Z
745; public: unsigned __int64 __cdecl WBEMTime::GetTime(void)const __ptr64
746?GetTime@WBEMTime@@QEBA_KXZ
747; public: unsigned __int64 __cdecl WBEMTimeSpan::GetTime(void)const __ptr64
748?GetTime@WBEMTimeSpan@@QEBA_KXZ
749; public: bool __cdecl CInstance::GetTimeSpan(unsigned short const * __ptr64,class WBEMTimeSpan & __ptr64)const __ptr64
750?GetTimeSpan@CInstance@@QEBA_NPEBGAEAVWBEMTimeSpan@@@Z
751; public: int __cdecl CHPtrArray::GetUpperBound(void)const __ptr64
752?GetUpperBound@CHPtrArray@@QEBAHXZ
753; public: int __cdecl CHStringArray::GetUpperBound(void)const __ptr64
754?GetUpperBound@CHStringArray@@QEBAHXZ
755; public: unsigned long __cdecl CRegistry::GetValueCount(void) __ptr64
756?GetValueCount@CRegistry@@QEAAKXZ
757; public: long __cdecl CFrameworkQuery::GetValuesForProp(unsigned short const * __ptr64,class std::vector<class _bstr_t,class std::allocator<class _bstr_t> > & __ptr64) __ptr64
758?GetValuesForProp@CFrameworkQuery@@QEAAJPEBGAEAV?$vector@V_bstr_t@@V?$allocator@V_bstr_t@@@std@@@std@@@Z
759; public: long __cdecl CFrameworkQuery::GetValuesForProp(unsigned short const * __ptr64,class CHStringArray & __ptr64) __ptr64
760?GetValuesForProp@CFrameworkQuery@@QEAAJPEBGAEAVCHStringArray@@@Z
761; public: long __cdecl CFrameworkQueryEx::GetValuesForProp(unsigned short const * __ptr64,class std::vector<int,class std::allocator<int> > & __ptr64) __ptr64
762?GetValuesForProp@CFrameworkQueryEx@@QEAAJPEBGAEAV?$vector@HV?$allocator@H@std@@@std@@@Z
763; public: long __cdecl CFrameworkQueryEx::GetValuesForProp(unsigned short const * __ptr64,class std::vector<class _variant_t,class std::allocator<class _variant_t> > & __ptr64) __ptr64
764?GetValuesForProp@CFrameworkQueryEx@@QEAAJPEBGAEAV?$vector@V_variant_t@@V?$allocator@V_variant_t@@@std@@@std@@@Z
765; public: bool __cdecl CInstance::GetVariant(unsigned short const * __ptr64,struct tagVARIANT & __ptr64)const __ptr64
766?GetVariant@CInstance@@QEBA_NPEBGAEAUtagVARIANT@@@Z
767; public: bool __cdecl CInstance::GetWBEMINT16(unsigned short const * __ptr64,short & __ptr64)const __ptr64
768?GetWBEMINT16@CInstance@@QEBA_NPEBGAEAF@Z
769; public: bool __cdecl CInstance::GetWBEMINT64(unsigned short const * __ptr64,class CHString & __ptr64)const __ptr64
770?GetWBEMINT64@CInstance@@QEBA_NPEBGAEAVCHString@@@Z
771; public: bool __cdecl CInstance::GetWBEMINT64(unsigned short const * __ptr64,__int64 & __ptr64)const __ptr64
772?GetWBEMINT64@CInstance@@QEBA_NPEBGAEA_J@Z
773; public: bool __cdecl CInstance::GetWBEMINT64(unsigned short const * __ptr64,unsigned __int64 & __ptr64)const __ptr64
774?GetWBEMINT64@CInstance@@QEBA_NPEBGAEA_K@Z
775; public: bool __cdecl CInstance::GetWCHAR(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64)const __ptr64
776?GetWCHAR@CInstance@@QEBA_NPEBGPEAPEAG@Z
777; public: bool __cdecl CInstance::GetWORD(unsigned short const * __ptr64,unsigned short & __ptr64)const __ptr64
778?GetWORD@CInstance@@QEBA_NPEBGAEAG@Z
779; public: bool __cdecl CInstance::Getbool(unsigned short const * __ptr64,bool & __ptr64)const __ptr64
780?Getbool@CInstance@@QEBA_NPEBGAEA_N@Z
781; public: struct HKEY__ * __ptr64 __cdecl CRegistry::GethKey(void) __ptr64
782?GethKey@CRegistry@@QEAAPEAUHKEY__@@XZ
783; public: int __cdecl WBEMTime::Gettime_t(__int64 * __ptr64)const __ptr64
784?Gettime_t@WBEMTime@@QEBAHPEA_J@Z
785; public: int __cdecl WBEMTimeSpan::Gettime_t(__int64 * __ptr64)const __ptr64
786?Gettime_t@WBEMTimeSpan@@QEBAHPEA_J@Z
787; protected: static long __cdecl CWbemProviderGlue::IncrementMapCount(long * __ptr64)
788?IncrementMapCount@CWbemProviderGlue@@KAJPEAJ@Z
789; protected: static long __cdecl CWbemProviderGlue::IncrementMapCount(class CWbemGlueFactory const * __ptr64)
790?IncrementMapCount@CWbemProviderGlue@@KAJPEBVCWbemGlueFactory@@@Z
791; public: static void __cdecl CWbemProviderGlue::IncrementObjectCount(void)
792?IncrementObjectCount@CWbemProviderGlue@@SAXXZ
793; public: void __cdecl CFrameworkQuery::Init2(struct IWbemClassObject * __ptr64) __ptr64
794?Init2@CFrameworkQuery@@QEAAXPEAUIWbemClassObject@@@Z
795; public: long __cdecl CFrameworkQuery::Init(struct ParsedObjectPath * __ptr64,struct IWbemContext * __ptr64,unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
796?Init@CFrameworkQuery@@QEAAJPEAUParsedObjectPath@@PEAUIWbemContext@@PEBGAEAVCHString@@@Z
797; public: long __cdecl CFrameworkQuery::Init(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,class CHString & __ptr64) __ptr64
798?Init@CFrameworkQuery@@QEAAJQEAG0JAEAVCHString@@@Z
799; protected: void __cdecl CHString::Init(void) __ptr64
800?Init@CHString@@IEAAXXZ
801; private: static void __cdecl CWbemProviderGlue::Init(void)
802?Init@CWbemProviderGlue@@CAXXZ
803; private: static void __cdecl Provider::InitComputerName(void)
804?InitComputerName@Provider@@CAXXZ
805; public: virtual long __cdecl CFrameworkQueryEx::InitEx(unsigned short * __ptr64 const,unsigned short * __ptr64 const,long,class CHString & __ptr64) __ptr64
806?InitEx@CFrameworkQueryEx@@UEAAJQEAG0JAEAVCHString@@@Z
807; public: virtual long __cdecl CWbemProviderGlue::Initialize(unsigned short * __ptr64,long,unsigned short * __ptr64,unsigned short * __ptr64,struct IWbemServices * __ptr64,struct IWbemContext * __ptr64,struct IWbemProviderInitSink * __ptr64) __ptr64
808?Initialize@CWbemProviderGlue@@UEAAJPEAGJ00PEAUIWbemServices@@PEAUIWbemContext@@PEAUIWbemProviderInitSink@@@Z
809; public: void __cdecl CHPtrArray::InsertAt(int,class CHPtrArray * __ptr64) __ptr64
810?InsertAt@CHPtrArray@@QEAAXHPEAV1@@Z
811; public: void __cdecl CHPtrArray::InsertAt(int,void * __ptr64,int) __ptr64
812?InsertAt@CHPtrArray@@QEAAXHPEAXH@Z
813; public: void __cdecl CHStringArray::InsertAt(int,class CHStringArray * __ptr64) __ptr64
814?InsertAt@CHStringArray@@QEAAXHPEAV1@@Z
815; public: void __cdecl CHStringArray::InsertAt(int,unsigned short const * __ptr64,int) __ptr64
816?InsertAt@CHStringArray@@QEAAXHPEBGH@Z
817; private: struct IWbemServices * __ptr64 __cdecl CWbemProviderGlue::InternalGetNamespaceConnection(unsigned short const * __ptr64) __ptr64
818?InternalGetNamespaceConnection@CWbemProviderGlue@@AEAAPEAUIWbemServices@@PEBG@Z
819; public: int __cdecl CFrameworkQueryEx::Is3TokenOR(unsigned short const * __ptr64,unsigned short const * __ptr64,struct tagVARIANT & __ptr64,struct tagVARIANT & __ptr64) __ptr64
820?Is3TokenOR@CFrameworkQueryEx@@QEAAHPEBG0AEAUtagVARIANT@@1@Z
821; public: int __cdecl ParsedObjectPath::IsClass(void) __ptr64
822?IsClass@ParsedObjectPath@@QEAAHXZ
823; public: static bool __cdecl CWbemProviderGlue::IsDerivedFrom(unsigned short const * __ptr64,unsigned short const * __ptr64,class MethodContext * __ptr64,unsigned short const * __ptr64)
824?IsDerivedFrom@CWbemProviderGlue@@SA_NPEBG0PEAVMethodContext@@0@Z
825; public: int __cdecl CHString::IsEmpty(void)const __ptr64
826?IsEmpty@CHString@@QEBAHXZ
827; public: virtual bool __cdecl CFrameworkQueryEx::IsExtended(void) __ptr64
828?IsExtended@CFrameworkQueryEx@@UEAA_NXZ
829; protected: unsigned long __cdecl CFrameworkQuery::IsInList(class CHStringArray const & __ptr64,unsigned short const * __ptr64) __ptr64
830?IsInList@CFrameworkQuery@@IEAAKAEBVCHStringArray@@PEBG@Z
831; public: int __cdecl ParsedObjectPath::IsInstance(void) __ptr64
832?IsInstance@ParsedObjectPath@@QEAAHXZ
833; public: int __cdecl ParsedObjectPath::IsLocal(unsigned short const * __ptr64) __ptr64
834?IsLocal@ParsedObjectPath@@QEAAHPEBG@Z
835; public: enum ProviderLog::LogLevel __cdecl ProviderLog::IsLoggingOn(class CHString * __ptr64) __ptr64
836?IsLoggingOn@ProviderLog@@QEAA?AW4LogLevel@1@PEAVCHString@@@Z
837; public: int __cdecl CFrameworkQueryEx::IsNTokenAnd(class CHStringArray & __ptr64,class CHPtrArray & __ptr64) __ptr64
838?IsNTokenAnd@CFrameworkQueryEx@@QEAAHAEAVCHStringArray@@AEAVCHPtrArray@@@Z
839; public: bool __cdecl CInstance::IsNull(unsigned short const * __ptr64)const __ptr64
840?IsNull@CInstance@@QEBA_NPEBG@Z
841; public: int __cdecl ParsedObjectPath::IsObject(void) __ptr64
842?IsObject@ParsedObjectPath@@QEAAHXZ
843; public: bool __cdecl WBEMTime::IsOk(void)const __ptr64
844?IsOk@WBEMTime@@QEBA_NXZ
845; public: bool __cdecl WBEMTimeSpan::IsOk(void)const __ptr64
846?IsOk@WBEMTimeSpan@@QEBA_NXZ
847; public: bool __cdecl CFrameworkQuery::IsPropertyRequired(unsigned short const * __ptr64) __ptr64
848?IsPropertyRequired@CFrameworkQuery@@QEAA_NPEBG@Z
849; protected: int __cdecl CFrameworkQuery::IsReference(unsigned short const * __ptr64) __ptr64
850?IsReference@CFrameworkQuery@@IEAAHPEBG@Z
851; public: int __cdecl ParsedObjectPath::IsRelative(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
852?IsRelative@ParsedObjectPath@@QEAAHPEBG0@Z
853; public: bool __cdecl CFrameworkQuery::KeysOnly(void) __ptr64
854?KeysOnly@CFrameworkQuery@@QEAA_NXZ
855; public: class CHString __cdecl CHString::Left(int)const __ptr64
856?Left@CHString@@QEBA?AV1@H@Z
857; protected: int __cdecl CHString::LoadStringW(unsigned int,unsigned short * __ptr64,unsigned int) __ptr64
858?LoadStringW@CHString@@IEAAHIPEAGI@Z
859; public: int __cdecl CHString::LoadStringW(unsigned int) __ptr64
860?LoadStringW@CHString@@QEAAHI@Z
861; public: void __cdecl ProviderLog::LocalLogMessage(unsigned short const * __ptr64,unsigned short const * __ptr64,int,enum ProviderLog::LogLevel) __ptr64
862?LocalLogMessage@ProviderLog@@QEAAXPEBG0HW4LogLevel@1@@Z
863; public: void __cdecl ProviderLog::LocalLogMessage(unsigned short const * __ptr64,int,enum ProviderLog::LogLevel,unsigned short const * __ptr64,...) __ptr64
864?LocalLogMessage@ProviderLog@@QEAAXPEBGHW4LogLevel@1@0ZZ
865; public: int __cdecl CRegistrySearch::LocateKeyByNameOrValueName(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64 * __ptr64,unsigned long,class CHString & __ptr64,class CHString & __ptr64) __ptr64
866?LocateKeyByNameOrValueName@CRegistrySearch@@QEAAHPEAUHKEY__@@PEBG1PEAPEBGKAEAVCHString@@3@Z
867; private: void __cdecl CThreadBase::Lock(void) __ptr64
868?Lock@CThreadBase@@AEAAXXZ
869; public: unsigned short * __ptr64 __cdecl CHString::LockBuffer(void) __ptr64
870?LockBuffer@CHString@@QEAAPEAGXZ
871; private: static void __cdecl CWbemProviderGlue::LockFactoryMap(void)
872?LockFactoryMap@CWbemProviderGlue@@CAXXZ
873; private: static void __cdecl CWbemProviderGlue::LockProviderMap(void)
874?LockProviderMap@CWbemProviderGlue@@CAXXZ
875; public: virtual long __cdecl CWbemGlueFactory::LockServer(int) __ptr64
876?LockServer@CWbemGlueFactory@@UEAAJH@Z
877; protected: void __cdecl CInstance::LogError(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,long)const __ptr64
878?LogError@CInstance@@IEBAXPEBG00J@Z
879; protected: class CHString __cdecl Provider::MakeLocalPath(class CHString const & __ptr64) __ptr64
880?MakeLocalPath@Provider@@IEAA?AVCHString@@AEBV2@@Z
881; public: void __cdecl CHString::MakeLower(void) __ptr64
882?MakeLower@CHString@@QEAAXXZ
883; public: void __cdecl CHString::MakeReverse(void) __ptr64
884?MakeReverse@CHString@@QEAAXXZ
885; public: void __cdecl CHString::MakeUpper(void) __ptr64
886?MakeUpper@CHString@@QEAAXXZ
887; public: class CHString __cdecl CHString::Mid(int)const __ptr64
888?Mid@CHString@@QEBA?AV1@H@Z
889; public: class CHString __cdecl CHString::Mid(int,int)const __ptr64
890?Mid@CHString@@QEBA?AV1@HH@Z
891; private: static __int64 __cdecl CWinMsgEvent::MsgWndProc(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64)
892?MsgWndProc@CWinMsgEvent@@CA_JPEAUHWND__@@I_K_J@Z
893; public: unsigned long __cdecl CRegistry::NextSubKey(void) __ptr64
894?NextSubKey@CRegistry@@QEAAKXZ
895; private: int __cdecl CObjectPathParser::NextToken(void) __ptr64
896?NextToken@CObjectPathParser@@AEAAHXZ
897; unsigned long __cdecl NormalizePath(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long,class CHString & __ptr64)
898?NormalizePath@@YAKPEBG00KAEAVCHString@@@Z
899; private: long __cdecl CWbemProviderGlue::NullOutUnsetProperties(struct IWbemClassObject * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,struct tagVARIANT const & __ptr64) __ptr64
900?NullOutUnsetProperties@CWbemProviderGlue@@AEAAJPEAUIWbemClassObject@@PEAPEAU2@AEBUtagVARIANT@@@Z
901; protected: virtual void __cdecl CThreadBase::OnFinalRelease(void) __ptr64
902?OnFinalRelease@CThreadBase@@MEAAXXZ
903; public: long __cdecl CRegistry::Open(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
904?Open@CRegistry@@QEAAJPEAUHKEY__@@PEBGK@Z
905; public: long __cdecl CRegistry::OpenAndEnumerateSubKeys(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
906?OpenAndEnumerateSubKeys@CRegistry@@QEAAJPEAUHKEY__@@PEBGK@Z
907; public: unsigned long __cdecl CRegistry::OpenCurrentUser(unsigned short const * __ptr64,unsigned long) __ptr64
908?OpenCurrentUser@CRegistry@@QEAAKPEBGK@Z
909; public: long __cdecl CRegistry::OpenLocalMachineKeyAndReadValue(unsigned short const * __ptr64,unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
910?OpenLocalMachineKeyAndReadValue@CRegistry@@QEAAJPEBG0AEAVCHString@@@Z
911; public: virtual long __cdecl CWbemProviderGlue::OpenNamespace(unsigned short * __ptr64 const,long,struct IWbemContext * __ptr64,struct IWbemServices * __ptr64 * __ptr64,struct IWbemCallResult * __ptr64 * __ptr64) __ptr64
912?OpenNamespace@CWbemProviderGlue@@UEAAJQEAGJPEAUIWbemContext@@PEAPEAUIWbemServices@@PEAPEAUIWbemCallResult@@@Z
913; private: unsigned long __cdecl CRegistry::OpenSubKey(void) __ptr64
914?OpenSubKey@CRegistry@@AEAAKXZ
915; public: int __cdecl CObjectPathParser::Parse(unsigned short const * __ptr64,struct ParsedObjectPath * __ptr64 * __ptr64) __ptr64
916?Parse@CObjectPathParser@@QEAAHPEBGPEAPEAUParsedObjectPath@@@Z
917; private: long __cdecl CWbemProviderGlue::PreProcessPutInstanceParms(struct IWbemClassObject * __ptr64,struct IWbemClassObject * __ptr64 * __ptr64,struct IWbemContext * __ptr64) __ptr64
918?PreProcessPutInstanceParms@CWbemProviderGlue@@AEAAJPEAUIWbemClassObject@@PEAPEAU2@PEAUIWbemContext@@@Z
919; private: void __cdecl CRegistry::PrepareToReOpen(void) __ptr64
920?PrepareToReOpen@CRegistry@@AEAAXXZ
921; public: virtual long __cdecl CWbemProviderGlue::PutClass(struct IWbemClassObject * __ptr64,long,struct IWbemContext * __ptr64,struct IWbemCallResult * __ptr64 * __ptr64) __ptr64
922?PutClass@CWbemProviderGlue@@UEAAJPEAUIWbemClassObject@@JPEAUIWbemContext@@PEAPEAUIWbemCallResult@@@Z
923; public: virtual long __cdecl CWbemProviderGlue::PutClassAsync(struct IWbemClassObject * __ptr64,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
924?PutClassAsync@CWbemProviderGlue@@UEAAJPEAUIWbemClassObject@@JPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
925; public: virtual long __cdecl CWbemProviderGlue::PutInstance(struct IWbemClassObject * __ptr64,long,struct IWbemContext * __ptr64,struct IWbemCallResult * __ptr64 * __ptr64) __ptr64
926?PutInstance@CWbemProviderGlue@@UEAAJPEAUIWbemClassObject@@JPEAUIWbemContext@@PEAPEAUIWbemCallResult@@@Z
927; private: long __cdecl Provider::PutInstance(struct IWbemClassObject * __ptr64,long,class MethodContext * __ptr64) __ptr64
928?PutInstance@Provider@@AEAAJPEAUIWbemClassObject@@JPEAVMethodContext@@@Z
929; protected: virtual long __cdecl Provider::PutInstance(class CInstance const & __ptr64,long) __ptr64
930?PutInstance@Provider@@MEAAJAEBVCInstance@@J@Z
931; public: virtual long __cdecl CWbemProviderGlue::PutInstanceAsync(struct IWbemClassObject * __ptr64,long,struct IWbemContext * __ptr64,struct IWbemObjectSink * __ptr64) __ptr64
932?PutInstanceAsync@CWbemProviderGlue@@UEAAJPEAUIWbemClassObject@@JPEAUIWbemContext@@PEAUIWbemObjectSink@@@Z
933; public: virtual long __cdecl CWbemGlueFactory::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
934?QueryInterface@CWbemGlueFactory@@UEAAJAEBU_GUID@@PEAPEAX@Z
935; public: virtual long __cdecl CWbemProviderGlue::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
936?QueryInterface@CWbemProviderGlue@@UEAAJAEBU_GUID@@PEAPEAX@Z
937; public: virtual long __cdecl CWbemProviderGlue::QueryObjectSink(long,struct IWbemObjectSink * __ptr64 * __ptr64) __ptr64
938?QueryObjectSink@CWbemProviderGlue@@UEAAJJPEAPEAUIWbemObjectSink@@@Z
939; public: virtual void __cdecl MethodContext::QueryPostProcess(void) __ptr64
940?QueryPostProcess@MethodContext@@UEAAXXZ
941; protected: void __cdecl CWinMsgEvent::RegisterForMessage(unsigned int) __ptr64
942?RegisterForMessage@CWinMsgEvent@@IEAAXI@Z
943; protected: void __cdecl CHString::Release(void) __ptr64
944?Release@CHString@@IEAAXXZ
945; protected: static void __cdecl CHString::Release(struct CHStringData * __ptr64)
946?Release@CHString@@KAXPEAUCHStringData@@@Z
947; public: long __cdecl CInstance::Release(void) __ptr64
948?Release@CInstance@@QEAAJXZ
949; public: long __cdecl CThreadBase::Release(void) __ptr64
950?Release@CThreadBase@@QEAAJXZ
951; public: virtual unsigned long __cdecl CWbemGlueFactory::Release(void) __ptr64
952?Release@CWbemGlueFactory@@UEAAKXZ
953; public: virtual unsigned long __cdecl CWbemProviderGlue::Release(void) __ptr64
954?Release@CWbemProviderGlue@@UEAAKXZ
955; public: long __cdecl MethodContext::Release(void) __ptr64
956?Release@MethodContext@@QEAAJXZ
957; public: void __cdecl CHString::ReleaseBuffer(int) __ptr64
958?ReleaseBuffer@CHString@@QEAAXH@Z
959; public: void __cdecl CHPtrArray::RemoveAll(void) __ptr64
960?RemoveAll@CHPtrArray@@QEAAXXZ
961; public: void __cdecl CHStringArray::RemoveAll(void) __ptr64
962?RemoveAll@CHStringArray@@QEAAXXZ
963; public: void __cdecl CHPtrArray::RemoveAt(int,int) __ptr64
964?RemoveAt@CHPtrArray@@QEAAXHH@Z
965; public: void __cdecl CHStringArray::RemoveAt(int,int) __ptr64
966?RemoveAt@CHStringArray@@QEAAXHH@Z
967; protected: static void __cdecl CWbemProviderGlue::RemoveFromFactoryMap(class CWbemGlueFactory const * __ptr64)
968?RemoveFromFactoryMap@CWbemProviderGlue@@KAXPEBVCWbemGlueFactory@@@Z
969; private: void __cdecl CFrameworkQuery::Reset(void) __ptr64
970?Reset@CFrameworkQuery@@AEAAXXZ
971; public: int __cdecl CHString::ReverseFind(unsigned short)const __ptr64
972?ReverseFind@CHString@@QEBAHG@Z
973; public: void __cdecl CRegistry::RewindSubKeys(void) __ptr64
974?RewindSubKeys@CRegistry@@QEAAXXZ
975; public: class CHString __cdecl CHString::Right(int)const __ptr64
976?Right@CHString@@QEBA?AV1@H@Z
977; protected: static int __cdecl CHString::SafeStrlen(unsigned short const * __ptr64)
978?SafeStrlen@CHString@@KAHPEBG@Z
979; public: int __cdecl CRegistrySearch::SearchAndBuildList(class CHString,class CHPtrArray & __ptr64,class CHString,class CHString,int,struct HKEY__ * __ptr64) __ptr64
980?SearchAndBuildList@CRegistrySearch@@QEAAHVCHString@@AEAVCHPtrArray@@00HPEAUHKEY__@@@Z
981; private: static class Provider * __ptr64 __cdecl CWbemProviderGlue::SearchMapForProvider(unsigned short const * __ptr64,unsigned short const * __ptr64)
982?SearchMapForProvider@CWbemProviderGlue@@CAPEAVProvider@@PEBG0@Z
983; public: void __cdecl CHPtrArray::SetAt(int,void * __ptr64) __ptr64
984?SetAt@CHPtrArray@@QEAAXHPEAX@Z
985; public: void __cdecl CHString::SetAt(int,unsigned short) __ptr64
986?SetAt@CHString@@QEAAXHG@Z
987; public: void __cdecl CHStringArray::SetAt(int,unsigned short const * __ptr64) __ptr64
988?SetAt@CHStringArray@@QEAAXHPEBG@Z
989; public: void __cdecl CHPtrArray::SetAtGrow(int,void * __ptr64) __ptr64
990?SetAtGrow@CHPtrArray@@QEAAXHPEAX@Z
991; public: void __cdecl CHStringArray::SetAtGrow(int,unsigned short const * __ptr64) __ptr64
992?SetAtGrow@CHStringArray@@QEAAXHPEBG@Z
993; public: bool __cdecl CInstance::SetByte(unsigned short const * __ptr64,unsigned char) __ptr64
994?SetByte@CInstance@@QEAA_NPEBGE@Z
995; public: bool __cdecl CInstance::SetCHString(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
996?SetCHString@CInstance@@QEAA_NPEBG0@Z
997; public: bool __cdecl CInstance::SetCHString(unsigned short const * __ptr64,class CHString const & __ptr64) __ptr64
998?SetCHString@CInstance@@QEAA_NPEBGAEBVCHString@@@Z
999; public: bool __cdecl CInstance::SetCHString(unsigned short const * __ptr64,char const * __ptr64) __ptr64
1000?SetCHString@CInstance@@QEAA_NPEBGPEBD@Z
1001; void __cdecl SetCHStringResourceHandle(struct HINSTANCE__ * __ptr64)
1002?SetCHStringResourceHandle@@YAXPEAUHINSTANCE__@@@Z
1003; public: bool __cdecl CInstance::SetCharSplat(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1004?SetCharSplat@CInstance@@QEAA_NPEBG0@Z
1005; public: bool __cdecl CInstance::SetCharSplat(unsigned short const * __ptr64,unsigned long) __ptr64
1006?SetCharSplat@CInstance@@QEAA_NPEBGK@Z
1007; public: bool __cdecl CInstance::SetCharSplat(unsigned short const * __ptr64,char const * __ptr64) __ptr64
1008?SetCharSplat@CInstance@@QEAA_NPEBGPEBD@Z
1009; public: int __cdecl ParsedObjectPath::SetClassName(unsigned short const * __ptr64) __ptr64
1010?SetClassName@ParsedObjectPath@@QEAAHPEBG@Z
1011; protected: bool __cdecl Provider::SetCreationClassName(class CInstance * __ptr64) __ptr64
1012?SetCreationClassName@Provider@@IEAA_NPEAVCInstance@@@Z
1013; public: unsigned long __cdecl CRegistry::SetCurrentKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long & __ptr64) __ptr64
1014?SetCurrentKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBGAEAK@Z
1015; public: unsigned long __cdecl CRegistry::SetCurrentKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
1016?SetCurrentKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBGAEAVCHString@@@Z
1017; public: unsigned long __cdecl CRegistry::SetCurrentKeyValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64,class CHStringArray & __ptr64) __ptr64
1018?SetCurrentKeyValue@CRegistry@@QEAAKPEAUHKEY__@@PEBGAEAVCHStringArray@@@Z
1019; public: unsigned long __cdecl CRegistry::SetCurrentKeyValue(unsigned short const * __ptr64,unsigned long & __ptr64) __ptr64
1020?SetCurrentKeyValue@CRegistry@@QEAAKPEBGAEAK@Z
1021; public: unsigned long __cdecl CRegistry::SetCurrentKeyValue(unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
1022?SetCurrentKeyValue@CRegistry@@QEAAKPEBGAEAVCHString@@@Z
1023; public: unsigned long __cdecl CRegistry::SetCurrentKeyValue(unsigned short const * __ptr64,class CHStringArray & __ptr64) __ptr64
1024?SetCurrentKeyValue@CRegistry@@QEAAKPEBGAEAVCHStringArray@@@Z
1025; public: unsigned long __cdecl CRegistry::SetCurrentKeyValueExpand(struct HKEY__ * __ptr64,unsigned short const * __ptr64,class CHString & __ptr64) __ptr64
1026?SetCurrentKeyValueExpand@CRegistry@@QEAAKPEAUHKEY__@@PEBGAEAVCHString@@@Z
1027; public: int __cdecl WBEMTime::SetDMTF(unsigned short * __ptr64 const) __ptr64
1028?SetDMTF@WBEMTime@@QEAAHQEAG@Z
1029; public: bool __cdecl CInstance::SetDOUBLE(unsigned short const * __ptr64,double) __ptr64
1030?SetDOUBLE@CInstance@@QEAA_NPEBGN@Z
1031; public: bool __cdecl CInstance::SetDWORD(unsigned short const * __ptr64,unsigned long) __ptr64
1032?SetDWORD@CInstance@@QEAA_NPEBGK@Z
1033; public: bool __cdecl CInstance::SetDateTime(unsigned short const * __ptr64,class WBEMTime const & __ptr64) __ptr64
1034?SetDateTime@CInstance@@QEAA_NPEBGAEBVWBEMTime@@@Z
1035; private: void __cdecl CRegistry::SetDefaultValues(void) __ptr64
1036?SetDefaultValues@CRegistry@@AEAAXXZ
1037; public: bool __cdecl CInstance::SetEmbeddedObject(unsigned short const * __ptr64,class CInstance & __ptr64) __ptr64
1038?SetEmbeddedObject@CInstance@@QEAA_NPEBGAEAV1@@Z
1039; private: int __cdecl Provider::SetKeyFromParsedObjectPath(class CInstance * __ptr64,struct ParsedObjectPath * __ptr64) __ptr64
1040?SetKeyFromParsedObjectPath@Provider@@AEAAHPEAVCInstance@@PEAUParsedObjectPath@@@Z
1041; public: bool __cdecl CInstance::SetNull(unsigned short const * __ptr64) __ptr64
1042?SetNull@CInstance@@QEAA_NPEBG@Z
1043; private: static int __cdecl CRegistry::SetPlatformID(void)
1044?SetPlatformID@CRegistry@@CAHXZ
1045; public: void __cdecl CHPtrArray::SetSize(int,int) __ptr64
1046?SetSize@CHPtrArray@@QEAAXHH@Z
1047; public: void __cdecl CHStringArray::SetSize(int,int) __ptr64
1048?SetSize@CHStringArray@@QEAAXHH@Z
1049; public: static bool __cdecl CWbemProviderGlue::SetStatusObject(class MethodContext * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,long,struct tagSAFEARRAY const * __ptr64,struct tagSAFEARRAY const * __ptr64)
1050?SetStatusObject@CWbemProviderGlue@@SA_NPEAVMethodContext@@PEBG1JPEBUtagSAFEARRAY@@2@Z
1051; public: bool __cdecl MethodContext::SetStatusObject(struct IWbemClassObject * __ptr64) __ptr64
1052?SetStatusObject@MethodContext@@QEAA_NPEAUIWbemClassObject@@@Z
1053; public: bool __cdecl CInstance::SetStringArray(unsigned short const * __ptr64,struct tagSAFEARRAY const & __ptr64) __ptr64
1054?SetStringArray@CInstance@@QEAA_NPEBGAEBUtagSAFEARRAY@@@Z
1055; public: bool __cdecl CInstance::SetTimeSpan(unsigned short const * __ptr64,class WBEMTimeSpan const & __ptr64) __ptr64
1056?SetTimeSpan@CInstance@@QEAA_NPEBGAEBVWBEMTimeSpan@@@Z
1057; public: bool __cdecl CInstance::SetVariant(unsigned short const * __ptr64,struct tagVARIANT const & __ptr64) __ptr64
1058?SetVariant@CInstance@@QEAA_NPEBGAEBUtagVARIANT@@@Z
1059; public: bool __cdecl CInstance::SetWBEMINT16(unsigned short const * __ptr64,short const & __ptr64) __ptr64
1060?SetWBEMINT16@CInstance@@QEAA_NPEBGAEBF@Z
1061; public: bool __cdecl CInstance::SetWBEMINT64(unsigned short const * __ptr64,class CHString const & __ptr64) __ptr64
1062?SetWBEMINT64@CInstance@@QEAA_NPEBGAEBVCHString@@@Z
1063; public: bool __cdecl CInstance::SetWBEMINT64(unsigned short const * __ptr64,__int64) __ptr64
1064?SetWBEMINT64@CInstance@@QEAA_NPEBG_J@Z
1065; public: bool __cdecl CInstance::SetWBEMINT64(unsigned short const * __ptr64,unsigned __int64) __ptr64
1066?SetWBEMINT64@CInstance@@QEAA_NPEBG_K@Z
1067; public: bool __cdecl CInstance::SetWCHARSplat(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1068?SetWCHARSplat@CInstance@@QEAA_NPEBG0@Z
1069; public: bool __cdecl CInstance::SetWORD(unsigned short const * __ptr64,unsigned short) __ptr64
1070?SetWORD@CInstance@@QEAA_NPEBGG@Z
1071; public: bool __cdecl CInstance::Setbool(unsigned short const * __ptr64,bool) __ptr64
1072?Setbool@CInstance@@QEAA_NPEBG_N@Z
1073; public: int __cdecl CAutoEvent::Signal(void) __ptr64
1074?Signal@CAutoEvent@@QEAAHXZ
1075; public: class CHString __cdecl CHString::SpanExcluding(unsigned short const * __ptr64)const __ptr64
1076?SpanExcluding@CHString@@QEBA?AV1@PEBG@Z
1077; public: class CHString __cdecl CHString::SpanIncluding(unsigned short const * __ptr64)const __ptr64
1078?SpanIncluding@CHString@@QEBA?AV1@PEBG@Z
1079; public: void __cdecl CHString::TrimLeft(void) __ptr64
1080?TrimLeft@CHString@@QEAAXXZ
1081; public: void __cdecl CHString::TrimRight(void) __ptr64
1082?TrimRight@CHString@@QEAAXXZ
1083; private: static void __cdecl CWbemProviderGlue::UnInit(void)
1084?UnInit@CWbemProviderGlue@@CAXXZ
1085; protected: void __cdecl CWinMsgEvent::UnRegisterAllMessages(void) __ptr64
1086?UnRegisterAllMessages@CWinMsgEvent@@IEAAXXZ
1087; protected: bool __cdecl CWinMsgEvent::UnRegisterMessage(unsigned int) __ptr64
1088?UnRegisterMessage@CWinMsgEvent@@IEAA_NI@Z
1089; private: void __cdecl CThreadBase::Unlock(void) __ptr64
1090?Unlock@CThreadBase@@AEAAXXZ
1091; public: void __cdecl CHString::UnlockBuffer(void) __ptr64
1092?UnlockBuffer@CHString@@QEAAXXZ
1093; private: static void __cdecl CWbemProviderGlue::UnlockFactoryMap(void)
1094?UnlockFactoryMap@CWbemProviderGlue@@CAXXZ
1095; private: static void __cdecl CWbemProviderGlue::UnlockProviderMap(void)
1096?UnlockProviderMap@CWbemProviderGlue@@CAXXZ
1097; public: static int __cdecl CObjectPathParser::Unparse(struct ParsedObjectPath * __ptr64,unsigned short * __ptr64 * __ptr64)
1098?Unparse@CObjectPathParser@@SAHPEAUParsedObjectPath@@PEAPEAG@Z
1099; protected: virtual long __cdecl Provider::ValidateDeletionFlags(long) __ptr64
1100?ValidateDeletionFlags@Provider@@MEAAJJ@Z
1101; protected: virtual long __cdecl Provider::ValidateEnumerationFlags(long) __ptr64
1102?ValidateEnumerationFlags@Provider@@MEAAJJ@Z
1103; protected: long __cdecl Provider::ValidateFlags(long,enum Provider::FlagDefs) __ptr64
1104?ValidateFlags@Provider@@IEAAJJW4FlagDefs@1@@Z
1105; protected: virtual long __cdecl Provider::ValidateGetObjFlags(long) __ptr64
1106?ValidateGetObjFlags@Provider@@MEAAJJ@Z
1107; private: int __cdecl Provider::ValidateIMOSPointer(void) __ptr64
1108?ValidateIMOSPointer@Provider@@AEAAHXZ
1109; protected: virtual long __cdecl Provider::ValidateMethodFlags(long) __ptr64
1110?ValidateMethodFlags@Provider@@MEAAJJ@Z
1111; protected: virtual long __cdecl Provider::ValidatePutInstanceFlags(long) __ptr64
1112?ValidatePutInstanceFlags@Provider@@MEAAJJ@Z
1113; protected: virtual long __cdecl Provider::ValidateQueryFlags(long) __ptr64
1114?ValidateQueryFlags@Provider@@MEAAJJ@Z
1115; public: unsigned long __cdecl CAutoEvent::Wait(unsigned long) __ptr64
1116?Wait@CAutoEvent@@QEAAKK@Z
1117; private: static void __cdecl CWinMsgEvent::WindowsDispatch(void)
1118?WindowsDispatch@CWinMsgEvent@@CAXXZ
1119; private: void __cdecl CObjectPathParser::Zero(void) __ptr64
1120?Zero@CObjectPathParser@@AEAAXXZ
1121; private: int __cdecl CObjectPathParser::begin_parse(void) __ptr64
1122?begin_parse@CObjectPathParser@@AEAAHXZ
1123; class ProviderLog captainsLog
1124?captainsLog@@3VProviderLog@@A DATA
1125; private: static unsigned long __cdecl CWinMsgEvent::dwThreadProc(void * __ptr64)
1126?dwThreadProc@CWinMsgEvent@@CAKPEAX@Z
1127; class CCritSec g_cs
1128?g_cs@@3VCCritSec@@A DATA
1129; private: int __cdecl CObjectPathParser::ident_becomes_class(void) __ptr64
1130?ident_becomes_class@CObjectPathParser@@AEAAHXZ
1131; private: int __cdecl CObjectPathParser::ident_becomes_ns(void) __ptr64
1132?ident_becomes_ns@CObjectPathParser@@AEAAHXZ
1133; private: int __cdecl CObjectPathParser::key_const(void) __ptr64
1134?key_const@CObjectPathParser@@AEAAHXZ
1135; private: int __cdecl CObjectPathParser::keyref(void) __ptr64
1136?keyref@CObjectPathParser@@AEAAHXZ
1137; private: int __cdecl CObjectPathParser::keyref_list(void) __ptr64
1138?keyref_list@CObjectPathParser@@AEAAHXZ
1139; private: int __cdecl CObjectPathParser::keyref_term(void) __ptr64
1140?keyref_term@CObjectPathParser@@AEAAHXZ
1141; private: static class std::set<void * __ptr64,struct std::less<void * __ptr64>,class std::allocator<void * __ptr64> > CWbemProviderGlue::m_FlushPtrs
1142?m_FlushPtrs@CWbemProviderGlue@@0V?$set@PEAXU?$less@PEAX@std@@V?$allocator@PEAX@2@@std@@A DATA
1143; private: static class CCritSec CWbemProviderGlue::m_csFlushPtrs
1144?m_csFlushPtrs@CWbemProviderGlue@@0VCCritSec@@A DATA
1145; private: static class CCritSec CWbemProviderGlue::m_csStatusObject
1146?m_csStatusObject@CWbemProviderGlue@@0VCCritSec@@A DATA
1147; private: static struct IWbemClassObject * __ptr64 __ptr64 CWbemProviderGlue::m_pStatusObject
1148?m_pStatusObject@CWbemProviderGlue@@0PEAUIWbemClassObject@@EA DATA
1149; private: static class CAutoEvent CWinMsgEvent::mg_aeCreateWindow
1150?mg_aeCreateWindow@CWinMsgEvent@@0VCAutoEvent@@A DATA
1151; private: static class CCritSec CWinMsgEvent::mg_csMapLock
1152?mg_csMapLock@CWinMsgEvent@@0VCCritSec@@A DATA
1153; private: static class CCritSec CWinMsgEvent::mg_csWindowLock
1154?mg_csWindowLock@CWinMsgEvent@@0VCCritSec@@A DATA
1155; private: static void * __ptr64 __ptr64 CWinMsgEvent::mg_hThreadPumpHandle
1156?mg_hThreadPumpHandle@CWinMsgEvent@@0PEAXEA DATA
1157; private: static struct HWND__ * __ptr64 __ptr64 CWinMsgEvent::mg_hWnd
1158?mg_hWnd@CWinMsgEvent@@0PEAUHWND__@@EA DATA
1159; private: static class std::multimap<unsigned int,class CWinMsgEvent * __ptr64,struct std::less<unsigned int>,class std::allocator<class CWinMsgEvent * __ptr64> > CWinMsgEvent::mg_oSinkMap
1160?mg_oSinkMap@CWinMsgEvent@@0V?$multimap@IPEAVCWinMsgEvent@@U?$less@I@std@@V?$allocator@PEAVCWinMsgEvent@@@3@@std@@A DATA
1161; private: long __cdecl CRegistry::myRegCreateKeyEx(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned short * __ptr64,unsigned long,unsigned long,struct _SECURITY_ATTRIBUTES * __ptr64,struct HKEY__ * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
1162?myRegCreateKeyEx@CRegistry@@AEAAJPEAUHKEY__@@PEBGKPEAGKKPEAU_SECURITY_ATTRIBUTES@@PEAPEAU2@PEAK@Z
1163; private: long __cdecl CRegistry::myRegDeleteKey(struct HKEY__ * __ptr64,unsigned short const * __ptr64) __ptr64
1164?myRegDeleteKey@CRegistry@@AEAAJPEAUHKEY__@@PEBG@Z
1165; private: long __cdecl CRegistry::myRegDeleteValue(struct HKEY__ * __ptr64,unsigned short const * __ptr64) __ptr64
1166?myRegDeleteValue@CRegistry@@AEAAJPEAUHKEY__@@PEBG@Z
1167; private: long __cdecl CRegistry::myRegEnumKey(struct HKEY__ * __ptr64,unsigned long,unsigned short * __ptr64,unsigned long) __ptr64
1168?myRegEnumKey@CRegistry@@AEAAJPEAUHKEY__@@KPEAGK@Z
1169; private: long __cdecl CRegistry::myRegEnumValue(struct HKEY__ * __ptr64,unsigned long,unsigned short * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64) __ptr64
1170?myRegEnumValue@CRegistry@@AEAAJPEAUHKEY__@@KPEAGPEAK22PEAE2@Z
1171; private: long __cdecl CRegistry::myRegOpenKeyEx(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned long,struct HKEY__ * __ptr64 * __ptr64) __ptr64
1172?myRegOpenKeyEx@CRegistry@@AEAAJPEAUHKEY__@@PEBGKKPEAPEAU2@@Z
1173; private: long __cdecl CRegistry::myRegQueryInfoKey(struct HKEY__ * __ptr64,unsigned short * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,struct _FILETIME * __ptr64) __ptr64
1174?myRegQueryInfoKey@CRegistry@@AEAAJPEAUHKEY__@@PEAGPEAK22222222PEAU_FILETIME@@@Z
1175; private: long __cdecl CRegistry::myRegQueryValueEx(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64) __ptr64
1176?myRegQueryValueEx@CRegistry@@AEAAJPEAUHKEY__@@PEBGPEAK2PEAE2@Z
1177; private: long __cdecl CRegistry::myRegSetValueEx(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned long,unsigned char const * __ptr64,unsigned long) __ptr64
1178?myRegSetValueEx@CRegistry@@AEAAJPEAUHKEY__@@PEBGKKPEBEK@Z
1179; private: int __cdecl CObjectPathParser::ns_list(void) __ptr64
1180?ns_list@CObjectPathParser@@AEAAHXZ
1181; private: int __cdecl CObjectPathParser::ns_list_rest(void) __ptr64
1182?ns_list_rest@CObjectPathParser@@AEAAHXZ
1183; private: int __cdecl CObjectPathParser::ns_or_class(void) __ptr64
1184?ns_or_class@CObjectPathParser@@AEAAHXZ
1185; private: int __cdecl CObjectPathParser::ns_or_server(void) __ptr64
1186?ns_or_server@CObjectPathParser@@AEAAHXZ
1187; private: int __cdecl CObjectPathParser::objref(void) __ptr64
1188?objref@CObjectPathParser@@AEAAHXZ
1189; private: int __cdecl CObjectPathParser::objref_rest(void) __ptr64
1190?objref_rest@CObjectPathParser@@AEAAHXZ
1191; private: int __cdecl CObjectPathParser::optional_objref(void) __ptr64
1192?optional_objref@CObjectPathParser@@AEAAHXZ
1193; private: int __cdecl CObjectPathParser::propname(void) __ptr64
1194?propname@CObjectPathParser@@AEAAHXZ
1195; private: static int CWbemProviderGlue::s_bInitted
1196?s_bInitted@CWbemProviderGlue@@0HA DATA
1197; private: static class CCritSec CWbemProviderGlue::s_csFactoryMap
1198?s_csFactoryMap@CWbemProviderGlue@@0VCCritSec@@A DATA
1199; private: static class CCritSec CWbemProviderGlue::s_csProviderMap
1200?s_csProviderMap@CWbemProviderGlue@@0VCCritSec@@A DATA
1201; private: static unsigned long CWbemProviderGlue::s_dwMajorVersion
1202?s_dwMajorVersion@CWbemProviderGlue@@0KA DATA
1203; private: static unsigned long CRegistry::s_dwPlatform
1204?s_dwPlatform@CRegistry@@0KA DATA
1205; private: static unsigned long CWbemProviderGlue::s_dwPlatform
1206?s_dwPlatform@CWbemProviderGlue@@0KA DATA
1207; private: static int CRegistry::s_fPlatformSet
1208?s_fPlatformSet@CRegistry@@0HA DATA
1209; private: static class std::map<void const * __ptr64,long * __ptr64,struct std::less<void const * __ptr64>,class std::allocator<long * __ptr64> > CWbemProviderGlue::s_factorymap
1210?s_factorymap@CWbemProviderGlue@@0V?$map@PEBXPEAJU?$less@PEBX@std@@V?$allocator@PEAJ@2@@std@@A DATA
1211; private: static long CWbemProviderGlue::s_lObjects
1212?s_lObjects@CWbemProviderGlue@@0JA DATA
1213; private: static class std::map<class CHString,void * __ptr64,struct std::less<class CHString>,class std::allocator<void * __ptr64> > CWbemProviderGlue::s_providersmap
1214?s_providersmap@CWbemProviderGlue@@0V?$map@VCHString@@PEAXU?$less@VCHString@@@std@@V?$allocator@PEAX@3@@std@@A DATA
1215; private: static class CHString Provider::s_strComputerName
1216?s_strComputerName@Provider@@0VCHString@@A DATA
1217; private: static unsigned short * CWbemProviderGlue::s_wstrCSDVersion
1218?s_wstrCSDVersion@CWbemProviderGlue@@0PAGA DATA
1219DoCmd
lib/libc/mingw/lib64/ftpctrs2.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file FTPCTRS2.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FTPCTRS2.dll
8EXPORTS
9OpenFtpPerformanceData
10CollectFtpPerformanceData
11CloseFtpPerformanceData
lib/libc/mingw/lib64/ftpmib.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file FTPMIB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FTPMIB.dll
8EXPORTS
9SnmpExtensionInit
10SnmpExtensionQuery
11SnmpExtensionTrap
lib/libc/mingw/lib64/fxsapi.def created+164
......@@ -0,0 +1,164 @@
1;
2; Exports of file FXSAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXSAPI.dll
8EXPORTS
9FXSAPIFree
10FXSAPIInitialize
11FaxAbort
12FaxAccessCheck
13FaxAccessCheckEx
14FaxAddOutboundGroupA
15FaxAddOutboundGroupW
16FaxAddOutboundRuleA
17FaxAddOutboundRuleW
18FaxAnswerCall
19FaxCheckValidFaxFolder
20FaxClose
21FaxCompleteJobParamsA
22FaxCompleteJobParamsW
23FaxConnectFaxServerA
24FaxConnectFaxServerW
25FaxEnableRoutingMethodA
26FaxEnableRoutingMethodW
27FaxEndMessagesEnum
28FaxEnumGlobalRoutingInfoA
29FaxEnumGlobalRoutingInfoW
30FaxEnumJobsA
31FaxEnumJobsExA
32FaxEnumJobsExW
33FaxEnumJobsW
34FaxEnumMessagesA
35FaxEnumMessagesW
36FaxEnumOutboundGroupsA
37FaxEnumOutboundGroupsW
38FaxEnumOutboundRulesA
39FaxEnumOutboundRulesW
40FaxEnumPortsA
41FaxEnumPortsExA
42FaxEnumPortsExW
43FaxEnumPortsW
44FaxEnumRoutingExtensionsA
45FaxEnumRoutingExtensionsW
46FaxEnumRoutingMethodsA
47FaxEnumRoutingMethodsW
48FaxEnumerateProvidersA
49FaxEnumerateProvidersW
50FaxFreeBuffer
51FaxFreeSenderInformation
52FaxGetActivityLoggingConfigurationA
53FaxGetActivityLoggingConfigurationW
54FaxGetArchiveConfigurationA
55FaxGetArchiveConfigurationW
56FaxGetConfigWizardUsed
57FaxGetConfigurationA
58FaxGetConfigurationW
59FaxGetCountryListA
60FaxGetCountryListW
61FaxGetDeviceStatusA
62FaxGetDeviceStatusW
63FaxGetExtensionDataA
64FaxGetExtensionDataW
65FaxGetJobA
66FaxGetJobExA
67FaxGetJobExW
68FaxGetJobW
69FaxGetLoggingCategoriesA
70FaxGetLoggingCategoriesW
71FaxGetMessageA
72FaxGetMessageTiffA
73FaxGetMessageTiffW
74FaxGetMessageW
75FaxGetOutboxConfiguration
76FaxGetPageData
77FaxGetPersonalCoverPagesOption
78FaxGetPortA
79FaxGetPortExA
80FaxGetPortExW
81FaxGetPortW
82FaxGetQueueStates
83FaxGetReceiptsConfigurationA
84FaxGetReceiptsConfigurationW
85FaxGetReceiptsOptions
86FaxGetRecipientInfoA
87FaxGetRecipientInfoW
88FaxGetRecipientsLimit
89FaxGetReportedServerAPIVersion
90FaxGetRoutingInfoA
91FaxGetRoutingInfoW
92FaxGetSecurity
93FaxGetSecurityEx
94FaxGetSenderInfoA
95FaxGetSenderInfoW
96FaxGetSenderInformation
97FaxGetServerActivity
98FaxGetServerSKU
99FaxGetServicePrintersA
100FaxGetServicePrintersW
101FaxGetVersion
102FaxInitializeEventQueue
103FaxOpenPort
104FaxPrintCoverPageA
105FaxPrintCoverPageW
106FaxRefreshArchive
107FaxRegisterForServerEvents
108FaxRegisterRoutingExtensionW
109FaxRegisterServiceProviderExA
110FaxRegisterServiceProviderExW
111FaxRelease
112FaxRemoveMessage
113FaxRemoveOutboundGroupA
114FaxRemoveOutboundGroupW
115FaxRemoveOutboundRule
116FaxSendDocumentA
117FaxSendDocumentExA
118FaxSendDocumentExW
119FaxSendDocumentForBroadcastA
120FaxSendDocumentForBroadcastW
121FaxSendDocumentW
122FaxSetActivityLoggingConfigurationA
123FaxSetActivityLoggingConfigurationW
124FaxSetArchiveConfigurationA
125FaxSetArchiveConfigurationW
126FaxSetConfigWizardUsed
127FaxSetConfigurationA
128FaxSetConfigurationW
129FaxSetDeviceOrderInGroupA
130FaxSetDeviceOrderInGroupW
131FaxSetExtensionDataA
132FaxSetExtensionDataW
133FaxSetGlobalRoutingInfoA
134FaxSetGlobalRoutingInfoW
135FaxSetJobA
136FaxSetJobW
137FaxSetLoggingCategoriesA
138FaxSetLoggingCategoriesW
139FaxSetOutboundGroupA
140FaxSetOutboundGroupW
141FaxSetOutboundRuleA
142FaxSetOutboundRuleW
143FaxSetOutboxConfiguration
144FaxSetPortA
145FaxSetPortExA
146FaxSetPortExW
147FaxSetPortW
148FaxSetQueue
149FaxSetReceiptsConfigurationA
150FaxSetReceiptsConfigurationW
151FaxSetRoutingInfoA
152FaxSetRoutingInfoW
153FaxSetSecurity
154FaxSetSenderInformation
155FaxStartMessagesEnum
156FaxStartPrintJob2W
157FaxStartPrintJobA
158FaxStartPrintJobW
159FaxUnregisterForServerEvents
160FaxUnregisterRoutingExtensionA
161FaxUnregisterRoutingExtensionW
162FaxUnregisterServiceProviderExA
163FaxUnregisterServiceProviderExW
164IsDeviceVirtual
lib/libc/mingw/lib64/fxscfgwz.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file FXSCFGWZ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXSCFGWZ.dll
8EXPORTS
9FaxCfgWzrdDllW
10FaxConfigWizard
lib/libc/mingw/lib64/fxsdrv.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file FxsDrv.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FxsDrv.dll
8EXPORTS
9DllEntryPoint
10DrvDisableDriver
11DrvEnableDriver
12DrvQueryDriverInfo
lib/libc/mingw/lib64/fxsocm.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file FXSOCM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXSOCM.dll
8EXPORTS
9FaxModemCoClassInstaller
10FaxOcmSetupProc
11SecureFaxServiceDirectories
12WhereDidMyFaxGo
13XP_UninstallProvider
14DllCanUnloadNow
15DllGetClassObject
16DllRegisterServer
17DllUnregisterServer
lib/libc/mingw/lib64/fxsperf.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file FXSPERF.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXSPERF.dll
8EXPORTS
9OpenFaxPerformanceData
10CollectFaxPerformanceData
11CloseFaxPerformanceData
lib/libc/mingw/lib64/fxsroute.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file FxsRoute.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FxsRoute.dll
8EXPORTS
9FaxRouteConfigure
10FaxRouteEmail
11FaxRoutePrint
12FaxRouteStore
13FaxExtInitializeConfig
14FaxRouteDeviceChangeNotification
15FaxRouteDeviceEnable
16FaxRouteGetRoutingInfo
17FaxRouteInitialize
18FaxRouteSetRoutingInfo
lib/libc/mingw/lib64/fxsst.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file FXSST.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXSST.dll
8EXPORTS
9DllMain
10FaxMonitorShutdown
11IsFaxMessage
lib/libc/mingw/lib64/fxst30.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file FXST30.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXST30.dll
8EXPORTS
9FaxDevAbortOperation
10FaxDevEndJob
11FaxDevInitialize
12FaxDevReceive
13FaxDevReportStatus
14FaxDevSend
15FaxDevShutdown
16FaxDevStartJob
17FaxExtInitializeConfig
lib/libc/mingw/lib64/fxstiff.def created+44
......@@ -0,0 +1,44 @@
1;
2; Exports of file FXSTIFF.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXSTIFF.dll
8EXPORTS
9ConvMmrPageHiResToMrLoRes
10ConvMmrPageToMh
11ConvMmrPageToMrSameRes
12ConvertTiffFileToValidFaxFormat
13FXSTIFFInitialize
14FindNextEol
15FreeMsTagInfo
16GetMsTagDwordLong
17GetMsTagFileTime
18GetMsTagString
19GetW2kMsTiffTags
20MemoryMapTiffFile
21MergeTiffFiles
22MmrAddBranding
23PrintTiffFile
24ScanMhSegment
25ScanMrSegment
26TiffAddMsTags
27TiffClose
28TiffCreate
29TiffEndPage
30TiffExtractFirstPage
31TiffGetCurrentPageData
32TiffLimitTagNumber
33TiffOpen
34TiffPostProcessFast
35TiffPrint
36TiffPrintDC
37TiffRead
38TiffRecoverGoodPages
39TiffSeekToPage
40TiffSetCurrentPageParams
41TiffStartPage
42TiffUncompressMmrPage
43TiffUncompressMmrPageRaw
44TiffWriteRaw
lib/libc/mingw/lib64/fxsui.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file fxsui.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY fxsui.dll
8EXPORTS
9DevQueryPrintEx
10DrvAdvancedDocumentProperties
11DrvConvertDevMode
12DrvDeviceCapabilities
13DrvDevicePropertySheets
14DrvDocumentEvent
15DrvDocumentProperties
16DrvDocumentPropertySheets
17DrvPrinterEvent
18PrinterProperties
lib/libc/mingw/lib64/fxswzrd.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file FXSWZRD.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY FXSWZRD.dll
8EXPORTS
9FaxFreeSendWizardData
10FaxSendWizard
lib/libc/mingw/lib64/glmf32.def created+142
......@@ -0,0 +1,142 @@
1;
2; Exports of file GLMF32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY GLMF32.dll
8EXPORTS
9__glsParser_create
10__glsParser_print
11__glsString_appendChar
12__glsString_assign
13__glsString_init
14glsAbortCall
15glsAppRef
16glsBeginCapture
17glsBeginGLS
18glsBeginObj
19glsBinary
20glsBlock
21glsCallArray
22glsCallArrayInContext
23glsCallStream
24glsCaptureFlags
25glsCaptureFunc
26glsChannel
27glsCharubz
28glsCommandAPI
29glsCommandFunc
30glsCommandString
31glsComment
32glsContext
33glsCopyStream
34glsDataPointer
35glsDeleteContext
36glsDeleteReadPrefix
37glsDeleteStream
38glsDisplayMapfv
39glsEndCapture
40glsEndGLS
41glsEndObj
42glsEnumString
43glsError
44glsFlush
45glsGLRC
46glsGLRCLayer
47glsGenContext
48glsGetAllContexts
49glsGetCaptureDispatchTable
50glsGetCaptureExecTable
51glsGetCaptureFlags
52glsGetCommandAlignment
53glsGetCommandAttrib
54glsGetCommandFunc
55glsGetConsti
56glsGetConstiv
57glsGetConstubz
58glsGetContextFunc
59glsGetContextListl
60glsGetContextListubz
61glsGetContextPointer
62glsGetContexti
63glsGetContextubz
64glsGetCurrentContext
65glsGetCurrentTime
66glsGetError
67glsGetGLRCi
68glsGetHeaderf
69glsGetHeaderfv
70glsGetHeaderi
71glsGetHeaderiv
72glsGetHeaderubz
73glsGetLayerf
74glsGetLayeri
75glsGetOpcodeCount
76glsGetOpcodes
77glsGetStreamAttrib
78glsGetStreamCRC32
79glsGetStreamReadName
80glsGetStreamSize
81glsGetStreamType
82glsHeaderGLRCi
83glsHeaderLayerf
84glsHeaderLayeri
85glsHeaderf
86glsHeaderfv
87glsHeaderi
88glsHeaderiv
89glsHeaderubz
90glsIsContext
91glsIsContextStream
92glsIsExtensionSupported
93glsIsUTF8String
94glsLong
95glsLongHigh
96glsLongLow
97glsNullCommandFunc
98glsNumb
99glsNumbv
100glsNumd
101glsNumdv
102glsNumf
103glsNumfv
104glsNumi
105glsNumiv
106glsNuml
107glsNumlv
108glsNums
109glsNumsv
110glsNumub
111glsNumubv
112glsNumui
113glsNumuiv
114glsNumul
115glsNumulv
116glsNumus
117glsNumusv
118glsPad
119glsPixelSetup
120glsPixelSetupGen
121glsReadFunc
122glsReadPrefix
123glsRequireExtension
124glsSwapBuffers
125glsUCS1toUTF8z
126glsUCS2toUTF8z
127glsUCS4toUTF8
128glsUCS4toUTF8z
129glsUCStoUTF8z
130glsULong
131glsULongHigh
132glsULongLow
133glsUTF8toUCS1z
134glsUTF8toUCS2z
135glsUTF8toUCS4
136glsUTF8toUCS4z
137glsUTF8toUCSz
138glsUnreadFunc
139glsUnsupportedCommand
140glsUpdateCaptureExecTable
141glsWriteFunc
142glsWritePrefix
lib/libc/mingw/lib64/gpkcsp.def created+34
......@@ -0,0 +1,34 @@
1;
2; Exports of file GPKCSP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY GPKCSP.dll
8EXPORTS
9CPAcquireContext
10CPCreateHash
11CPDecrypt
12CPDeriveKey
13CPDestroyHash
14CPDestroyKey
15CPEncrypt
16CPExportKey
17CPGenKey
18CPGenRandom
19CPGetHashParam
20CPGetKeyParam
21CPGetProvParam
22CPGetUserKey
23CPHashData
24CPHashSessionKey
25CPImportKey
26CPReleaseContext
27CPSetHashParam
28CPSetKeyParam
29CPSetProvParam
30CPSignHash
31CPVerifySignature
32DllMain
33DllRegisterServer
34DllUnregisterServer
lib/libc/mingw/lib64/gptext.def created+21
......@@ -0,0 +1,21 @@
1;
2; Exports of file GPTEXT.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY GPTEXT.DLL
8EXPORTS
9GenerateIPSECPolicy
10GenerateScriptsGroupPolicy
11GenerateWIRELESSPolicy
12ProcessIPSECPolicyEx
13ProcessPSCHEDPolicy
14ProcessScriptsGroupPolicy
15ProcessScriptsGroupPolicyEx
16ProcessWIRELESSPolicyEx
17DllCanUnloadNow
18DllGetClassObject
19DllRegisterServer
20DllUnregisterServer
21ScrRegGPOListToWbem
lib/libc/mingw/lib64/guitrn.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file GUITRN.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY GUITRN.dll
8EXPORTS
9DllMain
10ModuleInitialize
11ModuleTerminate
12TransportModule
lib/libc/mingw/lib64/hal.def created+101
......@@ -0,0 +1,101 @@
1;
2; Definition file of HAL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "HAL.dll"
7EXPORTS
8HalAcquireDisplayOwnership
9HalAdjustResourceList
10HalAllProcessorsStarted
11HalAllocateAdapterChannel
12HalAllocateCommonBuffer
13HalAllocateCrashDumpRegisters
14HalAllocateHardwareCounters
15HalAssignSlotResources
16HalBugCheckSystem
17HalCalibratePerformanceCounter
18HalCallBios
19HalClearSoftwareInterrupt
20HalDisableSystemInterrupt
21HalConvertDeviceIdtToIrql
22HalDisableInterrupt
23HalDisplayString
24HalEnableSystemInterrupt
25HalEnableInterrupt
26HalEnumerateEnvironmentVariablesEx
27HalEnumerateProcessors
28HalFlushCommonBuffer
29HalFreeCommonBuffer
30HalFreeHardwareCounters
31HalGetAdapter
32HalGetBusData
33HalGetBusDataByOffset
34HalGetEnvironmentVariable
35HalGetEnvironmentVariableEx
36HalGetInterruptTargetInformation
37HalGetInterruptVector
38HalGetMemoryCachingRequirements
39HalGetMessageRoutingInfo
40HalGetProcessorIdByNtNumber
41HalGetVectorInput
42HalHandleMcheck
43HalHandleNMI
44HalInitSystem
45HalInitializeBios
46HalInitializeOnResume
47HalInitializeProcessor
48HalIsHyperThreadingEnabled
49HalMakeBeep
50HalMcUpdateReadPCIConfig
51HalPerformEndOfInterrupt DATA
52HalProcessorIdle
53HalQueryDisplayParameters
54HalQueryEnvironmentVariableInfoEx
55HalQueryMaximumProcessorCount
56HalQueryRealTimeClock
57HalReadDmaCounter
58HalRegisterDynamicProcessor
59HalRegisterErrataCallbacks
60HalReportResourceUsage
61HalRequestClockInterrupt
62HalRequestDeferredRecoveryServiceInterrupt
63HalRequestIpi
64HalRequestSoftwareInterrupt
65HalReturnToFirmware
66HalSendNMI
67HalSendSoftwareInterrupt
68HalSetBusData
69HalSetBusDataByOffset
70HalSetDisplayParameters
71HalSetEnvironmentVariable
72HalSetEnvironmentVariableEx
73HalSetProfileInterval
74HalSetRealTimeClock
75HalSetTimeIncrement
76HalStartDynamicProcessor
77HalStartNextProcessor
78HalStartProfileInterrupt
79HalStopProfileInterrupt
80HalSystemVectorDispatchEntry
81HalTranslateBusAddress
82IoAssignDriveLetters
83IoFlushAdapterBuffers
84IoFreeAdapterChannel
85IoFreeMapRegisters
86IoMapTransfer
87IoReadPartitionTable
88IoSetPartitionInformation
89IoWritePartitionTable
90KdComPortInUse DATA
91KeFlushWriteBuffer
92KeQueryPerformanceCounter
93KeStallExecutionProcessor
94x86BiosExecuteInterrupt
95x86BiosInitializeBiosEx
96x86BiosTranslateAddress
97x86BiosAllocateBuffer
98x86BiosCall
99x86BiosFreeBuffer
100x86BiosReadMemory
101x86BiosWriteMemory
lib/libc/mingw/lib64/hgfs.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file hgfs.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY hgfs.dll
8EXPORTS
9NPGetConnection
10NPGetCaps
11NPAddConnection
12NPCancelConnection
13NPOpenEnum
14NPEnumResource
15NPCloseEnum
16NPAddConnection3
17NPGetResourceParent
18NPGetResourceInformation
lib/libc/mingw/lib64/hidclass.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of HIDCLASS.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "HIDCLASS.SYS"
7EXPORTS
8DllInitialize
9DllUnload
10HidNotifyPresence
11HidRegisterMinidriver
lib/libc/mingw/lib64/hidparse.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of HIDPARSE.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "HIDPARSE.SYS"
7EXPORTS
8HidP_FreeCollectionDescription
9HidP_GetButtonCaps
10HidP_GetCaps
11HidP_GetCollectionDescription
12HidP_GetData
13HidP_GetExtendedAttributes
14HidP_GetLinkCollectionNodes
15HidP_GetScaledUsageValue
16HidP_GetSpecificButtonCaps
17HidP_GetSpecificValueCaps
18HidP_GetUsageValue
19HidP_GetUsageValueArray
20HidP_GetUsages
21HidP_GetUsagesEx
22HidP_GetValueCaps
23HidP_InitializeReportForID
24HidP_MaxDataListLength
25HidP_MaxUsageListLength
26HidP_SetData
27HidP_SetScaledUsageValue
28HidP_SetUsageValue
29HidP_SetUsageValueArray
30HidP_SetUsages
31HidP_SysPowerCaps
32HidP_SysPowerEvent
33HidP_TranslateUsageAndPagesToI8042ScanCodes
34HidP_TranslateUsagesToI8042ScanCodes
35HidP_UnsetUsages
36HidP_UsageAndPageListDifference
37HidP_UsageListDifference
lib/libc/mingw/lib64/hmmapi.def created+35
......@@ -0,0 +1,35 @@
1;
2; Exports of file HMMAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HMMAPI.dll
8EXPORTS
9MAPIFreeBuffer
10DllRegisterServer
11DllUnregisterServer
12MAPISendDocuments
13MAPILogon
14MAPILogoff
15MAPISendMail
16MAPISaveMail
17MAPIReadMail
18MAPIFindNext
19MAPIDeleteMail
20MAPIAddress
21MAPIDetails
22MAPIResolveName
23BMAPISendMail
24BMAPISaveMail
25BMAPIReadMail
26BMAPIGetReadMail
27BMAPIFindNext
28BMAPIAddress
29BMAPIGetAddress
30BMAPIDetails
31BMAPIResolveName
32MailToProtocolHandler
33OpenInboxHandler
34AddService
35RemoveService
lib/libc/mingw/lib64/hnetcfg.def created+51
......@@ -0,0 +1,51 @@
1;
2; Exports of file HNetCfg.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HNetCfg.dll
8EXPORTS
9HNetDeleteRasConnection
10HNetFreeSharingServicesPage
11HNetGetSharingServicesPage
12WinBomConfigureWindowsFirewall
13DllCanUnloadNow
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
17HNetFreeFirewallLoggingSettings
18HNetGetFirewallSettingsPage
19HNetGetShareAndBridgeSettings
20HNetSetShareAndBridgeSettings
21HNetSharedAccessSettingsDlg
22HNetSharingAndFirewallSettingsDlg
23IcfChangeNotificationCreate
24IcfChangeNotificationDestroy
25IcfCheckAppAuthorization
26IcfCloseDynamicFwPort
27IcfConnect
28IcfDisconnect
29IcfFreeAdapters
30IcfFreeDynamicFwPorts
31IcfFreeProfile
32IcfFreeString
33IcfFreeTickets
34IcfGetAdapters
35IcfGetCurrentProfileType
36IcfGetDynamicFwPorts
37IcfGetOperationalMode
38IcfGetProfile
39IcfGetTickets
40IcfIsIcmpTypeAllowed
41IcfIsPortAllowed
42IcfOpenDynamicFwPort
43IcfOpenDynamicFwPortWithoutSocket
44IcfOpenFileSharingPorts
45IcfRefreshPolicy
46IcfRemoveDisabledAuthorizedApp
47IcfSetProfile
48IcfSetServicePermission
49IcfSubNetsGetScope
50IcfSubNetsIsStringValid
51IcfSubNetsToString
lib/libc/mingw/lib64/hnetwiz.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file HNETWIZ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HNETWIZ.dll
8EXPORTS
9HomeNetWizardRunDll
10DllCanUnloadNow
11DllGetClassObject
12DllMain
13DllRegisterServer
14DllUnregisterServer
lib/libc/mingw/lib64/hostmib.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file hostmib.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY hostmib.dll
8EXPORTS
9SnmpExtensionInit
10SnmpExtensionQuery
11SnmpExtensionTrap
lib/libc/mingw/lib64/htrn_jis.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file HTRN_JIS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HTRN_JIS.dll
8EXPORTS
9transCharIn
10transCharOut
11transCreateHandle
12transDestroyHandle
13transDoDialog
14transInitHandle
15transLoadHandle
16transSaveHandle
lib/libc/mingw/lib64/httpapi.def-3
......@@ -57,9 +57,6 @@ HttpSendResponseEntityBody
5757HttpSetAppPoolInformation
5858HttpSetConfigGroupInformation
5959HttpSetControlChannelInformation
60HttpSetAppPoolInformation
61HttpSetConfigGroupInformation
62HttpSetControlChannelInformation
6360HttpSetRequestQueueProperty
6461HttpSetServerSessionProperty
6562HttpSetServiceConfiguration
lib/libc/mingw/lib64/httpext.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file HTTPEXT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HTTPEXT.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
12DllCanUnloadNow
13DllGetClassObject
14DllRegisterServer
15DllUnregisterServer
lib/libc/mingw/lib64/httpmib.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file HTTPMIB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HTTPMIB.dll
8EXPORTS
9DllLibMain
10SnmpExtensionInit
11SnmpExtensionQuery
12SnmpExtensionTrap
lib/libc/mingw/lib64/httpodbc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file HTTPODBC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HTTPODBC.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/hypertrm.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file HYPERTRM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY HYPERTRM.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11InitInstance
12MessageLoop
13sessQuerySysFileHdl
14sessQueryTranslateHdl
15sfGetSessionItem
16sfPutSessionItem
lib/libc/mingw/lib64/iaspolcy.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file iaspolcy.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY iaspolcy.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13IASAttributeAddRef
14IASAttributeAlloc
15IASAttributeAnsiAlloc
16IASAttributeRelease
17IASAttributeUnicodeAlloc
lib/libc/mingw/lib64/icaapi.def created+42
......@@ -0,0 +1,42 @@
1;
2; Exports of file ICAAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ICAAPI.dll
8EXPORTS
9IcaCdCreateThread
10IcaCdIoControl
11IcaCdWaitForMultipleObjects
12IcaCdWaitForSingleObject
13IcaChannelClose
14IcaChannelIoControl
15IcaChannelOpen
16IcaChannelTrace
17IcaClose
18IcaIoControl
19IcaMemoryAllocate
20IcaMemoryFree
21IcaOpen
22IcaPushConsoleStack
23IcaStackCallback
24IcaStackClose
25IcaStackConnectionAccept
26IcaStackConnectionClose
27IcaStackConnectionRequest
28IcaStackConnectionWait
29IcaStackCreateShadowEndpoint
30IcaStackDisconnect
31IcaStackIoControl
32IcaStackIoControlNoConnLock
33IcaStackOpen
34IcaStackQueryLocalAddress
35IcaStackQueryState
36IcaStackReconnect
37IcaStackTerminate
38IcaStackTrace
39IcaStackUnlock
40IcaSystemTrace
41IcaTrace
42_IcaStackIoControl
lib/libc/mingw/lib64/icfgnt5.def created+23
......@@ -0,0 +1,23 @@
1;
2; Exports of file ICFGNT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ICFGNT.dll
8EXPORTS
9IcfgInstallModem
10IcfgNeedModem
11IcfgSetInstallSourcePath
12InetSetAutodial
13InetSetAutodialAddress
14IcfgGetLastInstallErrorText
15IcfgInstallInetComponents
16IcfgIsFileSharingTurnedOn
17IcfgIsGlobalDNS
18IcfgNeedInetComponents
19IcfgRemoveGlobalDNS
20IcfgStartServices
21IcfgTurnOffFileSharing
22InetGetAutodial
23InetGetSupportedPlatform
lib/libc/mingw/lib64/icwconn.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file ICWCONN.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ICWCONN.dll
8EXPORTS
9GetICWCONNVersion
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/icwdial.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file AUTODIAL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY AUTODIAL.dll
8EXPORTS
9AutoDialHandler
10AutoDialInit
11RasSetEntryPropertiesScriptPatch
12DialingDownloadDialog
13DialingErrorDialog
14ICWGetRasEntry
lib/libc/mingw/lib64/icwdl.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file icwdl.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY icwdl.dll
8EXPORTS
9DownLoadCancel
10DownLoadClose
11DownLoadExecute
12DownLoadInit
13DownLoadProcess
14DownLoadSetStatusCallback
lib/libc/mingw/lib64/icwphbk.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file icwphbk.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY icwphbk.dll
8EXPORTS
9GetSupportNumbers
10PhbkGenericDlgProc
11PhoneBookDisplaySignUpNumbers
12PhoneBookGetCanonical
13PhoneBookLoad
14PhoneBookMergeChanges
15PhoneBookSuggestNumbers
16PhoneBookUnload
lib/libc/mingw/lib64/icwutil.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file ICWUTIL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ICWUTIL.dll
8EXPORTS
9RegisterServer
10URLAppendQueryPair
11URLEncode
12UnregisterServer
13DllCanUnloadNow
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
lib/libc/mingw/lib64/idq.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file IDQ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IDQ.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/ieakeng.def created+152
......@@ -0,0 +1,152 @@
1;
2; Exports of file IEAKENG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IEAKENG.dll
8EXPORTS
9AddADMItemA
10AddADMItemW
11BToolbar_Edit
12BToolbar_InitA
13BToolbar_InitW
14BToolbar_Remove
15BToolbar_SaveA
16BToolbar_SaveW
17BrowseForFileA
18BrowseForFileW
19BrowseForFolderA
20BrowseForFolderW
21BuildPalette
22CanDeleteADM
23CheckField
24CheckForDupKeys
25CheckVerA
26CheckVerW
27CopyAnimBmpA
28CopyAnimBmpW
29CopyHttFileA
30CopyHttFileW
31CopyLogoBmpA
32CopyLogoBmpW
33CopyWallPaperA
34CopyWallPaperW
35CreateADMWindow
36DeleteADMItemA
37DeleteADMItemW
38DeleteADMItemsA
39DeleteADMItemsW
40DeleteFavoriteA
41DeleteFavoriteW
42DestroyADMWindow
43DisplayADMItem
44DoReboot
45EncodeSignatureA
46EncodeSignatureW
47ErrorMessageBox
48ExportFavoritesA
49ExportFavoritesW
50ExportQuickLinksA
51ExportQuickLinksW
52ExportRegKey2InfA
53ExportRegKey2InfW
54ExportRegTree2InfA
55ExportRegTree2InfW
56ExportRegValue2InfA
57ExportRegValue2InfW
58GenerateNewVersionStrA
59GenerateNewVersionStrW
60GetAdmFileListA
61GetAdmFileListW
62GetAdmWindowHandle
63GetBaseFileNameA
64GetBaseFileNameW
65GetFavoriteUrlA
66GetFavoriteUrlW
67GetFavoritesInfoTipA
68GetFavoritesInfoTipW
69GetFavoritesMaxNumber
70GetFavoritesNumber
71GetProxyDlgA
72GetProxyDlgW
73ImportADMFileA
74ImportADMFileW
75ImportADTInfoA
76ImportADTInfoW
77ImportAuthCodeA
78ImportAuthCodeW
79ImportConnectSetA
80ImportConnectSetW
81ImportFavoritesA
82ImportFavoritesCmdA
83ImportFavoritesCmdW
84ImportFavoritesW
85ImportLDAPBitmapA
86ImportLDAPBitmapW
87ImportOEInfoA
88ImportOEInfoW
89ImportProgramsA
90ImportProgramsW
91ImportQuickLinksA
92ImportQuickLinksW
93ImportRatingsA
94ImportRatingsW
95ImportSiteCertA
96ImportSiteCertW
97ImportToolbarInfoA
98ImportToolbarInfoW
99ImportZonesA
100ImportZonesW
101InitializeStartSearchA
102InitializeStartSearchW
103IsADMFileVisibleA
104IsADMFileVisibleW
105IsAnimBitmapFileValidA
106IsAnimBitmapFileValidW
107IsBitmapFileValidA
108IsBitmapFileValidW
109IsFavoriteItem
110LoadADMFilesA
111LoadADMFilesW
112MigrateFavoritesA
113MigrateFavoritesW
114MigrateToOldFavoritesA
115MigrateToOldFavoritesW
116ModifyAuthCode
117ModifyFavoriteA
118ModifyFavoriteW
119ModifyRatings
120ModifySiteCert
121ModifyZones
122MoveADMWindow
123MoveDownFavorite
124MoveUpFavorite
125NewFolder
126NewUrlA
127NewUrlW
128ProcessFavSelChange
129ResetAdmFilesA
130ResetAdmFilesW
131SaveADMItem
132SaveAdmFilesA
133SaveAdmFilesW
134SaveStartSearchA
135SaveStartSearchW
136SelectADMItem
137SetADMWindowTextA
138SetADMWindowTextW
139SetLBWidth
140SetOrClearVersionInfoA
141SetOrClearVersionInfoW
142SetProxyDlgA
143SetProxyDlgW
144ShowADMWindow
145ShowBitmapA
146ShowBitmapW
147ShowDeskCpl
148ShowInetcpl
149SignFileA
150SignFileW
151TestURLA
152TestURLW
lib/libc/mingw/lib64/iedkcs32.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file iedkcs32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY iedkcs32.dll
8EXPORTS
9BrandExternal
10CloseRASConnections
11GenerateGroupPolicy
12ProcessGroupPolicy
13ProcessGroupPolicyEx
14ProcessGroupPolicyForZoneMap
15BrandCleanInstallStubs
16BrandICW
17BrandICW2
18BrandIE4
19BrandInfAndOutlookExpress
20BrandInternetExplorer
21BrandIntra
22BrandMe
23Clear
24DllRegisterServer
25DllUnregisterServer
26InternetInitializeAutoProxyDll
lib/libc/mingw/lib64/ieencode.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file exports.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY exports.dll
8EXPORTS
9CceDetectInputCode
10CceGetAvailableEncodings
11CceIsAvailableEncoding
12CceStreamMultiByteToUnicode
13CceStreamUnicodeToMultiByte
14CceStringMultiByteToUnicode
15CceStringUnicodeToMultiByte
16DllMain
17FetchMsEncodeDllVersion
lib/libc/mingw/lib64/iesetup.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file iesetup.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY iesetup.dll
8EXPORTS
9IEHardenAdmin
10IEHardenAdminNow
11IEHardenMachineNow
12IEHardenUser
13SetFirstHomepage
14DllInstall
15DllRegisterServer
16DllUnregisterServer
17FixIE
lib/libc/mingw/lib64/igmpagnt.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file IGMPAGNT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IGMPAGNT.dll
8EXPORTS
9SnmpExtensionClose
10SnmpExtensionInit
11SnmpExtensionQuery
12SnmpExtensionTrap
lib/libc/mingw/lib64/iis.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file IIS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IIS.dll
8EXPORTS
9OcEntry
10IIS5Log
11IIS5LogParmString
12IIS5LogParmDword
13ProcessInfSection
14SysPrepBackup
15SysPrepRestore
16ApplyIISAcl
lib/libc/mingw/lib64/iisadmin.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file IISADMIN.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IISADMIN.dll
8EXPORTS
9RetrieveTracingHandle
10ServiceEntry
lib/libc/mingw/lib64/iiscfg.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file IISCFG.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IISCFG.DLL
8EXPORTS
9DllGetSimpleObject
10DllGetSimpleObjectByID
11DllGetSimpleObjectByIDEx
lib/libc/mingw/lib64/iisrtl.def created+2044
......@@ -0,0 +1,2044 @@
1;
2; Exports of file IisRTL.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IisRTL.DLL
8EXPORTS
9; public: __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::CDataCache<struct DATETIME_FORMAT_ENTRY>(void) __ptr64
10??0?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@QEAA@XZ
11; public: __cdecl CDataCache<class CDateTime>::CDataCache<class CDateTime>(void) __ptr64
12??0?$CDataCache@VCDateTime@@@@QEAA@XZ
13; public: __cdecl ALLOC_CACHE_HANDLER::ALLOC_CACHE_HANDLER(char const * __ptr64,struct _ALLOC_CACHE_CONFIGURATION const * __ptr64,int) __ptr64
14??0ALLOC_CACHE_HANDLER@@QEAA@PEBDPEBU_ALLOC_CACHE_CONFIGURATION@@H@Z
15; public: __cdecl ASCLOG_DATETIME_CACHE::ASCLOG_DATETIME_CACHE(void) __ptr64
16??0ASCLOG_DATETIME_CACHE@@QEAA@XZ
17; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
18??0BUFFER@@QEAA@I@Z
19; public: __cdecl BUFFER::BUFFER(unsigned char * __ptr64,unsigned int) __ptr64
20??0BUFFER@@QEAA@PEAEI@Z
21; public: __cdecl BUFFER_CHAIN::BUFFER_CHAIN(void) __ptr64
22??0BUFFER_CHAIN@@QEAA@XZ
23; public: __cdecl BUFFER_CHAIN_ITEM::BUFFER_CHAIN_ITEM(unsigned int) __ptr64
24??0BUFFER_CHAIN_ITEM@@QEAA@I@Z
25; public: __cdecl CACHED_DATETIME_FORMATS::CACHED_DATETIME_FORMATS(void) __ptr64
26??0CACHED_DATETIME_FORMATS@@QEAA@XZ
27; public: __cdecl CCritSec::CCritSec(void) __ptr64
28??0CCritSec@@QEAA@XZ
29; public: __cdecl CDFTCache::CDFTCache(void) __ptr64
30??0CDFTCache@@QEAA@XZ
31; public: __cdecl CDateTime::CDateTime(struct _FILETIME const & __ptr64) __ptr64
32??0CDateTime@@QEAA@AEBU_FILETIME@@@Z
33; public: __cdecl CDateTime::CDateTime(struct _FILETIME const & __ptr64,struct _SYSTEMTIME const & __ptr64) __ptr64
34??0CDateTime@@QEAA@AEBU_FILETIME@@AEBU_SYSTEMTIME@@@Z
35; public: __cdecl CDateTime::CDateTime(struct _SYSTEMTIME const & __ptr64) __ptr64
36??0CDateTime@@QEAA@AEBU_SYSTEMTIME@@@Z
37; public: __cdecl CDateTime::CDateTime(void) __ptr64
38??0CDateTime@@QEAA@XZ
39; public: __cdecl CDoubleList::CDoubleList(void) __ptr64
40??0CDoubleList@@QEAA@XZ
41; public: __cdecl CEtwTracer::CEtwTracer(void) __ptr64
42??0CEtwTracer@@QEAA@XZ
43; public: __cdecl CFakeLock::CFakeLock(void) __ptr64
44??0CFakeLock@@QEAA@XZ
45; public: __cdecl CLKRHashTable::CLKRHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,unsigned long,bool) __ptr64
46??0CLKRHashTable@@QEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKK_N@Z
47; public: __cdecl CLKRHashTableStats::CLKRHashTableStats(void) __ptr64
48??0CLKRHashTableStats@@QEAA@XZ
49; protected: __cdecl CLKRHashTable_Iterator::CLKRHashTable_Iterator(class CLKRHashTable * __ptr64,short) __ptr64
50??0CLKRHashTable_Iterator@@IEAA@PEAVCLKRHashTable@@F@Z
51; public: __cdecl CLKRHashTable_Iterator::CLKRHashTable_Iterator(class CLKRHashTable_Iterator const & __ptr64) __ptr64
52??0CLKRHashTable_Iterator@@QEAA@AEBV0@@Z
53; public: __cdecl CLKRHashTable_Iterator::CLKRHashTable_Iterator(void) __ptr64
54??0CLKRHashTable_Iterator@@QEAA@XZ
55; private: __cdecl CLKRLinearHashTable::CLKRLinearHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,class CLKRHashTable * __ptr64,bool) __ptr64
56??0CLKRLinearHashTable@@AEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKPEAVCLKRHashTable@@_N@Z
57; public: __cdecl CLKRLinearHashTable::CLKRLinearHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,unsigned long,bool) __ptr64
58??0CLKRLinearHashTable@@QEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKK_N@Z
59; protected: __cdecl CLKRLinearHashTable_Iterator::CLKRLinearHashTable_Iterator(class CLKRLinearHashTable * __ptr64,class CNodeClump * __ptr64,unsigned long,short) __ptr64
60??0CLKRLinearHashTable_Iterator@@IEAA@PEAVCLKRLinearHashTable@@PEAVCNodeClump@@KF@Z
61; public: __cdecl CLKRLinearHashTable_Iterator::CLKRLinearHashTable_Iterator(class CLKRLinearHashTable_Iterator const & __ptr64) __ptr64
62??0CLKRLinearHashTable_Iterator@@QEAA@AEBV0@@Z
63; public: __cdecl CLKRLinearHashTable_Iterator::CLKRLinearHashTable_Iterator(void) __ptr64
64??0CLKRLinearHashTable_Iterator@@QEAA@XZ
65; public: __cdecl CLockedDoubleList::CLockedDoubleList(void) __ptr64
66??0CLockedDoubleList@@QEAA@XZ
67; public: __cdecl CLockedSingleList::CLockedSingleList(void) __ptr64
68??0CLockedSingleList@@QEAA@XZ
69; public: __cdecl CReaderWriterLock2::CReaderWriterLock2(void) __ptr64
70??0CReaderWriterLock2@@QEAA@XZ
71; public: __cdecl CReaderWriterLock3::CReaderWriterLock3(void) __ptr64
72??0CReaderWriterLock3@@QEAA@XZ
73; public: __cdecl CReaderWriterLock::CReaderWriterLock(void) __ptr64
74??0CReaderWriterLock@@QEAA@XZ
75; public: __cdecl CRtlResource::CRtlResource(void) __ptr64
76??0CRtlResource@@QEAA@XZ
77; public: __cdecl CShareLock::CShareLock(void) __ptr64
78??0CShareLock@@QEAA@XZ
79; public: __cdecl CSharelock::CSharelock(int,int) __ptr64
80??0CSharelock@@QEAA@HH@Z
81; public: __cdecl CSingleList::CSingleList(void) __ptr64
82??0CSingleList@@QEAA@XZ
83; public: __cdecl CSmallSpinLock::CSmallSpinLock(void) __ptr64
84??0CSmallSpinLock@@QEAA@XZ
85; public: __cdecl CSpinLock::CSpinLock(void) __ptr64
86??0CSpinLock@@QEAA@XZ
87; public: __cdecl EVENT_LOG::EVENT_LOG(char const * __ptr64) __ptr64
88??0EVENT_LOG@@QEAA@PEBD@Z
89; public: __cdecl EXTLOG_DATETIME_CACHE::EXTLOG_DATETIME_CACHE(void) __ptr64
90??0EXTLOG_DATETIME_CACHE@@QEAA@XZ
91; public: __cdecl HASH_TABLE::HASH_TABLE(class HASH_TABLE const & __ptr64) __ptr64
92??0HASH_TABLE@@QEAA@AEBV0@@Z
93; public: __cdecl HASH_TABLE::HASH_TABLE(unsigned long,char const * __ptr64,unsigned long) __ptr64
94??0HASH_TABLE@@QEAA@KPEBDK@Z
95; public: __cdecl HASH_TABLE_BUCKET::HASH_TABLE_BUCKET(void) __ptr64
96??0HASH_TABLE_BUCKET@@QEAA@XZ
97; public: __cdecl HTB_ELEMENT::HTB_ELEMENT(void) __ptr64
98??0HTB_ELEMENT@@QEAA@XZ
99; public: __cdecl HT_ELEMENT::HT_ELEMENT(class HT_ELEMENT const & __ptr64) __ptr64
100??0HT_ELEMENT@@QEAA@AEBV0@@Z
101; public: __cdecl HT_ELEMENT::HT_ELEMENT(void) __ptr64
102??0HT_ELEMENT@@QEAA@XZ
103; public: __cdecl MLSZAU::MLSZAU(class MLSZAU & __ptr64) __ptr64
104??0MLSZAU@@QEAA@AEAV0@@Z
105; public: __cdecl MLSZAU::MLSZAU(char * __ptr64 const,int,unsigned long) __ptr64
106??0MLSZAU@@QEAA@QEADHK@Z
107; public: __cdecl MLSZAU::MLSZAU(char * __ptr64 const,unsigned long) __ptr64
108??0MLSZAU@@QEAA@QEADK@Z
109; public: __cdecl MLSZAU::MLSZAU(unsigned short * __ptr64 const,unsigned long) __ptr64
110??0MLSZAU@@QEAA@QEAGK@Z
111; public: __cdecl MLSZAU::MLSZAU(void) __ptr64
112??0MLSZAU@@QEAA@XZ
113; public: __cdecl MULTISZ::MULTISZ(class MULTISZ const & __ptr64) __ptr64
114??0MULTISZ@@QEAA@AEBV0@@Z
115; public: __cdecl MULTISZ::MULTISZ(char * __ptr64,unsigned long) __ptr64
116??0MULTISZ@@QEAA@PEADK@Z
117; public: __cdecl MULTISZ::MULTISZ(char const * __ptr64) __ptr64
118??0MULTISZ@@QEAA@PEBD@Z
119; public: __cdecl MULTISZ::MULTISZ(void) __ptr64
120??0MULTISZ@@QEAA@XZ
121; public: __cdecl STR::STR(class STR const & __ptr64) __ptr64
122??0STR@@QEAA@AEBV0@@Z
123; public: __cdecl STR::STR(unsigned long) __ptr64
124??0STR@@QEAA@K@Z
125; public: __cdecl STR::STR(char * __ptr64,unsigned long,int) __ptr64
126??0STR@@QEAA@PEADKH@Z
127; public: __cdecl STR::STR(char const * __ptr64) __ptr64
128??0STR@@QEAA@PEBD@Z
129; public: __cdecl STR::STR(void) __ptr64
130??0STR@@QEAA@XZ
131; private: __cdecl STRA::STRA(class STRA const & __ptr64) __ptr64
132??0STRA@@AEAA@AEBV0@@Z
133; private: __cdecl STRA::STRA(char * __ptr64) __ptr64
134??0STRA@@AEAA@PEAD@Z
135; private: __cdecl STRA::STRA(char const * __ptr64) __ptr64
136??0STRA@@AEAA@PEBD@Z
137; public: __cdecl STRA::STRA(char * __ptr64,unsigned long) __ptr64
138??0STRA@@QEAA@PEADK@Z
139; public: __cdecl STRA::STRA(void) __ptr64
140??0STRA@@QEAA@XZ
141; public: __cdecl STRAU::STRAU(class STRAU & __ptr64) __ptr64
142??0STRAU@@QEAA@AEAV0@@Z
143; public: __cdecl STRAU::STRAU(char const * __ptr64) __ptr64
144??0STRAU@@QEAA@PEBD@Z
145; public: __cdecl STRAU::STRAU(char const * __ptr64,int) __ptr64
146??0STRAU@@QEAA@PEBDH@Z
147; public: __cdecl STRAU::STRAU(unsigned short const * __ptr64) __ptr64
148??0STRAU@@QEAA@PEBG@Z
149; public: __cdecl STRAU::STRAU(void) __ptr64
150??0STRAU@@QEAA@XZ
151; private: __cdecl STRU::STRU(class STRU const & __ptr64) __ptr64
152??0STRU@@AEAA@AEBV0@@Z
153; private: __cdecl STRU::STRU(unsigned short * __ptr64) __ptr64
154??0STRU@@AEAA@PEAG@Z
155; private: __cdecl STRU::STRU(unsigned short const * __ptr64) __ptr64
156??0STRU@@AEAA@PEBG@Z
157; public: __cdecl STRU::STRU(unsigned short * __ptr64,unsigned long) __ptr64
158??0STRU@@QEAA@PEAGK@Z
159; public: __cdecl STRU::STRU(void) __ptr64
160??0STRU@@QEAA@XZ
161; public: __cdecl TS_RESOURCE::TS_RESOURCE(void) __ptr64
162??0TS_RESOURCE@@QEAA@XZ
163; public: __cdecl W3_DATETIME_CACHE::W3_DATETIME_CACHE(void) __ptr64
164??0W3_DATETIME_CACHE@@QEAA@XZ
165; public: __cdecl ALLOC_CACHE_HANDLER::~ALLOC_CACHE_HANDLER(void) __ptr64
166??1ALLOC_CACHE_HANDLER@@QEAA@XZ
167; public: virtual __cdecl ASCLOG_DATETIME_CACHE::~ASCLOG_DATETIME_CACHE(void) __ptr64
168??1ASCLOG_DATETIME_CACHE@@UEAA@XZ
169; public: __cdecl BUFFER::~BUFFER(void) __ptr64
170??1BUFFER@@QEAA@XZ
171; public: __cdecl BUFFER_CHAIN::~BUFFER_CHAIN(void) __ptr64
172??1BUFFER_CHAIN@@QEAA@XZ
173; public: __cdecl BUFFER_CHAIN_ITEM::~BUFFER_CHAIN_ITEM(void) __ptr64
174??1BUFFER_CHAIN_ITEM@@QEAA@XZ
175; public: virtual __cdecl CACHED_DATETIME_FORMATS::~CACHED_DATETIME_FORMATS(void) __ptr64
176??1CACHED_DATETIME_FORMATS@@UEAA@XZ
177; public: __cdecl CCritSec::~CCritSec(void) __ptr64
178??1CCritSec@@QEAA@XZ
179; public: __cdecl CDoubleList::~CDoubleList(void) __ptr64
180??1CDoubleList@@QEAA@XZ
181; public: __cdecl CEtwTracer::~CEtwTracer(void) __ptr64
182??1CEtwTracer@@QEAA@XZ
183; public: __cdecl CFakeLock::~CFakeLock(void) __ptr64
184??1CFakeLock@@QEAA@XZ
185; public: __cdecl CLKRHashTable::~CLKRHashTable(void) __ptr64
186??1CLKRHashTable@@QEAA@XZ
187; public: __cdecl CLKRHashTable_Iterator::~CLKRHashTable_Iterator(void) __ptr64
188??1CLKRHashTable_Iterator@@QEAA@XZ
189; public: __cdecl CLKRLinearHashTable::~CLKRLinearHashTable(void) __ptr64
190??1CLKRLinearHashTable@@QEAA@XZ
191; public: __cdecl CLKRLinearHashTable_Iterator::~CLKRLinearHashTable_Iterator(void) __ptr64
192??1CLKRLinearHashTable_Iterator@@QEAA@XZ
193; public: __cdecl CLockedDoubleList::~CLockedDoubleList(void) __ptr64
194??1CLockedDoubleList@@QEAA@XZ
195; public: __cdecl CLockedSingleList::~CLockedSingleList(void) __ptr64
196??1CLockedSingleList@@QEAA@XZ
197; public: __cdecl CRtlResource::~CRtlResource(void) __ptr64
198??1CRtlResource@@QEAA@XZ
199; public: __cdecl CShareLock::~CShareLock(void) __ptr64
200??1CShareLock@@QEAA@XZ
201; public: __cdecl CSharelock::~CSharelock(void) __ptr64
202??1CSharelock@@QEAA@XZ
203; public: __cdecl CSingleList::~CSingleList(void) __ptr64
204??1CSingleList@@QEAA@XZ
205; public: __cdecl EVENT_LOG::~EVENT_LOG(void) __ptr64
206??1EVENT_LOG@@QEAA@XZ
207; public: virtual __cdecl EXTLOG_DATETIME_CACHE::~EXTLOG_DATETIME_CACHE(void) __ptr64
208??1EXTLOG_DATETIME_CACHE@@UEAA@XZ
209; public: virtual __cdecl HASH_TABLE::~HASH_TABLE(void) __ptr64
210??1HASH_TABLE@@UEAA@XZ
211; public: __cdecl HASH_TABLE_BUCKET::~HASH_TABLE_BUCKET(void) __ptr64
212??1HASH_TABLE_BUCKET@@QEAA@XZ
213; public: __cdecl HTB_ELEMENT::~HTB_ELEMENT(void) __ptr64
214??1HTB_ELEMENT@@QEAA@XZ
215; public: virtual __cdecl HT_ELEMENT::~HT_ELEMENT(void) __ptr64
216??1HT_ELEMENT@@UEAA@XZ
217; public: __cdecl MLSZAU::~MLSZAU(void) __ptr64
218??1MLSZAU@@QEAA@XZ
219; public: __cdecl MULTISZ::~MULTISZ(void) __ptr64
220??1MULTISZ@@QEAA@XZ
221; public: __cdecl STR::~STR(void) __ptr64
222??1STR@@QEAA@XZ
223; public: __cdecl STRA::~STRA(void) __ptr64
224??1STRA@@QEAA@XZ
225; public: __cdecl STRAU::~STRAU(void) __ptr64
226??1STRAU@@QEAA@XZ
227; public: __cdecl STRU::~STRU(void) __ptr64
228??1STRU@@QEAA@XZ
229; public: __cdecl TS_RESOURCE::~TS_RESOURCE(void) __ptr64
230??1TS_RESOURCE@@QEAA@XZ
231; public: virtual __cdecl W3_DATETIME_CACHE::~W3_DATETIME_CACHE(void) __ptr64
232??1W3_DATETIME_CACHE@@UEAA@XZ
233; public: static void * __ptr64 __cdecl CLKRLinearHashTable::operator new(unsigned __int64)
234??2CLKRLinearHashTable@@SAPEAX_K@Z
235; public: static void __cdecl CLKRLinearHashTable::operator delete(void * __ptr64)
236??3CLKRLinearHashTable@@SAXPEAX@Z
237; public: class CDataCache<struct DATETIME_FORMAT_ENTRY> & __ptr64 __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::operator=(class CDataCache<struct DATETIME_FORMAT_ENTRY> const & __ptr64) __ptr64
238??4?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@QEAAAEAV0@AEBV0@@Z
239; public: class CDataCache<class CDateTime> & __ptr64 __cdecl CDataCache<class CDateTime>::operator=(class CDataCache<class CDateTime> const & __ptr64) __ptr64
240??4?$CDataCache@VCDateTime@@@@QEAAAEAV0@AEBV0@@Z
241; public: class CLockBase<1,1,3,1,3,2> & __ptr64 __cdecl CLockBase<1,1,3,1,3,2>::operator=(class CLockBase<1,1,3,1,3,2> const & __ptr64) __ptr64
242??4?$CLockBase@$00$00$02$00$02$01@@QEAAAEAV0@AEBV0@@Z
243; public: class CLockBase<2,1,1,1,3,2> & __ptr64 __cdecl CLockBase<2,1,1,1,3,2>::operator=(class CLockBase<2,1,1,1,3,2> const & __ptr64) __ptr64
244??4?$CLockBase@$01$00$00$00$02$01@@QEAAAEAV0@AEBV0@@Z
245; public: class CLockBase<3,1,1,1,1,1> & __ptr64 __cdecl CLockBase<3,1,1,1,1,1>::operator=(class CLockBase<3,1,1,1,1,1> const & __ptr64) __ptr64
246??4?$CLockBase@$02$00$00$00$00$00@@QEAAAEAV0@AEBV0@@Z
247; public: class CLockBase<4,1,1,2,3,3> & __ptr64 __cdecl CLockBase<4,1,1,2,3,3>::operator=(class CLockBase<4,1,1,2,3,3> const & __ptr64) __ptr64
248??4?$CLockBase@$03$00$00$01$02$02@@QEAAAEAV0@AEBV0@@Z
249; public: class CLockBase<5,2,1,2,3,3> & __ptr64 __cdecl CLockBase<5,2,1,2,3,3>::operator=(class CLockBase<5,2,1,2,3,3> const & __ptr64) __ptr64
250??4?$CLockBase@$04$01$00$01$02$02@@QEAAAEAV0@AEBV0@@Z
251; public: class CLockBase<6,2,1,2,3,3> & __ptr64 __cdecl CLockBase<6,2,1,2,3,3>::operator=(class CLockBase<6,2,1,2,3,3> const & __ptr64) __ptr64
252??4?$CLockBase@$05$01$00$01$02$02@@QEAAAEAV0@AEBV0@@Z
253; public: class CLockBase<7,2,2,1,3,2> & __ptr64 __cdecl CLockBase<7,2,2,1,3,2>::operator=(class CLockBase<7,2,2,1,3,2> const & __ptr64) __ptr64
254??4?$CLockBase@$06$01$01$00$02$01@@QEAAAEAV0@AEBV0@@Z
255; public: class CLockBase<8,2,2,1,3,2> & __ptr64 __cdecl CLockBase<8,2,2,1,3,2>::operator=(class CLockBase<8,2,2,1,3,2> const & __ptr64) __ptr64
256??4?$CLockBase@$07$01$01$00$02$01@@QEAAAEAV0@AEBV0@@Z
257; public: class CLockBase<9,2,1,1,3,2> & __ptr64 __cdecl CLockBase<9,2,1,1,3,2>::operator=(class CLockBase<9,2,1,1,3,2> const & __ptr64) __ptr64
258??4?$CLockBase@$08$01$00$00$02$01@@QEAAAEAV0@AEBV0@@Z
259; public: class ALLOC_CACHE_HANDLER & __ptr64 __cdecl ALLOC_CACHE_HANDLER::operator=(class ALLOC_CACHE_HANDLER const & __ptr64) __ptr64
260??4ALLOC_CACHE_HANDLER@@QEAAAEAV0@AEBV0@@Z
261; public: class BUFFER & __ptr64 __cdecl BUFFER::operator=(class BUFFER const & __ptr64) __ptr64
262??4BUFFER@@QEAAAEAV0@AEBV0@@Z
263; public: class BUFFER_CHAIN & __ptr64 __cdecl BUFFER_CHAIN::operator=(class BUFFER_CHAIN const & __ptr64) __ptr64
264??4BUFFER_CHAIN@@QEAAAEAV0@AEBV0@@Z
265; public: class BUFFER_CHAIN_ITEM & __ptr64 __cdecl BUFFER_CHAIN_ITEM::operator=(class BUFFER_CHAIN_ITEM const & __ptr64) __ptr64
266??4BUFFER_CHAIN_ITEM@@QEAAAEAV0@AEBV0@@Z
267; public: class CCritSec & __ptr64 __cdecl CCritSec::operator=(class CCritSec const & __ptr64) __ptr64
268??4CCritSec@@QEAAAEAV0@AEBV0@@Z
269; public: class CDFTCache & __ptr64 __cdecl CDFTCache::operator=(class CDFTCache const & __ptr64) __ptr64
270??4CDFTCache@@QEAAAEAV0@AEBV0@@Z
271; public: class CDateTime & __ptr64 __cdecl CDateTime::operator=(class CDateTime const & __ptr64) __ptr64
272??4CDateTime@@QEAAAEAV0@AEBV0@@Z
273; public: class CDoubleList & __ptr64 __cdecl CDoubleList::operator=(class CDoubleList const & __ptr64) __ptr64
274??4CDoubleList@@QEAAAEAV0@AEBV0@@Z
275; public: class CFakeLock & __ptr64 __cdecl CFakeLock::operator=(class CFakeLock const & __ptr64) __ptr64
276??4CFakeLock@@QEAAAEAV0@AEBV0@@Z
277; public: class CLKRHashTableStats & __ptr64 __cdecl CLKRHashTableStats::operator=(class CLKRHashTableStats const & __ptr64) __ptr64
278??4CLKRHashTableStats@@QEAAAEAV0@AEBV0@@Z
279; public: class CLKRHashTable_Iterator & __ptr64 __cdecl CLKRHashTable_Iterator::operator=(class CLKRHashTable_Iterator const & __ptr64) __ptr64
280??4CLKRHashTable_Iterator@@QEAAAEAV0@AEBV0@@Z
281; public: class CLKRLinearHashTable_Iterator & __ptr64 __cdecl CLKRLinearHashTable_Iterator::operator=(class CLKRLinearHashTable_Iterator const & __ptr64) __ptr64
282??4CLKRLinearHashTable_Iterator@@QEAAAEAV0@AEBV0@@Z
283; public: class CLockedDoubleList & __ptr64 __cdecl CLockedDoubleList::operator=(class CLockedDoubleList const & __ptr64) __ptr64
284??4CLockedDoubleList@@QEAAAEAV0@AEBV0@@Z
285; public: class CLockedSingleList & __ptr64 __cdecl CLockedSingleList::operator=(class CLockedSingleList const & __ptr64) __ptr64
286??4CLockedSingleList@@QEAAAEAV0@AEBV0@@Z
287; public: class CReaderWriterLock2 & __ptr64 __cdecl CReaderWriterLock2::operator=(class CReaderWriterLock2 const & __ptr64) __ptr64
288??4CReaderWriterLock2@@QEAAAEAV0@AEBV0@@Z
289; public: class CReaderWriterLock3 & __ptr64 __cdecl CReaderWriterLock3::operator=(class CReaderWriterLock3 const & __ptr64) __ptr64
290??4CReaderWriterLock3@@QEAAAEAV0@AEBV0@@Z
291; public: class CReaderWriterLock & __ptr64 __cdecl CReaderWriterLock::operator=(class CReaderWriterLock const & __ptr64) __ptr64
292??4CReaderWriterLock@@QEAAAEAV0@AEBV0@@Z
293; public: class CRtlResource & __ptr64 __cdecl CRtlResource::operator=(class CRtlResource const & __ptr64) __ptr64
294??4CRtlResource@@QEAAAEAV0@AEBV0@@Z
295; public: class CSingleList & __ptr64 __cdecl CSingleList::operator=(class CSingleList const & __ptr64) __ptr64
296??4CSingleList@@QEAAAEAV0@AEBV0@@Z
297; public: class CSmallSpinLock & __ptr64 __cdecl CSmallSpinLock::operator=(class CSmallSpinLock const & __ptr64) __ptr64
298??4CSmallSpinLock@@QEAAAEAV0@AEBV0@@Z
299; public: class CSpinLock & __ptr64 __cdecl CSpinLock::operator=(class CSpinLock const & __ptr64) __ptr64
300??4CSpinLock@@QEAAAEAV0@AEBV0@@Z
301; public: struct DATETIME_FORMAT_ENTRY & __ptr64 __cdecl DATETIME_FORMAT_ENTRY::operator=(struct DATETIME_FORMAT_ENTRY const & __ptr64) __ptr64
302??4DATETIME_FORMAT_ENTRY@@QEAAAEAU0@AEBU0@@Z
303; public: class EVENT_LOG & __ptr64 __cdecl EVENT_LOG::operator=(class EVENT_LOG const & __ptr64) __ptr64
304??4EVENT_LOG@@QEAAAEAV0@AEBV0@@Z
305; public: class HASH_TABLE & __ptr64 __cdecl HASH_TABLE::operator=(class HASH_TABLE const & __ptr64) __ptr64
306??4HASH_TABLE@@QEAAAEAV0@AEBV0@@Z
307; public: class HASH_TABLE_BUCKET & __ptr64 __cdecl HASH_TABLE_BUCKET::operator=(class HASH_TABLE_BUCKET const & __ptr64) __ptr64
308??4HASH_TABLE_BUCKET@@QEAAAEAV0@AEBV0@@Z
309; public: struct HTB_ELEMENT & __ptr64 __cdecl HTB_ELEMENT::operator=(struct HTB_ELEMENT const & __ptr64) __ptr64
310??4HTB_ELEMENT@@QEAAAEAU0@AEBU0@@Z
311; public: class HT_ELEMENT & __ptr64 __cdecl HT_ELEMENT::operator=(class HT_ELEMENT const & __ptr64) __ptr64
312??4HT_ELEMENT@@QEAAAEAV0@AEBV0@@Z
313; public: class MLSZAU & __ptr64 __cdecl MLSZAU::operator=(class MLSZAU const & __ptr64) __ptr64
314??4MLSZAU@@QEAAAEAV0@AEBV0@@Z
315; public: class MULTISZ & __ptr64 __cdecl MULTISZ::operator=(class MULTISZ const & __ptr64) __ptr64
316??4MULTISZ@@QEAAAEAV0@AEBV0@@Z
317; public: class STR & __ptr64 __cdecl STR::operator=(class STR const & __ptr64) __ptr64
318??4STR@@QEAAAEAV0@AEBV0@@Z
319; private: class STRA & __ptr64 __cdecl STRA::operator=(class STRA const & __ptr64) __ptr64
320??4STRA@@AEAAAEAV0@AEBV0@@Z
321; public: class STRAU & __ptr64 __cdecl STRAU::operator=(class STRAU const & __ptr64) __ptr64
322??4STRAU@@QEAAAEAV0@AEBV0@@Z
323; private: class STRU & __ptr64 __cdecl STRU::operator=(class STRU const & __ptr64) __ptr64
324??4STRU@@AEAAAEAV0@AEBV0@@Z
325; public: class TS_RESOURCE & __ptr64 __cdecl TS_RESOURCE::operator=(class TS_RESOURCE const & __ptr64) __ptr64
326??4TS_RESOURCE@@QEAAAEAV0@AEBV0@@Z
327; public: bool __cdecl CLKRHashTable_Iterator::operator==(class CLKRHashTable_Iterator const & __ptr64)const __ptr64
328??8CLKRHashTable_Iterator@@QEBA_NAEBV0@@Z
329; public: bool __cdecl CLKRLinearHashTable_Iterator::operator==(class CLKRLinearHashTable_Iterator const & __ptr64)const __ptr64
330??8CLKRLinearHashTable_Iterator@@QEBA_NAEBV0@@Z
331; public: bool __cdecl CLKRHashTable_Iterator::operator!=(class CLKRHashTable_Iterator const & __ptr64)const __ptr64
332??9CLKRHashTable_Iterator@@QEBA_NAEBV0@@Z
333; public: bool __cdecl CLKRLinearHashTable_Iterator::operator!=(class CLKRLinearHashTable_Iterator const & __ptr64)const __ptr64
334??9CLKRLinearHashTable_Iterator@@QEBA_NAEBV0@@Z
335; const ASCLOG_DATETIME_CACHE::`vftable'
336??_7ASCLOG_DATETIME_CACHE@@6B@
337; const CACHED_DATETIME_FORMATS::`vftable'
338??_7CACHED_DATETIME_FORMATS@@6B@
339; const EXTLOG_DATETIME_CACHE::`vftable'
340??_7EXTLOG_DATETIME_CACHE@@6B@
341; const HASH_TABLE::`vftable'
342??_7HASH_TABLE@@6B@
343; const HT_ELEMENT::`vftable'
344??_7HT_ELEMENT@@6B@
345; const W3_DATETIME_CACHE::`vftable'
346??_7W3_DATETIME_CACHE@@6B@
347; public: void __cdecl BUFFER::`default constructor closure'(void) __ptr64
348??_FBUFFER@@QEAAXXZ
349; public: void __cdecl BUFFER_CHAIN_ITEM::`default constructor closure'(void) __ptr64
350??_FBUFFER_CHAIN_ITEM@@QEAAXXZ
351; public: void __cdecl CSharelock::`default constructor closure'(void) __ptr64
352??_FCSharelock@@QEAAXXZ
353; public: int __cdecl CSharelock::ActiveUsers(void) __ptr64
354?ActiveUsers@CSharelock@@QEAAHXZ
355; public: void * __ptr64 __cdecl ALLOC_CACHE_HANDLER::Alloc(void) __ptr64
356?Alloc@ALLOC_CACHE_HANDLER@@QEAAPEAXXZ
357; public: int __cdecl MULTISZ::Append(class STR const & __ptr64) __ptr64
358?Append@MULTISZ@@QEAAHAEBVSTR@@@Z
359; public: int __cdecl MULTISZ::Append(char const * __ptr64) __ptr64
360?Append@MULTISZ@@QEAAHPEBD@Z
361; public: int __cdecl MULTISZ::Append(char const * __ptr64,unsigned long) __ptr64
362?Append@MULTISZ@@QEAAHPEBDK@Z
363; public: int __cdecl STR::Append(class STR const & __ptr64) __ptr64
364?Append@STR@@QEAAHAEBV1@@Z
365; public: int __cdecl STR::Append(char const * __ptr64) __ptr64
366?Append@STR@@QEAAHPEBD@Z
367; public: int __cdecl STR::Append(char const * __ptr64,unsigned long) __ptr64
368?Append@STR@@QEAAHPEBDK@Z
369; public: void __cdecl STR::Append(char) __ptr64
370?Append@STR@@QEAAXD@Z
371; public: void __cdecl STR::Append(char,char) __ptr64
372?Append@STR@@QEAAXDD@Z
373; public: long __cdecl STRA::Append(class STRA const & __ptr64) __ptr64
374?Append@STRA@@QEAAJAEBV1@@Z
375; public: long __cdecl STRA::Append(char const * __ptr64) __ptr64
376?Append@STRA@@QEAAJPEBD@Z
377; public: long __cdecl STRA::Append(char const * __ptr64,unsigned long) __ptr64
378?Append@STRA@@QEAAJPEBDK@Z
379; public: int __cdecl STRAU::Append(class STRAU & __ptr64) __ptr64
380?Append@STRAU@@QEAAHAEAV1@@Z
381; public: int __cdecl STRAU::Append(char const * __ptr64) __ptr64
382?Append@STRAU@@QEAAHPEBD@Z
383; public: int __cdecl STRAU::Append(char const * __ptr64,unsigned long) __ptr64
384?Append@STRAU@@QEAAHPEBDK@Z
385; public: int __cdecl STRAU::Append(unsigned short const * __ptr64) __ptr64
386?Append@STRAU@@QEAAHPEBG@Z
387; public: int __cdecl STRAU::Append(unsigned short const * __ptr64,unsigned long) __ptr64
388?Append@STRAU@@QEAAHPEBGK@Z
389; public: long __cdecl STRU::Append(class STRU const & __ptr64) __ptr64
390?Append@STRU@@QEAAJAEBV1@@Z
391; public: long __cdecl STRU::Append(unsigned short const * __ptr64) __ptr64
392?Append@STRU@@QEAAJPEBG@Z
393; public: long __cdecl STRU::Append(unsigned short const * __ptr64,unsigned long) __ptr64
394?Append@STRU@@QEAAJPEBGK@Z
395; public: long __cdecl STRU::AppendA(char const * __ptr64) __ptr64
396?AppendA@STRU@@QEAAJPEBD@Z
397; public: int __cdecl BUFFER_CHAIN::AppendBuffer(class BUFFER_CHAIN_ITEM * __ptr64) __ptr64
398?AppendBuffer@BUFFER_CHAIN@@QEAAHPEAVBUFFER_CHAIN_ITEM@@@Z
399; public: void __cdecl STR::AppendCRLF(void) __ptr64
400?AppendCRLF@STR@@QEAAXXZ
401; public: long __cdecl STRA::AppendW(unsigned short const * __ptr64) __ptr64
402?AppendW@STRA@@QEAAJPEBG@Z
403; public: long __cdecl STRA::AppendW(unsigned short const * __ptr64,unsigned long) __ptr64
404?AppendW@STRA@@QEAAJPEBGK@Z
405; public: long __cdecl STRA::AppendWTruncate(unsigned short const * __ptr64) __ptr64
406?AppendWTruncate@STRA@@QEAAJPEBG@Z
407; public: long __cdecl STRA::AppendWTruncate(unsigned short const * __ptr64,unsigned long) __ptr64
408?AppendWTruncate@STRA@@QEAAJPEBGK@Z
409; public: unsigned long __cdecl CLKRHashTable::Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
410?Apply@CLKRHashTable@@QEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@@Z
411; public: unsigned long __cdecl CLKRLinearHashTable::Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
412?Apply@CLKRLinearHashTable@@QEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@@Z
413; public: unsigned long __cdecl CLKRHashTable::ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
414?ApplyIf@CLKRHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
415; public: unsigned long __cdecl CLKRLinearHashTable::ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
416?ApplyIf@CLKRLinearHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
417; private: int __cdecl MULTISZ::AuxAppend(unsigned char const * __ptr64,unsigned int,int) __ptr64
418?AuxAppend@MULTISZ@@AEAAHPEBEIH@Z
419; private: int __cdecl STR::AuxAppend(unsigned char const * __ptr64,unsigned int,int) __ptr64
420?AuxAppend@STR@@AEAAHPEBEIH@Z
421; private: long __cdecl STRA::AuxAppend(unsigned char const * __ptr64,unsigned long,unsigned long,int) __ptr64
422?AuxAppend@STRA@@AEAAJPEBEKKH@Z
423; private: int __cdecl STRAU::AuxAppend(char const * __ptr64,unsigned int,int) __ptr64
424?AuxAppend@STRAU@@AEAAHPEBDIH@Z
425; private: int __cdecl STRAU::AuxAppend(unsigned short const * __ptr64,unsigned int,int) __ptr64
426?AuxAppend@STRAU@@AEAAHPEBGIH@Z
427; private: long __cdecl STRU::AuxAppend(unsigned char const * __ptr64,unsigned long,unsigned long,int) __ptr64
428?AuxAppend@STRU@@AEAAJPEBEKKH@Z
429; private: long __cdecl STRU::AuxAppendA(unsigned char const * __ptr64,unsigned long,unsigned long,int) __ptr64
430?AuxAppendA@STRU@@AEAAJPEBEKKH@Z
431; private: long __cdecl STRA::AuxAppendW(unsigned short const * __ptr64,unsigned long,unsigned long,int) __ptr64
432?AuxAppendW@STRA@@AEAAJPEBGKKH@Z
433; private: long __cdecl STRA::AuxAppendWTruncate(unsigned short const * __ptr64,unsigned long,unsigned long,int) __ptr64
434?AuxAppendWTruncate@STRA@@AEAAJPEBGKKH@Z
435; private: void __cdecl MLSZAU::AuxInit(char * __ptr64 const,unsigned long) __ptr64
436?AuxInit@MLSZAU@@AEAAXQEADK@Z
437; private: void __cdecl MLSZAU::AuxInit(unsigned short * __ptr64 const,unsigned long) __ptr64
438?AuxInit@MLSZAU@@AEAAXQEAGK@Z
439; private: void __cdecl MULTISZ::AuxInit(unsigned char const * __ptr64) __ptr64
440?AuxInit@MULTISZ@@AEAAXPEBE@Z
441; private: void __cdecl STR::AuxInit(unsigned char const * __ptr64) __ptr64
442?AuxInit@STR@@AEAAXPEBE@Z
443; private: void __cdecl STRAU::AuxInit(char const * __ptr64) __ptr64
444?AuxInit@STRAU@@AEAAXPEBD@Z
445; private: void __cdecl STRAU::AuxInit(unsigned short const * __ptr64) __ptr64
446?AuxInit@STRAU@@AEAAXPEBG@Z
447; public: class CLKRHashTable_Iterator __cdecl CLKRHashTable::Begin(void) __ptr64
448?Begin@CLKRHashTable@@QEAA?AVCLKRHashTable_Iterator@@XZ
449; public: class CLKRLinearHashTable_Iterator __cdecl CLKRLinearHashTable::Begin(void) __ptr64
450?Begin@CLKRLinearHashTable@@QEAA?AVCLKRLinearHashTable_Iterator@@XZ
451; public: static long __cdecl CLKRHashTableStats::BucketIndex(long)
452?BucketIndex@CLKRHashTableStats@@SAJJ@Z
453; public: static long __cdecl CLKRHashTableStats::BucketSize(long)
454?BucketSize@CLKRHashTableStats@@SAJJ@Z
455; public: static long const * __ptr64 __cdecl CLKRHashTableStats::BucketSizes(void)
456?BucketSizes@CLKRHashTableStats@@SAPEBJXZ
457; public: static unsigned long __cdecl MULTISZ::CalcLength(char const * __ptr64,unsigned long * __ptr64)
458?CalcLength@MULTISZ@@SAKPEBDPEAK@Z
459; public: unsigned long __cdecl BUFFER_CHAIN::CalcTotalSize(int)const __ptr64
460?CalcTotalSize@BUFFER_CHAIN@@QEBAKH@Z
461; public: virtual unsigned long __cdecl HASH_TABLE::CalculateHash(char const * __ptr64)const __ptr64
462?CalculateHash@HASH_TABLE@@UEBAKPEBD@Z
463; public: virtual unsigned long __cdecl HASH_TABLE::CalculateHash(char const * __ptr64,unsigned long)const __ptr64
464?CalculateHash@HASH_TABLE@@UEBAKPEBDK@Z
465CanonURL
466; public: void __cdecl CSharelock::ChangeExclusiveLockToSharedLock(void) __ptr64
467?ChangeExclusiveLockToSharedLock@CSharelock@@QEAAXXZ
468; public: unsigned char __cdecl CSharelock::ChangeSharedLockToExclusiveLock(int) __ptr64
469?ChangeSharedLockToExclusiveLock@CSharelock@@QEAAEH@Z
470; public: int __cdecl CLKRHashTable::CheckTable(void)const __ptr64
471?CheckTable@CLKRHashTable@@QEBAHXZ
472; public: int __cdecl CLKRLinearHashTable::CheckTable(void)const __ptr64
473?CheckTable@CLKRLinearHashTable@@QEBAHXZ
474; public: unsigned char __cdecl CSharelock::ClaimExclusiveLock(int) __ptr64
475?ClaimExclusiveLock@CSharelock@@QEAAEH@Z
476; public: unsigned char __cdecl CSharelock::ClaimShareLock(int) __ptr64
477?ClaimShareLock@CSharelock@@QEAAEH@Z
478; public: static char const * __ptr64 __cdecl CCritSec::ClassName(void)
479?ClassName@CCritSec@@SAPEBDXZ
480; public: static unsigned short const * __ptr64 __cdecl CCritSec::ClassName(void)
481?ClassName@CCritSec@@SAPEBGXZ
482; public: static char const * __ptr64 __cdecl CFakeLock::ClassName(void)
483?ClassName@CFakeLock@@SAPEBDXZ
484; public: static unsigned short const * __ptr64 __cdecl CFakeLock::ClassName(void)
485?ClassName@CFakeLock@@SAPEBGXZ
486; public: static unsigned short const * __ptr64 __cdecl CLKRHashTable::ClassName(void)
487?ClassName@CLKRHashTable@@SAPEBGXZ
488; public: static unsigned short const * __ptr64 __cdecl CLKRLinearHashTable::ClassName(void)
489?ClassName@CLKRLinearHashTable@@SAPEBGXZ
490; public: static char const * __ptr64 __cdecl CReaderWriterLock2::ClassName(void)
491?ClassName@CReaderWriterLock2@@SAPEBDXZ
492; public: static unsigned short const * __ptr64 __cdecl CReaderWriterLock2::ClassName(void)
493?ClassName@CReaderWriterLock2@@SAPEBGXZ
494; public: static char const * __ptr64 __cdecl CReaderWriterLock3::ClassName(void)
495?ClassName@CReaderWriterLock3@@SAPEBDXZ
496; public: static unsigned short const * __ptr64 __cdecl CReaderWriterLock3::ClassName(void)
497?ClassName@CReaderWriterLock3@@SAPEBGXZ
498; public: static char const * __ptr64 __cdecl CReaderWriterLock::ClassName(void)
499?ClassName@CReaderWriterLock@@SAPEBDXZ
500; public: static unsigned short const * __ptr64 __cdecl CReaderWriterLock::ClassName(void)
501?ClassName@CReaderWriterLock@@SAPEBGXZ
502; public: static char const * __ptr64 __cdecl CRtlResource::ClassName(void)
503?ClassName@CRtlResource@@SAPEBDXZ
504; public: static char const * __ptr64 __cdecl CShareLock::ClassName(void)
505?ClassName@CShareLock@@SAPEBDXZ
506; public: static char const * __ptr64 __cdecl CSmallSpinLock::ClassName(void)
507?ClassName@CSmallSpinLock@@SAPEBDXZ
508; public: static unsigned short const * __ptr64 __cdecl CSmallSpinLock::ClassName(void)
509?ClassName@CSmallSpinLock@@SAPEBGXZ
510; public: static char const * __ptr64 __cdecl CSpinLock::ClassName(void)
511?ClassName@CSpinLock@@SAPEBDXZ
512; public: static unsigned short const * __ptr64 __cdecl CSpinLock::ClassName(void)
513?ClassName@CSpinLock@@SAPEBGXZ
514; public: static int __cdecl ALLOC_CACHE_HANDLER::Cleanup(void)
515?Cleanup@ALLOC_CACHE_HANDLER@@SAHXZ
516; public: void __cdecl HASH_TABLE::Cleanup(void) __ptr64
517?Cleanup@HASH_TABLE@@QEAAXXZ
518; public: void __cdecl HTB_ELEMENT::Cleanup(void) __ptr64
519?Cleanup@HTB_ELEMENT@@QEAAXXZ
520; public: static void __cdecl ALLOC_CACHE_HANDLER::CleanupAllLookasides(void * __ptr64,unsigned char)
521?CleanupAllLookasides@ALLOC_CACHE_HANDLER@@SAXPEAXE@Z
522; public: void __cdecl ALLOC_CACHE_HANDLER::CleanupLookaside(int) __ptr64
523?CleanupLookaside@ALLOC_CACHE_HANDLER@@QEAAXH@Z
524; public: void __cdecl CLKRHashTable::Clear(void) __ptr64
525?Clear@CLKRHashTable@@QEAAXXZ
526; public: void __cdecl CLKRLinearHashTable::Clear(void) __ptr64
527?Clear@CLKRLinearHashTable@@QEAAXXZ
528; public: void __cdecl STR::Clear(void) __ptr64
529?Clear@STR@@QEAAXXZ
530; public: int __cdecl MULTISZ::Clone(class MULTISZ * __ptr64)const __ptr64
531?Clone@MULTISZ@@QEBAHPEAV1@@Z
532; public: int __cdecl STR::Clone(class STR * __ptr64)const __ptr64
533?Clone@STR@@QEBAHPEAV1@@Z
534; public: long __cdecl STRA::Clone(class STRA * __ptr64)const __ptr64
535?Clone@STRA@@QEBAJPEAV1@@Z
536; public: enum LK_RETCODE __cdecl CLKRHashTable::CloseIterator(class CLKRHashTable::CIterator * __ptr64) __ptr64
537?CloseIterator@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
538; public: enum LK_RETCODE __cdecl CLKRHashTable::CloseIterator(class CLKRHashTable::CConstIterator * __ptr64)const __ptr64
539?CloseIterator@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
540; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::CloseIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
541?CloseIterator@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
542; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::CloseIterator(class CLKRLinearHashTable::CConstIterator * __ptr64)const __ptr64
543?CloseIterator@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
544; public: unsigned long __cdecl HASH_TABLE::CloseIterator(struct HT_ITERATOR * __ptr64) __ptr64
545?CloseIterator@HASH_TABLE@@QEAAKPEAUHT_ITERATOR@@@Z
546; public: unsigned long __cdecl HASH_TABLE_BUCKET::CloseIterator(struct HT_ITERATOR * __ptr64) __ptr64
547?CloseIterator@HASH_TABLE_BUCKET@@QEAAKPEAUHT_ITERATOR@@@Z
548; public: void __cdecl TS_RESOURCE::Convert(enum TSRES_CONV_TYPE) __ptr64
549?Convert@TS_RESOURCE@@QEAAXW4TSRES_CONV_TYPE@@@Z
550; public: void __cdecl CCritSec::ConvertExclusiveToShared(void) __ptr64
551?ConvertExclusiveToShared@CCritSec@@QEAAXXZ
552; public: void __cdecl CFakeLock::ConvertExclusiveToShared(void) __ptr64
553?ConvertExclusiveToShared@CFakeLock@@QEAAXXZ
554; public: void __cdecl CLKRHashTable::ConvertExclusiveToShared(void)const __ptr64
555?ConvertExclusiveToShared@CLKRHashTable@@QEBAXXZ
556; public: void __cdecl CLKRLinearHashTable::ConvertExclusiveToShared(void)const __ptr64
557?ConvertExclusiveToShared@CLKRLinearHashTable@@QEBAXXZ
558; public: void __cdecl CReaderWriterLock2::ConvertExclusiveToShared(void) __ptr64
559?ConvertExclusiveToShared@CReaderWriterLock2@@QEAAXXZ
560; public: void __cdecl CReaderWriterLock3::ConvertExclusiveToShared(void) __ptr64
561?ConvertExclusiveToShared@CReaderWriterLock3@@QEAAXXZ
562; public: void __cdecl CReaderWriterLock::ConvertExclusiveToShared(void) __ptr64
563?ConvertExclusiveToShared@CReaderWriterLock@@QEAAXXZ
564; public: void __cdecl CRtlResource::ConvertExclusiveToShared(void) __ptr64
565?ConvertExclusiveToShared@CRtlResource@@QEAAXXZ
566; public: void __cdecl CShareLock::ConvertExclusiveToShared(void) __ptr64
567?ConvertExclusiveToShared@CShareLock@@QEAAXXZ
568; public: void __cdecl CSmallSpinLock::ConvertExclusiveToShared(void) __ptr64
569?ConvertExclusiveToShared@CSmallSpinLock@@QEAAXXZ
570; public: void __cdecl CSpinLock::ConvertExclusiveToShared(void) __ptr64
571?ConvertExclusiveToShared@CSpinLock@@QEAAXXZ
572; public: void __cdecl CCritSec::ConvertSharedToExclusive(void) __ptr64
573?ConvertSharedToExclusive@CCritSec@@QEAAXXZ
574; public: void __cdecl CFakeLock::ConvertSharedToExclusive(void) __ptr64
575?ConvertSharedToExclusive@CFakeLock@@QEAAXXZ
576; public: void __cdecl CLKRHashTable::ConvertSharedToExclusive(void)const __ptr64
577?ConvertSharedToExclusive@CLKRHashTable@@QEBAXXZ
578; public: void __cdecl CLKRLinearHashTable::ConvertSharedToExclusive(void)const __ptr64
579?ConvertSharedToExclusive@CLKRLinearHashTable@@QEBAXXZ
580; public: void __cdecl CReaderWriterLock2::ConvertSharedToExclusive(void) __ptr64
581?ConvertSharedToExclusive@CReaderWriterLock2@@QEAAXXZ
582; public: void __cdecl CReaderWriterLock3::ConvertSharedToExclusive(void) __ptr64
583?ConvertSharedToExclusive@CReaderWriterLock3@@QEAAXXZ
584; public: void __cdecl CReaderWriterLock::ConvertSharedToExclusive(void) __ptr64
585?ConvertSharedToExclusive@CReaderWriterLock@@QEAAXXZ
586; public: void __cdecl CRtlResource::ConvertSharedToExclusive(void) __ptr64
587?ConvertSharedToExclusive@CRtlResource@@QEAAXXZ
588; public: void __cdecl CShareLock::ConvertSharedToExclusive(void) __ptr64
589?ConvertSharedToExclusive@CShareLock@@QEAAXXZ
590; public: void __cdecl CSmallSpinLock::ConvertSharedToExclusive(void) __ptr64
591?ConvertSharedToExclusive@CSmallSpinLock@@QEAAXXZ
592; public: void __cdecl CSpinLock::ConvertSharedToExclusive(void) __ptr64
593?ConvertSharedToExclusive@CSpinLock@@QEAAXXZ
594; public: int __cdecl MULTISZ::Copy(class MULTISZ const & __ptr64) __ptr64
595?Copy@MULTISZ@@QEAAHAEBV1@@Z
596; public: int __cdecl MULTISZ::Copy(char const * __ptr64,unsigned long) __ptr64
597?Copy@MULTISZ@@QEAAHPEBDK@Z
598; public: int __cdecl STR::Copy(class STR const & __ptr64) __ptr64
599?Copy@STR@@QEAAHAEBV1@@Z
600; public: int __cdecl STR::Copy(char const * __ptr64) __ptr64
601?Copy@STR@@QEAAHPEBD@Z
602; public: int __cdecl STR::Copy(char const * __ptr64,unsigned long) __ptr64
603?Copy@STR@@QEAAHPEBDK@Z
604; public: long __cdecl STRA::Copy(class STRA const & __ptr64) __ptr64
605?Copy@STRA@@QEAAJAEBV1@@Z
606; public: long __cdecl STRA::Copy(char const * __ptr64) __ptr64
607?Copy@STRA@@QEAAJPEBD@Z
608; public: long __cdecl STRA::Copy(char const * __ptr64,unsigned long) __ptr64
609?Copy@STRA@@QEAAJPEBDK@Z
610; public: int __cdecl STRAU::Copy(class STRAU & __ptr64) __ptr64
611?Copy@STRAU@@QEAAHAEAV1@@Z
612; public: int __cdecl STRAU::Copy(char const * __ptr64) __ptr64
613?Copy@STRAU@@QEAAHPEBD@Z
614; public: int __cdecl STRAU::Copy(char const * __ptr64,unsigned long) __ptr64
615?Copy@STRAU@@QEAAHPEBDK@Z
616; public: int __cdecl STRAU::Copy(unsigned short const * __ptr64) __ptr64
617?Copy@STRAU@@QEAAHPEBG@Z
618; public: int __cdecl STRAU::Copy(unsigned short const * __ptr64,unsigned long) __ptr64
619?Copy@STRAU@@QEAAHPEBGK@Z
620; public: long __cdecl STRU::Copy(class STRU const & __ptr64) __ptr64
621?Copy@STRU@@QEAAJAEBV1@@Z
622; public: long __cdecl STRU::Copy(unsigned short const * __ptr64) __ptr64
623?Copy@STRU@@QEAAJPEBG@Z
624; public: long __cdecl STRU::Copy(unsigned short const * __ptr64,unsigned long) __ptr64
625?Copy@STRU@@QEAAJPEBGK@Z
626; public: long __cdecl STRU::CopyA(char const * __ptr64) __ptr64
627?CopyA@STRU@@QEAAJPEBD@Z
628; public: long __cdecl STRU::CopyA(char const * __ptr64,unsigned long) __ptr64
629?CopyA@STRU@@QEAAJPEBDK@Z
630; public: long __cdecl STRA::CopyBinary(void * __ptr64,unsigned long) __ptr64
631?CopyBinary@STRA@@QEAAJPEAXK@Z
632; public: int __cdecl CDFTCache::CopyFormattedData(struct _SYSTEMTIME const * __ptr64,char * __ptr64)const __ptr64
633?CopyFormattedData@CDFTCache@@QEBAHPEBU_SYSTEMTIME@@PEAD@Z
634; public: void __cdecl DATETIME_FORMAT_ENTRY::CopyFormattedData(struct _SYSTEMTIME const * __ptr64,char * __ptr64)const __ptr64
635?CopyFormattedData@DATETIME_FORMAT_ENTRY@@QEBAXPEBU_SYSTEMTIME@@PEAD@Z
636; public: int __cdecl MULTISZ::CopyToBuffer(char * __ptr64,unsigned long * __ptr64)const __ptr64
637?CopyToBuffer@MULTISZ@@QEBAHPEADPEAK@Z
638; public: int __cdecl STR::CopyToBuffer(char * __ptr64,unsigned long * __ptr64)const __ptr64
639?CopyToBuffer@STR@@QEBAHPEADPEAK@Z
640; public: int __cdecl STR::CopyToBuffer(unsigned short * __ptr64,unsigned long * __ptr64)const __ptr64
641?CopyToBuffer@STR@@QEBAHPEAGPEAK@Z
642; public: long __cdecl STRA::CopyToBuffer(char * __ptr64,unsigned long * __ptr64)const __ptr64
643?CopyToBuffer@STRA@@QEBAJPEADPEAK@Z
644; public: long __cdecl STRU::CopyToBuffer(unsigned short * __ptr64,unsigned long * __ptr64)const __ptr64
645?CopyToBuffer@STRU@@QEBAJPEAGPEAK@Z
646; public: long __cdecl STRA::CopyW(unsigned short const * __ptr64) __ptr64
647?CopyW@STRA@@QEAAJPEBG@Z
648; public: long __cdecl STRA::CopyW(unsigned short const * __ptr64,unsigned long) __ptr64
649?CopyW@STRA@@QEAAJPEBGK@Z
650; public: long __cdecl STRA::CopyWToUTF8(class STRU const & __ptr64) __ptr64
651?CopyWToUTF8@STRA@@QEAAJAEBVSTRU@@@Z
652; public: long __cdecl STRA::CopyWToUTF8(unsigned short const * __ptr64) __ptr64
653?CopyWToUTF8@STRA@@QEAAJPEBG@Z
654; public: long __cdecl STRA::CopyWToUTF8(unsigned short const * __ptr64,unsigned long) __ptr64
655?CopyWToUTF8@STRA@@QEAAJPEBGK@Z
656; public: long __cdecl STRA::CopyWToUTF8Unescaped(class STRU const & __ptr64) __ptr64
657?CopyWToUTF8Unescaped@STRA@@QEAAJAEBVSTRU@@@Z
658; public: long __cdecl STRA::CopyWToUTF8Unescaped(unsigned short const * __ptr64) __ptr64
659?CopyWToUTF8Unescaped@STRA@@QEAAJPEBG@Z
660; public: long __cdecl STRA::CopyWToUTF8Unescaped(unsigned short const * __ptr64,unsigned long) __ptr64
661?CopyWToUTF8Unescaped@STRA@@QEAAJPEBGK@Z
662; public: long __cdecl STRA::CopyWTruncate(unsigned short const * __ptr64) __ptr64
663?CopyWTruncate@STRA@@QEAAJPEBG@Z
664; public: long __cdecl STRA::CopyWTruncate(unsigned short const * __ptr64,unsigned long) __ptr64
665?CopyWTruncate@STRA@@QEAAJPEBGK@Z
666CreateKey
667; public: unsigned long __cdecl CDFTCache::DateTimeChars(void)const __ptr64
668?DateTimeChars@CDFTCache@@QEBAKXZ
669; char const * __ptr64 __cdecl DayOfWeek3CharNames(unsigned long)
670?DayOfWeek3CharNames@@YAPEBDK@Z
671; public: void __cdecl HTB_ELEMENT::DecrementElements(void) __ptr64
672?DecrementElements@HTB_ELEMENT@@QEAAXXZ
673; public: int __cdecl HASH_TABLE::Delete(class HT_ELEMENT * __ptr64) __ptr64
674?Delete@HASH_TABLE@@QEAAHPEAVHT_ELEMENT@@@Z
675; public: int __cdecl HASH_TABLE_BUCKET::Delete(class HT_ELEMENT * __ptr64) __ptr64
676?Delete@HASH_TABLE_BUCKET@@QEAAHPEAVHT_ELEMENT@@@Z
677; public: int __cdecl HTB_ELEMENT::Delete(class HT_ELEMENT * __ptr64) __ptr64
678?Delete@HTB_ELEMENT@@QEAAHPEAVHT_ELEMENT@@@Z
679; public: unsigned long __cdecl BUFFER_CHAIN::DeleteChain(void) __ptr64
680?DeleteChain@BUFFER_CHAIN@@QEAAKXZ
681; public: unsigned long __cdecl CLKRHashTable::DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64) __ptr64
682?DeleteIf@CLKRHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1@Z
683; public: unsigned long __cdecl CLKRLinearHashTable::DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64) __ptr64
684?DeleteIf@CLKRLinearHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1@Z
685; public: enum LK_RETCODE __cdecl CLKRHashTable::DeleteKey(unsigned __int64) __ptr64
686?DeleteKey@CLKRHashTable@@QEAA?AW4LK_RETCODE@@_K@Z
687; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::DeleteKey(unsigned __int64) __ptr64
688?DeleteKey@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@_K@Z
689; public: enum LK_RETCODE __cdecl CLKRHashTable::DeleteRecord(void const * __ptr64) __ptr64
690?DeleteRecord@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEBX@Z
691; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::DeleteRecord(void const * __ptr64) __ptr64
692?DeleteRecord@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEBX@Z
693; public: virtual unsigned long __cdecl CEtwTracer::DisableEventsCallbackCustomHandler(void) __ptr64
694?DisableEventsCallbackCustomHandler@CEtwTracer@@UEAAKXZ
695; public: static int __cdecl ALLOC_CACHE_HANDLER::DumpStatsToHtml(char * __ptr64,unsigned long * __ptr64)
696?DumpStatsToHtml@ALLOC_CACHE_HANDLER@@SAHPEADPEAK@Z
697; public: virtual unsigned long __cdecl CEtwTracer::EnableEventsCallbackCustomHandler(void) __ptr64
698?EnableEventsCallbackCustomHandler@CEtwTracer@@UEAAKXZ
699; public: class CLKRHashTable_Iterator __cdecl CLKRHashTable::End(void) __ptr64
700?End@CLKRHashTable@@QEAA?AVCLKRHashTable_Iterator@@XZ
701; public: class CLKRLinearHashTable_Iterator __cdecl CLKRLinearHashTable::End(void) __ptr64
702?End@CLKRLinearHashTable@@QEAA?AVCLKRLinearHashTable_Iterator@@XZ
703; public: int __cdecl STR::Equ(class STR const & __ptr64)const __ptr64
704?Equ@STR@@QEBAHAEBV1@@Z
705; public: int __cdecl STR::Equ(char * __ptr64)const __ptr64
706?Equ@STR@@QEBAHPEAD@Z
707; public: bool __cdecl CLKRHashTable::EqualRange(unsigned __int64,class CLKRHashTable_Iterator & __ptr64,class CLKRHashTable_Iterator & __ptr64) __ptr64
708?EqualRange@CLKRHashTable@@QEAA_N_KAEAVCLKRHashTable_Iterator@@1@Z
709; public: bool __cdecl CLKRLinearHashTable::EqualRange(unsigned __int64,class CLKRLinearHashTable_Iterator & __ptr64,class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
710?EqualRange@CLKRLinearHashTable@@QEAA_N_KAEAVCLKRLinearHashTable_Iterator@@1@Z
711; public: int __cdecl STRA::Equals(class STRA const & __ptr64)const __ptr64
712?Equals@STRA@@QEBAHAEBV1@@Z
713; public: int __cdecl STRA::Equals(char * __ptr64 const)const __ptr64
714?Equals@STRA@@QEBAHQEAD@Z
715; public: int __cdecl STRU::Equals(class STRU const & __ptr64)const __ptr64
716?Equals@STRU@@QEBAHAEBV1@@Z
717; public: int __cdecl STRU::Equals(unsigned short const * __ptr64)const __ptr64
718?Equals@STRU@@QEBAHPEBG@Z
719; public: int __cdecl STRA::EqualsNoCase(class STRA const & __ptr64)const __ptr64
720?EqualsNoCase@STRA@@QEBAHAEBV1@@Z
721; public: int __cdecl STRA::EqualsNoCase(char * __ptr64 const)const __ptr64
722?EqualsNoCase@STRA@@QEBAHQEAD@Z
723; public: int __cdecl STRU::EqualsNoCase(class STRU const & __ptr64)const __ptr64
724?EqualsNoCase@STRU@@QEBAHAEBV1@@Z
725; public: int __cdecl STRU::EqualsNoCase(unsigned short const * __ptr64)const __ptr64
726?EqualsNoCase@STRU@@QEBAHPEBG@Z
727; public: bool __cdecl CLKRHashTable::Erase(class CLKRHashTable_Iterator & __ptr64,class CLKRHashTable_Iterator & __ptr64) __ptr64
728?Erase@CLKRHashTable@@QEAA_NAEAVCLKRHashTable_Iterator@@0@Z
729; public: bool __cdecl CLKRHashTable::Erase(class CLKRHashTable_Iterator & __ptr64) __ptr64
730?Erase@CLKRHashTable@@QEAA_NAEAVCLKRHashTable_Iterator@@@Z
731; public: bool __cdecl CLKRLinearHashTable::Erase(class CLKRLinearHashTable_Iterator & __ptr64,class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
732?Erase@CLKRLinearHashTable@@QEAA_NAEAVCLKRLinearHashTable_Iterator@@0@Z
733; public: bool __cdecl CLKRLinearHashTable::Erase(class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
734?Erase@CLKRLinearHashTable@@QEAA_NAEAVCLKRLinearHashTable_Iterator@@@Z
735; public: int __cdecl STR::Escape(void) __ptr64
736?Escape@STR@@QEAAHXZ
737; public: long __cdecl STRA::Escape(int,int) __ptr64
738?Escape@STRA@@QEAAJHH@Z
739; public: long __cdecl STRU::Escape(void) __ptr64
740?Escape@STRU@@QEAAJXZ
741; public: int __cdecl STR::EscapeSpaces(void) __ptr64
742?EscapeSpaces@STR@@QEAAHXZ
743; public: unsigned long __cdecl CEtwTracer::EtwTraceEvent(struct _GUID const * __ptr64,unsigned long,...) __ptr64
744?EtwTraceEvent@CEtwTracer@@QEAAKPEBU_GUID@@KZZ
745; int __cdecl FileTimeToGMT(struct _FILETIME const & __ptr64,char * __ptr64,unsigned long)
746?FileTimeToGMT@@YAHAEBU_FILETIME@@PEADK@Z
747; int __cdecl FileTimeToGMTEx(struct _FILETIME const & __ptr64,char * __ptr64,unsigned long,unsigned long)
748?FileTimeToGMTEx@@YAHAEBU_FILETIME@@PEADKK@Z
749; public: bool __cdecl CLKRHashTable::Find(unsigned __int64,class CLKRHashTable_Iterator & __ptr64) __ptr64
750?Find@CLKRHashTable@@QEAA_N_KAEAVCLKRHashTable_Iterator@@@Z
751; public: bool __cdecl CLKRLinearHashTable::Find(unsigned __int64,class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
752?Find@CLKRLinearHashTable@@QEAA_N_KAEAVCLKRLinearHashTable_Iterator@@@Z
753; public: enum LK_RETCODE __cdecl CLKRHashTable::FindKey(unsigned __int64,void const * __ptr64 * __ptr64)const __ptr64
754?FindKey@CLKRHashTable@@QEBA?AW4LK_RETCODE@@_KPEAPEBX@Z
755; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::FindKey(unsigned __int64,void const * __ptr64 * __ptr64)const __ptr64
756?FindKey@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@_KPEAPEBX@Z
757; public: unsigned long __cdecl HASH_TABLE::FindNextElement(struct HT_ITERATOR * __ptr64,class HT_ELEMENT * __ptr64 * __ptr64) __ptr64
758?FindNextElement@HASH_TABLE@@QEAAKPEAUHT_ITERATOR@@PEAPEAVHT_ELEMENT@@@Z
759; public: unsigned long __cdecl HASH_TABLE_BUCKET::FindNextElement(struct HT_ITERATOR * __ptr64,class HT_ELEMENT * __ptr64 * __ptr64) __ptr64
760?FindNextElement@HASH_TABLE_BUCKET@@QEAAKPEAUHT_ITERATOR@@PEAPEAVHT_ELEMENT@@@Z
761; public: unsigned long __cdecl HTB_ELEMENT::FindNextElement(unsigned long * __ptr64,class HT_ELEMENT * __ptr64 * __ptr64) __ptr64
762?FindNextElement@HTB_ELEMENT@@QEAAKPEAKPEAPEAVHT_ELEMENT@@@Z
763; public: enum LK_RETCODE __cdecl CLKRHashTable::FindRecord(void const * __ptr64)const __ptr64
764?FindRecord@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEBX@Z
765; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::FindRecord(void const * __ptr64)const __ptr64
766?FindRecord@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEBX@Z
767; public: int __cdecl MULTISZ::FindString(class STR const & __ptr64) __ptr64
768?FindString@MULTISZ@@QEAAHAEBVSTR@@@Z
769; public: int __cdecl MULTISZ::FindString(char const * __ptr64) __ptr64
770?FindString@MULTISZ@@QEAAHPEBD@Z
771; public: class CListEntry * __ptr64 __cdecl CDoubleList::First(void)const __ptr64
772?First@CDoubleList@@QEBAQEAVCListEntry@@XZ
773; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::First(void) __ptr64
774?First@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
775; public: char const * __ptr64 __cdecl MULTISZ::First(void)const __ptr64
776?First@MULTISZ@@QEBAPEBDXZ
777; public: struct HTBE_ENTRY * __ptr64 __cdecl HTB_ELEMENT::FirstElement(void) __ptr64
778?FirstElement@HTB_ELEMENT@@QEAAPEAUHTBE_ENTRY@@XZ
779; public: unsigned long __cdecl HASH_TABLE::FlushElements(void) __ptr64
780?FlushElements@HASH_TABLE@@QEAAKXZ
781; public: int __cdecl STR::FormatString(unsigned long,char const * __ptr64 * __ptr64 const,char const * __ptr64,unsigned long) __ptr64
782?FormatString@STR@@QEAAHKQEAPEBDPEBDK@Z
783; public: long __cdecl STRA::FormatString(unsigned long,char const * __ptr64 * __ptr64 const,char const * __ptr64,unsigned long) __ptr64
784?FormatString@STRA@@QEAAJKQEAPEBDPEBDK@Z
785; public: char const * __ptr64 __cdecl CDFTCache::FormattedBuffer(void)const __ptr64
786?FormattedBuffer@CDFTCache@@QEBAPEBDXZ
787; public: int __cdecl ALLOC_CACHE_HANDLER::Free(void * __ptr64) __ptr64
788?Free@ALLOC_CACHE_HANDLER@@QEAAHPEAX@Z
789; public: void __cdecl BUFFER::FreeMemory(void) __ptr64
790?FreeMemory@BUFFER@@QEAAXXZ
791; public: virtual void __cdecl ASCLOG_DATETIME_CACHE::GenerateDateTimeString(struct DATETIME_FORMAT_ENTRY * __ptr64,struct _SYSTEMTIME const * __ptr64) __ptr64
792?GenerateDateTimeString@ASCLOG_DATETIME_CACHE@@UEAAXPEAUDATETIME_FORMAT_ENTRY@@PEBU_SYSTEMTIME@@@Z
793; public: virtual void __cdecl EXTLOG_DATETIME_CACHE::GenerateDateTimeString(struct DATETIME_FORMAT_ENTRY * __ptr64,struct _SYSTEMTIME const * __ptr64) __ptr64
794?GenerateDateTimeString@EXTLOG_DATETIME_CACHE@@UEAAXPEAUDATETIME_FORMAT_ENTRY@@PEBU_SYSTEMTIME@@@Z
795; public: virtual void __cdecl W3_DATETIME_CACHE::GenerateDateTimeString(struct DATETIME_FORMAT_ENTRY * __ptr64,struct _SYSTEMTIME const * __ptr64) __ptr64
796?GenerateDateTimeString@W3_DATETIME_CACHE@@UEAAXPEAUDATETIME_FORMAT_ENTRY@@PEBU_SYSTEMTIME@@@Z
797; public: unsigned short __cdecl CLKRHashTable::GetBucketLockSpinCount(void)const __ptr64
798?GetBucketLockSpinCount@CLKRHashTable@@QEBAGXZ
799; public: unsigned short __cdecl CLKRLinearHashTable::GetBucketLockSpinCount(void)const __ptr64
800?GetBucketLockSpinCount@CLKRLinearHashTable@@QEBAGXZ
801; public: static double __cdecl CCritSec::GetDefaultSpinAdjustmentFactor(void)
802?GetDefaultSpinAdjustmentFactor@CCritSec@@SANXZ
803; public: static double __cdecl CFakeLock::GetDefaultSpinAdjustmentFactor(void)
804?GetDefaultSpinAdjustmentFactor@CFakeLock@@SANXZ
805; public: static double __cdecl CReaderWriterLock2::GetDefaultSpinAdjustmentFactor(void)
806?GetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SANXZ
807; public: static double __cdecl CReaderWriterLock3::GetDefaultSpinAdjustmentFactor(void)
808?GetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SANXZ
809; public: static double __cdecl CReaderWriterLock::GetDefaultSpinAdjustmentFactor(void)
810?GetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SANXZ
811; public: static double __cdecl CRtlResource::GetDefaultSpinAdjustmentFactor(void)
812?GetDefaultSpinAdjustmentFactor@CRtlResource@@SANXZ
813; public: static double __cdecl CShareLock::GetDefaultSpinAdjustmentFactor(void)
814?GetDefaultSpinAdjustmentFactor@CShareLock@@SANXZ
815; public: static double __cdecl CSmallSpinLock::GetDefaultSpinAdjustmentFactor(void)
816?GetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SANXZ
817; public: static double __cdecl CSpinLock::GetDefaultSpinAdjustmentFactor(void)
818?GetDefaultSpinAdjustmentFactor@CSpinLock@@SANXZ
819; public: static unsigned short __cdecl CCritSec::GetDefaultSpinCount(void)
820?GetDefaultSpinCount@CCritSec@@SAGXZ
821; public: static unsigned short __cdecl CFakeLock::GetDefaultSpinCount(void)
822?GetDefaultSpinCount@CFakeLock@@SAGXZ
823; public: static unsigned short __cdecl CReaderWriterLock2::GetDefaultSpinCount(void)
824?GetDefaultSpinCount@CReaderWriterLock2@@SAGXZ
825; public: static unsigned short __cdecl CReaderWriterLock3::GetDefaultSpinCount(void)
826?GetDefaultSpinCount@CReaderWriterLock3@@SAGXZ
827; public: static unsigned short __cdecl CReaderWriterLock::GetDefaultSpinCount(void)
828?GetDefaultSpinCount@CReaderWriterLock@@SAGXZ
829; public: static unsigned short __cdecl CRtlResource::GetDefaultSpinCount(void)
830?GetDefaultSpinCount@CRtlResource@@SAGXZ
831; public: static unsigned short __cdecl CShareLock::GetDefaultSpinCount(void)
832?GetDefaultSpinCount@CShareLock@@SAGXZ
833; public: static unsigned short __cdecl CSmallSpinLock::GetDefaultSpinCount(void)
834?GetDefaultSpinCount@CSmallSpinLock@@SAGXZ
835; public: static unsigned short __cdecl CSpinLock::GetDefaultSpinCount(void)
836?GetDefaultSpinCount@CSpinLock@@SAGXZ
837; public: unsigned long __cdecl EVENT_LOG::GetErrorCode(void)const __ptr64
838?GetErrorCode@EVENT_LOG@@QEBAKXZ
839; public: unsigned long __cdecl CACHED_DATETIME_FORMATS::GetFormattedCurrentDateTime(char * __ptr64) __ptr64
840?GetFormattedCurrentDateTime@CACHED_DATETIME_FORMATS@@QEAAKPEAD@Z
841; public: unsigned long __cdecl CACHED_DATETIME_FORMATS::GetFormattedDateTime(struct _SYSTEMTIME const * __ptr64,char * __ptr64) __ptr64
842?GetFormattedDateTime@CACHED_DATETIME_FORMATS@@QEAAKPEBU_SYSTEMTIME@@PEAD@Z
843; private: int __cdecl BUFFER::GetNewStorage(unsigned int) __ptr64
844?GetNewStorage@BUFFER@@AEAAHI@Z
845; public: unsigned short __cdecl CCritSec::GetSpinCount(void)const __ptr64
846?GetSpinCount@CCritSec@@QEBAGXZ
847; public: unsigned short __cdecl CFakeLock::GetSpinCount(void)const __ptr64
848?GetSpinCount@CFakeLock@@QEBAGXZ
849; public: unsigned short __cdecl CReaderWriterLock2::GetSpinCount(void)const __ptr64
850?GetSpinCount@CReaderWriterLock2@@QEBAGXZ
851; public: unsigned short __cdecl CReaderWriterLock3::GetSpinCount(void)const __ptr64
852?GetSpinCount@CReaderWriterLock3@@QEBAGXZ
853; public: unsigned short __cdecl CReaderWriterLock::GetSpinCount(void)const __ptr64
854?GetSpinCount@CReaderWriterLock@@QEBAGXZ
855; public: unsigned short __cdecl CRtlResource::GetSpinCount(void)const __ptr64
856?GetSpinCount@CRtlResource@@QEBAGXZ
857; public: unsigned short __cdecl CShareLock::GetSpinCount(void)const __ptr64
858?GetSpinCount@CShareLock@@QEBAGXZ
859; public: unsigned short __cdecl CSmallSpinLock::GetSpinCount(void)const __ptr64
860?GetSpinCount@CSmallSpinLock@@QEBAGXZ
861; public: unsigned short __cdecl CSpinLock::GetSpinCount(void)const __ptr64
862?GetSpinCount@CSpinLock@@QEBAGXZ
863; public: class CLKRHashTableStats __cdecl CLKRHashTable::GetStatistics(void)const __ptr64
864?GetStatistics@CLKRHashTable@@QEBA?AVCLKRHashTableStats@@XZ
865; public: class CLKRHashTableStats __cdecl CLKRLinearHashTable::GetStatistics(void)const __ptr64
866?GetStatistics@CLKRLinearHashTable@@QEBA?AVCLKRHashTableStats@@XZ
867; public: unsigned short __cdecl CLKRHashTable::GetTableLockSpinCount(void)const __ptr64
868?GetTableLockSpinCount@CLKRHashTable@@QEBAGXZ
869; public: unsigned short __cdecl CLKRLinearHashTable::GetTableLockSpinCount(void)const __ptr64
870?GetTableLockSpinCount@CLKRLinearHashTable@@QEBAGXZ
871; public: int __cdecl CDateTime::GetTickCount(void) __ptr64
872?GetTickCount@CDateTime@@QEAAHXZ
873; public: long __cdecl STRA::HTMLEncode(void) __ptr64
874?HTMLEncode@STRA@@QEAAJXZ
875; public: void __cdecl STR::Hash(void) __ptr64
876?Hash@STR@@QEAAXXZ
877; public: class CListEntry const * __ptr64 __cdecl CDoubleList::HeadNode(void)const __ptr64
878?HeadNode@CDoubleList@@QEBAQEBVCListEntry@@XZ
879; public: class CListEntry const * __ptr64 __cdecl CLockedDoubleList::HeadNode(void)const __ptr64
880?HeadNode@CLockedDoubleList@@QEBAQEBVCListEntry@@XZ
881IISCreateDirectory
882IISstricmp
883IISstrlen
884IISstrlwr
885IISstrncpy
886IISstrnicmp
887IISstrrchr
888IISstrupr
889; public: bool __cdecl CLKRHashTable_Iterator::Increment(void) __ptr64
890?Increment@CLKRHashTable_Iterator@@QEAA_NXZ
891; public: bool __cdecl CLKRLinearHashTable_Iterator::Increment(void) __ptr64
892?Increment@CLKRLinearHashTable_Iterator@@QEAA_NXZ
893; public: void __cdecl HTB_ELEMENT::IncrementElements(void) __ptr64
894?IncrementElements@HTB_ELEMENT@@QEAAXXZ
895; public: enum LK_RETCODE __cdecl CLKRHashTable::IncrementIterator(class CLKRHashTable::CIterator * __ptr64) __ptr64
896?IncrementIterator@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
897; public: enum LK_RETCODE __cdecl CLKRHashTable::IncrementIterator(class CLKRHashTable::CConstIterator * __ptr64)const __ptr64
898?IncrementIterator@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
899; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::IncrementIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
900?IncrementIterator@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
901; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::IncrementIterator(class CLKRLinearHashTable::CConstIterator * __ptr64)const __ptr64
902?IncrementIterator@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
903; public: static int __cdecl ALLOC_CACHE_HANDLER::Initialize(void)
904?Initialize@ALLOC_CACHE_HANDLER@@SAHXZ
905; public: enum LK_RETCODE __cdecl CLKRHashTable::InitializeIterator(class CLKRHashTable::CIterator * __ptr64) __ptr64
906?InitializeIterator@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
907; public: enum LK_RETCODE __cdecl CLKRHashTable::InitializeIterator(class CLKRHashTable::CConstIterator * __ptr64)const __ptr64
908?InitializeIterator@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
909; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::InitializeIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
910?InitializeIterator@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
911; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::InitializeIterator(class CLKRLinearHashTable::CConstIterator * __ptr64)const __ptr64
912?InitializeIterator@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
913; public: unsigned long __cdecl HASH_TABLE::InitializeIterator(struct HT_ITERATOR * __ptr64) __ptr64
914?InitializeIterator@HASH_TABLE@@QEAAKPEAUHT_ITERATOR@@@Z
915; public: unsigned long __cdecl HASH_TABLE_BUCKET::InitializeIterator(struct HT_ITERATOR * __ptr64) __ptr64
916?InitializeIterator@HASH_TABLE_BUCKET@@QEAAKPEAUHT_ITERATOR@@@Z
917; public: bool __cdecl CLKRHashTable::Insert(void const * __ptr64,class CLKRHashTable_Iterator & __ptr64,bool) __ptr64
918?Insert@CLKRHashTable@@QEAA_NPEBXAEAVCLKRHashTable_Iterator@@_N@Z
919; public: bool __cdecl CLKRLinearHashTable::Insert(void const * __ptr64,class CLKRLinearHashTable_Iterator & __ptr64,bool) __ptr64
920?Insert@CLKRLinearHashTable@@QEAA_NPEBXAEAVCLKRLinearHashTable_Iterator@@_N@Z
921; public: int __cdecl HASH_TABLE::Insert(class HT_ELEMENT * __ptr64,int) __ptr64
922?Insert@HASH_TABLE@@QEAAHPEAVHT_ELEMENT@@H@Z
923; public: int __cdecl HASH_TABLE_BUCKET::Insert(unsigned long,class HT_ELEMENT * __ptr64,int) __ptr64
924?Insert@HASH_TABLE_BUCKET@@QEAAHKPEAVHT_ELEMENT@@H@Z
925; public: int __cdecl HTB_ELEMENT::Insert(unsigned long,class HT_ELEMENT * __ptr64) __ptr64
926?Insert@HTB_ELEMENT@@QEAAHKPEAVHT_ELEMENT@@@Z
927; public: void __cdecl CDoubleList::InsertHead(class CListEntry * __ptr64 const) __ptr64
928?InsertHead@CDoubleList@@QEAAXQEAVCListEntry@@@Z
929; public: void __cdecl CLockedDoubleList::InsertHead(class CListEntry * __ptr64 const) __ptr64
930?InsertHead@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
931; public: static void __cdecl ALLOC_CACHE_HANDLER::InsertNewItem(class ALLOC_CACHE_HANDLER * __ptr64)
932?InsertNewItem@ALLOC_CACHE_HANDLER@@SAXPEAV1@@Z
933; public: enum LK_RETCODE __cdecl CLKRHashTable::InsertRecord(void const * __ptr64,bool) __ptr64
934?InsertRecord@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEBX_N@Z
935; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::InsertRecord(void const * __ptr64,bool) __ptr64
936?InsertRecord@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEBX_N@Z
937; public: void __cdecl CDoubleList::InsertTail(class CListEntry * __ptr64 const) __ptr64
938?InsertTail@CDoubleList@@QEAAXQEAVCListEntry@@@Z
939; public: void __cdecl CLockedDoubleList::InsertTail(class CListEntry * __ptr64 const) __ptr64
940?InsertTail@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
941; public: int __cdecl ALLOC_CACHE_HANDLER::IpPrint(char * __ptr64,unsigned long * __ptr64) __ptr64
942?IpPrint@ALLOC_CACHE_HANDLER@@QEAAHPEADPEAK@Z
943; public: int __cdecl MLSZAU::IsCurrentUnicode(void) __ptr64
944?IsCurrentUnicode@MLSZAU@@QEAAHXZ
945; public: int __cdecl STRAU::IsCurrentUnicode(void) __ptr64
946?IsCurrentUnicode@STRAU@@QEAAHXZ
947; private: int __cdecl BUFFER::IsDynAlloced(void)const __ptr64
948?IsDynAlloced@BUFFER@@AEBAHXZ
949; public: bool __cdecl CDoubleList::IsEmpty(void)const __ptr64
950?IsEmpty@CDoubleList@@QEBA_NXZ
951; public: bool __cdecl CLockedDoubleList::IsEmpty(void)const __ptr64
952?IsEmpty@CLockedDoubleList@@QEBA_NXZ
953; public: bool __cdecl CLockedSingleList::IsEmpty(void)const __ptr64
954?IsEmpty@CLockedSingleList@@QEBA_NXZ
955; public: bool __cdecl CSingleList::IsEmpty(void)const __ptr64
956?IsEmpty@CSingleList@@QEBA_NXZ
957; public: int __cdecl MULTISZ::IsEmpty(void)const __ptr64
958?IsEmpty@MULTISZ@@QEBAHXZ
959; public: int __cdecl STR::IsEmpty(void)const __ptr64
960?IsEmpty@STR@@QEBAHXZ
961; public: int __cdecl STRA::IsEmpty(void)const __ptr64
962?IsEmpty@STRA@@QEBAHXZ
963; public: int __cdecl STRAU::IsEmpty(void) __ptr64
964?IsEmpty@STRAU@@QEAAHXZ
965; public: int __cdecl STRU::IsEmpty(void)const __ptr64
966?IsEmpty@STRU@@QEBAHXZ
967; public: int __cdecl CDFTCache::IsHit(struct _SYSTEMTIME const * __ptr64)const __ptr64
968?IsHit@CDFTCache@@QEBAHPEBU_SYSTEMTIME@@@Z
969; public: int __cdecl DATETIME_FORMAT_ENTRY::IsHit(struct _SYSTEMTIME const * __ptr64)const __ptr64
970?IsHit@DATETIME_FORMAT_ENTRY@@QEBAHPEBU_SYSTEMTIME@@@Z
971IsIPAddressLocal
972IsLargeIntegerToDecimalChar
973; public: bool __cdecl CLockedDoubleList::IsLocked(void)const __ptr64
974?IsLocked@CLockedDoubleList@@QEBA_NXZ
975; public: bool __cdecl CLockedSingleList::IsLocked(void)const __ptr64
976?IsLocked@CLockedSingleList@@QEBA_NXZ
977; public: bool __cdecl CCritSec::IsReadLocked(void)const __ptr64
978?IsReadLocked@CCritSec@@QEBA_NXZ
979; public: bool __cdecl CFakeLock::IsReadLocked(void)const __ptr64
980?IsReadLocked@CFakeLock@@QEBA_NXZ
981; public: bool __cdecl CLKRHashTable::IsReadLocked(void)const __ptr64
982?IsReadLocked@CLKRHashTable@@QEBA_NXZ
983; public: bool __cdecl CLKRLinearHashTable::IsReadLocked(void)const __ptr64
984?IsReadLocked@CLKRLinearHashTable@@QEBA_NXZ
985; public: bool __cdecl CReaderWriterLock2::IsReadLocked(void)const __ptr64
986?IsReadLocked@CReaderWriterLock2@@QEBA_NXZ
987; public: bool __cdecl CReaderWriterLock3::IsReadLocked(void)const __ptr64
988?IsReadLocked@CReaderWriterLock3@@QEBA_NXZ
989; public: bool __cdecl CReaderWriterLock::IsReadLocked(void)const __ptr64
990?IsReadLocked@CReaderWriterLock@@QEBA_NXZ
991; public: bool __cdecl CRtlResource::IsReadLocked(void)const __ptr64
992?IsReadLocked@CRtlResource@@QEBA_NXZ
993; public: bool __cdecl CShareLock::IsReadLocked(void)const __ptr64
994?IsReadLocked@CShareLock@@QEBA_NXZ
995; public: bool __cdecl CSmallSpinLock::IsReadLocked(void)const __ptr64
996?IsReadLocked@CSmallSpinLock@@QEBA_NXZ
997; public: bool __cdecl CSpinLock::IsReadLocked(void)const __ptr64
998?IsReadLocked@CSpinLock@@QEBA_NXZ
999; public: bool __cdecl CCritSec::IsReadUnlocked(void)const __ptr64
1000?IsReadUnlocked@CCritSec@@QEBA_NXZ
1001; public: bool __cdecl CFakeLock::IsReadUnlocked(void)const __ptr64
1002?IsReadUnlocked@CFakeLock@@QEBA_NXZ
1003; public: bool __cdecl CLKRHashTable::IsReadUnlocked(void)const __ptr64
1004?IsReadUnlocked@CLKRHashTable@@QEBA_NXZ
1005; public: bool __cdecl CLKRLinearHashTable::IsReadUnlocked(void)const __ptr64
1006?IsReadUnlocked@CLKRLinearHashTable@@QEBA_NXZ
1007; public: bool __cdecl CReaderWriterLock2::IsReadUnlocked(void)const __ptr64
1008?IsReadUnlocked@CReaderWriterLock2@@QEBA_NXZ
1009; public: bool __cdecl CReaderWriterLock3::IsReadUnlocked(void)const __ptr64
1010?IsReadUnlocked@CReaderWriterLock3@@QEBA_NXZ
1011; public: bool __cdecl CReaderWriterLock::IsReadUnlocked(void)const __ptr64
1012?IsReadUnlocked@CReaderWriterLock@@QEBA_NXZ
1013; public: bool __cdecl CRtlResource::IsReadUnlocked(void)const __ptr64
1014?IsReadUnlocked@CRtlResource@@QEBA_NXZ
1015; public: bool __cdecl CShareLock::IsReadUnlocked(void)const __ptr64
1016?IsReadUnlocked@CShareLock@@QEBA_NXZ
1017; public: bool __cdecl CSmallSpinLock::IsReadUnlocked(void)const __ptr64
1018?IsReadUnlocked@CSmallSpinLock@@QEBA_NXZ
1019; public: bool __cdecl CSpinLock::IsReadUnlocked(void)const __ptr64
1020?IsReadUnlocked@CSpinLock@@QEBA_NXZ
1021; public: int __cdecl HTB_ELEMENT::IsSpaceAvailable(void)const __ptr64
1022?IsSpaceAvailable@HTB_ELEMENT@@QEBAHXZ
1023; public: bool __cdecl CLockedDoubleList::IsUnlocked(void)const __ptr64
1024?IsUnlocked@CLockedDoubleList@@QEBA_NXZ
1025; public: bool __cdecl CLockedSingleList::IsUnlocked(void)const __ptr64
1026?IsUnlocked@CLockedSingleList@@QEBA_NXZ
1027; public: bool __cdecl CLKRHashTable::IsUsable(void)const __ptr64
1028?IsUsable@CLKRHashTable@@QEBA_NXZ
1029; public: bool __cdecl CLKRLinearHashTable::IsUsable(void)const __ptr64
1030?IsUsable@CLKRLinearHashTable@@QEBA_NXZ
1031; public: int __cdecl ALLOC_CACHE_HANDLER::IsValid(void)const __ptr64
1032?IsValid@ALLOC_CACHE_HANDLER@@QEBAHXZ
1033; public: int __cdecl BUFFER::IsValid(void)const __ptr64
1034?IsValid@BUFFER@@QEBAHXZ
1035; public: bool __cdecl CLKRHashTable::IsValid(void)const __ptr64
1036?IsValid@CLKRHashTable@@QEBA_NXZ
1037; public: bool __cdecl CLKRHashTable_Iterator::IsValid(void)const __ptr64
1038?IsValid@CLKRHashTable_Iterator@@QEBA_NXZ
1039; public: bool __cdecl CLKRLinearHashTable::IsValid(void)const __ptr64
1040?IsValid@CLKRLinearHashTable@@QEBA_NXZ
1041; public: bool __cdecl CLKRLinearHashTable_Iterator::IsValid(void)const __ptr64
1042?IsValid@CLKRLinearHashTable_Iterator@@QEBA_NXZ
1043; public: int __cdecl HASH_TABLE::IsValid(void)const __ptr64
1044?IsValid@HASH_TABLE@@QEBAHXZ
1045; public: int __cdecl MLSZAU::IsValid(void) __ptr64
1046?IsValid@MLSZAU@@QEAAHXZ
1047; public: int __cdecl MULTISZ::IsValid(void)const __ptr64
1048?IsValid@MULTISZ@@QEBAHXZ
1049; public: int __cdecl STR::IsValid(void)const __ptr64
1050?IsValid@STR@@QEBAHXZ
1051; public: int __cdecl STRA::IsValid(void)const __ptr64
1052?IsValid@STRA@@QEBAHXZ
1053; public: int __cdecl STRAU::IsValid(void) __ptr64
1054?IsValid@STRAU@@QEAAHXZ
1055; public: bool __cdecl CCritSec::IsWriteLocked(void)const __ptr64
1056?IsWriteLocked@CCritSec@@QEBA_NXZ
1057; public: bool __cdecl CFakeLock::IsWriteLocked(void)const __ptr64
1058?IsWriteLocked@CFakeLock@@QEBA_NXZ
1059; public: bool __cdecl CLKRHashTable::IsWriteLocked(void)const __ptr64
1060?IsWriteLocked@CLKRHashTable@@QEBA_NXZ
1061; public: bool __cdecl CLKRLinearHashTable::IsWriteLocked(void)const __ptr64
1062?IsWriteLocked@CLKRLinearHashTable@@QEBA_NXZ
1063; public: bool __cdecl CReaderWriterLock2::IsWriteLocked(void)const __ptr64
1064?IsWriteLocked@CReaderWriterLock2@@QEBA_NXZ
1065; public: bool __cdecl CReaderWriterLock3::IsWriteLocked(void)const __ptr64
1066?IsWriteLocked@CReaderWriterLock3@@QEBA_NXZ
1067; public: bool __cdecl CReaderWriterLock::IsWriteLocked(void)const __ptr64
1068?IsWriteLocked@CReaderWriterLock@@QEBA_NXZ
1069; public: bool __cdecl CRtlResource::IsWriteLocked(void)const __ptr64
1070?IsWriteLocked@CRtlResource@@QEBA_NXZ
1071; public: bool __cdecl CShareLock::IsWriteLocked(void)const __ptr64
1072?IsWriteLocked@CShareLock@@QEBA_NXZ
1073; public: bool __cdecl CSmallSpinLock::IsWriteLocked(void)const __ptr64
1074?IsWriteLocked@CSmallSpinLock@@QEBA_NXZ
1075; public: bool __cdecl CSpinLock::IsWriteLocked(void)const __ptr64
1076?IsWriteLocked@CSpinLock@@QEBA_NXZ
1077; public: bool __cdecl CCritSec::IsWriteUnlocked(void)const __ptr64
1078?IsWriteUnlocked@CCritSec@@QEBA_NXZ
1079; public: bool __cdecl CFakeLock::IsWriteUnlocked(void)const __ptr64
1080?IsWriteUnlocked@CFakeLock@@QEBA_NXZ
1081; public: bool __cdecl CLKRHashTable::IsWriteUnlocked(void)const __ptr64
1082?IsWriteUnlocked@CLKRHashTable@@QEBA_NXZ
1083; public: bool __cdecl CLKRLinearHashTable::IsWriteUnlocked(void)const __ptr64
1084?IsWriteUnlocked@CLKRLinearHashTable@@QEBA_NXZ
1085; public: bool __cdecl CReaderWriterLock2::IsWriteUnlocked(void)const __ptr64
1086?IsWriteUnlocked@CReaderWriterLock2@@QEBA_NXZ
1087; public: bool __cdecl CReaderWriterLock3::IsWriteUnlocked(void)const __ptr64
1088?IsWriteUnlocked@CReaderWriterLock3@@QEBA_NXZ
1089; public: bool __cdecl CReaderWriterLock::IsWriteUnlocked(void)const __ptr64
1090?IsWriteUnlocked@CReaderWriterLock@@QEBA_NXZ
1091; public: bool __cdecl CRtlResource::IsWriteUnlocked(void)const __ptr64
1092?IsWriteUnlocked@CRtlResource@@QEBA_NXZ
1093; public: bool __cdecl CShareLock::IsWriteUnlocked(void)const __ptr64
1094?IsWriteUnlocked@CShareLock@@QEBA_NXZ
1095; public: bool __cdecl CSmallSpinLock::IsWriteUnlocked(void)const __ptr64
1096?IsWriteUnlocked@CSmallSpinLock@@QEBA_NXZ
1097; public: bool __cdecl CSpinLock::IsWriteUnlocked(void)const __ptr64
1098?IsWriteUnlocked@CSpinLock@@QEBA_NXZ
1099; public: unsigned __int64 const __cdecl CLKRHashTable_Iterator::Key(void)const __ptr64
1100?Key@CLKRHashTable_Iterator@@QEBA?B_KXZ
1101; public: unsigned __int64 const __cdecl CLKRLinearHashTable_Iterator::Key(void)const __ptr64
1102?Key@CLKRLinearHashTable_Iterator@@QEBA?B_KXZ
1103; public: class CListEntry * __ptr64 __cdecl CDoubleList::Last(void)const __ptr64
1104?Last@CDoubleList@@QEBAQEAVCListEntry@@XZ
1105; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::Last(void) __ptr64
1106?Last@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
1107; public: struct HTBE_ENTRY * __ptr64 __cdecl HTB_ELEMENT::LastElement(void) __ptr64
1108?LastElement@HTB_ELEMENT@@QEAAPEAUHTBE_ENTRY@@XZ
1109; public: int __cdecl STR::LoadStringA(unsigned long,struct HINSTANCE__ * __ptr64) __ptr64
1110?LoadStringA@STR@@QEAAHKPEAUHINSTANCE__@@@Z
1111; public: int __cdecl STR::LoadStringA(unsigned long,char const * __ptr64,unsigned long) __ptr64
1112?LoadStringA@STR@@QEAAHKPEBDK@Z
1113; public: long __cdecl STRA::LoadStringW(unsigned long,struct HINSTANCE__ * __ptr64) __ptr64
1114?LoadStringW@STRA@@QEAAJKPEAUHINSTANCE__@@@Z
1115; public: long __cdecl STRA::LoadStringW(unsigned long,char const * __ptr64,unsigned long) __ptr64
1116?LoadStringW@STRA@@QEAAJKPEBDK@Z
1117; private: void __cdecl ALLOC_CACHE_HANDLER::Lock(void) __ptr64
1118?Lock@ALLOC_CACHE_HANDLER@@AEAAXXZ
1119; public: void __cdecl CLockedDoubleList::Lock(void) __ptr64
1120?Lock@CLockedDoubleList@@QEAAXXZ
1121; public: void __cdecl CLockedSingleList::Lock(void) __ptr64
1122?Lock@CLockedSingleList@@QEAAXXZ
1123; private: void __cdecl HASH_TABLE_BUCKET::Lock(void) __ptr64
1124?Lock@HASH_TABLE_BUCKET@@AEAAXXZ
1125; public: void __cdecl TS_RESOURCE::Lock(enum TSRES_LOCK_TYPE) __ptr64
1126?Lock@TS_RESOURCE@@QEAAXW4TSRES_LOCK_TYPE@@@Z
1127; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<1,1,3,1,3,2>::LockType(void)
1128?LockType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1129; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<2,1,1,1,3,2>::LockType(void)
1130?LockType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1131; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<3,1,1,1,1,1>::LockType(void)
1132?LockType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_LOCKTYPE@@XZ
1133; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<4,1,1,2,3,3>::LockType(void)
1134?LockType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
1135; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<5,2,1,2,3,3>::LockType(void)
1136?LockType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
1137; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<6,2,1,2,3,3>::LockType(void)
1138?LockType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
1139; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<7,2,2,1,3,2>::LockType(void)
1140?LockType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1141; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<8,2,2,1,3,2>::LockType(void)
1142?LockType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1143; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<9,2,1,1,3,2>::LockType(void)
1144?LockType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1145; public: void __cdecl EVENT_LOG::LogEvent(unsigned long,unsigned short,char const * __ptr64 * __ptr64 const,unsigned long) __ptr64
1146?LogEvent@EVENT_LOG@@QEAAXKGQEAPEBDK@Z
1147; private: void __cdecl EVENT_LOG::LogEventPrivate(unsigned long,unsigned short,unsigned short,char const * __ptr64 * __ptr64 const,unsigned long) __ptr64
1148?LogEventPrivate@EVENT_LOG@@AEAAXKGGQEAPEBDK@Z
1149; public: class HT_ELEMENT * __ptr64 __cdecl HASH_TABLE::Lookup(char const * __ptr64) __ptr64
1150?Lookup@HASH_TABLE@@QEAAPEAVHT_ELEMENT@@PEBD@Z
1151; public: class HT_ELEMENT * __ptr64 __cdecl HASH_TABLE::Lookup(char const * __ptr64,unsigned long) __ptr64
1152?Lookup@HASH_TABLE@@QEAAPEAVHT_ELEMENT@@PEBDK@Z
1153; public: class HT_ELEMENT * __ptr64 __cdecl HASH_TABLE_BUCKET::Lookup(unsigned long,char const * __ptr64,unsigned long) __ptr64
1154?Lookup@HASH_TABLE_BUCKET@@QEAAPEAVHT_ELEMENT@@KPEBDK@Z
1155; public: class HT_ELEMENT * __ptr64 __cdecl HTB_ELEMENT::Lookup(unsigned long,char const * __ptr64,unsigned long) __ptr64
1156?Lookup@HTB_ELEMENT@@QEAAPEAVHT_ELEMENT@@KPEBDK@Z
1157; public: unsigned long __cdecl CLKRHashTable::MaxSize(void)const __ptr64
1158?MaxSize@CLKRHashTable@@QEBAKXZ
1159; public: unsigned long __cdecl CLKRLinearHashTable::MaxSize(void)const __ptr64
1160?MaxSize@CLKRLinearHashTable@@QEBAKXZ
1161; char const * __ptr64 __cdecl Month3CharNames(unsigned long)
1162?Month3CharNames@@YAPEBDK@Z
1163; public: bool __cdecl CLKRHashTable::MultiKeys(void)const __ptr64
1164?MultiKeys@CLKRHashTable@@QEBA_NXZ
1165; public: bool __cdecl CLKRLinearHashTable::MultiKeys(void)const __ptr64
1166?MultiKeys@CLKRLinearHashTable@@QEBA_NXZ
1167; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<1,1,3,1,3,2>::MutexType(void)
1168?MutexType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1169; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<2,1,1,1,3,2>::MutexType(void)
1170?MutexType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1171; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<3,1,1,1,1,1>::MutexType(void)
1172?MutexType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RW_MUTEX@@XZ
1173; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<4,1,1,2,3,3>::MutexType(void)
1174?MutexType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
1175; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<5,2,1,2,3,3>::MutexType(void)
1176?MutexType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
1177; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<6,2,1,2,3,3>::MutexType(void)
1178?MutexType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
1179; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<7,2,2,1,3,2>::MutexType(void)
1180?MutexType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1181; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<8,2,2,1,3,2>::MutexType(void)
1182?MutexType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1183; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<9,2,1,1,3,2>::MutexType(void)
1184?MutexType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1185; public: char const * __ptr64 __cdecl MULTISZ::Next(char const * __ptr64)const __ptr64
1186?Next@MULTISZ@@QEBAPEBDPEBD@Z
1187; public: class BUFFER_CHAIN_ITEM * __ptr64 __cdecl BUFFER_CHAIN::NextBuffer(class BUFFER_CHAIN_ITEM * __ptr64) __ptr64
1188?NextBuffer@BUFFER_CHAIN@@QEAAPEAVBUFFER_CHAIN_ITEM@@PEAV2@@Z
1189; public: void __cdecl HTB_ELEMENT::NextElement(struct HTBE_ENTRY * __ptr64 & __ptr64) __ptr64
1190?NextElement@HTB_ELEMENT@@QEAAXAEAPEAUHTBE_ENTRY@@@Z
1191; long __cdecl NormalizeUrl(char * __ptr64)
1192?NormalizeUrl@@YAJPEAD@Z
1193; long __cdecl NormalizeUrlW(unsigned short * __ptr64)
1194?NormalizeUrlW@@YAJPEAG@Z
1195NtLargeIntegerTimeToLocalSystemTime
1196NtLargeIntegerTimeToSystemTime
1197NtSystemTimeToLargeInteger
1198; public: unsigned long __cdecl HTB_ELEMENT::NumElements(void)const __ptr64
1199?NumElements@HTB_ELEMENT@@QEBAKXZ
1200; public: unsigned long __cdecl HASH_TABLE_BUCKET::NumEntries(void) __ptr64
1201?NumEntries@HASH_TABLE_BUCKET@@QEAAKXZ
1202; public: int __cdecl CLKRHashTable::NumSubTables(void)const __ptr64
1203?NumSubTables@CLKRHashTable@@QEBAHXZ
1204; public: static enum LK_TABLESIZE __cdecl CLKRHashTable::NumSubTables(unsigned long & __ptr64,unsigned long & __ptr64)
1205?NumSubTables@CLKRHashTable@@SA?AW4LK_TABLESIZE@@AEAK0@Z
1206; public: int __cdecl CLKRLinearHashTable::NumSubTables(void)const __ptr64
1207?NumSubTables@CLKRLinearHashTable@@QEBAHXZ
1208; public: static enum LK_TABLESIZE __cdecl CLKRLinearHashTable::NumSubTables(unsigned long & __ptr64,unsigned long & __ptr64)
1209?NumSubTables@CLKRLinearHashTable@@SA?AW4LK_TABLESIZE@@AEAK0@Z
1210; public: int __cdecl CDFTCache::OffsetSeconds(void)const __ptr64
1211?OffsetSeconds@CDFTCache@@QEBAHXZ
1212; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<1,1,3,1,3,2>::PerLockSpin(void)
1213?PerLockSpin@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1214; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<2,1,1,1,3,2>::PerLockSpin(void)
1215?PerLockSpin@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1216; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<3,1,1,1,1,1>::PerLockSpin(void)
1217?PerLockSpin@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1218; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<4,1,1,2,3,3>::PerLockSpin(void)
1219?PerLockSpin@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1220; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<5,2,1,2,3,3>::PerLockSpin(void)
1221?PerLockSpin@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1222; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<6,2,1,2,3,3>::PerLockSpin(void)
1223?PerLockSpin@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1224; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<7,2,2,1,3,2>::PerLockSpin(void)
1225?PerLockSpin@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1226; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<8,2,2,1,3,2>::PerLockSpin(void)
1227?PerLockSpin@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1228; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<9,2,1,1,3,2>::PerLockSpin(void)
1229?PerLockSpin@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1230; public: class CSingleListEntry * __ptr64 __cdecl CLockedSingleList::Pop(void) __ptr64
1231?Pop@CLockedSingleList@@QEAAQEAVCSingleListEntry@@XZ
1232; public: class CSingleListEntry * __ptr64 __cdecl CSingleList::Pop(void) __ptr64
1233?Pop@CSingleList@@QEAAQEAVCSingleListEntry@@XZ
1234; public: void __cdecl ALLOC_CACHE_HANDLER::Print(void) __ptr64
1235?Print@ALLOC_CACHE_HANDLER@@QEAAXXZ
1236; public: void __cdecl HASH_TABLE::Print(unsigned long) __ptr64
1237?Print@HASH_TABLE@@QEAAXK@Z
1238; public: void __cdecl HASH_TABLE_BUCKET::Print(unsigned long) __ptr64
1239?Print@HASH_TABLE_BUCKET@@QEAAXK@Z
1240; public: void __cdecl HTB_ELEMENT::Print(unsigned long)const __ptr64
1241?Print@HTB_ELEMENT@@QEBAXK@Z
1242; private: unsigned short * __ptr64 __cdecl STRAU::PrivateQueryStr(int) __ptr64
1243?PrivateQueryStr@STRAU@@AEAAPEAGH@Z
1244; public: void __cdecl CLockedSingleList::Push(class CSingleListEntry * __ptr64 const) __ptr64
1245?Push@CLockedSingleList@@QEAAXQEAVCSingleListEntry@@@Z
1246; public: void __cdecl CSingleList::Push(class CSingleListEntry * __ptr64 const) __ptr64
1247?Push@CSingleList@@QEAAXQEAVCSingleListEntry@@@Z
1248; public: class BUFFER * __ptr64 __cdecl STRU::QueryBuffer(void) __ptr64
1249?QueryBuffer@STRU@@QEAAPEAVBUFFER@@XZ
1250; public: unsigned int __cdecl MLSZAU::QueryCB(int) __ptr64
1251?QueryCB@MLSZAU@@QEAAIH@Z
1252; public: unsigned int __cdecl MULTISZ::QueryCB(void)const __ptr64
1253?QueryCB@MULTISZ@@QEBAIXZ
1254; public: unsigned int __cdecl STR::QueryCB(void)const __ptr64
1255?QueryCB@STR@@QEBAIXZ
1256; public: unsigned int __cdecl STRA::QueryCB(void)const __ptr64
1257?QueryCB@STRA@@QEBAIXZ
1258; public: unsigned int __cdecl STRAU::QueryCB(int) __ptr64
1259?QueryCB@STRAU@@QEAAIH@Z
1260; public: unsigned int __cdecl STRU::QueryCB(void)const __ptr64
1261?QueryCB@STRU@@QEBAIXZ
1262; public: unsigned int __cdecl MLSZAU::QueryCBA(void) __ptr64
1263?QueryCBA@MLSZAU@@QEAAIXZ
1264; public: unsigned int __cdecl STRAU::QueryCBA(void) __ptr64
1265?QueryCBA@STRAU@@QEAAIXZ
1266; public: unsigned int __cdecl MLSZAU::QueryCBW(void) __ptr64
1267?QueryCBW@MLSZAU@@QEAAIXZ
1268; public: unsigned int __cdecl STRAU::QueryCBW(void) __ptr64
1269?QueryCBW@STRAU@@QEAAIXZ
1270; public: unsigned int __cdecl MLSZAU::QueryCCH(void) __ptr64
1271?QueryCCH@MLSZAU@@QEAAIXZ
1272; public: unsigned int __cdecl MULTISZ::QueryCCH(void)const __ptr64
1273?QueryCCH@MULTISZ@@QEBAIXZ
1274; public: unsigned int __cdecl STR::QueryCCH(void)const __ptr64
1275?QueryCCH@STR@@QEBAIXZ
1276; public: unsigned int __cdecl STRA::QueryCCH(void)const __ptr64
1277?QueryCCH@STRA@@QEBAIXZ
1278; public: unsigned int __cdecl STRAU::QueryCCH(void) __ptr64
1279?QueryCCH@STRAU@@QEAAIXZ
1280; public: unsigned int __cdecl STRU::QueryCCH(void)const __ptr64
1281?QueryCCH@STRU@@QEBAIXZ
1282; public: unsigned long __cdecl CEtwTracer::QueryEnableLevel(void) __ptr64
1283?QueryEnableLevel@CEtwTracer@@QEAAKXZ
1284; public: char __cdecl STR::QueryFirstChar(void)const __ptr64
1285?QueryFirstChar@STR@@QEBADXZ
1286; public: char __cdecl STR::QueryLastChar(void)const __ptr64
1287?QueryLastChar@STR@@QEBADXZ
1288; public: void * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
1289?QueryPtr@BUFFER@@QEBAPEAXXZ
1290; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
1291?QuerySize@BUFFER@@QEBAIXZ
1292; public: unsigned int __cdecl STRA::QuerySize(void)const __ptr64
1293?QuerySize@STRA@@QEBAIXZ
1294; public: void __cdecl ALLOC_CACHE_HANDLER::QueryStats(struct _ALLOC_CACHE_STATISTICS * __ptr64) __ptr64
1295?QueryStats@ALLOC_CACHE_HANDLER@@QEAAXPEAU_ALLOC_CACHE_STATISTICS@@@Z
1296; public: char * __ptr64 __cdecl MLSZAU::QueryStr(int) __ptr64
1297?QueryStr@MLSZAU@@QEAAPEADH@Z
1298; public: char * __ptr64 __cdecl MULTISZ::QueryStr(void)const __ptr64
1299?QueryStr@MULTISZ@@QEBAPEADXZ
1300; public: char * __ptr64 __cdecl STR::QueryStr(void)const __ptr64
1301?QueryStr@STR@@QEBAPEADXZ
1302; public: char * __ptr64 __cdecl STRA::QueryStr(void) __ptr64
1303?QueryStr@STRA@@QEAAPEADXZ
1304; public: char const * __ptr64 __cdecl STRA::QueryStr(void)const __ptr64
1305?QueryStr@STRA@@QEBAPEBDXZ
1306; public: char * __ptr64 __cdecl STRAU::QueryStr(int) __ptr64
1307?QueryStr@STRAU@@QEAAPEADH@Z
1308; public: unsigned short * __ptr64 __cdecl STRAU::QueryStr(int) __ptr64
1309?QueryStr@STRAU@@QEAAPEAGH@Z
1310; public: unsigned short * __ptr64 __cdecl STRU::QueryStr(void) __ptr64
1311?QueryStr@STRU@@QEAAPEAGXZ
1312; public: unsigned short const * __ptr64 __cdecl STRU::QueryStr(void)const __ptr64
1313?QueryStr@STRU@@QEBAPEBGXZ
1314; public: char * __ptr64 __cdecl MLSZAU::QueryStrA(void) __ptr64
1315?QueryStrA@MLSZAU@@QEAAPEADXZ
1316; public: char * __ptr64 __cdecl MULTISZ::QueryStrA(void)const __ptr64
1317?QueryStrA@MULTISZ@@QEBAPEADXZ
1318; public: char * __ptr64 __cdecl STR::QueryStrA(void)const __ptr64
1319?QueryStrA@STR@@QEBAPEADXZ
1320; public: char * __ptr64 __cdecl STRAU::QueryStrA(void) __ptr64
1321?QueryStrA@STRAU@@QEAAPEADXZ
1322; public: unsigned short * __ptr64 __cdecl MLSZAU::QueryStrW(void) __ptr64
1323?QueryStrW@MLSZAU@@QEAAPEAGXZ
1324; public: unsigned short * __ptr64 __cdecl STRAU::QueryStrW(void) __ptr64
1325?QueryStrW@STRAU@@QEAAPEAGXZ
1326; public: unsigned long __cdecl MULTISZ::QueryStringCount(void)const __ptr64
1327?QueryStringCount@MULTISZ@@QEBAKXZ
1328; public: unsigned __int64 __cdecl CEtwTracer::QueryTraceHandle(void) __ptr64
1329?QueryTraceHandle@CEtwTracer@@QEAA_KXZ
1330; public: unsigned long __cdecl BUFFER_CHAIN_ITEM::QueryUsed(void)const __ptr64
1331?QueryUsed@BUFFER_CHAIN_ITEM@@QEBAKXZ
1332; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<1,1,3,1,3,2>::QueueType(void)
1333?QueueType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1334; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<2,1,1,1,3,2>::QueueType(void)
1335?QueueType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1336; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<3,1,1,1,1,1>::QueueType(void)
1337?QueueType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1338; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<4,1,1,2,3,3>::QueueType(void)
1339?QueueType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1340; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<5,2,1,2,3,3>::QueueType(void)
1341?QueueType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1342; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<6,2,1,2,3,3>::QueueType(void)
1343?QueueType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1344; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<7,2,2,1,3,2>::QueueType(void)
1345?QueueType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1346; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<8,2,2,1,3,2>::QueueType(void)
1347?QueueType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1348; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<9,2,1,1,3,2>::QueueType(void)
1349?QueueType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1350; public: bool __cdecl CDataCache<class CDateTime>::Read(class CDateTime & __ptr64)const __ptr64
1351?Read@?$CDataCache@VCDateTime@@@@QEBA_NAEAVCDateTime@@@Z
1352; public: void __cdecl CCritSec::ReadLock(void) __ptr64
1353?ReadLock@CCritSec@@QEAAXXZ
1354; public: void __cdecl CFakeLock::ReadLock(void) __ptr64
1355?ReadLock@CFakeLock@@QEAAXXZ
1356; public: void __cdecl CLKRHashTable::ReadLock(void)const __ptr64
1357?ReadLock@CLKRHashTable@@QEBAXXZ
1358; public: void __cdecl CLKRLinearHashTable::ReadLock(void)const __ptr64
1359?ReadLock@CLKRLinearHashTable@@QEBAXXZ
1360; public: void __cdecl CReaderWriterLock2::ReadLock(void) __ptr64
1361?ReadLock@CReaderWriterLock2@@QEAAXXZ
1362; public: void __cdecl CReaderWriterLock3::ReadLock(void) __ptr64
1363?ReadLock@CReaderWriterLock3@@QEAAXXZ
1364; public: void __cdecl CReaderWriterLock::ReadLock(void) __ptr64
1365?ReadLock@CReaderWriterLock@@QEAAXXZ
1366; public: void __cdecl CRtlResource::ReadLock(void) __ptr64
1367?ReadLock@CRtlResource@@QEAAXXZ
1368; public: void __cdecl CShareLock::ReadLock(void) __ptr64
1369?ReadLock@CShareLock@@QEAAXXZ
1370; public: void __cdecl CSmallSpinLock::ReadLock(void) __ptr64
1371?ReadLock@CSmallSpinLock@@QEAAXXZ
1372; public: void __cdecl CSpinLock::ReadLock(void) __ptr64
1373?ReadLock@CSpinLock@@QEAAXXZ
1374; public: bool __cdecl CCritSec::ReadOrWriteLock(void) __ptr64
1375?ReadOrWriteLock@CCritSec@@QEAA_NXZ
1376; public: bool __cdecl CFakeLock::ReadOrWriteLock(void) __ptr64
1377?ReadOrWriteLock@CFakeLock@@QEAA_NXZ
1378; public: bool __cdecl CReaderWriterLock3::ReadOrWriteLock(void) __ptr64
1379?ReadOrWriteLock@CReaderWriterLock3@@QEAA_NXZ
1380; public: bool __cdecl CSpinLock::ReadOrWriteLock(void) __ptr64
1381?ReadOrWriteLock@CSpinLock@@QEAA_NXZ
1382; public: void __cdecl CCritSec::ReadOrWriteUnlock(bool) __ptr64
1383?ReadOrWriteUnlock@CCritSec@@QEAAX_N@Z
1384; public: void __cdecl CFakeLock::ReadOrWriteUnlock(bool) __ptr64
1385?ReadOrWriteUnlock@CFakeLock@@QEAAX_N@Z
1386; public: void __cdecl CReaderWriterLock3::ReadOrWriteUnlock(bool) __ptr64
1387?ReadOrWriteUnlock@CReaderWriterLock3@@QEAAX_N@Z
1388; public: void __cdecl CSpinLock::ReadOrWriteUnlock(bool) __ptr64
1389?ReadOrWriteUnlock@CSpinLock@@QEAAX_N@Z
1390; public: void __cdecl CCritSec::ReadUnlock(void) __ptr64
1391?ReadUnlock@CCritSec@@QEAAXXZ
1392; public: void __cdecl CFakeLock::ReadUnlock(void) __ptr64
1393?ReadUnlock@CFakeLock@@QEAAXXZ
1394; public: void __cdecl CLKRHashTable::ReadUnlock(void)const __ptr64
1395?ReadUnlock@CLKRHashTable@@QEBAXXZ
1396; public: void __cdecl CLKRLinearHashTable::ReadUnlock(void)const __ptr64
1397?ReadUnlock@CLKRLinearHashTable@@QEBAXXZ
1398; public: void __cdecl CReaderWriterLock2::ReadUnlock(void) __ptr64
1399?ReadUnlock@CReaderWriterLock2@@QEAAXXZ
1400; public: void __cdecl CReaderWriterLock3::ReadUnlock(void) __ptr64
1401?ReadUnlock@CReaderWriterLock3@@QEAAXXZ
1402; public: void __cdecl CReaderWriterLock::ReadUnlock(void) __ptr64
1403?ReadUnlock@CReaderWriterLock@@QEAAXXZ
1404; public: void __cdecl CRtlResource::ReadUnlock(void) __ptr64
1405?ReadUnlock@CRtlResource@@QEAAXXZ
1406; public: void __cdecl CShareLock::ReadUnlock(void) __ptr64
1407?ReadUnlock@CShareLock@@QEAAXXZ
1408; public: void __cdecl CSmallSpinLock::ReadUnlock(void) __ptr64
1409?ReadUnlock@CSmallSpinLock@@QEAAXXZ
1410; public: void __cdecl CSpinLock::ReadUnlock(void) __ptr64
1411?ReadUnlock@CSpinLock@@QEAAXXZ
1412; private: int __cdecl BUFFER::ReallocStorage(unsigned int) __ptr64
1413?ReallocStorage@BUFFER@@AEAAHI@Z
1414; public: void __cdecl MULTISZ::RecalcLen(void) __ptr64
1415?RecalcLen@MULTISZ@@QEAAXXZ
1416; public: void const * __ptr64 __cdecl CLKRHashTable_Iterator::Record(void)const __ptr64
1417?Record@CLKRHashTable_Iterator@@QEBAPEBXXZ
1418; public: void const * __ptr64 __cdecl CLKRLinearHashTable_Iterator::Record(void)const __ptr64
1419?Record@CLKRLinearHashTable_Iterator@@QEBAPEBXXZ
1420; public: static enum LOCK_RECURSION __cdecl CLockBase<1,1,3,1,3,2>::Recursion(void)
1421?Recursion@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1422; public: static enum LOCK_RECURSION __cdecl CLockBase<2,1,1,1,3,2>::Recursion(void)
1423?Recursion@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1424; public: static enum LOCK_RECURSION __cdecl CLockBase<3,1,1,1,1,1>::Recursion(void)
1425?Recursion@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RECURSION@@XZ
1426; public: static enum LOCK_RECURSION __cdecl CLockBase<4,1,1,2,3,3>::Recursion(void)
1427?Recursion@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
1428; public: static enum LOCK_RECURSION __cdecl CLockBase<5,2,1,2,3,3>::Recursion(void)
1429?Recursion@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
1430; public: static enum LOCK_RECURSION __cdecl CLockBase<6,2,1,2,3,3>::Recursion(void)
1431?Recursion@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
1432; public: static enum LOCK_RECURSION __cdecl CLockBase<7,2,2,1,3,2>::Recursion(void)
1433?Recursion@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1434; public: static enum LOCK_RECURSION __cdecl CLockBase<8,2,2,1,3,2>::Recursion(void)
1435?Recursion@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1436; public: static enum LOCK_RECURSION __cdecl CLockBase<9,2,1,1,3,2>::Recursion(void)
1437?Recursion@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1438; public: unsigned long __cdecl CEtwTracer::Register(struct _GUID const * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64) __ptr64
1439?Register@CEtwTracer@@QEAAKPEBU_GUID@@PEAG1@Z
1440; public: void __cdecl CSharelock::ReleaseExclusiveLock(void) __ptr64
1441?ReleaseExclusiveLock@CSharelock@@QEAAXXZ
1442; public: void __cdecl CSharelock::ReleaseShareLock(void) __ptr64
1443?ReleaseShareLock@CSharelock@@QEAAXXZ
1444; public: static void __cdecl CDoubleList::RemoveEntry(class CListEntry * __ptr64 const)
1445?RemoveEntry@CDoubleList@@SAXQEAVCListEntry@@@Z
1446; public: void __cdecl CLockedDoubleList::RemoveEntry(class CListEntry * __ptr64 const) __ptr64
1447?RemoveEntry@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
1448; public: class CListEntry * __ptr64 __cdecl CDoubleList::RemoveHead(void) __ptr64
1449?RemoveHead@CDoubleList@@QEAAQEAVCListEntry@@XZ
1450; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::RemoveHead(void) __ptr64
1451?RemoveHead@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
1452; public: static void __cdecl ALLOC_CACHE_HANDLER::RemoveItem(class ALLOC_CACHE_HANDLER * __ptr64)
1453?RemoveItem@ALLOC_CACHE_HANDLER@@SAXPEAV1@@Z
1454; public: class CListEntry * __ptr64 __cdecl CDoubleList::RemoveTail(void) __ptr64
1455?RemoveTail@CDoubleList@@QEAAQEAVCListEntry@@XZ
1456; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::RemoveTail(void) __ptr64
1457?RemoveTail@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
1458RemoveWorkItem
1459; public: void __cdecl MLSZAU::Reset(void) __ptr64
1460?Reset@MLSZAU@@QEAAXXZ
1461; public: void __cdecl MULTISZ::Reset(void) __ptr64
1462?Reset@MULTISZ@@QEAAXXZ
1463; public: void __cdecl STR::Reset(void) __ptr64
1464?Reset@STR@@QEAAXXZ
1465; public: void __cdecl STRA::Reset(void) __ptr64
1466?Reset@STRA@@QEAAXXZ
1467; public: void __cdecl STRAU::Reset(void) __ptr64
1468?Reset@STRAU@@QEAAXXZ
1469; public: void __cdecl STRU::Reset(void) __ptr64
1470?Reset@STRU@@QEAAXXZ
1471; public: static int __cdecl ALLOC_CACHE_HANDLER::ResetLookasideCleanupInterval(void)
1472?ResetLookasideCleanupInterval@ALLOC_CACHE_HANDLER@@SAHXZ
1473; public: int __cdecl BUFFER::Resize(unsigned int) __ptr64
1474?Resize@BUFFER@@QEAAHI@Z
1475; public: int __cdecl BUFFER::Resize(unsigned int,unsigned int) __ptr64
1476?Resize@BUFFER@@QEAAHII@Z
1477; public: long __cdecl STRA::Resize(unsigned long) __ptr64
1478?Resize@STRA@@QEAAJK@Z
1479; public: long __cdecl STRU::Resize(unsigned long) __ptr64
1480?Resize@STRU@@QEAAJK@Z
1481; public: int __cdecl STRAU::ResizeW(unsigned long) __ptr64
1482?ResizeW@STRAU@@QEAAHK@Z
1483; public: int __cdecl STR::SafeCopy(char const * __ptr64) __ptr64
1484?SafeCopy@STR@@QEAAHPEBD@Z
1485; public: int __cdecl STRAU::SafeCopy(char const * __ptr64) __ptr64
1486?SafeCopy@STRAU@@QEAAHPEBD@Z
1487; public: int __cdecl STRAU::SafeCopy(unsigned short const * __ptr64) __ptr64
1488?SafeCopy@STRAU@@QEAAHPEBG@Z
1489ScheduleAdjustTime
1490ScheduleWorkItem
1491SchedulerInitialize
1492SchedulerTerminate
1493; public: unsigned short __cdecl CDFTCache::Seconds(void)const __ptr64
1494?Seconds@CDFTCache@@QEBAGXZ
1495; public: void __cdecl CLKRHashTable::SetBucketLockSpinCount(unsigned short) __ptr64
1496?SetBucketLockSpinCount@CLKRHashTable@@QEAAXG@Z
1497; public: void __cdecl CLKRLinearHashTable::SetBucketLockSpinCount(unsigned short) __ptr64
1498?SetBucketLockSpinCount@CLKRLinearHashTable@@QEAAXG@Z
1499; public: static void __cdecl CCritSec::SetDefaultSpinAdjustmentFactor(double)
1500?SetDefaultSpinAdjustmentFactor@CCritSec@@SAXN@Z
1501; public: static void __cdecl CFakeLock::SetDefaultSpinAdjustmentFactor(double)
1502?SetDefaultSpinAdjustmentFactor@CFakeLock@@SAXN@Z
1503; public: static void __cdecl CReaderWriterLock2::SetDefaultSpinAdjustmentFactor(double)
1504?SetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SAXN@Z
1505; public: static void __cdecl CReaderWriterLock3::SetDefaultSpinAdjustmentFactor(double)
1506?SetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SAXN@Z
1507; public: static void __cdecl CReaderWriterLock::SetDefaultSpinAdjustmentFactor(double)
1508?SetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SAXN@Z
1509; public: static void __cdecl CRtlResource::SetDefaultSpinAdjustmentFactor(double)
1510?SetDefaultSpinAdjustmentFactor@CRtlResource@@SAXN@Z
1511; public: static void __cdecl CShareLock::SetDefaultSpinAdjustmentFactor(double)
1512?SetDefaultSpinAdjustmentFactor@CShareLock@@SAXN@Z
1513; public: static void __cdecl CSmallSpinLock::SetDefaultSpinAdjustmentFactor(double)
1514?SetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SAXN@Z
1515; public: static void __cdecl CSpinLock::SetDefaultSpinAdjustmentFactor(double)
1516?SetDefaultSpinAdjustmentFactor@CSpinLock@@SAXN@Z
1517; public: static void __cdecl CCritSec::SetDefaultSpinCount(unsigned short)
1518?SetDefaultSpinCount@CCritSec@@SAXG@Z
1519; public: static void __cdecl CFakeLock::SetDefaultSpinCount(unsigned short)
1520?SetDefaultSpinCount@CFakeLock@@SAXG@Z
1521; public: static void __cdecl CReaderWriterLock2::SetDefaultSpinCount(unsigned short)
1522?SetDefaultSpinCount@CReaderWriterLock2@@SAXG@Z
1523; public: static void __cdecl CReaderWriterLock3::SetDefaultSpinCount(unsigned short)
1524?SetDefaultSpinCount@CReaderWriterLock3@@SAXG@Z
1525; public: static void __cdecl CReaderWriterLock::SetDefaultSpinCount(unsigned short)
1526?SetDefaultSpinCount@CReaderWriterLock@@SAXG@Z
1527; public: static void __cdecl CRtlResource::SetDefaultSpinCount(unsigned short)
1528?SetDefaultSpinCount@CRtlResource@@SAXG@Z
1529; public: static void __cdecl CShareLock::SetDefaultSpinCount(unsigned short)
1530?SetDefaultSpinCount@CShareLock@@SAXG@Z
1531; public: static void __cdecl CSmallSpinLock::SetDefaultSpinCount(unsigned short)
1532?SetDefaultSpinCount@CSmallSpinLock@@SAXG@Z
1533; public: static void __cdecl CSpinLock::SetDefaultSpinCount(unsigned short)
1534?SetDefaultSpinCount@CSpinLock@@SAXG@Z
1535; public: int __cdecl STR::SetLen(unsigned long) __ptr64
1536?SetLen@STR@@QEAAHK@Z
1537; public: int __cdecl STRA::SetLen(unsigned long) __ptr64
1538?SetLen@STRA@@QEAAHK@Z
1539; public: int __cdecl STRAU::SetLen(unsigned long) __ptr64
1540?SetLen@STRAU@@QEAAHK@Z
1541; public: int __cdecl STRU::SetLen(unsigned long) __ptr64
1542?SetLen@STRU@@QEAAHK@Z
1543; public: void __cdecl ASCLOG_DATETIME_CACHE::SetLocalTime(struct _SYSTEMTIME * __ptr64) __ptr64
1544?SetLocalTime@ASCLOG_DATETIME_CACHE@@QEAAXPEAU_SYSTEMTIME@@@Z
1545; public: static int __cdecl ALLOC_CACHE_HANDLER::SetLookasideCleanupInterval(void)
1546?SetLookasideCleanupInterval@ALLOC_CACHE_HANDLER@@SAHXZ
1547; public: bool __cdecl CCritSec::SetSpinCount(unsigned short) __ptr64
1548?SetSpinCount@CCritSec@@QEAA_NG@Z
1549; public: static unsigned long __cdecl CCritSec::SetSpinCount(struct _RTL_CRITICAL_SECTION * __ptr64,unsigned long)
1550?SetSpinCount@CCritSec@@SAKPEAU_RTL_CRITICAL_SECTION@@K@Z
1551; public: bool __cdecl CFakeLock::SetSpinCount(unsigned short) __ptr64
1552?SetSpinCount@CFakeLock@@QEAA_NG@Z
1553; public: bool __cdecl CReaderWriterLock2::SetSpinCount(unsigned short) __ptr64
1554?SetSpinCount@CReaderWriterLock2@@QEAA_NG@Z
1555; public: bool __cdecl CReaderWriterLock3::SetSpinCount(unsigned short) __ptr64
1556?SetSpinCount@CReaderWriterLock3@@QEAA_NG@Z
1557; public: bool __cdecl CReaderWriterLock::SetSpinCount(unsigned short) __ptr64
1558?SetSpinCount@CReaderWriterLock@@QEAA_NG@Z
1559; public: bool __cdecl CRtlResource::SetSpinCount(unsigned short) __ptr64
1560?SetSpinCount@CRtlResource@@QEAA_NG@Z
1561; public: bool __cdecl CShareLock::SetSpinCount(unsigned short) __ptr64
1562?SetSpinCount@CShareLock@@QEAA_NG@Z
1563; public: bool __cdecl CSmallSpinLock::SetSpinCount(unsigned short) __ptr64
1564?SetSpinCount@CSmallSpinLock@@QEAA_NG@Z
1565; public: bool __cdecl CSpinLock::SetSpinCount(unsigned short) __ptr64
1566?SetSpinCount@CSpinLock@@QEAA_NG@Z
1567; public: void __cdecl EXTLOG_DATETIME_CACHE::SetSystemTime(struct _SYSTEMTIME * __ptr64) __ptr64
1568?SetSystemTime@EXTLOG_DATETIME_CACHE@@QEAAXPEAU_SYSTEMTIME@@@Z
1569; public: void __cdecl CLKRHashTable::SetTableLockSpinCount(unsigned short) __ptr64
1570?SetTableLockSpinCount@CLKRHashTable@@QEAAXG@Z
1571; public: void __cdecl CLKRLinearHashTable::SetTableLockSpinCount(unsigned short) __ptr64
1572?SetTableLockSpinCount@CLKRLinearHashTable@@QEAAXG@Z
1573; public: int __cdecl CDateTime::SetTime(struct _FILETIME const & __ptr64) __ptr64
1574?SetTime@CDateTime@@QEAAHAEBU_FILETIME@@@Z
1575; public: int __cdecl CDateTime::SetTime(struct _SYSTEMTIME const & __ptr64) __ptr64
1576?SetTime@CDateTime@@QEAAHAEBU_SYSTEMTIME@@@Z
1577; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64
1578?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z
1579; public: void __cdecl BUFFER::SetValid(int) __ptr64
1580?SetValid@BUFFER@@QEAAXH@Z
1581; public: unsigned long __cdecl CLKRHashTable::Size(void)const __ptr64
1582?Size@CLKRHashTable@@QEBAKXZ
1583; public: unsigned long __cdecl CLKRLinearHashTable::Size(void)const __ptr64
1584?Size@CLKRLinearHashTable@@QEBAKXZ
1585; private: unsigned char __cdecl CSharelock::SleepWaitingForLock(int) __ptr64
1586?SleepWaitingForLock@CSharelock@@AEAAEH@Z
1587StringTimeToFileTime
1588; public: int __cdecl EVENT_LOG::Success(void)const __ptr64
1589?Success@EVENT_LOG@@QEBAHXZ
1590; public: void __cdecl STRA::SyncWithBuffer(void) __ptr64
1591?SyncWithBuffer@STRA@@QEAAXXZ
1592; public: void __cdecl STRU::SyncWithBuffer(void) __ptr64
1593?SyncWithBuffer@STRU@@QEAAXXZ
1594SystemTimeToGMT
1595SystemTimeToGMTEx
1596; public: int __cdecl CEtwTracer::TracePerUrlEnabled(void) __ptr64
1597?TracePerUrlEnabled@CEtwTracer@@QEAAHXZ
1598; public: bool __cdecl CReaderWriterLock3::TryConvertSharedToExclusive(void) __ptr64
1599?TryConvertSharedToExclusive@CReaderWriterLock3@@QEAA_NXZ
1600; public: bool __cdecl CCritSec::TryReadLock(void) __ptr64
1601?TryReadLock@CCritSec@@QEAA_NXZ
1602; public: bool __cdecl CFakeLock::TryReadLock(void) __ptr64
1603?TryReadLock@CFakeLock@@QEAA_NXZ
1604; public: bool __cdecl CReaderWriterLock2::TryReadLock(void) __ptr64
1605?TryReadLock@CReaderWriterLock2@@QEAA_NXZ
1606; public: bool __cdecl CReaderWriterLock3::TryReadLock(void) __ptr64
1607?TryReadLock@CReaderWriterLock3@@QEAA_NXZ
1608; public: bool __cdecl CReaderWriterLock::TryReadLock(void) __ptr64
1609?TryReadLock@CReaderWriterLock@@QEAA_NXZ
1610; public: bool __cdecl CRtlResource::TryReadLock(void) __ptr64
1611?TryReadLock@CRtlResource@@QEAA_NXZ
1612; public: bool __cdecl CShareLock::TryReadLock(void) __ptr64
1613?TryReadLock@CShareLock@@QEAA_NXZ
1614; public: bool __cdecl CSmallSpinLock::TryReadLock(void) __ptr64
1615?TryReadLock@CSmallSpinLock@@QEAA_NXZ
1616; public: bool __cdecl CSpinLock::TryReadLock(void) __ptr64
1617?TryReadLock@CSpinLock@@QEAA_NXZ
1618; public: bool __cdecl CCritSec::TryWriteLock(void) __ptr64
1619?TryWriteLock@CCritSec@@QEAA_NXZ
1620; public: bool __cdecl CFakeLock::TryWriteLock(void) __ptr64
1621?TryWriteLock@CFakeLock@@QEAA_NXZ
1622; public: bool __cdecl CReaderWriterLock2::TryWriteLock(void) __ptr64
1623?TryWriteLock@CReaderWriterLock2@@QEAA_NXZ
1624; public: bool __cdecl CReaderWriterLock3::TryWriteLock(void) __ptr64
1625?TryWriteLock@CReaderWriterLock3@@QEAA_NXZ
1626; public: bool __cdecl CReaderWriterLock::TryWriteLock(void) __ptr64
1627?TryWriteLock@CReaderWriterLock@@QEAA_NXZ
1628; public: bool __cdecl CRtlResource::TryWriteLock(void) __ptr64
1629?TryWriteLock@CRtlResource@@QEAA_NXZ
1630; public: bool __cdecl CShareLock::TryWriteLock(void) __ptr64
1631?TryWriteLock@CShareLock@@QEAA_NXZ
1632; public: bool __cdecl CSmallSpinLock::TryWriteLock(void) __ptr64
1633?TryWriteLock@CSmallSpinLock@@QEAA_NXZ
1634; public: bool __cdecl CSpinLock::TryWriteLock(void) __ptr64
1635?TryWriteLock@CSpinLock@@QEAA_NXZ
1636; long __cdecl UlCleanAndCopyUrl(unsigned char * __ptr64,unsigned long,unsigned long * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64 * __ptr64)
1637?UlCleanAndCopyUrl@@YAJPEAEKPEAKPEAGPEAPEAG@Z
1638; public: unsigned long __cdecl CEtwTracer::UnRegister(void) __ptr64
1639?UnRegister@CEtwTracer@@QEAAKXZ
1640; public: int __cdecl STR::Unescape(void) __ptr64
1641?Unescape@STR@@QEAAHXZ
1642; public: long __cdecl STRA::Unescape(void) __ptr64
1643?Unescape@STRA@@QEAAJXZ
1644; public: long __cdecl STRU::Unescape(void) __ptr64
1645?Unescape@STRU@@QEAAJXZ
1646; public: void __cdecl STR::Unhash(void) __ptr64
1647?Unhash@STR@@QEAAXXZ
1648; private: void __cdecl ALLOC_CACHE_HANDLER::Unlock(void) __ptr64
1649?Unlock@ALLOC_CACHE_HANDLER@@AEAAXXZ
1650; public: void __cdecl CLockedDoubleList::Unlock(void) __ptr64
1651?Unlock@CLockedDoubleList@@QEAAXXZ
1652; public: void __cdecl CLockedSingleList::Unlock(void) __ptr64
1653?Unlock@CLockedSingleList@@QEAAXXZ
1654; private: void __cdecl HASH_TABLE_BUCKET::Unlock(void) __ptr64
1655?Unlock@HASH_TABLE_BUCKET@@AEAAXXZ
1656; public: void __cdecl TS_RESOURCE::Unlock(void) __ptr64
1657?Unlock@TS_RESOURCE@@QEAAXXZ
1658; public: unsigned char __cdecl CSharelock::UpdateMaxSpins(int) __ptr64
1659?UpdateMaxSpins@CSharelock@@QEAAEH@Z
1660; public: unsigned char __cdecl CSharelock::UpdateMaxUsers(int) __ptr64
1661?UpdateMaxUsers@CSharelock@@QEAAEH@Z
1662; public: bool __cdecl CLKRHashTable::ValidSignature(void)const __ptr64
1663?ValidSignature@CLKRHashTable@@QEBA_NXZ
1664; public: bool __cdecl CLKRLinearHashTable::ValidSignature(void)const __ptr64
1665?ValidSignature@CLKRLinearHashTable@@QEBA_NXZ
1666; private: void __cdecl BUFFER::VerifyState(void)const __ptr64
1667?VerifyState@BUFFER@@AEBAXXZ
1668; private: unsigned char __cdecl CSharelock::WaitForExclusiveLock(int) __ptr64
1669?WaitForExclusiveLock@CSharelock@@AEAAEH@Z
1670; private: unsigned char __cdecl CSharelock::WaitForShareLock(int) __ptr64
1671?WaitForShareLock@CSharelock@@AEAAEH@Z
1672; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<1,1,3,1,3,2>::WaitType(void)
1673?WaitType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1674; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<2,1,1,1,3,2>::WaitType(void)
1675?WaitType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1676; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<3,1,1,1,1,1>::WaitType(void)
1677?WaitType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_WAIT_TYPE@@XZ
1678; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<4,1,1,2,3,3>::WaitType(void)
1679?WaitType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
1680; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<5,2,1,2,3,3>::WaitType(void)
1681?WaitType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
1682; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<6,2,1,2,3,3>::WaitType(void)
1683?WaitType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
1684; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<7,2,2,1,3,2>::WaitType(void)
1685?WaitType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1686; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<8,2,2,1,3,2>::WaitType(void)
1687?WaitType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1688; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<9,2,1,1,3,2>::WaitType(void)
1689?WaitType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1690; private: void __cdecl CSharelock::WakeAllSleepers(void) __ptr64
1691?WakeAllSleepers@CSharelock@@AEAAXXZ
1692; public: bool __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::Write(struct DATETIME_FORMAT_ENTRY const & __ptr64) __ptr64
1693?Write@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@QEAA_NAEBUDATETIME_FORMAT_ENTRY@@@Z
1694; public: bool __cdecl CDataCache<class CDateTime>::Write(class CDateTime const & __ptr64) __ptr64
1695?Write@?$CDataCache@VCDateTime@@@@QEAA_NAEBVCDateTime@@@Z
1696; public: void __cdecl CCritSec::WriteLock(void) __ptr64
1697?WriteLock@CCritSec@@QEAAXXZ
1698; public: void __cdecl CFakeLock::WriteLock(void) __ptr64
1699?WriteLock@CFakeLock@@QEAAXXZ
1700; public: void __cdecl CLKRHashTable::WriteLock(void) __ptr64
1701?WriteLock@CLKRHashTable@@QEAAXXZ
1702; public: void __cdecl CLKRLinearHashTable::WriteLock(void) __ptr64
1703?WriteLock@CLKRLinearHashTable@@QEAAXXZ
1704; public: void __cdecl CReaderWriterLock2::WriteLock(void) __ptr64
1705?WriteLock@CReaderWriterLock2@@QEAAXXZ
1706; public: void __cdecl CReaderWriterLock3::WriteLock(void) __ptr64
1707?WriteLock@CReaderWriterLock3@@QEAAXXZ
1708; public: void __cdecl CReaderWriterLock::WriteLock(void) __ptr64
1709?WriteLock@CReaderWriterLock@@QEAAXXZ
1710; public: void __cdecl CRtlResource::WriteLock(void) __ptr64
1711?WriteLock@CRtlResource@@QEAAXXZ
1712; public: void __cdecl CShareLock::WriteLock(void) __ptr64
1713?WriteLock@CShareLock@@QEAAXXZ
1714; public: void __cdecl CSmallSpinLock::WriteLock(void) __ptr64
1715?WriteLock@CSmallSpinLock@@QEAAXXZ
1716; public: void __cdecl CSpinLock::WriteLock(void) __ptr64
1717?WriteLock@CSpinLock@@QEAAXXZ
1718; public: void __cdecl CCritSec::WriteUnlock(void) __ptr64
1719?WriteUnlock@CCritSec@@QEAAXXZ
1720; public: void __cdecl CFakeLock::WriteUnlock(void) __ptr64
1721?WriteUnlock@CFakeLock@@QEAAXXZ
1722; public: void __cdecl CLKRHashTable::WriteUnlock(void)const __ptr64
1723?WriteUnlock@CLKRHashTable@@QEBAXXZ
1724; public: void __cdecl CLKRLinearHashTable::WriteUnlock(void)const __ptr64
1725?WriteUnlock@CLKRLinearHashTable@@QEBAXXZ
1726; public: void __cdecl CReaderWriterLock2::WriteUnlock(void) __ptr64
1727?WriteUnlock@CReaderWriterLock2@@QEAAXXZ
1728; public: void __cdecl CReaderWriterLock3::WriteUnlock(void) __ptr64
1729?WriteUnlock@CReaderWriterLock3@@QEAAXXZ
1730; public: void __cdecl CReaderWriterLock::WriteUnlock(void) __ptr64
1731?WriteUnlock@CReaderWriterLock@@QEAAXXZ
1732; public: void __cdecl CRtlResource::WriteUnlock(void) __ptr64
1733?WriteUnlock@CRtlResource@@QEAAXXZ
1734; public: void __cdecl CShareLock::WriteUnlock(void) __ptr64
1735?WriteUnlock@CShareLock@@QEAAXXZ
1736; public: void __cdecl CSmallSpinLock::WriteUnlock(void) __ptr64
1737?WriteUnlock@CSmallSpinLock@@QEAAXXZ
1738; public: void __cdecl CSpinLock::WriteUnlock(void) __ptr64
1739?WriteUnlock@CSpinLock@@QEAAXXZ
1740ZapRegistryKey
1741; protected: void __cdecl CLKRLinearHashTable_Iterator::_AddRef(int)const __ptr64
1742?_AddRef@CLKRLinearHashTable_Iterator@@IEBAXH@Z
1743; private: void __cdecl CLKRLinearHashTable::_AddRefRecord(void const * __ptr64,int)const __ptr64
1744?_AddRefRecord@CLKRLinearHashTable@@AEBAXPEBXH@Z
1745; private: static class CNodeClump * __ptr64 __cdecl CLKRLinearHashTable::_AllocateNodeClump(void)
1746?_AllocateNodeClump@CLKRLinearHashTable@@CAQEAVCNodeClump@@XZ
1747; private: class CSegment * __ptr64 __cdecl CLKRLinearHashTable::_AllocateSegment(void)const __ptr64
1748?_AllocateSegment@CLKRLinearHashTable@@AEBAQEAVCSegment@@XZ
1749; private: static class CDirEntry * __ptr64 __cdecl CLKRLinearHashTable::_AllocateSegmentDirectory(unsigned __int64)
1750?_AllocateSegmentDirectory@CLKRLinearHashTable@@CAQEAVCDirEntry@@_K@Z
1751; private: static class CLKRLinearHashTable * __ptr64 __cdecl CLKRHashTable::_AllocateSubTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,class CLKRHashTable * __ptr64,bool)
1752?_AllocateSubTable@CLKRHashTable@@CAQEAVCLKRLinearHashTable@@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKPEAV1@_N@Z
1753; private: static class CLKRLinearHashTable * __ptr64 * __ptr64 __cdecl CLKRHashTable::_AllocateSubTableArray(unsigned __int64)
1754?_AllocateSubTableArray@CLKRHashTable@@CAQEAPEAVCLKRLinearHashTable@@_K@Z
1755; private: unsigned long __cdecl CLKRLinearHashTable::_Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE,enum LK_PREDICATE & __ptr64) __ptr64
1756?_Apply@CLKRLinearHashTable@@AEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@AEAW4LK_PREDICATE@@@Z
1757; private: unsigned long __cdecl CLKRLinearHashTable::_ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE,enum LK_PREDICATE & __ptr64) __ptr64
1758?_ApplyIf@CLKRLinearHashTable@@AEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@AEAW42@@Z
1759; private: class CBucket * __ptr64 __cdecl CLKRLinearHashTable::_Bucket(unsigned long)const __ptr64
1760?_Bucket@CLKRLinearHashTable@@AEBAPEAVCBucket@@K@Z
1761; private: unsigned long __cdecl CLKRLinearHashTable::_BucketAddress(unsigned long)const __ptr64
1762?_BucketAddress@CLKRLinearHashTable@@AEBAKK@Z
1763; private: unsigned long __cdecl CLKRHashTable::_CalcKeyHash(unsigned __int64)const __ptr64
1764?_CalcKeyHash@CLKRHashTable@@AEBAK_K@Z
1765; private: unsigned long __cdecl CLKRLinearHashTable::_CalcKeyHash(unsigned __int64)const __ptr64
1766?_CalcKeyHash@CLKRLinearHashTable@@AEBAK_K@Z
1767; private: void __cdecl CLKRLinearHashTable::_Clear(bool) __ptr64
1768?_Clear@CLKRLinearHashTable@@AEAAX_N@Z
1769; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_CloseIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
1770?_CloseIterator@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
1771; private: bool __cdecl CReaderWriterLock2::_CmpExch(long,long) __ptr64
1772?_CmpExch@CReaderWriterLock2@@AEAA_NJJ@Z
1773; private: bool __cdecl CReaderWriterLock3::_CmpExch(long,long) __ptr64
1774?_CmpExch@CReaderWriterLock3@@AEAA_NJJ@Z
1775; private: bool __cdecl CReaderWriterLock::_CmpExch(long,long) __ptr64
1776?_CmpExch@CReaderWriterLock@@AEAA_NJJ@Z
1777; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Contract(void) __ptr64
1778?_Contract@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@XZ
1779; private: static long __cdecl CReaderWriterLock3::_CurrentThreadId(void)
1780?_CurrentThreadId@CReaderWriterLock3@@CAJXZ
1781; private: static long __cdecl CSmallSpinLock::_CurrentThreadId(void)
1782?_CurrentThreadId@CSmallSpinLock@@CAJXZ
1783; private: static long __cdecl CSpinLock::_CurrentThreadId(void)
1784?_CurrentThreadId@CSpinLock@@CAJXZ
1785; private: unsigned long __cdecl CLKRLinearHashTable::_DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_PREDICATE & __ptr64) __ptr64
1786?_DeleteIf@CLKRLinearHashTable@@AEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1AEAW42@@Z
1787; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_DeleteKey(unsigned __int64,unsigned long) __ptr64
1788?_DeleteKey@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@_KK@Z
1789; private: bool __cdecl CLKRLinearHashTable::_DeleteNode(class CBucket * __ptr64,class CNodeClump * __ptr64 & __ptr64,class CNodeClump * __ptr64 & __ptr64,int & __ptr64) __ptr64
1790?_DeleteNode@CLKRLinearHashTable@@AEAA_NPEAVCBucket@@AEAPEAVCNodeClump@@1AEAH@Z
1791; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_DeleteRecord(void const * __ptr64,unsigned long) __ptr64
1792?_DeleteRecord@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEBXK@Z
1793; private: bool __cdecl CLKRLinearHashTable::_EqualKeys(unsigned __int64,unsigned __int64)const __ptr64
1794?_EqualKeys@CLKRLinearHashTable@@AEBA_N_K0@Z
1795; private: bool __cdecl CLKRLinearHashTable::_Erase(class CLKRLinearHashTable_Iterator & __ptr64,unsigned long) __ptr64
1796?_Erase@CLKRLinearHashTable@@AEAA_NAEAVCLKRLinearHashTable_Iterator@@K@Z
1797; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Expand(void) __ptr64
1798?_Expand@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@XZ
1799; private: unsigned __int64 const __cdecl CLKRHashTable::_ExtractKey(void const * __ptr64)const __ptr64
1800?_ExtractKey@CLKRHashTable@@AEBA?B_KPEBX@Z
1801; private: unsigned __int64 const __cdecl CLKRLinearHashTable::_ExtractKey(void const * __ptr64)const __ptr64
1802?_ExtractKey@CLKRLinearHashTable@@AEBA?B_KPEBX@Z
1803; private: class CBucket * __ptr64 __cdecl CLKRLinearHashTable::_FindBucket(unsigned long,bool)const __ptr64
1804?_FindBucket@CLKRLinearHashTable@@AEBAPEAVCBucket@@K_N@Z
1805; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_FindKey(unsigned __int64,unsigned long,void const * __ptr64 * __ptr64,class CLKRLinearHashTable_Iterator * __ptr64)const __ptr64
1806?_FindKey@CLKRLinearHashTable@@AEBA?AW4LK_RETCODE@@_KKPEAPEBXPEAVCLKRLinearHashTable_Iterator@@@Z
1807; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_FindRecord(void const * __ptr64,unsigned long)const __ptr64
1808?_FindRecord@CLKRLinearHashTable@@AEBA?AW4LK_RETCODE@@PEBXK@Z
1809; private: static bool __cdecl CLKRLinearHashTable::_FreeNodeClump(class CNodeClump * __ptr64)
1810?_FreeNodeClump@CLKRLinearHashTable@@CA_NPEAVCNodeClump@@@Z
1811; private: bool __cdecl CLKRLinearHashTable::_FreeSegment(class CSegment * __ptr64)const __ptr64
1812?_FreeSegment@CLKRLinearHashTable@@AEBA_NPEAVCSegment@@@Z
1813; private: bool __cdecl CLKRLinearHashTable::_FreeSegmentDirectory(void) __ptr64
1814?_FreeSegmentDirectory@CLKRLinearHashTable@@AEAA_NXZ
1815; private: static bool __cdecl CLKRHashTable::_FreeSubTable(class CLKRLinearHashTable * __ptr64)
1816?_FreeSubTable@CLKRHashTable@@CA_NPEAVCLKRLinearHashTable@@@Z
1817; private: static bool __cdecl CLKRHashTable::_FreeSubTableArray(class CLKRLinearHashTable * __ptr64 * __ptr64)
1818?_FreeSubTableArray@CLKRHashTable@@CA_NPEAPEAVCLKRLinearHashTable@@@Z
1819; private: unsigned long __cdecl CLKRLinearHashTable::_H0(unsigned long)const __ptr64
1820?_H0@CLKRLinearHashTable@@AEBAKK@Z
1821; private: static unsigned long __cdecl CLKRLinearHashTable::_H0(unsigned long,unsigned long)
1822?_H0@CLKRLinearHashTable@@CAKKK@Z
1823; private: unsigned long __cdecl CLKRLinearHashTable::_H1(unsigned long)const __ptr64
1824?_H1@CLKRLinearHashTable@@AEBAKK@Z
1825; private: static unsigned long __cdecl CLKRLinearHashTable::_H1(unsigned long,unsigned long)
1826?_H1@CLKRLinearHashTable@@CAKKK@Z
1827; protected: bool __cdecl CLKRHashTable_Iterator::_Increment(bool) __ptr64
1828?_Increment@CLKRHashTable_Iterator@@IEAA_N_N@Z
1829; protected: bool __cdecl CLKRLinearHashTable_Iterator::_Increment(bool) __ptr64
1830?_Increment@CLKRLinearHashTable_Iterator@@IEAA_N_N@Z
1831; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Initialize(unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),char const * __ptr64,double,unsigned long) __ptr64
1832?_Initialize@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@P6A?B_KPEBX@ZP6AK_K@ZP6A_N22@ZP6AX0H@ZPEBDNK@Z
1833; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_InitializeIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
1834?_InitializeIterator@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
1835; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_InsertRecord(void const * __ptr64,unsigned long,bool,class CLKRLinearHashTable_Iterator * __ptr64) __ptr64
1836?_InsertRecord@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEBXK_NPEAVCLKRLinearHashTable_Iterator@@@Z
1837; private: void __cdecl CLKRHashTable::_InsertThisIntoGlobalList(void) __ptr64
1838?_InsertThisIntoGlobalList@CLKRHashTable@@AEAAXXZ
1839; private: void __cdecl CLKRLinearHashTable::_InsertThisIntoGlobalList(void) __ptr64
1840?_InsertThisIntoGlobalList@CLKRLinearHashTable@@AEAAXXZ
1841; private: bool __cdecl CSpinLock::_IsLocked(void)const __ptr64
1842?_IsLocked@CSpinLock@@AEBA_NXZ
1843; private: int __cdecl CLKRLinearHashTable::_IsNodeCompact(class CBucket * __ptr64 const)const __ptr64
1844?_IsNodeCompact@CLKRLinearHashTable@@AEBAHQEAVCBucket@@@Z
1845; private: bool __cdecl CLKRHashTable::_IsValidIterator(class CLKRHashTable_Iterator const & __ptr64)const __ptr64
1846?_IsValidIterator@CLKRHashTable@@AEBA_NAEBVCLKRHashTable_Iterator@@@Z
1847; private: bool __cdecl CLKRLinearHashTable::_IsValidIterator(class CLKRLinearHashTable_Iterator const & __ptr64)const __ptr64
1848?_IsValidIterator@CLKRLinearHashTable@@AEBA_NAEBVCLKRLinearHashTable_Iterator@@@Z
1849; private: void __cdecl CSpinLock::_Lock(void) __ptr64
1850?_Lock@CSpinLock@@AEAAXXZ
1851; private: void __cdecl CReaderWriterLock2::_LockSpin(bool) __ptr64
1852?_LockSpin@CReaderWriterLock2@@AEAAX_N@Z
1853; private: void __cdecl CReaderWriterLock3::_LockSpin(enum CReaderWriterLock3::SPIN_TYPE) __ptr64
1854?_LockSpin@CReaderWriterLock3@@AEAAXW4SPIN_TYPE@1@@Z
1855; private: void __cdecl CReaderWriterLock::_LockSpin(bool) __ptr64
1856?_LockSpin@CReaderWriterLock@@AEAAX_N@Z
1857; private: void __cdecl CSmallSpinLock::_LockSpin(void) __ptr64
1858?_LockSpin@CSmallSpinLock@@AEAAXXZ
1859; private: void __cdecl CSpinLock::_LockSpin(void) __ptr64
1860?_LockSpin@CSpinLock@@AEAAXXZ
1861; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_MergeRecordSets(class CBucket * __ptr64,class CNodeClump * __ptr64,class CNodeClump * __ptr64) __ptr64
1862?_MergeRecordSets@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCBucket@@PEAVCNodeClump@@1@Z
1863; private: static enum LK_PREDICATE __cdecl CLKRLinearHashTable::_PredTrue(void const * __ptr64,void * __ptr64)
1864?_PredTrue@CLKRLinearHashTable@@CA?AW4LK_PREDICATE@@PEBXPEAX@Z
1865; private: void __cdecl CReaderWriterLock2::_ReadLockSpin(void) __ptr64
1866?_ReadLockSpin@CReaderWriterLock2@@AEAAXXZ
1867; private: void __cdecl CReaderWriterLock3::_ReadLockSpin(enum CReaderWriterLock3::SPIN_TYPE) __ptr64
1868?_ReadLockSpin@CReaderWriterLock3@@AEAAXW4SPIN_TYPE@1@@Z
1869; private: void __cdecl CReaderWriterLock::_ReadLockSpin(void) __ptr64
1870?_ReadLockSpin@CReaderWriterLock@@AEAAXXZ
1871; protected: static void __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::_ReadMemoryBarrier(void)
1872?_ReadMemoryBarrier@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@KAXXZ
1873; protected: static void __cdecl CDataCache<class CDateTime>::_ReadMemoryBarrier(void)
1874?_ReadMemoryBarrier@?$CDataCache@VCDateTime@@@@KAXXZ
1875; private: bool __cdecl CLKRLinearHashTable::_ReadOrWriteLock(void)const __ptr64
1876?_ReadOrWriteLock@CLKRLinearHashTable@@AEBA_NXZ
1877; private: void __cdecl CLKRLinearHashTable::_ReadOrWriteUnlock(bool)const __ptr64
1878?_ReadOrWriteUnlock@CLKRLinearHashTable@@AEBAX_N@Z
1879; protected: long __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::_ReadSequence(void)const __ptr64
1880?_ReadSequence@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@IEBAJXZ
1881; protected: long __cdecl CDataCache<class CDateTime>::_ReadSequence(void)const __ptr64
1882?_ReadSequence@?$CDataCache@VCDateTime@@@@IEBAJXZ
1883; private: void __cdecl CLKRHashTable::_RemoveThisFromGlobalList(void) __ptr64
1884?_RemoveThisFromGlobalList@CLKRHashTable@@AEAAXXZ
1885; private: void __cdecl CLKRLinearHashTable::_RemoveThisFromGlobalList(void) __ptr64
1886?_RemoveThisFromGlobalList@CLKRLinearHashTable@@AEAAXXZ
1887; private: unsigned long __cdecl CLKRLinearHashTable::_SegIndex(unsigned long)const __ptr64
1888?_SegIndex@CLKRLinearHashTable@@AEBAKK@Z
1889; private: class CSegment * __ptr64 & __ptr64 __cdecl CLKRLinearHashTable::_Segment(unsigned long)const __ptr64
1890?_Segment@CLKRLinearHashTable@@AEBAAEAPEAVCSegment@@K@Z
1891; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_SetSegVars(enum LK_TABLESIZE,unsigned long) __ptr64
1892?_SetSegVars@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@W4LK_TABLESIZE@@K@Z
1893; protected: long __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::_SetSequence(long) __ptr64
1894?_SetSequence@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@IEAAJJ@Z
1895; protected: long __cdecl CDataCache<class CDateTime>::_SetSequence(long) __ptr64
1896?_SetSequence@?$CDataCache@VCDateTime@@@@IEAAJJ@Z
1897; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_SplitRecordSet(class CNodeClump * __ptr64,class CNodeClump * __ptr64,unsigned long,unsigned long,unsigned long,class CNodeClump * __ptr64) __ptr64
1898?_SplitRecordSet@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCNodeClump@@0KKK0@Z
1899; private: class CLKRLinearHashTable * __ptr64 __cdecl CLKRHashTable::_SubTable(unsigned long)const __ptr64
1900?_SubTable@CLKRHashTable@@AEBAPEAVCLKRLinearHashTable@@K@Z
1901; private: int __cdecl CLKRHashTable::_SubTableIndex(class CLKRLinearHashTable * __ptr64)const __ptr64
1902?_SubTableIndex@CLKRHashTable@@AEBAHPEAVCLKRLinearHashTable@@@Z
1903; private: bool __cdecl CSmallSpinLock::_TryLock(void) __ptr64
1904?_TryLock@CSmallSpinLock@@AEAA_NXZ
1905; private: bool __cdecl CSpinLock::_TryLock(void) __ptr64
1906?_TryLock@CSpinLock@@AEAA_NXZ
1907; private: bool __cdecl CReaderWriterLock2::_TryReadLock(void) __ptr64
1908?_TryReadLock@CReaderWriterLock2@@AEAA_NXZ
1909; private: bool __cdecl CReaderWriterLock3::_TryReadLock(void) __ptr64
1910?_TryReadLock@CReaderWriterLock3@@AEAA_NXZ
1911; private: bool __cdecl CReaderWriterLock::_TryReadLock(void) __ptr64
1912?_TryReadLock@CReaderWriterLock@@AEAA_NXZ
1913; private: bool __cdecl CReaderWriterLock3::_TryReadLockRecursive(void) __ptr64
1914?_TryReadLockRecursive@CReaderWriterLock3@@AEAA_NXZ
1915; private: bool __cdecl CReaderWriterLock3::_TryWriteLock2(void) __ptr64
1916?_TryWriteLock2@CReaderWriterLock3@@AEAA_NXZ
1917; private: bool __cdecl CReaderWriterLock2::_TryWriteLock(long) __ptr64
1918?_TryWriteLock@CReaderWriterLock2@@AEAA_NJ@Z
1919; private: bool __cdecl CReaderWriterLock3::_TryWriteLock(long) __ptr64
1920?_TryWriteLock@CReaderWriterLock3@@AEAA_NJ@Z
1921; private: bool __cdecl CReaderWriterLock::_TryWriteLock(void) __ptr64
1922?_TryWriteLock@CReaderWriterLock@@AEAA_NXZ
1923; private: void __cdecl CSpinLock::_Unlock(void) __ptr64
1924?_Unlock@CSpinLock@@AEAAXXZ
1925; private: void __cdecl CReaderWriterLock2::_WriteLockSpin(void) __ptr64
1926?_WriteLockSpin@CReaderWriterLock2@@AEAAXXZ
1927; private: void __cdecl CReaderWriterLock3::_WriteLockSpin(void) __ptr64
1928?_WriteLockSpin@CReaderWriterLock3@@AEAAXXZ
1929; private: void __cdecl CReaderWriterLock::_WriteLockSpin(void) __ptr64
1930?_WriteLockSpin@CReaderWriterLock@@AEAAXXZ
1931; long const * const `public: static long const * __ptr64 __cdecl CLKRHashTableStats::BucketSizes(void)'::`2'::s_aBucketSizes
1932?s_aBucketSizes@?1??BucketSizes@CLKRHashTableStats@@SAPEBJXZ@4QBJB
1933; private: static struct _RTL_CRITICAL_SECTION ALLOC_CACHE_HANDLER::sm_csItems
1934?sm_csItems@ALLOC_CACHE_HANDLER@@0U_RTL_CRITICAL_SECTION@@A DATA
1935; protected: static double CCritSec::sm_dblDfltSpinAdjFctr
1936?sm_dblDfltSpinAdjFctr@CCritSec@@1NA DATA
1937; protected: static double CFakeLock::sm_dblDfltSpinAdjFctr
1938?sm_dblDfltSpinAdjFctr@CFakeLock@@1NA DATA
1939; protected: static double CReaderWriterLock2::sm_dblDfltSpinAdjFctr
1940?sm_dblDfltSpinAdjFctr@CReaderWriterLock2@@1NA DATA
1941; protected: static double CReaderWriterLock3::sm_dblDfltSpinAdjFctr
1942?sm_dblDfltSpinAdjFctr@CReaderWriterLock3@@1NA DATA
1943; protected: static double CReaderWriterLock::sm_dblDfltSpinAdjFctr
1944?sm_dblDfltSpinAdjFctr@CReaderWriterLock@@1NA DATA
1945; protected: static double CRtlResource::sm_dblDfltSpinAdjFctr
1946?sm_dblDfltSpinAdjFctr@CRtlResource@@1NA DATA
1947; protected: static double CShareLock::sm_dblDfltSpinAdjFctr
1948?sm_dblDfltSpinAdjFctr@CShareLock@@1NA DATA
1949; protected: static double CSmallSpinLock::sm_dblDfltSpinAdjFctr
1950?sm_dblDfltSpinAdjFctr@CSmallSpinLock@@1NA DATA
1951; protected: static double CSpinLock::sm_dblDfltSpinAdjFctr
1952?sm_dblDfltSpinAdjFctr@CSpinLock@@1NA DATA
1953; private: static int ALLOC_CACHE_HANDLER::sm_fInitCsItems
1954?sm_fInitCsItems@ALLOC_CACHE_HANDLER@@0HA DATA
1955; private: static void * __ptr64 __ptr64 ALLOC_CACHE_HANDLER::sm_hTimer
1956?sm_hTimer@ALLOC_CACHE_HANDLER@@0PEAXEA DATA
1957; private: static struct _LIST_ENTRY ALLOC_CACHE_HANDLER::sm_lItemsHead
1958?sm_lItemsHead@ALLOC_CACHE_HANDLER@@0U_LIST_ENTRY@@A DATA
1959; private: static class CLockedDoubleList CLKRHashTable::sm_llGlobalList
1960?sm_llGlobalList@CLKRHashTable@@0VCLockedDoubleList@@A DATA
1961; private: static class CLockedDoubleList CLKRLinearHashTable::sm_llGlobalList
1962?sm_llGlobalList@CLKRLinearHashTable@@0VCLockedDoubleList@@A DATA
1963; private: static long ALLOC_CACHE_HANDLER::sm_nFillPattern
1964?sm_nFillPattern@ALLOC_CACHE_HANDLER@@0JA DATA
1965; protected: static class ALLOC_CACHE_HANDLER * __ptr64 __ptr64 CLKRLinearHashTable::sm_palloc
1966?sm_palloc@CLKRLinearHashTable@@1PEAVALLOC_CACHE_HANDLER@@EA DATA
1967; protected: static unsigned short CCritSec::sm_wDefaultSpinCount
1968?sm_wDefaultSpinCount@CCritSec@@1GA DATA
1969; protected: static unsigned short CFakeLock::sm_wDefaultSpinCount
1970?sm_wDefaultSpinCount@CFakeLock@@1GA DATA
1971; protected: static unsigned short CReaderWriterLock2::sm_wDefaultSpinCount
1972?sm_wDefaultSpinCount@CReaderWriterLock2@@1GA DATA
1973; protected: static unsigned short CReaderWriterLock3::sm_wDefaultSpinCount
1974?sm_wDefaultSpinCount@CReaderWriterLock3@@1GA DATA
1975; protected: static unsigned short CReaderWriterLock::sm_wDefaultSpinCount
1976?sm_wDefaultSpinCount@CReaderWriterLock@@1GA DATA
1977; protected: static unsigned short CRtlResource::sm_wDefaultSpinCount
1978?sm_wDefaultSpinCount@CRtlResource@@1GA DATA
1979; protected: static unsigned short CShareLock::sm_wDefaultSpinCount
1980?sm_wDefaultSpinCount@CShareLock@@1GA DATA
1981; protected: static unsigned short CSmallSpinLock::sm_wDefaultSpinCount
1982?sm_wDefaultSpinCount@CSmallSpinLock@@1GA DATA
1983; protected: static unsigned short CSpinLock::sm_wDefaultSpinCount
1984?sm_wDefaultSpinCount@CSpinLock@@1GA DATA
1985CreateRefTraceLog
1986CreateTraceLog
1987DestroyRefTraceLog
1988DestroyTraceLog
1989DllMain
1990GetAllocCounters
1991GetCurrentTimeInMilliseconds
1992GetCurrentTimeInSeconds
1993GetQueryType
1994IISCaptureStackBackTrace
1995IISGetCurrentTime
1996IISGetPlatformType
1997IISInitializeCriticalSection
1998IISSetCriticalSectionSpinCount
1999IisCalloc
2000IisFree
2001IisHeap
2002IisMalloc
2003IisReAlloc
2004InetAcquireResourceExclusive
2005InetAcquireResourceShared
2006InetConvertExclusiveToShared
2007InetConvertSharedToExclusive
2008InetDeleteResource
2009InetInitializeResource
2010InetReleaseResource
2011InitializeIISRTL
2012InitializeSecondsTimer
2013IsNumberInUnicodeList
2014LKRHashTableInit
2015LKRHashTableUninit
2016MIDL_user_allocate
2017MIDL_user_free
2018MonBuildInstanceDefinition
2019PuCloseDbgPrintFile
2020PuCreateDebugPrintsObject
2021PuDbgAssertFailed
2022PuDbgCaptureContext
2023PuDbgCreateEvent
2024PuDbgCreateMutex
2025PuDbgCreateSemaphore
2026PuDbgDump
2027PuDbgPrint
2028PuDbgPrintW
2029PuDeleteDebugPrintsObject
2030PuLoadDebugFlagsFromReg
2031PuLoadDebugFlagsFromRegStr
2032ResetTraceLog
2033RpcBindHandleForServer
2034RpcBindHandleFree
2035RpcBindHandleOverLpc
2036RpcBindHandleOverNamedPipe
2037RpcBindHandleOverTcpIp
2038RpcuFindProtocolToUse
2039TerminateIISRTL
2040TerminateSecondsTimer
2041WriteRefTraceLog
2042WriteRefTraceLogEx
2043WriteTraceLog
2044stristr
lib/libc/mingw/lib64/iissuba.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file SUBAUTH.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SUBAUTH.dll
8EXPORTS
9Msv1_0SubAuthenticationRoutineEx
10RegisterIISSUBA
11UnregisterIISSUBA
lib/libc/mingw/lib64/iisui.def created+1901
......@@ -0,0 +1,1901 @@
1;
2; Exports of file iisui.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY iisui.dll
8EXPORTS
9InitCommonDll
10; public: __cdecl CAccessEntry::CAccessEntry(class CAccessEntry & __ptr64) __ptr64
11??0CAccessEntry@@QEAA@AEAV0@@Z
12; public: __cdecl CAccessEntry::CAccessEntry(unsigned long,void * __ptr64,unsigned short const * __ptr64,int) __ptr64
13??0CAccessEntry@@QEAA@KPEAXPEBGH@Z
14; public: __cdecl CAccessEntry::CAccessEntry(void * __ptr64,int) __ptr64
15??0CAccessEntry@@QEAA@PEAXH@Z
16; public: __cdecl CAccessEntry::CAccessEntry(void * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
17??0CAccessEntry@@QEAA@PEAXPEBG1@Z
18; public: __cdecl CBlob::CBlob(class CBlob const & __ptr64) __ptr64
19??0CBlob@@QEAA@AEBV0@@Z
20; public: __cdecl CBlob::CBlob(unsigned long,unsigned char * __ptr64,int) __ptr64
21??0CBlob@@QEAA@KPEAEH@Z
22; public: __cdecl CBlob::CBlob(void) __ptr64
23??0CBlob@@QEAA@XZ
24; public: __cdecl CComAuthInfo::CComAuthInfo(class CComAuthInfo & __ptr64) __ptr64
25??0CComAuthInfo@@QEAA@AEAV0@@Z
26; public: __cdecl CComAuthInfo::CComAuthInfo(class CComAuthInfo * __ptr64) __ptr64
27??0CComAuthInfo@@QEAA@PEAV0@@Z
28; public: __cdecl CComAuthInfo::CComAuthInfo(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
29??0CComAuthInfo@@QEAA@PEBG00@Z
30; public: __cdecl CConfirmDlg::CConfirmDlg(class CWnd * __ptr64) __ptr64
31??0CConfirmDlg@@QEAA@PEAVCWnd@@@Z
32; public: __cdecl CDirBrowseDlg::CDirBrowseDlg(class CDirBrowseDlg const & __ptr64) __ptr64
33??0CDirBrowseDlg@@QEAA@AEBV0@@Z
34; public: __cdecl CDirBrowseDlg::CDirBrowseDlg(class CWnd * __ptr64,unsigned short const * __ptr64) __ptr64
35??0CDirBrowseDlg@@QEAA@PEAVCWnd@@PEBG@Z
36; public: __cdecl CDownButton::CDownButton(void) __ptr64
37??0CDownButton@@QEAA@XZ
38; public: __cdecl CEmphasizedDialog::CEmphasizedDialog(unsigned int,class CWnd * __ptr64) __ptr64
39??0CEmphasizedDialog@@QEAA@IPEAVCWnd@@@Z
40; public: __cdecl CEmphasizedDialog::CEmphasizedDialog(unsigned short const * __ptr64,class CWnd * __ptr64) __ptr64
41??0CEmphasizedDialog@@QEAA@PEBGPEAVCWnd@@@Z
42; public: __cdecl CEmphasizedDialog::CEmphasizedDialog(void) __ptr64
43??0CEmphasizedDialog@@QEAA@XZ
44; public: __cdecl CError::CError(long) __ptr64
45??0CError@@QEAA@J@Z
46; public: __cdecl CError::CError(unsigned long) __ptr64
47??0CError@@QEAA@K@Z
48; public: __cdecl CError::CError(void) __ptr64
49??0CError@@QEAA@XZ
50; public: __cdecl CGetComputer::CGetComputer(class CGetComputer const & __ptr64) __ptr64
51??0CGetComputer@@QEAA@AEBV0@@Z
52; public: __cdecl CGetComputer::CGetComputer(void) __ptr64
53??0CGetComputer@@QEAA@XZ
54; public: __cdecl CGetUsers::CGetUsers(unsigned short const * __ptr64,int) __ptr64
55??0CGetUsers@@QEAA@PEBGH@Z
56; public: __cdecl CHeaderListBox::CHeaderListBox(unsigned long,unsigned short const * __ptr64) __ptr64
57??0CHeaderListBox@@QEAA@KPEBG@Z
58; public: __cdecl CIISAppPool::CIISAppPool(class CIISAppPool & __ptr64) __ptr64
59??0CIISAppPool@@QEAA@AEAV0@@Z
60; public: __cdecl CIISAppPool::CIISAppPool(class CComAuthInfo * __ptr64,unsigned short const * __ptr64) __ptr64
61??0CIISAppPool@@QEAA@PEAVCComAuthInfo@@PEBG@Z
62; public: __cdecl CIISApplication::CIISApplication(class CIISApplication & __ptr64) __ptr64
63??0CIISApplication@@QEAA@AEAV0@@Z
64; public: __cdecl CIISApplication::CIISApplication(class CComAuthInfo * __ptr64,unsigned short const * __ptr64) __ptr64
65??0CIISApplication@@QEAA@PEAVCComAuthInfo@@PEBG@Z
66; public: __cdecl CIISInterface::CIISInterface(class CIISInterface & __ptr64) __ptr64
67??0CIISInterface@@QEAA@AEAV0@@Z
68; public: __cdecl CIISInterface::CIISInterface(class CComAuthInfo * __ptr64,long) __ptr64
69??0CIISInterface@@QEAA@PEAVCComAuthInfo@@J@Z
70; public: __cdecl CIISSvcControl::CIISSvcControl(class CIISSvcControl & __ptr64) __ptr64
71??0CIISSvcControl@@QEAA@AEAV0@@Z
72; public: __cdecl CIISSvcControl::CIISSvcControl(class CIISSvcControl * __ptr64) __ptr64
73??0CIISSvcControl@@QEAA@PEAV0@@Z
74; public: __cdecl CIISSvcControl::CIISSvcControl(class CComAuthInfo * __ptr64) __ptr64
75??0CIISSvcControl@@QEAA@PEAVCComAuthInfo@@@Z
76; public: __cdecl CIISWizardBookEnd::CIISWizardBookEnd(unsigned int,unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
77??0CIISWizardBookEnd@@QEAA@IIIII@Z
78; public: __cdecl CIISWizardBookEnd::CIISWizardBookEnd(long * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
79??0CIISWizardBookEnd@@QEAA@PEAJIIIIIII@Z
80; public: __cdecl CIISWizardPage::CIISWizardPage(unsigned int,unsigned int,int,unsigned int,unsigned int) __ptr64
81??0CIISWizardPage@@QEAA@IIHII@Z
82; public: __cdecl CIISWizardSheet::CIISWizardSheet(unsigned int,unsigned int,unsigned long,unsigned long) __ptr64
83??0CIISWizardSheet@@QEAA@IIKK@Z
84; public: __cdecl CILong::CILong(long) __ptr64
85??0CILong@@QEAA@J@Z
86; public: __cdecl CILong::CILong(unsigned short const * __ptr64) __ptr64
87??0CILong@@QEAA@PEBG@Z
88; public: __cdecl CILong::CILong(void) __ptr64
89??0CILong@@QEAA@XZ
90; protected: __cdecl CINumber::CINumber(void) __ptr64
91??0CINumber@@IEAA@XZ
92; public: __cdecl CIPAccessDescriptor::CIPAccessDescriptor(class CIPAccessDescriptor const & __ptr64) __ptr64
93??0CIPAccessDescriptor@@QEAA@AEBV0@@Z
94; public: __cdecl CIPAccessDescriptor::CIPAccessDescriptor(int) __ptr64
95??0CIPAccessDescriptor@@QEAA@H@Z
96; public: __cdecl CIPAccessDescriptor::CIPAccessDescriptor(int,unsigned long,unsigned long,int) __ptr64
97??0CIPAccessDescriptor@@QEAA@HKKH@Z
98; public: __cdecl CIPAccessDescriptor::CIPAccessDescriptor(int,unsigned short const * __ptr64) __ptr64
99??0CIPAccessDescriptor@@QEAA@HPEBG@Z
100; public: __cdecl CIPAddress::CIPAddress(class CIPAddress const & __ptr64) __ptr64
101??0CIPAddress@@QEAA@AEBV0@@Z
102; public: __cdecl CIPAddress::CIPAddress(class CString const & __ptr64) __ptr64
103??0CIPAddress@@QEAA@AEBVCString@@@Z
104; public: __cdecl CIPAddress::CIPAddress(unsigned char,unsigned char,unsigned char,unsigned char) __ptr64
105??0CIPAddress@@QEAA@EEEE@Z
106; public: __cdecl CIPAddress::CIPAddress(unsigned long,int) __ptr64
107??0CIPAddress@@QEAA@KH@Z
108; public: __cdecl CIPAddress::CIPAddress(unsigned char * __ptr64,int) __ptr64
109??0CIPAddress@@QEAA@PEAEH@Z
110; public: __cdecl CIPAddress::CIPAddress(unsigned short const * __ptr64,int) __ptr64
111??0CIPAddress@@QEAA@PEBGH@Z
112; public: __cdecl CIPAddress::CIPAddress(void) __ptr64
113??0CIPAddress@@QEAA@XZ
114; public: __cdecl CInheritanceDlg::CInheritanceDlg(int,unsigned long,unsigned long,unsigned long,unsigned long,unsigned short const * __ptr64,int,class CComAuthInfo * __ptr64,unsigned short const * __ptr64,class CWnd * __ptr64) __ptr64
115??0CInheritanceDlg@@QEAA@HKKKKPEBGHPEAVCComAuthInfo@@0PEAVCWnd@@@Z
116; public: __cdecl CInheritanceDlg::CInheritanceDlg(unsigned long,int,class CComAuthInfo * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,class CWnd * __ptr64) __ptr64
117??0CInheritanceDlg@@QEAA@KHPEAVCComAuthInfo@@PEBG1PEAVCWnd@@@Z
118; public: __cdecl CInheritanceDlg::CInheritanceDlg(unsigned long,int,class CComAuthInfo * __ptr64,unsigned short const * __ptr64,class CStringList & __ptr64,unsigned short const * __ptr64,class CWnd * __ptr64) __ptr64
119??0CInheritanceDlg@@QEAA@KHPEAVCComAuthInfo@@PEBGAEAVCStringList@@1PEAVCWnd@@@Z
120; public: __cdecl CMappedBitmapButton::CMappedBitmapButton(void) __ptr64
121??0CMappedBitmapButton@@QEAA@XZ
122; public: __cdecl CMetaBack::CMetaBack(class CMetaBack & __ptr64) __ptr64
123??0CMetaBack@@QEAA@AEAV0@@Z
124; public: __cdecl CMetaBack::CMetaBack(class CComAuthInfo * __ptr64) __ptr64
125??0CMetaBack@@QEAA@PEAVCComAuthInfo@@@Z
126; public: __cdecl CMetaEnumerator::CMetaEnumerator(class CMetaEnumerator & __ptr64) __ptr64
127??0CMetaEnumerator@@QEAA@AEAV0@@Z
128; public: __cdecl CMetaEnumerator::CMetaEnumerator(int,class CMetaKey * __ptr64) __ptr64
129??0CMetaEnumerator@@QEAA@HPEAVCMetaKey@@@Z
130; public: __cdecl CMetaEnumerator::CMetaEnumerator(class CComAuthInfo * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
131??0CMetaEnumerator@@QEAA@PEAVCComAuthInfo@@PEBGK@Z
132; public: __cdecl CMetaEnumerator::CMetaEnumerator(class CMetaInterface * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
133??0CMetaEnumerator@@QEAA@PEAVCMetaInterface@@PEBGK@Z
134; protected: __cdecl CMetaInterface::CMetaInterface(class CMetaInterface * __ptr64) __ptr64
135??0CMetaInterface@@IEAA@PEAV0@@Z
136; protected: __cdecl CMetaInterface::CMetaInterface(class CComAuthInfo * __ptr64) __ptr64
137??0CMetaInterface@@IEAA@PEAVCComAuthInfo@@@Z
138; public: __cdecl CMetaInterface::CMetaInterface(class CMetaInterface & __ptr64) __ptr64
139??0CMetaInterface@@QEAA@AEAV0@@Z
140; public: __cdecl CMetaKey::CMetaKey(class CMetaKey & __ptr64) __ptr64
141??0CMetaKey@@QEAA@AEAV0@@Z
142; public: __cdecl CMetaKey::CMetaKey(int,class CMetaKey * __ptr64) __ptr64
143??0CMetaKey@@QEAA@HPEAV0@@Z
144; public: __cdecl CMetaKey::CMetaKey(class CComAuthInfo * __ptr64) __ptr64
145??0CMetaKey@@QEAA@PEAVCComAuthInfo@@@Z
146; public: __cdecl CMetaKey::CMetaKey(class CComAuthInfo * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned long) __ptr64
147??0CMetaKey@@QEAA@PEAVCComAuthInfo@@PEBGKK@Z
148; public: __cdecl CMetaKey::CMetaKey(class CMetaInterface * __ptr64) __ptr64
149??0CMetaKey@@QEAA@PEAVCMetaInterface@@@Z
150; public: __cdecl CMetaKey::CMetaKey(class CMetaInterface * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned long) __ptr64
151??0CMetaKey@@QEAA@PEAVCMetaInterface@@PEBGKK@Z
152; public: __cdecl CMetabasePath::CMetabasePath(class CMetabasePath const & __ptr64) __ptr64
153??0CMetabasePath@@QEAA@AEBV0@@Z
154; public: __cdecl CMetabasePath::CMetabasePath(int,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
155??0CMetabasePath@@QEAA@HPEBG000@Z
156; public: __cdecl CMetabasePath::CMetabasePath(unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
157??0CMetabasePath@@QEAA@PEBGK00@Z
158; protected: __cdecl CODLBox::CODLBox(void) __ptr64
159??0CODLBox@@IEAA@XZ
160; public: __cdecl CObListIter::CObListIter(class CObListPlus const & __ptr64) __ptr64
161??0CObListIter@@QEAA@AEBVCObListPlus@@@Z
162; public: __cdecl CObListPlus::CObListPlus(int) __ptr64
163??0CObListPlus@@QEAA@H@Z
164; protected: __cdecl CObjHelper::CObjHelper(void) __ptr64
165??0CObjHelper@@IEAA@XZ
166; public: __cdecl CObjHelper::CObjHelper(class CObjHelper const & __ptr64) __ptr64
167??0CObjHelper@@QEAA@AEBV0@@Z
168; public: __cdecl CObjectPlus::CObjectPlus(void) __ptr64
169??0CObjectPlus@@QEAA@XZ
170; public: __cdecl CRMCComboBox::CRMCComboBox(void) __ptr64
171??0CRMCComboBox@@QEAA@XZ
172; public: __cdecl CRMCListBox::CRMCListBox(void) __ptr64
173??0CRMCListBox@@QEAA@XZ
174; public: __cdecl CRMCListBoxDrawStruct::CRMCListBoxDrawStruct(class CDC * __ptr64,struct tagRECT * __ptr64,int,unsigned __int64,int,class CRMCListBoxResources const * __ptr64) __ptr64
175??0CRMCListBoxDrawStruct@@QEAA@PEAVCDC@@PEAUtagRECT@@H_KHPEBVCRMCListBoxResources@@@Z
176; public: __cdecl CRMCListBoxHeader::CRMCListBoxHeader(unsigned long) __ptr64
177??0CRMCListBoxHeader@@QEAA@K@Z
178; public: __cdecl CRMCListBoxResources::CRMCListBoxResources(int,int,unsigned long) __ptr64
179??0CRMCListBoxResources@@QEAA@HHK@Z
180; public: __cdecl CStrPassword::CStrPassword(class CStrPassword & __ptr64) __ptr64
181??0CStrPassword@@QEAA@AEAV0@@Z
182; public: __cdecl CStrPassword::CStrPassword(unsigned short * __ptr64) __ptr64
183??0CStrPassword@@QEAA@PEAG@Z
184; public: __cdecl CStrPassword::CStrPassword(unsigned short const * __ptr64) __ptr64
185??0CStrPassword@@QEAA@PEBG@Z
186; public: __cdecl CStrPassword::CStrPassword(void) __ptr64
187??0CStrPassword@@QEAA@XZ
188; public: __cdecl CStringListEx::CStringListEx(int) __ptr64
189??0CStringListEx@@QEAA@H@Z
190; public: __cdecl CUpButton::CUpButton(void) __ptr64
191??0CUpButton@@QEAA@XZ
192; protected: __cdecl CWamInterface::CWamInterface(class CWamInterface * __ptr64) __ptr64
193??0CWamInterface@@IEAA@PEAV0@@Z
194; protected: __cdecl CWamInterface::CWamInterface(class CComAuthInfo * __ptr64) __ptr64
195??0CWamInterface@@IEAA@PEAVCComAuthInfo@@@Z
196; public: __cdecl CWamInterface::CWamInterface(class CWamInterface & __ptr64) __ptr64
197??0CWamInterface@@QEAA@AEAV0@@Z
198; public: virtual __cdecl CAccessEntry::~CAccessEntry(void) __ptr64
199??1CAccessEntry@@UEAA@XZ
200; public: __cdecl CBlob::~CBlob(void) __ptr64
201??1CBlob@@QEAA@XZ
202; public: __cdecl CComAuthInfo::~CComAuthInfo(void) __ptr64
203??1CComAuthInfo@@QEAA@XZ
204; public: virtual __cdecl CConfirmDlg::~CConfirmDlg(void) __ptr64
205??1CConfirmDlg@@UEAA@XZ
206; public: __cdecl CDirBrowseDlg::~CDirBrowseDlg(void) __ptr64
207??1CDirBrowseDlg@@QEAA@XZ
208; public: virtual __cdecl CDownButton::~CDownButton(void) __ptr64
209??1CDownButton@@UEAA@XZ
210; public: virtual __cdecl CEmphasizedDialog::~CEmphasizedDialog(void) __ptr64
211??1CEmphasizedDialog@@UEAA@XZ
212; public: __cdecl CError::~CError(void) __ptr64
213??1CError@@QEAA@XZ
214; public: __cdecl CGetComputer::~CGetComputer(void) __ptr64
215??1CGetComputer@@QEAA@XZ
216; public: virtual __cdecl CGetUsers::~CGetUsers(void) __ptr64
217??1CGetUsers@@UEAA@XZ
218; public: virtual __cdecl CHeaderListBox::~CHeaderListBox(void) __ptr64
219??1CHeaderListBox@@UEAA@XZ
220; public: virtual __cdecl CIISAppPool::~CIISAppPool(void) __ptr64
221??1CIISAppPool@@UEAA@XZ
222; public: virtual __cdecl CIISApplication::~CIISApplication(void) __ptr64
223??1CIISApplication@@UEAA@XZ
224; public: __cdecl CIISInterface::~CIISInterface(void) __ptr64
225??1CIISInterface@@QEAA@XZ
226; public: virtual __cdecl CIISSvcControl::~CIISSvcControl(void) __ptr64
227??1CIISSvcControl@@UEAA@XZ
228; public: virtual __cdecl CIISWizardBookEnd::~CIISWizardBookEnd(void) __ptr64
229??1CIISWizardBookEnd@@UEAA@XZ
230; public: virtual __cdecl CIISWizardPage::~CIISWizardPage(void) __ptr64
231??1CIISWizardPage@@UEAA@XZ
232; public: virtual __cdecl CIISWizardSheet::~CIISWizardSheet(void) __ptr64
233??1CIISWizardSheet@@UEAA@XZ
234; public: __cdecl CILong::~CILong(void) __ptr64
235??1CILong@@QEAA@XZ
236; protected: __cdecl CINumber::~CINumber(void) __ptr64
237??1CINumber@@IEAA@XZ
238; public: virtual __cdecl CIPAccessDescriptor::~CIPAccessDescriptor(void) __ptr64
239??1CIPAccessDescriptor@@UEAA@XZ
240; public: virtual __cdecl CIPAddress::~CIPAddress(void) __ptr64
241??1CIPAddress@@UEAA@XZ
242; public: virtual __cdecl CInheritanceDlg::~CInheritanceDlg(void) __ptr64
243??1CInheritanceDlg@@UEAA@XZ
244; public: virtual __cdecl CMappedBitmapButton::~CMappedBitmapButton(void) __ptr64
245??1CMappedBitmapButton@@UEAA@XZ
246; public: virtual __cdecl CMetaBack::~CMetaBack(void) __ptr64
247??1CMetaBack@@UEAA@XZ
248; public: virtual __cdecl CMetaEnumerator::~CMetaEnumerator(void) __ptr64
249??1CMetaEnumerator@@UEAA@XZ
250; public: virtual __cdecl CMetaInterface::~CMetaInterface(void) __ptr64
251??1CMetaInterface@@UEAA@XZ
252; public: virtual __cdecl CMetaKey::~CMetaKey(void) __ptr64
253??1CMetaKey@@UEAA@XZ
254; public: __cdecl CMetabasePath::~CMetabasePath(void) __ptr64
255??1CMetabasePath@@QEAA@XZ
256; protected: __cdecl CODLBox::~CODLBox(void) __ptr64
257??1CODLBox@@IEAA@XZ
258; public: virtual __cdecl CObListIter::~CObListIter(void) __ptr64
259??1CObListIter@@UEAA@XZ
260; public: virtual __cdecl CObListPlus::~CObListPlus(void) __ptr64
261??1CObListPlus@@UEAA@XZ
262; public: virtual __cdecl CObjectPlus::~CObjectPlus(void) __ptr64
263??1CObjectPlus@@UEAA@XZ
264; public: virtual __cdecl CRMCComboBox::~CRMCComboBox(void) __ptr64
265??1CRMCComboBox@@UEAA@XZ
266; public: virtual __cdecl CRMCListBox::~CRMCListBox(void) __ptr64
267??1CRMCListBox@@UEAA@XZ
268; public: virtual __cdecl CRMCListBoxHeader::~CRMCListBoxHeader(void) __ptr64
269??1CRMCListBoxHeader@@UEAA@XZ
270; public: __cdecl CRMCListBoxResources::~CRMCListBoxResources(void) __ptr64
271??1CRMCListBoxResources@@QEAA@XZ
272; public: __cdecl CStrPassword::~CStrPassword(void) __ptr64
273??1CStrPassword@@QEAA@XZ
274; public: virtual __cdecl CStringListEx::~CStringListEx(void) __ptr64
275??1CStringListEx@@UEAA@XZ
276; public: virtual __cdecl CUpButton::~CUpButton(void) __ptr64
277??1CUpButton@@UEAA@XZ
278; public: virtual __cdecl CWamInterface::~CWamInterface(void) __ptr64
279??1CWamInterface@@UEAA@XZ
280; public: class CBlob & __ptr64 __cdecl CBlob::operator=(class CBlob const & __ptr64) __ptr64
281??4CBlob@@QEAAAEAV0@AEBV0@@Z
282; public: class CComAuthInfo & __ptr64 __cdecl CComAuthInfo::operator=(class CComAuthInfo & __ptr64) __ptr64
283??4CComAuthInfo@@QEAAAEAV0@AEAV0@@Z
284; public: class CComAuthInfo & __ptr64 __cdecl CComAuthInfo::operator=(class CComAuthInfo * __ptr64) __ptr64
285??4CComAuthInfo@@QEAAAEAV0@PEAV0@@Z
286; public: class CComAuthInfo & __ptr64 __cdecl CComAuthInfo::operator=(unsigned short const * __ptr64) __ptr64
287??4CComAuthInfo@@QEAAAEAV0@PEBG@Z
288; public: class CDirBrowseDlg & __ptr64 __cdecl CDirBrowseDlg::operator=(class CDirBrowseDlg const & __ptr64) __ptr64
289??4CDirBrowseDlg@@QEAAAEAV0@AEBV0@@Z
290; public: class CError const & __ptr64 __cdecl CError::operator=(class CError const & __ptr64) __ptr64
291??4CError@@QEAAAEBV0@AEBV0@@Z
292; public: class CError const & __ptr64 __cdecl CError::operator=(long) __ptr64
293??4CError@@QEAAAEBV0@J@Z
294; public: class CGetComputer & __ptr64 __cdecl CGetComputer::operator=(class CGetComputer const & __ptr64) __ptr64
295??4CGetComputer@@QEAAAEAV0@AEBV0@@Z
296; public: class CIISAppPool & __ptr64 __cdecl CIISAppPool::operator=(class CIISAppPool & __ptr64) __ptr64
297??4CIISAppPool@@QEAAAEAV0@AEAV0@@Z
298; public: class CIISApplication & __ptr64 __cdecl CIISApplication::operator=(class CIISApplication & __ptr64) __ptr64
299??4CIISApplication@@QEAAAEAV0@AEAV0@@Z
300; public: class CIISInterface & __ptr64 __cdecl CIISInterface::operator=(class CIISInterface & __ptr64) __ptr64
301??4CIISInterface@@QEAAAEAV0@AEAV0@@Z
302; public: class CIISSvcControl & __ptr64 __cdecl CIISSvcControl::operator=(class CIISSvcControl & __ptr64) __ptr64
303??4CIISSvcControl@@QEAAAEAV0@AEAV0@@Z
304; public: class CILong & __ptr64 __cdecl CILong::operator=(class CILong const & __ptr64) __ptr64
305??4CILong@@QEAAAEAV0@AEBV0@@Z
306; public: class CILong & __ptr64 __cdecl CILong::operator=(long) __ptr64
307??4CILong@@QEAAAEAV0@J@Z
308; public: class CILong & __ptr64 __cdecl CILong::operator=(unsigned short const * __ptr64) __ptr64
309??4CILong@@QEAAAEAV0@PEBG@Z
310; public: class CINumber & __ptr64 __cdecl CINumber::operator=(class CINumber const & __ptr64) __ptr64
311??4CINumber@@QEAAAEAV0@AEBV0@@Z
312; public: class CIPAddress const & __ptr64 __cdecl CIPAddress::operator=(class CIPAddress const & __ptr64) __ptr64
313??4CIPAddress@@QEAAAEBV0@AEBV0@@Z
314; public: class CIPAddress const & __ptr64 __cdecl CIPAddress::operator=(class CString const & __ptr64) __ptr64
315??4CIPAddress@@QEAAAEBV0@AEBVCString@@@Z
316; public: class CIPAddress const & __ptr64 __cdecl CIPAddress::operator=(unsigned long) __ptr64
317??4CIPAddress@@QEAAAEBV0@K@Z
318; public: class CIPAddress const & __ptr64 __cdecl CIPAddress::operator=(unsigned short const * __ptr64) __ptr64
319??4CIPAddress@@QEAAAEBV0@PEBG@Z
320; public: class CMetaBack & __ptr64 __cdecl CMetaBack::operator=(class CMetaBack & __ptr64) __ptr64
321??4CMetaBack@@QEAAAEAV0@AEAV0@@Z
322; public: class CMetaEnumerator & __ptr64 __cdecl CMetaEnumerator::operator=(class CMetaEnumerator & __ptr64) __ptr64
323??4CMetaEnumerator@@QEAAAEAV0@AEAV0@@Z
324; public: class CMetaInterface & __ptr64 __cdecl CMetaInterface::operator=(class CMetaInterface & __ptr64) __ptr64
325??4CMetaInterface@@QEAAAEAV0@AEAV0@@Z
326; public: class CMetaKey & __ptr64 __cdecl CMetaKey::operator=(class CMetaKey & __ptr64) __ptr64
327??4CMetaKey@@QEAAAEAV0@AEAV0@@Z
328; public: class CMetabasePath & __ptr64 __cdecl CMetabasePath::operator=(class CMetabasePath const & __ptr64) __ptr64
329??4CMetabasePath@@QEAAAEAV0@AEBV0@@Z
330; public: class CObjHelper & __ptr64 __cdecl CObjHelper::operator=(class CObjHelper const & __ptr64) __ptr64
331??4CObjHelper@@QEAAAEAV0@AEBV0@@Z
332; public: class CRMCListBoxDrawStruct & __ptr64 __cdecl CRMCListBoxDrawStruct::operator=(class CRMCListBoxDrawStruct const & __ptr64) __ptr64
333??4CRMCListBoxDrawStruct@@QEAAAEAV0@AEBV0@@Z
334; public: class CStrPassword const & __ptr64 __cdecl CStrPassword::operator=(class CStrPassword & __ptr64) __ptr64
335??4CStrPassword@@QEAAAEBV0@AEAV0@@Z
336; public: class CStrPassword const & __ptr64 __cdecl CStrPassword::operator=(unsigned short const * __ptr64) __ptr64
337??4CStrPassword@@QEAAAEBV0@PEBG@Z
338; public: class CStringListEx & __ptr64 __cdecl CStringListEx::operator=(class CStringListEx const & __ptr64) __ptr64
339??4CStringListEx@@QEAAAEAV0@AEBV0@@Z
340; public: class CStringListEx & __ptr64 __cdecl CStringListEx::operator=(class CStringList const & __ptr64) __ptr64
341??4CStringListEx@@QEAAAEAV0@AEBVCStringList@@@Z
342; public: class CWamInterface & __ptr64 __cdecl CWamInterface::operator=(class CWamInterface & __ptr64) __ptr64
343??4CWamInterface@@QEAAAEAV0@AEAV0@@Z
344; public: int __cdecl CAccessEntry::operator==(class CAccessEntry const & __ptr64)const __ptr64
345??8CAccessEntry@@QEBAHAEBV0@@Z
346; public: int __cdecl CAccessEntry::operator==(void * __ptr64 const)const __ptr64
347??8CAccessEntry@@QEBAHQEAX@Z
348; public: int __cdecl CBlob::operator==(class CBlob const & __ptr64)const __ptr64
349??8CBlob@@QEBAHAEBV0@@Z
350; public: int const __cdecl CError::operator==(class CError & __ptr64) __ptr64
351??8CError@@QEAA?BHAEAV0@@Z
352; public: int const __cdecl CError::operator==(long) __ptr64
353??8CError@@QEAA?BHJ@Z
354; public: int __cdecl CILong::operator==(long) __ptr64
355??8CILong@@QEAAHJ@Z
356; public: int __cdecl CIPAccessDescriptor::operator==(class CIPAccessDescriptor const & __ptr64)const __ptr64
357??8CIPAccessDescriptor@@QEBAHAEBV0@@Z
358; public: int __cdecl CIPAddress::operator==(class CIPAddress const & __ptr64)const __ptr64
359??8CIPAddress@@QEBAHAEBV0@@Z
360; public: int __cdecl CIPAddress::operator==(unsigned long)const __ptr64
361??8CIPAddress@@QEBAHK@Z
362; public: bool __cdecl CStrPassword::operator==(class CStrPassword & __ptr64) __ptr64
363??8CStrPassword@@QEAA_NAEAV0@@Z
364; public: int __cdecl CStringListEx::operator==(class CStringList const & __ptr64) __ptr64
365??8CStringListEx@@QEAAHAEBVCStringList@@@Z
366; public: int __cdecl CBlob::operator!=(class CBlob const & __ptr64)const __ptr64
367??9CBlob@@QEBAHAEBV0@@Z
368; public: int const __cdecl CError::operator!=(class CError & __ptr64) __ptr64
369??9CError@@QEAA?BHAEAV0@@Z
370; public: int const __cdecl CError::operator!=(long) __ptr64
371??9CError@@QEAA?BHJ@Z
372; public: int __cdecl CILong::operator!=(class CILong & __ptr64) __ptr64
373??9CILong@@QEAAHAEAV0@@Z
374; public: int __cdecl CIPAddress::operator!=(class CIPAddress const & __ptr64)const __ptr64
375??9CIPAddress@@QEBAHAEBV0@@Z
376; public: int __cdecl CIPAddress::operator!=(unsigned long)const __ptr64
377??9CIPAddress@@QEBAHK@Z
378; public: bool __cdecl CStrPassword::operator!=(class CStrPassword & __ptr64) __ptr64
379??9CStrPassword@@QEAA_NAEAV0@@Z
380; public: int __cdecl CStringListEx::operator!=(class CStringList const & __ptr64) __ptr64
381??9CStringListEx@@QEAAHAEBVCStringList@@@Z
382; public: __cdecl CComAuthInfo::operator unsigned short * __ptr64(void) __ptr64
383??BCComAuthInfo@@QEAAPEAGXZ
384; public: __cdecl CComAuthInfo::operator class CComAuthInfo * __ptr64(void) __ptr64
385??BCComAuthInfo@@QEAAPEAV0@XZ
386; public: __cdecl CError::operator unsigned short * __ptr64(void) __ptr64
387??BCError@@QEAAPEAGXZ
388; public: __cdecl CError::operator unsigned short const * __ptr64(void) __ptr64
389??BCError@@QEAAPEBGXZ
390; public: __cdecl CError::operator int const (void)const __ptr64
391??BCError@@QEBA?BHXZ
392; public: __cdecl CError::operator long const (void)const __ptr64
393??BCError@@QEBA?BJXZ
394; public: __cdecl CError::operator unsigned long const (void)const __ptr64
395??BCError@@QEBA?BKXZ
396; public: __cdecl CIISInterface::operator int(void)const __ptr64
397??BCIISInterface@@QEBAHXZ
398; public: __cdecl CIISInterface::operator long(void)const __ptr64
399??BCIISInterface@@QEBAJXZ
400; public: __cdecl CILong::operator long const (void)const __ptr64
401??BCILong@@QEBA?BJXZ
402; public: __cdecl CILong::operator unsigned short const * __ptr64(void)const __ptr64
403??BCILong@@QEBAPEBGXZ
404; public: __cdecl CIPAddress::operator class CString(void)const __ptr64
405??BCIPAddress@@QEBA?AVCString@@XZ
406; public: __cdecl CIPAddress::operator unsigned long const (void)const __ptr64
407??BCIPAddress@@QEBA?BKXZ
408; public: __cdecl CIPAddress::operator unsigned short const * __ptr64(void)const __ptr64
409??BCIPAddress@@QEBAPEBGXZ
410; public: __cdecl CMetaKey::operator int(void)const __ptr64
411??BCMetaKey@@QEBAHXZ
412; public: __cdecl CMetaKey::operator unsigned long(void)const __ptr64
413??BCMetaKey@@QEBAKXZ
414; public: __cdecl CMetaKey::operator unsigned short const * __ptr64(void)const __ptr64
415??BCMetaKey@@QEBAPEBGXZ
416; public: __cdecl CMetabasePath::operator unsigned short const * __ptr64(void)const __ptr64
417??BCMetabasePath@@QEBAPEBGXZ
418; public: __cdecl CObjHelper::operator int(void) __ptr64
419??BCObjHelper@@QEAAHXZ
420; public: __cdecl CStrPassword::operator class CString(void) __ptr64
421??BCStrPassword@@QEAA?AVCString@@XZ
422; public: class CILong & __ptr64 __cdecl CILong::operator*=(class CILong const & __ptr64) __ptr64
423??XCILong@@QEAAAEAV0@AEBV0@@Z
424; public: class CILong & __ptr64 __cdecl CILong::operator*=(long) __ptr64
425??XCILong@@QEAAAEAV0@J@Z
426; public: class CILong & __ptr64 __cdecl CILong::operator*=(unsigned short const * __ptr64 const) __ptr64
427??XCILong@@QEAAAEAV0@QEBG@Z
428; public: class CILong & __ptr64 __cdecl CILong::operator+=(class CILong const & __ptr64) __ptr64
429??YCILong@@QEAAAEAV0@AEBV0@@Z
430; public: class CILong & __ptr64 __cdecl CILong::operator+=(long) __ptr64
431??YCILong@@QEAAAEAV0@J@Z
432; public: class CILong & __ptr64 __cdecl CILong::operator+=(unsigned short const * __ptr64 const) __ptr64
433??YCILong@@QEAAAEAV0@QEBG@Z
434; public: class CILong & __ptr64 __cdecl CILong::operator-=(class CILong const & __ptr64) __ptr64
435??ZCILong@@QEAAAEAV0@AEBV0@@Z
436; public: class CILong & __ptr64 __cdecl CILong::operator-=(long) __ptr64
437??ZCILong@@QEAAAEAV0@J@Z
438; public: class CILong & __ptr64 __cdecl CILong::operator-=(unsigned short const * __ptr64 const) __ptr64
439??ZCILong@@QEAAAEAV0@QEBG@Z
440; public: class CILong & __ptr64 __cdecl CILong::operator/=(class CILong const & __ptr64) __ptr64
441??_0CILong@@QEAAAEAV0@AEBV0@@Z
442; public: class CILong & __ptr64 __cdecl CILong::operator/=(long) __ptr64
443??_0CILong@@QEAAAEAV0@J@Z
444; public: class CILong & __ptr64 __cdecl CILong::operator/=(unsigned short const * __ptr64 const) __ptr64
445??_0CILong@@QEAAAEAV0@QEBG@Z
446; const CAccessEntry::`vftable'{for `CObjHelper'}
447??_7CAccessEntry@@6BCObjHelper@@@
448; const CAccessEntry::`vftable'{for `CObject'}
449??_7CAccessEntry@@6BCObject@@@
450; const CConfirmDlg::`vftable'
451??_7CConfirmDlg@@6B@
452; const CDirBrowseDlg::`vftable'
453??_7CDirBrowseDlg@@6B@
454; const CDownButton::`vftable'
455??_7CDownButton@@6B@
456; const CEmphasizedDialog::`vftable'
457??_7CEmphasizedDialog@@6B@
458; const CGetUsers::`vftable'
459??_7CGetUsers@@6B@
460; const CHeaderListBox::`vftable'{for `CListBox'}
461??_7CHeaderListBox@@6BCListBox@@@
462; const CHeaderListBox::`vftable'{for `CODLBox'}
463??_7CHeaderListBox@@6BCODLBox@@@
464; const CIISAppPool::`vftable'{for `CMetaKey'}
465??_7CIISAppPool@@6BCMetaKey@@@
466; const CIISAppPool::`vftable'{for `CWamInterface'}
467??_7CIISAppPool@@6BCWamInterface@@@
468; const CIISApplication::`vftable'{for `CMetaKey'}
469??_7CIISApplication@@6BCMetaKey@@@
470; const CIISApplication::`vftable'{for `CWamInterface'}
471??_7CIISApplication@@6BCWamInterface@@@
472; const CIISInterface::`vftable'
473??_7CIISInterface@@6B@
474; const CIISSvcControl::`vftable'
475??_7CIISSvcControl@@6B@
476; const CIISWizardBookEnd::`vftable'
477??_7CIISWizardBookEnd@@6B@
478; const CIISWizardPage::`vftable'
479??_7CIISWizardPage@@6B@
480; const CIISWizardSheet::`vftable'
481??_7CIISWizardSheet@@6B@
482; const CIPAccessDescriptor::`vftable'{for `CObjHelper'}
483??_7CIPAccessDescriptor@@6BCObjHelper@@@
484; const CIPAccessDescriptor::`vftable'{for `CObject'}
485??_7CIPAccessDescriptor@@6BCObject@@@
486; const CIPAddress::`vftable'{for `CObjHelper'}
487??_7CIPAddress@@6BCObjHelper@@@
488; const CIPAddress::`vftable'{for `CObject'}
489??_7CIPAddress@@6BCObject@@@
490; const CInheritanceDlg::`vftable'
491??_7CInheritanceDlg@@6B@
492; const CMappedBitmapButton::`vftable'
493??_7CMappedBitmapButton@@6B@
494; const CMetaBack::`vftable'{for `CMetaInterface'}
495??_7CMetaBack@@6BCMetaInterface@@@
496; const CMetaBack::`vftable'{for `CWamInterface'}
497??_7CMetaBack@@6BCWamInterface@@@
498; const CMetaEnumerator::`vftable'
499??_7CMetaEnumerator@@6B@
500; const CMetaInterface::`vftable'
501??_7CMetaInterface@@6B@
502; const CMetaKey::`vftable'
503??_7CMetaKey@@6B@
504; const CODLBox::`vftable'
505??_7CODLBox@@6B@
506; const CObListIter::`vftable'{for `CObjHelper'}
507??_7CObListIter@@6BCObjHelper@@@
508; const CObListIter::`vftable'{for `CObject'}
509??_7CObListIter@@6BCObject@@@
510; const CObListPlus::`vftable'{for `CObList'}
511??_7CObListPlus@@6BCObList@@@
512; const CObListPlus::`vftable'{for `CObjHelper'}
513??_7CObListPlus@@6BCObjHelper@@@
514; const CObjHelper::`vftable'
515??_7CObjHelper@@6B@
516; const CObjectPlus::`vftable'{for `CObjHelper'}
517??_7CObjectPlus@@6BCObjHelper@@@
518; const CObjectPlus::`vftable'{for `CObject'}
519??_7CObjectPlus@@6BCObject@@@
520; const CRMCComboBox::`vftable'{for `CComboBox'}
521??_7CRMCComboBox@@6BCComboBox@@@
522; const CRMCComboBox::`vftable'{for `CODLBox'}
523??_7CRMCComboBox@@6BCODLBox@@@
524; const CRMCListBox::`vftable'{for `CListBox'}
525??_7CRMCListBox@@6BCListBox@@@
526; const CRMCListBox::`vftable'{for `CODLBox'}
527??_7CRMCListBox@@6BCODLBox@@@
528; const CRMCListBoxHeader::`vftable'
529??_7CRMCListBoxHeader@@6B@
530; const CStringListEx::`vftable'
531??_7CStringListEx@@6B@
532; const CUpButton::`vftable'
533??_7CUpButton@@6B@
534; const CWamInterface::`vftable'
535??_7CWamInterface@@6B@
536; public: void __cdecl CComAuthInfo::`default constructor closure'(void) __ptr64
537??_FCComAuthInfo@@QEAAXXZ
538; public: void __cdecl CConfirmDlg::`default constructor closure'(void) __ptr64
539??_FCConfirmDlg@@QEAAXXZ
540; public: void __cdecl CDirBrowseDlg::`default constructor closure'(void) __ptr64
541??_FCDirBrowseDlg@@QEAAXXZ
542; public: void __cdecl CHeaderListBox::`default constructor closure'(void) __ptr64
543??_FCHeaderListBox@@QEAAXXZ
544; public: void __cdecl CIISWizardBookEnd::`default constructor closure'(void) __ptr64
545??_FCIISWizardBookEnd@@QEAAXXZ
546; public: void __cdecl CIISWizardPage::`default constructor closure'(void) __ptr64
547??_FCIISWizardPage@@QEAAXXZ
548; public: void __cdecl CIISWizardSheet::`default constructor closure'(void) __ptr64
549??_FCIISWizardSheet@@QEAAXXZ
550; public: void __cdecl CIPAccessDescriptor::`default constructor closure'(void) __ptr64
551??_FCIPAccessDescriptor@@QEAAXXZ
552; public: void __cdecl CMetabasePath::`default constructor closure'(void) __ptr64
553??_FCMetabasePath@@QEAAXXZ
554; public: void __cdecl CObListPlus::`default constructor closure'(void) __ptr64
555??_FCObListPlus@@QEAAXXZ
556; public: void __cdecl CRMCListBoxHeader::`default constructor closure'(void) __ptr64
557??_FCRMCListBoxHeader@@QEAAXXZ
558; public: void __cdecl CStringListEx::`default constructor closure'(void) __ptr64
559??_FCStringListEx@@QEAAXXZ
560; void __cdecl ActivateControl(class CWnd & __ptr64,int)
561?ActivateControl@@YAXAEAVCWnd@@H@Z
562; protected: long __cdecl CMetaInterface::AddKey(unsigned long,unsigned short const * __ptr64) __ptr64
563?AddKey@CMetaInterface@@IEAAJKPEBG@Z
564; public: long __cdecl CMetaKey::AddKey(unsigned short const * __ptr64) __ptr64
565?AddKey@CMetaKey@@QEAAJPEBG@Z
566; public: unsigned int __cdecl CError::AddOverride(long,unsigned int) __ptr64
567?AddOverride@CError@@QEAAIJI@Z
568; public: void __cdecl CAccessEntry::AddPermissions(unsigned long) __ptr64
569?AddPermissions@CAccessEntry@@QEAAXK@Z
570; public: int __cdecl CODLBox::AddTab(unsigned int) __ptr64
571?AddTab@CODLBox@@QEAAHI@Z
572; public: int __cdecl CODLBox::AddTabFromHeaders(class CWnd & __ptr64,class CWnd & __ptr64) __ptr64
573?AddTabFromHeaders@CODLBox@@QEAAHAEAVCWnd@@0@Z
574; public: int __cdecl CODLBox::AddTabFromHeaders(unsigned int,unsigned int) __ptr64
575?AddTabFromHeaders@CODLBox@@QEAAHII@Z
576; char * __ptr64 __cdecl AllocAnsiString(unsigned short const * __ptr64)
577?AllocAnsiString@@YAPEADPEBG@Z
578; unsigned short * __ptr64 __cdecl AllocString(unsigned short const * __ptr64,int)
579?AllocString@@YAPEAGPEBGH@Z
580; protected: static int __cdecl CINumber::Allocate(void)
581?Allocate@CINumber@@KAHXZ
582; protected: static int __cdecl CError::AllocateStatics(void)
583?AllocateStatics@CError@@KAHXZ
584; protected: long __cdecl CWamInterface::AppCreate(unsigned short const * __ptr64,unsigned long) __ptr64
585?AppCreate@CWamInterface@@IEAAJPEBGK@Z
586; protected: long __cdecl CWamInterface::AppDelete(unsigned short const * __ptr64,int) __ptr64
587?AppDelete@CWamInterface@@IEAAJPEBGH@Z
588; protected: long __cdecl CWamInterface::AppDeleteRecoverable(unsigned short const * __ptr64,int) __ptr64
589?AppDeleteRecoverable@CWamInterface@@IEAAJPEBGH@Z
590; protected: long __cdecl CWamInterface::AppGetStatus(unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
591?AppGetStatus@CWamInterface@@IEAAJPEBGPEAK@Z
592; protected: long __cdecl CWamInterface::AppRecover(unsigned short const * __ptr64,int) __ptr64
593?AppRecover@CWamInterface@@IEAAJPEBGH@Z
594; protected: long __cdecl CWamInterface::AppUnLoad(unsigned short const * __ptr64,int) __ptr64
595?AppUnLoad@CWamInterface@@IEAAJPEBGH@Z
596; protected: void __cdecl CMetabasePath::AppendPath(unsigned long) __ptr64
597?AppendPath@CMetabasePath@@IEAAXK@Z
598; protected: void __cdecl CMetabasePath::AppendPath(unsigned short const * __ptr64) __ptr64
599?AppendPath@CMetabasePath@@IEAAXPEBG@Z
600; class CString __cdecl AppendToDevicePath(class CString,unsigned short const * __ptr64)
601?AppendToDevicePath@@YA?AVCString@@V1@PEBG@Z
602; void __cdecl ApplyFontToControls(class CWnd * __ptr64,class CFont * __ptr64,unsigned int,unsigned int)
603?ApplyFontToControls@@YAXPEAVCWnd@@PEAVCFont@@II@Z
604; public: long __cdecl CComAuthInfo::ApplyProxyBlanket(struct IUnknown * __ptr64) __ptr64
605?ApplyProxyBlanket@CComAuthInfo@@QEAAJPEAUIUnknown@@@Z
606; public: long __cdecl CComAuthInfo::ApplyProxyBlanket(struct IUnknown * __ptr64,unsigned long) __ptr64
607?ApplyProxyBlanket@CComAuthInfo@@QEAAJPEAUIUnknown@@K@Z
608; protected: virtual long __cdecl CIISSvcControl::ApplyProxyBlanket(void) __ptr64
609?ApplyProxyBlanket@CIISSvcControl@@MEAAJXZ
610; protected: virtual long __cdecl CMetaBack::ApplyProxyBlanket(void) __ptr64
611?ApplyProxyBlanket@CMetaBack@@MEAAJXZ
612; protected: virtual long __cdecl CMetaInterface::ApplyProxyBlanket(void) __ptr64
613?ApplyProxyBlanket@CMetaInterface@@MEAAJXZ
614; protected: virtual long __cdecl CWamInterface::ApplyProxyBlanket(void) __ptr64
615?ApplyProxyBlanket@CWamInterface@@MEAAJXZ
616; protected: static int __cdecl CError::AreStaticsAllocated(void)
617?AreStaticsAllocated@CError@@KAHXZ
618; public: void __cdecl CODLBox::AttachResources(class CRMCListBoxResources const * __ptr64) __ptr64
619?AttachResources@CODLBox@@QEAAXPEBVCRMCListBoxResources@@@Z
620; protected: void __cdecl CODLBox::AttachWindow(class CWnd * __ptr64) __ptr64
621?AttachWindow@CODLBox@@IEAAXPEAVCWnd@@@Z
622; public: long __cdecl CMetaBack::Backup(unsigned short const * __ptr64) __ptr64
623?Backup@CMetaBack@@QEAAJPEBG@Z
624; protected: long __cdecl CMetaInterface::Backup(unsigned short const * __ptr64,unsigned long,unsigned long) __ptr64
625?Backup@CMetaInterface@@IEAAJPEBGKK@Z
626; public: long __cdecl CMetaBack::BackupWithPassword(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
627?BackupWithPassword@CMetaBack@@QEAAJPEBG0@Z
628; protected: long __cdecl CMetaInterface::BackupWithPassword(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned short const * __ptr64) __ptr64
629?BackupWithPassword@CMetaInterface@@IEAAJPEBGKK0@Z
630; public: int __cdecl CRMCListBoxResources::BitmapHeight(void)const __ptr64
631?BitmapHeight@CRMCListBoxResources@@QEBAHXZ
632; public: int __cdecl CRMCListBoxResources::BitmapWidth(void)const __ptr64
633?BitmapWidth@CRMCListBoxResources@@QEBAHXZ
634; int __cdecl BuildAclBlob(class CObListPlus & __ptr64,class CBlob & __ptr64)
635?BuildAclBlob@@YAHAEAVCObListPlus@@AEAVCBlob@@@Z
636; unsigned long __cdecl BuildAclOblistFromBlob(class CBlob & __ptr64,class CObListPlus & __ptr64)
637?BuildAclOblistFromBlob@@YAKAEAVCBlob@@AEAVCObListPlus@@@Z
638; public: static double __cdecl CINumber::BuildFloat(long,long)
639?BuildFloat@CINumber@@SANJJ@Z
640; void __cdecl BuildIplBlob(class CObListPlus & __ptr64,int,class CBlob & __ptr64)
641?BuildIplBlob@@YAXAEAVCObListPlus@@HAEAVCBlob@@@Z
642; unsigned long __cdecl BuildIplOblistFromBlob(class CBlob & __ptr64,class CObListPlus & __ptr64,int & __ptr64)
643?BuildIplOblistFromBlob@@YAKAEAVCBlob@@AEAVCObListPlus@@AEAH@Z
644; protected: void __cdecl CMetabasePath::BuildMetaPath(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
645?BuildMetaPath@CMetabasePath@@IEAAXPEBG000@Z
646; protected: void __cdecl CMetabasePath::BuildMetaPath(unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
647?BuildMetaPath@CMetabasePath@@IEAAXPEBGK00@Z
648; int __cdecl CStringFindNoCase(class CString const & __ptr64,unsigned short const * __ptr64)
649?CStringFindNoCase@@YAHAEBVCString@@PEBG@Z
650; protected: void __cdecl CODLBox::CalculateTextHeight(class CFont * __ptr64) __ptr64
651?CalculateTextHeight@CODLBox@@IEAAXPEAVCFont@@@Z
652; public: int __cdecl CODLBox::ChangeFont(class CFont * __ptr64) __ptr64
653?ChangeFont@CODLBox@@QEAAHPEAVCFont@@@Z
654; public: virtual long __cdecl CIISInterface::ChangeProxyBlanket(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
655?ChangeProxyBlanket@CIISInterface@@UEAAJPEBG0@Z
656; public: long __cdecl CMetaKey::CheckDescendants(unsigned long,class CComAuthInfo * __ptr64,unsigned short const * __ptr64) __ptr64
657?CheckDescendants@CMetaKey@@QEAAJKPEAVCComAuthInfo@@PEBG@Z
658; protected: class CString & __ptr64 __cdecl CInheritanceDlg::CleanDescendantPath(class CString & __ptr64) __ptr64
659?CleanDescendantPath@CInheritanceDlg@@IEAAAEAVCString@@AEAV2@@Z
660; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::CleanMetaPath(class CString & __ptr64)
661?CleanMetaPath@CMetabasePath@@SAPEBGAEAVCString@@@Z
662; public: void __cdecl CBlob::CleanUp(void) __ptr64
663?CleanUp@CBlob@@QEAAXXZ
664; private: void __cdecl CStrPassword::ClearPasswordBuffers(void) __ptr64
665?ClearPasswordBuffers@CStrPassword@@AEAAXXZ
666; public: long __cdecl CMetaKey::Close(void) __ptr64
667?Close@CMetaKey@@QEAAJXZ
668; protected: long __cdecl CMetaInterface::CloseKey(unsigned long) __ptr64
669?CloseKey@CMetaInterface@@IEAAJK@Z
670; public: unsigned long __cdecl CRMCListBoxResources::ColorHighlight(void)const __ptr64
671?ColorHighlight@CRMCListBoxResources@@QEBAKXZ
672; public: unsigned long __cdecl CRMCListBoxResources::ColorHighlightText(void)const __ptr64
673?ColorHighlightText@CRMCListBoxResources@@QEBAKXZ
674; public: unsigned long __cdecl CRMCListBoxResources::ColorWindow(void)const __ptr64
675?ColorWindow@CRMCListBoxResources@@QEBAKXZ
676; public: unsigned long __cdecl CRMCListBoxResources::ColorWindowText(void)const __ptr64
677?ColorWindowText@CRMCListBoxResources@@QEBAKXZ
678; protected: int __cdecl CODLBox::ColumnText(class CRMCListBoxDrawStruct & __ptr64,int,int,unsigned short const * __ptr64) __ptr64
679?ColumnText@CODLBox@@IEAAHAEAVCRMCListBoxDrawStruct@@HHPEBG@Z
680; protected: static int __cdecl CODLBox::ColumnText(class CDC * __ptr64,int,int,int,int,unsigned short const * __ptr64)
681?ColumnText@CODLBox@@KAHPEAVCDC@@HHHHPEBG@Z
682; protected: void __cdecl CIISApplication::CommonConstruct(void) __ptr64
683?CommonConstruct@CIISApplication@@IEAAXXZ
684; public: virtual int __cdecl CObjectPlus::Compare(class CObjectPlus const * __ptr64)const __ptr64
685?Compare@CObjectPlus@@UEBAHPEBV1@@Z
686; public: int __cdecl CStrPassword::Compare(class CStrPassword & __ptr64)const __ptr64
687?Compare@CStrPassword@@QEBAHAEAV1@@Z
688; public: int __cdecl CStrPassword::Compare(class CString & __ptr64)const __ptr64
689?Compare@CStrPassword@@QEBAHAEAVCString@@@Z
690; public: int __cdecl CStrPassword::Compare(unsigned short const * __ptr64)const __ptr64
691?Compare@CStrPassword@@QEBAHPEBG@Z
692; public: int __cdecl CIPAddress::CompareItem(class CIPAddress const & __ptr64)const __ptr64
693?CompareItem@CIPAddress@@QEBAHAEBV1@@Z
694; protected: void __cdecl CODLBox::ComputeMargins(class CRMCListBoxDrawStruct & __ptr64,int,int & __ptr64,int & __ptr64) __ptr64
695?ComputeMargins@CODLBox@@IEAAXAEAVCRMCListBoxDrawStruct@@HAEAH1@Z
696; protected: class CError const & __ptr64 __cdecl CError::Construct(class CError const & __ptr64) __ptr64
697?Construct@CError@@IEAAAEBV1@AEBV1@@Z
698; protected: class CError const & __ptr64 __cdecl CError::Construct(long) __ptr64
699?Construct@CError@@IEAAAEBV1@J@Z
700; unsigned long __cdecl ConvertDoubleNullListToStringList(unsigned short const * __ptr64,class CStringList & __ptr64,int)
701?ConvertDoubleNullListToStringList@@YAKPEBGAEAVCStringList@@H@Z
702; public: static unsigned short const * __ptr64 __cdecl CINumber::ConvertFloatToString(double,int,class CString & __ptr64)
703?ConvertFloatToString@CINumber@@SAPEBGNHAEAVCString@@@Z
704; public: static unsigned short const * __ptr64 __cdecl CINumber::ConvertLongToString(long,class CString & __ptr64)
705?ConvertLongToString@CINumber@@SAPEBGJAEAVCString@@@Z
706; int __cdecl ConvertSepLineToStringList(unsigned short const * __ptr64,class CStringList & __ptr64,unsigned short const * __ptr64)
707?ConvertSepLineToStringList@@YAHPEBGAEAVCStringList@@0@Z
708; unsigned long __cdecl ConvertStringListToDoubleNullList(class CStringList & __ptr64,unsigned long & __ptr64,unsigned short * __ptr64 & __ptr64)
709?ConvertStringListToDoubleNullList@@YAKAEAVCStringList@@AEAKAEAPEAG@Z
710; unsigned short const * __ptr64 __cdecl ConvertStringListToSepLine(class CStringList & __ptr64,class CString & __ptr64,unsigned short const * __ptr64)
711?ConvertStringListToSepLine@@YAPEBGAEAVCStringList@@AEAVCString@@PEBG@Z
712; public: static int __cdecl CINumber::ConvertStringToFloat(unsigned short const * __ptr64,double & __ptr64)
713?ConvertStringToFloat@CINumber@@SAHPEBGAEAN@Z
714; public: static int __cdecl CINumber::ConvertStringToLong(unsigned short const * __ptr64,long & __ptr64)
715?ConvertStringToLong@CINumber@@SAHPEBGAEAJ@Z
716; public: long __cdecl CMetaKey::ConvertToParentPath(int) __ptr64
717?ConvertToParentPath@CMetaKey@@QEAAJH@Z
718; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::ConvertToParentPath(class CString & __ptr64)
719?ConvertToParentPath@CMetabasePath@@SAPEBGAEAVCString@@@Z
720; protected: long __cdecl CMetaInterface::CopyData(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,int) __ptr64
721?CopyData@CMetaInterface@@IEAAJKPEBGK0KKKH@Z
722; protected: long __cdecl CMetaInterface::CopyKey(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,int,int) __ptr64
723?CopyKey@CMetaInterface@@IEAAJKPEBGK0HH@Z
724; public: void __cdecl CStrPassword::CopyTo(class CStrPassword & __ptr64) __ptr64
725?CopyTo@CStrPassword@@QEAAXAEAV1@@Z
726; public: void __cdecl CStrPassword::CopyTo(class CString & __ptr64) __ptr64
727?CopyTo@CStrPassword@@QEAAXAEAVCString@@@Z
728; public: long __cdecl CIISAppPool::Create(unsigned short const * __ptr64) __ptr64
729?Create@CIISAppPool@@QEAAJPEBG@Z
730; public: long __cdecl CIISApplication::Create(unsigned short const * __ptr64,unsigned long) __ptr64
731?Create@CIISApplication@@QEAAJPEBGK@Z
732; protected: long __cdecl CIISInterface::Create(int,struct _GUID const * __ptr64 const,struct _GUID const * __ptr64 const,int * __ptr64,struct IUnknown * __ptr64 * __ptr64) __ptr64
733?Create@CIISInterface@@IEAAJHQEBU_GUID@@0PEAHPEAPEAUIUnknown@@@Z
734; protected: long __cdecl CIISSvcControl::Create(void) __ptr64
735?Create@CIISSvcControl@@IEAAJXZ
736; protected: long __cdecl CMetaInterface::Create(void) __ptr64
737?Create@CMetaInterface@@IEAAJXZ
738; public: int __cdecl CRMCListBoxHeader::Create(unsigned long,struct tagRECT const & __ptr64,class CWnd * __ptr64,class CHeaderListBox * __ptr64,unsigned int) __ptr64
739?Create@CRMCListBoxHeader@@QEAAHKAEBUtagRECT@@PEAVCWnd@@PEAVCHeaderListBox@@I@Z
740; protected: long __cdecl CWamInterface::Create(void) __ptr64
741?Create@CWamInterface@@IEAAJXZ
742; protected: long __cdecl CWamInterface::CreateApplication(unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,int) __ptr64
743?CreateApplication@CWamInterface@@IEAAJPEBGK0H@Z
744; protected: long __cdecl CWamInterface::CreateApplicationPool(unsigned short const * __ptr64) __ptr64
745?CreateApplicationPool@CWamInterface@@IEAAJPEBG@Z
746; public: static class CObject * __ptr64 __cdecl CEmphasizedDialog::CreateObject(void)
747?CreateObject@CEmphasizedDialog@@SAPEAVCObject@@XZ
748; public: static class CObject * __ptr64 __cdecl CIISWizardBookEnd::CreateObject(void)
749?CreateObject@CIISWizardBookEnd@@SAPEAVCObject@@XZ
750; public: static class CObject * __ptr64 __cdecl CIISWizardPage::CreateObject(void)
751?CreateObject@CIISWizardPage@@SAPEAVCObject@@XZ
752; public: static class CObject * __ptr64 __cdecl CIISWizardSheet::CreateObject(void)
753?CreateObject@CIISWizardSheet@@SAPEAVCObject@@XZ
754; public: long __cdecl CMetaKey::CreatePathFromFailedOpen(void) __ptr64
755?CreatePathFromFailedOpen@CMetaKey@@QEAAJXZ
756; public: long __cdecl CIISApplication::CreatePooled(unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,int) __ptr64
757?CreatePooled@CIISApplication@@QEAAJPEBGK0H@Z
758; public: struct _COSERVERINFO * __ptr64 __cdecl CComAuthInfo::CreateServerInfoStruct(unsigned long)const __ptr64
759?CreateServerInfoStruct@CComAuthInfo@@QEBAPEAU_COSERVERINFO@@K@Z
760; public: struct _COSERVERINFO * __ptr64 __cdecl CComAuthInfo::CreateServerInfoStruct(void)const __ptr64
761?CreateServerInfoStruct@CComAuthInfo@@QEBAPEAU_COSERVERINFO@@XZ
762; public: long __cdecl CMetaInterface::CreateSite(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
763?CreateSite@CMetaInterface@@QEAAJPEBG000PEAK1@Z
764; int __cdecl CreateSpecialDialogFont(class CWnd * __ptr64,class CFont * __ptr64,long,long,long,int,int)
765?CreateSpecialDialogFont@@YAHPEAVCWnd@@PEAVCFont@@JJJHH@Z
766; int __cdecl CvtGMTStringToInternal(unsigned short const * __ptr64,__int64 * __ptr64)
767?CvtGMTStringToInternal@@YAHPEBGPEA_J@Z
768; void __cdecl CvtInternalToGMTString(__int64,class CString & __ptr64)
769?CvtInternalToGMTString@@YAX_JAEAVCString@@@Z
770; int __cdecl CvtStringToLong(unsigned short const * __ptr64,unsigned long * __ptr64)
771?CvtStringToLong@@YAHPEBGPEAK@Z
772; protected: static long __cdecl CError::CvtToInternalFormat(long)
773?CvtToInternalFormat@CError@@KAJJ@Z
774; void __cdecl DDV_FilePath(class CDataExchange * __ptr64,class CString & __ptr64,int)
775?DDV_FilePath@@YAXPEAVCDataExchange@@AEAVCString@@H@Z
776; void __cdecl DDV_FolderPath(class CDataExchange * __ptr64,class CString & __ptr64,int)
777?DDV_FolderPath@@YAXPEAVCDataExchange@@AEAVCString@@H@Z
778; void __cdecl DDV_MaxCharsBalloon(class CDataExchange * __ptr64,class CString const & __ptr64,int)
779?DDV_MaxCharsBalloon@@YAXPEAVCDataExchange@@AEBVCString@@H@Z
780; void __cdecl DDV_MaxCharsBalloon_SecuredString(class CDataExchange * __ptr64,class CStrPassword const & __ptr64,int)
781?DDV_MaxCharsBalloon_SecuredString@@YAXPEAVCDataExchange@@AEBVCStrPassword@@H@Z
782; void __cdecl DDV_MaxChars_SecuredString(class CDataExchange * __ptr64,class CStrPassword const & __ptr64,int)
783?DDV_MaxChars_SecuredString@@YAXPEAVCDataExchange@@AEBVCStrPassword@@H@Z
784; void __cdecl DDV_MinChars(class CDataExchange * __ptr64,class CString const & __ptr64,int)
785?DDV_MinChars@@YAXPEAVCDataExchange@@AEBVCString@@H@Z
786; void __cdecl DDV_MinChars_SecuredString(class CDataExchange * __ptr64,class CStrPassword const & __ptr64,int)
787?DDV_MinChars_SecuredString@@YAXPEAVCDataExchange@@AEBVCStrPassword@@H@Z
788; void __cdecl DDV_MinMaxBalloon(class CDataExchange * __ptr64,int,unsigned long,unsigned long)
789?DDV_MinMaxBalloon@@YAXPEAVCDataExchange@@HKK@Z
790; void __cdecl DDV_MinMaxChars(class CDataExchange * __ptr64,class CString const & __ptr64,int,int)
791?DDV_MinMaxChars@@YAXPEAVCDataExchange@@AEBVCString@@HH@Z
792; void __cdecl DDV_MinMaxChars_SecuredString(class CDataExchange * __ptr64,class CStrPassword const & __ptr64,int,int)
793?DDV_MinMaxChars_SecuredString@@YAXPEAVCDataExchange@@AEBVCStrPassword@@HH@Z
794; void __cdecl DDV_MinMaxSpin(class CDataExchange * __ptr64,struct HWND__ * __ptr64,int,int)
795?DDV_MinMaxSpin@@YAXPEAVCDataExchange@@PEAUHWND__@@HH@Z
796; void __cdecl DDV_ShowBalloonAndFail(class CDataExchange * __ptr64,unsigned int)
797?DDV_ShowBalloonAndFail@@YAXPEAVCDataExchange@@I@Z
798; void __cdecl DDV_ShowBalloonAndFail(class CDataExchange * __ptr64,class CString)
799?DDV_ShowBalloonAndFail@@YAXPEAVCDataExchange@@VCString@@@Z
800; void __cdecl DDV_UNCFolderPath(class CDataExchange * __ptr64,class CString & __ptr64,int)
801?DDV_UNCFolderPath@@YAXPEAVCDataExchange@@AEAVCString@@H@Z
802; void __cdecl DDV_Url(class CDataExchange * __ptr64,class CString & __ptr64)
803?DDV_Url@@YAXPEAVCDataExchange@@AEAVCString@@@Z
804; void __cdecl DDX_Password(class CDataExchange * __ptr64,int,class CString & __ptr64,unsigned short const * __ptr64)
805?DDX_Password@@YAXPEAVCDataExchange@@HAEAVCString@@PEBG@Z
806; void __cdecl DDX_Password_SecuredString(class CDataExchange * __ptr64,int,class CStrPassword & __ptr64,unsigned short const * __ptr64)
807?DDX_Password_SecuredString@@YAXPEAVCDataExchange@@HAEAVCStrPassword@@PEBG@Z
808; void __cdecl DDX_Spin(class CDataExchange * __ptr64,int,int & __ptr64)
809?DDX_Spin@@YAXPEAVCDataExchange@@HAEAH@Z
810; void __cdecl DDX_Text(class CDataExchange * __ptr64,int,class CILong & __ptr64)
811?DDX_Text@@YAXPEAVCDataExchange@@HAEAVCILong@@@Z
812; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,unsigned char & __ptr64)
813?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEAE@Z
814; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,short & __ptr64)
815?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEAF@Z
816; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,int & __ptr64)
817?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEAH@Z
818; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,unsigned int & __ptr64)
819?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEAI@Z
820; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,long & __ptr64)
821?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEAJ@Z
822; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,unsigned long & __ptr64)
823?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEAK@Z
824; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,__int64 & __ptr64)
825?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEA_J@Z
826; void __cdecl DDX_TextBalloon(class CDataExchange * __ptr64,int,unsigned __int64 & __ptr64)
827?DDX_TextBalloon@@YAXPEAVCDataExchange@@HAEA_K@Z
828; void __cdecl DDX_Text_SecuredString(class CDataExchange * __ptr64,int,class CStrPassword & __ptr64)
829?DDX_Text_SecuredString@@YAXPEAVCDataExchange@@HAEAVCStrPassword@@@Z
830; public: static unsigned char * __ptr64 __cdecl CIPAddress::DWORDtoLPBYTE(unsigned long,unsigned char * __ptr64)
831?DWORDtoLPBYTE@CIPAddress@@SAPEAEKPEAE@Z
832; protected: static void __cdecl CINumber::DeAllocate(void)
833?DeAllocate@CINumber@@KAXXZ
834; protected: static void __cdecl CError::DeAllocateStatics(void)
835?DeAllocateStatics@CError@@KAXXZ
836; unsigned long __cdecl DeflateEnvironmentVariablePath(unsigned short const * __ptr64,class CString & __ptr64)
837?DeflateEnvironmentVariablePath@@YAKPEBGAEAVCString@@@Z
838; public: long __cdecl CIISAppPool::Delete(unsigned short const * __ptr64) __ptr64
839?Delete@CIISAppPool@@QEAAJPEBG@Z
840; public: long __cdecl CIISApplication::Delete(int) __ptr64
841?Delete@CIISApplication@@QEAAJH@Z
842; public: long __cdecl CMetaBack::Delete(unsigned short const * __ptr64,unsigned long) __ptr64
843?Delete@CMetaBack@@QEAAJPEBGK@Z
844; protected: long __cdecl CMetaInterface::DeleteAllData(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned long) __ptr64
845?DeleteAllData@CMetaInterface@@IEAAJKPEBGKK@Z
846; protected: long __cdecl CWamInterface::DeleteApplication(unsigned short const * __ptr64,int) __ptr64
847?DeleteApplication@CWamInterface@@IEAAJPEBGH@Z
848; protected: long __cdecl CWamInterface::DeleteApplicationPool(unsigned short const * __ptr64) __ptr64
849?DeleteApplicationPool@CWamInterface@@IEAAJPEBG@Z
850; protected: long __cdecl CMetaInterface::DeleteBackup(unsigned short const * __ptr64,unsigned long) __ptr64
851?DeleteBackup@CMetaInterface@@IEAAJPEBGK@Z
852; protected: long __cdecl CMetaInterface::DeleteChildKeys(unsigned long,unsigned short const * __ptr64) __ptr64
853?DeleteChildKeys@CMetaInterface@@IEAAJKPEBG@Z
854; protected: long __cdecl CMetaInterface::DeleteData(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned long) __ptr64
855?DeleteData@CMetaInterface@@IEAAJKPEBGKK@Z
856; protected: int __cdecl CHeaderListBox::DeleteHeaderItem(int) __ptr64
857?DeleteHeaderItem@CHeaderListBox@@IEAAHH@Z
858; public: int __cdecl CRMCListBoxHeader::DeleteItem(int) __ptr64
859?DeleteItem@CRMCListBoxHeader@@QEAAHH@Z
860; protected: long __cdecl CMetaInterface::DeleteKey(unsigned long,unsigned short const * __ptr64) __ptr64
861?DeleteKey@CMetaInterface@@IEAAJKPEBG@Z
862; public: long __cdecl CMetaKey::DeleteKey(unsigned short const * __ptr64) __ptr64
863?DeleteKey@CMetaKey@@QEAAJPEBG@Z
864; public: long __cdecl CIISApplication::DeleteRecoverable(int) __ptr64
865?DeleteRecoverable@CIISApplication@@QEAAJH@Z
866; public: long __cdecl CMetaKey::DeleteValue(unsigned long,unsigned short const * __ptr64) __ptr64
867?DeleteValue@CMetaKey@@QEAAJKPEBG@Z
868; public: void __cdecl CStrPassword::DestroyClearTextPassword(unsigned short * __ptr64)const __ptr64
869?DestroyClearTextPassword@CStrPassword@@QEBAXPEAG@Z
870; protected: void __cdecl CHeaderListBox::DistributeColumns(void) __ptr64
871?DistributeColumns@CHeaderListBox@@IEAAXXZ
872; protected: virtual void __cdecl CConfirmDlg::DoDataExchange(class CDataExchange * __ptr64) __ptr64
873?DoDataExchange@CConfirmDlg@@MEAAXPEAVCDataExchange@@@Z
874; protected: virtual void __cdecl CInheritanceDlg::DoDataExchange(class CDataExchange * __ptr64) __ptr64
875?DoDataExchange@CInheritanceDlg@@MEAAXPEAVCDataExchange@@@Z
876; public: virtual int __cdecl CDirBrowseDlg::DoModal(void) __ptr64
877?DoModal@CDirBrowseDlg@@UEAAHXZ
878; public: virtual __int64 __cdecl CInheritanceDlg::DoModal(void) __ptr64
879?DoModal@CInheritanceDlg@@UEAA_JXZ
880; public: long __cdecl CMetaKey::DoesPathExist(unsigned short const * __ptr64) __ptr64
881?DoesPathExist@CMetaKey@@QEAAJPEBG@Z
882; public: int __cdecl CRMCListBoxHeader::DoesRespondToColumnWidthChanges(void)const __ptr64
883?DoesRespondToColumnWidthChanges@CRMCListBoxHeader@@QEBAHXZ
884; int __cdecl DoesUNCShareExist(class CString & __ptr64)
885?DoesUNCShareExist@@YAHAEAVCString@@@Z
886; protected: int __cdecl CODLBox::DrawBitmap(class CRMCListBoxDrawStruct & __ptr64,int,int) __ptr64
887?DrawBitmap@CODLBox@@IEAAHAEAVCRMCListBoxDrawStruct@@HH@Z
888; protected: virtual void __cdecl CRMCComboBox::DrawItem(struct tagDRAWITEMSTRUCT * __ptr64) __ptr64
889?DrawItem@CRMCComboBox@@MEAAXPEAUtagDRAWITEMSTRUCT@@@Z
890; protected: virtual void __cdecl CRMCListBox::DrawItem(struct tagDRAWITEMSTRUCT * __ptr64) __ptr64
891?DrawItem@CRMCListBox@@MEAAXPEAUtagDRAWITEMSTRUCT@@@Z
892; protected: virtual void __cdecl CRMCComboBox::DrawItemEx(class CRMCListBoxDrawStruct & __ptr64) __ptr64
893?DrawItemEx@CRMCComboBox@@MEAAXAEAVCRMCListBoxDrawStruct@@@Z
894; protected: virtual void __cdecl CRMCListBox::DrawItemEx(class CRMCListBoxDrawStruct & __ptr64) __ptr64
895?DrawItemEx@CRMCListBox@@MEAAXAEAVCRMCListBoxDrawStruct@@@Z
896; public: int __cdecl CIPAccessDescriptor::DuplicateInList(class CObListPlus & __ptr64) __ptr64
897?DuplicateInList@CIPAccessDescriptor@@QEAAHAEAVCObListPlus@@@Z
898; void __cdecl EditHideBalloon(void)
899?EditHideBalloon@@YAXXZ
900; void __cdecl EditShowBalloon(struct HWND__ * __ptr64,unsigned int)
901?EditShowBalloon@@YAXPEAUHWND__@@I@Z
902; void __cdecl EditShowBalloon(struct HWND__ * __ptr64,class CString)
903?EditShowBalloon@@YAXPEAUHWND__@@VCString@@@Z
904; public: void __cdecl CStrPassword::Empty(void) __ptr64
905?Empty@CStrPassword@@QEAAXXZ
906; public: void __cdecl CIISWizardSheet::EnableButton(int,int) __ptr64
907?EnableButton@CIISWizardSheet@@QEAAXHH@Z
908; protected: void __cdecl CIISWizardPage::EnableSheetButton(int,int) __ptr64
909?EnableSheetButton@CIISWizardPage@@IEAAXHH@Z
910; public: int __cdecl CHeaderListBox::EnableWindow(int) __ptr64
911?EnableWindow@CHeaderListBox@@QEAAHH@Z
912; protected: long __cdecl CMetaInterface::EnumBackups(unsigned short * __ptr64,unsigned long * __ptr64,struct _FILETIME * __ptr64,unsigned long) __ptr64
913?EnumBackups@CMetaInterface@@IEAAJPEAGPEAKPEAU_FILETIME@@K@Z
914; protected: long __cdecl CMetaInterface::EnumData(unsigned long,unsigned short const * __ptr64,struct _METADATA_RECORD * __ptr64,unsigned long,unsigned long * __ptr64) __ptr64
915?EnumData@CMetaInterface@@IEAAJKPEBGPEAU_METADATA_RECORD@@KPEAK@Z
916; protected: long __cdecl CMetaInterface::EnumHistory(unsigned short * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,struct _FILETIME * __ptr64,unsigned long) __ptr64
917?EnumHistory@CMetaInterface@@IEAAJPEAGPEAK1PEAU_FILETIME@@K@Z
918; protected: long __cdecl CMetaInterface::EnumKeys(unsigned long,unsigned short const * __ptr64,unsigned short * __ptr64,unsigned long) __ptr64
919?EnumKeys@CMetaInterface@@IEAAJKPEBGPEAGK@Z
920; public: long __cdecl CIISAppPool::EnumerateApplications(class CStringListEx & __ptr64) __ptr64
921?EnumerateApplications@CIISAppPool@@QEAAJAEAVCStringListEx@@@Z
922; protected: long __cdecl CWamInterface::EnumerateApplicationsInPool(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64) __ptr64
923?EnumerateApplicationsInPool@CWamInterface@@IEAAJPEBGPEAPEAG@Z
924; protected: int __cdecl CError::ExpandEscapeCode(unsigned short * __ptr64,unsigned long,unsigned short * __ptr64 & __ptr64,class CString & __ptr64,long & __ptr64)const __ptr64
925?ExpandEscapeCode@CError@@IEBAHPEAGKAEAPEAGAEAVCString@@AEAJ@Z
926; public: int __cdecl CError::Failed(void)const __ptr64
927?Failed@CError@@QEBAHXZ
928; public: static int __cdecl CError::Failed(long)
929?Failed@CError@@SAHJ@Z
930; int __cdecl FetchIpAddressFromCombo(class CComboBox & __ptr64,class CObListPlus & __ptr64,class CIPAddress & __ptr64)
931?FetchIpAddressFromCombo@@YAHAEAVCComboBox@@AEAVCObListPlus@@AEAVCIPAddress@@@Z
932; public: int __cdecl CObListPlus::FindElement(class CObject * __ptr64)const __ptr64
933?FindElement@CObListPlus@@QEBAHPEAVCObject@@@Z
934; protected: static unsigned short const * __ptr64 __cdecl CError::FindFacility(unsigned long)
935?FindFacility@CError@@KAPEBGK@Z
936; void __cdecl FitPathToControl(class CWnd & __ptr64,unsigned short const * __ptr64,int)
937?FitPathToControl@@YAXAEAVCWnd@@PEBGH@Z
938; public: void __cdecl CAccessEntry::FlagForDeletion(int) __ptr64
939?FlagForDeletion@CAccessEntry@@QEAAXH@Z
940; public: void __cdecl CComAuthInfo::FreeServerInfoStruct(struct _COSERVERINFO * __ptr64)const __ptr64
941?FreeServerInfoStruct@CComAuthInfo@@QEBAXPEAU_COSERVERINFO@@@Z
942; protected: int __cdecl CInheritanceDlg::FriendlyInstance(class CString & __ptr64,class CString & __ptr64) __ptr64
943?FriendlyInstance@CInheritanceDlg@@IEAAHAEAVCString@@0@Z
944; unsigned short const * __ptr64 __cdecl GUIDToCString(struct _GUID const & __ptr64,class CString & __ptr64)
945?GUIDToCString@@YAPEBGAEBU_GUID@@AEAVCString@@@Z
946; unsigned short const * __ptr64 __cdecl GenerateRegistryKey(class CString & __ptr64,unsigned short const * __ptr64)
947?GenerateRegistryKey@@YAPEBGAEAVCString@@PEBG@Z
948; public: long __cdecl CMetaInterface::GetAdminInterface2(struct IMSAdminBase2W * __ptr64 * __ptr64) __ptr64
949?GetAdminInterface2@CMetaInterface@@QEAAJPEAPEAUIMSAdminBase2W@@@Z
950; public: long __cdecl CMetaInterface::GetAdminInterface3(struct IMSAdminBase3W * __ptr64 * __ptr64) __ptr64
951?GetAdminInterface3@CMetaInterface@@QEAAJPEAPEAUIMSAdminBase3W@@@Z
952; protected: long __cdecl CMetaInterface::GetAllData(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long,unsigned char * __ptr64,unsigned long * __ptr64) __ptr64
953?GetAllData@CMetaInterface@@IEAAJKPEBGKKKPEAK1KPEAE1@Z
954; protected: long __cdecl CMetaKey::GetAllData(unsigned long,unsigned long,unsigned long,unsigned long * __ptr64,unsigned long * __ptr64,unsigned char * __ptr64 * __ptr64,unsigned short const * __ptr64) __ptr64
955?GetAllData@CMetaKey@@IEAAJKKKPEAK0PEAPEAEPEBG@Z
956; public: long __cdecl CWamInterface::GetAppAdminInterface(struct IIISApplicationAdmin * __ptr64 * __ptr64) __ptr64
957?GetAppAdminInterface@CWamInterface@@QEAAJPEAPEAUIIISApplicationAdmin@@@Z
958; protected: struct HBRUSH__ * __ptr64 __cdecl CIISWizardPage::GetBackgroundBrush(void)const __ptr64
959?GetBackgroundBrush@CIISWizardPage@@IEBAPEAUHBRUSH__@@XZ
960; public: struct HBRUSH__ * __ptr64 __cdecl CIISWizardSheet::GetBackgroundBrush(void)const __ptr64
961?GetBackgroundBrush@CIISWizardSheet@@QEBAPEAUHBRUSH__@@XZ
962; public: unsigned long __cdecl CMetaKey::GetBase(void)const __ptr64
963?GetBase@CMetaKey@@QEBAKXZ
964; protected: class CFont * __ptr64 __cdecl CIISWizardPage::GetBigFont(void) __ptr64
965?GetBigFont@CIISWizardPage@@IEAAPEAVCFont@@XZ
966; public: class CFont * __ptr64 __cdecl CIISWizardSheet::GetBigFont(void) __ptr64
967?GetBigFont@CIISWizardSheet@@QEAAPEAVCFont@@XZ
968; protected: class CDC * __ptr64 __cdecl CIISWizardPage::GetBitmapMemDC(void) __ptr64
969?GetBitmapMemDC@CIISWizardPage@@IEAAPEAVCDC@@XZ
970; public: class CDC * __ptr64 __cdecl CIISWizardSheet::GetBitmapMemDC(int) __ptr64
971?GetBitmapMemDC@CIISWizardSheet@@QEAAPEAVCDC@@H@Z
972; protected: class CFont * __ptr64 __cdecl CIISWizardPage::GetBoldFont(void) __ptr64
973?GetBoldFont@CIISWizardPage@@IEAAPEAVCFont@@XZ
974; public: class CFont * __ptr64 __cdecl CIISWizardSheet::GetBoldFont(void) __ptr64
975?GetBoldFont@CIISWizardSheet@@QEAAPEAVCFont@@XZ
976; public: int __cdecl CStrPassword::GetByteLength(void)const __ptr64
977?GetByteLength@CStrPassword@@QEBAHXZ
978; protected: long __cdecl CMetaInterface::GetChildPaths(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned short * __ptr64,unsigned long * __ptr64) __ptr64
979?GetChildPaths@CMetaInterface@@IEAAJKPEBGKPEAGPEAK@Z
980; public: long __cdecl CMetaKey::GetChildPaths(class CStringListEx & __ptr64,unsigned short const * __ptr64) __ptr64
981?GetChildPaths@CMetaKey@@QEAAJAEAVCStringListEx@@PEBG@Z
982; public: unsigned short * __ptr64 __cdecl CStrPassword::GetClearTextPassword(void) __ptr64
983?GetClearTextPassword@CStrPassword@@QEAAPEAGXZ
984; public: int __cdecl CRMCListBoxHeader::GetColumnWidth(int)const __ptr64
985?GetColumnWidth@CRMCListBoxHeader@@QEBAHH@Z
986; public: int __cdecl CGetComputer::GetComputer(struct HWND__ * __ptr64) __ptr64
987?GetComputer@CGetComputer@@QEAAHPEAUHWND__@@@Z
988; public: int __cdecl CRMCListBox::GetCurSel(void)const __ptr64
989?GetCurSel@CRMCListBox@@QEBAHXZ
990; public: unsigned char * __ptr64 __cdecl CBlob::GetData(void) __ptr64
991?GetData@CBlob@@QEAAPEAEXZ
992; protected: long __cdecl CMetaInterface::GetData(unsigned long,unsigned short const * __ptr64,struct _METADATA_RECORD * __ptr64,unsigned long * __ptr64) __ptr64
993?GetData@CMetaInterface@@IEAAJKPEBGPEAU_METADATA_RECORD@@PEAK@Z
994; protected: long __cdecl CInheritanceDlg::GetDataPaths(void) __ptr64
995?GetDataPaths@CInheritanceDlg@@IEAAJXZ
996; protected: long __cdecl CMetaInterface::GetDataPaths(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,unsigned short * __ptr64,unsigned long * __ptr64) __ptr64
997?GetDataPaths@CMetaInterface@@IEAAJKPEBGKKKPEAGPEAK@Z
998; public: long __cdecl CMetaKey::GetDataPaths(class CStringListEx & __ptr64,unsigned long,unsigned long,unsigned short const * __ptr64) __ptr64
999?GetDataPaths@CMetaKey@@QEAAJAEAVCStringListEx@@KKPEBG@Z
1000; void __cdecl GetDlgCtlRect(struct HWND__ * __ptr64,struct HWND__ * __ptr64,struct tagRECT * __ptr64)
1001?GetDlgCtlRect@@YAXPEAUHWND__@@0PEAUtagRECT@@@Z
1002; public: unsigned short const * __ptr64 __cdecl CDirBrowseDlg::GetFullPath(class CString & __ptr64,int)const __ptr64
1003?GetFullPath@CDirBrowseDlg@@QEBAPEBGAEAVCString@@H@Z
1004; void __cdecl GetFullPathLocalOrRemote(unsigned short const * __ptr64,unsigned short const * __ptr64,class CString & __ptr64)
1005?GetFullPathLocalOrRemote@@YAXPEBG0AEAVCString@@@Z
1006; public: unsigned long __cdecl CMetaKey::GetHandle(void)const __ptr64
1007?GetHandle@CMetaKey@@QEBAKXZ
1008; protected: class CRMCListBoxHeader * __ptr64 __cdecl CHeaderListBox::GetHeader(void) __ptr64
1009?GetHeader@CHeaderListBox@@IEAAPEAVCRMCListBoxHeader@@XZ
1010; protected: int __cdecl CHeaderListBox::GetHeaderItem(int,struct _HD_ITEMW * __ptr64)const __ptr64
1011?GetHeaderItem@CHeaderListBox@@IEBAHHPEAU_HD_ITEMW@@@Z
1012; protected: int __cdecl CHeaderListBox::GetHeaderItemCount(void)const __ptr64
1013?GetHeaderItemCount@CHeaderListBox@@IEBAHXZ
1014; int __cdecl GetIUsrAccount(unsigned short const * __ptr64,class CWnd * __ptr64,class CString & __ptr64)
1015?GetIUsrAccount@@YAHPEBGPEAVCWnd@@AEAVCString@@@Z
1016; int __cdecl GetIUsrAccount(unsigned short const * __ptr64,class CWnd * __ptr64,unsigned short * __ptr64,int)
1017?GetIUsrAccount@@YAHPEBGPEAVCWnd@@PEAGH@Z
1018; public: static unsigned long __cdecl CMetabasePath::GetInstanceNumber(unsigned short const * __ptr64)
1019?GetInstanceNumber@CMetabasePath@@SAKPEBG@Z
1020; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::GetInstancePath(unsigned short const * __ptr64,class CString & __ptr64,class CString * __ptr64)
1021?GetInstancePath@CMetabasePath@@SAPEBGPEBGAEAVCString@@PEAV2@@Z
1022; public: struct IMSAdminBaseW * __ptr64 __cdecl CMetaInterface::GetInterface(void) __ptr64
1023?GetInterface@CMetaInterface@@QEAAPEAUIMSAdminBaseW@@XZ
1024; public: int __cdecl CRMCListBoxHeader::GetItem(int,struct _HD_ITEMW * __ptr64)const __ptr64
1025?GetItem@CRMCListBoxHeader@@QEBAHHPEAU_HD_ITEMW@@@Z
1026; public: int __cdecl CRMCListBoxHeader::GetItemCount(void)const __ptr64
1027?GetItemCount@CRMCListBoxHeader@@QEBAHXZ
1028; protected: long __cdecl CMetaInterface::GetLastChangeTime(unsigned long,unsigned short const * __ptr64,struct _FILETIME * __ptr64,int) __ptr64
1029?GetLastChangeTime@CMetaInterface@@IEAAJKPEBGPEAU_FILETIME@@H@Z
1030; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::GetLastNodeName(unsigned short const * __ptr64,class CString & __ptr64)
1031?GetLastNodeName@CMetabasePath@@SAPEBGPEBGAEAVCString@@@Z
1032; public: void __cdecl CError::GetLastWinError(void) __ptr64
1033?GetLastWinError@CError@@QEAAXXZ
1034; public: int __cdecl CStrPassword::GetLength(void)const __ptr64
1035?GetLength@CStrPassword@@QEBAHXZ
1036; public: static int __cdecl CMetaKey::GetMDFieldDef(unsigned long,unsigned long & __ptr64,unsigned long & __ptr64,unsigned long & __ptr64,unsigned long & __ptr64)
1037?GetMDFieldDef@CMetaKey@@SAHKAEAK000@Z
1038; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::GetMachinePath(unsigned short const * __ptr64,class CString & __ptr64,class CString * __ptr64)
1039?GetMachinePath@CMetabasePath@@SAPEBGPEBGAEAVCString@@PEAV2@@Z
1040; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CConfirmDlg::GetMessageMap(void)const __ptr64
1041?GetMessageMap@CConfirmDlg@@MEBAPEBUAFX_MSGMAP@@XZ
1042; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CEmphasizedDialog::GetMessageMap(void)const __ptr64
1043?GetMessageMap@CEmphasizedDialog@@MEBAPEBUAFX_MSGMAP@@XZ
1044; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CHeaderListBox::GetMessageMap(void)const __ptr64
1045?GetMessageMap@CHeaderListBox@@MEBAPEBUAFX_MSGMAP@@XZ
1046; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CIISWizardBookEnd::GetMessageMap(void)const __ptr64
1047?GetMessageMap@CIISWizardBookEnd@@MEBAPEBUAFX_MSGMAP@@XZ
1048; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CIISWizardPage::GetMessageMap(void)const __ptr64
1049?GetMessageMap@CIISWizardPage@@MEBAPEBUAFX_MSGMAP@@XZ
1050; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CIISWizardSheet::GetMessageMap(void)const __ptr64
1051?GetMessageMap@CIISWizardSheet@@MEBAPEBUAFX_MSGMAP@@XZ
1052; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CInheritanceDlg::GetMessageMap(void)const __ptr64
1053?GetMessageMap@CInheritanceDlg@@MEBAPEBUAFX_MSGMAP@@XZ
1054; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CRMCComboBox::GetMessageMap(void)const __ptr64
1055?GetMessageMap@CRMCComboBox@@MEBAPEBUAFX_MSGMAP@@XZ
1056; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CRMCListBox::GetMessageMap(void)const __ptr64
1057?GetMessageMap@CRMCListBox@@MEBAPEBUAFX_MSGMAP@@XZ
1058; protected: virtual struct AFX_MSGMAP const * __ptr64 __cdecl CRMCListBoxHeader::GetMessageMap(void)const __ptr64
1059?GetMessageMap@CRMCListBoxHeader@@MEBAPEBUAFX_MSGMAP@@XZ
1060; public: static struct CMetaKey::tagMDFIELDDEF const * __ptr64 __cdecl CMetaKey::GetMetaProp(unsigned long)
1061?GetMetaProp@CMetaKey@@SAPEBUtagMDFIELDDEF@1@K@Z
1062; public: void * __ptr64 __cdecl CRMCListBox::GetNextSelectedItem(int * __ptr64) __ptr64
1063?GetNextSelectedItem@CRMCListBox@@QEAAPEAXPEAH@Z
1064; public: class CString & __ptr64 __cdecl CConfirmDlg::GetPassword(void) __ptr64
1065?GetPassword@CConfirmDlg@@QEAAAEAVCString@@XZ
1066; public: long __cdecl CIISAppPool::GetProcessMode(unsigned long * __ptr64) __ptr64
1067?GetProcessMode@CIISAppPool@@QEAAJPEAK@Z
1068; protected: long __cdecl CWamInterface::GetProcessMode(unsigned long * __ptr64) __ptr64
1069?GetProcessMode@CWamInterface@@IEAAJPEAK@Z
1070; public: static int __cdecl CMetaKey::GetPropertyDescription(unsigned long,class CString & __ptr64)
1071?GetPropertyDescription@CMetaKey@@SAHKAEAVCString@@@Z
1072; protected: long __cdecl CMetaKey::GetPropertyValue(unsigned long,unsigned long & __ptr64,void * __ptr64 & __ptr64,unsigned long * __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1073?GetPropertyValue@CMetaKey@@IEAAJKAEAKAEAPEAXPEAKPEAHPEBG2@Z
1074; protected: static int __cdecl CODLBox::GetRequiredWidth(class CDC * __ptr64,class CRect const & __ptr64,unsigned short const * __ptr64,int)
1075?GetRequiredWidth@CODLBox@@KAHPEAVCDC@@AEBVCRect@@PEBGH@Z
1076; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::GetRootPath(unsigned short const * __ptr64,class CString & __ptr64,class CString * __ptr64)
1077?GetRootPath@CMetabasePath@@SAPEBGPEBGAEAVCString@@PEAV2@@Z
1078; public: virtual struct CRuntimeClass * __ptr64 __cdecl CEmphasizedDialog::GetRuntimeClass(void)const __ptr64
1079?GetRuntimeClass@CEmphasizedDialog@@UEBAPEAUCRuntimeClass@@XZ
1080; public: virtual struct CRuntimeClass * __ptr64 __cdecl CHeaderListBox::GetRuntimeClass(void)const __ptr64
1081?GetRuntimeClass@CHeaderListBox@@UEBAPEAUCRuntimeClass@@XZ
1082; public: virtual struct CRuntimeClass * __ptr64 __cdecl CIISWizardBookEnd::GetRuntimeClass(void)const __ptr64
1083?GetRuntimeClass@CIISWizardBookEnd@@UEBAPEAUCRuntimeClass@@XZ
1084; public: virtual struct CRuntimeClass * __ptr64 __cdecl CIISWizardPage::GetRuntimeClass(void)const __ptr64
1085?GetRuntimeClass@CIISWizardPage@@UEBAPEAUCRuntimeClass@@XZ
1086; public: virtual struct CRuntimeClass * __ptr64 __cdecl CIISWizardSheet::GetRuntimeClass(void)const __ptr64
1087?GetRuntimeClass@CIISWizardSheet@@UEBAPEAUCRuntimeClass@@XZ
1088; public: virtual struct CRuntimeClass * __ptr64 __cdecl CRMCComboBox::GetRuntimeClass(void)const __ptr64
1089?GetRuntimeClass@CRMCComboBox@@UEBAPEAUCRuntimeClass@@XZ
1090; public: virtual struct CRuntimeClass * __ptr64 __cdecl CRMCListBox::GetRuntimeClass(void)const __ptr64
1091?GetRuntimeClass@CRMCListBox@@UEBAPEAUCRuntimeClass@@XZ
1092; public: virtual struct CRuntimeClass * __ptr64 __cdecl CRMCListBoxHeader::GetRuntimeClass(void)const __ptr64
1093?GetRuntimeClass@CRMCListBoxHeader@@UEBAPEAUCRuntimeClass@@XZ
1094; public: int __cdecl CRMCListBox::GetSel(int)const __ptr64
1095?GetSel@CRMCListBox@@QEBAHH@Z
1096; public: int __cdecl CRMCListBox::GetSelCount(void)const __ptr64
1097?GetSelCount@CRMCListBox@@QEBAHXZ
1098; public: void * __ptr64 __cdecl CRMCListBox::GetSelectedListItem(int * __ptr64) __ptr64
1099?GetSelectedListItem@CRMCListBox@@QEAAPEAXPEAH@Z
1100; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::GetServiceInfoPath(unsigned short const * __ptr64,class CString & __ptr64,unsigned short const * __ptr64)
1101?GetServiceInfoPath@CMetabasePath@@SAPEBGPEBGAEAVCString@@0@Z
1102; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::GetServicePath(unsigned short const * __ptr64,class CString & __ptr64,class CString * __ptr64)
1103?GetServicePath@CMetabasePath@@SAPEBGPEBGAEAVCString@@PEAV2@@Z
1104; protected: class CIISWizardSheet * __ptr64 __cdecl CIISWizardPage::GetSheet(void)const __ptr64
1105?GetSheet@CIISWizardPage@@IEBAPEAVCIISWizardSheet@@XZ
1106; public: void * __ptr64 __cdecl CAccessEntry::GetSid(void) __ptr64
1107?GetSid@CAccessEntry@@QEAAPEAXXZ
1108; public: unsigned long __cdecl CBlob::GetSize(void)const __ptr64
1109?GetSize@CBlob@@QEBAKXZ
1110; protected: class CFont * __ptr64 __cdecl CIISWizardPage::GetSpecialFont(void) __ptr64
1111?GetSpecialFont@CIISWizardPage@@IEAAPEAVCFont@@XZ
1112; public: class CFont * __ptr64 __cdecl CIISWizardSheet::GetSpecialFont(int) __ptr64
1113?GetSpecialFont@CIISWizardSheet@@QEAAPEAVCFont@@H@Z
1114; int __cdecl GetSpecialPathRealPath(int,class CString const & __ptr64,class CString & __ptr64)
1115?GetSpecialPathRealPath@@YAHHAEBVCString@@AEAV1@@Z
1116; protected: void __cdecl CRMCListBoxResources::GetSysColors(void) __ptr64
1117?GetSysColors@CRMCListBoxResources@@IEAAXXZ
1118; public: long __cdecl CMetaInterface::GetSystemChangeNumber(unsigned long * __ptr64) __ptr64
1119?GetSystemChangeNumber@CMetaInterface@@QEAAJPEAK@Z
1120; public: unsigned int __cdecl CODLBox::GetTab(int)const __ptr64
1121?GetTab@CODLBox@@QEBAIH@Z
1122; public: int __cdecl CGetUsers::GetUsers(struct HWND__ * __ptr64,int) __ptr64
1123?GetUsers@CGetUsers@@QEAAHPEAUHWND__@@H@Z
1124; int __cdecl GetVolumeInformationSystemFlags(unsigned short const * __ptr64,unsigned long * __ptr64)
1125?GetVolumeInformationSystemFlags@@YAHPEBGPEAK@Z
1126; protected: class CBrush * __ptr64 __cdecl CIISWizardPage::GetWindowBrush(void) __ptr64
1127?GetWindowBrush@CIISWizardPage@@IEAAPEAVCBrush@@XZ
1128; public: class CBrush * __ptr64 __cdecl CIISWizardSheet::GetWindowBrush(void) __ptr64
1129?GetWindowBrush@CIISWizardSheet@@QEAAPEAVCBrush@@XZ
1130; public: void __cdecl CIPAccessDescriptor::GrantAccess(int) __ptr64
1131?GrantAccess@CIPAccessDescriptor@@QEAAXH@Z
1132; public: long __cdecl CError::HResult(void)const __ptr64
1133?HResult@CError@@QEBAJXZ
1134; public: static long __cdecl CError::HResult(long)
1135?HResult@CError@@SAJJ@Z
1136; public: int __cdecl CIPAccessDescriptor::HasAccess(void)const __ptr64
1137?HasAccess@CIPAccessDescriptor@@QEBAHXZ
1138; public: int __cdecl CAccessEntry::HasAppropriateAccess(unsigned long)const __ptr64
1139?HasAppropriateAccess@CAccessEntry@@QEBAHK@Z
1140; protected: int __cdecl CIISSvcControl::HasInterface(void)const __ptr64
1141?HasInterface@CIISSvcControl@@IEBAHXZ
1142; protected: int __cdecl CMetaInterface::HasInterface(void)const __ptr64
1143?HasInterface@CMetaInterface@@IEBAHXZ
1144; protected: int __cdecl CWamInterface::HasInterface(void)const __ptr64
1145?HasInterface@CWamInterface@@IEBAHXZ
1146; protected: int __cdecl CError::HasOverride(unsigned int * __ptr64)const __ptr64
1147?HasOverride@CError@@IEBAHPEAI@Z
1148; public: int __cdecl CAccessEntry::HasSomeAccess(void)const __ptr64
1149?HasSomeAccess@CAccessEntry@@QEBAHXZ
1150; public: class CObject * __ptr64 __cdecl CObListPlus::Index(int) __ptr64
1151?Index@CObListPlus@@QEAAPEAVCObject@@H@Z
1152; public: virtual int __cdecl CHeaderListBox::Initialize(void) __ptr64
1153?Initialize@CHeaderListBox@@UEAAHXZ
1154; public: static int __cdecl CINumber::Initialize(int)
1155?Initialize@CINumber@@SAHH@Z
1156; protected: void __cdecl CInheritanceDlg::Initialize(void) __ptr64
1157?Initialize@CInheritanceDlg@@IEAAXXZ
1158; protected: virtual int __cdecl CODLBox::Initialize(void) __ptr64
1159?Initialize@CODLBox@@MEAAHXZ
1160; public: virtual int __cdecl CRMCComboBox::Initialize(void) __ptr64
1161?Initialize@CRMCComboBox@@UEAAHXZ
1162; public: virtual int __cdecl CRMCListBox::Initialize(void) __ptr64
1163?Initialize@CRMCListBox@@UEAAHXZ
1164; protected: int __cdecl CHeaderListBox::InsertColumn(int,int,unsigned int,struct HINSTANCE__ * __ptr64) __ptr64
1165?InsertColumn@CHeaderListBox@@IEAAHHHIPEAUHINSTANCE__@@@Z
1166; protected: int __cdecl CHeaderListBox::InsertHeaderItem(int,struct _HD_ITEMW * __ptr64) __ptr64
1167?InsertHeaderItem@CHeaderListBox@@IEAAHHPEAU_HD_ITEMW@@@Z
1168; public: int __cdecl CRMCListBoxHeader::InsertItem(int,struct _HD_ITEMW * __ptr64) __ptr64
1169?InsertItem@CRMCListBoxHeader@@QEAAHHPEAU_HD_ITEMW@@@Z
1170; public: void __cdecl CODLBox::InsertTab(int,unsigned int) __ptr64
1171?InsertTab@CODLBox@@QEAAXHI@Z
1172; public: void __cdecl CRMCListBox::InvalidateSelection(int) __ptr64
1173?InvalidateSelection@CRMCListBox@@QEAAXH@Z
1174; long __cdecl IsAllNumHostHeader(unsigned short const * __ptr64)
1175?IsAllNumHostHeader@@YAJPEBG@Z
1176; protected: static int __cdecl CINumber::IsAllocated(void)
1177?IsAllocated@CINumber@@KAHXZ
1178; public: int __cdecl CIPAddress::IsBadValue(void)const __ptr64
1179?IsBadValue@CIPAddress@@QEBAHXZ
1180; int __cdecl IsBiDiLocalizedSystem(void)
1181?IsBiDiLocalizedSystem@@YAHXZ
1182; public: int __cdecl CAccessEntry::IsDeletable(void)const __ptr64
1183?IsDeletable@CAccessEntry@@QEBAHXZ
1184; public: int __cdecl CAccessEntry::IsDeleted(void)const __ptr64
1185?IsDeleted@CAccessEntry@@QEBAHXZ
1186; int __cdecl IsDevicePath(class CString const & __ptr64)
1187?IsDevicePath@@YAHAEBVCString@@@Z
1188; public: int __cdecl CAccessEntry::IsDirty(void)const __ptr64
1189?IsDirty@CAccessEntry@@QEBAHXZ
1190; public: int __cdecl CObjHelper::IsDirty(void)const __ptr64
1191?IsDirty@CObjHelper@@QEBAHXZ
1192; public: int __cdecl CIPAccessDescriptor::IsDomainName(void)const __ptr64
1193?IsDomainName@CIPAccessDescriptor@@QEBAHXZ
1194; public: int __cdecl CBlob::IsEmpty(void)const __ptr64
1195?IsEmpty@CBlob@@QEBAHXZ
1196; public: int __cdecl CInheritanceDlg::IsEmpty(void)const __ptr64
1197?IsEmpty@CInheritanceDlg@@QEBAHXZ
1198; public: int __cdecl CStrPassword::IsEmpty(void)const __ptr64
1199?IsEmpty@CStrPassword@@QEBAHXZ
1200; public: int __cdecl CIISApplication::IsEnabledApplication(void)const __ptr64
1201?IsEnabledApplication@CIISApplication@@QEBAHXZ
1202; int __cdecl IsFullyQualifiedPath(class CString const & __ptr64)
1203?IsFullyQualifiedPath@@YAHAEBVCString@@@Z
1204; protected: int __cdecl CIISWizardPage::IsHeaderPage(void)const __ptr64
1205?IsHeaderPage@CIISWizardPage@@IEBAHXZ
1206; public: int __cdecl CMetaKey::IsHomeDirectoryPath(void)const __ptr64
1207?IsHomeDirectoryPath@CMetaKey@@QEBAHXZ
1208; public: int __cdecl CMetabasePath::IsHomeDirectoryPath(void)const __ptr64
1209?IsHomeDirectoryPath@CMetabasePath@@QEBAHXZ
1210; public: static int __cdecl CMetabasePath::IsHomeDirectoryPath(unsigned short const * __ptr64)
1211?IsHomeDirectoryPath@CMetabasePath@@SAHPEBG@Z
1212; public: static int __cdecl CINumber::IsInitialized(void)
1213?IsInitialized@CINumber@@SAHXZ
1214; public: int __cdecl CIISApplication::IsInproc(void)const __ptr64
1215?IsInproc@CIISApplication@@QEBAHXZ
1216; public: int __cdecl CComAuthInfo::IsLocal(void)const __ptr64
1217?IsLocal@CComAuthInfo@@QEBAHXZ
1218; public: int __cdecl CIISInterface::IsLocal(void)const __ptr64
1219?IsLocal@CIISInterface@@QEBAHXZ
1220; int __cdecl IsLocalComputer(unsigned short const * __ptr64)
1221?IsLocalComputer@@YAHPEBG@Z
1222; public: static int __cdecl CMetabasePath::IsMasterInstance(unsigned short const * __ptr64)
1223?IsMasterInstance@CMetabasePath@@SAHPEBG@Z
1224; protected: int __cdecl CRMCListBox::IsMultiSelect(void)const __ptr64
1225?IsMultiSelect@CRMCListBox@@IEBAHXZ
1226; public: int __cdecl CIPAccessDescriptor::IsMultiple(void)const __ptr64
1227?IsMultiple@CIPAccessDescriptor@@QEBAHXZ
1228; int __cdecl IsNetworkPath(class CString const & __ptr64,class CString * __ptr64,class CString * __ptr64)
1229?IsNetworkPath@@YAHAEBVCString@@PEAV1@1@Z
1230; public: int __cdecl CMetaKey::IsOpen(void)const __ptr64
1231?IsOpen@CMetaKey@@QEBAHXZ
1232; public: int __cdecl CIISApplication::IsOutOfProc(void)const __ptr64
1233?IsOutOfProc@CIISApplication@@QEBAHXZ
1234; public: int __cdecl CIISApplication::IsPooledProc(void)const __ptr64
1235?IsPooledProc@CIISApplication@@QEBAHXZ
1236; public: static int __cdecl CMetaKey::IsPropertyInheritable(unsigned long)
1237?IsPropertyInheritable@CMetaKey@@SAHK@Z
1238; int __cdecl IsRestrictedFilename(class CString const & __ptr64)
1239?IsRestrictedFilename@@YAHAEBVCString@@@Z
1240; public: int __cdecl CAccessEntry::IsSIDResolved(void)const __ptr64
1241?IsSIDResolved@CAccessEntry@@QEBAHXZ
1242; int __cdecl IsServerLocal(unsigned short const * __ptr64)
1243?IsServerLocal@@YAHPEBG@Z
1244; public: int __cdecl CIPAccessDescriptor::IsSingle(void)const __ptr64
1245?IsSingle@CIPAccessDescriptor@@QEBAHXZ
1246; int __cdecl IsSpecialPath(class CString const & __ptr64,int,int)
1247?IsSpecialPath@@YAHAEBVCString@@HH@Z
1248; int __cdecl IsUNCName(class CString const & __ptr64)
1249?IsUNCName@@YAHAEBVCString@@@Z
1250; int __cdecl IsURLName(class CString const & __ptr64)
1251?IsURLName@@YAHAEBVCString@@@Z
1252; public: virtual int __cdecl CObjHelper::IsValid(void)const __ptr64
1253?IsValid@CObjHelper@@UEBAHXZ
1254; long __cdecl IsValidHostHeader(unsigned short const * __ptr64)
1255?IsValidHostHeader@@YAJPEBG@Z
1256; public: int __cdecl CAccessEntry::IsVisible(void)const __ptr64
1257?IsVisible@CAccessEntry@@QEBAHXZ
1258; protected: int __cdecl CIISWizardBookEnd::IsWelcomePage(void)const __ptr64
1259?IsWelcomePage@CIISWizardBookEnd@@IEBAHXZ
1260; protected: int __cdecl CIISWizardPage::IsWizard97(void)const __ptr64
1261?IsWizard97@CIISWizardPage@@IEBAHXZ
1262; public: int __cdecl CIISWizardSheet::IsWizard97(void)const __ptr64
1263?IsWizard97@CIISWizardSheet@@QEBAHXZ
1264; public: int __cdecl CIPAddress::IsZeroValue(void)const __ptr64
1265?IsZeroValue@CIPAddress@@QEBAHXZ
1266; public: long __cdecl CIISSvcControl::Kill(void) __ptr64
1267?Kill@CIISSvcControl@@QEAAJXZ
1268; long __cdecl LimitInputDomainName(struct HWND__ * __ptr64)
1269?LimitInputDomainName@@YAJPEAUHWND__@@@Z
1270; long __cdecl LimitInputPath(struct HWND__ * __ptr64,int)
1271?LimitInputPath@@YAJPEAUHWND__@@H@Z
1272; protected: int __cdecl CMappedBitmapButton::LoadMappedBitmaps(unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
1273?LoadMappedBitmaps@CMappedBitmapButton@@IEAAHIIII@Z
1274; public: static unsigned short * __ptr64 __cdecl CIPAddress::LongToString(unsigned long,unsigned short * __ptr64,int)
1275?LongToString@CIPAddress@@SAPEAGKPEAGH@Z
1276; public: static unsigned short const * __ptr64 __cdecl CIPAddress::LongToString(unsigned long,class ATL::CComBSTR & __ptr64)
1277?LongToString@CIPAddress@@SAPEBGKAEAVCComBSTR@ATL@@@Z
1278; public: static unsigned short const * __ptr64 __cdecl CIPAddress::LongToString(unsigned long,class CString & __ptr64)
1279?LongToString@CIPAddress@@SAPEBGKAEAVCString@@@Z
1280; int __cdecl LooksLikeIPAddress(unsigned short const * __ptr64)
1281?LooksLikeIPAddress@@YAHPEBG@Z
1282; public: static int __cdecl CAccessEntry::LookupAccountSidW(class CString & __ptr64,int & __ptr64,void * __ptr64,unsigned short const * __ptr64)
1283?LookupAccountSidW@CAccessEntry@@SAHAEAVCString@@AEAHPEAXPEBG@Z
1284; unsigned short const * __ptr64 __cdecl MakeUNCPath(class CString & __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64)
1285?MakeUNCPath@@YAPEBGAEAVCString@@PEBG1@Z
1286; public: static int __cdecl CMetaKey::MapMDIDToTableIndex(unsigned long)
1287?MapMDIDToTableIndex@CMetaKey@@SAHK@Z
1288; public: void __cdecl CAccessEntry::MarkEntryAsChanged(void) __ptr64
1289?MarkEntryAsChanged@CAccessEntry@@QEAAXXZ
1290; public: void __cdecl CAccessEntry::MarkEntryAsClean(void) __ptr64
1291?MarkEntryAsClean@CAccessEntry@@QEAAXXZ
1292; public: void __cdecl CAccessEntry::MarkEntryAsNew(void) __ptr64
1293?MarkEntryAsNew@CAccessEntry@@QEAAXXZ
1294; protected: virtual void __cdecl CRMCComboBox::MeasureItem(struct tagMEASUREITEMSTRUCT * __ptr64) __ptr64
1295?MeasureItem@CRMCComboBox@@MEAAXPEAUtagMEASUREITEMSTRUCT@@@Z
1296; protected: virtual void __cdecl CRMCListBox::MeasureItem(struct tagMEASUREITEMSTRUCT * __ptr64) __ptr64
1297?MeasureItem@CRMCListBox@@MEAAXPEAUtagMEASUREITEMSTRUCT@@@Z
1298; public: int __cdecl CError::MessageBoxFormat(struct HWND__ * __ptr64,unsigned int,unsigned int,unsigned int,...)const __ptr64
1299?MessageBoxFormat@CError@@QEBAHPEAUHWND__@@IIIZZ
1300; public: int __cdecl CError::MessageBoxOnFailure(struct HWND__ * __ptr64,unsigned int,unsigned int)const __ptr64
1301?MessageBoxOnFailure@CError@@QEBAHPEAUHWND__@@II@Z
1302; public: int __cdecl CError::MessageBoxW(struct HWND__ * __ptr64,unsigned int,unsigned int)const __ptr64
1303?MessageBoxW@CError@@QEBAHPEAUHWND__@@II@Z
1304; unsigned long __cdecl MyGetHostName(unsigned long,class CString & __ptr64)
1305?MyGetHostName@@YAKKAEAVCString@@@Z
1306; long __cdecl MyValidatePath(unsigned short const * __ptr64,int,int,unsigned long,unsigned long)
1307?MyValidatePath@@YAJPEBGHHKK@Z
1308; public: long __cdecl CMetaBack::Next(unsigned long * __ptr64,unsigned short * __ptr64,struct _FILETIME * __ptr64) __ptr64
1309?Next@CMetaBack@@QEAAJPEAKPEAGPEAU_FILETIME@@@Z
1310; public: long __cdecl CMetaEnumerator::Next(unsigned long & __ptr64,class CString & __ptr64,unsigned short const * __ptr64) __ptr64
1311?Next@CMetaEnumerator@@QEAAJAEAKAEAVCString@@PEBG@Z
1312; public: long __cdecl CMetaEnumerator::Next(class CString & __ptr64,unsigned short const * __ptr64) __ptr64
1313?Next@CMetaEnumerator@@QEAAJAEAVCString@@PEBG@Z
1314; public: class CObject * __ptr64 __cdecl CObListIter::Next(void) __ptr64
1315?Next@CObListIter@@QEAAPEAVCObject@@XZ
1316; public: long __cdecl CMetaBack::NextHistory(unsigned long * __ptr64,unsigned long * __ptr64,unsigned short * __ptr64,struct _FILETIME * __ptr64) __ptr64
1317?NextHistory@CMetaBack@@QEAAJPEAK0PEAGPEAU_FILETIME@@@Z
1318; public: int __cdecl CODLBox::NumTabs(void)const __ptr64
1319?NumTabs@CODLBox@@QEBAHXZ
1320; protected: void __cdecl CInheritanceDlg::OnButtonSelectAll(void) __ptr64
1321?OnButtonSelectAll@CInheritanceDlg@@IEAAXXZ
1322; protected: int __cdecl CHeaderListBox::OnCreate(struct tagCREATESTRUCTW * __ptr64) __ptr64
1323?OnCreate@CHeaderListBox@@IEAAHPEAUtagCREATESTRUCTW@@@Z
1324; protected: int __cdecl CRMCComboBox::OnCreate(struct tagCREATESTRUCTW * __ptr64) __ptr64
1325?OnCreate@CRMCComboBox@@IEAAHPEAUtagCREATESTRUCTW@@@Z
1326; protected: int __cdecl CRMCListBox::OnCreate(struct tagCREATESTRUCTW * __ptr64) __ptr64
1327?OnCreate@CRMCListBox@@IEAAHPEAUtagCREATESTRUCTW@@@Z
1328; protected: struct HBRUSH__ * __ptr64 __cdecl CIISWizardPage::OnCtlColor(class CDC * __ptr64,class CWnd * __ptr64,unsigned int) __ptr64
1329?OnCtlColor@CIISWizardPage@@IEAAPEAUHBRUSH__@@PEAVCDC@@PEAVCWnd@@I@Z
1330; protected: void __cdecl CEmphasizedDialog::OnDestroy(void) __ptr64
1331?OnDestroy@CEmphasizedDialog@@IEAAXXZ
1332; protected: void __cdecl CHeaderListBox::OnDestroy(void) __ptr64
1333?OnDestroy@CHeaderListBox@@IEAAXXZ
1334; protected: void __cdecl CIISWizardSheet::OnDestroy(void) __ptr64
1335?OnDestroy@CIISWizardSheet@@IEAAXXZ
1336; protected: void __cdecl CRMCListBoxHeader::OnDestroy(void) __ptr64
1337?OnDestroy@CRMCListBoxHeader@@IEAAXXZ
1338; protected: int __cdecl CIISWizardPage::OnEraseBkgnd(class CDC * __ptr64) __ptr64
1339?OnEraseBkgnd@CIISWizardPage@@IEAAHPEAVCDC@@@Z
1340; protected: void __cdecl CRMCListBoxHeader::OnHeaderEndTrack(unsigned int,struct tagNMHDR * __ptr64,__int64 * __ptr64) __ptr64
1341?OnHeaderEndTrack@CRMCListBoxHeader@@IEAAXIPEAUtagNMHDR@@PEA_J@Z
1342; protected: void __cdecl CRMCListBoxHeader::OnHeaderItemChanged(unsigned int,struct tagNMHDR * __ptr64,__int64 * __ptr64) __ptr64
1343?OnHeaderItemChanged@CRMCListBoxHeader@@IEAAXIPEAUtagNMHDR@@PEA_J@Z
1344; protected: void __cdecl CRMCListBoxHeader::OnHeaderItemClick(unsigned int,struct tagNMHDR * __ptr64,__int64 * __ptr64) __ptr64
1345?OnHeaderItemClick@CRMCListBoxHeader@@IEAAXIPEAUtagNMHDR@@PEA_J@Z
1346; protected: void __cdecl CInheritanceDlg::OnHelp(void) __ptr64
1347?OnHelp@CInheritanceDlg@@IEAAXXZ
1348; protected: virtual int __cdecl CEmphasizedDialog::OnInitDialog(void) __ptr64
1349?OnInitDialog@CEmphasizedDialog@@MEAAHXZ
1350; protected: virtual int __cdecl CIISWizardBookEnd::OnInitDialog(void) __ptr64
1351?OnInitDialog@CIISWizardBookEnd@@MEAAHXZ
1352; protected: virtual int __cdecl CIISWizardPage::OnInitDialog(void) __ptr64
1353?OnInitDialog@CIISWizardPage@@MEAAHXZ
1354; protected: virtual int __cdecl CIISWizardSheet::OnInitDialog(void) __ptr64
1355?OnInitDialog@CIISWizardSheet@@MEAAHXZ
1356; protected: virtual int __cdecl CInheritanceDlg::OnInitDialog(void) __ptr64
1357?OnInitDialog@CInheritanceDlg@@MEAAHXZ
1358; protected: virtual void __cdecl CInheritanceDlg::OnOK(void) __ptr64
1359?OnOK@CInheritanceDlg@@MEAAXXZ
1360; public: virtual int __cdecl CIISWizardBookEnd::OnSetActive(void) __ptr64
1361?OnSetActive@CIISWizardBookEnd@@UEAAHXZ
1362; protected: void __cdecl CRMCListBoxHeader::OnSetFocus(class CWnd * __ptr64) __ptr64
1363?OnSetFocus@CRMCListBoxHeader@@IEAAXPEAVCWnd@@@Z
1364; public: long __cdecl CMetaKey::Open(unsigned long,unsigned short const * __ptr64,unsigned long) __ptr64
1365?Open@CMetaKey@@QEAAJKPEBGK@Z
1366; protected: long __cdecl CMetaInterface::OpenKey(unsigned long,unsigned short const * __ptr64,unsigned long,unsigned long * __ptr64) __ptr64
1367?OpenKey@CMetaInterface@@IEAAJKPEBGKPEAK@Z
1368; public: int __cdecl CIPAccessDescriptor::OrderByAddress(class CObjectPlus const * __ptr64)const __ptr64
1369?OrderByAddress@CIPAccessDescriptor@@QEBAHPEBVCObjectPlus@@@Z
1370; int __cdecl PCToUnixText(unsigned short * __ptr64 & __ptr64,class CString)
1371?PCToUnixText@@YAHAEAPEAGVCString@@@Z
1372; int __cdecl PathIsValid(unsigned short const * __ptr64,int)
1373?PathIsValid@@YAHPEBGH@Z
1374; unsigned long __cdecl PopulateComboWithKnownIpAddresses(unsigned short const * __ptr64,class CComboBox & __ptr64,class CIPAddress & __ptr64,class CObListPlus & __ptr64,int & __ptr64)
1375?PopulateComboWithKnownIpAddresses@@YAKPEBGAEAVCComboBox@@AEAVCIPAddress@@AEAVCObListPlus@@AEAH@Z
1376; protected: void __cdecl CRMCListBoxResources::PrepareBitmaps(void) __ptr64
1377?PrepareBitmaps@CRMCListBoxResources@@IEAAXXZ
1378; protected: void __cdecl CGetComputer::ProcessSelectedObjects(struct IDataObject * __ptr64) __ptr64
1379?ProcessSelectedObjects@CGetComputer@@IEAAXPEAUIDataObject@@@Z
1380; protected: void __cdecl CGetUsers::ProcessSelectedObjects(struct IDataObject * __ptr64) __ptr64
1381?ProcessSelectedObjects@CGetUsers@@IEAAXPEAUIDataObject@@@Z
1382; public: unsigned long __cdecl CAccessEntry::QueryAccessMask(void)const __ptr64
1383?QueryAccessMask@CAccessEntry@@QEBAKXZ
1384; public: unsigned long __cdecl CObjHelper::QueryAge(void)const __ptr64
1385?QueryAge@CObjHelper@@QEBAKXZ
1386; public: long __cdecl CObjHelper::QueryApiErr(void)const __ptr64
1387?QueryApiErr@CObjHelper@@QEBAJXZ
1388; public: unsigned long __cdecl CIISApplication::QueryAppState(void)const __ptr64
1389?QueryAppState@CIISApplication@@QEBAKXZ
1390; public: class CComAuthInfo * __ptr64 __cdecl CIISInterface::QueryAuthInfo(void) __ptr64
1391?QueryAuthInfo@CIISInterface@@QEAAPEAVCComAuthInfo@@XZ
1392; protected: long __cdecl CIISWizardPage::QueryBitmapHeight(void)const __ptr64
1393?QueryBitmapHeight@CIISWizardPage@@IEBAJXZ
1394; public: long __cdecl CIISWizardSheet::QueryBitmapHeight(int)const __ptr64
1395?QueryBitmapHeight@CIISWizardSheet@@QEBAJH@Z
1396; protected: long __cdecl CIISWizardPage::QueryBitmapWidth(void)const __ptr64
1397?QueryBitmapWidth@CIISWizardPage@@IEBAJXZ
1398; public: long __cdecl CIISWizardSheet::QueryBitmapWidth(int)const __ptr64
1399?QueryBitmapWidth@CIISWizardSheet@@QEBAJH@Z
1400; public: int __cdecl CHeaderListBox::QueryColumnWidth(int)const __ptr64
1401?QueryColumnWidth@CHeaderListBox@@QEBAHH@Z
1402; public: unsigned long __cdecl CObjHelper::QueryCreationTime(void)const __ptr64
1403?QueryCreationTime@CObjHelper@@QEBAKXZ
1404; public: static unsigned short const * __ptr64 __cdecl CINumber::QueryCurrency(void)
1405?QueryCurrency@CINumber@@SAPEBGXZ
1406; public: static unsigned short const * __ptr64 __cdecl CINumber::QueryDecimalPoint(void)
1407?QueryDecimalPoint@CINumber@@SAPEBGXZ
1408; public: unsigned short const * __ptr64 __cdecl CIPAccessDescriptor::QueryDomainName(void)const __ptr64
1409?QueryDomainName@CIPAccessDescriptor@@QEBAPEBGXZ
1410; public: long __cdecl CObjHelper::QueryError(void)const __ptr64
1411?QueryError@CObjHelper@@QEBAJXZ
1412; public: unsigned long __cdecl CMetaKey::QueryFlags(void)const __ptr64
1413?QueryFlags@CMetaKey@@QEBAKXZ
1414; public: unsigned long __cdecl CIPAddress::QueryHostOrderIPAddress(void)const __ptr64
1415?QueryHostOrderIPAddress@CIPAddress@@QEBAKXZ
1416; public: class CIPAddress __cdecl CIPAccessDescriptor::QueryIPAddress(void)const __ptr64
1417?QueryIPAddress@CIPAccessDescriptor@@QEBA?AVCIPAddress@@XZ
1418; public: unsigned long __cdecl CIPAccessDescriptor::QueryIPAddress(int)const __ptr64
1419?QueryIPAddress@CIPAccessDescriptor@@QEBAKH@Z
1420; public: unsigned long __cdecl CIPAddress::QueryIPAddress(int)const __ptr64
1421?QueryIPAddress@CIPAddress@@QEBAKH@Z
1422; public: unsigned short const * __ptr64 __cdecl CIPAddress::QueryIPAddress(class ATL::CComBSTR & __ptr64)const __ptr64
1423?QueryIPAddress@CIPAddress@@QEBAPEBGAEAVCComBSTR@ATL@@@Z
1424; public: unsigned short const * __ptr64 __cdecl CIPAddress::QueryIPAddress(class CString & __ptr64)const __ptr64
1425?QueryIPAddress@CIPAddress@@QEBAPEBGAEAVCString@@@Z
1426; public: unsigned short const * __ptr64 __cdecl CMetaKey::QueryMetaPath(void)const __ptr64
1427?QueryMetaPath@CMetaKey@@QEBAPEBGXZ
1428; public: unsigned short const * __ptr64 __cdecl CMetabasePath::QueryMetaPath(void)const __ptr64
1429?QueryMetaPath@CMetabasePath@@QEBAPEBGXZ
1430; public: unsigned long __cdecl CIPAddress::QueryNetworkOrderIPAddress(void)const __ptr64
1431?QueryNetworkOrderIPAddress@CIPAddress@@QEBAKXZ
1432; public: int __cdecl CHeaderListBox::QueryNumColumns(void)const __ptr64
1433?QueryNumColumns@CHeaderListBox@@QEBAHXZ
1434; public: int __cdecl CRMCListBoxHeader::QueryNumColumns(void)const __ptr64
1435?QueryNumColumns@CRMCListBoxHeader@@QEBAHXZ
1436; public: unsigned short * __ptr64 __cdecl CComAuthInfo::QueryPassword(void)const __ptr64
1437?QueryPassword@CComAuthInfo@@QEBAPEAGXZ
1438; public: int __cdecl CAccessEntry::QueryPictureID(void)const __ptr64
1439?QueryPictureID@CAccessEntry@@QEBAHXZ
1440; public: unsigned long __cdecl CIISAppPool::QueryPoolState(void)const __ptr64
1441?QueryPoolState@CIISAppPool@@QEBAKXZ
1442; public: struct __POSITION * __ptr64 __cdecl CObListIter::QueryPosition(void)const __ptr64
1443?QueryPosition@CObListIter@@QEBAPEAU__POSITION@@XZ
1444; public: virtual long __cdecl CIISAppPool::QueryResult(void)const __ptr64
1445?QueryResult@CIISAppPool@@UEBAJXZ
1446; public: virtual long __cdecl CIISApplication::QueryResult(void)const __ptr64
1447?QueryResult@CIISApplication@@UEBAJXZ
1448; public: virtual long __cdecl CIISInterface::QueryResult(void)const __ptr64
1449?QueryResult@CIISInterface@@UEBAJXZ
1450; public: virtual long __cdecl CMetaBack::QueryResult(void)const __ptr64
1451?QueryResult@CMetaBack@@UEBAJXZ
1452; public: virtual long __cdecl CMetaKey::QueryResult(void)const __ptr64
1453?QueryResult@CMetaKey@@UEBAJXZ
1454; public: unsigned short * __ptr64 __cdecl CComAuthInfo::QueryServerName(void)const __ptr64
1455?QueryServerName@CComAuthInfo@@QEBAPEAGXZ
1456; public: unsigned short const * __ptr64 __cdecl CIISInterface::QueryServerName(void)const __ptr64
1457?QueryServerName@CIISInterface@@QEBAPEBGXZ
1458; public: class CIPAddress __cdecl CIPAccessDescriptor::QuerySubnetMask(void)const __ptr64
1459?QuerySubnetMask@CIPAccessDescriptor@@QEBA?AVCIPAddress@@XZ
1460; public: unsigned long __cdecl CIPAccessDescriptor::QuerySubnetMask(int)const __ptr64
1461?QuerySubnetMask@CIPAccessDescriptor@@QEBAKH@Z
1462; public: static unsigned short const * __ptr64 __cdecl CINumber::QueryThousandSeparator(void)
1463?QueryThousandSeparator@CINumber@@SAPEBGXZ
1464; public: unsigned short const * __ptr64 __cdecl CAccessEntry::QueryUserName(void)const __ptr64
1465?QueryUserName@CAccessEntry@@QEBAPEBGXZ
1466; public: unsigned short * __ptr64 __cdecl CComAuthInfo::QueryUserName(void)const __ptr64
1467?QueryUserName@CComAuthInfo@@QEBAPEAGXZ
1468; public: long __cdecl CMetaKey::QueryValue(unsigned long,int & __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1469?QueryValue@CMetaKey@@QEAAJKAEAHPEAHPEBGPEAK@Z
1470; public: long __cdecl CMetaKey::QueryValue(unsigned long,unsigned long & __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1471?QueryValue@CMetaKey@@QEAAJKAEAKPEAHPEBGPEAK@Z
1472; public: long __cdecl CMetaKey::QueryValue(unsigned long,class CBlob & __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1473?QueryValue@CMetaKey@@QEAAJKAEAVCBlob@@PEAHPEBGPEAK@Z
1474; public: long __cdecl CMetaKey::QueryValue(unsigned long,class ATL::CComBSTR & __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1475?QueryValue@CMetaKey@@QEAAJKAEAVCComBSTR@ATL@@PEAHPEBGPEAK@Z
1476; public: long __cdecl CMetaKey::QueryValue(unsigned long,class CStrPassword & __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1477?QueryValue@CMetaKey@@QEAAJKAEAVCStrPassword@@PEAHPEBGPEAK@Z
1478; public: long __cdecl CMetaKey::QueryValue(unsigned long,class CString & __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1479?QueryValue@CMetaKey@@QEAAJKAEAVCString@@PEAHPEBGPEAK@Z
1480; public: long __cdecl CMetaKey::QueryValue(unsigned long,class CStringListEx & __ptr64,int * __ptr64,unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
1481?QueryValue@CMetaKey@@QEAAJKAEAVCStringListEx@@PEAHPEBGPEAK@Z
1482; public: unsigned short const * __ptr64 __cdecl CIISAppPool::QueryWamPath(void)const __ptr64
1483?QueryWamPath@CIISAppPool@@QEBAPEBGXZ
1484; public: unsigned short const * __ptr64 __cdecl CIISApplication::QueryWamPath(void)const __ptr64
1485?QueryWamPath@CIISApplication@@QEBAPEBGXZ
1486; protected: unsigned long __cdecl CIISWizardPage::QueryWindowColor(void)const __ptr64
1487?QueryWindowColor@CIISWizardPage@@IEBAKXZ
1488; public: unsigned long __cdecl CIISWizardSheet::QueryWindowColor(void)const __ptr64
1489?QueryWindowColor@CIISWizardSheet@@QEBAKXZ
1490; protected: unsigned long __cdecl CIISWizardPage::QueryWindowTextColor(void)const __ptr64
1491?QueryWindowTextColor@CIISWizardPage@@IEBAKXZ
1492; public: unsigned long __cdecl CIISWizardSheet::QueryWindowTextColor(void)const __ptr64
1493?QueryWindowTextColor@CIISWizardSheet@@QEBAKXZ
1494; public: long __cdecl CMetaKey::ReOpen(unsigned long) __ptr64
1495?ReOpen@CMetaKey@@QEAAJK@Z
1496; public: long __cdecl CMetaKey::ReOpen(void) __ptr64
1497?ReOpen@CMetaKey@@QEAAJXZ
1498; public: long __cdecl CIISSvcControl::Reboot(unsigned long,int) __ptr64
1499?Reboot@CIISSvcControl@@QEAAJKH@Z
1500; public: long __cdecl CIISApplication::Recover(int) __ptr64
1501?Recover@CIISApplication@@QEAAJH@Z
1502; public: long __cdecl CIISAppPool::Recycle(unsigned short const * __ptr64) __ptr64
1503?Recycle@CIISAppPool@@QEAAJPEBG@Z
1504; protected: long __cdecl CWamInterface::RecycleApplicationPool(unsigned short const * __ptr64) __ptr64
1505?RecycleApplicationPool@CWamInterface@@IEAAJPEBG@Z
1506; public: long __cdecl CIISApplication::RefreshAppState(void) __ptr64
1507?RefreshAppState@CIISApplication@@QEAAJXZ
1508; public: long __cdecl CIISAppPool::RefreshState(void) __ptr64
1509?RefreshState@CIISAppPool@@QEAAJXZ
1510; public: long __cdecl CMetaInterface::Regenerate(void) __ptr64
1511?Regenerate@CMetaInterface@@QEAAJXZ
1512; public: static void __cdecl CError::RegisterFacility(unsigned long,char const * __ptr64)
1513?RegisterFacility@CError@@SAXKPEBD@Z
1514; public: int __cdecl CObListPlus::Remove(class CObject * __ptr64) __ptr64
1515?Remove@CObListPlus@@QEAAHPEAVCObject@@@Z
1516; public: void __cdecl CObListPlus::RemoveAll(void) __ptr64
1517?RemoveAll@CObListPlus@@QEAAXXZ
1518; public: void __cdecl CError::RemoveAllOverrides(void) __ptr64
1519?RemoveAllOverrides@CError@@QEAAXXZ
1520; public: void __cdecl CODLBox::RemoveAllTabs(void) __ptr64
1521?RemoveAllTabs@CODLBox@@QEAAXXZ
1522; public: void __cdecl CObListPlus::RemoveAt(struct __POSITION * __ptr64 & __ptr64) __ptr64
1523?RemoveAt@CObListPlus@@QEAAXAEAPEAU__POSITION@@@Z
1524; public: void __cdecl CComAuthInfo::RemoveImpersonation(void) __ptr64
1525?RemoveImpersonation@CComAuthInfo@@QEAAXXZ
1526; public: int __cdecl CObListPlus::RemoveIndex(int) __ptr64
1527?RemoveIndex@CObListPlus@@QEAAHH@Z
1528; public: void __cdecl CError::RemoveOverride(long) __ptr64
1529?RemoveOverride@CError@@QEAAXJ@Z
1530; public: void __cdecl CAccessEntry::RemovePermissions(unsigned long) __ptr64
1531?RemovePermissions@CAccessEntry@@QEAAXK@Z
1532; public: void __cdecl CODLBox::RemoveTab(int,int) __ptr64
1533?RemoveTab@CODLBox@@QEAAXHH@Z
1534; protected: long __cdecl CMetaInterface::RenameKey(unsigned long,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1535?RenameKey@CMetaInterface@@IEAAJKPEBG0@Z
1536; public: long __cdecl CMetaKey::RenameKey(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1537?RenameKey@CMetaKey@@QEAAJPEBG0@Z
1538; unsigned long __cdecl ReplaceStringInString(class CString & __ptr64,class CString & __ptr64,class CString & __ptr64,int)
1539?ReplaceStringInString@@YAKAEAVCString@@00H@Z
1540; public: void __cdecl CObjHelper::ReportError(long) __ptr64
1541?ReportError@CObjHelper@@QEAAXJ@Z
1542; public: void __cdecl CError::Reset(void) __ptr64
1543?Reset@CError@@QEAAXXZ
1544; public: void __cdecl CMetaBack::Reset(void) __ptr64
1545?Reset@CMetaBack@@QEAAXXZ
1546; public: void __cdecl CMetaEnumerator::Reset(void) __ptr64
1547?Reset@CMetaEnumerator@@QEAAXXZ
1548; public: void __cdecl CObListIter::Reset(void) __ptr64
1549?Reset@CObListIter@@QEAAXXZ
1550; public: void __cdecl CObjHelper::ResetErrors(void) __ptr64
1551?ResetErrors@CObjHelper@@QEAAXXZ
1552; public: int __cdecl CAccessEntry::ResolveSID(void) __ptr64
1553?ResolveSID@CAccessEntry@@QEAAHXZ
1554; public: void __cdecl CRMCListBoxHeader::RespondToColumnWidthChanges(int) __ptr64
1555?RespondToColumnWidthChanges@CRMCListBoxHeader@@QEAAXH@Z
1556; public: long __cdecl CMetaBack::Restore(unsigned short const * __ptr64,unsigned long) __ptr64
1557?Restore@CMetaBack@@QEAAJPEBGK@Z
1558; protected: long __cdecl CMetaInterface::Restore(unsigned short const * __ptr64,unsigned long,unsigned long) __ptr64
1559?Restore@CMetaInterface@@IEAAJPEBGKK@Z
1560; protected: long __cdecl CMetaInterface::RestoreHistory(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long) __ptr64
1561?RestoreHistory@CMetaInterface@@IEAAJPEBGKKK@Z
1562; public: long __cdecl CMetaBack::RestoreHistoryBackup(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long) __ptr64
1563?RestoreHistoryBackup@CMetaBack@@QEAAJPEBGKKK@Z
1564; public: long __cdecl CMetaBack::RestoreWithPassword(unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64) __ptr64
1565?RestoreWithPassword@CMetaBack@@QEAAJPEBGK0@Z
1566; protected: long __cdecl CMetaInterface::RestoreWithPassword(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned short const * __ptr64) __ptr64
1567?RestoreWithPassword@CMetaInterface@@IEAAJPEBGKK0@Z
1568; public: long __cdecl CMetaInterface::SaveData(void) __ptr64
1569?SaveData@CMetaInterface@@QEAAJXZ
1570; public: int __cdecl CRMCListBox::SelectItem(void * __ptr64) __ptr64
1571?SelectItem@CRMCListBox@@QEAAHPEAX@Z
1572; public: int __cdecl CObListPlus::SetAll(int) __ptr64
1573?SetAll@CObListPlus@@QEAAHH@Z
1574; public: long __cdecl CObjHelper::SetApiErr(long) __ptr64
1575?SetApiErr@CObjHelper@@QEAAJJ@Z
1576; public: int __cdecl CHeaderListBox::SetColumnWidth(int,int) __ptr64
1577?SetColumnWidth@CHeaderListBox@@QEAAHHH@Z
1578; public: void __cdecl CRMCListBoxHeader::SetColumnWidth(int,int) __ptr64
1579?SetColumnWidth@CRMCListBoxHeader@@QEAAXHH@Z
1580; protected: void __cdecl CComAuthInfo::SetComputerNameW(unsigned short const * __ptr64) __ptr64
1581?SetComputerNameW@CComAuthInfo@@IEAAXPEBG@Z
1582; public: int __cdecl CRMCListBox::SetCurSel(int) __ptr64
1583?SetCurSel@CRMCListBox@@QEAAHH@Z
1584; protected: long __cdecl CMetaInterface::SetData(unsigned long,unsigned short const * __ptr64,struct _METADATA_RECORD * __ptr64) __ptr64
1585?SetData@CMetaInterface@@IEAAJKPEBGPEAU_METADATA_RECORD@@@Z
1586; public: void __cdecl CObjHelper::SetDirty(int) __ptr64
1587?SetDirty@CObjHelper@@QEAAXH@Z
1588; protected: int __cdecl CHeaderListBox::SetHeaderItem(int,struct _HD_ITEMW * __ptr64) __ptr64
1589?SetHeaderItem@CHeaderListBox@@IEAAHHPEAU_HD_ITEMW@@@Z
1590; public: void __cdecl CComAuthInfo::SetImpersonation(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1591?SetImpersonation@CComAuthInfo@@QEAAXPEBG0@Z
1592; public: int __cdecl CRMCListBoxHeader::SetItem(int,struct _HD_ITEMW * __ptr64) __ptr64
1593?SetItem@CRMCListBoxHeader@@QEAAHHPEAU_HD_ITEMW@@@Z
1594; protected: long __cdecl CMetaInterface::SetLastChangeTime(unsigned long,unsigned short const * __ptr64,struct _FILETIME * __ptr64,int) __ptr64
1595?SetLastChangeTime@CMetaInterface@@IEAAJKPEBGPEAU_FILETIME@@H@Z
1596; public: void __cdecl CError::SetLastWinError(void)const __ptr64
1597?SetLastWinError@CError@@QEBAXXZ
1598; public: int __cdecl CObListPlus::SetOwnership(int) __ptr64
1599?SetOwnership@CObListPlus@@QEAAHH@Z
1600; public: void __cdecl CObListIter::SetPosition(struct __POSITION * __ptr64) __ptr64
1601?SetPosition@CObListIter@@QEAAXPEAU__POSITION@@@Z
1602; protected: long __cdecl CMetaKey::SetPropertyValue(unsigned long,unsigned long,void * __ptr64,int * __ptr64,unsigned short const * __ptr64) __ptr64
1603?SetPropertyValue@CMetaKey@@IEAAJKKPEAXPEAHPEBG@Z
1604; public: void __cdecl CConfirmDlg::SetReference(class CString & __ptr64) __ptr64
1605?SetReference@CConfirmDlg@@QEAAXAEAVCString@@@Z
1606; public: void __cdecl CODLBox::SetTab(int,unsigned int) __ptr64
1607?SetTab@CODLBox@@QEAAXHI@Z
1608; protected: void __cdecl CRMCListBoxHeader::SetTabsFromHeader(void) __ptr64
1609?SetTabsFromHeader@CRMCListBoxHeader@@IEAAXXZ
1610; public: void __cdecl CBlob::SetValue(unsigned long,unsigned char * __ptr64,int) __ptr64
1611?SetValue@CBlob@@QEAAXKPEAEH@Z
1612; public: long __cdecl CMetaKey::SetValue(unsigned long,class CBlob & __ptr64,int * __ptr64,unsigned short const * __ptr64) __ptr64
1613?SetValue@CMetaKey@@QEAAJKAEAVCBlob@@PEAHPEBG@Z
1614; public: long __cdecl CMetaKey::SetValue(unsigned long,class CStrPassword & __ptr64,int * __ptr64,unsigned short const * __ptr64) __ptr64
1615?SetValue@CMetaKey@@QEAAJKAEAVCStrPassword@@PEAHPEBG@Z
1616; public: long __cdecl CMetaKey::SetValue(unsigned long,class CString & __ptr64,int * __ptr64,unsigned short const * __ptr64) __ptr64
1617?SetValue@CMetaKey@@QEAAJKAEAVCString@@PEAHPEBG@Z
1618; public: long __cdecl CMetaKey::SetValue(unsigned long,class CStringListEx & __ptr64,int * __ptr64,unsigned short const * __ptr64) __ptr64
1619?SetValue@CMetaKey@@QEAAJKAEAVCStringListEx@@PEAHPEBG@Z
1620; public: long __cdecl CMetaKey::SetValue(unsigned long,int,int * __ptr64,unsigned short const * __ptr64) __ptr64
1621?SetValue@CMetaKey@@QEAAJKHPEAHPEBG@Z
1622; public: long __cdecl CMetaKey::SetValue(unsigned long,unsigned long,int * __ptr64,unsigned short const * __ptr64) __ptr64
1623?SetValue@CMetaKey@@QEAAJKKPEAHPEBG@Z
1624; public: void __cdecl CIPAccessDescriptor::SetValues(int,unsigned long,unsigned long,int) __ptr64
1625?SetValues@CIPAccessDescriptor@@QEAAXHKKH@Z
1626; public: void __cdecl CIPAccessDescriptor::SetValues(int,unsigned short const * __ptr64) __ptr64
1627?SetValues@CIPAccessDescriptor@@QEAAXHPEBG@Z
1628; protected: int __cdecl CHeaderListBox::SetWidthsFromReg(void) __ptr64
1629?SetWidthsFromReg@CHeaderListBox@@IEAAHXZ
1630; protected: void __cdecl CIISWizardPage::SetWizardButtons(unsigned long) __ptr64
1631?SetWizardButtons@CIISWizardPage@@IEAAXK@Z
1632; public: void __cdecl CIPAddress::SetZeroValue(void) __ptr64
1633?SetZeroValue@CIPAddress@@QEAAXXZ
1634; public: int __cdecl CHeaderListBox::ShowWindow(int) __ptr64
1635?ShowWindow@CHeaderListBox@@QEAAHH@Z
1636; public: unsigned long __cdecl CObListPlus::Sort(int (__cdecl CObjectPlus::*)(class CObjectPlus const * __ptr64)const __ptr64) __ptr64
1637?Sort@CObListPlus@@QEAAKP8CObjectPlus@@EBAHPEBV2@@Z@Z
1638; protected: static int __cdecl CObListPlus::SortHelper(void const * __ptr64,void const * __ptr64)
1639?SortHelper@CObListPlus@@KAHPEBX0@Z
1640; public: static void __cdecl CMetabasePath::SplitMetaPathAtInstance(unsigned short const * __ptr64,class CString & __ptr64,class CString & __ptr64)
1641?SplitMetaPathAtInstance@CMetabasePath@@SAXPEBGAEAVCString@@1@Z
1642; public: static int __cdecl CComAuthInfo::SplitUserNameAndDomain(class CString & __ptr64,class CString & __ptr64)
1643?SplitUserNameAndDomain@CComAuthInfo@@SAHAEAVCString@@0@Z
1644; public: long __cdecl CIISSvcControl::Start(unsigned long) __ptr64
1645?Start@CIISSvcControl@@QEAAJK@Z
1646; public: long __cdecl CIISSvcControl::Status(unsigned long,unsigned char * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
1647?Status@CIISSvcControl@@QEAAJKPEAEPEAK1@Z
1648; public: long __cdecl CIISSvcControl::Stop(unsigned long,int) __ptr64
1649?Stop@CIISSvcControl@@QEAAJKH@Z
1650; public: void __cdecl CComAuthInfo::StorePassword(unsigned short const * __ptr64) __ptr64
1651?StorePassword@CComAuthInfo@@QEAAXPEBG@Z
1652; public: static unsigned long __cdecl CIPAddress::StringToLong(class ATL::CComBSTR const & __ptr64)
1653?StringToLong@CIPAddress@@SAKAEBVCComBSTR@ATL@@@Z
1654; public: static unsigned long __cdecl CIPAddress::StringToLong(class CString const & __ptr64)
1655?StringToLong@CIPAddress@@SAKAEBVCString@@@Z
1656; public: static unsigned long __cdecl CIPAddress::StringToLong(unsigned short const * __ptr64,int)
1657?StringToLong@CIPAddress@@SAKPEBGH@Z
1658; public: int __cdecl CError::Succeeded(void)const __ptr64
1659?Succeeded@CError@@QEBAHXZ
1660; public: static int __cdecl CError::Succeeded(long)
1661?Succeeded@CError@@SAHJ@Z
1662; public: virtual int __cdecl CIISAppPool::Succeeded(void)const __ptr64
1663?Succeeded@CIISAppPool@@UEBAHXZ
1664; public: virtual int __cdecl CIISApplication::Succeeded(void)const __ptr64
1665?Succeeded@CIISApplication@@UEBAHXZ
1666; public: virtual int __cdecl CIISInterface::Succeeded(void)const __ptr64
1667?Succeeded@CIISInterface@@UEBAHXZ
1668; public: virtual int __cdecl CMetaBack::Succeeded(void)const __ptr64
1669?Succeeded@CMetaBack@@UEBAHXZ
1670; public: virtual int __cdecl CMetaKey::Succeeded(void)const __ptr64
1671?Succeeded@CMetaKey@@UEBAHXZ
1672; public: int __cdecl CWamInterface::SupportsPooledProc(void)const __ptr64
1673?SupportsPooledProc@CWamInterface@@QEBAHXZ
1674; int __cdecl SupportsSecurityACLs(unsigned short const * __ptr64)
1675?SupportsSecurityACLs@@YAHPEBG@Z
1676; public: void __cdecl CRMCListBoxResources::SysColorChanged(void) __ptr64
1677?SysColorChanged@CRMCListBoxResources@@QEAAXXZ
1678; public: long __cdecl CError::TextFromHRESULT(class CString & __ptr64)const __ptr64
1679?TextFromHRESULT@CError@@QEBAJAEAVCString@@@Z
1680; public: long __cdecl CError::TextFromHRESULT(unsigned short * __ptr64,unsigned long)const __ptr64
1681?TextFromHRESULT@CError@@QEBAJPEAGK@Z
1682; public: unsigned short const * __ptr64 __cdecl CError::TextFromHRESULTExpand(class CString & __ptr64)const __ptr64
1683?TextFromHRESULTExpand@CError@@QEBAPEBGAEAVCString@@@Z
1684; public: unsigned short const * __ptr64 __cdecl CError::TextFromHRESULTExpand(unsigned short * __ptr64,unsigned long,long * __ptr64)const __ptr64
1685?TextFromHRESULTExpand@CError@@QEBAPEBGPEAGKPEAJ@Z
1686; public: int __cdecl CODLBox::TextHeight(void)const __ptr64
1687?TextHeight@CODLBox@@QEBAHXZ
1688; public: static unsigned short const * __ptr64 __cdecl CMetabasePath::TruncatePath(int,unsigned short const * __ptr64,class CString & __ptr64,class CString * __ptr64)
1689?TruncatePath@CMetabasePath@@SAPEBGHPEBGAEAVCString@@PEAV2@@Z
1690; int __cdecl UnixToPCText(class CString & __ptr64,unsigned short const * __ptr64)
1691?UnixToPCText@@YAHAEAVCString@@PEBG@Z
1692; public: long __cdecl CIISApplication::Unload(int) __ptr64
1693?Unload@CIISApplication@@QEAAJH@Z
1694; protected: void __cdecl CRMCListBoxResources::UnprepareBitmaps(void) __ptr64
1695?UnprepareBitmaps@CRMCListBoxResources@@IEAAXXZ
1696; public: static void __cdecl CError::UnregisterFacility(unsigned long)
1697?UnregisterFacility@CError@@SAXK@Z
1698; protected: int __cdecl CRMCListBoxHeader::UseButtons(void)const __ptr64
1699?UseButtons@CRMCListBoxHeader@@IEBAHXZ
1700; protected: int __cdecl CRMCListBoxHeader::UseStretch(void)const __ptr64
1701?UseStretch@CRMCListBoxHeader@@IEBAHXZ
1702; public: static int __cdecl CINumber::UseSystemDefault(void)
1703?UseSystemDefault@CINumber@@SAHXZ
1704; public: static int __cdecl CINumber::UseUserDefault(void)
1705?UseUserDefault@CINumber@@SAHXZ
1706; public: int __cdecl CComAuthInfo::UsesImpersonation(void)const __ptr64
1707?UsesImpersonation@CComAuthInfo@@QEBAHXZ
1708; public: int __cdecl CIISWizardPage::ValidateString(class CEdit & __ptr64,class CString & __ptr64,int,int) __ptr64
1709?ValidateString@CIISWizardPage@@QEAAHAEAVCEdit@@AEAVCString@@HH@Z
1710; int __cdecl VerifyState(void)
1711?VerifyState@@YAHXZ
1712; public: static unsigned long __cdecl CComAuthInfo::VerifyUserPassword(unsigned short const * __ptr64,unsigned short const * __ptr64)
1713?VerifyUserPassword@CComAuthInfo@@SAKPEBG0@Z
1714; public: unsigned long __cdecl CError::Win32Error(void)const __ptr64
1715?Win32Error@CError@@QEBAKXZ
1716; public: static unsigned long __cdecl CError::Win32Error(long)
1717?Win32Error@CError@@SAKJ@Z
1718; protected: virtual void __cdecl CIISWizardSheet::WinHelpW(unsigned long,unsigned int) __ptr64
1719?WinHelpW@CIISWizardSheet@@MEAAXKI@Z
1720; public: long __cdecl CIISApplication::WriteFriendlyName(unsigned short const * __ptr64) __ptr64
1721?WriteFriendlyName@CIISApplication@@QEAAJPEBG@Z
1722; public: long __cdecl CIISApplication::WritePoolId(unsigned short const * __ptr64) __ptr64
1723?WritePoolId@CIISApplication@@QEAAJPEBG@Z
1724; protected: static struct CRuntimeClass * __ptr64 __cdecl CEmphasizedDialog::_GetBaseClass(void)
1725?_GetBaseClass@CEmphasizedDialog@@KAPEAUCRuntimeClass@@XZ
1726; protected: static struct CRuntimeClass * __ptr64 __cdecl CHeaderListBox::_GetBaseClass(void)
1727?_GetBaseClass@CHeaderListBox@@KAPEAUCRuntimeClass@@XZ
1728; protected: static struct CRuntimeClass * __ptr64 __cdecl CIISWizardBookEnd::_GetBaseClass(void)
1729?_GetBaseClass@CIISWizardBookEnd@@KAPEAUCRuntimeClass@@XZ
1730; protected: static struct CRuntimeClass * __ptr64 __cdecl CIISWizardPage::_GetBaseClass(void)
1731?_GetBaseClass@CIISWizardPage@@KAPEAUCRuntimeClass@@XZ
1732; protected: static struct CRuntimeClass * __ptr64 __cdecl CIISWizardSheet::_GetBaseClass(void)
1733?_GetBaseClass@CIISWizardSheet@@KAPEAUCRuntimeClass@@XZ
1734; protected: static struct CRuntimeClass * __ptr64 __cdecl CRMCComboBox::_GetBaseClass(void)
1735?_GetBaseClass@CRMCComboBox@@KAPEAUCRuntimeClass@@XZ
1736; protected: static struct CRuntimeClass * __ptr64 __cdecl CRMCListBox::_GetBaseClass(void)
1737?_GetBaseClass@CRMCListBox@@KAPEAUCRuntimeClass@@XZ
1738; protected: static struct CRuntimeClass * __ptr64 __cdecl CRMCListBoxHeader::_GetBaseClass(void)
1739?_GetBaseClass@CRMCListBoxHeader@@KAPEAUCRuntimeClass@@XZ
1740; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CConfirmDlg::_GetBaseMessageMap(void)
1741?_GetBaseMessageMap@CConfirmDlg@@KAPEBUAFX_MSGMAP@@XZ
1742; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CEmphasizedDialog::_GetBaseMessageMap(void)
1743?_GetBaseMessageMap@CEmphasizedDialog@@KAPEBUAFX_MSGMAP@@XZ
1744; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CHeaderListBox::_GetBaseMessageMap(void)
1745?_GetBaseMessageMap@CHeaderListBox@@KAPEBUAFX_MSGMAP@@XZ
1746; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CIISWizardBookEnd::_GetBaseMessageMap(void)
1747?_GetBaseMessageMap@CIISWizardBookEnd@@KAPEBUAFX_MSGMAP@@XZ
1748; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CIISWizardPage::_GetBaseMessageMap(void)
1749?_GetBaseMessageMap@CIISWizardPage@@KAPEBUAFX_MSGMAP@@XZ
1750; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CIISWizardSheet::_GetBaseMessageMap(void)
1751?_GetBaseMessageMap@CIISWizardSheet@@KAPEBUAFX_MSGMAP@@XZ
1752; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CInheritanceDlg::_GetBaseMessageMap(void)
1753?_GetBaseMessageMap@CInheritanceDlg@@KAPEBUAFX_MSGMAP@@XZ
1754; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CRMCComboBox::_GetBaseMessageMap(void)
1755?_GetBaseMessageMap@CRMCComboBox@@KAPEBUAFX_MSGMAP@@XZ
1756; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CRMCListBox::_GetBaseMessageMap(void)
1757?_GetBaseMessageMap@CRMCListBox@@KAPEBUAFX_MSGMAP@@XZ
1758; protected: static struct AFX_MSGMAP const * __ptr64 __cdecl CRMCListBoxHeader::_GetBaseMessageMap(void)
1759?_GetBaseMessageMap@CRMCListBoxHeader@@KAPEBUAFX_MSGMAP@@XZ
1760; protected: void __cdecl CODLBox::__DrawItem(struct tagDRAWITEMSTRUCT * __ptr64) __ptr64
1761?__DrawItem@CODLBox@@IEAAXPEAUtagDRAWITEMSTRUCT@@@Z
1762; public: virtual int __cdecl CRMCComboBox::__GetCount(void)const __ptr64
1763?__GetCount@CRMCComboBox@@UEBAHXZ
1764; public: virtual int __cdecl CRMCListBox::__GetCount(void)const __ptr64
1765?__GetCount@CRMCListBox@@UEBAHXZ
1766; protected: void __cdecl CODLBox::__MeasureItem(struct tagMEASUREITEMSTRUCT * __ptr64) __ptr64
1767?__MeasureItem@CODLBox@@IEAAXPEAUtagMEASUREITEMSTRUCT@@@Z
1768; public: virtual int __cdecl CRMCComboBox::__SetItemHeight(int,unsigned int) __ptr64
1769?__SetItemHeight@CRMCComboBox@@UEAAHHI@Z
1770; public: virtual int __cdecl CRMCListBox::__SetItemHeight(int,unsigned int) __ptr64
1771?__SetItemHeight@CRMCListBox@@UEAAHHI@Z
1772; protected: static unsigned short const CMetabasePath::_chSep
1773?_chSep@CMetabasePath@@1GB
1774; protected: static unsigned short const * __ptr64 const __ptr64 CMetabasePath::_cszMachine
1775?_cszMachine@CMetabasePath@@1QEBGEB
1776; protected: static unsigned short const * __ptr64 const __ptr64 CMetabasePath::_cszRoot
1777?_cszRoot@CMetabasePath@@1QEBGEB
1778; protected: static unsigned short const * __ptr64 const __ptr64 CMetabasePath::_cszSep
1779?_cszSep@CMetabasePath@@1QEBGEB
1780; private: static int CINumber::_fAllocated
1781?_fAllocated@CINumber@@0HA DATA
1782; private: static int CINumber::_fCurrencyPrefix
1783?_fCurrencyPrefix@CINumber@@0HA DATA
1784; private: static int CINumber::_fInitialized
1785?_fInitialized@CINumber@@0HA DATA
1786; private: static struct AFX_MSGMAP_ENTRY const * const CConfirmDlg::_messageEntries
1787?_messageEntries@CConfirmDlg@@0QBUAFX_MSGMAP_ENTRY@@B
1788; private: static struct AFX_MSGMAP_ENTRY const * const CEmphasizedDialog::_messageEntries
1789?_messageEntries@CEmphasizedDialog@@0QBUAFX_MSGMAP_ENTRY@@B
1790; private: static struct AFX_MSGMAP_ENTRY const * const CHeaderListBox::_messageEntries
1791?_messageEntries@CHeaderListBox@@0QBUAFX_MSGMAP_ENTRY@@B
1792; private: static struct AFX_MSGMAP_ENTRY const * const CIISWizardBookEnd::_messageEntries
1793?_messageEntries@CIISWizardBookEnd@@0QBUAFX_MSGMAP_ENTRY@@B
1794; private: static struct AFX_MSGMAP_ENTRY const * const CIISWizardPage::_messageEntries
1795?_messageEntries@CIISWizardPage@@0QBUAFX_MSGMAP_ENTRY@@B
1796; private: static struct AFX_MSGMAP_ENTRY const * const CIISWizardSheet::_messageEntries
1797?_messageEntries@CIISWizardSheet@@0QBUAFX_MSGMAP_ENTRY@@B
1798; private: static struct AFX_MSGMAP_ENTRY const * const CInheritanceDlg::_messageEntries
1799?_messageEntries@CInheritanceDlg@@0QBUAFX_MSGMAP_ENTRY@@B
1800; private: static struct AFX_MSGMAP_ENTRY const * const CRMCComboBox::_messageEntries
1801?_messageEntries@CRMCComboBox@@0QBUAFX_MSGMAP_ENTRY@@B
1802; private: static struct AFX_MSGMAP_ENTRY const * const CRMCListBox::_messageEntries
1803?_messageEntries@CRMCListBox@@0QBUAFX_MSGMAP_ENTRY@@B
1804; private: static struct AFX_MSGMAP_ENTRY const * const CRMCListBoxHeader::_messageEntries
1805?_messageEntries@CRMCListBoxHeader@@0QBUAFX_MSGMAP_ENTRY@@B
1806; protected: static class CString * __ptr64 __ptr64 CINumber::_pstr
1807?_pstr@CINumber@@1PEAVCString@@EA DATA
1808; public: static class CString * __ptr64 __ptr64 CINumber::_pstrBadNumber
1809?_pstrBadNumber@CINumber@@2PEAVCString@@EA DATA
1810; private: static class CString * __ptr64 __ptr64 CINumber::_pstrCurrency
1811?_pstrCurrency@CINumber@@0PEAVCString@@EA DATA
1812; private: static class CString * __ptr64 __ptr64 CINumber::_pstrDecimalPoint
1813?_pstrDecimalPoint@CINumber@@0PEAVCString@@EA DATA
1814; private: static class CString * __ptr64 __ptr64 CINumber::_pstrThousandSeparator
1815?_pstrThousandSeparator@CINumber@@0PEAVCString@@EA DATA
1816; public: static struct CRuntimeClass const CEmphasizedDialog::classCEmphasizedDialog
1817?classCEmphasizedDialog@CEmphasizedDialog@@2UCRuntimeClass@@B
1818; public: static struct CRuntimeClass const CHeaderListBox::classCHeaderListBox
1819?classCHeaderListBox@CHeaderListBox@@2UCRuntimeClass@@B
1820; public: static struct CRuntimeClass const CIISWizardBookEnd::classCIISWizardBookEnd
1821?classCIISWizardBookEnd@CIISWizardBookEnd@@2UCRuntimeClass@@B
1822; public: static struct CRuntimeClass const CIISWizardPage::classCIISWizardPage
1823?classCIISWizardPage@CIISWizardPage@@2UCRuntimeClass@@B
1824; public: static struct CRuntimeClass const CIISWizardSheet::classCIISWizardSheet
1825?classCIISWizardSheet@CIISWizardSheet@@2UCRuntimeClass@@B
1826; public: static struct CRuntimeClass const CRMCComboBox::classCRMCComboBox
1827?classCRMCComboBox@CRMCComboBox@@2UCRuntimeClass@@B
1828; public: static struct CRuntimeClass const CRMCListBox::classCRMCListBox
1829?classCRMCListBox@CRMCListBox@@2UCRuntimeClass@@B
1830; public: static struct CRuntimeClass const CRMCListBoxHeader::classCRMCListBoxHeader
1831?classCRMCListBoxHeader@CRMCListBoxHeader@@2UCRuntimeClass@@B
1832; public: class CDC const & __ptr64 __cdecl CRMCListBoxResources::dcBitMap(void)const __ptr64
1833?dcBitMap@CRMCListBoxResources@@QEBAAEBVCDC@@XZ
1834; unsigned short const * __ptr64 const __ptr64 g_lpszDummyPassword
1835?g_lpszDummyPassword@@3PEBGEB DATA
1836; protected: static struct AFX_MSGMAP const CConfirmDlg::messageMap
1837?messageMap@CConfirmDlg@@1UAFX_MSGMAP@@B
1838; protected: static struct AFX_MSGMAP const CEmphasizedDialog::messageMap
1839?messageMap@CEmphasizedDialog@@1UAFX_MSGMAP@@B
1840; protected: static struct AFX_MSGMAP const CHeaderListBox::messageMap
1841?messageMap@CHeaderListBox@@1UAFX_MSGMAP@@B
1842; protected: static struct AFX_MSGMAP const CIISWizardBookEnd::messageMap
1843?messageMap@CIISWizardBookEnd@@1UAFX_MSGMAP@@B
1844; protected: static struct AFX_MSGMAP const CIISWizardPage::messageMap
1845?messageMap@CIISWizardPage@@1UAFX_MSGMAP@@B
1846; protected: static struct AFX_MSGMAP const CIISWizardSheet::messageMap
1847?messageMap@CIISWizardSheet@@1UAFX_MSGMAP@@B
1848; protected: static struct AFX_MSGMAP const CInheritanceDlg::messageMap
1849?messageMap@CInheritanceDlg@@1UAFX_MSGMAP@@B
1850; protected: static struct AFX_MSGMAP const CRMCComboBox::messageMap
1851?messageMap@CRMCComboBox@@1UAFX_MSGMAP@@B
1852; protected: static struct AFX_MSGMAP const CRMCListBox::messageMap
1853?messageMap@CRMCListBox@@1UAFX_MSGMAP@@B
1854; protected: static struct AFX_MSGMAP const CRMCListBoxHeader::messageMap
1855?messageMap@CRMCListBoxHeader@@1UAFX_MSGMAP@@B
1856; protected: static int const CMetaKey::s_MetaTableSize
1857?s_MetaTableSize@CMetaKey@@1HB
1858; protected: static unsigned long CError::s_cdwFacilities
1859?s_cdwFacilities@CError@@1KA DATA
1860; protected: static long CError::s_cdwMaxLMErr
1861?s_cdwMaxLMErr@CError@@1JA DATA
1862; protected: static long CError::s_cdwMaxWSErr
1863?s_cdwMaxWSErr@CError@@1JA DATA
1864; protected: static long CError::s_cdwMinLMErr
1865?s_cdwMinLMErr@CError@@1JA DATA
1866; protected: static long CError::s_cdwMinWSErr
1867?s_cdwMinWSErr@CError@@1JA DATA
1868; protected: static unsigned short const CError::s_chEscNumber
1869?s_chEscNumber@CError@@1GB
1870; protected: static unsigned short const CError::s_chEscText
1871?s_chEscText@CError@@1GB
1872; protected: static unsigned short const CError::s_chEscape
1873?s_chEscape@CError@@1GB
1874; protected: static int const CIISWizardSheet::s_cnBoldDeltaFont
1875?s_cnBoldDeltaFont@CIISWizardSheet@@1HB
1876; protected: static int const CIISWizardSheet::s_cnBoldDeltaHeight
1877?s_cnBoldDeltaHeight@CIISWizardSheet@@1HB
1878; protected: static int const CIISWizardSheet::s_cnBoldDeltaWidth
1879?s_cnBoldDeltaWidth@CIISWizardSheet@@1HB
1880; protected: static int const CIISWizardPage::s_cnHeaderOffset
1881?s_cnHeaderOffset@CIISWizardPage@@1HB
1882; protected: static unsigned short const * __ptr64 * CError::s_cszFacility
1883?s_cszFacility@CError@@1PAPEBGA DATA
1884; protected: static unsigned short const * __ptr64 const __ptr64 CError::s_cszLMDLL
1885?s_cszLMDLL@CError@@1PEBGEB DATA
1886; protected: static unsigned short const * __ptr64 const __ptr64 CError::s_cszWSDLL
1887?s_cszWSDLL@CError@@1PEBGEB DATA
1888; protected: static int CError::s_fAllocated
1889?s_fAllocated@CError@@1HA DATA
1890; protected: static class CMap<unsigned long,unsigned long & __ptr64,class CString,class CString & __ptr64> * __ptr64 __ptr64 CError::s_pmapFacilities
1891?s_pmapFacilities@CError@@1PEAV?$CMap@KAEAKVCString@@AEAV1@@@EA DATA
1892; protected: static class CString * __ptr64 __ptr64 CError::s_pstrDefError
1893?s_pstrDefError@CError@@1PEAVCString@@EA DATA
1894; protected: static class CString * __ptr64 __ptr64 CError::s_pstrDefSuccs
1895?s_pstrDefSuccs@CError@@1PEAVCString@@EA DATA
1896; protected: static struct CMetaKey::tagMDFIELDDEF const * const CMetaKey::s_rgMetaTable
1897?s_rgMetaTable@CMetaKey@@1QBUtagMDFIELDDEF@1@B
1898; protected: static unsigned short const * __ptr64 const __ptr64 CMetaBack::s_szMasterAppRoot
1899?s_szMasterAppRoot@CMetaBack@@1QEBGEB
1900DllRegisterServer
1901DllUnregisterServer
lib/libc/mingw/lib64/iisutil.def created+2029
......@@ -0,0 +1,2029 @@
1;
2; Exports of file IISUTIL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IISUTIL.dll
8EXPORTS
9; public: __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::CDataCache<struct DATETIME_FORMAT_ENTRY>(void) __ptr64
10??0?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@QEAA@XZ
11; public: __cdecl CDataCache<class CDateTime>::CDataCache<class CDateTime>(void) __ptr64
12??0?$CDataCache@VCDateTime@@@@QEAA@XZ
13; public: __cdecl ALLOC_CACHE_HANDLER::ALLOC_CACHE_HANDLER(char const * __ptr64,struct _ALLOC_CACHE_CONFIGURATION const * __ptr64,int) __ptr64
14??0ALLOC_CACHE_HANDLER@@QEAA@PEBDPEBU_ALLOC_CACHE_CONFIGURATION@@H@Z
15; public: __cdecl ASCLOG_DATETIME_CACHE::ASCLOG_DATETIME_CACHE(void) __ptr64
16??0ASCLOG_DATETIME_CACHE@@QEAA@XZ
17; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
18??0BUFFER@@QEAA@I@Z
19; public: __cdecl BUFFER::BUFFER(unsigned char * __ptr64,unsigned int) __ptr64
20??0BUFFER@@QEAA@PEAEI@Z
21; public: __cdecl BUFFER_CHAIN::BUFFER_CHAIN(void) __ptr64
22??0BUFFER_CHAIN@@QEAA@XZ
23; public: __cdecl BUFFER_CHAIN_ITEM::BUFFER_CHAIN_ITEM(unsigned int) __ptr64
24??0BUFFER_CHAIN_ITEM@@QEAA@I@Z
25; public: __cdecl CACHED_DATETIME_FORMATS::CACHED_DATETIME_FORMATS(void) __ptr64
26??0CACHED_DATETIME_FORMATS@@QEAA@XZ
27; public: __cdecl CCritSec::CCritSec(void) __ptr64
28??0CCritSec@@QEAA@XZ
29; public: __cdecl CDFTCache::CDFTCache(void) __ptr64
30??0CDFTCache@@QEAA@XZ
31; public: __cdecl CDateTime::CDateTime(struct _FILETIME const & __ptr64) __ptr64
32??0CDateTime@@QEAA@AEBU_FILETIME@@@Z
33; public: __cdecl CDateTime::CDateTime(struct _FILETIME const & __ptr64,struct _SYSTEMTIME const & __ptr64) __ptr64
34??0CDateTime@@QEAA@AEBU_FILETIME@@AEBU_SYSTEMTIME@@@Z
35; public: __cdecl CDateTime::CDateTime(struct _SYSTEMTIME const & __ptr64) __ptr64
36??0CDateTime@@QEAA@AEBU_SYSTEMTIME@@@Z
37; public: __cdecl CDateTime::CDateTime(void) __ptr64
38??0CDateTime@@QEAA@XZ
39; public: __cdecl CDoubleList::CDoubleList(void) __ptr64
40??0CDoubleList@@QEAA@XZ
41; public: __cdecl CEtwTracer::CEtwTracer(void) __ptr64
42??0CEtwTracer@@QEAA@XZ
43; public: __cdecl CFakeLock::CFakeLock(void) __ptr64
44??0CFakeLock@@QEAA@XZ
45; public: __cdecl CHUNK_BUFFER::CHUNK_BUFFER(void) __ptr64
46??0CHUNK_BUFFER@@QEAA@XZ
47; public: __cdecl CLKRHashTable::CLKRHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,unsigned long,bool) __ptr64
48??0CLKRHashTable@@QEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKK_N@Z
49; public: __cdecl CLKRHashTableStats::CLKRHashTableStats(void) __ptr64
50??0CLKRHashTableStats@@QEAA@XZ
51; protected: __cdecl CLKRHashTable_Iterator::CLKRHashTable_Iterator(class CLKRHashTable * __ptr64,short) __ptr64
52??0CLKRHashTable_Iterator@@IEAA@PEAVCLKRHashTable@@F@Z
53; public: __cdecl CLKRHashTable_Iterator::CLKRHashTable_Iterator(class CLKRHashTable_Iterator const & __ptr64) __ptr64
54??0CLKRHashTable_Iterator@@QEAA@AEBV0@@Z
55; public: __cdecl CLKRHashTable_Iterator::CLKRHashTable_Iterator(void) __ptr64
56??0CLKRHashTable_Iterator@@QEAA@XZ
57; private: __cdecl CLKRLinearHashTable::CLKRLinearHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,class CLKRHashTable * __ptr64,bool) __ptr64
58??0CLKRLinearHashTable@@AEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKPEAVCLKRHashTable@@_N@Z
59; public: __cdecl CLKRLinearHashTable::CLKRLinearHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,unsigned long,bool) __ptr64
60??0CLKRLinearHashTable@@QEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKK_N@Z
61; protected: __cdecl CLKRLinearHashTable_Iterator::CLKRLinearHashTable_Iterator(class CLKRLinearHashTable * __ptr64,class CNodeClump * __ptr64,unsigned long,short) __ptr64
62??0CLKRLinearHashTable_Iterator@@IEAA@PEAVCLKRLinearHashTable@@PEAVCNodeClump@@KF@Z
63; public: __cdecl CLKRLinearHashTable_Iterator::CLKRLinearHashTable_Iterator(class CLKRLinearHashTable_Iterator const & __ptr64) __ptr64
64??0CLKRLinearHashTable_Iterator@@QEAA@AEBV0@@Z
65; public: __cdecl CLKRLinearHashTable_Iterator::CLKRLinearHashTable_Iterator(void) __ptr64
66??0CLKRLinearHashTable_Iterator@@QEAA@XZ
67; public: __cdecl CLockedDoubleList::CLockedDoubleList(void) __ptr64
68??0CLockedDoubleList@@QEAA@XZ
69; public: __cdecl CLockedSingleList::CLockedSingleList(void) __ptr64
70??0CLockedSingleList@@QEAA@XZ
71; public: __cdecl CReaderWriterLock2::CReaderWriterLock2(void) __ptr64
72??0CReaderWriterLock2@@QEAA@XZ
73; public: __cdecl CReaderWriterLock3::CReaderWriterLock3(void) __ptr64
74??0CReaderWriterLock3@@QEAA@XZ
75; public: __cdecl CReaderWriterLock::CReaderWriterLock(void) __ptr64
76??0CReaderWriterLock@@QEAA@XZ
77; public: __cdecl CRtlResource::CRtlResource(void) __ptr64
78??0CRtlResource@@QEAA@XZ
79; public: __cdecl CSecurityDispenser::CSecurityDispenser(void) __ptr64
80??0CSecurityDispenser@@QEAA@XZ
81; public: __cdecl CShareLock::CShareLock(void) __ptr64
82??0CShareLock@@QEAA@XZ
83; public: __cdecl CSharelock::CSharelock(int,int) __ptr64
84??0CSharelock@@QEAA@HH@Z
85; public: __cdecl CSingleList::CSingleList(void) __ptr64
86??0CSingleList@@QEAA@XZ
87; public: __cdecl CSmallSpinLock::CSmallSpinLock(void) __ptr64
88??0CSmallSpinLock@@QEAA@XZ
89; public: __cdecl CSpinLock::CSpinLock(void) __ptr64
90??0CSpinLock@@QEAA@XZ
91; public: __cdecl EVENT_LOG::EVENT_LOG(unsigned short const * __ptr64) __ptr64
92??0EVENT_LOG@@QEAA@PEBG@Z
93; public: __cdecl EXTLOG_DATETIME_CACHE::EXTLOG_DATETIME_CACHE(void) __ptr64
94??0EXTLOG_DATETIME_CACHE@@QEAA@XZ
95; private: __cdecl IPM_MESSAGE_PIPE::IPM_MESSAGE_PIPE(void) __ptr64
96??0IPM_MESSAGE_PIPE@@AEAA@XZ
97; public: __cdecl MB::MB(struct IMSAdminBaseW * __ptr64) __ptr64
98??0MB@@QEAA@PEAUIMSAdminBaseW@@@Z
99; public: __cdecl MB_BASE_NOTIFICATION_SINK::MB_BASE_NOTIFICATION_SINK(void) __ptr64
100??0MB_BASE_NOTIFICATION_SINK@@QEAA@XZ
101; public: __cdecl MULTISZ::MULTISZ(class MULTISZ const & __ptr64) __ptr64
102??0MULTISZ@@QEAA@AEBV0@@Z
103; public: __cdecl MULTISZ::MULTISZ(unsigned short * __ptr64,unsigned long) __ptr64
104??0MULTISZ@@QEAA@PEAGK@Z
105; public: __cdecl MULTISZ::MULTISZ(unsigned short const * __ptr64) __ptr64
106??0MULTISZ@@QEAA@PEBG@Z
107; public: __cdecl MULTISZ::MULTISZ(void) __ptr64
108??0MULTISZ@@QEAA@XZ
109; public: __cdecl MULTISZA::MULTISZA(class MULTISZA const & __ptr64) __ptr64
110??0MULTISZA@@QEAA@AEBV0@@Z
111; public: __cdecl MULTISZA::MULTISZA(char * __ptr64,unsigned long) __ptr64
112??0MULTISZA@@QEAA@PEADK@Z
113; public: __cdecl MULTISZA::MULTISZA(char const * __ptr64) __ptr64
114??0MULTISZA@@QEAA@PEBD@Z
115; public: __cdecl MULTISZA::MULTISZA(void) __ptr64
116??0MULTISZA@@QEAA@XZ
117; private: __cdecl STRA::STRA(class STRA const & __ptr64) __ptr64
118??0STRA@@AEAA@AEBV0@@Z
119; private: __cdecl STRA::STRA(char * __ptr64) __ptr64
120??0STRA@@AEAA@PEAD@Z
121; private: __cdecl STRA::STRA(char const * __ptr64) __ptr64
122??0STRA@@AEAA@PEBD@Z
123; public: __cdecl STRA::STRA(char * __ptr64,unsigned long) __ptr64
124??0STRA@@QEAA@PEADK@Z
125; public: __cdecl STRA::STRA(void) __ptr64
126??0STRA@@QEAA@XZ
127; public: __cdecl STRAU::STRAU(class STRAU & __ptr64) __ptr64
128??0STRAU@@QEAA@AEAV0@@Z
129; public: __cdecl STRAU::STRAU(char const * __ptr64) __ptr64
130??0STRAU@@QEAA@PEBD@Z
131; public: __cdecl STRAU::STRAU(char const * __ptr64,int) __ptr64
132??0STRAU@@QEAA@PEBDH@Z
133; public: __cdecl STRAU::STRAU(unsigned short const * __ptr64) __ptr64
134??0STRAU@@QEAA@PEBG@Z
135; public: __cdecl STRAU::STRAU(void) __ptr64
136??0STRAU@@QEAA@XZ
137; private: __cdecl STRU::STRU(class STRU const & __ptr64) __ptr64
138??0STRU@@AEAA@AEBV0@@Z
139; private: __cdecl STRU::STRU(unsigned short * __ptr64) __ptr64
140??0STRU@@AEAA@PEAG@Z
141; private: __cdecl STRU::STRU(unsigned short const * __ptr64) __ptr64
142??0STRU@@AEAA@PEBG@Z
143; public: __cdecl STRU::STRU(unsigned short * __ptr64,unsigned long) __ptr64
144??0STRU@@QEAA@PEAGK@Z
145; public: __cdecl STRU::STRU(void) __ptr64
146??0STRU@@QEAA@XZ
147; public: __cdecl TS_RESOURCE::TS_RESOURCE(void) __ptr64
148??0TS_RESOURCE@@QEAA@XZ
149; public: __cdecl W3_DATETIME_CACHE::W3_DATETIME_CACHE(void) __ptr64
150??0W3_DATETIME_CACHE@@QEAA@XZ
151; public: __cdecl W3_TRACE_LOG::W3_TRACE_LOG(class W3_TRACE_LOG_FACTORY * __ptr64) __ptr64
152??0W3_TRACE_LOG@@QEAA@PEAVW3_TRACE_LOG_FACTORY@@@Z
153; private: __cdecl W3_TRACE_LOG_FACTORY::W3_TRACE_LOG_FACTORY(void) __ptr64
154??0W3_TRACE_LOG_FACTORY@@AEAA@XZ
155; public: __cdecl ALLOC_CACHE_HANDLER::~ALLOC_CACHE_HANDLER(void) __ptr64
156??1ALLOC_CACHE_HANDLER@@QEAA@XZ
157; public: virtual __cdecl ASCLOG_DATETIME_CACHE::~ASCLOG_DATETIME_CACHE(void) __ptr64
158??1ASCLOG_DATETIME_CACHE@@UEAA@XZ
159; public: __cdecl BUFFER::~BUFFER(void) __ptr64
160??1BUFFER@@QEAA@XZ
161; public: __cdecl BUFFER_CHAIN::~BUFFER_CHAIN(void) __ptr64
162??1BUFFER_CHAIN@@QEAA@XZ
163; public: __cdecl BUFFER_CHAIN_ITEM::~BUFFER_CHAIN_ITEM(void) __ptr64
164??1BUFFER_CHAIN_ITEM@@QEAA@XZ
165; public: virtual __cdecl CACHED_DATETIME_FORMATS::~CACHED_DATETIME_FORMATS(void) __ptr64
166??1CACHED_DATETIME_FORMATS@@UEAA@XZ
167; public: __cdecl CCritSec::~CCritSec(void) __ptr64
168??1CCritSec@@QEAA@XZ
169; public: __cdecl CDoubleList::~CDoubleList(void) __ptr64
170??1CDoubleList@@QEAA@XZ
171; public: __cdecl CEtwTracer::~CEtwTracer(void) __ptr64
172??1CEtwTracer@@QEAA@XZ
173; public: __cdecl CFakeLock::~CFakeLock(void) __ptr64
174??1CFakeLock@@QEAA@XZ
175; public: __cdecl CHUNK_BUFFER::~CHUNK_BUFFER(void) __ptr64
176??1CHUNK_BUFFER@@QEAA@XZ
177; public: __cdecl CLKRHashTable::~CLKRHashTable(void) __ptr64
178??1CLKRHashTable@@QEAA@XZ
179; public: __cdecl CLKRHashTable_Iterator::~CLKRHashTable_Iterator(void) __ptr64
180??1CLKRHashTable_Iterator@@QEAA@XZ
181; public: __cdecl CLKRLinearHashTable::~CLKRLinearHashTable(void) __ptr64
182??1CLKRLinearHashTable@@QEAA@XZ
183; public: __cdecl CLKRLinearHashTable_Iterator::~CLKRLinearHashTable_Iterator(void) __ptr64
184??1CLKRLinearHashTable_Iterator@@QEAA@XZ
185; public: __cdecl CLockedDoubleList::~CLockedDoubleList(void) __ptr64
186??1CLockedDoubleList@@QEAA@XZ
187; public: __cdecl CLockedSingleList::~CLockedSingleList(void) __ptr64
188??1CLockedSingleList@@QEAA@XZ
189; public: __cdecl CRtlResource::~CRtlResource(void) __ptr64
190??1CRtlResource@@QEAA@XZ
191; public: __cdecl CSecurityDispenser::~CSecurityDispenser(void) __ptr64
192??1CSecurityDispenser@@QEAA@XZ
193; public: __cdecl CShareLock::~CShareLock(void) __ptr64
194??1CShareLock@@QEAA@XZ
195; public: __cdecl CSharelock::~CSharelock(void) __ptr64
196??1CSharelock@@QEAA@XZ
197; public: __cdecl CSingleList::~CSingleList(void) __ptr64
198??1CSingleList@@QEAA@XZ
199; public: __cdecl EVENT_LOG::~EVENT_LOG(void) __ptr64
200??1EVENT_LOG@@QEAA@XZ
201; public: virtual __cdecl EXTLOG_DATETIME_CACHE::~EXTLOG_DATETIME_CACHE(void) __ptr64
202??1EXTLOG_DATETIME_CACHE@@UEAA@XZ
203; private: __cdecl IPM_MESSAGE_PIPE::~IPM_MESSAGE_PIPE(void) __ptr64
204??1IPM_MESSAGE_PIPE@@AEAA@XZ
205; public: __cdecl MB::~MB(void) __ptr64
206??1MB@@QEAA@XZ
207; public: virtual __cdecl MB_BASE_NOTIFICATION_SINK::~MB_BASE_NOTIFICATION_SINK(void) __ptr64
208??1MB_BASE_NOTIFICATION_SINK@@UEAA@XZ
209; public: __cdecl MULTISZ::~MULTISZ(void) __ptr64
210??1MULTISZ@@QEAA@XZ
211; public: __cdecl MULTISZA::~MULTISZA(void) __ptr64
212??1MULTISZA@@QEAA@XZ
213; public: __cdecl STRA::~STRA(void) __ptr64
214??1STRA@@QEAA@XZ
215; public: __cdecl STRAU::~STRAU(void) __ptr64
216??1STRAU@@QEAA@XZ
217; public: __cdecl STRU::~STRU(void) __ptr64
218??1STRU@@QEAA@XZ
219; public: __cdecl TS_RESOURCE::~TS_RESOURCE(void) __ptr64
220??1TS_RESOURCE@@QEAA@XZ
221; public: virtual __cdecl W3_DATETIME_CACHE::~W3_DATETIME_CACHE(void) __ptr64
222??1W3_DATETIME_CACHE@@UEAA@XZ
223; private: __cdecl W3_TRACE_LOG::~W3_TRACE_LOG(void) __ptr64
224??1W3_TRACE_LOG@@AEAA@XZ
225; private: __cdecl W3_TRACE_LOG_FACTORY::~W3_TRACE_LOG_FACTORY(void) __ptr64
226??1W3_TRACE_LOG_FACTORY@@AEAA@XZ
227; public: static void * __ptr64 __cdecl CLKRLinearHashTable::operator new(unsigned __int64)
228??2CLKRLinearHashTable@@SAPEAX_K@Z
229; public: static void __cdecl CLKRLinearHashTable::operator delete(void * __ptr64)
230??3CLKRLinearHashTable@@SAXPEAX@Z
231; public: class CDataCache<struct DATETIME_FORMAT_ENTRY> & __ptr64 __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::operator=(class CDataCache<struct DATETIME_FORMAT_ENTRY> const & __ptr64) __ptr64
232??4?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@QEAAAEAV0@AEBV0@@Z
233; public: class CDataCache<class CDateTime> & __ptr64 __cdecl CDataCache<class CDateTime>::operator=(class CDataCache<class CDateTime> const & __ptr64) __ptr64
234??4?$CDataCache@VCDateTime@@@@QEAAAEAV0@AEBV0@@Z
235; public: class CLockBase<1,1,3,1,3,2> & __ptr64 __cdecl CLockBase<1,1,3,1,3,2>::operator=(class CLockBase<1,1,3,1,3,2> const & __ptr64) __ptr64
236??4?$CLockBase@$00$00$02$00$02$01@@QEAAAEAV0@AEBV0@@Z
237; public: class CLockBase<2,1,1,1,3,2> & __ptr64 __cdecl CLockBase<2,1,1,1,3,2>::operator=(class CLockBase<2,1,1,1,3,2> const & __ptr64) __ptr64
238??4?$CLockBase@$01$00$00$00$02$01@@QEAAAEAV0@AEBV0@@Z
239; public: class CLockBase<3,1,1,1,1,1> & __ptr64 __cdecl CLockBase<3,1,1,1,1,1>::operator=(class CLockBase<3,1,1,1,1,1> const & __ptr64) __ptr64
240??4?$CLockBase@$02$00$00$00$00$00@@QEAAAEAV0@AEBV0@@Z
241; public: class CLockBase<4,1,1,2,3,3> & __ptr64 __cdecl CLockBase<4,1,1,2,3,3>::operator=(class CLockBase<4,1,1,2,3,3> const & __ptr64) __ptr64
242??4?$CLockBase@$03$00$00$01$02$02@@QEAAAEAV0@AEBV0@@Z
243; public: class CLockBase<5,2,1,2,3,3> & __ptr64 __cdecl CLockBase<5,2,1,2,3,3>::operator=(class CLockBase<5,2,1,2,3,3> const & __ptr64) __ptr64
244??4?$CLockBase@$04$01$00$01$02$02@@QEAAAEAV0@AEBV0@@Z
245; public: class CLockBase<6,2,1,2,3,3> & __ptr64 __cdecl CLockBase<6,2,1,2,3,3>::operator=(class CLockBase<6,2,1,2,3,3> const & __ptr64) __ptr64
246??4?$CLockBase@$05$01$00$01$02$02@@QEAAAEAV0@AEBV0@@Z
247; public: class CLockBase<7,2,2,1,3,2> & __ptr64 __cdecl CLockBase<7,2,2,1,3,2>::operator=(class CLockBase<7,2,2,1,3,2> const & __ptr64) __ptr64
248??4?$CLockBase@$06$01$01$00$02$01@@QEAAAEAV0@AEBV0@@Z
249; public: class CLockBase<8,2,2,1,3,2> & __ptr64 __cdecl CLockBase<8,2,2,1,3,2>::operator=(class CLockBase<8,2,2,1,3,2> const & __ptr64) __ptr64
250??4?$CLockBase@$07$01$01$00$02$01@@QEAAAEAV0@AEBV0@@Z
251; public: class CLockBase<9,2,1,1,3,2> & __ptr64 __cdecl CLockBase<9,2,1,1,3,2>::operator=(class CLockBase<9,2,1,1,3,2> const & __ptr64) __ptr64
252??4?$CLockBase@$08$01$00$00$02$01@@QEAAAEAV0@AEBV0@@Z
253; public: class ALLOC_CACHE_HANDLER & __ptr64 __cdecl ALLOC_CACHE_HANDLER::operator=(class ALLOC_CACHE_HANDLER const & __ptr64) __ptr64
254??4ALLOC_CACHE_HANDLER@@QEAAAEAV0@AEBV0@@Z
255; public: class BUFFER & __ptr64 __cdecl BUFFER::operator=(class BUFFER const & __ptr64) __ptr64
256??4BUFFER@@QEAAAEAV0@AEBV0@@Z
257; public: class BUFFER_CHAIN & __ptr64 __cdecl BUFFER_CHAIN::operator=(class BUFFER_CHAIN const & __ptr64) __ptr64
258??4BUFFER_CHAIN@@QEAAAEAV0@AEBV0@@Z
259; public: class BUFFER_CHAIN_ITEM & __ptr64 __cdecl BUFFER_CHAIN_ITEM::operator=(class BUFFER_CHAIN_ITEM const & __ptr64) __ptr64
260??4BUFFER_CHAIN_ITEM@@QEAAAEAV0@AEBV0@@Z
261; public: class CCritSec & __ptr64 __cdecl CCritSec::operator=(class CCritSec const & __ptr64) __ptr64
262??4CCritSec@@QEAAAEAV0@AEBV0@@Z
263; public: class CDFTCache & __ptr64 __cdecl CDFTCache::operator=(class CDFTCache const & __ptr64) __ptr64
264??4CDFTCache@@QEAAAEAV0@AEBV0@@Z
265; public: class CDateTime & __ptr64 __cdecl CDateTime::operator=(class CDateTime const & __ptr64) __ptr64
266??4CDateTime@@QEAAAEAV0@AEBV0@@Z
267; public: class CDoubleList & __ptr64 __cdecl CDoubleList::operator=(class CDoubleList const & __ptr64) __ptr64
268??4CDoubleList@@QEAAAEAV0@AEBV0@@Z
269; public: class CFakeLock & __ptr64 __cdecl CFakeLock::operator=(class CFakeLock const & __ptr64) __ptr64
270??4CFakeLock@@QEAAAEAV0@AEBV0@@Z
271; public: class CHUNK_BUFFER & __ptr64 __cdecl CHUNK_BUFFER::operator=(class CHUNK_BUFFER const & __ptr64) __ptr64
272??4CHUNK_BUFFER@@QEAAAEAV0@AEBV0@@Z
273; public: class CLKRHashTableStats & __ptr64 __cdecl CLKRHashTableStats::operator=(class CLKRHashTableStats const & __ptr64) __ptr64
274??4CLKRHashTableStats@@QEAAAEAV0@AEBV0@@Z
275; public: class CLKRHashTable_Iterator & __ptr64 __cdecl CLKRHashTable_Iterator::operator=(class CLKRHashTable_Iterator const & __ptr64) __ptr64
276??4CLKRHashTable_Iterator@@QEAAAEAV0@AEBV0@@Z
277; public: class CLKRLinearHashTable_Iterator & __ptr64 __cdecl CLKRLinearHashTable_Iterator::operator=(class CLKRLinearHashTable_Iterator const & __ptr64) __ptr64
278??4CLKRLinearHashTable_Iterator@@QEAAAEAV0@AEBV0@@Z
279; public: class CLockedDoubleList & __ptr64 __cdecl CLockedDoubleList::operator=(class CLockedDoubleList const & __ptr64) __ptr64
280??4CLockedDoubleList@@QEAAAEAV0@AEBV0@@Z
281; public: class CLockedSingleList & __ptr64 __cdecl CLockedSingleList::operator=(class CLockedSingleList const & __ptr64) __ptr64
282??4CLockedSingleList@@QEAAAEAV0@AEBV0@@Z
283; public: class CReaderWriterLock2 & __ptr64 __cdecl CReaderWriterLock2::operator=(class CReaderWriterLock2 const & __ptr64) __ptr64
284??4CReaderWriterLock2@@QEAAAEAV0@AEBV0@@Z
285; public: class CReaderWriterLock3 & __ptr64 __cdecl CReaderWriterLock3::operator=(class CReaderWriterLock3 const & __ptr64) __ptr64
286??4CReaderWriterLock3@@QEAAAEAV0@AEBV0@@Z
287; public: class CReaderWriterLock & __ptr64 __cdecl CReaderWriterLock::operator=(class CReaderWriterLock const & __ptr64) __ptr64
288??4CReaderWriterLock@@QEAAAEAV0@AEBV0@@Z
289; public: class CRtlResource & __ptr64 __cdecl CRtlResource::operator=(class CRtlResource const & __ptr64) __ptr64
290??4CRtlResource@@QEAAAEAV0@AEBV0@@Z
291; public: class CSecurityDispenser & __ptr64 __cdecl CSecurityDispenser::operator=(class CSecurityDispenser const & __ptr64) __ptr64
292??4CSecurityDispenser@@QEAAAEAV0@AEBV0@@Z
293; public: class CSingleList & __ptr64 __cdecl CSingleList::operator=(class CSingleList const & __ptr64) __ptr64
294??4CSingleList@@QEAAAEAV0@AEBV0@@Z
295; public: class CSmallSpinLock & __ptr64 __cdecl CSmallSpinLock::operator=(class CSmallSpinLock const & __ptr64) __ptr64
296??4CSmallSpinLock@@QEAAAEAV0@AEBV0@@Z
297; public: class CSpinLock & __ptr64 __cdecl CSpinLock::operator=(class CSpinLock const & __ptr64) __ptr64
298??4CSpinLock@@QEAAAEAV0@AEBV0@@Z
299; public: struct DATETIME_FORMAT_ENTRY & __ptr64 __cdecl DATETIME_FORMAT_ENTRY::operator=(struct DATETIME_FORMAT_ENTRY const & __ptr64) __ptr64
300??4DATETIME_FORMAT_ENTRY@@QEAAAEAU0@AEBU0@@Z
301; public: class EVENT_LOG & __ptr64 __cdecl EVENT_LOG::operator=(class EVENT_LOG const & __ptr64) __ptr64
302??4EVENT_LOG@@QEAAAEAV0@AEBV0@@Z
303; public: class IPM_MESSAGE_PIPE & __ptr64 __cdecl IPM_MESSAGE_PIPE::operator=(class IPM_MESSAGE_PIPE const & __ptr64) __ptr64
304??4IPM_MESSAGE_PIPE@@QEAAAEAV0@AEBV0@@Z
305; public: class MB & __ptr64 __cdecl MB::operator=(class MB const & __ptr64) __ptr64
306??4MB@@QEAAAEAV0@AEBV0@@Z
307; public: class MULTISZ & __ptr64 __cdecl MULTISZ::operator=(class MULTISZ const & __ptr64) __ptr64
308??4MULTISZ@@QEAAAEAV0@AEBV0@@Z
309; public: class MULTISZA & __ptr64 __cdecl MULTISZA::operator=(class MULTISZA const & __ptr64) __ptr64
310??4MULTISZA@@QEAAAEAV0@AEBV0@@Z
311; private: class STRA & __ptr64 __cdecl STRA::operator=(class STRA const & __ptr64) __ptr64
312??4STRA@@AEAAAEAV0@AEBV0@@Z
313; public: class STRAU & __ptr64 __cdecl STRAU::operator=(class STRAU const & __ptr64) __ptr64
314??4STRAU@@QEAAAEAV0@AEBV0@@Z
315; private: class STRU & __ptr64 __cdecl STRU::operator=(class STRU const & __ptr64) __ptr64
316??4STRU@@AEAAAEAV0@AEBV0@@Z
317; public: class TS_RESOURCE & __ptr64 __cdecl TS_RESOURCE::operator=(class TS_RESOURCE const & __ptr64) __ptr64
318??4TS_RESOURCE@@QEAAAEAV0@AEBV0@@Z
319; public: class W3_TRACE_LOG & __ptr64 __cdecl W3_TRACE_LOG::operator=(class W3_TRACE_LOG const & __ptr64) __ptr64
320??4W3_TRACE_LOG@@QEAAAEAV0@AEBV0@@Z
321; public: class W3_TRACE_LOG_FACTORY & __ptr64 __cdecl W3_TRACE_LOG_FACTORY::operator=(class W3_TRACE_LOG_FACTORY const & __ptr64) __ptr64
322??4W3_TRACE_LOG_FACTORY@@QEAAAEAV0@AEBV0@@Z
323; public: bool __cdecl CLKRHashTable_Iterator::operator==(class CLKRHashTable_Iterator const & __ptr64)const __ptr64
324??8CLKRHashTable_Iterator@@QEBA_NAEBV0@@Z
325; public: bool __cdecl CLKRLinearHashTable_Iterator::operator==(class CLKRLinearHashTable_Iterator const & __ptr64)const __ptr64
326??8CLKRLinearHashTable_Iterator@@QEBA_NAEBV0@@Z
327; public: bool __cdecl CLKRHashTable_Iterator::operator!=(class CLKRHashTable_Iterator const & __ptr64)const __ptr64
328??9CLKRHashTable_Iterator@@QEBA_NAEBV0@@Z
329; public: bool __cdecl CLKRLinearHashTable_Iterator::operator!=(class CLKRLinearHashTable_Iterator const & __ptr64)const __ptr64
330??9CLKRLinearHashTable_Iterator@@QEBA_NAEBV0@@Z
331; const ASCLOG_DATETIME_CACHE::`vftable'
332??_7ASCLOG_DATETIME_CACHE@@6B@
333; const CACHED_DATETIME_FORMATS::`vftable'
334??_7CACHED_DATETIME_FORMATS@@6B@
335; const EXTLOG_DATETIME_CACHE::`vftable'
336??_7EXTLOG_DATETIME_CACHE@@6B@
337; const W3_DATETIME_CACHE::`vftable'
338??_7W3_DATETIME_CACHE@@6B@
339; public: void __cdecl BUFFER::`default constructor closure'(void) __ptr64
340??_FBUFFER@@QEAAXXZ
341; public: void __cdecl BUFFER_CHAIN_ITEM::`default constructor closure'(void) __ptr64
342??_FBUFFER_CHAIN_ITEM@@QEAAXXZ
343; public: void __cdecl CSharelock::`default constructor closure'(void) __ptr64
344??_FCSharelock@@QEAAXXZ
345ACopyToW
346; public: int __cdecl CSharelock::ActiveUsers(void) __ptr64
347?ActiveUsers@CSharelock@@QEAAHXZ
348; private: long __cdecl CHUNK_BUFFER::AddNewBlock(unsigned long) __ptr64
349?AddNewBlock@CHUNK_BUFFER@@AEAAJK@Z
350; public: int __cdecl MB::AddObject(unsigned short const * __ptr64) __ptr64
351?AddObject@MB@@QEAAHPEBG@Z
352; public: virtual unsigned long __cdecl MB_BASE_NOTIFICATION_SINK::AddRef(void) __ptr64
353?AddRef@MB_BASE_NOTIFICATION_SINK@@UEAAKXZ
354AddWpgToTokenDefaultDacl
355; public: unsigned long __cdecl CSecurityDispenser::AdjustTokenForAdministrators(void * __ptr64) __ptr64
356?AdjustTokenForAdministrators@CSecurityDispenser@@QEAAKPEAX@Z
357; public: void * __ptr64 __cdecl ALLOC_CACHE_HANDLER::Alloc(void) __ptr64
358?Alloc@ALLOC_CACHE_HANDLER@@QEAAPEAXXZ
359AllocateAndCreateWellKnownAcl
360AllocateAndCreateWellKnownSid
361; public: long __cdecl CHUNK_BUFFER::AllocateSpace(unsigned long,char * __ptr64 * __ptr64) __ptr64
362?AllocateSpace@CHUNK_BUFFER@@QEAAJKPEAPEAD@Z
363; public: long __cdecl CHUNK_BUFFER::AllocateSpace(unsigned long,unsigned short * __ptr64 * __ptr64) __ptr64
364?AllocateSpace@CHUNK_BUFFER@@QEAAJKPEAPEAG@Z
365; public: long __cdecl CHUNK_BUFFER::AllocateSpace(unsigned long,void * __ptr64 * __ptr64) __ptr64
366?AllocateSpace@CHUNK_BUFFER@@QEAAJKPEAPEAX@Z
367; public: long __cdecl CHUNK_BUFFER::AllocateSpace(char * __ptr64,unsigned long,char * __ptr64 * __ptr64) __ptr64
368?AllocateSpace@CHUNK_BUFFER@@QEAAJPEADKPEAPEAD@Z
369; public: long __cdecl CHUNK_BUFFER::AllocateSpace(unsigned short * __ptr64,unsigned long,unsigned short * __ptr64 * __ptr64) __ptr64
370?AllocateSpace@CHUNK_BUFFER@@QEAAJPEAGKPEAPEAG@Z
371AlterDesktopForUser
372; public: int __cdecl MULTISZ::Append(class STRU & __ptr64) __ptr64
373?Append@MULTISZ@@QEAAHAEAVSTRU@@@Z
374; public: int __cdecl MULTISZ::Append(unsigned short const * __ptr64) __ptr64
375?Append@MULTISZ@@QEAAHPEBG@Z
376; public: int __cdecl MULTISZ::Append(unsigned short const * __ptr64,unsigned long) __ptr64
377?Append@MULTISZ@@QEAAHPEBGK@Z
378; public: int __cdecl MULTISZA::Append(class STRA & __ptr64) __ptr64
379?Append@MULTISZA@@QEAAHAEAVSTRA@@@Z
380; public: int __cdecl MULTISZA::Append(char const * __ptr64) __ptr64
381?Append@MULTISZA@@QEAAHPEBD@Z
382; public: int __cdecl MULTISZA::Append(char const * __ptr64,unsigned long) __ptr64
383?Append@MULTISZA@@QEAAHPEBDK@Z
384; public: long __cdecl STRA::Append(class STRA const & __ptr64) __ptr64
385?Append@STRA@@QEAAJAEBV1@@Z
386; public: long __cdecl STRA::Append(char const * __ptr64) __ptr64
387?Append@STRA@@QEAAJPEBD@Z
388; public: long __cdecl STRA::Append(char const * __ptr64,unsigned long) __ptr64
389?Append@STRA@@QEAAJPEBDK@Z
390; public: int __cdecl STRAU::Append(class STRAU & __ptr64) __ptr64
391?Append@STRAU@@QEAAHAEAV1@@Z
392; public: int __cdecl STRAU::Append(char const * __ptr64) __ptr64
393?Append@STRAU@@QEAAHPEBD@Z
394; public: int __cdecl STRAU::Append(char const * __ptr64,unsigned long) __ptr64
395?Append@STRAU@@QEAAHPEBDK@Z
396; public: int __cdecl STRAU::Append(unsigned short const * __ptr64) __ptr64
397?Append@STRAU@@QEAAHPEBG@Z
398; public: int __cdecl STRAU::Append(unsigned short const * __ptr64,unsigned long) __ptr64
399?Append@STRAU@@QEAAHPEBGK@Z
400; public: long __cdecl STRU::Append(class STRU const & __ptr64) __ptr64
401?Append@STRU@@QEAAJAEBV1@@Z
402; public: long __cdecl STRU::Append(unsigned short const * __ptr64) __ptr64
403?Append@STRU@@QEAAJPEBG@Z
404; public: long __cdecl STRU::Append(unsigned short const * __ptr64,unsigned long) __ptr64
405?Append@STRU@@QEAAJPEBGK@Z
406; public: long __cdecl STRU::AppendA(char const * __ptr64) __ptr64
407?AppendA@STRU@@QEAAJPEBD@Z
408; public: int __cdecl BUFFER_CHAIN::AppendBuffer(class BUFFER_CHAIN_ITEM * __ptr64) __ptr64
409?AppendBuffer@BUFFER_CHAIN@@QEAAHPEAVBUFFER_CHAIN_ITEM@@@Z
410; public: long __cdecl W3_TRACE_LOG_FACTORY::AppendData(void * __ptr64,unsigned long) __ptr64
411?AppendData@W3_TRACE_LOG_FACTORY@@QEAAJPEAXK@Z
412; public: int __cdecl MULTISZA::AppendW(unsigned short const * __ptr64) __ptr64
413?AppendW@MULTISZA@@QEAAHPEBG@Z
414; public: int __cdecl MULTISZA::AppendW(unsigned short const * __ptr64,unsigned long) __ptr64
415?AppendW@MULTISZA@@QEAAHPEBGK@Z
416; public: long __cdecl STRA::AppendW(unsigned short const * __ptr64) __ptr64
417?AppendW@STRA@@QEAAJPEBG@Z
418; public: long __cdecl STRA::AppendW(unsigned short const * __ptr64,unsigned long) __ptr64
419?AppendW@STRA@@QEAAJPEBGK@Z
420; public: long __cdecl STRA::AppendWTruncate(unsigned short const * __ptr64) __ptr64
421?AppendWTruncate@STRA@@QEAAJPEBG@Z
422; public: long __cdecl STRA::AppendWTruncate(unsigned short const * __ptr64,unsigned long) __ptr64
423?AppendWTruncate@STRA@@QEAAJPEBGK@Z
424; public: unsigned long __cdecl CLKRHashTable::Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
425?Apply@CLKRHashTable@@QEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@@Z
426; public: unsigned long __cdecl CLKRLinearHashTable::Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
427?Apply@CLKRLinearHashTable@@QEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@@Z
428; public: unsigned long __cdecl CLKRHashTable::ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
429?ApplyIf@CLKRHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
430; public: unsigned long __cdecl CLKRLinearHashTable::ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
431?ApplyIf@CLKRLinearHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
432; private: int __cdecl MULTISZ::AuxAppend(unsigned short const * __ptr64,unsigned int,int) __ptr64
433?AuxAppend@MULTISZ@@AEAAHPEBGIH@Z
434; private: int __cdecl MULTISZA::AuxAppend(unsigned char const * __ptr64,unsigned int,int) __ptr64
435?AuxAppend@MULTISZA@@AEAAHPEBEIH@Z
436; private: long __cdecl STRA::AuxAppend(unsigned char const * __ptr64,unsigned long,unsigned long,int) __ptr64
437?AuxAppend@STRA@@AEAAJPEBEKKH@Z
438; private: int __cdecl STRAU::AuxAppend(char const * __ptr64,unsigned int,int) __ptr64
439?AuxAppend@STRAU@@AEAAHPEBDIH@Z
440; private: int __cdecl STRAU::AuxAppend(unsigned short const * __ptr64,unsigned int,int) __ptr64
441?AuxAppend@STRAU@@AEAAHPEBGIH@Z
442; private: long __cdecl STRU::AuxAppend(unsigned char const * __ptr64,unsigned long,unsigned long,int) __ptr64
443?AuxAppend@STRU@@AEAAJPEBEKKH@Z
444; private: long __cdecl STRU::AuxAppendA(unsigned char const * __ptr64,unsigned long,unsigned long,int) __ptr64
445?AuxAppendA@STRU@@AEAAJPEBEKKH@Z
446; private: int __cdecl MULTISZA::AuxAppendW(unsigned short const * __ptr64,unsigned int,int) __ptr64
447?AuxAppendW@MULTISZA@@AEAAHPEBGIH@Z
448; private: long __cdecl STRA::AuxAppendW(unsigned short const * __ptr64,unsigned long,unsigned long,int) __ptr64
449?AuxAppendW@STRA@@AEAAJPEBGKKH@Z
450; private: long __cdecl STRA::AuxAppendWTruncate(unsigned short const * __ptr64,unsigned long,unsigned long,int) __ptr64
451?AuxAppendWTruncate@STRA@@AEAAJPEBGKKH@Z
452; private: void __cdecl MULTISZ::AuxInit(unsigned short const * __ptr64) __ptr64
453?AuxInit@MULTISZ@@AEAAXPEBG@Z
454; private: void __cdecl MULTISZA::AuxInit(unsigned char const * __ptr64) __ptr64
455?AuxInit@MULTISZA@@AEAAXPEBE@Z
456; private: void __cdecl STRAU::AuxInit(char const * __ptr64) __ptr64
457?AuxInit@STRAU@@AEAAXPEBD@Z
458; private: void __cdecl STRAU::AuxInit(unsigned short const * __ptr64) __ptr64
459?AuxInit@STRAU@@AEAAXPEBG@Z
460; public: class CLKRHashTable_Iterator __cdecl CLKRHashTable::Begin(void) __ptr64
461?Begin@CLKRHashTable@@QEAA?AVCLKRHashTable_Iterator@@XZ
462; public: class CLKRLinearHashTable_Iterator __cdecl CLKRLinearHashTable::Begin(void) __ptr64
463?Begin@CLKRLinearHashTable@@QEAA?AVCLKRLinearHashTable_Iterator@@XZ
464; public: static long __cdecl CLKRHashTableStats::BucketIndex(long)
465?BucketIndex@CLKRHashTableStats@@SAJJ@Z
466; public: static long __cdecl CLKRHashTableStats::BucketSize(long)
467?BucketSize@CLKRHashTableStats@@SAJJ@Z
468; public: static long const * __ptr64 __cdecl CLKRHashTableStats::BucketSizes(void)
469?BucketSizes@CLKRHashTableStats@@SAPEBJXZ
470; public: static unsigned long __cdecl MULTISZ::CalcLength(unsigned short const * __ptr64,unsigned long * __ptr64)
471?CalcLength@MULTISZ@@SAKPEBGPEAK@Z
472; public: static unsigned long __cdecl MULTISZA::CalcLength(char const * __ptr64,unsigned long * __ptr64)
473?CalcLength@MULTISZA@@SAKPEBDPEAK@Z
474; public: unsigned long __cdecl BUFFER_CHAIN::CalcTotalSize(int)const __ptr64
475?CalcTotalSize@BUFFER_CHAIN@@QEBAKH@Z
476; public: void __cdecl CSharelock::ChangeExclusiveLockToSharedLock(void) __ptr64
477?ChangeExclusiveLockToSharedLock@CSharelock@@QEAAXXZ
478; public: unsigned char __cdecl CSharelock::ChangeSharedLockToExclusiveLock(int) __ptr64
479?ChangeSharedLockToExclusiveLock@CSharelock@@QEAAEH@Z
480; public: int __cdecl CLKRHashTable::CheckTable(void)const __ptr64
481?CheckTable@CLKRHashTable@@QEBAHXZ
482; public: int __cdecl CLKRLinearHashTable::CheckTable(void)const __ptr64
483?CheckTable@CLKRLinearHashTable@@QEBAHXZ
484; public: unsigned char __cdecl CSharelock::ClaimExclusiveLock(int) __ptr64
485?ClaimExclusiveLock@CSharelock@@QEAAEH@Z
486; public: unsigned char __cdecl CSharelock::ClaimShareLock(int) __ptr64
487?ClaimShareLock@CSharelock@@QEAAEH@Z
488; public: static unsigned short const * __ptr64 __cdecl CCritSec::ClassName(void)
489?ClassName@CCritSec@@SAPEBGXZ
490; public: static unsigned short const * __ptr64 __cdecl CFakeLock::ClassName(void)
491?ClassName@CFakeLock@@SAPEBGXZ
492; public: static unsigned short const * __ptr64 __cdecl CLKRHashTable::ClassName(void)
493?ClassName@CLKRHashTable@@SAPEBGXZ
494; public: static unsigned short const * __ptr64 __cdecl CLKRLinearHashTable::ClassName(void)
495?ClassName@CLKRLinearHashTable@@SAPEBGXZ
496; public: static unsigned short const * __ptr64 __cdecl CReaderWriterLock2::ClassName(void)
497?ClassName@CReaderWriterLock2@@SAPEBGXZ
498; public: static unsigned short const * __ptr64 __cdecl CReaderWriterLock3::ClassName(void)
499?ClassName@CReaderWriterLock3@@SAPEBGXZ
500; public: static unsigned short const * __ptr64 __cdecl CReaderWriterLock::ClassName(void)
501?ClassName@CReaderWriterLock@@SAPEBGXZ
502; public: static char const * __ptr64 __cdecl CRtlResource::ClassName(void)
503?ClassName@CRtlResource@@SAPEBDXZ
504; public: static char const * __ptr64 __cdecl CShareLock::ClassName(void)
505?ClassName@CShareLock@@SAPEBDXZ
506; public: static unsigned short const * __ptr64 __cdecl CSmallSpinLock::ClassName(void)
507?ClassName@CSmallSpinLock@@SAPEBGXZ
508; public: static unsigned short const * __ptr64 __cdecl CSpinLock::ClassName(void)
509?ClassName@CSpinLock@@SAPEBGXZ
510; public: static int __cdecl ALLOC_CACHE_HANDLER::Cleanup(void)
511?Cleanup@ALLOC_CACHE_HANDLER@@SAHXZ
512; public: static void __cdecl ALLOC_CACHE_HANDLER::CleanupAllLookasides(void * __ptr64,unsigned char)
513?CleanupAllLookasides@ALLOC_CACHE_HANDLER@@SAXPEAXE@Z
514; public: void __cdecl ALLOC_CACHE_HANDLER::CleanupLookaside(int) __ptr64
515?CleanupLookaside@ALLOC_CACHE_HANDLER@@QEAAXH@Z
516; public: void __cdecl CLKRHashTable::Clear(void) __ptr64
517?Clear@CLKRHashTable@@QEAAXXZ
518; public: void __cdecl CLKRLinearHashTable::Clear(void) __ptr64
519?Clear@CLKRLinearHashTable@@QEAAXXZ
520; public: void __cdecl W3_TRACE_LOG::ClearBuffer(void) __ptr64
521?ClearBuffer@W3_TRACE_LOG@@QEAAXXZ
522; public: int __cdecl MULTISZ::Clone(class MULTISZ * __ptr64)const __ptr64
523?Clone@MULTISZ@@QEBAHPEAV1@@Z
524; public: int __cdecl MULTISZA::Clone(class MULTISZA * __ptr64)const __ptr64
525?Clone@MULTISZA@@QEBAHPEAV1@@Z
526; public: long __cdecl STRA::Clone(class STRA * __ptr64)const __ptr64
527?Clone@STRA@@QEBAJPEAV1@@Z
528; public: int __cdecl MB::Close(void) __ptr64
529?Close@MB@@QEAAHXZ
530CompareStringNoCase
531; public: void __cdecl TS_RESOURCE::Convert(enum TSRES_CONV_TYPE) __ptr64
532?Convert@TS_RESOURCE@@QEAAXW4TSRES_CONV_TYPE@@@Z
533; public: void __cdecl CCritSec::ConvertExclusiveToShared(void) __ptr64
534?ConvertExclusiveToShared@CCritSec@@QEAAXXZ
535; public: void __cdecl CFakeLock::ConvertExclusiveToShared(void) __ptr64
536?ConvertExclusiveToShared@CFakeLock@@QEAAXXZ
537; public: void __cdecl CLKRHashTable::ConvertExclusiveToShared(void)const __ptr64
538?ConvertExclusiveToShared@CLKRHashTable@@QEBAXXZ
539; public: void __cdecl CLKRLinearHashTable::ConvertExclusiveToShared(void)const __ptr64
540?ConvertExclusiveToShared@CLKRLinearHashTable@@QEBAXXZ
541; public: void __cdecl CReaderWriterLock2::ConvertExclusiveToShared(void) __ptr64
542?ConvertExclusiveToShared@CReaderWriterLock2@@QEAAXXZ
543; public: void __cdecl CReaderWriterLock3::ConvertExclusiveToShared(void) __ptr64
544?ConvertExclusiveToShared@CReaderWriterLock3@@QEAAXXZ
545; public: void __cdecl CReaderWriterLock::ConvertExclusiveToShared(void) __ptr64
546?ConvertExclusiveToShared@CReaderWriterLock@@QEAAXXZ
547; public: void __cdecl CRtlResource::ConvertExclusiveToShared(void) __ptr64
548?ConvertExclusiveToShared@CRtlResource@@QEAAXXZ
549; public: void __cdecl CShareLock::ConvertExclusiveToShared(void) __ptr64
550?ConvertExclusiveToShared@CShareLock@@QEAAXXZ
551; public: void __cdecl CSmallSpinLock::ConvertExclusiveToShared(void) __ptr64
552?ConvertExclusiveToShared@CSmallSpinLock@@QEAAXXZ
553; public: void __cdecl CSpinLock::ConvertExclusiveToShared(void) __ptr64
554?ConvertExclusiveToShared@CSpinLock@@QEAAXXZ
555; public: void __cdecl CCritSec::ConvertSharedToExclusive(void) __ptr64
556?ConvertSharedToExclusive@CCritSec@@QEAAXXZ
557; public: void __cdecl CFakeLock::ConvertSharedToExclusive(void) __ptr64
558?ConvertSharedToExclusive@CFakeLock@@QEAAXXZ
559; public: void __cdecl CLKRHashTable::ConvertSharedToExclusive(void)const __ptr64
560?ConvertSharedToExclusive@CLKRHashTable@@QEBAXXZ
561; public: void __cdecl CLKRLinearHashTable::ConvertSharedToExclusive(void)const __ptr64
562?ConvertSharedToExclusive@CLKRLinearHashTable@@QEBAXXZ
563; public: void __cdecl CReaderWriterLock2::ConvertSharedToExclusive(void) __ptr64
564?ConvertSharedToExclusive@CReaderWriterLock2@@QEAAXXZ
565; public: void __cdecl CReaderWriterLock3::ConvertSharedToExclusive(void) __ptr64
566?ConvertSharedToExclusive@CReaderWriterLock3@@QEAAXXZ
567; public: void __cdecl CReaderWriterLock::ConvertSharedToExclusive(void) __ptr64
568?ConvertSharedToExclusive@CReaderWriterLock@@QEAAXXZ
569; public: void __cdecl CRtlResource::ConvertSharedToExclusive(void) __ptr64
570?ConvertSharedToExclusive@CRtlResource@@QEAAXXZ
571; public: void __cdecl CShareLock::ConvertSharedToExclusive(void) __ptr64
572?ConvertSharedToExclusive@CShareLock@@QEAAXXZ
573; public: void __cdecl CSmallSpinLock::ConvertSharedToExclusive(void) __ptr64
574?ConvertSharedToExclusive@CSmallSpinLock@@QEAAXXZ
575; public: void __cdecl CSpinLock::ConvertSharedToExclusive(void) __ptr64
576?ConvertSharedToExclusive@CSpinLock@@QEAAXXZ
577ConvertUnicodeToMultiByte
578; public: int __cdecl MULTISZ::Copy(class MULTISZ const & __ptr64) __ptr64
579?Copy@MULTISZ@@QEAAHAEBV1@@Z
580; public: int __cdecl MULTISZ::Copy(unsigned short const * __ptr64,unsigned long) __ptr64
581?Copy@MULTISZ@@QEAAHPEBGK@Z
582; public: int __cdecl MULTISZA::Copy(class MULTISZA const & __ptr64) __ptr64
583?Copy@MULTISZA@@QEAAHAEBV1@@Z
584; public: int __cdecl MULTISZA::Copy(char const * __ptr64,unsigned long) __ptr64
585?Copy@MULTISZA@@QEAAHPEBDK@Z
586; public: long __cdecl STRA::Copy(class STRA const & __ptr64) __ptr64
587?Copy@STRA@@QEAAJAEBV1@@Z
588; public: long __cdecl STRA::Copy(char const * __ptr64) __ptr64
589?Copy@STRA@@QEAAJPEBD@Z
590; public: long __cdecl STRA::Copy(char const * __ptr64,unsigned long) __ptr64
591?Copy@STRA@@QEAAJPEBDK@Z
592; public: int __cdecl STRAU::Copy(class STRAU & __ptr64) __ptr64
593?Copy@STRAU@@QEAAHAEAV1@@Z
594; public: int __cdecl STRAU::Copy(char const * __ptr64) __ptr64
595?Copy@STRAU@@QEAAHPEBD@Z
596; public: int __cdecl STRAU::Copy(char const * __ptr64,unsigned long) __ptr64
597?Copy@STRAU@@QEAAHPEBDK@Z
598; public: int __cdecl STRAU::Copy(unsigned short const * __ptr64) __ptr64
599?Copy@STRAU@@QEAAHPEBG@Z
600; public: int __cdecl STRAU::Copy(unsigned short const * __ptr64,unsigned long) __ptr64
601?Copy@STRAU@@QEAAHPEBGK@Z
602; public: long __cdecl STRU::Copy(class STRU const & __ptr64) __ptr64
603?Copy@STRU@@QEAAJAEBV1@@Z
604; public: long __cdecl STRU::Copy(unsigned short const * __ptr64) __ptr64
605?Copy@STRU@@QEAAJPEBG@Z
606; public: long __cdecl STRU::Copy(unsigned short const * __ptr64,unsigned long) __ptr64
607?Copy@STRU@@QEAAJPEBGK@Z
608; public: long __cdecl STRU::CopyA(char const * __ptr64) __ptr64
609?CopyA@STRU@@QEAAJPEBD@Z
610; public: long __cdecl STRU::CopyA(char const * __ptr64,unsigned long) __ptr64
611?CopyA@STRU@@QEAAJPEBDK@Z
612; public: long __cdecl STRA::CopyBinary(void * __ptr64,unsigned long) __ptr64
613?CopyBinary@STRA@@QEAAJPEAXK@Z
614; public: int __cdecl CDFTCache::CopyFormattedData(struct _SYSTEMTIME const * __ptr64,char * __ptr64)const __ptr64
615?CopyFormattedData@CDFTCache@@QEBAHPEBU_SYSTEMTIME@@PEAD@Z
616; public: void __cdecl DATETIME_FORMAT_ENTRY::CopyFormattedData(struct _SYSTEMTIME const * __ptr64,char * __ptr64)const __ptr64
617?CopyFormattedData@DATETIME_FORMAT_ENTRY@@QEBAXPEBU_SYSTEMTIME@@PEAD@Z
618; public: int __cdecl MULTISZ::CopyToBuffer(unsigned short * __ptr64,unsigned long * __ptr64)const __ptr64
619?CopyToBuffer@MULTISZ@@QEBAHPEAGPEAK@Z
620; public: int __cdecl MULTISZA::CopyToBuffer(char * __ptr64,unsigned long * __ptr64)const __ptr64
621?CopyToBuffer@MULTISZA@@QEBAHPEADPEAK@Z
622; public: long __cdecl STRA::CopyToBuffer(char * __ptr64,unsigned long * __ptr64)const __ptr64
623?CopyToBuffer@STRA@@QEBAJPEADPEAK@Z
624; public: long __cdecl STRU::CopyToBuffer(unsigned short * __ptr64,unsigned long * __ptr64)const __ptr64
625?CopyToBuffer@STRU@@QEBAJPEAGPEAK@Z
626; public: long __cdecl STRA::CopyW(unsigned short const * __ptr64) __ptr64
627?CopyW@STRA@@QEAAJPEBG@Z
628; public: long __cdecl STRA::CopyW(unsigned short const * __ptr64,unsigned long) __ptr64
629?CopyW@STRA@@QEAAJPEBGK@Z
630; public: long __cdecl STRA::CopyWToUTF8(class STRU const & __ptr64) __ptr64
631?CopyWToUTF8@STRA@@QEAAJAEBVSTRU@@@Z
632; public: long __cdecl STRA::CopyWToUTF8(unsigned short const * __ptr64) __ptr64
633?CopyWToUTF8@STRA@@QEAAJPEBG@Z
634; public: long __cdecl STRA::CopyWToUTF8(unsigned short const * __ptr64,unsigned long) __ptr64
635?CopyWToUTF8@STRA@@QEAAJPEBGK@Z
636; public: long __cdecl STRA::CopyWToUTF8Unescaped(class STRU const & __ptr64) __ptr64
637?CopyWToUTF8Unescaped@STRA@@QEAAJAEBVSTRU@@@Z
638; public: long __cdecl STRA::CopyWToUTF8Unescaped(unsigned short const * __ptr64) __ptr64
639?CopyWToUTF8Unescaped@STRA@@QEAAJPEBG@Z
640; public: long __cdecl STRA::CopyWToUTF8Unescaped(unsigned short const * __ptr64,unsigned long) __ptr64
641?CopyWToUTF8Unescaped@STRA@@QEAAJPEBGK@Z
642; public: long __cdecl STRA::CopyWTruncate(unsigned short const * __ptr64) __ptr64
643?CopyWTruncate@STRA@@QEAAJPEBG@Z
644; public: long __cdecl STRA::CopyWTruncate(unsigned short const * __ptr64,unsigned long) __ptr64
645?CopyWTruncate@STRA@@QEAAJPEBGK@Z
646; public: static long __cdecl IPM_MESSAGE_PIPE::CreateIpmMessagePipe(class IPM_MESSAGE_ACCEPTOR * __ptr64,unsigned short const * __ptr64,int,struct _SECURITY_ATTRIBUTES * __ptr64,class IPM_MESSAGE_PIPE * __ptr64 * __ptr64)
647?CreateIpmMessagePipe@IPM_MESSAGE_PIPE@@SAJPEAVIPM_MESSAGE_ACCEPTOR@@PEBGHPEAU_SECURITY_ATTRIBUTES@@PEAPEAV1@@Z
648; public: long __cdecl W3_TRACE_LOG_FACTORY::CreateTraceLog(class W3_TRACE_LOG * __ptr64 * __ptr64) __ptr64
649?CreateTraceLog@W3_TRACE_LOG_FACTORY@@QEAAJPEAPEAVW3_TRACE_LOG@@@Z
650; public: static long __cdecl W3_TRACE_LOG_FACTORY::CreateTraceLogFactory(class W3_TRACE_LOG_FACTORY * __ptr64 * __ptr64,void * __ptr64)
651?CreateTraceLogFactory@W3_TRACE_LOG_FACTORY@@SAJPEAPEAV1@PEAX@Z
652; public: unsigned long __cdecl CDFTCache::DateTimeChars(void)const __ptr64
653?DateTimeChars@CDFTCache@@QEBAKXZ
654; char const * __ptr64 __cdecl DayOfWeek3CharNames(unsigned long)
655?DayOfWeek3CharNames@@YAPEBDK@Z
656; private: void __cdecl IPM_MESSAGE_PIPE::DecrementAcceptorInUse(void) __ptr64
657?DecrementAcceptorInUse@IPM_MESSAGE_PIPE@@AEAAXXZ
658DecryptMemoryPassword
659; public: unsigned long __cdecl BUFFER_CHAIN::DeleteChain(void) __ptr64
660?DeleteChain@BUFFER_CHAIN@@QEAAKXZ
661; public: int __cdecl MB::DeleteData(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long) __ptr64
662?DeleteData@MB@@QEAAHPEBGKKK@Z
663; public: unsigned long __cdecl CLKRHashTable::DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64) __ptr64
664?DeleteIf@CLKRHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1@Z
665; public: unsigned long __cdecl CLKRLinearHashTable::DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64) __ptr64
666?DeleteIf@CLKRLinearHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1@Z
667; public: enum LK_RETCODE __cdecl CLKRHashTable::DeleteKey(unsigned __int64) __ptr64
668?DeleteKey@CLKRHashTable@@QEAA?AW4LK_RETCODE@@_K@Z
669; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::DeleteKey(unsigned __int64) __ptr64
670?DeleteKey@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@_K@Z
671; public: int __cdecl MB::DeleteObject(unsigned short const * __ptr64) __ptr64
672?DeleteObject@MB@@QEAAHPEBG@Z
673; public: enum LK_RETCODE __cdecl CLKRHashTable::DeleteRecord(void const * __ptr64) __ptr64
674?DeleteRecord@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEBX@Z
675; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::DeleteRecord(void const * __ptr64) __ptr64
676?DeleteRecord@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEBX@Z
677; public: void __cdecl IPM_MESSAGE_PIPE::DestroyIpmMessagePipe(void) __ptr64
678?DestroyIpmMessagePipe@IPM_MESSAGE_PIPE@@QEAAXXZ
679; public: void __cdecl W3_TRACE_LOG::DestroyTraceLog(void) __ptr64
680?DestroyTraceLog@W3_TRACE_LOG@@QEAAXXZ
681; public: void __cdecl W3_TRACE_LOG_FACTORY::DestroyTraceLogFactory(void) __ptr64
682?DestroyTraceLogFactory@W3_TRACE_LOG_FACTORY@@QEAAXXZ
683; public: virtual unsigned long __cdecl CEtwTracer::DisableEventsCallbackCustomHandler(void) __ptr64
684?DisableEventsCallbackCustomHandler@CEtwTracer@@UEAAKXZ
685DisableTokenBackupPrivilege
686; public: static int __cdecl ALLOC_CACHE_HANDLER::DumpStatsToHtml(char * __ptr64,unsigned long * __ptr64)
687?DumpStatsToHtml@ALLOC_CACHE_HANDLER@@SAHPEADPEAK@Z
688DupTokenWithSameImpersonationLevel
689; public: virtual unsigned long __cdecl CEtwTracer::EnableEventsCallbackCustomHandler(void) __ptr64
690?EnableEventsCallbackCustomHandler@CEtwTracer@@UEAAKXZ
691EncryptMemoryPassword
692; public: class CLKRHashTable_Iterator __cdecl CLKRHashTable::End(void) __ptr64
693?End@CLKRHashTable@@QEAA?AVCLKRHashTable_Iterator@@XZ
694; public: class CLKRLinearHashTable_Iterator __cdecl CLKRLinearHashTable::End(void) __ptr64
695?End@CLKRLinearHashTable@@QEAA?AVCLKRLinearHashTable_Iterator@@XZ
696; public: int __cdecl MB::EnumObjects(unsigned short const * __ptr64,unsigned short * __ptr64,unsigned long) __ptr64
697?EnumObjects@MB@@QEAAHPEBGPEAGK@Z
698; public: bool __cdecl CLKRHashTable::EqualRange(unsigned __int64,class CLKRHashTable_Iterator & __ptr64,class CLKRHashTable_Iterator & __ptr64) __ptr64
699?EqualRange@CLKRHashTable@@QEAA_N_KAEAVCLKRHashTable_Iterator@@1@Z
700; public: bool __cdecl CLKRLinearHashTable::EqualRange(unsigned __int64,class CLKRLinearHashTable_Iterator & __ptr64,class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
701?EqualRange@CLKRLinearHashTable@@QEAA_N_KAEAVCLKRLinearHashTable_Iterator@@1@Z
702; public: int __cdecl STRA::Equals(class STRA const & __ptr64)const __ptr64
703?Equals@STRA@@QEBAHAEBV1@@Z
704; public: int __cdecl STRA::Equals(char * __ptr64 const)const __ptr64
705?Equals@STRA@@QEBAHQEAD@Z
706; public: int __cdecl STRU::Equals(class STRU const & __ptr64)const __ptr64
707?Equals@STRU@@QEBAHAEBV1@@Z
708; public: int __cdecl STRU::Equals(unsigned short const * __ptr64)const __ptr64
709?Equals@STRU@@QEBAHPEBG@Z
710; public: int __cdecl STRA::EqualsNoCase(class STRA const & __ptr64)const __ptr64
711?EqualsNoCase@STRA@@QEBAHAEBV1@@Z
712; public: int __cdecl STRA::EqualsNoCase(char * __ptr64 const)const __ptr64
713?EqualsNoCase@STRA@@QEBAHQEAD@Z
714; public: int __cdecl STRU::EqualsNoCase(class STRU const & __ptr64)const __ptr64
715?EqualsNoCase@STRU@@QEBAHAEBV1@@Z
716; public: int __cdecl STRU::EqualsNoCase(unsigned short const * __ptr64)const __ptr64
717?EqualsNoCase@STRU@@QEBAHPEBG@Z
718; public: bool __cdecl CLKRHashTable::Erase(class CLKRHashTable_Iterator & __ptr64,class CLKRHashTable_Iterator & __ptr64) __ptr64
719?Erase@CLKRHashTable@@QEAA_NAEAVCLKRHashTable_Iterator@@0@Z
720; public: bool __cdecl CLKRHashTable::Erase(class CLKRHashTable_Iterator & __ptr64) __ptr64
721?Erase@CLKRHashTable@@QEAA_NAEAVCLKRHashTable_Iterator@@@Z
722; public: bool __cdecl CLKRLinearHashTable::Erase(class CLKRLinearHashTable_Iterator & __ptr64,class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
723?Erase@CLKRLinearHashTable@@QEAA_NAEAVCLKRLinearHashTable_Iterator@@0@Z
724; public: bool __cdecl CLKRLinearHashTable::Erase(class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
725?Erase@CLKRLinearHashTable@@QEAA_NAEAVCLKRLinearHashTable_Iterator@@@Z
726; public: long __cdecl STRA::Escape(int,int) __ptr64
727?Escape@STRA@@QEAAJHH@Z
728; public: long __cdecl STRU::Escape(void) __ptr64
729?Escape@STRU@@QEAAJXZ
730; public: unsigned long __cdecl CEtwTracer::EtwTraceEvent(struct _GUID const * __ptr64,unsigned long,...) __ptr64
731?EtwTraceEvent@CEtwTracer@@QEAAKPEBU_GUID@@KZZ
732; int __cdecl FileTimeToGMT(struct _FILETIME const & __ptr64,char * __ptr64,unsigned long)
733?FileTimeToGMT@@YAHAEBU_FILETIME@@PEADK@Z
734; int __cdecl FileTimeToGMTEx(struct _FILETIME const & __ptr64,char * __ptr64,unsigned long,unsigned long)
735?FileTimeToGMTEx@@YAHAEBU_FILETIME@@PEADKK@Z
736; public: bool __cdecl CLKRHashTable::Find(unsigned __int64,class CLKRHashTable_Iterator & __ptr64) __ptr64
737?Find@CLKRHashTable@@QEAA_N_KAEAVCLKRHashTable_Iterator@@@Z
738; public: bool __cdecl CLKRLinearHashTable::Find(unsigned __int64,class CLKRLinearHashTable_Iterator & __ptr64) __ptr64
739?Find@CLKRLinearHashTable@@QEAA_N_KAEAVCLKRLinearHashTable_Iterator@@@Z
740; public: enum LK_RETCODE __cdecl CLKRHashTable::FindKey(unsigned __int64,void const * __ptr64 * __ptr64)const __ptr64
741?FindKey@CLKRHashTable@@QEBA?AW4LK_RETCODE@@_KPEAPEBX@Z
742; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::FindKey(unsigned __int64,void const * __ptr64 * __ptr64)const __ptr64
743?FindKey@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@_KPEAPEBX@Z
744; public: enum LK_RETCODE __cdecl CLKRHashTable::FindRecord(void const * __ptr64)const __ptr64
745?FindRecord@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEBX@Z
746; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::FindRecord(void const * __ptr64)const __ptr64
747?FindRecord@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEBX@Z
748; public: int __cdecl MULTISZ::FindString(class STRU & __ptr64) __ptr64
749?FindString@MULTISZ@@QEAAHAEAVSTRU@@@Z
750; public: int __cdecl MULTISZ::FindString(unsigned short const * __ptr64) __ptr64
751?FindString@MULTISZ@@QEAAHPEBG@Z
752; public: int __cdecl MULTISZA::FindString(class STRA & __ptr64) __ptr64
753?FindString@MULTISZA@@QEAAHAEAVSTRA@@@Z
754; public: int __cdecl MULTISZA::FindString(char const * __ptr64) __ptr64
755?FindString@MULTISZA@@QEAAHPEBD@Z
756; public: int __cdecl MULTISZ::FindStringNoCase(class STRU & __ptr64) __ptr64
757?FindStringNoCase@MULTISZ@@QEAAHAEAVSTRU@@@Z
758; public: int __cdecl MULTISZ::FindStringNoCase(unsigned short const * __ptr64) __ptr64
759?FindStringNoCase@MULTISZ@@QEAAHPEBG@Z
760; public: class CListEntry * __ptr64 __cdecl CDoubleList::First(void)const __ptr64
761?First@CDoubleList@@QEBAQEAVCListEntry@@XZ
762; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::First(void) __ptr64
763?First@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
764; public: unsigned short const * __ptr64 __cdecl MULTISZ::First(void)const __ptr64
765?First@MULTISZ@@QEBAPEBGXZ
766; public: char const * __ptr64 __cdecl MULTISZA::First(void)const __ptr64
767?First@MULTISZA@@QEBAPEBDXZ
768FlipSlashes
769; public: long __cdecl STRA::FormatString(unsigned long,char const * __ptr64 * __ptr64 const,char const * __ptr64,unsigned long) __ptr64
770?FormatString@STRA@@QEAAJKQEAPEBDPEBDK@Z
771; public: char const * __ptr64 __cdecl CDFTCache::FormattedBuffer(void)const __ptr64
772?FormattedBuffer@CDFTCache@@QEBAPEBDXZ
773; public: int __cdecl ALLOC_CACHE_HANDLER::Free(void * __ptr64) __ptr64
774?Free@ALLOC_CACHE_HANDLER@@QEAAHPEAX@Z
775; public: void __cdecl CHUNK_BUFFER::FreeAllAllocatedSpace(void) __ptr64
776?FreeAllAllocatedSpace@CHUNK_BUFFER@@QEAAXXZ
777; public: void __cdecl BUFFER::FreeMemory(void) __ptr64
778?FreeMemory@BUFFER@@QEAAXXZ
779FreeSecurityAttributes
780FreeWellKnownAcl
781FreeWellKnownSid
782; public: virtual void __cdecl ASCLOG_DATETIME_CACHE::GenerateDateTimeString(struct DATETIME_FORMAT_ENTRY * __ptr64,struct _SYSTEMTIME const * __ptr64) __ptr64
783?GenerateDateTimeString@ASCLOG_DATETIME_CACHE@@UEAAXPEAUDATETIME_FORMAT_ENTRY@@PEBU_SYSTEMTIME@@@Z
784; public: virtual void __cdecl EXTLOG_DATETIME_CACHE::GenerateDateTimeString(struct DATETIME_FORMAT_ENTRY * __ptr64,struct _SYSTEMTIME const * __ptr64) __ptr64
785?GenerateDateTimeString@EXTLOG_DATETIME_CACHE@@UEAAXPEAUDATETIME_FORMAT_ENTRY@@PEBU_SYSTEMTIME@@@Z
786; public: virtual void __cdecl W3_DATETIME_CACHE::GenerateDateTimeString(struct DATETIME_FORMAT_ENTRY * __ptr64,struct _SYSTEMTIME const * __ptr64) __ptr64
787?GenerateDateTimeString@W3_DATETIME_CACHE@@UEAAXPEAUDATETIME_FORMAT_ENTRY@@PEBU_SYSTEMTIME@@@Z
788GenerateNameWithGUID
789; public: int __cdecl MB::GetAll(unsigned short const * __ptr64,unsigned long,unsigned long,class BUFFER * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
790?GetAll@MB@@QEAAHPEBGKKPEAVBUFFER@@PEAK2@Z
791; public: unsigned short __cdecl CLKRHashTable::GetBucketLockSpinCount(void)const __ptr64
792?GetBucketLockSpinCount@CLKRHashTable@@QEBAGXZ
793; public: unsigned short __cdecl CLKRLinearHashTable::GetBucketLockSpinCount(void)const __ptr64
794?GetBucketLockSpinCount@CLKRLinearHashTable@@QEBAGXZ
795; public: int __cdecl MB::GetBuffer(unsigned short const * __ptr64,unsigned long,unsigned long,class BUFFER * __ptr64,unsigned long * __ptr64,unsigned long) __ptr64
796?GetBuffer@MB@@QEAAHPEBGKKPEAVBUFFER@@PEAKK@Z
797; public: int __cdecl MB::GetChildPaths(unsigned short const * __ptr64,class BUFFER * __ptr64) __ptr64
798?GetChildPaths@MB@@QEAAHPEBGPEAVBUFFER@@@Z
799; public: int __cdecl MB::GetData(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64,unsigned long * __ptr64,unsigned long) __ptr64
800?GetData@MB@@QEAAHPEBGKKKPEAXPEAKK@Z
801; public: int __cdecl MB::GetDataPaths(unsigned short const * __ptr64,unsigned long,unsigned long,class BUFFER * __ptr64) __ptr64
802?GetDataPaths@MB@@QEAAHPEBGKKPEAVBUFFER@@@Z
803; public: int __cdecl MB::GetDataSetNumber(unsigned short const * __ptr64,unsigned long * __ptr64) __ptr64
804?GetDataSetNumber@MB@@QEAAHPEBGPEAK@Z
805; public: static double __cdecl CCritSec::GetDefaultSpinAdjustmentFactor(void)
806?GetDefaultSpinAdjustmentFactor@CCritSec@@SANXZ
807; public: static double __cdecl CFakeLock::GetDefaultSpinAdjustmentFactor(void)
808?GetDefaultSpinAdjustmentFactor@CFakeLock@@SANXZ
809; public: static double __cdecl CReaderWriterLock2::GetDefaultSpinAdjustmentFactor(void)
810?GetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SANXZ
811; public: static double __cdecl CReaderWriterLock3::GetDefaultSpinAdjustmentFactor(void)
812?GetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SANXZ
813; public: static double __cdecl CReaderWriterLock::GetDefaultSpinAdjustmentFactor(void)
814?GetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SANXZ
815; public: static double __cdecl CRtlResource::GetDefaultSpinAdjustmentFactor(void)
816?GetDefaultSpinAdjustmentFactor@CRtlResource@@SANXZ
817; public: static double __cdecl CShareLock::GetDefaultSpinAdjustmentFactor(void)
818?GetDefaultSpinAdjustmentFactor@CShareLock@@SANXZ
819; public: static double __cdecl CSmallSpinLock::GetDefaultSpinAdjustmentFactor(void)
820?GetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SANXZ
821; public: static double __cdecl CSpinLock::GetDefaultSpinAdjustmentFactor(void)
822?GetDefaultSpinAdjustmentFactor@CSpinLock@@SANXZ
823; public: static unsigned short __cdecl CCritSec::GetDefaultSpinCount(void)
824?GetDefaultSpinCount@CCritSec@@SAGXZ
825; public: static unsigned short __cdecl CFakeLock::GetDefaultSpinCount(void)
826?GetDefaultSpinCount@CFakeLock@@SAGXZ
827; public: static unsigned short __cdecl CReaderWriterLock2::GetDefaultSpinCount(void)
828?GetDefaultSpinCount@CReaderWriterLock2@@SAGXZ
829; public: static unsigned short __cdecl CReaderWriterLock3::GetDefaultSpinCount(void)
830?GetDefaultSpinCount@CReaderWriterLock3@@SAGXZ
831; public: static unsigned short __cdecl CReaderWriterLock::GetDefaultSpinCount(void)
832?GetDefaultSpinCount@CReaderWriterLock@@SAGXZ
833; public: static unsigned short __cdecl CRtlResource::GetDefaultSpinCount(void)
834?GetDefaultSpinCount@CRtlResource@@SAGXZ
835; public: static unsigned short __cdecl CShareLock::GetDefaultSpinCount(void)
836?GetDefaultSpinCount@CShareLock@@SAGXZ
837; public: static unsigned short __cdecl CSmallSpinLock::GetDefaultSpinCount(void)
838?GetDefaultSpinCount@CSmallSpinLock@@SAGXZ
839; public: static unsigned short __cdecl CSpinLock::GetDefaultSpinCount(void)
840?GetDefaultSpinCount@CSpinLock@@SAGXZ
841; public: int __cdecl MB::GetDword(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long * __ptr64,unsigned long) __ptr64
842?GetDword@MB@@QEAAHPEBGKKPEAKK@Z
843; public: void __cdecl MB::GetDword(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,unsigned long * __ptr64,unsigned long) __ptr64
844?GetDword@MB@@QEAAXPEBGKKKPEAKK@Z
845; public: unsigned long __cdecl EVENT_LOG::GetErrorCode(void)const __ptr64
846?GetErrorCode@EVENT_LOG@@QEBAKXZ
847; public: unsigned long __cdecl CACHED_DATETIME_FORMATS::GetFormattedCurrentDateTime(char * __ptr64) __ptr64
848?GetFormattedCurrentDateTime@CACHED_DATETIME_FORMATS@@QEAAKPEAD@Z
849; public: unsigned long __cdecl CACHED_DATETIME_FORMATS::GetFormattedDateTime(struct _SYSTEMTIME const * __ptr64,char * __ptr64) __ptr64
850?GetFormattedDateTime@CACHED_DATETIME_FORMATS@@QEAAKPEBU_SYSTEMTIME@@PEAD@Z
851; public: unsigned long __cdecl CSecurityDispenser::GetIisWpgSID(void * __ptr64 * __ptr64) __ptr64
852?GetIisWpgSID@CSecurityDispenser@@QEAAKPEAPEAX@Z
853; public: int __cdecl MB::GetMultisz(unsigned short const * __ptr64,unsigned long,unsigned long,class MULTISZ * __ptr64,unsigned long) __ptr64
854?GetMultisz@MB@@QEAAHPEBGKKPEAVMULTISZ@@K@Z
855; private: int __cdecl BUFFER::GetNewStorage(unsigned int) __ptr64
856?GetNewStorage@BUFFER@@AEAAHI@Z
857; public: unsigned long __cdecl CSecurityDispenser::GetSID(enum WELL_KNOWN_SID_TYPE,void * __ptr64 * __ptr64) __ptr64
858?GetSID@CSecurityDispenser@@QEAAKW4WELL_KNOWN_SID_TYPE@@PEAPEAX@Z
859GetSecurityAttributesForHandle
860; public: unsigned short __cdecl CCritSec::GetSpinCount(void)const __ptr64
861?GetSpinCount@CCritSec@@QEBAGXZ
862; public: unsigned short __cdecl CFakeLock::GetSpinCount(void)const __ptr64
863?GetSpinCount@CFakeLock@@QEBAGXZ
864; public: unsigned short __cdecl CReaderWriterLock2::GetSpinCount(void)const __ptr64
865?GetSpinCount@CReaderWriterLock2@@QEBAGXZ
866; public: unsigned short __cdecl CReaderWriterLock3::GetSpinCount(void)const __ptr64
867?GetSpinCount@CReaderWriterLock3@@QEBAGXZ
868; public: unsigned short __cdecl CReaderWriterLock::GetSpinCount(void)const __ptr64
869?GetSpinCount@CReaderWriterLock@@QEBAGXZ
870; public: unsigned short __cdecl CRtlResource::GetSpinCount(void)const __ptr64
871?GetSpinCount@CRtlResource@@QEBAGXZ
872; public: unsigned short __cdecl CShareLock::GetSpinCount(void)const __ptr64
873?GetSpinCount@CShareLock@@QEBAGXZ
874; public: unsigned short __cdecl CSmallSpinLock::GetSpinCount(void)const __ptr64
875?GetSpinCount@CSmallSpinLock@@QEBAGXZ
876; public: unsigned short __cdecl CSpinLock::GetSpinCount(void)const __ptr64
877?GetSpinCount@CSpinLock@@QEBAGXZ
878; public: class CLKRHashTableStats __cdecl CLKRHashTable::GetStatistics(void)const __ptr64
879?GetStatistics@CLKRHashTable@@QEBA?AVCLKRHashTableStats@@XZ
880; public: class CLKRHashTableStats __cdecl CLKRLinearHashTable::GetStatistics(void)const __ptr64
881?GetStatistics@CLKRLinearHashTable@@QEBA?AVCLKRHashTableStats@@XZ
882; public: int __cdecl MB::GetStr(unsigned short const * __ptr64,unsigned long,unsigned long,class STRU * __ptr64,unsigned long,unsigned short const * __ptr64) __ptr64
883?GetStr@MB@@QEAAHPEBGKKPEAVSTRU@@K0@Z
884; public: int __cdecl MB::GetString(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned short * __ptr64,unsigned long * __ptr64,unsigned long) __ptr64
885?GetString@MB@@QEAAHPEBGKKPEAGPEAKK@Z
886; public: int __cdecl MB::GetSystemChangeNumber(unsigned long * __ptr64) __ptr64
887?GetSystemChangeNumber@MB@@QEAAHPEAK@Z
888; public: unsigned short __cdecl CLKRHashTable::GetTableLockSpinCount(void)const __ptr64
889?GetTableLockSpinCount@CLKRHashTable@@QEBAGXZ
890; public: unsigned short __cdecl CLKRLinearHashTable::GetTableLockSpinCount(void)const __ptr64
891?GetTableLockSpinCount@CLKRLinearHashTable@@QEBAGXZ
892; public: int __cdecl CDateTime::GetTickCount(void) __ptr64
893?GetTickCount@CDateTime@@QEAAHXZ
894GrantWpgAccessToToken
895; public: long __cdecl STRA::HTMLEncode(void) __ptr64
896?HTMLEncode@STRA@@QEAAJXZ
897; public: class CListEntry const * __ptr64 __cdecl CDoubleList::HeadNode(void)const __ptr64
898?HeadNode@CDoubleList@@QEBAQEBVCListEntry@@XZ
899; public: class CListEntry const * __ptr64 __cdecl CLockedDoubleList::HeadNode(void)const __ptr64
900?HeadNode@CLockedDoubleList@@QEBAQEBVCListEntry@@XZ
901; public: bool __cdecl CLKRHashTable_Iterator::Increment(void) __ptr64
902?Increment@CLKRHashTable_Iterator@@QEAA_NXZ
903; public: bool __cdecl CLKRLinearHashTable_Iterator::Increment(void) __ptr64
904?Increment@CLKRLinearHashTable_Iterator@@QEAA_NXZ
905; private: void __cdecl IPM_MESSAGE_PIPE::IncrementAcceptorInUse(void) __ptr64
906?IncrementAcceptorInUse@IPM_MESSAGE_PIPE@@AEAAXXZ
907; public: void __cdecl W3_TRACE_LOG::Indent(void) __ptr64
908?Indent@W3_TRACE_LOG@@QEAAXXZ
909; public: static int __cdecl ALLOC_CACHE_HANDLER::Initialize(void)
910?Initialize@ALLOC_CACHE_HANDLER@@SAHXZ
911; private: void __cdecl CHUNK_BUFFER::Initialize(void) __ptr64
912?Initialize@CHUNK_BUFFER@@AEAAXXZ
913; public: bool __cdecl CLKRHashTable::Insert(void const * __ptr64,class CLKRHashTable_Iterator & __ptr64,bool) __ptr64
914?Insert@CLKRHashTable@@QEAA_NPEBXAEAVCLKRHashTable_Iterator@@_N@Z
915; public: bool __cdecl CLKRLinearHashTable::Insert(void const * __ptr64,class CLKRLinearHashTable_Iterator & __ptr64,bool) __ptr64
916?Insert@CLKRLinearHashTable@@QEAA_NPEBXAEAVCLKRLinearHashTable_Iterator@@_N@Z
917; public: void __cdecl CDoubleList::InsertHead(class CListEntry * __ptr64 const) __ptr64
918?InsertHead@CDoubleList@@QEAAXQEAVCListEntry@@@Z
919; public: void __cdecl CLockedDoubleList::InsertHead(class CListEntry * __ptr64 const) __ptr64
920?InsertHead@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
921; public: static void __cdecl ALLOC_CACHE_HANDLER::InsertNewItem(class ALLOC_CACHE_HANDLER * __ptr64)
922?InsertNewItem@ALLOC_CACHE_HANDLER@@SAXPEAV1@@Z
923; public: enum LK_RETCODE __cdecl CLKRHashTable::InsertRecord(void const * __ptr64,bool) __ptr64
924?InsertRecord@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEBX_N@Z
925; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::InsertRecord(void const * __ptr64,bool) __ptr64
926?InsertRecord@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEBX_N@Z
927; public: void __cdecl CDoubleList::InsertTail(class CListEntry * __ptr64 const) __ptr64
928?InsertTail@CDoubleList@@QEAAXQEAVCListEntry@@@Z
929; public: void __cdecl CLockedDoubleList::InsertTail(class CListEntry * __ptr64 const) __ptr64
930?InsertTail@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
931; public: int __cdecl ALLOC_CACHE_HANDLER::IpPrint(char * __ptr64,unsigned long * __ptr64) __ptr64
932?IpPrint@ALLOC_CACHE_HANDLER@@QEAAHPEADPEAK@Z
933; public: void __cdecl IPM_MESSAGE_PIPE::IpmMessageCreated(class IPM_MESSAGE_IMP * __ptr64) __ptr64
934?IpmMessageCreated@IPM_MESSAGE_PIPE@@QEAAXPEAVIPM_MESSAGE_IMP@@@Z
935; public: void __cdecl IPM_MESSAGE_PIPE::IpmMessageDeleted(class IPM_MESSAGE_IMP * __ptr64) __ptr64
936?IpmMessageDeleted@IPM_MESSAGE_PIPE@@QEAAXPEAVIPM_MESSAGE_IMP@@@Z
937; public: int __cdecl STRAU::IsCurrentUnicode(void) __ptr64
938?IsCurrentUnicode@STRAU@@QEAAHXZ
939; private: int __cdecl BUFFER::IsDynAlloced(void)const __ptr64
940?IsDynAlloced@BUFFER@@AEBAHXZ
941; public: bool __cdecl CDoubleList::IsEmpty(void)const __ptr64
942?IsEmpty@CDoubleList@@QEBA_NXZ
943; public: bool __cdecl CLockedDoubleList::IsEmpty(void)const __ptr64
944?IsEmpty@CLockedDoubleList@@QEBA_NXZ
945; public: bool __cdecl CLockedSingleList::IsEmpty(void)const __ptr64
946?IsEmpty@CLockedSingleList@@QEBA_NXZ
947; public: bool __cdecl CSingleList::IsEmpty(void)const __ptr64
948?IsEmpty@CSingleList@@QEBA_NXZ
949; public: int __cdecl MULTISZ::IsEmpty(void)const __ptr64
950?IsEmpty@MULTISZ@@QEBAHXZ
951; public: int __cdecl MULTISZA::IsEmpty(void)const __ptr64
952?IsEmpty@MULTISZA@@QEBAHXZ
953; public: int __cdecl STRA::IsEmpty(void)const __ptr64
954?IsEmpty@STRA@@QEBAHXZ
955; public: int __cdecl STRAU::IsEmpty(void) __ptr64
956?IsEmpty@STRAU@@QEAAHXZ
957; public: int __cdecl STRU::IsEmpty(void)const __ptr64
958?IsEmpty@STRU@@QEBAHXZ
959; public: int __cdecl CDFTCache::IsHit(struct _SYSTEMTIME const * __ptr64)const __ptr64
960?IsHit@CDFTCache@@QEBAHPEBU_SYSTEMTIME@@@Z
961; public: int __cdecl DATETIME_FORMAT_ENTRY::IsHit(struct _SYSTEMTIME const * __ptr64)const __ptr64
962?IsHit@DATETIME_FORMAT_ENTRY@@QEBAHPEBU_SYSTEMTIME@@@Z
963; public: bool __cdecl CLockedDoubleList::IsLocked(void)const __ptr64
964?IsLocked@CLockedDoubleList@@QEBA_NXZ
965; public: bool __cdecl CLockedSingleList::IsLocked(void)const __ptr64
966?IsLocked@CLockedSingleList@@QEBA_NXZ
967; public: bool __cdecl CCritSec::IsReadLocked(void)const __ptr64
968?IsReadLocked@CCritSec@@QEBA_NXZ
969; public: bool __cdecl CFakeLock::IsReadLocked(void)const __ptr64
970?IsReadLocked@CFakeLock@@QEBA_NXZ
971; public: bool __cdecl CLKRHashTable::IsReadLocked(void)const __ptr64
972?IsReadLocked@CLKRHashTable@@QEBA_NXZ
973; public: bool __cdecl CLKRLinearHashTable::IsReadLocked(void)const __ptr64
974?IsReadLocked@CLKRLinearHashTable@@QEBA_NXZ
975; public: bool __cdecl CReaderWriterLock2::IsReadLocked(void)const __ptr64
976?IsReadLocked@CReaderWriterLock2@@QEBA_NXZ
977; public: bool __cdecl CReaderWriterLock3::IsReadLocked(void)const __ptr64
978?IsReadLocked@CReaderWriterLock3@@QEBA_NXZ
979; public: bool __cdecl CReaderWriterLock::IsReadLocked(void)const __ptr64
980?IsReadLocked@CReaderWriterLock@@QEBA_NXZ
981; public: bool __cdecl CRtlResource::IsReadLocked(void)const __ptr64
982?IsReadLocked@CRtlResource@@QEBA_NXZ
983; public: bool __cdecl CShareLock::IsReadLocked(void)const __ptr64
984?IsReadLocked@CShareLock@@QEBA_NXZ
985; public: bool __cdecl CSmallSpinLock::IsReadLocked(void)const __ptr64
986?IsReadLocked@CSmallSpinLock@@QEBA_NXZ
987; public: bool __cdecl CSpinLock::IsReadLocked(void)const __ptr64
988?IsReadLocked@CSpinLock@@QEBA_NXZ
989; public: bool __cdecl CCritSec::IsReadUnlocked(void)const __ptr64
990?IsReadUnlocked@CCritSec@@QEBA_NXZ
991; public: bool __cdecl CFakeLock::IsReadUnlocked(void)const __ptr64
992?IsReadUnlocked@CFakeLock@@QEBA_NXZ
993; public: bool __cdecl CLKRHashTable::IsReadUnlocked(void)const __ptr64
994?IsReadUnlocked@CLKRHashTable@@QEBA_NXZ
995; public: bool __cdecl CLKRLinearHashTable::IsReadUnlocked(void)const __ptr64
996?IsReadUnlocked@CLKRLinearHashTable@@QEBA_NXZ
997; public: bool __cdecl CReaderWriterLock2::IsReadUnlocked(void)const __ptr64
998?IsReadUnlocked@CReaderWriterLock2@@QEBA_NXZ
999; public: bool __cdecl CReaderWriterLock3::IsReadUnlocked(void)const __ptr64
1000?IsReadUnlocked@CReaderWriterLock3@@QEBA_NXZ
1001; public: bool __cdecl CReaderWriterLock::IsReadUnlocked(void)const __ptr64
1002?IsReadUnlocked@CReaderWriterLock@@QEBA_NXZ
1003; public: bool __cdecl CRtlResource::IsReadUnlocked(void)const __ptr64
1004?IsReadUnlocked@CRtlResource@@QEBA_NXZ
1005; public: bool __cdecl CShareLock::IsReadUnlocked(void)const __ptr64
1006?IsReadUnlocked@CShareLock@@QEBA_NXZ
1007; public: bool __cdecl CSmallSpinLock::IsReadUnlocked(void)const __ptr64
1008?IsReadUnlocked@CSmallSpinLock@@QEBA_NXZ
1009; public: bool __cdecl CSpinLock::IsReadUnlocked(void)const __ptr64
1010?IsReadUnlocked@CSpinLock@@QEBA_NXZ
1011IsSSLReportingBackwardCompatibilityMode
1012; public: bool __cdecl CLockedDoubleList::IsUnlocked(void)const __ptr64
1013?IsUnlocked@CLockedDoubleList@@QEBA_NXZ
1014; public: bool __cdecl CLockedSingleList::IsUnlocked(void)const __ptr64
1015?IsUnlocked@CLockedSingleList@@QEBA_NXZ
1016; public: bool __cdecl CLKRHashTable::IsUsable(void)const __ptr64
1017?IsUsable@CLKRHashTable@@QEBA_NXZ
1018; public: bool __cdecl CLKRLinearHashTable::IsUsable(void)const __ptr64
1019?IsUsable@CLKRLinearHashTable@@QEBA_NXZ
1020; public: int __cdecl ALLOC_CACHE_HANDLER::IsValid(void)const __ptr64
1021?IsValid@ALLOC_CACHE_HANDLER@@QEBAHXZ
1022; public: int __cdecl BUFFER::IsValid(void)const __ptr64
1023?IsValid@BUFFER@@QEBAHXZ
1024; public: bool __cdecl CLKRHashTable::IsValid(void)const __ptr64
1025?IsValid@CLKRHashTable@@QEBA_NXZ
1026; public: bool __cdecl CLKRHashTable_Iterator::IsValid(void)const __ptr64
1027?IsValid@CLKRHashTable_Iterator@@QEBA_NXZ
1028; public: bool __cdecl CLKRLinearHashTable::IsValid(void)const __ptr64
1029?IsValid@CLKRLinearHashTable@@QEBA_NXZ
1030; public: bool __cdecl CLKRLinearHashTable_Iterator::IsValid(void)const __ptr64
1031?IsValid@CLKRLinearHashTable_Iterator@@QEBA_NXZ
1032; public: int __cdecl IPM_MESSAGE_PIPE::IsValid(void) __ptr64
1033?IsValid@IPM_MESSAGE_PIPE@@QEAAHXZ
1034; public: int __cdecl MULTISZ::IsValid(void)const __ptr64
1035?IsValid@MULTISZ@@QEBAHXZ
1036; public: int __cdecl MULTISZA::IsValid(void)const __ptr64
1037?IsValid@MULTISZA@@QEBAHXZ
1038; public: int __cdecl STRA::IsValid(void)const __ptr64
1039?IsValid@STRA@@QEBAHXZ
1040; public: int __cdecl STRAU::IsValid(void) __ptr64
1041?IsValid@STRAU@@QEAAHXZ
1042; public: bool __cdecl CCritSec::IsWriteLocked(void)const __ptr64
1043?IsWriteLocked@CCritSec@@QEBA_NXZ
1044; public: bool __cdecl CFakeLock::IsWriteLocked(void)const __ptr64
1045?IsWriteLocked@CFakeLock@@QEBA_NXZ
1046; public: bool __cdecl CLKRHashTable::IsWriteLocked(void)const __ptr64
1047?IsWriteLocked@CLKRHashTable@@QEBA_NXZ
1048; public: bool __cdecl CLKRLinearHashTable::IsWriteLocked(void)const __ptr64
1049?IsWriteLocked@CLKRLinearHashTable@@QEBA_NXZ
1050; public: bool __cdecl CReaderWriterLock2::IsWriteLocked(void)const __ptr64
1051?IsWriteLocked@CReaderWriterLock2@@QEBA_NXZ
1052; public: bool __cdecl CReaderWriterLock3::IsWriteLocked(void)const __ptr64
1053?IsWriteLocked@CReaderWriterLock3@@QEBA_NXZ
1054; public: bool __cdecl CReaderWriterLock::IsWriteLocked(void)const __ptr64
1055?IsWriteLocked@CReaderWriterLock@@QEBA_NXZ
1056; public: bool __cdecl CRtlResource::IsWriteLocked(void)const __ptr64
1057?IsWriteLocked@CRtlResource@@QEBA_NXZ
1058; public: bool __cdecl CShareLock::IsWriteLocked(void)const __ptr64
1059?IsWriteLocked@CShareLock@@QEBA_NXZ
1060; public: bool __cdecl CSmallSpinLock::IsWriteLocked(void)const __ptr64
1061?IsWriteLocked@CSmallSpinLock@@QEBA_NXZ
1062; public: bool __cdecl CSpinLock::IsWriteLocked(void)const __ptr64
1063?IsWriteLocked@CSpinLock@@QEBA_NXZ
1064; public: bool __cdecl CCritSec::IsWriteUnlocked(void)const __ptr64
1065?IsWriteUnlocked@CCritSec@@QEBA_NXZ
1066; public: bool __cdecl CFakeLock::IsWriteUnlocked(void)const __ptr64
1067?IsWriteUnlocked@CFakeLock@@QEBA_NXZ
1068; public: bool __cdecl CLKRHashTable::IsWriteUnlocked(void)const __ptr64
1069?IsWriteUnlocked@CLKRHashTable@@QEBA_NXZ
1070; public: bool __cdecl CLKRLinearHashTable::IsWriteUnlocked(void)const __ptr64
1071?IsWriteUnlocked@CLKRLinearHashTable@@QEBA_NXZ
1072; public: bool __cdecl CReaderWriterLock2::IsWriteUnlocked(void)const __ptr64
1073?IsWriteUnlocked@CReaderWriterLock2@@QEBA_NXZ
1074; public: bool __cdecl CReaderWriterLock3::IsWriteUnlocked(void)const __ptr64
1075?IsWriteUnlocked@CReaderWriterLock3@@QEBA_NXZ
1076; public: bool __cdecl CReaderWriterLock::IsWriteUnlocked(void)const __ptr64
1077?IsWriteUnlocked@CReaderWriterLock@@QEBA_NXZ
1078; public: bool __cdecl CRtlResource::IsWriteUnlocked(void)const __ptr64
1079?IsWriteUnlocked@CRtlResource@@QEBA_NXZ
1080; public: bool __cdecl CShareLock::IsWriteUnlocked(void)const __ptr64
1081?IsWriteUnlocked@CShareLock@@QEBA_NXZ
1082; public: bool __cdecl CSmallSpinLock::IsWriteUnlocked(void)const __ptr64
1083?IsWriteUnlocked@CSmallSpinLock@@QEBA_NXZ
1084; public: bool __cdecl CSpinLock::IsWriteUnlocked(void)const __ptr64
1085?IsWriteUnlocked@CSpinLock@@QEBA_NXZ
1086; public: unsigned __int64 const __cdecl CLKRHashTable_Iterator::Key(void)const __ptr64
1087?Key@CLKRHashTable_Iterator@@QEBA?B_KXZ
1088; public: unsigned __int64 const __cdecl CLKRLinearHashTable_Iterator::Key(void)const __ptr64
1089?Key@CLKRLinearHashTable_Iterator@@QEBA?B_KXZ
1090; public: class CListEntry * __ptr64 __cdecl CDoubleList::Last(void)const __ptr64
1091?Last@CDoubleList@@QEBAQEAVCListEntry@@XZ
1092; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::Last(void) __ptr64
1093?Last@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
1094; public: long __cdecl STRA::LoadStringW(unsigned long,struct HINSTANCE__ * __ptr64) __ptr64
1095?LoadStringW@STRA@@QEAAJKPEAUHINSTANCE__@@@Z
1096; public: long __cdecl STRA::LoadStringW(unsigned long,char const * __ptr64,unsigned long) __ptr64
1097?LoadStringW@STRA@@QEAAJKPEBDK@Z
1098; private: void __cdecl ALLOC_CACHE_HANDLER::Lock(void) __ptr64
1099?Lock@ALLOC_CACHE_HANDLER@@AEAAXXZ
1100; public: void __cdecl CLockedDoubleList::Lock(void) __ptr64
1101?Lock@CLockedDoubleList@@QEAAXXZ
1102; public: void __cdecl CLockedSingleList::Lock(void) __ptr64
1103?Lock@CLockedSingleList@@QEAAXXZ
1104; public: void __cdecl TS_RESOURCE::Lock(enum TSRES_LOCK_TYPE) __ptr64
1105?Lock@TS_RESOURCE@@QEAAXW4TSRES_LOCK_TYPE@@@Z
1106; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<1,1,3,1,3,2>::LockType(void)
1107?LockType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1108; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<2,1,1,1,3,2>::LockType(void)
1109?LockType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1110; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<3,1,1,1,1,1>::LockType(void)
1111?LockType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_LOCKTYPE@@XZ
1112; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<4,1,1,2,3,3>::LockType(void)
1113?LockType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
1114; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<5,2,1,2,3,3>::LockType(void)
1115?LockType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
1116; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<6,2,1,2,3,3>::LockType(void)
1117?LockType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
1118; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<7,2,2,1,3,2>::LockType(void)
1119?LockType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1120; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<8,2,2,1,3,2>::LockType(void)
1121?LockType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1122; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<9,2,1,1,3,2>::LockType(void)
1123?LockType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
1124; public: void __cdecl EVENT_LOG::LogEvent(unsigned long,unsigned short,unsigned short const * __ptr64 * __ptr64 const,unsigned long) __ptr64
1125?LogEvent@EVENT_LOG@@QEAAXKGQEAPEBGK@Z
1126; private: void __cdecl EVENT_LOG::LogEventPrivate(unsigned long,unsigned short,unsigned short,unsigned short const * __ptr64 * __ptr64 const,unsigned long) __ptr64
1127?LogEventPrivate@EVENT_LOG@@AEAAXKGGQEAPEBGK@Z
1128LookupTokenAccountName
1129MakeAllProcessHeapsLFH
1130MakePathCanonicalizationProof
1131; public: unsigned long __cdecl CLKRHashTable::MaxSize(void)const __ptr64
1132?MaxSize@CLKRHashTable@@QEBAKXZ
1133; public: unsigned long __cdecl CLKRLinearHashTable::MaxSize(void)const __ptr64
1134?MaxSize@CLKRLinearHashTable@@QEBAKXZ
1135; public: static void __cdecl IPM_MESSAGE_PIPE::MessagePipeCompletion(void * __ptr64,unsigned char)
1136?MessagePipeCompletion@IPM_MESSAGE_PIPE@@SAXPEAXE@Z
1137; char const * __ptr64 __cdecl Month3CharNames(unsigned long)
1138?Month3CharNames@@YAPEBDK@Z
1139; public: bool __cdecl CLKRHashTable::MultiKeys(void)const __ptr64
1140?MultiKeys@CLKRHashTable@@QEBA_NXZ
1141; public: bool __cdecl CLKRLinearHashTable::MultiKeys(void)const __ptr64
1142?MultiKeys@CLKRLinearHashTable@@QEBA_NXZ
1143; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<1,1,3,1,3,2>::MutexType(void)
1144?MutexType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1145; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<2,1,1,1,3,2>::MutexType(void)
1146?MutexType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1147; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<3,1,1,1,1,1>::MutexType(void)
1148?MutexType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RW_MUTEX@@XZ
1149; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<4,1,1,2,3,3>::MutexType(void)
1150?MutexType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
1151; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<5,2,1,2,3,3>::MutexType(void)
1152?MutexType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
1153; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<6,2,1,2,3,3>::MutexType(void)
1154?MutexType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
1155; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<7,2,2,1,3,2>::MutexType(void)
1156?MutexType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1157; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<8,2,2,1,3,2>::MutexType(void)
1158?MutexType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1159; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<9,2,1,1,3,2>::MutexType(void)
1160?MutexType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
1161; public: unsigned short const * __ptr64 __cdecl MULTISZ::Next(unsigned short const * __ptr64)const __ptr64
1162?Next@MULTISZ@@QEBAPEBGPEBG@Z
1163; public: char const * __ptr64 __cdecl MULTISZA::Next(char const * __ptr64)const __ptr64
1164?Next@MULTISZA@@QEBAPEBDPEBD@Z
1165; public: class BUFFER_CHAIN_ITEM * __ptr64 __cdecl BUFFER_CHAIN::NextBuffer(class BUFFER_CHAIN_ITEM * __ptr64) __ptr64
1166?NextBuffer@BUFFER_CHAIN@@QEAAPEAVBUFFER_CHAIN_ITEM@@PEAV2@@Z
1167; long __cdecl NormalizeUrl(char * __ptr64)
1168?NormalizeUrl@@YAJPEAD@Z
1169; long __cdecl NormalizeUrlW(unsigned short * __ptr64)
1170?NormalizeUrlW@@YAJPEAG@Z
1171; private: void __cdecl IPM_MESSAGE_PIPE::NotifyPipeDisconnected(long) __ptr64
1172?NotifyPipeDisconnected@IPM_MESSAGE_PIPE@@AEAAXJ@Z
1173; int __cdecl NtLargeIntegerTimeToLocalSystemTime(union _LARGE_INTEGER const * __ptr64,struct _SYSTEMTIME * __ptr64)
1174?NtLargeIntegerTimeToLocalSystemTime@@YAHPEBT_LARGE_INTEGER@@PEAU_SYSTEMTIME@@@Z
1175; int __cdecl NtLargeIntegerTimeToSystemTime(union _LARGE_INTEGER const & __ptr64,struct _SYSTEMTIME * __ptr64)
1176?NtLargeIntegerTimeToSystemTime@@YAHAEBT_LARGE_INTEGER@@PEAU_SYSTEMTIME@@@Z
1177; int __cdecl NtSystemTimeToLargeInteger(struct _SYSTEMTIME const * __ptr64,union _LARGE_INTEGER * __ptr64)
1178?NtSystemTimeToLargeInteger@@YAHPEBU_SYSTEMTIME@@PEAT_LARGE_INTEGER@@@Z
1179; public: int __cdecl CLKRHashTable::NumSubTables(void)const __ptr64
1180?NumSubTables@CLKRHashTable@@QEBAHXZ
1181; public: static enum LK_TABLESIZE __cdecl CLKRHashTable::NumSubTables(unsigned long & __ptr64,unsigned long & __ptr64)
1182?NumSubTables@CLKRHashTable@@SA?AW4LK_TABLESIZE@@AEAK0@Z
1183; public: int __cdecl CLKRLinearHashTable::NumSubTables(void)const __ptr64
1184?NumSubTables@CLKRLinearHashTable@@QEBAHXZ
1185; public: static enum LK_TABLESIZE __cdecl CLKRLinearHashTable::NumSubTables(unsigned long & __ptr64,unsigned long & __ptr64)
1186?NumSubTables@CLKRLinearHashTable@@SA?AW4LK_TABLESIZE@@AEAK0@Z
1187; public: int __cdecl CDFTCache::OffsetSeconds(void)const __ptr64
1188?OffsetSeconds@CDFTCache@@QEBAHXZ
1189; public: int __cdecl MB::Open(unsigned long,unsigned short const * __ptr64,unsigned long) __ptr64
1190?Open@MB@@QEAAHKPEBGK@Z
1191; public: int __cdecl MB::Open(unsigned short const * __ptr64,unsigned long) __ptr64
1192?Open@MB@@QEAAHPEBGK@Z
1193; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<1,1,3,1,3,2>::PerLockSpin(void)
1194?PerLockSpin@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1195; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<2,1,1,1,3,2>::PerLockSpin(void)
1196?PerLockSpin@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1197; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<3,1,1,1,1,1>::PerLockSpin(void)
1198?PerLockSpin@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1199; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<4,1,1,2,3,3>::PerLockSpin(void)
1200?PerLockSpin@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1201; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<5,2,1,2,3,3>::PerLockSpin(void)
1202?PerLockSpin@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1203; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<6,2,1,2,3,3>::PerLockSpin(void)
1204?PerLockSpin@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1205; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<7,2,2,1,3,2>::PerLockSpin(void)
1206?PerLockSpin@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1207; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<8,2,2,1,3,2>::PerLockSpin(void)
1208?PerLockSpin@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1209; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<9,2,1,1,3,2>::PerLockSpin(void)
1210?PerLockSpin@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
1211; public: class CSingleListEntry * __ptr64 __cdecl CLockedSingleList::Pop(void) __ptr64
1212?Pop@CLockedSingleList@@QEAAQEAVCSingleListEntry@@XZ
1213; public: class CSingleListEntry * __ptr64 __cdecl CSingleList::Pop(void) __ptr64
1214?Pop@CSingleList@@QEAAQEAVCSingleListEntry@@XZ
1215; public: void __cdecl ALLOC_CACHE_HANDLER::Print(void) __ptr64
1216?Print@ALLOC_CACHE_HANDLER@@QEAAXXZ
1217; private: unsigned short * __ptr64 __cdecl STRAU::PrivateQueryStr(int) __ptr64
1218?PrivateQueryStr@STRAU@@AEAAPEAGH@Z
1219; public: void __cdecl CLockedSingleList::Push(class CSingleListEntry * __ptr64 const) __ptr64
1220?Push@CLockedSingleList@@QEAAXQEAVCSingleListEntry@@@Z
1221; public: void __cdecl CSingleList::Push(class CSingleListEntry * __ptr64 const) __ptr64
1222?Push@CSingleList@@QEAAXQEAVCSingleListEntry@@@Z
1223; public: struct IMSAdminBaseW * __ptr64 __cdecl MB::QueryAdminBase(void)const __ptr64
1224?QueryAdminBase@MB@@QEBAPEAUIMSAdminBaseW@@XZ
1225; public: class BUFFER * __ptr64 __cdecl STRU::QueryBuffer(void) __ptr64
1226?QueryBuffer@STRU@@QEAAPEAVBUFFER@@XZ
1227; public: unsigned int __cdecl MULTISZ::QueryCB(void)const __ptr64
1228?QueryCB@MULTISZ@@QEBAIXZ
1229; public: unsigned int __cdecl MULTISZA::QueryCB(void)const __ptr64
1230?QueryCB@MULTISZA@@QEBAIXZ
1231; public: unsigned int __cdecl STRA::QueryCB(void)const __ptr64
1232?QueryCB@STRA@@QEBAIXZ
1233; public: unsigned int __cdecl STRAU::QueryCB(int) __ptr64
1234?QueryCB@STRAU@@QEAAIH@Z
1235; public: unsigned int __cdecl STRU::QueryCB(void)const __ptr64
1236?QueryCB@STRU@@QEBAIXZ
1237; public: unsigned int __cdecl STRAU::QueryCBA(void) __ptr64
1238?QueryCBA@STRAU@@QEAAIXZ
1239; public: unsigned int __cdecl STRAU::QueryCBW(void) __ptr64
1240?QueryCBW@STRAU@@QEAAIXZ
1241; public: unsigned int __cdecl MULTISZ::QueryCCH(void)const __ptr64
1242?QueryCCH@MULTISZ@@QEBAIXZ
1243; public: unsigned int __cdecl MULTISZA::QueryCCH(void)const __ptr64
1244?QueryCCH@MULTISZA@@QEBAIXZ
1245; public: unsigned int __cdecl STRA::QueryCCH(void)const __ptr64
1246?QueryCCH@STRA@@QEBAIXZ
1247; public: unsigned int __cdecl STRAU::QueryCCH(void) __ptr64
1248?QueryCCH@STRAU@@QEAAIXZ
1249; public: unsigned int __cdecl STRU::QueryCCH(void)const __ptr64
1250?QueryCCH@STRU@@QEBAIXZ
1251; public: unsigned long __cdecl CEtwTracer::QueryEnableLevel(void) __ptr64
1252?QueryEnableLevel@CEtwTracer@@QEAAKXZ
1253; public: unsigned long __cdecl MB::QueryHandle(void)const __ptr64
1254?QueryHandle@MB@@QEBAKXZ
1255; public: unsigned long __cdecl CHUNK_BUFFER::QueryHeapAllocCount(void) __ptr64
1256?QueryHeapAllocCount@CHUNK_BUFFER@@QEAAKXZ
1257; public: virtual long __cdecl MB_BASE_NOTIFICATION_SINK::QueryInterface(struct _GUID const & __ptr64,void * __ptr64 * __ptr64) __ptr64
1258?QueryInterface@MB_BASE_NOTIFICATION_SINK@@UEAAJAEBU_GUID@@PEAPEAX@Z
1259; public: void * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
1260?QueryPtr@BUFFER@@QEBAPEAXXZ
1261; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
1262?QuerySize@BUFFER@@QEBAIXZ
1263; public: unsigned int __cdecl STRA::QuerySize(void)const __ptr64
1264?QuerySize@STRA@@QEBAIXZ
1265; public: void __cdecl ALLOC_CACHE_HANDLER::QueryStats(struct _ALLOC_CACHE_STATISTICS * __ptr64) __ptr64
1266?QueryStats@ALLOC_CACHE_HANDLER@@QEAAXPEAU_ALLOC_CACHE_STATISTICS@@@Z
1267; public: unsigned short * __ptr64 __cdecl MULTISZ::QueryStr(void)const __ptr64
1268?QueryStr@MULTISZ@@QEBAPEAGXZ
1269; public: char * __ptr64 __cdecl MULTISZA::QueryStr(void)const __ptr64
1270?QueryStr@MULTISZA@@QEBAPEADXZ
1271; public: char * __ptr64 __cdecl STRA::QueryStr(void) __ptr64
1272?QueryStr@STRA@@QEAAPEADXZ
1273; public: char const * __ptr64 __cdecl STRA::QueryStr(void)const __ptr64
1274?QueryStr@STRA@@QEBAPEBDXZ
1275; public: unsigned short * __ptr64 __cdecl STRAU::QueryStr(int) __ptr64
1276?QueryStr@STRAU@@QEAAPEAGH@Z
1277; public: unsigned short * __ptr64 __cdecl STRU::QueryStr(void) __ptr64
1278?QueryStr@STRU@@QEAAPEAGXZ
1279; public: unsigned short const * __ptr64 __cdecl STRU::QueryStr(void)const __ptr64
1280?QueryStr@STRU@@QEBAPEBGXZ
1281; public: unsigned short * __ptr64 __cdecl MULTISZ::QueryStrA(void)const __ptr64
1282?QueryStrA@MULTISZ@@QEBAPEAGXZ
1283; public: char * __ptr64 __cdecl STRAU::QueryStrA(void) __ptr64
1284?QueryStrA@STRAU@@QEAAPEADXZ
1285; public: unsigned short * __ptr64 __cdecl STRAU::QueryStrW(void) __ptr64
1286?QueryStrW@STRAU@@QEAAPEAGXZ
1287; public: unsigned long __cdecl MULTISZ::QueryStringCount(void)const __ptr64
1288?QueryStringCount@MULTISZ@@QEBAKXZ
1289; public: unsigned long __cdecl MULTISZA::QueryStringCount(void)const __ptr64
1290?QueryStringCount@MULTISZA@@QEBAKXZ
1291; public: unsigned __int64 __cdecl CEtwTracer::QueryTraceHandle(void) __ptr64
1292?QueryTraceHandle@CEtwTracer@@QEAA_KXZ
1293; public: unsigned long __cdecl BUFFER_CHAIN_ITEM::QueryUsed(void)const __ptr64
1294?QueryUsed@BUFFER_CHAIN_ITEM@@QEBAKXZ
1295; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<1,1,3,1,3,2>::QueueType(void)
1296?QueueType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1297; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<2,1,1,1,3,2>::QueueType(void)
1298?QueueType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1299; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<3,1,1,1,1,1>::QueueType(void)
1300?QueueType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1301; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<4,1,1,2,3,3>::QueueType(void)
1302?QueueType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1303; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<5,2,1,2,3,3>::QueueType(void)
1304?QueueType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1305; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<6,2,1,2,3,3>::QueueType(void)
1306?QueueType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1307; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<7,2,2,1,3,2>::QueueType(void)
1308?QueueType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1309; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<8,2,2,1,3,2>::QueueType(void)
1310?QueueType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1311; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<9,2,1,1,3,2>::QueueType(void)
1312?QueueType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
1313; public: bool __cdecl CDataCache<class CDateTime>::Read(class CDateTime & __ptr64)const __ptr64
1314?Read@?$CDataCache@VCDateTime@@@@QEBA_NAEAVCDateTime@@@Z
1315ReadDwordParameterValueFromAnyService
1316; public: void __cdecl CCritSec::ReadLock(void) __ptr64
1317?ReadLock@CCritSec@@QEAAXXZ
1318; public: void __cdecl CFakeLock::ReadLock(void) __ptr64
1319?ReadLock@CFakeLock@@QEAAXXZ
1320; public: void __cdecl CLKRHashTable::ReadLock(void)const __ptr64
1321?ReadLock@CLKRHashTable@@QEBAXXZ
1322; public: void __cdecl CLKRLinearHashTable::ReadLock(void)const __ptr64
1323?ReadLock@CLKRLinearHashTable@@QEBAXXZ
1324; public: void __cdecl CReaderWriterLock2::ReadLock(void) __ptr64
1325?ReadLock@CReaderWriterLock2@@QEAAXXZ
1326; public: void __cdecl CReaderWriterLock3::ReadLock(void) __ptr64
1327?ReadLock@CReaderWriterLock3@@QEAAXXZ
1328; public: void __cdecl CReaderWriterLock::ReadLock(void) __ptr64
1329?ReadLock@CReaderWriterLock@@QEAAXXZ
1330; public: void __cdecl CRtlResource::ReadLock(void) __ptr64
1331?ReadLock@CRtlResource@@QEAAXXZ
1332; public: void __cdecl CShareLock::ReadLock(void) __ptr64
1333?ReadLock@CShareLock@@QEAAXXZ
1334; public: void __cdecl CSmallSpinLock::ReadLock(void) __ptr64
1335?ReadLock@CSmallSpinLock@@QEAAXXZ
1336; public: void __cdecl CSpinLock::ReadLock(void) __ptr64
1337?ReadLock@CSpinLock@@QEAAXXZ
1338; private: long __cdecl IPM_MESSAGE_PIPE::ReadMessage(unsigned long) __ptr64
1339?ReadMessage@IPM_MESSAGE_PIPE@@AEAAJK@Z
1340; public: bool __cdecl CCritSec::ReadOrWriteLock(void) __ptr64
1341?ReadOrWriteLock@CCritSec@@QEAA_NXZ
1342; public: bool __cdecl CFakeLock::ReadOrWriteLock(void) __ptr64
1343?ReadOrWriteLock@CFakeLock@@QEAA_NXZ
1344; public: bool __cdecl CReaderWriterLock3::ReadOrWriteLock(void) __ptr64
1345?ReadOrWriteLock@CReaderWriterLock3@@QEAA_NXZ
1346; public: bool __cdecl CSpinLock::ReadOrWriteLock(void) __ptr64
1347?ReadOrWriteLock@CSpinLock@@QEAA_NXZ
1348; public: void __cdecl CCritSec::ReadOrWriteUnlock(bool) __ptr64
1349?ReadOrWriteUnlock@CCritSec@@QEAAX_N@Z
1350; public: void __cdecl CFakeLock::ReadOrWriteUnlock(bool) __ptr64
1351?ReadOrWriteUnlock@CFakeLock@@QEAAX_N@Z
1352; public: void __cdecl CReaderWriterLock3::ReadOrWriteUnlock(bool) __ptr64
1353?ReadOrWriteUnlock@CReaderWriterLock3@@QEAAX_N@Z
1354; public: void __cdecl CSpinLock::ReadOrWriteUnlock(bool) __ptr64
1355?ReadOrWriteUnlock@CSpinLock@@QEAAX_N@Z
1356ReadRegDword
1357ReadStringParameterValueFromAnyService
1358; public: void __cdecl CCritSec::ReadUnlock(void) __ptr64
1359?ReadUnlock@CCritSec@@QEAAXXZ
1360; public: void __cdecl CFakeLock::ReadUnlock(void) __ptr64
1361?ReadUnlock@CFakeLock@@QEAAXXZ
1362; public: void __cdecl CLKRHashTable::ReadUnlock(void)const __ptr64
1363?ReadUnlock@CLKRHashTable@@QEBAXXZ
1364; public: void __cdecl CLKRLinearHashTable::ReadUnlock(void)const __ptr64
1365?ReadUnlock@CLKRLinearHashTable@@QEBAXXZ
1366; public: void __cdecl CReaderWriterLock2::ReadUnlock(void) __ptr64
1367?ReadUnlock@CReaderWriterLock2@@QEAAXXZ
1368; public: void __cdecl CReaderWriterLock3::ReadUnlock(void) __ptr64
1369?ReadUnlock@CReaderWriterLock3@@QEAAXXZ
1370; public: void __cdecl CReaderWriterLock::ReadUnlock(void) __ptr64
1371?ReadUnlock@CReaderWriterLock@@QEAAXXZ
1372; public: void __cdecl CRtlResource::ReadUnlock(void) __ptr64
1373?ReadUnlock@CRtlResource@@QEAAXXZ
1374; public: void __cdecl CShareLock::ReadUnlock(void) __ptr64
1375?ReadUnlock@CShareLock@@QEAAXXZ
1376; public: void __cdecl CSmallSpinLock::ReadUnlock(void) __ptr64
1377?ReadUnlock@CSmallSpinLock@@QEAAXXZ
1378; public: void __cdecl CSpinLock::ReadUnlock(void) __ptr64
1379?ReadUnlock@CSpinLock@@QEAAXXZ
1380; private: int __cdecl BUFFER::ReallocStorage(unsigned int) __ptr64
1381?ReallocStorage@BUFFER@@AEAAHI@Z
1382; public: void __cdecl MULTISZ::RecalcLen(void) __ptr64
1383?RecalcLen@MULTISZ@@QEAAXXZ
1384; public: void __cdecl MULTISZA::RecalcLen(void) __ptr64
1385?RecalcLen@MULTISZA@@QEAAXXZ
1386; public: void const * __ptr64 __cdecl CLKRHashTable_Iterator::Record(void)const __ptr64
1387?Record@CLKRHashTable_Iterator@@QEBAPEBXXZ
1388; public: void const * __ptr64 __cdecl CLKRLinearHashTable_Iterator::Record(void)const __ptr64
1389?Record@CLKRLinearHashTable_Iterator@@QEBAPEBXXZ
1390; public: static enum LOCK_RECURSION __cdecl CLockBase<1,1,3,1,3,2>::Recursion(void)
1391?Recursion@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1392; public: static enum LOCK_RECURSION __cdecl CLockBase<2,1,1,1,3,2>::Recursion(void)
1393?Recursion@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1394; public: static enum LOCK_RECURSION __cdecl CLockBase<3,1,1,1,1,1>::Recursion(void)
1395?Recursion@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RECURSION@@XZ
1396; public: static enum LOCK_RECURSION __cdecl CLockBase<4,1,1,2,3,3>::Recursion(void)
1397?Recursion@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
1398; public: static enum LOCK_RECURSION __cdecl CLockBase<5,2,1,2,3,3>::Recursion(void)
1399?Recursion@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
1400; public: static enum LOCK_RECURSION __cdecl CLockBase<6,2,1,2,3,3>::Recursion(void)
1401?Recursion@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
1402; public: static enum LOCK_RECURSION __cdecl CLockBase<7,2,2,1,3,2>::Recursion(void)
1403?Recursion@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1404; public: static enum LOCK_RECURSION __cdecl CLockBase<8,2,2,1,3,2>::Recursion(void)
1405?Recursion@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1406; public: static enum LOCK_RECURSION __cdecl CLockBase<9,2,1,1,3,2>::Recursion(void)
1407?Recursion@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
1408; public: unsigned long __cdecl CEtwTracer::Register(struct _GUID const * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64) __ptr64
1409?Register@CEtwTracer@@QEAAKPEBU_GUID@@PEAG1@Z
1410; public: virtual unsigned long __cdecl MB_BASE_NOTIFICATION_SINK::Release(void) __ptr64
1411?Release@MB_BASE_NOTIFICATION_SINK@@UEAAKXZ
1412; public: void __cdecl CSharelock::ReleaseExclusiveLock(void) __ptr64
1413?ReleaseExclusiveLock@CSharelock@@QEAAXXZ
1414; public: void __cdecl CSharelock::ReleaseShareLock(void) __ptr64
1415?ReleaseShareLock@CSharelock@@QEAAXXZ
1416; public: static void __cdecl CDoubleList::RemoveEntry(class CListEntry * __ptr64 const)
1417?RemoveEntry@CDoubleList@@SAXQEAVCListEntry@@@Z
1418; public: void __cdecl CLockedDoubleList::RemoveEntry(class CListEntry * __ptr64 const) __ptr64
1419?RemoveEntry@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
1420; public: class CListEntry * __ptr64 __cdecl CDoubleList::RemoveHead(void) __ptr64
1421?RemoveHead@CDoubleList@@QEAAQEAVCListEntry@@XZ
1422; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::RemoveHead(void) __ptr64
1423?RemoveHead@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
1424; public: static void __cdecl ALLOC_CACHE_HANDLER::RemoveItem(class ALLOC_CACHE_HANDLER * __ptr64)
1425?RemoveItem@ALLOC_CACHE_HANDLER@@SAXPEAV1@@Z
1426; public: class CListEntry * __ptr64 __cdecl CDoubleList::RemoveTail(void) __ptr64
1427?RemoveTail@CDoubleList@@QEAAQEAVCListEntry@@XZ
1428; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::RemoveTail(void) __ptr64
1429?RemoveTail@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
1430RemoveWorkItem
1431; public: void __cdecl MULTISZ::Reset(void) __ptr64
1432?Reset@MULTISZ@@QEAAXXZ
1433; public: void __cdecl MULTISZA::Reset(void) __ptr64
1434?Reset@MULTISZA@@QEAAXXZ
1435; public: void __cdecl STRA::Reset(void) __ptr64
1436?Reset@STRA@@QEAAXXZ
1437; public: void __cdecl STRAU::Reset(void) __ptr64
1438?Reset@STRAU@@QEAAXXZ
1439; public: void __cdecl STRU::Reset(void) __ptr64
1440?Reset@STRU@@QEAAXXZ
1441; public: static int __cdecl ALLOC_CACHE_HANDLER::ResetLookasideCleanupInterval(void)
1442?ResetLookasideCleanupInterval@ALLOC_CACHE_HANDLER@@SAHXZ
1443; public: int __cdecl BUFFER::Resize(unsigned int) __ptr64
1444?Resize@BUFFER@@QEAAHI@Z
1445; public: int __cdecl BUFFER::Resize(unsigned int,unsigned int) __ptr64
1446?Resize@BUFFER@@QEAAHII@Z
1447; public: long __cdecl STRA::Resize(unsigned long) __ptr64
1448?Resize@STRA@@QEAAJK@Z
1449; public: long __cdecl STRU::Resize(unsigned long) __ptr64
1450?Resize@STRU@@QEAAJK@Z
1451; public: int __cdecl STRAU::ResizeW(unsigned long) __ptr64
1452?ResizeW@STRAU@@QEAAHK@Z
1453SAFEIsSpace
1454SAFEIsXDigit
1455; public: int __cdecl STRAU::SafeCopy(char const * __ptr64) __ptr64
1456?SafeCopy@STRAU@@QEAAHPEBD@Z
1457; public: int __cdecl STRAU::SafeCopy(unsigned short const * __ptr64) __ptr64
1458?SafeCopy@STRAU@@QEAAHPEBG@Z
1459; public: int __cdecl MB::Save(void) __ptr64
1460?Save@MB@@QEAAHXZ
1461ScheduleAdjustTime
1462ScheduleWorkItem
1463SchedulerInitialize
1464SchedulerTerminate
1465; public: unsigned short __cdecl CDFTCache::Seconds(void)const __ptr64
1466?Seconds@CDFTCache@@QEBAGXZ
1467; public: void __cdecl W3_TRACE_LOG::SetBlocking(int) __ptr64
1468?SetBlocking@W3_TRACE_LOG@@QEAAXH@Z
1469; public: void __cdecl CLKRHashTable::SetBucketLockSpinCount(unsigned short) __ptr64
1470?SetBucketLockSpinCount@CLKRHashTable@@QEAAXG@Z
1471; public: void __cdecl CLKRLinearHashTable::SetBucketLockSpinCount(unsigned short) __ptr64
1472?SetBucketLockSpinCount@CLKRLinearHashTable@@QEAAXG@Z
1473; public: void __cdecl W3_TRACE_LOG::SetBuffering(int) __ptr64
1474?SetBuffering@W3_TRACE_LOG@@QEAAXH@Z
1475; public: int __cdecl MB::SetData(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64,unsigned long,unsigned long) __ptr64
1476?SetData@MB@@QEAAHPEBGKKKPEAXKK@Z
1477; public: static void __cdecl CCritSec::SetDefaultSpinAdjustmentFactor(double)
1478?SetDefaultSpinAdjustmentFactor@CCritSec@@SAXN@Z
1479; public: static void __cdecl CFakeLock::SetDefaultSpinAdjustmentFactor(double)
1480?SetDefaultSpinAdjustmentFactor@CFakeLock@@SAXN@Z
1481; public: static void __cdecl CReaderWriterLock2::SetDefaultSpinAdjustmentFactor(double)
1482?SetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SAXN@Z
1483; public: static void __cdecl CReaderWriterLock3::SetDefaultSpinAdjustmentFactor(double)
1484?SetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SAXN@Z
1485; public: static void __cdecl CReaderWriterLock::SetDefaultSpinAdjustmentFactor(double)
1486?SetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SAXN@Z
1487; public: static void __cdecl CRtlResource::SetDefaultSpinAdjustmentFactor(double)
1488?SetDefaultSpinAdjustmentFactor@CRtlResource@@SAXN@Z
1489; public: static void __cdecl CShareLock::SetDefaultSpinAdjustmentFactor(double)
1490?SetDefaultSpinAdjustmentFactor@CShareLock@@SAXN@Z
1491; public: static void __cdecl CSmallSpinLock::SetDefaultSpinAdjustmentFactor(double)
1492?SetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SAXN@Z
1493; public: static void __cdecl CSpinLock::SetDefaultSpinAdjustmentFactor(double)
1494?SetDefaultSpinAdjustmentFactor@CSpinLock@@SAXN@Z
1495; public: static void __cdecl CCritSec::SetDefaultSpinCount(unsigned short)
1496?SetDefaultSpinCount@CCritSec@@SAXG@Z
1497; public: static void __cdecl CFakeLock::SetDefaultSpinCount(unsigned short)
1498?SetDefaultSpinCount@CFakeLock@@SAXG@Z
1499; public: static void __cdecl CReaderWriterLock2::SetDefaultSpinCount(unsigned short)
1500?SetDefaultSpinCount@CReaderWriterLock2@@SAXG@Z
1501; public: static void __cdecl CReaderWriterLock3::SetDefaultSpinCount(unsigned short)
1502?SetDefaultSpinCount@CReaderWriterLock3@@SAXG@Z
1503; public: static void __cdecl CReaderWriterLock::SetDefaultSpinCount(unsigned short)
1504?SetDefaultSpinCount@CReaderWriterLock@@SAXG@Z
1505; public: static void __cdecl CRtlResource::SetDefaultSpinCount(unsigned short)
1506?SetDefaultSpinCount@CRtlResource@@SAXG@Z
1507; public: static void __cdecl CShareLock::SetDefaultSpinCount(unsigned short)
1508?SetDefaultSpinCount@CShareLock@@SAXG@Z
1509; public: static void __cdecl CSmallSpinLock::SetDefaultSpinCount(unsigned short)
1510?SetDefaultSpinCount@CSmallSpinLock@@SAXG@Z
1511; public: static void __cdecl CSpinLock::SetDefaultSpinCount(unsigned short)
1512?SetDefaultSpinCount@CSpinLock@@SAXG@Z
1513; public: int __cdecl MB::SetDword(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,unsigned long) __ptr64
1514?SetDword@MB@@QEAAHPEBGKKKK@Z
1515SetExplicitAccessSettings
1516; public: int __cdecl STRA::SetLen(unsigned long) __ptr64
1517?SetLen@STRA@@QEAAHK@Z
1518; public: int __cdecl STRAU::SetLen(unsigned long) __ptr64
1519?SetLen@STRAU@@QEAAHK@Z
1520; public: int __cdecl STRU::SetLen(unsigned long) __ptr64
1521?SetLen@STRU@@QEAAHK@Z
1522; public: void __cdecl ASCLOG_DATETIME_CACHE::SetLocalTime(struct _SYSTEMTIME * __ptr64) __ptr64
1523?SetLocalTime@ASCLOG_DATETIME_CACHE@@QEAAXPEAU_SYSTEMTIME@@@Z
1524; public: static int __cdecl ALLOC_CACHE_HANDLER::SetLookasideCleanupInterval(void)
1525?SetLookasideCleanupInterval@ALLOC_CACHE_HANDLER@@SAHXZ
1526; public: bool __cdecl CCritSec::SetSpinCount(unsigned short) __ptr64
1527?SetSpinCount@CCritSec@@QEAA_NG@Z
1528; public: static unsigned long __cdecl CCritSec::SetSpinCount(struct _RTL_CRITICAL_SECTION * __ptr64,unsigned long)
1529?SetSpinCount@CCritSec@@SAKPEAU_RTL_CRITICAL_SECTION@@K@Z
1530; public: bool __cdecl CFakeLock::SetSpinCount(unsigned short) __ptr64
1531?SetSpinCount@CFakeLock@@QEAA_NG@Z
1532; public: bool __cdecl CReaderWriterLock2::SetSpinCount(unsigned short) __ptr64
1533?SetSpinCount@CReaderWriterLock2@@QEAA_NG@Z
1534; public: bool __cdecl CReaderWriterLock3::SetSpinCount(unsigned short) __ptr64
1535?SetSpinCount@CReaderWriterLock3@@QEAA_NG@Z
1536; public: bool __cdecl CReaderWriterLock::SetSpinCount(unsigned short) __ptr64
1537?SetSpinCount@CReaderWriterLock@@QEAA_NG@Z
1538; public: bool __cdecl CRtlResource::SetSpinCount(unsigned short) __ptr64
1539?SetSpinCount@CRtlResource@@QEAA_NG@Z
1540; public: bool __cdecl CShareLock::SetSpinCount(unsigned short) __ptr64
1541?SetSpinCount@CShareLock@@QEAA_NG@Z
1542; public: bool __cdecl CSmallSpinLock::SetSpinCount(unsigned short) __ptr64
1543?SetSpinCount@CSmallSpinLock@@QEAA_NG@Z
1544; public: bool __cdecl CSpinLock::SetSpinCount(unsigned short) __ptr64
1545?SetSpinCount@CSpinLock@@QEAA_NG@Z
1546; public: int __cdecl MB::SetString(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned short const * __ptr64,unsigned long) __ptr64
1547?SetString@MB@@QEAAHPEBGKK0K@Z
1548SetStringParameterValueInAnyService
1549; public: void __cdecl EXTLOG_DATETIME_CACHE::SetSystemTime(struct _SYSTEMTIME * __ptr64) __ptr64
1550?SetSystemTime@EXTLOG_DATETIME_CACHE@@QEAAXPEAU_SYSTEMTIME@@@Z
1551; public: void __cdecl CLKRHashTable::SetTableLockSpinCount(unsigned short) __ptr64
1552?SetTableLockSpinCount@CLKRHashTable@@QEAAXG@Z
1553; public: void __cdecl CLKRLinearHashTable::SetTableLockSpinCount(unsigned short) __ptr64
1554?SetTableLockSpinCount@CLKRLinearHashTable@@QEAAXG@Z
1555; public: int __cdecl CDateTime::SetTime(struct _FILETIME const & __ptr64) __ptr64
1556?SetTime@CDateTime@@QEAAHAEBU_FILETIME@@@Z
1557; public: int __cdecl CDateTime::SetTime(struct _SYSTEMTIME const & __ptr64) __ptr64
1558?SetTime@CDateTime@@QEAAHAEBU_SYSTEMTIME@@@Z
1559; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64
1560?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z
1561; public: void __cdecl BUFFER::SetValid(int) __ptr64
1562?SetValid@BUFFER@@QEAAXH@Z
1563; public: virtual long __cdecl MB_BASE_NOTIFICATION_SINK::ShutdownNotify(void) __ptr64
1564?ShutdownNotify@MB_BASE_NOTIFICATION_SINK@@UEAAJXZ
1565; public: virtual long __cdecl MB_BASE_NOTIFICATION_SINK::SinkNotify(unsigned long,struct _MD_CHANGE_OBJECT_W * __ptr64 const) __ptr64
1566?SinkNotify@MB_BASE_NOTIFICATION_SINK@@UEAAJKQEAU_MD_CHANGE_OBJECT_W@@@Z
1567; public: unsigned long __cdecl CLKRHashTable::Size(void)const __ptr64
1568?Size@CLKRHashTable@@QEBAKXZ
1569; public: unsigned long __cdecl CLKRLinearHashTable::Size(void)const __ptr64
1570?Size@CLKRLinearHashTable@@QEBAKXZ
1571SkipTo
1572SkipWhite
1573; private: unsigned char __cdecl CSharelock::SleepWaitingForLock(int) __ptr64
1574?SleepWaitingForLock@CSharelock@@AEAAEH@Z
1575StartIISAdminMonitor
1576; public: long __cdecl MB_BASE_NOTIFICATION_SINK::StartListening(struct IUnknown * __ptr64) __ptr64
1577?StartListening@MB_BASE_NOTIFICATION_SINK@@QEAAJPEAUIUnknown@@@Z
1578StopIISAdminMonitor
1579; public: long __cdecl MB_BASE_NOTIFICATION_SINK::StopListening(struct IUnknown * __ptr64) __ptr64
1580?StopListening@MB_BASE_NOTIFICATION_SINK@@QEAAJPEAUIUnknown@@@Z
1581; int __cdecl StringTimeToFileTime(char const * __ptr64,union _LARGE_INTEGER * __ptr64)
1582?StringTimeToFileTime@@YAHPEBDPEAT_LARGE_INTEGER@@@Z
1583; public: int __cdecl EVENT_LOG::Success(void)const __ptr64
1584?Success@EVENT_LOG@@QEBAHXZ
1585; public: void __cdecl STRA::SyncWithBuffer(void) __ptr64
1586?SyncWithBuffer@STRA@@QEAAXXZ
1587; public: void __cdecl STRU::SyncWithBuffer(void) __ptr64
1588?SyncWithBuffer@STRU@@QEAAXXZ
1589; public: virtual long __cdecl MB_BASE_NOTIFICATION_SINK::SynchronizedShutdownNotify(void) __ptr64
1590?SynchronizedShutdownNotify@MB_BASE_NOTIFICATION_SINK@@UEAAJXZ
1591SystemTimeToGMT
1592; int __cdecl SystemTimeToGMTEx(struct _SYSTEMTIME const & __ptr64,char * __ptr64,unsigned long,unsigned long)
1593?SystemTimeToGMTEx@@YAHAEBU_SYSTEMTIME@@PEADKK@Z
1594; private: static void __cdecl W3_TRACE_LOG_FACTORY::TimerCallback(void * __ptr64,unsigned char)
1595?TimerCallback@W3_TRACE_LOG_FACTORY@@CAXPEAXE@Z
1596; public: long __cdecl W3_TRACE_LOG::Trace(unsigned short const * __ptr64,...) __ptr64
1597?Trace@W3_TRACE_LOG@@QEAAJPEBGZZ
1598; public: int __cdecl CEtwTracer::TracePerUrlEnabled(void) __ptr64
1599?TracePerUrlEnabled@CEtwTracer@@QEAAHXZ
1600; public: bool __cdecl CReaderWriterLock3::TryConvertSharedToExclusive(void) __ptr64
1601?TryConvertSharedToExclusive@CReaderWriterLock3@@QEAA_NXZ
1602; public: bool __cdecl CCritSec::TryReadLock(void) __ptr64
1603?TryReadLock@CCritSec@@QEAA_NXZ
1604; public: bool __cdecl CFakeLock::TryReadLock(void) __ptr64
1605?TryReadLock@CFakeLock@@QEAA_NXZ
1606; public: bool __cdecl CReaderWriterLock2::TryReadLock(void) __ptr64
1607?TryReadLock@CReaderWriterLock2@@QEAA_NXZ
1608; public: bool __cdecl CReaderWriterLock3::TryReadLock(void) __ptr64
1609?TryReadLock@CReaderWriterLock3@@QEAA_NXZ
1610; public: bool __cdecl CReaderWriterLock::TryReadLock(void) __ptr64
1611?TryReadLock@CReaderWriterLock@@QEAA_NXZ
1612; public: bool __cdecl CRtlResource::TryReadLock(void) __ptr64
1613?TryReadLock@CRtlResource@@QEAA_NXZ
1614; public: bool __cdecl CShareLock::TryReadLock(void) __ptr64
1615?TryReadLock@CShareLock@@QEAA_NXZ
1616; public: bool __cdecl CSmallSpinLock::TryReadLock(void) __ptr64
1617?TryReadLock@CSmallSpinLock@@QEAA_NXZ
1618; public: bool __cdecl CSpinLock::TryReadLock(void) __ptr64
1619?TryReadLock@CSpinLock@@QEAA_NXZ
1620; public: bool __cdecl CCritSec::TryWriteLock(void) __ptr64
1621?TryWriteLock@CCritSec@@QEAA_NXZ
1622; public: bool __cdecl CFakeLock::TryWriteLock(void) __ptr64
1623?TryWriteLock@CFakeLock@@QEAA_NXZ
1624; public: bool __cdecl CReaderWriterLock2::TryWriteLock(void) __ptr64
1625?TryWriteLock@CReaderWriterLock2@@QEAA_NXZ
1626; public: bool __cdecl CReaderWriterLock3::TryWriteLock(void) __ptr64
1627?TryWriteLock@CReaderWriterLock3@@QEAA_NXZ
1628; public: bool __cdecl CReaderWriterLock::TryWriteLock(void) __ptr64
1629?TryWriteLock@CReaderWriterLock@@QEAA_NXZ
1630; public: bool __cdecl CRtlResource::TryWriteLock(void) __ptr64
1631?TryWriteLock@CRtlResource@@QEAA_NXZ
1632; public: bool __cdecl CShareLock::TryWriteLock(void) __ptr64
1633?TryWriteLock@CShareLock@@QEAA_NXZ
1634; public: bool __cdecl CSmallSpinLock::TryWriteLock(void) __ptr64
1635?TryWriteLock@CSmallSpinLock@@QEAA_NXZ
1636; public: bool __cdecl CSpinLock::TryWriteLock(void) __ptr64
1637?TryWriteLock@CSpinLock@@QEAA_NXZ
1638; long __cdecl UlCleanAndCopyUrl(unsigned char * __ptr64,unsigned long,unsigned long * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64 * __ptr64)
1639?UlCleanAndCopyUrl@@YAJPEAEKPEAKPEAGPEAPEAG@Z
1640; public: unsigned long __cdecl CEtwTracer::UnRegister(void) __ptr64
1641?UnRegister@CEtwTracer@@QEAAKXZ
1642; public: void __cdecl W3_TRACE_LOG::Undent(void) __ptr64
1643?Undent@W3_TRACE_LOG@@QEAAXXZ
1644; public: long __cdecl STRA::Unescape(void) __ptr64
1645?Unescape@STRA@@QEAAJXZ
1646; public: long __cdecl STRU::Unescape(void) __ptr64
1647?Unescape@STRU@@QEAAJXZ
1648; private: void __cdecl ALLOC_CACHE_HANDLER::Unlock(void) __ptr64
1649?Unlock@ALLOC_CACHE_HANDLER@@AEAAXXZ
1650; public: void __cdecl CLockedDoubleList::Unlock(void) __ptr64
1651?Unlock@CLockedDoubleList@@QEAAXXZ
1652; public: void __cdecl CLockedSingleList::Unlock(void) __ptr64
1653?Unlock@CLockedSingleList@@QEAAXXZ
1654; public: void __cdecl TS_RESOURCE::Unlock(void) __ptr64
1655?Unlock@TS_RESOURCE@@QEAAXXZ
1656; public: unsigned char __cdecl CSharelock::UpdateMaxSpins(int) __ptr64
1657?UpdateMaxSpins@CSharelock@@QEAAEH@Z
1658; public: unsigned char __cdecl CSharelock::UpdateMaxUsers(int) __ptr64
1659?UpdateMaxUsers@CSharelock@@QEAAEH@Z
1660; public: bool __cdecl CLKRHashTable::ValidSignature(void)const __ptr64
1661?ValidSignature@CLKRHashTable@@QEBA_NXZ
1662; public: bool __cdecl CLKRLinearHashTable::ValidSignature(void)const __ptr64
1663?ValidSignature@CLKRLinearHashTable@@QEBA_NXZ
1664; private: void __cdecl BUFFER::VerifyState(void)const __ptr64
1665?VerifyState@BUFFER@@AEBAXXZ
1666WCopyToA
1667; private: unsigned char __cdecl CSharelock::WaitForExclusiveLock(int) __ptr64
1668?WaitForExclusiveLock@CSharelock@@AEAAEH@Z
1669; private: unsigned char __cdecl CSharelock::WaitForShareLock(int) __ptr64
1670?WaitForShareLock@CSharelock@@AEAAEH@Z
1671; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<1,1,3,1,3,2>::WaitType(void)
1672?WaitType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1673; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<2,1,1,1,3,2>::WaitType(void)
1674?WaitType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1675; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<3,1,1,1,1,1>::WaitType(void)
1676?WaitType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_WAIT_TYPE@@XZ
1677; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<4,1,1,2,3,3>::WaitType(void)
1678?WaitType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
1679; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<5,2,1,2,3,3>::WaitType(void)
1680?WaitType@?$CLockBase@$04$01$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
1681; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<6,2,1,2,3,3>::WaitType(void)
1682?WaitType@?$CLockBase@$05$01$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
1683; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<7,2,2,1,3,2>::WaitType(void)
1684?WaitType@?$CLockBase@$06$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1685; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<8,2,2,1,3,2>::WaitType(void)
1686?WaitType@?$CLockBase@$07$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1687; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<9,2,1,1,3,2>::WaitType(void)
1688?WaitType@?$CLockBase@$08$01$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
1689; private: void __cdecl CSharelock::WakeAllSleepers(void) __ptr64
1690?WakeAllSleepers@CSharelock@@AEAAXXZ
1691; public: bool __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::Write(struct DATETIME_FORMAT_ENTRY const & __ptr64) __ptr64
1692?Write@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@QEAA_NAEBUDATETIME_FORMAT_ENTRY@@@Z
1693; public: bool __cdecl CDataCache<class CDateTime>::Write(class CDateTime const & __ptr64) __ptr64
1694?Write@?$CDataCache@VCDateTime@@@@QEAA_NAEBVCDateTime@@@Z
1695; public: void __cdecl CCritSec::WriteLock(void) __ptr64
1696?WriteLock@CCritSec@@QEAAXXZ
1697; public: void __cdecl CFakeLock::WriteLock(void) __ptr64
1698?WriteLock@CFakeLock@@QEAAXXZ
1699; public: void __cdecl CLKRHashTable::WriteLock(void) __ptr64
1700?WriteLock@CLKRHashTable@@QEAAXXZ
1701; public: void __cdecl CLKRLinearHashTable::WriteLock(void) __ptr64
1702?WriteLock@CLKRLinearHashTable@@QEAAXXZ
1703; public: void __cdecl CReaderWriterLock2::WriteLock(void) __ptr64
1704?WriteLock@CReaderWriterLock2@@QEAAXXZ
1705; public: void __cdecl CReaderWriterLock3::WriteLock(void) __ptr64
1706?WriteLock@CReaderWriterLock3@@QEAAXXZ
1707; public: void __cdecl CReaderWriterLock::WriteLock(void) __ptr64
1708?WriteLock@CReaderWriterLock@@QEAAXXZ
1709; public: void __cdecl CRtlResource::WriteLock(void) __ptr64
1710?WriteLock@CRtlResource@@QEAAXXZ
1711; public: void __cdecl CShareLock::WriteLock(void) __ptr64
1712?WriteLock@CShareLock@@QEAAXXZ
1713; public: void __cdecl CSmallSpinLock::WriteLock(void) __ptr64
1714?WriteLock@CSmallSpinLock@@QEAAXXZ
1715; public: void __cdecl CSpinLock::WriteLock(void) __ptr64
1716?WriteLock@CSpinLock@@QEAAXXZ
1717; public: long __cdecl IPM_MESSAGE_PIPE::WriteMessage(enum IPM_OPCODE,unsigned long,void * __ptr64) __ptr64
1718?WriteMessage@IPM_MESSAGE_PIPE@@QEAAJW4IPM_OPCODE@@KPEAX@Z
1719; public: void __cdecl CCritSec::WriteUnlock(void) __ptr64
1720?WriteUnlock@CCritSec@@QEAAXXZ
1721; public: void __cdecl CFakeLock::WriteUnlock(void) __ptr64
1722?WriteUnlock@CFakeLock@@QEAAXXZ
1723; public: void __cdecl CLKRHashTable::WriteUnlock(void)const __ptr64
1724?WriteUnlock@CLKRHashTable@@QEBAXXZ
1725; public: void __cdecl CLKRLinearHashTable::WriteUnlock(void)const __ptr64
1726?WriteUnlock@CLKRLinearHashTable@@QEBAXXZ
1727; public: void __cdecl CReaderWriterLock2::WriteUnlock(void) __ptr64
1728?WriteUnlock@CReaderWriterLock2@@QEAAXXZ
1729; public: void __cdecl CReaderWriterLock3::WriteUnlock(void) __ptr64
1730?WriteUnlock@CReaderWriterLock3@@QEAAXXZ
1731; public: void __cdecl CReaderWriterLock::WriteUnlock(void) __ptr64
1732?WriteUnlock@CReaderWriterLock@@QEAAXXZ
1733; public: void __cdecl CRtlResource::WriteUnlock(void) __ptr64
1734?WriteUnlock@CRtlResource@@QEAAXXZ
1735; public: void __cdecl CShareLock::WriteUnlock(void) __ptr64
1736?WriteUnlock@CShareLock@@QEAAXXZ
1737; public: void __cdecl CSmallSpinLock::WriteUnlock(void) __ptr64
1738?WriteUnlock@CSmallSpinLock@@QEAAXXZ
1739; public: void __cdecl CSpinLock::WriteUnlock(void) __ptr64
1740?WriteUnlock@CSpinLock@@QEAAXXZ
1741; protected: void __cdecl CLKRLinearHashTable_Iterator::_AddRef(int)const __ptr64
1742?_AddRef@CLKRLinearHashTable_Iterator@@IEBAXH@Z
1743; private: void __cdecl CLKRLinearHashTable::_AddRefRecord(void const * __ptr64,int)const __ptr64
1744?_AddRefRecord@CLKRLinearHashTable@@AEBAXPEBXH@Z
1745; private: static class CNodeClump * __ptr64 __cdecl CLKRLinearHashTable::_AllocateNodeClump(void)
1746?_AllocateNodeClump@CLKRLinearHashTable@@CAQEAVCNodeClump@@XZ
1747; private: class CSegment * __ptr64 __cdecl CLKRLinearHashTable::_AllocateSegment(void)const __ptr64
1748?_AllocateSegment@CLKRLinearHashTable@@AEBAQEAVCSegment@@XZ
1749; private: static class CDirEntry * __ptr64 __cdecl CLKRLinearHashTable::_AllocateSegmentDirectory(unsigned __int64)
1750?_AllocateSegmentDirectory@CLKRLinearHashTable@@CAQEAVCDirEntry@@_K@Z
1751; private: static class CLKRLinearHashTable * __ptr64 __cdecl CLKRHashTable::_AllocateSubTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,class CLKRHashTable * __ptr64,bool)
1752?_AllocateSubTable@CLKRHashTable@@CAQEAVCLKRLinearHashTable@@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKPEAV1@_N@Z
1753; private: static class CLKRLinearHashTable * __ptr64 * __ptr64 __cdecl CLKRHashTable::_AllocateSubTableArray(unsigned __int64)
1754?_AllocateSubTableArray@CLKRHashTable@@CAQEAPEAVCLKRLinearHashTable@@_K@Z
1755; private: unsigned long __cdecl CLKRLinearHashTable::_Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE,enum LK_PREDICATE & __ptr64) __ptr64
1756?_Apply@CLKRLinearHashTable@@AEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@AEAW4LK_PREDICATE@@@Z
1757; private: unsigned long __cdecl CLKRLinearHashTable::_ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE,enum LK_PREDICATE & __ptr64) __ptr64
1758?_ApplyIf@CLKRLinearHashTable@@AEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@AEAW42@@Z
1759; private: class CBucket * __ptr64 __cdecl CLKRLinearHashTable::_Bucket(unsigned long)const __ptr64
1760?_Bucket@CLKRLinearHashTable@@AEBAPEAVCBucket@@K@Z
1761; private: unsigned long __cdecl CLKRLinearHashTable::_BucketAddress(unsigned long)const __ptr64
1762?_BucketAddress@CLKRLinearHashTable@@AEBAKK@Z
1763; private: unsigned long __cdecl CLKRHashTable::_CalcKeyHash(unsigned __int64)const __ptr64
1764?_CalcKeyHash@CLKRHashTable@@AEBAK_K@Z
1765; private: unsigned long __cdecl CLKRLinearHashTable::_CalcKeyHash(unsigned __int64)const __ptr64
1766?_CalcKeyHash@CLKRLinearHashTable@@AEBAK_K@Z
1767; private: void __cdecl CLKRLinearHashTable::_Clear(bool) __ptr64
1768?_Clear@CLKRLinearHashTable@@AEAAX_N@Z
1769; private: bool __cdecl CReaderWriterLock2::_CmpExch(long,long) __ptr64
1770?_CmpExch@CReaderWriterLock2@@AEAA_NJJ@Z
1771; private: bool __cdecl CReaderWriterLock3::_CmpExch(long,long) __ptr64
1772?_CmpExch@CReaderWriterLock3@@AEAA_NJJ@Z
1773; private: bool __cdecl CReaderWriterLock::_CmpExch(long,long) __ptr64
1774?_CmpExch@CReaderWriterLock@@AEAA_NJJ@Z
1775; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Contract(void) __ptr64
1776?_Contract@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@XZ
1777; private: static long __cdecl CReaderWriterLock3::_CurrentThreadId(void)
1778?_CurrentThreadId@CReaderWriterLock3@@CAJXZ
1779; private: static long __cdecl CSmallSpinLock::_CurrentThreadId(void)
1780?_CurrentThreadId@CSmallSpinLock@@CAJXZ
1781; private: static long __cdecl CSpinLock::_CurrentThreadId(void)
1782?_CurrentThreadId@CSpinLock@@CAJXZ
1783; private: unsigned long __cdecl CLKRLinearHashTable::_DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_PREDICATE & __ptr64) __ptr64
1784?_DeleteIf@CLKRLinearHashTable@@AEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1AEAW42@@Z
1785; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_DeleteKey(unsigned __int64,unsigned long) __ptr64
1786?_DeleteKey@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@_KK@Z
1787; private: bool __cdecl CLKRLinearHashTable::_DeleteNode(class CBucket * __ptr64,class CNodeClump * __ptr64 & __ptr64,class CNodeClump * __ptr64 & __ptr64,int & __ptr64) __ptr64
1788?_DeleteNode@CLKRLinearHashTable@@AEAA_NPEAVCBucket@@AEAPEAVCNodeClump@@1AEAH@Z
1789; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_DeleteRecord(void const * __ptr64,unsigned long) __ptr64
1790?_DeleteRecord@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEBXK@Z
1791; private: bool __cdecl CLKRLinearHashTable::_EqualKeys(unsigned __int64,unsigned __int64)const __ptr64
1792?_EqualKeys@CLKRLinearHashTable@@AEBA_N_K0@Z
1793; private: bool __cdecl CLKRLinearHashTable::_Erase(class CLKRLinearHashTable_Iterator & __ptr64,unsigned long) __ptr64
1794?_Erase@CLKRLinearHashTable@@AEAA_NAEAVCLKRLinearHashTable_Iterator@@K@Z
1795; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Expand(void) __ptr64
1796?_Expand@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@XZ
1797; private: unsigned __int64 const __cdecl CLKRHashTable::_ExtractKey(void const * __ptr64)const __ptr64
1798?_ExtractKey@CLKRHashTable@@AEBA?B_KPEBX@Z
1799; private: unsigned __int64 const __cdecl CLKRLinearHashTable::_ExtractKey(void const * __ptr64)const __ptr64
1800?_ExtractKey@CLKRLinearHashTable@@AEBA?B_KPEBX@Z
1801; private: class CBucket * __ptr64 __cdecl CLKRLinearHashTable::_FindBucket(unsigned long,bool)const __ptr64
1802?_FindBucket@CLKRLinearHashTable@@AEBAPEAVCBucket@@K_N@Z
1803; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_FindKey(unsigned __int64,unsigned long,void const * __ptr64 * __ptr64,class CLKRLinearHashTable_Iterator * __ptr64)const __ptr64
1804?_FindKey@CLKRLinearHashTable@@AEBA?AW4LK_RETCODE@@_KKPEAPEBXPEAVCLKRLinearHashTable_Iterator@@@Z
1805; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_FindRecord(void const * __ptr64,unsigned long)const __ptr64
1806?_FindRecord@CLKRLinearHashTable@@AEBA?AW4LK_RETCODE@@PEBXK@Z
1807; private: static bool __cdecl CLKRLinearHashTable::_FreeNodeClump(class CNodeClump * __ptr64)
1808?_FreeNodeClump@CLKRLinearHashTable@@CA_NPEAVCNodeClump@@@Z
1809; private: bool __cdecl CLKRLinearHashTable::_FreeSegment(class CSegment * __ptr64)const __ptr64
1810?_FreeSegment@CLKRLinearHashTable@@AEBA_NPEAVCSegment@@@Z
1811; private: bool __cdecl CLKRLinearHashTable::_FreeSegmentDirectory(void) __ptr64
1812?_FreeSegmentDirectory@CLKRLinearHashTable@@AEAA_NXZ
1813; private: static bool __cdecl CLKRHashTable::_FreeSubTable(class CLKRLinearHashTable * __ptr64)
1814?_FreeSubTable@CLKRHashTable@@CA_NPEAVCLKRLinearHashTable@@@Z
1815; private: static bool __cdecl CLKRHashTable::_FreeSubTableArray(class CLKRLinearHashTable * __ptr64 * __ptr64)
1816?_FreeSubTableArray@CLKRHashTable@@CA_NPEAPEAVCLKRLinearHashTable@@@Z
1817; private: unsigned long __cdecl CLKRLinearHashTable::_H0(unsigned long)const __ptr64
1818?_H0@CLKRLinearHashTable@@AEBAKK@Z
1819; private: static unsigned long __cdecl CLKRLinearHashTable::_H0(unsigned long,unsigned long)
1820?_H0@CLKRLinearHashTable@@CAKKK@Z
1821; private: unsigned long __cdecl CLKRLinearHashTable::_H1(unsigned long)const __ptr64
1822?_H1@CLKRLinearHashTable@@AEBAKK@Z
1823; private: static unsigned long __cdecl CLKRLinearHashTable::_H1(unsigned long,unsigned long)
1824?_H1@CLKRLinearHashTable@@CAKKK@Z
1825; protected: bool __cdecl CLKRHashTable_Iterator::_Increment(bool) __ptr64
1826?_Increment@CLKRHashTable_Iterator@@IEAA_N_N@Z
1827; protected: bool __cdecl CLKRLinearHashTable_Iterator::_Increment(bool) __ptr64
1828?_Increment@CLKRLinearHashTable_Iterator@@IEAA_N_N@Z
1829; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Initialize(unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),char const * __ptr64,double,unsigned long) __ptr64
1830?_Initialize@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@P6A?B_KPEBX@ZP6AK_K@ZP6A_N22@ZP6AX0H@ZPEBDNK@Z
1831; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_InsertRecord(void const * __ptr64,unsigned long,bool,class CLKRLinearHashTable_Iterator * __ptr64) __ptr64
1832?_InsertRecord@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEBXK_NPEAVCLKRLinearHashTable_Iterator@@@Z
1833; private: void __cdecl CLKRHashTable::_InsertThisIntoGlobalList(void) __ptr64
1834?_InsertThisIntoGlobalList@CLKRHashTable@@AEAAXXZ
1835; private: void __cdecl CLKRLinearHashTable::_InsertThisIntoGlobalList(void) __ptr64
1836?_InsertThisIntoGlobalList@CLKRLinearHashTable@@AEAAXXZ
1837; private: bool __cdecl CSpinLock::_IsLocked(void)const __ptr64
1838?_IsLocked@CSpinLock@@AEBA_NXZ
1839; private: int __cdecl CLKRLinearHashTable::_IsNodeCompact(class CBucket * __ptr64 const)const __ptr64
1840?_IsNodeCompact@CLKRLinearHashTable@@AEBAHQEAVCBucket@@@Z
1841; private: bool __cdecl CLKRHashTable::_IsValidIterator(class CLKRHashTable_Iterator const & __ptr64)const __ptr64
1842?_IsValidIterator@CLKRHashTable@@AEBA_NAEBVCLKRHashTable_Iterator@@@Z
1843; private: bool __cdecl CLKRLinearHashTable::_IsValidIterator(class CLKRLinearHashTable_Iterator const & __ptr64)const __ptr64
1844?_IsValidIterator@CLKRLinearHashTable@@AEBA_NAEBVCLKRLinearHashTable_Iterator@@@Z
1845; private: void __cdecl CSpinLock::_Lock(void) __ptr64
1846?_Lock@CSpinLock@@AEAAXXZ
1847; private: void __cdecl CReaderWriterLock2::_LockSpin(bool) __ptr64
1848?_LockSpin@CReaderWriterLock2@@AEAAX_N@Z
1849; private: void __cdecl CReaderWriterLock3::_LockSpin(enum CReaderWriterLock3::SPIN_TYPE) __ptr64
1850?_LockSpin@CReaderWriterLock3@@AEAAXW4SPIN_TYPE@1@@Z
1851; private: void __cdecl CReaderWriterLock::_LockSpin(bool) __ptr64
1852?_LockSpin@CReaderWriterLock@@AEAAX_N@Z
1853; private: void __cdecl CSmallSpinLock::_LockSpin(void) __ptr64
1854?_LockSpin@CSmallSpinLock@@AEAAXXZ
1855; private: void __cdecl CSpinLock::_LockSpin(void) __ptr64
1856?_LockSpin@CSpinLock@@AEAAXXZ
1857; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_MergeRecordSets(class CBucket * __ptr64,class CNodeClump * __ptr64,class CNodeClump * __ptr64) __ptr64
1858?_MergeRecordSets@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCBucket@@PEAVCNodeClump@@1@Z
1859; private: static enum LK_PREDICATE __cdecl CLKRLinearHashTable::_PredTrue(void const * __ptr64,void * __ptr64)
1860?_PredTrue@CLKRLinearHashTable@@CA?AW4LK_PREDICATE@@PEBXPEAX@Z
1861; private: void __cdecl CReaderWriterLock2::_ReadLockSpin(void) __ptr64
1862?_ReadLockSpin@CReaderWriterLock2@@AEAAXXZ
1863; private: void __cdecl CReaderWriterLock3::_ReadLockSpin(enum CReaderWriterLock3::SPIN_TYPE) __ptr64
1864?_ReadLockSpin@CReaderWriterLock3@@AEAAXW4SPIN_TYPE@1@@Z
1865; private: void __cdecl CReaderWriterLock::_ReadLockSpin(void) __ptr64
1866?_ReadLockSpin@CReaderWriterLock@@AEAAXXZ
1867; protected: static void __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::_ReadMemoryBarrier(void)
1868?_ReadMemoryBarrier@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@KAXXZ
1869; protected: static void __cdecl CDataCache<class CDateTime>::_ReadMemoryBarrier(void)
1870?_ReadMemoryBarrier@?$CDataCache@VCDateTime@@@@KAXXZ
1871; private: bool __cdecl CLKRLinearHashTable::_ReadOrWriteLock(void)const __ptr64
1872?_ReadOrWriteLock@CLKRLinearHashTable@@AEBA_NXZ
1873; private: void __cdecl CLKRLinearHashTable::_ReadOrWriteUnlock(bool)const __ptr64
1874?_ReadOrWriteUnlock@CLKRLinearHashTable@@AEBAX_N@Z
1875; protected: long __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::_ReadSequence(void)const __ptr64
1876?_ReadSequence@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@IEBAJXZ
1877; protected: long __cdecl CDataCache<class CDateTime>::_ReadSequence(void)const __ptr64
1878?_ReadSequence@?$CDataCache@VCDateTime@@@@IEBAJXZ
1879; private: void __cdecl CLKRHashTable::_RemoveThisFromGlobalList(void) __ptr64
1880?_RemoveThisFromGlobalList@CLKRHashTable@@AEAAXXZ
1881; private: void __cdecl CLKRLinearHashTable::_RemoveThisFromGlobalList(void) __ptr64
1882?_RemoveThisFromGlobalList@CLKRLinearHashTable@@AEAAXXZ
1883; private: unsigned long __cdecl CLKRLinearHashTable::_SegIndex(unsigned long)const __ptr64
1884?_SegIndex@CLKRLinearHashTable@@AEBAKK@Z
1885; private: class CSegment * __ptr64 & __ptr64 __cdecl CLKRLinearHashTable::_Segment(unsigned long)const __ptr64
1886?_Segment@CLKRLinearHashTable@@AEBAAEAPEAVCSegment@@K@Z
1887; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_SetSegVars(enum LK_TABLESIZE,unsigned long) __ptr64
1888?_SetSegVars@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@W4LK_TABLESIZE@@K@Z
1889; protected: long __cdecl CDataCache<struct DATETIME_FORMAT_ENTRY>::_SetSequence(long) __ptr64
1890?_SetSequence@?$CDataCache@UDATETIME_FORMAT_ENTRY@@@@IEAAJJ@Z
1891; protected: long __cdecl CDataCache<class CDateTime>::_SetSequence(long) __ptr64
1892?_SetSequence@?$CDataCache@VCDateTime@@@@IEAAJJ@Z
1893; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_SplitRecordSet(class CNodeClump * __ptr64,class CNodeClump * __ptr64,unsigned long,unsigned long,unsigned long,class CNodeClump * __ptr64) __ptr64
1894?_SplitRecordSet@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCNodeClump@@0KKK0@Z
1895; private: class CLKRLinearHashTable * __ptr64 __cdecl CLKRHashTable::_SubTable(unsigned long)const __ptr64
1896?_SubTable@CLKRHashTable@@AEBAPEAVCLKRLinearHashTable@@K@Z
1897; private: int __cdecl CLKRHashTable::_SubTableIndex(class CLKRLinearHashTable * __ptr64)const __ptr64
1898?_SubTableIndex@CLKRHashTable@@AEBAHPEAVCLKRLinearHashTable@@@Z
1899; private: bool __cdecl CSmallSpinLock::_TryLock(void) __ptr64
1900?_TryLock@CSmallSpinLock@@AEAA_NXZ
1901; private: bool __cdecl CSpinLock::_TryLock(void) __ptr64
1902?_TryLock@CSpinLock@@AEAA_NXZ
1903; private: bool __cdecl CReaderWriterLock2::_TryReadLock(void) __ptr64
1904?_TryReadLock@CReaderWriterLock2@@AEAA_NXZ
1905; private: bool __cdecl CReaderWriterLock3::_TryReadLock(void) __ptr64
1906?_TryReadLock@CReaderWriterLock3@@AEAA_NXZ
1907; private: bool __cdecl CReaderWriterLock::_TryReadLock(void) __ptr64
1908?_TryReadLock@CReaderWriterLock@@AEAA_NXZ
1909; private: bool __cdecl CReaderWriterLock3::_TryReadLockRecursive(void) __ptr64
1910?_TryReadLockRecursive@CReaderWriterLock3@@AEAA_NXZ
1911; private: bool __cdecl CReaderWriterLock3::_TryWriteLock2(void) __ptr64
1912?_TryWriteLock2@CReaderWriterLock3@@AEAA_NXZ
1913; private: bool __cdecl CReaderWriterLock2::_TryWriteLock(long) __ptr64
1914?_TryWriteLock@CReaderWriterLock2@@AEAA_NJ@Z
1915; private: bool __cdecl CReaderWriterLock3::_TryWriteLock(long) __ptr64
1916?_TryWriteLock@CReaderWriterLock3@@AEAA_NJ@Z
1917; private: bool __cdecl CReaderWriterLock::_TryWriteLock(void) __ptr64
1918?_TryWriteLock@CReaderWriterLock@@AEAA_NXZ
1919; private: void __cdecl CSpinLock::_Unlock(void) __ptr64
1920?_Unlock@CSpinLock@@AEAAXXZ
1921; private: void __cdecl CReaderWriterLock2::_WriteLockSpin(void) __ptr64
1922?_WriteLockSpin@CReaderWriterLock2@@AEAAXXZ
1923; private: void __cdecl CReaderWriterLock3::_WriteLockSpin(void) __ptr64
1924?_WriteLockSpin@CReaderWriterLock3@@AEAAXXZ
1925; private: void __cdecl CReaderWriterLock::_WriteLockSpin(void) __ptr64
1926?_WriteLockSpin@CReaderWriterLock@@AEAAXXZ
1927; long const * const `public: static long const * __ptr64 __cdecl CLKRHashTableStats::BucketSizes(void)'::`2'::s_aBucketSizes
1928?s_aBucketSizes@?1??BucketSizes@CLKRHashTableStats@@SAPEBJXZ@4QBJB
1929; private: static struct _RTL_CRITICAL_SECTION ALLOC_CACHE_HANDLER::sm_csItems
1930?sm_csItems@ALLOC_CACHE_HANDLER@@0U_RTL_CRITICAL_SECTION@@A DATA
1931; protected: static double CCritSec::sm_dblDfltSpinAdjFctr
1932?sm_dblDfltSpinAdjFctr@CCritSec@@1NA DATA
1933; protected: static double CFakeLock::sm_dblDfltSpinAdjFctr
1934?sm_dblDfltSpinAdjFctr@CFakeLock@@1NA DATA
1935; protected: static double CReaderWriterLock2::sm_dblDfltSpinAdjFctr
1936?sm_dblDfltSpinAdjFctr@CReaderWriterLock2@@1NA DATA
1937; protected: static double CReaderWriterLock3::sm_dblDfltSpinAdjFctr
1938?sm_dblDfltSpinAdjFctr@CReaderWriterLock3@@1NA DATA
1939; protected: static double CReaderWriterLock::sm_dblDfltSpinAdjFctr
1940?sm_dblDfltSpinAdjFctr@CReaderWriterLock@@1NA DATA
1941; protected: static double CRtlResource::sm_dblDfltSpinAdjFctr
1942?sm_dblDfltSpinAdjFctr@CRtlResource@@1NA DATA
1943; protected: static double CShareLock::sm_dblDfltSpinAdjFctr
1944?sm_dblDfltSpinAdjFctr@CShareLock@@1NA DATA
1945; protected: static double CSmallSpinLock::sm_dblDfltSpinAdjFctr
1946?sm_dblDfltSpinAdjFctr@CSmallSpinLock@@1NA DATA
1947; protected: static double CSpinLock::sm_dblDfltSpinAdjFctr
1948?sm_dblDfltSpinAdjFctr@CSpinLock@@1NA DATA
1949; private: static int ALLOC_CACHE_HANDLER::sm_fInitCsItems
1950?sm_fInitCsItems@ALLOC_CACHE_HANDLER@@0HA DATA
1951; private: static void * __ptr64 __ptr64 ALLOC_CACHE_HANDLER::sm_hTimer
1952?sm_hTimer@ALLOC_CACHE_HANDLER@@0PEAXEA DATA
1953; private: static struct _LIST_ENTRY ALLOC_CACHE_HANDLER::sm_lItemsHead
1954?sm_lItemsHead@ALLOC_CACHE_HANDLER@@0U_LIST_ENTRY@@A DATA
1955; private: static class CLockedDoubleList CLKRHashTable::sm_llGlobalList
1956?sm_llGlobalList@CLKRHashTable@@0VCLockedDoubleList@@A DATA
1957; private: static class CLockedDoubleList CLKRLinearHashTable::sm_llGlobalList
1958?sm_llGlobalList@CLKRLinearHashTable@@0VCLockedDoubleList@@A DATA
1959; private: static long ALLOC_CACHE_HANDLER::sm_nFillPattern
1960?sm_nFillPattern@ALLOC_CACHE_HANDLER@@0JA DATA
1961; protected: static class ALLOC_CACHE_HANDLER * __ptr64 __ptr64 CLKRLinearHashTable::sm_palloc
1962?sm_palloc@CLKRLinearHashTable@@1PEAVALLOC_CACHE_HANDLER@@EA DATA
1963; protected: static unsigned short CCritSec::sm_wDefaultSpinCount
1964?sm_wDefaultSpinCount@CCritSec@@1GA DATA
1965; protected: static unsigned short CFakeLock::sm_wDefaultSpinCount
1966?sm_wDefaultSpinCount@CFakeLock@@1GA DATA
1967; protected: static unsigned short CReaderWriterLock2::sm_wDefaultSpinCount
1968?sm_wDefaultSpinCount@CReaderWriterLock2@@1GA DATA
1969; protected: static unsigned short CReaderWriterLock3::sm_wDefaultSpinCount
1970?sm_wDefaultSpinCount@CReaderWriterLock3@@1GA DATA
1971; protected: static unsigned short CReaderWriterLock::sm_wDefaultSpinCount
1972?sm_wDefaultSpinCount@CReaderWriterLock@@1GA DATA
1973; protected: static unsigned short CRtlResource::sm_wDefaultSpinCount
1974?sm_wDefaultSpinCount@CRtlResource@@1GA DATA
1975; protected: static unsigned short CShareLock::sm_wDefaultSpinCount
1976?sm_wDefaultSpinCount@CShareLock@@1GA DATA
1977; protected: static unsigned short CSmallSpinLock::sm_wDefaultSpinCount
1978?sm_wDefaultSpinCount@CSmallSpinLock@@1GA DATA
1979; protected: static unsigned short CSpinLock::sm_wDefaultSpinCount
1980?sm_wDefaultSpinCount@CSpinLock@@1GA DATA
1981uudecode
1982uuencode
1983CreateRefTraceLog
1984CreateTraceLog
1985DestroyRefTraceLog
1986DestroyTraceLog
1987GetAllocCounters
1988GetCurrentTimeInSeconds
1989IISGetCurrentTime
1990IISGetPlatformType
1991IISInitializeCriticalSection
1992IISSetCriticalSectionSpinCount
1993InetAcquireResourceExclusive
1994InetAcquireResourceShared
1995InetConvertExclusiveToShared
1996InetConvertSharedToExclusive
1997InetDeleteResource
1998InetInitializeResource
1999InetReleaseResource
2000InitializeIISUtil
2001IrtlTrace
2002IsValidAddress
2003IsValidString
2004PuCloseDbgMemoryLog
2005PuCloseDbgPrintFile
2006PuCreateDebugPrintsObject
2007PuDbgAssertFailed
2008PuDbgCaptureContext
2009PuDbgCreateEvent
2010PuDbgCreateMutex
2011PuDbgCreateSemaphore
2012PuDbgDump
2013PuDbgPrint
2014PuDbgPrintCurrentTime
2015PuDbgPrintError
2016PuDeleteDebugPrintsObject
2017PuGetDbgOutputFlags
2018PuLoadDebugFlagsFromReg
2019PuLoadDebugFlagsFromRegStr
2020PuOpenDbgMemoryLog
2021PuOpenDbgPrintFile
2022PuReOpenDbgPrintFile
2023PuSaveDebugFlagsInReg
2024PuSetDbgOutputFlags
2025ResetTraceLog
2026TerminateIISUtil
2027WriteRefTraceLog
2028WriteRefTraceLogEx
2029WriteTraceLog
lib/libc/mingw/lib64/iiswmi.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file IISPROV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IISPROV.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13DoMofComp
lib/libc/mingw/lib64/imeshare.def created+38
......@@ -0,0 +1,38 @@
1;
2; Exports of file imeshare.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY imeshare.dll
8EXPORTS
9DllMain
10FInitIMEShare
11EndIMEShare
12FRefreshStyle
13FSupportSty
14PIMEStyleFromAttr
15PColorStyleTextFromIMEStyle
16PColorStyleBackFromIMEStyle
17FBoldIMEStyle
18FItalicIMEStyle
19FUlIMEStyle
20GrfStyIMEStyle
21IdUlIMEStyle
22FGetIMEStyleAttr
23FSetIMEStyleAttr
24FWinIMEColorStyle
25FFundamentalIMEColorStyle
26FRGBIMEColorStyle
27FSpecialIMEColorStyle
28IdSpecialFromIMEColorStyle
29IdWinFromIMEColorStyle
30IdFundamentalFromIMEColorStyle
31RGBFromIMEColorStyle
32FSetIMEColorStyle
33FSetIMEStyle
34FSpecialTextIMEColorStyle
35FSpecialWindowIMEColorStyle
36CustomizeIMEShare
37FSaveIMEShareSetting
38PIMEShareCreate
lib/libc/mingw/lib64/imjp81k.def created+37
......@@ -0,0 +1,37 @@
1;
2; Exports of file imjp81k.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY imjp81k.dll
8EXPORTS
9DllCanUnloadNowDone
10CheckFileType
11CleanDicThreadFunc
12CreateIFECommonInstance
13CreateIFEDictionary2Instance
14CreateIFEDictionaryInstance
15CreateIFELanguageInstance
16CreateIImeIPointInstance
17CreateIImeKbdInstance
18CreateIImeKnlDictInstance
19CreateIRegManInstance
20DllCanUnloadNow
21DllGetClassObject
22DllRegisterServer
23DllUnregisterServer
24KnlClose
25KnlInit
26KnlOpen
27KnlTerm
28LoadTipConfig
29OurCoCreateInstance
30OurCoTaskMemAlloc
31OurCoTaskMemFree
32OurCoTaskMemRealloc
33OurStringFromGUID2
34RgSetGakusyuu
35ShutdownKnlDll
36UnLoadOurOle32
37reload_config
lib/libc/mingw/lib64/imjpcus.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file imejpcus.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY imejpcus.dll
8EXPORTS
9OpenDetailDialog
10DllMain
lib/libc/mingw/lib64/imjpdct.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file imedic.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY imedic.dll
8EXPORTS
9OpenDicTool
10OpenRegisterWord
lib/libc/mingw/lib64/imjputyc.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file imjputyc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY imjputyc.dll
8EXPORTS
9AutoCorrLbSubWndProc
10DllMain
11OpenImeTool
12OpenUty
lib/libc/mingw/lib64/imsinsnt.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file IMSINSNT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IMSINSNT.dll
8EXPORTS
9OcEntry
lib/libc/mingw/lib64/imskdic.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file imeskdic.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY imeskdic.dll
8EXPORTS
9CreateIImeSkdicInstance
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/inetcfg.def created+61
......@@ -0,0 +1,61 @@
1;
2; Exports of file INETCFG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY INETCFG.dll
8EXPORTS
9CheckConnectionWizard
10ConfigureSystemForInternet
11ConfigureSystemForInternetA
12ConfigureSystemForInternetW
13DllCanUnloadNow
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
17FreeSignupWizard
18InetConfigClient
19InetConfigClientA
20InetConfigClientW
21InetConfigSystem
22InetConfigSystemFromPath
23InetConfigSystemFromPathA
24InetConfigSystemFromPathW
25InetGetAutodial
26InetGetAutodialA
27InetGetAutodialW
28InetGetClientInfo
29InetGetClientInfoA
30InetGetClientInfoW
31InetGetProxy
32InetGetProxyA
33InetGetProxyW
34InetNeedModem
35InetNeedSystemComponents
36InetPerformSecurityCheck
37InetSetAutodial
38InetSetAutodialA
39InetSetAutodialW
40InetSetClientInfo
41InetSetClientInfoA
42InetSetClientInfoW
43InetSetProxy
44InetSetProxyA
45InetSetProxyEx
46InetSetProxyExA
47InetSetProxyExW
48InetSetProxyW
49InetStartServices
50IsSmartStart
51IsSmartStartEx
52LaunchSignupWizard
53LaunchSignupWizardEx
54SetAutoProxyConnectoid
55SetInternetPhoneNumber
56SetInternetPhoneNumberA
57SetInternetPhoneNumberW
58SetShellNext
59SetShellNextA
60SetShellNextW
61_LaunchSignupWizardEx
lib/libc/mingw/lib64/infoadmn.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file INFOADMN.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY INFOADMN.dll
8EXPORTS
9CollectW3PerfData
10FtpClearStatistics2
11FtpQueryStatistics2
12IISDisconnectUser
13IISEnumerateUsers
14InetInfoClearStatistics
15InetInfoFlushMemoryCache
16InetInfoGetAdminInformation
17InetInfoGetGlobalAdminInformation
18InetInfoGetServerCapabilities
19InetInfoGetSites
20InetInfoGetVersion
21InetInfoQueryStatistics
22InetInfoSetAdminInformation
23InetInfoSetGlobalAdminInformation
24InitW3CounterStructure
25W3ClearStatistics2
26W3QueryStatistics2
lib/libc/mingw/lib64/infocomm.def created+1173
......@@ -0,0 +1,1173 @@
1;
2; Exports of file INFOCOMM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY INFOCOMM.dll
8EXPORTS
9; public: __cdecl COMMON_METADATA::COMMON_METADATA(void) __ptr64
10??0COMMON_METADATA@@QEAA@XZ
11; public: __cdecl HASH_TABLE::HASH_TABLE(class HASH_TABLE const & __ptr64) __ptr64
12??0HASH_TABLE@@QEAA@AEBV0@@Z
13; public: __cdecl HT_ELEMENT::HT_ELEMENT(class HT_ELEMENT const & __ptr64) __ptr64
14??0HT_ELEMENT@@QEAA@AEBV0@@Z
15; public: __cdecl HT_ELEMENT::HT_ELEMENT(void) __ptr64
16??0HT_ELEMENT@@QEAA@XZ
17; public: __cdecl IIS_CTL::IIS_CTL(class IIS_CTL const & __ptr64) __ptr64
18??0IIS_CTL@@QEAA@AEBV0@@Z
19; public: __cdecl IIS_CTL::IIS_CTL(struct IMDCOM * __ptr64,char * __ptr64) __ptr64
20??0IIS_CTL@@QEAA@PEAUIMDCOM@@PEAD@Z
21; public: __cdecl IIS_SERVER_BINDING::IIS_SERVER_BINDING(unsigned long,unsigned short,char const * __ptr64,class IIS_ENDPOINT * __ptr64) __ptr64
22??0IIS_SERVER_BINDING@@QEAA@KGPEBDPEAVIIS_ENDPOINT@@@Z
23; public: __cdecl IIS_SERVER_CERT::IIS_SERVER_CERT(class IIS_SERVER_CERT const & __ptr64) __ptr64
24??0IIS_SERVER_CERT@@QEAA@AEBV0@@Z
25; public: __cdecl IIS_SERVER_CERT::IIS_SERVER_CERT(struct IMDCOM * __ptr64,char * __ptr64) __ptr64
26??0IIS_SERVER_CERT@@QEAA@PEAUIMDCOM@@PEAD@Z
27; public: __cdecl IIS_SERVER_INSTANCE::IIS_SERVER_INSTANCE(class IIS_SERVICE * __ptr64,unsigned long,unsigned short,char const * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64,int) __ptr64
28??0IIS_SERVER_INSTANCE@@QEAA@PEAVIIS_SERVICE@@KGPEBDPEAG2H@Z
29; public: __cdecl IIS_SERVICE::IIS_SERVICE(class IIS_SERVICE const & __ptr64) __ptr64
30??0IIS_SERVICE@@QEAA@AEBV0@@Z
31; public: __cdecl IIS_SERVICE::IIS_SERVICE(char const * __ptr64,char const * __ptr64,char const * __ptr64,unsigned long,unsigned __int64,int,unsigned long,void (__cdecl*)(unsigned __int64,struct sockaddr_in * __ptr64,void * __ptr64,void * __ptr64),void (__cdecl*)(void * __ptr64,unsigned long,unsigned long,struct _OVERLAPPED * __ptr64),void (__cdecl*)(void * __ptr64,unsigned long,unsigned long,struct _OVERLAPPED * __ptr64)) __ptr64
32??0IIS_SERVICE@@QEAA@PEBD00K_KHKP6AX1PEAUsockaddr_in@@PEAX3@ZP6AX3KKPEAU_OVERLAPPED@@@Z6@Z
33; public: __cdecl IIS_SSL_INFO::IIS_SSL_INFO(class IIS_SSL_INFO const & __ptr64) __ptr64
34??0IIS_SSL_INFO@@QEAA@AEBV0@@Z
35; public: __cdecl IIS_SSL_INFO::IIS_SSL_INFO(char * __ptr64,struct IMDCOM * __ptr64) __ptr64
36??0IIS_SSL_INFO@@QEAA@PEADPEAUIMDCOM@@@Z
37; public: __cdecl IIS_VROOT_TABLE::IIS_VROOT_TABLE(void) __ptr64
38??0IIS_VROOT_TABLE@@QEAA@XZ
39; public: __cdecl INET_PARSER::INET_PARSER(char * __ptr64) __ptr64
40??0INET_PARSER@@QEAA@PEAD@Z
41; public: __cdecl LOGGING::LOGGING(class LOGGING const & __ptr64) __ptr64
42??0LOGGING@@QEAA@AEBV0@@Z
43; public: __cdecl LOGGING::LOGGING(void) __ptr64
44??0LOGGING@@QEAA@XZ
45; public: __cdecl MB::MB(struct IMDCOM * __ptr64) __ptr64
46??0MB@@QEAA@PEAUIMDCOM@@@Z
47; public: __cdecl MIME_MAP::MIME_MAP(void) __ptr64
48??0MIME_MAP@@QEAA@XZ
49; public: __cdecl ODBC_CONNECTION::ODBC_CONNECTION(void) __ptr64
50??0ODBC_CONNECTION@@QEAA@XZ
51; public: __cdecl ODBC_PARAMETER::ODBC_PARAMETER(unsigned short,short,short,short,unsigned long) __ptr64
52??0ODBC_PARAMETER@@QEAA@GFFFK@Z
53; public: __cdecl RefBlob::RefBlob(void) __ptr64
54??0RefBlob@@QEAA@XZ
55; public: __cdecl STORE_CHANGE_NOTIFIER::STORE_CHANGE_NOTIFIER(void) __ptr64
56??0STORE_CHANGE_NOTIFIER@@QEAA@XZ
57; public: __cdecl TCP_AUTHENT::TCP_AUTHENT(unsigned long) __ptr64
58??0TCP_AUTHENT@@QEAA@K@Z
59; public: virtual __cdecl COMMON_METADATA::~COMMON_METADATA(void) __ptr64
60??1COMMON_METADATA@@UEAA@XZ
61; public: virtual __cdecl HASH_TABLE::~HASH_TABLE(void) __ptr64
62??1HASH_TABLE@@UEAA@XZ
63; public: virtual __cdecl HT_ELEMENT::~HT_ELEMENT(void) __ptr64
64??1HT_ELEMENT@@UEAA@XZ
65; public: __cdecl IIS_CTL::~IIS_CTL(void) __ptr64
66??1IIS_CTL@@QEAA@XZ
67; public: __cdecl IIS_ENDPOINT::~IIS_ENDPOINT(void) __ptr64
68??1IIS_ENDPOINT@@QEAA@XZ
69; public: __cdecl IIS_SERVER_BINDING::~IIS_SERVER_BINDING(void) __ptr64
70??1IIS_SERVER_BINDING@@QEAA@XZ
71; public: __cdecl IIS_SERVER_CERT::~IIS_SERVER_CERT(void) __ptr64
72??1IIS_SERVER_CERT@@QEAA@XZ
73; public: virtual __cdecl IIS_SERVER_INSTANCE::~IIS_SERVER_INSTANCE(void) __ptr64
74??1IIS_SERVER_INSTANCE@@UEAA@XZ
75; protected: virtual __cdecl IIS_SERVICE::~IIS_SERVICE(void) __ptr64
76??1IIS_SERVICE@@MEAA@XZ
77; public: __cdecl IIS_SSL_INFO::~IIS_SSL_INFO(void) __ptr64
78??1IIS_SSL_INFO@@QEAA@XZ
79; public: __cdecl IIS_VROOT_TABLE::~IIS_VROOT_TABLE(void) __ptr64
80??1IIS_VROOT_TABLE@@QEAA@XZ
81; public: __cdecl INET_PARSER::~INET_PARSER(void) __ptr64
82??1INET_PARSER@@QEAA@XZ
83; public: __cdecl LOGGING::~LOGGING(void) __ptr64
84??1LOGGING@@QEAA@XZ
85; public: __cdecl MB::~MB(void) __ptr64
86??1MB@@QEAA@XZ
87; public: __cdecl ODBC_CONNECTION::~ODBC_CONNECTION(void) __ptr64
88??1ODBC_CONNECTION@@QEAA@XZ
89; public: __cdecl ODBC_PARAMETER::~ODBC_PARAMETER(void) __ptr64
90??1ODBC_PARAMETER@@QEAA@XZ
91; public: __cdecl ODBC_STATEMENT::~ODBC_STATEMENT(void) __ptr64
92??1ODBC_STATEMENT@@QEAA@XZ
93; public: __cdecl RefBlob::~RefBlob(void) __ptr64
94??1RefBlob@@QEAA@XZ
95; public: __cdecl STORE_CHANGE_NOTIFIER::~STORE_CHANGE_NOTIFIER(void) __ptr64
96??1STORE_CHANGE_NOTIFIER@@QEAA@XZ
97; public: __cdecl TCP_AUTHENT::~TCP_AUTHENT(void) __ptr64
98??1TCP_AUTHENT@@QEAA@XZ
99; public: class HASH_TABLE & __ptr64 __cdecl HASH_TABLE::operator=(class HASH_TABLE const & __ptr64) __ptr64
100??4HASH_TABLE@@QEAAAEAV0@AEBV0@@Z
101; public: class HT_ELEMENT & __ptr64 __cdecl HT_ELEMENT::operator=(class HT_ELEMENT const & __ptr64) __ptr64
102??4HT_ELEMENT@@QEAAAEAV0@AEBV0@@Z
103; public: class IIS_CTL & __ptr64 __cdecl IIS_CTL::operator=(class IIS_CTL const & __ptr64) __ptr64
104??4IIS_CTL@@QEAAAEAV0@AEBV0@@Z
105; public: class IIS_SERVER_CERT & __ptr64 __cdecl IIS_SERVER_CERT::operator=(class IIS_SERVER_CERT const & __ptr64) __ptr64
106??4IIS_SERVER_CERT@@QEAAAEAV0@AEBV0@@Z
107; public: class IIS_SERVICE & __ptr64 __cdecl IIS_SERVICE::operator=(class IIS_SERVICE const & __ptr64) __ptr64
108??4IIS_SERVICE@@QEAAAEAV0@AEBV0@@Z
109; public: class IIS_SSL_INFO & __ptr64 __cdecl IIS_SSL_INFO::operator=(class IIS_SSL_INFO const & __ptr64) __ptr64
110??4IIS_SSL_INFO@@QEAAAEAV0@AEBV0@@Z
111; public: class LOGGING & __ptr64 __cdecl LOGGING::operator=(class LOGGING const & __ptr64) __ptr64
112??4LOGGING@@QEAAAEAV0@AEBV0@@Z
113; public: class TSVC_CACHE & __ptr64 __cdecl TSVC_CACHE::operator=(class TSVC_CACHE const & __ptr64) __ptr64
114??4TSVC_CACHE@@QEAAAEAV0@AEBV0@@Z
115; public: void __cdecl INET_PARSER::operator+=(int) __ptr64
116??YINET_PARSER@@QEAAXH@Z
117; const HASH_TABLE::`vftable'
118??_7HASH_TABLE@@6B@
119; const HT_ELEMENT::`vftable'
120??_7HT_ELEMENT@@6B@
121; const IIS_SERVER_INSTANCE::`vftable'
122??_7IIS_SERVER_INSTANCE@@6B@
123; const IIS_SERVICE::`vftable'
124??_7IIS_SERVICE@@6B@
125; public: int __cdecl TS_OPEN_FILE_INFO::AccessCheck(void * __ptr64,int) __ptr64
126?AccessCheck@TS_OPEN_FILE_INFO@@QEAAHPEAXH@Z
127; public: void __cdecl IIS_SERVER_INSTANCE::AcquireFastLock(void) __ptr64
128?AcquireFastLock@IIS_SERVER_INSTANCE@@QEAAXXZ
129; private: static void __cdecl IIS_SERVICE::AcquireGlobalLock(void)
130?AcquireGlobalLock@IIS_SERVICE@@CAXXZ
131; public: void __cdecl IIS_SERVICE::AcquireServiceLock(int) __ptr64
132?AcquireServiceLock@IIS_SERVICE@@QEAAXH@Z
133; private: void __cdecl LOGGING::ActOnChange(void) __ptr64
134?ActOnChange@LOGGING@@AEAAXXZ
135; public: int __cdecl LOGGING::ActivateLogging(char const * __ptr64,unsigned long,char const * __ptr64,void * __ptr64) __ptr64
136?ActivateLogging@LOGGING@@QEAAHPEBDK0PEAX@Z
137; protected: int __cdecl IIS_SERVICE::AddInstanceInfoHelper(class IIS_SERVER_INSTANCE * __ptr64) __ptr64
138?AddInstanceInfoHelper@IIS_SERVICE@@IEAAHPEAVIIS_SERVER_INSTANCE@@@Z
139; private: int __cdecl MIME_MAP::AddMimeMapEntry(class MIME_MAP_ENTRY * __ptr64) __ptr64
140?AddMimeMapEntry@MIME_MAP@@AEAAHPEAVMIME_MAP_ENTRY@@@Z
141; public: int __cdecl MB::AddObject(char const * __ptr64) __ptr64
142?AddObject@MB@@QEAAHPEBD@Z
143; public: void __cdecl RefBlob::AddRef(void) __ptr64
144?AddRef@RefBlob@@QEAAXXZ
145; private: static void __cdecl IIS_VROOT_TABLE::AddRefRecord(void const * __ptr64,int)
146?AddRefRecord@IIS_VROOT_TABLE@@CAXPEBXH@Z
147; public: int __cdecl IIS_SERVICE::AddServerInstance(class IIS_SERVER_INSTANCE * __ptr64) __ptr64
148?AddServerInstance@IIS_SERVICE@@QEAAHPEAVIIS_SERVER_INSTANCE@@@Z
149; public: int __cdecl IIS_VROOT_TABLE::AddVirtualRoot(char * __ptr64,char * __ptr64,unsigned long,char * __ptr64,void * __ptr64,unsigned long,int) __ptr64
150?AddVirtualRoot@IIS_VROOT_TABLE@@QEAAHPEAD0K0PEAXKH@Z
151; public: void __cdecl IIS_SERVICE::AdvertiseServiceInformationInMB(void) __ptr64
152?AdvertiseServiceInformationInMB@IIS_SERVICE@@QEAAXXZ
153; public: class ODBC_STATEMENT * __ptr64 __cdecl ODBC_CONNECTION::AllocStatement(void) __ptr64
154?AllocStatement@ODBC_CONNECTION@@QEAAPEAVODBC_STATEMENT@@XZ
155; public: int __cdecl INET_PARSER::AppendToEOL(class STR * __ptr64,int) __ptr64
156?AppendToEOL@INET_PARSER@@QEAAHPEAVSTR@@H@Z
157; public: int __cdecl IIS_SERVICE::AssociateInstance(class IIS_SERVER_INSTANCE * __ptr64) __ptr64
158?AssociateInstance@IIS_SERVICE@@QEAAHPEAVIIS_SERVER_INSTANCE@@@Z
159; protected: char * __ptr64 __cdecl INET_PARSER::AuxEatNonWhite(char) __ptr64
160?AuxEatNonWhite@INET_PARSER@@IEAAPEADD@Z
161; protected: char * __ptr64 __cdecl INET_PARSER::AuxEatWhite(void) __ptr64
162?AuxEatWhite@INET_PARSER@@IEAAPEADXZ
163; protected: char * __ptr64 __cdecl INET_PARSER::AuxSkipTo(char) __ptr64
164?AuxSkipTo@INET_PARSER@@IEAAPEADD@Z
165; public: short __cdecl ODBC_PARAMETER::Bind(void * __ptr64) __ptr64
166?Bind@ODBC_PARAMETER@@QEAAFPEAX@Z
167; public: unsigned long __cdecl IIS_SERVER_INSTANCE::BindInstance(void) __ptr64
168?BindInstance@IIS_SERVER_INSTANCE@@QEAAKXZ
169; public: int __cdecl ODBC_STATEMENT::BindParameter(class ODBC_PARAMETER * __ptr64) __ptr64
170?BindParameter@ODBC_STATEMENT@@QEAAHPEAVODBC_PARAMETER@@@Z
171; int __cdecl BuildAnonymousAcctDesc(class TCP_AUTHENT_INFO * __ptr64)
172?BuildAnonymousAcctDesc@@YAHPEAVTCP_AUTHENT_INFO@@@Z
173; public: int __cdecl COMMON_METADATA::BuildApplPhysicalPath(class MB * __ptr64,class STR * __ptr64)const __ptr64
174?BuildApplPhysicalPath@COMMON_METADATA@@QEBAHPEAVMB@@PEAVSTR@@@Z
175; public: int __cdecl COMMON_METADATA::BuildPhysicalPath(char * __ptr64,class STR * __ptr64) __ptr64
176?BuildPhysicalPath@COMMON_METADATA@@QEAAHPEADPEAVSTR@@@Z
177; public: int __cdecl COMMON_METADATA::BuildPhysicalPathWithAltRoot(char * __ptr64,class STR * __ptr64,char const * __ptr64) __ptr64
178?BuildPhysicalPathWithAltRoot@COMMON_METADATA@@QEAAHPEADPEAVSTR@@PEBD@Z
179; public: int __cdecl IIS_SSL_INFO::CTLContainsCert(struct _CERT_CONTEXT const * __ptr64,int * __ptr64) __ptr64
180?CTLContainsCert@IIS_SSL_INFO@@QEAAHPEBU_CERT_CONTEXT@@PEAH@Z
181; private: static unsigned long __cdecl IIS_VROOT_TABLE::CalcKeyHash(unsigned __int64)
182?CalcKeyHash@IIS_VROOT_TABLE@@CAK_K@Z
183; public: virtual unsigned long __cdecl HASH_TABLE::CalculateHash(char const * __ptr64)const __ptr64
184?CalculateHash@HASH_TABLE@@UEBAKPEBD@Z
185; public: int __cdecl IIS_SERVICE::CheckAndReference(void) __ptr64
186?CheckAndReference@IIS_SERVICE@@QEAAHXZ
187; private: int __cdecl IIS_SSL_INFO::CheckCAPIInfo(int * __ptr64,int * __ptr64,char * __ptr64,unsigned long * __ptr64,unsigned long) __ptr64
188?CheckCAPIInfo@IIS_SSL_INFO@@AEAAHPEAH0PEADPEAKK@Z
189; unsigned long __cdecl CheckIfShortFileName(unsigned char const * __ptr64,void * __ptr64,int * __ptr64)
190?CheckIfShortFileName@@YAKPEBEPEAXPEAH@Z
191; private: int __cdecl IIS_SSL_INFO::CheckSignature(void) __ptr64
192?CheckSignature@IIS_SSL_INFO@@AEAAHXZ
193; public: static void __cdecl IIS_SERVER_INSTANCE::Cleanup(void)
194?Cleanup@IIS_SERVER_INSTANCE@@SAXXZ
195; public: void __cdecl IIS_SERVER_INSTANCE::CleanupAfterConstructorFailure(void) __ptr64
196?CleanupAfterConstructorFailure@IIS_SERVER_INSTANCE@@QEAAXXZ
197; public: static int __cdecl IIS_SERVICE::CleanupMetabaseComObject(void)
198?CleanupMetabaseComObject@IIS_SERVICE@@SAHXZ
199; public: static void __cdecl IIS_SERVICE::CleanupServiceInfo(void)
200?CleanupServiceInfo@IIS_SERVICE@@SAXXZ
201; public: static int __cdecl IIS_SERVICE::CleanupServiceRpc(void)
202?CleanupServiceRpc@IIS_SERVICE@@SAHXZ
203; public: unsigned long __cdecl IIS_SERVICE::CleanupSockets(void) __ptr64
204?CleanupSockets@IIS_SERVICE@@QEAAKXZ
205; public: void __cdecl MIME_MAP::CleanupThis(void) __ptr64
206?CleanupThis@MIME_MAP@@QEAAXXZ
207; public: void __cdecl TS_DIRECTORY_INFO::CleanupThis(void) __ptr64
208?CleanupThis@TS_DIRECTORY_INFO@@QEAAXXZ
209; public: int __cdecl IIS_SERVICE::ClearInstanceStatistics(unsigned long) __ptr64
210?ClearInstanceStatistics@IIS_SERVICE@@QEAAHK@Z
211; public: int __cdecl TCP_AUTHENT::ClearTextLogon(char * __ptr64,char * __ptr64,int * __ptr64,int * __ptr64,class IIS_SERVER_INSTANCE * __ptr64,class TCP_AUTHENT_INFO * __ptr64,char * __ptr64) __ptr64
212?ClearTextLogon@TCP_AUTHENT@@QEAAHPEAD0PEAH1PEAVIIS_SERVER_INSTANCE@@PEAVTCP_AUTHENT_INFO@@0@Z
213; public: int __cdecl MB::Close(void) __ptr64
214?Close@MB@@QEAAHXZ
215; public: int __cdecl ODBC_CONNECTION::Close(void) __ptr64
216?Close@ODBC_CONNECTION@@QEAAHXZ
217; public: void __cdecl TS_OPEN_FILE_INFO::CloseHandle(void) __ptr64
218?CloseHandle@TS_OPEN_FILE_INFO@@QEAAXXZ
219; public: virtual int __cdecl IIS_SERVER_INSTANCE::CloseInstance(void) __ptr64
220?CloseInstance@IIS_SERVER_INSTANCE@@UEAAHXZ
221; public: void __cdecl IIS_SERVICE::CloseService(void) __ptr64
222?CloseService@IIS_SERVICE@@QEAAXXZ
223; public: int __cdecl IIS_SERVER_BINDING::Compare(unsigned long,unsigned short,char const * __ptr64) __ptr64
224?Compare@IIS_SERVER_BINDING@@QEAAHKGPEBD@Z
225; public: unsigned long __cdecl IIS_SERVER_BINDING::Compare(char const * __ptr64,int * __ptr64) __ptr64
226?Compare@IIS_SERVER_BINDING@@QEAAKPEBDPEAH@Z
227; public: virtual unsigned long __cdecl IIS_SERVER_INSTANCE::ContinueInstance(void) __ptr64
228?ContinueInstance@IIS_SERVER_INSTANCE@@UEAAKXZ
229; private: void __cdecl IIS_SERVICE::ContinueService(void) __ptr64
230?ContinueService@IIS_SERVICE@@AEAAXXZ
231; public: int __cdecl TCP_AUTHENT::Converse(void * __ptr64,unsigned long,class BUFFER * __ptr64,unsigned long * __ptr64,int * __ptr64,class TCP_AUTHENT_INFO * __ptr64,char * __ptr64,char * __ptr64,char * __ptr64,class IIS_SERVER_INSTANCE * __ptr64) __ptr64
232?Converse@TCP_AUTHENT@@QEAAHPEAXKPEAVBUFFER@@PEAKPEAHPEAVTCP_AUTHENT_INFO@@PEAD55PEAVIIS_SERVER_INSTANCE@@@Z
233; public: int __cdecl TCP_AUTHENT::ConverseEx(struct _SecBufferDesc * __ptr64,class BUFFER * __ptr64,class BUFFER * __ptr64,unsigned long * __ptr64,int * __ptr64,class TCP_AUTHENT_INFO * __ptr64,char * __ptr64,char * __ptr64,char * __ptr64,class IIS_SERVER_INSTANCE * __ptr64) __ptr64
234?ConverseEx@TCP_AUTHENT@@QEAAHPEAU_SecBufferDesc@@PEAVBUFFER@@1PEAKPEAHPEAVTCP_AUTHENT_INFO@@PEAD55PEAVIIS_SERVER_INSTANCE@@@Z
235; public: int __cdecl INET_PARSER::CopyToEOL(class STR * __ptr64,int) __ptr64
236?CopyToEOL@INET_PARSER@@QEAAHPEAVSTR@@H@Z
237; public: int __cdecl INET_PARSER::CopyToken(class STR * __ptr64,int) __ptr64
238?CopyToken@INET_PARSER@@QEAAHPEAVSTR@@H@Z
239; public: int __cdecl ODBC_PARAMETER::CopyValue(unsigned long) __ptr64
240?CopyValue@ODBC_PARAMETER@@QEAAHK@Z
241; public: int __cdecl ODBC_PARAMETER::CopyValue(struct _SYSTEMTIME * __ptr64) __ptr64
242?CopyValue@ODBC_PARAMETER@@QEAAHPEAU_SYSTEMTIME@@@Z
243; public: int __cdecl ODBC_PARAMETER::CopyValue(void * __ptr64,long) __ptr64
244?CopyValue@ODBC_PARAMETER@@QEAAHPEAXJ@Z
245; public: int __cdecl ODBC_PARAMETER::CopyValue(char const * __ptr64) __ptr64
246?CopyValue@ODBC_PARAMETER@@QEAAHPEBD@Z
247; public: int __cdecl ODBC_PARAMETER::CopyValue(unsigned short const * __ptr64) __ptr64
248?CopyValue@ODBC_PARAMETER@@QEAAHPEBG@Z
249; private: int __cdecl MIME_MAP::CreateAndAddMimeMapEntry(char const * __ptr64,char const * __ptr64) __ptr64
250?CreateAndAddMimeMapEntry@MIME_MAP@@AEAAHPEBD0@Z
251; private: int __cdecl IIS_SSL_INFO::CreateEngineRootStore(void) __ptr64
252?CreateEngineRootStore@IIS_SSL_INFO@@AEAAHXZ
253; private: int __cdecl IIS_SSL_INFO::CreateEngineTrustStore(void) __ptr64
254?CreateEngineTrustStore@IIS_SSL_INFO@@AEAAHXZ
255; private: unsigned long __cdecl IIS_SERVER_INSTANCE::CreateNewBinding(unsigned long,unsigned short,char const * __ptr64,int,int,class IIS_SERVER_BINDING * __ptr64 * __ptr64) __ptr64
256?CreateNewBinding@IIS_SERVER_INSTANCE@@AEAAKKGPEBDHHPEAPEAVIIS_SERVER_BINDING@@@Z
257; public: static class IIS_SSL_INFO * __ptr64 __cdecl IIS_SSL_INFO::CreateSSLInfo(char * __ptr64,struct IMDCOM * __ptr64)
258?CreateSSLInfo@IIS_SSL_INFO@@SAPEAV1@PEADPEAUIMDCOM@@@Z
259; public: void __cdecl IIS_SERVER_INSTANCE::DecrementCurrentConnections(void) __ptr64
260?DecrementCurrentConnections@IIS_SERVER_INSTANCE@@QEAAXXZ
261; public: static void __cdecl IIS_SERVICE::DeferredGlobalConfig(unsigned long,struct _MD_CHANGE_OBJECT_A * __ptr64 const)
262?DeferredGlobalConfig@IIS_SERVICE@@SAXKQEAU_MD_CHANGE_OBJECT_A@@@Z
263; public: static void __cdecl IIS_SERVICE::DeferredMDChangeNotify(unsigned long,struct _MD_CHANGE_OBJECT_A * __ptr64 const)
264?DeferredMDChangeNotify@IIS_SERVICE@@SAXKQEAU_MD_CHANGE_OBJECT_A@@@Z
265; public: unsigned long __cdecl IIS_SERVICE::DelayCurrentServiceCtrlOperation(unsigned long) __ptr64
266?DelayCurrentServiceCtrlOperation@IIS_SERVICE@@QEAAKK@Z
267; public: int __cdecl TCP_AUTHENT::DeleteCachedTokenOnReset(void) __ptr64
268?DeleteCachedTokenOnReset@TCP_AUTHENT@@QEAAHXZ
269; public: int __cdecl MB::DeleteData(char const * __ptr64,unsigned long,unsigned long,unsigned long) __ptr64
270?DeleteData@MB@@QEAAHPEBDKKK@Z
271; public: int __cdecl IIS_SERVICE::DeleteInstanceInfo(unsigned long) __ptr64
272?DeleteInstanceInfo@IIS_SERVICE@@QEAAHK@Z
273; public: int __cdecl MB::DeleteObject(char const * __ptr64) __ptr64
274?DeleteObject@MB@@QEAAHPEBD@Z
275; private: void __cdecl IIS_VROOT_TABLE::DeleteVRootEntry(void * __ptr64) __ptr64
276?DeleteVRootEntry@IIS_VROOT_TABLE@@AEAAXPEAX@Z
277; public: void __cdecl IIS_ENDPOINT::Dereference(void) __ptr64
278?Dereference@IIS_ENDPOINT@@QEAAXXZ
279; public: void __cdecl IIS_SERVER_INSTANCE::Dereference(void) __ptr64
280?Dereference@IIS_SERVER_INSTANCE@@QEAAXXZ
281; public: void __cdecl IIS_SERVICE::Dereference(void) __ptr64
282?Dereference@IIS_SERVICE@@QEAAXXZ
283; public: virtual long __cdecl MIME_MAP_ENTRY::Dereference(void) __ptr64
284?Dereference@MIME_MAP_ENTRY@@UEAAJXZ
285; public: void __cdecl IIS_SERVICE::DestroyAllServerInstances(void) __ptr64
286?DestroyAllServerInstances@IIS_SERVICE@@QEAAXXZ
287; public: int __cdecl IIS_SERVICE::DisassociateInstance(class IIS_SERVER_INSTANCE * __ptr64) __ptr64
288?DisassociateInstance@IIS_SERVICE@@QEAAHPEAVIIS_SERVER_INSTANCE@@@Z
289; public: int __cdecl IIS_SERVICE::DisconnectInstanceUser(unsigned long,unsigned long) __ptr64
290?DisconnectInstanceUser@IIS_SERVICE@@QEAAHKK@Z
291; public: static unsigned long __cdecl ODBC_CONNECTION::DisplaySize(short,unsigned long)
292?DisplaySize@ODBC_CONNECTION@@SAKFK@Z
293; public: int __cdecl IIS_SERVER_INSTANCE::DoServerNameCheck(void)const __ptr64
294?DoServerNameCheck@IIS_SERVER_INSTANCE@@QEBAHXZ
295; public: unsigned long __cdecl IIS_SERVER_INSTANCE::DoStartInstance(void) __ptr64
296?DoStartInstance@IIS_SERVER_INSTANCE@@QEAAKXZ
297; public: char * __ptr64 __cdecl INET_PARSER::EatNonWhite(void) __ptr64
298?EatNonWhite@INET_PARSER@@QEAAPEADXZ
299; public: char * __ptr64 __cdecl INET_PARSER::EatWhite(void) __ptr64
300?EatWhite@INET_PARSER@@QEAAPEADXZ
301; public: int __cdecl TCP_AUTHENT::EnumAuthPackages(class BUFFER * __ptr64) __ptr64
302?EnumAuthPackages@TCP_AUTHENT@@QEAAHPEAVBUFFER@@@Z
303; public: int __cdecl MB::EnumObjects(char const * __ptr64,char * __ptr64,unsigned long) __ptr64
304?EnumObjects@MB@@QEAAHPEBDPEADK@Z
305; public: int __cdecl IIS_SERVICE::EnumServiceInstances(void * __ptr64,void * __ptr64,int (__cdecl*)(void * __ptr64,void * __ptr64,class IIS_SERVER_INSTANCE * __ptr64)) __ptr64
306?EnumServiceInstances@IIS_SERVICE@@QEAAHPEAX0P6AH00PEAVIIS_SERVER_INSTANCE@@@Z@Z
307; public: int __cdecl IIS_SERVICE::EnumerateInstanceUsers(unsigned long,unsigned long * __ptr64,char * __ptr64 * __ptr64) __ptr64
308?EnumerateInstanceUsers@IIS_SERVICE@@QEAAHKPEAKPEAPEAD@Z
309; private: static bool __cdecl IIS_VROOT_TABLE::EqualKeys(unsigned __int64,unsigned __int64)
310?EqualKeys@IIS_VROOT_TABLE@@CA_N_K0@Z
311; public: int __cdecl ODBC_STATEMENT::ExecDirect(char const * __ptr64,unsigned long) __ptr64
312?ExecDirect@ODBC_STATEMENT@@QEAAHPEBDK@Z
313; public: int __cdecl ODBC_STATEMENT::ExecDirect(unsigned short const * __ptr64,unsigned long) __ptr64
314?ExecDirect@ODBC_STATEMENT@@QEAAHPEBGK@Z
315; public: int __cdecl ODBC_STATEMENT::ExecuteStatement(void) __ptr64
316?ExecuteStatement@ODBC_STATEMENT@@QEAAHXZ
317; private: static unsigned __int64 const __cdecl IIS_VROOT_TABLE::ExtractKey(void const * __ptr64)
318?ExtractKey@IIS_VROOT_TABLE@@CA?B_KPEBX@Z
319; public: int __cdecl TS_DIRECTORY_INFO::FilterFiles(int (__cdecl*)(struct _WIN32_FIND_DATAA const * __ptr64,void * __ptr64),void * __ptr64) __ptr64
320?FilterFiles@TS_DIRECTORY_INFO@@QEAAHP6AHPEBU_WIN32_FIND_DATAA@@PEAX@Z1@Z
321; public: class IIS_ENDPOINT * __ptr64 __cdecl IIS_SERVICE::FindAndReferenceEndpoint(unsigned short,unsigned long,int,int,int) __ptr64
322?FindAndReferenceEndpoint@IIS_SERVICE@@QEAAPEAVIIS_ENDPOINT@@GKHHH@Z
323; public: class IIS_SERVER_INSTANCE * __ptr64 __cdecl IIS_ENDPOINT::FindAndReferenceInstance(char const * __ptr64,unsigned long,int * __ptr64) __ptr64
324?FindAndReferenceInstance@IIS_ENDPOINT@@QEAAPEAVIIS_SERVER_INSTANCE@@PEBDKPEAH@Z
325; public: static class IIS_SERVICE * __ptr64 __cdecl IIS_SERVICE::FindFromServiceInfoList(unsigned long)
326?FindFromServiceInfoList@IIS_SERVICE@@SAPEAV1@K@Z
327; public: class IIS_SERVER_INSTANCE * __ptr64 __cdecl IIS_SERVICE::FindIISInstance(unsigned long) __ptr64
328?FindIISInstance@IIS_SERVICE@@QEAAPEAVIIS_SERVER_INSTANCE@@K@Z
329; private: int __cdecl IIS_SSL_INFO::FindTopOfChain(struct _CERT_CONTEXT const * __ptr64,struct _CERT_CONTEXT const * __ptr64 * __ptr64) __ptr64
330?FindTopOfChain@IIS_SSL_INFO@@AEAAHPEBU_CERT_CONTEXT@@PEAPEBU2@@Z
331; public: virtual int __cdecl COMMON_METADATA::FinishPrivateProperties(class BUFFER * __ptr64,unsigned long,int) __ptr64
332?FinishPrivateProperties@COMMON_METADATA@@UEAAHPEAVBUFFER@@KH@Z
333; public: unsigned long __cdecl HASH_TABLE::FlushElements(void) __ptr64
334?FlushElements@HASH_TABLE@@QEAAKXZ
335; public: void __cdecl ODBC_STATEMENT::FreeColumnMemory(void) __ptr64
336?FreeColumnMemory@ODBC_STATEMENT@@QEAAXXZ
337; public: void __cdecl COMMON_METADATA::FreeMdTag(unsigned long) __ptr64
338?FreeMdTag@COMMON_METADATA@@QEAAXK@Z
339; public: int __cdecl MB::GetAll(char const * __ptr64,unsigned long,unsigned long,class BUFFER * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
340?GetAll@MB@@QEAAHPEBDKKPEAVBUFFER@@PEAK2@Z
341; public: class IIS_CTL * __ptr64 __cdecl IIS_SSL_INFO::GetCTL(void) __ptr64
342?GetCTL@IIS_SSL_INFO@@QEAAPEAVIIS_CTL@@XZ
343; public: int __cdecl IIS_SSL_INFO::GetCertChainEngine(void * __ptr64 * __ptr64) __ptr64
344?GetCertChainEngine@IIS_SSL_INFO@@QEAAHPEAPEAX@Z
345; public: class IIS_SERVER_CERT * __ptr64 __cdecl IIS_SSL_INFO::GetCertificate(void) __ptr64
346?GetCertificate@IIS_SSL_INFO@@QEAAPEAVIIS_SERVER_CERT@@XZ
347; public: int __cdecl TCP_AUTHENT::GetClientCertBlob(unsigned long,unsigned long * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
348?GetClientCertBlob@TCP_AUTHENT@@QEAAHKPEAKPEAE00@Z
349; public: int __cdecl IIS_SERVER_INSTANCE::GetCommonConfig(char * __ptr64,unsigned long) __ptr64
350?GetCommonConfig@IIS_SERVER_INSTANCE@@QEAAHPEADK@Z
351; public: unsigned long __cdecl LOGGING::GetConfig(struct _INETLOG_CONFIGURATIONA * __ptr64) __ptr64
352?GetConfig@LOGGING@@QEAAKPEAU_INETLOG_CONFIGURATIONA@@@Z
353; public: int __cdecl IIS_CTL::GetContainedCertificates(struct _CERT_CONTEXT const * __ptr64 * __ptr64 * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
354?GetContainedCertificates@IIS_CTL@@QEAAHPEAPEAPEBU_CERT_CONTEXT@@PEAK1@Z
355; public: int __cdecl MB::GetData(char const * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64,unsigned long * __ptr64,unsigned long) __ptr64
356?GetData@MB@@QEAAHPEBDKKKPEAXPEAKK@Z
357; public: int __cdecl MB::GetDataPaths(char const * __ptr64,unsigned long,unsigned long,class BUFFER * __ptr64) __ptr64
358?GetDataPaths@MB@@QEAAHPEBDKKPEAVBUFFER@@@Z
359; public: int __cdecl MB::GetDataSetNumber(char const * __ptr64,unsigned long * __ptr64) __ptr64
360?GetDataSetNumber@MB@@QEAAHPEBDPEAK@Z
361; public: int __cdecl TS_DIRECTORY_INFO::GetDirectoryListingA(char const * __ptr64,void * __ptr64) __ptr64
362?GetDirectoryListingA@TS_DIRECTORY_INFO@@QEAAHPEBDPEAX@Z
363; public: virtual int __cdecl IIS_SERVICE::GetGlobalStatistics(unsigned long,char * __ptr64 * __ptr64) __ptr64
364?GetGlobalStatistics@IIS_SERVICE@@UEAAHKPEAPEAD@Z
365; public: int __cdecl ODBC_CONNECTION::GetInfo(unsigned long,void * __ptr64,unsigned long,unsigned long * __ptr64) __ptr64
366?GetInfo@ODBC_CONNECTION@@QEAAHKPEAXKPEAK@Z
367; private: int __cdecl IIS_SERVICE::GetInstanceConfiguration(unsigned long,unsigned long,int,unsigned long * __ptr64,struct _INET_INFO_CONFIG_INFO * __ptr64 * __ptr64) __ptr64
368?GetInstanceConfiguration@IIS_SERVICE@@AEAAHKKHPEAKPEAPEAU_INET_INFO_CONFIG_INFO@@@Z
369; public: unsigned long __cdecl TSVC_CACHE::GetInstanceId(void)const __ptr64
370?GetInstanceId@TSVC_CACHE@@QEBAKXZ
371; public: int __cdecl IIS_SERVICE::GetInstanceStatistics(unsigned long,unsigned long,char * __ptr64 * __ptr64) __ptr64
372?GetInstanceStatistics@IIS_SERVICE@@QEAAHKKPEAPEAD@Z
373; public: int __cdecl ODBC_CONNECTION::GetLastErrorText(class STR * __ptr64,void * __ptr64,short)const __ptr64
374?GetLastErrorText@ODBC_CONNECTION@@QEBAHPEAVSTR@@PEAXF@Z
375; public: int __cdecl ODBC_CONNECTION::GetLastErrorTextAsHtml(class STR * __ptr64,void * __ptr64,short)const __ptr64
376?GetLastErrorTextAsHtml@ODBC_CONNECTION@@QEBAHPEAVSTR@@PEAXF@Z
377; public: void __cdecl IIS_SERVICE::GetMDInstancePath(unsigned long,char * __ptr64) __ptr64
378?GetMDInstancePath@IIS_SERVICE@@QEAAXKPEAD@Z
379; public: void * __ptr64 __cdecl IIS_CTL::GetMemoryStore(void) __ptr64
380?GetMemoryStore@IIS_CTL@@QEAAPEAXXZ
381; public: int __cdecl MB::GetMultisz(char const * __ptr64,unsigned long,unsigned long,class MULTISZ * __ptr64,unsigned long) __ptr64
382?GetMultisz@MB@@QEAAHPEBDKKPEAVMULTISZ@@K@Z
383; public: unsigned long __cdecl IIS_SERVICE::GetNewInstanceId(void) __ptr64
384?GetNewInstanceId@IIS_SERVICE@@QEAAKXZ
385; private: int __cdecl IIS_SSL_INFO::GetRootStoreCertificates(struct _CERT_CONTEXT const * __ptr64 * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
386?GetRootStoreCertificates@IIS_SSL_INFO@@AEAAHPEAPEAPEBU_CERT_CONTEXT@@PEAK@Z
387; public: void * __ptr64 __cdecl TSVC_CACHE::GetServerInstance(void)const __ptr64
388?GetServerInstance@TSVC_CACHE@@QEBAPEAXXZ
389; public: static int __cdecl IIS_SERVICE::GetServiceAdminInfo(unsigned long,unsigned long,unsigned long,int,unsigned long * __ptr64,struct _INET_INFO_CONFIG_INFO * __ptr64 * __ptr64)
390?GetServiceAdminInfo@IIS_SERVICE@@SAHKKKHPEAKPEAPEAU_INET_INFO_CONFIG_INFO@@@Z
391; private: virtual unsigned long __cdecl IIS_SERVICE::GetServiceConfigInfoSize(unsigned long) __ptr64
392?GetServiceConfigInfoSize@IIS_SERVICE@@EEAAKK@Z
393; public: unsigned long __cdecl TSVC_CACHE::GetServiceId(void)const __ptr64
394?GetServiceId@TSVC_CACHE@@QEBAKXZ
395; public: static int __cdecl IIS_SERVICE::GetServiceSiteInfo(unsigned long,struct _INET_INFO_SITE_LIST * __ptr64 * __ptr64)
396?GetServiceSiteInfo@IIS_SERVICE@@SAHKPEAPEAU_INET_INFO_SITE_LIST@@@Z
397; public: int __cdecl MB::GetStr(char const * __ptr64,unsigned long,unsigned long,class STR * __ptr64,unsigned long,char const * __ptr64) __ptr64
398?GetStr@MB@@QEAAHPEBDKKPEAVSTR@@K0@Z
399; public: int __cdecl MB::GetSystemChangeNumber(unsigned long * __ptr64) __ptr64
400?GetSystemChangeNumber@MB@@QEAAHPEAK@Z
401; public: class CACHED_TOKEN * __ptr64 __cdecl TCP_AUTHENT::GetToken(void)const __ptr64
402?GetToken@TCP_AUTHENT@@QEBAPEAVCACHED_TOKEN@@XZ
403; public: int __cdecl IIS_SSL_INFO::GetTrustedIssuerCerts(struct _CERT_CONTEXT const * __ptr64 * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
404?GetTrustedIssuerCerts@IIS_SSL_INFO@@QEAAHPEAPEAPEBU_CERT_CONTEXT@@PEAK@Z
405; public: int __cdecl IIS_SSL_INFO::GetTrustedIssuerStore(void * __ptr64 * __ptr64) __ptr64
406?GetTrustedIssuerStore@IIS_SSL_INFO@@QEAAHPEAPEAX@Z
407; public: class TSVC_CACHE & __ptr64 __cdecl IIS_SERVER_INSTANCE::GetTsvcCache(void) __ptr64
408?GetTsvcCache@IIS_SERVER_INSTANCE@@QEAAAEAVTSVC_CACHE@@XZ
409; public: void * __ptr64 __cdecl TCP_AUTHENT::GetUserHandle(void) __ptr64
410?GetUserHandle@TCP_AUTHENT@@QEAAPEAXXZ
411; public: virtual int __cdecl COMMON_METADATA::HandlePrivateProperty(char * __ptr64,class IIS_SERVER_INSTANCE * __ptr64,struct _METADATA_GETALL_INTERNAL_RECORD * __ptr64,void * __ptr64,class BUFFER * __ptr64,unsigned long * __ptr64,struct _METADATA_ERROR_INFO * __ptr64) __ptr64
412?HandlePrivateProperty@COMMON_METADATA@@UEAAHPEADPEAVIIS_SERVER_INSTANCE@@PEAU_METADATA_GETALL_INTERNAL_RECORD@@PEAXPEAVBUFFER@@PEAKPEAU_METADATA_ERROR_INFO@@@Z
413; private: int __cdecl IIS_SSL_INFO::HasCTL(int * __ptr64,int * __ptr64) __ptr64
414?HasCTL@IIS_SSL_INFO@@AEAAHPEAH0@Z
415; private: int __cdecl IIS_SSL_INFO::HasCertificate(int * __ptr64,int * __ptr64) __ptr64
416?HasCertificate@IIS_SSL_INFO@@AEAAHPEAH0@Z
417; public: int __cdecl IIS_SERVER_INSTANCE::HasNormalBindings(void)const __ptr64
418?HasNormalBindings@IIS_SERVER_INSTANCE@@QEBAHXZ
419; public: int __cdecl IIS_SERVER_INSTANCE::HasSecureBindings(void)const __ptr64
420?HasSecureBindings@IIS_SERVER_INSTANCE@@QEBAHXZ
421; int __cdecl IISDuplicateTokenEx(void * __ptr64,unsigned long,struct _SECURITY_ATTRIBUTES * __ptr64,enum _SECURITY_IMPERSONATION_LEVEL,enum _TOKEN_TYPE,void * __ptr64 * __ptr64)
422?IISDuplicateTokenEx@@YAHPEAXKPEAU_SECURITY_ATTRIBUTES@@W4_SECURITY_IMPERSONATION_LEVEL@@W4_TOKEN_TYPE@@PEAPEAX@Z
423; public: int __cdecl TCP_AUTHENT::Impersonate(void) __ptr64
424?Impersonate@TCP_AUTHENT@@QEAAHXZ
425; public: void __cdecl IIS_SERVER_INSTANCE::IncrementCurrentConnections(void) __ptr64
426?IncrementCurrentConnections@IIS_SERVER_INSTANCE@@QEAAXXZ
427; public: void __cdecl IIS_SERVICE::IndicateShutdownComplete(void) __ptr64
428?IndicateShutdownComplete@IIS_SERVICE@@QEAAXXZ
429; public: int __cdecl RefBlob::Init(void * __ptr64,unsigned long,void (__cdecl*)(void * __ptr64)) __ptr64
430?Init@RefBlob@@QEAAHPEAXKP6AX0@Z@Z
431; private: unsigned long __cdecl MIME_MAP::InitFromMetabase(void) __ptr64
432?InitFromMetabase@MIME_MAP@@AEAAKXZ
433; private: unsigned long __cdecl MIME_MAP::InitFromRegistryChicagoStyle(void) __ptr64
434?InitFromRegistryChicagoStyle@MIME_MAP@@AEAAKXZ
435; public: unsigned long __cdecl MIME_MAP::InitMimeMap(void) __ptr64
436?InitMimeMap@MIME_MAP@@QEAAKXZ
437; public: static int __cdecl IIS_SERVER_INSTANCE::Initialize(void)
438?Initialize@IIS_SERVER_INSTANCE@@SAHXZ
439; public: static unsigned long __cdecl LOGGING::Initialize(void)
440?Initialize@LOGGING@@SAKXZ
441; public: unsigned long __cdecl IIS_SERVICE::InitializeDiscovery(void) __ptr64
442?InitializeDiscovery@IIS_SERVICE@@QEAAKXZ
443; public: static int __cdecl IIS_SERVICE::InitializeMetabaseComObject(void)
444?InitializeMetabaseComObject@IIS_SERVICE@@SAHXZ
445; public: static int __cdecl IIS_SERVICE::InitializeServiceInfo(void)
446?InitializeServiceInfo@IIS_SERVICE@@SAHXZ
447; public: static int __cdecl IIS_SERVICE::InitializeServiceRpc(char const * __ptr64,void * __ptr64)
448?InitializeServiceRpc@IIS_SERVICE@@SAHPEBDPEAX@Z
449; public: unsigned long __cdecl IIS_SERVICE::InitializeSockets(void) __ptr64
450?InitializeSockets@IIS_SERVICE@@QEAAKXZ
451; private: void __cdecl IIS_SERVICE::InterrogateService(void) __ptr64
452?InterrogateService@IIS_SERVICE@@AEAAXXZ
453; public: int __cdecl IIS_SERVICE::IsActive(void)const __ptr64
454?IsActive@IIS_SERVICE@@QEBAHXZ
455; public: int __cdecl IIS_SERVER_INSTANCE::IsAutoStart(void)const __ptr64
456?IsAutoStart@IIS_SERVER_INSTANCE@@QEBAHXZ
457; private: int __cdecl IIS_SERVER_INSTANCE::IsBindingInMultiSz(class IIS_SERVER_BINDING * __ptr64,class MULTISZ const & __ptr64) __ptr64
458?IsBindingInMultiSz@IIS_SERVER_INSTANCE@@AEAAHPEAVIIS_SERVER_BINDING@@AEBVMULTISZ@@@Z
459; public: int __cdecl IIS_SERVER_INSTANCE::IsClusterEnabled(void)const __ptr64
460?IsClusterEnabled@IIS_SERVER_INSTANCE@@QEBAHXZ
461; private: int __cdecl IIS_SSL_INFO::IsDefaultCTL(void) __ptr64
462?IsDefaultCTL@IIS_SSL_INFO@@AEAAHXZ
463; public: int __cdecl IIS_SSL_INFO::IsDefaultCertificate(void) __ptr64
464?IsDefaultCertificate@IIS_SSL_INFO@@QEAAHXZ
465; public: int __cdecl IIS_SERVER_INSTANCE::IsDownLevelInstance(void)const __ptr64
466?IsDownLevelInstance@IIS_SERVER_INSTANCE@@QEBAHXZ
467; public: int __cdecl IIS_SERVER_CERT::IsFortezzaCert(void) __ptr64
468?IsFortezzaCert@IIS_SERVER_CERT@@QEAAHXZ
469; public: int __cdecl TCP_AUTHENT::IsForwardable(void)const __ptr64
470?IsForwardable@TCP_AUTHENT@@QEBAHXZ
471; public: int __cdecl TCP_AUTHENT::IsGuest(int) __ptr64
472?IsGuest@TCP_AUTHENT@@QEAAHH@Z
473; private: int __cdecl IIS_SERVER_INSTANCE::IsInCurrentBindingList(struct _LIST_ENTRY * __ptr64,unsigned long,unsigned short,char const * __ptr64) __ptr64
474?IsInCurrentBindingList@IIS_SERVER_INSTANCE@@AEAAHPEAU_LIST_ENTRY@@KGPEBD@Z
475; public: int __cdecl IIS_SERVER_INSTANCE::IsLoggingEnabledA(void)const __ptr64
476?IsLoggingEnabledA@IIS_SERVER_INSTANCE@@QEBAHXZ
477; public: virtual int __cdecl MIME_MAP_ENTRY::IsMatch(char const * __ptr64,unsigned long)const __ptr64
478?IsMatch@MIME_MAP_ENTRY@@UEBAHPEBDK@Z
479; public: int __cdecl IIS_SERVICE::IsMultiInstance(void)const __ptr64
480?IsMultiInstance@IIS_SERVICE@@QEBAHXZ
481IsNameInRegExpressionA
482; public: int __cdecl LOGGING::IsRequiredExtraLoggingFields(void) __ptr64
483?IsRequiredExtraLoggingFields@LOGGING@@QEAAHXZ
484; public: int __cdecl IIS_SERVICE::IsService(void) __ptr64
485?IsService@IIS_SERVICE@@QEAAHXZ
486; public: int __cdecl TCP_AUTHENT::IsSslCertPresent(void) __ptr64
487?IsSslCertPresent@TCP_AUTHENT@@QEAAHXZ
488; public: int __cdecl STORE_CHANGE_NOTIFIER::IsStoreRegisteredForChange(char * __ptr64,void (__cdecl*)(void * __ptr64),void * __ptr64) __ptr64
489?IsStoreRegisteredForChange@STORE_CHANGE_NOTIFIER@@QEAAHPEADP6AXPEAX@Z1@Z
490; public: int __cdecl IIS_SERVICE::IsSystemDBCS(void)const __ptr64
491?IsSystemDBCS@IIS_SERVICE@@QEBAHXZ
492; private: int __cdecl IIS_SSL_INFO::IsTrustedRoot(struct _CERT_CONTEXT const * __ptr64,int * __ptr64) __ptr64
493?IsTrustedRoot@IIS_SSL_INFO@@AEAAHPEBU_CERT_CONTEXT@@PEAH@Z
494; public: int __cdecl HASH_TABLE::IsValid(void)const __ptr64
495?IsValid@HASH_TABLE@@QEBAHXZ
496; public: int __cdecl IIS_CTL::IsValid(void) __ptr64
497?IsValid@IIS_CTL@@QEAAHXZ
498; public: int __cdecl IIS_SERVER_CERT::IsValid(void) __ptr64
499?IsValid@IIS_SERVER_CERT@@QEAAHXZ
500; public: int __cdecl ODBC_CONNECTION::IsValid(void)const __ptr64
501?IsValid@ODBC_CONNECTION@@QEBAHXZ
502; public: int __cdecl ODBC_STATEMENT::IsValid(void)const __ptr64
503?IsValid@ODBC_STATEMENT@@QEBAHXZ
504; public: int __cdecl TS_OPEN_FILE_INFO::IsValid(void)const __ptr64
505?IsValid@TS_OPEN_FILE_INFO@@QEBAHXZ
506; public: int __cdecl IIS_SERVER_INSTANCE::LoadStr(class STR & __ptr64,unsigned long,int)const __ptr64
507?LoadStr@IIS_SERVER_INSTANCE@@QEBAHAEAVSTR@@KH@Z
508; public: int __cdecl IIS_SERVICE::LoadStr(class STR & __ptr64,unsigned long,int)const __ptr64
509?LoadStr@IIS_SERVICE@@QEBAHAEAVSTR@@KH@Z
510; public: void __cdecl IIS_SSL_INFO::Lock(void) __ptr64
511?Lock@IIS_SSL_INFO@@QEAAXXZ
512; public: void __cdecl IIS_VROOT_TABLE::LockConvertExclusive(void) __ptr64
513?LockConvertExclusive@IIS_VROOT_TABLE@@QEAAXXZ
514; public: void __cdecl IIS_VROOT_TABLE::LockExclusive(void) __ptr64
515?LockExclusive@IIS_VROOT_TABLE@@QEAAXXZ
516; private: void __cdecl LOGGING::LockExclusive(void) __ptr64
517?LockExclusive@LOGGING@@AEAAXXZ
518; public: void __cdecl IIS_VROOT_TABLE::LockShared(void) __ptr64
519?LockShared@IIS_VROOT_TABLE@@QEAAXXZ
520; private: void __cdecl LOGGING::LockShared(void) __ptr64
521?LockShared@LOGGING@@AEAAXXZ
522; public: void __cdecl IIS_SERVER_INSTANCE::LockThisForRead(void) __ptr64
523?LockThisForRead@IIS_SERVER_INSTANCE@@QEAAXXZ
524; public: void __cdecl IIS_SERVER_INSTANCE::LockThisForWrite(void) __ptr64
525?LockThisForWrite@IIS_SERVER_INSTANCE@@QEAAXXZ
526; public: unsigned long __cdecl LOGGING::LogCustomInformation(unsigned long,struct _CUSTOM_LOG_DATA * __ptr64,char * __ptr64) __ptr64
527?LogCustomInformation@LOGGING@@QEAAKKPEAU_CUSTOM_LOG_DATA@@PEAD@Z
528; public: void __cdecl IIS_SERVICE::LogEvent(unsigned long,unsigned short,char const * __ptr64 * __ptr64 const,unsigned long) __ptr64
529?LogEvent@IIS_SERVICE@@QEAAXKGQEAPEBDK@Z
530; public: unsigned long __cdecl LOGGING::LogInformation(struct _INETLOG_INFORMATION const * __ptr64) __ptr64
531?LogInformation@LOGGING@@QEAAKPEBU_INETLOG_INFORMATION@@@Z
532; int __cdecl LogonDigestUserA(void * __ptr64,unsigned long,void * __ptr64 * __ptr64)
533?LogonDigestUserA@@YAHPEAXKPEAPEAX@Z
534; int __cdecl LogonNetUserA(char * __ptr64,char * __ptr64,char * __ptr64,char * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64 * __ptr64,union _LARGE_INTEGER * __ptr64)
535?LogonNetUserA@@YAHPEAD000KKKPEAPEAXPEAT_LARGE_INTEGER@@@Z
536; int __cdecl LogonNetUserW(unsigned short * __ptr64,unsigned short * __ptr64,char * __ptr64,unsigned short * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64 * __ptr64,union _LARGE_INTEGER * __ptr64)
537?LogonNetUserW@@YAHPEAG0PEAD0KKKPEAPEAXPEAT_LARGE_INTEGER@@@Z
538; public: class HT_ELEMENT * __ptr64 __cdecl HASH_TABLE::Lookup(char const * __ptr64) __ptr64
539?Lookup@HASH_TABLE@@QEAAPEAVHT_ELEMENT@@PEBD@Z
540; public: class MIME_MAP_ENTRY const * __ptr64 __cdecl MIME_MAP::LookupMimeEntryForFileExt(char const * __ptr64) __ptr64
541?LookupMimeEntryForFileExt@MIME_MAP@@QEAAPEBVMIME_MAP_ENTRY@@PEBD@Z
542; public: unsigned long __cdecl MIME_MAP::LookupMimeEntryForMimeType(class STR const & __ptr64,class MIME_MAP_ENTRY const * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
543?LookupMimeEntryForMimeType@MIME_MAP@@QEAAKAEBVSTR@@PEAPEBVMIME_MAP_ENTRY@@PEAK@Z
544; public: int __cdecl IIS_VROOT_TABLE::LookupVirtualRoot(char const * __ptr64,char * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,void * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
545?LookupVirtualRoot@IIS_VROOT_TABLE@@QEAAHPEBDPEADPEAK222PEAPEAX2@Z
546; public: virtual void __cdecl IIS_SERVER_INSTANCE::MDChangeNotify(struct _MD_CHANGE_OBJECT_A * __ptr64) __ptr64
547?MDChangeNotify@IIS_SERVER_INSTANCE@@UEAAXPEAU_MD_CHANGE_OBJECT_A@@@Z
548; protected: virtual void __cdecl IIS_SERVICE::MDChangeNotify(struct _MD_CHANGE_OBJECT_A * __ptr64) __ptr64
549?MDChangeNotify@IIS_SERVICE@@MEAAXPEAU_MD_CHANGE_OBJECT_A@@@Z
550; public: static void __cdecl IIS_SERVICE::MDChangeNotify(unsigned long,struct _MD_CHANGE_OBJECT_A * __ptr64 const)
551?MDChangeNotify@IIS_SERVICE@@SAXKQEAU_MD_CHANGE_OBJECT_A@@@Z
552; public: void __cdecl IIS_SERVER_INSTANCE::MDMirrorVirtualRoots(void) __ptr64
553?MDMirrorVirtualRoots@IIS_SERVER_INSTANCE@@QEAAXXZ
554; public: void __cdecl TS_OPEN_FILE_INFO::MakeStrongETag(void) __ptr64
555?MakeStrongETag@TS_OPEN_FILE_INFO@@QEAAXXZ
556; public: int __cdecl ODBC_STATEMENT::MoreResults(int * __ptr64) __ptr64
557?MoreResults@ODBC_STATEMENT@@QEAAHPEAH@Z
558; public: int __cdecl IIS_SERVER_INSTANCE::MoveMDVroots2Registry(void) __ptr64
559?MoveMDVroots2Registry@IIS_SERVER_INSTANCE@@QEAAHXZ
560; public: int __cdecl IIS_SERVER_INSTANCE::MoveVrootFromRegToMD(void) __ptr64
561?MoveVrootFromRegToMD@IIS_SERVER_INSTANCE@@QEAAHXZ
562; int __cdecl NetUserCookieA(char * __ptr64,unsigned long,char * __ptr64,unsigned long)
563?NetUserCookieA@@YAHPEADK0K@Z
564; public: char * __ptr64 __cdecl INET_PARSER::NextItem(void) __ptr64
565?NextItem@INET_PARSER@@QEAAPEADXZ
566; public: char * __ptr64 __cdecl INET_PARSER::NextLine(void) __ptr64
567?NextLine@INET_PARSER@@QEAAPEADXZ
568; public: char * __ptr64 __cdecl INET_PARSER::NextParam(void) __ptr64
569?NextParam@INET_PARSER@@QEAAPEADXZ
570; public: char * __ptr64 __cdecl INET_PARSER::NextToken(char) __ptr64
571?NextToken@INET_PARSER@@QEAAPEADD@Z
572; public: char * __ptr64 __cdecl INET_PARSER::NextToken(void) __ptr64
573?NextToken@INET_PARSER@@QEAAPEADXZ
574; public: static void __cdecl STORE_CHANGE_NOTIFIER::NotifFncCaller(void * __ptr64,unsigned char)
575?NotifFncCaller@STORE_CHANGE_NOTIFIER@@SAXPEAXE@Z
576; public: int __cdecl LOGGING::NotifyChange(unsigned long) __ptr64
577?NotifyChange@LOGGING@@QEAAHK@Z
578; unsigned long __cdecl NullCloseLocator(struct _HMAPPER * __ptr64,unsigned __int64)
579?NullCloseLocator@@YAKPEAU_HMAPPER@@_K@Z
580; long __cdecl NullDeReferenceMapper(struct _HMAPPER * __ptr64)
581?NullDeReferenceMapper@@YAJPEAU_HMAPPER@@@Z
582; unsigned long __cdecl NullGetAccessToken(struct _HMAPPER * __ptr64,unsigned __int64,void * __ptr64 * __ptr64)
583?NullGetAccessToken@@YAKPEAU_HMAPPER@@_KPEAPEAX@Z
584; unsigned long __cdecl NullGetChallenge(struct _HMAPPER * __ptr64,unsigned char * __ptr64,unsigned long,unsigned char * __ptr64,unsigned long * __ptr64)
585?NullGetChallenge@@YAKPEAU_HMAPPER@@PEAEK1PEAK@Z
586; unsigned long __cdecl NullGetIssuerList(struct _HMAPPER * __ptr64,void * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64)
587?NullGetIssuerList@@YAKPEAU_HMAPPER@@PEAXPEAEPEAK@Z
588; unsigned long __cdecl NullMapCredential(struct _HMAPPER * __ptr64,unsigned long,void const * __ptr64,void const * __ptr64,unsigned __int64 * __ptr64)
589?NullMapCredential@@YAKPEAU_HMAPPER@@KPEBX1PEA_K@Z
590; unsigned long __cdecl NullQueryMappedCredentialAttributes(struct _HMAPPER * __ptr64,unsigned __int64,unsigned long,void * __ptr64,unsigned long * __ptr64)
591?NullQueryMappedCredentialAttributes@@YAKPEAU_HMAPPER@@_KKPEAXPEAK@Z
592; long __cdecl NullReferenceMapper(struct _HMAPPER * __ptr64)
593?NullReferenceMapper@@YAJPEAU_HMAPPER@@@Z
594; public: int __cdecl MB::Open(unsigned long,char const * __ptr64,unsigned long) __ptr64
595?Open@MB@@QEAAHKPEBDK@Z
596; public: int __cdecl ODBC_CONNECTION::Open(char const * __ptr64,char const * __ptr64,char const * __ptr64) __ptr64
597?Open@ODBC_CONNECTION@@QEAAHPEBD00@Z
598; public: int __cdecl ODBC_CONNECTION::Open(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
599?Open@ODBC_CONNECTION@@QEAAHPEBG00@Z
600; public: int __cdecl TCP_AUTHENT::PackageSupportsEncoding(char * __ptr64) __ptr64
601?PackageSupportsEncoding@TCP_AUTHENT@@QEAAHPEAD@Z
602; public: static unsigned long __cdecl IIS_SERVER_BINDING::ParseDescriptor(char const * __ptr64,unsigned long * __ptr64,unsigned short * __ptr64,char const * __ptr64 * __ptr64)
603?ParseDescriptor@IIS_SERVER_BINDING@@SAKPEBDPEAKPEAGPEAPEBD@Z
604; public: virtual unsigned long __cdecl IIS_SERVER_INSTANCE::PauseInstance(void) __ptr64
605?PauseInstance@IIS_SERVER_INSTANCE@@UEAAKXZ
606; private: void __cdecl IIS_SERVICE::PauseService(void) __ptr64
607?PauseService@IIS_SERVICE@@AEAAXXZ
608; public: void __cdecl IIS_SERVER_INSTANCE::PdcHackVRReg2MD(void) __ptr64
609?PdcHackVRReg2MD@IIS_SERVER_INSTANCE@@QEAAXXZ
610; public: unsigned long __cdecl IIS_SERVER_INSTANCE::PerformClusterModeChange(void) __ptr64
611?PerformClusterModeChange@IIS_SERVER_INSTANCE@@QEAAKXZ
612; public: unsigned long __cdecl IIS_SERVER_INSTANCE::PerformStateChange(void) __ptr64
613?PerformStateChange@IIS_SERVER_INSTANCE@@QEAAKXZ
614; public: int __cdecl ODBC_STATEMENT::PrepareStatement(char const * __ptr64) __ptr64
615?PrepareStatement@ODBC_STATEMENT@@QEAAHPEBD@Z
616; public: int __cdecl ODBC_STATEMENT::PrepareStatement(unsigned short const * __ptr64) __ptr64
617?PrepareStatement@ODBC_STATEMENT@@QEAAHPEBG@Z
618; public: void __cdecl MIME_MAP::Print(void) __ptr64
619?Print@MIME_MAP@@QEAAXXZ
620; public: virtual void __cdecl MIME_MAP_ENTRY::Print(void)const __ptr64
621?Print@MIME_MAP_ENTRY@@UEBAXXZ
622; public: void __cdecl TS_OPEN_FILE_INFO::Print(void)const __ptr64
623?Print@TS_OPEN_FILE_INFO@@QEBAXXZ
624; void __cdecl PrintIGatewayRequest(struct _IGATEWAY_REQUEST const * __ptr64)
625?PrintIGatewayRequest@@YAXPEBU_IGATEWAY_REQUEST@@@Z
626; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryAcceptExOutstanding(void)const __ptr64
627?QueryAcceptExOutstanding@IIS_SERVER_INSTANCE@@QEBAKXZ
628; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryAcceptExTimeout(void)const __ptr64
629?QueryAcceptExTimeout@IIS_SERVER_INSTANCE@@QEBAKXZ
630; public: virtual class IIS_SSL_INFO * __ptr64 __cdecl IIS_SERVER_INSTANCE::QueryAndReferenceSSLInfoObj(void) __ptr64
631?QueryAndReferenceSSLInfoObj@IIS_SERVER_INSTANCE@@UEAAPEAVIIS_SSL_INFO@@XZ
632; public: unsigned long __cdecl TS_OPEN_FILE_INFO::QueryAttributes(void)const __ptr64
633?QueryAttributes@TS_OPEN_FILE_INFO@@QEBAKXZ
634; public: void * __ptr64 __cdecl IIS_SERVER_INSTANCE::QueryBandwidthInfo(void)const __ptr64
635?QueryBandwidthInfo@IIS_SERVER_INSTANCE@@QEBAPEAXXZ
636; public: class IIS_CTL * __ptr64 __cdecl IIS_SSL_INFO::QueryCTL(void) __ptr64
637?QueryCTL@IIS_SSL_INFO@@QEAAPEAVIIS_CTL@@XZ
638; public: struct _CTL_CONTEXT const * __ptr64 __cdecl IIS_CTL::QueryCTLContext(void) __ptr64
639?QueryCTLContext@IIS_CTL@@QEAAPEBU_CTL_CONTEXT@@XZ
640; public: short __cdecl ODBC_PARAMETER::QueryCType(void)const __ptr64
641?QueryCType@ODBC_PARAMETER@@QEBAFXZ
642; public: __int64 __cdecl ODBC_PARAMETER::QueryCbValue(void)const __ptr64
643?QueryCbValue@ODBC_PARAMETER@@QEBA_JXZ
644; public: __int64 & __ptr64 __cdecl ODBC_PARAMETER::QueryCbValueRef(void) __ptr64
645?QueryCbValueRef@ODBC_PARAMETER@@QEAAAEA_JXZ
646; public: struct _CERT_CONTEXT const * __ptr64 __cdecl IIS_SERVER_CERT::QueryCertContext(void) __ptr64
647?QueryCertContext@IIS_SERVER_CERT@@QEAAPEBU_CERT_CONTEXT@@XZ
648; public: struct _CERT_CONTEXT const * __ptr64 * __ptr64 __cdecl IIS_SERVER_CERT::QueryCertContextAddr(void) __ptr64
649?QueryCertContextAddr@IIS_SERVER_CERT@@QEAAPEAPEBU_CERT_CONTEXT@@XZ
650; public: int __cdecl IIS_SSL_INFO::QueryCertValidity(unsigned long * __ptr64) __ptr64
651?QueryCertValidity@IIS_SSL_INFO@@QEAAHPEAK@Z
652; public: class IIS_SERVER_CERT * __ptr64 __cdecl IIS_SSL_INFO::QueryCertificate(void) __ptr64
653?QueryCertificate@IIS_SSL_INFO@@QEAAPEAVIIS_SERVER_CERT@@XZ
654; public: int __cdecl TCP_AUTHENT::QueryCertificateFlags(unsigned long * __ptr64,int * __ptr64) __ptr64
655?QueryCertificateFlags@TCP_AUTHENT@@QEAAHPEAKPEAH@Z
656; public: int __cdecl TCP_AUTHENT::QueryCertificateIssuer(char * __ptr64,unsigned long,int * __ptr64) __ptr64
657?QueryCertificateIssuer@TCP_AUTHENT@@QEAAHPEADKPEAH@Z
658; public: int __cdecl TCP_AUTHENT::QueryCertificateSerialNumber(unsigned char * __ptr64 * __ptr64,unsigned long * __ptr64,int * __ptr64) __ptr64
659?QueryCertificateSerialNumber@TCP_AUTHENT@@QEAAHPEAPEAEPEAKPEAH@Z
660; public: int __cdecl TCP_AUTHENT::QueryCertificateSubject(char * __ptr64,unsigned long,int * __ptr64) __ptr64
661?QueryCertificateSubject@TCP_AUTHENT@@QEAAHPEADKPEAH@Z
662; public: int __cdecl ODBC_STATEMENT::QueryColNames(class STR * __ptr64 * __ptr64,unsigned long * __ptr64,unsigned long,int * __ptr64) __ptr64
663?QueryColNames@ODBC_STATEMENT@@QEAAHPEAPEAVSTR@@PEAKKPEAH@Z
664; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryConnectionTimeout(void)const __ptr64
665?QueryConnectionTimeout@IIS_SERVER_INSTANCE@@QEBAKXZ
666; public: char * __ptr64 __cdecl IIS_SERVER_CERT::QueryContainer(void) __ptr64
667?QueryContainer@IIS_SERVER_CERT@@QEAAPEADXZ
668; public: void * __ptr64 __cdecl TS_OPEN_FILE_INFO::QueryContext(void)const __ptr64
669?QueryContext@TS_OPEN_FILE_INFO@@QEBAPEAXXZ
670; public: struct _SecHandle * __ptr64 __cdecl TCP_AUTHENT::QueryCredHandle(void) __ptr64
671?QueryCredHandle@TCP_AUTHENT@@QEAAPEAU_SecHandle@@XZ
672; public: struct _SecHandle * __ptr64 __cdecl TCP_AUTHENT::QueryCtxtHandle(void) __ptr64
673?QueryCtxtHandle@TCP_AUTHENT@@QEAAPEAU_SecHandle@@XZ
674; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryCurrentConnections(void)const __ptr64
675?QueryCurrentConnections@IIS_SERVER_INSTANCE@@QEBAKXZ
676; public: unsigned long __cdecl IIS_SERVICE::QueryCurrentServiceError(void)const __ptr64
677?QueryCurrentServiceError@IIS_SERVICE@@QEBAKXZ
678; public: unsigned long __cdecl IIS_SERVICE::QueryCurrentServiceState(void)const __ptr64
679?QueryCurrentServiceState@IIS_SERVICE@@QEBAKXZ
680; public: unsigned short __cdecl IIS_SERVER_INSTANCE::QueryDefaultPort(void)const __ptr64
681?QueryDefaultPort@IIS_SERVER_INSTANCE@@QEBAGXZ
682; public: unsigned long __cdecl IIS_SERVICE::QueryDownLevelInstance(void)const __ptr64
683?QueryDownLevelInstance@IIS_SERVICE@@QEBAKXZ
684; public: char * __ptr64 __cdecl TS_OPEN_FILE_INFO::QueryETag(void)const __ptr64
685?QueryETag@TS_OPEN_FILE_INFO@@QEBAPEADXZ
686; public: int __cdecl TCP_AUTHENT::QueryEncryptionKeySize(unsigned long * __ptr64,int * __ptr64) __ptr64
687?QueryEncryptionKeySize@TCP_AUTHENT@@QEAAHPEAKPEAH@Z
688; public: int __cdecl TCP_AUTHENT::QueryEncryptionServerPrivateKeySize(unsigned long * __ptr64,int * __ptr64) __ptr64
689?QueryEncryptionServerPrivateKeySize@TCP_AUTHENT@@QEAAHPEAKPEAH@Z
690; public: class IIS_ENDPOINT * __ptr64 __cdecl IIS_SERVER_BINDING::QueryEndpoint(void) __ptr64
691?QueryEndpoint@IIS_SERVER_BINDING@@QEAAPEAVIIS_ENDPOINT@@XZ
692; public: short __cdecl ODBC_CONNECTION::QueryErrorCode(void)const __ptr64
693?QueryErrorCode@ODBC_CONNECTION@@QEBAFXZ
694; public: short __cdecl ODBC_STATEMENT::QueryErrorCode(void)const __ptr64
695?QueryErrorCode@ODBC_STATEMENT@@QEBAFXZ
696; public: class EVENT_LOG * __ptr64 __cdecl IIS_SERVICE::QueryEventLog(void) __ptr64
697?QueryEventLog@IIS_SERVICE@@QEAAPEAVEVENT_LOG@@XZ
698; public: int __cdecl TCP_AUTHENT::QueryExpiry(union _LARGE_INTEGER * __ptr64) __ptr64
699?QueryExpiry@TCP_AUTHENT@@QEAAHPEAT_LARGE_INTEGER@@@Z
700; public: char * __ptr64 __cdecl LOGGING::QueryExtraLoggingFields(void) __ptr64
701?QueryExtraLoggingFields@LOGGING@@QEAAPEADXZ
702; public: void * __ptr64 __cdecl TS_OPEN_FILE_INFO::QueryFileHandle(void) __ptr64
703?QueryFileHandle@TS_OPEN_FILE_INFO@@QEAAPEAXXZ
704; public: int __cdecl TCP_AUTHENT::QueryFullyQualifiedUserName(char * __ptr64,class STR * __ptr64,class IIS_SERVER_INSTANCE * __ptr64,class TCP_AUTHENT_INFO * __ptr64) __ptr64
705?QueryFullyQualifiedUserName@TCP_AUTHENT@@QEAAHPEADPEAVSTR@@PEAVIIS_SERVER_INSTANCE@@PEAVTCP_AUTHENT_INFO@@@Z
706; public: char const * __ptr64 __cdecl IIS_SERVER_BINDING::QueryHostName(void) __ptr64
707?QueryHostName@IIS_SERVER_BINDING@@QEAAPEBDXZ
708; public: void * __ptr64 __cdecl TCP_AUTHENT::QueryImpersonationToken(void) __ptr64
709?QueryImpersonationToken@TCP_AUTHENT@@QEAAPEAXXZ
710; public: static class ISRPC * __ptr64 __cdecl IIS_SERVICE::QueryInetInfoRpc(void)
711?QueryInetInfoRpc@IIS_SERVICE@@SAPEAVISRPC@@XZ
712; public: unsigned long __cdecl IIS_SERVICE::QueryInstanceCount(void)const __ptr64
713?QueryInstanceCount@IIS_SERVICE@@QEBAKXZ
714; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryInstanceId(void)const __ptr64
715?QueryInstanceId@IIS_SERVER_INSTANCE@@QEBAKXZ
716; public: unsigned long __cdecl IIS_SERVER_BINDING::QueryIpAddress(void) __ptr64
717?QueryIpAddress@IIS_SERVER_BINDING@@QEAAKXZ
718; public: unsigned short __cdecl IIS_SERVER_BINDING::QueryIpPort(void) __ptr64
719?QueryIpPort@IIS_SERVER_BINDING@@QEAAGXZ
720; public: virtual char const * __ptr64 __cdecl MIME_MAP_ENTRY::QueryKey(void)const __ptr64
721?QueryKey@MIME_MAP_ENTRY@@UEBAPEBDXZ
722; public: virtual unsigned long __cdecl MIME_MAP_ENTRY::QueryKeyLen(void)const __ptr64
723?QueryKeyLen@MIME_MAP_ENTRY@@UEBAKXZ
724; public: int __cdecl TS_OPEN_FILE_INFO::QueryLastWriteTime(struct _FILETIME * __ptr64)const __ptr64
725?QueryLastWriteTime@TS_OPEN_FILE_INFO@@QEBAHPEAU_FILETIME@@@Z
726; public: char * __ptr64 __cdecl INET_PARSER::QueryLine(void) __ptr64
727?QueryLine@INET_PARSER@@QEAAPEADXZ
728; public: unsigned short * __ptr64 __cdecl IIS_CTL::QueryListIdentifier(void) __ptr64
729?QueryListIdentifier@IIS_CTL@@QEAAPEAGXZ
730; public: int __cdecl IIS_SERVER_INSTANCE::QueryLogAnonymous(void)const __ptr64
731?QueryLogAnonymous@IIS_SERVER_INSTANCE@@QEBAHXZ
732; public: int __cdecl IIS_SERVER_INSTANCE::QueryLogNonAnonymous(void)const __ptr64
733?QueryLogNonAnonymous@IIS_SERVER_INSTANCE@@QEBAHXZ
734; public: char * __ptr64 __cdecl IIS_CTL::QueryMBPath(void) __ptr64
735?QueryMBPath@IIS_CTL@@QEAAPEADXZ
736; public: char * __ptr64 __cdecl IIS_SERVER_CERT::QueryMBPath(void) __ptr64
737?QueryMBPath@IIS_SERVER_CERT@@QEAAPEADXZ
738; public: struct IUnknown * __ptr64 __cdecl IIS_SERVICE::QueryMDNseObject(void) __ptr64
739?QueryMDNseObject@IIS_SERVICE@@QEAAPEAUIUnknown@@XZ
740; public: static struct IUnknown * __ptr64 __cdecl IIS_SERVICE::QueryMDObject(void)
741?QueryMDObject@IIS_SERVICE@@SAPEAUIUnknown@@XZ
742; public: char const * __ptr64 __cdecl IIS_SERVER_INSTANCE::QueryMDPath(void)const __ptr64
743?QueryMDPath@IIS_SERVER_INSTANCE@@QEBAPEBDXZ
744; public: char const * __ptr64 __cdecl IIS_SERVICE::QueryMDPath(void)const __ptr64
745?QueryMDPath@IIS_SERVICE@@QEBAPEBDXZ
746; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryMDPathLen(void)const __ptr64
747?QueryMDPathLen@IIS_SERVER_INSTANCE@@QEBAKXZ
748; public: char const * __ptr64 __cdecl IIS_SERVER_INSTANCE::QueryMDVRPath(void)const __ptr64
749?QueryMDVRPath@IIS_SERVER_INSTANCE@@QEBAPEBDXZ
750; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryMDVRPathLen(void)const __ptr64
751?QueryMDVRPathLen@IIS_SERVER_INSTANCE@@QEBAKXZ
752; public: __int64 __cdecl ODBC_PARAMETER::QueryMaxCbValue(void)const __ptr64
753?QueryMaxCbValue@ODBC_PARAMETER@@QEBA_JXZ
754; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryMaxConnections(void)const __ptr64
755?QueryMaxConnections@IIS_SERVER_INSTANCE@@QEBAKXZ
756; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryMaxEndpointConnections(void)const __ptr64
757?QueryMaxEndpointConnections@IIS_SERVER_INSTANCE@@QEBAKXZ
758; public: class MIME_MAP * __ptr64 __cdecl IIS_SERVICE::QueryMimeMap(void)const __ptr64
759?QueryMimeMap@IIS_SERVICE@@QEBAPEAVMIME_MAP@@XZ
760; public: char const * __ptr64 __cdecl IIS_SERVICE::QueryModuleName(void)const __ptr64
761?QueryModuleName@IIS_SERVICE@@QEBAPEBDXZ
762; public: unsigned long __cdecl IIS_SERVER_CERT::QueryOpenFlags(void) __ptr64
763?QueryOpenFlags@IIS_SERVER_CERT@@QEAAKXZ
764; public: void * __ptr64 __cdecl IIS_CTL::QueryOriginalStore(void) __ptr64
765?QueryOriginalStore@IIS_CTL@@QEAAPEAXXZ
766; public: unsigned short __cdecl ODBC_PARAMETER::QueryParamNumber(void)const __ptr64
767?QueryParamNumber@ODBC_PARAMETER@@QEBAGXZ
768; public: short __cdecl ODBC_PARAMETER::QueryParamType(void)const __ptr64
769?QueryParamType@ODBC_PARAMETER@@QEBAFXZ
770; public: char * __ptr64 __cdecl INET_PARSER::QueryPos(void) __ptr64
771?QueryPos@INET_PARSER@@QEAAPEADXZ
772; public: unsigned long __cdecl ODBC_PARAMETER::QueryPrecision(void)const __ptr64
773?QueryPrecision@ODBC_PARAMETER@@QEBAKXZ
774; public: void * __ptr64 __cdecl TCP_AUTHENT::QueryPrimaryToken(void) __ptr64
775?QueryPrimaryToken@TCP_AUTHENT@@QEAAPEAXXZ
776; public: char * __ptr64 __cdecl IIS_SERVER_CERT::QueryProviderName(void) __ptr64
777?QueryProviderName@IIS_SERVER_CERT@@QEAAPEADXZ
778; public: unsigned long __cdecl IIS_SERVER_CERT::QueryProviderType(void) __ptr64
779?QueryProviderType@IIS_SERVER_CERT@@QEAAKXZ
780; public: void * __ptr64 __cdecl RefBlob::QueryPtr(void) __ptr64
781?QueryPtr@RefBlob@@QEAAPEAXXZ
782; public: long * __ptr64 __cdecl RefBlob::QueryRefCount(void) __ptr64
783?QueryRefCount@RefBlob@@QEAAPEAJXZ
784; public: char const * __ptr64 __cdecl IIS_SERVER_INSTANCE::QueryRegParamKey(void)const __ptr64
785?QueryRegParamKey@IIS_SERVER_INSTANCE@@QEBAPEBDXZ
786; public: char const * __ptr64 __cdecl IIS_SERVICE::QueryRegParamKey(void)const __ptr64
787?QueryRegParamKey@IIS_SERVICE@@QEBAPEBDXZ
788; public: char * __ptr64 __cdecl IIS_SERVER_INSTANCE::QueryRoot(void)const __ptr64
789?QueryRoot@IIS_SERVER_INSTANCE@@QEBAPEADXZ
790; public: int __cdecl ODBC_STATEMENT::QueryRowCount(__int64 * __ptr64) __ptr64
791?QueryRowCount@ODBC_STATEMENT@@QEAAHPEA_J@Z
792; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QuerySavedState(void)const __ptr64
793?QuerySavedState@IIS_SERVER_INSTANCE@@QEBAKXZ
794; public: short __cdecl ODBC_PARAMETER::QueryScale(void)const __ptr64
795?QueryScale@ODBC_PARAMETER@@QEBAFXZ
796; public: int __cdecl TCP_AUTHENT::QueryServerCertificateIssuer(char * __ptr64 * __ptr64,int * __ptr64) __ptr64
797?QueryServerCertificateIssuer@TCP_AUTHENT@@QEAAHPEAPEADPEAH@Z
798; public: int __cdecl TCP_AUTHENT::QueryServerCertificateSubject(char * __ptr64 * __ptr64,int * __ptr64) __ptr64
799?QueryServerCertificateSubject@TCP_AUTHENT@@QEAAHPEAPEADPEAH@Z
800; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryServerSize(void)const __ptr64
801?QueryServerSize@IIS_SERVER_INSTANCE@@QEBAKXZ
802; public: unsigned long __cdecl IIS_SERVER_INSTANCE::QueryServerState(void)const __ptr64
803?QueryServerState@IIS_SERVER_INSTANCE@@QEBAKXZ
804; public: char const * __ptr64 __cdecl IIS_SERVICE::QueryServiceComment(void)const __ptr64
805?QueryServiceComment@IIS_SERVICE@@QEBAPEBDXZ
806; public: unsigned long __cdecl IIS_SERVICE::QueryServiceId(void)const __ptr64
807?QueryServiceId@IIS_SERVICE@@QEBAKXZ
808; public: char const * __ptr64 __cdecl IIS_SERVICE::QueryServiceName(void)const __ptr64
809?QueryServiceName@IIS_SERVICE@@QEBAPEBDXZ
810; public: unsigned long __cdecl IIS_SERVICE::QueryServiceSpecificExitCode(void)const __ptr64
811?QueryServiceSpecificExitCode@IIS_SERVICE@@QEBAKXZ
812; public: unsigned long __cdecl IIS_SERVICE::QueryShutdownScheduleId(void)const __ptr64
813?QueryShutdownScheduleId@IIS_SERVICE@@QEBAKXZ
814; public: int __cdecl IIS_CTL::QuerySignerCert(struct _CERT_CONTEXT const * __ptr64 * __ptr64) __ptr64
815?QuerySignerCert@IIS_CTL@@QEAAHPEAPEBU_CERT_CONTEXT@@@Z
816; int __cdecl QuerySingleAccessToken(void)
817?QuerySingleAccessToken@@YAHXZ
818; public: char const * __ptr64 __cdecl IIS_SERVER_INSTANCE::QuerySiteName(void)const __ptr64
819?QuerySiteName@IIS_SERVER_INSTANCE@@QEBAPEBDXZ
820; public: unsigned long __cdecl RefBlob::QuerySize(void) __ptr64
821?QuerySize@RefBlob@@QEAAKXZ
822; public: int __cdecl TS_OPEN_FILE_INFO::QuerySize(union _LARGE_INTEGER & __ptr64)const __ptr64
823?QuerySize@TS_OPEN_FILE_INFO@@QEBAHAEAT_LARGE_INTEGER@@@Z
824; public: int __cdecl TS_OPEN_FILE_INFO::QuerySize(unsigned long * __ptr64,unsigned long * __ptr64)const __ptr64
825?QuerySize@TS_OPEN_FILE_INFO@@QEBAHPEAK0@Z
826; public: short __cdecl ODBC_PARAMETER::QuerySqlType(void)const __ptr64
827?QuerySqlType@ODBC_PARAMETER@@QEBAFXZ
828; public: struct _SecHandle * __ptr64 __cdecl TCP_AUTHENT::QuerySslCtxtHandle(void) __ptr64
829?QuerySslCtxtHandle@TCP_AUTHENT@@QEAAPEAU_SecHandle@@XZ
830; public: unsigned long __cdecl IIS_CTL::QueryStatus(void) __ptr64
831?QueryStatus@IIS_CTL@@QEAAKXZ
832; public: void * __ptr64 __cdecl IIS_SERVER_CERT::QueryStoreHandle(void) __ptr64
833?QueryStoreHandle@IIS_SERVER_CERT@@QEAAPEAXXZ
834; public: char * __ptr64 __cdecl IIS_CTL::QueryStoreName(void) __ptr64
835?QueryStoreName@IIS_CTL@@QEAAPEADXZ
836; public: char * __ptr64 __cdecl IIS_SERVER_CERT::QueryStoreName(void) __ptr64
837?QueryStoreName@IIS_SERVER_CERT@@QEAAPEADXZ
838; public: char * __ptr64 __cdecl INET_PARSER::QueryToken(void) __ptr64
839?QueryToken@INET_PARSER@@QEAAPEADXZ
840; public: int __cdecl TCP_AUTHENT::QueryUserName(class STR * __ptr64,int) __ptr64
841?QueryUserName@TCP_AUTHENT@@QEAAHPEAVSTR@@H@Z
842; public: void * __ptr64 __cdecl ODBC_PARAMETER::QueryValue(void)const __ptr64
843?QueryValue@ODBC_PARAMETER@@QEBAPEAXXZ
844; public: int __cdecl ODBC_STATEMENT::QueryValuesAsStr(class STR * __ptr64 * __ptr64,unsigned long * __ptr64 * __ptr64,int * __ptr64) __ptr64
845?QueryValuesAsStr@ODBC_STATEMENT@@QEAAHPEAPEAVSTR@@PEAPEAKPEAH@Z
846; public: unsigned long __cdecl IIS_VROOT_TABLE::QueryVrootCount(void) __ptr64
847?QueryVrootCount@IIS_VROOT_TABLE@@QEAAKXZ
848; public: class IIS_VROOT_TABLE * __ptr64 __cdecl IIS_SERVER_INSTANCE::QueryVrootTable(void) __ptr64
849?QueryVrootTable@IIS_SERVER_INSTANCE@@QEAAPEAVIIS_VROOT_TABLE@@XZ
850; public: int __cdecl COMMON_METADATA::ReadMetaData(class IIS_SERVER_INSTANCE * __ptr64,class MB * __ptr64,char * __ptr64,struct _METADATA_ERROR_INFO * __ptr64) __ptr64
851?ReadMetaData@COMMON_METADATA@@QEAAHPEAVIIS_SERVER_INSTANCE@@PEAVMB@@PEADPEAU_METADATA_ERROR_INFO@@@Z
852; public: int __cdecl IIS_SERVICE::RecordInstanceStart(void) __ptr64
853?RecordInstanceStart@IIS_SERVICE@@QEAAHXZ
854; public: void __cdecl IIS_SERVICE::RecordInstanceStop(void) __ptr64
855?RecordInstanceStop@IIS_SERVICE@@QEAAXXZ
856; public: void __cdecl IIS_ENDPOINT::Reference(void) __ptr64
857?Reference@IIS_ENDPOINT@@QEAAXXZ
858; public: void __cdecl IIS_SERVER_INSTANCE::Reference(void) __ptr64
859?Reference@IIS_SERVER_INSTANCE@@QEAAXXZ
860; public: unsigned long __cdecl IIS_SSL_INFO::Reference(void) __ptr64
861?Reference@IIS_SSL_INFO@@QEAAKXZ
862; public: virtual long __cdecl MIME_MAP_ENTRY::Reference(void) __ptr64
863?Reference@MIME_MAP_ENTRY@@UEAAJXZ
864; public: int __cdecl MB::ReferenceData(char const * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64 * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long) __ptr64
865?ReferenceData@MB@@QEAAHPEBDKKKPEAPEAXPEAK2K@Z
866; public: int __cdecl IIS_SERVER_INSTANCE::RegReadCommonParams(int,int) __ptr64
867?RegReadCommonParams@IIS_SERVER_INSTANCE@@QEAAHHH@Z
868; public: int __cdecl STORE_CHANGE_NOTIFIER::RegisterStoreForChange(char * __ptr64,void * __ptr64,void (__cdecl*)(void * __ptr64),void * __ptr64) __ptr64
869?RegisterStoreForChange@STORE_CHANGE_NOTIFIER@@QEAAHPEADPEAXP6AX1@Z1@Z
870; public: static unsigned long __cdecl IIS_SSL_INFO::Release(void * __ptr64)
871?Release@IIS_SSL_INFO@@SAKPEAX@Z
872; public: void __cdecl RefBlob::Release(void) __ptr64
873?Release@RefBlob@@QEAAXXZ
874; public: void __cdecl IIS_SERVER_INSTANCE::ReleaseFastLock(void) __ptr64
875?ReleaseFastLock@IIS_SERVER_INSTANCE@@QEAAXXZ
876; public: void __cdecl IIS_SSL_INFO::ReleaseFortezzaHandlers(void) __ptr64
877?ReleaseFortezzaHandlers@IIS_SSL_INFO@@QEAAXXZ
878; private: static void __cdecl IIS_SERVICE::ReleaseGlobalLock(void)
879?ReleaseGlobalLock@IIS_SERVICE@@CAXXZ
880; public: int __cdecl MB::ReleaseReferenceData(unsigned long) __ptr64
881?ReleaseReferenceData@MB@@QEAAHK@Z
882; public: void __cdecl STORE_CHANGE_NOTIFIER::ReleaseRegisteredStores(void) __ptr64
883?ReleaseRegisteredStores@STORE_CHANGE_NOTIFIER@@QEAAXXZ
884; public: void __cdecl IIS_SERVICE::ReleaseServiceLock(int) __ptr64
885?ReleaseServiceLock@IIS_SERVICE@@QEAAXH@Z
886; public: unsigned long __cdecl IIS_SERVER_INSTANCE::RemoveNormalBindings(void) __ptr64
887?RemoveNormalBindings@IIS_SERVER_INSTANCE@@QEAAKXZ
888; public: unsigned long __cdecl IIS_SERVER_INSTANCE::RemoveSecureBindings(void) __ptr64
889?RemoveSecureBindings@IIS_SERVER_INSTANCE@@QEAAKXZ
890; public: int __cdecl IIS_SERVICE::RemoveServerInstance(class IIS_SERVER_INSTANCE * __ptr64) __ptr64
891?RemoveServerInstance@IIS_SERVICE@@QEAAHPEAVIIS_SERVER_INSTANCE@@@Z
892; public: int __cdecl IIS_VROOT_TABLE::RemoveVirtualRoot(char * __ptr64) __ptr64
893?RemoveVirtualRoot@IIS_VROOT_TABLE@@QEAAHPEAD@Z
894; public: int __cdecl IIS_VROOT_TABLE::RemoveVirtualRoots(void) __ptr64
895?RemoveVirtualRoots@IIS_VROOT_TABLE@@QEAAHXZ
896; private: unsigned long __cdecl IIS_SERVICE::ReportServiceStatus(void) __ptr64
897?ReportServiceStatus@IIS_SERVICE@@AEAAKXZ
898; public: int __cdecl TCP_AUTHENT::Reset(int) __ptr64
899?Reset@TCP_AUTHENT@@QEAAHH@Z
900; public: void __cdecl INET_PARSER::RestoreBuffer(void) __ptr64
901?RestoreBuffer@INET_PARSER@@QEAAXXZ
902; protected: void __cdecl INET_PARSER::RestoreLine(void) __ptr64
903?RestoreLine@INET_PARSER@@IEAAXXZ
904; protected: void __cdecl INET_PARSER::RestoreToken(void) __ptr64
905?RestoreToken@INET_PARSER@@IEAAXXZ
906; public: int __cdecl TS_OPEN_FILE_INFO::RetrieveHttpInfo(char * __ptr64,int * __ptr64) __ptr64
907?RetrieveHttpInfo@TS_OPEN_FILE_INFO@@QEAAHPEADPEAH@Z
908; private: int __cdecl IIS_SERVER_CERT::RetrievePINInfo(class MB * __ptr64,char * __ptr64 * __ptr64,char * __ptr64 * __ptr64,char * __ptr64 * __ptr64) __ptr64
909?RetrievePINInfo@IIS_SERVER_CERT@@AEAAHPEAVMB@@PEAPEAD11@Z
910; public: int __cdecl TCP_AUTHENT::RevertToSelf(void) __ptr64
911?RevertToSelf@TCP_AUTHENT@@QEAAHXZ
912; public: int __cdecl MB::Save(void) __ptr64
913?Save@MB@@QEAAHXZ
914; public: void __cdecl IIS_SERVER_INSTANCE::SaveServerState(void) __ptr64
915?SaveServerState@IIS_SERVER_INSTANCE@@QEAAXXZ
916; int __cdecl SelectMimeMappingForFileExt(class IIS_SERVICE * __ptr64 const,char const * __ptr64,class STR * __ptr64,class STR * __ptr64)
917?SelectMimeMappingForFileExt@@YAHQEAVIIS_SERVICE@@PEBDPEAVSTR@@2@Z
918; int __cdecl ServerAddressHasCAPIInfo(class MB * __ptr64,char * __ptr64,unsigned long * __ptr64,unsigned long)
919?ServerAddressHasCAPIInfo@@YAHPEAVMB@@PEADPEAKK@Z
920; public: void __cdecl IIS_SERVICE::ServiceCtrlHandler(unsigned long) __ptr64
921?ServiceCtrlHandler@IIS_SERVICE@@QEAAXK@Z
922; public: void __cdecl COMMON_METADATA::SetAccessPerms(unsigned long) __ptr64
923?SetAccessPerms@COMMON_METADATA@@QEAAXK@Z
924; public: int __cdecl TCP_AUTHENT::SetAccessToken(void * __ptr64,void * __ptr64) __ptr64
925?SetAccessToken@TCP_AUTHENT@@QEAAHPEAX0@Z
926; public: int __cdecl IIS_SERVER_INSTANCE::SetBandwidthThrottle(class MB * __ptr64) __ptr64
927?SetBandwidthThrottle@IIS_SERVER_INSTANCE@@QEAAHPEAVMB@@@Z
928; public: int __cdecl IIS_SERVER_INSTANCE::SetBandwidthThrottleMaxBlocked(class MB * __ptr64) __ptr64
929?SetBandwidthThrottleMaxBlocked@IIS_SERVER_INSTANCE@@QEAAHPEAVMB@@@Z
930; public: int __cdecl IIS_SERVER_INSTANCE::SetCommonConfig(struct _INET_INFO_CONFIG_INFO * __ptr64,int) __ptr64
931?SetCommonConfig@IIS_SERVER_INSTANCE@@QEAAHPEAU_INET_INFO_CONFIG_INFO@@H@Z
932; public: unsigned long __cdecl LOGGING::SetConfig(struct _INETLOG_CONFIGURATIONA * __ptr64) __ptr64
933?SetConfig@LOGGING@@QEAAKPEAU_INETLOG_CONFIGURATIONA@@@Z
934; public: int __cdecl ODBC_CONNECTION::SetConnectOption(unsigned short,unsigned long) __ptr64
935?SetConnectOption@ODBC_CONNECTION@@QEAAHGK@Z
936; public: int __cdecl TS_OPEN_FILE_INFO::SetContext(void * __ptr64,int (__cdecl*)(void * __ptr64)) __ptr64
937?SetContext@TS_OPEN_FILE_INFO@@QEAAHPEAXP6AH0@Z@Z
938; public: int __cdecl MB::SetData(char const * __ptr64,unsigned long,unsigned long,unsigned long,void * __ptr64,unsigned long,unsigned long) __ptr64
939?SetData@MB@@QEAAHPEBDKKKPEAXKK@Z
940; public: int __cdecl TS_OPEN_FILE_INFO::SetHttpInfo(char * __ptr64,int) __ptr64
941?SetHttpInfo@TS_OPEN_FILE_INFO@@QEAAHPEADH@Z
942; private: int __cdecl IIS_SERVICE::SetInstanceConfiguration(unsigned long,unsigned long,int,struct _INET_INFO_CONFIG_INFO * __ptr64) __ptr64
943?SetInstanceConfiguration@IIS_SERVICE@@AEAAHKKHPEAU_INET_INFO_CONFIG_INFO@@@Z
944; public: void __cdecl INET_PARSER::SetListMode(int) __ptr64
945?SetListMode@INET_PARSER@@QEAAXH@Z
946; public: void __cdecl TSVC_CACHE::SetParameters(unsigned long,unsigned long,void * __ptr64) __ptr64
947?SetParameters@TSVC_CACHE@@QEAAXKKPEAX@Z
948; public: void __cdecl INET_PARSER::SetPtr(char * __ptr64) __ptr64
949?SetPtr@INET_PARSER@@QEAAXPEAD@Z
950; public: int __cdecl TCP_AUTHENT::SetSecurityContextToken(struct _SecHandle * __ptr64,void * __ptr64,int (__cdecl*)(struct _SecHandle * __ptr64,void * __ptr64),void * __ptr64,class IIS_SSL_INFO * __ptr64) __ptr64
951?SetSecurityContextToken@TCP_AUTHENT@@QEAAHPEAU_SecHandle@@PEAXP6AH01@Z1PEAVIIS_SSL_INFO@@@Z
952; public: void __cdecl IIS_SERVER_INSTANCE::SetServerState(unsigned long,unsigned long) __ptr64
953?SetServerState@IIS_SERVER_INSTANCE@@QEAAXKK@Z
954; public: static int __cdecl IIS_SERVICE::SetServiceAdminInfo(unsigned long,unsigned long,unsigned long,int,struct _INET_INFO_CONFIG_INFO * __ptr64)
955?SetServiceAdminInfo@IIS_SERVICE@@SAHKKKHPEAU_INET_INFO_CONFIG_INFO@@@Z
956; public: void __cdecl IIS_SERVICE::SetServiceComment(char * __ptr64) __ptr64
957?SetServiceComment@IIS_SERVICE@@QEAAXPEAD@Z
958; public: void __cdecl IIS_SERVICE::SetServiceSpecificExitCode(unsigned long) __ptr64
959?SetServiceSpecificExitCode@IIS_SERVICE@@QEAAXK@Z
960; public: int __cdecl TCP_AUTHENT::SetTargetName(char * __ptr64) __ptr64
961?SetTargetName@TCP_AUTHENT@@QEAAHPEAD@Z
962; public: int __cdecl ODBC_PARAMETER::SetValueBuffer(long,long) __ptr64
963?SetValueBuffer@ODBC_PARAMETER@@QEAAHJJ@Z
964; public: void __cdecl IIS_SERVER_INSTANCE::SetWin32Error(unsigned long) __ptr64
965?SetWin32Error@IIS_SERVER_INSTANCE@@QEAAXK@Z
966; public: void __cdecl IIS_SERVER_INSTANCE::SetZapRegKey(void) __ptr64
967?SetZapRegKey@IIS_SERVER_INSTANCE@@QEAAXXZ
968; public: int __cdecl LOGGING::ShutdownLogging(void) __ptr64
969?ShutdownLogging@LOGGING@@QEAAHXZ
970; public: unsigned long __cdecl IIS_SERVICE::ShutdownScheduleCallback(void) __ptr64
971?ShutdownScheduleCallback@IIS_SERVICE@@QEAAKXZ
972; public: int __cdecl IIS_SERVICE::ShutdownService(void) __ptr64
973?ShutdownService@IIS_SERVICE@@QEAAHXZ
974; public: char * __ptr64 __cdecl INET_PARSER::SkipTo(char) __ptr64
975?SkipTo@INET_PARSER@@QEAAPEADD@Z
976; public: int __cdecl TS_DIRECTORY_INFO::SortFileInfoPointers(int (__cdecl*)(void const * __ptr64,void const * __ptr64)) __ptr64
977?SortFileInfoPointers@TS_DIRECTORY_INFO@@QEAAHP6AHPEBX0@Z@Z
978; public: virtual unsigned long __cdecl IIS_SERVER_INSTANCE::StartInstance(void) __ptr64
979?StartInstance@IIS_SERVER_INSTANCE@@UEAAKXZ
980; public: int __cdecl TCP_AUTHENT::StartProcessAsUser(char const * __ptr64,char * __ptr64,int,unsigned long,void * __ptr64,char const * __ptr64,struct _STARTUPINFOA * __ptr64,struct _PROCESS_INFORMATION * __ptr64) __ptr64
981?StartProcessAsUser@TCP_AUTHENT@@QEAAHPEBDPEADHKPEAX0PEAU_STARTUPINFOA@@PEAU_PROCESS_INFORMATION@@@Z
982; public: unsigned long __cdecl IIS_SERVICE::StartServiceOperation(void (__cdecl*)(unsigned long),unsigned long (__cdecl*)(void * __ptr64),unsigned long (__cdecl*)(void * __ptr64)) __ptr64
983?StartServiceOperation@IIS_SERVICE@@QEAAKP6AXK@ZP6AKPEAX@Z2@Z
984; public: void __cdecl IIS_SERVICE::StartUpIndicateClientActivity(void) __ptr64
985?StartUpIndicateClientActivity@IIS_SERVICE@@QEAAXXZ
986; public: unsigned long __cdecl IIS_SERVER_CERT::Status(void) __ptr64
987?Status@IIS_SERVER_CERT@@QEAAKXZ
988; public: int __cdecl IIS_SERVER_INSTANCE::StopEndpoints(void) __ptr64
989?StopEndpoints@IIS_SERVER_INSTANCE@@QEAAHXZ
990; private: int __cdecl IIS_SERVER_INSTANCE::StopEndpointsHelper(struct _LIST_ENTRY * __ptr64) __ptr64
991?StopEndpointsHelper@IIS_SERVER_INSTANCE@@AEAAHPEAU_LIST_ENTRY@@@Z
992; public: virtual unsigned long __cdecl IIS_SERVER_INSTANCE::StopInstance(void) __ptr64
993?StopInstance@IIS_SERVER_INSTANCE@@UEAAKXZ
994; public: virtual void __cdecl IIS_SERVICE::StopInstanceProcs(class IIS_SERVER_INSTANCE * __ptr64) __ptr64
995?StopInstanceProcs@IIS_SERVICE@@UEAAXPEAVIIS_SERVER_INSTANCE@@@Z
996; private: void __cdecl IIS_SERVICE::StopService(void) __ptr64
997?StopService@IIS_SERVICE@@AEAAXXZ
998; public: static int __cdecl ODBC_CONNECTION::Success(short)
999?Success@ODBC_CONNECTION@@SAHF@Z
1000; public: static unsigned long __cdecl LOGGING::Terminate(void)
1001?Terminate@LOGGING@@SAKXZ
1002; public: unsigned long __cdecl IIS_SERVICE::TerminateDiscovery(void) __ptr64
1003?TerminateDiscovery@IIS_SERVICE@@QEAAKXZ
1004; protected: void __cdecl INET_PARSER::TerminateLine(void) __ptr64
1005?TerminateLine@INET_PARSER@@IEAAXXZ
1006; protected: void __cdecl INET_PARSER::TerminateToken(char) __ptr64
1007?TerminateToken@INET_PARSER@@IEAAXD@Z
1008TsAddMetaData
1009; void __cdecl TsAddRefMetaData(void * __ptr64)
1010?TsAddRefMetaData@@YAXPEAX@Z
1011TsAllocate
1012TsAllocateEx
1013; unsigned long __cdecl TsApiAccessCheck(unsigned long)
1014?TsApiAccessCheck@@YAKK@Z
1015TsCacheDirectoryBlob
1016TsCacheFlush
1017TsCacheFlushDemux
1018TsCheckInCachedBlob
1019TsCheckInOrFree
1020TsCheckOutCachedBlob
1021TsCloseHandle
1022TsCloseURIFile
1023TsCreateETagFromHandle
1024TsCreateFile
1025TsCreateFileFromURI
1026TsDeCacheCachedBlob
1027TsDeleteOnClose
1028; int __cdecl TsDeleteUserToken(class CACHED_TOKEN * __ptr64)
1029?TsDeleteUserToken@@YAHPEAVCACHED_TOKEN@@@Z
1030TsDerefURIFile
1031TsDumpCacheToHtml
1032; public: int __cdecl IIS_SERVER_INSTANCE::TsEnumVirtualRoots(int (__cdecl*)(void * __ptr64,class MB * __ptr64,struct _VIRTUAL_ROOT * __ptr64),void * __ptr64,class MB * __ptr64) __ptr64
1033?TsEnumVirtualRoots@IIS_SERVER_INSTANCE@@QEAAHP6AHPEAXPEAVMB@@PEAU_VIRTUAL_ROOT@@@Z01@Z
1034TsExpireCachedBlob
1035TsFindMetaData
1036TsFlushFilesWithContext
1037TsFlushMetaCache
1038TsFlushURL
1039TsFree
1040; int __cdecl TsFreeDirectoryListing(class TSVC_CACHE const & __ptr64,class TS_DIRECTORY_HEADER * __ptr64)
1041?TsFreeDirectoryListing@@YAHAEBVTSVC_CACHE@@PEAVTS_DIRECTORY_HEADER@@@Z
1042TsFreeMetaData
1043; int __cdecl TsGetDirectoryListing(class TSVC_CACHE const & __ptr64,char const * __ptr64,void * __ptr64,class TS_DIRECTORY_HEADER * __ptr64 * __ptr64)
1044?TsGetDirectoryListing@@YAHAEBVTSVC_CACHE@@PEBDPEAXPEAPEAVTS_DIRECTORY_HEADER@@@Z
1045TsGetFileSecDesc
1046; int __cdecl TsGetSecretW(unsigned short * __ptr64,class BUFFER * __ptr64)
1047?TsGetSecretW@@YAHPEAGPEAVBUFFER@@@Z
1048; int __cdecl TsImpersonateUser(class CACHED_TOKEN * __ptr64)
1049?TsImpersonateUser@@YAHPEAVCACHED_TOKEN@@@Z
1050TsLastWriteTimeFromHandle
1051; class CACHED_TOKEN * __ptr64 __cdecl TsLogonUser(char * __ptr64,char * __ptr64,int * __ptr64,int * __ptr64,class IIS_SERVER_INSTANCE * __ptr64,class TCP_AUTHENT_INFO * __ptr64,char * __ptr64,union _LARGE_INTEGER * __ptr64,int * __ptr64)
1052?TsLogonUser@@YAPEAVCACHED_TOKEN@@PEAD0PEAH1PEAVIIS_SERVER_INSTANCE@@PEAVTCP_AUTHENT_INFO@@0PEAT_LARGE_INTEGER@@1@Z
1053TsMakeWidePath
1054; public: void __cdecl IIS_SERVER_INSTANCE::TsMirrorVirtualRoots(struct _INET_INFO_CONFIG_INFO * __ptr64) __ptr64
1055?TsMirrorVirtualRoots@IIS_SERVER_INSTANCE@@QEAAXPEAU_INET_INFO_CONFIG_INFO@@@Z
1056; int __cdecl TsProcessGatewayRequest(void * __ptr64,struct _IGATEWAY_REQUEST * __ptr64,int (__cdecl*)(void * __ptr64,unsigned long,unsigned char * __ptr64,unsigned long))
1057?TsProcessGatewayRequest@@YAHPEAXPEAU_IGATEWAY_REQUEST@@P6AH0KPEAEK@Z@Z
1058; public: int __cdecl IIS_SERVER_INSTANCE::TsReadVirtualRoots(struct _MD_CHANGE_OBJECT_A * __ptr64) __ptr64
1059?TsReadVirtualRoots@IIS_SERVER_INSTANCE@@QEAAHPEAU_MD_CHANGE_OBJECT_A@@@Z
1060; public: int __cdecl IIS_SERVER_INSTANCE::TsRecursiveEnumVirtualRoots(int (__cdecl*)(void * __ptr64,class MB * __ptr64,struct _VIRTUAL_ROOT * __ptr64),void * __ptr64,char * __ptr64,unsigned long,void * __ptr64,int) __ptr64
1061?TsRecursiveEnumVirtualRoots@IIS_SERVER_INSTANCE@@QEAAHP6AHPEAXPEAVMB@@PEAU_VIRTUAL_ROOT@@@Z0PEADK0H@Z
1062TsReferenceMetaData
1063; unsigned long __cdecl TsSetSecretW(unsigned short * __ptr64,unsigned short * __ptr64,unsigned long)
1064?TsSetSecretW@@YAKPEAG0K@Z
1065; public: int __cdecl IIS_SERVER_INSTANCE::TsSetVirtualRoots(struct _INET_INFO_CONFIG_INFO * __ptr64) __ptr64
1066?TsSetVirtualRoots@IIS_SERVER_INSTANCE@@QEAAHPEAU_INET_INFO_CONFIG_INFO@@@Z
1067; void * __ptr64 __cdecl TsTokenToHandle(class CACHED_TOKEN * __ptr64)
1068?TsTokenToHandle@@YAPEAXPEAVCACHED_TOKEN@@@Z
1069; void * __ptr64 __cdecl TsTokenToImpHandle(class CACHED_TOKEN * __ptr64)
1070?TsTokenToImpHandle@@YAPEAXPEAVCACHED_TOKEN@@@Z
1071Tsunami_Initialize
1072; private: unsigned long __cdecl IIS_SERVER_INSTANCE::UnbindHelper(struct _LIST_ENTRY * __ptr64) __ptr64
1073?UnbindHelper@IIS_SERVER_INSTANCE@@AEAAKPEAU_LIST_ENTRY@@@Z
1074; public: unsigned long __cdecl IIS_SERVER_INSTANCE::UnbindInstance(void) __ptr64
1075?UnbindInstance@IIS_SERVER_INSTANCE@@QEAAKXZ
1076; public: void __cdecl IIS_SSL_INFO::Unlock(void) __ptr64
1077?Unlock@IIS_SSL_INFO@@QEAAXXZ
1078; public: void __cdecl IIS_VROOT_TABLE::Unlock(void) __ptr64
1079?Unlock@IIS_VROOT_TABLE@@QEAAXXZ
1080; private: void __cdecl LOGGING::Unlock(void) __ptr64
1081?Unlock@LOGGING@@AEAAXXZ
1082; public: void __cdecl IIS_SERVER_INSTANCE::UnlockThis(void) __ptr64
1083?UnlockThis@IIS_SERVER_INSTANCE@@QEAAXXZ
1084; public: void __cdecl STORE_CHANGE_NOTIFIER::UnregisterStore(char * __ptr64,void (__cdecl*)(void * __ptr64),void * __ptr64) __ptr64
1085?UnregisterStore@STORE_CHANGE_NOTIFIER@@QEAAXPEADP6AXPEAX@Z1@Z
1086; private: unsigned long __cdecl IIS_SERVER_INSTANCE::UpdateBindingsHelper(int) __ptr64
1087?UpdateBindingsHelper@IIS_SERVER_INSTANCE@@AEAAKH@Z
1088; public: int __cdecl TCP_AUTHENT::UpdateClientCertFlags(unsigned long,int * __ptr64,unsigned char * __ptr64,unsigned long) __ptr64
1089?UpdateClientCertFlags@TCP_AUTHENT@@QEAAHKPEAHPEAEK@Z
1090; public: unsigned long __cdecl IIS_SERVER_INSTANCE::UpdateNormalBindings(void) __ptr64
1091?UpdateNormalBindings@IIS_SERVER_INSTANCE@@QEAAKXZ
1092; public: unsigned long __cdecl IIS_SERVER_INSTANCE::UpdateSecureBindings(void) __ptr64
1093?UpdateSecureBindings@IIS_SERVER_INSTANCE@@QEAAKXZ
1094; public: unsigned long __cdecl IIS_SERVICE::UpdateServiceStatus(unsigned long,unsigned long,unsigned long,unsigned long) __ptr64
1095?UpdateServiceStatus@IIS_SERVICE@@QEAAKKKKK@Z
1096; public: int __cdecl IIS_SSL_INFO::UseDSMapper(void) __ptr64
1097?UseDSMapper@IIS_SSL_INFO@@QEAAHXZ
1098; private: int __cdecl IIS_SERVER_CERT::UseProgrammaticPINEntry(class MB * __ptr64) __ptr64
1099?UseProgrammaticPINEntry@IIS_SERVER_CERT@@AEAAHPEAVMB@@@Z
1100; public: int __cdecl IIS_CTL::VerifySignature(void * __ptr64 * __ptr64,unsigned long,int * __ptr64) __ptr64
1101?VerifySignature@IIS_CTL@@QEAAHPEAPEAXKPEAH@Z
1102; public: int __cdecl TS_OPEN_FILE_INFO::WeakETag(void)const __ptr64
1103?WeakETag@TS_OPEN_FILE_INFO@@QEBAHXZ
1104; public: void __cdecl IIS_SERVER_INSTANCE::ZapInstanceMBTree(void) __ptr64
1105?ZapInstanceMBTree@IIS_SERVER_INSTANCE@@QEAAXXZ
1106; void __cdecl _TsValidateMetaCache(void)
1107?_TsValidateMetaCache@@YAXXZ
1108; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogCustomInformation)(void * __ptr64,unsigned long,struct _CUSTOM_LOG_DATA * __ptr64,char * __ptr64)
1109?m_ComLogCustomInformation@LOGGING@@0P6AKPEAXKPEAU_CUSTOM_LOG_DATA@@PEAD@ZEA DATA
1110; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogDllCleanUp)(void)
1111?m_ComLogDllCleanUp@LOGGING@@0P6AKXZEA DATA
1112; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogDllStartup)(void)
1113?m_ComLogDllStartup@LOGGING@@0P6AKXZEA DATA
1114; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogGetConfig)(void * __ptr64,struct _INETLOG_CONFIGURATIONA * __ptr64)
1115?m_ComLogGetConfig@LOGGING@@0P6AKPEAXPEAU_INETLOG_CONFIGURATIONA@@@ZEA DATA
1116; private: static void * __ptr64 (__cdecl* __ptr64 LOGGING::m_ComLogInitializeLog)(char const * __ptr64,char const * __ptr64,void * __ptr64)
1117?m_ComLogInitializeLog@LOGGING@@0P6APEAXPEBD0PEAX@ZEA DATA
1118; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogLogInformation)(void * __ptr64,struct _INETLOG_INFORMATION const * __ptr64)
1119?m_ComLogLogInformation@LOGGING@@0P6AKPEAXPEBU_INETLOG_INFORMATION@@@ZEA DATA
1120; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogNotifyChange)(void * __ptr64)
1121?m_ComLogNotifyChange@LOGGING@@0P6AKPEAX@ZEA DATA
1122; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogQueryExtraLogFields)(void * __ptr64,char * __ptr64,unsigned long * __ptr64)
1123?m_ComLogQueryExtraLogFields@LOGGING@@0P6AKPEAXPEADPEAK@ZEA DATA
1124; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogSetConfig)(void * __ptr64,struct _INETLOG_CONFIGURATIONA const * __ptr64)
1125?m_ComLogSetConfig@LOGGING@@0P6AKPEAXPEBU_INETLOG_CONFIGURATIONA@@@ZEA DATA
1126; private: static unsigned long (__cdecl* __ptr64 LOGGING::m_ComLogTerminateLog)(void * __ptr64)
1127?m_ComLogTerminateLog@LOGGING@@0P6AKPEAX@ZEA DATA
1128; private: static struct HINSTANCE__ * __ptr64 __ptr64 LOGGING::m_hComLogDLL
1129?m_hComLogDLL@LOGGING@@0PEAUHINSTANCE__@@EA DATA
1130; public: static unsigned __int64 IIS_SERVER_CERT::m_hFortezzaCSP
1131?m_hFortezzaCSP@IIS_SERVER_CERT@@2_KA DATA
1132; public: static void * __ptr64 __ptr64 IIS_SERVER_CERT::m_hFortezzaCtxt
1133?m_hFortezzaCtxt@IIS_SERVER_CERT@@2PEAXEA DATA
1134; private: static struct IUnknown * __ptr64 __ptr64 IIS_SERVICE::sm_MDNseObject
1135?sm_MDNseObject@IIS_SERVICE@@0PEAUIUnknown@@EA DATA
1136; private: static struct IUnknown * __ptr64 __ptr64 IIS_SERVICE::sm_MDObject
1137?sm_MDObject@IIS_SERVICE@@0PEAUIUnknown@@EA DATA
1138; private: static struct _LIST_ENTRY IIS_SERVICE::sm_ServiceInfoListHead
1139?sm_ServiceInfoListHead@IIS_SERVICE@@0U_LIST_ENTRY@@A DATA
1140; private: static struct _RTL_CRITICAL_SECTION IIS_SERVICE::sm_csLock
1141?sm_csLock@IIS_SERVICE@@0U_RTL_CRITICAL_SECTION@@A DATA
1142; private: static int IIS_SERVICE::sm_fInitialized
1143?sm_fInitialized@IIS_SERVICE@@0HA DATA
1144; private: static class ISRPC * __ptr64 __ptr64 IIS_SERVICE::sm_isrpc
1145?sm_isrpc@IIS_SERVICE@@0PEAVISRPC@@EA DATA
1146; public: static struct _TRACE_LOG * __ptr64 __ptr64 IIS_SERVER_INSTANCE::sm_pDbgRefTraceLog
1147?sm_pDbgRefTraceLog@IIS_SERVER_INSTANCE@@2PEAU_TRACE_LOG@@EA DATA
1148; public: static struct _TRACE_LOG * __ptr64 __ptr64 IIS_SERVICE::sm_pDbgRefTraceLog
1149?sm_pDbgRefTraceLog@IIS_SERVICE@@2PEAU_TRACE_LOG@@EA DATA
1150; int __cdecl uudecode(char * __ptr64,class BUFFER * __ptr64,unsigned long * __ptr64,int)
1151?uudecode@@YAHPEADPEAVBUFFER@@PEAKH@Z
1152; int __cdecl uuencode(unsigned char * __ptr64,unsigned long,class BUFFER * __ptr64,int)
1153?uuencode@@YAHPEAEKPEAVBUFFER@@H@Z
1154ConvertStringToRpc
1155ConvertUnicodeToAnsi
1156DoSynchronousReadFile
1157FreeRpcString
1158InetNtoa
1159InitCommonDlls
1160KludgeMultiSz
1161ReadRegString
1162ReadRegistryDwordA
1163ReadRegistryStr
1164ReadRegistryString
1165TcpSockRecv
1166TcpSockSend
1167TcpSockTest
1168TerminateCommonDlls
1169TsDumpCacheCounters
1170WaitForSocketWorker
1171WriteRegistryDwordA
1172WriteRegistryStringA
1173WriteRegistryStringW
lib/libc/mingw/lib64/infoctrs.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file INFOCTRS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY INFOCTRS.dll
8EXPORTS
9OpenINFOPerformanceData
10CollectINFOPerformanceData
11CloseINFOPerformanceData
lib/libc/mingw/lib64/infosoft.def created+49
......@@ -0,0 +1,49 @@
1;
2; Exports of file infosoft.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY infosoft.dll
8EXPORTS
9IIapp
10IIapp_mem
11IIbuf
12IIbuf_mem
13IIdb
14IIdb_mem
15DllCanUnloadNow
16DllGetClassObject
17IIword
18DllRegisterServer
19DllUnregisterServer
20IIGetAppElem
21IIdiagoff
22IIGetFM
23IIdiagon
24NTFMClose
25NTFMCompare
26NTFMCopy
27NTFMCreate
28NTFMDelete
29NTFMDestruct
30NTFMFlushMapping
31NTFMGetDirtyBit
32NTFMGetLength
33NTFMGetMapHandle
34NTFMGetMapping
35NTFMGetName
36NTFMGetPosition
37NTFMGetStatus
38NTFMLockMapping
39NTFMOpen
40NTFMRead
41NTFMReleaseMapHandle
42NTFMSeek
43NTFMSetDirtyBit
44NTFMSetLength
45NTFMSetMapping
46NTFMSetMutexProc
47NTFMSetName
48NTFMUnlockMapping
49NTFMWrite
lib/libc/mingw/lib64/initpki.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file INITPKI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY INITPKI.dll
8EXPORTS
9DllInstall
10DllRegisterServer
11DllUnregisterServer
12InitializePKI
lib/libc/mingw/lib64/ipmontr.def created+21
......@@ -0,0 +1,21 @@
1;
2; Exports of file IPMONTR.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IPMONTR.dll
8EXPORTS
9InitHelperDll
10IpmontrDeleteInfoBlockFromInterfaceInfo
11IpmontrDeleteProtocol
12IpmontrGetFriendlyNameFromIfIndex
13IpmontrGetFriendlyNameFromIfName
14IpmontrGetIfIndexFromFriendlyName
15IpmontrGetIfNameFromFriendlyName
16IpmontrGetInfoBlockFromGlobalInfo
17IpmontrGetInfoBlockFromInterfaceInfo
18IpmontrGetInterfaceType
19IpmontrInterfaceEnum
20IpmontrSetInfoBlockInGlobalInfo
21IpmontrSetInfoBlockInInterfaceInfo
lib/libc/mingw/lib64/iprop.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file IPROP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IPROP.dll
8EXPORTS
9FmtIdToPropStgName
10FreePropVariantArray
11PropStgNameToFmtId
12PropVariantClear
13PropVariantCopy
14StgCreatePropSetStg
15StgCreatePropStg
16StgOpenPropStg
lib/libc/mingw/lib64/iprtprio.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file iprtprio.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY iprtprio.dll
8EXPORTS
9ComputeRouteMetric
10GetPriorityInfo
11SetPriorityInfo
lib/libc/mingw/lib64/iprtrmgr.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file iprtrmgr.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY iprtrmgr.dll
8EXPORTS
9MapAddressToAdapter
10MapInterfaceToAdapter
11MapInterfaceToRouterIfType
12StartRouter
lib/libc/mingw/lib64/ipsecsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file IPSECSPD.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IPSECSPD.DLL
8EXPORTS
9SPDServiceMain
lib/libc/mingw/lib64/ipxsap.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file ipxsap.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ipxsap.dll
8EXPORTS
9RegisterProtocol
10ServiceMain
lib/libc/mingw/lib64/irclass.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file IRCLASS.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IRCLASS.DLL
8EXPORTS
9IrSIRClassCoInstaller
10IrSIRPortPropPageProvider
lib/libc/mingw/lib64/isatq.def created+159
......@@ -0,0 +1,159 @@
1;
2; Exports of file ISATQ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ISATQ.dll
8EXPORTS
9; public: __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>(char const * __ptr64,double,unsigned long,unsigned long,bool) __ptr64
10??0?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA@PEBDNKK_N@Z
11; public: __cdecl CDirMonitor::CDirMonitor(void) __ptr64
12??0CDirMonitor@@QEAA@XZ
13; public: __cdecl CDirMonitorEntry::CDirMonitorEntry(class CDirMonitorEntry const & __ptr64) __ptr64
14??0CDirMonitorEntry@@QEAA@AEBV0@@Z
15; public: __cdecl CDirMonitorEntry::CDirMonitorEntry(void) __ptr64
16??0CDirMonitorEntry@@QEAA@XZ
17; public: __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::~CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>(void) __ptr64
18??1?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA@XZ
19; public: __cdecl CDirMonitor::~CDirMonitor(void) __ptr64
20??1CDirMonitor@@QEAA@XZ
21; public: virtual __cdecl CDirMonitorEntry::~CDirMonitorEntry(void) __ptr64
22??1CDirMonitorEntry@@UEAA@XZ
23; public: class CDirMonitorEntry & __ptr64 __cdecl CDirMonitorEntry::operator=(class CDirMonitorEntry const & __ptr64) __ptr64
24??4CDirMonitorEntry@@QEAAAEAV0@AEBV0@@Z
25; const CDirMonitorEntry::`vftable'
26??_7CDirMonitorEntry@@6B@
27; public: long __cdecl CDirMonitor::AddRef(void) __ptr64
28?AddRef@CDirMonitor@@QEAAJXZ
29; public: virtual void __cdecl CDirMonitorEntry::AddRef(void) __ptr64
30?AddRef@CDirMonitorEntry@@UEAAXXZ
31; public: static void __cdecl CDirMonitor::AddRefRecord(class CDirMonitorEntry * __ptr64,int)
32?AddRefRecord@CDirMonitor@@SAXPEAVCDirMonitorEntry@@H@Z
33; public: unsigned long __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::Apply(enum LK_ACTION (__cdecl*)(class CDirMonitorEntry * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
34?Apply@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAAKP6A?AW4LK_ACTION@@PEAVCDirMonitorEntry@@PEAX@Z1W4LK_LOCKTYPE@@@Z
35; public: unsigned long __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::ApplyIf(enum LK_PREDICATE (__cdecl*)(class CDirMonitorEntry * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(class CDirMonitorEntry * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
36?ApplyIf@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAAKP6A?AW4LK_PREDICATE@@PEAVCDirMonitorEntry@@PEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
37; public: static unsigned long __cdecl CDirMonitor::CalcKeyHash(char const * __ptr64)
38?CalcKeyHash@CDirMonitor@@SAKPEBD@Z
39; public: int __cdecl CDirMonitor::Cleanup(void) __ptr64
40?Cleanup@CDirMonitor@@QEAAHXZ
41; protected: int __cdecl CDirMonitorEntry::Cleanup(void) __ptr64
42?Cleanup@CDirMonitorEntry@@IEAAHXZ
43; public: unsigned long __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::DeleteIf(enum LK_PREDICATE (__cdecl*)(class CDirMonitorEntry * __ptr64,void * __ptr64),void * __ptr64) __ptr64
44?DeleteIf@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAAKP6A?AW4LK_PREDICATE@@PEAVCDirMonitorEntry@@PEAX@Z1@Z
45; public: enum LK_RETCODE __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::DeleteKey(char const * __ptr64 const) __ptr64
46?DeleteKey@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA?AW4LK_RETCODE@@QEBD@Z
47; public: enum LK_RETCODE __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::DeleteRecord(class CDirMonitorEntry const * __ptr64) __ptr64
48?DeleteRecord@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA?AW4LK_RETCODE@@PEBVCDirMonitorEntry@@@Z
49; public: static void __cdecl CDirMonitor::DirMonitorCompletionFunction(void * __ptr64,unsigned long,unsigned long,struct _OVERLAPPED * __ptr64)
50?DirMonitorCompletionFunction@CDirMonitor@@SAXPEAXKKPEAU_OVERLAPPED@@@Z
51; public: static bool __cdecl CDirMonitor::EqualKeys(char const * __ptr64,char const * __ptr64)
52?EqualKeys@CDirMonitor@@SA_NPEBD0@Z
53; public: bool __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::EqualRange(char const * __ptr64 const,class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator & __ptr64,class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator & __ptr64) __ptr64
54?EqualRange@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA_NQEBDAEAViterator@1@1@Z
55; public: bool __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::Erase(class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator & __ptr64,class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator & __ptr64) __ptr64
56?Erase@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA_NAEAViterator@1@0@Z
57; public: bool __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::Erase(class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator & __ptr64) __ptr64
58?Erase@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA_NAEAViterator@1@@Z
59; public: static char const * __ptr64 __cdecl CDirMonitor::ExtractKey(class CDirMonitorEntry const * __ptr64)
60?ExtractKey@CDirMonitor@@SAPEBDPEBVCDirMonitorEntry@@@Z
61; public: bool __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::Find(char const * __ptr64 const,class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator & __ptr64) __ptr64
62?Find@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA_NQEBDAEAViterator@1@@Z
63; public: class CDirMonitorEntry * __ptr64 __cdecl CDirMonitor::FindEntry(char const * __ptr64) __ptr64
64?FindEntry@CDirMonitor@@QEAAPEAVCDirMonitorEntry@@PEBD@Z
65; public: enum LK_RETCODE __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::FindKey(char const * __ptr64 const,class CDirMonitorEntry * __ptr64 * __ptr64)const __ptr64
66?FindKey@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEBA?AW4LK_RETCODE@@QEBDPEAPEAVCDirMonitorEntry@@@Z
67; public: enum LK_RETCODE __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::FindRecord(class CDirMonitorEntry const * __ptr64)const __ptr64
68?FindRecord@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEBA?AW4LK_RETCODE@@PEBVCDirMonitorEntry@@@Z
69; protected: unsigned long __cdecl CDirMonitorEntry::GetBufferSize(void) __ptr64
70?GetBufferSize@CDirMonitorEntry@@IEAAKXZ
71; protected: void __cdecl CDirMonitorEntry::IOAddRef(void) __ptr64
72?IOAddRef@CDirMonitorEntry@@IEAAXXZ
73; protected: int __cdecl CDirMonitorEntry::IORelease(void) __ptr64
74?IORelease@CDirMonitorEntry@@IEAAHXZ
75; public: virtual int __cdecl CDirMonitorEntry::Init(unsigned long) __ptr64
76?Init@CDirMonitorEntry@@UEAAHK@Z
77; public: bool __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::Insert(class CDirMonitorEntry const * __ptr64,class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator & __ptr64,bool) __ptr64
78?Insert@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA_NPEBVCDirMonitorEntry@@AEAViterator@1@_N@Z
79; public: enum LK_RETCODE __cdecl CDirMonitor::InsertEntry(class CDirMonitorEntry * __ptr64) __ptr64
80?InsertEntry@CDirMonitor@@QEAA?AW4LK_RETCODE@@PEAVCDirMonitorEntry@@@Z
81; public: enum LK_RETCODE __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::InsertRecord(class CDirMonitorEntry const * __ptr64,bool) __ptr64
82?InsertRecord@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA?AW4LK_RETCODE@@PEBVCDirMonitorEntry@@_N@Z
83; public: void __cdecl CDirMonitor::Lock(void) __ptr64
84?Lock@CDirMonitor@@QEAAXXZ
85; public: int __cdecl CDirMonitor::Monitor(class CDirMonitorEntry * __ptr64,char const * __ptr64,int,unsigned long) __ptr64
86?Monitor@CDirMonitor@@QEAAHPEAVCDirMonitorEntry@@PEBDHK@Z
87; public: long __cdecl CDirMonitor::Release(void) __ptr64
88?Release@CDirMonitor@@QEAAJXZ
89; public: virtual int __cdecl CDirMonitorEntry::Release(void) __ptr64
90?Release@CDirMonitorEntry@@UEAAHXZ
91; public: enum LK_RETCODE __cdecl CDirMonitor::RemoveEntry(class CDirMonitorEntry * __ptr64) __ptr64
92?RemoveEntry@CDirMonitor@@QEAA?AW4LK_RETCODE@@PEAVCDirMonitorEntry@@@Z
93; protected: int __cdecl CDirMonitorEntry::RequestNotification(void) __ptr64
94?RequestNotification@CDirMonitorEntry@@IEAAHXZ
95; protected: int __cdecl CDirMonitorEntry::ResetDirectoryHandle(void) __ptr64
96?ResetDirectoryHandle@CDirMonitorEntry@@IEAAHXZ
97; private: void __cdecl CDirMonitor::SerialComplLock(void) __ptr64
98?SerialComplLock@CDirMonitor@@AEAAXXZ
99; private: void __cdecl CDirMonitor::SerialComplUnlock(void) __ptr64
100?SerialComplUnlock@CDirMonitor@@AEAAXXZ
101; protected: int __cdecl CDirMonitorEntry::SetBufferSize(unsigned long) __ptr64
102?SetBufferSize@CDirMonitorEntry@@IEAAHK@Z
103; public: void __cdecl CDirMonitor::Unlock(void) __ptr64
104?Unlock@CDirMonitor@@QEAAXXZ
105; private: static enum LK_ACTION __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::_Action(void const * __ptr64,void * __ptr64)
106?_Action@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@CA?AW4LK_ACTION@@PEBXPEAX@Z
107; private: static void __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::_AddRefRecord(void const * __ptr64,int)
108?_AddRefRecord@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@CAXPEBXH@Z
109; private: static unsigned long __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::_CalcKeyHash(unsigned __int64)
110?_CalcKeyHash@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@CAK_K@Z
111; private: static bool __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::_EqualKeys(unsigned __int64,unsigned __int64)
112?_EqualKeys@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@CA_N_K0@Z
113; private: static unsigned __int64 const __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::_ExtractKey(void const * __ptr64)
114?_ExtractKey@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@CA?B_KPEBX@Z
115; private: static enum LK_PREDICATE __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::_Pred(void const * __ptr64,void * __ptr64)
116?_Pred@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@CA?AW4LK_PREDICATE@@PEBXPEAX@Z
117; public: class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::begin(void) __ptr64
118?begin@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA?AViterator@1@XZ
119; public: class CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::iterator __cdecl CTypedHashTable<class CDirMonitor,class CDirMonitorEntry,char const * __ptr64,class CLKRHashTable>::end(void) __ptr64
120?end@?$CTypedHashTable@VCDirMonitor@@VCDirMonitorEntry@@PEBDVCLKRHashTable@@@@QEAA?AViterator@1@XZ
121AtqAddAsyncHandle
122AtqBandwidthGetInfo
123AtqBandwidthSetInfo
124AtqClearStatistics
125AtqCloseEndpoint
126AtqCloseFileHandle
127AtqCloseSocket
128AtqContextSetInfo
129AtqCreateBandwidthInfo
130AtqCreateEndpoint
131AtqEndpointGetInfo
132AtqEndpointSetInfo
133AtqFreeBandwidthInfo
134AtqFreeContext
135AtqGetAcceptExAddrs
136AtqGetCapTraceInfo
137AtqGetCompletionPort
138AtqGetInfo
139AtqGetStatistics
140AtqInitialize
141AtqPostCompletionStatus
142AtqReadDirChanges
143AtqReadFile
144AtqReadSocket
145AtqSetInfo
146AtqSetSocketOption
147AtqStartEndpoint
148AtqStopAndCloseEndpoint
149AtqStopEndpoint
150AtqSyncWsaSend
151AtqTerminate
152AtqTransmitFile
153AtqTransmitFileEx
154AtqWriteFile
155AtqWriteSocket
156GetIISCapTraceFlag
157GetIISCapTraceLoggerHandle
158IISInitializeCapTrace
159SetIISCapTraceFlag
lib/libc/mingw/lib64/iscomlog.def created+32
......@@ -0,0 +1,32 @@
1;
2; Exports of file ISCOMLOG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ISCOMLOG.dll
8EXPORTS
9; public: __cdecl LOGGING::LOGGING(class LOGGING const & __ptr64) __ptr64
10??0LOGGING@@QEAA@AEBV0@@Z
11; public: class LOGGING & __ptr64 __cdecl LOGGING::operator=(class LOGGING const & __ptr64) __ptr64
12??4LOGGING@@QEAAAEAV0@AEBV0@@Z
13ComLogCustomInformation
14ComLogDllCleanUp
15ComLogDllStartup
16ComLogGetConfig
17ComLogInitializeLog
18ComLogLogInformation
19ComLogNotifyChange
20ComLogQueryExtraLogFields
21ComLogSetConfig
22ComLogTerminateLog
23; private: void __cdecl LOGGING::LockExclusive(void) __ptr64
24?LockExclusive@LOGGING@@AEAAXXZ
25; private: void __cdecl LOGGING::LockShared(void) __ptr64
26?LockShared@LOGGING@@AEAAXXZ
27; private: void __cdecl LOGGING::Unlock(void) __ptr64
28?Unlock@LOGGING@@AEAAXXZ
29DllCanUnloadNow
30DllGetClassObject
31DllRegisterServer
32DllUnregisterServer
lib/libc/mingw/lib64/isign32.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file isignup2.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY isignup2.dll
8EXPORTS
9AutoDialLogon
10AutoDialLogonA
11AutoDialLogonW
12AutoDialSignup
13AutoDialSignupA
14AutoDialSignupW
15IEAKProcessISP
16IEAKProcessISPA
17IEAKProcessISPW
18Signup
lib/libc/mingw/lib64/iyuv_32.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file IYUV_32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IYUV_32.dll
8EXPORTS
9AboutDialogProc
10DllMain
11DriverDialogProc
12DriverProc
lib/libc/mingw/lib64/jet500.def created+93
......@@ -0,0 +1,93 @@
1;
2; Exports of file JET500.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY JET500.dll
8EXPORTS
9JetAddColumn
10JetAttachDatabase
11JetBackup
12JetBeginExternalBackup
13JetBeginSession
14JetBeginTransaction
15JetCloseDatabase
16JetCloseFile
17JetCloseTable
18JetCommitTransaction
19JetCompact
20JetComputeStats
21JetCreateDatabase
22JetCreateIndex
23JetCreateLink
24JetCreateQuery
25JetCreateTable
26JetCreateTableColumnIndex
27JetDBUtilities
28JetDelete
29JetDeleteColumn
30JetDeleteIndex
31JetDeleteTable
32JetDetachDatabase
33JetDupCursor
34JetDupSession
35JetEndExternalBackup
36JetEndSession
37JetExecuteSql
38JetExternalRestore
39JetGetAttachInfo
40JetGetBookmark
41JetGetChecksum
42JetGetColumnInfo
43JetGetCounter
44JetGetCurrentIndex
45JetGetCursorInfo
46JetGetDatabaseInfo
47JetGetIndexInfo
48JetGetLogInfo
49JetGetObjectInfo
50JetGetObjidFromName
51JetGetQueryParameterInfo
52JetGetRecordPosition
53JetGetSystemParameter
54JetGetTableColumnInfo
55JetGetTableIndexInfo
56JetGetTableInfo
57JetGetVersion
58JetGotoBookmark
59JetGotoPosition
60JetIdle
61JetIndexRecordCount
62JetInit
63JetMakeKey
64JetMove
65JetOpenDatabase
66JetOpenFile
67JetOpenQueryDef
68JetOpenTable
69JetOpenTempTable
70JetOpenTempTable2
71JetPrepareUpdate
72JetReadFile
73JetResetCounter
74JetRestore
75JetRestore2
76JetRetrieveColumn
77JetRetrieveColumns
78JetRetrieveKey
79JetRetrieveQoSql
80JetRollback
81JetSeek
82JetSetAccess
83JetSetColumn
84JetSetColumns
85JetSetCurrentIndex
86JetSetCurrentIndex2
87JetSetIndexRange
88JetSetQoSql
89JetSetSystemParameter
90JetTerm
91JetTerm2
92JetTruncateLog
93JetUpdate
lib/libc/mingw/lib64/kd1394.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file KD1394.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY KD1394.dll
8EXPORTS
9KdD0Transition
10KdD3Transition
11KdDebuggerInitialize0
12KdDebuggerInitialize1
13KdReceivePacket
14KdRestore
15KdSave
16KdSendPacket
lib/libc/mingw/lib64/kerberos.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file Kerberos.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY Kerberos.dll
8EXPORTS
9SpInitialize
10KerbDomainChangeCallback
11SpLsaModeInitialize
12SpUserModeInitialize
13KerbCreateTokenFromTicket
14KerbFree
15KerbIsInitialized
16KerbKdcCallBack
17KerbMakeKdcCall
18SpInstanceInit
lib/libc/mingw/lib64/lmmib2.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file lmmib2.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY lmmib2.dll
8EXPORTS
9SnmpExtensionClose
10SnmpExtensionInit
11SnmpExtensionQuery
12SnmpExtensionTrap
lib/libc/mingw/lib64/localspl.def created+81
......@@ -0,0 +1,81 @@
1;
2; Exports of file LocalSpl.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LocalSpl.dll
8EXPORTS
9ClosePrintProcessor
10ControlPrintProcessor
11DllMain
12EnumPrintProcessorDatatypesW
13GetPrintProcessorCapabilities
14InitializePrintMonitor
15InitializePrintProvidor
16LclIsSessionZero
17LclPromptUIPerSessionUser
18OpenPrintProcessor
19PrintDocumentOnPrintProcessor
20PrintProcLogEvent
21SplAddForm
22SplAddMonitor
23SplAddPort
24SplAddPortEx
25SplAddPrintProcessor
26SplAddPrinter
27SplAddPrinterDriverEx
28SplBroadcastChange
29SplClosePrinter
30SplCloseSpooler
31SplConfigChange
32SplCopyFileEvent
33SplCopyNumberOfFiles
34SplCreateSpooler
35SplDeleteForm
36SplDeleteMonitor
37SplDeletePort
38SplDeletePrintProcCacheData
39SplDeletePrintProcessor
40SplDeletePrinter
41SplDeletePrinterDriverEx
42SplDeletePrinterKey
43SplDeleteSpooler
44SplDriverEvent
45SplEnumForms
46SplEnumMonitors
47SplEnumPorts
48SplEnumPrintProcCacheData
49SplEnumPrintProcessorDatatypes
50SplEnumPrintProcessors
51SplEnumPrinterDataEx
52SplEnumPrinterKey
53SplEnumPrinters
54SplGetDriverDir
55SplGetForm
56SplGetPrintProcCacheData
57SplGetPrintProcessorDirectory
58SplGetPrinter
59SplGetPrinterData
60SplGetPrinterDataEx
61SplGetPrinterDriver
62SplGetPrinterDriverDirectory
63SplGetPrinterDriverEx
64SplGetPrinterExtra
65SplGetPrinterExtraEx
66SplLoadLibraryTheCopyFileModule
67SplLogEventExternal
68SplLogWmiTraceEventExternal
69SplMonitorIsInstalled
70SplOpenPrinter
71SplPowerEvent
72SplReenumeratePorts
73SplResetPrinter
74SplSetForm
75SplSetPrintProcCacheData
76SplSetPrinter
77SplSetPrinterData
78SplSetPrinterDataEx
79SplSetPrinterExtra
80SplSetPrinterExtraEx
81SplXcvData
lib/libc/mingw/lib64/log.def created+28
......@@ -0,0 +1,28 @@
1;
2; Exports of file LOG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LOG.dll
8EXPORTS
9DllMain
10LogA
11LogBegin
12LogDeleteOnNextInit
13LogDirectA
14LogDirectW
15LogEnd
16LogIfA
17LogIfW
18LogLineA
19LogLineW
20LogReInitA
21LogReInitW
22LogSetErrorDest
23LogSetVerboseBitmap
24LogSetVerboseLevel
25LogTitleA
26LogTitleW
27LogW
28SuppressAllLogPopups
lib/libc/mingw/lib64/lonsint.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file LONSINT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LONSINT.dll
8EXPORTS
9IISGetDefaultDomainName
10IISLogon32Initialize
11IISLogonDigestUserA
12IISLogonNetUserA
13IISLogonNetUserW
14IISLogonPassportUserW
15IISNetUserCookieA
lib/libc/mingw/lib64/lpk.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file LPK.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LPK.dll
8EXPORTS
9LpkInitialize
10LpkTabbedTextOut
11LpkDllInitialize
12LpkDrawTextEx
13LpkEditControl DATA
14LpkExtTextOut
15LpkGetCharacterPlacement
16LpkGetTextExtentExPoint
17LpkPSMTextOut
18LpkUseGDIWidthCache
19ftsWordBreak
lib/libc/mingw/lib64/lprhelp.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file LPRHELP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LPRHELP.dll
8EXPORTS
9CancelJob
10CloseLPR
11EndJob
12GetLongQueue
13GetShortQueue
14InitiateConnection
15OpenLPR
16PrintWaitingJobs
17SetLPRTimeouts
18StartJob
19WriteJobData
lib/libc/mingw/lib64/lsasrv.def created+141
......@@ -0,0 +1,141 @@
1;
2; Exports of file LSASRV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY LSASRV.dll
8EXPORTS
9LsaIAddNameToLogonSession
10LsaIGetNameFromLuid
11LsaISetPackageAttrInLogonSession
12DsRolerDcAsDc
13DsRolerDcAsReplica
14DsRolerDemoteDc
15DsRolerGetDcOperationProgress
16DsRolerGetDcOperationResults
17LsaIAdtAuditingEnabledByCategory
18LsaIAllocateHeap
19LsaIAllocateHeapZero
20LsaIAuditAccountLogon
21LsaIAuditAccountLogonEx
22LsaIAuditKdcEvent
23LsaIAuditKerberosLogon
24LsaIAuditLogonUsingExplicitCreds
25LsaIAuditNotifyPackageLoad
26LsaIAuditPasswordAccessEvent
27LsaIAuditReplay
28LsaIAuditSamEvent
29LsaICallPackage
30LsaICallPackageEx
31LsaICallPackagePassthrough
32LsaICancelNotification
33LsaIChangeSecretCipherKey
34LsaICryptProtectData
35LsaICryptUnprotectData
36LsaIDereferenceCredHandle
37LsaIDsNotifiedObjectChange
38LsaIEnumerateSecrets
39LsaIEqualLogonProcessName
40LsaIFilterNamespace
41LsaIFilterSids
42LsaIForestTrustFindMatch
43LsaIFreeForestTrustInfo
44LsaIFreeHeap
45LsaIFreeReturnBuffer
46LsaIFree_LSAI_PRIVATE_DATA
47LsaIFree_LSAI_SECRET_ENUM_BUFFER
48LsaIFree_LSAPR_ACCOUNT_ENUM_BUFFER
49LsaIFree_LSAPR_CR_CIPHER_VALUE
50LsaIFree_LSAPR_POLICY_DOMAIN_INFORMATION
51LsaIFree_LSAPR_POLICY_INFORMATION
52LsaIFree_LSAPR_PRIVILEGE_ENUM_BUFFER
53LsaIFree_LSAPR_PRIVILEGE_SET
54LsaIFree_LSAPR_REFERENCED_DOMAIN_LIST
55LsaIFree_LSAPR_SR_SECURITY_DESCRIPTOR
56LsaIFree_LSAPR_TRANSLATED_NAMES
57LsaIFree_LSAPR_TRANSLATED_SIDS
58LsaIFree_LSAPR_TRUSTED_DOMAIN_INFO
59LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER
60LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER_EX
61LsaIFree_LSAPR_TRUST_INFORMATION
62LsaIFree_LSAPR_UNICODE_STRING
63LsaIFree_LSAPR_UNICODE_STRING_BUFFER
64LsaIFree_LSAP_SITENAME_INFO
65LsaIFree_LSAP_SITE_INFO
66LsaIFree_LSAP_SUBNET_INFO
67LsaIFree_LSAP_UPN_SUFFIXES
68LsaIFree_LSA_FOREST_TRUST_COLLISION_INFORMATION
69LsaIFree_LSA_FOREST_TRUST_INFORMATION
70LsaIGetBootOption
71LsaIGetCallInfo
72LsaIGetForestTrustInformation
73LsaIGetLogonGuid
74LsaIGetNbAndDnsDomainNames
75LsaIGetSerialNumberPolicy
76LsaIGetSiteName
77LsaIHealthCheck
78LsaIImpersonateClient
79LsaIIsDomainWithinForest
80LsaIIsDsPaused
81LsaIKerberosRegisterTrustNotification
82LsaILookupWellKnownName
83LsaINoMoreWin2KDomain
84LsaINotifyChangeNotification
85LsaINotifyGCStatusChange
86LsaINotifyNetlogonParametersChangeW
87LsaINotifyPasswordChanged
88LsaIOpenPolicyTrusted
89LsaIQueryForestTrustInfo
90LsaIQueryInformationPolicyTrusted
91LsaIQuerySiteInfo
92LsaIQuerySubnetInfo
93LsaIQueryUpnSuffixes
94LsaIReferenceCredHandle
95LsaIRegisterNotification
96LsaIRegisterPolicyChangeNotificationCallback
97LsaISafeMode
98LsaISamIndicatedDsStarted
99LsaISetBootOption
100LsaISetClientDnsHostName
101LsaISetLogonGuidInLogonSession
102LsaISetSerialNumberPolicy
103LsaISetTimesSecret
104LsaISetTokenDacl
105LsaISetupWasRun
106LsaIUnregisterAllPolicyChangeNotificationCallback
107LsaIUnregisterPolicyChangeNotificationCallback
108LsaIUpdateForestTrustInformation
109LsaIWriteAuditEvent
110LsapAuOpenSam
111LsapCheckBootMode
112LsapDsDebugInitialize
113LsapDsInitializeDsStateInfo
114LsapDsInitializePromoteInterface
115LsapInitLsa
116LsarClose
117LsarCreateSecret
118LsarDelete
119LsarEnumerateAccounts
120LsarEnumeratePrivilegesAccount
121LsarEnumerateTrustedDomains
122LsarEnumerateTrustedDomainsEx
123LsarGetSystemAccessAccount
124LsarLookupPrivilegeName
125LsarLookupSids
126LsarLookupSids2
127LsarOpenAccount
128LsarOpenPolicy
129LsarOpenSecret
130LsarOpenTrustedDomain
131LsarQueryDomainInformationPolicy
132LsarQueryInfoTrustedDomain
133LsarQueryInformationPolicy
134LsarQuerySecret
135LsarQuerySecurityObject
136LsarQueryTrustedDomainInfoByName
137LsarSetInformationPolicy
138LsarSetSecret
139LsarSetSecurityObject
140LsarSetTrustedDomainInfoByName
141ServiceInit
lib/libc/mingw/lib64/mag_hook.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file Mag_Hook.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY Mag_Hook.dll
8EXPORTS
9FakeCursorMove
10GetCursorHack
11GetPopupInfo
12InstallEventHook
13SetZoomRect
lib/libc/mingw/lib64/mcastmib.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file MCASTMIB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCASTMIB.dll
8EXPORTS
9SnmpExtensionInit
10SnmpExtensionQuery
11SnmpExtensionTrap
lib/libc/mingw/lib64/mcd32.def created+52
......@@ -0,0 +1,52 @@
1;
2; Exports of file MCD32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCD32.dll
8EXPORTS
9MCDAddState
10MCDAddStateStruct
11MCDAlloc
12MCDAllocBuffers
13MCDBeginState
14MCDBindContext
15MCDClear
16MCDCopyPixels
17MCDCreateContext
18MCDCreateTexture
19MCDDeleteContext
20MCDDeleteTexture
21MCDDescribeLayerPlane
22MCDDescribeMcdLayerPlane
23MCDDescribeMcdPixelFormat
24MCDDescribePixelFormat
25MCDDestroyWindow
26MCDDrawPixels
27MCDFlushState
28MCDFree
29MCDGetBuffers
30MCDGetDriverInfo
31MCDGetTextureFormats
32MCDLock
33MCDPixelMap
34MCDProcessBatch
35MCDProcessBatch2
36MCDQueryMemStatus
37MCDReadPixels
38MCDReadSpan
39MCDSetLayerPalette
40MCDSetScissorRect
41MCDSetViewport
42MCDSwap
43MCDSwapMultiple
44MCDSync
45MCDTextureKey
46MCDTextureStatus
47MCDUnlock
48MCDUpdateSubTexture
49MCDUpdateTexturePalette
50MCDUpdateTexturePriority
51MCDUpdateTextureState
52MCDWriteSpan
lib/libc/mingw/lib64/mcdsrv32.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file MCDSRV32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCDSRV32.dll
8EXPORTS
9MCDEngEscFilter
10MCDEngInit
11MCDEngInitEx
12MCDEngSetMemStatus
13MCDEngUninit
lib/libc/mingw/lib64/mchgrcoi.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file mchgrcoi.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mchgrcoi.dll
8EXPORTS
9MchgrClassCoInstaller
lib/libc/mingw/lib64/mciavi32.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file MCIAVI32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCIAVI32.dll
8EXPORTS
9DriverProc
10KeyboardHookProc
lib/libc/mingw/lib64/mciole32.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file MCIOLE32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCIOLE32.dll
8EXPORTS
9DllLoadFromStream
10DllCreateFromClip
11DllCreateLinkFromClip
12DllCreateFromTemplate
13DllCreate
14DllCreateFromFile
15DllCreateLinkFromFile
16GetMessageHook
17OleQueryObjPos
18InstallHook
19RemoveHook
lib/libc/mingw/lib64/mciqtz32.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file MCIQTZ32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MCIQTZ32.dll
8EXPORTS
9DriverProc
10MCIEntry32
lib/libc/mingw/lib64/mfc42.def created+20
......@@ -0,0 +1,20 @@
1;
2; Exports of file MFC42.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MFC42.dll
8EXPORTS
9DllGetClassObject
10DllCanUnloadNow
11DllRegisterServer
12DllUnregisterServer
13; public: static struct CRuntimeClass const CCachedDataPathProperty::classCCachedDataPathProperty
14?classCCachedDataPathProperty@CCachedDataPathProperty@@2UCRuntimeClass@@B DATA
15; public: static struct CRuntimeClass const CDataPathProperty::classCDataPathProperty
16?classCDataPathProperty@CDataPathProperty@@2UCRuntimeClass@@B DATA
17AfxFreeLibrary
18AfxLoadLibrary
19AfxLockGlobals
20AfxUnlockGlobals
lib/libc/mingw/lib64/mfc42u.def created+20
......@@ -0,0 +1,20 @@
1;
2; Exports of file MFC42u.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MFC42u.dll
8EXPORTS
9DllGetClassObject
10DllCanUnloadNow
11DllRegisterServer
12DllUnregisterServer
13; public: static struct CRuntimeClass const CCachedDataPathProperty::classCCachedDataPathProperty
14?classCCachedDataPathProperty@CCachedDataPathProperty@@2UCRuntimeClass@@B DATA
15; public: static struct CRuntimeClass const CDataPathProperty::classCDataPathProperty
16?classCDataPathProperty@CDataPathProperty@@2UCRuntimeClass@@B DATA
17AfxFreeLibrary
18AfxLoadLibrary
19AfxLockGlobals
20AfxUnlockGlobals
lib/libc/mingw/lib64/migism.def created+257
......@@ -0,0 +1,257 @@
1;
2; Exports of file MIGISM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MIGISM.dll
8EXPORTS
9DllMain
10IsmAbandonObjectIdOnCollision
11IsmAbandonObjectOnCollision
12IsmAbortApplyObjectEnum
13IsmAbortComponentEnum
14IsmAbortObjectAttributeEnum
15IsmAbortObjectEnum
16IsmAbortObjectOperationEnum
17IsmAbortObjectPropertyEnum
18IsmAbortObjectTypeIdEnum
19IsmAbortObjectWithAttributeEnum
20IsmAbortObjectWithOperationEnum
21IsmAbortObjectWithPropertyEnum
22IsmAbortPersistentObjectEnum
23IsmAbortScopeEnum
24IsmAbortTransportEnum
25IsmAcquireObjectEx
26IsmAddComponentAlias
27IsmAddControlFile
28IsmAddPropertyDataToObject
29IsmAddPropertyDataToObjectId
30IsmAddPropertyToObject
31IsmAddPropertyToObjectId
32IsmAddToPhysicalEnum
33IsmAllocEnvironmentVariableList
34IsmAppendEnvironmentMultiSz
35IsmAppendEnvironmentString
36IsmAreObjectsIdentical
37IsmCanWriteRollbackJournal
38IsmClearAbandonObjectIdOnCollision
39IsmClearAbandonObjectOnCollision
40IsmClearApplyOnObject
41IsmClearApplyOnObjectId
42IsmClearAttributeOnObject
43IsmClearAttributeOnObjectId
44IsmClearNonCriticalFlagOnObject
45IsmClearNonCriticalFlagOnObjectId
46IsmClearOperationOnObject
47IsmClearOperationOnObjectId
48IsmClearPersistenceOnObject
49IsmClearPersistenceOnObjectId
50IsmConvertObjectContentToAnsi
51IsmConvertObjectContentToUnicode
52IsmConvertObjectToMultiSz
53IsmCreateParsedPattern
54IsmCreateScope
55IsmCurrentlyExecuting
56IsmDeleteEnvironmentVariable
57IsmDeleteScope
58IsmDeselectScope
59IsmDestroyGlobalVariable
60IsmDestroyObjectHandle
61IsmDestroyObjectString
62IsmDestroyParsedPattern
63IsmDoesObjectExist
64IsmDoesRollbackDataExist
65IsmEnumFirstApplyObject
66IsmEnumFirstComponent
67IsmEnumFirstDestinationObjectEx
68IsmEnumFirstObjectAttribute
69IsmEnumFirstObjectAttributeById
70IsmEnumFirstObjectOperation
71IsmEnumFirstObjectOperationById
72IsmEnumFirstObjectProperty
73IsmEnumFirstObjectPropertyById
74IsmEnumFirstObjectTypeId
75IsmEnumFirstObjectWithAttribute
76IsmEnumFirstObjectWithOperation
77IsmEnumFirstObjectWithProperty
78IsmEnumFirstPersistentObject
79IsmEnumFirstScope
80IsmEnumFirstSourceObjectEx
81IsmEnumFirstTransport
82IsmEnumNextApplyObject
83IsmEnumNextComponent
84IsmEnumNextObject
85IsmEnumNextObjectAttribute
86IsmEnumNextObjectOperation
87IsmEnumNextObjectProperty
88IsmEnumNextObjectTypeId
89IsmEnumNextObjectWithAttribute
90IsmEnumNextObjectWithOperation
91IsmEnumNextObjectWithProperty
92IsmEnumNextPersistentObject
93IsmEnumNextScope
94IsmEnumNextTransport
95IsmExecute
96IsmExecuteFunction
97IsmExecuteHooks
98IsmFilterObject
99IsmFreeConvertedObjectContent
100IsmFreeCurrentUserData
101IsmFreeEnvironmentVariableList
102IsmGetActiveScopeId
103IsmGetActiveScopeName
104IsmGetActiveScopeNameRenamed
105IsmGetAttributeGroup
106IsmGetAttributeName
107IsmGetControlFile
108IsmGetCurrentSidString
109IsmGetEnvironmentCallback
110IsmGetEnvironmentData
111IsmGetEnvironmentMultiSz
112IsmGetEnvironmentString
113IsmGetEnvironmentValue
114IsmGetGlobalVariable
115IsmGetMappedUserData
116IsmGetObjectIdFromName
117IsmGetObjectOperationData
118IsmGetObjectOperationDataById
119IsmGetObjectTypeId
120IsmGetObjectTypeName
121IsmGetObjectTypePriority
122IsmGetObjectsStatistics
123IsmGetOnlineUserData
124IsmGetOperationGroup
125IsmGetOperationName
126IsmGetOsVersionInfo
127IsmGetPropertyData
128IsmGetPropertyFromObject
129IsmGetPropertyFromObjectId
130IsmGetPropertyGroup
131IsmGetPropertyName
132IsmGetRealPlatform
133IsmGetScopeObjectTypeName
134IsmGetScopeProperty
135IsmGetTempDirectory
136IsmGetTempFile
137IsmGetTempStorage
138IsmGetTransportVariable
139IsmGetVirtualPlatform
140IsmHookEnumeration
141IsmInitialize
142IsmIsApplyObject
143IsmIsApplyObjectId
144IsmIsAttributeSetOnObject
145IsmIsAttributeSetOnObjectId
146IsmIsComponentSelected
147IsmIsEnvironmentFlagSet
148IsmIsNonCriticalObject
149IsmIsNonCriticalObjectId
150IsmIsObjectAbandonedOnCollision
151IsmIsObjectHandleLeafOnly
152IsmIsObjectHandleNodeOnly
153IsmIsObjectIdAbandonedOnCollision
154IsmIsOperationSetOnObject
155IsmIsOperationSetOnObjectId
156IsmIsPersistentObject
157IsmIsPersistentObjectId
158IsmIsPropertySetOnObject
159IsmIsPropertySetOnObjectId
160IsmIsScopeOnline
161IsmIsScopeSelected
162IsmIsSystemScopeSelected
163IsmLoad
164IsmLockAttribute
165IsmLockObject
166IsmLockObjectId
167IsmLockOperation
168IsmLockProperty
169IsmMakeApplyObject
170IsmMakeApplyObjectId
171IsmMakeNonCriticalObject
172IsmMakeNonCriticalObjectId
173IsmMakePersistentObject
174IsmMakePersistentObjectId
175IsmParsedPatternMatch
176IsmParsedPatternMatchEx
177IsmPreserveJournal
178IsmProhibitPhysicalEnum
179IsmQueueEnumeration
180IsmRecordDelayedOperation
181IsmRecordOperation
182IsmRecoverEfsFile
183IsmRegisterAttribute
184IsmRegisterCompareCallback
185IsmRegisterDynamicExclusion
186IsmRegisterGlobalApplyCallback
187IsmRegisterGlobalFilterCallback
188IsmRegisterObjectType
189IsmRegisterOperation
190IsmRegisterOperationApplyCallback
191IsmRegisterOperationData
192IsmRegisterOperationFilterCallback
193IsmRegisterPhysicalAcquireHook
194IsmRegisterPostEnumerationCallback
195IsmRegisterPreEnumerationCallback
196IsmRegisterProgressBarCallback
197IsmRegisterProgressSlice
198IsmRegisterProperty
199IsmRegisterPropertyData
200IsmRegisterRestoreCallback
201IsmRegisterScopeChangeCallback
202IsmRegisterStaticExclusion
203IsmRegisterTransport
204IsmRegisterTypePostEnumerationCallback
205IsmRegisterTypePreEnumerationCallback
206IsmReleaseMemory
207IsmReleaseObject
208IsmRemoveAllUserSuppliedComponents
209IsmRemovePhysicalObject
210IsmRemovePropertyData
211IsmRemovePropertyFromObject
212IsmRemovePropertyFromObjectId
213IsmReplacePhysicalObject
214IsmResumeLoad
215IsmResumeSave
216IsmRollback
217IsmSave
218IsmSelectComponent
219IsmSelectMasterGroup
220IsmSelectPreferredAlias
221IsmSelectScope
222IsmSelectTransport
223IsmSendMessageToApp
224IsmSetAttributeOnObject
225IsmSetAttributeOnObjectId
226IsmSetCancel
227IsmSetDelayedOperationsCommand
228IsmSetEnvironmentCallback
229IsmSetEnvironmentData
230IsmSetEnvironmentFlag
231IsmSetEnvironmentMultiSz
232IsmSetEnvironmentString
233IsmSetEnvironmentValue
234IsmSetOperationOnObject
235IsmSetOperationOnObject2
236IsmSetOperationOnObjectId
237IsmSetOperationOnObjectId2
238IsmSetPlatform
239IsmSetRollbackJournalType
240IsmSetTransportStorage
241IsmSetTransportVariable
242IsmStartEtmModules
243IsmStartTransport
244IsmTerminate
245IsmTickProgressBar
246IsmUnregisterScopeChangeCallback
247TrackedIsmCompressEnvironmentString
248TrackedIsmConvertMultiSzToObject
249TrackedIsmCreateObjectHandle
250TrackedIsmCreateObjectPattern
251TrackedIsmCreateObjectStringsFromHandleEx
252TrackedIsmCreateSimpleObjectPattern
253TrackedIsmDuplicateString
254TrackedIsmExpandEnvironmentString
255TrackedIsmGetLongName
256TrackedIsmGetMemory
257TrackedIsmGetNativeObjectName
lib/libc/mingw/lib64/miglibnt.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file MIGLIBNT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MIGLIBNT.dll
8EXPORTS
9MigDllAddDllToListW
10MigDllApplySystemSettingsW
11MigDllCloseW
12MigDllCreateList
13MigDllEnumFirstW
14MigDllEnumNextW
15MigDllFreeList
16MigDllInit
17MigDllInitializeDstW
18MigDllOpenW
19MigDllShutdown
lib/libc/mingw/lib64/mll_hp.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file MLL_HP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MLL_HP.dll
8EXPORTS
9ClaimMediaLabel
10MaxMediaLabel
lib/libc/mingw/lib64/mll_mtf.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file MLL_MTF.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MLL_MTF.dll
8EXPORTS
9ClaimMediaLabel
10MaxMediaLabel
lib/libc/mingw/lib64/mll_qic.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file MLL_QIC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MLL_QIC.dll
8EXPORTS
9ClaimMediaLabel
10MaxMediaLabel
lib/libc/mingw/lib64/mmfutil.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file MMFUtil.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MMFUtil.DLL
8EXPORTS
9; __int64 __cdecl DisplayAVIBox(struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,struct HWND__ * __ptr64 * __ptr64)
10?DisplayAVIBox@@YA_JPEAUHWND__@@PEBG1PEAPEAU1@@Z
11; int __cdecl DisplayUserMessage(struct HWND__ * __ptr64,struct HINSTANCE__ * __ptr64,unsigned int,unsigned int,enum ERROR_SRC,long,unsigned int)
12?DisplayUserMessage@@YAHPEAUHWND__@@PEAUHINSTANCE__@@IIW4ERROR_SRC@@JI@Z
13; int __cdecl DisplayUserMessage(struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,enum ERROR_SRC,long,unsigned int)
14?DisplayUserMessage@@YAHPEAUHWND__@@PEBG1W4ERROR_SRC@@JI@Z
15DllCanUnloadNow
16DllGetClassObject
17DllRegisterServer
18DllUnregisterServer
19ErrorStringEx
lib/libc/mingw/lib64/mmutilse.def created+295
......@@ -0,0 +1,295 @@
1;
2; Exports of file mmutilse.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mmutilse.dll
8EXPORTS
9; public: __cdecl IHammer::CDirectDrawSurface::CDirectDrawSurface(struct HPALETTE__ * __ptr64,unsigned long,struct tagSIZE const * __ptr64,long * __ptr64) __ptr64
10??0CDirectDrawSurface@IHammer@@QEAA@PEAUHPALETTE__@@KPEBUtagSIZE@@PEAJ@Z
11; public: __cdecl CHalftone::CHalftone(struct HPALETTE__ * __ptr64) __ptr64
12??0CHalftone@@QEAA@PEAUHPALETTE__@@@Z
13; public: __cdecl CHalftonePalette::CHalftonePalette(struct HPALETTE__ * __ptr64) __ptr64
14??0CHalftonePalette@@QEAA@PEAUHPALETTE__@@@Z
15; public: __cdecl CHalftonePalette::CHalftonePalette(void) __ptr64
16??0CHalftonePalette@@QEAA@XZ
17; public: __cdecl CMemManager::CMemManager(void) __ptr64
18??0CMemManager@@QEAA@XZ
19; public: __cdecl CMemUser::CMemUser(void) __ptr64
20??0CMemUser@@QEAA@XZ
21; public: __cdecl CTStr::CTStr(class CTStr & __ptr64) __ptr64
22??0CTStr@@QEAA@AEAV0@@Z
23; public: __cdecl CTStr::CTStr(int) __ptr64
24??0CTStr@@QEAA@H@Z
25; public: __cdecl CTStr::CTStr(char * __ptr64) __ptr64
26??0CTStr@@QEAA@PEAD@Z
27; public: __cdecl CTStr::CTStr(unsigned short * __ptr64) __ptr64
28??0CTStr@@QEAA@PEAG@Z
29; public: __cdecl CURLArchive::CURLArchive(struct IUnknown * __ptr64) __ptr64
30??0CURLArchive@@QEAA@PEAUIUnknown@@@Z
31; public: __cdecl OTrig::OTrig(void) __ptr64
32??0OTrig@@QEAA@XZ
33; public: virtual __cdecl CMemManager::~CMemManager(void) __ptr64
34??1CMemManager@@UEAA@XZ
35; public: virtual __cdecl CMemUser::~CMemUser(void) __ptr64
36??1CMemUser@@UEAA@XZ
37; public: __cdecl CTStr::~CTStr(void) __ptr64
38??1CTStr@@QEAA@XZ
39; public: virtual __cdecl CURLArchive::~CURLArchive(void) __ptr64
40??1CURLArchive@@UEAA@XZ
41; public: void __cdecl CTStr::`default constructor closure'(void) __ptr64
42??_FCTStr@@QEAAXXZ
43; public: void __cdecl CURLArchive::`default constructor closure'(void) __ptr64
44??_FCURLArchive@@QEAAXXZ
45; public: void * __ptr64 __cdecl CMemManager::AllocBuffer(unsigned long,unsigned short) __ptr64
46?AllocBuffer@CMemManager@@QEAAPEAXKG@Z
47; public: struct MEMBLOCK_tag * __ptr64 __cdecl CMemUser::AllocBuffer(unsigned long,unsigned short) __ptr64
48?AllocBuffer@CMemUser@@QEAAPEAUMEMBLOCK_tag@@KG@Z
49; public: int __cdecl CTStr::AllocBuffer(int,int) __ptr64
50?AllocBuffer@CTStr@@QEAAHHH@Z
51; public: static void * __ptr64 __cdecl CMemManager::AllocBufferGlb(unsigned long,unsigned short)
52?AllocBufferGlb@CMemManager@@SAPEAXKG@Z
53; public: static int __cdecl CStringWrapper::Atoi(char const * __ptr64)
54?Atoi@CStringWrapper@@SAHPEBD@Z
55; public: static long __cdecl CStringWrapper::Atol(char const * __ptr64)
56?Atol@CStringWrapper@@SAJPEBD@Z
57; long __cdecl BitCountFromDDPIXELFORMAT(struct _DDPIXELFORMAT const & __ptr64)
58?BitCountFromDDPIXELFORMAT@@YAJAEBU_DDPIXELFORMAT@@@Z
59; public: virtual long __cdecl CURLArchive::Close(void) __ptr64
60?Close@CURLArchive@@UEAAJXZ
61; public: virtual int __cdecl CNonCollapsingDrg::CopyFrom(class CDrg * __ptr64) __ptr64
62?CopyFrom@CNonCollapsingDrg@@UEAAHPEAVCDrg@@@Z
63; public: virtual long __cdecl CURLArchive::CopyLocal(char * __ptr64,int) __ptr64
64?CopyLocal@CURLArchive@@UEAAJPEADH@Z
65; public: virtual long __cdecl CURLArchive::CopyLocal(unsigned short * __ptr64,int) __ptr64
66?CopyLocal@CURLArchive@@UEAAJPEAGH@Z
67; public: float __cdecl OTrig::Cos(long) __ptr64
68?Cos@OTrig@@QEAAMJ@Z
69; public: float __cdecl OTrig::Cos(float) __ptr64
70?Cos@OTrig@@QEAAMM@Z
71; public: static float __cdecl CMathWrapper::CosDeg(long)
72?CosDeg@CMathWrapper@@SAMJ@Z
73; public: static float __cdecl CMathWrapper::CosDeg(float)
74?CosDeg@CMathWrapper@@SAMM@Z
75; public: static float __cdecl CMathWrapper::CosDegWrap(long)
76?CosDegWrap@CMathWrapper@@SAMJ@Z
77; public: static float __cdecl CMathWrapper::CosDegWrap(float)
78?CosDegWrap@CMathWrapper@@SAMM@Z
79; public: static double __cdecl CMathWrapper::CosRad(double)
80?CosRad@CMathWrapper@@SANN@Z
81; public: float __cdecl OTrig::CosWrap(long) __ptr64
82?CosWrap@OTrig@@QEAAMJ@Z
83; public: float __cdecl OTrig::CosWrap(float) __ptr64
84?CosWrap@OTrig@@QEAAMM@Z
85; public: virtual long __cdecl CURLArchive::Create(char const * __ptr64) __ptr64
86?Create@CURLArchive@@UEAAJPEBD@Z
87; public: virtual long __cdecl CURLArchive::Create(unsigned short const * __ptr64) __ptr64
88?Create@CURLArchive@@UEAAJPEBG@Z
89; int __cdecl CreateIDispatchCollection(struct IUnknown * __ptr64 * __ptr64)
90?CreateIDispatchCollection@@YAHPEAPEAUIUnknown@@@Z
91; public: void __cdecl CMemManager::DumpAllocations(char * __ptr64) __ptr64
92?DumpAllocations@CMemManager@@QEAAXPEAD@Z
93; public: static void __cdecl CMemManager::DumpAllocationsGlb(char * __ptr64)
94?DumpAllocationsGlb@CMemManager@@SAXPEAD@Z
95; private: void __cdecl CMemManager::DumpHeapHeader(struct HEAPHEADER_tag * __ptr64,struct _iobuf * __ptr64) __ptr64
96?DumpHeapHeader@CMemManager@@AEAAXPEAUHEAPHEADER_tag@@PEAU_iobuf@@@Z
97; private: void __cdecl CMemManager::DumpMemBlock(struct MEMBLOCK_tag * __ptr64,struct _iobuf * __ptr64) __ptr64
98?DumpMemBlock@CMemManager@@AEAAXPEAUMEMBLOCK_tag@@PEAU_iobuf@@@Z
99; private: void __cdecl CMemManager::DumpMemUserInfo(struct MEMUSERINFO_tag * __ptr64,struct _iobuf * __ptr64) __ptr64
100?DumpMemUserInfo@CMemManager@@AEAAXPEAUMEMUSERINFO_tag@@PEAU_iobuf@@@Z
101; void __cdecl ExternalDumpAllocations(char * __ptr64)
102?ExternalDumpAllocations@@YAXPEAD@Z
103; public: void __cdecl CMemManager::FreeBuffer(void * __ptr64) __ptr64
104?FreeBuffer@CMemManager@@QEAAXPEAX@Z
105; public: void __cdecl CMemUser::FreeBuffer(struct MEMBLOCK_tag * __ptr64) __ptr64
106?FreeBuffer@CMemUser@@QEAAXPEAUMEMBLOCK_tag@@@Z
107; public: void __cdecl CTStr::FreeBuffer(void) __ptr64
108?FreeBuffer@CTStr@@QEAAXXZ
109; public: static void __cdecl CMemManager::FreeBufferGlb(void * __ptr64)
110?FreeBufferGlb@CMemManager@@SAXPEAX@Z
111; public: void __cdecl CMemManager::FreeBufferMemBlock(struct MEMBLOCK_tag * __ptr64) __ptr64
112?FreeBufferMemBlock@CMemManager@@QEAAXPEAUMEMBLOCK_tag@@@Z
113; public: static char * __ptr64 __cdecl CStringWrapper::Gcvt(double,int,char * __ptr64)
114?Gcvt@CStringWrapper@@SAPEADNHPEAD@Z
115; public: virtual void * __ptr64 __cdecl CNonCollapsingDrg::GetAt(long) __ptr64
116?GetAt@CNonCollapsingDrg@@UEAAPEAXJ@Z
117; public: virtual long __cdecl CURLArchive::GetFileSize(long & __ptr64) __ptr64
118?GetFileSize@CURLArchive@@UEAAJAEAJ@Z
119; public: virtual void * __ptr64 __cdecl CNonCollapsingDrg::GetFirst(void) __ptr64
120?GetFirst@CNonCollapsingDrg@@UEAAPEAXXZ
121; public: virtual void * __ptr64 __cdecl CNonCollapsingDrg::GetNext(void) __ptr64
122?GetNext@CNonCollapsingDrg@@UEAAPEAXXZ
123; unsigned long __cdecl GetSigBitsFrom16BPP(struct HDC__ * __ptr64)
124?GetSigBitsFrom16BPP@@YAKPEAUHDC__@@@Z
125; public: virtual struct IStream * __ptr64 __cdecl CURLArchive::GetStreamInterface(void)const __ptr64
126?GetStreamInterface@CURLArchive@@UEBAPEAUIStream@@XZ
127; public: virtual int __cdecl CDrg::Insert(void * __ptr64,long) __ptr64
128?Insert@CDrg@@UEAAHPEAXJ@Z
129; int __cdecl IsMMXCpu(void)
130?IsMMXCpu@@YAHXZ
131; public: static int __cdecl CStringWrapper::Iswspace(unsigned short)
132?Iswspace@CStringWrapper@@SAHG@Z
133; public: static char * __ptr64 __cdecl CStringWrapper::Itoa(int,char * __ptr64,int)
134?Itoa@CStringWrapper@@SAPEADHPEADH@Z
135; public: int __cdecl CTStr::Len(void) __ptr64
136?Len@CTStr@@QEAAHXZ
137; public: static int __cdecl CStringWrapper::LoadStringW(struct HINSTANCE__ * __ptr64,unsigned int,unsigned short * __ptr64,int)
138?LoadStringW@CStringWrapper@@SAHPEAUHINSTANCE__@@IPEAGH@Z
139; public: void * __ptr64 __cdecl CMemUser::LockBuffer(struct MEMBLOCK_tag * __ptr64) __ptr64
140?LockBuffer@CMemUser@@QEAAPEAXPEAUMEMBLOCK_tag@@@Z
141; public: static char * __ptr64 __cdecl CStringWrapper::Ltoa(long,char * __ptr64,int)
142?Ltoa@CStringWrapper@@SAPEADJPEADH@Z
143; public: static unsigned __int64 __cdecl CStringWrapper::Mbstowcs(unsigned short * __ptr64,char const * __ptr64,unsigned __int64)
144?Mbstowcs@CStringWrapper@@SA_KPEAGPEBD_K@Z
145; public: static int __cdecl CStringWrapper::Memcmp(void const * __ptr64,void const * __ptr64,unsigned __int64)
146?Memcmp@CStringWrapper@@SAHPEBX0_K@Z
147; public: static void * __ptr64 __cdecl CStringWrapper::Memcpy(void * __ptr64,void const * __ptr64,unsigned __int64)
148?Memcpy@CStringWrapper@@SAPEAXPEAXPEBX_K@Z
149; public: static void * __ptr64 __cdecl CStringWrapper::Memset(void * __ptr64,int,unsigned __int64)
150?Memset@CStringWrapper@@SAPEAXPEAXH_K@Z
151; public: virtual int __cdecl CMemUser::NotifyMemUser(struct MEMNOTIFY_tag * __ptr64) __ptr64
152?NotifyMemUser@CMemUser@@UEAAHPEAUMEMNOTIFY_tag@@@Z
153; unsigned long __cdecl OverheadOfSavePtrDrg(void)
154?OverheadOfSavePtrDrg@@YAKXZ
155; public: static float __cdecl CMathWrapper::Pow(double,double)
156?Pow@CMathWrapper@@SAMNN@Z
157; public: void * __ptr64 __cdecl CMemManager::ReAllocBuffer(void * __ptr64,unsigned long,unsigned short) __ptr64
158?ReAllocBuffer@CMemManager@@QEAAPEAXPEAXKG@Z
159; public: static void * __ptr64 __cdecl CMemManager::ReAllocBufferGlb(void * __ptr64,unsigned long,unsigned short)
160?ReAllocBufferGlb@CMemManager@@SAPEAXPEAXKG@Z
161; public: virtual unsigned long __cdecl CURLArchive::Read(unsigned char * __ptr64,unsigned long) __ptr64
162?Read@CURLArchive@@UEAAKPEAEK@Z
163; long __cdecl ReadBstrFromPropBag(struct IPropertyBag * __ptr64,struct IErrorLog * __ptr64,char * __ptr64,unsigned short * __ptr64 * __ptr64)
164?ReadBstrFromPropBag@@YAJPEAUIPropertyBag@@PEAUIErrorLog@@PEADPEAPEAG@Z
165; public: virtual unsigned long __cdecl CURLArchive::ReadLine(char * __ptr64,unsigned long) __ptr64
166?ReadLine@CURLArchive@@UEAAKPEADK@Z
167; public: virtual unsigned long __cdecl CURLArchive::ReadLine(unsigned short * __ptr64,unsigned long) __ptr64
168?ReadLine@CURLArchive@@UEAAKPEAGK@Z
169; long __cdecl ReadLongFromPropBag(struct IPropertyBag * __ptr64,struct IErrorLog * __ptr64,char * __ptr64,long * __ptr64)
170?ReadLongFromPropBag@@YAJPEAUIPropertyBag@@PEAUIErrorLog@@PEADPEAJ@Z
171; public: int __cdecl CMemManager::RegisterMemUser(class CMemUser * __ptr64) __ptr64
172?RegisterMemUser@CMemManager@@QEAAHPEAVCMemUser@@@Z
173; public: static int __cdecl CMemManager::RegisterMemUserGlb(class CMemUser * __ptr64)
174?RegisterMemUserGlb@CMemManager@@SAHPEAVCMemUser@@@Z
175; public: virtual int __cdecl CDrg::Remove(void * __ptr64,long) __ptr64
176?Remove@CDrg@@UEAAHPEAXJ@Z
177; public: virtual int __cdecl CNonCollapsingDrg::Remove(void * __ptr64,long) __ptr64
178?Remove@CNonCollapsingDrg@@UEAAHPEAXJ@Z
179; public: void __cdecl CTStr::ResetLength(void) __ptr64
180?ResetLength@CTStr@@QEAAXXZ
181; void __cdecl RetailEcho(char * __ptr64,...)
182?RetailEcho@@YAXPEADZZ
183; public: virtual long __cdecl CURLArchive::Seek(long,enum CURLArchive::origin) __ptr64
184?Seek@CURLArchive@@UEAAJJW4origin@1@@Z
185; public: virtual void __cdecl CNonCollapsingDrg::SetArray(unsigned char * __ptr64,long,unsigned int) __ptr64
186?SetArray@CNonCollapsingDrg@@UEAAXPEAEJI@Z
187; public: virtual int __cdecl CNonCollapsingDrg::SetAt(void * __ptr64,long) __ptr64
188?SetAt@CNonCollapsingDrg@@UEAAHPEAXJ@Z
189; public: virtual void __cdecl CDrg::SetNonDefaultSizes(unsigned int,unsigned int) __ptr64
190?SetNonDefaultSizes@CDrg@@UEAAXII@Z
191; public: int __cdecl CTStr::SetString(char * __ptr64) __ptr64
192?SetString@CTStr@@QEAAHPEAD@Z
193; public: int __cdecl CTStr::SetString(unsigned short * __ptr64) __ptr64
194?SetString@CTStr@@QEAAHPEAG@Z
195; public: int __cdecl CTStr::SetStringPointer(char * __ptr64,int) __ptr64
196?SetStringPointer@CTStr@@QEAAHPEADH@Z
197; public: float __cdecl OTrig::Sin(long) __ptr64
198?Sin@OTrig@@QEAAMJ@Z
199; public: float __cdecl OTrig::Sin(float) __ptr64
200?Sin@OTrig@@QEAAMM@Z
201; public: static float __cdecl CMathWrapper::SinDeg(long)
202?SinDeg@CMathWrapper@@SAMJ@Z
203; public: static float __cdecl CMathWrapper::SinDeg(float)
204?SinDeg@CMathWrapper@@SAMM@Z
205; public: static float __cdecl CMathWrapper::SinDegWrap(long)
206?SinDegWrap@CMathWrapper@@SAMJ@Z
207; public: static float __cdecl CMathWrapper::SinDegWrap(float)
208?SinDegWrap@CMathWrapper@@SAMM@Z
209; public: static double __cdecl CMathWrapper::SinRad(double)
210?SinRad@CMathWrapper@@SANN@Z
211; public: float __cdecl OTrig::SinWrap(long) __ptr64
212?SinWrap@OTrig@@QEAAMJ@Z
213; public: float __cdecl OTrig::SinWrap(float) __ptr64
214?SinWrap@OTrig@@QEAAMM@Z
215; public: unsigned long __cdecl CMemManager::SizeBuffer(void * __ptr64) __ptr64
216?SizeBuffer@CMemManager@@QEAAKPEAX@Z
217; public: static unsigned long __cdecl CMemManager::SizeBufferGlb(void * __ptr64)
218?SizeBufferGlb@CMemManager@@SAKPEAX@Z
219; public: static int __cdecl CStringWrapper::Sprintf(char * __ptr64,char const * __ptr64,...)
220?Sprintf@CStringWrapper@@SAHPEADPEBDZZ
221; public: static float __cdecl CMathWrapper::Sqrt(float)
222?Sqrt@CMathWrapper@@SAMM@Z
223; public: static int __cdecl CStringWrapper::Sscanf1(char const * __ptr64,char const * __ptr64,void * __ptr64)
224?Sscanf1@CStringWrapper@@SAHPEBD0PEAX@Z
225; public: static int __cdecl CStringWrapper::Sscanf2(char const * __ptr64,char const * __ptr64,void * __ptr64,void * __ptr64)
226?Sscanf2@CStringWrapper@@SAHPEBD0PEAX1@Z
227; public: static int __cdecl CStringWrapper::Sscanf3(char const * __ptr64,char const * __ptr64,void * __ptr64,void * __ptr64,void * __ptr64)
228?Sscanf3@CStringWrapper@@SAHPEBD0PEAX11@Z
229; public: static char * __ptr64 __cdecl CStringWrapper::Strcat(char * __ptr64,char const * __ptr64)
230?Strcat@CStringWrapper@@SAPEADPEADPEBD@Z
231; public: static char * __ptr64 __cdecl CStringWrapper::Strchr(char const * __ptr64,char)
232?Strchr@CStringWrapper@@SAPEADPEBDD@Z
233; public: static int __cdecl CStringWrapper::Strcmp(char const * __ptr64,char const * __ptr64)
234?Strcmp@CStringWrapper@@SAHPEBD0@Z
235; public: static char * __ptr64 __cdecl CStringWrapper::Strcpy(char * __ptr64,char const * __ptr64)
236?Strcpy@CStringWrapper@@SAPEADPEADPEBD@Z
237; public: static int __cdecl CStringWrapper::Stricmp(char const * __ptr64,char const * __ptr64)
238?Stricmp@CStringWrapper@@SAHPEBD0@Z
239; public: static char * __ptr64 __cdecl CStringWrapper::Strinc(char const * __ptr64)
240?Strinc@CStringWrapper@@SAPEADPEBD@Z
241; public: static int __cdecl CStringWrapper::Strlen(char const * __ptr64)
242?Strlen@CStringWrapper@@SAHPEBD@Z
243; public: static int __cdecl CStringWrapper::Strncmp(char const * __ptr64,char const * __ptr64,unsigned __int64)
244?Strncmp@CStringWrapper@@SAHPEBD0_K@Z
245; public: static char * __ptr64 __cdecl CStringWrapper::Strncpy(char * __ptr64,char const * __ptr64,unsigned __int64)
246?Strncpy@CStringWrapper@@SAPEADPEADPEBD_K@Z
247; public: static int __cdecl CStringWrapper::Strnicmp(char const * __ptr64,char const * __ptr64,unsigned __int64)
248?Strnicmp@CStringWrapper@@SAHPEBD0_K@Z
249; public: static char * __ptr64 __cdecl CStringWrapper::Strrchr(char const * __ptr64,char)
250?Strrchr@CStringWrapper@@SAPEADPEBDD@Z
251; public: static char * __ptr64 __cdecl CStringWrapper::Strstr(char const * __ptr64,char const * __ptr64)
252?Strstr@CStringWrapper@@SAPEADPEBD0@Z
253; public: static char * __ptr64 __cdecl CStringWrapper::Strtok(char * __ptr64,char const * __ptr64)
254?Strtok@CStringWrapper@@SAPEADPEADPEBD@Z
255; public: unsigned short * __ptr64 __cdecl CTStr::SysAllocString(void) __ptr64
256?SysAllocString@CTStr@@QEAAPEAGXZ
257; public: void __cdecl CMemUser::UnLockBuffer(struct MEMBLOCK_tag * __ptr64) __ptr64
258?UnLockBuffer@CMemUser@@QEAAXPEAUMEMBLOCK_tag@@@Z
259; public: int __cdecl CMemManager::UnRegisterMemUser(class CMemUser * __ptr64) __ptr64
260?UnRegisterMemUser@CMemManager@@QEAAHPEAVCMemUser@@@Z
261; public: static int __cdecl CMemManager::UnRegisterMemUserGlb(class CMemUser * __ptr64)
262?UnRegisterMemUserGlb@CMemManager@@SAHPEAVCMemUser@@@Z
263; public: static int __cdecl CStringWrapper::WStrCmpin(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned __int64)
264?WStrCmpin@CStringWrapper@@SAHPEBG0_K@Z
265; public: static unsigned short * __ptr64 __cdecl CStringWrapper::WStrcat(unsigned short * __ptr64,unsigned short const * __ptr64)
266?WStrcat@CStringWrapper@@SAPEAGPEAGPEBG@Z
267; public: static unsigned short * __ptr64 __cdecl CStringWrapper::WStrcpy(unsigned short * __ptr64,unsigned short const * __ptr64)
268?WStrcpy@CStringWrapper@@SAPEAGPEAGPEBG@Z
269; public: static int __cdecl CStringWrapper::WStrlen(unsigned short const * __ptr64)
270?WStrlen@CStringWrapper@@SAHPEBG@Z
271; public: static unsigned short * __ptr64 __cdecl CStringWrapper::WStrncpy(unsigned short * __ptr64,unsigned short const * __ptr64,unsigned __int64)
272?WStrncpy@CStringWrapper@@SAPEAGPEAGPEBG_K@Z
273; public: static unsigned __int64 __cdecl CStringWrapper::Wcstombs(char * __ptr64,unsigned short const * __ptr64,unsigned __int64)
274?Wcstombs@CStringWrapper@@SA_KPEADPEBG_K@Z
275; public: virtual unsigned long __cdecl CURLArchive::Write(unsigned char * __ptr64,unsigned long) __ptr64
276?Write@CURLArchive@@UEAAKPEAEK@Z
277; long __cdecl WriteBstrToPropBag(struct IPropertyBag * __ptr64,char * __ptr64,unsigned short * __ptr64)
278?WriteBstrToPropBag@@YAJPEAUIPropertyBag@@PEADPEAG@Z
279; long __cdecl WriteLongToPropBag(struct IPropertyBag * __ptr64,char * __ptr64,long)
280?WriteLongToPropBag@@YAJPEAUIPropertyBag@@PEADJ@Z
281; public: char * __ptr64 __cdecl CTStr::psz(void) __ptr64
282?psz@CTStr@@QEAAPEADXZ
283; public: char * __ptr64 __cdecl CTStr::pszA(void) __ptr64
284?pszA@CTStr@@QEAAPEADXZ
285; public: unsigned short * __ptr64 __cdecl CTStr::pszW(void) __ptr64
286?pszW@CTStr@@QEAAPEAGXZ
287_wcsicmp
288_wtoi
289fmod
290memcmp
291memset
292setlocale
293strcpy
294strlen
295swprintf
lib/libc/mingw/lib64/mobsync.def created+31
......@@ -0,0 +1,31 @@
1;
2; Exports of file mobsync.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mobsync.dll
8EXPORTS
9RunDllRegister
10SyncMgrRasProc
11DisplayOptions
12DllCanUnloadNow
13DllGetClassObject
14DllRegisterServer
15DllUnregisterServer
16MobsyncGetClassObject
17RegGetHandlerRegistrationInfo
18RegGetHandlerTopLevelKey
19RegGetProgressDetailsState
20RegGetSchedConnectionName
21RegGetSchedSyncSettings
22RegGetSyncItemSettings
23RegGetSyncSettings
24RegQueryLoadHandlerOnEvent
25RegRemoveManualSyncSettings
26RegSchedHandlerItemsChecked
27RegSetProgressDetailsState
28RegSetSyncItemSettings
29RegSetUserDefaults
30SyncMgrResolveConflictA
31SyncMgrResolveConflictW
lib/libc/mingw/lib64/mofd.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file mofd.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mofd.dll
8EXPORTS
9CompileFileViaDLL
10CreateBMOFViaDLL
11DllCanUnloadNow
12DllGetClassObject
13DllRegisterServer
14DllUnregisterServer
lib/libc/mingw/lib64/mprddm.def created+47
......@@ -0,0 +1,47 @@
1;
2; Exports of file MPRDDM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MPRDDM.dll
8EXPORTS
9DDMAdminConnectionClearStats
10DDMAdminConnectionEnum
11DDMAdminConnectionGetInfo
12DDMAdminInterfaceConnect
13DDMAdminInterfaceDisconnect
14DDMAdminPortClearStats
15DDMAdminPortDisconnect
16DDMAdminPortEnum
17DDMAdminPortGetInfo
18DDMAdminPortReset
19DDMAdminRemoveQuarantine
20DDMAdminServerGetInfo
21DDMAdminServerSetInfo
22DDMConnectInterface
23DDMDisconnectInterface
24DDMGetIdentityAttributes
25DDMPostCleanup
26DDMRegisterConnectionNotification
27DDMSendUserMessage
28DDMServiceInitialize
29DDMServicePostListens
30DDMTransportCreate
31IfObjectFreePhonebookContext
32IfObjectInitiatePersistentConnections
33IfObjectLoadPhonebookInfo
34IfObjectNotifyOfReachabilityChange
35IfObjectSetDialoutHoursRestriction
36RasAcctConfigChangeNotification
37RasAcctProviderFreeAttributes
38RasAcctProviderInitialize
39RasAcctProviderInterimAccounting
40RasAcctProviderStartAccounting
41RasAcctProviderStopAccounting
42RasAcctProviderTerminate
43RasAuthConfigChangeNotification
44RasAuthProviderAuthenticateUser
45RasAuthProviderFreeAttributes
46RasAuthProviderInitialize
47RasAuthProviderTerminate
lib/libc/mingw/lib64/mprmsg.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file ROUTEMSG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ROUTEMSG.dll
8EXPORTS
9GetEventIds
lib/libc/mingw/lib64/mprui.def created+21
......@@ -0,0 +1,21 @@
1;
2; Exports of file MPRUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MPRUI.dll
8EXPORTS
9BrowseDialogA0
10MPRUI_DoPasswordDialog
11MPRUI_DoProfileErrorDialog
12MPRUI_ShowReconnectDialog
13MPRUI_WNetClearConnections
14MPRUI_WNetConnectionDialog
15MPRUI_WNetConnectionDialog1A
16MPRUI_WNetConnectionDialog1W
17MPRUI_WNetDisconnectDialog
18MPRUI_WNetDisconnectDialog1A
19MPRUI_WNetDisconnectDialog1W
20WNetBrowseDialog
21WNetBrowsePrinterDialog
lib/libc/mingw/lib64/mqad.def created+42
......@@ -0,0 +1,42 @@
1;
2; Exports of file mqad.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mqad.dll
8EXPORTS
9MQADBeginDeleteNotification
10MQADCreateObject
11MQADDeleteObject
12MQADDeleteObjectGuid
13MQADDeleteObjectGuidSid
14MQADEndDeleteNotification
15MQADEndQuery
16MQADFreeMemory
17MQADGetADsPathInfo
18MQADGetComputerSites
19MQADGetComputerVersion
20MQADGetGenObjectProperties
21MQADGetObjectProperties
22MQADGetObjectPropertiesGuid
23MQADGetObjectSecurity
24MQADGetObjectSecurityGuid
25MQADInit
26MQADNotifyDelete
27MQADQMGetObjectSecurity
28MQADQueryAllLinks
29MQADQueryAllSites
30MQADQueryConnectors
31MQADQueryForeignSites
32MQADQueryLinks
33MQADQueryMachineQueues
34MQADQueryNT4MQISServers
35MQADQueryQueues
36MQADQueryResults
37MQADQuerySiteServers
38MQADQueryUserCert
39MQADSetObjectProperties
40MQADSetObjectPropertiesGuid
41MQADSetObjectSecurity
42MQADSetObjectSecurityGuid
lib/libc/mingw/lib64/mqcertui.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file MQCERTUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MQCERTUI.dll
8EXPORTS
9SelectPersonalCertificateForRegister
10SelectPersonalCertificateForRemoval
11ShowCertificate
12ShowPersonalCertificates
lib/libc/mingw/lib64/mqdscli.def created+34
......@@ -0,0 +1,34 @@
1;
2; Exports of file mqdscli.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mqdscli.dll
8EXPORTS
9DSBeginDeleteNotification
10DSClientInit
11DSCreateObject
12DSCreateServersCache
13DSDeleteObject
14DSDeleteObjectGuid
15DSEndDeleteNotification
16DSFreeMemory
17DSGetComputerSites
18DSGetObjectProperties
19DSGetObjectPropertiesEx
20DSGetObjectPropertiesGuid
21DSGetObjectPropertiesGuidEx
22DSGetObjectSecurity
23DSGetObjectSecurityGuid
24DSGetUserParams
25DSLookupBegin
26DSLookupEnd
27DSLookupNext
28DSNotifyDelete
29DSQMGetObjectSecurity
30DSSetObjectProperties
31DSSetObjectPropertiesGuid
32DSSetObjectSecurity
33DSSetObjectSecurityGuid
34DSTerminate
lib/libc/mingw/lib64/mqise.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file mqise.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mqise.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/mqlogmgr.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file MSDTCLOG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSDTCLOG.dll
8EXPORTS
9; public: static long __cdecl CLogMgr::CreateInstance(class CLogMgr * __ptr64 * __ptr64,struct IUnknown * __ptr64)
10?CreateInstance@CLogMgr@@SAJPEAPEAV1@PEAUIUnknown@@@Z
11DllGetDTCLOG2
12; int __cdecl DllGetDTCLOG(struct _GUID const & __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64)
13?DllGetDTCLOG@@YAHAEBU_GUID@@0PEAPEAX@Z
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
lib/libc/mingw/lib64/mqperf.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file MQPERF.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MQPERF.dll
8EXPORTS
9PerfClose
10PerfCollect
11PerfOpen
lib/libc/mingw/lib64/mqrt.def created+54
......@@ -0,0 +1,54 @@
1;
2; Exports of file mqrt.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mqrt.dll
8EXPORTS
9MQLogHR
10DllRegisterServer
11MQADsPathToFormatName
12MQAllocateMemory
13MQBeginTransaction
14MQCloseCursor
15MQCloseQueue
16MQCreateCursor
17MQCreateQueue
18MQDeleteQueue
19MQFreeMemory
20MQFreeSecurityContext
21MQGetMachineProperties
22MQGetOverlappedResult
23MQGetPrivateComputerInformation
24MQGetQueueProperties
25MQGetQueueSecurity
26MQGetSecurityContext
27MQGetSecurityContextEx
28MQHandleToFormatName
29MQInstanceToFormatName
30MQLocateBegin
31MQLocateEnd
32MQLocateNext
33MQMgmtAction
34MQMgmtGetInfo
35MQOpenQueue
36MQPathNameToFormatName
37MQPurgeQueue
38MQReceiveMessage
39MQReceiveMessageByLookupId
40MQRegisterCertificate
41MQSendMessage
42MQSetQueueProperties
43MQSetQueueSecurity
44RTCreateInternalCertificate
45RTDeleteInternalCert
46RTGetInternalCert
47RTGetUserCerts
48RTIsDependentClient
49RTLogOnRegisterCert
50RTOpenInternalCertStore
51RTRegisterUserCert
52RTRemoveUserCert
53RTRemoveUserCertSid
54RTXactGetDTC
lib/libc/mingw/lib64/mqrtdep.def created+47
......@@ -0,0 +1,47 @@
1;
2; Exports of file MQRTDEP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MQRTDEP.dll
8EXPORTS
9DepBeginTransaction
10DepCloseCursor
11DepCloseQueue
12DepCreateCursor
13DepCreateInternalCertificate
14DepCreateQueue
15DepDeleteInternalCert
16DepDeleteQueue
17DepFreeMemory
18DepFreeSecurityContext
19DepGetInternalCert
20DepGetMachineProperties
21DepGetOverlappedResult
22DepGetPrivateComputerInformation
23DepGetQueueProperties
24DepGetQueueSecurity
25DepGetSecurityContext
26DepGetSecurityContextEx
27DepGetUserCerts
28DepHandleToFormatName
29DepInstanceToFormatName
30DepLocateBegin
31DepLocateEnd
32DepLocateNext
33DepMgmtAction
34DepMgmtGetInfo
35DepOpenInternalCertStore
36DepOpenQueue
37DepPathNameToFormatName
38DepPurgeQueue
39DepReceiveMessage
40DepRegisterCertificate
41DepRegisterServer
42DepRegisterUserCert
43DepRemoveUserCert
44DepSendMessage
45DepSetQueueProperties
46DepSetQueueSecurity
47DepXactGetDTC
lib/libc/mingw/lib64/mqsec.def created+329
......@@ -0,0 +1,329 @@
1;
2; Exports of file mqsec.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mqsec.dll
8EXPORTS
9; public: __cdecl CCancelRpc::CCancelRpc(class CCancelRpc const & __ptr64) __ptr64
10??0CCancelRpc@@QEAA@AEBV0@@Z
11; public: __cdecl CCancelRpc::CCancelRpc(void) __ptr64
12??0CCancelRpc@@QEAA@XZ
13; public: __cdecl CColumns::CColumns(class CColumns const & __ptr64) __ptr64
14??0CColumns@@QEAA@AEBV0@@Z
15; public: __cdecl CColumns::CColumns(unsigned int) __ptr64
16??0CColumns@@QEAA@I@Z
17; public: __cdecl CDSBaseUpdate::CDSBaseUpdate(class CDSBaseUpdate const & __ptr64) __ptr64
18??0CDSBaseUpdate@@QEAA@AEBV0@@Z
19; public: __cdecl CDSBaseUpdate::CDSBaseUpdate(void) __ptr64
20??0CDSBaseUpdate@@QEAA@XZ
21; public: __cdecl COutputReport::COutputReport(void) __ptr64
22??0COutputReport@@QEAA@XZ
23; public: __cdecl CPropertyRestriction::CPropertyRestriction(class CPropertyRestriction const & __ptr64) __ptr64
24??0CPropertyRestriction@@QEAA@AEBV0@@Z
25; public: __cdecl CPropertyRestriction::CPropertyRestriction(unsigned long,unsigned long const & __ptr64,class CMQVariant const & __ptr64) __ptr64
26??0CPropertyRestriction@@QEAA@KAEBKAEBVCMQVariant@@@Z
27; public: __cdecl CPropertyRestriction::CPropertyRestriction(void) __ptr64
28??0CPropertyRestriction@@QEAA@XZ
29; public: __cdecl CRestriction::CRestriction(class CRestriction const & __ptr64) __ptr64
30??0CRestriction@@QEAA@AEBV0@@Z
31; public: __cdecl CRestriction::CRestriction(unsigned int) __ptr64
32??0CRestriction@@QEAA@I@Z
33; public: __cdecl CSort::CSort(class CSort const & __ptr64) __ptr64
34??0CSort@@QEAA@AEBV0@@Z
35; public: __cdecl CSort::CSort(unsigned int) __ptr64
36??0CSort@@QEAA@I@Z
37; public: __cdecl CSortKey::CSortKey(unsigned long const & __ptr64,unsigned long) __ptr64
38??0CSortKey@@QEAA@AEBKK@Z
39; public: __cdecl CSortKey::CSortKey(void) __ptr64
40??0CSortKey@@QEAA@XZ
41; public: __cdecl CCancelRpc::~CCancelRpc(void) __ptr64
42??1CCancelRpc@@QEAA@XZ
43; public: __cdecl CColumns::~CColumns(void) __ptr64
44??1CColumns@@QEAA@XZ
45; public: __cdecl CDSBaseUpdate::~CDSBaseUpdate(void) __ptr64
46??1CDSBaseUpdate@@QEAA@XZ
47; public: __cdecl COutputReport::~COutputReport(void) __ptr64
48??1COutputReport@@QEAA@XZ
49; public: __cdecl CPropertyRestriction::~CPropertyRestriction(void) __ptr64
50??1CPropertyRestriction@@QEAA@XZ
51; public: __cdecl CRestriction::~CRestriction(void) __ptr64
52??1CRestriction@@QEAA@XZ
53; public: __cdecl CSort::~CSort(void) __ptr64
54??1CSort@@QEAA@XZ
55; public: __cdecl CSortKey::~CSortKey(void) __ptr64
56??1CSortKey@@QEAA@XZ
57; public: class CCancelRpc & __ptr64 __cdecl CCancelRpc::operator=(class CCancelRpc const & __ptr64) __ptr64
58??4CCancelRpc@@QEAAAEAV0@AEBV0@@Z
59; public: class CDSBaseUpdate & __ptr64 __cdecl CDSBaseUpdate::operator=(class CDSBaseUpdate const & __ptr64) __ptr64
60??4CDSBaseUpdate@@QEAAAEAV0@AEBV0@@Z
61; public: class COutputReport & __ptr64 __cdecl COutputReport::operator=(class COutputReport const & __ptr64) __ptr64
62??4COutputReport@@QEAAAEAV0@AEBV0@@Z
63; public: class CPropertyRestriction & __ptr64 __cdecl CPropertyRestriction::operator=(class CPropertyRestriction const & __ptr64) __ptr64
64??4CPropertyRestriction@@QEAAAEAV0@AEBV0@@Z
65; public: class CRestriction & __ptr64 __cdecl CRestriction::operator=(class CRestriction const & __ptr64) __ptr64
66??4CRestriction@@QEAAAEAV0@AEBV0@@Z
67; public: class CSortKey & __ptr64 __cdecl CSortKey::operator=(class CSortKey const & __ptr64) __ptr64
68??4CSortKey@@QEAAAEAV0@AEBV0@@Z
69; public: void __cdecl CColumns::`default constructor closure'(void) __ptr64
70??_FCColumns@@QEAAXXZ
71; public: void __cdecl CRestriction::`default constructor closure'(void) __ptr64
72??_FCRestriction@@QEAAXXZ
73; public: void __cdecl CSort::`default constructor closure'(void) __ptr64
74??_FCSort@@QEAAXXZ
75; public: void __cdecl CCancelRpc::Add(void * __ptr64,__int64) __ptr64
76?Add@CCancelRpc@@QEAAXPEAX_J@Z
77; public: void __cdecl CColumns::Add(unsigned long const & __ptr64) __ptr64
78?Add@CColumns@@QEAAXAEBK@Z
79; public: void __cdecl CSort::Add(unsigned long const & __ptr64,unsigned long) __ptr64
80?Add@CSort@@QEAAXAEBKK@Z
81; public: void __cdecl CSort::Add(class CSortKey const & __ptr64) __ptr64
82?Add@CSort@@QEAAXAEBVCSortKey@@@Z
83; public: void __cdecl CRestriction::AddChild(class CPropertyRestriction const & __ptr64) __ptr64
84?AddChild@CRestriction@@QEAAXAEBVCPropertyRestriction@@@Z
85; public: void __cdecl CRestriction::AddRestriction(struct tagBLOB & __ptr64,unsigned long,unsigned long) __ptr64
86?AddRestriction@CRestriction@@QEAAXAEAUtagBLOB@@KK@Z
87; public: void __cdecl CRestriction::AddRestriction(class CMQVariant const & __ptr64,unsigned long,unsigned long) __ptr64
88?AddRestriction@CRestriction@@QEAAXAEBVCMQVariant@@KK@Z
89; public: void __cdecl CRestriction::AddRestriction(unsigned char,unsigned long,unsigned long) __ptr64
90?AddRestriction@CRestriction@@QEAAXEKK@Z
91; public: void __cdecl CRestriction::AddRestriction(short,unsigned long,unsigned long) __ptr64
92?AddRestriction@CRestriction@@QEAAXFKK@Z
93; public: void __cdecl CRestriction::AddRestriction(long,unsigned long,unsigned long) __ptr64
94?AddRestriction@CRestriction@@QEAAXJKK@Z
95; public: void __cdecl CRestriction::AddRestriction(unsigned long,unsigned long,unsigned long) __ptr64
96?AddRestriction@CRestriction@@QEAAXKKK@Z
97; public: void __cdecl CRestriction::AddRestriction(unsigned short * __ptr64,unsigned long,unsigned long) __ptr64
98?AddRestriction@CRestriction@@QEAAXPEAGKK@Z
99; public: void __cdecl CRestriction::AddRestriction(struct _GUID * __ptr64,unsigned long,unsigned long) __ptr64
100?AddRestriction@CRestriction@@QEAAXPEAU_GUID@@KK@Z
101; public: void __cdecl CRestriction::AddRestriction(struct tagCACLSID * __ptr64,unsigned long,unsigned long) __ptr64
102?AddRestriction@CRestriction@@QEAAXPEAUtagCACLSID@@KK@Z
103; public: void __cdecl CRestriction::AddRestriction(struct tagCALPWSTR * __ptr64,unsigned long,unsigned long) __ptr64
104?AddRestriction@CRestriction@@QEAAXPEAUtagCALPWSTR@@KK@Z
105; public: void __cdecl CCancelRpc::CancelRequests(__int64) __ptr64
106?CancelRequests@CCancelRpc@@QEAAX_J@Z
107; private: static unsigned long __cdecl CCancelRpc::CancelThread(void * __ptr64)
108?CancelThread@CCancelRpc@@CAKPEAX@Z
109; public: struct tagMQCOLUMNSET * __ptr64 __cdecl CColumns::CastToStruct(void) __ptr64
110?CastToStruct@CColumns@@QEAAPEAUtagMQCOLUMNSET@@XZ
111; public: struct tagMQRESTRICTION * __ptr64 __cdecl CRestriction::CastToStruct(void) __ptr64
112?CastToStruct@CRestriction@@QEAAPEAUtagMQRESTRICTION@@XZ
113; public: struct tagMQSORTSET * __ptr64 __cdecl CSort::CastToStruct(void) __ptr64
114?CastToStruct@CSort@@QEAAPEAUtagMQSORTSET@@XZ
115; void __cdecl ComposeRPCEndPointName(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64)
116?ComposeRPCEndPointName@@YAXPEBG0PEAPEAG@Z
117; private: long __cdecl CDSBaseUpdate::CopyProperty(struct tagPROPVARIANT & __ptr64,struct tagPROPVARIANT * __ptr64) __ptr64
118?CopyProperty@CDSBaseUpdate@@AEAAJAEAUtagPROPVARIANT@@PEAU2@@Z
119; public: unsigned int __cdecl CColumns::Count(void)const __ptr64
120?Count@CColumns@@QEBAIXZ
121; public: unsigned int __cdecl CRestriction::Count(void)const __ptr64
122?Count@CRestriction@@QEBAIXZ
123; public: unsigned int __cdecl CSort::Count(void)const __ptr64
124?Count@CSort@@QEBAIXZ
125; long __cdecl DeleteFalconKeyValue(unsigned short const * __ptr64)
126?DeleteFalconKeyValue@@YAJPEBG@Z
127; private: void __cdecl CDSBaseUpdate::DeleteProperty(struct tagPROPVARIANT & __ptr64) __ptr64
128?DeleteProperty@CDSBaseUpdate@@AEAAXAEAUtagPROPVARIANT@@@Z
129FreeContextHandle
130; public: unsigned long const & __ptr64 __cdecl CColumns::Get(unsigned int)const __ptr64
131?Get@CColumns@@QEBAAEBKI@Z
132; public: class CSortKey const & __ptr64 __cdecl CSort::Get(unsigned int)const __ptr64
133?Get@CSort@@QEBAAEBVCSortKey@@I@Z
134; public: class CPropertyRestriction const & __ptr64 __cdecl CRestriction::GetChild(unsigned int)const __ptr64
135?GetChild@CRestriction@@QEBAAEBVCPropertyRestriction@@I@Z
136; public: unsigned char __cdecl CDSBaseUpdate::GetCommand(void) __ptr64
137?GetCommand@CDSBaseUpdate@@QEAAEXZ
138; long __cdecl GetComputerDnsNameInternal(unsigned short * __ptr64,unsigned long * __ptr64)
139?GetComputerDnsNameInternal@@YAJPEAGPEAK@Z
140; long __cdecl GetComputerNameInternal(unsigned short * __ptr64,unsigned long * __ptr64)
141?GetComputerNameInternal@@YAJPEAGPEAK@Z
142GetDomainFQDNName
143; long __cdecl GetFalconKey(unsigned short const * __ptr64,struct HKEY__ * __ptr64 * __ptr64)
144?GetFalconKey@@YAJPEBGPEAPEAUHKEY__@@@Z
145GetFalconKeyValue
146; unsigned short const * __ptr64 __cdecl GetFalconSectionName(void)
147?GetFalconSectionName@@YAPEBGXZ
148; unsigned long __cdecl GetFalconServiceName(unsigned short * __ptr64,unsigned long)
149?GetFalconServiceName@@YAKPEAGK@Z
150; public: struct _GUID * __ptr64 __cdecl CDSBaseUpdate::GetGuidIdentifier(void) __ptr64
151?GetGuidIdentifier@CDSBaseUpdate@@QEAAPEAU_GUID@@XZ
152; public: struct _GUID const * __ptr64 __cdecl CDSBaseUpdate::GetMasterId(void) __ptr64
153?GetMasterId@CDSBaseUpdate@@QEAAPEBU_GUID@@XZ
154; public: unsigned long __cdecl CDSBaseUpdate::GetObjectType(void) __ptr64
155?GetObjectType@CDSBaseUpdate@@QEAAKXZ
156; public: unsigned long __cdecl CSortKey::GetOrder(void)const __ptr64
157?GetOrder@CSortKey@@QEBAKXZ
158; public: unsigned short * __ptr64 __cdecl CDSBaseUpdate::GetPathName(void) __ptr64
159?GetPathName@CDSBaseUpdate@@QEAAPEAGXZ
160; public: class CSeqNum const & __ptr64 __cdecl CDSBaseUpdate::GetPrevSeqNum(void)const __ptr64
161?GetPrevSeqNum@CDSBaseUpdate@@QEBAAEBVCSeqNum@@XZ
162; public: unsigned long const & __ptr64 __cdecl CSortKey::GetProperty(void)const __ptr64
163?GetProperty@CSortKey@@QEBAAEBKXZ
164; public: unsigned long * __ptr64 __cdecl CDSBaseUpdate::GetProps(void) __ptr64
165?GetProps@CDSBaseUpdate@@QEAAPEAKXZ
166; public: class CSeqNum const & __ptr64 __cdecl CDSBaseUpdate::GetPurgeSeqNum(void)const __ptr64
167?GetPurgeSeqNum@CDSBaseUpdate@@QEBAAEBVCSeqNum@@XZ
168; public: class CSeqNum const & __ptr64 __cdecl CDSBaseUpdate::GetSeqNum(void)const __ptr64
169?GetSeqNum@CDSBaseUpdate@@QEBAAEBVCSeqNum@@XZ
170; public: long __cdecl CDSBaseUpdate::GetSerializeSize(unsigned long * __ptr64) __ptr64
171?GetSerializeSize@CDSBaseUpdate@@QEAAJPEAK@Z
172GetSizes
173; long __cdecl GetThisServerIpPort(unsigned short * __ptr64,unsigned long)
174?GetThisServerIpPort@@YAJPEAGK@Z
175; public: struct tagPROPVARIANT * __ptr64 __cdecl CDSBaseUpdate::GetVars(void) __ptr64
176?GetVars@CDSBaseUpdate@@QEAAPEAUtagPROPVARIANT@@XZ
177; private: void __cdecl CRestriction::Grow(void) __ptr64
178?Grow@CRestriction@@AEAAXXZ
179; long __cdecl HashMessageProperties(unsigned __int64,unsigned char const * __ptr64,unsigned long,unsigned long,unsigned char const * __ptr64,unsigned long,unsigned short const * __ptr64,unsigned long,struct QUEUE_FORMAT const * __ptr64,struct QUEUE_FORMAT const * __ptr64)
180?HashMessageProperties@@YAJ_KPEBEKK1KPEBGKPEBUQUEUE_FORMAT@@3@Z
181; long __cdecl HashProperties(unsigned __int64,unsigned long,unsigned long * __ptr64,struct tagPROPVARIANT * __ptr64)
182?HashProperties@@YAJ_KKPEAKPEAUtagPROPVARIANT@@@Z
183; public: void __cdecl CCancelRpc::Init(void) __ptr64
184?Init@CCancelRpc@@QEAAXXZ
185; public: long __cdecl CDSBaseUpdate::Init(unsigned char const * __ptr64,unsigned long * __ptr64,int) __ptr64
186?Init@CDSBaseUpdate@@QEAAJPEBEPEAKH@Z
187; public: long __cdecl CDSBaseUpdate::Init(struct _GUID const * __ptr64,class CSeqNum const & __ptr64,class CSeqNum const & __ptr64,class CSeqNum const & __ptr64,int,unsigned char,unsigned long,struct _GUID const * __ptr64,unsigned long,unsigned long * __ptr64,struct tagPROPVARIANT * __ptr64) __ptr64
188?Init@CDSBaseUpdate@@QEAAJPEBU_GUID@@AEBVCSeqNum@@11HEK0KPEAKPEAUtagPROPVARIANT@@@Z
189; public: long __cdecl CDSBaseUpdate::Init(struct _GUID const * __ptr64,class CSeqNum const & __ptr64,class CSeqNum const & __ptr64,class CSeqNum const & __ptr64,int,unsigned char,unsigned long,unsigned short * __ptr64,unsigned long,unsigned long * __ptr64,struct tagPROPVARIANT * __ptr64) __ptr64
190?Init@CDSBaseUpdate@@QEAAJPEBU_GUID@@AEBVCSeqNum@@11HEKPEAGKPEAKPEAUtagPROPVARIANT@@@Z
191; private: long __cdecl CDSBaseUpdate::InitProperty(unsigned char const * __ptr64,unsigned long * __ptr64,unsigned long,struct tagPROPVARIANT & __ptr64) __ptr64
192?InitProperty@CDSBaseUpdate@@AEAAJPEBEPEAKKAEAUtagPROPVARIANT@@@Z
193; bool __cdecl IsLocalSystemCluster(void)
194?IsLocalSystemCluster@@YA_NXZ
195; public: void __cdecl COutputReport::KeepErrorHistory(unsigned short const * __ptr64,unsigned short,long) __ptr64
196?KeepErrorHistory@COutputReport@@QEAAXPEBGGJ@Z
197MQSealBuffer
198MQSec_AccessCheck
199MQSec_AccessCheckForSelf
200MQSec_AcquireCryptoProvider
201MQSec_CanGenerateAudit
202MQSec_ConvertSDToNT4Format
203MQSec_ConvertSDToNT5Format
204MQSec_CopySecurityDescriptor
205MQSec_GetAdminSid
206MQSec_GetAnonymousSid
207MQSec_GetCryptoProvProperty
208MQSec_GetDefaultSecDescriptor
209MQSec_GetImpersonationObject
210MQSec_GetLocalMachineSid
211MQSec_GetLocalSystemSid
212MQSec_GetNetworkServiceSid
213MQSec_GetProcessSid
214MQSec_GetProcessUserSid
215MQSec_GetPubKeysFromDS
216MQSec_GetThreadUserSid
217MQSec_GetUserType
218MQSec_GetWorldSid
219MQSec_IsAnonymusSid
220MQSec_IsDC
221MQSec_IsGuestSid
222MQSec_IsNetworkServiceSid
223MQSec_IsSystemSid
224MQSec_IsUnAuthenticatedUser
225MQSec_MakeAbsoluteSD
226MQSec_MakeSelfRelative
227MQSec_MergeSecurityDescriptors
228MQSec_PackPublicKey
229MQSec_RpcAuthnLevel
230MQSec_SetLocalRpcMutualAuth
231MQSec_SetPrivilegeInThread
232MQSec_SetSecurityDescriptorDacl
233MQSec_StorePubKeys
234MQSec_StorePubKeysInDS
235MQSec_TraceThreadTokenInfo
236MQSec_UnpackPublicKey
237MQSec_UpdateLocalMachineSid
238; long __cdecl MQSetCaConfig(unsigned long,class MQ_CA_CONFIG * __ptr64)
239?MQSetCaConfig@@YAJKPEAVMQ_CA_CONFIG@@@Z
240MQSigHashMessageProperties
241MQUInitGlobalScurityVars
242MQsspi_InitServerAuthntication
243; private: void __cdecl CCancelRpc::ProcessEvents(void) __ptr64
244?ProcessEvents@CCancelRpc@@AEAAXXZ
245; void __cdecl ProduceRPCErrorTracing(unsigned short * __ptr64,unsigned long)
246?ProduceRPCErrorTracing@@YAXPEAGK@Z
247; public: unsigned long __cdecl CPropertyRestriction::Relation(void) __ptr64
248?Relation@CPropertyRestriction@@QEAAKXZ
249; public: void __cdecl CCancelRpc::Remove(void * __ptr64) __ptr64
250?Remove@CCancelRpc@@QEAAXPEAX@Z
251; public: void __cdecl CColumns::Remove(unsigned int) __ptr64
252?Remove@CColumns@@QEAAXI@Z
253; public: void __cdecl CSort::Remove(unsigned int) __ptr64
254?Remove@CSort@@QEAAXI@Z
255; class COutputReport Report
256?Report@@3VCOutputReport@@A DATA
257; public: unsigned long __cdecl CCancelRpc::RpcCancelTimeout(void) __ptr64
258?RpcCancelTimeout@CCancelRpc@@QEAAKXZ
259; public: long __cdecl CDSBaseUpdate::Serialize(unsigned char * __ptr64,unsigned long * __ptr64,int) __ptr64
260?Serialize@CDSBaseUpdate@@QEAAJPEAEPEAKH@Z
261; private: long __cdecl CDSBaseUpdate::SerializeProperty(struct tagPROPVARIANT & __ptr64,unsigned char * __ptr64,unsigned long * __ptr64) __ptr64
262?SerializeProperty@CDSBaseUpdate@@AEAAJAEAUtagPROPVARIANT@@PEAEPEAK@Z
263ServerAcceptSecCtx
264; public: void __cdecl CRestriction::SetChild(class CPropertyRestriction const & __ptr64,unsigned int) __ptr64
265?SetChild@CRestriction@@QEAAXAEBVCPropertyRestriction@@I@Z
266SetFalconKeyValue
267SetFalconServiceName
268; public: void __cdecl CSortKey::SetOrder(unsigned long const & __ptr64) __ptr64
269?SetOrder@CSortKey@@QEAAXAEBK@Z
270; public: void __cdecl CDSBaseUpdate::SetPrevSeqNum(class CSeqNum & __ptr64) __ptr64
271?SetPrevSeqNum@CDSBaseUpdate@@QEAAXAEAVCSeqNum@@@Z
272; public: void __cdecl CPropertyRestriction::SetProperty(unsigned long const & __ptr64) __ptr64
273?SetProperty@CPropertyRestriction@@QEAAXAEBK@Z
274; public: void __cdecl CSortKey::SetProperty(unsigned long const & __ptr64) __ptr64
275?SetProperty@CSortKey@@QEAAXAEBK@Z
276; public: void __cdecl CPropertyRestriction::SetRelation(unsigned long) __ptr64
277?SetRelation@CPropertyRestriction@@QEAAXK@Z
278; public: void __cdecl CPropertyRestriction::SetValue(struct tagBLOB & __ptr64) __ptr64
279?SetValue@CPropertyRestriction@@QEAAXAEAUtagBLOB@@@Z
280; public: void __cdecl CPropertyRestriction::SetValue(class CMQVariant const & __ptr64) __ptr64
281?SetValue@CPropertyRestriction@@QEAAXAEBVCMQVariant@@@Z
282; public: void __cdecl CPropertyRestriction::SetValue(unsigned char) __ptr64
283?SetValue@CPropertyRestriction@@QEAAXE@Z
284; public: void __cdecl CPropertyRestriction::SetValue(short) __ptr64
285?SetValue@CPropertyRestriction@@QEAAXF@Z
286; public: void __cdecl CPropertyRestriction::SetValue(long) __ptr64
287?SetValue@CPropertyRestriction@@QEAAXJ@Z
288; public: void __cdecl CPropertyRestriction::SetValue(unsigned long) __ptr64
289?SetValue@CPropertyRestriction@@QEAAXK@Z
290; public: void __cdecl CPropertyRestriction::SetValue(unsigned short * __ptr64) __ptr64
291?SetValue@CPropertyRestriction@@QEAAXPEAG@Z
292; public: void __cdecl CPropertyRestriction::SetValue(struct _GUID * __ptr64) __ptr64
293?SetValue@CPropertyRestriction@@QEAAXPEAU_GUID@@@Z
294; public: void __cdecl CPropertyRestriction::SetValue(struct tagCACLSID * __ptr64) __ptr64
295?SetValue@CPropertyRestriction@@QEAAXPEAUtagCACLSID@@@Z
296; public: void __cdecl CPropertyRestriction::SetValue(struct tagCALPWSTR * __ptr64) __ptr64
297?SetValue@CPropertyRestriction@@QEAAXPEAUtagCALPWSTR@@@Z
298; public: void __cdecl CCancelRpc::ShutDownCancelThread(void) __ptr64
299?ShutDownCancelThread@CCancelRpc@@QEAAXXZ
300ShutDownDebugWindow
301; unsigned __int64 __cdecl UnalignedWcslen(unsigned short const * __ptr64 __ptr64)
302?UnalignedWcslen@@YA_KPEFBG@Z
303; public: class CMQVariant const & __ptr64 __cdecl CPropertyRestriction::Value(void) __ptr64
304?Value@CPropertyRestriction@@QEAAAEBVCMQVariant@@XZ
305; long __cdecl XactGetDTC(struct IUnknown * __ptr64 * __ptr64)
306?XactGetDTC@@YAJPEAPEAUIUnknown@@@Z
307; long __cdecl XactGetWhereabouts(unsigned long * __ptr64,unsigned char * __ptr64)
308?XactGetWhereabouts@@YAJPEAKPEAE@Z
309; class CCancelRpc g_CancelRpc
310?g_CancelRpc@@3VCCancelRpc@@A DATA
311; class CHCryptProv g_hProvVer
312?g_hProvVer@@3VCHCryptProv@@A DATA
313; public: unsigned char __cdecl CDSBaseUpdate::getNumOfProps(void) __ptr64
314?getNumOfProps@CDSBaseUpdate@@QEAAEXZ
315; long __cdecl mqrpcBindQMService(unsigned short * __ptr64,unsigned short * __ptr64,unsigned long * __ptr64,void * __ptr64 * __ptr64,enum PORTTYPE,unsigned long (__cdecl*)(void * __ptr64,unsigned long),unsigned long)
316?mqrpcBindQMService@@YAJPEAG0PEAKPEAPEAXW4PORTTYPE@@P6AKPEAXK@ZK@Z
317; unsigned long __cdecl mqrpcGetLocalCallPID(void * __ptr64)
318?mqrpcGetLocalCallPID@@YAKPEAX@Z
319; int __cdecl mqrpcIsLocalCall(void * __ptr64)
320?mqrpcIsLocalCall@@YAHPEAX@Z
321; int __cdecl mqrpcIsTcpipTransport(void * __ptr64)
322?mqrpcIsTcpipTransport@@YAHPEAX@Z
323; long __cdecl mqrpcUnbindQMService(void * __ptr64 * __ptr64,unsigned short * __ptr64 * __ptr64)
324?mqrpcUnbindQMService@@YAJPEAPEAXPEAPEAG@Z
325MQSigCloneCertFromReg
326MQSigCloneCertFromSysStore
327MQSigCreateCertificate
328MQSigOpenUserCertStore
329MSMQGetOperatingSystem
lib/libc/mingw/lib64/mqupgrd.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file MQUPGRD.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MQUPGRD.dll
8EXPORTS
9CleanupOnCluster
10MqCreateMsmqObj
lib/libc/mingw/lib64/mqutil.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file mqutil.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mqutil.dll
8EXPORTS
9MQGetResourceHandle
lib/libc/mingw/lib64/msadcs.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file MSADCS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSADCS.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/msado15.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file MSADO15.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSADO15.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13RNIGetCompatibleVersion
14com_ms_wfc_data_Field_getBoolean
15com_ms_wfc_data_Field_getByte
16com_ms_wfc_data_Field_getBytes
17com_ms_wfc_data_Field_getDataTimestamp
18com_ms_wfc_data_Field_getDouble
19com_ms_wfc_data_Field_getFloat
20com_ms_wfc_data_Field_getInt
21com_ms_wfc_data_Field_getLong
22com_ms_wfc_data_Field_getShort
23com_ms_wfc_data_Field_getString
24com_ms_wfc_data_Field_isNull
25com_ms_wfc_data_Field_loadMsjava
26com_ms_wfc_data_Field_setDataDate
lib/libc/mingw/lib64/msasn1.def created+274
......@@ -0,0 +1,274 @@
1;
2; Exports of file MSASN1.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSASN1.dll
8EXPORTS
9ASN1BERDecBitString
10ASN1BERDecBitString2
11ASN1BERDecBool
12ASN1BERDecChar16String
13ASN1BERDecChar32String
14ASN1BERDecCharString
15ASN1BERDecCheck
16ASN1BERDecDouble
17ASN1BERDecEndOfContents
18ASN1BERDecEoid
19ASN1BERDecExplicitTag
20ASN1BERDecFlush
21ASN1BERDecGeneralizedTime
22ASN1BERDecLength
23ASN1BERDecMultibyteString
24ASN1BERDecNotEndOfContents
25ASN1BERDecNull
26ASN1BERDecObjectIdentifier
27ASN1BERDecObjectIdentifier2
28ASN1BERDecOctetString
29ASN1BERDecOctetString2
30ASN1BERDecOpenType
31ASN1BERDecOpenType2
32ASN1BERDecPeekTag
33ASN1BERDecS16Val
34ASN1BERDecS32Val
35ASN1BERDecS8Val
36ASN1BERDecSXVal
37ASN1BERDecSkip
38ASN1BERDecTag
39ASN1BERDecU16Val
40ASN1BERDecU32Val
41ASN1BERDecU8Val
42ASN1BERDecUTCTime
43ASN1BERDecUTF8String
44ASN1BERDecZeroChar16String
45ASN1BERDecZeroChar32String
46ASN1BERDecZeroCharString
47ASN1BERDecZeroMultibyteString
48ASN1BERDotVal2Eoid
49ASN1BEREncBitString
50ASN1BEREncBool
51ASN1BEREncChar16String
52ASN1BEREncChar32String
53ASN1BEREncCharString
54ASN1BEREncCheck
55ASN1BEREncDouble
56ASN1BEREncEndOfContents
57ASN1BEREncEoid
58ASN1BEREncExplicitTag
59ASN1BEREncFlush
60ASN1BEREncGeneralizedTime
61ASN1BEREncLength
62ASN1BEREncMultibyteString
63ASN1BEREncNull
64ASN1BEREncObjectIdentifier
65ASN1BEREncObjectIdentifier2
66ASN1BEREncOctetString
67ASN1BEREncOpenType
68ASN1BEREncRemoveZeroBits
69ASN1BEREncS32
70ASN1BEREncSX
71ASN1BEREncTag
72ASN1BEREncU32
73ASN1BEREncUTCTime
74ASN1BEREncUTF8String
75ASN1BEREncZeroMultibyteString
76ASN1BEREoid2DotVal
77ASN1BEREoid_free
78ASN1CEREncBeginBlk
79ASN1CEREncBitString
80ASN1CEREncChar16String
81ASN1CEREncChar32String
82ASN1CEREncCharString
83ASN1CEREncEndBlk
84ASN1CEREncFlushBlkElement
85ASN1CEREncGeneralizedTime
86ASN1CEREncMultibyteString
87ASN1CEREncNewBlkElement
88ASN1CEREncOctetString
89ASN1CEREncUTCTime
90ASN1CEREncZeroMultibyteString
91ASN1DecAbort
92ASN1DecAlloc
93ASN1DecDone
94ASN1DecRealloc
95ASN1DecSetError
96ASN1EncAbort
97ASN1EncDone
98ASN1EncSetError
99ASN1Free
100ASN1PERDecAlignment
101ASN1PERDecBit
102ASN1PERDecBits
103ASN1PERDecBoolean
104ASN1PERDecChar16String
105ASN1PERDecChar32String
106ASN1PERDecCharString
107ASN1PERDecCharStringNoAlloc
108ASN1PERDecComplexChoice
109ASN1PERDecDouble
110ASN1PERDecExtension
111ASN1PERDecFlush
112ASN1PERDecFragmented
113ASN1PERDecFragmentedChar16String
114ASN1PERDecFragmentedChar32String
115ASN1PERDecFragmentedCharString
116ASN1PERDecFragmentedExtension
117ASN1PERDecFragmentedIntx
118ASN1PERDecFragmentedLength
119ASN1PERDecFragmentedTableChar16String
120ASN1PERDecFragmentedTableChar32String
121ASN1PERDecFragmentedTableCharString
122ASN1PERDecFragmentedUIntx
123ASN1PERDecFragmentedZeroChar16String
124ASN1PERDecFragmentedZeroChar32String
125ASN1PERDecFragmentedZeroCharString
126ASN1PERDecFragmentedZeroTableChar16String
127ASN1PERDecFragmentedZeroTableChar32String
128ASN1PERDecFragmentedZeroTableCharString
129ASN1PERDecGeneralizedTime
130ASN1PERDecInteger
131ASN1PERDecMultibyteString
132ASN1PERDecN16Val
133ASN1PERDecN32Val
134ASN1PERDecN8Val
135ASN1PERDecNormallySmallExtension
136ASN1PERDecObjectIdentifier
137ASN1PERDecObjectIdentifier2
138ASN1PERDecOctetString_FixedSize
139ASN1PERDecOctetString_FixedSizeEx
140ASN1PERDecOctetString_NoSize
141ASN1PERDecOctetString_VarSize
142ASN1PERDecOctetString_VarSizeEx
143ASN1PERDecS16Val
144ASN1PERDecS32Val
145ASN1PERDecS8Val
146ASN1PERDecSXVal
147ASN1PERDecSeqOf_NoSize
148ASN1PERDecSeqOf_VarSize
149ASN1PERDecSimpleChoice
150ASN1PERDecSimpleChoiceEx
151ASN1PERDecSkipBits
152ASN1PERDecSkipFragmented
153ASN1PERDecSkipNormallySmall
154ASN1PERDecSkipNormallySmallExtension
155ASN1PERDecSkipNormallySmallExtensionFragmented
156ASN1PERDecTableChar16String
157ASN1PERDecTableChar32String
158ASN1PERDecTableCharString
159ASN1PERDecTableCharStringNoAlloc
160ASN1PERDecU16Val
161ASN1PERDecU32Val
162ASN1PERDecU8Val
163ASN1PERDecUTCTime
164ASN1PERDecUXVal
165ASN1PERDecUnsignedInteger
166ASN1PERDecUnsignedShort
167ASN1PERDecZeroChar16String
168ASN1PERDecZeroChar32String
169ASN1PERDecZeroCharString
170ASN1PERDecZeroCharStringNoAlloc
171ASN1PERDecZeroTableChar16String
172ASN1PERDecZeroTableChar32String
173ASN1PERDecZeroTableCharString
174ASN1PERDecZeroTableCharStringNoAlloc
175ASN1PEREncAlignment
176ASN1PEREncBit
177ASN1PEREncBitIntx
178ASN1PEREncBitVal
179ASN1PEREncBits
180ASN1PEREncBoolean
181ASN1PEREncChar16String
182ASN1PEREncChar32String
183ASN1PEREncCharString
184ASN1PEREncCheckExtensions
185ASN1PEREncComplexChoice
186ASN1PEREncDouble
187ASN1PEREncExtensionBitClear
188ASN1PEREncExtensionBitSet
189ASN1PEREncFlush
190ASN1PEREncFlushFragmentedToParent
191ASN1PEREncFragmented
192ASN1PEREncFragmentedChar16String
193ASN1PEREncFragmentedChar32String
194ASN1PEREncFragmentedCharString
195ASN1PEREncFragmentedIntx
196ASN1PEREncFragmentedLength
197ASN1PEREncFragmentedTableChar16String
198ASN1PEREncFragmentedTableChar32String
199ASN1PEREncFragmentedTableCharString
200ASN1PEREncFragmentedUIntx
201ASN1PEREncGeneralizedTime
202ASN1PEREncInteger
203ASN1PEREncMultibyteString
204ASN1PEREncNormallySmall
205ASN1PEREncNormallySmallBits
206ASN1PEREncObjectIdentifier
207ASN1PEREncObjectIdentifier2
208ASN1PEREncOctetString_FixedSize
209ASN1PEREncOctetString_FixedSizeEx
210ASN1PEREncOctetString_NoSize
211ASN1PEREncOctetString_VarSize
212ASN1PEREncOctetString_VarSizeEx
213ASN1PEREncOctets
214ASN1PEREncRemoveZeroBits
215ASN1PEREncSeqOf_NoSize
216ASN1PEREncSeqOf_VarSize
217ASN1PEREncSimpleChoice
218ASN1PEREncSimpleChoiceEx
219ASN1PEREncTableChar16String
220ASN1PEREncTableChar32String
221ASN1PEREncTableCharString
222ASN1PEREncUTCTime
223ASN1PEREncUnsignedInteger
224ASN1PEREncUnsignedShort
225ASN1PEREncZero
226ASN1PERFreeSeqOf
227ASN1_CloseDecoder
228ASN1_CloseEncoder
229ASN1_CloseEncoder2
230ASN1_CloseModule
231ASN1_CreateDecoder
232ASN1_CreateDecoderEx
233ASN1_CreateEncoder
234ASN1_CreateModule
235ASN1_Decode
236ASN1_Encode
237ASN1_FreeDecoded
238ASN1_FreeEncoded
239ASN1_GetDecoderOption
240ASN1_GetEncoderOption
241ASN1_SetDecoderOption
242ASN1_SetEncoderOption
243ASN1bitstring_cmp
244ASN1bitstring_free
245ASN1char16string_cmp
246ASN1char16string_free
247ASN1char32string_cmp
248ASN1char32string_free
249ASN1charstring_cmp
250ASN1charstring_free
251ASN1generalizedtime_cmp
252ASN1intx2int32
253ASN1intx2uint32
254ASN1intx_add
255ASN1intx_free
256ASN1intx_setuint32
257ASN1intx_sub
258ASN1intx_uoctets
259ASN1intxisuint32
260ASN1objectidentifier2_cmp
261ASN1objectidentifier_cmp
262ASN1objectidentifier_free
263ASN1octetstring_cmp
264ASN1octetstring_free
265ASN1open_cmp
266ASN1open_free
267ASN1uint32_uoctets
268ASN1utctime_cmp
269ASN1utf8string_free
270ASN1ztchar16string_cmp
271ASN1ztchar16string_free
272ASN1ztchar32string_free
273ASN1ztcharstring_cmp
274ASN1ztcharstring_free
lib/libc/mingw/lib64/mscms.def deleted-100
......@@ -1,100 +0,0 @@
1;
2; Definition file of mscms.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "mscms.dll"
7EXPORTS
8AssociateColorProfileWithDeviceA
9AssociateColorProfileWithDeviceW
10CheckBitmapBits
11CheckColors
12CloseColorProfile
13ColorCplGetDefaultProfileScope
14ColorCplGetDefaultRenderingIntentScope
15ColorCplGetProfileProperties
16ColorCplHasSystemWideAssociationListChanged
17ColorCplInitialize
18ColorCplLoadAssociationList
19ColorCplMergeAssociationLists
20ColorCplOverwritePerUserAssociationList
21ColorCplReleaseProfileProperties
22ColorCplResetSystemWideAssociationListChangedWarning
23ColorCplSaveAssociationList
24ColorCplSetUsePerUserProfiles
25ColorCplUninitialize
26ConvertColorNameToIndex
27ConvertIndexToColorName
28CreateColorTransformA
29CreateColorTransformW
30CreateDeviceLinkProfile
31CreateMultiProfileTransform
32CreateProfileFromLogColorSpaceA
33CreateProfileFromLogColorSpaceW
34DeleteColorTransform
35DeviceRenameEvent
36DisassociateColorProfileFromDeviceA
37DisassociateColorProfileFromDeviceW
38EnumColorProfilesA
39EnumColorProfilesW
40GenerateCopyFilePaths
41GetCMMInfo
42GetColorDirectoryA
43GetColorDirectoryW
44GetColorProfileElement
45GetColorProfileElementTag
46GetColorProfileFromHandle
47GetColorProfileHeader
48GetCountColorProfileElements
49GetNamedProfileInfo
50GetPS2ColorRenderingDictionary
51GetPS2ColorRenderingIntent
52GetPS2ColorSpaceArray
53GetStandardColorSpaceProfileA
54GetStandardColorSpaceProfileW
55InstallColorProfileA
56InstallColorProfileW
57InternalGetDeviceConfig
58InternalGetPS2CSAFromLCS
59InternalGetPS2ColorRenderingDictionary
60InternalGetPS2ColorSpaceArray
61InternalGetPS2PreviewCRD
62InternalSetDeviceConfig
63IsColorProfileTagPresent
64IsColorProfileValid
65OpenColorProfileA
66OpenColorProfileW
67RegisterCMMA
68RegisterCMMW
69SelectCMM
70SetColorProfileElement
71SetColorProfileElementReference
72SetColorProfileElementSize
73SetColorProfileHeader
74SetStandardColorSpaceProfileA
75SetStandardColorSpaceProfileW
76SpoolerCopyFileEvent
77TranslateBitmapBits
78TranslateColors
79UninstallColorProfileA
80UninstallColorProfileW
81UnregisterCMMA
82UnregisterCMMW
83WcsAssociateColorProfileWithDevice
84WcsCheckColors
85WcsCreateIccProfile
86WcsDisassociateColorProfileFromDevice
87WcsEnumColorProfiles
88WcsEnumColorProfilesSize
89WcsGetDefaultColorProfile
90WcsGetDefaultColorProfileSize
91WcsGetDefaultRenderingIntent
92WcsGetUsePerUserProfiles
93WcsGpCanInstallOrUninstallProfiles
94WcsGpCanModifyDeviceAssociationList
95WcsOpenColorProfileA
96WcsOpenColorProfileW
97WcsSetDefaultColorProfile
98WcsSetDefaultRenderingIntent
99WcsSetUsePerUserProfiles
100WcsTranslateColors
lib/libc/mingw/lib64/msdart.def created+1013
......@@ -0,0 +1,1013 @@
1;
2; Exports of file MSDART.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSDART.DLL
8EXPORTS
9; public: __cdecl CCritSec::CCritSec(void) __ptr64
10??0CCritSec@@QEAA@XZ
11; public: __cdecl CDoubleList::CDoubleList(void) __ptr64
12??0CDoubleList@@QEAA@XZ
13; public: __cdecl CEXAutoBackupFile::CEXAutoBackupFile(unsigned short const * __ptr64) __ptr64
14??0CEXAutoBackupFile@@QEAA@PEBG@Z
15; public: __cdecl CEXAutoBackupFile::CEXAutoBackupFile(void) __ptr64
16??0CEXAutoBackupFile@@QEAA@XZ
17; public: __cdecl CExFileOperation::CExFileOperation(void) __ptr64
18??0CExFileOperation@@QEAA@XZ
19; public: __cdecl CFakeLock::CFakeLock(void) __ptr64
20??0CFakeLock@@QEAA@XZ
21; private: __cdecl CLKRHashTable::CLKRHashTable(class CLKRHashTable const & __ptr64) __ptr64
22??0CLKRHashTable@@AEAA@AEBV0@@Z
23; public: __cdecl CLKRHashTable::CLKRHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,unsigned long) __ptr64
24??0CLKRHashTable@@QEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKK@Z
25; public: __cdecl CLKRHashTableStats::CLKRHashTableStats(void) __ptr64
26??0CLKRHashTableStats@@QEAA@XZ
27; private: __cdecl CLKRLinearHashTable::CLKRLinearHashTable(class CLKRLinearHashTable const & __ptr64) __ptr64
28??0CLKRLinearHashTable@@AEAA@AEBV0@@Z
29; private: __cdecl CLKRLinearHashTable::CLKRLinearHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,class CLKRHashTable * __ptr64) __ptr64
30??0CLKRLinearHashTable@@AEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKPEAVCLKRHashTable@@@Z
31; public: __cdecl CLKRLinearHashTable::CLKRLinearHashTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,unsigned long) __ptr64
32??0CLKRLinearHashTable@@QEAA@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKK@Z
33; public: __cdecl CLockedDoubleList::CLockedDoubleList(void) __ptr64
34??0CLockedDoubleList@@QEAA@XZ
35; public: __cdecl CLockedSingleList::CLockedSingleList(void) __ptr64
36??0CLockedSingleList@@QEAA@XZ
37; public: __cdecl CReaderWriterLock2::CReaderWriterLock2(void) __ptr64
38??0CReaderWriterLock2@@QEAA@XZ
39; public: __cdecl CReaderWriterLock3::CReaderWriterLock3(void) __ptr64
40??0CReaderWriterLock3@@QEAA@XZ
41; public: __cdecl CReaderWriterLock::CReaderWriterLock(void) __ptr64
42??0CReaderWriterLock@@QEAA@XZ
43; public: __cdecl CSingleList::CSingleList(void) __ptr64
44??0CSingleList@@QEAA@XZ
45; public: __cdecl CSmallSpinLock::CSmallSpinLock(void) __ptr64
46??0CSmallSpinLock@@QEAA@XZ
47; public: __cdecl CSpinLock::CSpinLock(void) __ptr64
48??0CSpinLock@@QEAA@XZ
49; public: __cdecl CCritSec::~CCritSec(void) __ptr64
50??1CCritSec@@QEAA@XZ
51; public: __cdecl CDoubleList::~CDoubleList(void) __ptr64
52??1CDoubleList@@QEAA@XZ
53; public: __cdecl CEXAutoBackupFile::~CEXAutoBackupFile(void) __ptr64
54??1CEXAutoBackupFile@@QEAA@XZ
55; public: __cdecl CExFileOperation::~CExFileOperation(void) __ptr64
56??1CExFileOperation@@QEAA@XZ
57; public: __cdecl CFakeLock::~CFakeLock(void) __ptr64
58??1CFakeLock@@QEAA@XZ
59; public: __cdecl CLKRHashTable::~CLKRHashTable(void) __ptr64
60??1CLKRHashTable@@QEAA@XZ
61; public: __cdecl CLKRLinearHashTable::~CLKRLinearHashTable(void) __ptr64
62??1CLKRLinearHashTable@@QEAA@XZ
63; public: __cdecl CLockedDoubleList::~CLockedDoubleList(void) __ptr64
64??1CLockedDoubleList@@QEAA@XZ
65; public: __cdecl CLockedSingleList::~CLockedSingleList(void) __ptr64
66??1CLockedSingleList@@QEAA@XZ
67; public: __cdecl CReaderWriterLock2::~CReaderWriterLock2(void) __ptr64
68??1CReaderWriterLock2@@QEAA@XZ
69; public: __cdecl CReaderWriterLock3::~CReaderWriterLock3(void) __ptr64
70??1CReaderWriterLock3@@QEAA@XZ
71; public: __cdecl CReaderWriterLock::~CReaderWriterLock(void) __ptr64
72??1CReaderWriterLock@@QEAA@XZ
73; public: __cdecl CSingleList::~CSingleList(void) __ptr64
74??1CSingleList@@QEAA@XZ
75; public: __cdecl CSmallSpinLock::~CSmallSpinLock(void) __ptr64
76??1CSmallSpinLock@@QEAA@XZ
77; public: __cdecl CSpinLock::~CSpinLock(void) __ptr64
78??1CSpinLock@@QEAA@XZ
79; public: class CLockBase<1,1,3,1,3,2> & __ptr64 __cdecl CLockBase<1,1,3,1,3,2>::operator=(class CLockBase<1,1,3,1,3,2> const & __ptr64) __ptr64
80??4?$CLockBase@$00$00$02$00$02$01@@QEAAAEAV0@AEBV0@@Z
81; public: class CLockBase<2,1,1,1,3,2> & __ptr64 __cdecl CLockBase<2,1,1,1,3,2>::operator=(class CLockBase<2,1,1,1,3,2> const & __ptr64) __ptr64
82??4?$CLockBase@$01$00$00$00$02$01@@QEAAAEAV0@AEBV0@@Z
83; public: class CLockBase<3,1,1,1,1,1> & __ptr64 __cdecl CLockBase<3,1,1,1,1,1>::operator=(class CLockBase<3,1,1,1,1,1> const & __ptr64) __ptr64
84??4?$CLockBase@$02$00$00$00$00$00@@QEAAAEAV0@AEBV0@@Z
85; public: class CLockBase<4,1,1,2,3,3> & __ptr64 __cdecl CLockBase<4,1,1,2,3,3>::operator=(class CLockBase<4,1,1,2,3,3> const & __ptr64) __ptr64
86??4?$CLockBase@$03$00$00$01$02$02@@QEAAAEAV0@AEBV0@@Z
87; public: class CLockBase<5,2,2,1,3,2> & __ptr64 __cdecl CLockBase<5,2,2,1,3,2>::operator=(class CLockBase<5,2,2,1,3,2> const & __ptr64) __ptr64
88??4?$CLockBase@$04$01$01$00$02$01@@QEAAAEAV0@AEBV0@@Z
89; public: class CLockBase<6,2,2,1,3,2> & __ptr64 __cdecl CLockBase<6,2,2,1,3,2>::operator=(class CLockBase<6,2,2,1,3,2> const & __ptr64) __ptr64
90??4?$CLockBase@$05$01$01$00$02$01@@QEAAAEAV0@AEBV0@@Z
91; public: class CLockBase<7,2,1,1,3,2> & __ptr64 __cdecl CLockBase<7,2,1,1,3,2>::operator=(class CLockBase<7,2,1,1,3,2> const & __ptr64) __ptr64
92??4?$CLockBase@$06$01$00$00$02$01@@QEAAAEAV0@AEBV0@@Z
93; public: class CCritSec & __ptr64 __cdecl CCritSec::operator=(class CCritSec const & __ptr64) __ptr64
94??4CCritSec@@QEAAAEAV0@AEBV0@@Z
95; public: class CDoubleList & __ptr64 __cdecl CDoubleList::operator=(class CDoubleList const & __ptr64) __ptr64
96??4CDoubleList@@QEAAAEAV0@AEBV0@@Z
97; public: class CEXAutoBackupFile & __ptr64 __cdecl CEXAutoBackupFile::operator=(class CEXAutoBackupFile const & __ptr64) __ptr64
98??4CEXAutoBackupFile@@QEAAAEAV0@AEBV0@@Z
99; public: class CExFileOperation & __ptr64 __cdecl CExFileOperation::operator=(class CExFileOperation const & __ptr64) __ptr64
100??4CExFileOperation@@QEAAAEAV0@AEBV0@@Z
101; public: class CFakeLock & __ptr64 __cdecl CFakeLock::operator=(class CFakeLock const & __ptr64) __ptr64
102??4CFakeLock@@QEAAAEAV0@AEBV0@@Z
103; private: class CLKRHashTable & __ptr64 __cdecl CLKRHashTable::operator=(class CLKRHashTable const & __ptr64) __ptr64
104??4CLKRHashTable@@AEAAAEAV0@AEBV0@@Z
105; public: class CLKRHashTableStats & __ptr64 __cdecl CLKRHashTableStats::operator=(class CLKRHashTableStats const & __ptr64) __ptr64
106??4CLKRHashTableStats@@QEAAAEAV0@AEBV0@@Z
107; private: class CLKRLinearHashTable & __ptr64 __cdecl CLKRLinearHashTable::operator=(class CLKRLinearHashTable const & __ptr64) __ptr64
108??4CLKRLinearHashTable@@AEAAAEAV0@AEBV0@@Z
109; public: class CLockedDoubleList & __ptr64 __cdecl CLockedDoubleList::operator=(class CLockedDoubleList const & __ptr64) __ptr64
110??4CLockedDoubleList@@QEAAAEAV0@AEBV0@@Z
111; public: class CLockedSingleList & __ptr64 __cdecl CLockedSingleList::operator=(class CLockedSingleList const & __ptr64) __ptr64
112??4CLockedSingleList@@QEAAAEAV0@AEBV0@@Z
113; public: class CMdVersionInfo & __ptr64 __cdecl CMdVersionInfo::operator=(class CMdVersionInfo const & __ptr64) __ptr64
114??4CMdVersionInfo@@QEAAAEAV0@AEBV0@@Z
115; public: class CReaderWriterLock2 & __ptr64 __cdecl CReaderWriterLock2::operator=(class CReaderWriterLock2 const & __ptr64) __ptr64
116??4CReaderWriterLock2@@QEAAAEAV0@AEBV0@@Z
117; public: class CReaderWriterLock3 & __ptr64 __cdecl CReaderWriterLock3::operator=(class CReaderWriterLock3 const & __ptr64) __ptr64
118??4CReaderWriterLock3@@QEAAAEAV0@AEBV0@@Z
119; public: class CReaderWriterLock & __ptr64 __cdecl CReaderWriterLock::operator=(class CReaderWriterLock const & __ptr64) __ptr64
120??4CReaderWriterLock@@QEAAAEAV0@AEBV0@@Z
121; public: class CSingleList & __ptr64 __cdecl CSingleList::operator=(class CSingleList const & __ptr64) __ptr64
122??4CSingleList@@QEAAAEAV0@AEBV0@@Z
123; public: class CSmallSpinLock & __ptr64 __cdecl CSmallSpinLock::operator=(class CSmallSpinLock const & __ptr64) __ptr64
124??4CSmallSpinLock@@QEAAAEAV0@AEBV0@@Z
125; public: class CSpinLock & __ptr64 __cdecl CSpinLock::operator=(class CSpinLock const & __ptr64) __ptr64
126??4CSpinLock@@QEAAAEAV0@AEBV0@@Z
127; public: unsigned long __cdecl CLKRHashTable::Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
128?Apply@CLKRHashTable@@QEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@@Z
129; public: unsigned long __cdecl CLKRLinearHashTable::Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
130?Apply@CLKRLinearHashTable@@QEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@@Z
131; public: unsigned long __cdecl CLKRHashTable::ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
132?ApplyIf@CLKRHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
133; public: unsigned long __cdecl CLKRLinearHashTable::ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE) __ptr64
134?ApplyIf@CLKRLinearHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
135; public: long __cdecl CEXAutoBackupFile::BackupFile(unsigned short const * __ptr64) __ptr64
136?BackupFile@CEXAutoBackupFile@@QEAAJPEBG@Z
137; public: static long __cdecl CLKRHashTableStats::BucketIndex(long)
138?BucketIndex@CLKRHashTableStats@@SAJJ@Z
139; public: static long __cdecl CLKRHashTableStats::BucketSize(long)
140?BucketSize@CLKRHashTableStats@@SAJJ@Z
141; public: static long const * __ptr64 __cdecl CLKRHashTableStats::BucketSizes(void)
142?BucketSizes@CLKRHashTableStats@@SAPEBJXZ
143; public: int __cdecl CLKRHashTable::CheckTable(void)const __ptr64
144?CheckTable@CLKRHashTable@@QEBAHXZ
145; public: int __cdecl CLKRLinearHashTable::CheckTable(void)const __ptr64
146?CheckTable@CLKRLinearHashTable@@QEBAHXZ
147; public: static char const * __ptr64 __cdecl CCritSec::ClassName(void)
148?ClassName@CCritSec@@SAPEBDXZ
149; public: static char const * __ptr64 __cdecl CFakeLock::ClassName(void)
150?ClassName@CFakeLock@@SAPEBDXZ
151; public: static char const * __ptr64 __cdecl CLKRHashTable::ClassName(void)
152?ClassName@CLKRHashTable@@SAPEBDXZ
153; public: static char const * __ptr64 __cdecl CLKRLinearHashTable::ClassName(void)
154?ClassName@CLKRLinearHashTable@@SAPEBDXZ
155; public: static char const * __ptr64 __cdecl CReaderWriterLock2::ClassName(void)
156?ClassName@CReaderWriterLock2@@SAPEBDXZ
157; public: static char const * __ptr64 __cdecl CReaderWriterLock3::ClassName(void)
158?ClassName@CReaderWriterLock3@@SAPEBDXZ
159; public: static char const * __ptr64 __cdecl CReaderWriterLock::ClassName(void)
160?ClassName@CReaderWriterLock@@SAPEBDXZ
161; public: static char const * __ptr64 __cdecl CSmallSpinLock::ClassName(void)
162?ClassName@CSmallSpinLock@@SAPEBDXZ
163; public: static char const * __ptr64 __cdecl CSpinLock::ClassName(void)
164?ClassName@CSpinLock@@SAPEBDXZ
165; public: void __cdecl CLKRHashTable::Clear(void) __ptr64
166?Clear@CLKRHashTable@@QEAAXXZ
167; public: void __cdecl CLKRLinearHashTable::Clear(void) __ptr64
168?Clear@CLKRLinearHashTable@@QEAAXXZ
169; public: enum LK_RETCODE __cdecl CLKRHashTable::CloseIterator(class CLKRHashTable::CIterator * __ptr64) __ptr64
170?CloseIterator@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
171; public: enum LK_RETCODE __cdecl CLKRHashTable::CloseIterator(class CLKRHashTable::CConstIterator * __ptr64)const __ptr64
172?CloseIterator@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
173; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::CloseIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
174?CloseIterator@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
175; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::CloseIterator(class CLKRLinearHashTable::CConstIterator * __ptr64)const __ptr64
176?CloseIterator@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
177; public: void __cdecl CCritSec::ConvertExclusiveToShared(void) __ptr64
178?ConvertExclusiveToShared@CCritSec@@QEAAXXZ
179; public: void __cdecl CFakeLock::ConvertExclusiveToShared(void) __ptr64
180?ConvertExclusiveToShared@CFakeLock@@QEAAXXZ
181; public: void __cdecl CLKRHashTable::ConvertExclusiveToShared(void)const __ptr64
182?ConvertExclusiveToShared@CLKRHashTable@@QEBAXXZ
183; public: void __cdecl CLKRLinearHashTable::ConvertExclusiveToShared(void)const __ptr64
184?ConvertExclusiveToShared@CLKRLinearHashTable@@QEBAXXZ
185; public: void __cdecl CReaderWriterLock2::ConvertExclusiveToShared(void) __ptr64
186?ConvertExclusiveToShared@CReaderWriterLock2@@QEAAXXZ
187; public: void __cdecl CReaderWriterLock3::ConvertExclusiveToShared(void) __ptr64
188?ConvertExclusiveToShared@CReaderWriterLock3@@QEAAXXZ
189; public: void __cdecl CReaderWriterLock::ConvertExclusiveToShared(void) __ptr64
190?ConvertExclusiveToShared@CReaderWriterLock@@QEAAXXZ
191; public: void __cdecl CSmallSpinLock::ConvertExclusiveToShared(void) __ptr64
192?ConvertExclusiveToShared@CSmallSpinLock@@QEAAXXZ
193; public: void __cdecl CSpinLock::ConvertExclusiveToShared(void) __ptr64
194?ConvertExclusiveToShared@CSpinLock@@QEAAXXZ
195; public: void __cdecl CCritSec::ConvertSharedToExclusive(void) __ptr64
196?ConvertSharedToExclusive@CCritSec@@QEAAXXZ
197; public: void __cdecl CFakeLock::ConvertSharedToExclusive(void) __ptr64
198?ConvertSharedToExclusive@CFakeLock@@QEAAXXZ
199; public: void __cdecl CLKRHashTable::ConvertSharedToExclusive(void)const __ptr64
200?ConvertSharedToExclusive@CLKRHashTable@@QEBAXXZ
201; public: void __cdecl CLKRLinearHashTable::ConvertSharedToExclusive(void)const __ptr64
202?ConvertSharedToExclusive@CLKRLinearHashTable@@QEBAXXZ
203; public: void __cdecl CReaderWriterLock2::ConvertSharedToExclusive(void) __ptr64
204?ConvertSharedToExclusive@CReaderWriterLock2@@QEAAXXZ
205; public: void __cdecl CReaderWriterLock3::ConvertSharedToExclusive(void) __ptr64
206?ConvertSharedToExclusive@CReaderWriterLock3@@QEAAXXZ
207; public: void __cdecl CReaderWriterLock::ConvertSharedToExclusive(void) __ptr64
208?ConvertSharedToExclusive@CReaderWriterLock@@QEAAXXZ
209; public: void __cdecl CSmallSpinLock::ConvertSharedToExclusive(void) __ptr64
210?ConvertSharedToExclusive@CSmallSpinLock@@QEAAXXZ
211; public: void __cdecl CSpinLock::ConvertSharedToExclusive(void) __ptr64
212?ConvertSharedToExclusive@CSpinLock@@QEAAXXZ
213; long __cdecl CreateHolder(struct IGPDispenser * __ptr64,int,unsigned int,struct IGPHolder * __ptr64 * __ptr64)
214?CreateHolder@@YAJPEAUIGPDispenser@@HIPEAPEAUIGPHolder@@@Z
215; public: unsigned long __cdecl CLKRHashTable::DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64) __ptr64
216?DeleteIf@CLKRHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1@Z
217; public: unsigned long __cdecl CLKRLinearHashTable::DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64) __ptr64
218?DeleteIf@CLKRLinearHashTable@@QEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1@Z
219; public: enum LK_RETCODE __cdecl CLKRHashTable::DeleteKey(unsigned __int64) __ptr64
220?DeleteKey@CLKRHashTable@@QEAA?AW4LK_RETCODE@@_K@Z
221; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::DeleteKey(unsigned __int64) __ptr64
222?DeleteKey@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@_K@Z
223; public: enum LK_RETCODE __cdecl CLKRHashTable::DeleteRecord(void const * __ptr64) __ptr64
224?DeleteRecord@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEBX@Z
225; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::DeleteRecord(void const * __ptr64) __ptr64
226?DeleteRecord@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEBX@Z
227; public: long __cdecl CExFileOperation::FOCopyFile(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
228?FOCopyFile@CExFileOperation@@QEAAJPEBG0H@Z
229; public: long __cdecl CExFileOperation::FOCopyFileDACLS(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
230?FOCopyFileDACLS@CExFileOperation@@QEAAJPEBG0@Z
231; public: long __cdecl CExFileOperation::FODeleteFile(unsigned short const * __ptr64) __ptr64
232?FODeleteFile@CExFileOperation@@QEAAJPEBG@Z
233; public: long __cdecl CExFileOperation::FOMoveFile(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
234?FOMoveFile@CExFileOperation@@QEAAJPEBG0@Z
235; public: long __cdecl CExFileOperation::FOReplaceFile(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
236?FOReplaceFile@CExFileOperation@@QEAAJPEBG0@Z
237; public: enum LK_RETCODE __cdecl CLKRHashTable::FindKey(unsigned __int64,void const * __ptr64 * __ptr64)const __ptr64
238?FindKey@CLKRHashTable@@QEBA?AW4LK_RETCODE@@_KPEAPEBX@Z
239; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::FindKey(unsigned __int64,void const * __ptr64 * __ptr64)const __ptr64
240?FindKey@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@_KPEAPEBX@Z
241; public: enum LK_RETCODE __cdecl CLKRHashTable::FindRecord(void const * __ptr64)const __ptr64
242?FindRecord@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEBX@Z
243; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::FindRecord(void const * __ptr64)const __ptr64
244?FindRecord@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEBX@Z
245; public: class CListEntry * __ptr64 __cdecl CDoubleList::First(void)const __ptr64
246?First@CDoubleList@@QEBAQEAVCListEntry@@XZ
247; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::First(void) __ptr64
248?First@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
249; public: int __cdecl CEXAutoBackupFile::GetBackupFile(unsigned short * __ptr64 * __ptr64) __ptr64
250?GetBackupFile@CEXAutoBackupFile@@QEAAHPEAPEAG@Z
251; public: unsigned short __cdecl CLKRHashTable::GetBucketLockSpinCount(void) __ptr64
252?GetBucketLockSpinCount@CLKRHashTable@@QEAAGXZ
253; public: unsigned short __cdecl CLKRLinearHashTable::GetBucketLockSpinCount(void) __ptr64
254?GetBucketLockSpinCount@CLKRLinearHashTable@@QEAAGXZ
255; public: static double __cdecl CCritSec::GetDefaultSpinAdjustmentFactor(void)
256?GetDefaultSpinAdjustmentFactor@CCritSec@@SANXZ
257; public: static double __cdecl CFakeLock::GetDefaultSpinAdjustmentFactor(void)
258?GetDefaultSpinAdjustmentFactor@CFakeLock@@SANXZ
259; public: static double __cdecl CReaderWriterLock2::GetDefaultSpinAdjustmentFactor(void)
260?GetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SANXZ
261; public: static double __cdecl CReaderWriterLock3::GetDefaultSpinAdjustmentFactor(void)
262?GetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SANXZ
263; public: static double __cdecl CReaderWriterLock::GetDefaultSpinAdjustmentFactor(void)
264?GetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SANXZ
265; public: static double __cdecl CSmallSpinLock::GetDefaultSpinAdjustmentFactor(void)
266?GetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SANXZ
267; public: static double __cdecl CSpinLock::GetDefaultSpinAdjustmentFactor(void)
268?GetDefaultSpinAdjustmentFactor@CSpinLock@@SANXZ
269; public: static unsigned short __cdecl CCritSec::GetDefaultSpinCount(void)
270?GetDefaultSpinCount@CCritSec@@SAGXZ
271; public: static unsigned short __cdecl CFakeLock::GetDefaultSpinCount(void)
272?GetDefaultSpinCount@CFakeLock@@SAGXZ
273; public: static unsigned short __cdecl CReaderWriterLock2::GetDefaultSpinCount(void)
274?GetDefaultSpinCount@CReaderWriterLock2@@SAGXZ
275; public: static unsigned short __cdecl CReaderWriterLock3::GetDefaultSpinCount(void)
276?GetDefaultSpinCount@CReaderWriterLock3@@SAGXZ
277; public: static unsigned short __cdecl CReaderWriterLock::GetDefaultSpinCount(void)
278?GetDefaultSpinCount@CReaderWriterLock@@SAGXZ
279; public: static unsigned short __cdecl CSmallSpinLock::GetDefaultSpinCount(void)
280?GetDefaultSpinCount@CSmallSpinLock@@SAGXZ
281; public: static unsigned short __cdecl CSpinLock::GetDefaultSpinCount(void)
282?GetDefaultSpinCount@CSpinLock@@SAGXZ
283; public: unsigned short __cdecl CCritSec::GetSpinCount(void)const __ptr64
284?GetSpinCount@CCritSec@@QEBAGXZ
285; public: unsigned short __cdecl CFakeLock::GetSpinCount(void)const __ptr64
286?GetSpinCount@CFakeLock@@QEBAGXZ
287; public: unsigned short __cdecl CReaderWriterLock2::GetSpinCount(void)const __ptr64
288?GetSpinCount@CReaderWriterLock2@@QEBAGXZ
289; public: unsigned short __cdecl CReaderWriterLock3::GetSpinCount(void)const __ptr64
290?GetSpinCount@CReaderWriterLock3@@QEBAGXZ
291; public: unsigned short __cdecl CReaderWriterLock::GetSpinCount(void)const __ptr64
292?GetSpinCount@CReaderWriterLock@@QEBAGXZ
293; public: unsigned short __cdecl CSmallSpinLock::GetSpinCount(void)const __ptr64
294?GetSpinCount@CSmallSpinLock@@QEBAGXZ
295; public: unsigned short __cdecl CSpinLock::GetSpinCount(void)const __ptr64
296?GetSpinCount@CSpinLock@@QEBAGXZ
297; public: class CLKRHashTableStats __cdecl CLKRHashTable::GetStatistics(void)const __ptr64
298?GetStatistics@CLKRHashTable@@QEBA?AVCLKRHashTableStats@@XZ
299; public: class CLKRHashTableStats __cdecl CLKRLinearHashTable::GetStatistics(void)const __ptr64
300?GetStatistics@CLKRLinearHashTable@@QEBA?AVCLKRHashTableStats@@XZ
301; public: unsigned short __cdecl CLKRHashTable::GetTableLockSpinCount(void) __ptr64
302?GetTableLockSpinCount@CLKRHashTable@@QEAAGXZ
303; public: unsigned short __cdecl CLKRLinearHashTable::GetTableLockSpinCount(void) __ptr64
304?GetTableLockSpinCount@CLKRLinearHashTable@@QEAAGXZ
305; public: static int __cdecl CMdVersionInfo::GetVersionExW(struct _OSVERSIONINFOW * __ptr64)
306?GetVersionExW@CMdVersionInfo@@SAHPEAU_OSVERSIONINFOW@@@Z
307; public: class CListEntry const * __ptr64 __cdecl CDoubleList::HeadNode(void)const __ptr64
308?HeadNode@CDoubleList@@QEBAQEBVCListEntry@@XZ
309; public: class CListEntry const * __ptr64 __cdecl CLockedDoubleList::HeadNode(void)const __ptr64
310?HeadNode@CLockedDoubleList@@QEBAQEBVCListEntry@@XZ
311; public: enum LK_RETCODE __cdecl CLKRHashTable::IncrementIterator(class CLKRHashTable::CIterator * __ptr64) __ptr64
312?IncrementIterator@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
313; public: enum LK_RETCODE __cdecl CLKRHashTable::IncrementIterator(class CLKRHashTable::CConstIterator * __ptr64)const __ptr64
314?IncrementIterator@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
315; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::IncrementIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
316?IncrementIterator@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
317; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::IncrementIterator(class CLKRLinearHashTable::CConstIterator * __ptr64)const __ptr64
318?IncrementIterator@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
319; public: enum LK_RETCODE __cdecl CLKRHashTable::InitializeIterator(class CLKRHashTable::CIterator * __ptr64) __ptr64
320?InitializeIterator@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
321; public: enum LK_RETCODE __cdecl CLKRHashTable::InitializeIterator(class CLKRHashTable::CConstIterator * __ptr64)const __ptr64
322?InitializeIterator@CLKRHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
323; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::InitializeIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
324?InitializeIterator@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
325; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::InitializeIterator(class CLKRLinearHashTable::CConstIterator * __ptr64)const __ptr64
326?InitializeIterator@CLKRLinearHashTable@@QEBA?AW4LK_RETCODE@@PEAVCConstIterator@1@@Z
327; private: static int __cdecl CMdVersionInfo::InitializeVersionInfo(void)
328?InitializeVersionInfo@CMdVersionInfo@@CAHXZ
329; public: void __cdecl CDoubleList::InsertHead(class CListEntry * __ptr64 const) __ptr64
330?InsertHead@CDoubleList@@QEAAXQEAVCListEntry@@@Z
331; public: void __cdecl CLockedDoubleList::InsertHead(class CListEntry * __ptr64 const) __ptr64
332?InsertHead@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
333; public: enum LK_RETCODE __cdecl CLKRHashTable::InsertRecord(void const * __ptr64,bool) __ptr64
334?InsertRecord@CLKRHashTable@@QEAA?AW4LK_RETCODE@@PEBX_N@Z
335; public: enum LK_RETCODE __cdecl CLKRLinearHashTable::InsertRecord(void const * __ptr64,bool) __ptr64
336?InsertRecord@CLKRLinearHashTable@@QEAA?AW4LK_RETCODE@@PEBX_N@Z
337; public: void __cdecl CDoubleList::InsertTail(class CListEntry * __ptr64 const) __ptr64
338?InsertTail@CDoubleList@@QEAAXQEAVCListEntry@@@Z
339; public: void __cdecl CLockedDoubleList::InsertTail(class CListEntry * __ptr64 const) __ptr64
340?InsertTail@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
341; public: bool __cdecl CDoubleList::IsEmpty(void)const __ptr64
342?IsEmpty@CDoubleList@@QEBA_NXZ
343; public: bool __cdecl CLockedDoubleList::IsEmpty(void)const __ptr64
344?IsEmpty@CLockedDoubleList@@QEBA_NXZ
345; public: bool __cdecl CLockedSingleList::IsEmpty(void)const __ptr64
346?IsEmpty@CLockedSingleList@@QEBA_NXZ
347; public: bool __cdecl CSingleList::IsEmpty(void)const __ptr64
348?IsEmpty@CSingleList@@QEBA_NXZ
349; public: bool __cdecl CLockedDoubleList::IsLocked(void)const __ptr64
350?IsLocked@CLockedDoubleList@@QEBA_NXZ
351; public: bool __cdecl CLockedSingleList::IsLocked(void)const __ptr64
352?IsLocked@CLockedSingleList@@QEBA_NXZ
353; public: static int __cdecl CMdVersionInfo::IsMillnm(void)
354?IsMillnm@CMdVersionInfo@@SAHXZ
355; public: bool __cdecl CCritSec::IsReadLocked(void)const __ptr64
356?IsReadLocked@CCritSec@@QEBA_NXZ
357; public: bool __cdecl CFakeLock::IsReadLocked(void)const __ptr64
358?IsReadLocked@CFakeLock@@QEBA_NXZ
359; public: bool __cdecl CLKRHashTable::IsReadLocked(void)const __ptr64
360?IsReadLocked@CLKRHashTable@@QEBA_NXZ
361; public: bool __cdecl CLKRLinearHashTable::IsReadLocked(void)const __ptr64
362?IsReadLocked@CLKRLinearHashTable@@QEBA_NXZ
363; public: bool __cdecl CReaderWriterLock2::IsReadLocked(void)const __ptr64
364?IsReadLocked@CReaderWriterLock2@@QEBA_NXZ
365; public: bool __cdecl CReaderWriterLock3::IsReadLocked(void)const __ptr64
366?IsReadLocked@CReaderWriterLock3@@QEBA_NXZ
367; public: bool __cdecl CReaderWriterLock::IsReadLocked(void)const __ptr64
368?IsReadLocked@CReaderWriterLock@@QEBA_NXZ
369; public: bool __cdecl CSmallSpinLock::IsReadLocked(void)const __ptr64
370?IsReadLocked@CSmallSpinLock@@QEBA_NXZ
371; public: bool __cdecl CSpinLock::IsReadLocked(void)const __ptr64
372?IsReadLocked@CSpinLock@@QEBA_NXZ
373; public: bool __cdecl CCritSec::IsReadUnlocked(void)const __ptr64
374?IsReadUnlocked@CCritSec@@QEBA_NXZ
375; public: bool __cdecl CFakeLock::IsReadUnlocked(void)const __ptr64
376?IsReadUnlocked@CFakeLock@@QEBA_NXZ
377; public: bool __cdecl CLKRHashTable::IsReadUnlocked(void)const __ptr64
378?IsReadUnlocked@CLKRHashTable@@QEBA_NXZ
379; public: bool __cdecl CLKRLinearHashTable::IsReadUnlocked(void)const __ptr64
380?IsReadUnlocked@CLKRLinearHashTable@@QEBA_NXZ
381; public: bool __cdecl CReaderWriterLock2::IsReadUnlocked(void)const __ptr64
382?IsReadUnlocked@CReaderWriterLock2@@QEBA_NXZ
383; public: bool __cdecl CReaderWriterLock3::IsReadUnlocked(void)const __ptr64
384?IsReadUnlocked@CReaderWriterLock3@@QEBA_NXZ
385; public: bool __cdecl CReaderWriterLock::IsReadUnlocked(void)const __ptr64
386?IsReadUnlocked@CReaderWriterLock@@QEBA_NXZ
387; public: bool __cdecl CSmallSpinLock::IsReadUnlocked(void)const __ptr64
388?IsReadUnlocked@CSmallSpinLock@@QEBA_NXZ
389; public: bool __cdecl CSpinLock::IsReadUnlocked(void)const __ptr64
390?IsReadUnlocked@CSpinLock@@QEBA_NXZ
391; public: bool __cdecl CLockedDoubleList::IsUnlocked(void)const __ptr64
392?IsUnlocked@CLockedDoubleList@@QEBA_NXZ
393; public: bool __cdecl CLockedSingleList::IsUnlocked(void)const __ptr64
394?IsUnlocked@CLockedSingleList@@QEBA_NXZ
395; public: bool __cdecl CLKRHashTable::IsUsable(void)const __ptr64
396?IsUsable@CLKRHashTable@@QEBA_NXZ
397; public: bool __cdecl CLKRLinearHashTable::IsUsable(void)const __ptr64
398?IsUsable@CLKRLinearHashTable@@QEBA_NXZ
399; public: bool __cdecl CLKRHashTable::IsValid(void)const __ptr64
400?IsValid@CLKRHashTable@@QEBA_NXZ
401; public: bool __cdecl CLKRLinearHashTable::IsValid(void)const __ptr64
402?IsValid@CLKRLinearHashTable@@QEBA_NXZ
403; public: static int __cdecl CMdVersionInfo::IsWin2k(void)
404?IsWin2k@CMdVersionInfo@@SAHXZ
405; public: static int __cdecl CMdVersionInfo::IsWin2korLater(void)
406?IsWin2korLater@CMdVersionInfo@@SAHXZ
407; public: static int __cdecl CMdVersionInfo::IsWin95(void)
408?IsWin95@CMdVersionInfo@@SAHXZ
409; public: static int __cdecl CMdVersionInfo::IsWin98(void)
410?IsWin98@CMdVersionInfo@@SAHXZ
411; public: static int __cdecl CMdVersionInfo::IsWin98orLater(void)
412?IsWin98orLater@CMdVersionInfo@@SAHXZ
413; public: static int __cdecl CMdVersionInfo::IsWin9x(void)
414?IsWin9x@CMdVersionInfo@@SAHXZ
415; public: static int __cdecl CMdVersionInfo::IsWinNT4(void)
416?IsWinNT4@CMdVersionInfo@@SAHXZ
417; public: static int __cdecl CMdVersionInfo::IsWinNT(void)
418?IsWinNT@CMdVersionInfo@@SAHXZ
419; public: static int __cdecl CMdVersionInfo::IsWinNt4orLater(void)
420?IsWinNt4orLater@CMdVersionInfo@@SAHXZ
421; public: bool __cdecl CCritSec::IsWriteLocked(void)const __ptr64
422?IsWriteLocked@CCritSec@@QEBA_NXZ
423; public: bool __cdecl CFakeLock::IsWriteLocked(void)const __ptr64
424?IsWriteLocked@CFakeLock@@QEBA_NXZ
425; public: bool __cdecl CLKRHashTable::IsWriteLocked(void)const __ptr64
426?IsWriteLocked@CLKRHashTable@@QEBA_NXZ
427; public: bool __cdecl CLKRLinearHashTable::IsWriteLocked(void)const __ptr64
428?IsWriteLocked@CLKRLinearHashTable@@QEBA_NXZ
429; public: bool __cdecl CReaderWriterLock2::IsWriteLocked(void)const __ptr64
430?IsWriteLocked@CReaderWriterLock2@@QEBA_NXZ
431; public: bool __cdecl CReaderWriterLock3::IsWriteLocked(void)const __ptr64
432?IsWriteLocked@CReaderWriterLock3@@QEBA_NXZ
433; public: bool __cdecl CReaderWriterLock::IsWriteLocked(void)const __ptr64
434?IsWriteLocked@CReaderWriterLock@@QEBA_NXZ
435; public: bool __cdecl CSmallSpinLock::IsWriteLocked(void)const __ptr64
436?IsWriteLocked@CSmallSpinLock@@QEBA_NXZ
437; public: bool __cdecl CSpinLock::IsWriteLocked(void)const __ptr64
438?IsWriteLocked@CSpinLock@@QEBA_NXZ
439; public: bool __cdecl CCritSec::IsWriteUnlocked(void)const __ptr64
440?IsWriteUnlocked@CCritSec@@QEBA_NXZ
441; public: bool __cdecl CFakeLock::IsWriteUnlocked(void)const __ptr64
442?IsWriteUnlocked@CFakeLock@@QEBA_NXZ
443; public: bool __cdecl CLKRHashTable::IsWriteUnlocked(void)const __ptr64
444?IsWriteUnlocked@CLKRHashTable@@QEBA_NXZ
445; public: bool __cdecl CLKRLinearHashTable::IsWriteUnlocked(void)const __ptr64
446?IsWriteUnlocked@CLKRLinearHashTable@@QEBA_NXZ
447; public: bool __cdecl CReaderWriterLock2::IsWriteUnlocked(void)const __ptr64
448?IsWriteUnlocked@CReaderWriterLock2@@QEBA_NXZ
449; public: bool __cdecl CReaderWriterLock3::IsWriteUnlocked(void)const __ptr64
450?IsWriteUnlocked@CReaderWriterLock3@@QEBA_NXZ
451; public: bool __cdecl CReaderWriterLock::IsWriteUnlocked(void)const __ptr64
452?IsWriteUnlocked@CReaderWriterLock@@QEBA_NXZ
453; public: bool __cdecl CSmallSpinLock::IsWriteUnlocked(void)const __ptr64
454?IsWriteUnlocked@CSmallSpinLock@@QEBA_NXZ
455; public: bool __cdecl CSpinLock::IsWriteUnlocked(void)const __ptr64
456?IsWriteUnlocked@CSpinLock@@QEBA_NXZ
457; public: class CListEntry * __ptr64 __cdecl CDoubleList::Last(void)const __ptr64
458?Last@CDoubleList@@QEBAQEAVCListEntry@@XZ
459; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::Last(void) __ptr64
460?Last@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
461; public: void __cdecl CLockedDoubleList::Lock(void) __ptr64
462?Lock@CLockedDoubleList@@QEAAXXZ
463; public: void __cdecl CLockedSingleList::Lock(void) __ptr64
464?Lock@CLockedSingleList@@QEAAXXZ
465; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<1,1,3,1,3,2>::LockType(void)
466?LockType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
467; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<2,1,1,1,3,2>::LockType(void)
468?LockType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
469; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<3,1,1,1,1,1>::LockType(void)
470?LockType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_LOCKTYPE@@XZ
471; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<4,1,1,2,3,3>::LockType(void)
472?LockType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
473; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<5,2,2,1,3,2>::LockType(void)
474?LockType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
475; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<6,2,2,1,3,2>::LockType(void)
476?LockType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
477; public: static enum LOCK_LOCKTYPE __cdecl CLockBase<7,2,1,1,3,2>::LockType(void)
478?LockType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
479; public: unsigned long __cdecl CLKRHashTable::MaxSize(void)const __ptr64
480?MaxSize@CLKRHashTable@@QEBAKXZ
481; public: unsigned long __cdecl CLKRLinearHashTable::MaxSize(void)const __ptr64
482?MaxSize@CLKRLinearHashTable@@QEBAKXZ
483; unsigned __int64 __cdecl MpHeapCompact(void * __ptr64)
484?MpHeapCompact@@YA_KPEAX@Z
485; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<1,1,3,1,3,2>::MutexType(void)
486?MutexType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
487; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<2,1,1,1,3,2>::MutexType(void)
488?MutexType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
489; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<3,1,1,1,1,1>::MutexType(void)
490?MutexType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RW_MUTEX@@XZ
491; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<4,1,1,2,3,3>::MutexType(void)
492?MutexType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
493; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<5,2,2,1,3,2>::MutexType(void)
494?MutexType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
495; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<6,2,2,1,3,2>::MutexType(void)
496?MutexType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
497; public: static enum LOCK_RW_MUTEX __cdecl CLockBase<7,2,1,1,3,2>::MutexType(void)
498?MutexType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
499; public: int __cdecl CLKRHashTable::NumSubTables(void)const __ptr64
500?NumSubTables@CLKRHashTable@@QEBAHXZ
501; public: static enum LK_TABLESIZE __cdecl CLKRHashTable::NumSubTables(unsigned long & __ptr64,unsigned long & __ptr64)
502?NumSubTables@CLKRHashTable@@SA?AW4LK_TABLESIZE@@AEAK0@Z
503; public: int __cdecl CLKRLinearHashTable::NumSubTables(void)const __ptr64
504?NumSubTables@CLKRLinearHashTable@@QEBAHXZ
505; public: static enum LK_TABLESIZE __cdecl CLKRLinearHashTable::NumSubTables(unsigned long & __ptr64,unsigned long & __ptr64)
506?NumSubTables@CLKRLinearHashTable@@SA?AW4LK_TABLESIZE@@AEAK0@Z
507; int __cdecl OnUnicodeSystem(void)
508?OnUnicodeSystem@@YAHXZ
509; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<1,1,3,1,3,2>::PerLockSpin(void)
510?PerLockSpin@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
511; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<2,1,1,1,3,2>::PerLockSpin(void)
512?PerLockSpin@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
513; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<3,1,1,1,1,1>::PerLockSpin(void)
514?PerLockSpin@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
515; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<4,1,1,2,3,3>::PerLockSpin(void)
516?PerLockSpin@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
517; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<5,2,2,1,3,2>::PerLockSpin(void)
518?PerLockSpin@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
519; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<6,2,2,1,3,2>::PerLockSpin(void)
520?PerLockSpin@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
521; public: static enum LOCK_PERLOCK_SPIN __cdecl CLockBase<7,2,1,1,3,2>::PerLockSpin(void)
522?PerLockSpin@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
523; public: class CSingleListEntry * __ptr64 __cdecl CLockedSingleList::Pop(void) __ptr64
524?Pop@CLockedSingleList@@QEAAQEAVCSingleListEntry@@XZ
525; public: class CSingleListEntry * __ptr64 __cdecl CSingleList::Pop(void) __ptr64
526?Pop@CSingleList@@QEAAQEAVCSingleListEntry@@XZ
527; public: void __cdecl CLKRHashTable::Print(void)const __ptr64
528?Print@CLKRHashTable@@QEBAXXZ
529; public: void __cdecl CLKRLinearHashTable::Print(void)const __ptr64
530?Print@CLKRLinearHashTable@@QEBAXXZ
531; public: void __cdecl CLockedSingleList::Push(class CSingleListEntry * __ptr64 const) __ptr64
532?Push@CLockedSingleList@@QEAAXQEAVCSingleListEntry@@@Z
533; public: void __cdecl CSingleList::Push(class CSingleListEntry * __ptr64 const) __ptr64
534?Push@CSingleList@@QEAAXQEAVCSingleListEntry@@@Z
535; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<1,1,3,1,3,2>::QueueType(void)
536?QueueType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
537; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<2,1,1,1,3,2>::QueueType(void)
538?QueueType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
539; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<3,1,1,1,1,1>::QueueType(void)
540?QueueType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_QUEUE_TYPE@@XZ
541; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<4,1,1,2,3,3>::QueueType(void)
542?QueueType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
543; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<5,2,2,1,3,2>::QueueType(void)
544?QueueType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
545; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<6,2,2,1,3,2>::QueueType(void)
546?QueueType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
547; public: static enum LOCK_QUEUE_TYPE __cdecl CLockBase<7,2,1,1,3,2>::QueueType(void)
548?QueueType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
549; public: void __cdecl CCritSec::ReadLock(void) __ptr64
550?ReadLock@CCritSec@@QEAAXXZ
551; public: void __cdecl CFakeLock::ReadLock(void) __ptr64
552?ReadLock@CFakeLock@@QEAAXXZ
553; public: void __cdecl CLKRHashTable::ReadLock(void)const __ptr64
554?ReadLock@CLKRHashTable@@QEBAXXZ
555; public: void __cdecl CLKRLinearHashTable::ReadLock(void)const __ptr64
556?ReadLock@CLKRLinearHashTable@@QEBAXXZ
557; public: void __cdecl CReaderWriterLock2::ReadLock(void) __ptr64
558?ReadLock@CReaderWriterLock2@@QEAAXXZ
559; public: void __cdecl CReaderWriterLock3::ReadLock(void) __ptr64
560?ReadLock@CReaderWriterLock3@@QEAAXXZ
561; public: void __cdecl CReaderWriterLock::ReadLock(void) __ptr64
562?ReadLock@CReaderWriterLock@@QEAAXXZ
563; public: void __cdecl CSmallSpinLock::ReadLock(void) __ptr64
564?ReadLock@CSmallSpinLock@@QEAAXXZ
565; public: void __cdecl CSpinLock::ReadLock(void) __ptr64
566?ReadLock@CSpinLock@@QEAAXXZ
567; public: bool __cdecl CCritSec::ReadOrWriteLock(void) __ptr64
568?ReadOrWriteLock@CCritSec@@QEAA_NXZ
569; public: bool __cdecl CFakeLock::ReadOrWriteLock(void) __ptr64
570?ReadOrWriteLock@CFakeLock@@QEAA_NXZ
571; public: bool __cdecl CReaderWriterLock3::ReadOrWriteLock(void) __ptr64
572?ReadOrWriteLock@CReaderWriterLock3@@QEAA_NXZ
573; public: bool __cdecl CSpinLock::ReadOrWriteLock(void) __ptr64
574?ReadOrWriteLock@CSpinLock@@QEAA_NXZ
575; public: void __cdecl CCritSec::ReadOrWriteUnlock(bool) __ptr64
576?ReadOrWriteUnlock@CCritSec@@QEAAX_N@Z
577; public: void __cdecl CFakeLock::ReadOrWriteUnlock(bool) __ptr64
578?ReadOrWriteUnlock@CFakeLock@@QEAAX_N@Z
579; public: void __cdecl CReaderWriterLock3::ReadOrWriteUnlock(bool) __ptr64
580?ReadOrWriteUnlock@CReaderWriterLock3@@QEAAX_N@Z
581; public: void __cdecl CSpinLock::ReadOrWriteUnlock(bool) __ptr64
582?ReadOrWriteUnlock@CSpinLock@@QEAAX_N@Z
583; public: void __cdecl CCritSec::ReadUnlock(void) __ptr64
584?ReadUnlock@CCritSec@@QEAAXXZ
585; public: void __cdecl CFakeLock::ReadUnlock(void) __ptr64
586?ReadUnlock@CFakeLock@@QEAAXXZ
587; public: void __cdecl CLKRHashTable::ReadUnlock(void)const __ptr64
588?ReadUnlock@CLKRHashTable@@QEBAXXZ
589; public: void __cdecl CLKRLinearHashTable::ReadUnlock(void)const __ptr64
590?ReadUnlock@CLKRLinearHashTable@@QEBAXXZ
591; public: void __cdecl CReaderWriterLock2::ReadUnlock(void) __ptr64
592?ReadUnlock@CReaderWriterLock2@@QEAAXXZ
593; public: void __cdecl CReaderWriterLock3::ReadUnlock(void) __ptr64
594?ReadUnlock@CReaderWriterLock3@@QEAAXXZ
595; public: void __cdecl CReaderWriterLock::ReadUnlock(void) __ptr64
596?ReadUnlock@CReaderWriterLock@@QEAAXXZ
597; public: void __cdecl CSmallSpinLock::ReadUnlock(void) __ptr64
598?ReadUnlock@CSmallSpinLock@@QEAAXXZ
599; public: void __cdecl CSpinLock::ReadUnlock(void) __ptr64
600?ReadUnlock@CSpinLock@@QEAAXXZ
601; public: static enum LOCK_RECURSION __cdecl CLockBase<1,1,3,1,3,2>::Recursion(void)
602?Recursion@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
603; public: static enum LOCK_RECURSION __cdecl CLockBase<2,1,1,1,3,2>::Recursion(void)
604?Recursion@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
605; public: static enum LOCK_RECURSION __cdecl CLockBase<3,1,1,1,1,1>::Recursion(void)
606?Recursion@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RECURSION@@XZ
607; public: static enum LOCK_RECURSION __cdecl CLockBase<4,1,1,2,3,3>::Recursion(void)
608?Recursion@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
609; public: static enum LOCK_RECURSION __cdecl CLockBase<5,2,2,1,3,2>::Recursion(void)
610?Recursion@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
611; public: static enum LOCK_RECURSION __cdecl CLockBase<6,2,2,1,3,2>::Recursion(void)
612?Recursion@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
613; public: static enum LOCK_RECURSION __cdecl CLockBase<7,2,1,1,3,2>::Recursion(void)
614?Recursion@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
615; public: static void __cdecl CMdVersionInfo::ReleaseVersionInfo(void)
616?ReleaseVersionInfo@CMdVersionInfo@@SAXXZ
617; public: static void __cdecl CDoubleList::RemoveEntry(class CListEntry * __ptr64 const)
618?RemoveEntry@CDoubleList@@SAXQEAVCListEntry@@@Z
619; public: void __cdecl CLockedDoubleList::RemoveEntry(class CListEntry * __ptr64 const) __ptr64
620?RemoveEntry@CLockedDoubleList@@QEAAXQEAVCListEntry@@@Z
621; public: class CListEntry * __ptr64 __cdecl CDoubleList::RemoveHead(void) __ptr64
622?RemoveHead@CDoubleList@@QEAAQEAVCListEntry@@XZ
623; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::RemoveHead(void) __ptr64
624?RemoveHead@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
625; public: class CListEntry * __ptr64 __cdecl CDoubleList::RemoveTail(void) __ptr64
626?RemoveTail@CDoubleList@@QEAAQEAVCListEntry@@XZ
627; public: class CListEntry * __ptr64 __cdecl CLockedDoubleList::RemoveTail(void) __ptr64
628?RemoveTail@CLockedDoubleList@@QEAAQEAVCListEntry@@XZ
629; public: long __cdecl CEXAutoBackupFile::RestoreFile(void) __ptr64
630?RestoreFile@CEXAutoBackupFile@@QEAAJXZ
631; public: void __cdecl CLKRHashTable::SetBucketLockSpinCount(unsigned short) __ptr64
632?SetBucketLockSpinCount@CLKRHashTable@@QEAAXG@Z
633; public: void __cdecl CLKRLinearHashTable::SetBucketLockSpinCount(unsigned short) __ptr64
634?SetBucketLockSpinCount@CLKRLinearHashTable@@QEAAXG@Z
635; public: static void __cdecl CCritSec::SetDefaultSpinAdjustmentFactor(double)
636?SetDefaultSpinAdjustmentFactor@CCritSec@@SAXN@Z
637; public: static void __cdecl CFakeLock::SetDefaultSpinAdjustmentFactor(double)
638?SetDefaultSpinAdjustmentFactor@CFakeLock@@SAXN@Z
639; public: static void __cdecl CReaderWriterLock2::SetDefaultSpinAdjustmentFactor(double)
640?SetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SAXN@Z
641; public: static void __cdecl CReaderWriterLock3::SetDefaultSpinAdjustmentFactor(double)
642?SetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SAXN@Z
643; public: static void __cdecl CReaderWriterLock::SetDefaultSpinAdjustmentFactor(double)
644?SetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SAXN@Z
645; public: static void __cdecl CSmallSpinLock::SetDefaultSpinAdjustmentFactor(double)
646?SetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SAXN@Z
647; public: static void __cdecl CSpinLock::SetDefaultSpinAdjustmentFactor(double)
648?SetDefaultSpinAdjustmentFactor@CSpinLock@@SAXN@Z
649; public: static void __cdecl CCritSec::SetDefaultSpinCount(unsigned short)
650?SetDefaultSpinCount@CCritSec@@SAXG@Z
651; public: static void __cdecl CFakeLock::SetDefaultSpinCount(unsigned short)
652?SetDefaultSpinCount@CFakeLock@@SAXG@Z
653; public: static void __cdecl CReaderWriterLock2::SetDefaultSpinCount(unsigned short)
654?SetDefaultSpinCount@CReaderWriterLock2@@SAXG@Z
655; public: static void __cdecl CReaderWriterLock3::SetDefaultSpinCount(unsigned short)
656?SetDefaultSpinCount@CReaderWriterLock3@@SAXG@Z
657; public: static void __cdecl CReaderWriterLock::SetDefaultSpinCount(unsigned short)
658?SetDefaultSpinCount@CReaderWriterLock@@SAXG@Z
659; public: static void __cdecl CSmallSpinLock::SetDefaultSpinCount(unsigned short)
660?SetDefaultSpinCount@CSmallSpinLock@@SAXG@Z
661; public: static void __cdecl CSpinLock::SetDefaultSpinCount(unsigned short)
662?SetDefaultSpinCount@CSpinLock@@SAXG@Z
663; public: bool __cdecl CCritSec::SetSpinCount(unsigned short) __ptr64
664?SetSpinCount@CCritSec@@QEAA_NG@Z
665; public: static unsigned long __cdecl CCritSec::SetSpinCount(class CCriticalSection * __ptr64 * __ptr64,unsigned long)
666?SetSpinCount@CCritSec@@SAKPEAPEAVCCriticalSection@@K@Z
667; public: bool __cdecl CFakeLock::SetSpinCount(unsigned short) __ptr64
668?SetSpinCount@CFakeLock@@QEAA_NG@Z
669; public: bool __cdecl CReaderWriterLock2::SetSpinCount(unsigned short) __ptr64
670?SetSpinCount@CReaderWriterLock2@@QEAA_NG@Z
671; public: bool __cdecl CReaderWriterLock3::SetSpinCount(unsigned short) __ptr64
672?SetSpinCount@CReaderWriterLock3@@QEAA_NG@Z
673; public: bool __cdecl CReaderWriterLock::SetSpinCount(unsigned short) __ptr64
674?SetSpinCount@CReaderWriterLock@@QEAA_NG@Z
675; public: bool __cdecl CSmallSpinLock::SetSpinCount(unsigned short) __ptr64
676?SetSpinCount@CSmallSpinLock@@QEAA_NG@Z
677; public: bool __cdecl CSpinLock::SetSpinCount(unsigned short) __ptr64
678?SetSpinCount@CSpinLock@@QEAA_NG@Z
679; public: void __cdecl CLKRHashTable::SetTableLockSpinCount(unsigned short) __ptr64
680?SetTableLockSpinCount@CLKRHashTable@@QEAAXG@Z
681; public: void __cdecl CLKRLinearHashTable::SetTableLockSpinCount(unsigned short) __ptr64
682?SetTableLockSpinCount@CLKRLinearHashTable@@QEAAXG@Z
683; public: unsigned long __cdecl CLKRHashTable::Size(void)const __ptr64
684?Size@CLKRHashTable@@QEBAKXZ
685; public: unsigned long __cdecl CLKRLinearHashTable::Size(void)const __ptr64
686?Size@CLKRLinearHashTable@@QEBAKXZ
687; public: bool __cdecl CCritSec::TryReadLock(void) __ptr64
688?TryReadLock@CCritSec@@QEAA_NXZ
689; public: bool __cdecl CFakeLock::TryReadLock(void) __ptr64
690?TryReadLock@CFakeLock@@QEAA_NXZ
691; public: bool __cdecl CReaderWriterLock2::TryReadLock(void) __ptr64
692?TryReadLock@CReaderWriterLock2@@QEAA_NXZ
693; public: bool __cdecl CReaderWriterLock3::TryReadLock(void) __ptr64
694?TryReadLock@CReaderWriterLock3@@QEAA_NXZ
695; public: bool __cdecl CReaderWriterLock::TryReadLock(void) __ptr64
696?TryReadLock@CReaderWriterLock@@QEAA_NXZ
697; public: bool __cdecl CSmallSpinLock::TryReadLock(void) __ptr64
698?TryReadLock@CSmallSpinLock@@QEAA_NXZ
699; public: bool __cdecl CSpinLock::TryReadLock(void) __ptr64
700?TryReadLock@CSpinLock@@QEAA_NXZ
701; public: bool __cdecl CCritSec::TryWriteLock(void) __ptr64
702?TryWriteLock@CCritSec@@QEAA_NXZ
703; public: bool __cdecl CFakeLock::TryWriteLock(void) __ptr64
704?TryWriteLock@CFakeLock@@QEAA_NXZ
705; public: bool __cdecl CReaderWriterLock2::TryWriteLock(void) __ptr64
706?TryWriteLock@CReaderWriterLock2@@QEAA_NXZ
707; public: bool __cdecl CReaderWriterLock3::TryWriteLock(void) __ptr64
708?TryWriteLock@CReaderWriterLock3@@QEAA_NXZ
709; public: bool __cdecl CReaderWriterLock::TryWriteLock(void) __ptr64
710?TryWriteLock@CReaderWriterLock@@QEAA_NXZ
711; public: bool __cdecl CSmallSpinLock::TryWriteLock(void) __ptr64
712?TryWriteLock@CSmallSpinLock@@QEAA_NXZ
713; public: bool __cdecl CSpinLock::TryWriteLock(void) __ptr64
714?TryWriteLock@CSpinLock@@QEAA_NXZ
715; public: long __cdecl CEXAutoBackupFile::UndoBackup(void) __ptr64
716?UndoBackup@CEXAutoBackupFile@@QEAAJXZ
717; public: void __cdecl CLockedDoubleList::Unlock(void) __ptr64
718?Unlock@CLockedDoubleList@@QEAAXXZ
719; public: void __cdecl CLockedSingleList::Unlock(void) __ptr64
720?Unlock@CLockedSingleList@@QEAAXXZ
721; public: bool __cdecl CLKRHashTable::ValidSignature(void)const __ptr64
722?ValidSignature@CLKRHashTable@@QEBA_NXZ
723; public: bool __cdecl CLKRLinearHashTable::ValidSignature(void)const __ptr64
724?ValidSignature@CLKRLinearHashTable@@QEBA_NXZ
725; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<1,1,3,1,3,2>::WaitType(void)
726?WaitType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
727; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<2,1,1,1,3,2>::WaitType(void)
728?WaitType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
729; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<3,1,1,1,1,1>::WaitType(void)
730?WaitType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_WAIT_TYPE@@XZ
731; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<4,1,1,2,3,3>::WaitType(void)
732?WaitType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
733; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<5,2,2,1,3,2>::WaitType(void)
734?WaitType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
735; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<6,2,2,1,3,2>::WaitType(void)
736?WaitType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
737; public: static enum LOCK_WAIT_TYPE __cdecl CLockBase<7,2,1,1,3,2>::WaitType(void)
738?WaitType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
739; public: void __cdecl CCritSec::WriteLock(void) __ptr64
740?WriteLock@CCritSec@@QEAAXXZ
741; public: void __cdecl CFakeLock::WriteLock(void) __ptr64
742?WriteLock@CFakeLock@@QEAAXXZ
743; public: void __cdecl CLKRHashTable::WriteLock(void) __ptr64
744?WriteLock@CLKRHashTable@@QEAAXXZ
745; public: void __cdecl CLKRLinearHashTable::WriteLock(void) __ptr64
746?WriteLock@CLKRLinearHashTable@@QEAAXXZ
747; public: void __cdecl CReaderWriterLock2::WriteLock(void) __ptr64
748?WriteLock@CReaderWriterLock2@@QEAAXXZ
749; public: void __cdecl CReaderWriterLock3::WriteLock(void) __ptr64
750?WriteLock@CReaderWriterLock3@@QEAAXXZ
751; public: void __cdecl CReaderWriterLock::WriteLock(void) __ptr64
752?WriteLock@CReaderWriterLock@@QEAAXXZ
753; public: void __cdecl CSmallSpinLock::WriteLock(void) __ptr64
754?WriteLock@CSmallSpinLock@@QEAAXXZ
755; public: void __cdecl CSpinLock::WriteLock(void) __ptr64
756?WriteLock@CSpinLock@@QEAAXXZ
757; public: void __cdecl CCritSec::WriteUnlock(void) __ptr64
758?WriteUnlock@CCritSec@@QEAAXXZ
759; public: void __cdecl CFakeLock::WriteUnlock(void) __ptr64
760?WriteUnlock@CFakeLock@@QEAAXXZ
761; public: void __cdecl CLKRHashTable::WriteUnlock(void)const __ptr64
762?WriteUnlock@CLKRHashTable@@QEBAXXZ
763; public: void __cdecl CLKRLinearHashTable::WriteUnlock(void)const __ptr64
764?WriteUnlock@CLKRLinearHashTable@@QEBAXXZ
765; public: void __cdecl CReaderWriterLock2::WriteUnlock(void) __ptr64
766?WriteUnlock@CReaderWriterLock2@@QEAAXXZ
767; public: void __cdecl CReaderWriterLock3::WriteUnlock(void) __ptr64
768?WriteUnlock@CReaderWriterLock3@@QEAAXXZ
769; public: void __cdecl CReaderWriterLock::WriteUnlock(void) __ptr64
770?WriteUnlock@CReaderWriterLock@@QEAAXXZ
771; public: void __cdecl CSmallSpinLock::WriteUnlock(void) __ptr64
772?WriteUnlock@CSmallSpinLock@@QEAAXXZ
773; public: void __cdecl CSpinLock::WriteUnlock(void) __ptr64
774?WriteUnlock@CSpinLock@@QEAAXXZ
775; private: void __cdecl CLKRLinearHashTable::_AddRefRecord(void const * __ptr64,int)const __ptr64
776?_AddRefRecord@CLKRLinearHashTable@@AEBAXPEBXH@Z
777; private: static class CLKRLinearHashTable::CNodeClump * __ptr64 __cdecl CLKRLinearHashTable::_AllocateNodeClump(void)
778?_AllocateNodeClump@CLKRLinearHashTable@@CAQEAVCNodeClump@1@XZ
779; private: class CLKRLinearHashTable::CSegment * __ptr64 __cdecl CLKRLinearHashTable::_AllocateSegment(void)const __ptr64
780?_AllocateSegment@CLKRLinearHashTable@@AEBAQEAVCSegment@1@XZ
781; private: static class CLKRLinearHashTable::CDirEntry * __ptr64 __cdecl CLKRLinearHashTable::_AllocateSegmentDirectory(unsigned __int64)
782?_AllocateSegmentDirectory@CLKRLinearHashTable@@CAQEAVCDirEntry@1@_K@Z
783; private: static class CLKRLinearHashTable * __ptr64 __cdecl CLKRHashTable::_AllocateSubTable(char const * __ptr64,unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),double,unsigned long,class CLKRHashTable * __ptr64)
784?_AllocateSubTable@CLKRHashTable@@CAQEAVCLKRLinearHashTable@@PEBDP6A?B_KPEBX@ZP6AK_K@ZP6A_N33@ZP6AX1H@ZNKPEAV1@@Z
785; private: static class CLKRLinearHashTable * __ptr64 * __ptr64 __cdecl CLKRHashTable::_AllocateSubTableArray(unsigned __int64)
786?_AllocateSubTableArray@CLKRHashTable@@CAQEAPEAVCLKRLinearHashTable@@_K@Z
787; private: unsigned long __cdecl CLKRLinearHashTable::_Apply(enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE,enum LK_PREDICATE & __ptr64) __ptr64
788?_Apply@CLKRLinearHashTable@@AEAAKP6A?AW4LK_ACTION@@PEBXPEAX@Z1W4LK_LOCKTYPE@@AEAW4LK_PREDICATE@@@Z
789; private: unsigned long __cdecl CLKRLinearHashTable::_ApplyIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),enum LK_ACTION (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_LOCKTYPE,enum LK_PREDICATE & __ptr64) __ptr64
790?_ApplyIf@CLKRLinearHashTable@@AEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@AEAW42@@Z
791; private: class CLKRLinearHashTable::CBucket * __ptr64 __cdecl CLKRLinearHashTable::_Bucket(unsigned long)const __ptr64
792?_Bucket@CLKRLinearHashTable@@AEBAPEAVCBucket@1@K@Z
793; private: unsigned long __cdecl CLKRLinearHashTable::_BucketAddress(unsigned long)const __ptr64
794?_BucketAddress@CLKRLinearHashTable@@AEBAKK@Z
795; private: unsigned long __cdecl CLKRHashTable::_CalcKeyHash(unsigned __int64)const __ptr64
796?_CalcKeyHash@CLKRHashTable@@AEBAK_K@Z
797; private: unsigned long __cdecl CLKRLinearHashTable::_CalcKeyHash(unsigned __int64)const __ptr64
798?_CalcKeyHash@CLKRLinearHashTable@@AEBAK_K@Z
799; private: void __cdecl CLKRLinearHashTable::_Clear(bool) __ptr64
800?_Clear@CLKRLinearHashTable@@AEAAX_N@Z
801; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_CloseIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
802?_CloseIterator@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
803; private: bool __cdecl CReaderWriterLock2::_CmpExch(long,long) __ptr64
804?_CmpExch@CReaderWriterLock2@@AEAA_NJJ@Z
805; private: bool __cdecl CReaderWriterLock3::_CmpExch(long,long) __ptr64
806?_CmpExch@CReaderWriterLock3@@AEAA_NJJ@Z
807; private: bool __cdecl CReaderWriterLock::_CmpExch(long,long) __ptr64
808?_CmpExch@CReaderWriterLock@@AEAA_NJJ@Z
809; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Contract(void) __ptr64
810?_Contract@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@XZ
811; private: static long __cdecl CReaderWriterLock3::_CurrentThreadId(void)
812?_CurrentThreadId@CReaderWriterLock3@@CAJXZ
813; private: static long __cdecl CSmallSpinLock::_CurrentThreadId(void)
814?_CurrentThreadId@CSmallSpinLock@@CAJXZ
815; private: static long __cdecl CSpinLock::_CurrentThreadId(void)
816?_CurrentThreadId@CSpinLock@@CAJXZ
817; private: unsigned long __cdecl CLKRLinearHashTable::_DeleteIf(enum LK_PREDICATE (__cdecl*)(void const * __ptr64,void * __ptr64),void * __ptr64,enum LK_PREDICATE & __ptr64) __ptr64
818?_DeleteIf@CLKRLinearHashTable@@AEAAKP6A?AW4LK_PREDICATE@@PEBXPEAX@Z1AEAW42@@Z
819; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_DeleteKey(unsigned __int64,unsigned long) __ptr64
820?_DeleteKey@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@_KK@Z
821; private: bool __cdecl CLKRLinearHashTable::_DeleteNode(class CLKRLinearHashTable::CBucket * __ptr64,class CLKRLinearHashTable::CNodeClump * __ptr64 & __ptr64,class CLKRLinearHashTable::CNodeClump * __ptr64 & __ptr64,int & __ptr64) __ptr64
822?_DeleteNode@CLKRLinearHashTable@@AEAA_NPEAVCBucket@1@AEAPEAVCNodeClump@1@1AEAH@Z
823; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_DeleteRecord(void const * __ptr64,unsigned long) __ptr64
824?_DeleteRecord@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEBXK@Z
825; private: bool __cdecl CLKRLinearHashTable::_EqualKeys(unsigned __int64,unsigned __int64)const __ptr64
826?_EqualKeys@CLKRLinearHashTable@@AEBA_N_K0@Z
827; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Expand(void) __ptr64
828?_Expand@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@XZ
829; private: unsigned __int64 const __cdecl CLKRHashTable::_ExtractKey(void const * __ptr64)const __ptr64
830?_ExtractKey@CLKRHashTable@@AEBA?B_KPEBX@Z
831; private: unsigned __int64 const __cdecl CLKRLinearHashTable::_ExtractKey(void const * __ptr64)const __ptr64
832?_ExtractKey@CLKRLinearHashTable@@AEBA?B_KPEBX@Z
833; private: class CLKRLinearHashTable::CBucket * __ptr64 __cdecl CLKRLinearHashTable::_FindBucket(unsigned long,bool)const __ptr64
834?_FindBucket@CLKRLinearHashTable@@AEBAPEAVCBucket@1@K_N@Z
835; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_FindKey(unsigned __int64,unsigned long,void const * __ptr64 * __ptr64)const __ptr64
836?_FindKey@CLKRLinearHashTable@@AEBA?AW4LK_RETCODE@@_KKPEAPEBX@Z
837; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_FindRecord(void const * __ptr64,unsigned long)const __ptr64
838?_FindRecord@CLKRLinearHashTable@@AEBA?AW4LK_RETCODE@@PEBXK@Z
839; private: static bool __cdecl CLKRLinearHashTable::_FreeNodeClump(class CLKRLinearHashTable::CNodeClump * __ptr64)
840?_FreeNodeClump@CLKRLinearHashTable@@CA_NPEAVCNodeClump@1@@Z
841; private: bool __cdecl CLKRLinearHashTable::_FreeSegment(class CLKRLinearHashTable::CSegment * __ptr64)const __ptr64
842?_FreeSegment@CLKRLinearHashTable@@AEBA_NPEAVCSegment@1@@Z
843; private: static bool __cdecl CLKRLinearHashTable::_FreeSegmentDirectory(class CLKRLinearHashTable::CDirEntry * __ptr64)
844?_FreeSegmentDirectory@CLKRLinearHashTable@@CA_NPEAVCDirEntry@1@@Z
845; private: static bool __cdecl CLKRHashTable::_FreeSubTable(class CLKRLinearHashTable * __ptr64)
846?_FreeSubTable@CLKRHashTable@@CA_NPEAVCLKRLinearHashTable@@@Z
847; private: static bool __cdecl CLKRHashTable::_FreeSubTableArray(class CLKRLinearHashTable * __ptr64 * __ptr64)
848?_FreeSubTableArray@CLKRHashTable@@CA_NPEAPEAVCLKRLinearHashTable@@@Z
849; private: unsigned long __cdecl CLKRLinearHashTable::_H0(unsigned long)const __ptr64
850?_H0@CLKRLinearHashTable@@AEBAKK@Z
851; private: static unsigned long __cdecl CLKRLinearHashTable::_H0(unsigned long,unsigned long)
852?_H0@CLKRLinearHashTable@@CAKKK@Z
853; private: unsigned long __cdecl CLKRLinearHashTable::_H1(unsigned long)const __ptr64
854?_H1@CLKRLinearHashTable@@AEBAKK@Z
855; private: static unsigned long __cdecl CLKRLinearHashTable::_H1(unsigned long,unsigned long)
856?_H1@CLKRLinearHashTable@@CAKKK@Z
857; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_Initialize(unsigned __int64 const (__cdecl*)(void const * __ptr64),unsigned long (__cdecl*)(unsigned __int64),bool (__cdecl*)(unsigned __int64,unsigned __int64),void (__cdecl*)(void const * __ptr64,int),char const * __ptr64,double,unsigned long) __ptr64
858?_Initialize@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@P6A?B_KPEBX@ZP6AK_K@ZP6A_N22@ZP6AX0H@ZPEBDNK@Z
859; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_InitializeIterator(class CLKRLinearHashTable::CIterator * __ptr64) __ptr64
860?_InitializeIterator@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCIterator@1@@Z
861; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_InsertRecord(void const * __ptr64,unsigned long,bool) __ptr64
862?_InsertRecord@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEBXK_N@Z
863; private: void __cdecl CLKRHashTable::_InsertThisIntoGlobalList(void) __ptr64
864?_InsertThisIntoGlobalList@CLKRHashTable@@AEAAXXZ
865; private: void __cdecl CLKRLinearHashTable::_InsertThisIntoGlobalList(void) __ptr64
866?_InsertThisIntoGlobalList@CLKRLinearHashTable@@AEAAXXZ
867; private: bool __cdecl CSpinLock::_IsLocked(void)const __ptr64
868?_IsLocked@CSpinLock@@AEBA_NXZ
869; private: int __cdecl CLKRLinearHashTable::_IsNodeCompact(class CLKRLinearHashTable::CBucket * __ptr64 const)const __ptr64
870?_IsNodeCompact@CLKRLinearHashTable@@AEBAHQEAVCBucket@1@@Z
871; private: void __cdecl CSpinLock::_Lock(void) __ptr64
872?_Lock@CSpinLock@@AEAAXXZ
873; private: void __cdecl CReaderWriterLock2::_LockSpin(bool) __ptr64
874?_LockSpin@CReaderWriterLock2@@AEAAX_N@Z
875; private: void __cdecl CReaderWriterLock3::_LockSpin(enum CReaderWriterLock3::SPIN_TYPE) __ptr64
876?_LockSpin@CReaderWriterLock3@@AEAAXW4SPIN_TYPE@1@@Z
877; private: void __cdecl CReaderWriterLock::_LockSpin(bool) __ptr64
878?_LockSpin@CReaderWriterLock@@AEAAX_N@Z
879; private: void __cdecl CSmallSpinLock::_LockSpin(void) __ptr64
880?_LockSpin@CSmallSpinLock@@AEAAXXZ
881; private: void __cdecl CSpinLock::_LockSpin(void) __ptr64
882?_LockSpin@CSpinLock@@AEAAXXZ
883; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_MergeRecordSets(class CLKRLinearHashTable::CBucket * __ptr64,class CLKRLinearHashTable::CNodeClump * __ptr64,class CLKRLinearHashTable::CNodeClump * __ptr64) __ptr64
884?_MergeRecordSets@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCBucket@1@PEAVCNodeClump@1@1@Z
885; private: static enum LK_PREDICATE __cdecl CLKRLinearHashTable::_PredTrue(void const * __ptr64,void * __ptr64)
886?_PredTrue@CLKRLinearHashTable@@CA?AW4LK_PREDICATE@@PEBXPEAX@Z
887; private: void __cdecl CReaderWriterLock2::_ReadLockSpin(void) __ptr64
888?_ReadLockSpin@CReaderWriterLock2@@AEAAXXZ
889; private: void __cdecl CReaderWriterLock3::_ReadLockSpin(enum CReaderWriterLock3::SPIN_TYPE) __ptr64
890?_ReadLockSpin@CReaderWriterLock3@@AEAAXW4SPIN_TYPE@1@@Z
891; private: void __cdecl CReaderWriterLock::_ReadLockSpin(void) __ptr64
892?_ReadLockSpin@CReaderWriterLock@@AEAAXXZ
893; private: bool __cdecl CLKRLinearHashTable::_ReadOrWriteLock(void)const __ptr64
894?_ReadOrWriteLock@CLKRLinearHashTable@@AEBA_NXZ
895; private: void __cdecl CLKRLinearHashTable::_ReadOrWriteUnlock(bool)const __ptr64
896?_ReadOrWriteUnlock@CLKRLinearHashTable@@AEBAX_N@Z
897; private: void __cdecl CLKRHashTable::_RemoveThisFromGlobalList(void) __ptr64
898?_RemoveThisFromGlobalList@CLKRHashTable@@AEAAXXZ
899; private: void __cdecl CLKRLinearHashTable::_RemoveThisFromGlobalList(void) __ptr64
900?_RemoveThisFromGlobalList@CLKRLinearHashTable@@AEAAXXZ
901; private: unsigned long __cdecl CLKRLinearHashTable::_SegIndex(unsigned long)const __ptr64
902?_SegIndex@CLKRLinearHashTable@@AEBAKK@Z
903; private: class CLKRLinearHashTable::CSegment * __ptr64 & __ptr64 __cdecl CLKRLinearHashTable::_Segment(unsigned long)const __ptr64
904?_Segment@CLKRLinearHashTable@@AEBAAEAPEAVCSegment@1@K@Z
905; private: void __cdecl CLKRLinearHashTable::_SetSegVars(enum LK_TABLESIZE) __ptr64
906?_SetSegVars@CLKRLinearHashTable@@AEAAXW4LK_TABLESIZE@@@Z
907; private: enum LK_RETCODE __cdecl CLKRLinearHashTable::_SplitRecordSet(class CLKRLinearHashTable::CNodeClump * __ptr64,class CLKRLinearHashTable::CNodeClump * __ptr64,unsigned long,unsigned long,unsigned long,class CLKRLinearHashTable::CNodeClump * __ptr64) __ptr64
908?_SplitRecordSet@CLKRLinearHashTable@@AEAA?AW4LK_RETCODE@@PEAVCNodeClump@1@0KKK0@Z
909; private: class CLKRLinearHashTable * __ptr64 __cdecl CLKRHashTable::_SubTable(unsigned long)const __ptr64
910?_SubTable@CLKRHashTable@@AEBAPEAVCLKRLinearHashTable@@K@Z
911; private: bool __cdecl CSmallSpinLock::_TryLock(void) __ptr64
912?_TryLock@CSmallSpinLock@@AEAA_NXZ
913; private: bool __cdecl CSpinLock::_TryLock(void) __ptr64
914?_TryLock@CSpinLock@@AEAA_NXZ
915; private: bool __cdecl CReaderWriterLock2::_TryReadLock(void) __ptr64
916?_TryReadLock@CReaderWriterLock2@@AEAA_NXZ
917; private: bool __cdecl CReaderWriterLock3::_TryReadLock(void) __ptr64
918?_TryReadLock@CReaderWriterLock3@@AEAA_NXZ
919; private: bool __cdecl CReaderWriterLock::_TryReadLock(void) __ptr64
920?_TryReadLock@CReaderWriterLock@@AEAA_NXZ
921; private: bool __cdecl CReaderWriterLock3::_TryReadLockRecursive(void) __ptr64
922?_TryReadLockRecursive@CReaderWriterLock3@@AEAA_NXZ
923; private: bool __cdecl CReaderWriterLock3::_TryWriteLock2(void) __ptr64
924?_TryWriteLock2@CReaderWriterLock3@@AEAA_NXZ
925; private: bool __cdecl CReaderWriterLock2::_TryWriteLock(long) __ptr64
926?_TryWriteLock@CReaderWriterLock2@@AEAA_NJ@Z
927; private: bool __cdecl CReaderWriterLock3::_TryWriteLock(long) __ptr64
928?_TryWriteLock@CReaderWriterLock3@@AEAA_NJ@Z
929; private: bool __cdecl CReaderWriterLock::_TryWriteLock(void) __ptr64
930?_TryWriteLock@CReaderWriterLock@@AEAA_NXZ
931; private: void __cdecl CSpinLock::_Unlock(void) __ptr64
932?_Unlock@CSpinLock@@AEAAXXZ
933; private: void __cdecl CReaderWriterLock2::_WriteLockSpin(void) __ptr64
934?_WriteLockSpin@CReaderWriterLock2@@AEAAXXZ
935; private: void __cdecl CReaderWriterLock3::_WriteLockSpin(void) __ptr64
936?_WriteLockSpin@CReaderWriterLock3@@AEAAXXZ
937; private: void __cdecl CReaderWriterLock::_WriteLockSpin(void) __ptr64
938?_WriteLockSpin@CReaderWriterLock@@AEAAXXZ
939; private: long __cdecl CExFileOperation::_getFileSecurity(unsigned short const * __ptr64) __ptr64
940?_getFileSecurity@CExFileOperation@@AEAAJPEBG@Z
941; private: long __cdecl CExFileOperation::_setFileSecurity(unsigned short const * __ptr64) __ptr64
942?_setFileSecurity@CExFileOperation@@AEAAJPEBG@Z
943; public: int __cdecl CEXAutoBackupFile::fHaveBackup(void) __ptr64
944?fHaveBackup@CEXAutoBackupFile@@QEAAHXZ
945; long const * const `public: static long const * __ptr64 __cdecl CLKRHashTableStats::BucketSizes(void)'::`2'::s_aBucketSizes
946?s_aBucketSizes@?1??BucketSizes@CLKRHashTableStats@@SAPEBJXZ@4QBJB
947; protected: static double CCritSec::sm_dblDfltSpinAdjFctr
948?sm_dblDfltSpinAdjFctr@CCritSec@@1NA DATA
949; protected: static double CFakeLock::sm_dblDfltSpinAdjFctr
950?sm_dblDfltSpinAdjFctr@CFakeLock@@1NA DATA
951; protected: static double CReaderWriterLock2::sm_dblDfltSpinAdjFctr
952?sm_dblDfltSpinAdjFctr@CReaderWriterLock2@@1NA DATA
953; protected: static double CReaderWriterLock3::sm_dblDfltSpinAdjFctr
954?sm_dblDfltSpinAdjFctr@CReaderWriterLock3@@1NA DATA
955; protected: static double CReaderWriterLock::sm_dblDfltSpinAdjFctr
956?sm_dblDfltSpinAdjFctr@CReaderWriterLock@@1NA DATA
957; protected: static double CSmallSpinLock::sm_dblDfltSpinAdjFctr
958?sm_dblDfltSpinAdjFctr@CSmallSpinLock@@1NA DATA
959; protected: static double CSpinLock::sm_dblDfltSpinAdjFctr
960?sm_dblDfltSpinAdjFctr@CSpinLock@@1NA DATA
961; private: static class CLockedDoubleList CLKRHashTable::sm_llGlobalList
962?sm_llGlobalList@CLKRHashTable@@0VCLockedDoubleList@@A DATA
963; private: static class CLockedDoubleList CLKRLinearHashTable::sm_llGlobalList
964?sm_llGlobalList@CLKRLinearHashTable@@0VCLockedDoubleList@@A DATA
965; private: static struct _OSVERSIONINFOW * __ptr64 __ptr64 CMdVersionInfo::sm_lpOSVERSIONINFO
966?sm_lpOSVERSIONINFO@CMdVersionInfo@@0PEAU_OSVERSIONINFOW@@EA DATA
967; private: static unsigned long (__cdecl* __ptr64 CCriticalSection::sm_pfnSetCriticalSectionSpinCount)(struct _RTL_CRITICAL_SECTION * __ptr64,unsigned long)
968?sm_pfnSetCriticalSectionSpinCount@CCriticalSection@@0P6AKPEAU_RTL_CRITICAL_SECTION@@K@ZEA DATA
969; private: static int (__cdecl* __ptr64 CCriticalSection::sm_pfnTryEnterCriticalSection)(struct _RTL_CRITICAL_SECTION * __ptr64)
970?sm_pfnTryEnterCriticalSection@CCriticalSection@@0P6AHPEAU_RTL_CRITICAL_SECTION@@@ZEA DATA
971; protected: static unsigned short CCritSec::sm_wDefaultSpinCount
972?sm_wDefaultSpinCount@CCritSec@@1GA DATA
973; protected: static unsigned short CFakeLock::sm_wDefaultSpinCount
974?sm_wDefaultSpinCount@CFakeLock@@1GA DATA
975; protected: static unsigned short CReaderWriterLock2::sm_wDefaultSpinCount
976?sm_wDefaultSpinCount@CReaderWriterLock2@@1GA DATA
977; protected: static unsigned short CReaderWriterLock3::sm_wDefaultSpinCount
978?sm_wDefaultSpinCount@CReaderWriterLock3@@1GA DATA
979; protected: static unsigned short CReaderWriterLock::sm_wDefaultSpinCount
980?sm_wDefaultSpinCount@CReaderWriterLock@@1GA DATA
981; protected: static unsigned short CSmallSpinLock::sm_wDefaultSpinCount
982?sm_wDefaultSpinCount@CSmallSpinLock@@1GA DATA
983; protected: static unsigned short CSpinLock::sm_wDefaultSpinCount
984?sm_wDefaultSpinCount@CSpinLock@@1GA DATA
985DllBidEntryPoint
986DllMain
987FXMemAttach
988FXMemDetach
989GetIUMS
990IrtlTrace
991IsValidAddress
992IsValidString
993LoadVersionedResourceEx
994MPCSInitialize
995MPCSUninitialize
996MPDeleteCriticalSection
997MPInitializeCriticalSection
998MPInitializeCriticalSectionAndSpinCount
999MpGetHeapHandle
1000MpHeapAlloc
1001MpHeapCreate
1002MpHeapDestroy
1003MpHeapFree
1004MpHeapReAlloc
1005MpHeapSize
1006MpHeapValidate
1007SetIUMS
1008SetMemHook
1009UMSEnterCSWraper
1010mpCalloc
1011mpFree
1012mpMalloc
1013mpRealloc
lib/libc/mingw/lib64/msdtclog.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file MSDTCLOG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSDTCLOG.dll
8EXPORTS
9; public: static long __cdecl CLogMgr::CreateInstance(class CLogMgr * __ptr64 * __ptr64,struct IUnknown * __ptr64)
10?CreateInstance@CLogMgr@@SAJPEAPEAV1@PEAUIUnknown@@@Z
11DllGetDTCLOG2
12; int __cdecl DllGetDTCLOG(struct _GUID const & __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64)
13?DllGetDTCLOG@@YAHAEBU_GUID@@0PEAPEAX@Z
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
lib/libc/mingw/lib64/msdtcprx.def created+269
......@@ -0,0 +1,269 @@
1;
2; Exports of file MSDTCPRX.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSDTCPRX.dll
8EXPORTS
9DllGetDTCProxy
10; public: __cdecl CSecurityDescriptor::CSecurityDescriptor(void) __ptr64
11??0CSecurityDescriptor@@QEAA@XZ
12; protected: __cdecl CService::CService(void) __ptr64
13??0CService@@IEAA@XZ
14; protected: __cdecl CServiceControlManager::CServiceControlManager(void) __ptr64
15??0CServiceControlManager@@IEAA@XZ
16; public: __cdecl CSecurityDescriptor::~CSecurityDescriptor(void) __ptr64
17??1CSecurityDescriptor@@QEAA@XZ
18; protected: __cdecl CService::~CService(void) __ptr64
19??1CService@@IEAA@XZ
20DTC_XaOpen
21DTC_XaStart
22DTC_XaEnd
23DTC_XaPrepare
24DTC_XaCommit
25DTC_XaRollback
26DTC_XaRecover
27DTC_XaForget
28DTC_XaComplete
29DTC_XaClose
30DTC_AxReg
31DTC_AxUnReg
32ax_reg
33ax_unreg
34ShutDownCM
35DllGetDTCConnectionManager
36DllGetDTCUtilObject
37ContactToNameObject
38SysPrepDtcReinstall
39; protected: __cdecl CServiceControlManager::~CServiceControlManager(void) __ptr64
40??1CServiceControlManager@@IEAA@XZ
41; public: class CSecurityDescriptor & __ptr64 __cdecl CSecurityDescriptor::operator=(class CSecurityDescriptor const & __ptr64) __ptr64
42??4CSecurityDescriptor@@QEAAAEAV0@AEBV0@@Z
43; public: class CService & __ptr64 __cdecl CService::operator=(class CService const & __ptr64) __ptr64
44??4CService@@QEAAAEAV0@AEBV0@@Z
45; public: class CServiceControlManager & __ptr64 __cdecl CServiceControlManager::operator=(class CServiceControlManager const & __ptr64) __ptr64
46??4CServiceControlManager@@QEAAAEAV0@AEBV0@@Z
47; public: unsigned long __cdecl CService::AddRef(void) __ptr64
48?AddRef@CService@@QEAAKXZ
49; public: unsigned long __cdecl CServiceControlManager::AddRef(void) __ptr64
50?AddRef@CServiceControlManager@@QEAAKXZ
51; public: long __cdecl CSecurityDescriptor::AddSid(unsigned short * __ptr64,unsigned long,unsigned long) __ptr64
52?AddSid@CSecurityDescriptor@@QEAAJPEAGKK@Z
53; public: long __cdecl CSecurityDescriptor::AddSid(void * __ptr64,unsigned long,unsigned long) __ptr64
54?AddSid@CSecurityDescriptor@@QEAAJPEAXKK@Z
55; protected: long __cdecl CSecurityDescriptor::Alloc(unsigned long) __ptr64
56?Alloc@CSecurityDescriptor@@IEAAJK@Z
57; long __cdecl ApplyAccountSettings(int,unsigned short * __ptr64,unsigned long,unsigned short * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64,int)
58?ApplyAccountSettings@@YAJHPEAGK000H@Z
59; long __cdecl ApplyNamedSecurityChange(unsigned short * __ptr64,enum _SE_OBJECT_TYPE,void * __ptr64,void * __ptr64,unsigned long)
60?ApplyNamedSecurityChange@@YAJPEAGW4_SE_OBJECT_TYPE@@PEAX2K@Z
61; long __cdecl CheckForDCPromotionDemotion(unsigned short * __ptr64)
62?CheckForDCPromotionDemotion@@YAJPEAG@Z
63; public: long __cdecl CSecurityDescriptor::ClearAcl(void) __ptr64
64?ClearAcl@CSecurityDescriptor@@QEAAJXZ
65; public: long __cdecl CSecurityDescriptor::ClearInMemoryAcl(void) __ptr64
66?ClearInMemoryAcl@CSecurityDescriptor@@QEAAJXZ
67; void __cdecl CloseNetpEventLogHandle(void)
68?CloseNetpEventLogHandle@@YAXXZ
69; public: static long __cdecl CConnectionManager::Create(class CConnectionManager * __ptr64 * __ptr64)
70?Create@CConnectionManager@@SAJPEAPEAV1@@Z
71; public: static long __cdecl CNameService::Create(class CNameService * __ptr64 * __ptr64)
72?Create@CNameService@@SAJPEAPEAV1@@Z
73; public: static long __cdecl CService::Create(class CService * __ptr64 * __ptr64,unsigned short * __ptr64,class CServiceControlManager * __ptr64,unsigned long,unsigned short * __ptr64)
74?Create@CService@@SAJPEAPEAV1@PEAGPEAVCServiceControlManager@@K1@Z
75; public: static long __cdecl CServiceControlManager::Create(class CServiceControlManager * __ptr64 * __ptr64,unsigned long,unsigned short * __ptr64,unsigned short * __ptr64)
76?Create@CServiceControlManager@@SAJPEAPEAV1@KPEAG1@Z
77; void __cdecl CreateASRKey(void)
78?CreateASRKey@@YAXXZ
79; public: static long __cdecl CTmProxyCore::CreateInstance(class CTmProxyCore * __ptr64 * __ptr64,struct IUnknown * __ptr64)
80?CreateInstance@CTmProxyCore@@SAJPEAPEAV1@PEAUIUnknown@@@Z
81; long __cdecl CreateNewContact(struct IProperties * __ptr64 * __ptr64)
82?CreateNewContact@@YAJPEAPEAUIProperties@@@Z
83; long __cdecl CreateOrOpenMutexW(void * __ptr64 * __ptr64,unsigned short const * __ptr64,int)
84?CreateOrOpenMutexW@@YAJPEAPEAXPEBGH@Z
85; void __cdecl DeleteExistingContacts(unsigned short * __ptr64,struct IContactPool * __ptr64,unsigned short * __ptr64)
86?DeleteExistingContacts@@YAXPEAGPEAUIContactPool@@0@Z
87; int __cdecl DllGetDTCAdmin(struct _GUID const & __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64)
88?DllGetDTCAdmin@@YAHAEBU_GUID@@0PEAPEAX@Z
89; long __cdecl DtcWriteToEventLogger(unsigned long,unsigned long,unsigned long,unsigned long,void * __ptr64,char * __ptr64)
90?DtcWriteToEventLogger@@YAJKKKKPEAXPEAD@Z
91; long __cdecl DtcWriteToEventLoggerEx(unsigned short,unsigned short,unsigned long,void * __ptr64,unsigned short,unsigned long,char const * __ptr64 * __ptr64,void * __ptr64)
92?DtcWriteToEventLoggerEx@@YAJGGKPEAXGKPEAPEBD0@Z
93; long __cdecl DtcWriteToEventLoggerExUnFiltered(unsigned short,unsigned short,unsigned long,void * __ptr64,unsigned short,unsigned long,char const * __ptr64 * __ptr64,void * __ptr64)
94?DtcWriteToEventLoggerExUnFiltered@@YAJGGKPEAXGKPEAPEBD0@Z
95; long __cdecl DtcWriteToEventLoggerExUnFilteredA(unsigned short,unsigned short,unsigned long,void * __ptr64,unsigned short,unsigned long,char const * __ptr64 * __ptr64,void * __ptr64)
96?DtcWriteToEventLoggerExUnFilteredA@@YAJGGKPEAXGKPEAPEBD0@Z
97; long __cdecl EraseDtcClient(unsigned short * __ptr64)
98?EraseDtcClient@@YAJPEAG@Z
99; public: long __cdecl CService::GetAccount(unsigned short * __ptr64,unsigned long * __ptr64) __ptr64
100?GetAccount@CService@@QEAAJPEAGPEAK@Z
101; long __cdecl GetAccountSid(unsigned short * __ptr64,unsigned short * __ptr64,void * __ptr64 * __ptr64)
102?GetAccountSid@@YAJPEAG0PEAPEAX@Z
103; public: long __cdecl CSecurityDescriptor::GetControl(unsigned short * __ptr64) __ptr64
104?GetControl@CSecurityDescriptor@@QEAAJPEAG@Z
105; unsigned short * __ptr64 __cdecl GetDefaultLogPath(void)
106?GetDefaultLogPath@@YAPEAGXZ
107; unsigned long __cdecl GetDefaultLogSize(void)
108?GetDefaultLogSize@@YAKXZ
109; long __cdecl GetDefaultSecurityConfigurationOptions(unsigned short * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64)
110?GetDefaultSecurityConfigurationOptions@@YAJPEAGPEAK1@Z
111; char * __ptr64 __cdecl GetDefaultServiceNameA(void)
112?GetDefaultServiceNameA@@YAPEADXZ
113; unsigned short * __ptr64 __cdecl GetDefaultServiceNameW(void)
114?GetDefaultServiceNameW@@YAPEAGXZ
115; unsigned short * __ptr64 __cdecl GetDefaultServicePath(void)
116?GetDefaultServicePath@@YAPEAGXZ
117; int __cdecl GetDtcCIDProps(struct _LOG_PROPERTIES & __ptr64,struct _DAC_PROPERTIES & __ptr64)
118?GetDtcCIDProps@@YAHAEAU_LOG_PROPERTIES@@AEAU_DAC_PROPERTIES@@@Z
119; int __cdecl GetDtcLogPath(unsigned long,unsigned short * __ptr64)
120?GetDtcLogPath@@YAHKPEAG@Z
121; int __cdecl GetDtcPath(unsigned long,unsigned short * __ptr64)
122?GetDtcPath@@YAHKPEAG@Z
123; long __cdecl GetDtcRpcSecurityLevel(unsigned short * __ptr64,enum _DTC_SECURITY_LEVEL * __ptr64,int)
124?GetDtcRpcSecurityLevel@@YAJPEAGPEAW4_DTC_SECURITY_LEVEL@@H@Z
125; unsigned short * __ptr64 __cdecl GetEventLogSource(void)
126?GetEventLogSource@@YAPEAGXZ
127; public: long __cdecl CService::GetHandle(struct SC_HANDLE__ * __ptr64 & __ptr64) __ptr64
128?GetHandle@CService@@QEAAJAEAPEAUSC_HANDLE__@@@Z
129; public: long __cdecl CServiceControlManager::GetHandle(struct SC_HANDLE__ * __ptr64 & __ptr64) __ptr64
130?GetHandle@CServiceControlManager@@QEAAJAEAPEAUSC_HANDLE__@@@Z
131; long __cdecl GetLastKnownDomainControllerState(unsigned short * __ptr64,unsigned long * __ptr64)
132?GetLastKnownDomainControllerState@@YAJPEAGPEAK@Z
133; long __cdecl GetLocalDtcClusteringVersion(unsigned long * __ptr64)
134?GetLocalDtcClusteringVersion@@YAJPEAK@Z
135; long __cdecl GetMsDtcSPN(unsigned short * __ptr64,unsigned short * __ptr64 * __ptr64)
136?GetMsDtcSPN@@YAJPEAGPEAPEAG@Z
137; public: long __cdecl CSecurityDescriptor::GetNamedInfo(unsigned short * __ptr64,enum _SE_OBJECT_TYPE) __ptr64
138?GetNamedInfo@CSecurityDescriptor@@QEAAJPEAGW4_SE_OBJECT_TYPE@@@Z
139; unsigned short * __ptr64 __cdecl GetOldDefaultLogPath(void)
140?GetOldDefaultLogPath@@YAPEAGXZ
141; long __cdecl GetSecurityConfigurationOptions(unsigned short * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,int)
142?GetSecurityConfigurationOptions@@YAJPEAGPEAK1H@Z
143; public: long __cdecl CSecurityDescriptor::GetSecurityDescriptor(void * __ptr64 * __ptr64) __ptr64
144?GetSecurityDescriptor@CSecurityDescriptor@@QEAAJPEAPEAX@Z
145; long __cdecl GetSecurityRegValueNonClusterW(unsigned short * __ptr64,unsigned short const * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64)
146?GetSecurityRegValueNonClusterW@@YAJPEAGPEBGPEAEPEAK@Z
147; long __cdecl GetSecurityRegValueW(unsigned short * __ptr64,unsigned short const * __ptr64,unsigned char * __ptr64,unsigned long * __ptr64,int)
148?GetSecurityRegValueW@@YAJPEAGPEBGPEAEPEAKH@Z
149; long __cdecl GetSharedDtcClusteringVersion(unsigned long * __ptr64)
150?GetSharedDtcClusteringVersion@@YAJPEAK@Z
151; long __cdecl GetTmContactA(char * __ptr64,char * __ptr64,struct IProperties * __ptr64 * __ptr64)
152?GetTmContactA@@YAJPEAD0PEAPEAUIProperties@@@Z
153; long __cdecl GetTmContactW(unsigned short * __ptr64,unsigned short * __ptr64,struct IProperties * __ptr64 * __ptr64)
154?GetTmContactW@@YAJPEAG0PEAPEAUIProperties@@@Z
155; long __cdecl GetTmUIContactA(char * __ptr64,char * __ptr64,struct IProperties * __ptr64 * __ptr64)
156?GetTmUIContactA@@YAJPEAD0PEAPEAUIProperties@@@Z
157; long __cdecl GetTmUIContactW(unsigned short * __ptr64,unsigned short * __ptr64,struct IProperties * __ptr64 * __ptr64)
158?GetTmUIContactW@@YAJPEAG0PEAPEAUIProperties@@@Z
159; long __cdecl GetXATmSecurityKey(unsigned short * __ptr64,unsigned short * __ptr64,unsigned long * __ptr64)
160?GetXATmSecurityKey@@YAJPEAG0PEAK@Z
161; long __cdecl InstallDtc(unsigned short * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64,unsigned long,unsigned short * __ptr64,int)
162?InstallDtc@@YAJPEAG0000K0H@Z
163; long __cdecl InstallDtcClient(unsigned short * __ptr64,unsigned long,unsigned long)
164?InstallDtcClient@@YAJPEAGKK@Z
165; long __cdecl InstallTipGw(unsigned short * __ptr64)
166?InstallTipGw@@YAJPEAG@Z
167; long __cdecl InstallXaTm(unsigned short * __ptr64)
168?InstallXaTm@@YAJPEAG@Z
169; protected: long __cdecl CService::InternalInit(unsigned short * __ptr64,class CServiceControlManager * __ptr64,unsigned long,unsigned short * __ptr64) __ptr64
170?InternalInit@CService@@IEAAJPEAGPEAVCServiceControlManager@@K0@Z
171; protected: long __cdecl CServiceControlManager::InternalInit(unsigned long,unsigned short * __ptr64,unsigned short * __ptr64) __ptr64
172?InternalInit@CServiceControlManager@@IEAAJKPEAG0@Z
173; int __cdecl IsNtVersion5OrMore(void)
174?IsNtVersion5OrMore@@YAHXZ
175; long __cdecl JoinDtc(void)
176?JoinDtc@@YAJXZ
177; long __cdecl JoinDtcEx(unsigned short * __ptr64)
178?JoinDtcEx@@YAJPEAG@Z
179; long __cdecl LookupSpecialAccount(unsigned short * __ptr64,struct _SPECIAL_ACCOUNT_ * __ptr64 * __ptr64)
180?LookupSpecialAccount@@YAJPEAGPEAPEAU_SPECIAL_ACCOUNT_@@@Z
181; protected: long __cdecl CSecurityDescriptor::MakeAbsolute(void) __ptr64
182?MakeAbsolute@CSecurityDescriptor@@IEAAJXZ
183; long __cdecl MirrorXaTmSecurityKey(unsigned short * __ptr64)
184?MirrorXaTmSecurityKey@@YAJPEAG@Z
185; long __cdecl MsDtcSPNFree(unsigned short * __ptr64 * __ptr64)
186?MsDtcSPNFree@@YAJPEAPEAG@Z
187; public: long __cdecl CServiceControlManager::OpenServiceA(class CService * __ptr64 * __ptr64,unsigned short * __ptr64,unsigned long) __ptr64
188?OpenServiceA@CServiceControlManager@@QEAAJPEAPEAVCService@@PEAGK@Z
189; long __cdecl PopulateLocalRegistry(void)
190?PopulateLocalRegistry@@YAJXZ
191; long __cdecl PopulateSharedClusterRegistryWithContacts(void)
192?PopulateSharedClusterRegistryWithContacts@@YAJXZ
193; long __cdecl PopulateSharedClusterRegistryWithLogInfo(void)
194?PopulateSharedClusterRegistryWithLogInfo@@YAJXZ
195; public: long __cdecl CSecurityDescriptor::QueryServiceObjectSecurity(struct SC_HANDLE__ * __ptr64,unsigned long) __ptr64
196?QueryServiceObjectSecurity@CSecurityDescriptor@@QEAAJPEAUSC_HANDLE__@@K@Z
197; public: unsigned long __cdecl CService::Release(void) __ptr64
198?Release@CService@@QEAAKXZ
199; public: unsigned long __cdecl CServiceControlManager::Release(void) __ptr64
200?Release@CServiceControlManager@@QEAAKXZ
201; long __cdecl RemoveDtc(unsigned short * __ptr64,unsigned short * __ptr64,unsigned short * __ptr64)
202?RemoveDtc@@YAJPEAG00@Z
203; public: long __cdecl CSecurityDescriptor::RemoveSid(unsigned short * __ptr64) __ptr64
204?RemoveSid@CSecurityDescriptor@@QEAAJPEAG@Z
205; public: long __cdecl CSecurityDescriptor::RemoveSid(void * __ptr64) __ptr64
206?RemoveSid@CSecurityDescriptor@@QEAAJPEAX@Z
207; protected: void __cdecl CSecurityDescriptor::Reset(void) __ptr64
208?Reset@CSecurityDescriptor@@IEAAXXZ
209; long __cdecl RidToSid(unsigned long,void * __ptr64 * __ptr64)
210?RidToSid@@YAJKPEAPEAX@Z
211; public: long __cdecl CService::SetAccount(unsigned short * __ptr64,unsigned short * __ptr64) __ptr64
212?SetAccount@CService@@QEAAJPEAG0@Z
213; long __cdecl SetAccountInfoInRegistryW(unsigned short * __ptr64)
214?SetAccountInfoInRegistryW@@YAJPEAG@Z
215; public: long __cdecl CSecurityDescriptor::SetControl(unsigned short,unsigned short) __ptr64
216?SetControl@CSecurityDescriptor@@QEAAJGG@Z
217; long __cdecl SetDomainControllerState(unsigned short * __ptr64)
218?SetDomainControllerState@@YAJPEAG@Z
219; int __cdecl SetDtcCIDProps(struct _LOG_PROPERTIES & __ptr64,struct _DAC_PROPERTIES & __ptr64)
220?SetDtcCIDProps@@YAHAEAU_LOG_PROPERTIES@@AEAU_DAC_PROPERTIES@@@Z
221; long __cdecl SetDtcClient(unsigned short * __ptr64,char * __ptr64,unsigned short * __ptr64)
222?SetDtcClient@@YAJPEAGPEAD0@Z
223; long __cdecl SetDtcRpcSecurityLevel(unsigned short * __ptr64,enum _DTC_SECURITY_LEVEL,int)
224?SetDtcRpcSecurityLevel@@YAJPEAGW4_DTC_SECURITY_LEVEL@@H@Z
225; long __cdecl SetDtcServerProtocol(char * __ptr64,char * __ptr64)
226?SetDtcServerProtocol@@YAJPEAD0@Z
227; void __cdecl SetEventLogSourceToMsdtcCore(void)
228?SetEventLogSourceToMsdtcCore@@YAXXZ
229; public: long __cdecl CSecurityDescriptor::SetNamedInfo(unsigned short * __ptr64,enum _SE_OBJECT_TYPE,unsigned long) __ptr64
230?SetNamedInfo@CSecurityDescriptor@@QEAAJPEAGW4_SE_OBJECT_TYPE@@K@Z
231; protected: long __cdecl CSecurityDescriptor::SetNewAcl(struct _ACL * __ptr64,unsigned long,int,int) __ptr64
232?SetNewAcl@CSecurityDescriptor@@IEAAJPEAU_ACL@@KHH@Z
233; public: long __cdecl CSecurityDescriptor::SetOwner(unsigned short * __ptr64,int) __ptr64
234?SetOwner@CSecurityDescriptor@@QEAAJPEAGH@Z
235; public: long __cdecl CSecurityDescriptor::SetOwner(void * __ptr64,int) __ptr64
236?SetOwner@CSecurityDescriptor@@QEAAJPEAXH@Z
237; long __cdecl SetSecurityConfigurationOptions(unsigned short * __ptr64,unsigned long,unsigned long)
238?SetSecurityConfigurationOptions@@YAJPEAGKK@Z
239; long __cdecl SetSecurityRegValueNonClusterW(unsigned short * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned char * __ptr64,unsigned long)
240?SetSecurityRegValueNonClusterW@@YAJPEAGPEBGKPEAEK@Z
241; long __cdecl SetSecurityRegValueW(unsigned short * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned char * __ptr64,unsigned long)
242?SetSecurityRegValueW@@YAJPEAGPEBGKPEAEK@Z
243; public: long __cdecl CSecurityDescriptor::SetServiceObjectSecurity(struct SC_HANDLE__ * __ptr64,unsigned long) __ptr64
244?SetServiceObjectSecurity@CSecurityDescriptor@@QEAAJPEAUSC_HANDLE__@@K@Z
245; public: long __cdecl CSecurityDescriptor::SetSpecialAccounts(unsigned long) __ptr64
246?SetSpecialAccounts@CSecurityDescriptor@@QEAAJK@Z
247; long __cdecl StringToSid(unsigned short * __ptr64,void * __ptr64 * __ptr64)
248?StringToSid@@YAJPEAGPEAPEAX@Z
249; long __cdecl UpdateTmNameObject(struct INameObject * __ptr64,struct INameObject * __ptr64 * __ptr64)
250?UpdateTmNameObject@@YAJPEAUINameObject@@PEAPEAU1@@Z
251; long __cdecl UpgradeDtc(int)
252?UpgradeDtc@@YAJH@Z
253; long __cdecl VerifyAccountInfo(void)
254?VerifyAccountInfo@@YAJXZ
255; int __cdecl Win95Present(void)
256?Win95Present@@YAHXZ
257; struct _SPECIAL_ACCOUNT_ * g_aSpecialAccounts
258?g_aSpecialAccounts@@3PAU_SPECIAL_ACCOUNT_@@A DATA
259ClusterChangeDtcUserAccount
260ClusterCryptoContainerCreate
261ClusterCryptoContainerDelete
262ClusterDaclCryptoContainer
263ClusterUpdateAccountInformation
264DecryptAccountInformation
265DllGetClassObject
266DllGetTransactionManagerCore
267DllRegisterServer
268DllUnregisterServer
269EncryptAccountInformation
lib/libc/mingw/lib64/msdtcstp.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file ntdtcsetup.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ntdtcsetup.dll
8EXPORTS
9OcEntry
10RunDtcSetWebApplicationServerRoleW
11SetupPrintLog
12DtcGetWebApplicationServerRole
13DtcSetWebApplicationServerRole
lib/libc/mingw/lib64/msdtctm.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file MSDTCTM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSDTCTM.dll
8EXPORTS
9DtcMainExt
10ASCWrapObject
11ASCDeliverDeferred
12ASCDefer
13ASCGetSafeReference
14; public: static long __cdecl CUISCore::Create(class CUISCore * __ptr64 * __ptr64,struct IUnknown * __ptr64)
15?Create@CUISCore@@SAJPEAPEAV1@PEAUIUnknown@@@Z
16; public: static long __cdecl CTm::CreateInstance(class CTm * __ptr64 * __ptr64,struct IUnknown * __ptr64)
17?CreateInstance@CTm@@SAJPEAPEAV1@PEAUIUnknown@@@Z
18; public: static long __cdecl CXaTmCore::CreateInstance(class CXaTmCore * __ptr64 * __ptr64,struct IUnknown * __ptr64)
19?CreateInstance@CXaTmCore@@SAJPEAPEAV1@PEAUIUnknown@@@Z
20; long __cdecl CreateThreadPool(void)
21?CreateThreadPool@@YAJXZ
22ASCWrapClassFactory
23DllGetClassObject
24DllRegisterServer
25DllUnregisterServer
26GetTipFunctionalityWorking
27SetTipFunctionalityWorking
lib/libc/mingw/lib64/msdtcuiu.def created+68
......@@ -0,0 +1,68 @@
1;
2; Exports of file MSDTCUIU.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSDTCUIU.dll
8EXPORTS
9InitDACDLL
10TermDACDLL
11TermDACInstance
12DoDACPropSheet
13DoDACAdvanced
14GetDACStatsMinMaxInfo
15; public: __cdecl CDac::CDac(class CDac const & __ptr64) __ptr64
16??0CDac@@QEAA@AEBV0@@Z
17; public: __cdecl CDac::CDac(unsigned long) __ptr64
18??0CDac@@QEAA@K@Z
19; public: __cdecl CDac::~CDac(void) __ptr64
20??1CDac@@QEAA@XZ
21; public: class CDac & __ptr64 __cdecl CDac::operator=(class CDac const & __ptr64) __ptr64
22??4CDac@@QEAAAEAV0@AEBV0@@Z
23; public: int __cdecl CDac::Connect(struct HWND__ * __ptr64,struct INTServiceControl * __ptr64) __ptr64
24?Connect@CDac@@QEAAHPEAUHWND__@@PEAUINTServiceControl@@@Z
25; public: static long __cdecl CUicCore::Create(class CUicCore * __ptr64 * __ptr64)
26?Create@CUicCore@@SAJPEAPEAV1@@Z
27; public: class CDialog * __ptr64 __cdecl CDac::CreateAdvancedPropertySheet(class CWnd * __ptr64) __ptr64
28?CreateAdvancedPropertySheet@CDac@@QEAAPEAVCDialog@@PEAVCWnd@@@Z
29; public: int __cdecl CDac::ErrorMessage(unsigned long,unsigned int) __ptr64
30?ErrorMessage@CDac@@QEAAHKI@Z
31; public: unsigned long __cdecl CDac::GetAdminAccess(void) __ptr64
32?GetAdminAccess@CDac@@QEAAKXZ
33; public: char * __ptr64 __cdecl CDac::GetHostNameA(void) __ptr64
34?GetHostNameA@CDac@@QEAAPEADXZ
35; public: unsigned short * __ptr64 __cdecl CDac::GetHostNameW(void) __ptr64
36?GetHostNameW@CDac@@QEAAPEAGXZ
37; public: struct HWND__ * __ptr64 __cdecl CDac::GetOwnerHwnd(void) __ptr64
38?GetOwnerHwnd@CDac@@QEAAPEAUHWND__@@XZ
39; public: unsigned short * __ptr64 __cdecl CDac::GetVirtualHostName(void) __ptr64
40?GetVirtualHostName@CDac@@QEAAPEAGXZ
41; public: long __cdecl CDac::Init(unsigned short * __ptr64) __ptr64
42?Init@CDac@@QEAAJPEAG@Z
43; public: int __cdecl CDac::IsConnected(void) __ptr64
44?IsConnected@CDac@@QEAAHXZ
45; public: int __cdecl CDac::ProcessCommand(unsigned __int64,__int64) __ptr64
46?ProcessCommand@CDac@@QEAAH_K_J@Z
47; void __cdecl RegisterErrorSink(struct IDacErrorSink * __ptr64)
48?RegisterErrorSink@@YAXPEAUIDacErrorSink@@@Z
49RunDACExe
50; public: long __cdecl CDac::ServiceRequest(unsigned long,void * __ptr64,unsigned long,bool) __ptr64
51?ServiceRequest@CDac@@QEAAJKPEAXK_N@Z
52; public: void __cdecl CDac::SetHostNameA(char * __ptr64) __ptr64
53?SetHostNameA@CDac@@QEAAXPEAD@Z
54; public: void __cdecl CDac::SetHostNameW(unsigned short * __ptr64) __ptr64
55?SetHostNameW@CDac@@QEAAXPEAG@Z
56; public: void __cdecl CDac::SetOwnerWnd(class CWnd * __ptr64) __ptr64
57?SetOwnerWnd@CDac@@QEAAXPEAVCWnd@@@Z
58; class CDac * __ptr64 __cdecl ValidateDACInstance(void * __ptr64 * __ptr64,unsigned short * __ptr64)
59?ValidateDACInstance@@YAPEAVCDac@@PEAPEAXPEAG@Z
60DllGetClassObject
61DllGetDTCUIC
62DllRegisterServer
63DllUnregisterServer
64DtcPerfClose
65DtcPerfCollect
66DtcPerfOpen
67PerfDllRegisterServer
68ShutDownUIC
lib/libc/mingw/lib64/msftedit.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file MSFTEDIT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSFTEDIT.dll
8EXPORTS
9IID_IRichEditOle
10IID_IRichEditOleCallback
11CreateTextServices
12IID_ITextServices
13IID_ITextHost
14IID_ITextHost2
15REExtendedRegisterClass
16RichEditANSIWndProc
17RichEdit10ANSIWndProc
18SetCustomTextOutHandlerEx
19DllGetVersion
20RichEditWndProc
21RichListBoxWndProc
22RichComboBoxWndProc
lib/libc/mingw/lib64/msgina.def created+30
......@@ -0,0 +1,30 @@
1;
2; Exports of file MSGINA.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSGINA.dll
8EXPORTS
9ShellShutdownDialog
10WlxActivateUserShell
11WlxDisconnectNotify
12WlxDisplayLockedNotice
13WlxDisplaySASNotice
14WlxDisplayStatusMessage
15WlxGetConsoleSwitchCredentials
16WlxGetStatusMessage
17WlxInitialize
18WlxIsLockOk
19WlxIsLogoffOk
20WlxLoggedOnSAS
21WlxLoggedOutSAS
22WlxLogoff
23WlxNegotiate
24WlxNetworkProviderLoad
25WlxReconnectNotify
26WlxRemoveStatusMessage
27WlxScreenSaverNotify
28WlxShutdown
29WlxStartApplication
30WlxWkstaLockedSAS
lib/libc/mingw/lib64/msgr3en.def created+43
......@@ -0,0 +1,43 @@
1;
2; Exports of file msgr3en.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msgr3en.dll
8EXPORTS
9CheckVersion
10CheckInit
11CheckTerminate
12CheckText
13CheckGetError
14CheckGetErrorInformation
15CheckIgnoreError
16CheckResetError
17CheckFreeHandle
18CheckEnumHandles
19CheckUnloadDoc
20CheckOpenMdt
21CheckCloseMdt
22CheckAddStats
23CheckGetStats
24CheckInitStats
25CheckStats
26CheckIgnoreRule
27CheckResetRule
28CheckIsRuleIgnored
29CheckUseOptions
30CheckOptionSettings
31CheckResetOptions
32CheckWriteOptions
33CheckLoadPersistData
34CheckSavePersistData
35DllCanUnloadNow
36CheckSubtractStats
37CheckBatchUpdate
38CheckAddUdr
39CheckGetNamedEntity
40CheckGetNormalizedData
41DllGetClassObject
42DllRegisterServer
43DllUnregisterServer
lib/libc/mingw/lib64/msgrocm.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file OCMSN.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OCMSN.dll
8EXPORTS
9OcEntry
lib/libc/mingw/lib64/msgsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file msgsvc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msgsvc.dll
8EXPORTS
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/lib64/mshtml.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file MSHTML.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSHTML.dll
8EXPORTS
9CreateHTMLPropertyPage
10DllCanUnloadNow
11DllEnumClassObjects
12DllGetClassObject
13DllInstall
14DllRegisterServer
15DllUnregisterServer
16MatchExactGetIDsOfNames
17PrintHTML
18RNIGetCompatibleVersion
19RunHTMLApplication
20ShowHTMLDialog
21ShowHTMLDialogEx
22ShowModalDialog
23ShowModelessHTMLDialog
24com_ms_osp_ospmrshl_classInit
25com_ms_osp_ospmrshl_copyToExternal64
26com_ms_osp_ospmrshl_releaseByValExternal64
27com_ms_osp_ospmrshl_toJava64
lib/libc/mingw/lib64/msir3jp.def created+20
......@@ -0,0 +1,20 @@
1;
2; Exports of file msir3jp.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msir3jp.dll
8EXPORTS
9EnumSelectionOffsets
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13EnumSummarizationOffsets
14EnumStemInfo
15EnumSentenceOffsets
16WordBreakInit
17WordBreakInitEx
18EnumPhrases
19EnumSummarizationOffsetsEx
20EnumStemOffsets
lib/libc/mingw/lib64/mslbui.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MSLBUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSLBUI.dll
8EXPORTS
9CTFGetLangBarAddIn
lib/libc/mingw/lib64/msmqocm.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file MSMQOCM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSMQOCM.dll
8EXPORTS
9MsmqOcm
10SysprepDeleteQmId
11WelcomeEntryProc
lib/libc/mingw/lib64/msobdl.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file MSOBDL.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSOBDL.DLL
8EXPORTS
9DownLoadInit
10DownLoadCancel
11DownLoadExecute
12DownLoadClose
13DownLoadSetStatusCallback
14DownLoadProcess
lib/libc/mingw/lib64/msobmain.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file msobmain.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msobmain.dll
8EXPORTS
9LaunchMSOOBE
10IsOemVer
lib/libc/mingw/lib64/msoe.def created+40
......@@ -0,0 +1,40 @@
1;
2; Exports of file MSOE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSOE.dll
8EXPORTS
9BMAPIAddress
10BMAPIDetails
11BMAPIFindNext
12BMAPIGetAddress
13BMAPIGetReadMail
14BMAPIReadMail
15BMAPIResolveName
16BMAPISaveMail
17BMAPISendMail
18CoStartOutlookExpress
19FIsDefaultMailConfiged
20FIsDefaultNewsConfiged
21ImportMailStoreToGUID
22ImportNewsListToGUID
23SetDefaultMailHandler
24SetDefaultNewsHandler
25DllCanUnloadNow
26DllGetClassObject
27DllRegisterServer
28DllUnregisterServer
29MAPIAddress
30MAPIDeleteMail
31MAPIDetails
32MAPIFindNext
33MAPIFreeBuffer
34MAPILogoff
35MAPILogon
36MAPIReadMail
37MAPIResolveName
38MAPISaveMail
39MAPISendDocuments
40MAPISendMail
lib/libc/mingw/lib64/msoeacct.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file MSOEACCT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSOEACCT.dll
8EXPORTS
9CreateAccountsFromFile
10CreateAccountsFromFileEx
11GetDllMajorVersion
12DllCanUnloadNow
13DllGetClassObject
14DllRegisterServer
15DllUnregisterServer
16HrCreateAccountManager
17ValidEmailAddress
lib/libc/mingw/lib64/msoert2.def created+162
......@@ -0,0 +1,162 @@
1;
2; Exports of file MSOERT2.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSOERT2.dll
8EXPORTS
9CreateSystemHandleName
10CryptAllocFunc
11CryptFreeFunc
12FInitializeRichEdit
13GetDllMajorVersion
14GetHtmlCharset
15GetRichEdClassStringW
16HrGetCertKeyUsage
17HrVerifyCertEnhKeyUsage
18IUnknownList_CreateInstance
19IVoidPtrList_CreateInstance
20IsHttpUrlA
21SetFontOnRichEd
22AppendTempFileList
23AthwsprintfW
24BrowseForFolder
25BrowseForFolderW
26BuildNotificationPackage
27CchFileTimeToDateTimeSz
28CchFileTimeToDateTimeW
29CenterDialog
30ChConvertFromHex
31CleanupFileNameInPlaceA
32CleanupFileNameInPlaceW
33CleanupGlobalTempFiles
34CopyRegistry
35CrackNotificationPackage
36CreateDataObject
37CreateEnumFormatEtc
38CreateInfoWindow
39CreateLogFile
40CreateNotify
41CreateStreamOnHFile
42CreateStreamOnHFileW
43CreateTempFile
44CreateTempFileStream
45DeleteTempFile
46DeleteTempFileOnShutdown
47DeleteTempFileOnShutdownEx
48DoHotMailWizard
49FBuildTempPath
50FBuildTempPathW
51FIsEmptyA
52FIsEmptyW
53FIsHTMLFile
54FIsHTMLFileW
55FIsSpaceA
56FIsSpaceW
57FIsValidFileNameCharA
58FIsValidFileNameCharW
59FMissingCert
60FreeTempFileList
61GenerateUniqueFileName
62GetExePath
63HrBSTRToLPSZ
64HrByteToStream
65HrCheckTridentMenu
66HrCopyLockBytesToStream
67HrCopyStream
68HrCopyStreamCB
69HrCopyStreamCBEndOnCRLF
70HrCopyStreamToByte
71HrCreatePhonebookEntry
72HrCreateTridentMenu
73HrDecodeObject
74HrEditPhonebookEntry
75HrFillRasCombo
76HrFindInetTimeZone
77HrGetBodyElement
78HrGetCertificateParam
79HrGetElementImpl
80HrGetMsgParam
81HrGetStreamPos
82HrGetStreamSize
83HrGetStyleSheet
84HrIStreamToBSTR
85HrIStreamWToBSTR
86HrIndexOfMonth
87HrIndexOfWeek
88HrIsStreamUnicode
89HrLPSZCPToBSTR
90HrLPSZToBSTR
91HrRewindStream
92HrSafeGetStreamSize
93HrSetDirtyFlagImpl
94HrStreamSeekBegin
95HrStreamSeekCur
96HrStreamSeekEnd
97HrStreamSeekSet
98HrStreamToByte
99IDrawText
100IsDigit
101IsPlatformWinNT
102IsPrint
103IsUpper
104IsValidFileIfFileUrl
105IsValidFileIfFileUrlW
106LoadMappedToolbarBitmap
107MessageBoxInst
108MessageBoxInstW
109OpenFileStream
110OpenFileStreamShare
111OpenFileStreamShareW
112OpenFileStreamW
113OpenFileStreamWithFlags
114OpenFileStreamWithFlagsW
115PSTCreateTypeSubType_NoUI
116PSTFreeHandle
117PSTGetData
118PSTSetNewData
119PVDecodeObject
120PVGetCertificateParam
121PVGetMsgParam
122PszAllocA
123PszAllocW
124PszDayFromIndex
125PszDupA
126PszDupLenA
127PszDupW
128PszEscapeMenuStringA
129PszFromANSIStreamA
130PszMonthFromIndex
131PszScanToCharA
132PszScanToWhiteA
133PszSkipWhiteA
134PszSkipWhiteW
135PszToANSI
136PszToUnicode
137ReplaceChars
138ReplaceCharsW
139RicheditStreamIn
140RicheditStreamOut
141SetIntlFont
142SetWindowLongPtrAthW
143ShellUtil_GetSpecialFolderPath
144StrChrExA
145StrToUintA
146StrToUintW
147StrTokEx
148StreamSubStringMatch
149StripCRLF
150SzGetCertificateEmailAddress
151UlStripWhitespace
152UlStripWhitespaceW
153UnlocStrEqNW
154UpdateRebarBandColors
155WriteStreamToFile
156WriteStreamToFileHandle
157WriteStreamToFileW
158WszGenerateNameFromBlob
159_MSG
160fGetBrowserUrlEncoding
161strtrim
162strtrimW
lib/libc/mingw/lib64/msoledbsql.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of msoledbsql.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "msoledbsql.dll"
7EXPORTS
8DllCanUnloadNow
9DllGetClassObject
10DllMain
11DllRegisterServer
12DllUnregisterServer
13OpenSqlFilestream
lib/libc/mingw/lib64/msrle32.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MSRLE32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSRLE32.dll
8EXPORTS
9DriverProc
lib/libc/mingw/lib64/mstlsapi.def created+84
......@@ -0,0 +1,84 @@
1;
2; Exports of file mstlsapi.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mstlsapi.dll
8EXPORTS
9TLSGetVersion
10MIDL_user_allocate
11MIDL_user_free
12EnumerateTlsServer
13TLSSendServerCertificate
14TLSGetServerName
15TLSGetServerScope
16TLSIssuePlatformChallenge
17TLSIssueNewLicense
18TLSUpgradeLicense
19TLSAllocateConcurrentLicense
20TLSGetLastError
21TLSKeyPackEnumBegin
22TLSKeyPackEnumNext
23TLSKeyPackEnumEnd
24TLSLicenseEnumBegin
25TLSLicenseEnumNext
26TLSLicenseEnumEnd
27TLSGetAvailableLicenses
28TLSConnectToLsServer
29TLSConnectToAnyLsServer
30TLSDisconnectFromServer
31FindEnterpriseServer
32GetAllEnterpriseServers
33TLSInit
34TLSGetTSCertificate
35LsCsp_GetServerData
36LsCsp_DecryptEnvelopedData
37LsCsp_EncryptHwid
38LsCsp_StoreSecret
39LsCsp_RetrieveSecret
40TLSStartDiscovery
41TLSStopDiscovery
42TLSShutdown
43TLSFreeTSCertificate
44TLSIssueNewLicenseEx
45TLSUpgradeLicenseEx
46TLSCheckLicenseMark
47TLSIssueNewLicenseExEx
48TLSGetServerNameEx
49TLSLicenseEnumNextEx
50TLSGetServerNameFixed
51TLSGetServerScopeFixed
52TLSGetLastErrorFixed
53GetLicenseServersFromReg
54TLSConnectToAnyLsServerNoCertInstall
55RequestToTlsRequest
56TLSRequestTermServCert
57TLSRetrieveTermServCert
58TLSInstallCertificate
59TLSGetServerCertificate
60TLSRegisterLicenseKeyPack
61TLSGetLSPKCS10CertRequest
62TLSKeyPackAdd
63TLSKeyPackSetStatus
64TLSReturnLicense
65TLSAnnounceServer
66TLSLookupServer
67TLSAnnounceLicensePack
68TLSReturnLicensedProduct
69TLSTelephoneRegisterLKP
70TLSChallengeServer
71TLSResponseServerChallenge
72TLSGetTlsPrivateData
73TLSTriggerReGenKey
74TLSGetServerPID
75TLSGetServerSPK
76TLSDepositeServerSPK
77TLSAllocateInternetLicenseEx
78TLSReturnInternetLicenseEx
79TLSIsBetaNTServer
80TLSIsLicenseEnforceEnable
81TLSInDomain
82TLSMarkLicense
83TLSGetSupportFlags
84TLSLookupServerFixed
lib/libc/mingw/lib64/msutb.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file MSUTB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSUTB.dll
8EXPORTS
9ClosePopupTipbar
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
14GetLibTls
15GetPopupTipbar
16SetRegisterLangBand
lib/libc/mingw/lib64/msvcirt.def created+819
......@@ -0,0 +1,819 @@
1;
2; Exports of file msvcirt.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY msvcirt.dll
8EXPORTS
9; public: __cdecl Iostream_init::Iostream_init(class ios & __ptr64,int) __ptr64
10??0Iostream_init@@QEAA@AEAVios@@H@Z
11; public: __cdecl Iostream_init::Iostream_init(void) __ptr64
12??0Iostream_init@@QEAA@XZ
13; public: __cdecl exception::exception(char const * __ptr64 const & __ptr64) __ptr64
14??0exception@@QEAA@AEBQEBD@Z
15; public: __cdecl exception::exception(class exception const & __ptr64) __ptr64
16??0exception@@QEAA@AEBV0@@Z
17; public: __cdecl exception::exception(void) __ptr64
18??0exception@@QEAA@XZ
19; public: __cdecl filebuf::filebuf(class filebuf const & __ptr64) __ptr64
20??0filebuf@@QEAA@AEBV0@@Z
21; public: __cdecl filebuf::filebuf(int) __ptr64
22??0filebuf@@QEAA@H@Z
23; public: __cdecl filebuf::filebuf(int,char * __ptr64,int) __ptr64
24??0filebuf@@QEAA@HPEADH@Z
25; public: __cdecl filebuf::filebuf(void) __ptr64
26??0filebuf@@QEAA@XZ
27; public: __cdecl fstream::fstream(class fstream const & __ptr64) __ptr64
28??0fstream@@QEAA@AEBV0@@Z
29; public: __cdecl fstream::fstream(int) __ptr64
30??0fstream@@QEAA@H@Z
31; public: __cdecl fstream::fstream(int,char * __ptr64,int) __ptr64
32??0fstream@@QEAA@HPEADH@Z
33; public: __cdecl fstream::fstream(char const * __ptr64,int,int) __ptr64
34??0fstream@@QEAA@PEBDHH@Z
35; public: __cdecl fstream::fstream(void) __ptr64
36??0fstream@@QEAA@XZ
37; public: __cdecl ifstream::ifstream(class ifstream const & __ptr64) __ptr64
38??0ifstream@@QEAA@AEBV0@@Z
39; public: __cdecl ifstream::ifstream(int) __ptr64
40??0ifstream@@QEAA@H@Z
41; public: __cdecl ifstream::ifstream(int,char * __ptr64,int) __ptr64
42??0ifstream@@QEAA@HPEADH@Z
43; public: __cdecl ifstream::ifstream(char const * __ptr64,int,int) __ptr64
44??0ifstream@@QEAA@PEBDHH@Z
45; public: __cdecl ifstream::ifstream(void) __ptr64
46??0ifstream@@QEAA@XZ
47; protected: __cdecl ios::ios(class ios const & __ptr64) __ptr64
48??0ios@@IEAA@AEBV0@@Z
49; protected: __cdecl ios::ios(void) __ptr64
50??0ios@@IEAA@XZ
51; public: __cdecl ios::ios(class streambuf * __ptr64) __ptr64
52??0ios@@QEAA@PEAVstreambuf@@@Z
53; protected: __cdecl iostream::iostream(class iostream const & __ptr64) __ptr64
54??0iostream@@IEAA@AEBV0@@Z
55; protected: __cdecl iostream::iostream(void) __ptr64
56??0iostream@@IEAA@XZ
57; public: __cdecl iostream::iostream(class streambuf * __ptr64) __ptr64
58??0iostream@@QEAA@PEAVstreambuf@@@Z
59; protected: __cdecl istream::istream(class istream const & __ptr64) __ptr64
60??0istream@@IEAA@AEBV0@@Z
61; protected: __cdecl istream::istream(void) __ptr64
62??0istream@@IEAA@XZ
63; public: __cdecl istream::istream(class streambuf * __ptr64) __ptr64
64??0istream@@QEAA@PEAVstreambuf@@@Z
65; public: __cdecl istream_withassign::istream_withassign(class istream_withassign const & __ptr64) __ptr64
66??0istream_withassign@@QEAA@AEBV0@@Z
67; public: __cdecl istream_withassign::istream_withassign(class streambuf * __ptr64) __ptr64
68??0istream_withassign@@QEAA@PEAVstreambuf@@@Z
69; public: __cdecl istream_withassign::istream_withassign(void) __ptr64
70??0istream_withassign@@QEAA@XZ
71; public: __cdecl istrstream::istrstream(class istrstream const & __ptr64) __ptr64
72??0istrstream@@QEAA@AEBV0@@Z
73; public: __cdecl istrstream::istrstream(char * __ptr64) __ptr64
74??0istrstream@@QEAA@PEAD@Z
75; public: __cdecl istrstream::istrstream(char * __ptr64,int) __ptr64
76??0istrstream@@QEAA@PEADH@Z
77; public: __cdecl logic_error::logic_error(char const * __ptr64 const & __ptr64) __ptr64
78??0logic_error@@QEAA@AEBQEBD@Z
79; public: __cdecl logic_error::logic_error(class logic_error const & __ptr64) __ptr64
80??0logic_error@@QEAA@AEBV0@@Z
81; public: __cdecl ofstream::ofstream(class ofstream const & __ptr64) __ptr64
82??0ofstream@@QEAA@AEBV0@@Z
83; public: __cdecl ofstream::ofstream(int) __ptr64
84??0ofstream@@QEAA@H@Z
85; public: __cdecl ofstream::ofstream(int,char * __ptr64,int) __ptr64
86??0ofstream@@QEAA@HPEADH@Z
87; public: __cdecl ofstream::ofstream(char const * __ptr64,int,int) __ptr64
88??0ofstream@@QEAA@PEBDHH@Z
89; public: __cdecl ofstream::ofstream(void) __ptr64
90??0ofstream@@QEAA@XZ
91; protected: __cdecl ostream::ostream(class ostream const & __ptr64) __ptr64
92??0ostream@@IEAA@AEBV0@@Z
93; protected: __cdecl ostream::ostream(void) __ptr64
94??0ostream@@IEAA@XZ
95; public: __cdecl ostream::ostream(class streambuf * __ptr64) __ptr64
96??0ostream@@QEAA@PEAVstreambuf@@@Z
97; public: __cdecl ostream_withassign::ostream_withassign(class ostream_withassign const & __ptr64) __ptr64
98??0ostream_withassign@@QEAA@AEBV0@@Z
99; public: __cdecl ostream_withassign::ostream_withassign(class streambuf * __ptr64) __ptr64
100??0ostream_withassign@@QEAA@PEAVstreambuf@@@Z
101; public: __cdecl ostream_withassign::ostream_withassign(void) __ptr64
102??0ostream_withassign@@QEAA@XZ
103; public: __cdecl ostrstream::ostrstream(class ostrstream const & __ptr64) __ptr64
104??0ostrstream@@QEAA@AEBV0@@Z
105; public: __cdecl ostrstream::ostrstream(char * __ptr64,int,int) __ptr64
106??0ostrstream@@QEAA@PEADHH@Z
107; public: __cdecl ostrstream::ostrstream(void) __ptr64
108??0ostrstream@@QEAA@XZ
109; public: __cdecl stdiobuf::stdiobuf(class stdiobuf const & __ptr64) __ptr64
110??0stdiobuf@@QEAA@AEBV0@@Z
111; public: __cdecl stdiobuf::stdiobuf(struct _iobuf * __ptr64) __ptr64
112??0stdiobuf@@QEAA@PEAU_iobuf@@@Z
113; public: __cdecl stdiostream::stdiostream(class stdiostream const & __ptr64) __ptr64
114??0stdiostream@@QEAA@AEBV0@@Z
115; public: __cdecl stdiostream::stdiostream(struct _iobuf * __ptr64) __ptr64
116??0stdiostream@@QEAA@PEAU_iobuf@@@Z
117; protected: __cdecl streambuf::streambuf(char * __ptr64,int) __ptr64
118??0streambuf@@IEAA@PEADH@Z
119; protected: __cdecl streambuf::streambuf(void) __ptr64
120??0streambuf@@IEAA@XZ
121; public: __cdecl streambuf::streambuf(class streambuf const & __ptr64) __ptr64
122??0streambuf@@QEAA@AEBV0@@Z
123; public: __cdecl strstream::strstream(class strstream const & __ptr64) __ptr64
124??0strstream@@QEAA@AEBV0@@Z
125; public: __cdecl strstream::strstream(char * __ptr64,int,int) __ptr64
126??0strstream@@QEAA@PEADHH@Z
127; public: __cdecl strstream::strstream(void) __ptr64
128??0strstream@@QEAA@XZ
129; public: __cdecl strstreambuf::strstreambuf(class strstreambuf const & __ptr64) __ptr64
130??0strstreambuf@@QEAA@AEBV0@@Z
131; public: __cdecl strstreambuf::strstreambuf(int) __ptr64
132??0strstreambuf@@QEAA@H@Z
133; public: __cdecl strstreambuf::strstreambuf(void * __ptr64 (__cdecl*)(long),void (__cdecl*)(void * __ptr64)) __ptr64
134??0strstreambuf@@QEAA@P6APEAXJ@ZP6AXPEAX@Z@Z
135; public: __cdecl strstreambuf::strstreambuf(char * __ptr64,int,char * __ptr64) __ptr64
136??0strstreambuf@@QEAA@PEADH0@Z
137; public: __cdecl strstreambuf::strstreambuf(unsigned char * __ptr64,int,unsigned char * __ptr64) __ptr64
138??0strstreambuf@@QEAA@PEAEH0@Z
139; public: __cdecl strstreambuf::strstreambuf(void) __ptr64
140??0strstreambuf@@QEAA@XZ
141; public: __cdecl Iostream_init::~Iostream_init(void) __ptr64
142??1Iostream_init@@QEAA@XZ
143; public: virtual __cdecl exception::~exception(void) __ptr64
144??1exception@@UEAA@XZ
145; public: virtual __cdecl filebuf::~filebuf(void) __ptr64
146??1filebuf@@UEAA@XZ
147; public: virtual __cdecl fstream::~fstream(void) __ptr64
148??1fstream@@UEAA@XZ
149; public: virtual __cdecl ifstream::~ifstream(void) __ptr64
150??1ifstream@@UEAA@XZ
151; public: virtual __cdecl ios::~ios(void) __ptr64
152??1ios@@UEAA@XZ
153; public: virtual __cdecl iostream::~iostream(void) __ptr64
154??1iostream@@UEAA@XZ
155; public: virtual __cdecl istream::~istream(void) __ptr64
156??1istream@@UEAA@XZ
157; public: virtual __cdecl istream_withassign::~istream_withassign(void) __ptr64
158??1istream_withassign@@UEAA@XZ
159; public: virtual __cdecl istrstream::~istrstream(void) __ptr64
160??1istrstream@@UEAA@XZ
161; public: virtual __cdecl logic_error::~logic_error(void) __ptr64
162??1logic_error@@UEAA@XZ
163; public: virtual __cdecl ofstream::~ofstream(void) __ptr64
164??1ofstream@@UEAA@XZ
165; public: virtual __cdecl ostream::~ostream(void) __ptr64
166??1ostream@@UEAA@XZ
167; public: virtual __cdecl ostream_withassign::~ostream_withassign(void) __ptr64
168??1ostream_withassign@@UEAA@XZ
169; public: virtual __cdecl ostrstream::~ostrstream(void) __ptr64
170??1ostrstream@@UEAA@XZ
171; public: virtual __cdecl stdiobuf::~stdiobuf(void) __ptr64
172??1stdiobuf@@UEAA@XZ
173; public: virtual __cdecl stdiostream::~stdiostream(void) __ptr64
174??1stdiostream@@UEAA@XZ
175; public: virtual __cdecl streambuf::~streambuf(void) __ptr64
176??1streambuf@@UEAA@XZ
177; public: virtual __cdecl strstream::~strstream(void) __ptr64
178??1strstream@@UEAA@XZ
179; public: virtual __cdecl strstreambuf::~strstreambuf(void) __ptr64
180??1strstreambuf@@UEAA@XZ
181; public: class Iostream_init & __ptr64 __cdecl Iostream_init::operator=(class Iostream_init const & __ptr64) __ptr64
182??4Iostream_init@@QEAAAEAV0@AEBV0@@Z
183; public: class exception & __ptr64 __cdecl exception::operator=(class exception const & __ptr64) __ptr64
184??4exception@@QEAAAEAV0@AEBV0@@Z
185; public: class filebuf & __ptr64 __cdecl filebuf::operator=(class filebuf const & __ptr64) __ptr64
186??4filebuf@@QEAAAEAV0@AEBV0@@Z
187; public: class fstream & __ptr64 __cdecl fstream::operator=(class fstream & __ptr64) __ptr64
188??4fstream@@QEAAAEAV0@AEAV0@@Z
189; public: class ifstream & __ptr64 __cdecl ifstream::operator=(class ifstream const & __ptr64) __ptr64
190??4ifstream@@QEAAAEAV0@AEBV0@@Z
191; protected: class ios & __ptr64 __cdecl ios::operator=(class ios const & __ptr64) __ptr64
192??4ios@@IEAAAEAV0@AEBV0@@Z
193; protected: class iostream & __ptr64 __cdecl iostream::operator=(class iostream & __ptr64) __ptr64
194??4iostream@@IEAAAEAV0@AEAV0@@Z
195; protected: class iostream & __ptr64 __cdecl iostream::operator=(class streambuf * __ptr64) __ptr64
196??4iostream@@IEAAAEAV0@PEAVstreambuf@@@Z
197; protected: class istream & __ptr64 __cdecl istream::operator=(class istream const & __ptr64) __ptr64
198??4istream@@IEAAAEAV0@AEBV0@@Z
199; protected: class istream & __ptr64 __cdecl istream::operator=(class streambuf * __ptr64) __ptr64
200??4istream@@IEAAAEAV0@PEAVstreambuf@@@Z
201; public: class istream_withassign & __ptr64 __cdecl istream_withassign::operator=(class istream_withassign const & __ptr64) __ptr64
202??4istream_withassign@@QEAAAEAV0@AEBV0@@Z
203; public: class istream & __ptr64 __cdecl istream_withassign::operator=(class istream const & __ptr64) __ptr64
204??4istream_withassign@@QEAAAEAVistream@@AEBV1@@Z
205; public: class istream & __ptr64 __cdecl istream_withassign::operator=(class streambuf * __ptr64) __ptr64
206??4istream_withassign@@QEAAAEAVistream@@PEAVstreambuf@@@Z
207; public: class istrstream & __ptr64 __cdecl istrstream::operator=(class istrstream const & __ptr64) __ptr64
208??4istrstream@@QEAAAEAV0@AEBV0@@Z
209; public: class logic_error & __ptr64 __cdecl logic_error::operator=(class logic_error const & __ptr64) __ptr64
210??4logic_error@@QEAAAEAV0@AEBV0@@Z
211; public: class ofstream & __ptr64 __cdecl ofstream::operator=(class ofstream const & __ptr64) __ptr64
212??4ofstream@@QEAAAEAV0@AEBV0@@Z
213; protected: class ostream & __ptr64 __cdecl ostream::operator=(class ostream const & __ptr64) __ptr64
214??4ostream@@IEAAAEAV0@AEBV0@@Z
215; protected: class ostream & __ptr64 __cdecl ostream::operator=(class streambuf * __ptr64) __ptr64
216??4ostream@@IEAAAEAV0@PEAVstreambuf@@@Z
217; public: class ostream_withassign & __ptr64 __cdecl ostream_withassign::operator=(class ostream_withassign const & __ptr64) __ptr64
218??4ostream_withassign@@QEAAAEAV0@AEBV0@@Z
219; public: class ostream & __ptr64 __cdecl ostream_withassign::operator=(class ostream const & __ptr64) __ptr64
220??4ostream_withassign@@QEAAAEAVostream@@AEBV1@@Z
221; public: class ostream & __ptr64 __cdecl ostream_withassign::operator=(class streambuf * __ptr64) __ptr64
222??4ostream_withassign@@QEAAAEAVostream@@PEAVstreambuf@@@Z
223; public: class ostrstream & __ptr64 __cdecl ostrstream::operator=(class ostrstream const & __ptr64) __ptr64
224??4ostrstream@@QEAAAEAV0@AEBV0@@Z
225; public: class stdiobuf & __ptr64 __cdecl stdiobuf::operator=(class stdiobuf const & __ptr64) __ptr64
226??4stdiobuf@@QEAAAEAV0@AEBV0@@Z
227; public: class stdiostream & __ptr64 __cdecl stdiostream::operator=(class stdiostream & __ptr64) __ptr64
228??4stdiostream@@QEAAAEAV0@AEAV0@@Z
229; public: class streambuf & __ptr64 __cdecl streambuf::operator=(class streambuf const & __ptr64) __ptr64
230??4streambuf@@QEAAAEAV0@AEBV0@@Z
231; public: class strstream & __ptr64 __cdecl strstream::operator=(class strstream & __ptr64) __ptr64
232??4strstream@@QEAAAEAV0@AEAV0@@Z
233; public: class strstreambuf & __ptr64 __cdecl strstreambuf::operator=(class strstreambuf const & __ptr64) __ptr64
234??4strstreambuf@@QEAAAEAV0@AEBV0@@Z
235; public: class istream & __ptr64 __cdecl istream::operator>>(signed char & __ptr64) __ptr64
236??5istream@@QEAAAEAV0@AEAC@Z
237; public: class istream & __ptr64 __cdecl istream::operator>>(char & __ptr64) __ptr64
238??5istream@@QEAAAEAV0@AEAD@Z
239; public: class istream & __ptr64 __cdecl istream::operator>>(unsigned char & __ptr64) __ptr64
240??5istream@@QEAAAEAV0@AEAE@Z
241; public: class istream & __ptr64 __cdecl istream::operator>>(short & __ptr64) __ptr64
242??5istream@@QEAAAEAV0@AEAF@Z
243; public: class istream & __ptr64 __cdecl istream::operator>>(unsigned short & __ptr64) __ptr64
244??5istream@@QEAAAEAV0@AEAG@Z
245; public: class istream & __ptr64 __cdecl istream::operator>>(int & __ptr64) __ptr64
246??5istream@@QEAAAEAV0@AEAH@Z
247; public: class istream & __ptr64 __cdecl istream::operator>>(unsigned int & __ptr64) __ptr64
248??5istream@@QEAAAEAV0@AEAI@Z
249; public: class istream & __ptr64 __cdecl istream::operator>>(long & __ptr64) __ptr64
250??5istream@@QEAAAEAV0@AEAJ@Z
251; public: class istream & __ptr64 __cdecl istream::operator>>(unsigned long & __ptr64) __ptr64
252??5istream@@QEAAAEAV0@AEAK@Z
253; public: class istream & __ptr64 __cdecl istream::operator>>(float & __ptr64) __ptr64
254??5istream@@QEAAAEAV0@AEAM@Z
255; public: class istream & __ptr64 __cdecl istream::operator>>(double & __ptr64) __ptr64
256??5istream@@QEAAAEAV0@AEAN@Z
257; public: class istream & __ptr64 __cdecl istream::operator>>(long double & __ptr64) __ptr64
258??5istream@@QEAAAEAV0@AEAO@Z
259; public: class istream & __ptr64 __cdecl istream::operator>>(class istream & __ptr64 (__cdecl*)(class istream & __ptr64)) __ptr64
260??5istream@@QEAAAEAV0@P6AAEAV0@AEAV0@@Z@Z
261; public: class istream & __ptr64 __cdecl istream::operator>>(class ios & __ptr64 (__cdecl*)(class ios & __ptr64)) __ptr64
262??5istream@@QEAAAEAV0@P6AAEAVios@@AEAV1@@Z@Z
263; public: class istream & __ptr64 __cdecl istream::operator>>(signed char * __ptr64) __ptr64
264??5istream@@QEAAAEAV0@PEAC@Z
265; public: class istream & __ptr64 __cdecl istream::operator>>(char * __ptr64) __ptr64
266??5istream@@QEAAAEAV0@PEAD@Z
267; public: class istream & __ptr64 __cdecl istream::operator>>(unsigned char * __ptr64) __ptr64
268??5istream@@QEAAAEAV0@PEAE@Z
269; public: class istream & __ptr64 __cdecl istream::operator>>(class streambuf * __ptr64) __ptr64
270??5istream@@QEAAAEAV0@PEAVstreambuf@@@Z
271; public: class ostream & __ptr64 __cdecl ostream::operator<<(signed char) __ptr64
272??6ostream@@QEAAAEAV0@C@Z
273; public: class ostream & __ptr64 __cdecl ostream::operator<<(char) __ptr64
274??6ostream@@QEAAAEAV0@D@Z
275; public: class ostream & __ptr64 __cdecl ostream::operator<<(unsigned char) __ptr64
276??6ostream@@QEAAAEAV0@E@Z
277; public: class ostream & __ptr64 __cdecl ostream::operator<<(short) __ptr64
278??6ostream@@QEAAAEAV0@F@Z
279; public: class ostream & __ptr64 __cdecl ostream::operator<<(unsigned short) __ptr64
280??6ostream@@QEAAAEAV0@G@Z
281; public: class ostream & __ptr64 __cdecl ostream::operator<<(int) __ptr64
282??6ostream@@QEAAAEAV0@H@Z
283; public: class ostream & __ptr64 __cdecl ostream::operator<<(unsigned int) __ptr64
284??6ostream@@QEAAAEAV0@I@Z
285; public: class ostream & __ptr64 __cdecl ostream::operator<<(long) __ptr64
286??6ostream@@QEAAAEAV0@J@Z
287; public: class ostream & __ptr64 __cdecl ostream::operator<<(unsigned long) __ptr64
288??6ostream@@QEAAAEAV0@K@Z
289; public: class ostream & __ptr64 __cdecl ostream::operator<<(float) __ptr64
290??6ostream@@QEAAAEAV0@M@Z
291; public: class ostream & __ptr64 __cdecl ostream::operator<<(double) __ptr64
292??6ostream@@QEAAAEAV0@N@Z
293; public: class ostream & __ptr64 __cdecl ostream::operator<<(long double) __ptr64
294??6ostream@@QEAAAEAV0@O@Z
295; public: class ostream & __ptr64 __cdecl ostream::operator<<(class ostream & __ptr64 (__cdecl*)(class ostream & __ptr64)) __ptr64
296??6ostream@@QEAAAEAV0@P6AAEAV0@AEAV0@@Z@Z
297; public: class ostream & __ptr64 __cdecl ostream::operator<<(class ios & __ptr64 (__cdecl*)(class ios & __ptr64)) __ptr64
298??6ostream@@QEAAAEAV0@P6AAEAVios@@AEAV1@@Z@Z
299; public: class ostream & __ptr64 __cdecl ostream::operator<<(class streambuf * __ptr64) __ptr64
300??6ostream@@QEAAAEAV0@PEAVstreambuf@@@Z
301; public: class ostream & __ptr64 __cdecl ostream::operator<<(signed char const * __ptr64) __ptr64
302??6ostream@@QEAAAEAV0@PEBC@Z
303; public: class ostream & __ptr64 __cdecl ostream::operator<<(char const * __ptr64) __ptr64
304??6ostream@@QEAAAEAV0@PEBD@Z
305; public: class ostream & __ptr64 __cdecl ostream::operator<<(unsigned char const * __ptr64) __ptr64
306??6ostream@@QEAAAEAV0@PEBE@Z
307; public: class ostream & __ptr64 __cdecl ostream::operator<<(void const * __ptr64) __ptr64
308??6ostream@@QEAAAEAV0@PEBX@Z
309; public: int __cdecl ios::operator!(void)const __ptr64
310??7ios@@QEBAHXZ
311; public: __cdecl ios::operator void * __ptr64(void)const __ptr64
312??Bios@@QEBAPEAXXZ
313; const exception::`vftable'
314??_7exception@@6B@
315; const filebuf::`vftable'
316??_7filebuf@@6B@
317; const fstream::`vftable'
318??_7fstream@@6B@
319; const ifstream::`vftable'
320??_7ifstream@@6B@
321; const ios::`vftable'
322??_7ios@@6B@
323; const iostream::`vftable'
324??_7iostream@@6B@
325; const istream::`vftable'
326??_7istream@@6B@
327; const istream_withassign::`vftable'
328??_7istream_withassign@@6B@
329; const istrstream::`vftable'
330??_7istrstream@@6B@
331; const logic_error::`vftable'
332??_7logic_error@@6B@
333; const ofstream::`vftable'
334??_7ofstream@@6B@
335; const ostream::`vftable'
336??_7ostream@@6B@
337; const ostream_withassign::`vftable'
338??_7ostream_withassign@@6B@
339; const ostrstream::`vftable'
340??_7ostrstream@@6B@
341; const stdiobuf::`vftable'
342??_7stdiobuf@@6B@
343; const stdiostream::`vftable'
344??_7stdiostream@@6B@
345; const streambuf::`vftable'
346??_7streambuf@@6B@
347; const strstream::`vftable'
348??_7strstream@@6B@
349; const strstreambuf::`vftable'
350??_7strstreambuf@@6B@
351; const fstream::`vbtable'{for `istream'}
352??_8fstream@@7Bistream@@@ DATA
353; const fstream::`vbtable'{for `ostream'}
354??_8fstream@@7Bostream@@@ DATA
355; const ifstream::`vbtable'
356??_8ifstream@@7B@ DATA
357; const iostream::`vbtable'{for `istream'}
358??_8iostream@@7Bistream@@@ DATA
359; const iostream::`vbtable'{for `ostream'}
360??_8iostream@@7Bostream@@@ DATA
361; const istream::`vbtable'
362??_8istream@@7B@ DATA
363; const istream_withassign::`vbtable'
364??_8istream_withassign@@7B@ DATA
365; const istrstream::`vbtable'
366??_8istrstream@@7B@ DATA
367; const ofstream::`vbtable'
368??_8ofstream@@7B@ DATA
369; const ostream::`vbtable'
370??_8ostream@@7B@ DATA
371; const ostream_withassign::`vbtable'
372??_8ostream_withassign@@7B@ DATA
373; const ostrstream::`vbtable'
374??_8ostrstream@@7B@ DATA
375; const stdiostream::`vbtable'{for `istream'}
376??_8stdiostream@@7Bistream@@@ DATA
377; const stdiostream::`vbtable'{for `ostream'}
378??_8stdiostream@@7Bostream@@@ DATA
379; const strstream::`vbtable'{for `istream'}
380??_8strstream@@7Bistream@@@ DATA
381; const strstream::`vbtable'{for `ostream'}
382??_8strstream@@7Bostream@@@ DATA
383; public: void __cdecl fstream::`vbase destructor'(void) __ptr64
384??_Dfstream@@QEAAXXZ
385; public: void __cdecl ifstream::`vbase destructor'(void) __ptr64
386??_Difstream@@QEAAXXZ
387; public: void __cdecl iostream::`vbase destructor'(void) __ptr64
388??_Diostream@@QEAAXXZ
389; public: void __cdecl istream::`vbase destructor'(void) __ptr64
390??_Distream@@QEAAXXZ
391; public: void __cdecl istream_withassign::`vbase destructor'(void) __ptr64
392??_Distream_withassign@@QEAAXXZ
393; public: void __cdecl istrstream::`vbase destructor'(void) __ptr64
394??_Distrstream@@QEAAXXZ
395; public: void __cdecl ofstream::`vbase destructor'(void) __ptr64
396??_Dofstream@@QEAAXXZ
397; public: void __cdecl ostream::`vbase destructor'(void) __ptr64
398??_Dostream@@QEAAXXZ
399; public: void __cdecl ostream_withassign::`vbase destructor'(void) __ptr64
400??_Dostream_withassign@@QEAAXXZ
401; public: void __cdecl ostrstream::`vbase destructor'(void) __ptr64
402??_Dostrstream@@QEAAXXZ
403; public: void __cdecl stdiostream::`vbase destructor'(void) __ptr64
404??_Dstdiostream@@QEAAXXZ
405; public: void __cdecl strstream::`vbase destructor'(void) __ptr64
406??_Dstrstream@@QEAAXXZ
407; public: static long const ios::adjustfield
408?adjustfield@ios@@2JB
409; protected: int __cdecl streambuf::allocate(void) __ptr64
410?allocate@streambuf@@IEAAHXZ
411; public: class filebuf * __ptr64 __cdecl filebuf::attach(int) __ptr64
412?attach@filebuf@@QEAAPEAV1@H@Z
413; public: void __cdecl fstream::attach(int) __ptr64
414?attach@fstream@@QEAAXH@Z
415; public: void __cdecl ifstream::attach(int) __ptr64
416?attach@ifstream@@QEAAXH@Z
417; public: void __cdecl ofstream::attach(int) __ptr64
418?attach@ofstream@@QEAAXH@Z
419; public: int __cdecl ios::bad(void)const __ptr64
420?bad@ios@@QEBAHXZ
421; protected: char * __ptr64 __cdecl streambuf::base(void)const __ptr64
422?base@streambuf@@IEBAPEADXZ
423; public: static long const ios::basefield
424?basefield@ios@@2JB
425; public: static int const filebuf::binary
426?binary@filebuf@@2HB
427; public: static long __cdecl ios::bitalloc(void)
428?bitalloc@ios@@SAJXZ
429; protected: int __cdecl streambuf::blen(void)const __ptr64
430?blen@streambuf@@IEBAHXZ
431; class ostream_withassign cerr
432?cerr@@3Vostream_withassign@@A DATA
433; class istream_withassign cin
434?cin@@3Vistream_withassign@@A DATA
435; public: void __cdecl ios::clear(int) __ptr64
436?clear@ios@@QEAAXH@Z
437; class ostream_withassign clog
438?clog@@3Vostream_withassign@@A DATA
439; public: class filebuf * __ptr64 __cdecl filebuf::close(void) __ptr64
440?close@filebuf@@QEAAPEAV1@XZ
441; public: void __cdecl fstream::close(void) __ptr64
442?close@fstream@@QEAAXXZ
443; public: void __cdecl ifstream::close(void) __ptr64
444?close@ifstream@@QEAAXXZ
445; public: void __cdecl ofstream::close(void) __ptr64
446?close@ofstream@@QEAAXXZ
447; public: void __cdecl ios::clrlock(void) __ptr64
448?clrlock@ios@@QEAAXXZ
449; public: void __cdecl streambuf::clrlock(void) __ptr64
450?clrlock@streambuf@@QEAAXXZ
451; class ostream_withassign cout
452?cout@@3Vostream_withassign@@A DATA
453; public: void __cdecl streambuf::dbp(void) __ptr64
454?dbp@streambuf@@QEAAXXZ
455; class ios & __ptr64 __cdecl dec(class ios & __ptr64)
456?dec@@YAAEAVios@@AEAV1@@Z
457; public: void __cdecl ios::delbuf(int) __ptr64
458?delbuf@ios@@QEAAXH@Z
459; public: int __cdecl ios::delbuf(void)const __ptr64
460?delbuf@ios@@QEBAHXZ
461; protected: virtual int __cdecl streambuf::doallocate(void) __ptr64
462?doallocate@streambuf@@MEAAHXZ
463; protected: virtual int __cdecl strstreambuf::doallocate(void) __ptr64
464?doallocate@strstreambuf@@MEAAHXZ
465; public: void __cdecl istream::eatwhite(void) __ptr64
466?eatwhite@istream@@QEAAXXZ
467; protected: char * __ptr64 __cdecl streambuf::eback(void)const __ptr64
468?eback@streambuf@@IEBAPEADXZ
469; protected: char * __ptr64 __cdecl streambuf::ebuf(void)const __ptr64
470?ebuf@streambuf@@IEBAPEADXZ
471; protected: char * __ptr64 __cdecl streambuf::egptr(void)const __ptr64
472?egptr@streambuf@@IEBAPEADXZ
473; class ostream & __ptr64 __cdecl endl(class ostream & __ptr64)
474?endl@@YAAEAVostream@@AEAV1@@Z
475; class ostream & __ptr64 __cdecl ends(class ostream & __ptr64)
476?ends@@YAAEAVostream@@AEAV1@@Z
477; public: int __cdecl ios::eof(void)const __ptr64
478?eof@ios@@QEBAHXZ
479; protected: char * __ptr64 __cdecl streambuf::epptr(void)const __ptr64
480?epptr@streambuf@@IEBAPEADXZ
481; private: static int ios::fLockcInit
482?fLockcInit@ios@@0HA DATA
483; public: int __cdecl ios::fail(void)const __ptr64
484?fail@ios@@QEBAHXZ
485; public: int __cdecl filebuf::fd(void)const __ptr64
486?fd@filebuf@@QEBAHXZ
487; public: int __cdecl fstream::fd(void)const __ptr64
488?fd@fstream@@QEBAHXZ
489; public: int __cdecl ifstream::fd(void)const __ptr64
490?fd@ifstream@@QEBAHXZ
491; public: int __cdecl ofstream::fd(void)const __ptr64
492?fd@ofstream@@QEBAHXZ
493; public: char __cdecl ios::fill(char) __ptr64
494?fill@ios@@QEAADD@Z
495; public: char __cdecl ios::fill(void)const __ptr64
496?fill@ios@@QEBADXZ
497; public: long __cdecl ios::flags(long) __ptr64
498?flags@ios@@QEAAJJ@Z
499; public: long __cdecl ios::flags(void)const __ptr64
500?flags@ios@@QEBAJXZ
501; public: static long const ios::floatfield
502?floatfield@ios@@2JB
503; class ostream & __ptr64 __cdecl flush(class ostream & __ptr64)
504?flush@@YAAEAVostream@@AEAV1@@Z
505; public: class ostream & __ptr64 __cdecl ostream::flush(void) __ptr64
506?flush@ostream@@QEAAAEAV1@XZ
507; public: void __cdecl strstreambuf::freeze(int) __ptr64
508?freeze@strstreambuf@@QEAAXH@Z
509; protected: void __cdecl streambuf::gbump(int) __ptr64
510?gbump@streambuf@@IEAAXH@Z
511; public: int __cdecl istream::gcount(void)const __ptr64
512?gcount@istream@@QEBAHXZ
513; protected: class istream & __ptr64 __cdecl istream::get(char * __ptr64,int,int) __ptr64
514?get@istream@@IEAAAEAV1@PEADHH@Z
515; public: class istream & __ptr64 __cdecl istream::get(signed char & __ptr64) __ptr64
516?get@istream@@QEAAAEAV1@AEAC@Z
517; public: class istream & __ptr64 __cdecl istream::get(char & __ptr64) __ptr64
518?get@istream@@QEAAAEAV1@AEAD@Z
519; public: class istream & __ptr64 __cdecl istream::get(unsigned char & __ptr64) __ptr64
520?get@istream@@QEAAAEAV1@AEAE@Z
521; public: class istream & __ptr64 __cdecl istream::get(class streambuf & __ptr64,char) __ptr64
522?get@istream@@QEAAAEAV1@AEAVstreambuf@@D@Z
523; public: class istream & __ptr64 __cdecl istream::get(signed char * __ptr64,int,char) __ptr64
524?get@istream@@QEAAAEAV1@PEACHD@Z
525; public: class istream & __ptr64 __cdecl istream::get(char * __ptr64,int,char) __ptr64
526?get@istream@@QEAAAEAV1@PEADHD@Z
527; public: class istream & __ptr64 __cdecl istream::get(unsigned char * __ptr64,int,char) __ptr64
528?get@istream@@QEAAAEAV1@PEAEHD@Z
529; public: int __cdecl istream::get(void) __ptr64
530?get@istream@@QEAAHXZ
531; private: int __cdecl istream::getdouble(char * __ptr64,int) __ptr64
532?getdouble@istream@@AEAAHPEADH@Z
533; private: int __cdecl istream::getint(char * __ptr64) __ptr64
534?getint@istream@@AEAAHPEAD@Z
535; public: class istream & __ptr64 __cdecl istream::getline(signed char * __ptr64,int,char) __ptr64
536?getline@istream@@QEAAAEAV1@PEACHD@Z
537; public: class istream & __ptr64 __cdecl istream::getline(char * __ptr64,int,char) __ptr64
538?getline@istream@@QEAAAEAV1@PEADHD@Z
539; public: class istream & __ptr64 __cdecl istream::getline(unsigned char * __ptr64,int,char) __ptr64
540?getline@istream@@QEAAAEAV1@PEAEHD@Z
541; public: int __cdecl ios::good(void)const __ptr64
542?good@ios@@QEBAHXZ
543; protected: char * __ptr64 __cdecl streambuf::gptr(void)const __ptr64
544?gptr@streambuf@@IEBAPEADXZ
545; class ios & __ptr64 __cdecl hex(class ios & __ptr64)
546?hex@@YAAEAVios@@AEAV1@@Z
547; public: class istream & __ptr64 __cdecl istream::ignore(int,int) __ptr64
548?ignore@istream@@QEAAAEAV1@HH@Z
549; public: int __cdecl streambuf::in_avail(void)const __ptr64
550?in_avail@streambuf@@QEBAHXZ
551; protected: void __cdecl ios::init(class streambuf * __ptr64) __ptr64
552?init@ios@@IEAAXPEAVstreambuf@@@Z
553; public: int __cdecl istream::ipfx(int) __ptr64
554?ipfx@istream@@QEAAHH@Z
555; public: int __cdecl filebuf::is_open(void)const __ptr64
556?is_open@filebuf@@QEBAHXZ
557; public: int __cdecl fstream::is_open(void)const __ptr64
558?is_open@fstream@@QEBAHXZ
559; public: int __cdecl ifstream::is_open(void)const __ptr64
560?is_open@ifstream@@QEBAHXZ
561; public: int __cdecl ofstream::is_open(void)const __ptr64
562?is_open@ofstream@@QEBAHXZ
563; public: void __cdecl istream::isfx(void) __ptr64
564?isfx@istream@@QEAAXXZ
565; public: long & __ptr64 __cdecl ios::iword(int)const __ptr64
566?iword@ios@@QEBAAEAJH@Z
567; public: void __cdecl ios::lock(void) __ptr64
568?lock@ios@@QEAAXXZ
569; public: void __cdecl streambuf::lock(void) __ptr64
570?lock@streambuf@@QEAAXXZ
571; public: void __cdecl ios::lockbuf(void) __ptr64
572?lockbuf@ios@@QEAAXXZ
573; protected: static void __cdecl ios::lockc(void)
574?lockc@ios@@KAXXZ
575; protected: struct _CRT_CRITICAL_SECTION * __ptr64 __cdecl ios::lockptr(void) __ptr64
576?lockptr@ios@@IEAAPEAU_CRT_CRITICAL_SECTION@@XZ
577; protected: struct _CRT_CRITICAL_SECTION * __ptr64 __cdecl streambuf::lockptr(void) __ptr64
578?lockptr@streambuf@@IEAAPEAU_CRT_CRITICAL_SECTION@@XZ
579; class ios & __ptr64 __cdecl oct(class ios & __ptr64)
580?oct@@YAAEAVios@@AEAV1@@Z
581; public: class filebuf * __ptr64 __cdecl filebuf::open(char const * __ptr64,int,int) __ptr64
582?open@filebuf@@QEAAPEAV1@PEBDHH@Z
583; public: void __cdecl fstream::open(char const * __ptr64,int,int) __ptr64
584?open@fstream@@QEAAXPEBDHH@Z
585; public: void __cdecl ifstream::open(char const * __ptr64,int,int) __ptr64
586?open@ifstream@@QEAAXPEBDHH@Z
587; public: void __cdecl ofstream::open(char const * __ptr64,int,int) __ptr64
588?open@ofstream@@QEAAXPEBDHH@Z
589; public: static int const filebuf::openprot
590?openprot@filebuf@@2HB
591; public: int __cdecl ostream::opfx(void) __ptr64
592?opfx@ostream@@QEAAHXZ
593; public: void __cdecl ostream::osfx(void) __ptr64
594?osfx@ostream@@QEAAXXZ
595; public: int __cdecl streambuf::out_waiting(void)const __ptr64
596?out_waiting@streambuf@@QEBAHXZ
597; public: virtual int __cdecl filebuf::overflow(int) __ptr64
598?overflow@filebuf@@UEAAHH@Z
599; public: virtual int __cdecl stdiobuf::overflow(int) __ptr64
600?overflow@stdiobuf@@UEAAHH@Z
601; public: virtual int __cdecl strstreambuf::overflow(int) __ptr64
602?overflow@strstreambuf@@UEAAHH@Z
603; public: virtual int __cdecl stdiobuf::pbackfail(int) __ptr64
604?pbackfail@stdiobuf@@UEAAHH@Z
605; public: virtual int __cdecl streambuf::pbackfail(int) __ptr64
606?pbackfail@streambuf@@UEAAHH@Z
607; protected: char * __ptr64 __cdecl streambuf::pbase(void)const __ptr64
608?pbase@streambuf@@IEBAPEADXZ
609; protected: void __cdecl streambuf::pbump(int) __ptr64
610?pbump@streambuf@@IEAAXH@Z
611; public: int __cdecl ostrstream::pcount(void)const __ptr64
612?pcount@ostrstream@@QEBAHXZ
613; public: int __cdecl strstream::pcount(void)const __ptr64
614?pcount@strstream@@QEBAHXZ
615; public: int __cdecl istream::peek(void) __ptr64
616?peek@istream@@QEAAHXZ
617; protected: char * __ptr64 __cdecl streambuf::pptr(void)const __ptr64
618?pptr@streambuf@@IEBAPEADXZ
619; public: int __cdecl ios::precision(int) __ptr64
620?precision@ios@@QEAAHH@Z
621; public: int __cdecl ios::precision(void)const __ptr64
622?precision@ios@@QEBAHXZ
623; public: class ostream & __ptr64 __cdecl ostream::put(signed char) __ptr64
624?put@ostream@@QEAAAEAV1@C@Z
625; public: class ostream & __ptr64 __cdecl ostream::put(char) __ptr64
626?put@ostream@@QEAAAEAV1@D@Z
627; public: class ostream & __ptr64 __cdecl ostream::put(unsigned char) __ptr64
628?put@ostream@@QEAAAEAV1@E@Z
629; public: class istream & __ptr64 __cdecl istream::putback(char) __ptr64
630?putback@istream@@QEAAAEAV1@D@Z
631; public: void * __ptr64 & __ptr64 __cdecl ios::pword(int)const __ptr64
632?pword@ios@@QEBAAEAPEAXH@Z
633; public: class filebuf * __ptr64 __cdecl fstream::rdbuf(void)const __ptr64
634?rdbuf@fstream@@QEBAPEAVfilebuf@@XZ
635; public: class filebuf * __ptr64 __cdecl ifstream::rdbuf(void)const __ptr64
636?rdbuf@ifstream@@QEBAPEAVfilebuf@@XZ
637; public: class streambuf * __ptr64 __cdecl ios::rdbuf(void)const __ptr64
638?rdbuf@ios@@QEBAPEAVstreambuf@@XZ
639; public: class strstreambuf * __ptr64 __cdecl istrstream::rdbuf(void)const __ptr64
640?rdbuf@istrstream@@QEBAPEAVstrstreambuf@@XZ
641; public: class filebuf * __ptr64 __cdecl ofstream::rdbuf(void)const __ptr64
642?rdbuf@ofstream@@QEBAPEAVfilebuf@@XZ
643; public: class strstreambuf * __ptr64 __cdecl ostrstream::rdbuf(void)const __ptr64
644?rdbuf@ostrstream@@QEBAPEAVstrstreambuf@@XZ
645; public: class stdiobuf * __ptr64 __cdecl stdiostream::rdbuf(void)const __ptr64
646?rdbuf@stdiostream@@QEBAPEAVstdiobuf@@XZ
647; public: class strstreambuf * __ptr64 __cdecl strstream::rdbuf(void)const __ptr64
648?rdbuf@strstream@@QEBAPEAVstrstreambuf@@XZ
649; public: int __cdecl ios::rdstate(void)const __ptr64
650?rdstate@ios@@QEBAHXZ
651; public: class istream & __ptr64 __cdecl istream::read(signed char * __ptr64,int) __ptr64
652?read@istream@@QEAAAEAV1@PEACH@Z
653; public: class istream & __ptr64 __cdecl istream::read(char * __ptr64,int) __ptr64
654?read@istream@@QEAAAEAV1@PEADH@Z
655; public: class istream & __ptr64 __cdecl istream::read(unsigned char * __ptr64,int) __ptr64
656?read@istream@@QEAAAEAV1@PEAEH@Z
657; public: int __cdecl streambuf::sbumpc(void) __ptr64
658?sbumpc@streambuf@@QEAAHXZ
659; public: class istream & __ptr64 __cdecl istream::seekg(long) __ptr64
660?seekg@istream@@QEAAAEAV1@J@Z
661; public: class istream & __ptr64 __cdecl istream::seekg(long,enum ios::seek_dir) __ptr64
662?seekg@istream@@QEAAAEAV1@JW4seek_dir@ios@@@Z
663; public: virtual long __cdecl filebuf::seekoff(long,enum ios::seek_dir,int) __ptr64
664?seekoff@filebuf@@UEAAJJW4seek_dir@ios@@H@Z
665; public: virtual long __cdecl stdiobuf::seekoff(long,enum ios::seek_dir,int) __ptr64
666?seekoff@stdiobuf@@UEAAJJW4seek_dir@ios@@H@Z
667; public: virtual long __cdecl streambuf::seekoff(long,enum ios::seek_dir,int) __ptr64
668?seekoff@streambuf@@UEAAJJW4seek_dir@ios@@H@Z
669; public: virtual long __cdecl strstreambuf::seekoff(long,enum ios::seek_dir,int) __ptr64
670?seekoff@strstreambuf@@UEAAJJW4seek_dir@ios@@H@Z
671; public: class ostream & __ptr64 __cdecl ostream::seekp(long) __ptr64
672?seekp@ostream@@QEAAAEAV1@J@Z
673; public: class ostream & __ptr64 __cdecl ostream::seekp(long,enum ios::seek_dir) __ptr64
674?seekp@ostream@@QEAAAEAV1@JW4seek_dir@ios@@@Z
675; public: virtual long __cdecl streambuf::seekpos(long,int) __ptr64
676?seekpos@streambuf@@UEAAJJH@Z
677; protected: void __cdecl streambuf::setb(char * __ptr64,char * __ptr64,int) __ptr64
678?setb@streambuf@@IEAAXPEAD0H@Z
679; public: virtual class streambuf * __ptr64 __cdecl filebuf::setbuf(char * __ptr64,int) __ptr64
680?setbuf@filebuf@@UEAAPEAVstreambuf@@PEADH@Z
681; public: class streambuf * __ptr64 __cdecl fstream::setbuf(char * __ptr64,int) __ptr64
682?setbuf@fstream@@QEAAPEAVstreambuf@@PEADH@Z
683; public: class streambuf * __ptr64 __cdecl ifstream::setbuf(char * __ptr64,int) __ptr64
684?setbuf@ifstream@@QEAAPEAVstreambuf@@PEADH@Z
685; public: class streambuf * __ptr64 __cdecl ofstream::setbuf(char * __ptr64,int) __ptr64
686?setbuf@ofstream@@QEAAPEAVstreambuf@@PEADH@Z
687; public: virtual class streambuf * __ptr64 __cdecl streambuf::setbuf(char * __ptr64,int) __ptr64
688?setbuf@streambuf@@UEAAPEAV1@PEADH@Z
689; public: virtual class streambuf * __ptr64 __cdecl strstreambuf::setbuf(char * __ptr64,int) __ptr64
690?setbuf@strstreambuf@@UEAAPEAVstreambuf@@PEADH@Z
691; public: long __cdecl ios::setf(long) __ptr64
692?setf@ios@@QEAAJJ@Z
693; public: long __cdecl ios::setf(long,long) __ptr64
694?setf@ios@@QEAAJJJ@Z
695; protected: void __cdecl streambuf::setg(char * __ptr64,char * __ptr64,char * __ptr64) __ptr64
696?setg@streambuf@@IEAAXPEAD00@Z
697; public: void __cdecl ios::setlock(void) __ptr64
698?setlock@ios@@QEAAXXZ
699; public: void __cdecl streambuf::setlock(void) __ptr64
700?setlock@streambuf@@QEAAXXZ
701; public: int __cdecl filebuf::setmode(int) __ptr64
702?setmode@filebuf@@QEAAHH@Z
703; public: int __cdecl fstream::setmode(int) __ptr64
704?setmode@fstream@@QEAAHH@Z
705; public: int __cdecl ifstream::setmode(int) __ptr64
706?setmode@ifstream@@QEAAHH@Z
707; public: int __cdecl ofstream::setmode(int) __ptr64
708?setmode@ofstream@@QEAAHH@Z
709; protected: void __cdecl streambuf::setp(char * __ptr64,char * __ptr64) __ptr64
710?setp@streambuf@@IEAAXPEAD0@Z
711; public: int __cdecl stdiobuf::setrwbuf(int,int) __ptr64
712?setrwbuf@stdiobuf@@QEAAHHH@Z
713; public: int __cdecl streambuf::sgetc(void) __ptr64
714?sgetc@streambuf@@QEAAHXZ
715; public: int __cdecl streambuf::sgetn(char * __ptr64,int) __ptr64
716?sgetn@streambuf@@QEAAHPEADH@Z
717; public: static int const filebuf::sh_none
718?sh_none@filebuf@@2HB
719; public: static int const filebuf::sh_read
720?sh_read@filebuf@@2HB
721; public: static int const filebuf::sh_write
722?sh_write@filebuf@@2HB
723; public: int __cdecl streambuf::snextc(void) __ptr64
724?snextc@streambuf@@QEAAHXZ
725; public: int __cdecl streambuf::sputbackc(char) __ptr64
726?sputbackc@streambuf@@QEAAHD@Z
727; public: int __cdecl streambuf::sputc(int) __ptr64
728?sputc@streambuf@@QEAAHH@Z
729; public: int __cdecl streambuf::sputn(char const * __ptr64,int) __ptr64
730?sputn@streambuf@@QEAAHPEBDH@Z
731; public: struct _iobuf * __ptr64 __cdecl stdiobuf::stdiofile(void) __ptr64
732?stdiofile@stdiobuf@@QEAAPEAU_iobuf@@XZ
733; public: void __cdecl streambuf::stossc(void) __ptr64
734?stossc@streambuf@@QEAAXXZ
735; public: char * __ptr64 __cdecl istrstream::str(void) __ptr64
736?str@istrstream@@QEAAPEADXZ
737; public: char * __ptr64 __cdecl ostrstream::str(void) __ptr64
738?str@ostrstream@@QEAAPEADXZ
739; public: char * __ptr64 __cdecl strstream::str(void) __ptr64
740?str@strstream@@QEAAPEADXZ
741; public: char * __ptr64 __cdecl strstreambuf::str(void) __ptr64
742?str@strstreambuf@@QEAAPEADXZ
743; private: static int ios::sunk_with_stdio
744?sunk_with_stdio@ios@@0HA DATA
745; public: virtual int __cdecl filebuf::sync(void) __ptr64
746?sync@filebuf@@UEAAHXZ
747; public: int __cdecl istream::sync(void) __ptr64
748?sync@istream@@QEAAHXZ
749; public: virtual int __cdecl stdiobuf::sync(void) __ptr64
750?sync@stdiobuf@@UEAAHXZ
751; public: virtual int __cdecl streambuf::sync(void) __ptr64
752?sync@streambuf@@UEAAHXZ
753; public: virtual int __cdecl strstreambuf::sync(void) __ptr64
754?sync@strstreambuf@@UEAAHXZ
755; public: static void __cdecl ios::sync_with_stdio(void)
756?sync_with_stdio@ios@@SAXXZ
757; public: long __cdecl istream::tellg(void) __ptr64
758?tellg@istream@@QEAAJXZ
759; public: long __cdecl ostream::tellp(void) __ptr64
760?tellp@ostream@@QEAAJXZ
761; public: static int const filebuf::text
762?text@filebuf@@2HB
763; public: class ostream * __ptr64 __cdecl ios::tie(class ostream * __ptr64) __ptr64
764?tie@ios@@QEAAPEAVostream@@PEAV2@@Z
765; public: class ostream * __ptr64 __cdecl ios::tie(void)const __ptr64
766?tie@ios@@QEBAPEAVostream@@XZ
767; protected: void __cdecl streambuf::unbuffered(int) __ptr64
768?unbuffered@streambuf@@IEAAXH@Z
769; protected: int __cdecl streambuf::unbuffered(void)const __ptr64
770?unbuffered@streambuf@@IEBAHXZ
771; public: virtual int __cdecl filebuf::underflow(void) __ptr64
772?underflow@filebuf@@UEAAHXZ
773; public: virtual int __cdecl stdiobuf::underflow(void) __ptr64
774?underflow@stdiobuf@@UEAAHXZ
775; public: virtual int __cdecl strstreambuf::underflow(void) __ptr64
776?underflow@strstreambuf@@UEAAHXZ
777; public: void __cdecl ios::unlock(void) __ptr64
778?unlock@ios@@QEAAXXZ
779; public: void __cdecl streambuf::unlock(void) __ptr64
780?unlock@streambuf@@QEAAXXZ
781; public: void __cdecl ios::unlockbuf(void) __ptr64
782?unlockbuf@ios@@QEAAXXZ
783; protected: static void __cdecl ios::unlockc(void)
784?unlockc@ios@@KAXXZ
785; public: long __cdecl ios::unsetf(long) __ptr64
786?unsetf@ios@@QEAAJJ@Z
787; public: virtual char const * __ptr64 __cdecl exception::what(void)const __ptr64
788?what@exception@@UEBAPEBDXZ
789; public: int __cdecl ios::width(int) __ptr64
790?width@ios@@QEAAHH@Z
791; public: int __cdecl ios::width(void)const __ptr64
792?width@ios@@QEBAHXZ
793; public: class ostream & __ptr64 __cdecl ostream::write(signed char const * __ptr64,int) __ptr64
794?write@ostream@@QEAAAEAV1@PEBCH@Z
795; public: class ostream & __ptr64 __cdecl ostream::write(char const * __ptr64,int) __ptr64
796?write@ostream@@QEAAAEAV1@PEBDH@Z
797; public: class ostream & __ptr64 __cdecl ostream::write(unsigned char const * __ptr64,int) __ptr64
798?write@ostream@@QEAAAEAV1@PEBEH@Z
799; private: class ostream & __ptr64 __cdecl ostream::writepad(char const * __ptr64,char const * __ptr64) __ptr64
800?writepad@ostream@@AEAAAEAV1@PEBD0@Z
801; class istream & __ptr64 __cdecl ws(class istream & __ptr64)
802?ws@@YAAEAVistream@@AEAV1@@Z
803; private: static int ios::x_curindex
804?x_curindex@ios@@0HA DATA
805; private: static struct _CRT_CRITICAL_SECTION ios::x_lockc
806?x_lockc@ios@@0U_CRT_CRITICAL_SECTION@@A DATA
807; private: static long ios::x_maxbit
808?x_maxbit@ios@@0JA DATA
809; private: static long * ios::x_statebuf
810?x_statebuf@ios@@0PAJA DATA
811; public: static int __cdecl ios::xalloc(void)
812?xalloc@ios@@SAHXZ
813; public: virtual int __cdecl streambuf::xsgetn(char * __ptr64,int) __ptr64
814?xsgetn@streambuf@@UEAAHPEADH@Z
815; public: virtual int __cdecl streambuf::xsputn(char const * __ptr64,int) __ptr64
816?xsputn@streambuf@@UEAAHPEBDH@Z
817__dummy_export DATA
818_mtlock
819_mtunlock
lib/libc/mingw/lib64/msvfw32.def deleted-55
......@@ -1,55 +0,0 @@
1;
2; Exports of file MSVFW32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSVFW32.dll
8EXPORTS
9VideoForWindowsVersion
10DrawDibBegin
11DrawDibChangePalette
12DrawDibClose
13DrawDibDraw
14DrawDibEnd
15DrawDibGetBuffer
16DrawDibGetPalette
17DrawDibOpen
18DrawDibProfileDisplay
19DrawDibRealize
20DrawDibSetPalette
21DrawDibStart
22DrawDibStop
23DrawDibTime
24GetOpenFileNamePreview
25GetOpenFileNamePreviewA
26GetOpenFileNamePreviewW
27GetSaveFileNamePreviewA
28GetSaveFileNamePreviewW
29ICClose
30ICCompress
31ICCompressorChoose
32ICCompressorFree
33ICDecompress
34ICDraw
35ICDrawBegin
36ICGetDisplayFormat
37ICGetInfo
38ICImageCompress
39ICImageDecompress
40ICInfo
41ICInstall
42ICLocate
43ICMThunk32
44ICOpen
45ICOpenFunction
46ICRemove
47ICSendMessage
48ICSeqCompressFrame
49ICSeqCompressFrameEnd
50ICSeqCompressFrameStart
51MCIWndCreate
52MCIWndCreateA
53MCIWndCreateW
54MCIWndRegisterClass
55StretchDIB
lib/libc/mingw/lib64/msvidc32.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file MSVIDC32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSVIDC32.dll
8EXPORTS
9DriverProc
lib/libc/mingw/lib64/msw3prt.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file MSW3PRT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MSW3PRT.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
lib/libc/mingw/lib64/mtxclu.def created+93
......@@ -0,0 +1,93 @@
1;
2; Exports of file MTXCLU.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MTXCLU.DLL
8EXPORTS
9MtxCluBringOnlineDTC2A
10MtxCluBringOnlineDTC2W
11MtxCluBringOnlineDTCA
12MtxCluBringOnlineDTCW
13MtxCluCheckIfOkToStartDtc
14MtxCluCheckPointCryptoW
15MtxCluCheckpointRegistryA
16MtxCluCheckpointRegistryW
17MtxCluCloseNodeNotify
18MtxCluCreateDtcResourceKeyW
19MtxCluCreateDtcResourceValueW
20MtxCluCreateDtcResourceW
21MtxCluCreateRecommendedLogInfo
22MtxCluDeleteDtcResourceKeyW
23MtxCluDeleteDtcResourceValueW
24MtxCluDoesDTCResourceExistA
25MtxCluDoesDTCResourceExistW
26MtxCluGetComputerNameA
27MtxCluGetComputerNameW
28MtxCluGetDTCInstallState
29MtxCluGetDTCInstallVersion
30MtxCluGetDTCIpAddressA
31MtxCluGetDTCIpAddressW
32MtxCluGetDTCLogPathA
33MtxCluGetDTCLogPathW
34MtxCluGetDTCLogSizeA
35MtxCluGetDTCLogSizeW
36MtxCluGetDTCOwnerA
37MtxCluGetDTCOwnerW
38MtxCluGetDTCStatusA
39MtxCluGetDTCStatusW
40MtxCluGetDTCVirtualServerNameA
41MtxCluGetDTCVirtualServerNameW
42MtxCluGetDtcUserInfo
43MtxCluGetJoinMasterA
44MtxCluGetJoinMasterW
45MtxCluGetListOfSharedDisksA
46MtxCluGetListOfSharedDisksOnVirtualServerA
47MtxCluGetListOfSharedDisksOnVirtualServerW
48MtxCluGetListOfSharedDisksW
49MtxCluGetListOfVirtualServersA
50MtxCluGetListOfVirtualServersW
51MtxCluGetNewCryptoKey
52MtxCluGetNodeClusterStateW
53MtxCluGetSecurityRegValue
54MtxCluInitialize
55MtxCluIsClusterPresent
56MtxCluIsClusterPresentExA
57MtxCluIsClusterPresentExW
58MtxCluIsNetworkNameInLocalClusterW
59MtxCluIsSameClusterW
60MtxCluIsSameNodeA
61MtxCluIsSameNodeW
62MtxCluIsSharedDiskA
63MtxCluIsSharedDiskW
64MtxCluIsVirtualServerInLocalClusterA
65MtxCluIsVirtualServerInLocalClusterW
66MtxCluJoinDTCResource
67MtxCluListNodesA
68MtxCluListNodesW
69MtxCluMoveDTCGroupA
70MtxCluMoveDTCGroupW
71MtxCluNodeNotifyA
72MtxCluNodeNotifyW
73MtxCluQueryDtcResourceValueW
74MtxCluRegisterDTCResourceA
75MtxCluRegisterDTCResourceW
76MtxCluRemoveAllRegistryCheckpoints
77MtxCluRemoveCheckpointRegistryA
78MtxCluRemoveCheckpointRegistryW
79MtxCluSetDTCLogPathA
80MtxCluSetDTCLogPathW
81MtxCluSetDTCLogSizeA
82MtxCluSetDTCLogSizeW
83MtxCluSetDtcUserInfo
84MtxCluSetNewCryptoKey
85MtxCluSetSecurityRegValue
86MtxCluTakeOfflineDTC2W
87MtxCluTakeOfflineDTCA
88MtxCluTakeOfflineDTCW
89MtxCluUninitialize
90MtxCluUpgradeDtcResourceW
91Startup
92WasDTCInstalledBySQL
93DllMain
lib/libc/mingw/lib64/mtxex.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file mtxex.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY mtxex.dll
8EXPORTS
9DllGetClassObject
10GetObjectContext
11MTSCreateActivity
12SafeRef
lib/libc/mingw/lib64/mtxoci.def created+48
......@@ -0,0 +1,48 @@
1;
2; Exports of file MTxOCI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY MTxOCI.dll
8EXPORTS
9obndra
10obndrn
11obndrv
12obreak
13ocan
14oclose
15ocof
16ocom
17ocon
18odefin
19odescr
20odessp
21oerhms
22oermsg
23oexec
24oexfet
25oexn
26ofen
27ofetch
28oflng
29olog
30ologof
31DllRegisterServer
32DllUnregisterServer
33oopen
34oopt
35oparse
36orol
37obindps
38odefinps
39ogetpi
40osetpi
41opinit
42ologTransacted
43Enlist
44GetXaSwitch
45MTxOciInit
46MTxolog
47MTxOciGetVersion
48MTxOciRegisterCursor
lib/libc/mingw/lib64/ncxpnt.def created+31
......@@ -0,0 +1,31 @@
1;
2; Exports of file NCXP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NCXP.dll
8EXPORTS
9EnableAutodial
10GetDefaultDialupConnection
11IsAutodialEnabled
12SetDefaultDialupConnection
13TestRunDll
14DisableUserLevelAccessControl
15EnumMatchingNetBindings
16EnumNetAdapters
17HrEnableDhcp
18HrFromLastWin32Error
19HrWideCharToMultiByte
20InstallMSClient
21InstallSharing
22InstallTCPIP
23IsAccessControlUserLevel
24IsAdapterDisconnected
25IsClientInstalled
26IsMSClientInstalled
27IsProtocolInstalled
28IsSharingInstalled
29NetConnAlloc
30NetConnFree
31RestartNetAdapter
lib/libc/mingw/lib64/nddenb32.def created+23
......@@ -0,0 +1,23 @@
1;
2; Exports of file NDDENB32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NDDENB32.dll
8EXPORTS
9NDDEInit
10NDDEGetCAPS
11NDDEGetNewConnection
12NDDEAddConnection
13NDDEDeleteConnection
14NDDEGetConnectionStatus
15NDDERcvPacket
16NDDEXmtPacket
17NDDESetConnectionConfig
18NDDEShutdown
19NDDETimeSlice
20NDDEGetConnectionConfig
21Configure
22LogDebugInfo
23ConfigureDlgProc
lib/libc/mingw/lib64/ndisnpp.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file NDISNPP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NDISNPP.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13GetNPPBlobs
lib/libc/mingw/lib64/netcfgx.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file netcfgx.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY netcfgx.dll
8EXPORTS
9; public: struct WLBS_REG_PARAMS & __ptr64 __cdecl WLBS_REG_PARAMS::operator=(struct WLBS_REG_PARAMS const & __ptr64) __ptr64
10??4WLBS_REG_PARAMS@@QEAAAEAU0@AEBU0@@Z
11DllCanUnloadNow
12DllGetClassObject
13DllRegisterServer
14DllUnregisterServer
15HrDiAddComponentToINetCfg
16LanaCfgFromCommandArgs
17ModemClassCoInstaller
18NetCfgDiagFromCommandArgs
19NetCfgDiagRepairRegistryBindings
20NetClassInstaller
21NetPropPageProvider
22RasAddBindings
23RasCountBindings
24RasRemoveBindings
25SvchostChangeSvchostGroup
26UpdateLanaConfigUsingAnswerfile
lib/libc/mingw/lib64/netjoin.def created+52
......@@ -0,0 +1,52 @@
1;
2; Definition file of netjoin.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "netjoin.dll"
7EXPORTS
8NetProvisionComputerAccount
9NetRequestOfflineDomainJoin
10NetSetuppCloseLog
11NetSetuppOpenLog
12NetpAvoidNetlogonSpnSet
13NetpChangeMachineName
14NetpCheckOfflineLsaPolicyUpdate
15NetpCompleteOfflineDomainJoin
16NetpControlServices
17NetpCrackNamesStatus2Win32Error
18NetpCreateComputerObjectInDs
19NetpDecodeProvisioningBlob
20NetpDecodeProvisioningData
21NetpDoDomainJoin
22NetpDoInitiateOfflineDomainJoin
23NetpDomainJoinLicensingCheck
24NetpDumpBlobToLog
25NetpDumpDcInfoToLog
26NetpDumpDnsDomainInfoToLog
27NetpEncodeProvisionData
28NetpEncodeProvisioningBlob
29NetpFreeLdapLsaDomainInfo
30NetpFreeODJBlob
31NetpGetJoinInformation
32NetpGetListOfJoinableOUs
33NetpGetLogIndentPrefixString
34NetpGetLsaPrimaryDomain
35NetpGetMachineAccountName
36NetpGetNewMachineName
37NetpInitAndPickleBlobWin7
38NetpIsSetupInProgress
39NetpLogPrintHelper
40NetpMachineValidToJoin
41NetpManageIPCConnect
42NetpManageMachineAccountWithSid
43NetpProvisionComputerAccount
44NetpQueryService
45NetpSeparateUserAndDomain
46NetpSetComputerAccountPassword
47NetpStopService
48NetpStoreInitialDcRecord
49NetpUnJoinDomain
50NetpUnpickleBlobWin7
51NetpUpgradePreNT5JoinInfo
52NetpValidateName
lib/libc/mingw/lib64/netlogon.def created+33
......@@ -0,0 +1,33 @@
1;
2; Exports of file NETLOGON.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NETLOGON.dll
8EXPORTS
9DsrGetDcNameEx2
10I_DsGetDcCache
11I_NetLogonAddressToSiteName
12I_NetLogonAppendChangeLog
13I_NetLogonCloseChangeLog
14I_NetLogonFree
15I_NetLogonGetAuthDataEx
16I_NetLogonGetIpAddresses
17I_NetLogonGetSerialNumber
18I_NetLogonLdapLookupEx
19I_NetLogonMixedDomain
20I_NetLogonNewChangeLog
21I_NetLogonReadChangeLog
22I_NetLogonSendToSamOnPdc
23I_NetLogonSetServiceBits
24I_NetNotifyDelta
25I_NetNotifyDsChange
26I_NetNotifyMachineAccount
27I_NetNotifyNetlogonDllHandle
28I_NetNotifyNtdsDsaDeletion
29I_NetNotifyRole
30I_NetNotifyTrustedDomain
31InitSecurityInterfaceW
32NetILogonSamLogon
33NlNetlogonMain
lib/libc/mingw/lib64/netman.def created+20
......@@ -0,0 +1,20 @@
1;
2; Exports of file netman.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY netman.dll
8EXPORTS
9GetClientAdvises
10DllRegisterServer
11DllUnregisterServer
12HrGetPnpDeviceStatus
13HrLanConnectionNameFromGuidOrPath
14HrPnpInstanceIdFromGuid
15HrQueryLanMediaState
16HrRasConnectionNameFromGuid
17NetManDiagFromCommandArgs
18ProcessQueue
19RasEventNotify
20ServiceMain
lib/libc/mingw/lib64/netoc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file netoc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY netoc.dll
8EXPORTS
9NetOcSetupProc
lib/libc/mingw/lib64/netplwiz.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file NETPLWIZ.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NETPLWIZ.dll
8EXPORTS
9AddNetPlaceRunDll
10PassportWizardRunDll
11PublishRunDll
12UsersRunDll
13ClearAutoLogon
14DllCanUnloadNow
15DllGetClassObject
16DllInstall
17DllMain
18DllRegisterServer
19DllUnregisterServer
20NetAccessWizard
21NetPlacesWizardDoModal
22SHDisconnectNetDrives
lib/libc/mingw/lib64/netrap.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file NETRAP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NETRAP.dll
8EXPORTS
9RapArrayLength
10RapAsciiToDecimal
11RapAuxDataCount
12RapAuxDataCountOffset
13RapConvertSingleEntry
14RapConvertSingleEntryEx
15RapExamineDescriptor
16RapGetFieldSize
17RapIsValidDescriptorSmb
18RapLastPointerOffset
19RapParmNumDescriptor
20RapStructureAlignment
21RapStructureSize
22RapTotalSize
lib/libc/mingw/lib64/netui0.def created+1079
......@@ -0,0 +1,1079 @@
1;
2; Exports of file NETUI0.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NETUI0.dll
8EXPORTS
9; public: __cdecl ALIAS_STR::ALIAS_STR(unsigned short const * __ptr64) __ptr64
10??0ALIAS_STR@@QEAA@PEBG@Z
11; public: __cdecl ALLOC_STR::ALLOC_STR(unsigned short * __ptr64,unsigned int,unsigned short const * __ptr64) __ptr64
12??0ALLOC_STR@@QEAA@PEAGIPEBG@Z
13; protected: __cdecl BASE::BASE(void) __ptr64
14??0BASE@@IEAA@XZ
15; public: __cdecl BITFIELD::BITFIELD(class BITFIELD const & __ptr64) __ptr64
16??0BITFIELD@@QEAA@AEBV0@@Z
17; public: __cdecl BITFIELD::BITFIELD(unsigned short) __ptr64
18??0BITFIELD@@QEAA@G@Z
19; public: __cdecl BITFIELD::BITFIELD(unsigned int,enum BITVALUES) __ptr64
20??0BITFIELD@@QEAA@IW4BITVALUES@@@Z
21; public: __cdecl BITFIELD::BITFIELD(unsigned long) __ptr64
22??0BITFIELD@@QEAA@K@Z
23; public: __cdecl BITFIELD::BITFIELD(unsigned char const * __ptr64,unsigned int,unsigned int) __ptr64
24??0BITFIELD@@QEAA@PEBEII@Z
25; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
26??0BUFFER@@QEAA@I@Z
27; public: __cdecl CHAR_STRING::CHAR_STRING(unsigned short const * __ptr64,unsigned int) __ptr64
28??0CHAR_STRING@@QEAA@PEBGI@Z
29; public: __cdecl DBGSTREAM::DBGSTREAM(class OUTPUTSINK * __ptr64) __ptr64
30??0DBGSTREAM@@QEAA@PEAVOUTPUTSINK@@@Z
31; public: __cdecl DEC_STR::DEC_STR(unsigned long,unsigned int) __ptr64
32??0DEC_STR@@QEAA@KI@Z
33; public: __cdecl DFSITER_TREE::DFSITER_TREE(class DFSITER_TREE const * __ptr64) __ptr64
34??0DFSITER_TREE@@QEAA@PEBV0@@Z
35; public: __cdecl DFSITER_TREE::DFSITER_TREE(class TREE const * __ptr64,unsigned int) __ptr64
36??0DFSITER_TREE@@QEAA@PEBVTREE@@I@Z
37; public: __cdecl DIR_BLOCK::DIR_BLOCK(void) __ptr64
38??0DIR_BLOCK@@QEAA@XZ
39; public: __cdecl DLIST::DLIST(void) __ptr64
40??0DLIST@@QEAA@XZ
41; public: __cdecl DL_NODE::DL_NODE(class DL_NODE * __ptr64,class DL_NODE * __ptr64,void * __ptr64) __ptr64
42??0DL_NODE@@QEAA@PEAV0@0PEAX@Z
43; public: __cdecl ELAPSED_TIME_STR::ELAPSED_TIME_STR(unsigned long,unsigned short,int) __ptr64
44??0ELAPSED_TIME_STR@@QEAA@KGH@Z
45; public: __cdecl FMX::FMX(struct HWND__ * __ptr64) __ptr64
46??0FMX@@QEAA@PEAUHWND__@@@Z
47; protected: __cdecl FORWARDING_BASE::FORWARDING_BASE(class BASE * __ptr64) __ptr64
48??0FORWARDING_BASE@@IEAA@PEAVBASE@@@Z
49; protected: __cdecl FS_ENUM::FS_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,enum FILE_TYPE,int,unsigned int) __ptr64
50??0FS_ENUM@@IEAA@PEBG0W4FILE_TYPE@@HI@Z
51; protected: __cdecl HEAP_BASE::HEAP_BASE(int,int) __ptr64
52??0HEAP_BASE@@IEAA@HH@Z
53; public: __cdecl HEX_STR::HEX_STR(unsigned long,unsigned int) __ptr64
54??0HEX_STR@@QEAA@KI@Z
55; public: __cdecl HUATOM::HUATOM(unsigned short const * __ptr64,int) __ptr64
56??0HUATOM@@QEAA@PEBGH@Z
57; public: __cdecl INTL_PROFILE::INTL_PROFILE(void) __ptr64
58??0INTL_PROFILE@@QEAA@XZ
59; public: __cdecl ISTR::ISTR(class ISTR const & __ptr64) __ptr64
60??0ISTR@@QEAA@AEBV0@@Z
61; public: __cdecl ISTR::ISTR(class NLS_STR const & __ptr64) __ptr64
62??0ISTR@@QEAA@AEBVNLS_STR@@@Z
63; public: __cdecl ITER_DL::ITER_DL(class ITER_DL const & __ptr64) __ptr64
64??0ITER_DL@@QEAA@AEBV0@@Z
65; public: __cdecl ITER_DL::ITER_DL(class DLIST * __ptr64) __ptr64
66??0ITER_DL@@QEAA@PEAVDLIST@@@Z
67; public: __cdecl ITER_L::ITER_L(void) __ptr64
68??0ITER_L@@QEAA@XZ
69; public: __cdecl ITER_SL::ITER_SL(class ITER_SL const & __ptr64) __ptr64
70??0ITER_SL@@QEAA@AEBV0@@Z
71; public: __cdecl ITER_SL::ITER_SL(class SLIST * __ptr64) __ptr64
72??0ITER_SL@@QEAA@PEAVSLIST@@@Z
73; public: __cdecl ITER_SL_DIR_BLOCK::ITER_SL_DIR_BLOCK(class SLIST & __ptr64) __ptr64
74??0ITER_SL_DIR_BLOCK@@QEAA@AEAVSLIST@@@Z
75; public: __cdecl ITER_SL_NLS_STR::ITER_SL_NLS_STR(class SLIST & __ptr64) __ptr64
76??0ITER_SL_NLS_STR@@QEAA@AEAVSLIST@@@Z
77; public: __cdecl ITER_SL_NLS_STR::ITER_SL_NLS_STR(class ITER_SL_NLS_STR const & __ptr64) __ptr64
78??0ITER_SL_NLS_STR@@QEAA@AEBV0@@Z
79; public: __cdecl ITER_STRLIST::ITER_STRLIST(class STRLIST & __ptr64) __ptr64
80??0ITER_STRLIST@@QEAA@AEAVSTRLIST@@@Z
81; public: __cdecl ITER_STRLIST::ITER_STRLIST(class ITER_STRLIST const & __ptr64) __ptr64
82??0ITER_STRLIST@@QEAA@AEBV0@@Z
83; public: __cdecl LOGON_HOURS_SETTING::LOGON_HOURS_SETTING(class LOGON_HOURS_SETTING const & __ptr64) __ptr64
84??0LOGON_HOURS_SETTING@@QEAA@AEBV0@@Z
85; public: __cdecl LOGON_HOURS_SETTING::LOGON_HOURS_SETTING(unsigned char const * __ptr64,unsigned int) __ptr64
86??0LOGON_HOURS_SETTING@@QEAA@PEBEI@Z
87; protected: __cdecl NLS_STR::NLS_STR(unsigned short * __ptr64,unsigned int,int) __ptr64
88??0NLS_STR@@IEAA@PEAGIH@Z
89; public: __cdecl NLS_STR::NLS_STR(class NLS_STR const & __ptr64) __ptr64
90??0NLS_STR@@QEAA@AEBV0@@Z
91; public: __cdecl NLS_STR::NLS_STR(unsigned int) __ptr64
92??0NLS_STR@@QEAA@I@Z
93; public: __cdecl NLS_STR::NLS_STR(unsigned short const * __ptr64) __ptr64
94??0NLS_STR@@QEAA@PEBG@Z
95; public: __cdecl NLS_STR::NLS_STR(unsigned short const * __ptr64,unsigned short) __ptr64
96??0NLS_STR@@QEAA@PEBGG@Z
97; public: __cdecl NLS_STR::NLS_STR(void) __ptr64
98??0NLS_STR@@QEAA@XZ
99; public: __cdecl NUM_NLS_STR::NUM_NLS_STR(unsigned long) __ptr64
100??0NUM_NLS_STR@@QEAA@K@Z
101; public: __cdecl ONE_SHOT_HEAP::ONE_SHOT_HEAP(unsigned int,int) __ptr64
102??0ONE_SHOT_HEAP@@QEAA@IH@Z
103; public: __cdecl REG_KEY::REG_KEY(class REG_KEY & __ptr64) __ptr64
104??0REG_KEY@@QEAA@AEAV0@@Z
105; public: __cdecl REG_KEY::REG_KEY(class REG_KEY & __ptr64,class NLS_STR const & __ptr64,unsigned long) __ptr64
106??0REG_KEY@@QEAA@AEAV0@AEBVNLS_STR@@K@Z
107; public: __cdecl REG_KEY::REG_KEY(class REG_KEY & __ptr64,class NLS_STR const & __ptr64,class REG_KEY_CREATE_STRUCT * __ptr64) __ptr64
108??0REG_KEY@@QEAA@AEAV0@AEBVNLS_STR@@PEAVREG_KEY_CREATE_STRUCT@@@Z
109; public: __cdecl REG_KEY::REG_KEY(class NLS_STR const & __ptr64,unsigned long) __ptr64
110??0REG_KEY@@QEAA@AEBVNLS_STR@@K@Z
111; public: __cdecl REG_KEY::REG_KEY(struct HKEY__ * __ptr64,unsigned long) __ptr64
112??0REG_KEY@@QEAA@PEAUHKEY__@@K@Z
113; public: __cdecl REG_KEY::REG_KEY(struct HKEY__ * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
114??0REG_KEY@@QEAA@PEAUHKEY__@@PEBGK@Z
115; public: __cdecl REG_KEY_CREATE_STRUCT::REG_KEY_CREATE_STRUCT(void) __ptr64
116??0REG_KEY_CREATE_STRUCT@@QEAA@XZ
117; public: __cdecl REG_KEY_INFO_STRUCT::REG_KEY_INFO_STRUCT(void) __ptr64
118??0REG_KEY_INFO_STRUCT@@QEAA@XZ
119; public: __cdecl REG_VALUE_INFO_STRUCT::REG_VALUE_INFO_STRUCT(void) __ptr64
120??0REG_VALUE_INFO_STRUCT@@QEAA@XZ
121; public: __cdecl RESOURCE_STR::RESOURCE_STR(long,struct HINSTANCE__ * __ptr64) __ptr64
122??0RESOURCE_STR@@QEAA@JPEAUHINSTANCE__@@@Z
123; public: __cdecl RITER_DL::RITER_DL(class RITER_DL const & __ptr64) __ptr64
124??0RITER_DL@@QEAA@AEBV0@@Z
125; public: __cdecl RITER_DL::RITER_DL(class DLIST * __ptr64) __ptr64
126??0RITER_DL@@QEAA@PEAVDLIST@@@Z
127; public: __cdecl SLIST::SLIST(void) __ptr64
128??0SLIST@@QEAA@XZ
129; public: __cdecl SLIST_OF_DIR_BLOCK::SLIST_OF_DIR_BLOCK(int) __ptr64
130??0SLIST_OF_DIR_BLOCK@@QEAA@H@Z
131; public: __cdecl SLIST_OF_NLS_STR::SLIST_OF_NLS_STR(int) __ptr64
132??0SLIST_OF_NLS_STR@@QEAA@H@Z
133; public: __cdecl SL_NODE::SL_NODE(class SL_NODE * __ptr64,void * __ptr64) __ptr64
134??0SL_NODE@@QEAA@PEAV0@PEAX@Z
135; public: __cdecl STRLIST::STRLIST(class NLS_STR const & __ptr64,class NLS_STR const & __ptr64,int) __ptr64
136??0STRLIST@@QEAA@AEBVNLS_STR@@0H@Z
137; public: __cdecl STRLIST::STRLIST(int) __ptr64
138??0STRLIST@@QEAA@H@Z
139; public: __cdecl STRLIST::STRLIST(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
140??0STRLIST@@QEAA@PEBG0H@Z
141; public: __cdecl TCHAR_STR::TCHAR_STR(unsigned short) __ptr64
142??0TCHAR_STR@@QEAA@G@Z
143; public: __cdecl TCHAR_STR_IMPL::TCHAR_STR_IMPL(unsigned short) __ptr64
144??0TCHAR_STR_IMPL@@QEAA@G@Z
145; public: __cdecl TREE::TREE(void * __ptr64) __ptr64
146??0TREE@@QEAA@PEAX@Z
147; public: __cdecl UATOM::UATOM(class NLS_STR & __ptr64) __ptr64
148??0UATOM@@QEAA@AEAVNLS_STR@@@Z
149; public: __cdecl UATOM_LINKAGE::UATOM_LINKAGE(void) __ptr64
150??0UATOM_LINKAGE@@QEAA@XZ
151; private: __cdecl UATOM_MANAGER::UATOM_MANAGER(void) __ptr64
152??0UATOM_MANAGER@@AEAA@XZ
153; public: __cdecl UATOM_REGION::UATOM_REGION(void) __ptr64
154??0UATOM_REGION@@QEAA@XZ
155; public: __cdecl W32_DIR_BLOCK::W32_DIR_BLOCK(void) __ptr64
156??0W32_DIR_BLOCK@@QEAA@XZ
157; public: __cdecl W32_FS_ENUM::W32_FS_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,enum FILE_TYPE,int,unsigned int) __ptr64
158??0W32_FS_ENUM@@QEAA@PEBG0W4FILE_TYPE@@HI@Z
159; public: __cdecl WCHAR_STRING::WCHAR_STRING(char const * __ptr64,unsigned int) __ptr64
160??0WCHAR_STRING@@QEAA@PEBDI@Z
161; public: __cdecl WIN_TIME::WIN_TIME(int) __ptr64
162??0WIN_TIME@@QEAA@H@Z
163; public: __cdecl WIN_TIME::WIN_TIME(unsigned long,int) __ptr64
164??0WIN_TIME@@QEAA@KH@Z
165; public: __cdecl WIN_TIME::WIN_TIME(struct _FILETIME,int) __ptr64
166??0WIN_TIME@@QEAA@U_FILETIME@@H@Z
167; public: __cdecl ALIAS_STR::~ALIAS_STR(void) __ptr64
168??1ALIAS_STR@@QEAA@XZ
169; public: __cdecl BITFIELD::~BITFIELD(void) __ptr64
170??1BITFIELD@@QEAA@XZ
171; public: __cdecl BUFFER::~BUFFER(void) __ptr64
172??1BUFFER@@QEAA@XZ
173; public: __cdecl CHAR_STRING::~CHAR_STRING(void) __ptr64
174??1CHAR_STRING@@QEAA@XZ
175; public: __cdecl DBGSTREAM::~DBGSTREAM(void) __ptr64
176??1DBGSTREAM@@QEAA@XZ
177; public: __cdecl DEC_STR::~DEC_STR(void) __ptr64
178??1DEC_STR@@QEAA@XZ
179; public: __cdecl DFSITER_TREE::~DFSITER_TREE(void) __ptr64
180??1DFSITER_TREE@@QEAA@XZ
181; public: virtual __cdecl DIR_BLOCK::~DIR_BLOCK(void) __ptr64
182??1DIR_BLOCK@@UEAA@XZ
183; public: __cdecl DLIST::~DLIST(void) __ptr64
184??1DLIST@@QEAA@XZ
185; public: __cdecl ELAPSED_TIME_STR::~ELAPSED_TIME_STR(void) __ptr64
186??1ELAPSED_TIME_STR@@QEAA@XZ
187; public: virtual __cdecl FS_ENUM::~FS_ENUM(void) __ptr64
188??1FS_ENUM@@UEAA@XZ
189; protected: __cdecl HEAP_BASE::~HEAP_BASE(void) __ptr64
190??1HEAP_BASE@@IEAA@XZ
191; public: __cdecl ITER_DL::~ITER_DL(void) __ptr64
192??1ITER_DL@@QEAA@XZ
193; public: __cdecl ITER_SL::~ITER_SL(void) __ptr64
194??1ITER_SL@@QEAA@XZ
195; public: __cdecl ITER_SL_DIR_BLOCK::~ITER_SL_DIR_BLOCK(void) __ptr64
196??1ITER_SL_DIR_BLOCK@@QEAA@XZ
197; public: __cdecl ITER_SL_NLS_STR::~ITER_SL_NLS_STR(void) __ptr64
198??1ITER_SL_NLS_STR@@QEAA@XZ
199; public: __cdecl ITER_STRLIST::~ITER_STRLIST(void) __ptr64
200??1ITER_STRLIST@@QEAA@XZ
201; public: __cdecl LOGON_HOURS_SETTING::~LOGON_HOURS_SETTING(void) __ptr64
202??1LOGON_HOURS_SETTING@@QEAA@XZ
203; public: __cdecl NLS_STR::~NLS_STR(void) __ptr64
204??1NLS_STR@@QEAA@XZ
205; public: __cdecl REG_KEY::~REG_KEY(void) __ptr64
206??1REG_KEY@@QEAA@XZ
207; public: __cdecl REG_KEY_INFO_STRUCT::~REG_KEY_INFO_STRUCT(void) __ptr64
208??1REG_KEY_INFO_STRUCT@@QEAA@XZ
209; public: __cdecl REG_VALUE_INFO_STRUCT::~REG_VALUE_INFO_STRUCT(void) __ptr64
210??1REG_VALUE_INFO_STRUCT@@QEAA@XZ
211; public: __cdecl RITER_DL::~RITER_DL(void) __ptr64
212??1RITER_DL@@QEAA@XZ
213; public: __cdecl SLIST::~SLIST(void) __ptr64
214??1SLIST@@QEAA@XZ
215; public: __cdecl SLIST_OF_DIR_BLOCK::~SLIST_OF_DIR_BLOCK(void) __ptr64
216??1SLIST_OF_DIR_BLOCK@@QEAA@XZ
217; public: __cdecl SLIST_OF_NLS_STR::~SLIST_OF_NLS_STR(void) __ptr64
218??1SLIST_OF_NLS_STR@@QEAA@XZ
219; public: __cdecl STRLIST::~STRLIST(void) __ptr64
220??1STRLIST@@QEAA@XZ
221; public: __cdecl TCHAR_STR::~TCHAR_STR(void) __ptr64
222??1TCHAR_STR@@QEAA@XZ
223; public: __cdecl TREE::~TREE(void) __ptr64
224??1TREE@@QEAA@XZ
225; public: __cdecl UATOM::~UATOM(void) __ptr64
226??1UATOM@@QEAA@XZ
227; public: __cdecl UATOM_LINKAGE::~UATOM_LINKAGE(void) __ptr64
228??1UATOM_LINKAGE@@QEAA@XZ
229; private: __cdecl UATOM_MANAGER::~UATOM_MANAGER(void) __ptr64
230??1UATOM_MANAGER@@AEAA@XZ
231; public: __cdecl UATOM_REGION::~UATOM_REGION(void) __ptr64
232??1UATOM_REGION@@QEAA@XZ
233; public: virtual __cdecl W32_DIR_BLOCK::~W32_DIR_BLOCK(void) __ptr64
234??1W32_DIR_BLOCK@@UEAA@XZ
235; public: virtual __cdecl W32_FS_ENUM::~W32_FS_ENUM(void) __ptr64
236??1W32_FS_ENUM@@UEAA@XZ
237; public: __cdecl WCHAR_STRING::~WCHAR_STRING(void) __ptr64
238??1WCHAR_STRING@@QEAA@XZ
239; public: static void * __ptr64 __cdecl ALLOC_BASE::operator new(unsigned __int64)
240??2ALLOC_BASE@@SAPEAX_K@Z
241; public: static void * __ptr64 __cdecl ALLOC_BASE::operator new(unsigned __int64,void * __ptr64)
242??2ALLOC_BASE@@SAPEAX_KPEAX@Z
243; public: static void __cdecl ALLOC_BASE::operator delete(void * __ptr64)
244??3ALLOC_BASE@@SAXPEAX@Z
245; public: class ALIAS_STR const & __ptr64 __cdecl ALIAS_STR::operator=(class NLS_STR const & __ptr64) __ptr64
246??4ALIAS_STR@@QEAAAEBV0@AEBVNLS_STR@@@Z
247; public: class ALIAS_STR const & __ptr64 __cdecl ALIAS_STR::operator=(unsigned short const * __ptr64) __ptr64
248??4ALIAS_STR@@QEAAAEBV0@PEBG@Z
249; public: class ALLOC_STR & __ptr64 __cdecl ALLOC_STR::operator=(unsigned short const * __ptr64) __ptr64
250??4ALLOC_STR@@QEAAAEAV0@PEBG@Z
251; public: class BITFIELD & __ptr64 __cdecl BITFIELD::operator=(class BITFIELD const & __ptr64) __ptr64
252??4BITFIELD@@QEAAAEAV0@AEBV0@@Z
253; public: class BITFIELD & __ptr64 __cdecl BITFIELD::operator=(unsigned short) __ptr64
254??4BITFIELD@@QEAAAEAV0@G@Z
255; public: class BITFIELD & __ptr64 __cdecl BITFIELD::operator=(unsigned long) __ptr64
256??4BITFIELD@@QEAAAEAV0@K@Z
257; public: class ISTR & __ptr64 __cdecl ISTR::operator=(class ISTR const & __ptr64) __ptr64
258??4ISTR@@QEAAAEAV0@AEBV0@@Z
259; public: class NLS_STR & __ptr64 __cdecl NLS_STR::operator=(class NLS_STR const & __ptr64) __ptr64
260??4NLS_STR@@QEAAAEAV0@AEBV0@@Z
261; public: class NLS_STR & __ptr64 __cdecl NLS_STR::operator=(unsigned short const * __ptr64) __ptr64
262??4NLS_STR@@QEAAAEAV0@PEBG@Z
263; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(char) __ptr64
264??6DBGSTREAM@@QEAAAEAV0@D@Z
265; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(short) __ptr64
266??6DBGSTREAM@@QEAAAEAV0@F@Z
267; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(unsigned short) __ptr64
268??6DBGSTREAM@@QEAAAEAV0@G@Z
269; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(int) __ptr64
270??6DBGSTREAM@@QEAAAEAV0@H@Z
271; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(unsigned int) __ptr64
272??6DBGSTREAM@@QEAAAEAV0@I@Z
273; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(long) __ptr64
274??6DBGSTREAM@@QEAAAEAV0@J@Z
275; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(unsigned long) __ptr64
276??6DBGSTREAM@@QEAAAEAV0@K@Z
277; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(char const * __ptr64) __ptr64
278??6DBGSTREAM@@QEAAAEAV0@PEBD@Z
279; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(unsigned short const * __ptr64) __ptr64
280??6DBGSTREAM@@QEAAAEAV0@PEBG@Z
281; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(enum DBGSTR_SPECIAL) __ptr64
282??6DBGSTREAM@@QEAAAEAV0@W4DBGSTR_SPECIAL@@@Z
283; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(__int64) __ptr64
284??6DBGSTREAM@@QEAAAEAV0@_J@Z
285; public: class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::operator<<(unsigned __int64) __ptr64
286??6DBGSTREAM@@QEAAAEAV0@_K@Z
287; public: int __cdecl BASE::operator!(void)const __ptr64
288??7BASE@@QEBAHXZ
289; public: int __cdecl BITFIELD::operator==(class BITFIELD & __ptr64) __ptr64
290??8BITFIELD@@QEAAHAEAV0@@Z
291; public: int __cdecl BITFIELD::operator==(unsigned short)const __ptr64
292??8BITFIELD@@QEBAHG@Z
293; public: int __cdecl BITFIELD::operator==(unsigned long)const __ptr64
294??8BITFIELD@@QEBAHK@Z
295; public: int __cdecl ISTR::operator==(class ISTR const & __ptr64)const __ptr64
296??8ISTR@@QEBAHAEBV0@@Z
297; public: int __cdecl NLS_STR::operator==(class NLS_STR const & __ptr64)const __ptr64
298??8NLS_STR@@QEBAHAEBV0@@Z
299; public: int __cdecl NLS_STR::operator!=(class NLS_STR const & __ptr64)const __ptr64
300??9NLS_STR@@QEBAHAEBV0@@Z
301; public: __cdecl BITFIELD::operator unsigned short(void) __ptr64
302??BBITFIELD@@QEAAGXZ
303; public: __cdecl BITFIELD::operator unsigned long(void) __ptr64
304??BBITFIELD@@QEAAKXZ
305; public: __cdecl NLS_STR::operator unsigned short const * __ptr64(void)const __ptr64
306??BNLS_STR@@QEBAPEBGXZ
307; public: __cdecl REG_KEY::operator struct HKEY__ * __ptr64(void)const __ptr64
308??BREG_KEY@@QEBAPEAUHKEY__@@XZ
309; public: __cdecl TCHAR_STR::operator class ALIAS_STR const & __ptr64(void) __ptr64
310??BTCHAR_STR@@QEAAAEBVALIAS_STR@@XZ
311; public: class ISTR & __ptr64 __cdecl ISTR::operator++(void) __ptr64
312??EISTR@@QEAAAEAV0@XZ
313; public: int __cdecl ISTR::operator-(class ISTR const & __ptr64)const __ptr64
314??GISTR@@QEBAHAEBV0@@Z
315; public: int __cdecl BITFIELD::operator&(class BITFIELD const & __ptr64) __ptr64
316??IBITFIELD@@QEAAHAEBV0@@Z
317; public: int __cdecl ISTR::operator<(class ISTR const & __ptr64)const __ptr64
318??MISTR@@QEBAHAEBV0@@Z
319; public: int __cdecl ISTR::operator>(class ISTR const & __ptr64)const __ptr64
320??OISTR@@QEBAHAEBV0@@Z
321; public: class NLS_STR * __ptr64 __cdecl ITER_SL_NLS_STR::operator()(void) __ptr64
322??RITER_SL_NLS_STR@@QEAAPEAVNLS_STR@@XZ
323; public: void __cdecl ISTR::operator+=(int) __ptr64
324??YISTR@@QEAAXH@Z
325; public: class NLS_STR & __ptr64 __cdecl NLS_STR::operator+=(class NLS_STR const & __ptr64) __ptr64
326??YNLS_STR@@QEAAAEAV0@AEBV0@@Z
327; public: void __cdecl BITFIELD::operator&=(class BITFIELD const & __ptr64) __ptr64
328??_4BITFIELD@@QEAAXAEBV0@@Z
329; public: void __cdecl BITFIELD::operator&=(unsigned short) __ptr64
330??_4BITFIELD@@QEAAXG@Z
331; public: void __cdecl BITFIELD::operator&=(unsigned long) __ptr64
332??_4BITFIELD@@QEAAXK@Z
333; public: void __cdecl BITFIELD::operator|=(class BITFIELD const & __ptr64) __ptr64
334??_5BITFIELD@@QEAAXAEBV0@@Z
335; public: void __cdecl BITFIELD::operator|=(unsigned short) __ptr64
336??_5BITFIELD@@QEAAXG@Z
337; public: void __cdecl BITFIELD::operator|=(unsigned long) __ptr64
338??_5BITFIELD@@QEAAXK@Z
339; void __cdecl `vector constructor iterator'(void * __ptr64,unsigned __int64,int,void * __ptr64 (__cdecl*)(void * __ptr64))
340??_H@YAXPEAX_KHP6APEAX0@Z@Z
341; void __cdecl `vector destructor iterator'(void * __ptr64,unsigned __int64,int,void (__cdecl*)(void * __ptr64))
342??_I@YAXPEAX_KHP6AX0@Z@Z
343; void __cdecl `vector vbase constructor iterator'(void * __ptr64,unsigned __int64,int,void * __ptr64 (__cdecl*)(void * __ptr64))
344??_J@YAXPEAX_KHP6APEAX0@Z@Z
345; public: long __cdecl DLIST::Add(void * __ptr64) __ptr64
346?Add@DLIST@@QEAAJPEAX@Z
347; public: long __cdecl SLIST::Add(void * __ptr64) __ptr64
348?Add@SLIST@@QEAAJPEAX@Z
349; public: long __cdecl SLIST_OF_DIR_BLOCK::Add(class DIR_BLOCK const * __ptr64) __ptr64
350?Add@SLIST_OF_DIR_BLOCK@@QEAAJPEBVDIR_BLOCK@@@Z
351; public: long __cdecl SLIST_OF_NLS_STR::Add(class NLS_STR const * __ptr64) __ptr64
352?Add@SLIST_OF_NLS_STR@@QEAAJPEBVNLS_STR@@@Z
353; private: int __cdecl NLS_STR::Alloc(unsigned int) __ptr64
354?Alloc@NLS_STR@@AEAAHI@Z
355; public: unsigned char * __ptr64 __cdecl ONE_SHOT_HEAP::Alloc(unsigned int) __ptr64
356?Alloc@ONE_SHOT_HEAP@@QEAAPEAEI@Z
357; protected: long __cdecl BITFIELD::AllocBitfield(unsigned int) __ptr64
358?AllocBitfield@BITFIELD@@IEAAJI@Z
359; public: long __cdecl DLIST::Append(void * __ptr64) __ptr64
360?Append@DLIST@@QEAAJPEAX@Z
361; public: long __cdecl NLS_STR::Append(class NLS_STR const & __ptr64) __ptr64
362?Append@NLS_STR@@QEAAJAEBV1@@Z
363; public: long __cdecl SLIST::Append(void * __ptr64) __ptr64
364?Append@SLIST@@QEAAJPEAX@Z
365; public: long __cdecl SLIST_OF_NLS_STR::Append(class NLS_STR const * __ptr64) __ptr64
366?Append@SLIST_OF_NLS_STR@@QEAAJPEBVNLS_STR@@@Z
367; public: long __cdecl NLS_STR::AppendChar(unsigned short) __ptr64
368?AppendChar@NLS_STR@@QEAAJG@Z
369; public: class TREE * __ptr64 __cdecl TREE::BreakOut(void) __ptr64
370?BreakOut@TREE@@QEAAPEAV1@XZ
371; protected: void __cdecl DLIST::BumpIters(class DL_NODE * __ptr64) __ptr64
372?BumpIters@DLIST@@IEAAXPEAVDL_NODE@@@Z
373; protected: void __cdecl SLIST::BumpIters(class SL_NODE * __ptr64) __ptr64
374?BumpIters@SLIST@@IEAAXPEAVSL_NODE@@@Z
375; private: void __cdecl NLS_STR::CheckIstr(class ISTR const & __ptr64)const __ptr64
376?CheckIstr@NLS_STR@@AEBAXAEBVISTR@@@Z
377; protected: int __cdecl DLIST::CheckIter(class ITER_L * __ptr64) __ptr64
378?CheckIter@DLIST@@IEAAHPEAVITER_L@@@Z
379; protected: int __cdecl SLIST::CheckIter(class ITER_SL * __ptr64) __ptr64
380?CheckIter@SLIST@@IEAAHPEAVITER_SL@@@Z
381; long __cdecl CheckLocalComm(unsigned short const * __ptr64)
382?CheckLocalComm@@YAJPEBG@Z
383; long __cdecl CheckLocalDrive(unsigned short const * __ptr64)
384?CheckLocalDrive@@YAJPEBG@Z
385; long __cdecl CheckLocalLpt(unsigned short const * __ptr64)
386?CheckLocalLpt@@YAJPEBG@Z
387; long __cdecl CheckUnavailDevice(unsigned short const * __ptr64,unsigned short * __ptr64,int * __ptr64)
388?CheckUnavailDevice@@YAJPEBGPEAGPEAH@Z
389; public: void __cdecl SLIST_OF_DIR_BLOCK::Clear(void) __ptr64
390?Clear@SLIST_OF_DIR_BLOCK@@QEAAXXZ
391; public: void __cdecl SLIST_OF_NLS_STR::Clear(void) __ptr64
392?Clear@SLIST_OF_NLS_STR@@QEAAXXZ
393; private: long __cdecl REG_KEY::Close(void) __ptr64
394?Close@REG_KEY@@AEAAJXZ
395; private: unsigned __int64 __cdecl FMX::Command(unsigned int,unsigned int,__int64)const __ptr64
396?Command@FMX@@AEBA_KII_J@Z
397; public: int __cdecl NLS_STR::Compare(class NLS_STR const * __ptr64)const __ptr64
398?Compare@NLS_STR@@QEBAHPEBV1@@Z
399; public: int __cdecl LOGON_HOURS_SETTING::ConvertFromGMT(void) __ptr64
400?ConvertFromGMT@LOGON_HOURS_SETTING@@QEAAHXZ
401; public: int __cdecl LOGON_HOURS_SETTING::ConvertToGMT(void) __ptr64
402?ConvertToGMT@LOGON_HOURS_SETTING@@QEAAHXZ
403; public: long __cdecl LOGON_HOURS_SETTING::ConvertToHoursPerWeek(void) __ptr64
404?ConvertToHoursPerWeek@LOGON_HOURS_SETTING@@QEAAJXZ
405; public: long __cdecl NLS_STR::CopyFrom(class NLS_STR const & __ptr64) __ptr64
406?CopyFrom@NLS_STR@@QEAAJAEBV1@@Z
407; public: long __cdecl NLS_STR::CopyFrom(unsigned short const * __ptr64,unsigned int) __ptr64
408?CopyFrom@NLS_STR@@QEAAJPEBGI@Z
409; public: long __cdecl NLS_STR::CopyTo(unsigned short * __ptr64,unsigned int)const __ptr64
410?CopyTo@NLS_STR@@QEBAJPEAGI@Z
411; private: long __cdecl REG_KEY::CreateChild(class REG_KEY * __ptr64,class NLS_STR const & __ptr64,class REG_KEY_CREATE_STRUCT * __ptr64)const __ptr64
412?CreateChild@REG_KEY@@AEBAJPEAV1@AEBVNLS_STR@@PEAVREG_KEY_CREATE_STRUCT@@@Z
413; protected: virtual class DIR_BLOCK * __ptr64 __cdecl W32_FS_ENUM::CreateDirBlock(void) __ptr64
414?CreateDirBlock@W32_FS_ENUM@@MEAAPEAVDIR_BLOCK@@XZ
415; private: void __cdecl STRLIST::CreateList(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
416?CreateList@STRLIST@@AEAAXPEBG0@Z
417; private: void __cdecl NLS_STR::DelSubStr(class ISTR & __ptr64,unsigned int) __ptr64
418?DelSubStr@NLS_STR@@AEAAXAEAVISTR@@I@Z
419; public: void __cdecl NLS_STR::DelSubStr(class ISTR & __ptr64) __ptr64
420?DelSubStr@NLS_STR@@QEAAXAEAVISTR@@@Z
421; public: void __cdecl NLS_STR::DelSubStr(class ISTR & __ptr64,class ISTR const & __ptr64) __ptr64
422?DelSubStr@NLS_STR@@QEAAXAEAVISTR@@AEBV2@@Z
423; public: long __cdecl REG_KEY::Delete(void) __ptr64
424?Delete@REG_KEY@@QEAAJXZ
425; public: long __cdecl REG_KEY::DeleteValue(class NLS_STR const & __ptr64) __ptr64
426?DeleteValue@REG_KEY@@QEAAJAEBVNLS_STR@@@Z
427; protected: void __cdecl DLIST::Deregister(class ITER_L * __ptr64) __ptr64
428?Deregister@DLIST@@IEAAXPEAVITER_L@@@Z
429; protected: void __cdecl SLIST::Deregister(class ITER_SL * __ptr64) __ptr64
430?Deregister@SLIST@@IEAAXPEAVITER_SL@@@Z
431; public: int __cdecl DIR_BLOCK::DoBreadthFirstDirs(void)const __ptr64
432?DoBreadthFirstDirs@DIR_BLOCK@@QEBAHXZ
433; public: virtual void __cdecl OUTPUT_TO_AUX::EndOfLine(void) __ptr64
434?EndOfLine@OUTPUT_TO_AUX@@UEAAXXZ
435; private: virtual void __cdecl OUTPUT_TO_NUL::EndOfLine(void) __ptr64
436?EndOfLine@OUTPUT_TO_NUL@@EEAAXXZ
437; public: virtual void __cdecl OUTPUT_TO_STDERR::EndOfLine(void) __ptr64
438?EndOfLine@OUTPUT_TO_STDERR@@UEAAXXZ
439; public: virtual void __cdecl OUTPUT_TO_STDOUT::EndOfLine(void) __ptr64
440?EndOfLine@OUTPUT_TO_STDOUT@@UEAAXXZ
441; public: void __cdecl BUFFER::FillOut(void) __ptr64
442?FillOut@BUFFER@@QEAAXXZ
443; protected: virtual long __cdecl W32_FS_ENUM::FindFirst(class DIR_BLOCK * __ptr64,class NLS_STR const & __ptr64,unsigned int) __ptr64
444?FindFirst@W32_FS_ENUM@@MEAAJPEAVDIR_BLOCK@@AEBVNLS_STR@@I@Z
445; protected: virtual long __cdecl W32_FS_ENUM::FindNext(class DIR_BLOCK * __ptr64,unsigned int) __ptr64
446?FindNext@W32_FS_ENUM@@MEAAJPEAVDIR_BLOCK@@I@Z
447; protected: class SL_NODE * __ptr64 __cdecl SLIST::FindPrev(class SL_NODE * __ptr64) __ptr64
448?FindPrev@SLIST@@IEAAPEAVSL_NODE@@PEAV2@@Z
449; public: long __cdecl REG_KEY::Flush(void) __ptr64
450?Flush@REG_KEY@@QEAAJXZ
451; public: class UATOM * __ptr64 __cdecl UATOM_LINKAGE::Fwd(void) __ptr64
452?Fwd@UATOM_LINKAGE@@QEAAPEAVUATOM@@XZ
453; private: long __cdecl BUFFER::GetNewStorage(unsigned int) __ptr64
454?GetNewStorage@BUFFER@@AEAAJI@Z
455; long __cdecl GetSelItem(struct HWND__ * __ptr64,unsigned int,class NLS_STR * __ptr64,int * __ptr64)
456?GetSelItem@@YAJPEAUHWND__@@IPEAVNLS_STR@@PEAH@Z
457; long __cdecl GetSelItem(struct HWND__ * __ptr64,class NLS_STR * __ptr64,int,int * __ptr64)
458?GetSelItem@@YAJPEAUHWND__@@PEAVNLS_STR@@HPEAH@Z
459; private: static int __cdecl REG_KEY::HandlePrefix(class NLS_STR const & __ptr64,struct HKEY__ * __ptr64 * __ptr64,class NLS_STR * __ptr64,class NLS_STR * __ptr64)
460?HandlePrefix@REG_KEY@@CAHAEBVNLS_STR@@PEAPEAUHKEY__@@PEAV2@2@Z
461; public: int __cdecl DIR_BLOCK::HasFindFirstBeenCalled(void) __ptr64
462?HasFindFirstBeenCalled@DIR_BLOCK@@QEAAHXZ
463; void __cdecl HeapResidueIter(unsigned int,int)
464?HeapResidueIter@@YAXIH@Z
465; protected: long __cdecl HEAP_BASE::I_AddItem(void * __ptr64) __ptr64
466?I_AddItem@HEAP_BASE@@IEAAJPEAX@Z
467; protected: void * __ptr64 __cdecl HEAP_BASE::I_RemoveTopItem(void) __ptr64
468?I_RemoveTopItem@HEAP_BASE@@IEAAPEAXXZ
469; protected: void __cdecl NLS_STR::IncVers(void) __ptr64
470?IncVers@NLS_STR@@IEAAXXZ
471; public: static void __cdecl NUM_NLS_STR::Init(void)
472?Init@NUM_NLS_STR@@SAXXZ
473; public: void __cdecl UATOM_LINKAGE::Init(void) __ptr64
474?Init@UATOM_LINKAGE@@QEAAXXZ
475; public: static long __cdecl UATOM_MANAGER::Initialize(void)
476?Initialize@UATOM_MANAGER@@SAJXZ
477; protected: void __cdecl NLS_STR::InitializeVers(void) __ptr64
478?InitializeVers@NLS_STR@@IEAAXXZ
479; public: long __cdecl DLIST::Insert(void * __ptr64,class ITER_DL & __ptr64) __ptr64
480?Insert@DLIST@@QEAAJPEAXAEAVITER_DL@@@Z
481; public: long __cdecl DLIST::Insert(void * __ptr64,class RITER_DL & __ptr64) __ptr64
482?Insert@DLIST@@QEAAJPEAXAEAVRITER_DL@@@Z
483; public: long __cdecl SLIST::Insert(void * __ptr64,class ITER_SL & __ptr64) __ptr64
484?Insert@SLIST@@QEAAJPEAXAEAVITER_SL@@@Z
485; public: long __cdecl NLS_STR::InsertParams(class NLS_STR const & __ptr64,class NLS_STR const & __ptr64,class NLS_STR const & __ptr64) __ptr64
486?InsertParams@NLS_STR@@QEAAJAEBV1@00@Z
487; public: long __cdecl NLS_STR::InsertParams(unsigned int,class NLS_STR const * __ptr64,...) __ptr64
488?InsertParams@NLS_STR@@QEAAJIPEBV1@ZZ
489; public: long __cdecl NLS_STR::InsertParams(class NLS_STR const * __ptr64 * __ptr64) __ptr64
490?InsertParams@NLS_STR@@QEAAJPEAPEBV1@@Z
491; private: long __cdecl NLS_STR::InsertParamsAux(class NLS_STR const * __ptr64 * __ptr64,unsigned int,int,unsigned int * __ptr64) __ptr64
492?InsertParamsAux@NLS_STR@@AEAAJPEAPEBV1@IHPEAI@Z
493; public: int __cdecl NLS_STR::InsertStr(class NLS_STR const & __ptr64,class ISTR & __ptr64) __ptr64
494?InsertStr@NLS_STR@@QEAAHAEBV1@AEAVISTR@@@Z
495; public: int __cdecl INTL_PROFILE::Is24Hour(void)const __ptr64
496?Is24Hour@INTL_PROFILE@@QEBAHXZ
497; protected: int __cdecl BITFIELD::IsAllocated(void)const __ptr64
498?IsAllocated@BITFIELD@@IEBAHXZ
499; public: int __cdecl BITFIELD::IsBitSet(unsigned int)const __ptr64
500?IsBitSet@BITFIELD@@QEBAHI@Z
501; public: int __cdecl INTL_PROFILE::IsDayLZero(void)const __ptr64
502?IsDayLZero@INTL_PROFILE@@QEBAHXZ
503; public: int __cdecl DIR_BLOCK::IsDir(void) __ptr64
504?IsDir@DIR_BLOCK@@QEAAHXZ
505; public: int __cdecl FMX::IsHeterogeneousSelection(int * __ptr64) __ptr64
506?IsHeterogeneousSelection@FMX@@QEAAHPEAH@Z
507; public: int __cdecl INTL_PROFILE::IsHourLZero(void)const __ptr64
508?IsHourLZero@INTL_PROFILE@@QEBAHXZ
509; public: int __cdecl LOGON_HOURS_SETTING::IsIdenticalToBits(unsigned char const * __ptr64,unsigned int)const __ptr64
510?IsIdenticalToBits@LOGON_HOURS_SETTING@@QEBAHPEBEI@Z
511; public: int __cdecl ISTR::IsLastPos(void)const __ptr64
512?IsLastPos@ISTR@@QEBAHXZ
513; public: int __cdecl SLIST_OF_NLS_STR::IsMember(class NLS_STR const & __ptr64) __ptr64
514?IsMember@SLIST_OF_NLS_STR@@QEAAHAEBVNLS_STR@@@Z
515; public: int __cdecl INTL_PROFILE::IsMonthLZero(void)const __ptr64
516?IsMonthLZero@INTL_PROFILE@@QEBAHXZ
517; public: int __cdecl NLS_STR::IsOwnerAlloc(void)const __ptr64
518?IsOwnerAlloc@NLS_STR@@QEBAHXZ
519; public: int __cdecl INTL_PROFILE::IsTimePrefix(void)const __ptr64
520?IsTimePrefix@INTL_PROFILE@@QEBAHXZ
521; public: int __cdecl INTL_PROFILE::IsYrCentury(void)const __ptr64
522?IsYrCentury@INTL_PROFILE@@QEBAHXZ
523; public: void __cdecl TREE::JoinSiblingLeft(class TREE * __ptr64) __ptr64
524?JoinSiblingLeft@TREE@@QEAAXPEAV1@@Z
525; public: void __cdecl TREE::JoinSiblingRight(class TREE * __ptr64) __ptr64
526?JoinSiblingRight@TREE@@QEAAXPEAV1@@Z
527; public: void __cdecl TREE::JoinSubtreeLeft(class TREE * __ptr64) __ptr64
528?JoinSubtreeLeft@TREE@@QEAAXPEAV1@@Z
529; public: void __cdecl TREE::JoinSubtreeRight(class TREE * __ptr64) __ptr64
530?JoinSubtreeRight@TREE@@QEAAXPEAV1@@Z
531; private: unsigned short const * __ptr64 __cdecl REG_KEY::LeafKeyName(void)const __ptr64
532?LeafKeyName@REG_KEY@@AEBAPEBGXZ
533; public: void __cdecl UATOM_LINKAGE::Link(class UATOM_LINKAGE * __ptr64) __ptr64
534?Link@UATOM_LINKAGE@@QEAAXPEAV1@@Z
535; public: long __cdecl NLS_STR::Load(long,struct HINSTANCE__ * __ptr64) __ptr64
536?Load@NLS_STR@@QEAAJJPEAUHINSTANCE__@@@Z
537; public: long __cdecl NLS_STR::LoadSystem(long) __ptr64
538?LoadSystem@NLS_STR@@QEAAJJ@Z
539; public: long __cdecl LOGON_HOURS_SETTING::MakeDefault(void) __ptr64
540?MakeDefault@LOGON_HOURS_SETTING@@QEAAJXZ
541; public: long __cdecl NLS_STR::MapCopyFrom(char const * __ptr64,unsigned int) __ptr64
542?MapCopyFrom@NLS_STR@@QEAAJPEBDI@Z
543; public: long __cdecl NLS_STR::MapCopyFrom(unsigned short const * __ptr64,unsigned int) __ptr64
544?MapCopyFrom@NLS_STR@@QEAAJPEBGI@Z
545; public: long __cdecl NLS_STR::MapCopyTo(char * __ptr64,unsigned int)const __ptr64
546?MapCopyTo@NLS_STR@@QEBAJPEADI@Z
547; public: long __cdecl NLS_STR::MapCopyTo(unsigned short * __ptr64,unsigned int)const __ptr64
548?MapCopyTo@NLS_STR@@QEBAJPEAGI@Z
549; public: static long __cdecl ERRMAP::MapNTStatus(long,int * __ptr64,long)
550?MapNTStatus@ERRMAP@@SAJJPEAHJ@Z
551; private: long __cdecl REG_KEY::NameChild(class REG_KEY * __ptr64,class NLS_STR const & __ptr64)const __ptr64
552?NameChild@REG_KEY@@AEBAJPEAV1@AEBVNLS_STR@@@Z
553; public: void * __ptr64 __cdecl DFSITER_TREE::Next(void) __ptr64
554?Next@DFSITER_TREE@@QEAAPEAXXZ
555; public: int __cdecl FS_ENUM::Next(void) __ptr64
556?Next@FS_ENUM@@QEAAHXZ
557; public: void * __ptr64 __cdecl ITER_SL::Next(void) __ptr64
558?Next@ITER_SL@@QEAAPEAXXZ
559; public: class DIR_BLOCK * __ptr64 __cdecl ITER_SL_DIR_BLOCK::Next(void) __ptr64
560?Next@ITER_SL_DIR_BLOCK@@QEAAPEAVDIR_BLOCK@@XZ
561; public: class NLS_STR * __ptr64 __cdecl ITER_SL_NLS_STR::Next(void) __ptr64
562?Next@ITER_SL_NLS_STR@@QEAAPEAVNLS_STR@@XZ
563; protected: int __cdecl FS_ENUM::NextBreadthFirst(void) __ptr64
564?NextBreadthFirst@FS_ENUM@@IEAAHXZ
565; protected: int __cdecl FS_ENUM::NextDepthFirst(void) __ptr64
566?NextDepthFirst@FS_ENUM@@IEAAHXZ
567; public: long __cdecl WIN_TIME::Normalize(void) __ptr64
568?Normalize@WIN_TIME@@QEAAJXZ
569; public: void __cdecl BITFIELD::Not(void) __ptr64
570?Not@BITFIELD@@QEAAXXZ
571; private: long __cdecl REG_KEY::OpenByName(class NLS_STR const & __ptr64,unsigned long) __ptr64
572?OpenByName@REG_KEY@@AEAAJAEBVNLS_STR@@K@Z
573; private: long __cdecl REG_KEY::OpenChild(class REG_KEY * __ptr64,class NLS_STR const & __ptr64,unsigned long,unsigned long) __ptr64
574?OpenChild@REG_KEY@@AEAAJPEAV1@AEBVNLS_STR@@KK@Z
575; private: class REG_KEY * __ptr64 __cdecl REG_KEY::OpenParent(unsigned long) __ptr64
576?OpenParent@REG_KEY@@AEAAPEAV1@K@Z
577; private: long __cdecl REG_KEY::ParentName(class NLS_STR * __ptr64)const __ptr64
578?ParentName@REG_KEY@@AEBAJPEAVNLS_STR@@@Z
579; protected: void * __ptr64 __cdecl HEAP_BASE::PeekItem(int)const __ptr64
580?PeekItem@HEAP_BASE@@IEBAPEAXH@Z
581; public: long __cdecl LOGON_HOURS_SETTING::PermitAll(void) __ptr64
582?PermitAll@LOGON_HOURS_SETTING@@QEAAJXZ
583; protected: long __cdecl FS_ENUM::PopDir(void) __ptr64
584?PopDir@FS_ENUM@@IEAAJXZ
585; protected: long __cdecl FS_ENUM::PushDir(unsigned short const * __ptr64) __ptr64
586?PushDir@FS_ENUM@@IEAAJPEBG@Z
587; public: long __cdecl INTL_PROFILE::QueryAMStr(class NLS_STR * __ptr64)const __ptr64
588?QueryAMStr@INTL_PROFILE@@QEBAJPEAVNLS_STR@@@Z
589; private: unsigned int __cdecl BUFFER::QueryActualSize(void) __ptr64
590?QueryActualSize@BUFFER@@AEAAIXZ
591; public: unsigned int __cdecl BITFIELD::QueryAllocSize(void)const __ptr64
592?QueryAllocSize@BITFIELD@@QEBAIXZ
593; public: unsigned int __cdecl NLS_STR::QueryAllocSize(void)const __ptr64
594?QueryAllocSize@NLS_STR@@QEBAIXZ
595; public: unsigned int __cdecl NLS_STR::QueryAnsiTextLength(void)const __ptr64
596?QueryAnsiTextLength@NLS_STR@@QEBAIXZ
597; public: virtual unsigned int __cdecl W32_DIR_BLOCK::QueryAttr(void) __ptr64
598?QueryAttr@W32_DIR_BLOCK@@UEAAIXZ
599; protected: unsigned char * __ptr64 __cdecl BITFIELD::QueryBitPos(unsigned int,unsigned int)const __ptr64
600?QueryBitPos@BITFIELD@@IEBAPEAEII@Z
601; public: int __cdecl STRLIST::QueryBufferSize(unsigned short * __ptr64) __ptr64
602?QueryBufferSize@STRLIST@@QEAAHPEAG@Z
603; private: static unsigned int __cdecl LOGON_HOURS_SETTING::QueryByteCount(unsigned int)
604?QueryByteCount@LOGON_HOURS_SETTING@@CAII@Z
605; public: unsigned int __cdecl LOGON_HOURS_SETTING::QueryByteCount(void)const __ptr64
606?QueryByteCount@LOGON_HOURS_SETTING@@QEBAIXZ
607; public: unsigned short __cdecl NLS_STR::QueryChar(class ISTR const & __ptr64)const __ptr64
608?QueryChar@NLS_STR@@QEBAGAEBVISTR@@@Z
609; public: unsigned int __cdecl BITFIELD::QueryCount(void)const __ptr64
610?QueryCount@BITFIELD@@QEBAIXZ
611; protected: unsigned int __cdecl DFSITER_TREE::QueryCurDepth(void)const __ptr64
612?QueryCurDepth@DFSITER_TREE@@IEBAIXZ
613; public: static class DBGSTREAM & __ptr64 __cdecl DBGSTREAM::QueryCurrent(void)
614?QueryCurrent@DBGSTREAM@@SAAEAV1@XZ
615; public: unsigned int __cdecl FS_ENUM::QueryCurrentDepth(void) __ptr64
616?QueryCurrentDepth@FS_ENUM@@QEAAIXZ
617; public: class DIR_BLOCK * __ptr64 __cdecl FS_ENUM::QueryCurrentDirBlock(void)const __ptr64
618?QueryCurrentDirBlock@FS_ENUM@@QEBAPEAVDIR_BLOCK@@XZ
619; unsigned long __cdecl QueryCurrentTimeStamp(void)
620?QueryCurrentTimeStamp@@YAKXZ
621; public: static class REG_KEY * __ptr64 __cdecl REG_KEY::QueryCurrentUser(unsigned long)
622?QueryCurrentUser@REG_KEY@@SAPEAV1@K@Z
623; public: char const * __ptr64 __cdecl CHAR_STRING::QueryData(void)const __ptr64
624?QueryData@CHAR_STRING@@QEBAPEBDXZ
625; public: unsigned short const * __ptr64 __cdecl WCHAR_STRING::QueryData(void)const __ptr64
626?QueryData@WCHAR_STRING@@QEBAPEBGXZ
627; public: long __cdecl INTL_PROFILE::QueryDateSeparator(class NLS_STR * __ptr64)const __ptr64
628?QueryDateSeparator@INTL_PROFILE@@QEBAJPEAVNLS_STR@@@Z
629; public: int __cdecl WIN_TIME::QueryDay(void)const __ptr64
630?QueryDay@WIN_TIME@@QEBAHXZ
631; public: int __cdecl WIN_TIME::QueryDayOfWeek(void)const __ptr64
632?QueryDayOfWeek@WIN_TIME@@QEBAHXZ
633; public: int __cdecl INTL_PROFILE::QueryDayPos(void)const __ptr64
634?QueryDayPos@INTL_PROFILE@@QEBAHXZ
635; public: class STRLIST * __ptr64 __cdecl DIR_BLOCK::QueryDirs(void) __ptr64
636?QueryDirs@DIR_BLOCK@@QEAAPEAVSTRLIST@@XZ
637; public: class ITER_STRLIST * __ptr64 __cdecl DIR_BLOCK::QueryDirsIter(void) __ptr64
638?QueryDirsIter@DIR_BLOCK@@QEAAPEAVITER_STRLIST@@XZ
639; public: long __cdecl FMX::QueryDriveInfo(struct _FMS_GETDRIVEINFOW * __ptr64) __ptr64
640?QueryDriveInfo@FMX@@QEAAJPEAU_FMS_GETDRIVEINFOW@@@Z
641; public: long __cdecl INTL_PROFILE::QueryDurationStr(int,int,int,int,class NLS_STR * __ptr64)const __ptr64
642?QueryDurationStr@INTL_PROFILE@@QEBAJHHHHPEAVNLS_STR@@@Z
643; public: long __cdecl BASE::QueryError(void)const __ptr64
644?QueryError@BASE@@QEBAJXZ
645; public: long __cdecl FORWARDING_BASE::QueryError(void)const __ptr64
646?QueryError@FORWARDING_BASE@@QEBAJXZ
647; public: long __cdecl HUATOM::QueryError(void)const __ptr64
648?QueryError@HUATOM@@QEBAJXZ
649; public: virtual unsigned short const * __ptr64 __cdecl W32_DIR_BLOCK::QueryFileName(void) __ptr64
650?QueryFileName@W32_DIR_BLOCK@@UEAAPEBGXZ
651; public: long __cdecl WIN_TIME::QueryFileTime(struct _FILETIME * __ptr64)const __ptr64
652?QueryFileTime@WIN_TIME@@QEBAJPEAU_FILETIME@@@Z
653; public: long __cdecl WIN_TIME::QueryFileTimeLocal(struct _FILETIME * __ptr64)const __ptr64
654?QueryFileTimeLocal@WIN_TIME@@QEBAJPEAU_FILETIME@@@Z
655; public: class TREE * __ptr64 __cdecl TREE::QueryFirstSubtree(void)const __ptr64
656?QueryFirstSubtree@TREE@@QEBAPEAV1@XZ
657; public: unsigned int __cdecl FMX::QueryFocus(void)const __ptr64
658?QueryFocus@FMX@@QEBAIXZ
659; public: int __cdecl WIN_TIME::QueryHour(void)const __ptr64
660?QueryHour@WIN_TIME@@QEBAHXZ
661; public: int __cdecl LOGON_HOURS_SETTING::QueryHourInDay(unsigned int,unsigned int)const __ptr64
662?QueryHourInDay@LOGON_HOURS_SETTING@@QEBAHII@Z
663; public: int __cdecl LOGON_HOURS_SETTING::QueryHourInWeek(unsigned int)const __ptr64
664?QueryHourInWeek@LOGON_HOURS_SETTING@@QEBAHI@Z
665; public: unsigned char * __ptr64 __cdecl LOGON_HOURS_SETTING::QueryHoursBlock(void)const __ptr64
666?QueryHoursBlock@LOGON_HOURS_SETTING@@QEBAPEAEXZ
667; private: int __cdecl ISTR::QueryIch(void)const __ptr64
668?QueryIch@ISTR@@AEBAHXZ
669; public: long __cdecl REG_KEY::QueryInfo(class REG_KEY_INFO_STRUCT * __ptr64) __ptr64
670?QueryInfo@REG_KEY@@QEAAJPEAVREG_KEY_INFO_STRUCT@@@Z
671; public: long __cdecl REG_KEY::QueryKeyName(class NLS_STR * __ptr64)const __ptr64
672?QueryKeyName@REG_KEY@@QEBAJPEAVNLS_STR@@@Z
673; private: long __cdecl REG_KEY::QueryKeyValueBinary(unsigned short const * __ptr64,unsigned char * __ptr64 * __ptr64,long * __ptr64,long,unsigned long * __ptr64,unsigned long) __ptr64
674?QueryKeyValueBinary@REG_KEY@@AEAAJPEBGPEAPEAEPEAJJPEAKK@Z
675; private: long __cdecl REG_KEY::QueryKeyValueLong(unsigned short const * __ptr64,long * __ptr64,unsigned long * __ptr64) __ptr64
676?QueryKeyValueLong@REG_KEY@@AEAAJPEBGPEAJPEAK@Z
677; private: long __cdecl REG_KEY::QueryKeyValueString(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64,class NLS_STR * __ptr64,unsigned long * __ptr64,long,long * __ptr64,unsigned long) __ptr64
678?QueryKeyValueString@REG_KEY@@AEAAJPEBGPEAPEAGPEAVNLS_STR@@PEAKJPEAJK@Z
679; public: class TREE * __ptr64 __cdecl TREE::QueryLastSubtree(void)const __ptr64
680?QueryLastSubtree@TREE@@QEBAPEAV1@XZ
681; public: class TREE * __ptr64 __cdecl TREE::QueryLeft(void)const __ptr64
682?QueryLeft@TREE@@QEBAPEAV1@XZ
683; public: int __cdecl UATOM_LINKAGE::QueryLinked(void) __ptr64
684?QueryLinked@UATOM_LINKAGE@@QEAAHXZ
685; public: static class REG_KEY * __ptr64 __cdecl REG_KEY::QueryLocalMachine(unsigned long)
686?QueryLocalMachine@REG_KEY@@SAPEAV1@K@Z
687; public: long __cdecl INTL_PROFILE::QueryLongDateString(class WIN_TIME const & __ptr64,class NLS_STR * __ptr64)const __ptr64
688?QueryLongDateString@INTL_PROFILE@@QEBAJAEBVWIN_TIME@@PEAVNLS_STR@@@Z
689; protected: unsigned int __cdecl DFSITER_TREE::QueryMaxDepth(void)const __ptr64
690?QueryMaxDepth@DFSITER_TREE@@IEBAIXZ
691; public: unsigned int __cdecl FS_ENUM::QueryMaxDepth(void) __ptr64
692?QueryMaxDepth@FS_ENUM@@QEAAIXZ
693; protected: unsigned int __cdecl BITFIELD::QueryMaxNonAllocBitCount(void)const __ptr64
694?QueryMaxNonAllocBitCount@BITFIELD@@IEBAIXZ
695; public: int __cdecl WIN_TIME::QueryMinute(void)const __ptr64
696?QueryMinute@WIN_TIME@@QEBAHXZ
697; public: int __cdecl WIN_TIME::QueryMonth(void)const __ptr64
698?QueryMonth@WIN_TIME@@QEBAHXZ
699; public: int __cdecl INTL_PROFILE::QueryMonthPos(void)const __ptr64
700?QueryMonthPos@INTL_PROFILE@@QEBAHXZ
701; public: long __cdecl FS_ENUM::QueryName(class NLS_STR * __ptr64)const __ptr64
702?QueryName@FS_ENUM@@QEBAJPEAVNLS_STR@@@Z
703; public: long __cdecl REG_KEY::QueryName(class NLS_STR * __ptr64,int)const __ptr64
704?QueryName@REG_KEY@@QEBAJPEAVNLS_STR@@H@Z
705; public: class NLS_STR const * __ptr64 __cdecl HUATOM::QueryNls(void)const __ptr64
706?QueryNls@HUATOM@@QEBAPEBVNLS_STR@@XZ
707; protected: class TREE const * __ptr64 __cdecl DFSITER_TREE::QueryNode(void)const __ptr64
708?QueryNode@DFSITER_TREE@@IEBAPEBVTREE@@XZ
709; public: unsigned int __cdecl NLS_STR::QueryNumChar(void)const __ptr64
710?QueryNumChar@NLS_STR@@QEBAIXZ
711; public: unsigned int __cdecl DLIST::QueryNumElem(void) __ptr64
712?QueryNumElem@DLIST@@QEAAIXZ
713; public: unsigned int __cdecl SLIST::QueryNumElem(void) __ptr64
714?QueryNumElem@SLIST@@QEAAIXZ
715; public: unsigned int __cdecl TREE::QueryNumElem(void)const __ptr64
716?QueryNumElem@TREE@@QEBAIXZ
717; public: unsigned int __cdecl BITFIELD::QueryOffset(unsigned int)const __ptr64
718?QueryOffset@BITFIELD@@QEBAII@Z
719; public: long __cdecl INTL_PROFILE::QueryPMStr(class NLS_STR * __ptr64)const __ptr64
720?QueryPMStr@INTL_PROFILE@@QEBAJPEAVNLS_STR@@@Z
721; public: class TREE * __ptr64 __cdecl TREE::QueryParent(void)const __ptr64
722?QueryParent@TREE@@QEBAPEAV1@XZ
723; public: unsigned short const * __ptr64 __cdecl NLS_STR::QueryPch(class ISTR const & __ptr64)const __ptr64
724?QueryPch@NLS_STR@@QEBAPEBGAEBVISTR@@@Z
725; public: unsigned short const * __ptr64 __cdecl NLS_STR::QueryPch(void)const __ptr64
726?QueryPch@NLS_STR@@QEBAPEBGXZ
727; public: void * __ptr64 __cdecl ITER_SL::QueryProp(void) __ptr64
728?QueryProp@ITER_SL@@QEAAPEAXXZ
729; public: void * __ptr64 __cdecl TREE::QueryProp(void)const __ptr64
730?QueryProp@TREE@@QEBAPEAXXZ
731; public: unsigned char * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
732?QueryPtr@BUFFER@@QEBAPEAEXZ
733; public: class TREE * __ptr64 __cdecl TREE::QueryRight(void)const __ptr64
734?QueryRight@TREE@@QEBAPEAV1@XZ
735; protected: unsigned int __cdecl FS_ENUM::QuerySearchAttr(void)const __ptr64
736?QuerySearchAttr@FS_ENUM@@IEBAIXZ
737; public: int __cdecl WIN_TIME::QuerySecond(void)const __ptr64
738?QuerySecond@WIN_TIME@@QEBAHXZ
739; public: unsigned int __cdecl FMX::QuerySelCount(void)const __ptr64
740?QuerySelCount@FMX@@QEBAIXZ
741; public: long __cdecl FMX::QuerySelection(int,struct _FMS_GETFILESELW * __ptr64,int) __ptr64
742?QuerySelection@FMX@@QEAAJHPEAU_FMS_GETFILESELW@@H@Z
743; public: long __cdecl INTL_PROFILE::QueryShortDateString(class WIN_TIME const & __ptr64,class NLS_STR * __ptr64)const __ptr64
744?QueryShortDateString@INTL_PROFILE@@QEBAJAEBVWIN_TIME@@PEAVNLS_STR@@@Z
745; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
746?QuerySize@BUFFER@@QEBAIXZ
747; protected: class TREE const * __ptr64 __cdecl DFSITER_TREE::QueryStartNode(void)const __ptr64
748?QueryStartNode@DFSITER_TREE@@IEBAPEBVTREE@@XZ
749; private: class NLS_STR const * __ptr64 __cdecl ISTR::QueryString(void)const __ptr64
750?QueryString@ISTR@@AEBAPEBVNLS_STR@@XZ
751; private: class NLS_STR * __ptr64 __cdecl NLS_STR::QuerySubStr(class ISTR const & __ptr64,unsigned int)const __ptr64
752?QuerySubStr@NLS_STR@@AEBAPEAV1@AEBVISTR@@I@Z
753; public: class NLS_STR * __ptr64 __cdecl NLS_STR::QuerySubStr(class ISTR const & __ptr64,class ISTR const & __ptr64)const __ptr64
754?QuerySubStr@NLS_STR@@QEBAPEAV1@AEBVISTR@@0@Z
755; public: class NLS_STR * __ptr64 __cdecl NLS_STR::QuerySubStr(class ISTR const & __ptr64)const __ptr64
756?QuerySubStr@NLS_STR@@QEBAPEAV1@AEBVISTR@@@Z
757; public: unsigned short const * __ptr64 __cdecl HUATOM::QueryText(void)const __ptr64
758?QueryText@HUATOM@@QEBAPEBGXZ
759; public: unsigned int __cdecl NLS_STR::QueryTextLength(void)const __ptr64
760?QueryTextLength@NLS_STR@@QEBAIXZ
761; public: unsigned int __cdecl NLS_STR::QueryTextSize(void)const __ptr64
762?QueryTextSize@NLS_STR@@QEBAIXZ
763; public: long __cdecl WIN_TIME::QueryTime(unsigned long * __ptr64)const __ptr64
764?QueryTime@WIN_TIME@@QEBAJPEAK@Z
765; public: long __cdecl WIN_TIME::QueryTimeLocal(unsigned long * __ptr64)const __ptr64
766?QueryTimeLocal@WIN_TIME@@QEBAJPEAK@Z
767; public: long __cdecl INTL_PROFILE::QueryTimeSeparator(class NLS_STR * __ptr64)const __ptr64
768?QueryTimeSeparator@INTL_PROFILE@@QEBAJPEAVNLS_STR@@@Z
769; public: long __cdecl INTL_PROFILE::QueryTimeString(class WIN_TIME const & __ptr64,class NLS_STR * __ptr64)const __ptr64
770?QueryTimeString@INTL_PROFILE@@QEBAJAEBVWIN_TIME@@PEAVNLS_STR@@@Z
771; public: unsigned int __cdecl LOGON_HOURS_SETTING::QueryUnitsPerWeek(void)const __ptr64
772?QueryUnitsPerWeek@LOGON_HOURS_SETTING@@QEBAIXZ
773; public: long __cdecl REG_KEY::QueryValue(class REG_VALUE_INFO_STRUCT * __ptr64) __ptr64
774?QueryValue@REG_KEY@@QEAAJPEAVREG_VALUE_INFO_STRUCT@@@Z
775; public: long __cdecl REG_KEY::QueryValue(unsigned short const * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
776?QueryValue@REG_KEY@@QEAAJPEBGPEAK1@Z
777; public: long __cdecl REG_KEY::QueryValue(unsigned short const * __ptr64,unsigned char * __ptr64 * __ptr64,long * __ptr64,long,unsigned long * __ptr64) __ptr64
778?QueryValue@REG_KEY@@QEAAJPEBGPEAPEAEPEAJJPEAK@Z
779; public: long __cdecl REG_KEY::QueryValue(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64,unsigned long,unsigned long * __ptr64,int) __ptr64
780?QueryValue@REG_KEY@@QEAAJPEBGPEAPEAGKPEAKH@Z
781; public: long __cdecl REG_KEY::QueryValue(unsigned short const * __ptr64,class STRLIST * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
782?QueryValue@REG_KEY@@QEAAJPEBGPEAPEAVSTRLIST@@PEAK@Z
783; public: long __cdecl REG_KEY::QueryValue(unsigned short const * __ptr64,class NLS_STR * __ptr64,unsigned long,unsigned long * __ptr64,int) __ptr64
784?QueryValue@REG_KEY@@QEAAJPEBGPEAVNLS_STR@@KPEAKH@Z
785; public: int __cdecl WIN_TIME::QueryYear(void)const __ptr64
786?QueryYear@WIN_TIME@@QEBAHXZ
787; public: int __cdecl INTL_PROFILE::QueryYearPos(void)const __ptr64
788?QueryYearPos@INTL_PROFILE@@QEBAHXZ
789; private: int __cdecl NLS_STR::Realloc(unsigned int) __ptr64
790?Realloc@NLS_STR@@AEAAHI@Z
791; private: long __cdecl BUFFER::ReallocStorage(unsigned int) __ptr64
792?ReallocStorage@BUFFER@@AEAAJI@Z
793; public: void __cdecl FMX::Refresh(void) __ptr64
794?Refresh@FMX@@QEAAXXZ
795; public: long __cdecl INTL_PROFILE::Refresh(void) __ptr64
796?Refresh@INTL_PROFILE@@QEAAJXZ
797; protected: void __cdecl DLIST::Register(class ITER_L * __ptr64) __ptr64
798?Register@DLIST@@IEAAXPEAVITER_L@@@Z
799; protected: void __cdecl SLIST::Register(class ITER_SL * __ptr64) __ptr64
800?Register@SLIST@@IEAAXPEAVITER_SL@@@Z
801; public: void __cdecl FMX::Reload(void) __ptr64
802?Reload@FMX@@QEAAXXZ
803; public: void * __ptr64 __cdecl DLIST::Remove(class ITER_DL & __ptr64) __ptr64
804?Remove@DLIST@@QEAAPEAXAEAVITER_DL@@@Z
805; public: void * __ptr64 __cdecl DLIST::Remove(class RITER_DL & __ptr64) __ptr64
806?Remove@DLIST@@QEAAPEAXAEAVRITER_DL@@@Z
807; public: void * __ptr64 __cdecl SLIST::Remove(class ITER_SL & __ptr64) __ptr64
808?Remove@SLIST@@QEAAPEAXAEAVITER_SL@@@Z
809; public: class DIR_BLOCK * __ptr64 __cdecl SLIST_OF_DIR_BLOCK::Remove(class ITER_SL_DIR_BLOCK & __ptr64) __ptr64
810?Remove@SLIST_OF_DIR_BLOCK@@QEAAPEAVDIR_BLOCK@@AEAVITER_SL_DIR_BLOCK@@@Z
811; public: class NLS_STR * __ptr64 __cdecl SLIST_OF_NLS_STR::Remove(class NLS_STR & __ptr64) __ptr64
812?Remove@SLIST_OF_NLS_STR@@QEAAPEAVNLS_STR@@AEAV2@@Z
813; public: virtual void __cdecl OUTPUT_TO_AUX::Render(unsigned short const * __ptr64) __ptr64
814?Render@OUTPUT_TO_AUX@@UEAAXPEBG@Z
815; public: virtual void __cdecl OUTPUT_TO_AUX::Render(unsigned short const * __ptr64,unsigned int) __ptr64
816?Render@OUTPUT_TO_AUX@@UEAAXPEBGI@Z
817; private: virtual void __cdecl OUTPUT_TO_NUL::Render(unsigned short const * __ptr64) __ptr64
818?Render@OUTPUT_TO_NUL@@EEAAXPEBG@Z
819; private: virtual void __cdecl OUTPUT_TO_NUL::Render(unsigned short const * __ptr64,unsigned int) __ptr64
820?Render@OUTPUT_TO_NUL@@EEAAXPEBGI@Z
821; public: virtual void __cdecl OUTPUT_TO_STDERR::Render(unsigned short const * __ptr64) __ptr64
822?Render@OUTPUT_TO_STDERR@@UEAAXPEBG@Z
823; public: virtual void __cdecl OUTPUT_TO_STDERR::Render(unsigned short const * __ptr64,unsigned int) __ptr64
824?Render@OUTPUT_TO_STDERR@@UEAAXPEBGI@Z
825; public: virtual void __cdecl OUTPUT_TO_STDOUT::Render(unsigned short const * __ptr64) __ptr64
826?Render@OUTPUT_TO_STDOUT@@UEAAXPEBG@Z
827; public: virtual void __cdecl OUTPUT_TO_STDOUT::Render(unsigned short const * __ptr64,unsigned int) __ptr64
828?Render@OUTPUT_TO_STDOUT@@UEAAXPEBGI@Z
829; private: void __cdecl NLS_STR::ReplSubStr(class NLS_STR const & __ptr64,class ISTR & __ptr64,unsigned int) __ptr64
830?ReplSubStr@NLS_STR@@AEAAXAEBV1@AEAVISTR@@I@Z
831; public: void __cdecl NLS_STR::ReplSubStr(class NLS_STR const & __ptr64,class ISTR & __ptr64) __ptr64
832?ReplSubStr@NLS_STR@@QEAAXAEBV1@AEAVISTR@@@Z
833; public: void __cdecl NLS_STR::ReplSubStr(class NLS_STR const & __ptr64,class ISTR & __ptr64,class ISTR const & __ptr64) __ptr64
834?ReplSubStr@NLS_STR@@QEAAXAEBV1@AEAVISTR@@AEBV2@@Z
835; protected: void __cdecl BASE::ReportError(long) __ptr64
836?ReportError@BASE@@IEAAXJ@Z
837; protected: void __cdecl FS_ENUM::ReportLastError(long) __ptr64
838?ReportLastError@FS_ENUM@@IEAAXJ@Z
839; public: void __cdecl DFSITER_TREE::Reset(void) __ptr64
840?Reset@DFSITER_TREE@@QEAAXXZ
841; public: void __cdecl ISTR::Reset(void) __ptr64
842?Reset@ISTR@@QEAAXXZ
843; public: void __cdecl ITER_DL::Reset(void) __ptr64
844?Reset@ITER_DL@@QEAAXXZ
845; public: void __cdecl ITER_SL::Reset(void) __ptr64
846?Reset@ITER_SL@@QEAAXXZ
847; public: int __cdecl NLS_STR::Reset(void) __ptr64
848?Reset@NLS_STR@@QEAAHXZ
849; public: void __cdecl RITER_DL::Reset(void) __ptr64
850?Reset@RITER_DL@@QEAAXXZ
851; protected: void __cdecl BASE::ResetError(void) __ptr64
852?ResetError@BASE@@IEAAXXZ
853; public: long __cdecl BITFIELD::Resize(unsigned int) __ptr64
854?Resize@BITFIELD@@QEAAJI@Z
855; public: long __cdecl BUFFER::Resize(unsigned int) __ptr64
856?Resize@BUFFER@@QEAAJI@Z
857; public: long __cdecl NLS_STR::RtlOemUpcase(void) __ptr64
858?RtlOemUpcase@NLS_STR@@QEAAJXZ
859; private: long __cdecl INTL_PROFILE::ScanLongDate(class NLS_STR * __ptr64)const __ptr64
860?ScanLongDate@INTL_PROFILE@@AEBAJPEAVNLS_STR@@@Z
861; public: void __cdecl DL_NODE::Set(class DL_NODE * __ptr64,class DL_NODE * __ptr64,void * __ptr64) __ptr64
862?Set@DL_NODE@@QEAAXPEAV1@0PEAX@Z
863; public: long __cdecl LOGON_HOURS_SETTING::Set(class LOGON_HOURS_SETTING const & __ptr64) __ptr64
864?Set@LOGON_HOURS_SETTING@@QEAAJAEBV1@@Z
865; public: void __cdecl SL_NODE::Set(class SL_NODE * __ptr64,void * __ptr64) __ptr64
866?Set@SL_NODE@@QEAAXPEAV1@PEAX@Z
867; public: void __cdecl BITFIELD::SetAllBits(enum BITVALUES) __ptr64
868?SetAllBits@BITFIELD@@QEAAXW4BITVALUES@@@Z
869; public: long __cdecl HEAP_BASE::SetAllocCount(int) __ptr64
870?SetAllocCount@HEAP_BASE@@QEAAJH@Z
871; public: void __cdecl BITFIELD::SetBit(unsigned int,enum BITVALUES) __ptr64
872?SetBit@BITFIELD@@QEAAXIW4BITVALUES@@@Z
873; private: void __cdecl DFSITER_TREE::SetCurDepth(unsigned int) __ptr64
874?SetCurDepth@DFSITER_TREE@@AEAAXI@Z
875; public: static void __cdecl DBGSTREAM::SetCurrent(class DBGSTREAM * __ptr64)
876?SetCurrent@DBGSTREAM@@SAXPEAV1@@Z
877; protected: void __cdecl FS_ENUM::SetCurrentDirBlock(class DIR_BLOCK * __ptr64) __ptr64
878?SetCurrentDirBlock@FS_ENUM@@IEAAXPEAVDIR_BLOCK@@@Z
879; public: long __cdecl WIN_TIME::SetCurrentTime(void) __ptr64
880?SetCurrentTime@WIN_TIME@@QEAAJXZ
881; public: void __cdecl DIR_BLOCK::SetDoBreadthFirstDirs(int) __ptr64
882?SetDoBreadthFirstDirs@DIR_BLOCK@@QEAAXH@Z
883; public: void __cdecl DIR_BLOCK::SetFindFirstFlag(int) __ptr64
884?SetFindFirstFlag@DIR_BLOCK@@QEAAXH@Z
885; private: void __cdecl TREE::SetFirstSubtree(class TREE * __ptr64) __ptr64
886?SetFirstSubtree@TREE@@AEAAXPEAV1@@Z
887; public: long __cdecl LOGON_HOURS_SETTING::SetFromBits(unsigned char const * __ptr64,unsigned int) __ptr64
888?SetFromBits@LOGON_HOURS_SETTING@@QEAAJPEBEI@Z
889; public: long __cdecl WIN_TIME::SetGMT(int) __ptr64
890?SetGMT@WIN_TIME@@QEAAJH@Z
891; public: long __cdecl LOGON_HOURS_SETTING::SetHourInDay(int,unsigned int,unsigned int) __ptr64
892?SetHourInDay@LOGON_HOURS_SETTING@@QEAAJHII@Z
893; public: long __cdecl LOGON_HOURS_SETTING::SetHourInWeek(int,unsigned int) __ptr64
894?SetHourInWeek@LOGON_HOURS_SETTING@@QEAAJHI@Z
895; private: void __cdecl ISTR::SetIch(int) __ptr64
896?SetIch@ISTR@@AEAAXH@Z
897; protected: void __cdecl HEAP_BASE::SetItem(int,void * __ptr64) __ptr64
898?SetItem@HEAP_BASE@@IEAAXHPEAX@Z
899; protected: void __cdecl DLIST::SetIters(class DL_NODE * __ptr64) __ptr64
900?SetIters@DLIST@@IEAAXPEAVDL_NODE@@@Z
901; protected: void __cdecl SLIST::SetIters(class SL_NODE * __ptr64,class SL_NODE * __ptr64) __ptr64
902?SetIters@SLIST@@IEAAXPEAVSL_NODE@@0@Z
903; protected: void __cdecl SLIST::SetIters(class SL_NODE * __ptr64) __ptr64
904?SetIters@SLIST@@IEAAXPEAVSL_NODE@@@Z
905; private: long __cdecl REG_KEY::SetKeyValueBinary(unsigned short const * __ptr64,unsigned char const * __ptr64,long,unsigned long,unsigned long) __ptr64
906?SetKeyValueBinary@REG_KEY@@AEAAJPEBGPEBEJKK@Z
907; private: long __cdecl REG_KEY::SetKeyValueLong(unsigned short const * __ptr64,long,unsigned long) __ptr64
908?SetKeyValueLong@REG_KEY@@AEAAJPEBGJK@Z
909; private: long __cdecl REG_KEY::SetKeyValueString(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long,long,unsigned long) __ptr64
910?SetKeyValueString@REG_KEY@@AEAAJPEBG0KJK@Z
911; private: void __cdecl TREE::SetLeft(class TREE * __ptr64) __ptr64
912?SetLeft@TREE@@AEAAXPEAV1@@Z
913; private: void __cdecl DFSITER_TREE::SetMaxDepth(unsigned int) __ptr64
914?SetMaxDepth@DFSITER_TREE@@AEAAXI@Z
915; private: void __cdecl DFSITER_TREE::SetNode(class TREE const * __ptr64) __ptr64
916?SetNode@DFSITER_TREE@@AEAAXPEBVTREE@@@Z
917; private: void __cdecl TREE::SetParent(class TREE * __ptr64) __ptr64
918?SetParent@TREE@@AEAAXPEAV1@@Z
919; public: void __cdecl TREE::SetProp(void * __ptr64 const) __ptr64
920?SetProp@TREE@@QEAAXQEAX@Z
921; private: void __cdecl TREE::SetRight(class TREE * __ptr64) __ptr64
922?SetRight@TREE@@AEAAXPEAV1@@Z
923; public: void __cdecl DBGSTREAM::SetSink(class OUTPUTSINK * __ptr64) __ptr64
924?SetSink@DBGSTREAM@@QEAAXPEAVOUTPUTSINK@@@Z
925; private: void __cdecl DFSITER_TREE::SetStartNode(class TREE const * __ptr64) __ptr64
926?SetStartNode@DFSITER_TREE@@AEAAXPEBVTREE@@@Z
927; public: long __cdecl WIN_TIME::SetTime(unsigned long) __ptr64
928?SetTime@WIN_TIME@@QEAAJK@Z
929; public: long __cdecl WIN_TIME::SetTime(struct _FILETIME) __ptr64
930?SetTime@WIN_TIME@@QEAAJU_FILETIME@@@Z
931; public: long __cdecl WIN_TIME::SetTimeLocal(unsigned long) __ptr64
932?SetTimeLocal@WIN_TIME@@QEAAJK@Z
933; public: long __cdecl WIN_TIME::SetTimeLocal(struct _FILETIME) __ptr64
934?SetTimeLocal@WIN_TIME@@QEAAJU_FILETIME@@@Z
935; public: long __cdecl REG_KEY::SetValue(class REG_VALUE_INFO_STRUCT * __ptr64) __ptr64
936?SetValue@REG_KEY@@QEAAJPEAVREG_VALUE_INFO_STRUCT@@@Z
937; public: long __cdecl REG_KEY::SetValue(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned long const * __ptr64,int) __ptr64
938?SetValue@REG_KEY@@QEAAJPEBG0KPEBKH@Z
939; public: long __cdecl REG_KEY::SetValue(unsigned short const * __ptr64,unsigned long,unsigned long const * __ptr64) __ptr64
940?SetValue@REG_KEY@@QEAAJPEBGKPEBK@Z
941; public: long __cdecl REG_KEY::SetValue(unsigned short const * __ptr64,unsigned char const * __ptr64,long,unsigned long const * __ptr64) __ptr64
942?SetValue@REG_KEY@@QEAAJPEBGPEBEJPEBK@Z
943; public: long __cdecl REG_KEY::SetValue(unsigned short const * __ptr64,class NLS_STR const * __ptr64,unsigned long const * __ptr64,int) __ptr64
944?SetValue@REG_KEY@@QEAAJPEBGPEBVNLS_STR@@PEBKH@Z
945; public: long __cdecl REG_KEY::SetValue(unsigned short const * __ptr64,class STRLIST const * __ptr64,unsigned long const * __ptr64) __ptr64
946?SetValue@REG_KEY@@QEAAJPEBGPEBVSTRLIST@@PEBK@Z
947; protected: int __cdecl FS_ENUM::ShouldThisFileBeIncluded(unsigned int)const __ptr64
948?ShouldThisFileBeIncluded@FS_ENUM@@IEBAHI@Z
949; public: static long __cdecl UATOM_MANAGER::Terminate(void)
950?Terminate@UATOM_MANAGER@@SAJXZ
951; private: class UATOM * __ptr64 __cdecl UATOM_MANAGER::Tokenize(unsigned short const * __ptr64,int) __ptr64
952?Tokenize@UATOM_MANAGER@@AEAAPEAVUATOM@@PEBGH@Z
953; public: void __cdecl BUFFER::Trim(void) __ptr64
954?Trim@BUFFER@@QEAAXXZ
955; public: void __cdecl HEAP_BASE::Trim(void) __ptr64
956?Trim@HEAP_BASE@@QEAAXXZ
957; void __cdecl UIAssertCommand(char const * __ptr64)
958?UIAssertCommand@@YAXPEBD@Z
959; void __cdecl UIAssertHlp(char const * __ptr64,char const * __ptr64,unsigned int)
960?UIAssertHlp@@YAXPEBD0I@Z
961; void __cdecl UIAssertHlp(char const * __ptr64,unsigned int)
962?UIAssertHlp@@YAXPEBDI@Z
963; protected: void * __ptr64 __cdecl DLIST::Unlink(class DL_NODE * __ptr64) __ptr64
964?Unlink@DLIST@@IEAAPEAXPEAVDL_NODE@@@Z
965; protected: void __cdecl TREE::Unlink(void) __ptr64
966?Unlink@TREE@@IEAAXXZ
967; public: void __cdecl UATOM_LINKAGE::Unlink(void) __ptr64
968?Unlink@UATOM_LINKAGE@@QEAAXXZ
969; private: void __cdecl NLS_STR::UpdateIstr(class ISTR * __ptr64)const __ptr64
970?UpdateIstr@NLS_STR@@AEBAXPEAVISTR@@@Z
971; public: int __cdecl STRLIST::WriteToBuffer(unsigned short * __ptr64,int,unsigned short * __ptr64) __ptr64
972?WriteToBuffer@STRLIST@@QEAAHPEAGH0@Z
973; public: void __cdecl DLIST::_DebugPrint(void)const __ptr64
974?_DebugPrint@DLIST@@QEBAXXZ
975; public: void __cdecl SLIST::_DebugPrint(void)const __ptr64
976?_DebugPrint@SLIST@@QEBAXXZ
977; public: void __cdecl TREE::_DebugPrint(void)const __ptr64
978?_DebugPrint@TREE@@QEBAXXZ
979; public: int __cdecl NLS_STR::_IsOwnerAlloc(void)const __ptr64
980?_IsOwnerAlloc@NLS_STR@@QEBAHXZ
981; public: unsigned int __cdecl NLS_STR::_QueryAllocSize(void)const __ptr64
982?_QueryAllocSize@NLS_STR@@QEBAIXZ
983; public: unsigned short const * __ptr64 __cdecl NLS_STR::_QueryPch(void)const __ptr64
984?_QueryPch@NLS_STR@@QEBAPEBGXZ
985; public: unsigned int __cdecl NLS_STR::_QueryTextLength(void)const __ptr64
986?_QueryTextLength@NLS_STR@@QEBAIXZ
987; protected: void __cdecl BASE::_ReportError(long) __ptr64
988?_ReportError@BASE@@IEAAXJ@Z
989; public: int __cdecl NLS_STR::_stricmp(class NLS_STR const & __ptr64)const __ptr64
990?_stricmp@NLS_STR@@QEBAHAEBV1@@Z
991; public: int __cdecl NLS_STR::_stricmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64)const __ptr64
992?_stricmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@1@Z
993; public: int __cdecl NLS_STR::_stricmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64)const __ptr64
994?_stricmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@@Z
995; public: int __cdecl NLS_STR::_strnicmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64)const __ptr64
996?_strnicmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@11@Z
997; public: int __cdecl NLS_STR::_strnicmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64)const __ptr64
998?_strnicmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@1@Z
999; public: int __cdecl NLS_STR::_strnicmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1000?_strnicmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@@Z
1001; public: class NLS_STR & __ptr64 __cdecl NLS_STR::_strupr(void) __ptr64
1002?_strupr@NLS_STR@@QEAAAEAV1@XZ
1003; public: int __cdecl NLS_STR::atoi(class ISTR const & __ptr64)const __ptr64
1004?atoi@NLS_STR@@QEBAHAEBVISTR@@@Z
1005; public: int __cdecl NLS_STR::atoi(void)const __ptr64
1006?atoi@NLS_STR@@QEBAHXZ
1007; public: long __cdecl NLS_STR::atol(class ISTR const & __ptr64)const __ptr64
1008?atol@NLS_STR@@QEBAJAEBVISTR@@@Z
1009; public: long __cdecl NLS_STR::atol(void)const __ptr64
1010?atol@NLS_STR@@QEBAJXZ
1011; public: unsigned long __cdecl NLS_STR::atoul(class ISTR const & __ptr64)const __ptr64
1012?atoul@NLS_STR@@QEBAKAEBVISTR@@@Z
1013; public: unsigned long __cdecl NLS_STR::atoul(void)const __ptr64
1014?atoul@NLS_STR@@QEBAKXZ
1015; public: class NLS_STR & __ptr64 __cdecl NLS_STR::strcat(class NLS_STR const & __ptr64) __ptr64
1016?strcat@NLS_STR@@QEAAAEAV1@AEBV1@@Z
1017; public: int __cdecl NLS_STR::strchr(class ISTR * __ptr64,unsigned short)const __ptr64
1018?strchr@NLS_STR@@QEBAHPEAVISTR@@G@Z
1019; public: int __cdecl NLS_STR::strchr(class ISTR * __ptr64,unsigned short,class ISTR const & __ptr64)const __ptr64
1020?strchr@NLS_STR@@QEBAHPEAVISTR@@GAEBV2@@Z
1021; public: int __cdecl NLS_STR::strcmp(class NLS_STR const & __ptr64)const __ptr64
1022?strcmp@NLS_STR@@QEBAHAEBV1@@Z
1023; public: int __cdecl NLS_STR::strcmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1024?strcmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@1@Z
1025; public: int __cdecl NLS_STR::strcmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1026?strcmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@@Z
1027; unsigned short * __ptr64 __cdecl strcpy(unsigned short * __ptr64,class NLS_STR const & __ptr64)
1028?strcpy@@YAPEAGPEAGAEBVNLS_STR@@@Z
1029; public: int __cdecl NLS_STR::strcspn(class ISTR * __ptr64,class NLS_STR const & __ptr64)const __ptr64
1030?strcspn@NLS_STR@@QEBAHPEAVISTR@@AEBV1@@Z
1031; public: int __cdecl NLS_STR::strcspn(class ISTR * __ptr64,class NLS_STR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1032?strcspn@NLS_STR@@QEBAHPEAVISTR@@AEBV1@AEBV2@@Z
1033; public: unsigned int __cdecl NLS_STR::strlen(void)const __ptr64
1034?strlen@NLS_STR@@QEBAIXZ
1035; public: int __cdecl NLS_STR::strncmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1036?strncmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@11@Z
1037; public: int __cdecl NLS_STR::strncmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1038?strncmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@1@Z
1039; public: int __cdecl NLS_STR::strncmp(class NLS_STR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1040?strncmp@NLS_STR@@QEBAHAEBV1@AEBVISTR@@@Z
1041; public: int __cdecl NLS_STR::strrchr(class ISTR * __ptr64,unsigned short)const __ptr64
1042?strrchr@NLS_STR@@QEBAHPEAVISTR@@G@Z
1043; public: int __cdecl NLS_STR::strrchr(class ISTR * __ptr64,unsigned short,class ISTR const & __ptr64)const __ptr64
1044?strrchr@NLS_STR@@QEBAHPEAVISTR@@GAEBV2@@Z
1045; public: int __cdecl NLS_STR::strspn(class ISTR * __ptr64,class NLS_STR const & __ptr64)const __ptr64
1046?strspn@NLS_STR@@QEBAHPEAVISTR@@AEBV1@@Z
1047; public: int __cdecl NLS_STR::strspn(class ISTR * __ptr64,class NLS_STR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1048?strspn@NLS_STR@@QEBAHPEAVISTR@@AEBV1@AEBV2@@Z
1049; public: int __cdecl NLS_STR::strstr(class ISTR * __ptr64,class NLS_STR const & __ptr64)const __ptr64
1050?strstr@NLS_STR@@QEBAHPEAVISTR@@AEBV1@@Z
1051; public: int __cdecl NLS_STR::strstr(class ISTR * __ptr64,class NLS_STR const & __ptr64,class ISTR const & __ptr64)const __ptr64
1052?strstr@NLS_STR@@QEBAHPEAVISTR@@AEBV1@AEBV2@@Z
1053; public: virtual void * __ptr64 __cdecl ITER_DL::vNext(void) __ptr64
1054?vNext@ITER_DL@@UEAAPEAXXZ
1055; public: virtual void * __ptr64 __cdecl RITER_DL::vNext(void) __ptr64
1056?vNext@RITER_DL@@UEAAPEAXXZ
1057InitCompareParam
1058NETUI_InitIsDBCS
1059NETUI_IsDBCS
1060NETUI_strcmp
1061NETUI_stricmp
1062NETUI_strncmp
1063NETUI_strncmp2
1064NETUI_strnicmp
1065NETUI_strnicmp2
1066QueryNocaseCompareParam
1067QueryStdCompareParam
1068QueryUserDefaultLCID
1069UserPreferenceQuery
1070UserPreferenceQueryBool
1071UserPreferenceSet
1072UserPreferenceSetBool
1073UserProfileEnum
1074UserProfileFree
1075UserProfileInit
1076UserProfileQuery
1077UserProfileRead
1078UserProfileSet
1079UserProfileWrite
lib/libc/mingw/lib64/netui1.def created+3052
......@@ -0,0 +1,3052 @@
1;
2; Exports of file NETUI1.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NETUI1.dll
8EXPORTS
9; public: __cdecl ADMIN_AUTHORITY::ADMIN_AUTHORITY(unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,unsigned long,int) __ptr64
10??0ADMIN_AUTHORITY@@QEAA@PEBGKKKKH@Z
11; public: __cdecl ALIAS_ENUM::ALIAS_ENUM(class SAM_DOMAIN & __ptr64,unsigned int) __ptr64
12??0ALIAS_ENUM@@QEAA@AEAVSAM_DOMAIN@@I@Z
13; public: __cdecl ALIAS_ENUM_ITER::ALIAS_ENUM_ITER(class ALIAS_ENUM & __ptr64) __ptr64
14??0ALIAS_ENUM_ITER@@QEAA@AEAVALIAS_ENUM@@@Z
15; public: __cdecl ALIAS_ENUM_OBJ::ALIAS_ENUM_OBJ(void) __ptr64
16??0ALIAS_ENUM_OBJ@@QEAA@XZ
17; public: __cdecl ALIAS_STR::ALIAS_STR(unsigned short const * __ptr64) __ptr64
18??0ALIAS_STR@@QEAA@PEBG@Z
19; public: __cdecl ALLOC_STR::ALLOC_STR(unsigned short * __ptr64,unsigned int) __ptr64
20??0ALLOC_STR@@QEAA@PEAGI@Z
21; public: __cdecl API_SESSION::API_SESSION(unsigned short const * __ptr64,int) __ptr64
22??0API_SESSION@@QEAA@PEBGH@Z
23; protected: __cdecl BASE::BASE(void) __ptr64
24??0BASE@@IEAA@XZ
25; public: __cdecl BROWSE_DOMAIN_ENUM::BROWSE_DOMAIN_ENUM(unsigned long,unsigned long * __ptr64) __ptr64
26??0BROWSE_DOMAIN_ENUM@@QEAA@KPEAK@Z
27; public: __cdecl BROWSE_DOMAIN_INFO::BROWSE_DOMAIN_INFO(unsigned short const * __ptr64,unsigned long) __ptr64
28??0BROWSE_DOMAIN_INFO@@QEAA@PEBGK@Z
29; public: __cdecl CHARDEVQ1_ENUM::CHARDEVQ1_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
30??0CHARDEVQ1_ENUM@@QEAA@PEBG0@Z
31; public: __cdecl CHARDEVQ1_ENUM_ITER::CHARDEVQ1_ENUM_ITER(class CHARDEVQ1_ENUM & __ptr64) __ptr64
32??0CHARDEVQ1_ENUM_ITER@@QEAA@AEAVCHARDEVQ1_ENUM@@@Z
33; public: __cdecl CHARDEVQ1_ENUM_OBJ::CHARDEVQ1_ENUM_OBJ(void) __ptr64
34??0CHARDEVQ1_ENUM_OBJ@@QEAA@XZ
35; protected: __cdecl CHARDEVQ_ENUM::CHARDEVQ_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned int) __ptr64
36??0CHARDEVQ_ENUM@@IEAA@PEBG0I@Z
37; protected: __cdecl COMPUTER::COMPUTER(unsigned short const * __ptr64) __ptr64
38??0COMPUTER@@IEAA@PEBG@Z
39; public: __cdecl CONN0_ENUM::CONN0_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
40??0CONN0_ENUM@@QEAA@PEBG0@Z
41; public: __cdecl CONN0_ENUM_ITER::CONN0_ENUM_ITER(class CONN0_ENUM & __ptr64) __ptr64
42??0CONN0_ENUM_ITER@@QEAA@AEAVCONN0_ENUM@@@Z
43; public: __cdecl CONN0_ENUM_OBJ::CONN0_ENUM_OBJ(void) __ptr64
44??0CONN0_ENUM_OBJ@@QEAA@XZ
45; public: __cdecl CONN1_ENUM::CONN1_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
46??0CONN1_ENUM@@QEAA@PEBG0@Z
47; public: __cdecl CONN1_ENUM_ITER::CONN1_ENUM_ITER(class CONN1_ENUM & __ptr64) __ptr64
48??0CONN1_ENUM_ITER@@QEAA@AEAVCONN1_ENUM@@@Z
49; public: __cdecl CONN1_ENUM_OBJ::CONN1_ENUM_OBJ(void) __ptr64
50??0CONN1_ENUM_OBJ@@QEAA@XZ
51; protected: __cdecl CONN_ENUM::CONN_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned int) __ptr64
52??0CONN_ENUM@@IEAA@PEBG0I@Z
53; public: __cdecl CONTEXT_ENUM::CONTEXT_ENUM(unsigned long) __ptr64
54??0CONTEXT_ENUM@@QEAA@K@Z
55; public: __cdecl CONTEXT_ENUM_ITER::CONTEXT_ENUM_ITER(class CONTEXT_ENUM & __ptr64) __ptr64
56??0CONTEXT_ENUM_ITER@@QEAA@AEAVCONTEXT_ENUM@@@Z
57; public: __cdecl CONTEXT_ENUM_OBJ::CONTEXT_ENUM_OBJ(void) __ptr64
58??0CONTEXT_ENUM_OBJ@@QEAA@XZ
59; public: __cdecl DEVICE2::DEVICE2(unsigned short const * __ptr64) __ptr64
60??0DEVICE2@@QEAA@PEBG@Z
61; public: __cdecl DEVICE::DEVICE(unsigned short const * __ptr64) __ptr64
62??0DEVICE@@QEAA@PEBG@Z
63; public: __cdecl DOMAIN0_ENUM::DOMAIN0_ENUM(unsigned short const * __ptr64) __ptr64
64??0DOMAIN0_ENUM@@QEAA@PEBG@Z
65; public: __cdecl DOMAIN0_ENUM_ITER::DOMAIN0_ENUM_ITER(class DOMAIN0_ENUM & __ptr64) __ptr64
66??0DOMAIN0_ENUM_ITER@@QEAA@AEAVDOMAIN0_ENUM@@@Z
67; public: __cdecl DOMAIN0_ENUM_OBJ::DOMAIN0_ENUM_OBJ(void) __ptr64
68??0DOMAIN0_ENUM_OBJ@@QEAA@XZ
69; public: __cdecl DOMAIN::DOMAIN(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
70??0DOMAIN@@QEAA@PEBG0H@Z
71; public: __cdecl DOMAIN::DOMAIN(unsigned short const * __ptr64,int) __ptr64
72??0DOMAIN@@QEAA@PEBGH@Z
73; protected: __cdecl DOMAIN_ENUM::DOMAIN_ENUM(unsigned short const * __ptr64,unsigned int) __ptr64
74??0DOMAIN_ENUM@@IEAA@PEBGI@Z
75; public: __cdecl DOMAIN_WITH_DC_CACHE::DOMAIN_WITH_DC_CACHE(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
76??0DOMAIN_WITH_DC_CACHE@@QEAA@PEBG0H@Z
77; public: __cdecl DOMAIN_WITH_DC_CACHE::DOMAIN_WITH_DC_CACHE(unsigned short const * __ptr64,int) __ptr64
78??0DOMAIN_WITH_DC_CACHE@@QEAA@PEBGH@Z
79; public: __cdecl ENUM_CALLER::ENUM_CALLER(void) __ptr64
80??0ENUM_CALLER@@QEAA@XZ
81; public: __cdecl ENUM_CALLER_LM_OBJ::ENUM_CALLER_LM_OBJ(class LOCATION const & __ptr64) __ptr64
82??0ENUM_CALLER_LM_OBJ@@QEAA@AEBVLOCATION@@@Z
83; protected: __cdecl ENUM_OBJ_BASE::ENUM_OBJ_BASE(void) __ptr64
84??0ENUM_OBJ_BASE@@IEAA@XZ
85; public: __cdecl FILE2_ENUM::FILE2_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
86??0FILE2_ENUM@@QEAA@PEBG00@Z
87; public: __cdecl FILE2_ENUM_ITER::FILE2_ENUM_ITER(class FILE2_ENUM & __ptr64) __ptr64
88??0FILE2_ENUM_ITER@@QEAA@AEAVFILE2_ENUM@@@Z
89; public: __cdecl FILE2_ENUM_OBJ::FILE2_ENUM_OBJ(void) __ptr64
90??0FILE2_ENUM_OBJ@@QEAA@XZ
91; public: __cdecl FILE3_ENUM::FILE3_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
92??0FILE3_ENUM@@QEAA@PEBG00@Z
93; public: __cdecl FILE3_ENUM_ITER::FILE3_ENUM_ITER(class FILE3_ENUM & __ptr64) __ptr64
94??0FILE3_ENUM_ITER@@QEAA@AEAVFILE3_ENUM@@@Z
95; public: __cdecl FILE3_ENUM_OBJ::FILE3_ENUM_OBJ(void) __ptr64
96??0FILE3_ENUM_OBJ@@QEAA@XZ
97; protected: __cdecl FILE_ENUM::FILE_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned int) __ptr64
98??0FILE_ENUM@@IEAA@PEBG00I@Z
99; public: __cdecl GROUP0_ENUM::GROUP0_ENUM(class LOCATION const & __ptr64,unsigned short const * __ptr64) __ptr64
100??0GROUP0_ENUM@@QEAA@AEBVLOCATION@@PEBG@Z
101; public: __cdecl GROUP0_ENUM::GROUP0_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
102??0GROUP0_ENUM@@QEAA@PEBG0@Z
103; public: __cdecl GROUP0_ENUM::GROUP0_ENUM(enum LOCATION_TYPE,unsigned short const * __ptr64) __ptr64
104??0GROUP0_ENUM@@QEAA@W4LOCATION_TYPE@@PEBG@Z
105; public: __cdecl GROUP0_ENUM_ITER::GROUP0_ENUM_ITER(class GROUP0_ENUM & __ptr64) __ptr64
106??0GROUP0_ENUM_ITER@@QEAA@AEAVGROUP0_ENUM@@@Z
107; public: __cdecl GROUP0_ENUM_OBJ::GROUP0_ENUM_OBJ(void) __ptr64
108??0GROUP0_ENUM_OBJ@@QEAA@XZ
109; public: __cdecl GROUP1_ENUM::GROUP1_ENUM(class LOCATION const & __ptr64) __ptr64
110??0GROUP1_ENUM@@QEAA@AEBVLOCATION@@@Z
111; public: __cdecl GROUP1_ENUM::GROUP1_ENUM(unsigned short const * __ptr64) __ptr64
112??0GROUP1_ENUM@@QEAA@PEBG@Z
113; public: __cdecl GROUP1_ENUM::GROUP1_ENUM(enum LOCATION_TYPE) __ptr64
114??0GROUP1_ENUM@@QEAA@W4LOCATION_TYPE@@@Z
115; public: __cdecl GROUP1_ENUM_ITER::GROUP1_ENUM_ITER(class GROUP1_ENUM & __ptr64) __ptr64
116??0GROUP1_ENUM_ITER@@QEAA@AEAVGROUP1_ENUM@@@Z
117; public: __cdecl GROUP1_ENUM_OBJ::GROUP1_ENUM_OBJ(void) __ptr64
118??0GROUP1_ENUM_OBJ@@QEAA@XZ
119; public: __cdecl GROUP::GROUP(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
120??0GROUP@@QEAA@PEBG0@Z
121; public: __cdecl GROUP::GROUP(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
122??0GROUP@@QEAA@PEBGAEBVLOCATION@@@Z
123; public: __cdecl GROUP::GROUP(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
124??0GROUP@@QEAA@PEBGW4LOCATION_TYPE@@@Z
125; public: __cdecl GROUP_0::GROUP_0(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
126??0GROUP_0@@QEAA@PEBG0@Z
127; public: __cdecl GROUP_0::GROUP_0(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
128??0GROUP_0@@QEAA@PEBGAEBVLOCATION@@@Z
129; public: __cdecl GROUP_0::GROUP_0(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
130??0GROUP_0@@QEAA@PEBGW4LOCATION_TYPE@@@Z
131; public: __cdecl GROUP_1::GROUP_1(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
132??0GROUP_1@@QEAA@PEBG0@Z
133; public: __cdecl GROUP_1::GROUP_1(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
134??0GROUP_1@@QEAA@PEBGAEBVLOCATION@@@Z
135; public: __cdecl GROUP_1::GROUP_1(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
136??0GROUP_1@@QEAA@PEBGW4LOCATION_TYPE@@@Z
137; protected: __cdecl GROUP_ENUM::GROUP_ENUM(class LOCATION const & __ptr64,unsigned int,unsigned short const * __ptr64) __ptr64
138??0GROUP_ENUM@@IEAA@AEBVLOCATION@@IPEBG@Z
139; protected: __cdecl GROUP_ENUM::GROUP_ENUM(unsigned short const * __ptr64,unsigned int,unsigned short const * __ptr64) __ptr64
140??0GROUP_ENUM@@IEAA@PEBGI0@Z
141; protected: __cdecl GROUP_ENUM::GROUP_ENUM(enum LOCATION_TYPE,unsigned int,unsigned short const * __ptr64) __ptr64
142??0GROUP_ENUM@@IEAA@W4LOCATION_TYPE@@IPEBG@Z
143; public: __cdecl GROUP_MEMB::GROUP_MEMB(class LOCATION const & __ptr64,unsigned short const * __ptr64) __ptr64
144??0GROUP_MEMB@@QEAA@AEBVLOCATION@@PEBG@Z
145; public: __cdecl ITER_DEVICE::ITER_DEVICE(enum LMO_DEVICE,enum LMO_DEV_USAGE) __ptr64
146??0ITER_DEVICE@@QEAA@W4LMO_DEVICE@@W4LMO_DEV_USAGE@@@Z
147; public: __cdecl ITER_SL_BROWSE_DOMAIN_INFO::ITER_SL_BROWSE_DOMAIN_INFO(class SLIST & __ptr64) __ptr64
148??0ITER_SL_BROWSE_DOMAIN_INFO@@QEAA@AEAVSLIST@@@Z
149; public: __cdecl ITER_SL_LM_RESUME_BUFFER::ITER_SL_LM_RESUME_BUFFER(class SLIST & __ptr64) __ptr64
150??0ITER_SL_LM_RESUME_BUFFER@@QEAA@AEAVSLIST@@@Z
151; public: __cdecl LM_CONFIG::LM_CONFIG(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
152??0LM_CONFIG@@QEAA@PEBG00@Z
153; protected: __cdecl LM_ENUM::LM_ENUM(unsigned int) __ptr64
154??0LM_ENUM@@IEAA@I@Z
155; protected: __cdecl LM_ENUM_ITER::LM_ENUM_ITER(class LM_ENUM & __ptr64) __ptr64
156??0LM_ENUM_ITER@@IEAA@AEAVLM_ENUM@@@Z
157; protected: __cdecl LM_FILE::LM_FILE(unsigned short const * __ptr64,unsigned long) __ptr64
158??0LM_FILE@@IEAA@PEBGK@Z
159; public: __cdecl LM_FILE_2::LM_FILE_2(unsigned short const * __ptr64,unsigned long) __ptr64
160??0LM_FILE_2@@QEAA@PEBGK@Z
161; public: __cdecl LM_FILE_3::LM_FILE_3(unsigned short const * __ptr64,unsigned long) __ptr64
162??0LM_FILE_3@@QEAA@PEBGK@Z
163; public: __cdecl LM_MESSAGE::LM_MESSAGE(class LOCATION & __ptr64) __ptr64
164??0LM_MESSAGE@@QEAA@AEAVLOCATION@@@Z
165; public: __cdecl LM_MESSAGE::LM_MESSAGE(unsigned short const * __ptr64) __ptr64
166??0LM_MESSAGE@@QEAA@PEBG@Z
167; public: __cdecl LM_MESSAGE::LM_MESSAGE(enum LOCATION_TYPE) __ptr64
168??0LM_MESSAGE@@QEAA@W4LOCATION_TYPE@@@Z
169; public: __cdecl LM_OBJ::LM_OBJ(void) __ptr64
170??0LM_OBJ@@QEAA@XZ
171; protected: __cdecl LM_OBJ_BASE::LM_OBJ_BASE(int) __ptr64
172??0LM_OBJ_BASE@@IEAA@H@Z
173; public: __cdecl LM_RESUME_BUFFER::LM_RESUME_BUFFER(class LM_RESUME_ENUM * __ptr64,unsigned int,unsigned char * __ptr64) __ptr64
174??0LM_RESUME_BUFFER@@QEAA@PEAVLM_RESUME_ENUM@@IPEAE@Z
175; protected: __cdecl LM_RESUME_ENUM::LM_RESUME_ENUM(unsigned int,int) __ptr64
176??0LM_RESUME_ENUM@@IEAA@IH@Z
177; protected: __cdecl LM_RESUME_ENUM_ITER::LM_RESUME_ENUM_ITER(class LM_RESUME_ENUM & __ptr64) __ptr64
178??0LM_RESUME_ENUM_ITER@@IEAA@AEAVLM_RESUME_ENUM@@@Z
179; public: __cdecl LM_SERVICE::LM_SERVICE(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
180??0LM_SERVICE@@QEAA@PEBG0@Z
181; protected: __cdecl LM_SESSION::LM_SESSION(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
182??0LM_SESSION@@IEAA@PEBG0@Z
183; protected: __cdecl LM_SESSION::LM_SESSION(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
184??0LM_SESSION@@IEAA@PEBGAEBVLOCATION@@@Z
185; protected: __cdecl LM_SESSION::LM_SESSION(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
186??0LM_SESSION@@IEAA@PEBGW4LOCATION_TYPE@@@Z
187; public: __cdecl LM_SESSION_0::LM_SESSION_0(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
188??0LM_SESSION_0@@QEAA@PEBG0@Z
189; public: __cdecl LM_SESSION_0::LM_SESSION_0(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
190??0LM_SESSION_0@@QEAA@PEBGAEBVLOCATION@@@Z
191; public: __cdecl LM_SESSION_0::LM_SESSION_0(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
192??0LM_SESSION_0@@QEAA@PEBGW4LOCATION_TYPE@@@Z
193; public: __cdecl LM_SESSION_10::LM_SESSION_10(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
194??0LM_SESSION_10@@QEAA@PEBG0@Z
195; public: __cdecl LM_SESSION_10::LM_SESSION_10(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
196??0LM_SESSION_10@@QEAA@PEBGAEBVLOCATION@@@Z
197; public: __cdecl LM_SESSION_10::LM_SESSION_10(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
198??0LM_SESSION_10@@QEAA@PEBGW4LOCATION_TYPE@@@Z
199; public: __cdecl LM_SESSION_1::LM_SESSION_1(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
200??0LM_SESSION_1@@QEAA@PEBG0@Z
201; public: __cdecl LM_SESSION_1::LM_SESSION_1(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
202??0LM_SESSION_1@@QEAA@PEBGAEBVLOCATION@@@Z
203; public: __cdecl LM_SESSION_1::LM_SESSION_1(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
204??0LM_SESSION_1@@QEAA@PEBGW4LOCATION_TYPE@@@Z
205; public: __cdecl LM_SESSION_2::LM_SESSION_2(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
206??0LM_SESSION_2@@QEAA@PEBG0@Z
207; public: __cdecl LM_SESSION_2::LM_SESSION_2(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
208??0LM_SESSION_2@@QEAA@PEBGAEBVLOCATION@@@Z
209; public: __cdecl LM_SESSION_2::LM_SESSION_2(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
210??0LM_SESSION_2@@QEAA@PEBGW4LOCATION_TYPE@@@Z
211; public: __cdecl LM_SRVRES::LM_SRVRES(void) __ptr64
212??0LM_SRVRES@@QEAA@XZ
213; public: __cdecl LOCAL_USER::LOCAL_USER(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
214??0LOCAL_USER@@QEAA@PEBG0@Z
215; public: __cdecl LOCAL_USER::LOCAL_USER(enum LOCATION_TYPE) __ptr64
216??0LOCAL_USER@@QEAA@W4LOCATION_TYPE@@@Z
217; public: __cdecl LOCATION::LOCATION(class LOCATION const & __ptr64) __ptr64
218??0LOCATION@@QEAA@AEBV0@@Z
219; public: __cdecl LOCATION::LOCATION(unsigned short const * __ptr64,int) __ptr64
220??0LOCATION@@QEAA@PEBGH@Z
221; public: __cdecl LOCATION::LOCATION(enum LOCATION_TYPE,int) __ptr64
222??0LOCATION@@QEAA@W4LOCATION_TYPE@@H@Z
223; protected: __cdecl LOC_LM_ENUM::LOC_LM_ENUM(class LOCATION const & __ptr64,unsigned int) __ptr64
224??0LOC_LM_ENUM@@IEAA@AEBVLOCATION@@I@Z
225; protected: __cdecl LOC_LM_ENUM::LOC_LM_ENUM(unsigned short const * __ptr64,unsigned int) __ptr64
226??0LOC_LM_ENUM@@IEAA@PEBGI@Z
227; protected: __cdecl LOC_LM_ENUM::LOC_LM_ENUM(enum LOCATION_TYPE,unsigned int) __ptr64
228??0LOC_LM_ENUM@@IEAA@W4LOCATION_TYPE@@I@Z
229; public: __cdecl LOC_LM_OBJ::LOC_LM_OBJ(class LOCATION const & __ptr64,int) __ptr64
230??0LOC_LM_OBJ@@QEAA@AEBVLOCATION@@H@Z
231; public: __cdecl LOC_LM_OBJ::LOC_LM_OBJ(unsigned short const * __ptr64,int) __ptr64
232??0LOC_LM_OBJ@@QEAA@PEBGH@Z
233; public: __cdecl LOC_LM_OBJ::LOC_LM_OBJ(enum LOCATION_TYPE,int) __ptr64
234??0LOC_LM_OBJ@@QEAA@W4LOCATION_TYPE@@H@Z
235; protected: __cdecl LOC_LM_RESUME_ENUM::LOC_LM_RESUME_ENUM(class LOCATION const & __ptr64,unsigned int,int) __ptr64
236??0LOC_LM_RESUME_ENUM@@IEAA@AEBVLOCATION@@IH@Z
237; protected: __cdecl LOC_LM_RESUME_ENUM::LOC_LM_RESUME_ENUM(unsigned short const * __ptr64,unsigned int,int) __ptr64
238??0LOC_LM_RESUME_ENUM@@IEAA@PEBGIH@Z
239; protected: __cdecl LOC_LM_RESUME_ENUM::LOC_LM_RESUME_ENUM(enum LOCATION_TYPE,unsigned int,int) __ptr64
240??0LOC_LM_RESUME_ENUM@@IEAA@W4LOCATION_TYPE@@IH@Z
241; public: __cdecl LSA_ACCOUNT::LSA_ACCOUNT(class LSA_POLICY * __ptr64,void * __ptr64,unsigned long,unsigned short const * __ptr64,void * __ptr64) __ptr64
242??0LSA_ACCOUNT@@QEAA@PEAVLSA_POLICY@@PEAXKPEBG1@Z
243; public: __cdecl LSA_ACCOUNTS_ENUM::LSA_ACCOUNTS_ENUM(class LSA_POLICY const * __ptr64) __ptr64
244??0LSA_ACCOUNTS_ENUM@@QEAA@PEBVLSA_POLICY@@@Z
245; public: __cdecl LSA_ACCOUNTS_ENUM_ITER::LSA_ACCOUNTS_ENUM_ITER(class LSA_ACCOUNTS_ENUM & __ptr64) __ptr64
246??0LSA_ACCOUNTS_ENUM_ITER@@QEAA@AEAVLSA_ACCOUNTS_ENUM@@@Z
247; public: __cdecl LSA_ACCOUNTS_ENUM_OBJ::LSA_ACCOUNTS_ENUM_OBJ(void) __ptr64
248??0LSA_ACCOUNTS_ENUM_OBJ@@QEAA@XZ
249; public: __cdecl LSA_ACCOUNT_PRIVILEGE_ENUM_ITER::LSA_ACCOUNT_PRIVILEGE_ENUM_ITER(class OS_PRIVILEGE_SET * __ptr64) __ptr64
250??0LSA_ACCOUNT_PRIVILEGE_ENUM_ITER@@QEAA@PEAVOS_PRIVILEGE_SET@@@Z
251; public: __cdecl LSA_ACCT_DOM_INFO_MEM::LSA_ACCT_DOM_INFO_MEM(int) __ptr64
252??0LSA_ACCT_DOM_INFO_MEM@@QEAA@H@Z
253; public: __cdecl LSA_AUDIT_EVENT_INFO_MEM::LSA_AUDIT_EVENT_INFO_MEM(int) __ptr64
254??0LSA_AUDIT_EVENT_INFO_MEM@@QEAA@H@Z
255; public: __cdecl LSA_DOMAIN_INFO::LSA_DOMAIN_INFO(class NLS_STR const & __ptr64,class LSA_DOMAIN_INFO const * __ptr64,class LSA_DOMAIN_INFO const * __ptr64) __ptr64
256??0LSA_DOMAIN_INFO@@QEAA@AEBVNLS_STR@@PEBV1@1@Z
257; protected: __cdecl LSA_ENUM::LSA_ENUM(class LSA_POLICY const * __ptr64) __ptr64
258??0LSA_ENUM@@IEAA@PEBVLSA_POLICY@@@Z
259; protected: __cdecl LSA_MEMORY::LSA_MEMORY(int) __ptr64
260??0LSA_MEMORY@@IEAA@H@Z
261; protected: __cdecl LSA_OBJECT::LSA_OBJECT(void) __ptr64
262??0LSA_OBJECT@@IEAA@XZ
263; public: __cdecl LSA_POLICY::LSA_POLICY(unsigned short const * __ptr64,unsigned long) __ptr64
264??0LSA_POLICY@@QEAA@PEBGK@Z
265; public: __cdecl LSA_PRIMARY_DOM_INFO_MEM::LSA_PRIMARY_DOM_INFO_MEM(int) __ptr64
266??0LSA_PRIMARY_DOM_INFO_MEM@@QEAA@H@Z
267; public: __cdecl LSA_PRIVILEGES_ENUM::LSA_PRIVILEGES_ENUM(class LSA_POLICY const * __ptr64) __ptr64
268??0LSA_PRIVILEGES_ENUM@@QEAA@PEBVLSA_POLICY@@@Z
269; public: __cdecl LSA_PRIVILEGES_ENUM_ITER::LSA_PRIVILEGES_ENUM_ITER(class LSA_PRIVILEGES_ENUM & __ptr64) __ptr64
270??0LSA_PRIVILEGES_ENUM_ITER@@QEAA@AEAVLSA_PRIVILEGES_ENUM@@@Z
271; public: __cdecl LSA_PRIVILEGES_ENUM_OBJ::LSA_PRIVILEGES_ENUM_OBJ(void) __ptr64
272??0LSA_PRIVILEGES_ENUM_OBJ@@QEAA@XZ
273; public: __cdecl LSA_REF_DOMAIN_MEM::LSA_REF_DOMAIN_MEM(int) __ptr64
274??0LSA_REF_DOMAIN_MEM@@QEAA@H@Z
275; public: __cdecl LSA_SECRET::LSA_SECRET(class NLS_STR const & __ptr64) __ptr64
276??0LSA_SECRET@@QEAA@AEBVNLS_STR@@@Z
277; public: __cdecl LSA_SERVER_ROLE_INFO_MEM::LSA_SERVER_ROLE_INFO_MEM(int,int) __ptr64
278??0LSA_SERVER_ROLE_INFO_MEM@@QEAA@HH@Z
279; public: __cdecl LSA_TRANSLATED_NAME_MEM::LSA_TRANSLATED_NAME_MEM(int) __ptr64
280??0LSA_TRANSLATED_NAME_MEM@@QEAA@H@Z
281; public: __cdecl LSA_TRANSLATED_SID_MEM::LSA_TRANSLATED_SID_MEM(int) __ptr64
282??0LSA_TRANSLATED_SID_MEM@@QEAA@H@Z
283; public: __cdecl LSA_TRUSTED_DC_LIST::LSA_TRUSTED_DC_LIST(class NLS_STR const & __ptr64,unsigned short const * __ptr64) __ptr64
284??0LSA_TRUSTED_DC_LIST@@QEAA@AEBVNLS_STR@@PEBG@Z
285; public: __cdecl LSA_TRUSTED_DOMAIN::LSA_TRUSTED_DOMAIN(class LSA_POLICY const & __ptr64,struct _LSA_TRUST_INFORMATION const & __ptr64,unsigned long) __ptr64
286??0LSA_TRUSTED_DOMAIN@@QEAA@AEBVLSA_POLICY@@AEBU_LSA_TRUST_INFORMATION@@K@Z
287; public: __cdecl LSA_TRUSTED_DOMAIN::LSA_TRUSTED_DOMAIN(class LSA_POLICY const & __ptr64,class NLS_STR const & __ptr64,void * __ptr64 const,unsigned long) __ptr64
288??0LSA_TRUSTED_DOMAIN@@QEAA@AEBVLSA_POLICY@@AEBVNLS_STR@@QEAXK@Z
289; public: __cdecl LSA_TRUSTED_DOMAIN::LSA_TRUSTED_DOMAIN(class LSA_POLICY const & __ptr64,void * __ptr64 const,unsigned long) __ptr64
290??0LSA_TRUSTED_DOMAIN@@QEAA@AEBVLSA_POLICY@@QEAXK@Z
291; public: __cdecl LSA_TRUST_INFO_MEM::LSA_TRUST_INFO_MEM(int) __ptr64
292??0LSA_TRUST_INFO_MEM@@QEAA@H@Z
293; public: __cdecl MEMBERSHIP_LM_OBJ::MEMBERSHIP_LM_OBJ(class LOCATION const & __ptr64,unsigned int) __ptr64
294??0MEMBERSHIP_LM_OBJ@@QEAA@AEBVLOCATION@@I@Z
295; protected: __cdecl NET_ACCESS::NET_ACCESS(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
296??0NET_ACCESS@@IEAA@PEBG0@Z
297; public: __cdecl NET_ACCESS_1::NET_ACCESS_1(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
298??0NET_ACCESS_1@@QEAA@PEBG0@Z
299; public: __cdecl NET_NAME::NET_NAME(unsigned short const * __ptr64,enum NETNAME_TYPE) __ptr64
300??0NET_NAME@@QEAA@PEBGW4NETNAME_TYPE@@@Z
301; public: __cdecl NEW_LM_OBJ::NEW_LM_OBJ(int) __ptr64
302??0NEW_LM_OBJ@@QEAA@H@Z
303; protected: __cdecl NT_ACCOUNT_ENUM::NT_ACCOUNT_ENUM(class SAM_DOMAIN const * __ptr64,enum _DOMAIN_DISPLAY_INFORMATION,int) __ptr64
304??0NT_ACCOUNT_ENUM@@IEAA@PEBVSAM_DOMAIN@@W4_DOMAIN_DISPLAY_INFORMATION@@H@Z
305; public: __cdecl NT_GROUP_ENUM::NT_GROUP_ENUM(class SAM_DOMAIN const * __ptr64) __ptr64
306??0NT_GROUP_ENUM@@QEAA@PEBVSAM_DOMAIN@@@Z
307; public: __cdecl NT_GROUP_ENUM_ITER::NT_GROUP_ENUM_ITER(class NT_GROUP_ENUM & __ptr64) __ptr64
308??0NT_GROUP_ENUM_ITER@@QEAA@AEAVNT_GROUP_ENUM@@@Z
309; public: __cdecl NT_GROUP_ENUM_OBJ::NT_GROUP_ENUM_OBJ(void) __ptr64
310??0NT_GROUP_ENUM_OBJ@@QEAA@XZ
311; public: __cdecl NT_MACHINE_ENUM::NT_MACHINE_ENUM(class SAM_DOMAIN const * __ptr64) __ptr64
312??0NT_MACHINE_ENUM@@QEAA@PEBVSAM_DOMAIN@@@Z
313; public: __cdecl NT_MACHINE_ENUM_ITER::NT_MACHINE_ENUM_ITER(class NT_MACHINE_ENUM & __ptr64) __ptr64
314??0NT_MACHINE_ENUM_ITER@@QEAA@AEAVNT_MACHINE_ENUM@@@Z
315; public: __cdecl NT_MACHINE_ENUM_OBJ::NT_MACHINE_ENUM_OBJ(void) __ptr64
316??0NT_MACHINE_ENUM_OBJ@@QEAA@XZ
317; protected: __cdecl NT_MEMORY::NT_MEMORY(void) __ptr64
318??0NT_MEMORY@@IEAA@XZ
319; public: __cdecl NT_USER_ENUM::NT_USER_ENUM(class SAM_DOMAIN const * __ptr64) __ptr64
320??0NT_USER_ENUM@@QEAA@PEBVSAM_DOMAIN@@@Z
321; public: __cdecl NT_USER_ENUM_ITER::NT_USER_ENUM_ITER(class NT_USER_ENUM & __ptr64) __ptr64
322??0NT_USER_ENUM_ITER@@QEAA@AEAVNT_USER_ENUM@@@Z
323; public: __cdecl NT_USER_ENUM_OBJ::NT_USER_ENUM_OBJ(void) __ptr64
324??0NT_USER_ENUM_OBJ@@QEAA@XZ
325; public: __cdecl OS_ACE::OS_ACE(void * __ptr64) __ptr64
326??0OS_ACE@@QEAA@PEAX@Z
327; public: __cdecl OS_ACL::OS_ACL(struct _ACL * __ptr64,int,class OS_SECURITY_DESCRIPTOR * __ptr64) __ptr64
328??0OS_ACL@@QEAA@PEAU_ACL@@HPEAVOS_SECURITY_DESCRIPTOR@@@Z
329; public: __cdecl OS_ACL_SUBJECT_ITER::OS_ACL_SUBJECT_ITER(class OS_ACL const * __ptr64,struct _GENERIC_MAPPING * __ptr64,struct _GENERIC_MAPPING * __ptr64,int,int) __ptr64
330??0OS_ACL_SUBJECT_ITER@@QEAA@PEBVOS_ACL@@PEAU_GENERIC_MAPPING@@1HH@Z
331; public: __cdecl OS_DACL_SUBJECT_ITER::OS_DACL_SUBJECT_ITER(class OS_ACL * __ptr64,struct _GENERIC_MAPPING * __ptr64,struct _GENERIC_MAPPING * __ptr64,int,int) __ptr64
332??0OS_DACL_SUBJECT_ITER@@QEAA@PEAVOS_ACL@@PEAU_GENERIC_MAPPING@@1HH@Z
333; public: __cdecl OS_LUID::OS_LUID(struct _LUID) __ptr64
334??0OS_LUID@@QEAA@U_LUID@@@Z
335; public: __cdecl OS_LUID::OS_LUID(void) __ptr64
336??0OS_LUID@@QEAA@XZ
337; public: __cdecl OS_LUID_AND_ATTRIBUTES::OS_LUID_AND_ATTRIBUTES(void) __ptr64
338??0OS_LUID_AND_ATTRIBUTES@@QEAA@XZ
339; protected: __cdecl OS_OBJECT_WITH_DATA::OS_OBJECT_WITH_DATA(unsigned int) __ptr64
340??0OS_OBJECT_WITH_DATA@@IEAA@I@Z
341; public: __cdecl OS_PRIVILEGE_SET::OS_PRIVILEGE_SET(struct _PRIVILEGE_SET * __ptr64) __ptr64
342??0OS_PRIVILEGE_SET@@QEAA@PEAU_PRIVILEGE_SET@@@Z
343; public: __cdecl OS_SACL_SUBJECT_ITER::OS_SACL_SUBJECT_ITER(class OS_ACL * __ptr64,struct _GENERIC_MAPPING * __ptr64,struct _GENERIC_MAPPING * __ptr64,int,int) __ptr64
344??0OS_SACL_SUBJECT_ITER@@QEAA@PEAVOS_ACL@@PEAU_GENERIC_MAPPING@@1HH@Z
345; public: __cdecl OS_SECURITY_DESCRIPTOR::OS_SECURITY_DESCRIPTOR(void * __ptr64,int) __ptr64
346??0OS_SECURITY_DESCRIPTOR@@QEAA@PEAXH@Z
347; public: __cdecl OS_SECURITY_DESCRIPTOR_CONTROL::OS_SECURITY_DESCRIPTOR_CONTROL(unsigned short * __ptr64) __ptr64
348??0OS_SECURITY_DESCRIPTOR_CONTROL@@QEAA@PEAG@Z
349; public: __cdecl OS_SID::OS_SID(void * __ptr64,int,class OS_SECURITY_DESCRIPTOR * __ptr64) __ptr64
350??0OS_SID@@QEAA@PEAXHPEAVOS_SECURITY_DESCRIPTOR@@@Z
351; public: __cdecl OS_SID::OS_SID(void * __ptr64,unsigned long,class OS_SECURITY_DESCRIPTOR * __ptr64) __ptr64
352??0OS_SID@@QEAA@PEAXKPEAVOS_SECURITY_DESCRIPTOR@@@Z
353; public: __cdecl SAM_ALIAS::SAM_ALIAS(class SAM_DOMAIN const & __ptr64,unsigned long,unsigned long) __ptr64
354??0SAM_ALIAS@@QEAA@AEBVSAM_DOMAIN@@KK@Z
355; public: __cdecl SAM_ALIAS::SAM_ALIAS(class SAM_DOMAIN const & __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
356??0SAM_ALIAS@@QEAA@AEBVSAM_DOMAIN@@PEBGK@Z
357; public: __cdecl SAM_DOMAIN::SAM_DOMAIN(class SAM_SERVER const & __ptr64,void * __ptr64,unsigned long) __ptr64
358??0SAM_DOMAIN@@QEAA@AEBVSAM_SERVER@@PEAXK@Z
359; public: __cdecl SAM_GROUP::SAM_GROUP(class SAM_DOMAIN const & __ptr64,unsigned long,unsigned long) __ptr64
360??0SAM_GROUP@@QEAA@AEBVSAM_DOMAIN@@KK@Z
361; protected: __cdecl SAM_MEMORY::SAM_MEMORY(int) __ptr64
362??0SAM_MEMORY@@IEAA@H@Z
363; protected: __cdecl SAM_OBJECT::SAM_OBJECT(void) __ptr64
364??0SAM_OBJECT@@IEAA@XZ
365; public: __cdecl SAM_PSWD_DOM_INFO_MEM::SAM_PSWD_DOM_INFO_MEM(int) __ptr64
366??0SAM_PSWD_DOM_INFO_MEM@@QEAA@H@Z
367; public: __cdecl SAM_RID_ENUMERATION_MEM::SAM_RID_ENUMERATION_MEM(int) __ptr64
368??0SAM_RID_ENUMERATION_MEM@@QEAA@H@Z
369; public: __cdecl SAM_RID_MEM::SAM_RID_MEM(int) __ptr64
370??0SAM_RID_MEM@@QEAA@H@Z
371; public: __cdecl SAM_SERVER::SAM_SERVER(unsigned short const * __ptr64,unsigned long) __ptr64
372??0SAM_SERVER@@QEAA@PEBGK@Z
373; public: __cdecl SAM_SID_MEM::SAM_SID_MEM(int) __ptr64
374??0SAM_SID_MEM@@QEAA@H@Z
375; public: __cdecl SAM_SID_NAME_USE_MEM::SAM_SID_NAME_USE_MEM(int) __ptr64
376??0SAM_SID_NAME_USE_MEM@@QEAA@H@Z
377; public: __cdecl SAM_USER::SAM_USER(class SAM_DOMAIN const & __ptr64,unsigned long,unsigned long) __ptr64
378??0SAM_USER@@QEAA@AEBVSAM_DOMAIN@@KK@Z
379; public: __cdecl SAM_USER_ENUM::SAM_USER_ENUM(class SAM_DOMAIN const * __ptr64,unsigned long,int) __ptr64
380??0SAM_USER_ENUM@@QEAA@PEBVSAM_DOMAIN@@KH@Z
381; public: __cdecl SAM_USER_ENUM_ITER::SAM_USER_ENUM_ITER(class SAM_USER_ENUM & __ptr64) __ptr64
382??0SAM_USER_ENUM_ITER@@QEAA@AEAVSAM_USER_ENUM@@@Z
383; public: __cdecl SAM_USER_ENUM_OBJ::SAM_USER_ENUM_OBJ(void) __ptr64
384??0SAM_USER_ENUM_OBJ@@QEAA@XZ
385; public: __cdecl SC_MANAGER::SC_MANAGER(struct SC_HANDLE__ * __ptr64) __ptr64
386??0SC_MANAGER@@QEAA@PEAUSC_HANDLE__@@@Z
387; public: __cdecl SC_MANAGER::SC_MANAGER(unsigned short const * __ptr64,unsigned int,enum SERVICE_DATABASE) __ptr64
388??0SC_MANAGER@@QEAA@PEBGIW4SERVICE_DATABASE@@@Z
389; public: __cdecl SC_SERVICE::SC_SERVICE(class SC_MANAGER const & __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned int,unsigned int,unsigned int,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned int) __ptr64
390??0SC_SERVICE@@QEAA@AEBVSC_MANAGER@@PEBG1III11111I@Z
391; public: __cdecl SC_SERVICE::SC_SERVICE(class SC_MANAGER const & __ptr64,unsigned short const * __ptr64,unsigned int) __ptr64
392??0SC_SERVICE@@QEAA@AEBVSC_MANAGER@@PEBGI@Z
393; public: __cdecl SERVER1_ENUM::SERVER1_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
394??0SERVER1_ENUM@@QEAA@PEBG0K@Z
395; public: __cdecl SERVER1_ENUM_ITER::SERVER1_ENUM_ITER(class SERVER1_ENUM & __ptr64) __ptr64
396??0SERVER1_ENUM_ITER@@QEAA@AEAVSERVER1_ENUM@@@Z
397; public: __cdecl SERVER1_ENUM_OBJ::SERVER1_ENUM_OBJ(void) __ptr64
398??0SERVER1_ENUM_OBJ@@QEAA@XZ
399; public: __cdecl SERVER_0::SERVER_0(unsigned short const * __ptr64) __ptr64
400??0SERVER_0@@QEAA@PEBG@Z
401; public: __cdecl SERVER_1::SERVER_1(unsigned short const * __ptr64) __ptr64
402??0SERVER_1@@QEAA@PEBG@Z
403; public: __cdecl SERVER_2::SERVER_2(unsigned short const * __ptr64) __ptr64
404??0SERVER_2@@QEAA@PEBG@Z
405; protected: __cdecl SERVER_ENUM::SERVER_ENUM(unsigned short const * __ptr64,unsigned int,unsigned short const * __ptr64,unsigned long) __ptr64
406??0SERVER_ENUM@@IEAA@PEBGI0K@Z
407; public: __cdecl SERVICE_CONTROL::SERVICE_CONTROL(void) __ptr64
408??0SERVICE_CONTROL@@QEAA@XZ
409; public: __cdecl SERVICE_ENUM::SERVICE_ENUM(unsigned short const * __ptr64,int,unsigned int,unsigned short const * __ptr64) __ptr64
410??0SERVICE_ENUM@@QEAA@PEBGHI0@Z
411; public: __cdecl SERVICE_ENUM_ITER::SERVICE_ENUM_ITER(class SERVICE_ENUM & __ptr64) __ptr64
412??0SERVICE_ENUM_ITER@@QEAA@AEAVSERVICE_ENUM@@@Z
413; public: __cdecl SERVICE_ENUM_OBJ::SERVICE_ENUM_OBJ(void) __ptr64
414??0SERVICE_ENUM_OBJ@@QEAA@XZ
415; public: __cdecl SESSION0_ENUM::SESSION0_ENUM(unsigned short const * __ptr64) __ptr64
416??0SESSION0_ENUM@@QEAA@PEBG@Z
417; public: __cdecl SESSION0_ENUM_ITER::SESSION0_ENUM_ITER(class SESSION0_ENUM & __ptr64) __ptr64
418??0SESSION0_ENUM_ITER@@QEAA@AEAVSESSION0_ENUM@@@Z
419; public: __cdecl SESSION0_ENUM_OBJ::SESSION0_ENUM_OBJ(void) __ptr64
420??0SESSION0_ENUM_OBJ@@QEAA@XZ
421; public: __cdecl SESSION1_ENUM::SESSION1_ENUM(unsigned short const * __ptr64) __ptr64
422??0SESSION1_ENUM@@QEAA@PEBG@Z
423; public: __cdecl SESSION1_ENUM_ITER::SESSION1_ENUM_ITER(class SESSION1_ENUM & __ptr64) __ptr64
424??0SESSION1_ENUM_ITER@@QEAA@AEAVSESSION1_ENUM@@@Z
425; public: __cdecl SESSION1_ENUM_OBJ::SESSION1_ENUM_OBJ(void) __ptr64
426??0SESSION1_ENUM_OBJ@@QEAA@XZ
427; protected: __cdecl SESSION_ENUM::SESSION_ENUM(unsigned short const * __ptr64,unsigned int) __ptr64
428??0SESSION_ENUM@@IEAA@PEBGI@Z
429; public: __cdecl SHARE1_ENUM::SHARE1_ENUM(unsigned short const * __ptr64,int) __ptr64
430??0SHARE1_ENUM@@QEAA@PEBGH@Z
431; public: __cdecl SHARE1_ENUM_ITER::SHARE1_ENUM_ITER(class SHARE1_ENUM & __ptr64) __ptr64
432??0SHARE1_ENUM_ITER@@QEAA@AEAVSHARE1_ENUM@@@Z
433; public: __cdecl SHARE1_ENUM_OBJ::SHARE1_ENUM_OBJ(void) __ptr64
434??0SHARE1_ENUM_OBJ@@QEAA@XZ
435; public: __cdecl SHARE2_ENUM::SHARE2_ENUM(unsigned short const * __ptr64,int) __ptr64
436??0SHARE2_ENUM@@QEAA@PEBGH@Z
437; public: __cdecl SHARE2_ENUM_ITER::SHARE2_ENUM_ITER(class SHARE2_ENUM & __ptr64) __ptr64
438??0SHARE2_ENUM_ITER@@QEAA@AEAVSHARE2_ENUM@@@Z
439; public: __cdecl SHARE2_ENUM_OBJ::SHARE2_ENUM_OBJ(void) __ptr64
440??0SHARE2_ENUM_OBJ@@QEAA@XZ
441; public: __cdecl SHARE::SHARE(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
442??0SHARE@@QEAA@PEBG0H@Z
443; public: __cdecl SHARE_1::SHARE_1(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
444??0SHARE_1@@QEAA@PEBG0H@Z
445; public: __cdecl SHARE_2::SHARE_2(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
446??0SHARE_2@@QEAA@PEBG0H@Z
447; protected: __cdecl SHARE_ENUM::SHARE_ENUM(unsigned short const * __ptr64,unsigned int,int) __ptr64
448??0SHARE_ENUM@@IEAA@PEBGIH@Z
449; public: __cdecl SLIST_OF_ADMIN_AUTHORITY::SLIST_OF_ADMIN_AUTHORITY(int) __ptr64
450??0SLIST_OF_ADMIN_AUTHORITY@@QEAA@H@Z
451; public: __cdecl SLIST_OF_API_SESSION::SLIST_OF_API_SESSION(int) __ptr64
452??0SLIST_OF_API_SESSION@@QEAA@H@Z
453; public: __cdecl SLIST_OF_BROWSE_DOMAIN_INFO::SLIST_OF_BROWSE_DOMAIN_INFO(int) __ptr64
454??0SLIST_OF_BROWSE_DOMAIN_INFO@@QEAA@H@Z
455; public: __cdecl SLIST_OF_LM_RESUME_BUFFER::SLIST_OF_LM_RESUME_BUFFER(int) __ptr64
456??0SLIST_OF_LM_RESUME_BUFFER@@QEAA@H@Z
457; public: __cdecl TIME_OF_DAY::TIME_OF_DAY(class LOCATION & __ptr64) __ptr64
458??0TIME_OF_DAY@@QEAA@AEAVLOCATION@@@Z
459; public: __cdecl TIME_OF_DAY::TIME_OF_DAY(unsigned short const * __ptr64) __ptr64
460??0TIME_OF_DAY@@QEAA@PEBG@Z
461; public: __cdecl TIME_OF_DAY::TIME_OF_DAY(enum LOCATION_TYPE) __ptr64
462??0TIME_OF_DAY@@QEAA@W4LOCATION_TYPE@@@Z
463; public: __cdecl TRIPLE_SERVER_ENUM::TRIPLE_SERVER_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,int,int,int,int) __ptr64
464??0TRIPLE_SERVER_ENUM@@QEAA@PEBG0HHHH@Z
465; public: __cdecl TRIPLE_SERVER_ENUM_ITER::TRIPLE_SERVER_ENUM_ITER(class TRIPLE_SERVER_ENUM & __ptr64) __ptr64
466??0TRIPLE_SERVER_ENUM_ITER@@QEAA@AEAVTRIPLE_SERVER_ENUM@@@Z
467; public: __cdecl TRIPLE_SERVER_ENUM_OBJ::TRIPLE_SERVER_ENUM_OBJ(void) __ptr64
468??0TRIPLE_SERVER_ENUM_OBJ@@QEAA@XZ
469; public: __cdecl TRUSTED_DOMAIN_ENUM::TRUSTED_DOMAIN_ENUM(class LSA_POLICY const * __ptr64,int) __ptr64
470??0TRUSTED_DOMAIN_ENUM@@QEAA@PEBVLSA_POLICY@@H@Z
471; public: __cdecl TRUSTED_DOMAIN_ENUM_ITER::TRUSTED_DOMAIN_ENUM_ITER(class TRUSTED_DOMAIN_ENUM & __ptr64) __ptr64
472??0TRUSTED_DOMAIN_ENUM_ITER@@QEAA@AEAVTRUSTED_DOMAIN_ENUM@@@Z
473; public: __cdecl TRUSTED_DOMAIN_ENUM_OBJ::TRUSTED_DOMAIN_ENUM_OBJ(void) __ptr64
474??0TRUSTED_DOMAIN_ENUM_OBJ@@QEAA@XZ
475; public: __cdecl USE1_ENUM::USE1_ENUM(unsigned short const * __ptr64) __ptr64
476??0USE1_ENUM@@QEAA@PEBG@Z
477; public: __cdecl USE1_ENUM_ITER::USE1_ENUM_ITER(class USE1_ENUM & __ptr64) __ptr64
478??0USE1_ENUM_ITER@@QEAA@AEAVUSE1_ENUM@@@Z
479; public: __cdecl USE1_ENUM_OBJ::USE1_ENUM_OBJ(void) __ptr64
480??0USE1_ENUM_OBJ@@QEAA@XZ
481; public: __cdecl USER0_ENUM::USER0_ENUM(class LOCATION const & __ptr64,unsigned short const * __ptr64,int) __ptr64
482??0USER0_ENUM@@QEAA@AEBVLOCATION@@PEBGH@Z
483; public: __cdecl USER0_ENUM::USER0_ENUM(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
484??0USER0_ENUM@@QEAA@PEBG0H@Z
485; public: __cdecl USER0_ENUM::USER0_ENUM(enum LOCATION_TYPE,unsigned short const * __ptr64,int) __ptr64
486??0USER0_ENUM@@QEAA@W4LOCATION_TYPE@@PEBGH@Z
487; public: __cdecl USER0_ENUM_ITER::USER0_ENUM_ITER(class USER0_ENUM & __ptr64) __ptr64
488??0USER0_ENUM_ITER@@QEAA@AEAVUSER0_ENUM@@@Z
489; public: __cdecl USER0_ENUM_OBJ::USER0_ENUM_OBJ(void) __ptr64
490??0USER0_ENUM_OBJ@@QEAA@XZ
491; public: __cdecl USER10_ENUM::USER10_ENUM(class LOCATION const & __ptr64,int) __ptr64
492??0USER10_ENUM@@QEAA@AEBVLOCATION@@H@Z
493; public: __cdecl USER10_ENUM::USER10_ENUM(unsigned short const * __ptr64,int) __ptr64
494??0USER10_ENUM@@QEAA@PEBGH@Z
495; public: __cdecl USER10_ENUM::USER10_ENUM(enum LOCATION_TYPE,int) __ptr64
496??0USER10_ENUM@@QEAA@W4LOCATION_TYPE@@H@Z
497; public: __cdecl USER10_ENUM_ITER::USER10_ENUM_ITER(class USER10_ENUM & __ptr64) __ptr64
498??0USER10_ENUM_ITER@@QEAA@AEAVUSER10_ENUM@@@Z
499; public: __cdecl USER10_ENUM_OBJ::USER10_ENUM_OBJ(void) __ptr64
500??0USER10_ENUM_OBJ@@QEAA@XZ
501; public: __cdecl USER1_ENUM::USER1_ENUM(class LOCATION const & __ptr64,int) __ptr64
502??0USER1_ENUM@@QEAA@AEBVLOCATION@@H@Z
503; public: __cdecl USER1_ENUM::USER1_ENUM(unsigned short const * __ptr64,int) __ptr64
504??0USER1_ENUM@@QEAA@PEBGH@Z
505; public: __cdecl USER1_ENUM::USER1_ENUM(enum LOCATION_TYPE,int) __ptr64
506??0USER1_ENUM@@QEAA@W4LOCATION_TYPE@@H@Z
507; public: __cdecl USER1_ENUM_ITER::USER1_ENUM_ITER(class USER1_ENUM & __ptr64) __ptr64
508??0USER1_ENUM_ITER@@QEAA@AEAVUSER1_ENUM@@@Z
509; public: __cdecl USER1_ENUM_OBJ::USER1_ENUM_OBJ(void) __ptr64
510??0USER1_ENUM_OBJ@@QEAA@XZ
511; public: __cdecl USER2_ENUM::USER2_ENUM(class LOCATION const & __ptr64,int) __ptr64
512??0USER2_ENUM@@QEAA@AEBVLOCATION@@H@Z
513; public: __cdecl USER2_ENUM::USER2_ENUM(unsigned short const * __ptr64,int) __ptr64
514??0USER2_ENUM@@QEAA@PEBGH@Z
515; public: __cdecl USER2_ENUM::USER2_ENUM(enum LOCATION_TYPE,int) __ptr64
516??0USER2_ENUM@@QEAA@W4LOCATION_TYPE@@H@Z
517; public: __cdecl USER2_ENUM_ITER::USER2_ENUM_ITER(class USER2_ENUM & __ptr64) __ptr64
518??0USER2_ENUM_ITER@@QEAA@AEAVUSER2_ENUM@@@Z
519; public: __cdecl USER2_ENUM_OBJ::USER2_ENUM_OBJ(void) __ptr64
520??0USER2_ENUM_OBJ@@QEAA@XZ
521; public: __cdecl USER::USER(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
522??0USER@@QEAA@PEBG0@Z
523; public: __cdecl USER::USER(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
524??0USER@@QEAA@PEBGAEBVLOCATION@@@Z
525; public: __cdecl USER::USER(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
526??0USER@@QEAA@PEBGW4LOCATION_TYPE@@@Z
527; public: __cdecl USER_11::USER_11(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
528??0USER_11@@QEAA@PEBG0@Z
529; public: __cdecl USER_11::USER_11(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
530??0USER_11@@QEAA@PEBGAEBVLOCATION@@@Z
531; public: __cdecl USER_11::USER_11(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
532??0USER_11@@QEAA@PEBGW4LOCATION_TYPE@@@Z
533; public: __cdecl USER_2::USER_2(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
534??0USER_2@@QEAA@PEBG0@Z
535; public: __cdecl USER_2::USER_2(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
536??0USER_2@@QEAA@PEBGAEBVLOCATION@@@Z
537; public: __cdecl USER_2::USER_2(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
538??0USER_2@@QEAA@PEBGW4LOCATION_TYPE@@@Z
539; public: __cdecl USER_3::USER_3(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
540??0USER_3@@QEAA@PEBG0@Z
541; public: __cdecl USER_3::USER_3(unsigned short const * __ptr64,class LOCATION const & __ptr64) __ptr64
542??0USER_3@@QEAA@PEBGAEBVLOCATION@@@Z
543; public: __cdecl USER_3::USER_3(unsigned short const * __ptr64,enum LOCATION_TYPE) __ptr64
544??0USER_3@@QEAA@PEBGW4LOCATION_TYPE@@@Z
545; protected: __cdecl USER_ENUM::USER_ENUM(class LOCATION const & __ptr64,unsigned int,unsigned short const * __ptr64,int) __ptr64
546??0USER_ENUM@@IEAA@AEBVLOCATION@@IPEBGH@Z
547; protected: __cdecl USER_ENUM::USER_ENUM(unsigned short const * __ptr64,unsigned int,unsigned short const * __ptr64,int) __ptr64
548??0USER_ENUM@@IEAA@PEBGI0H@Z
549; protected: __cdecl USER_ENUM::USER_ENUM(enum LOCATION_TYPE,unsigned int,unsigned short const * __ptr64,int) __ptr64
550??0USER_ENUM@@IEAA@W4LOCATION_TYPE@@IPEBGH@Z
551; public: __cdecl USER_MEMB::USER_MEMB(class LOCATION const & __ptr64,unsigned short const * __ptr64) __ptr64
552??0USER_MEMB@@QEAA@AEBVLOCATION@@PEBG@Z
553; public: __cdecl USER_MODALS::USER_MODALS(unsigned short const * __ptr64) __ptr64
554??0USER_MODALS@@QEAA@PEBG@Z
555; public: __cdecl USER_MODALS_3::USER_MODALS_3(unsigned short const * __ptr64) __ptr64
556??0USER_MODALS_3@@QEAA@PEBG@Z
557; protected: __cdecl USE_ENUM::USE_ENUM(unsigned short const * __ptr64,unsigned int) __ptr64
558??0USE_ENUM@@IEAA@PEBGI@Z
559; public: __cdecl WKSTA_10::WKSTA_10(unsigned short const * __ptr64) __ptr64
560??0WKSTA_10@@QEAA@PEBG@Z
561; public: __cdecl WKSTA_1::WKSTA_1(unsigned short const * __ptr64) __ptr64
562??0WKSTA_1@@QEAA@PEBG@Z
563; public: __cdecl WKSTA_USER_1::WKSTA_USER_1(void) __ptr64
564??0WKSTA_USER_1@@QEAA@XZ
565; public: __cdecl ADMIN_AUTHORITY::~ADMIN_AUTHORITY(void) __ptr64
566??1ADMIN_AUTHORITY@@QEAA@XZ
567; public: __cdecl ALIAS_ENUM::~ALIAS_ENUM(void) __ptr64
568??1ALIAS_ENUM@@QEAA@XZ
569; public: __cdecl ALIAS_ENUM_OBJ::~ALIAS_ENUM_OBJ(void) __ptr64
570??1ALIAS_ENUM_OBJ@@QEAA@XZ
571; public: __cdecl ALIAS_STR::~ALIAS_STR(void) __ptr64
572??1ALIAS_STR@@QEAA@XZ
573; public: __cdecl ALLOC_STR::~ALLOC_STR(void) __ptr64
574??1ALLOC_STR@@QEAA@XZ
575; public: __cdecl API_SESSION::~API_SESSION(void) __ptr64
576??1API_SESSION@@QEAA@XZ
577; public: __cdecl BROWSE_DOMAIN_ENUM::~BROWSE_DOMAIN_ENUM(void) __ptr64
578??1BROWSE_DOMAIN_ENUM@@QEAA@XZ
579; public: __cdecl BROWSE_DOMAIN_INFO::~BROWSE_DOMAIN_INFO(void) __ptr64
580??1BROWSE_DOMAIN_INFO@@QEAA@XZ
581; public: __cdecl CHARDEVQ1_ENUM_OBJ::~CHARDEVQ1_ENUM_OBJ(void) __ptr64
582??1CHARDEVQ1_ENUM_OBJ@@QEAA@XZ
583; public: __cdecl CHARDEVQ_ENUM::~CHARDEVQ_ENUM(void) __ptr64
584??1CHARDEVQ_ENUM@@QEAA@XZ
585; protected: __cdecl COMPUTER::~COMPUTER(void) __ptr64
586??1COMPUTER@@IEAA@XZ
587; public: __cdecl CONN0_ENUM_OBJ::~CONN0_ENUM_OBJ(void) __ptr64
588??1CONN0_ENUM_OBJ@@QEAA@XZ
589; public: __cdecl CONN1_ENUM_OBJ::~CONN1_ENUM_OBJ(void) __ptr64
590??1CONN1_ENUM_OBJ@@QEAA@XZ
591; public: __cdecl CONN_ENUM::~CONN_ENUM(void) __ptr64
592??1CONN_ENUM@@QEAA@XZ
593; public: __cdecl CONTEXT_ENUM_OBJ::~CONTEXT_ENUM_OBJ(void) __ptr64
594??1CONTEXT_ENUM_OBJ@@QEAA@XZ
595; public: __cdecl DEVICE::~DEVICE(void) __ptr64
596??1DEVICE@@QEAA@XZ
597; public: __cdecl DOMAIN0_ENUM::~DOMAIN0_ENUM(void) __ptr64
598??1DOMAIN0_ENUM@@QEAA@XZ
599; public: __cdecl DOMAIN0_ENUM_ITER::~DOMAIN0_ENUM_ITER(void) __ptr64
600??1DOMAIN0_ENUM_ITER@@QEAA@XZ
601; public: __cdecl DOMAIN0_ENUM_OBJ::~DOMAIN0_ENUM_OBJ(void) __ptr64
602??1DOMAIN0_ENUM_OBJ@@QEAA@XZ
603; public: __cdecl DOMAIN::~DOMAIN(void) __ptr64
604??1DOMAIN@@QEAA@XZ
605; public: __cdecl DOMAIN_ENUM::~DOMAIN_ENUM(void) __ptr64
606??1DOMAIN_ENUM@@QEAA@XZ
607; public: __cdecl DOMAIN_WITH_DC_CACHE::~DOMAIN_WITH_DC_CACHE(void) __ptr64
608??1DOMAIN_WITH_DC_CACHE@@QEAA@XZ
609; public: __cdecl ENUM_CALLER_LM_OBJ::~ENUM_CALLER_LM_OBJ(void) __ptr64
610??1ENUM_CALLER_LM_OBJ@@QEAA@XZ
611; protected: __cdecl ENUM_OBJ_BASE::~ENUM_OBJ_BASE(void) __ptr64
612??1ENUM_OBJ_BASE@@IEAA@XZ
613; public: __cdecl FILE2_ENUM_OBJ::~FILE2_ENUM_OBJ(void) __ptr64
614??1FILE2_ENUM_OBJ@@QEAA@XZ
615; public: __cdecl FILE3_ENUM::~FILE3_ENUM(void) __ptr64
616??1FILE3_ENUM@@QEAA@XZ
617; public: __cdecl FILE3_ENUM_ITER::~FILE3_ENUM_ITER(void) __ptr64
618??1FILE3_ENUM_ITER@@QEAA@XZ
619; public: __cdecl FILE3_ENUM_OBJ::~FILE3_ENUM_OBJ(void) __ptr64
620??1FILE3_ENUM_OBJ@@QEAA@XZ
621; protected: __cdecl FILE_ENUM::~FILE_ENUM(void) __ptr64
622??1FILE_ENUM@@IEAA@XZ
623; public: __cdecl GROUP0_ENUM::~GROUP0_ENUM(void) __ptr64
624??1GROUP0_ENUM@@QEAA@XZ
625; public: __cdecl GROUP0_ENUM_ITER::~GROUP0_ENUM_ITER(void) __ptr64
626??1GROUP0_ENUM_ITER@@QEAA@XZ
627; public: __cdecl GROUP0_ENUM_OBJ::~GROUP0_ENUM_OBJ(void) __ptr64
628??1GROUP0_ENUM_OBJ@@QEAA@XZ
629; public: __cdecl GROUP1_ENUM_OBJ::~GROUP1_ENUM_OBJ(void) __ptr64
630??1GROUP1_ENUM_OBJ@@QEAA@XZ
631; public: __cdecl GROUP::~GROUP(void) __ptr64
632??1GROUP@@QEAA@XZ
633; public: __cdecl GROUP_0::~GROUP_0(void) __ptr64
634??1GROUP_0@@QEAA@XZ
635; public: __cdecl GROUP_1::~GROUP_1(void) __ptr64
636??1GROUP_1@@QEAA@XZ
637; public: __cdecl GROUP_ENUM::~GROUP_ENUM(void) __ptr64
638??1GROUP_ENUM@@QEAA@XZ
639; public: __cdecl GROUP_MEMB::~GROUP_MEMB(void) __ptr64
640??1GROUP_MEMB@@QEAA@XZ
641; public: __cdecl ITER_DEVICE::~ITER_DEVICE(void) __ptr64
642??1ITER_DEVICE@@QEAA@XZ
643; public: __cdecl ITER_SL_BROWSE_DOMAIN_INFO::~ITER_SL_BROWSE_DOMAIN_INFO(void) __ptr64
644??1ITER_SL_BROWSE_DOMAIN_INFO@@QEAA@XZ
645; public: __cdecl ITER_SL_LM_RESUME_BUFFER::~ITER_SL_LM_RESUME_BUFFER(void) __ptr64
646??1ITER_SL_LM_RESUME_BUFFER@@QEAA@XZ
647; public: __cdecl LM_CONFIG::~LM_CONFIG(void) __ptr64
648??1LM_CONFIG@@QEAA@XZ
649; public: __cdecl LM_ENUM::~LM_ENUM(void) __ptr64
650??1LM_ENUM@@QEAA@XZ
651; protected: __cdecl LM_ENUM_ITER::~LM_ENUM_ITER(void) __ptr64
652??1LM_ENUM_ITER@@IEAA@XZ
653; protected: __cdecl LM_FILE::~LM_FILE(void) __ptr64
654??1LM_FILE@@IEAA@XZ
655; public: __cdecl LM_FILE_2::~LM_FILE_2(void) __ptr64
656??1LM_FILE_2@@QEAA@XZ
657; public: __cdecl LM_RESUME_BUFFER::~LM_RESUME_BUFFER(void) __ptr64
658??1LM_RESUME_BUFFER@@QEAA@XZ
659; public: __cdecl LM_RESUME_ENUM::~LM_RESUME_ENUM(void) __ptr64
660??1LM_RESUME_ENUM@@QEAA@XZ
661; protected: __cdecl LM_RESUME_ENUM_ITER::~LM_RESUME_ENUM_ITER(void) __ptr64
662??1LM_RESUME_ENUM_ITER@@IEAA@XZ
663; public: __cdecl LM_SERVICE::~LM_SERVICE(void) __ptr64
664??1LM_SERVICE@@QEAA@XZ
665; public: __cdecl LM_SESSION::~LM_SESSION(void) __ptr64
666??1LM_SESSION@@QEAA@XZ
667; public: __cdecl LM_SESSION_0::~LM_SESSION_0(void) __ptr64
668??1LM_SESSION_0@@QEAA@XZ
669; public: __cdecl LM_SESSION_10::~LM_SESSION_10(void) __ptr64
670??1LM_SESSION_10@@QEAA@XZ
671; public: __cdecl LM_SESSION_1::~LM_SESSION_1(void) __ptr64
672??1LM_SESSION_1@@QEAA@XZ
673; public: __cdecl LM_SRVRES::~LM_SRVRES(void) __ptr64
674??1LM_SRVRES@@QEAA@XZ
675; public: __cdecl LOCAL_USER::~LOCAL_USER(void) __ptr64
676??1LOCAL_USER@@QEAA@XZ
677; public: __cdecl LOCATION::~LOCATION(void) __ptr64
678??1LOCATION@@QEAA@XZ
679; public: __cdecl LOC_LM_ENUM::~LOC_LM_ENUM(void) __ptr64
680??1LOC_LM_ENUM@@QEAA@XZ
681; public: __cdecl LOC_LM_OBJ::~LOC_LM_OBJ(void) __ptr64
682??1LOC_LM_OBJ@@QEAA@XZ
683; public: __cdecl LOC_LM_RESUME_ENUM::~LOC_LM_RESUME_ENUM(void) __ptr64
684??1LOC_LM_RESUME_ENUM@@QEAA@XZ
685; public: __cdecl LSA_ACCOUNT::~LSA_ACCOUNT(void) __ptr64
686??1LSA_ACCOUNT@@QEAA@XZ
687; public: __cdecl LSA_ACCOUNTS_ENUM_OBJ::~LSA_ACCOUNTS_ENUM_OBJ(void) __ptr64
688??1LSA_ACCOUNTS_ENUM_OBJ@@QEAA@XZ
689; public: __cdecl LSA_ACCOUNT_PRIVILEGE_ENUM_ITER::~LSA_ACCOUNT_PRIVILEGE_ENUM_ITER(void) __ptr64
690??1LSA_ACCOUNT_PRIVILEGE_ENUM_ITER@@QEAA@XZ
691; public: __cdecl LSA_ACCT_DOM_INFO_MEM::~LSA_ACCT_DOM_INFO_MEM(void) __ptr64
692??1LSA_ACCT_DOM_INFO_MEM@@QEAA@XZ
693; public: __cdecl LSA_AUDIT_EVENT_INFO_MEM::~LSA_AUDIT_EVENT_INFO_MEM(void) __ptr64
694??1LSA_AUDIT_EVENT_INFO_MEM@@QEAA@XZ
695; public: __cdecl LSA_DOMAIN_INFO::~LSA_DOMAIN_INFO(void) __ptr64
696??1LSA_DOMAIN_INFO@@QEAA@XZ
697; public: __cdecl LSA_ENUM::~LSA_ENUM(void) __ptr64
698??1LSA_ENUM@@QEAA@XZ
699; protected: __cdecl LSA_MEMORY::~LSA_MEMORY(void) __ptr64
700??1LSA_MEMORY@@IEAA@XZ
701; protected: __cdecl LSA_OBJECT::~LSA_OBJECT(void) __ptr64
702??1LSA_OBJECT@@IEAA@XZ
703; public: __cdecl LSA_POLICY::~LSA_POLICY(void) __ptr64
704??1LSA_POLICY@@QEAA@XZ
705; public: __cdecl LSA_PRIMARY_DOM_INFO_MEM::~LSA_PRIMARY_DOM_INFO_MEM(void) __ptr64
706??1LSA_PRIMARY_DOM_INFO_MEM@@QEAA@XZ
707; public: __cdecl LSA_PRIVILEGES_ENUM_OBJ::~LSA_PRIVILEGES_ENUM_OBJ(void) __ptr64
708??1LSA_PRIVILEGES_ENUM_OBJ@@QEAA@XZ
709; public: __cdecl LSA_REF_DOMAIN_MEM::~LSA_REF_DOMAIN_MEM(void) __ptr64
710??1LSA_REF_DOMAIN_MEM@@QEAA@XZ
711; public: __cdecl LSA_SECRET::~LSA_SECRET(void) __ptr64
712??1LSA_SECRET@@QEAA@XZ
713; public: __cdecl LSA_SERVER_ROLE_INFO_MEM::~LSA_SERVER_ROLE_INFO_MEM(void) __ptr64
714??1LSA_SERVER_ROLE_INFO_MEM@@QEAA@XZ
715; public: __cdecl LSA_TRANSLATED_NAME_MEM::~LSA_TRANSLATED_NAME_MEM(void) __ptr64
716??1LSA_TRANSLATED_NAME_MEM@@QEAA@XZ
717; public: __cdecl LSA_TRANSLATED_SID_MEM::~LSA_TRANSLATED_SID_MEM(void) __ptr64
718??1LSA_TRANSLATED_SID_MEM@@QEAA@XZ
719; public: __cdecl LSA_TRUSTED_DC_LIST::~LSA_TRUSTED_DC_LIST(void) __ptr64
720??1LSA_TRUSTED_DC_LIST@@QEAA@XZ
721; public: __cdecl LSA_TRUSTED_DOMAIN::~LSA_TRUSTED_DOMAIN(void) __ptr64
722??1LSA_TRUSTED_DOMAIN@@QEAA@XZ
723; public: __cdecl LSA_TRUST_INFO_MEM::~LSA_TRUST_INFO_MEM(void) __ptr64
724??1LSA_TRUST_INFO_MEM@@QEAA@XZ
725; public: __cdecl MEMBERSHIP_LM_OBJ::~MEMBERSHIP_LM_OBJ(void) __ptr64
726??1MEMBERSHIP_LM_OBJ@@QEAA@XZ
727; protected: __cdecl NET_ACCESS::~NET_ACCESS(void) __ptr64
728??1NET_ACCESS@@IEAA@XZ
729; public: __cdecl NET_ACCESS_1::~NET_ACCESS_1(void) __ptr64
730??1NET_ACCESS_1@@QEAA@XZ
731; public: __cdecl NET_NAME::~NET_NAME(void) __ptr64
732??1NET_NAME@@QEAA@XZ
733; public: __cdecl NEW_LM_OBJ::~NEW_LM_OBJ(void) __ptr64
734??1NEW_LM_OBJ@@QEAA@XZ
735; protected: __cdecl NT_ACCOUNT_ENUM::~NT_ACCOUNT_ENUM(void) __ptr64
736??1NT_ACCOUNT_ENUM@@IEAA@XZ
737; public: __cdecl NT_GROUP_ENUM::~NT_GROUP_ENUM(void) __ptr64
738??1NT_GROUP_ENUM@@QEAA@XZ
739; public: __cdecl NT_GROUP_ENUM_OBJ::~NT_GROUP_ENUM_OBJ(void) __ptr64
740??1NT_GROUP_ENUM_OBJ@@QEAA@XZ
741; public: __cdecl NT_MACHINE_ENUM::~NT_MACHINE_ENUM(void) __ptr64
742??1NT_MACHINE_ENUM@@QEAA@XZ
743; public: __cdecl NT_MACHINE_ENUM_ITER::~NT_MACHINE_ENUM_ITER(void) __ptr64
744??1NT_MACHINE_ENUM_ITER@@QEAA@XZ
745; public: __cdecl NT_MACHINE_ENUM_OBJ::~NT_MACHINE_ENUM_OBJ(void) __ptr64
746??1NT_MACHINE_ENUM_OBJ@@QEAA@XZ
747; protected: __cdecl NT_MEMORY::~NT_MEMORY(void) __ptr64
748??1NT_MEMORY@@IEAA@XZ
749; public: __cdecl NT_USER_ENUM::~NT_USER_ENUM(void) __ptr64
750??1NT_USER_ENUM@@QEAA@XZ
751; public: __cdecl NT_USER_ENUM_OBJ::~NT_USER_ENUM_OBJ(void) __ptr64
752??1NT_USER_ENUM_OBJ@@QEAA@XZ
753; public: __cdecl OS_ACE::~OS_ACE(void) __ptr64
754??1OS_ACE@@QEAA@XZ
755; public: __cdecl OS_ACL::~OS_ACL(void) __ptr64
756??1OS_ACL@@QEAA@XZ
757; public: __cdecl OS_ACL_SUBJECT_ITER::~OS_ACL_SUBJECT_ITER(void) __ptr64
758??1OS_ACL_SUBJECT_ITER@@QEAA@XZ
759; public: __cdecl OS_DACL_SUBJECT_ITER::~OS_DACL_SUBJECT_ITER(void) __ptr64
760??1OS_DACL_SUBJECT_ITER@@QEAA@XZ
761; protected: __cdecl OS_OBJECT_WITH_DATA::~OS_OBJECT_WITH_DATA(void) __ptr64
762??1OS_OBJECT_WITH_DATA@@IEAA@XZ
763; public: __cdecl OS_PRIVILEGE_SET::~OS_PRIVILEGE_SET(void) __ptr64
764??1OS_PRIVILEGE_SET@@QEAA@XZ
765; public: __cdecl OS_SACL_SUBJECT_ITER::~OS_SACL_SUBJECT_ITER(void) __ptr64
766??1OS_SACL_SUBJECT_ITER@@QEAA@XZ
767; public: __cdecl OS_SECURITY_DESCRIPTOR::~OS_SECURITY_DESCRIPTOR(void) __ptr64
768??1OS_SECURITY_DESCRIPTOR@@QEAA@XZ
769; public: __cdecl OS_SID::~OS_SID(void) __ptr64
770??1OS_SID@@QEAA@XZ
771; public: __cdecl REG_VALUE_INFO_STRUCT::~REG_VALUE_INFO_STRUCT(void) __ptr64
772??1REG_VALUE_INFO_STRUCT@@QEAA@XZ
773; public: __cdecl SAM_ALIAS::~SAM_ALIAS(void) __ptr64
774??1SAM_ALIAS@@QEAA@XZ
775; public: __cdecl SAM_DOMAIN::~SAM_DOMAIN(void) __ptr64
776??1SAM_DOMAIN@@QEAA@XZ
777; public: __cdecl SAM_GROUP::~SAM_GROUP(void) __ptr64
778??1SAM_GROUP@@QEAA@XZ
779; public: __cdecl SAM_MEMORY::~SAM_MEMORY(void) __ptr64
780??1SAM_MEMORY@@QEAA@XZ
781; protected: __cdecl SAM_OBJECT::~SAM_OBJECT(void) __ptr64
782??1SAM_OBJECT@@IEAA@XZ
783; public: __cdecl SAM_PSWD_DOM_INFO_MEM::~SAM_PSWD_DOM_INFO_MEM(void) __ptr64
784??1SAM_PSWD_DOM_INFO_MEM@@QEAA@XZ
785; public: __cdecl SAM_RID_ENUMERATION_MEM::~SAM_RID_ENUMERATION_MEM(void) __ptr64
786??1SAM_RID_ENUMERATION_MEM@@QEAA@XZ
787; public: __cdecl SAM_RID_MEM::~SAM_RID_MEM(void) __ptr64
788??1SAM_RID_MEM@@QEAA@XZ
789; public: __cdecl SAM_SERVER::~SAM_SERVER(void) __ptr64
790??1SAM_SERVER@@QEAA@XZ
791; public: __cdecl SAM_SID_MEM::~SAM_SID_MEM(void) __ptr64
792??1SAM_SID_MEM@@QEAA@XZ
793; public: __cdecl SAM_SID_NAME_USE_MEM::~SAM_SID_NAME_USE_MEM(void) __ptr64
794??1SAM_SID_NAME_USE_MEM@@QEAA@XZ
795; public: __cdecl SAM_USER::~SAM_USER(void) __ptr64
796??1SAM_USER@@QEAA@XZ
797; public: __cdecl SAM_USER_ENUM::~SAM_USER_ENUM(void) __ptr64
798??1SAM_USER_ENUM@@QEAA@XZ
799; public: __cdecl SAM_USER_ENUM_ITER::~SAM_USER_ENUM_ITER(void) __ptr64
800??1SAM_USER_ENUM_ITER@@QEAA@XZ
801; public: __cdecl SAM_USER_ENUM_OBJ::~SAM_USER_ENUM_OBJ(void) __ptr64
802??1SAM_USER_ENUM_OBJ@@QEAA@XZ
803; public: __cdecl SC_MANAGER::~SC_MANAGER(void) __ptr64
804??1SC_MANAGER@@QEAA@XZ
805; public: __cdecl SC_SERVICE::~SC_SERVICE(void) __ptr64
806??1SC_SERVICE@@QEAA@XZ
807; public: __cdecl SERVER1_ENUM::~SERVER1_ENUM(void) __ptr64
808??1SERVER1_ENUM@@QEAA@XZ
809; public: __cdecl SERVER1_ENUM_ITER::~SERVER1_ENUM_ITER(void) __ptr64
810??1SERVER1_ENUM_ITER@@QEAA@XZ
811; public: __cdecl SERVER1_ENUM_OBJ::~SERVER1_ENUM_OBJ(void) __ptr64
812??1SERVER1_ENUM_OBJ@@QEAA@XZ
813; public: __cdecl SERVER_0::~SERVER_0(void) __ptr64
814??1SERVER_0@@QEAA@XZ
815; public: __cdecl SERVER_1::~SERVER_1(void) __ptr64
816??1SERVER_1@@QEAA@XZ
817; public: __cdecl SERVER_2::~SERVER_2(void) __ptr64
818??1SERVER_2@@QEAA@XZ
819; public: __cdecl SERVER_ENUM::~SERVER_ENUM(void) __ptr64
820??1SERVER_ENUM@@QEAA@XZ
821; public: __cdecl SERVICE_CONTROL::~SERVICE_CONTROL(void) __ptr64
822??1SERVICE_CONTROL@@QEAA@XZ
823; public: __cdecl SERVICE_ENUM::~SERVICE_ENUM(void) __ptr64
824??1SERVICE_ENUM@@QEAA@XZ
825; public: __cdecl SERVICE_ENUM_OBJ::~SERVICE_ENUM_OBJ(void) __ptr64
826??1SERVICE_ENUM_OBJ@@QEAA@XZ
827; public: __cdecl SESSION0_ENUM::~SESSION0_ENUM(void) __ptr64
828??1SESSION0_ENUM@@QEAA@XZ
829; public: __cdecl SESSION0_ENUM_ITER::~SESSION0_ENUM_ITER(void) __ptr64
830??1SESSION0_ENUM_ITER@@QEAA@XZ
831; public: __cdecl SESSION0_ENUM_OBJ::~SESSION0_ENUM_OBJ(void) __ptr64
832??1SESSION0_ENUM_OBJ@@QEAA@XZ
833; public: __cdecl SESSION1_ENUM_OBJ::~SESSION1_ENUM_OBJ(void) __ptr64
834??1SESSION1_ENUM_OBJ@@QEAA@XZ
835; public: __cdecl SESSION_ENUM::~SESSION_ENUM(void) __ptr64
836??1SESSION_ENUM@@QEAA@XZ
837; public: __cdecl SHARE1_ENUM_OBJ::~SHARE1_ENUM_OBJ(void) __ptr64
838??1SHARE1_ENUM_OBJ@@QEAA@XZ
839; public: __cdecl SHARE2_ENUM_OBJ::~SHARE2_ENUM_OBJ(void) __ptr64
840??1SHARE2_ENUM_OBJ@@QEAA@XZ
841; public: __cdecl SHARE::~SHARE(void) __ptr64
842??1SHARE@@QEAA@XZ
843; public: __cdecl SHARE_1::~SHARE_1(void) __ptr64
844??1SHARE_1@@QEAA@XZ
845; public: __cdecl SHARE_2::~SHARE_2(void) __ptr64
846??1SHARE_2@@QEAA@XZ
847; public: __cdecl SHARE_ENUM::~SHARE_ENUM(void) __ptr64
848??1SHARE_ENUM@@QEAA@XZ
849; public: __cdecl SLIST_OF_ADMIN_AUTHORITY::~SLIST_OF_ADMIN_AUTHORITY(void) __ptr64
850??1SLIST_OF_ADMIN_AUTHORITY@@QEAA@XZ
851; public: __cdecl SLIST_OF_API_SESSION::~SLIST_OF_API_SESSION(void) __ptr64
852??1SLIST_OF_API_SESSION@@QEAA@XZ
853; public: __cdecl SLIST_OF_BROWSE_DOMAIN_INFO::~SLIST_OF_BROWSE_DOMAIN_INFO(void) __ptr64
854??1SLIST_OF_BROWSE_DOMAIN_INFO@@QEAA@XZ
855; public: __cdecl SLIST_OF_LM_RESUME_BUFFER::~SLIST_OF_LM_RESUME_BUFFER(void) __ptr64
856??1SLIST_OF_LM_RESUME_BUFFER@@QEAA@XZ
857; public: __cdecl TIME_OF_DAY::~TIME_OF_DAY(void) __ptr64
858??1TIME_OF_DAY@@QEAA@XZ
859; public: __cdecl TRIPLE_SERVER_ENUM::~TRIPLE_SERVER_ENUM(void) __ptr64
860??1TRIPLE_SERVER_ENUM@@QEAA@XZ
861; public: __cdecl TRIPLE_SERVER_ENUM_OBJ::~TRIPLE_SERVER_ENUM_OBJ(void) __ptr64
862??1TRIPLE_SERVER_ENUM_OBJ@@QEAA@XZ
863; public: __cdecl TRUSTED_DOMAIN_ENUM::~TRUSTED_DOMAIN_ENUM(void) __ptr64
864??1TRUSTED_DOMAIN_ENUM@@QEAA@XZ
865; public: __cdecl TRUSTED_DOMAIN_ENUM_OBJ::~TRUSTED_DOMAIN_ENUM_OBJ(void) __ptr64
866??1TRUSTED_DOMAIN_ENUM_OBJ@@QEAA@XZ
867; public: __cdecl USE1_ENUM_OBJ::~USE1_ENUM_OBJ(void) __ptr64
868??1USE1_ENUM_OBJ@@QEAA@XZ
869; public: __cdecl USER0_ENUM::~USER0_ENUM(void) __ptr64
870??1USER0_ENUM@@QEAA@XZ
871; public: __cdecl USER0_ENUM_ITER::~USER0_ENUM_ITER(void) __ptr64
872??1USER0_ENUM_ITER@@QEAA@XZ
873; public: __cdecl USER0_ENUM_OBJ::~USER0_ENUM_OBJ(void) __ptr64
874??1USER0_ENUM_OBJ@@QEAA@XZ
875; public: __cdecl USER10_ENUM_OBJ::~USER10_ENUM_OBJ(void) __ptr64
876??1USER10_ENUM_OBJ@@QEAA@XZ
877; public: __cdecl USER1_ENUM_OBJ::~USER1_ENUM_OBJ(void) __ptr64
878??1USER1_ENUM_OBJ@@QEAA@XZ
879; public: __cdecl USER2_ENUM_OBJ::~USER2_ENUM_OBJ(void) __ptr64
880??1USER2_ENUM_OBJ@@QEAA@XZ
881; public: __cdecl USER::~USER(void) __ptr64
882??1USER@@QEAA@XZ
883; public: __cdecl USER_11::~USER_11(void) __ptr64
884??1USER_11@@QEAA@XZ
885; public: virtual __cdecl USER_2::~USER_2(void) __ptr64
886??1USER_2@@UEAA@XZ
887; public: virtual __cdecl USER_3::~USER_3(void) __ptr64
888??1USER_3@@UEAA@XZ
889; public: __cdecl USER_ENUM::~USER_ENUM(void) __ptr64
890??1USER_ENUM@@QEAA@XZ
891; public: __cdecl USER_MEMB::~USER_MEMB(void) __ptr64
892??1USER_MEMB@@QEAA@XZ
893; public: __cdecl USE_ENUM::~USE_ENUM(void) __ptr64
894??1USE_ENUM@@QEAA@XZ
895; public: __cdecl WKSTA_10::~WKSTA_10(void) __ptr64
896??1WKSTA_10@@QEAA@XZ
897; public: __cdecl WKSTA_1::~WKSTA_1(void) __ptr64
898??1WKSTA_1@@QEAA@XZ
899; public: __cdecl WKSTA_USER_1::~WKSTA_USER_1(void) __ptr64
900??1WKSTA_USER_1@@QEAA@XZ
901; public: class ALLOC_STR & __ptr64 __cdecl ALLOC_STR::operator=(class ALLOC_STR const & __ptr64) __ptr64
902??4ALLOC_STR@@QEAAAEAV0@AEBV0@@Z
903; public: class ALLOC_STR & __ptr64 __cdecl ALLOC_STR::operator=(unsigned short const * __ptr64) __ptr64
904??4ALLOC_STR@@QEAAAEAV0@PEBG@Z
905; public: int __cdecl BASE::operator!(void)const __ptr64
906??7BASE@@QEBAHXZ
907; public: int __cdecl OS_LUID::operator==(class OS_LUID const & __ptr64)const __ptr64
908??8OS_LUID@@QEBAHAEBV0@@Z
909; public: int __cdecl OS_SID::operator==(class OS_SID const & __ptr64)const __ptr64
910??8OS_SID@@QEBAHAEBV0@@Z
911; public: struct _UNICODE_STRING const & __ptr64 __cdecl LSA_TRUSTED_DC_LIST::operator[](int)const __ptr64
912??ALSA_TRUSTED_DC_LIST@@QEBAAEBU_UNICODE_STRING@@H@Z
913; public: unsigned short const * __ptr64 __cdecl NLS_STR::operator[](class ISTR const & __ptr64)const __ptr64
914??ANLS_STR@@QEBAPEBGAEBVISTR@@@Z
915; public: __cdecl NLS_STR::operator unsigned short const * __ptr64(void)const __ptr64
916??BNLS_STR@@QEBAPEBGXZ
917; public: __cdecl OS_ACL::operator struct _ACL * __ptr64(void)const __ptr64
918??BOS_ACL@@QEBAPEAU_ACL@@XZ
919; public: __cdecl OS_SID::operator void * __ptr64(void)const __ptr64
920??BOS_SID@@QEBAPEAXXZ
921; public: class CHARDEVQ1_ENUM_OBJ const * __ptr64 __cdecl CHARDEVQ1_ENUM_ITER::operator()(void) __ptr64
922??RCHARDEVQ1_ENUM_ITER@@QEAAPEBVCHARDEVQ1_ENUM_OBJ@@XZ
923; public: class CONN0_ENUM_OBJ const * __ptr64 __cdecl CONN0_ENUM_ITER::operator()(void) __ptr64
924??RCONN0_ENUM_ITER@@QEAAPEBVCONN0_ENUM_OBJ@@XZ
925; public: class CONN1_ENUM_OBJ const * __ptr64 __cdecl CONN1_ENUM_ITER::operator()(void) __ptr64
926??RCONN1_ENUM_ITER@@QEAAPEBVCONN1_ENUM_OBJ@@XZ
927; public: class CONTEXT_ENUM_OBJ const * __ptr64 __cdecl CONTEXT_ENUM_ITER::operator()(void) __ptr64
928??RCONTEXT_ENUM_ITER@@QEAAPEBVCONTEXT_ENUM_OBJ@@XZ
929; public: class DOMAIN0_ENUM_OBJ const * __ptr64 __cdecl DOMAIN0_ENUM_ITER::operator()(void) __ptr64
930??RDOMAIN0_ENUM_ITER@@QEAAPEBVDOMAIN0_ENUM_OBJ@@XZ
931; public: class FILE3_ENUM_OBJ const * __ptr64 __cdecl FILE3_ENUM_ITER::operator()(long * __ptr64,int) __ptr64
932??RFILE3_ENUM_ITER@@QEAAPEBVFILE3_ENUM_OBJ@@PEAJH@Z
933; public: class GROUP0_ENUM_OBJ const * __ptr64 __cdecl GROUP0_ENUM_ITER::operator()(void) __ptr64
934??RGROUP0_ENUM_ITER@@QEAAPEBVGROUP0_ENUM_OBJ@@XZ
935; public: class GROUP1_ENUM_OBJ const * __ptr64 __cdecl GROUP1_ENUM_ITER::operator()(void) __ptr64
936??RGROUP1_ENUM_ITER@@QEAAPEBVGROUP1_ENUM_OBJ@@XZ
937; public: class OS_LUID_AND_ATTRIBUTES const * __ptr64 __cdecl LSA_ACCOUNT_PRIVILEGE_ENUM_ITER::operator()(void) __ptr64
938??RLSA_ACCOUNT_PRIVILEGE_ENUM_ITER@@QEAAPEBVOS_LUID_AND_ATTRIBUTES@@XZ
939; public: class NT_MACHINE_ENUM_OBJ const * __ptr64 __cdecl NT_MACHINE_ENUM_ITER::operator()(long * __ptr64,int) __ptr64
940??RNT_MACHINE_ENUM_ITER@@QEAAPEBVNT_MACHINE_ENUM_OBJ@@PEAJH@Z
941; public: class SERVER1_ENUM_OBJ const * __ptr64 __cdecl SERVER1_ENUM_ITER::operator()(void) __ptr64
942??RSERVER1_ENUM_ITER@@QEAAPEBVSERVER1_ENUM_OBJ@@XZ
943; public: class SERVICE_ENUM_OBJ const * __ptr64 __cdecl SERVICE_ENUM_ITER::operator()(void) __ptr64
944??RSERVICE_ENUM_ITER@@QEAAPEBVSERVICE_ENUM_OBJ@@XZ
945; public: class SESSION0_ENUM_OBJ const * __ptr64 __cdecl SESSION0_ENUM_ITER::operator()(void) __ptr64
946??RSESSION0_ENUM_ITER@@QEAAPEBVSESSION0_ENUM_OBJ@@XZ
947; public: class SESSION1_ENUM_OBJ const * __ptr64 __cdecl SESSION1_ENUM_ITER::operator()(void) __ptr64
948??RSESSION1_ENUM_ITER@@QEAAPEBVSESSION1_ENUM_OBJ@@XZ
949; public: class SHARE1_ENUM_OBJ const * __ptr64 __cdecl SHARE1_ENUM_ITER::operator()(void) __ptr64
950??RSHARE1_ENUM_ITER@@QEAAPEBVSHARE1_ENUM_OBJ@@XZ
951; public: class SHARE2_ENUM_OBJ const * __ptr64 __cdecl SHARE2_ENUM_ITER::operator()(void) __ptr64
952??RSHARE2_ENUM_ITER@@QEAAPEBVSHARE2_ENUM_OBJ@@XZ
953; public: class TRIPLE_SERVER_ENUM_OBJ const * __ptr64 __cdecl TRIPLE_SERVER_ENUM_ITER::operator()(void) __ptr64
954??RTRIPLE_SERVER_ENUM_ITER@@QEAAPEBVTRIPLE_SERVER_ENUM_OBJ@@XZ
955; public: class USE1_ENUM_OBJ const * __ptr64 __cdecl USE1_ENUM_ITER::operator()(void) __ptr64
956??RUSE1_ENUM_ITER@@QEAAPEBVUSE1_ENUM_OBJ@@XZ
957; public: class USER0_ENUM_OBJ const * __ptr64 __cdecl USER0_ENUM_ITER::operator()(long * __ptr64,int) __ptr64
958??RUSER0_ENUM_ITER@@QEAAPEBVUSER0_ENUM_OBJ@@PEAJH@Z
959; public: long __cdecl SLIST_OF_NLS_STR::Add(class NLS_STR const * __ptr64) __ptr64
960?Add@SLIST_OF_NLS_STR@@QEAAJPEBVNLS_STR@@@Z
961; public: long __cdecl OS_ACL::AddACE(unsigned long,class OS_ACE const & __ptr64) __ptr64
962?AddACE@OS_ACL@@QEAAJKAEBVOS_ACE@@@Z
963; public: long __cdecl MEMBERSHIP_LM_OBJ::AddAssocName(unsigned short const * __ptr64) __ptr64
964?AddAssocName@MEMBERSHIP_LM_OBJ@@QEAAJPEBG@Z
965; private: static long __cdecl DOMAIN_WITH_DC_CACHE::AddDcCache(struct _DC_CACHE_ENTRY * __ptr64 * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64)
966?AddDcCache@DOMAIN_WITH_DC_CACHE@@CAJPEAPEAU_DC_CACHE_ENTRY@@PEBG1@Z
967; private: void __cdecl BROWSE_DOMAIN_INFO::AddDomainSource(unsigned long) __ptr64
968?AddDomainSource@BROWSE_DOMAIN_INFO@@AEAAXK@Z
969; private: long __cdecl BROWSE_DOMAIN_ENUM::AddDomainToList(unsigned short const * __ptr64,unsigned long,int) __ptr64
970?AddDomainToList@BROWSE_DOMAIN_ENUM@@AEAAJPEBGKH@Z
971; public: long __cdecl SAM_ALIAS::AddMember(void * __ptr64) __ptr64
972?AddMember@SAM_ALIAS@@QEAAJPEAX@Z
973; public: long __cdecl SAM_GROUP::AddMember(unsigned long) __ptr64
974?AddMember@SAM_GROUP@@QEAAJK@Z
975; public: long __cdecl SAM_ALIAS::AddMembers(void * __ptr64 * __ptr64,unsigned int) __ptr64
976?AddMembers@SAM_ALIAS@@QEAAJPEAPEAXI@Z
977; public: long __cdecl SAM_GROUP::AddMembers(unsigned long * __ptr64,unsigned int) __ptr64
978?AddMembers@SAM_GROUP@@QEAAJPEAKI@Z
979; public: long __cdecl OS_PRIVILEGE_SET::AddPrivilege(struct _LUID,unsigned long) __ptr64
980?AddPrivilege@OS_PRIVILEGE_SET@@QEAAJU_LUID@@K@Z
981; public: long __cdecl SLIST_OF_ADMIN_AUTHORITY::Append(class ADMIN_AUTHORITY const * __ptr64) __ptr64
982?Append@SLIST_OF_ADMIN_AUTHORITY@@QEAAJPEBVADMIN_AUTHORITY@@@Z
983; public: long __cdecl SLIST_OF_API_SESSION::Append(class API_SESSION const * __ptr64) __ptr64
984?Append@SLIST_OF_API_SESSION@@QEAAJPEBVAPI_SESSION@@@Z
985; public: long __cdecl SLIST_OF_BROWSE_DOMAIN_INFO::Append(class BROWSE_DOMAIN_INFO const * __ptr64) __ptr64
986?Append@SLIST_OF_BROWSE_DOMAIN_INFO@@QEAAJPEBVBROWSE_DOMAIN_INFO@@@Z
987; public: long __cdecl SLIST_OF_LM_RESUME_BUFFER::Append(class LM_RESUME_BUFFER const * __ptr64) __ptr64
988?Append@SLIST_OF_LM_RESUME_BUFFER@@QEAAJPEBVLM_RESUME_BUFFER@@@Z
989; public: long __cdecl SLIST_OF_NLS_STR::Append(class NLS_STR const * __ptr64) __ptr64
990?Append@SLIST_OF_NLS_STR@@QEAAJPEBVNLS_STR@@@Z
991; public: int __cdecl CHARDEVQ1_ENUM_ITER::Backup(void) __ptr64
992?Backup@CHARDEVQ1_ENUM_ITER@@QEAAHXZ
993; public: int __cdecl CONN0_ENUM_ITER::Backup(void) __ptr64
994?Backup@CONN0_ENUM_ITER@@QEAAHXZ
995; public: int __cdecl CONN1_ENUM_ITER::Backup(void) __ptr64
996?Backup@CONN1_ENUM_ITER@@QEAAHXZ
997; public: int __cdecl CONTEXT_ENUM_ITER::Backup(void) __ptr64
998?Backup@CONTEXT_ENUM_ITER@@QEAAHXZ
999; public: int __cdecl DOMAIN0_ENUM_ITER::Backup(void) __ptr64
1000?Backup@DOMAIN0_ENUM_ITER@@QEAAHXZ
1001; public: int __cdecl GROUP0_ENUM_ITER::Backup(void) __ptr64
1002?Backup@GROUP0_ENUM_ITER@@QEAAHXZ
1003; public: int __cdecl GROUP1_ENUM_ITER::Backup(void) __ptr64
1004?Backup@GROUP1_ENUM_ITER@@QEAAHXZ
1005; public: int __cdecl SERVER1_ENUM_ITER::Backup(void) __ptr64
1006?Backup@SERVER1_ENUM_ITER@@QEAAHXZ
1007; public: int __cdecl SERVICE_ENUM_ITER::Backup(void) __ptr64
1008?Backup@SERVICE_ENUM_ITER@@QEAAHXZ
1009; public: int __cdecl SESSION0_ENUM_ITER::Backup(void) __ptr64
1010?Backup@SESSION0_ENUM_ITER@@QEAAHXZ
1011; public: int __cdecl SESSION1_ENUM_ITER::Backup(void) __ptr64
1012?Backup@SESSION1_ENUM_ITER@@QEAAHXZ
1013; public: int __cdecl SHARE1_ENUM_ITER::Backup(void) __ptr64
1014?Backup@SHARE1_ENUM_ITER@@QEAAHXZ
1015; public: int __cdecl SHARE2_ENUM_ITER::Backup(void) __ptr64
1016?Backup@SHARE2_ENUM_ITER@@QEAAHXZ
1017; public: int __cdecl TRIPLE_SERVER_ENUM_ITER::Backup(void) __ptr64
1018?Backup@TRIPLE_SERVER_ENUM_ITER@@QEAAHXZ
1019; public: int __cdecl USE1_ENUM_ITER::Backup(void) __ptr64
1020?Backup@USE1_ENUM_ITER@@QEAAHXZ
1021; public: static long __cdecl NT_ACCOUNTS_UTILITY::BuildAndCopySysSid(class OS_SID * __ptr64,struct _SID_IDENTIFIER_AUTHORITY * __ptr64,unsigned char,unsigned long,unsigned long,unsigned long,unsigned long,unsigned long,unsigned long,unsigned long,unsigned long)
1022?BuildAndCopySysSid@NT_ACCOUNTS_UTILITY@@SAJPEAVOS_SID@@PEAU_SID_IDENTIFIER_AUTHORITY@@EKKKKKKKK@Z
1023; public: static long __cdecl NT_ACCOUNTS_UTILITY::BuildQualifiedAccountName(class NLS_STR * __ptr64,class NLS_STR const & __ptr64,class NLS_STR const & __ptr64,class NLS_STR const * __ptr64,class NLS_STR const * __ptr64,enum _SID_NAME_USE)
1024?BuildQualifiedAccountName@NT_ACCOUNTS_UTILITY@@SAJPEAVNLS_STR@@AEBV2@1PEBV2@2W4_SID_NAME_USE@@@Z
1025; public: static long __cdecl NT_ACCOUNTS_UTILITY::BuildQualifiedAccountName(class NLS_STR * __ptr64,class NLS_STR const & __ptr64,void * __ptr64,class NLS_STR const & __ptr64,class NLS_STR const * __ptr64,void * __ptr64,enum _SID_NAME_USE)
1026?BuildQualifiedAccountName@NT_ACCOUNTS_UTILITY@@SAJPEAVNLS_STR@@AEBV2@PEAX1PEBV2@2W4_SID_NAME_USE@@@Z
1027; private: virtual long __cdecl ALIAS_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1028?CallAPI@ALIAS_ENUM@@EEAAJHPEAPEAEPEAI@Z
1029; private: virtual long __cdecl CHARDEVQ_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1030?CallAPI@CHARDEVQ_ENUM@@EEAAJPEAPEAEPEAI@Z
1031; private: virtual long __cdecl CONN_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1032?CallAPI@CONN_ENUM@@EEAAJPEAPEAEPEAI@Z
1033; protected: virtual long __cdecl CONTEXT_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1034?CallAPI@CONTEXT_ENUM@@MEAAJPEAPEAEPEAI@Z
1035; protected: virtual long __cdecl DEVICE2::CallAPI(void) __ptr64
1036?CallAPI@DEVICE2@@MEAAJXZ
1037; protected: virtual long __cdecl DEVICE::CallAPI(void) __ptr64
1038?CallAPI@DEVICE@@MEAAJXZ
1039; private: virtual long __cdecl DOMAIN_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1040?CallAPI@DOMAIN_ENUM@@EEAAJPEAPEAEPEAI@Z
1041; private: virtual long __cdecl FILE_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1042?CallAPI@FILE_ENUM@@EEAAJHPEAPEAEPEAI@Z
1043; private: virtual long __cdecl GROUP_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1044?CallAPI@GROUP_ENUM@@EEAAJPEAPEAEPEAI@Z
1045; protected: virtual long __cdecl GROUP_MEMB::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1046?CallAPI@GROUP_MEMB@@MEAAJPEAPEAEPEAI@Z
1047; private: virtual long __cdecl LSA_ACCOUNTS_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1048?CallAPI@LSA_ACCOUNTS_ENUM@@EEAAJHPEAPEAEPEAI@Z
1049; protected: virtual long __cdecl LSA_PRIVILEGES_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1050?CallAPI@LSA_PRIVILEGES_ENUM@@MEAAJHPEAPEAEPEAI@Z
1051; private: virtual long __cdecl NT_ACCOUNT_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1052?CallAPI@NT_ACCOUNT_ENUM@@EEAAJHPEAPEAEPEAI@Z
1053; private: virtual long __cdecl SAM_USER_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1054?CallAPI@SAM_USER_ENUM@@EEAAJHPEAPEAEPEAI@Z
1055; private: virtual long __cdecl SERVER_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1056?CallAPI@SERVER_ENUM@@EEAAJPEAPEAEPEAI@Z
1057; private: virtual long __cdecl SERVICE_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1058?CallAPI@SERVICE_ENUM@@EEAAJPEAPEAEPEAI@Z
1059; private: virtual long __cdecl SESSION_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1060?CallAPI@SESSION_ENUM@@EEAAJPEAPEAEPEAI@Z
1061; private: virtual long __cdecl SHARE_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1062?CallAPI@SHARE_ENUM@@EEAAJPEAPEAEPEAI@Z
1063; private: virtual long __cdecl TRIPLE_SERVER_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1064?CallAPI@TRIPLE_SERVER_ENUM@@EEAAJPEAPEAEPEAI@Z
1065; private: virtual long __cdecl TRUSTED_DOMAIN_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1066?CallAPI@TRUSTED_DOMAIN_ENUM@@EEAAJHPEAPEAEPEAI@Z
1067; private: virtual long __cdecl USER_ENUM::CallAPI(int,unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1068?CallAPI@USER_ENUM@@EEAAJHPEAPEAEPEAI@Z
1069; protected: virtual long __cdecl USER_MEMB::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1070?CallAPI@USER_MEMB@@MEAAJPEAPEAEPEAI@Z
1071; private: virtual long __cdecl USE_ENUM::CallAPI(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1072?CallAPI@USE_ENUM@@EEAAJPEAPEAEPEAI@Z
1073; public: long __cdecl SC_SERVICE::ChangeConfig(unsigned int,unsigned int,unsigned int,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1074?ChangeConfig@SC_SERVICE@@QEAAJIIIPEBG00000@Z
1075; public: long __cdecl NEW_LM_OBJ::ChangeToNew(void) __ptr64
1076?ChangeToNew@NEW_LM_OBJ@@QEAAJXZ
1077; public: long __cdecl LOCATION::CheckIfNT(int * __ptr64) __ptr64
1078?CheckIfNT@LOCATION@@QEAAJPEAH@Z
1079; public: long __cdecl LOCATION::CheckIfNT(int * __ptr64,enum LOCATION_NT_TYPE * __ptr64) __ptr64
1080?CheckIfNT@LOCATION@@QEAAJPEAHPEAW4LOCATION_NT_TYPE@@@Z
1081; public: long __cdecl LSA_POLICY::CheckIfShutDownOnFull(int * __ptr64) __ptr64
1082?CheckIfShutDownOnFull@LSA_POLICY@@QEAAJPEAH@Z
1083; protected: void __cdecl LSA_POLICY::CleanupUnistrArray(struct _UNICODE_STRING * __ptr64,unsigned long) __ptr64
1084?CleanupUnistrArray@LSA_POLICY@@IEAAXPEAU_UNICODE_STRING@@K@Z
1085; public: void __cdecl OS_PRIVILEGE_SET::Clear(void) __ptr64
1086?Clear@OS_PRIVILEGE_SET@@QEAAXXZ
1087; public: void __cdecl SLIST_OF_ADMIN_AUTHORITY::Clear(void) __ptr64
1088?Clear@SLIST_OF_ADMIN_AUTHORITY@@QEAAXXZ
1089; public: void __cdecl SLIST_OF_API_SESSION::Clear(void) __ptr64
1090?Clear@SLIST_OF_API_SESSION@@QEAAXXZ
1091; public: void __cdecl SLIST_OF_BROWSE_DOMAIN_INFO::Clear(void) __ptr64
1092?Clear@SLIST_OF_BROWSE_DOMAIN_INFO@@QEAAXXZ
1093; public: void __cdecl SLIST_OF_LM_RESUME_BUFFER::Clear(void) __ptr64
1094?Clear@SLIST_OF_LM_RESUME_BUFFER@@QEAAXXZ
1095; protected: long __cdecl NEW_LM_OBJ::ClearBuffer(void) __ptr64
1096?ClearBuffer@NEW_LM_OBJ@@IEAAJXZ
1097; private: static long __cdecl DOMAIN_WITH_DC_CACHE::ClearDcCache(struct _DC_CACHE_ENTRY * __ptr64)
1098?ClearDcCache@DOMAIN_WITH_DC_CACHE@@CAJPEAU_DC_CACHE_ENTRY@@@Z
1099; public: long __cdecl NET_ACCESS_1::ClearPerms(void) __ptr64
1100?ClearPerms@NET_ACCESS_1@@QEAAJXZ
1101; public: long __cdecl GROUP_1::CloneFrom(class GROUP_1 const & __ptr64) __ptr64
1102?CloneFrom@GROUP_1@@QEAAJAEBV1@@Z
1103; public: long __cdecl GROUP_MEMB::CloneFrom(class GROUP_MEMB const & __ptr64) __ptr64
1104?CloneFrom@GROUP_MEMB@@QEAAJAEBV1@@Z
1105; public: long __cdecl SHARE_1::CloneFrom(class SHARE_1 const & __ptr64) __ptr64
1106?CloneFrom@SHARE_1@@QEAAJAEBV1@@Z
1107; public: long __cdecl SHARE_2::CloneFrom(class SHARE_2 const & __ptr64) __ptr64
1108?CloneFrom@SHARE_2@@QEAAJAEBV1@@Z
1109; public: long __cdecl USER_2::CloneFrom(class USER_2 const & __ptr64) __ptr64
1110?CloneFrom@USER_2@@QEAAJAEBV1@@Z
1111; public: long __cdecl USER_3::CloneFrom(class USER_3 const & __ptr64) __ptr64
1112?CloneFrom@USER_3@@QEAAJAEBV1@@Z
1113; public: long __cdecl USER_MEMB::CloneFrom(class USER_MEMB const & __ptr64) __ptr64
1114?CloneFrom@USER_MEMB@@QEAAJAEBV1@@Z
1115; public: long __cdecl SERVICE_CONTROL::Close(void) __ptr64
1116?Close@SERVICE_CONTROL@@QEAAJXZ
1117; public: long __cdecl LM_FILE::CloseFile(void) __ptr64
1118?CloseFile@LM_FILE@@QEAAJXZ
1119; public: long __cdecl LSA_OBJECT::CloseHandle(int) __ptr64
1120?CloseHandle@LSA_OBJECT@@QEAAJH@Z
1121; public: long __cdecl SAM_OBJECT::CloseHandle(void) __ptr64
1122?CloseHandle@SAM_OBJECT@@QEAAJXZ
1123; private: void __cdecl TRIPLE_SERVER_ENUM::CombineIntoTriple(struct _SERVER_INFO_101 const * __ptr64,struct _KNOWN_SERVER_INFO const * __ptr64,struct _TRIPLE_SERVER_INFO * __ptr64) __ptr64
1124?CombineIntoTriple@TRIPLE_SERVER_ENUM@@AEAAXPEBU_SERVER_INFO_101@@PEBU_KNOWN_SERVER_INFO@@PEAU_TRIPLE_SERVER_INFO@@@Z
1125; public: long __cdecl OS_ACL_SUBJECT_ITER::Compare(int * __ptr64,class OS_ACL_SUBJECT_ITER * __ptr64) __ptr64
1126?Compare@OS_ACL_SUBJECT_ITER@@QEAAJPEAHPEAV1@@Z
1127; public: long __cdecl OS_SECURITY_DESCRIPTOR::Compare(class OS_SECURITY_DESCRIPTOR * __ptr64,int * __ptr64,int * __ptr64,int * __ptr64,int * __ptr64,struct _GENERIC_MAPPING * __ptr64,struct _GENERIC_MAPPING * __ptr64,int,int) __ptr64
1128?Compare@OS_SECURITY_DESCRIPTOR@@QEAAJPEAV1@PEAH111PEAU_GENERIC_MAPPING@@2HH@Z
1129; public: int __cdecl NET_ACCESS_1::CompareACL(class NET_ACCESS_1 * __ptr64) __ptr64
1130?CompareACL@NET_ACCESS_1@@QEAAHPEAV1@@Z
1131; private: static int __cdecl TRIPLE_SERVER_ENUM::CompareBrowserServers(void const * __ptr64,void const * __ptr64)
1132?CompareBrowserServers@TRIPLE_SERVER_ENUM@@CAHPEBX0@Z
1133; public: virtual int __cdecl OS_DACL_SUBJECT_ITER::CompareCurrentSubject(class OS_ACL_SUBJECT_ITER * __ptr64) __ptr64
1134?CompareCurrentSubject@OS_DACL_SUBJECT_ITER@@UEAAHPEAVOS_ACL_SUBJECT_ITER@@@Z
1135; public: virtual int __cdecl OS_SACL_SUBJECT_ITER::CompareCurrentSubject(class OS_ACL_SUBJECT_ITER * __ptr64) __ptr64
1136?CompareCurrentSubject@OS_SACL_SUBJECT_ITER@@UEAAHPEAVOS_ACL_SUBJECT_ITER@@@Z
1137; private: static int __cdecl DOMAIN0_ENUM::CompareDomains0(void const * __ptr64,void const * __ptr64)
1138?CompareDomains0@DOMAIN0_ENUM@@CAHPEBX0@Z
1139; private: static int __cdecl TRIPLE_SERVER_ENUM::CompareLmServers(void const * __ptr64,void const * __ptr64)
1140?CompareLmServers@TRIPLE_SERVER_ENUM@@CAHPEBX0@Z
1141; private: static int __cdecl TRIPLE_SERVER_ENUM::CompareNtServers(void const * __ptr64,void const * __ptr64)
1142?CompareNtServers@TRIPLE_SERVER_ENUM@@CAHPEBX0@Z
1143; public: long __cdecl DEVICE2::Connect(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
1144?Connect@DEVICE2@@QEAAJPEBG000K@Z
1145; public: long __cdecl DEVICE::Connect(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1146?Connect@DEVICE@@QEAAJPEBG0@Z
1147; long __cdecl ConnectToNullSession(class NLS_STR const & __ptr64)
1148?ConnectToNullSession@@YAJAEBVNLS_STR@@@Z
1149; public: long __cdecl LM_SERVICE::Continue(unsigned int,unsigned int) __ptr64
1150?Continue@LM_SERVICE@@QEAAJII@Z
1151; public: long __cdecl SC_SERVICE::Control(unsigned int,struct _SERVICE_STATUS * __ptr64) __ptr64
1152?Control@SC_SERVICE@@QEAAJIPEAU_SERVICE_STATUS@@@Z
1153; public: long __cdecl OS_ACL::Copy(class OS_ACL const & __ptr64,int) __ptr64
1154?Copy@OS_ACL@@QEAAJAEBV1@H@Z
1155; public: long __cdecl OS_SECURITY_DESCRIPTOR::Copy(class OS_SECURITY_DESCRIPTOR const & __ptr64) __ptr64
1156?Copy@OS_SECURITY_DESCRIPTOR@@QEAAJAEBV1@@Z
1157; public: long __cdecl OS_SID::Copy(class OS_SID const & __ptr64) __ptr64
1158?Copy@OS_SID@@QEAAJAEBV1@@Z
1159; public: long __cdecl NET_ACCESS_1::CopyAccessPerms(class NET_ACCESS_1 const & __ptr64) __ptr64
1160?CopyAccessPerms@NET_ACCESS_1@@QEAAJAEBV1@@Z
1161; private: void __cdecl SERVICE_ENUM::CountServices(unsigned char * __ptr64,unsigned int * __ptr64,unsigned int * __ptr64) __ptr64
1162?CountServices@SERVICE_ENUM@@AEAAXPEAEPEAI1@Z
1163; public: static long __cdecl NT_ACCOUNTS_UTILITY::CrackQualifiedAccountName(class NLS_STR const & __ptr64,class NLS_STR * __ptr64,class NLS_STR * __ptr64)
1164?CrackQualifiedAccountName@NT_ACCOUNTS_UTILITY@@SAJAEBVNLS_STR@@PEAV2@1@Z
1165; public: long __cdecl LSA_SECRET::Create(class LSA_POLICY const & __ptr64,unsigned long) __ptr64
1166?Create@LSA_SECRET@@QEAAJAEBVLSA_POLICY@@K@Z
1167; public: long __cdecl NEW_LM_OBJ::CreateNew(void) __ptr64
1168?CreateNew@NEW_LM_OBJ@@QEAAJXZ
1169; private: void __cdecl DOMAIN::CtAux(unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1170?CtAux@DOMAIN@@AEAAXPEBG0@Z
1171; private: void __cdecl GROUP::CtAux(unsigned short const * __ptr64) __ptr64
1172?CtAux@GROUP@@AEAAXPEBG@Z
1173; private: void __cdecl GROUP_1::CtAux(void) __ptr64
1174?CtAux@GROUP_1@@AEAAXXZ
1175; private: void __cdecl LOC_LM_OBJ::CtAux(void) __ptr64
1176?CtAux@LOC_LM_OBJ@@AEAAXXZ
1177; private: void __cdecl USER::CtAux(unsigned short const * __ptr64) __ptr64
1178?CtAux@USER@@AEAAXPEBG@Z
1179; private: void __cdecl USER_11::CtAux(void) __ptr64
1180?CtAux@USER_11@@AEAAXXZ
1181; private: void __cdecl USER_2::CtAux(void) __ptr64
1182?CtAux@USER_2@@AEAAXXZ
1183; private: void __cdecl USER_3::CtAux(void) __ptr64
1184?CtAux@USER_3@@AEAAXXZ
1185; public: long __cdecl LSA_TRUSTED_DOMAIN::Delete(void) __ptr64
1186?Delete@LSA_TRUSTED_DOMAIN@@QEAAJXZ
1187; public: long __cdecl NET_ACCESS::Delete(void) __ptr64
1188?Delete@NET_ACCESS@@QEAAJXZ
1189; public: long __cdecl NEW_LM_OBJ::Delete(unsigned int) __ptr64
1190?Delete@NEW_LM_OBJ@@QEAAJI@Z
1191; public: long __cdecl SAM_ALIAS::Delete(void) __ptr64
1192?Delete@SAM_ALIAS@@QEAAJXZ
1193; public: long __cdecl SC_SERVICE::Delete(void) __ptr64
1194?Delete@SC_SERVICE@@QEAAJXZ
1195; public: long __cdecl OS_ACL::DeleteACE(unsigned long) __ptr64
1196?DeleteACE@OS_ACL@@QEAAJK@Z
1197; protected: long __cdecl LSA_POLICY::DeleteAllTrustedDomains(void) __ptr64
1198?DeleteAllTrustedDomains@LSA_POLICY@@IEAAJXZ
1199; public: long __cdecl MEMBERSHIP_LM_OBJ::DeleteAssocName(unsigned int) __ptr64
1200?DeleteAssocName@MEMBERSHIP_LM_OBJ@@QEAAJI@Z
1201; public: long __cdecl MEMBERSHIP_LM_OBJ::DeleteAssocName(unsigned short const * __ptr64) __ptr64
1202?DeleteAssocName@MEMBERSHIP_LM_OBJ@@QEAAJPEBG@Z
1203; public: long __cdecl LSA_ACCOUNT::DeletePrivilege(struct _LUID) __ptr64
1204?DeletePrivilege@LSA_ACCOUNT@@QEAAJU_LUID@@@Z
1205; private: void __cdecl LM_ENUM::DeregisterIter(void) __ptr64
1206?DeregisterIter@LM_ENUM@@AEAAXXZ
1207; private: void __cdecl LM_RESUME_ENUM::DeregisterIter(void) __ptr64
1208?DeregisterIter@LM_RESUME_ENUM@@AEAAXXZ
1209; private: long __cdecl BROWSE_DOMAIN_ENUM::DetermineIfDomainMember(int * __ptr64) __ptr64
1210?DetermineIfDomainMember@BROWSE_DOMAIN_ENUM@@AEAAJPEAH@Z
1211; public: long __cdecl DEVICE::Disconnect(unsigned int) __ptr64
1212?Disconnect@DEVICE@@QEAAJI@Z
1213; public: long __cdecl DEVICE::Disconnect(unsigned short const * __ptr64,unsigned int) __ptr64
1214?Disconnect@DEVICE@@QEAAJPEBGI@Z
1215; public: long __cdecl LSA_POLICY::DistrustDomain(void * __ptr64 const,class NLS_STR const & __ptr64,int) __ptr64
1216?DistrustDomain@LSA_POLICY@@QEAAJQEAXAEBVNLS_STR@@H@Z
1217; public: int __cdecl LM_RESUME_ENUM::DoesKeepBuffers(void)const __ptr64
1218?DoesKeepBuffers@LM_RESUME_ENUM@@QEBAHXZ
1219; private: virtual unsigned char * __ptr64 __cdecl ENUM_CALLER_LM_OBJ::EC_QueryBufferPtr(void)const __ptr64
1220?EC_QueryBufferPtr@ENUM_CALLER_LM_OBJ@@EEBAPEAEXZ
1221; private: virtual unsigned char * __ptr64 __cdecl LM_ENUM::EC_QueryBufferPtr(void)const __ptr64
1222?EC_QueryBufferPtr@LM_ENUM@@EEBAPEAEXZ
1223; private: virtual unsigned int __cdecl ENUM_CALLER_LM_OBJ::EC_QueryBufferSize(void)const __ptr64
1224?EC_QueryBufferSize@ENUM_CALLER_LM_OBJ@@EEBAIXZ
1225; private: virtual long __cdecl ENUM_CALLER_LM_OBJ::EC_ResizeBuffer(unsigned int) __ptr64
1226?EC_ResizeBuffer@ENUM_CALLER_LM_OBJ@@EEAAJI@Z
1227; private: virtual long __cdecl ENUM_CALLER_LM_OBJ::EC_SetBufferPtr(unsigned char * __ptr64) __ptr64
1228?EC_SetBufferPtr@ENUM_CALLER_LM_OBJ@@EEAAJPEAE@Z
1229; private: virtual long __cdecl LM_ENUM::EC_SetBufferPtr(unsigned char * __ptr64) __ptr64
1230?EC_SetBufferPtr@LM_ENUM@@EEAAJPEAE@Z
1231; private: static long __cdecl DOMAIN_WITH_DC_CACHE::EnterCriticalSection(void)
1232?EnterCriticalSection@DOMAIN_WITH_DC_CACHE@@CAJXZ
1233; unsigned long __cdecl EnumAllComms(void)
1234?EnumAllComms@@YAKXZ
1235; unsigned long __cdecl EnumAllDrives(void)
1236?EnumAllDrives@@YAKXZ
1237; unsigned long __cdecl EnumAllLPTs(void)
1238?EnumAllLPTs@@YAKXZ
1239; private: unsigned short const * __ptr64 __cdecl ITER_DEVICE::EnumComms(void) __ptr64
1240?EnumComms@ITER_DEVICE@@AEAAPEBGXZ
1241; public: long __cdecl SC_SERVICE::EnumDependent(unsigned int,struct _ENUM_SERVICE_STATUSW * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
1242?EnumDependent@SC_SERVICE@@QEAAJIPEAPEAU_ENUM_SERVICE_STATUSW@@PEAK@Z
1243; private: unsigned short const * __ptr64 __cdecl ITER_DEVICE::EnumDrives(void) __ptr64
1244?EnumDrives@ITER_DEVICE@@AEAAPEBGXZ
1245; private: unsigned short const * __ptr64 __cdecl ITER_DEVICE::EnumLPTs(void) __ptr64
1246?EnumLPTs@ITER_DEVICE@@AEAAPEBGXZ
1247; private: long __cdecl SERVICE_ENUM::EnumLmServices(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1248?EnumLmServices@SERVICE_ENUM@@AEAAJPEAPEAEPEAI@Z
1249; unsigned long __cdecl EnumLocalComms(void)
1250?EnumLocalComms@@YAKXZ
1251; unsigned long __cdecl EnumLocalDrives(void)
1252?EnumLocalDrives@@YAKXZ
1253; unsigned long __cdecl EnumLocalLPTs(void)
1254?EnumLocalLPTs@@YAKXZ
1255; unsigned long __cdecl EnumNetComms(void)
1256?EnumNetComms@@YAKXZ
1257; unsigned long __cdecl EnumNetDevices(int)
1258?EnumNetDevices@@YAKH@Z
1259; unsigned long __cdecl EnumNetDrives(void)
1260?EnumNetDrives@@YAKXZ
1261; unsigned long __cdecl EnumNetLPTs(void)
1262?EnumNetLPTs@@YAKXZ
1263; private: long __cdecl SERVICE_ENUM::EnumNtServices(unsigned char * __ptr64 * __ptr64,unsigned int * __ptr64) __ptr64
1264?EnumNtServices@SERVICE_ENUM@@AEAAJPEAPEAEPEAI@Z
1265; public: long __cdecl SC_MANAGER::EnumServiceStatus(unsigned int,unsigned int,struct _ENUM_SERVICE_STATUSW * __ptr64 * __ptr64,unsigned long * __ptr64,unsigned short const * __ptr64) __ptr64
1266?EnumServiceStatus@SC_MANAGER@@QEAAJIIPEAPEAU_ENUM_SERVICE_STATUSW@@PEAKPEBG@Z
1267; unsigned long __cdecl EnumUnavailComms(void)
1268?EnumUnavailComms@@YAKXZ
1269; unsigned long __cdecl EnumUnavailDevices(int)
1270?EnumUnavailDevices@@YAKH@Z
1271; unsigned long __cdecl EnumUnavailDrives(void)
1272?EnumUnavailDrives@@YAKXZ
1273; unsigned long __cdecl EnumUnavailLPTs(void)
1274?EnumUnavailLPTs@@YAKXZ
1275; public: long __cdecl SAM_DOMAIN::EnumerateAliases(class SAM_RID_ENUMERATION_MEM * __ptr64,unsigned long * __ptr64,unsigned long)const __ptr64
1276?EnumerateAliases@SAM_DOMAIN@@QEBAJPEAVSAM_RID_ENUMERATION_MEM@@PEAKK@Z
1277; public: long __cdecl SAM_DOMAIN::EnumerateAliasesForUser(void * __ptr64,class SAM_RID_MEM * __ptr64)const __ptr64
1278?EnumerateAliasesForUser@SAM_DOMAIN@@QEBAJPEAXPEAVSAM_RID_MEM@@@Z
1279; public: long __cdecl SAM_DOMAIN::EnumerateGroups(class SAM_RID_ENUMERATION_MEM * __ptr64,unsigned long * __ptr64,unsigned long)const __ptr64
1280?EnumerateGroups@SAM_DOMAIN@@QEBAJPEAVSAM_RID_ENUMERATION_MEM@@PEAKK@Z
1281; public: long __cdecl LSA_POLICY::EnumerateTrustedDomains(class LSA_TRUST_INFO_MEM * __ptr64,unsigned long * __ptr64,unsigned long) __ptr64
1282?EnumerateTrustedDomains@LSA_POLICY@@QEAAJPEAVLSA_TRUST_INFO_MEM@@PEAKK@Z
1283; public: long __cdecl SAM_DOMAIN::EnumerateUsers(class SAM_RID_ENUMERATION_MEM * __ptr64,unsigned long * __ptr64,unsigned long,unsigned long)const __ptr64
1284?EnumerateUsers@SAM_DOMAIN@@QEBAJPEAVSAM_RID_ENUMERATION_MEM@@PEAKKK@Z
1285; long __cdecl FillUnicodeString(struct _UNICODE_STRING * __ptr64,class NLS_STR const & __ptr64)
1286?FillUnicodeString@@YAJPEAU_UNICODE_STRING@@AEBVNLS_STR@@@Z
1287; private: struct _ACCESS_LIST * __ptr64 __cdecl NET_ACCESS_1::FindACE(unsigned short const * __ptr64,enum PERMNAME_TYPE)const __ptr64
1288?FindACE@NET_ACCESS_1@@AEBAPEAU_ACCESS_LIST@@PEBGW4PERMNAME_TYPE@@@Z
1289; public: long __cdecl OS_ACL::FindACE(class OS_SID const & __ptr64,int * __ptr64,class OS_ACE * __ptr64,unsigned long * __ptr64,unsigned long)const __ptr64
1290?FindACE@OS_ACL@@QEBAJAEBVOS_SID@@PEAHPEAVOS_ACE@@PEAKK@Z
1291; public: int __cdecl MEMBERSHIP_LM_OBJ::FindAssocName(unsigned short const * __ptr64,unsigned int * __ptr64) __ptr64
1292?FindAssocName@MEMBERSHIP_LM_OBJ@@QEAAHPEBGPEAI@Z
1293; private: static unsigned short const * __ptr64 __cdecl DOMAIN_WITH_DC_CACHE::FindDcCache(struct _DC_CACHE_ENTRY const * __ptr64,unsigned short const * __ptr64)
1294?FindDcCache@DOMAIN_WITH_DC_CACHE@@CAPEBGPEBU_DC_CACHE_ENTRY@@PEBG@Z
1295; public: class BROWSE_DOMAIN_INFO const * __ptr64 __cdecl BROWSE_DOMAIN_ENUM::FindFirst(unsigned long) __ptr64
1296?FindFirst@BROWSE_DOMAIN_ENUM@@QEAAPEBVBROWSE_DOMAIN_INFO@@K@Z
1297; public: class BROWSE_DOMAIN_INFO const * __ptr64 __cdecl BROWSE_DOMAIN_ENUM::FindNext(unsigned long) __ptr64
1298?FindNext@BROWSE_DOMAIN_ENUM@@QEAAPEBVBROWSE_DOMAIN_INFO@@K@Z
1299; public: long __cdecl OS_ACL_SUBJECT_ITER::FindNextSubject(int * __ptr64,class OS_SID * __ptr64,class OS_ACE * __ptr64) __ptr64
1300?FindNextSubject@OS_ACL_SUBJECT_ITER@@QEAAJPEAHPEAVOS_SID@@PEAVOS_ACE@@@Z
1301; public: long __cdecl OS_PRIVILEGE_SET::FindPrivilege(struct _LUID)const __ptr64
1302?FindPrivilege@OS_PRIVILEGE_SET@@QEBAJU_LUID@@@Z
1303; protected: void __cdecl NEW_LM_OBJ::FixupPointer(unsigned short * __ptr64 * __ptr64,class NEW_LM_OBJ const * __ptr64) __ptr64
1304?FixupPointer@NEW_LM_OBJ@@IEAAXPEAPEAGPEBV1@@Z
1305; protected: virtual void __cdecl ALIAS_ENUM::FreeBuffer(unsigned char * __ptr64 * __ptr64) __ptr64
1306?FreeBuffer@ALIAS_ENUM@@MEAAXPEAPEAE@Z
1307; protected: virtual void __cdecl FILE_ENUM::FreeBuffer(unsigned char * __ptr64 * __ptr64) __ptr64
1308?FreeBuffer@FILE_ENUM@@MEAAXPEAPEAE@Z
1309; protected: virtual void __cdecl LOC_LM_RESUME_ENUM::FreeBuffer(unsigned char * __ptr64 * __ptr64) __ptr64
1310?FreeBuffer@LOC_LM_RESUME_ENUM@@MEAAXPEAPEAE@Z
1311; protected: virtual void __cdecl LSA_ENUM::FreeBuffer(unsigned char * __ptr64 * __ptr64) __ptr64
1312?FreeBuffer@LSA_ENUM@@MEAAXPEAPEAE@Z
1313; protected: virtual void __cdecl LSA_MEMORY::FreeBuffer(void) __ptr64
1314?FreeBuffer@LSA_MEMORY@@MEAAXXZ
1315; private: void __cdecl LSA_TRUSTED_DC_LIST::FreeBuffer(void) __ptr64
1316?FreeBuffer@LSA_TRUSTED_DC_LIST@@AEAAXXZ
1317; protected: virtual void __cdecl NT_ACCOUNT_ENUM::FreeBuffer(unsigned char * __ptr64 * __ptr64) __ptr64
1318?FreeBuffer@NT_ACCOUNT_ENUM@@MEAAXPEAPEAE@Z
1319; protected: virtual void __cdecl SAM_MEMORY::FreeBuffer(void) __ptr64
1320?FreeBuffer@SAM_MEMORY@@MEAAXXZ
1321; protected: virtual void __cdecl SAM_USER_ENUM::FreeBuffer(unsigned char * __ptr64 * __ptr64) __ptr64
1322?FreeBuffer@SAM_USER_ENUM@@MEAAXPEAPEAE@Z
1323; protected: virtual void __cdecl TRUSTED_DOMAIN_ENUM::FreeBuffer(unsigned char * __ptr64 * __ptr64) __ptr64
1324?FreeBuffer@TRUSTED_DOMAIN_ENUM@@MEAAXPEAPEAE@Z
1325; void __cdecl FreeUnicodeString(struct _UNICODE_STRING * __ptr64)
1326?FreeUnicodeString@@YAXPEAU_UNICODE_STRING@@@Z
1327; public: long __cdecl LSA_POLICY::GetAccountDomain(class LSA_ACCT_DOM_INFO_MEM * __ptr64)const __ptr64
1328?GetAccountDomain@LSA_POLICY@@QEBAJPEAVLSA_ACCT_DOM_INFO_MEM@@@Z
1329; public: static long __cdecl DOMAIN::GetAnyDC(unsigned short const * __ptr64,unsigned short const * __ptr64,class NLS_STR * __ptr64)
1330?GetAnyDC@DOMAIN@@SAJPEBG0PEAVNLS_STR@@@Z
1331; public: static long __cdecl DOMAIN_WITH_DC_CACHE::GetAnyDC(unsigned short const * __ptr64,unsigned short const * __ptr64,class NLS_STR * __ptr64)
1332?GetAnyDC@DOMAIN_WITH_DC_CACHE@@SAJPEBG0PEAVNLS_STR@@@Z
1333; protected: static long __cdecl DOMAIN::GetAnyDCWorker(unsigned short const * __ptr64,unsigned short const * __ptr64,class NLS_STR * __ptr64,int)
1334?GetAnyDCWorker@DOMAIN@@KAJPEBG0PEAVNLS_STR@@H@Z
1335; protected: static long __cdecl DOMAIN_WITH_DC_CACHE::GetAnyDCWorker(unsigned short const * __ptr64,unsigned short const * __ptr64,class NLS_STR * __ptr64,int)
1336?GetAnyDCWorker@DOMAIN_WITH_DC_CACHE@@KAJPEBG0PEAVNLS_STR@@H@Z
1337; public: static long __cdecl DOMAIN::GetAnyValidDC(unsigned short const * __ptr64,unsigned short const * __ptr64,class NLS_STR * __ptr64)
1338?GetAnyValidDC@DOMAIN@@SAJPEBG0PEAVNLS_STR@@@Z
1339; public: static long __cdecl DOMAIN_WITH_DC_CACHE::GetAnyValidDC(unsigned short const * __ptr64,unsigned short const * __ptr64,class NLS_STR * __ptr64)
1340?GetAnyValidDC@DOMAIN_WITH_DC_CACHE@@SAJPEBG0PEAVNLS_STR@@@Z
1341; public: long __cdecl LSA_POLICY::GetAuditEventInfo(class LSA_AUDIT_EVENT_INFO_MEM * __ptr64) __ptr64
1342?GetAuditEventInfo@LSA_POLICY@@QEAAJPEAVLSA_AUDIT_EVENT_INFO_MEM@@@Z
1343; public: long __cdecl ALIAS_ENUM_OBJ::GetComment(class SAM_DOMAIN const & __ptr64,class NLS_STR * __ptr64) __ptr64
1344?GetComment@ALIAS_ENUM_OBJ@@QEAAJAEBVSAM_DOMAIN@@PEAVNLS_STR@@@Z
1345; public: long __cdecl SAM_ALIAS::GetComment(class NLS_STR * __ptr64) __ptr64
1346?GetComment@SAM_ALIAS@@QEAAJPEAVNLS_STR@@@Z
1347; public: long __cdecl SAM_GROUP::GetComment(class NLS_STR * __ptr64) __ptr64
1348?GetComment@SAM_GROUP@@QEAAJPEAVNLS_STR@@@Z
1349; private: long __cdecl NET_NAME::GetDeviceInfo(void) __ptr64
1350?GetDeviceInfo@NET_NAME@@AEAAJXZ
1351; public: virtual long __cdecl DEVICE::GetInfo(void) __ptr64
1352?GetInfo@DEVICE@@UEAAJXZ
1353; public: virtual long __cdecl DOMAIN::GetInfo(void) __ptr64
1354?GetInfo@DOMAIN@@UEAAJXZ
1355; public: virtual long __cdecl DOMAIN_WITH_DC_CACHE::GetInfo(void) __ptr64
1356?GetInfo@DOMAIN_WITH_DC_CACHE@@UEAAJXZ
1357; public: long __cdecl LM_ENUM::GetInfo(void) __ptr64
1358?GetInfo@LM_ENUM@@QEAAJXZ
1359; public: long __cdecl LM_RESUME_ENUM::GetInfo(int) __ptr64
1360?GetInfo@LM_RESUME_ENUM@@QEAAJH@Z
1361; public: long __cdecl NEW_LM_OBJ::GetInfo(void) __ptr64
1362?GetInfo@NEW_LM_OBJ@@QEAAJXZ
1363; public: virtual long __cdecl USER_MODALS::GetInfo(void) __ptr64
1364?GetInfo@USER_MODALS@@UEAAJXZ
1365; public: virtual long __cdecl USER_MODALS_3::GetInfo(void) __ptr64
1366?GetInfo@USER_MODALS_3@@UEAAJXZ
1367; private: long __cdecl LM_RESUME_ENUM::GetInfoMulti(void) __ptr64
1368?GetInfoMulti@LM_RESUME_ENUM@@AEAAJXZ
1369; private: long __cdecl LM_RESUME_ENUM::GetInfoSingle(int) __ptr64
1370?GetInfoSingle@LM_RESUME_ENUM@@AEAAJH@Z
1371; private: long __cdecl BROWSE_DOMAIN_ENUM::GetLanmanDomains(unsigned long) __ptr64
1372?GetLanmanDomains@BROWSE_DOMAIN_ENUM@@AEAAJK@Z
1373; private: long __cdecl BROWSE_DOMAIN_ENUM::GetLogonDomainDC(class NLS_STR * __ptr64) __ptr64
1374?GetLogonDomainDC@BROWSE_DOMAIN_ENUM@@AEAAJPEAVNLS_STR@@@Z
1375; public: long __cdecl SAM_ALIAS::GetMembers(class SAM_SID_MEM * __ptr64) __ptr64
1376?GetMembers@SAM_ALIAS@@QEAAJPEAVSAM_SID_MEM@@@Z
1377; public: long __cdecl SAM_GROUP::GetMembers(class SAM_RID_MEM * __ptr64) __ptr64
1378?GetMembers@SAM_GROUP@@QEAAJPEAVSAM_RID_MEM@@@Z
1379; public: long __cdecl SAM_DOMAIN::GetPasswordInfo(class SAM_PSWD_DOM_INFO_MEM * __ptr64)const __ptr64
1380?GetPasswordInfo@SAM_DOMAIN@@QEBAJPEAVSAM_PSWD_DOM_INFO_MEM@@@Z
1381; public: long __cdecl LSA_POLICY::GetPrimaryDomain(class LSA_PRIMARY_DOM_INFO_MEM * __ptr64)const __ptr64
1382?GetPrimaryDomain@LSA_POLICY@@QEBAJPEAVLSA_PRIMARY_DOM_INFO_MEM@@@Z
1383; public: static long __cdecl NT_ACCOUNTS_UTILITY::GetQualifiedAccountNames(class LSA_POLICY & __ptr64,class SAM_DOMAIN const & __ptr64,void * __ptr64 const * __ptr64,unsigned long,int,class STRLIST * __ptr64,unsigned long * __ptr64,enum _SID_NAME_USE * __ptr64,long * __ptr64,unsigned short const * __ptr64,class STRLIST * __ptr64,class STRLIST * __ptr64,class STRLIST * __ptr64,class STRLIST * __ptr64)
1384?GetQualifiedAccountNames@NT_ACCOUNTS_UTILITY@@SAJAEAVLSA_POLICY@@AEBVSAM_DOMAIN@@PEBQEAXKHPEAVSTRLIST@@PEAKPEAW4_SID_NAME_USE@@PEAJPEBG3333@Z
1385; public: static long __cdecl NT_ACCOUNTS_UTILITY::GetQualifiedAccountNames(class LSA_POLICY & __ptr64,void * __ptr64 const,void * __ptr64 const * __ptr64,unsigned long,int,class STRLIST * __ptr64,unsigned long * __ptr64,enum _SID_NAME_USE * __ptr64,long * __ptr64,unsigned short const * __ptr64,class STRLIST * __ptr64,class STRLIST * __ptr64,class STRLIST * __ptr64,class STRLIST * __ptr64)
1386?GetQualifiedAccountNames@NT_ACCOUNTS_UTILITY@@SAJAEAVLSA_POLICY@@QEAXPEBQEAXKHPEAVSTRLIST@@PEAKPEAW4_SID_NAME_USE@@PEAJPEBG3333@Z
1387; public: static long __cdecl LM_SRVRES::GetResourceCount(unsigned short const * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64)
1388?GetResourceCount@LM_SRVRES@@SAJPEBGPEAK11111@Z
1389; public: long __cdecl LSA_POLICY::GetServerRole(class LSA_SERVER_ROLE_INFO_MEM * __ptr64)const __ptr64
1390?GetServerRole@LSA_POLICY@@QEBAJPEAVLSA_SERVER_ROLE_INFO_MEM@@@Z
1391; public: static long __cdecl LM_SRVRES::GetSessionsCount(unsigned short const * __ptr64,unsigned long * __ptr64)
1392?GetSessionsCount@LM_SRVRES@@SAJPEBGPEAK@Z
1393; private: long __cdecl BROWSE_DOMAIN_ENUM::GetTrustingDomains(void) __ptr64
1394?GetTrustingDomains@BROWSE_DOMAIN_ENUM@@AEAAJXZ
1395; long __cdecl GetW32ComputerName(class NLS_STR & __ptr64)
1396?GetW32ComputerName@@YAJAEAVNLS_STR@@@Z
1397; long __cdecl GetW32UserAndDomainName(class NLS_STR & __ptr64,class NLS_STR & __ptr64)
1398?GetW32UserAndDomainName@@YAJAEAVNLS_STR@@0@Z
1399; long __cdecl GetW32UserName(class NLS_STR & __ptr64)
1400?GetW32UserName@@YAJAEAVNLS_STR@@@Z
1401; private: long __cdecl BROWSE_DOMAIN_ENUM::GetWorkgroupDomains(void) __ptr64
1402?GetWorkgroupDomains@BROWSE_DOMAIN_ENUM@@AEAAJXZ
1403; protected: long __cdecl USER::HandleNullAccount(void) __ptr64
1404?HandleNullAccount@USER@@IEAAJXZ
1405; public: int __cdecl OS_DACL_SUBJECT_ITER::HasInheritOnlyAce(void)const __ptr64
1406?HasInheritOnlyAce@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1407; public: int __cdecl OS_SACL_SUBJECT_ITER::HasInheritOnlyAuditAce_F(void)const __ptr64
1408?HasInheritOnlyAuditAce_F@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1409; public: int __cdecl OS_SACL_SUBJECT_ITER::HasInheritOnlyAuditAce_S(void)const __ptr64
1410?HasInheritOnlyAuditAce_S@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1411; protected: int __cdecl LM_RESUME_ENUM_ITER::HasMoreData(void)const __ptr64
1412?HasMoreData@LM_RESUME_ENUM_ITER@@IEBAHXZ
1413; public: int __cdecl OS_DACL_SUBJECT_ITER::HasNewContainerAce(void)const __ptr64
1414?HasNewContainerAce@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1415; public: int __cdecl OS_SACL_SUBJECT_ITER::HasNewContainerAuditAce_F(void)const __ptr64
1416?HasNewContainerAuditAce_F@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1417; public: int __cdecl OS_SACL_SUBJECT_ITER::HasNewContainerAuditAce_S(void)const __ptr64
1418?HasNewContainerAuditAce_S@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1419; public: int __cdecl OS_DACL_SUBJECT_ITER::HasNewObjectAce(void)const __ptr64
1420?HasNewObjectAce@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1421; public: int __cdecl OS_SACL_SUBJECT_ITER::HasNewObjectAuditAce_F(void)const __ptr64
1422?HasNewObjectAuditAce_F@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1423; public: int __cdecl OS_SACL_SUBJECT_ITER::HasNewObjectAuditAce_S(void)const __ptr64
1424?HasNewObjectAuditAce_S@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1425; public: int __cdecl OS_DACL_SUBJECT_ITER::HasThisAce(void)const __ptr64
1426?HasThisAce@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1427; public: int __cdecl OS_SACL_SUBJECT_ITER::HasThisAuditAce_F(void)const __ptr64
1428?HasThisAuditAce_F@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1429; public: int __cdecl OS_SACL_SUBJECT_ITER::HasThisAuditAce_S(void)const __ptr64
1430?HasThisAuditAce_S@OS_SACL_SUBJECT_ITER@@QEBAHXZ
1431; long __cdecl I_AppendToSTRLIST(class STRLIST * __ptr64,class NLS_STR & __ptr64)
1432?I_AppendToSTRLIST@@YAJPEAVSTRLIST@@AEAVNLS_STR@@@Z
1433; protected: virtual long __cdecl GROUP_1::I_ChangeToNew(void) __ptr64
1434?I_ChangeToNew@GROUP_1@@MEAAJXZ
1435; protected: virtual long __cdecl GROUP_MEMB::I_ChangeToNew(void) __ptr64
1436?I_ChangeToNew@GROUP_MEMB@@MEAAJXZ
1437; protected: virtual long __cdecl NEW_LM_OBJ::I_ChangeToNew(void) __ptr64
1438?I_ChangeToNew@NEW_LM_OBJ@@MEAAJXZ
1439; protected: virtual long __cdecl USER_2::I_ChangeToNew(void) __ptr64
1440?I_ChangeToNew@USER_2@@MEAAJXZ
1441; protected: virtual long __cdecl USER_3::I_ChangeToNew(void) __ptr64
1442?I_ChangeToNew@USER_3@@MEAAJXZ
1443; protected: virtual long __cdecl USER_MEMB::I_ChangeToNew(void) __ptr64
1444?I_ChangeToNew@USER_MEMB@@MEAAJXZ
1445; protected: virtual long __cdecl GROUP_1::I_CreateNew(void) __ptr64
1446?I_CreateNew@GROUP_1@@MEAAJXZ
1447; protected: virtual long __cdecl GROUP_MEMB::I_CreateNew(void) __ptr64
1448?I_CreateNew@GROUP_MEMB@@MEAAJXZ
1449; protected: virtual long __cdecl LSA_ACCOUNT::I_CreateNew(void) __ptr64
1450?I_CreateNew@LSA_ACCOUNT@@MEAAJXZ
1451; protected: virtual long __cdecl NET_ACCESS_1::I_CreateNew(void) __ptr64
1452?I_CreateNew@NET_ACCESS_1@@MEAAJXZ
1453; protected: virtual long __cdecl NEW_LM_OBJ::I_CreateNew(void) __ptr64
1454?I_CreateNew@NEW_LM_OBJ@@MEAAJXZ
1455; protected: virtual long __cdecl SHARE_2::I_CreateNew(void) __ptr64
1456?I_CreateNew@SHARE_2@@MEAAJXZ
1457; protected: virtual long __cdecl USER_2::I_CreateNew(void) __ptr64
1458?I_CreateNew@USER_2@@MEAAJXZ
1459; protected: virtual long __cdecl USER_3::I_CreateNew(void) __ptr64
1460?I_CreateNew@USER_3@@MEAAJXZ
1461; protected: virtual long __cdecl USER_MEMB::I_CreateNew(void) __ptr64
1462?I_CreateNew@USER_MEMB@@MEAAJXZ
1463; protected: virtual long __cdecl GROUP::I_Delete(unsigned int) __ptr64
1464?I_Delete@GROUP@@MEAAJI@Z
1465; protected: virtual long __cdecl LM_SESSION::I_Delete(unsigned int) __ptr64
1466?I_Delete@LM_SESSION@@MEAAJI@Z
1467; protected: virtual long __cdecl LSA_ACCOUNT::I_Delete(unsigned int) __ptr64
1468?I_Delete@LSA_ACCOUNT@@MEAAJI@Z
1469; protected: virtual long __cdecl NEW_LM_OBJ::I_Delete(unsigned int) __ptr64
1470?I_Delete@NEW_LM_OBJ@@MEAAJI@Z
1471; protected: virtual long __cdecl SHARE::I_Delete(unsigned int) __ptr64
1472?I_Delete@SHARE@@MEAAJI@Z
1473; protected: virtual long __cdecl USER::I_Delete(unsigned int) __ptr64
1474?I_Delete@USER@@MEAAJI@Z
1475; long __cdecl I_FetchAliasFields(class NLS_STR * __ptr64,class ADMIN_AUTHORITY * __ptr64 * __ptr64,class SLIST_OF_ADMIN_AUTHORITY * __ptr64,unsigned long,int,class NLS_STR const & __ptr64,class NLS_STR const * __ptr64,long * __ptr64)
1476?I_FetchAliasFields@@YAJPEAVNLS_STR@@PEAPEAVADMIN_AUTHORITY@@PEAVSLIST_OF_ADMIN_AUTHORITY@@KHAEBV1@PEBV1@PEAJ@Z
1477; long __cdecl I_FetchDCList(class LSA_TRANSLATED_NAME_MEM const & __ptr64,class LSA_REF_DOMAIN_MEM const & __ptr64,void * __ptr64,void * __ptr64,class NLS_STR * __ptr64 * __ptr64,class STRLIST * __ptr64,int * __ptr64,long * __ptr64,unsigned short const * __ptr64,int,int,int)
1478?I_FetchDCList@@YAJAEBVLSA_TRANSLATED_NAME_MEM@@AEBVLSA_REF_DOMAIN_MEM@@PEAX2PEAPEAVNLS_STR@@PEAVSTRLIST@@PEAHPEAJPEBGHHH@Z
1479; long __cdecl I_FetchGroupFields(class NLS_STR * __ptr64,class NLS_STR const & __ptr64,class NLS_STR const * __ptr64,long * __ptr64)
1480?I_FetchGroupFields@@YAJPEAVNLS_STR@@AEBV1@PEBV1@PEAJ@Z
1481; long __cdecl I_FetchUserFields(class NLS_STR * __ptr64,class NLS_STR * __ptr64,unsigned long * __ptr64,class NLS_STR const & __ptr64,class NLS_STR const * __ptr64,long * __ptr64)
1482?I_FetchUserFields@@YAJPEAVNLS_STR@@0PEAKAEBV1@PEBV1@PEAJ@Z
1483; protected: virtual long __cdecl GROUP_1::I_GetInfo(void) __ptr64
1484?I_GetInfo@GROUP_1@@MEAAJXZ
1485; protected: virtual long __cdecl LM_FILE_2::I_GetInfo(void) __ptr64
1486?I_GetInfo@LM_FILE_2@@MEAAJXZ
1487; protected: virtual long __cdecl LM_FILE_3::I_GetInfo(void) __ptr64
1488?I_GetInfo@LM_FILE_3@@MEAAJXZ
1489; protected: virtual long __cdecl LM_SESSION_0::I_GetInfo(void) __ptr64
1490?I_GetInfo@LM_SESSION_0@@MEAAJXZ
1491; protected: virtual long __cdecl LM_SESSION_10::I_GetInfo(void) __ptr64
1492?I_GetInfo@LM_SESSION_10@@MEAAJXZ
1493; protected: virtual long __cdecl LM_SESSION_1::I_GetInfo(void) __ptr64
1494?I_GetInfo@LM_SESSION_1@@MEAAJXZ
1495; protected: virtual long __cdecl LM_SESSION_2::I_GetInfo(void) __ptr64
1496?I_GetInfo@LM_SESSION_2@@MEAAJXZ
1497; protected: virtual long __cdecl LOCAL_USER::I_GetInfo(void) __ptr64
1498?I_GetInfo@LOCAL_USER@@MEAAJXZ
1499; protected: virtual long __cdecl LSA_ACCOUNT::I_GetInfo(void) __ptr64
1500?I_GetInfo@LSA_ACCOUNT@@MEAAJXZ
1501; protected: virtual long __cdecl MEMBERSHIP_LM_OBJ::I_GetInfo(void) __ptr64
1502?I_GetInfo@MEMBERSHIP_LM_OBJ@@MEAAJXZ
1503; protected: virtual long __cdecl NET_ACCESS_1::I_GetInfo(void) __ptr64
1504?I_GetInfo@NET_ACCESS_1@@MEAAJXZ
1505; protected: virtual long __cdecl NEW_LM_OBJ::I_GetInfo(void) __ptr64
1506?I_GetInfo@NEW_LM_OBJ@@MEAAJXZ
1507; protected: virtual long __cdecl SERVER_0::I_GetInfo(void) __ptr64
1508?I_GetInfo@SERVER_0@@MEAAJXZ
1509; protected: virtual long __cdecl SERVER_1::I_GetInfo(void) __ptr64
1510?I_GetInfo@SERVER_1@@MEAAJXZ
1511; protected: virtual long __cdecl SERVER_2::I_GetInfo(void) __ptr64
1512?I_GetInfo@SERVER_2@@MEAAJXZ
1513; protected: virtual long __cdecl SHARE_1::I_GetInfo(void) __ptr64
1514?I_GetInfo@SHARE_1@@MEAAJXZ
1515; protected: virtual long __cdecl SHARE_2::I_GetInfo(void) __ptr64
1516?I_GetInfo@SHARE_2@@MEAAJXZ
1517; protected: virtual long __cdecl TIME_OF_DAY::I_GetInfo(void) __ptr64
1518?I_GetInfo@TIME_OF_DAY@@MEAAJXZ
1519; protected: virtual long __cdecl USER_11::I_GetInfo(void) __ptr64
1520?I_GetInfo@USER_11@@MEAAJXZ
1521; protected: virtual long __cdecl USER_2::I_GetInfo(void) __ptr64
1522?I_GetInfo@USER_2@@MEAAJXZ
1523; protected: virtual long __cdecl USER_3::I_GetInfo(void) __ptr64
1524?I_GetInfo@USER_3@@MEAAJXZ
1525; public: virtual long __cdecl WKSTA_10::I_GetInfo(void) __ptr64
1526?I_GetInfo@WKSTA_10@@UEAAJXZ
1527; public: virtual long __cdecl WKSTA_1::I_GetInfo(void) __ptr64
1528?I_GetInfo@WKSTA_1@@UEAAJXZ
1529; protected: virtual long __cdecl WKSTA_USER_1::I_GetInfo(void) __ptr64
1530?I_GetInfo@WKSTA_USER_1@@MEAAJXZ
1531; protected: virtual long __cdecl GROUP_1::I_WriteInfo(void) __ptr64
1532?I_WriteInfo@GROUP_1@@MEAAJXZ
1533; protected: virtual long __cdecl GROUP_MEMB::I_WriteInfo(void) __ptr64
1534?I_WriteInfo@GROUP_MEMB@@MEAAJXZ
1535; protected: virtual long __cdecl LSA_ACCOUNT::I_WriteInfo(void) __ptr64
1536?I_WriteInfo@LSA_ACCOUNT@@MEAAJXZ
1537; protected: virtual long __cdecl NET_ACCESS_1::I_WriteInfo(void) __ptr64
1538?I_WriteInfo@NET_ACCESS_1@@MEAAJXZ
1539; protected: virtual long __cdecl NEW_LM_OBJ::I_WriteInfo(void) __ptr64
1540?I_WriteInfo@NEW_LM_OBJ@@MEAAJXZ
1541; protected: virtual long __cdecl SERVER_1::I_WriteInfo(void) __ptr64
1542?I_WriteInfo@SERVER_1@@MEAAJXZ
1543; protected: virtual long __cdecl SERVER_2::I_WriteInfo(void) __ptr64
1544?I_WriteInfo@SERVER_2@@MEAAJXZ
1545; protected: virtual long __cdecl SHARE_1::I_WriteInfo(void) __ptr64
1546?I_WriteInfo@SHARE_1@@MEAAJXZ
1547; protected: virtual long __cdecl SHARE_2::I_WriteInfo(void) __ptr64
1548?I_WriteInfo@SHARE_2@@MEAAJXZ
1549; protected: virtual long __cdecl USER_2::I_WriteInfo(void) __ptr64
1550?I_WriteInfo@USER_2@@MEAAJXZ
1551; protected: virtual long __cdecl USER_3::I_WriteInfo(void) __ptr64
1552?I_WriteInfo@USER_3@@MEAAJXZ
1553; protected: virtual long __cdecl USER_MEMB::I_WriteInfo(void) __ptr64
1554?I_WriteInfo@USER_MEMB@@MEAAJXZ
1555; protected: virtual long __cdecl WKSTA_USER_1::I_WriteInfo(void) __ptr64
1556?I_WriteInfo@WKSTA_USER_1@@MEAAJXZ
1557; private: long __cdecl NET_ACCESS_1::I_WriteInfoAux(void) __ptr64
1558?I_WriteInfoAux@NET_ACCESS_1@@AEAAJXZ
1559; protected: virtual long __cdecl GROUP_1::I_WriteNew(void) __ptr64
1560?I_WriteNew@GROUP_1@@MEAAJXZ
1561; protected: virtual long __cdecl LSA_ACCOUNT::I_WriteNew(void) __ptr64
1562?I_WriteNew@LSA_ACCOUNT@@MEAAJXZ
1563; protected: virtual long __cdecl MEMBERSHIP_LM_OBJ::I_WriteNew(void) __ptr64
1564?I_WriteNew@MEMBERSHIP_LM_OBJ@@MEAAJXZ
1565; protected: virtual long __cdecl NET_ACCESS_1::I_WriteNew(void) __ptr64
1566?I_WriteNew@NET_ACCESS_1@@MEAAJXZ
1567; protected: virtual long __cdecl NEW_LM_OBJ::I_WriteNew(void) __ptr64
1568?I_WriteNew@NEW_LM_OBJ@@MEAAJXZ
1569; protected: virtual long __cdecl SHARE_2::I_WriteNew(void) __ptr64
1570?I_WriteNew@SHARE_2@@MEAAJXZ
1571; protected: virtual long __cdecl USER_2::I_WriteNew(void) __ptr64
1572?I_WriteNew@USER_2@@MEAAJXZ
1573; protected: virtual long __cdecl USER_3::I_WriteNew(void) __ptr64
1574?I_WriteNew@USER_3@@MEAAJXZ
1575; private: static void __cdecl LSA_POLICY::InitObjectAttributes(struct _OBJECT_ATTRIBUTES * __ptr64,struct _SECURITY_QUALITY_OF_SERVICE * __ptr64)
1576?InitObjectAttributes@LSA_POLICY@@CAXPEAU_OBJECT_ATTRIBUTES@@PEAU_SECURITY_QUALITY_OF_SERVICE@@@Z
1577; public: void __cdecl OS_SACL_SUBJECT_DESCRIPTOR::InitToZero(void) __ptr64
1578?InitToZero@OS_SACL_SUBJECT_DESCRIPTOR@@QEAAXXZ
1579; private: void __cdecl OS_SACL_SUBJECT_ITER::InitToZero(void) __ptr64
1580?InitToZero@OS_SACL_SUBJECT_ITER@@AEAAXXZ
1581; private: void __cdecl OS_PRIVILEGE_SET::InitializeMemory(void) __ptr64
1582?InitializeMemory@OS_PRIVILEGE_SET@@AEAAXXZ
1583; public: static void __cdecl OS_SID::InitializeMemory(void * __ptr64)
1584?InitializeMemory@OS_SID@@SAXPEAX@Z
1585; public: long __cdecl SLIST_OF_BROWSE_DOMAIN_INFO::Insert(class BROWSE_DOMAIN_INFO const * __ptr64,class ITER_SL_BROWSE_DOMAIN_INFO & __ptr64) __ptr64
1586?Insert@SLIST_OF_BROWSE_DOMAIN_INFO@@QEAAJPEBVBROWSE_DOMAIN_INFO@@AEAVITER_SL_BROWSE_DOMAIN_INFO@@@Z
1587; public: long __cdecl LSA_ACCOUNT::InsertPrivilege(struct _LUID,unsigned long) __ptr64
1588?InsertPrivilege@LSA_ACCOUNT@@QEAAJU_LUID@@K@Z
1589; public: int __cdecl USER_11::IsAccountsOperator(void)const __ptr64
1590?IsAccountsOperator@USER_11@@QEBAHXZ
1591; public: int __cdecl USER_11::IsCommOperator(void)const __ptr64
1592?IsCommOperator@USER_11@@QEBAHXZ
1593; public: int __cdecl OS_ACL_SUBJECT_ITER::IsContainer(void)const __ptr64
1594?IsContainer@OS_ACL_SUBJECT_ITER@@QEBAHXZ
1595; public: int __cdecl LM_SERVICE::IsContinuing(long * __ptr64) __ptr64
1596?IsContinuing@LM_SERVICE@@QEAAHPEAJ@Z
1597; public: int __cdecl OS_SECURITY_DESCRIPTOR_CONTROL::IsDACLDefaulted(void)const __ptr64
1598?IsDACLDefaulted@OS_SECURITY_DESCRIPTOR_CONTROL@@QEBAHXZ
1599; public: int __cdecl OS_SECURITY_DESCRIPTOR::IsDACLPresent(void)const __ptr64
1600?IsDACLPresent@OS_SECURITY_DESCRIPTOR@@QEBAHXZ
1601; public: int __cdecl OS_SECURITY_DESCRIPTOR_CONTROL::IsDACLPresent(void)const __ptr64
1602?IsDACLPresent@OS_SECURITY_DESCRIPTOR_CONTROL@@QEBAHXZ
1603; public: int __cdecl LSA_ACCOUNT::IsDefaultSettings(void) __ptr64
1604?IsDefaultSettings@LSA_ACCOUNT@@QEAAHXZ
1605; public: int __cdecl OS_DACL_SUBJECT_ITER::IsDenyAll(void)const __ptr64
1606?IsDenyAll@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1607; public: int __cdecl LOCATION::IsDomain(void)const __ptr64
1608?IsDomain@LOCATION@@QEBAHXZ
1609; public: int __cdecl LM_SESSION_1::IsEncrypted(void)const __ptr64
1610?IsEncrypted@LM_SESSION_1@@QEBAHXZ
1611; public: int __cdecl OS_SECURITY_DESCRIPTOR_CONTROL::IsGroupDefaulted(void)const __ptr64
1612?IsGroupDefaulted@OS_SECURITY_DESCRIPTOR_CONTROL@@QEBAHXZ
1613; public: int __cdecl LM_SESSION_1::IsGuest(void)const __ptr64
1614?IsGuest@LM_SESSION_1@@QEBAHXZ
1615; public: int __cdecl LSA_OBJECT::IsHandleValid(void)const __ptr64
1616?IsHandleValid@LSA_OBJECT@@QEBAHXZ
1617; public: int __cdecl OS_ACE::IsInheritOnly(void)const __ptr64
1618?IsInheritOnly@OS_ACE@@QEBAHXZ
1619; public: int __cdecl OS_DACL_SUBJECT_ITER::IsInheritOnlyDenyAll(void)const __ptr64
1620?IsInheritOnlyDenyAll@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1621; public: int __cdecl OS_ACE::IsInheritancePropagated(void)const __ptr64
1622?IsInheritancePropagated@OS_ACE@@QEBAHXZ
1623; public: int __cdecl OS_ACE::IsInherittedByNewContainers(void)const __ptr64
1624?IsInherittedByNewContainers@OS_ACE@@QEBAHXZ
1625; public: int __cdecl OS_ACE::IsInherittedByNewObjects(void)const __ptr64
1626?IsInherittedByNewObjects@OS_ACE@@QEBAHXZ
1627; protected: int __cdecl LM_OBJ::IsInvalid(void)const __ptr64
1628?IsInvalid@LM_OBJ@@IEBAHXZ
1629; private: int __cdecl LM_OBJ_BASE::IsInvalid(void)const __ptr64
1630?IsInvalid@LM_OBJ_BASE@@AEBAHXZ
1631; public: int __cdecl OS_ACE::IsKnownACE(void)const __ptr64
1632?IsKnownACE@OS_ACE@@QEBAHXZ
1633; public: int __cdecl NET_NAME::IsLocal(long * __ptr64) __ptr64
1634?IsLocal@NET_NAME@@QEAAHPEAJ@Z
1635; private: int __cdecl NEW_LM_OBJ::IsNew(void)const __ptr64
1636?IsNew@NEW_LM_OBJ@@AEBAHXZ
1637; public: int __cdecl OS_DACL_SUBJECT_ITER::IsNewContainerDenyAll(void)const __ptr64
1638?IsNewContainerDenyAll@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1639; public: int __cdecl OS_DACL_SUBJECT_ITER::IsNewObjectDenyAll(void)const __ptr64
1640?IsNewObjectDenyAll@OS_DACL_SUBJECT_ITER@@QEBAHXZ
1641; protected: int __cdecl NEW_LM_OBJ::IsOKState(void)const __ptr64
1642?IsOKState@NEW_LM_OBJ@@IEBAHXZ
1643; protected: int __cdecl OS_ACE::IsOwnerAlloc(void)const __ptr64
1644?IsOwnerAlloc@OS_ACE@@IEBAHXZ
1645; protected: int __cdecl OS_ACL::IsOwnerAlloc(void)const __ptr64
1646?IsOwnerAlloc@OS_ACL@@IEBAHXZ
1647; private: int __cdecl OS_PRIVILEGE_SET::IsOwnerAlloc(void)const __ptr64
1648?IsOwnerAlloc@OS_PRIVILEGE_SET@@AEBAHXZ
1649; protected: int __cdecl OS_SID::IsOwnerAlloc(void)const __ptr64
1650?IsOwnerAlloc@OS_SID@@IEBAHXZ
1651; public: int __cdecl OS_SECURITY_DESCRIPTOR_CONTROL::IsOwnerDefaulted(void)const __ptr64
1652?IsOwnerDefaulted@OS_SECURITY_DESCRIPTOR_CONTROL@@QEBAHXZ
1653; public: int __cdecl LM_SERVICE::IsPaused(long * __ptr64) __ptr64
1654?IsPaused@LM_SERVICE@@QEAAHPEAJ@Z
1655; public: int __cdecl LM_SERVICE::IsPausing(long * __ptr64) __ptr64
1656?IsPausing@LM_SERVICE@@QEAAHPEAJ@Z
1657; public: int __cdecl LM_FILE_3::IsPermCreate(void)const __ptr64
1658?IsPermCreate@LM_FILE_3@@QEBAHXZ
1659; public: int __cdecl LM_FILE_3::IsPermRead(void)const __ptr64
1660?IsPermRead@LM_FILE_3@@QEBAHXZ
1661; public: int __cdecl LM_FILE_3::IsPermWrite(void)const __ptr64
1662?IsPermWrite@LM_FILE_3@@QEBAHXZ
1663; public: int __cdecl USER_11::IsPrintOperator(void)const __ptr64
1664?IsPrintOperator@USER_11@@QEBAHXZ
1665; public: int __cdecl OS_SECURITY_DESCRIPTOR_CONTROL::IsSACLDefaulted(void)const __ptr64
1666?IsSACLDefaulted@OS_SECURITY_DESCRIPTOR_CONTROL@@QEBAHXZ
1667; public: int __cdecl OS_SECURITY_DESCRIPTOR::IsSACLPresent(void)const __ptr64
1668?IsSACLPresent@OS_SECURITY_DESCRIPTOR@@QEBAHXZ
1669; public: int __cdecl OS_SECURITY_DESCRIPTOR_CONTROL::IsSACLPresent(void)const __ptr64
1670?IsSACLPresent@OS_SECURITY_DESCRIPTOR_CONTROL@@QEBAHXZ
1671; public: int __cdecl LOCATION::IsServer(void)const __ptr64
1672?IsServer@LOCATION@@QEBAHXZ
1673; public: int __cdecl USER_11::IsServerOperator(void)const __ptr64
1674?IsServerOperator@USER_11@@QEBAHXZ
1675; public: int __cdecl NET_NAME::IsSharable(long * __ptr64) __ptr64
1676?IsSharable@NET_NAME@@QEAAHPEAJ@Z
1677; public: int __cdecl LM_SERVICE::IsStarted(long * __ptr64) __ptr64
1678?IsStarted@LM_SERVICE@@QEAAHPEAJ@Z
1679; public: int __cdecl LM_SERVICE::IsStarting(long * __ptr64) __ptr64
1680?IsStarting@LM_SERVICE@@QEAAHPEAJ@Z
1681; public: int __cdecl LM_SERVICE::IsStopped(long * __ptr64) __ptr64
1682?IsStopped@LM_SERVICE@@QEAAHPEAJ@Z
1683; public: int __cdecl LM_SERVICE::IsStopping(long * __ptr64) __ptr64
1684?IsStopping@LM_SERVICE@@QEAAHPEAJ@Z
1685; protected: int __cdecl LM_OBJ::IsUnconstructed(void)const __ptr64
1686?IsUnconstructed@LM_OBJ@@IEBAHXZ
1687; private: int __cdecl LM_OBJ_BASE::IsUnconstructed(void)const __ptr64
1688?IsUnconstructed@LM_OBJ_BASE@@AEBAHXZ
1689; protected: int __cdecl LM_OBJ::IsValid(void)const __ptr64
1690?IsValid@LM_OBJ@@IEBAHXZ
1691; private: int __cdecl LM_OBJ_BASE::IsValid(void)const __ptr64
1692?IsValid@LM_OBJ_BASE@@AEBAHXZ
1693; public: int __cdecl OS_ACL::IsValid(void)const __ptr64
1694?IsValid@OS_ACL@@QEBAHXZ
1695; public: int __cdecl OS_SECURITY_DESCRIPTOR::IsValid(void)const __ptr64
1696?IsValid@OS_SECURITY_DESCRIPTOR@@QEBAHXZ
1697; public: int __cdecl OS_SID::IsValid(void)const __ptr64
1698?IsValid@OS_SID@@QEBAHXZ
1699; public: static int __cdecl DOMAIN::IsValidDC(unsigned short const * __ptr64,unsigned short const * __ptr64)
1700?IsValidDC@DOMAIN@@SAHPEBG0@Z
1701; public: int __cdecl LM_OBJ_BASE::IsValidationOn(void) __ptr64
1702?IsValidationOn@LM_OBJ_BASE@@QEAAHXZ
1703; int __cdecl IsWhiteSpace(unsigned short)
1704?IsWhiteSpace@@YAHG@Z
1705; public: long __cdecl LSA_POLICY::JoinDomain(class NLS_STR const & __ptr64,class NLS_STR const & __ptr64,int,class NLS_STR const * __ptr64,unsigned short const * __ptr64) __ptr64
1706?JoinDomain@LSA_POLICY@@QEAAJAEBVNLS_STR@@0HPEBV2@PEBG@Z
1707; int __cdecl LMOTypeToNetType(enum LMO_DEVICE)
1708?LMOTypeToNetType@@YAHW4LMO_DEVICE@@@Z
1709; private: static void __cdecl DOMAIN_WITH_DC_CACHE::LeaveCriticalSection(void)
1710?LeaveCriticalSection@DOMAIN_WITH_DC_CACHE@@CAXXZ
1711; public: long __cdecl LSA_POLICY::LeaveDomain(void) __ptr64
1712?LeaveDomain@LSA_POLICY@@QEAAJXZ
1713; public: long __cdecl SC_MANAGER::Lock(void) __ptr64
1714?Lock@SC_MANAGER@@QEAAJXZ
1715; long __cdecl LsaxGetComputerName(class NLS_STR * __ptr64)
1716?LsaxGetComputerName@@YAJPEAVNLS_STR@@@Z
1717; protected: void __cdecl LM_OBJ::MakeConstructed(void) __ptr64
1718?MakeConstructed@LM_OBJ@@IEAAXXZ
1719; private: void __cdecl LM_OBJ_BASE::MakeConstructed(void) __ptr64
1720?MakeConstructed@LM_OBJ_BASE@@AEAAXXZ
1721; protected: void __cdecl LM_OBJ::MakeInvalid(void) __ptr64
1722?MakeInvalid@LM_OBJ@@IEAAXXZ
1723; private: void __cdecl LM_OBJ_BASE::MakeInvalid(void) __ptr64
1724?MakeInvalid@LM_OBJ_BASE@@AEAAXXZ
1725; private: void __cdecl NEW_LM_OBJ::MakeNew(void) __ptr64
1726?MakeNew@NEW_LM_OBJ@@AEAAXXZ
1727; unsigned long __cdecl MakeNullNull(unsigned short const * __ptr64,unsigned short * __ptr64 * __ptr64)
1728?MakeNullNull@@YAKPEBGPEAPEAG@Z
1729; private: static long __cdecl LSA_POLICY::MakeSecretName(class NLS_STR const & __ptr64,int,class NLS_STR * __ptr64)
1730?MakeSecretName@LSA_POLICY@@CAJAEBVNLS_STR@@HPEAV2@@Z
1731; protected: void __cdecl LM_OBJ::MakeUnconstructed(void) __ptr64
1732?MakeUnconstructed@LM_OBJ@@IEAAXXZ
1733; private: void __cdecl LM_OBJ_BASE::MakeUnconstructed(void) __ptr64
1734?MakeUnconstructed@LM_OBJ_BASE@@AEAAXXZ
1735; protected: void __cdecl LM_OBJ::MakeValid(void) __ptr64
1736?MakeValid@LM_OBJ@@IEAAXXZ
1737; private: void __cdecl LM_OBJ_BASE::MakeValid(void) __ptr64
1738?MakeValid@LM_OBJ_BASE@@AEAAXXZ
1739; private: void __cdecl TRIPLE_SERVER_ENUM::MapBrowserToTriple(struct _SERVER_INFO_101 const * __ptr64,struct _TRIPLE_SERVER_INFO * __ptr64) __ptr64
1740?MapBrowserToTriple@TRIPLE_SERVER_ENUM@@AEAAXPEBU_SERVER_INFO_101@@PEAU_TRIPLE_SERVER_INFO@@@Z
1741; unsigned long __cdecl MapComm(unsigned short const * __ptr64)
1742?MapComm@@YAKPEBG@Z
1743; unsigned long __cdecl MapDrive(unsigned short const * __ptr64)
1744?MapDrive@@YAKPEBG@Z
1745; public: int __cdecl OS_ACL_SUBJECT_ITER::MapGenericAllOnly(void)const __ptr64
1746?MapGenericAllOnly@OS_ACL_SUBJECT_ITER@@QEBAHXZ
1747; private: void __cdecl TRIPLE_SERVER_ENUM::MapKnownToTriple(struct _KNOWN_SERVER_INFO const * __ptr64,struct _TRIPLE_SERVER_INFO * __ptr64) __ptr64
1748?MapKnownToTriple@TRIPLE_SERVER_ENUM@@AEAAXPEBU_KNOWN_SERVER_INFO@@PEAU_TRIPLE_SERVER_INFO@@@Z
1749; unsigned long __cdecl MapLPT(unsigned short const * __ptr64)
1750?MapLPT@@YAKPEBG@Z
1751; private: void __cdecl SERVICE_ENUM::MapLmStatusToNtState(unsigned long,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
1752?MapLmStatusToNtState@SERVICE_ENUM@@AEAAXKPEAK0@Z
1753; private: void __cdecl TRIPLE_SERVER_ENUM::MapLmToKnown(struct _USER_INFO_0 const * __ptr64,struct _KNOWN_SERVER_INFO * __ptr64) __ptr64
1754?MapLmToKnown@TRIPLE_SERVER_ENUM@@AEAAXPEBU_USER_INFO_0@@PEAU_KNOWN_SERVER_INFO@@@Z
1755; private: void __cdecl TRIPLE_SERVER_ENUM::MapNtToKnown(struct _DOMAIN_DISPLAY_MACHINE const * __ptr64,struct _KNOWN_SERVER_INFO * __ptr64) __ptr64
1756?MapNtToKnown@TRIPLE_SERVER_ENUM@@AEAAXPEBU_DOMAIN_DISPLAY_MACHINE@@PEAU_KNOWN_SERVER_INFO@@@Z
1757; public: long __cdecl OS_ACL_SUBJECT_ITER::MapSpecificToGeneric(unsigned long * __ptr64,int) __ptr64
1758?MapSpecificToGeneric@OS_ACL_SUBJECT_ITER@@QEAAJPEAKH@Z
1759; private: enum _SERVER_ROLE __cdecl TRIPLE_SERVER_ENUM::MapTypeMaskToRole(unsigned long)const __ptr64
1760?MapTypeMaskToRole@TRIPLE_SERVER_ENUM@@AEBA?AW4_SERVER_ROLE@@K@Z
1761; private: enum _SERVER_TYPE __cdecl TRIPLE_SERVER_ENUM::MapTypeMaskToType(unsigned long)const __ptr64
1762?MapTypeMaskToType@TRIPLE_SERVER_ENUM@@AEBA?AW4_SERVER_TYPE@@K@Z
1763; enum LMO_DEVICE __cdecl NetTypeToLMOType(unsigned long)
1764?NetTypeToLMOType@@YA?AW4LMO_DEVICE@@K@Z
1765; public: class ALIAS_ENUM_OBJ const * __ptr64 __cdecl ALIAS_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1766?Next@ALIAS_ENUM_ITER@@QEAAPEBVALIAS_ENUM_OBJ@@PEAJH@Z
1767; public: class BROWSE_DOMAIN_INFO const * __ptr64 __cdecl BROWSE_DOMAIN_ENUM::Next(void) __ptr64
1768?Next@BROWSE_DOMAIN_ENUM@@QEAAPEBVBROWSE_DOMAIN_INFO@@XZ
1769; public: class FILE2_ENUM_OBJ const * __ptr64 __cdecl FILE2_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1770?Next@FILE2_ENUM_ITER@@QEAAPEBVFILE2_ENUM_OBJ@@PEAJH@Z
1771; public: class FILE3_ENUM_OBJ const * __ptr64 __cdecl FILE3_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1772?Next@FILE3_ENUM_ITER@@QEAAPEBVFILE3_ENUM_OBJ@@PEAJH@Z
1773; public: unsigned short const * __ptr64 __cdecl ITER_DEVICE::Next(void) __ptr64
1774?Next@ITER_DEVICE@@QEAAPEBGXZ
1775; public: class BROWSE_DOMAIN_INFO * __ptr64 __cdecl ITER_SL_BROWSE_DOMAIN_INFO::Next(void) __ptr64
1776?Next@ITER_SL_BROWSE_DOMAIN_INFO@@QEAAPEAVBROWSE_DOMAIN_INFO@@XZ
1777; public: class LM_RESUME_BUFFER * __ptr64 __cdecl ITER_SL_LM_RESUME_BUFFER::Next(void) __ptr64
1778?Next@ITER_SL_LM_RESUME_BUFFER@@QEAAPEAVLM_RESUME_BUFFER@@XZ
1779; public: class NLS_STR * __ptr64 __cdecl ITER_SL_NLS_STR::Next(void) __ptr64
1780?Next@ITER_SL_NLS_STR@@QEAAPEAVNLS_STR@@XZ
1781; public: class LSA_ACCOUNTS_ENUM_OBJ const * __ptr64 __cdecl LSA_ACCOUNTS_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1782?Next@LSA_ACCOUNTS_ENUM_ITER@@QEAAPEBVLSA_ACCOUNTS_ENUM_OBJ@@PEAJH@Z
1783; public: class LSA_PRIVILEGES_ENUM_OBJ const * __ptr64 __cdecl LSA_PRIVILEGES_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1784?Next@LSA_PRIVILEGES_ENUM_ITER@@QEAAPEBVLSA_PRIVILEGES_ENUM_OBJ@@PEAJH@Z
1785; public: class NT_GROUP_ENUM_OBJ const * __ptr64 __cdecl NT_GROUP_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1786?Next@NT_GROUP_ENUM_ITER@@QEAAPEBVNT_GROUP_ENUM_OBJ@@PEAJH@Z
1787; public: class NT_MACHINE_ENUM_OBJ const * __ptr64 __cdecl NT_MACHINE_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1788?Next@NT_MACHINE_ENUM_ITER@@QEAAPEBVNT_MACHINE_ENUM_OBJ@@PEAJH@Z
1789; public: class NT_USER_ENUM_OBJ const * __ptr64 __cdecl NT_USER_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1790?Next@NT_USER_ENUM_ITER@@QEAAPEBVNT_USER_ENUM_OBJ@@PEAJH@Z
1791; public: virtual int __cdecl OS_DACL_SUBJECT_ITER::Next(long * __ptr64) __ptr64
1792?Next@OS_DACL_SUBJECT_ITER@@UEAAHPEAJ@Z
1793; public: virtual int __cdecl OS_SACL_SUBJECT_ITER::Next(long * __ptr64) __ptr64
1794?Next@OS_SACL_SUBJECT_ITER@@UEAAHPEAJ@Z
1795; public: class SAM_USER_ENUM_OBJ const * __ptr64 __cdecl SAM_USER_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1796?Next@SAM_USER_ENUM_ITER@@QEAAPEBVSAM_USER_ENUM_OBJ@@PEAJH@Z
1797; public: class TRUSTED_DOMAIN_ENUM_OBJ const * __ptr64 __cdecl TRUSTED_DOMAIN_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1798?Next@TRUSTED_DOMAIN_ENUM_ITER@@QEAAPEBVTRUSTED_DOMAIN_ENUM_OBJ@@PEAJH@Z
1799; public: class USER0_ENUM_OBJ const * __ptr64 __cdecl USER0_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1800?Next@USER0_ENUM_ITER@@QEAAPEBVUSER0_ENUM_OBJ@@PEAJH@Z
1801; public: class USER10_ENUM_OBJ const * __ptr64 __cdecl USER10_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1802?Next@USER10_ENUM_ITER@@QEAAPEBVUSER10_ENUM_OBJ@@PEAJH@Z
1803; public: class USER1_ENUM_OBJ const * __ptr64 __cdecl USER1_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1804?Next@USER1_ENUM_ITER@@QEAAPEBVUSER1_ENUM_OBJ@@PEAJH@Z
1805; public: class USER2_ENUM_OBJ const * __ptr64 __cdecl USER2_ENUM_ITER::Next(long * __ptr64,int) __ptr64
1806?Next@USER2_ENUM_ITER@@QEAAPEBVUSER2_ENUM_OBJ@@PEAJH@Z
1807; protected: long __cdecl LM_RESUME_ENUM_ITER::NextGetInfo(void) __ptr64
1808?NextGetInfo@LM_RESUME_ENUM_ITER@@IEAAJXZ
1809; protected: void __cdecl LM_RESUME_ENUM::NukeBuffers(void) __ptr64
1810?NukeBuffers@LM_RESUME_ENUM@@IEAAXXZ
1811; public: static long __cdecl LM_SRVRES::NukeUsersSession(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64)
1812?NukeUsersSession@LM_SRVRES@@SAJPEBG00@Z
1813; public: long __cdecl LSA_POLICY::Open(unsigned short const * __ptr64,unsigned long) __ptr64
1814?Open@LSA_POLICY@@QEAAJPEBGK@Z
1815; public: long __cdecl LSA_SECRET::Open(class LSA_POLICY const & __ptr64,unsigned long) __ptr64
1816?Open@LSA_SECRET@@QEAAJAEBVLSA_POLICY@@K@Z
1817; private: long __cdecl SAM_DOMAIN::OpenDomain(class SAM_SERVER const & __ptr64,void * __ptr64,unsigned long) __ptr64
1818?OpenDomain@SAM_DOMAIN@@AEAAJAEBVSAM_SERVER@@PEAXK@Z
1819; public: long __cdecl LM_SERVICE::Pause(unsigned int,unsigned int) __ptr64
1820?Pause@LM_SERVICE@@QEAAJII@Z
1821; public: long __cdecl LM_SERVICE::Poll(int * __ptr64) __ptr64
1822?Poll@LM_SERVICE@@QEAAJPEAH@Z
1823; protected: void __cdecl LSA_ACCOUNT::PrintInfo(unsigned short const * __ptr64) __ptr64
1824?PrintInfo@LSA_ACCOUNT@@IEAAXPEBG@Z
1825; public: struct _ACCESS_LIST * __ptr64 __cdecl NET_ACCESS_1::QueryACE(unsigned int)const __ptr64
1826?QueryACE@NET_ACCESS_1@@QEBAPEAU_ACCESS_LIST@@I@Z
1827; public: void * __ptr64 __cdecl OS_ACE::QueryACE(void)const __ptr64
1828?QueryACE@OS_ACE@@QEBAPEAXXZ
1829; public: long __cdecl OS_ACL::QueryACE(unsigned long,class OS_ACE * __ptr64)const __ptr64
1830?QueryACE@OS_ACL@@QEBAJKPEAVOS_ACE@@@Z
1831; public: unsigned int __cdecl NET_ACCESS_1::QueryACECount(void)const __ptr64
1832?QueryACECount@NET_ACCESS_1@@QEBAIXZ
1833; public: long __cdecl OS_ACL::QueryACECount(unsigned long * __ptr64)const __ptr64
1834?QueryACECount@OS_ACL@@QEBAJPEAK@Z
1835; protected: class OS_ACL const * __ptr64 __cdecl OS_ACL_SUBJECT_ITER::QueryACL(void)const __ptr64
1836?QueryACL@OS_ACL_SUBJECT_ITER@@IEBAPEBVOS_ACL@@XZ
1837; public: unsigned long __cdecl ADMIN_AUTHORITY::QueryAccessAccountDomain(void)const __ptr64
1838?QueryAccessAccountDomain@ADMIN_AUTHORITY@@QEBAKXZ
1839; public: unsigned long __cdecl ADMIN_AUTHORITY::QueryAccessBuiltinDomain(void)const __ptr64
1840?QueryAccessBuiltinDomain@ADMIN_AUTHORITY@@QEBAKXZ
1841; public: unsigned long __cdecl ADMIN_AUTHORITY::QueryAccessLSAPolicy(void)const __ptr64
1842?QueryAccessLSAPolicy@ADMIN_AUTHORITY@@QEBAKXZ
1843; public: unsigned long __cdecl OS_ACE::QueryAccessMask(void)const __ptr64
1844?QueryAccessMask@OS_ACE@@QEBAKXZ
1845; public: unsigned long __cdecl OS_DACL_SUBJECT_ITER::QueryAccessMask(void)const __ptr64
1846?QueryAccessMask@OS_DACL_SUBJECT_ITER@@QEBAKXZ
1847; public: unsigned long __cdecl ADMIN_AUTHORITY::QueryAccessSamServer(void)const __ptr64
1848?QueryAccessSamServer@ADMIN_AUTHORITY@@QEBAKXZ
1849; public: unsigned int __cdecl NT_MACHINE_ENUM_OBJ::QueryAccountCtrl(void)const __ptr64
1850?QueryAccountCtrl@NT_MACHINE_ENUM_OBJ@@QEBAIXZ
1851; public: int __cdecl USER_2::QueryAccountDisabled(void)const __ptr64
1852?QueryAccountDisabled@USER_2@@QEBAHXZ
1853; public: class SAM_DOMAIN * __ptr64 __cdecl ADMIN_AUTHORITY::QueryAccountDomain(void)const __ptr64
1854?QueryAccountDomain@ADMIN_AUTHORITY@@QEBAPEAVSAM_DOMAIN@@XZ
1855; public: long __cdecl USER_2::QueryAccountExpires(void)const __ptr64
1856?QueryAccountExpires@USER_2@@QEBAJXZ
1857; public: enum _ACCOUNT_TYPE __cdecl USER_3::QueryAccountType(void)const __ptr64
1858?QueryAccountType@USER_3@@QEBA?AW4_ACCOUNT_TYPE@@XZ
1859; public: unsigned char __cdecl OS_ACE::QueryAceFlags(void)const __ptr64
1860?QueryAceFlags@OS_ACE@@QEBAEXZ
1861; public: struct _ACL * __ptr64 __cdecl OS_ACL::QueryAcl(void)const __ptr64
1862?QueryAcl@OS_ACL@@QEBAPEAU_ACL@@XZ
1863; protected: unsigned int __cdecl OS_OBJECT_WITH_DATA::QueryAllocSize(void)const __ptr64
1864?QueryAllocSize@OS_OBJECT_WITH_DATA@@IEBAIXZ
1865; public: unsigned short const * __ptr64 __cdecl DOMAIN::QueryAnyDC(void)const __ptr64
1866?QueryAnyDC@DOMAIN@@QEBAPEBGXZ
1867; public: unsigned short const * __ptr64 __cdecl MEMBERSHIP_LM_OBJ::QueryAssocName(unsigned int)const __ptr64
1868?QueryAssocName@MEMBERSHIP_LM_OBJ@@QEBAPEBGI@Z
1869; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryAuditAccessMask_F(void)const __ptr64
1870?QueryAuditAccessMask_F@OS_SACL_SUBJECT_ITER@@QEBAKXZ
1871; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryAuditAccessMask_S(void)const __ptr64
1872?QueryAuditAccessMask_S@OS_SACL_SUBJECT_ITER@@QEBAKXZ
1873; public: virtual unsigned long __cdecl LOCAL_USER::QueryAuthFlags(void)const __ptr64
1874?QueryAuthFlags@LOCAL_USER@@UEBAKXZ
1875; public: virtual unsigned long __cdecl USER_11::QueryAuthFlags(void)const __ptr64
1876?QueryAuthFlags@USER_11@@UEBAKXZ
1877; protected: unsigned char * __ptr64 __cdecl LM_ENUM_ITER::QueryBasePtr(void)const __ptr64
1878?QueryBasePtr@LM_ENUM_ITER@@IEBAPEAEXZ
1879; protected: unsigned char const * __ptr64 __cdecl LM_RESUME_ENUM_ITER::QueryBasePtr(void)const __ptr64
1880?QueryBasePtr@LM_RESUME_ENUM_ITER@@IEBAPEBEXZ
1881; protected: unsigned char * __ptr64 __cdecl DEVICE::QueryBufPtr(void) __ptr64
1882?QueryBufPtr@DEVICE@@IEAAPEAEXZ
1883; protected: void * __ptr64 __cdecl NT_MEMORY::QueryBuffer(void)const __ptr64
1884?QueryBuffer@NT_MEMORY@@IEBAPEAXXZ
1885; public: class BUFFER const & __ptr64 __cdecl SERVICE_CONTROL::QueryBuffer(void)const __ptr64
1886?QueryBuffer@SERVICE_CONTROL@@QEBAAEBVBUFFER@@XZ
1887; public: struct _SAM_RID_ENUMERATION const * __ptr64 __cdecl ALIAS_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1888?QueryBufferPtr@ALIAS_ENUM_OBJ@@QEBAPEBU_SAM_RID_ENUMERATION@@XZ
1889; public: struct _SERVER_INFO_100 const * __ptr64 __cdecl DOMAIN0_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1890?QueryBufferPtr@DOMAIN0_ENUM_OBJ@@QEBAPEBU_SERVER_INFO_100@@XZ
1891; protected: unsigned char const * __ptr64 __cdecl ENUM_OBJ_BASE::QueryBufferPtr(void)const __ptr64
1892?QueryBufferPtr@ENUM_OBJ_BASE@@IEBAPEBEXZ
1893; public: struct _FILE_INFO_3 const * __ptr64 __cdecl FILE3_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1894?QueryBufferPtr@FILE3_ENUM_OBJ@@QEBAPEBU_FILE_INFO_3@@XZ
1895; public: struct _GROUP_INFO_0 const * __ptr64 __cdecl GROUP0_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1896?QueryBufferPtr@GROUP0_ENUM_OBJ@@QEBAPEBU_GROUP_INFO_0@@XZ
1897; public: unsigned char const * __ptr64 __cdecl LM_RESUME_BUFFER::QueryBufferPtr(void)const __ptr64
1898?QueryBufferPtr@LM_RESUME_BUFFER@@QEBAPEBEXZ
1899; public: struct _POLICY_PRIVILEGE_DEFINITION const * __ptr64 __cdecl LSA_PRIVILEGES_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1900?QueryBufferPtr@LSA_PRIVILEGES_ENUM_OBJ@@QEBAPEBU_POLICY_PRIVILEGE_DEFINITION@@XZ
1901; protected: unsigned char * __ptr64 __cdecl NEW_LM_OBJ::QueryBufferPtr(void)const __ptr64
1902?QueryBufferPtr@NEW_LM_OBJ@@IEBAPEAEXZ
1903; public: struct _DOMAIN_DISPLAY_MACHINE const * __ptr64 __cdecl NT_MACHINE_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1904?QueryBufferPtr@NT_MACHINE_ENUM_OBJ@@QEBAPEBU_DOMAIN_DISPLAY_MACHINE@@XZ
1905; public: struct _SAM_RID_ENUMERATION const * __ptr64 __cdecl SAM_USER_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1906?QueryBufferPtr@SAM_USER_ENUM_OBJ@@QEBAPEBU_SAM_RID_ENUMERATION@@XZ
1907; public: struct _SERVER_INFO_101 const * __ptr64 __cdecl SERVER1_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1908?QueryBufferPtr@SERVER1_ENUM_OBJ@@QEBAPEBU_SERVER_INFO_101@@XZ
1909; public: struct _USER_INFO_0 const * __ptr64 __cdecl USER0_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
1910?QueryBufferPtr@USER0_ENUM_OBJ@@QEBAPEBU_USER_INFO_0@@XZ
1911; protected: unsigned int __cdecl NEW_LM_OBJ::QueryBufferSize(void)const __ptr64
1912?QueryBufferSize@NEW_LM_OBJ@@IEBAIXZ
1913; public: class SAM_DOMAIN * __ptr64 __cdecl ADMIN_AUTHORITY::QueryBuiltinDomain(void)const __ptr64
1914?QueryBuiltinDomain@ADMIN_AUTHORITY@@QEBAPEAVSAM_DOMAIN@@XZ
1915; public: long __cdecl OS_ACL::QueryBytesInUse(unsigned long * __ptr64)const __ptr64
1916?QueryBytesInUse@OS_ACL@@QEBAJPEAK@Z
1917; public: unsigned short const * __ptr64 __cdecl LM_SESSION_2::QueryClientType(void)const __ptr64
1918?QueryClientType@LM_SESSION_2@@QEBAPEBGXZ
1919; public: unsigned short const * __ptr64 __cdecl GROUP_1::QueryComment(void)const __ptr64
1920?QueryComment@GROUP_1@@QEBAPEBGXZ
1921; public: unsigned short const * __ptr64 __cdecl SERVER1_ENUM_OBJ::QueryComment(void)const __ptr64
1922?QueryComment@SERVER1_ENUM_OBJ@@QEBAPEBGXZ
1923; public: unsigned short const * __ptr64 __cdecl SERVER_1::QueryComment(void)const __ptr64
1924?QueryComment@SERVER_1@@QEBAPEBGXZ
1925; public: unsigned short const * __ptr64 __cdecl SHARE_1::QueryComment(void)const __ptr64
1926?QueryComment@SHARE_1@@QEBAPEBGXZ
1927; public: unsigned short const * __ptr64 __cdecl USER_11::QueryComment(void)const __ptr64
1928?QueryComment@USER_11@@QEBAPEBGXZ
1929; public: long __cdecl NET_NAME::QueryComputerName(class NLS_STR * __ptr64) __ptr64
1930?QueryComputerName@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
1931; public: long __cdecl SC_SERVICE::QueryConfig(struct _QUERY_SERVICE_CONFIGW * __ptr64 * __ptr64) __ptr64
1932?QueryConfig@SC_SERVICE@@QEAAJPEAPEAU_QUERY_SERVICE_CONFIGW@@@Z
1933; public: class OS_SECURITY_DESCRIPTOR_CONTROL const * __ptr64 __cdecl OS_SECURITY_DESCRIPTOR::QueryControl(void)const __ptr64
1934?QueryControl@OS_SECURITY_DESCRIPTOR@@QEBAPEBVOS_SECURITY_DESCRIPTOR_CONTROL@@XZ
1935; public: struct _TRUSTED_CONTROLLERS_INFO const & __ptr64 __cdecl LSA_TRUSTED_DC_LIST::QueryControllerList(void)const __ptr64
1936?QueryControllerList@LSA_TRUSTED_DC_LIST@@QEBAAEBU_TRUSTED_CONTROLLERS_INFO@@XZ
1937; public: long __cdecl LSA_TRUSTED_DOMAIN::QueryControllerList(class LSA_REF_DOMAIN_MEM * __ptr64)const __ptr64
1938?QueryControllerList@LSA_TRUSTED_DOMAIN@@QEBAJPEAVLSA_REF_DOMAIN_MEM@@@Z
1939; public: unsigned int __cdecl ENUM_CALLER::QueryCount(void)const __ptr64
1940?QueryCount@ENUM_CALLER@@QEBAIXZ
1941; protected: unsigned int __cdecl LM_ENUM_ITER::QueryCount(void)const __ptr64
1942?QueryCount@LM_ENUM_ITER@@IEBAIXZ
1943; protected: unsigned int __cdecl LM_RESUME_ENUM_ITER::QueryCount(void)const __ptr64
1944?QueryCount@LM_RESUME_ENUM_ITER@@IEBAIXZ
1945; public: int __cdecl LSA_TRUSTED_DC_LIST::QueryCount(void) __ptr64
1946?QueryCount@LSA_TRUSTED_DC_LIST@@QEAAHXZ
1947; public: unsigned long __cdecl NT_MEMORY::QueryCount(void)const __ptr64
1948?QueryCount@NT_MEMORY@@QEBAKXZ
1949; protected: static long __cdecl NT_ACCOUNT_ENUM::QueryCountPreferences2(unsigned long * __ptr64,unsigned long * __ptr64,unsigned int,unsigned long,unsigned long,unsigned long)
1950?QueryCountPreferences2@NT_ACCOUNT_ENUM@@KAJPEAK0IKKK@Z
1951; protected: virtual long __cdecl NT_ACCOUNT_ENUM::QueryCountPreferences(unsigned long * __ptr64,unsigned long * __ptr64,unsigned int,unsigned long,unsigned long,unsigned long) __ptr64
1952?QueryCountPreferences@NT_ACCOUNT_ENUM@@MEAAJPEAK0IKKK@Z
1953; protected: unsigned long __cdecl OS_ACL_SUBJECT_ITER::QueryCurrentACE(void)const __ptr64
1954?QueryCurrentACE@OS_ACL_SUBJECT_ITER@@IEBAKXZ
1955; public: long __cdecl LSA_POLICY::QueryCurrentUser(class NLS_STR * __ptr64)const __ptr64
1956?QueryCurrentUser@LSA_POLICY@@QEBAJPEAVNLS_STR@@@Z
1957; public: unsigned int __cdecl SHARE_2::QueryCurrentUses(void)const __ptr64
1958?QueryCurrentUses@SHARE_2@@QEBAIXZ
1959; public: long __cdecl OS_SECURITY_DESCRIPTOR::QueryDACL(int * __ptr64,class OS_ACL * __ptr64 * __ptr64,int * __ptr64)const __ptr64
1960?QueryDACL@OS_SECURITY_DESCRIPTOR@@QEBAJPEAHPEAPEAVOS_ACL@@0@Z
1961; public: long __cdecl LSA_DOMAIN_INFO::QueryDcName(class NLS_STR * __ptr64) __ptr64
1962?QueryDcName@LSA_DOMAIN_INFO@@QEAAJPEAVNLS_STR@@@Z
1963; protected: enum LMO_DEVICE __cdecl DEVICE::QueryDevType(void)const __ptr64
1964?QueryDevType@DEVICE@@IEBA?AW4LMO_DEVICE@@XZ
1965; public: long __cdecl LOCATION::QueryDisplayName(class NLS_STR * __ptr64)const __ptr64
1966?QueryDisplayName@LOCATION@@QEBAJPEAVNLS_STR@@@Z
1967; public: long __cdecl LSA_PRIVILEGES_ENUM_OBJ::QueryDisplayName(class NLS_STR * __ptr64,class LSA_POLICY const * __ptr64)const __ptr64
1968?QueryDisplayName@LSA_PRIVILEGES_ENUM_OBJ@@QEBAJPEAVNLS_STR@@PEBVLSA_POLICY@@@Z
1969; public: unsigned short const * __ptr64 __cdecl LOCATION::QueryDomain(void)const __ptr64
1970?QueryDomain@LOCATION@@QEBAPEBGXZ
1971; public: long __cdecl LSA_TRANSLATED_NAME_MEM::QueryDomainIndex(unsigned long)const __ptr64
1972?QueryDomainIndex@LSA_TRANSLATED_NAME_MEM@@QEBAJK@Z
1973; public: unsigned short const * __ptr64 __cdecl BROWSE_DOMAIN_INFO::QueryDomainName(void)const __ptr64
1974?QueryDomainName@BROWSE_DOMAIN_INFO@@QEBAPEBGXZ
1975; public: unsigned long __cdecl BROWSE_DOMAIN_INFO::QueryDomainSources(void)const __ptr64
1976?QueryDomainSources@BROWSE_DOMAIN_INFO@@QEBAKXZ
1977; public: long __cdecl NET_NAME::QueryDrive(class NLS_STR * __ptr64) __ptr64
1978?QueryDrive@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
1979; public: unsigned long __cdecl USER_MODALS_3::QueryDuration(void)const __ptr64
1980?QueryDuration@USER_MODALS_3@@QEBAKXZ
1981; public: long __cdecl BASE::QueryError(void)const __ptr64
1982?QueryError@BASE@@QEBAJXZ
1983; public: long __cdecl LM_SERVICE::QueryExitCode(void)const __ptr64
1984?QueryExitCode@LM_SERVICE@@QEBAJXZ
1985; public: long __cdecl NET_ACCESS_1::QueryFailingName(class NLS_STR * __ptr64,enum PERMNAME_TYPE * __ptr64)const __ptr64
1986?QueryFailingName@NET_ACCESS_1@@QEBAJPEAVNLS_STR@@PEAW4PERMNAME_TYPE@@@Z
1987; public: int __cdecl LSA_TRANSLATED_SID_MEM::QueryFailingNameIndex(unsigned long * __ptr64) __ptr64
1988?QueryFailingNameIndex@LSA_TRANSLATED_SID_MEM@@QEAAHPEAK@Z
1989; public: unsigned long __cdecl LM_FILE::QueryFileId(void)const __ptr64
1990?QueryFileId@LM_FILE@@QEBAKXZ
1991; public: unsigned long __cdecl USER_MODALS::QueryForceLogoff(void)const __ptr64
1992?QueryForceLogoff@USER_MODALS@@QEBAKXZ
1993; public: unsigned short const * __ptr64 __cdecl USER_11::QueryFullName(void)const __ptr64
1994?QueryFullName@USER_11@@QEBAPEBGXZ
1995; public: long __cdecl LM_SERVICE::QueryFullStatus(enum LM_SERVICE_STATUS * __ptr64,struct LM_SERVICE_OTHER_STATUS * __ptr64) __ptr64
1996?QueryFullStatus@LM_SERVICE@@QEAAJPEAW4LM_SERVICE_STATUS@@PEAULM_SERVICE_OTHER_STATUS@@@Z
1997; public: long __cdecl OS_SECURITY_DESCRIPTOR::QueryGroup(int * __ptr64,class OS_SID * __ptr64 * __ptr64,int * __ptr64)const __ptr64
1998?QueryGroup@OS_SECURITY_DESCRIPTOR@@QEBAJPEAHPEAPEAVOS_SID@@0@Z
1999; public: void * __ptr64 __cdecl LSA_OBJECT::QueryHandle(void)const __ptr64
2000?QueryHandle@LSA_OBJECT@@QEBAPEAXXZ
2001; public: void * __ptr64 __cdecl SAM_OBJECT::QueryHandle(void)const __ptr64
2002?QueryHandle@SAM_OBJECT@@QEBAPEAXXZ
2003; public: struct SC_HANDLE__ * __ptr64 __cdecl SERVICE_CONTROL::QueryHandle(void)const __ptr64
2004?QueryHandle@SERVICE_CONTROL@@QEBAPEAUSC_HANDLE__@@XZ
2005; public: unsigned short const * __ptr64 __cdecl USER_11::QueryHomeDir(void)const __ptr64
2006?QueryHomeDir@USER_11@@QEBAPEBGXZ
2007; public: unsigned short const * __ptr64 __cdecl USER_3::QueryHomedirDrive(void)const __ptr64
2008?QueryHomedirDrive@USER_3@@QEBAPEBGXZ
2009; public: unsigned char * __ptr64 __cdecl LOGON_HOURS_SETTING::QueryHoursBlock(void)const __ptr64
2010?QueryHoursBlock@LOGON_HOURS_SETTING@@QEBAPEAEXZ
2011; public: unsigned long __cdecl LM_SESSION_10::QueryIdleTime(void)const __ptr64
2012?QueryIdleTime@LM_SESSION_10@@QEBAKXZ
2013; public: long __cdecl LSA_SECRET::QueryInfo(class NLS_STR * __ptr64,class NLS_STR * __ptr64,union _LARGE_INTEGER * __ptr64,union _LARGE_INTEGER * __ptr64)const __ptr64
2014?QueryInfo@LSA_SECRET@@QEBAJPEAVNLS_STR@@0PEAT_LARGE_INTEGER@@1@Z
2015; private: long __cdecl LSA_TRUSTED_DC_LIST::QueryInfo(class NLS_STR const & __ptr64,unsigned short const * __ptr64) __ptr64
2016?QueryInfo@LSA_TRUSTED_DC_LIST@@AEAAJAEBVNLS_STR@@PEBG@Z
2017; public: unsigned int __cdecl LM_ENUM::QueryInfoLevel(void)const __ptr64
2018?QueryInfoLevel@LM_ENUM@@QEBAIXZ
2019; public: unsigned int __cdecl LM_RESUME_ENUM::QueryInfoLevel(void)const __ptr64
2020?QueryInfoLevel@LM_RESUME_ENUM@@QEBAIXZ
2021; public: unsigned long __cdecl OS_DACL_SUBJECT_ITER::QueryInheritOnlyAccessMask(void)const __ptr64
2022?QueryInheritOnlyAccessMask@OS_DACL_SUBJECT_ITER@@QEBAKXZ
2023; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryInheritOnlyAuditAccessMask_F(void)const __ptr64
2024?QueryInheritOnlyAuditAccessMask_F@OS_SACL_SUBJECT_ITER@@QEBAKXZ
2025; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryInheritOnlyAuditAccessMask_S(void)const __ptr64
2026?QueryInheritOnlyAuditAccessMask_S@OS_SACL_SUBJECT_ITER@@QEBAKXZ
2027; public: unsigned int __cdecl LM_RESUME_BUFFER::QueryItemCount(void)const __ptr64
2028?QueryItemCount@LM_RESUME_BUFFER@@QEBAIXZ
2029; protected: virtual unsigned int __cdecl MEMBERSHIP_LM_OBJ::QueryItemSize(void)const __ptr64
2030?QueryItemSize@MEMBERSHIP_LM_OBJ@@MEBAIXZ
2031; public: unsigned short const * __ptr64 __cdecl WKSTA_1::QueryLMRoot(void)const __ptr64
2032?QueryLMRoot@WKSTA_1@@QEBAPEBGXZ
2033; public: class LSA_POLICY * __ptr64 __cdecl ADMIN_AUTHORITY::QueryLSAPolicy(void)const __ptr64
2034?QueryLSAPolicy@ADMIN_AUTHORITY@@QEBAPEAVLSA_POLICY@@XZ
2035; public: long __cdecl NET_NAME::QueryLastComponent(class NLS_STR * __ptr64) __ptr64
2036?QueryLastComponent@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
2037; public: long __cdecl OS_SID::QueryLastSubAuthority(unsigned long * __ptr64 * __ptr64)const __ptr64
2038?QueryLastSubAuthority@OS_SID@@QEBAJPEAPEAK@Z
2039; public: unsigned long __cdecl OS_SID::QueryLength(void)const __ptr64
2040?QueryLength@OS_SID@@QEBAKXZ
2041; public: long __cdecl NET_NAME::QueryLocalDrive(class NLS_STR * __ptr64) __ptr64
2042?QueryLocalDrive@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
2043; public: long __cdecl NET_NAME::QueryLocalPath(class NLS_STR * __ptr64) __ptr64
2044?QueryLocalPath@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
2045; public: long __cdecl SC_MANAGER::QueryLockStatus(struct _QUERY_SERVICE_LOCK_STATUSW * __ptr64 * __ptr64) __ptr64
2046?QueryLockStatus@SC_MANAGER@@QEAAJPEAPEAU_QUERY_SERVICE_LOCK_STATUSW@@@Z
2047; public: int __cdecl USER_2::QueryLockout(void)const __ptr64
2048?QueryLockout@USER_2@@QEBAHXZ
2049; public: unsigned short const * __ptr64 __cdecl WKSTA_10::QueryLogonDomain(void)const __ptr64
2050?QueryLogonDomain@WKSTA_10@@QEBAPEBGXZ
2051; public: unsigned short const * __ptr64 __cdecl WKSTA_USER_1::QueryLogonDomain(void)const __ptr64
2052?QueryLogonDomain@WKSTA_USER_1@@QEBAPEBGXZ
2053; public: class LOGON_HOURS_SETTING const & __ptr64 __cdecl USER_11::QueryLogonHours(void)const __ptr64
2054?QueryLogonHours@USER_11@@QEBAAEBVLOGON_HOURS_SETTING@@XZ
2055; public: unsigned short const * __ptr64 __cdecl WKSTA_1::QueryLogonServer(void)const __ptr64
2056?QueryLogonServer@WKSTA_1@@QEBAPEBGXZ
2057; public: unsigned short const * __ptr64 __cdecl WKSTA_USER_1::QueryLogonServer(void)const __ptr64
2058?QueryLogonServer@WKSTA_USER_1@@QEBAPEBGXZ
2059; public: unsigned short const * __ptr64 __cdecl WKSTA_10::QueryLogonUser(void)const __ptr64
2060?QueryLogonUser@WKSTA_10@@QEBAPEBGXZ
2061; public: struct _LUID __cdecl OS_LUID::QueryLuid(void)const __ptr64
2062?QueryLuid@OS_LUID@@QEBA?AU_LUID@@XZ
2063; public: unsigned int __cdecl SERVER1_ENUM_OBJ::QueryMajorVer(void)const __ptr64
2064?QueryMajorVer@SERVER1_ENUM_OBJ@@QEBAIXZ
2065; public: unsigned int __cdecl SERVER_1::QueryMajorVer(void)const __ptr64
2066?QueryMajorVer@SERVER_1@@QEBAIXZ
2067; public: unsigned int __cdecl WKSTA_10::QueryMajorVer(void)const __ptr64
2068?QueryMajorVer@WKSTA_10@@QEBAIXZ
2069; public: unsigned long __cdecl USER_MODALS::QueryMaxPasswdAge(void)const __ptr64
2070?QueryMaxPasswdAge@USER_MODALS@@QEBAKXZ
2071; public: unsigned int __cdecl SERVER_2::QueryMaxUsers(void)const __ptr64
2072?QueryMaxUsers@SERVER_2@@QEBAIXZ
2073; public: unsigned int __cdecl SHARE_2::QueryMaxUses(void)const __ptr64
2074?QueryMaxUses@SHARE_2@@QEBAIXZ
2075; public: unsigned long __cdecl USER_MODALS::QueryMinPasswdAge(void)const __ptr64
2076?QueryMinPasswdAge@USER_MODALS@@QEBAKXZ
2077; public: unsigned int __cdecl USER_MODALS::QueryMinPasswdLen(void)const __ptr64
2078?QueryMinPasswdLen@USER_MODALS@@QEBAIXZ
2079; public: unsigned int __cdecl SERVER1_ENUM_OBJ::QueryMinorVer(void)const __ptr64
2080?QueryMinorVer@SERVER1_ENUM_OBJ@@QEBAIXZ
2081; public: unsigned int __cdecl SERVER_1::QueryMinorVer(void)const __ptr64
2082?QueryMinorVer@SERVER_1@@QEBAIXZ
2083; public: unsigned int __cdecl WKSTA_10::QueryMinorVer(void)const __ptr64
2084?QueryMinorVer@WKSTA_10@@QEBAIXZ
2085; public: long __cdecl LOCATION::QueryNOSVersion(unsigned int * __ptr64,unsigned int * __ptr64) __ptr64
2086?QueryNOSVersion@LOCATION@@QEAAJPEAI0@Z
2087; public: virtual unsigned short const * __ptr64 __cdecl COMPUTER::QueryName(void)const __ptr64
2088?QueryName@COMPUTER@@UEBAPEBGXZ
2089; public: virtual unsigned short const * __ptr64 __cdecl DEVICE::QueryName(void)const __ptr64
2090?QueryName@DEVICE@@UEBAPEBGXZ
2091; public: unsigned short const * __ptr64 __cdecl DOMAIN0_ENUM_OBJ::QueryName(void)const __ptr64
2092?QueryName@DOMAIN0_ENUM_OBJ@@QEBAPEBGXZ
2093; public: virtual unsigned short const * __ptr64 __cdecl DOMAIN::QueryName(void)const __ptr64
2094?QueryName@DOMAIN@@UEBAPEBGXZ
2095; public: unsigned short const * __ptr64 __cdecl GROUP0_ENUM_OBJ::QueryName(void)const __ptr64
2096?QueryName@GROUP0_ENUM_OBJ@@QEBAPEBGXZ
2097; public: virtual unsigned short const * __ptr64 __cdecl GROUP::QueryName(void)const __ptr64
2098?QueryName@GROUP@@UEBAPEBGXZ
2099; public: virtual unsigned short const * __ptr64 __cdecl GROUP_MEMB::QueryName(void)const __ptr64
2100?QueryName@GROUP_MEMB@@UEBAPEBGXZ
2101; public: unsigned short const * __ptr64 __cdecl LM_SERVICE::QueryName(void)const __ptr64
2102?QueryName@LM_SERVICE@@QEBAPEBGXZ
2103; public: virtual unsigned short const * __ptr64 __cdecl LM_SESSION::QueryName(void)const __ptr64
2104?QueryName@LM_SESSION@@UEBAPEBGXZ
2105; public: unsigned short const * __ptr64 __cdecl LOCATION::QueryName(void)const __ptr64
2106?QueryName@LOCATION@@QEBAPEBGXZ
2107; public: virtual unsigned short const * __ptr64 __cdecl LSA_ACCOUNT::QueryName(void)const __ptr64
2108?QueryName@LSA_ACCOUNT@@UEBAPEBGXZ
2109; public: long __cdecl LSA_ACCT_DOM_INFO_MEM::QueryName(class NLS_STR * __ptr64)const __ptr64
2110?QueryName@LSA_ACCT_DOM_INFO_MEM@@QEBAJPEAVNLS_STR@@@Z
2111; public: long __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryName(class NLS_STR * __ptr64)const __ptr64
2112?QueryName@LSA_PRIMARY_DOM_INFO_MEM@@QEBAJPEAVNLS_STR@@@Z
2113; public: long __cdecl LSA_REF_DOMAIN_MEM::QueryName(unsigned long,class NLS_STR * __ptr64)const __ptr64
2114?QueryName@LSA_REF_DOMAIN_MEM@@QEBAJKPEAVNLS_STR@@@Z
2115; public: long __cdecl LSA_TRANSLATED_NAME_MEM::QueryName(unsigned long,class NLS_STR * __ptr64)const __ptr64
2116?QueryName@LSA_TRANSLATED_NAME_MEM@@QEBAJKPEAVNLS_STR@@@Z
2117; public: long __cdecl LSA_TRUST_INFO_MEM::QueryName(unsigned long,class NLS_STR * __ptr64)const __ptr64
2118?QueryName@LSA_TRUST_INFO_MEM@@QEBAJKPEAVNLS_STR@@@Z
2119; public: virtual unsigned short const * __ptr64 __cdecl NET_ACCESS::QueryName(void)const __ptr64
2120?QueryName@NET_ACCESS@@UEBAPEBGXZ
2121; public: virtual unsigned short const * __ptr64 __cdecl NEW_LM_OBJ::QueryName(void)const __ptr64
2122?QueryName@NEW_LM_OBJ@@UEBAPEBGXZ
2123; public: long __cdecl OS_SID::QueryName(class NLS_STR * __ptr64,unsigned short const * __ptr64,void * __ptr64)const __ptr64
2124?QueryName@OS_SID@@QEBAJPEAVNLS_STR@@PEBGPEAX@Z
2125; public: unsigned short const * __ptr64 __cdecl SERVER1_ENUM_OBJ::QueryName(void)const __ptr64
2126?QueryName@SERVER1_ENUM_OBJ@@QEBAPEBGXZ
2127; public: virtual unsigned short const * __ptr64 __cdecl SERVER_0::QueryName(void)const __ptr64
2128?QueryName@SERVER_0@@UEBAPEBGXZ
2129; public: virtual unsigned short const * __ptr64 __cdecl SHARE::QueryName(void)const __ptr64
2130?QueryName@SHARE@@UEBAPEBGXZ
2131; public: unsigned short const * __ptr64 __cdecl USER0_ENUM_OBJ::QueryName(void)const __ptr64
2132?QueryName@USER0_ENUM_OBJ@@QEBAPEBGXZ
2133; public: virtual unsigned short const * __ptr64 __cdecl USER::QueryName(void)const __ptr64
2134?QueryName@USER@@UEBAPEBGXZ
2135; public: virtual unsigned short const * __ptr64 __cdecl USER_MEMB::QueryName(void)const __ptr64
2136?QueryName@USER_MEMB@@UEBAPEBGXZ
2137; public: virtual unsigned short const * __ptr64 __cdecl USER_MODALS::QueryName(void)const __ptr64
2138?QueryName@USER_MODALS@@UEBAPEBGXZ
2139; public: virtual unsigned short const * __ptr64 __cdecl USER_MODALS_3::QueryName(void)const __ptr64
2140?QueryName@USER_MODALS_3@@UEBAPEBGXZ
2141; public: unsigned long __cdecl OS_DACL_SUBJECT_ITER::QueryNewContainerAccessMask(void)const __ptr64
2142?QueryNewContainerAccessMask@OS_DACL_SUBJECT_ITER@@QEBAKXZ
2143; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryNewContainerAuditAccessMask_F(void)const __ptr64
2144?QueryNewContainerAuditAccessMask_F@OS_SACL_SUBJECT_ITER@@QEBAKXZ
2145; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryNewContainerAuditAccessMask_S(void)const __ptr64
2146?QueryNewContainerAuditAccessMask_S@OS_SACL_SUBJECT_ITER@@QEBAKXZ
2147; public: unsigned long __cdecl OS_DACL_SUBJECT_ITER::QueryNewObjectAccessMask(void)const __ptr64
2148?QueryNewObjectAccessMask@OS_DACL_SUBJECT_ITER@@QEBAKXZ
2149; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryNewObjectAuditAccessMask_F(void)const __ptr64
2150?QueryNewObjectAuditAccessMask_F@OS_SACL_SUBJECT_ITER@@QEBAKXZ
2151; public: unsigned long __cdecl OS_SACL_SUBJECT_ITER::QueryNewObjectAuditAccessMask_S(void)const __ptr64
2152?QueryNewObjectAuditAccessMask_S@OS_SACL_SUBJECT_ITER@@QEBAKXZ
2153; public: int __cdecl SAM_PSWD_DOM_INFO_MEM::QueryNoAnonChange(void) __ptr64
2154?QueryNoAnonChange@SAM_PSWD_DOM_INFO_MEM@@QEAAHXZ
2155; public: int __cdecl USER_2::QueryNoPasswordExpire(void)const __ptr64
2156?QueryNoPasswordExpire@USER_2@@QEBAHXZ
2157; public: unsigned int __cdecl LM_FILE_3::QueryNumLock(void)const __ptr64
2158?QueryNumLock@LM_FILE_3@@QEBAIXZ
2159; public: unsigned long __cdecl FILE3_ENUM_OBJ::QueryNumLocks(void)const __ptr64
2160?QueryNumLocks@FILE3_ENUM_OBJ@@QEBAKXZ
2161; public: unsigned int __cdecl LM_SESSION_1::QueryNumOpens(void)const __ptr64
2162?QueryNumOpens@LM_SESSION_1@@QEBAIXZ
2163; public: unsigned long __cdecl OS_PRIVILEGE_SET::QueryNumberOfPrivileges(void)const __ptr64
2164?QueryNumberOfPrivileges@OS_PRIVILEGE_SET@@QEBAKXZ
2165; public: unsigned long __cdecl USER_MODALS_3::QueryObservation(void)const __ptr64
2166?QueryObservation@USER_MODALS_3@@QEBAKXZ
2167; public: class STRLIST * __ptr64 __cdecl WKSTA_10::QueryOtherDomains(void)const __ptr64
2168?QueryOtherDomains@WKSTA_10@@QEBAPEAVSTRLIST@@XZ
2169; public: unsigned short const * __ptr64 __cdecl WKSTA_USER_1::QueryOtherDomains(void)const __ptr64
2170?QueryOtherDomains@WKSTA_USER_1@@QEBAPEBGXZ
2171; public: long __cdecl OS_SECURITY_DESCRIPTOR::QueryOwner(int * __ptr64,class OS_SID * __ptr64 * __ptr64,int * __ptr64)const __ptr64
2172?QueryOwner@OS_SECURITY_DESCRIPTOR@@QEBAJPEAHPEAPEAVOS_SID@@0@Z
2173; public: unsigned short const * __ptr64 __cdecl DOMAIN::QueryPDC(void)const __ptr64
2174?QueryPDC@DOMAIN@@QEBAPEBGXZ
2175; public: void * __ptr64 __cdecl LSA_ACCT_DOM_INFO_MEM::QueryPSID(void)const __ptr64
2176?QueryPSID@LSA_ACCT_DOM_INFO_MEM@@QEBAPEAXXZ
2177; public: void * __ptr64 __cdecl LSA_DOMAIN_INFO::QueryPSID(void)const __ptr64
2178?QueryPSID@LSA_DOMAIN_INFO@@QEBAQEAXXZ
2179; public: void * __ptr64 __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryPSID(void)const __ptr64
2180?QueryPSID@LSA_PRIMARY_DOM_INFO_MEM@@QEBAPEAXXZ
2181; public: void * __ptr64 __cdecl LSA_REF_DOMAIN_MEM::QueryPSID(unsigned long)const __ptr64
2182?QueryPSID@LSA_REF_DOMAIN_MEM@@QEBAPEAXK@Z
2183; public: void * __ptr64 __cdecl LSA_TRUST_INFO_MEM::QueryPSID(unsigned long)const __ptr64
2184?QueryPSID@LSA_TRUST_INFO_MEM@@QEBAPEAXK@Z
2185; public: void * __ptr64 __cdecl OS_SID::QueryPSID(void)const __ptr64
2186?QueryPSID@OS_SID@@QEBAPEAXXZ
2187; public: void * __ptr64 __cdecl SAM_DOMAIN::QueryPSID(void)const __ptr64
2188?QueryPSID@SAM_DOMAIN@@QEBAPEAXXZ
2189; public: unsigned short const * __ptr64 __cdecl USER_11::QueryParms(void)const __ptr64
2190?QueryParms@USER_11@@QEBAPEBGXZ
2191; public: unsigned int __cdecl USER_MODALS::QueryPasswdHistLen(void)const __ptr64
2192?QueryPasswdHistLen@USER_MODALS@@QEBAIXZ
2193; public: unsigned short const * __ptr64 __cdecl SHARE_2::QueryPassword(void)const __ptr64
2194?QueryPassword@SHARE_2@@QEBAPEBGXZ
2195; public: unsigned short const * __ptr64 __cdecl USER_2::QueryPassword(void)const __ptr64
2196?QueryPassword@USER_2@@QEBAPEBGXZ
2197; public: unsigned long __cdecl USER_3::QueryPasswordExpired(void)const __ptr64
2198?QueryPasswordExpired@USER_3@@QEBAKXZ
2199; public: unsigned short const * __ptr64 __cdecl SHARE_2::QueryPath(void)const __ptr64
2200?QueryPath@SHARE_2@@QEBAPEBGXZ
2201; public: unsigned short const * __ptr64 __cdecl FILE3_ENUM_OBJ::QueryPathName(void)const __ptr64
2202?QueryPathName@FILE3_ENUM_OBJ@@QEBAPEBGXZ
2203; public: unsigned short const * __ptr64 __cdecl LM_FILE_3::QueryPathname(void)const __ptr64
2204?QueryPathname@LM_FILE_3@@QEBAPEBGXZ
2205; public: unsigned short const * __ptr64 __cdecl NLS_STR::QueryPch(void)const __ptr64
2206?QueryPch@NLS_STR@@QEBAPEBGXZ
2207; public: unsigned int __cdecl NET_ACCESS_1::QueryPerm(unsigned short const * __ptr64,enum PERMNAME_TYPE)const __ptr64
2208?QueryPerm@NET_ACCESS_1@@QEBAIPEBGW4PERMNAME_TYPE@@@Z
2209; public: unsigned int __cdecl LM_FILE_3::QueryPermission(void)const __ptr64
2210?QueryPermission@LM_FILE_3@@QEBAIXZ
2211; public: unsigned int __cdecl SHARE_2::QueryPermissions(void)const __ptr64
2212?QueryPermissions@SHARE_2@@QEBAIXZ
2213; public: long __cdecl LSA_TRUSTED_DOMAIN::QueryPosixOffset(unsigned long * __ptr64)const __ptr64
2214?QueryPosixOffset@LSA_TRUSTED_DOMAIN@@QEBAJPEAK@Z
2215; public: long __cdecl LSA_POLICY::QueryPrimaryBrowserGroup(class NLS_STR * __ptr64)const __ptr64
2216?QueryPrimaryBrowserGroup@LSA_POLICY@@QEBAJPEAVNLS_STR@@@Z
2217; public: long __cdecl LSA_POLICY::QueryPrimaryDomainName(class NLS_STR * __ptr64)const __ptr64
2218?QueryPrimaryDomainName@LSA_POLICY@@QEBAJPEAVNLS_STR@@@Z
2219; public: unsigned long __cdecl USER_3::QueryPrimaryGroupId(void)const __ptr64
2220?QueryPrimaryGroupId@USER_3@@QEBAKXZ
2221; public: virtual unsigned int __cdecl LOCAL_USER::QueryPriv(void)const __ptr64
2222?QueryPriv@LOCAL_USER@@UEBAIXZ
2223; public: virtual unsigned int __cdecl USER_11::QueryPriv(void)const __ptr64
2224?QueryPriv@USER_11@@UEBAIXZ
2225; public: struct _PRIVILEGE_SET * __ptr64 __cdecl OS_PRIVILEGE_SET::QueryPrivSet(void)const __ptr64
2226?QueryPrivSet@OS_PRIVILEGE_SET@@QEBAPEAU_PRIVILEGE_SET@@XZ
2227; public: class OS_LUID_AND_ATTRIBUTES const * __ptr64 __cdecl OS_PRIVILEGE_SET::QueryPrivilege(long) __ptr64
2228?QueryPrivilege@OS_PRIVILEGE_SET@@QEAAPEBVOS_LUID_AND_ATTRIBUTES@@J@Z
2229; public: long __cdecl LSA_ACCOUNT::QueryPrivilegeEnumIter(class LSA_ACCOUNT_PRIVILEGE_ENUM_ITER * __ptr64 * __ptr64) __ptr64
2230?QueryPrivilegeEnumIter@LSA_ACCOUNT@@QEAAJPEAPEAVLSA_ACCOUNT_PRIVILEGE_ENUM_ITER@@@Z
2231; public: static long __cdecl LSA_POLICY::QueryProductType(enum LSPL_PROD_TYPE * __ptr64)
2232?QueryProductType@LSA_POLICY@@SAJPEAW4LSPL_PROD_TYPE@@@Z
2233; public: unsigned short const * __ptr64 __cdecl USER_3::QueryProfile(void)const __ptr64
2234?QueryProfile@USER_3@@QEBAPEBGXZ
2235; protected: unsigned char * __ptr64 __cdecl LM_ENUM::QueryPtr(void)const __ptr64
2236?QueryPtr@LM_ENUM@@IEBAPEAEXZ
2237; public: struct _POLICY_ACCOUNT_DOMAIN_INFO const * __ptr64 __cdecl LSA_ACCT_DOM_INFO_MEM::QueryPtr(void)const __ptr64
2238?QueryPtr@LSA_ACCT_DOM_INFO_MEM@@QEBAPEBU_POLICY_ACCOUNT_DOMAIN_INFO@@XZ
2239; public: struct _POLICY_AUDIT_EVENTS_INFO * __ptr64 __cdecl LSA_AUDIT_EVENT_INFO_MEM::QueryPtr(void)const __ptr64
2240?QueryPtr@LSA_AUDIT_EVENT_INFO_MEM@@QEBAPEAU_POLICY_AUDIT_EVENTS_INFO@@XZ
2241; public: struct _POLICY_PRIMARY_DOMAIN_INFO const * __ptr64 __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryPtr(void)const __ptr64
2242?QueryPtr@LSA_PRIMARY_DOM_INFO_MEM@@QEBAPEBU_POLICY_PRIMARY_DOMAIN_INFO@@XZ
2243; private: struct _LSA_TRUST_INFORMATION const * __ptr64 __cdecl LSA_REF_DOMAIN_MEM::QueryPtr(void)const __ptr64
2244?QueryPtr@LSA_REF_DOMAIN_MEM@@AEBAPEBU_LSA_TRUST_INFORMATION@@XZ
2245; public: struct _POLICY_LSA_SERVER_ROLE_INFO const * __ptr64 __cdecl LSA_SERVER_ROLE_INFO_MEM::QueryPtr(void)const __ptr64
2246?QueryPtr@LSA_SERVER_ROLE_INFO_MEM@@QEBAPEBU_POLICY_LSA_SERVER_ROLE_INFO@@XZ
2247; private: struct _LSA_TRANSLATED_NAME const * __ptr64 __cdecl LSA_TRANSLATED_NAME_MEM::QueryPtr(void)const __ptr64
2248?QueryPtr@LSA_TRANSLATED_NAME_MEM@@AEBAPEBU_LSA_TRANSLATED_NAME@@XZ
2249; private: struct _LSA_TRANSLATED_SID const * __ptr64 __cdecl LSA_TRANSLATED_SID_MEM::QueryPtr(void)const __ptr64
2250?QueryPtr@LSA_TRANSLATED_SID_MEM@@AEBAPEBU_LSA_TRANSLATED_SID@@XZ
2251; public: struct _LSA_TRUST_INFORMATION const * __ptr64 __cdecl LSA_TRUST_INFO_MEM::QueryPtr(void)const __ptr64
2252?QueryPtr@LSA_TRUST_INFO_MEM@@QEBAPEBU_LSA_TRUST_INFORMATION@@XZ
2253; protected: void * __ptr64 __cdecl OS_OBJECT_WITH_DATA::QueryPtr(void)const __ptr64
2254?QueryPtr@OS_OBJECT_WITH_DATA@@IEBAPEAXXZ
2255; public: struct _DOMAIN_PASSWORD_INFORMATION const * __ptr64 __cdecl SAM_PSWD_DOM_INFO_MEM::QueryPtr(void)const __ptr64
2256?QueryPtr@SAM_PSWD_DOM_INFO_MEM@@QEBAPEBU_DOMAIN_PASSWORD_INFORMATION@@XZ
2257; public: struct _SAM_RID_ENUMERATION const * __ptr64 __cdecl SAM_RID_ENUMERATION_MEM::QueryPtr(void)const __ptr64
2258?QueryPtr@SAM_RID_ENUMERATION_MEM@@QEBAPEBU_SAM_RID_ENUMERATION@@XZ
2259; public: unsigned long __cdecl SAM_ALIAS::QueryRID(void) __ptr64
2260?QueryRID@SAM_ALIAS@@QEAAKXZ
2261; public: long __cdecl OS_SID::QueryRawID(class NLS_STR * __ptr64)const __ptr64
2262?QueryRawID@OS_SID@@QEBAJPEAVNLS_STR@@@Z
2263; public: long __cdecl NET_NAME::QueryRelativePath(class NLS_STR * __ptr64) __ptr64
2264?QueryRelativePath@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
2265; public: unsigned short const * __ptr64 __cdecl DEVICE::QueryRemoteName(void)const __ptr64
2266?QueryRemoteName@DEVICE@@QEBAPEBGXZ
2267; public: unsigned int __cdecl DEVICE::QueryRemoteType(void)const __ptr64
2268?QueryRemoteType@DEVICE@@QEBAIXZ
2269; private: unsigned int __cdecl NET_ACCESS_1::QueryRequiredSpace(unsigned int)const __ptr64
2270?QueryRequiredSpace@NET_ACCESS_1@@AEBAII@Z
2271; public: unsigned int __cdecl SHARE_1::QueryResourceType(void)const __ptr64
2272?QueryResourceType@SHARE_1@@QEBAIXZ
2273; public: static unsigned long __cdecl OS_ACE::QueryRevision(void)
2274?QueryRevision@OS_ACE@@SAKXZ
2275; public: unsigned long const __cdecl ALIAS_ENUM_OBJ::QueryRid(void)const __ptr64
2276?QueryRid@ALIAS_ENUM_OBJ@@QEBA?BKXZ
2277; public: long __cdecl OS_SECURITY_DESCRIPTOR::QuerySACL(int * __ptr64,class OS_ACL * __ptr64 * __ptr64,int * __ptr64)const __ptr64
2278?QuerySACL@OS_SECURITY_DESCRIPTOR@@QEBAJPEAHPEAPEAVOS_ACL@@0@Z
2279; public: long __cdecl OS_ACE::QuerySID(class OS_SID * __ptr64 * __ptr64)const __ptr64
2280?QuerySID@OS_ACE@@QEBAJPEAPEAVOS_SID@@@Z
2281; public: class OS_SID const * __ptr64 __cdecl OS_ACL_SUBJECT_ITER::QuerySID(void)const __ptr64
2282?QuerySID@OS_ACL_SUBJECT_ITER@@QEBAPEBVOS_SID@@XZ
2283; protected: void * __ptr64 __cdecl OS_ACE::QuerySIDMemory(void)const __ptr64
2284?QuerySIDMemory@OS_ACE@@IEBAPEAXXZ
2285; public: class SAM_SERVER * __ptr64 __cdecl ADMIN_AUTHORITY::QuerySamServer(void)const __ptr64
2286?QuerySamServer@ADMIN_AUTHORITY@@QEBAPEAVSAM_SERVER@@XZ
2287; public: unsigned short const * __ptr64 __cdecl USER_2::QueryScriptPath(void)const __ptr64
2288?QueryScriptPath@USER_2@@QEBAPEBGXZ
2289; public: long __cdecl SC_SERVICE::QuerySecurity(unsigned long,void * __ptr64 * __ptr64) __ptr64
2290?QuerySecurity@SC_SERVICE@@QEAAJKPEAPEAX@Z
2291; public: unsigned int __cdecl SERVER_2::QuerySecurity(void)const __ptr64
2292?QuerySecurity@SERVER_2@@QEBAIXZ
2293; public: unsigned short const * __ptr64 __cdecl DEVICE::QueryServer(void)const __ptr64
2294?QueryServer@DEVICE@@QEBAPEBGXZ
2295; public: unsigned short const * __ptr64 __cdecl LM_FILE::QueryServer(void)const __ptr64
2296?QueryServer@LM_FILE@@QEBAPEBGXZ
2297; public: unsigned short const * __ptr64 __cdecl LM_SESSION::QueryServer(void)const __ptr64
2298?QueryServer@LM_SESSION@@QEBAPEBGXZ
2299; public: unsigned short const * __ptr64 __cdecl LOCATION::QueryServer(void)const __ptr64
2300?QueryServer@LOCATION@@QEBAPEBGXZ
2301; public: unsigned short const * __ptr64 __cdecl LOC_LM_ENUM::QueryServer(void)const __ptr64
2302?QueryServer@LOC_LM_ENUM@@QEBAPEBGXZ
2303; protected: unsigned short const * __ptr64 __cdecl LOC_LM_OBJ::QueryServer(void)const __ptr64
2304?QueryServer@LOC_LM_OBJ@@IEBAPEBGXZ
2305; public: unsigned short const * __ptr64 __cdecl LOC_LM_RESUME_ENUM::QueryServer(void)const __ptr64
2306?QueryServer@LOC_LM_RESUME_ENUM@@QEBAPEBGXZ
2307; public: unsigned short const * __ptr64 __cdecl SHARE::QueryServer(void)const __ptr64
2308?QueryServer@SHARE@@QEBAPEBGXZ
2309; public: unsigned short const * __ptr64 __cdecl LM_SERVICE::QueryServerName(void)const __ptr64
2310?QueryServerName@LM_SERVICE@@QEBAPEBGXZ
2311; public: unsigned short const * __ptr64 __cdecl NET_ACCESS::QueryServerName(void)const __ptr64
2312?QueryServerName@NET_ACCESS@@QEBAPEBGXZ
2313; public: long __cdecl NET_NAME::QueryServerShare(class NLS_STR * __ptr64) __ptr64
2314?QueryServerShare@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
2315; public: unsigned long __cdecl SERVER1_ENUM_OBJ::QueryServerType(void)const __ptr64
2316?QueryServerType@SERVER1_ENUM_OBJ@@QEBAKXZ
2317; public: unsigned long __cdecl SERVER_1::QueryServerType(void)const __ptr64
2318?QueryServerType@SERVER_1@@QEBAKXZ
2319; public: long __cdecl SC_MANAGER::QueryServiceDisplayName(unsigned short const * __ptr64,class NLS_STR * __ptr64) __ptr64
2320?QueryServiceDisplayName@SC_MANAGER@@QEAAJPEBGPEAVNLS_STR@@@Z
2321; public: long __cdecl SC_MANAGER::QueryServiceKeyName(unsigned short const * __ptr64,class NLS_STR * __ptr64) __ptr64
2322?QueryServiceKeyName@SC_MANAGER@@QEAAJPEBGPEAVNLS_STR@@@Z
2323; public: long __cdecl NET_NAME::QueryShare(class NLS_STR * __ptr64) __ptr64
2324?QueryShare@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
2325; public: void * __ptr64 __cdecl OS_SID::QuerySid(void)const __ptr64
2326?QuerySid@OS_SID@@QEBAPEAXXZ
2327; public: unsigned short __cdecl OS_ACE::QuerySize(void)const __ptr64
2328?QuerySize@OS_ACE@@QEBAGXZ
2329; public: long __cdecl OS_ACL::QuerySizeInformation(struct _ACL_SIZE_INFORMATION * __ptr64)const __ptr64
2330?QuerySizeInformation@OS_ACL@@QEBAJPEAU_ACL_SIZE_INFORMATION@@@Z
2331; public: enum LMO_DEV_STATE __cdecl DEVICE::QueryState(void)const __ptr64
2332?QueryState@DEVICE@@QEBA?AW4LMO_DEV_STATE@@XZ
2333; public: unsigned int __cdecl DEVICE::QueryStatus(void)const __ptr64
2334?QueryStatus@DEVICE@@QEBAIXZ
2335; public: enum LM_SERVICE_STATUS __cdecl LM_SERVICE::QueryStatus(long * __ptr64) __ptr64
2336?QueryStatus@LM_SERVICE@@QEAA?AW4LM_SERVICE_STATUS@@PEAJ@Z
2337; public: long __cdecl SC_SERVICE::QueryStatus(struct _SERVICE_STATUS * __ptr64) __ptr64
2338?QueryStatus@SC_SERVICE@@QEAAJPEAU_SERVICE_STATUS@@@Z
2339; public: long __cdecl OS_SID::QuerySubAuthority(unsigned char,unsigned long * __ptr64 * __ptr64)const __ptr64
2340?QuerySubAuthority@OS_SID@@QEBAJEPEAPEAK@Z
2341; public: long __cdecl OS_SID::QuerySubAuthorityCount(unsigned char * __ptr64 * __ptr64)const __ptr64
2342?QuerySubAuthorityCount@OS_SID@@QEBAJPEAPEAE@Z
2343; public: static long __cdecl NT_ACCOUNTS_UTILITY::QuerySystemSid(enum UI_SystemSid,class OS_SID * __ptr64,unsigned short const * __ptr64)
2344?QuerySystemSid@NT_ACCOUNTS_UTILITY@@SAJW4UI_SystemSid@@PEAVOS_SID@@PEBG@Z
2345; public: unsigned int __cdecl NLS_STR::QueryTextLength(void)const __ptr64
2346?QueryTextLength@NLS_STR@@QEBAIXZ
2347; public: unsigned long __cdecl USER_MODALS_3::QueryThreshold(void)const __ptr64
2348?QueryThreshold@USER_MODALS_3@@QEBAKXZ
2349; public: unsigned long __cdecl LM_SESSION_10::QueryTime(void)const __ptr64
2350?QueryTime@LM_SESSION_10@@QEBAKXZ
2351; protected: unsigned long __cdecl OS_ACL_SUBJECT_ITER::QueryTotalAceCount(void)const __ptr64
2352?QueryTotalAceCount@OS_ACL_SUBJECT_ITER@@IEBAKXZ
2353; public: unsigned int __cdecl LM_RESUME_ENUM::QueryTotalItemCount(void)const __ptr64
2354?QueryTotalItemCount@LM_RESUME_ENUM@@QEBAIXZ
2355; public: unsigned int __cdecl DEVICE::QueryType(void)const __ptr64
2356?QueryType@DEVICE@@QEBAIXZ
2357; public: unsigned char __cdecl OS_ACE::QueryType(void)const __ptr64
2358?QueryType@OS_ACE@@QEBAEXZ
2359; public: long __cdecl NET_NAME::QueryUNCPath(class NLS_STR * __ptr64) __ptr64
2360?QueryUNCPath@NET_NAME@@QEAAJPEAVNLS_STR@@@Z
2361; public: struct _UNICODE_STRING const * __ptr64 __cdecl NT_MACHINE_ENUM_OBJ::QueryUnicodeMachine(void)const __ptr64
2362?QueryUnicodeMachine@NT_MACHINE_ENUM_OBJ@@QEBAPEBU_UNICODE_STRING@@XZ
2363; public: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_ACCT_DOM_INFO_MEM::QueryUnicodeName(void)const __ptr64
2364?QueryUnicodeName@LSA_ACCT_DOM_INFO_MEM@@QEBAPEBU_UNICODE_STRING@@XZ
2365; public: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryUnicodeName(void)const __ptr64
2366?QueryUnicodeName@LSA_PRIMARY_DOM_INFO_MEM@@QEBAPEBU_UNICODE_STRING@@XZ
2367; private: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_REF_DOMAIN_MEM::QueryUnicodeName(unsigned long)const __ptr64
2368?QueryUnicodeName@LSA_REF_DOMAIN_MEM@@AEBAPEBU_UNICODE_STRING@@K@Z
2369; private: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_TRANSLATED_NAME_MEM::QueryUnicodeName(unsigned long)const __ptr64
2370?QueryUnicodeName@LSA_TRANSLATED_NAME_MEM@@AEBAPEBU_UNICODE_STRING@@K@Z
2371; public: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_TRUST_INFO_MEM::QueryUnicodeName(unsigned long)const __ptr64
2372?QueryUnicodeName@LSA_TRUST_INFO_MEM@@QEBAPEBU_UNICODE_STRING@@K@Z
2373; public: struct _UNICODE_STRING const * __ptr64 __cdecl SAM_USER_ENUM_OBJ::QueryUnicodeUserName(void)const __ptr64
2374?QueryUnicodeUserName@SAM_USER_ENUM_OBJ@@QEBAPEBU_UNICODE_STRING@@XZ
2375; public: unsigned int __cdecl LOGON_HOURS_SETTING::QueryUnitsPerWeek(void)const __ptr64
2376?QueryUnitsPerWeek@LOGON_HOURS_SETTING@@QEBAIXZ
2377; private: struct _DOMAIN_PASSWORD_INFORMATION * __ptr64 __cdecl SAM_PSWD_DOM_INFO_MEM::QueryUpdatePtr(void)const __ptr64
2378?QueryUpdatePtr@SAM_PSWD_DOM_INFO_MEM@@AEBAPEAU_DOMAIN_PASSWORD_INFORMATION@@XZ
2379; public: enum _SID_NAME_USE __cdecl LSA_TRANSLATED_NAME_MEM::QueryUse(unsigned long)const __ptr64
2380?QueryUse@LSA_TRANSLATED_NAME_MEM@@QEBA?AW4_SID_NAME_USE@@K@Z
2381; public: int __cdecl USER_2::QueryUserCantChangePass(void)const __ptr64
2382?QueryUserCantChangePass@USER_2@@QEBAHXZ
2383; public: unsigned short const * __ptr64 __cdecl USER_11::QueryUserComment(void)const __ptr64
2384?QueryUserComment@USER_11@@QEBAPEBGXZ
2385; protected: int __cdecl USER_2::QueryUserFlag(unsigned int)const __ptr64
2386?QueryUserFlag@USER_2@@IEBAHI@Z
2387; public: unsigned long __cdecl LM_SESSION_1::QueryUserFlags(void)const __ptr64
2388?QueryUserFlags@LM_SESSION_1@@QEBAKXZ
2389; public: unsigned int __cdecl USER_2::QueryUserFlags(void)const __ptr64
2390?QueryUserFlags@USER_2@@QEBAIXZ
2391; public: unsigned long __cdecl USER_3::QueryUserId(void)const __ptr64
2392?QueryUserId@USER_3@@QEBAKXZ
2393; public: long __cdecl SAM_USER_ENUM_OBJ::QueryUserName(class NLS_STR * __ptr64)const __ptr64
2394?QueryUserName@SAM_USER_ENUM_OBJ@@QEBAJPEAVNLS_STR@@@Z
2395; public: unsigned short const * __ptr64 __cdecl WKSTA_USER_1::QueryUserName(void)const __ptr64
2396?QueryUserName@WKSTA_USER_1@@QEBAPEBGXZ
2397; public: int __cdecl USER_2::QueryUserPassRequired(void)const __ptr64
2398?QueryUserPassRequired@USER_2@@QEBAHXZ
2399; public: unsigned short const * __ptr64 __cdecl LM_FILE_3::QueryUsername(void)const __ptr64
2400?QueryUsername@LM_FILE_3@@QEBAPEBGXZ
2401; public: unsigned short const * __ptr64 __cdecl LM_SESSION_10::QueryUsername(void)const __ptr64
2402?QueryUsername@LM_SESSION_10@@QEBAPEBGXZ
2403; public: long __cdecl LM_CONFIG::QueryValue(class NLS_STR * __ptr64,unsigned short const * __ptr64) __ptr64
2404?QueryValue@LM_CONFIG@@QEAAJPEAVNLS_STR@@PEBG@Z
2405; public: unsigned short const * __ptr64 __cdecl WKSTA_10::QueryWkstaDomain(void)const __ptr64
2406?QueryWkstaDomain@WKSTA_10@@QEBAPEBGXZ
2407; public: unsigned short const * __ptr64 __cdecl USER_11::QueryWorkstations(void)const __ptr64
2408?QueryWorkstations@USER_11@@QEBAPEBGXZ
2409; private: void __cdecl LM_ENUM::RegisterIter(void) __ptr64
2410?RegisterIter@LM_ENUM@@AEAAXXZ
2411; private: void __cdecl LM_RESUME_ENUM::RegisterIter(void) __ptr64
2412?RegisterIter@LM_RESUME_ENUM@@AEAAXXZ
2413; public: class NLS_STR * __ptr64 __cdecl SLIST_OF_NLS_STR::Remove(class ITER_SL_NLS_STR & __ptr64) __ptr64
2414?Remove@SLIST_OF_NLS_STR@@QEAAPEAVNLS_STR@@AEAVITER_SL_NLS_STR@@@Z
2415; public: long __cdecl SAM_ALIAS::RemoveMember(void * __ptr64) __ptr64
2416?RemoveMember@SAM_ALIAS@@QEAAJPEAX@Z
2417; public: long __cdecl SAM_GROUP::RemoveMember(unsigned long) __ptr64
2418?RemoveMember@SAM_GROUP@@QEAAJK@Z
2419; public: long __cdecl SAM_DOMAIN::RemoveMemberFromAliases(void * __ptr64) __ptr64
2420?RemoveMemberFromAliases@SAM_DOMAIN@@QEAAJPEAX@Z
2421; public: long __cdecl SAM_ALIAS::RemoveMembers(void * __ptr64 * __ptr64,unsigned int) __ptr64
2422?RemoveMembers@SAM_ALIAS@@QEAAJPEAPEAXI@Z
2423; public: long __cdecl SAM_GROUP::RemoveMembers(unsigned long * __ptr64,unsigned int) __ptr64
2424?RemoveMembers@SAM_GROUP@@QEAAJPEAKI@Z
2425; public: long __cdecl OS_PRIVILEGE_SET::RemovePrivilege(long) __ptr64
2426?RemovePrivilege@OS_PRIVILEGE_SET@@QEAAJJ@Z
2427; public: long __cdecl OS_PRIVILEGE_SET::RemovePrivilege(struct _LUID) __ptr64
2428?RemovePrivilege@OS_PRIVILEGE_SET@@QEAAJU_LUID@@@Z
2429; public: long __cdecl USER::Rename(unsigned short const * __ptr64) __ptr64
2430?Rename@USER@@QEAAJPEBG@Z
2431; public: long __cdecl ADMIN_AUTHORITY::ReplaceAccountDomain(unsigned long) __ptr64
2432?ReplaceAccountDomain@ADMIN_AUTHORITY@@QEAAJK@Z
2433; public: long __cdecl ADMIN_AUTHORITY::ReplaceBuiltinDomain(unsigned long) __ptr64
2434?ReplaceBuiltinDomain@ADMIN_AUTHORITY@@QEAAJK@Z
2435; public: long __cdecl ADMIN_AUTHORITY::ReplaceLSAPolicy(unsigned long) __ptr64
2436?ReplaceLSAPolicy@ADMIN_AUTHORITY@@QEAAJK@Z
2437; public: long __cdecl ADMIN_AUTHORITY::ReplaceSamServer(unsigned long) __ptr64
2438?ReplaceSamServer@ADMIN_AUTHORITY@@QEAAJK@Z
2439; protected: void __cdecl BASE::ReportError(long) __ptr64
2440?ReportError@BASE@@IEAAXJ@Z
2441; protected: void __cdecl NEW_LM_OBJ::ReportError(long) __ptr64
2442?ReportError@NEW_LM_OBJ@@IEAAXJ@Z
2443; public: void __cdecl BROWSE_DOMAIN_ENUM::Reset(void) __ptr64
2444?Reset@BROWSE_DOMAIN_ENUM@@QEAAXXZ
2445; public: void __cdecl OS_ACL_SUBJECT_ITER::Reset(void) __ptr64
2446?Reset@OS_ACL_SUBJECT_ITER@@QEAAXXZ
2447; protected: void __cdecl LSA_OBJECT::ResetHandle(void) __ptr64
2448?ResetHandle@LSA_OBJECT@@IEAAXXZ
2449; protected: void __cdecl SAM_OBJECT::ResetHandle(void) __ptr64
2450?ResetHandle@SAM_OBJECT@@IEAAXXZ
2451; protected: long __cdecl OS_OBJECT_WITH_DATA::Resize(unsigned int) __ptr64
2452?Resize@OS_OBJECT_WITH_DATA@@IEAAJI@Z
2453; protected: long __cdecl NEW_LM_OBJ::ResizeBuffer(unsigned int) __ptr64
2454?ResizeBuffer@NEW_LM_OBJ@@IEAAJI@Z
2455; public: long __cdecl LM_MESSAGE::SendBuffer(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned int) __ptr64
2456?SendBuffer@LM_MESSAGE@@QEAAJPEBG0I@Z
2457; public: long __cdecl LM_MESSAGE::SendBuffer(unsigned short const * __ptr64,class BUFFER const & __ptr64) __ptr64
2458?SendBuffer@LM_MESSAGE@@QEAAJPEBGAEBVBUFFER@@@Z
2459; public: long __cdecl LOCATION::Set(class LOCATION const & __ptr64) __ptr64
2460?Set@LOCATION@@QEAAJAEBV1@@Z
2461; public: virtual void __cdecl LSA_MEMORY::Set(void * __ptr64,unsigned long) __ptr64
2462?Set@LSA_MEMORY@@UEAAXPEAXK@Z
2463; public: virtual void __cdecl NT_MEMORY::Set(void * __ptr64,unsigned long) __ptr64
2464?Set@NT_MEMORY@@UEAAXPEAXK@Z
2465; public: virtual void __cdecl SAM_MEMORY::Set(void * __ptr64,unsigned long) __ptr64
2466?Set@SAM_MEMORY@@UEAAXPEAXK@Z
2467; private: long __cdecl NET_NAME::SetABSPath(unsigned short const * __ptr64) __ptr64
2468?SetABSPath@NET_NAME@@AEAAJPEBG@Z
2469; public: void __cdecl OS_ACE::SetAccessMask(unsigned long) __ptr64
2470?SetAccessMask@OS_ACE@@QEAAXK@Z
2471; public: long __cdecl USER_2::SetAccountDisabled(int) __ptr64
2472?SetAccountDisabled@USER_2@@QEAAJH@Z
2473; public: long __cdecl LSA_POLICY::SetAccountDomain(class LSA_ACCT_DOM_INFO_MEM const * __ptr64) __ptr64
2474?SetAccountDomain@LSA_POLICY@@QEAAJPEBVLSA_ACCT_DOM_INFO_MEM@@@Z
2475; public: long __cdecl LSA_POLICY::SetAccountDomainName(class NLS_STR const * __ptr64,void * __ptr64 const * __ptr64) __ptr64
2476?SetAccountDomainName@LSA_POLICY@@QEAAJPEBVNLS_STR@@PEBQEAX@Z
2477; public: long __cdecl USER_2::SetAccountExpires(long) __ptr64
2478?SetAccountExpires@USER_2@@QEAAJJ@Z
2479; public: long __cdecl USER_3::SetAccountType(enum _ACCOUNT_TYPE) __ptr64
2480?SetAccountType@USER_3@@QEAAJW4_ACCOUNT_TYPE@@@Z
2481; protected: void __cdecl SHARE_1::SetAdminOnly(int) __ptr64
2482?SetAdminOnly@SHARE_1@@IEAAXH@Z
2483; public: long __cdecl LSA_POLICY::SetAuditEventInfo(class LSA_AUDIT_EVENT_INFO_MEM * __ptr64) __ptr64
2484?SetAuditEventInfo@LSA_POLICY@@QEAAJPEAVLSA_AUDIT_EVENT_INFO_MEM@@@Z
2485; public: long __cdecl NET_ACCESS_1::SetAuditFlags(short) __ptr64
2486?SetAuditFlags@NET_ACCESS_1@@QEAAJF@Z
2487; public: long __cdecl USER_11::SetAuthFlags(unsigned long) __ptr64
2488?SetAuthFlags@USER_11@@QEAAJK@Z
2489; protected: void __cdecl DEVICE::SetBufPtr(unsigned char * __ptr64) __ptr64
2490?SetBufPtr@DEVICE@@IEAAXPEAE@Z
2491; public: void __cdecl ALIAS_ENUM_OBJ::SetBufferPtr(struct _SAM_RID_ENUMERATION const * __ptr64) __ptr64
2492?SetBufferPtr@ALIAS_ENUM_OBJ@@QEAAXPEBU_SAM_RID_ENUMERATION@@@Z
2493; public: void __cdecl CHARDEVQ1_ENUM_OBJ::SetBufferPtr(struct _CHARDEVQ_INFO_1 const * __ptr64) __ptr64
2494?SetBufferPtr@CHARDEVQ1_ENUM_OBJ@@QEAAXPEBU_CHARDEVQ_INFO_1@@@Z
2495; public: void __cdecl CONN0_ENUM_OBJ::SetBufferPtr(struct _CONNECTION_INFO_0 const * __ptr64) __ptr64
2496?SetBufferPtr@CONN0_ENUM_OBJ@@QEAAXPEBU_CONNECTION_INFO_0@@@Z
2497; public: void __cdecl CONN1_ENUM_OBJ::SetBufferPtr(struct _CONNECTION_INFO_1 const * __ptr64) __ptr64
2498?SetBufferPtr@CONN1_ENUM_OBJ@@QEAAXPEBU_CONNECTION_INFO_1@@@Z
2499; public: void __cdecl CONTEXT_ENUM_OBJ::SetBufferPtr(struct _SERVER_INFO_101 const * __ptr64) __ptr64
2500?SetBufferPtr@CONTEXT_ENUM_OBJ@@QEAAXPEBU_SERVER_INFO_101@@@Z
2501; public: void __cdecl DOMAIN0_ENUM_OBJ::SetBufferPtr(struct _SERVER_INFO_100 const * __ptr64) __ptr64
2502?SetBufferPtr@DOMAIN0_ENUM_OBJ@@QEAAXPEBU_SERVER_INFO_100@@@Z
2503; protected: void __cdecl ENUM_OBJ_BASE::SetBufferPtr(unsigned char const * __ptr64) __ptr64
2504?SetBufferPtr@ENUM_OBJ_BASE@@IEAAXPEBE@Z
2505; public: void __cdecl FILE2_ENUM_OBJ::SetBufferPtr(struct _FILE_INFO_2 const * __ptr64) __ptr64
2506?SetBufferPtr@FILE2_ENUM_OBJ@@QEAAXPEBU_FILE_INFO_2@@@Z
2507; public: void __cdecl FILE3_ENUM_OBJ::SetBufferPtr(struct _FILE_INFO_3 const * __ptr64) __ptr64
2508?SetBufferPtr@FILE3_ENUM_OBJ@@QEAAXPEBU_FILE_INFO_3@@@Z
2509; public: void __cdecl GROUP0_ENUM_OBJ::SetBufferPtr(struct _GROUP_INFO_0 const * __ptr64) __ptr64
2510?SetBufferPtr@GROUP0_ENUM_OBJ@@QEAAXPEBU_GROUP_INFO_0@@@Z
2511; public: void __cdecl GROUP1_ENUM_OBJ::SetBufferPtr(struct _GROUP_INFO_1 const * __ptr64) __ptr64
2512?SetBufferPtr@GROUP1_ENUM_OBJ@@QEAAXPEBU_GROUP_INFO_1@@@Z
2513; public: void __cdecl LSA_ACCOUNTS_ENUM_OBJ::SetBufferPtr(void * __ptr64 const * __ptr64) __ptr64
2514?SetBufferPtr@LSA_ACCOUNTS_ENUM_OBJ@@QEAAXPEBQEAX@Z
2515; public: void __cdecl LSA_PRIVILEGES_ENUM_OBJ::SetBufferPtr(struct _POLICY_PRIVILEGE_DEFINITION const * __ptr64) __ptr64
2516?SetBufferPtr@LSA_PRIVILEGES_ENUM_OBJ@@QEAAXPEBU_POLICY_PRIVILEGE_DEFINITION@@@Z
2517; protected: void __cdecl NEW_LM_OBJ::SetBufferPtr(unsigned char * __ptr64) __ptr64
2518?SetBufferPtr@NEW_LM_OBJ@@IEAAXPEAE@Z
2519; public: void __cdecl NT_GROUP_ENUM_OBJ::SetBufferPtr(struct _DOMAIN_DISPLAY_GROUP const * __ptr64) __ptr64
2520?SetBufferPtr@NT_GROUP_ENUM_OBJ@@QEAAXPEBU_DOMAIN_DISPLAY_GROUP@@@Z
2521; public: void __cdecl NT_MACHINE_ENUM_OBJ::SetBufferPtr(struct _DOMAIN_DISPLAY_MACHINE const * __ptr64) __ptr64
2522?SetBufferPtr@NT_MACHINE_ENUM_OBJ@@QEAAXPEBU_DOMAIN_DISPLAY_MACHINE@@@Z
2523; public: void __cdecl NT_USER_ENUM_OBJ::SetBufferPtr(struct _DOMAIN_DISPLAY_USER const * __ptr64) __ptr64
2524?SetBufferPtr@NT_USER_ENUM_OBJ@@QEAAXPEBU_DOMAIN_DISPLAY_USER@@@Z
2525; public: void __cdecl SAM_USER_ENUM_OBJ::SetBufferPtr(struct _SAM_RID_ENUMERATION const * __ptr64) __ptr64
2526?SetBufferPtr@SAM_USER_ENUM_OBJ@@QEAAXPEBU_SAM_RID_ENUMERATION@@@Z
2527; public: void __cdecl SERVER1_ENUM_OBJ::SetBufferPtr(struct _SERVER_INFO_101 const * __ptr64) __ptr64
2528?SetBufferPtr@SERVER1_ENUM_OBJ@@QEAAXPEBU_SERVER_INFO_101@@@Z
2529; protected: void __cdecl SERVICE_ENUM_OBJ::SetBufferPtr(struct _ENUM_SVC_STATUS const * __ptr64) __ptr64
2530?SetBufferPtr@SERVICE_ENUM_OBJ@@IEAAXPEBU_ENUM_SVC_STATUS@@@Z
2531; public: void __cdecl SESSION0_ENUM_OBJ::SetBufferPtr(struct _SESSION_INFO_0 const * __ptr64) __ptr64
2532?SetBufferPtr@SESSION0_ENUM_OBJ@@QEAAXPEBU_SESSION_INFO_0@@@Z
2533; public: void __cdecl SESSION1_ENUM_OBJ::SetBufferPtr(struct _SESSION_INFO_1 const * __ptr64) __ptr64
2534?SetBufferPtr@SESSION1_ENUM_OBJ@@QEAAXPEBU_SESSION_INFO_1@@@Z
2535; public: void __cdecl SHARE1_ENUM_OBJ::SetBufferPtr(struct _SHARE_INFO_1 const * __ptr64) __ptr64
2536?SetBufferPtr@SHARE1_ENUM_OBJ@@QEAAXPEBU_SHARE_INFO_1@@@Z
2537; public: void __cdecl SHARE2_ENUM_OBJ::SetBufferPtr(struct _SHARE_INFO_2 const * __ptr64) __ptr64
2538?SetBufferPtr@SHARE2_ENUM_OBJ@@QEAAXPEBU_SHARE_INFO_2@@@Z
2539; public: void __cdecl TRIPLE_SERVER_ENUM_OBJ::SetBufferPtr(struct _TRIPLE_SERVER_INFO const * __ptr64) __ptr64
2540?SetBufferPtr@TRIPLE_SERVER_ENUM_OBJ@@QEAAXPEBU_TRIPLE_SERVER_INFO@@@Z
2541; public: void __cdecl TRUSTED_DOMAIN_ENUM_OBJ::SetBufferPtr(struct _LSA_TRUST_INFORMATION const * __ptr64) __ptr64
2542?SetBufferPtr@TRUSTED_DOMAIN_ENUM_OBJ@@QEAAXPEBU_LSA_TRUST_INFORMATION@@@Z
2543; public: void __cdecl USE1_ENUM_OBJ::SetBufferPtr(struct _USE_INFO_1 const * __ptr64) __ptr64
2544?SetBufferPtr@USE1_ENUM_OBJ@@QEAAXPEBU_USE_INFO_1@@@Z
2545; public: void __cdecl USER0_ENUM_OBJ::SetBufferPtr(struct _USER_INFO_0 const * __ptr64) __ptr64
2546?SetBufferPtr@USER0_ENUM_OBJ@@QEAAXPEBU_USER_INFO_0@@@Z
2547; public: void __cdecl USER10_ENUM_OBJ::SetBufferPtr(struct _USER_INFO_10 const * __ptr64) __ptr64
2548?SetBufferPtr@USER10_ENUM_OBJ@@QEAAXPEBU_USER_INFO_10@@@Z
2549; public: void __cdecl USER1_ENUM_OBJ::SetBufferPtr(struct _USER_INFO_1 const * __ptr64) __ptr64
2550?SetBufferPtr@USER1_ENUM_OBJ@@QEAAXPEBU_USER_INFO_1@@@Z
2551; public: void __cdecl USER2_ENUM_OBJ::SetBufferPtr(struct _USER_INFO_2 const * __ptr64) __ptr64
2552?SetBufferPtr@USER2_ENUM_OBJ@@QEAAXPEBU_USER_INFO_2@@@Z
2553; protected: long __cdecl LM_SESSION_2::SetClientType(unsigned short const * __ptr64) __ptr64
2554?SetClientType@LM_SESSION_2@@IEAAJPEBG@Z
2555; public: long __cdecl GROUP_1::SetComment(unsigned short const * __ptr64) __ptr64
2556?SetComment@GROUP_1@@QEAAJPEBG@Z
2557; public: long __cdecl SAM_ALIAS::SetComment(class NLS_STR const * __ptr64) __ptr64
2558?SetComment@SAM_ALIAS@@QEAAJPEBVNLS_STR@@@Z
2559; public: long __cdecl SERVER_1::SetComment(unsigned short const * __ptr64) __ptr64
2560?SetComment@SERVER_1@@QEAAJPEBG@Z
2561; public: long __cdecl SHARE_1::SetComment(unsigned short const * __ptr64) __ptr64
2562?SetComment@SHARE_1@@QEAAJPEBG@Z
2563; public: long __cdecl USER_11::SetComment(unsigned short const * __ptr64) __ptr64
2564?SetComment@USER_11@@QEAAJPEBG@Z
2565; public: long __cdecl LSA_TRUSTED_DOMAIN::SetControllerList(struct _TRUSTED_CONTROLLERS_INFO const & __ptr64) __ptr64
2566?SetControllerList@LSA_TRUSTED_DOMAIN@@QEAAJAEBU_TRUSTED_CONTROLLERS_INFO@@@Z
2567; public: long __cdecl LSA_TRUSTED_DOMAIN::SetControllerList(class LSA_REF_DOMAIN_MEM * __ptr64) __ptr64
2568?SetControllerList@LSA_TRUSTED_DOMAIN@@QEAAJPEAVLSA_REF_DOMAIN_MEM@@@Z
2569; protected: void __cdecl ENUM_CALLER::SetCount(unsigned int) __ptr64
2570?SetCount@ENUM_CALLER@@IEAAXI@Z
2571; protected: void __cdecl OS_ACL_SUBJECT_ITER::SetCurrentACE(unsigned long) __ptr64
2572?SetCurrentACE@OS_ACL_SUBJECT_ITER@@IEAAXK@Z
2573; protected: long __cdecl SHARE_2::SetCurrentUses(unsigned int) __ptr64
2574?SetCurrentUses@SHARE_2@@IEAAJI@Z
2575; public: long __cdecl OS_SECURITY_DESCRIPTOR::SetDACL(int,class OS_ACL const * __ptr64,int) __ptr64
2576?SetDACL@OS_SECURITY_DESCRIPTOR@@QEAAJHPEBVOS_ACL@@H@Z
2577; protected: void __cdecl DEVICE::SetDevState(enum LMO_DEV_STATE) __ptr64
2578?SetDevState@DEVICE@@IEAAXW4LMO_DEV_STATE@@@Z
2579; protected: void __cdecl DEVICE::SetDevType(enum LMO_DEVICE) __ptr64
2580?SetDevType@DEVICE@@IEAAXW4LMO_DEVICE@@@Z
2581; protected: long __cdecl DEVICE2::SetDomainName(unsigned short const * __ptr64) __ptr64
2582?SetDomainName@DEVICE2@@IEAAJPEBG@Z
2583; public: long __cdecl USER_MODALS_3::SetDuration(unsigned long) __ptr64
2584?SetDuration@USER_MODALS_3@@QEAAJK@Z
2585; protected: long __cdecl LM_FILE::SetFileId(unsigned long) __ptr64
2586?SetFileId@LM_FILE@@IEAAJK@Z
2587; public: long __cdecl USER_MODALS::SetForceLogoff(unsigned long) __ptr64
2588?SetForceLogoff@USER_MODALS@@QEAAJK@Z
2589; public: long __cdecl USER_11::SetFullName(unsigned short const * __ptr64) __ptr64
2590?SetFullName@USER_11@@QEAAJPEBG@Z
2591; public: long __cdecl OS_SECURITY_DESCRIPTOR::SetGroup(class OS_SID const & __ptr64,int) __ptr64
2592?SetGroup@OS_SECURITY_DESCRIPTOR@@QEAAJAEBVOS_SID@@H@Z
2593; public: long __cdecl OS_SECURITY_DESCRIPTOR::SetGroup(int,class OS_SID const * __ptr64,int) __ptr64
2594?SetGroup@OS_SECURITY_DESCRIPTOR@@QEAAJHPEBVOS_SID@@H@Z
2595; public: long __cdecl SAM_GROUP::SetGroupname(class NLS_STR const * __ptr64) __ptr64
2596?SetGroupname@SAM_GROUP@@QEAAJPEBVNLS_STR@@@Z
2597; protected: void __cdecl LSA_OBJECT::SetHandle(void * __ptr64) __ptr64
2598?SetHandle@LSA_OBJECT@@IEAAXPEAX@Z
2599; protected: void __cdecl SAM_OBJECT::SetHandle(void * __ptr64) __ptr64
2600?SetHandle@SAM_OBJECT@@IEAAXPEAX@Z
2601; protected: void __cdecl SERVICE_CONTROL::SetHandle(struct SC_HANDLE__ * __ptr64) __ptr64
2602?SetHandle@SERVICE_CONTROL@@IEAAXPEAUSC_HANDLE__@@@Z
2603; public: long __cdecl USER_11::SetHomeDir(unsigned short const * __ptr64) __ptr64
2604?SetHomeDir@USER_11@@QEAAJPEBG@Z
2605; public: long __cdecl USER_3::SetHomedirDrive(unsigned short const * __ptr64) __ptr64
2606?SetHomedirDrive@USER_3@@QEAAJPEBG@Z
2607; protected: void __cdecl LM_SESSION_10::SetIdleTime(unsigned long) __ptr64
2608?SetIdleTime@LM_SESSION_10@@IEAAXK@Z
2609; protected: virtual void __cdecl DEVICE2::SetInfo(void) __ptr64
2610?SetInfo@DEVICE2@@MEAAXXZ
2611; protected: virtual void __cdecl DEVICE::SetInfo(void) __ptr64
2612?SetInfo@DEVICE@@MEAAXXZ
2613; public: long __cdecl LSA_SECRET::SetInfo(class NLS_STR const * __ptr64,class NLS_STR const * __ptr64) __ptr64
2614?SetInfo@LSA_SECRET@@QEAAJPEBVNLS_STR@@0@Z
2615; public: void __cdecl OS_ACE::SetInheritOnly(int) __ptr64
2616?SetInheritOnly@OS_ACE@@QEAAXH@Z
2617; public: long __cdecl USER_2::SetLockout(int) __ptr64
2618?SetLockout@USER_2@@QEAAJH@Z
2619; public: long __cdecl WKSTA_USER_1::SetLogonDomain(unsigned short const * __ptr64) __ptr64
2620?SetLogonDomain@WKSTA_USER_1@@QEAAJPEBG@Z
2621; public: long __cdecl USER_11::SetLogonHours(class LOGON_HOURS_SETTING const & __ptr64) __ptr64
2622?SetLogonHours@USER_11@@QEAAJAEBVLOGON_HOURS_SETTING@@@Z
2623; public: long __cdecl USER_11::SetLogonHours(unsigned char const * __ptr64,unsigned int) __ptr64
2624?SetLogonHours@USER_11@@QEAAJPEBEI@Z
2625; public: long __cdecl WKSTA_USER_1::SetLogonServer(unsigned short const * __ptr64) __ptr64
2626?SetLogonServer@WKSTA_USER_1@@QEAAJPEBG@Z
2627; public: void __cdecl OS_LUID_AND_ATTRIBUTES::SetLuidAndAttrib(struct _LUID_AND_ATTRIBUTES) __ptr64
2628?SetLuidAndAttrib@OS_LUID_AND_ATTRIBUTES@@QEAAXU_LUID_AND_ATTRIBUTES@@@Z
2629; protected: void __cdecl SERVER_1::SetMajorMinorVer(unsigned int,unsigned int) __ptr64
2630?SetMajorMinorVer@SERVER_1@@IEAAXII@Z
2631; public: long __cdecl USER_MODALS::SetMaxPasswdAge(unsigned long) __ptr64
2632?SetMaxPasswdAge@USER_MODALS@@QEAAJK@Z
2633; protected: void __cdecl SERVER_2::SetMaxUsers(unsigned int) __ptr64
2634?SetMaxUsers@SERVER_2@@IEAAXI@Z
2635; public: long __cdecl SHARE_2::SetMaxUses(unsigned int) __ptr64
2636?SetMaxUses@SHARE_2@@QEAAJI@Z
2637; public: long __cdecl USER_MODALS::SetMinPasswdAge(unsigned long) __ptr64
2638?SetMinPasswdAge@USER_MODALS@@QEAAJK@Z
2639; public: long __cdecl USER_MODALS::SetMinPasswdLen(unsigned int) __ptr64
2640?SetMinPasswdLen@USER_MODALS@@QEAAJI@Z
2641; public: long __cdecl COMPUTER::SetName(unsigned short const * __ptr64) __ptr64
2642?SetName@COMPUTER@@QEAAJPEBG@Z
2643; public: long __cdecl GROUP::SetName(unsigned short const * __ptr64) __ptr64
2644?SetName@GROUP@@QEAAJPEBG@Z
2645; public: long __cdecl GROUP_MEMB::SetName(unsigned short const * __ptr64) __ptr64
2646?SetName@GROUP_MEMB@@QEAAJPEBG@Z
2647; protected: long __cdecl LM_SERVICE::SetName(unsigned short const * __ptr64) __ptr64
2648?SetName@LM_SERVICE@@IEAAJPEBG@Z
2649; protected: long __cdecl LM_SESSION::SetName(unsigned short const * __ptr64) __ptr64
2650?SetName@LM_SESSION@@IEAAJPEBG@Z
2651; public: long __cdecl NET_ACCESS::SetName(unsigned short const * __ptr64) __ptr64
2652?SetName@NET_ACCESS@@QEAAJPEBG@Z
2653; protected: long __cdecl SHARE::SetName(unsigned short const * __ptr64) __ptr64
2654?SetName@SHARE@@IEAAJPEBG@Z
2655; public: long __cdecl USER::SetName(unsigned short const * __ptr64) __ptr64
2656?SetName@USER@@QEAAJPEBG@Z
2657; public: long __cdecl USER_MEMB::SetName(unsigned short const * __ptr64) __ptr64
2658?SetName@USER_MEMB@@QEAAJPEBG@Z
2659; public: void __cdecl SAM_PSWD_DOM_INFO_MEM::SetNoAnonChange(int) __ptr64
2660?SetNoAnonChange@SAM_PSWD_DOM_INFO_MEM@@QEAAXH@Z
2661; public: long __cdecl USER_2::SetNoPasswordExpire(int) __ptr64
2662?SetNoPasswordExpire@USER_2@@QEAAJH@Z
2663; protected: void __cdecl LM_SESSION_1::SetNumOpens(unsigned int) __ptr64
2664?SetNumOpens@LM_SESSION_1@@IEAAXI@Z
2665; public: long __cdecl USER_MODALS_3::SetObservation(unsigned long) __ptr64
2666?SetObservation@USER_MODALS_3@@QEAAJK@Z
2667; public: long __cdecl WKSTA_USER_1::SetOtherDomains(unsigned short const * __ptr64) __ptr64
2668?SetOtherDomains@WKSTA_USER_1@@QEAAJPEBG@Z
2669; public: long __cdecl OS_SECURITY_DESCRIPTOR::SetOwner(class OS_SID const & __ptr64,int) __ptr64
2670?SetOwner@OS_SECURITY_DESCRIPTOR@@QEAAJAEBVOS_SID@@H@Z
2671; public: long __cdecl OS_SECURITY_DESCRIPTOR::SetOwner(int,class OS_SID const * __ptr64,int) __ptr64
2672?SetOwner@OS_SECURITY_DESCRIPTOR@@QEAAJHPEBVOS_SID@@H@Z
2673; public: long __cdecl USER_11::SetParms(unsigned short const * __ptr64) __ptr64
2674?SetParms@USER_11@@QEAAJPEBG@Z
2675; public: long __cdecl USER_MODALS::SetPasswdHistLen(unsigned int) __ptr64
2676?SetPasswdHistLen@USER_MODALS@@QEAAJI@Z
2677; public: long __cdecl SAM_USER::SetPassword(class NLS_STR const & __ptr64,class NLS_STR const & __ptr64) __ptr64
2678?SetPassword@SAM_USER@@QEAAJAEBVNLS_STR@@0@Z
2679; public: long __cdecl SAM_USER::SetPassword(class NLS_STR const & __ptr64,int) __ptr64
2680?SetPassword@SAM_USER@@QEAAJAEBVNLS_STR@@H@Z
2681; public: long __cdecl SHARE_2::SetPassword(unsigned short const * __ptr64) __ptr64
2682?SetPassword@SHARE_2@@QEAAJPEBG@Z
2683; public: long __cdecl USER_2::SetPassword(unsigned short const * __ptr64) __ptr64
2684?SetPassword@USER_2@@QEAAJPEBG@Z
2685; public: long __cdecl USER_3::SetPasswordExpired(unsigned long) __ptr64
2686?SetPasswordExpired@USER_3@@QEAAJK@Z
2687; public: long __cdecl SAM_DOMAIN::SetPasswordInfo(class SAM_PSWD_DOM_INFO_MEM const * __ptr64) __ptr64
2688?SetPasswordInfo@SAM_DOMAIN@@QEAAJPEBVSAM_PSWD_DOM_INFO_MEM@@@Z
2689; public: long __cdecl SHARE_2::SetPath(unsigned short const * __ptr64) __ptr64
2690?SetPath@SHARE_2@@QEAAJPEBG@Z
2691; public: long __cdecl NET_ACCESS_1::SetPerm(unsigned short const * __ptr64,enum PERMNAME_TYPE,unsigned int) __ptr64
2692?SetPerm@NET_ACCESS_1@@QEAAJPEBGW4PERMNAME_TYPE@@I@Z
2693; public: long __cdecl SHARE_2::SetPermissions(unsigned int) __ptr64
2694?SetPermissions@SHARE_2@@QEAAJI@Z
2695; public: long __cdecl LSA_TRUSTED_DOMAIN::SetPosixOffset(unsigned long) __ptr64
2696?SetPosixOffset@LSA_TRUSTED_DOMAIN@@QEAAJK@Z
2697; public: long __cdecl LSA_POLICY::SetPrimaryBrowserGroup(class NLS_STR const & __ptr64) __ptr64
2698?SetPrimaryBrowserGroup@LSA_POLICY@@QEAAJAEBVNLS_STR@@@Z
2699; public: long __cdecl LSA_POLICY::SetPrimaryDomain(class LSA_PRIMARY_DOM_INFO_MEM const * __ptr64) __ptr64
2700?SetPrimaryDomain@LSA_POLICY@@QEAAJPEBVLSA_PRIMARY_DOM_INFO_MEM@@@Z
2701; public: long __cdecl LSA_POLICY::SetPrimaryDomainName(class NLS_STR const * __ptr64,void * __ptr64 const * __ptr64) __ptr64
2702?SetPrimaryDomainName@LSA_POLICY@@QEAAJPEBVNLS_STR@@PEBQEAX@Z
2703; public: long __cdecl USER_3::SetPrimaryGroupId(unsigned long) __ptr64
2704?SetPrimaryGroupId@USER_3@@QEAAJK@Z
2705; public: long __cdecl USER_11::SetPriv(unsigned int) __ptr64
2706?SetPriv@USER_11@@QEAAJI@Z
2707; public: long __cdecl USER_3::SetProfile(unsigned short const * __ptr64) __ptr64
2708?SetProfile@USER_3@@QEAAJPEBG@Z
2709; public: long __cdecl OS_ACE::SetPtr(void * __ptr64) __ptr64
2710?SetPtr@OS_ACE@@QEAAJPEAX@Z
2711; public: void __cdecl OS_PRIVILEGE_SET::SetPtr(struct _PRIVILEGE_SET * __ptr64) __ptr64
2712?SetPtr@OS_PRIVILEGE_SET@@QEAAXPEAU_PRIVILEGE_SET@@@Z
2713; public: long __cdecl OS_SID::SetPtr(void * __ptr64) __ptr64
2714?SetPtr@OS_SID@@QEAAJPEAX@Z
2715; protected: void __cdecl DEVICE::SetRemoteName(unsigned short const * __ptr64) __ptr64
2716?SetRemoteName@DEVICE@@IEAAXPEBG@Z
2717; protected: void __cdecl DEVICE::SetRemoteType(unsigned int) __ptr64
2718?SetRemoteType@DEVICE@@IEAAXI@Z
2719; protected: long __cdecl SHARE_1::SetResourceType(unsigned int) __ptr64
2720?SetResourceType@SHARE_1@@IEAAJI@Z
2721; public: long __cdecl SHARE_2::SetResourceType(unsigned int) __ptr64
2722?SetResourceType@SHARE_2@@QEAAJI@Z
2723; public: long __cdecl OS_SECURITY_DESCRIPTOR::SetSACL(int,class OS_ACL const * __ptr64,int) __ptr64
2724?SetSACL@OS_SECURITY_DESCRIPTOR@@QEAAJHPEBVOS_ACL@@H@Z
2725; public: long __cdecl OS_ACE::SetSID(class OS_SID const & __ptr64) __ptr64
2726?SetSID@OS_ACE@@QEAAJAEBVOS_SID@@@Z
2727; public: long __cdecl USER_2::SetScriptPath(unsigned short const * __ptr64) __ptr64
2728?SetScriptPath@USER_2@@QEAAJPEBG@Z
2729; public: long __cdecl SC_SERVICE::SetSecurity(unsigned long,void * __ptr64 const) __ptr64
2730?SetSecurity@SC_SERVICE@@QEAAJKQEAX@Z
2731; protected: void __cdecl SERVER_2::SetSecurity(unsigned int) __ptr64
2732?SetSecurity@SERVER_2@@IEAAXI@Z
2733; protected: long __cdecl LM_FILE::SetServer(unsigned short const * __ptr64) __ptr64
2734?SetServer@LM_FILE@@IEAAJPEBG@Z
2735; protected: void __cdecl DEVICE::SetServerName(unsigned short const * __ptr64) __ptr64
2736?SetServerName@DEVICE@@IEAAXPEBG@Z
2737; protected: long __cdecl LM_SERVICE::SetServerName(unsigned short const * __ptr64) __ptr64
2738?SetServerName@LM_SERVICE@@IEAAJPEBG@Z
2739; public: long __cdecl NET_ACCESS::SetServerName(unsigned short const * __ptr64) __ptr64
2740?SetServerName@NET_ACCESS@@QEAAJPEBG@Z
2741; public: long __cdecl LSA_POLICY::SetServerRole(class LSA_SERVER_ROLE_INFO_MEM const * __ptr64) __ptr64
2742?SetServerRole@LSA_POLICY@@QEAAJPEBVLSA_SERVER_ROLE_INFO_MEM@@@Z
2743; protected: void __cdecl SERVER_1::SetServerType(unsigned long) __ptr64
2744?SetServerType@SERVER_1@@IEAAXK@Z
2745; public: long __cdecl LSA_POLICY::SetShutDownOnFull(int) __ptr64
2746?SetShutDownOnFull@LSA_POLICY@@QEAAJH@Z
2747; public: long __cdecl OS_ACE::SetSize(unsigned int) __ptr64
2748?SetSize@OS_ACE@@QEAAJI@Z
2749; protected: long __cdecl OS_ACL::SetSize(unsigned int,int) __ptr64
2750?SetSize@OS_ACL@@IEAAJIH@Z
2751; protected: void __cdecl DEVICE::SetStatus(unsigned int) __ptr64
2752?SetStatus@DEVICE@@IEAAXI@Z
2753; public: long __cdecl USER_MODALS_3::SetThreshold(unsigned long) __ptr64
2754?SetThreshold@USER_MODALS_3@@QEAAJK@Z
2755; protected: void __cdecl LM_SESSION_10::SetTime(unsigned long) __ptr64
2756?SetTime@LM_SESSION_10@@IEAAXK@Z
2757; private: long __cdecl NET_NAME::SetUNCPath(unsigned short const * __ptr64) __ptr64
2758?SetUNCPath@NET_NAME@@AEAAJPEBG@Z
2759; public: long __cdecl USER_2::SetUserCantChangePass(int) __ptr64
2760?SetUserCantChangePass@USER_2@@QEAAJH@Z
2761; public: long __cdecl USER_11::SetUserComment(unsigned short const * __ptr64) __ptr64
2762?SetUserComment@USER_11@@QEAAJPEBG@Z
2763; protected: long __cdecl USER_2::SetUserFlag(int,unsigned int) __ptr64
2764?SetUserFlag@USER_2@@IEAAJHI@Z
2765; protected: void __cdecl LM_SESSION_1::SetUserFlags(unsigned long) __ptr64
2766?SetUserFlags@LM_SESSION_1@@IEAAXK@Z
2767; public: long __cdecl USER_2::SetUserFlags(unsigned int) __ptr64
2768?SetUserFlags@USER_2@@QEAAJI@Z
2769; protected: long __cdecl USER_3::SetUserId(unsigned long) __ptr64
2770?SetUserId@USER_3@@IEAAJK@Z
2771; public: long __cdecl WKSTA_USER_1::SetUserName(unsigned short const * __ptr64) __ptr64
2772?SetUserName@WKSTA_USER_1@@QEAAJPEBG@Z
2773; public: long __cdecl USER_2::SetUserPassRequired(int) __ptr64
2774?SetUserPassRequired@USER_2@@QEAAJH@Z
2775; protected: long __cdecl DEVICE2::SetUsername(unsigned short const * __ptr64) __ptr64
2776?SetUsername@DEVICE2@@IEAAJPEBG@Z
2777; protected: long __cdecl LM_SESSION_10::SetUsername(unsigned short const * __ptr64) __ptr64
2778?SetUsername@LM_SESSION_10@@IEAAJPEBG@Z
2779; public: long __cdecl SAM_USER::SetUsername(class NLS_STR const * __ptr64) __ptr64
2780?SetUsername@SAM_USER@@QEAAJPEBVNLS_STR@@@Z
2781; public: long __cdecl LM_CONFIG::SetValue(class NLS_STR * __ptr64) __ptr64
2782?SetValue@LM_CONFIG@@QEAAJPEAVNLS_STR@@@Z
2783; public: long __cdecl USER_11::SetWorkstations(unsigned short const * __ptr64) __ptr64
2784?SetWorkstations@USER_11@@QEAAJPEBG@Z
2785; protected: long __cdecl SHARE_2::SetWriteBuffer(int) __ptr64
2786?SetWriteBuffer@SHARE_2@@IEAAJH@Z
2787; void __cdecl SkipWhiteSpace(unsigned short * __ptr64 * __ptr64)
2788?SkipWhiteSpace@@YAXPEAPEAG@Z
2789; public: void __cdecl DOMAIN0_ENUM::Sort(void) __ptr64
2790?Sort@DOMAIN0_ENUM@@QEAAXXZ
2791; public: long __cdecl LM_SERVICE::Start(unsigned short const * __ptr64,unsigned int,unsigned int) __ptr64
2792?Start@LM_SERVICE@@QEAAJPEBGII@Z
2793; public: long __cdecl SC_SERVICE::Start(unsigned int,unsigned short const * __ptr64 * __ptr64) __ptr64
2794?Start@SC_SERVICE@@QEAAJIPEAPEBG@Z
2795; public: long __cdecl LM_SERVICE::Stop(unsigned int,unsigned int) __ptr64
2796?Stop@LM_SERVICE@@QEAAJII@Z
2797; protected: long __cdecl LSA_POLICY::TcharArrayToUnistrArray(unsigned short const * __ptr64 const * __ptr64,struct _UNICODE_STRING * __ptr64,unsigned long) __ptr64
2798?TcharArrayToUnistrArray@LSA_POLICY@@IEAAJPEBQEBGPEAU_UNICODE_STRING@@K@Z
2799; public: long __cdecl SAM_DOMAIN::TranslateNamesToRids(unsigned short const * __ptr64 const * __ptr64,unsigned long,class SAM_RID_MEM * __ptr64,class SAM_SID_NAME_USE_MEM * __ptr64)const __ptr64
2800?TranslateNamesToRids@SAM_DOMAIN@@QEBAJPEBQEBGKPEAVSAM_RID_MEM@@PEAVSAM_SID_NAME_USE_MEM@@@Z
2801; public: long __cdecl LSA_POLICY::TranslateNamesToSids(unsigned short const * __ptr64 const * __ptr64,unsigned long,class LSA_TRANSLATED_SID_MEM * __ptr64,class LSA_REF_DOMAIN_MEM * __ptr64) __ptr64
2802?TranslateNamesToSids@LSA_POLICY@@QEAAJPEBQEBGKPEAVLSA_TRANSLATED_SID_MEM@@PEAVLSA_REF_DOMAIN_MEM@@@Z
2803; public: long __cdecl LSA_POLICY::TranslateSidsToNames(void * __ptr64 const * __ptr64,unsigned long,class LSA_TRANSLATED_NAME_MEM * __ptr64,class LSA_REF_DOMAIN_MEM * __ptr64) __ptr64
2804?TranslateSidsToNames@LSA_POLICY@@QEAAJPEBQEAXKPEAVLSA_TRANSLATED_NAME_MEM@@PEAVLSA_REF_DOMAIN_MEM@@@Z
2805; public: long __cdecl OS_SID::TrimLastSubAuthority(unsigned long * __ptr64) __ptr64
2806?TrimLastSubAuthority@OS_SID@@QEAAJPEAK@Z
2807; public: long __cdecl USER_11::TrimParams(void) __ptr64
2808?TrimParams@USER_11@@QEAAJXZ
2809; public: long __cdecl LSA_POLICY::TrustDomain(class LSA_POLICY & __ptr64,class NLS_STR const & __ptr64,int,unsigned short const * __ptr64) __ptr64
2810?TrustDomain@LSA_POLICY@@QEAAJAEAV1@AEBVNLS_STR@@HPEBG@Z
2811; public: long __cdecl LSA_POLICY::TrustDomain(class NLS_STR const & __ptr64,void * __ptr64 const,class NLS_STR const & __ptr64,int,unsigned short const * __ptr64,int) __ptr64
2812?TrustDomain@LSA_POLICY@@QEAAJAEBVNLS_STR@@QEAX0HPEBGH@Z
2813; public: long __cdecl SC_MANAGER::Unlock(void) __ptr64
2814?Unlock@SC_MANAGER@@QEAAJXZ
2815; protected: long __cdecl OS_SECURITY_DESCRIPTOR::UpdateControl(void) __ptr64
2816?UpdateControl@OS_SECURITY_DESCRIPTOR@@IEAAJXZ
2817; protected: long __cdecl OS_SECURITY_DESCRIPTOR::UpdateReferencedSecurityObject(class OS_OBJECT_WITH_DATA * __ptr64) __ptr64
2818?UpdateReferencedSecurityObject@OS_SECURITY_DESCRIPTOR@@IEAAJPEAVOS_OBJECT_WITH_DATA@@@Z
2819; public: long __cdecl ADMIN_AUTHORITY::UpgradeAccountDomain(unsigned long) __ptr64
2820?UpgradeAccountDomain@ADMIN_AUTHORITY@@QEAAJK@Z
2821; public: long __cdecl ADMIN_AUTHORITY::UpgradeBuiltinDomain(unsigned long) __ptr64
2822?UpgradeBuiltinDomain@ADMIN_AUTHORITY@@QEAAJK@Z
2823; public: long __cdecl ADMIN_AUTHORITY::UpgradeLSAPolicy(unsigned long) __ptr64
2824?UpgradeLSAPolicy@ADMIN_AUTHORITY@@QEAAJK@Z
2825; public: long __cdecl ADMIN_AUTHORITY::UpgradeSamServer(unsigned long) __ptr64
2826?UpgradeSamServer@ADMIN_AUTHORITY@@QEAAJK@Z
2827; private: long __cdecl COMPUTER::ValidateName(unsigned short const * __ptr64) __ptr64
2828?ValidateName@COMPUTER@@AEAAJPEBG@Z
2829; protected: virtual long __cdecl DEVICE::ValidateName(void) __ptr64
2830?ValidateName@DEVICE@@MEAAJXZ
2831; protected: virtual long __cdecl DOMAIN::ValidateName(void) __ptr64
2832?ValidateName@DOMAIN@@MEAAJXZ
2833; protected: virtual long __cdecl LM_OBJ::ValidateName(void) __ptr64
2834?ValidateName@LM_OBJ@@MEAAJXZ
2835; public: static long __cdecl NT_ACCOUNTS_UTILITY::ValidateQualifiedAccountName(class NLS_STR const & __ptr64,int * __ptr64)
2836?ValidateQualifiedAccountName@NT_ACCOUNTS_UTILITY@@SAJAEBVNLS_STR@@PEAH@Z
2837; public: long __cdecl LSA_POLICY::VerifyLsa(class LSA_PRIMARY_DOM_INFO_MEM * __ptr64,class NLS_STR const * __ptr64)const __ptr64
2838?VerifyLsa@LSA_POLICY@@QEBAJPEAVLSA_PRIMARY_DOM_INFO_MEM@@PEBVNLS_STR@@@Z
2839; private: static long __cdecl NT_ACCOUNTS_UTILITY::W_BuildQualifiedAccountName(class NLS_STR * __ptr64,class NLS_STR const & __ptr64,class NLS_STR const * __ptr64,enum _SID_NAME_USE)
2840?W_BuildQualifiedAccountName@NT_ACCOUNTS_UTILITY@@CAJPEAVNLS_STR@@AEBV2@PEBV2@W4_SID_NAME_USE@@@Z
2841; protected: virtual long __cdecl NEW_LM_OBJ::W_ChangeToNew(void) __ptr64
2842?W_ChangeToNew@NEW_LM_OBJ@@MEAAJXZ
2843; protected: long __cdecl ENUM_CALLER_LM_OBJ::W_CloneFrom(class ENUM_CALLER_LM_OBJ const & __ptr64) __ptr64
2844?W_CloneFrom@ENUM_CALLER_LM_OBJ@@IEAAJAEBV1@@Z
2845; protected: long __cdecl GROUP::W_CloneFrom(class GROUP const & __ptr64) __ptr64
2846?W_CloneFrom@GROUP@@IEAAJAEBV1@@Z
2847; protected: long __cdecl GROUP_1::W_CloneFrom(class GROUP_1 const & __ptr64) __ptr64
2848?W_CloneFrom@GROUP_1@@IEAAJAEBV1@@Z
2849; protected: long __cdecl LOC_LM_OBJ::W_CloneFrom(class LOC_LM_OBJ const & __ptr64) __ptr64
2850?W_CloneFrom@LOC_LM_OBJ@@IEAAJAEBV1@@Z
2851; protected: long __cdecl MEMBERSHIP_LM_OBJ::W_CloneFrom(class MEMBERSHIP_LM_OBJ const & __ptr64) __ptr64
2852?W_CloneFrom@MEMBERSHIP_LM_OBJ@@IEAAJAEBV1@@Z
2853; protected: long __cdecl NEW_LM_OBJ::W_CloneFrom(class NEW_LM_OBJ const & __ptr64) __ptr64
2854?W_CloneFrom@NEW_LM_OBJ@@IEAAJAEBV1@@Z
2855; protected: long __cdecl SHARE::W_CloneFrom(class SHARE const & __ptr64) __ptr64
2856?W_CloneFrom@SHARE@@IEAAJAEBV1@@Z
2857; protected: long __cdecl SHARE_1::W_CloneFrom(class SHARE_1 const & __ptr64) __ptr64
2858?W_CloneFrom@SHARE_1@@IEAAJAEBV1@@Z
2859; protected: long __cdecl SHARE_2::W_CloneFrom(class SHARE_2 const & __ptr64) __ptr64
2860?W_CloneFrom@SHARE_2@@IEAAJAEBV1@@Z
2861; protected: long __cdecl USER::W_CloneFrom(class USER const & __ptr64) __ptr64
2862?W_CloneFrom@USER@@IEAAJAEBV1@@Z
2863; protected: long __cdecl USER_11::W_CloneFrom(class USER_11 const & __ptr64) __ptr64
2864?W_CloneFrom@USER_11@@IEAAJAEBV1@@Z
2865; protected: long __cdecl USER_2::W_CloneFrom(class USER_2 const & __ptr64) __ptr64
2866?W_CloneFrom@USER_2@@IEAAJAEBV1@@Z
2867; protected: long __cdecl USER_3::W_CloneFrom(class USER_3 const & __ptr64) __ptr64
2868?W_CloneFrom@USER_3@@IEAAJAEBV1@@Z
2869; private: void __cdecl LM_SERVICE::W_ComputeOtherStatus(struct LM_SERVICE_OTHER_STATUS * __ptr64) __ptr64
2870?W_ComputeOtherStatus@LM_SERVICE@@AEAAXPEAULM_SERVICE_OTHER_STATUS@@@Z
2871; protected: virtual long __cdecl ENUM_CALLER_LM_OBJ::W_CreateNew(void) __ptr64
2872?W_CreateNew@ENUM_CALLER_LM_OBJ@@MEAAJXZ
2873; protected: virtual long __cdecl GROUP_1::W_CreateNew(void) __ptr64
2874?W_CreateNew@GROUP_1@@MEAAJXZ
2875; protected: virtual long __cdecl GROUP_MEMB::W_CreateNew(void) __ptr64
2876?W_CreateNew@GROUP_MEMB@@MEAAJXZ
2877; protected: virtual long __cdecl LSA_ACCOUNT::W_CreateNew(void) __ptr64
2878?W_CreateNew@LSA_ACCOUNT@@MEAAJXZ
2879; protected: virtual long __cdecl NEW_LM_OBJ::W_CreateNew(void) __ptr64
2880?W_CreateNew@NEW_LM_OBJ@@MEAAJXZ
2881; protected: virtual long __cdecl SHARE::W_CreateNew(void) __ptr64
2882?W_CreateNew@SHARE@@MEAAJXZ
2883; protected: virtual long __cdecl SHARE_1::W_CreateNew(void) __ptr64
2884?W_CreateNew@SHARE_1@@MEAAJXZ
2885; protected: virtual long __cdecl SHARE_2::W_CreateNew(void) __ptr64
2886?W_CreateNew@SHARE_2@@MEAAJXZ
2887; protected: virtual long __cdecl USER_11::W_CreateNew(void) __ptr64
2888?W_CreateNew@USER_11@@MEAAJXZ
2889; protected: virtual long __cdecl USER_2::W_CreateNew(void) __ptr64
2890?W_CreateNew@USER_2@@MEAAJXZ
2891; protected: virtual long __cdecl USER_3::W_CreateNew(void) __ptr64
2892?W_CreateNew@USER_3@@MEAAJXZ
2893; protected: virtual long __cdecl USER_MEMB::W_CreateNew(void) __ptr64
2894?W_CreateNew@USER_MEMB@@MEAAJXZ
2895; protected: long __cdecl ENUM_CALLER::W_GetInfo(void) __ptr64
2896?W_GetInfo@ENUM_CALLER@@IEAAJXZ
2897; private: void __cdecl LM_SERVICE::W_InterpretStatus(struct _SERVICE_INFO_2 const * __ptr64,enum LM_SERVICE_STATUS * __ptr64,struct LM_SERVICE_OTHER_STATUS * __ptr64) __ptr64
2898?W_InterpretStatus@LM_SERVICE@@AEAAXPEBU_SERVICE_INFO_2@@PEAW4LM_SERVICE_STATUS@@PEAULM_SERVICE_OTHER_STATUS@@@Z
2899; private: int __cdecl LM_SERVICE::W_IsWellKnownService(void)const __ptr64
2900?W_IsWellKnownService@LM_SERVICE@@AEBAHXZ
2901; private: long __cdecl LM_SERVICE::W_QueryStatus(enum LM_SERVICE_STATUS * __ptr64,struct LM_SERVICE_OTHER_STATUS * __ptr64) __ptr64
2902?W_QueryStatus@LM_SERVICE@@AEAAJPEAW4LM_SERVICE_STATUS@@PEAULM_SERVICE_OTHER_STATUS@@@Z
2903; private: long __cdecl LM_SERVICE::W_ServiceControl(unsigned int,unsigned int) __ptr64
2904?W_ServiceControl@LM_SERVICE@@AEAAJII@Z
2905; private: long __cdecl LM_SERVICE::W_ServiceStart(unsigned short const * __ptr64) __ptr64
2906?W_ServiceStart@LM_SERVICE@@AEAAJPEBG@Z
2907; private: long __cdecl LOCATION::W_Set(unsigned short const * __ptr64,enum LOCATION_TYPE,int) __ptr64
2908?W_Set@LOCATION@@AEAAJPEBGW4LOCATION_TYPE@@H@Z
2909; private: long __cdecl GROUP_1::W_Write(void) __ptr64
2910?W_Write@GROUP_1@@AEAAJXZ
2911; private: long __cdecl SERVER_1::W_Write(void) __ptr64
2912?W_Write@SERVER_1@@AEAAJXZ
2913; private: long __cdecl SERVER_2::W_Write(void) __ptr64
2914?W_Write@SERVER_2@@AEAAJXZ
2915; protected: long __cdecl USER_2::W_Write(void) __ptr64
2916?W_Write@USER_2@@IEAAJXZ
2917; protected: long __cdecl USER_3::W_Write(void) __ptr64
2918?W_Write@USER_3@@IEAAJXZ
2919; private: long __cdecl WKSTA_USER_1::W_Write(void) __ptr64
2920?W_Write@WKSTA_USER_1@@AEAAJXZ
2921; public: long __cdecl NEW_LM_OBJ::Write(void) __ptr64
2922?Write@NEW_LM_OBJ@@QEAAJXZ
2923; public: virtual long __cdecl DEVICE::WriteInfo(void) __ptr64
2924?WriteInfo@DEVICE@@UEAAJXZ
2925; public: virtual long __cdecl DOMAIN::WriteInfo(void) __ptr64
2926?WriteInfo@DOMAIN@@UEAAJXZ
2927; public: long __cdecl NEW_LM_OBJ::WriteInfo(void) __ptr64
2928?WriteInfo@NEW_LM_OBJ@@QEAAJXZ
2929; public: virtual long __cdecl USER_MODALS::WriteInfo(void) __ptr64
2930?WriteInfo@USER_MODALS@@UEAAJXZ
2931; public: virtual long __cdecl USER_MODALS_3::WriteInfo(void) __ptr64
2932?WriteInfo@USER_MODALS_3@@UEAAJXZ
2933; public: long __cdecl NEW_LM_OBJ::WriteNew(void) __ptr64
2934?WriteNew@NEW_LM_OBJ@@QEAAJXZ
2935; public: void __cdecl OS_ACE::_DbgPrint(void)const __ptr64
2936?_DbgPrint@OS_ACE@@QEBAXXZ
2937; public: void __cdecl OS_ACL::_DbgPrint(void)const __ptr64
2938?_DbgPrint@OS_ACL@@QEBAXXZ
2939; public: void __cdecl OS_SECURITY_DESCRIPTOR::_DbgPrint(void)const __ptr64
2940?_DbgPrint@OS_SECURITY_DESCRIPTOR@@QEBAXXZ
2941; public: void __cdecl OS_SID::_DbgPrint(void)const __ptr64
2942?_DbgPrint@OS_SID@@QEBAXXZ
2943; private: void __cdecl LM_ENUM::_DeregisterIter(void) __ptr64
2944?_DeregisterIter@LM_ENUM@@AEAAXXZ
2945; private: void __cdecl LM_RESUME_ENUM::_DeregisterIter(void) __ptr64
2946?_DeregisterIter@LM_RESUME_ENUM@@AEAAXXZ
2947; private: void __cdecl LM_ENUM::_RegisterIter(void) __ptr64
2948?_RegisterIter@LM_ENUM@@AEAAXXZ
2949; private: void __cdecl LM_RESUME_ENUM::_RegisterIter(void) __ptr64
2950?_RegisterIter@LM_RESUME_ENUM@@AEAAXXZ
2951DestroySession
2952FreeArgv
2953I_MNetComputerNameCompare
2954I_MNetLogonControl
2955I_MNetNameCanonicalize
2956I_MNetNameCompare
2957I_MNetNameValidate
2958I_MNetPathCanonicalize
2959I_MNetPathCompare
2960I_MNetPathType
2961IsSlowTransport
2962MAllocMem
2963MDosPrintQEnum
2964MFreeMem
2965MNetAccessAdd
2966MNetAccessCheck
2967MNetAccessDel
2968MNetAccessEnum
2969MNetAccessGetInfo
2970MNetAccessGetUserPerms
2971MNetAccessSetInfo
2972MNetApiBufferAlloc
2973MNetApiBufferFree
2974MNetApiBufferReAlloc
2975MNetApiBufferSize
2976MNetAuditClear
2977MNetAuditRead
2978MNetAuditWrite
2979MNetCharDevControl
2980MNetCharDevGetInfo
2981MNetCharDevQEnum
2982MNetCharDevQGetInfo
2983MNetCharDevQPurge
2984MNetCharDevQPurgeSelf
2985MNetCharDevQSetInfo
2986MNetConfigGet
2987MNetConfigGetAll
2988MNetConfigSet
2989MNetConnectionEnum
2990MNetErrorLogClear
2991MNetErrorLogRead
2992MNetErrorLogWrite
2993MNetFileClose
2994MNetFileEnum
2995MNetFileGetInfo
2996MNetGetDCName
2997MNetGroupAdd
2998MNetGroupAddUser
2999MNetGroupDel
3000MNetGroupDelUser
3001MNetGroupEnum
3002MNetGroupGetInfo
3003MNetGroupGetUsers
3004MNetGroupSetInfo
3005MNetGroupSetUsers
3006MNetLocalGroupAddMember
3007MNetLogonEnum
3008MNetMessageBufferSend
3009MNetRemoteTOD
3010MNetServerDiskEnum
3011MNetServerEnum
3012MNetServerGetInfo
3013MNetServerSetInfo
3014MNetServiceControl
3015MNetServiceEnum
3016MNetServiceGetInfo
3017MNetServiceInstall
3018MNetSessionDel
3019MNetSessionEnum
3020MNetSessionGetInfo
3021MNetShareAdd
3022MNetShareCheck
3023MNetShareDel
3024MNetShareDelSticky
3025MNetShareEnum
3026MNetShareEnumSticky
3027MNetShareGetInfo
3028MNetShareSetInfo
3029MNetUseAdd
3030MNetUseDel
3031MNetUseEnum
3032MNetUseGetInfo
3033MNetUserAdd
3034MNetUserDel
3035MNetUserEnum
3036MNetUserGetGroups
3037MNetUserGetInfo
3038MNetUserModalsGet
3039MNetUserModalsSet
3040MNetUserPasswordSet
3041MNetUserSetGroups
3042MNetUserSetInfo
3043MNetWkstaGetInfo
3044MNetWkstaSetInfo
3045MNetWkstaSetUID
3046MNetWkstaUserEnum
3047MNetWkstaUserGetInfo
3048MakeArgvArgc
3049SetupNormalSession
3050SetupNullSession
3051SetupSession
3052SlowTransportWorkerThread
lib/libc/mingw/lib64/netui2.def created+4096
......@@ -0,0 +1,4096 @@
1;
2; Exports of file NETUI2.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NETUI2.dll
8EXPORTS
9; public: __cdecl ACCELTABLE::ACCELTABLE(class IDRESOURCE const & __ptr64) __ptr64
10??0ACCELTABLE@@QEAA@AEBVIDRESOURCE@@@Z
11; public: __cdecl ACCOUNT_NAMES_MLE::ACCOUNT_NAMES_MLE(class OWNER_WINDOW * __ptr64,unsigned int,unsigned short const * __ptr64,class NT_USER_BROWSER_DIALOG * __ptr64,int,unsigned long,enum FontType) __ptr64
12??0ACCOUNT_NAMES_MLE@@QEAA@PEAVOWNER_WINDOW@@IPEBGPEAVNT_USER_BROWSER_DIALOG@@HKW4FontType@@@Z
13; public: __cdecl ACTIVATION_EVENT::ACTIVATION_EVENT(unsigned int,unsigned __int64,__int64) __ptr64
14??0ACTIVATION_EVENT@@QEAA@I_K_J@Z
15; public: __cdecl ALIAS_STR::ALIAS_STR(unsigned short const * __ptr64) __ptr64
16??0ALIAS_STR@@QEAA@PEBG@Z
17; public: __cdecl ALLOC_STR::ALLOC_STR(unsigned short * __ptr64,unsigned int) __ptr64
18??0ALLOC_STR@@QEAA@PEAGI@Z
19; protected: __cdecl APPLICATION::APPLICATION(struct HINSTANCE__ * __ptr64,int,unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
20??0APPLICATION@@IEAA@PEAUHINSTANCE__@@HIIII@Z
21; protected: __cdecl APP_WINDOW::APP_WINDOW(class NLS_STR const & __ptr64,class IDRESOURCE const & __ptr64,class IDRESOURCE const & __ptr64) __ptr64
22??0APP_WINDOW@@IEAA@AEBVNLS_STR@@AEBVIDRESOURCE@@1@Z
23; protected: __cdecl APP_WINDOW::APP_WINDOW(class XYPOINT,class XYDIMENSION,class NLS_STR const & __ptr64,class IDRESOURCE const & __ptr64,class IDRESOURCE const & __ptr64) __ptr64
24??0APP_WINDOW@@IEAA@VXYPOINT@@VXYDIMENSION@@AEBVNLS_STR@@AEBVIDRESOURCE@@3@Z
25; public: __cdecl ARRAY_CONTROLVAL_CID_PAIR::ARRAY_CONTROLVAL_CID_PAIR(unsigned int) __ptr64
26??0ARRAY_CONTROLVAL_CID_PAIR@@QEAA@I@Z
27; public: __cdecl ARRAY_CONTROLVAL_CID_PAIR::ARRAY_CONTROLVAL_CID_PAIR(class CONTROLVAL_CID_PAIR * __ptr64,unsigned int,int) __ptr64
28??0ARRAY_CONTROLVAL_CID_PAIR@@QEAA@PEAVCONTROLVAL_CID_PAIR@@IH@Z
29; public: __cdecl ARRAY_LIST_CONTROLVAL_CID_PAIR::ARRAY_LIST_CONTROLVAL_CID_PAIR(unsigned int) __ptr64
30??0ARRAY_LIST_CONTROLVAL_CID_PAIR@@QEAA@I@Z
31; public: __cdecl ARROW_BUTTON::ARROW_BUTTON(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
32??0ARROW_BUTTON@@QEAA@PEAVOWNER_WINDOW@@IIII@Z
33; public: __cdecl ARROW_BUTTON::ARROW_BUTTON(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
34??0ARROW_BUTTON@@QEAA@PEAVOWNER_WINDOW@@IIIIVXYPOINT@@VXYDIMENSION@@K@Z
35; public: __cdecl ASSOCHCFILE::ASSOCHCFILE(struct HINSTANCE__ * __ptr64,long,unsigned long,unsigned long) __ptr64
36??0ASSOCHCFILE@@QEAA@PEAUHINSTANCE__@@JKK@Z
37; public: __cdecl ASSOCHWNDDISP::ASSOCHWNDDISP(struct HWND__ * __ptr64,class DISPATCHER const * __ptr64) __ptr64
38??0ASSOCHWNDDISP@@QEAA@PEAUHWND__@@PEBVDISPATCHER@@@Z
39; public: __cdecl ASSOCHWNDPDLG::ASSOCHWNDPDLG(struct HWND__ * __ptr64,class DIALOG_WINDOW const * __ptr64) __ptr64
40??0ASSOCHWNDPDLG@@QEAA@PEAUHWND__@@PEBVDIALOG_WINDOW@@@Z
41; public: __cdecl ASSOCHWNDPWND::ASSOCHWNDPWND(struct HWND__ * __ptr64,class CLIENT_WINDOW const * __ptr64) __ptr64
42??0ASSOCHWNDPWND@@QEAA@PEAUHWND__@@PEBVCLIENT_WINDOW@@@Z
43; public: __cdecl ASSOCHWNDTHIS::ASSOCHWNDTHIS(struct HWND__ * __ptr64,void const * __ptr64) __ptr64
44??0ASSOCHWNDTHIS@@QEAA@PEAUHWND__@@PEBX@Z
45; protected: __cdecl ATOM_BASE::ATOM_BASE(unsigned short) __ptr64
46??0ATOM_BASE@@IEAA@G@Z
47; protected: __cdecl ATOM_BASE::ATOM_BASE(void) __ptr64
48??0ATOM_BASE@@IEAA@XZ
49; public: __cdecl AUDIT_CHECKBOXES::AUDIT_CHECKBOXES(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,class NLS_STR const & __ptr64,class BITFIELD const & __ptr64) __ptr64
50??0AUDIT_CHECKBOXES@@QEAA@PEAVOWNER_WINDOW@@IIIAEBVNLS_STR@@AEBVBITFIELD@@@Z
51; public: __cdecl AUTO_CURSOR::AUTO_CURSOR(unsigned short const * __ptr64) __ptr64
52??0AUTO_CURSOR@@QEAA@PEBG@Z
53; protected: __cdecl BASE::BASE(void) __ptr64
54??0BASE@@IEAA@XZ
55; public: __cdecl BASE::BASE(class BASE const & __ptr64) __ptr64
56??0BASE@@QEAA@AEBV0@@Z
57; protected: __cdecl BASE_ELLIPSIS::BASE_ELLIPSIS(enum ELLIPSIS_STYLE) __ptr64
58??0BASE_ELLIPSIS@@IEAA@W4ELLIPSIS_STYLE@@@Z
59; public: __cdecl BASE_PASSWORD_DIALOG::BASE_PASSWORD_DIALOG(struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned int,unsigned int,unsigned long,unsigned short const * __ptr64,unsigned int,unsigned int,unsigned short const * __ptr64,unsigned int,unsigned short const * __ptr64) __ptr64
60??0BASE_PASSWORD_DIALOG@@QEAA@PEAUHWND__@@PEBGIIK1II1I1@Z
61; public: __cdecl BASE_SET_FOCUS_DLG::BASE_SET_FOCUS_DLG(struct HWND__ * __ptr64 const,enum SELECTION_TYPE,unsigned long,unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,unsigned long) __ptr64
62??0BASE_SET_FOCUS_DLG@@QEAA@QEAUHWND__@@W4SELECTION_TYPE@@KPEBGK2K@Z
63; public: __cdecl BIT_MAP::BIT_MAP(class IDRESOURCE const & __ptr64) __ptr64
64??0BIT_MAP@@QEAA@AEBVIDRESOURCE@@@Z
65; public: __cdecl BIT_MAP::BIT_MAP(struct HBITMAP__ * __ptr64) __ptr64
66??0BIT_MAP@@QEAA@PEAUHBITMAP__@@@Z
67; public: __cdecl BLT_BACKGROUND_EDIT::BLT_BACKGROUND_EDIT(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
68??0BLT_BACKGROUND_EDIT@@QEAA@PEAVOWNER_WINDOW@@I@Z
69; public: __cdecl BLT_COMBOBOX::BLT_COMBOBOX(class OWNER_WINDOW * __ptr64,unsigned int,int,enum FontType) __ptr64
70??0BLT_COMBOBOX@@QEAA@PEAVOWNER_WINDOW@@IHW4FontType@@@Z
71; public: __cdecl BLT_COMBOBOX::BLT_COMBOBOX(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,int,enum FontType) __ptr64
72??0BLT_COMBOBOX@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KHW4FontType@@@Z
73; public: __cdecl BLT_DATE_SPIN_GROUP::BLT_DATE_SPIN_GROUP(class OWNER_WINDOW * __ptr64,class INTL_PROFILE const & __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
74??0BLT_DATE_SPIN_GROUP@@QEAA@PEAVOWNER_WINDOW@@AEBVINTL_PROFILE@@IIIIIIIII@Z
75; public: __cdecl BLT_LISTBOX::BLT_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,int,enum FontType,int) __ptr64
76??0BLT_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IHW4FontType@@H@Z
77; public: __cdecl BLT_LISTBOX::BLT_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,int,enum FontType,int) __ptr64
78??0BLT_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KHW4FontType@@H@Z
79; public: __cdecl BLT_LISTBOX_HAW::BLT_LISTBOX_HAW(class OWNER_WINDOW * __ptr64,unsigned int,int,enum FontType,int) __ptr64
80??0BLT_LISTBOX_HAW@@QEAA@PEAVOWNER_WINDOW@@IHW4FontType@@H@Z
81; public: __cdecl BLT_LISTBOX_HAW::BLT_LISTBOX_HAW(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,int,enum FontType,int) __ptr64
82??0BLT_LISTBOX_HAW@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KHW4FontType@@H@Z
83; public: __cdecl BLT_MASTER_TIMER::BLT_MASTER_TIMER(void) __ptr64
84??0BLT_MASTER_TIMER@@QEAA@XZ
85; public: __cdecl BLT_SCRATCH::BLT_SCRATCH(unsigned int) __ptr64
86??0BLT_SCRATCH@@QEAA@I@Z
87; public: __cdecl BLT_TIME_SPIN_GROUP::BLT_TIME_SPIN_GROUP(class OWNER_WINDOW * __ptr64,class INTL_PROFILE const & __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
88??0BLT_TIME_SPIN_GROUP@@QEAA@PEAVOWNER_WINDOW@@AEBVINTL_PROFILE@@IIIIIIIIII@Z
89; public: __cdecl BROWSER_DOMAIN::BROWSER_DOMAIN(unsigned short const * __ptr64,void * __ptr64,int,int) __ptr64
90??0BROWSER_DOMAIN@@QEAA@PEBGPEAXHH@Z
91; public: __cdecl BROWSER_DOMAIN_CB::BROWSER_DOMAIN_CB(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
92??0BROWSER_DOMAIN_CB@@QEAA@PEAVOWNER_WINDOW@@I@Z
93; public: __cdecl BROWSER_DOMAIN_LB::BROWSER_DOMAIN_LB(class OWNER_WINDOW * __ptr64,unsigned int,class BROWSER_DOMAIN_CB * __ptr64) __ptr64
94??0BROWSER_DOMAIN_LB@@QEAA@PEAVOWNER_WINDOW@@IPEAVBROWSER_DOMAIN_CB@@@Z
95; public: __cdecl BROWSER_DOMAIN_LBI::BROWSER_DOMAIN_LBI(class BROWSER_DOMAIN * __ptr64) __ptr64
96??0BROWSER_DOMAIN_LBI@@QEAA@PEAVBROWSER_DOMAIN@@@Z
97; public: __cdecl BROWSER_DOMAIN_LBI_PB::BROWSER_DOMAIN_LBI_PB(class BROWSER_DOMAIN_LBI * __ptr64) __ptr64
98??0BROWSER_DOMAIN_LBI_PB@@QEAA@PEAVBROWSER_DOMAIN_LBI@@@Z
99; public: __cdecl BROWSER_SUBJECT::BROWSER_SUBJECT(void) __ptr64
100??0BROWSER_SUBJECT@@QEAA@XZ
101; public: __cdecl BROWSER_SUBJECT_ITER::BROWSER_SUBJECT_ITER(class NT_USER_BROWSER_DIALOG * __ptr64) __ptr64
102??0BROWSER_SUBJECT_ITER@@QEAA@PEAVNT_USER_BROWSER_DIALOG@@@Z
103; protected: __cdecl BUTTON_CONTROL::BUTTON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
104??0BUTTON_CONTROL@@IEAA@PEAVOWNER_WINDOW@@I@Z
105; protected: __cdecl BUTTON_CONTROL::BUTTON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
106??0BUTTON_CONTROL@@IEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@K@Z
107; public: __cdecl CANCEL_TASK_DIALOG::CANCEL_TASK_DIALOG(unsigned int,struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned __int64,long,enum ELLIPSIS_STYLE) __ptr64
108??0CANCEL_TASK_DIALOG@@QEAA@IPEAUHWND__@@PEBG_KJW4ELLIPSIS_STYLE@@@Z
109; public: __cdecl CHANGEABLE_SPIN_ITEM::CHANGEABLE_SPIN_ITEM(class CONTROL_WINDOW * __ptr64,unsigned long,unsigned long,unsigned long,int) __ptr64
110??0CHANGEABLE_SPIN_ITEM@@QEAA@PEAVCONTROL_WINDOW@@KKKH@Z
111; public: __cdecl CHECKBOX::CHECKBOX(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
112??0CHECKBOX@@QEAA@PEAVOWNER_WINDOW@@I@Z
113; protected: __cdecl CLIENT_WINDOW::CLIENT_WINDOW(unsigned long,class WINDOW const * __ptr64,unsigned short const * __ptr64) __ptr64
114??0CLIENT_WINDOW@@IEAA@KPEBVWINDOW@@PEBG@Z
115; protected: __cdecl CLIENT_WINDOW::CLIENT_WINDOW(void) __ptr64
116??0CLIENT_WINDOW@@IEAA@XZ
117; public: __cdecl COMBOBOX::COMBOBOX(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int) __ptr64
118??0COMBOBOX@@QEAA@PEAVOWNER_WINDOW@@II@Z
119; public: __cdecl COMBOBOX::COMBOBOX(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
120??0COMBOBOX@@QEAA@PEAVOWNER_WINDOW@@IIVXYPOINT@@VXYDIMENSION@@KPEBG@Z
121; public: __cdecl CONSOLE_ELLIPSIS::CONSOLE_ELLIPSIS(enum ELLIPSIS_STYLE,int) __ptr64
122??0CONSOLE_ELLIPSIS@@QEAA@W4ELLIPSIS_STYLE@@H@Z
123; public: __cdecl CONTROLVAL_CID_PAIR::CONTROLVAL_CID_PAIR(unsigned int,class CONTROL_VALUE * __ptr64) __ptr64
124??0CONTROLVAL_CID_PAIR@@QEAA@IPEAVCONTROL_VALUE@@@Z
125; public: __cdecl CONTROLVAL_CID_PAIR::CONTROLVAL_CID_PAIR(void) __ptr64
126??0CONTROLVAL_CID_PAIR@@QEAA@XZ
127; private: __cdecl CONTROL_ENTRY::CONTROL_ENTRY(class CONTROL_WINDOW * __ptr64) __ptr64
128??0CONTROL_ENTRY@@AEAA@PEAVCONTROL_WINDOW@@@Z
129; public: __cdecl CONTROL_EVENT::CONTROL_EVENT(unsigned int,unsigned int) __ptr64
130??0CONTROL_EVENT@@QEAA@II@Z
131; public: __cdecl CONTROL_EVENT::CONTROL_EVENT(unsigned int,unsigned __int64,__int64) __ptr64
132??0CONTROL_EVENT@@QEAA@I_K_J@Z
133; public: __cdecl CONTROL_GROUP::CONTROL_GROUP(class CONTROL_GROUP * __ptr64) __ptr64
134??0CONTROL_GROUP@@QEAA@PEAV0@@Z
135; public: __cdecl CONTROL_TABLE::CONTROL_TABLE(void) __ptr64
136??0CONTROL_TABLE@@QEAA@XZ
137; public: __cdecl CONTROL_VALUE::CONTROL_VALUE(class CONTROL_GROUP * __ptr64) __ptr64
138??0CONTROL_VALUE@@QEAA@PEAVCONTROL_GROUP@@@Z
139; public: __cdecl CONTROL_WINDOW::CONTROL_WINDOW(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
140??0CONTROL_WINDOW@@QEAA@PEAVOWNER_WINDOW@@I@Z
141; public: __cdecl CONTROL_WINDOW::CONTROL_WINDOW(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
142??0CONTROL_WINDOW@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBG@Z
143; public: __cdecl CUSTOM_CONTROL::CUSTOM_CONTROL(class CONTROL_WINDOW * __ptr64) __ptr64
144??0CUSTOM_CONTROL@@QEAA@PEAVCONTROL_WINDOW@@@Z
145; public: __cdecl DEC_SLT::DEC_SLT(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int) __ptr64
146??0DEC_SLT@@QEAA@PEAVOWNER_WINDOW@@II@Z
147; public: __cdecl DEC_SLT::DEC_SLT(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,unsigned int) __ptr64
148??0DEC_SLT@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGI@Z
149; public: __cdecl DEVICE_COMBO::DEVICE_COMBO(class OWNER_WINDOW * __ptr64,unsigned int,enum LMO_DEVICE,enum LMO_DEV_USAGE) __ptr64
150??0DEVICE_COMBO@@QEAA@PEAVOWNER_WINDOW@@IW4LMO_DEVICE@@W4LMO_DEV_USAGE@@@Z
151; public: __cdecl DEVICE_CONTEXT::DEVICE_CONTEXT(struct HDC__ * __ptr64) __ptr64
152??0DEVICE_CONTEXT@@QEAA@PEAUHDC__@@@Z
153; protected: __cdecl DIALOG_WINDOW::DIALOG_WINDOW(unsigned char const * __ptr64,unsigned int,struct HWND__ * __ptr64,int) __ptr64
154??0DIALOG_WINDOW@@IEAA@PEBEIPEAUHWND__@@H@Z
155; public: __cdecl DIALOG_WINDOW::DIALOG_WINDOW(class IDRESOURCE const & __ptr64,class PWND2HWND const & __ptr64,int) __ptr64
156??0DIALOG_WINDOW@@QEAA@AEBVIDRESOURCE@@AEBVPWND2HWND@@H@Z
157; public: __cdecl DISK_SPACE_SUBCLASS::DISK_SPACE_SUBCLASS(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,long,long,long,long,long,int) __ptr64
158??0DISK_SPACE_SUBCLASS@@QEAA@PEAVOWNER_WINDOW@@IIIIIJJJJJH@Z
159; protected: __cdecl DISPATCHER::DISPATCHER(class WINDOW * __ptr64) __ptr64
160??0DISPATCHER@@IEAA@PEAVWINDOW@@@Z
161; public: __cdecl DISPLAY_CONTEXT::DISPLAY_CONTEXT(struct HWND__ * __ptr64) __ptr64
162??0DISPLAY_CONTEXT@@QEAA@PEAUHWND__@@@Z
163; public: __cdecl DISPLAY_CONTEXT::DISPLAY_CONTEXT(class WINDOW * __ptr64) __ptr64
164??0DISPLAY_CONTEXT@@QEAA@PEAVWINDOW@@@Z
165; public: __cdecl DISPLAY_CONTEXT::DISPLAY_CONTEXT(class WINDOW * __ptr64,struct HDC__ * __ptr64) __ptr64
166??0DISPLAY_CONTEXT@@QEAA@PEAVWINDOW@@PEAUHDC__@@@Z
167; public: __cdecl DISPLAY_MAP::DISPLAY_MAP(unsigned int) __ptr64
168??0DISPLAY_MAP@@QEAA@I@Z
169; public: __cdecl DISPLAY_TABLE::DISPLAY_TABLE(unsigned int,unsigned int const * __ptr64) __ptr64
170??0DISPLAY_TABLE@@QEAA@IPEBI@Z
171; public: __cdecl DLGLOAD::DLGLOAD(class IDRESOURCE const & __ptr64,struct HWND__ * __ptr64,__int64 (__cdecl*)(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64),int) __ptr64
172??0DLGLOAD@@QEAA@AEBVIDRESOURCE@@PEAUHWND__@@P6A_J1I_K_J@ZH@Z
173; public: __cdecl DLGLOAD::DLGLOAD(unsigned char const * __ptr64,unsigned int,struct HWND__ * __ptr64,__int64 (__cdecl*)(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64),int) __ptr64
174??0DLGLOAD@@QEAA@PEBEIPEAUHWND__@@P6A_J1I_K_J@ZH@Z
175; public: __cdecl DLIST_OF_SPIN_ITEM::DLIST_OF_SPIN_ITEM(int) __ptr64
176??0DLIST_OF_SPIN_ITEM@@QEAA@H@Z
177; public: __cdecl DMID_DTE::DMID_DTE(unsigned int) __ptr64
178??0DMID_DTE@@QEAA@I@Z
179; protected: __cdecl DM_DTE::DM_DTE(void) __ptr64
180??0DM_DTE@@IEAA@XZ
181; public: __cdecl DM_DTE::DM_DTE(class DISPLAY_MAP * __ptr64) __ptr64
182??0DM_DTE@@QEAA@PEAVDISPLAY_MAP@@@Z
183; public: __cdecl DOMAIN_COMBO::DOMAIN_COMBO(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int) __ptr64
184??0DOMAIN_COMBO@@QEAA@PEAVOWNER_WINDOW@@III@Z
185; public: __cdecl DOMAIN_FILL_THREAD::DOMAIN_FILL_THREAD(class NT_USER_BROWSER_DIALOG * __ptr64,class BROWSER_DOMAIN * __ptr64,class ADMIN_AUTHORITY const * __ptr64) __ptr64
186??0DOMAIN_FILL_THREAD@@QEAA@PEAVNT_USER_BROWSER_DIALOG@@PEAVBROWSER_DOMAIN@@PEBVADMIN_AUTHORITY@@@Z
187; protected: __cdecl DTE::DTE(void) __ptr64
188??0DTE@@IEAA@XZ
189; public: __cdecl EDIT_CONTROL::EDIT_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int) __ptr64
190??0EDIT_CONTROL@@QEAA@PEAVOWNER_WINDOW@@II@Z
191; public: __cdecl EDIT_CONTROL::EDIT_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,unsigned int) __ptr64
192??0EDIT_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGI@Z
193; public: __cdecl ELAPSED_TIME_CONTROL::ELAPSED_TIME_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,class SLT & __ptr64,long,long,long,class SLT & __ptr64,class SLT & __ptr64,long,long,long,long,int) __ptr64
194??0ELAPSED_TIME_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IIIIIIAEAVSLT@@JJJ11JJJJH@Z
195; public: __cdecl EVENT::EVENT(unsigned int,unsigned __int64,__int64) __ptr64
196??0EVENT@@QEAA@I_K_J@Z
197; public: __cdecl EXPANDABLE_DIALOG::EXPANDABLE_DIALOG(unsigned short const * __ptr64,struct HWND__ * __ptr64,unsigned int,unsigned int,int) __ptr64
198??0EXPANDABLE_DIALOG@@QEAA@PEBGPEAUHWND__@@IIH@Z
199; public: __cdecl FOCUSDLG_DATA_THREAD::FOCUSDLG_DATA_THREAD(struct HWND__ * __ptr64,unsigned long,enum SELECTION_TYPE,unsigned short const * __ptr64,unsigned long) __ptr64
200??0FOCUSDLG_DATA_THREAD@@QEAA@PEAUHWND__@@KW4SELECTION_TYPE@@PEBGK@Z
201; public: __cdecl FOCUS_CHECKBOX::FOCUS_CHECKBOX(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
202??0FOCUS_CHECKBOX@@QEAA@PEAVOWNER_WINDOW@@I@Z
203; public: __cdecl FONT::FONT(struct tagLOGFONTW const & __ptr64) __ptr64
204??0FONT@@QEAA@AEBUtagLOGFONTW@@@Z
205; public: __cdecl FONT::FONT(unsigned short const * __ptr64,unsigned char,int,enum FontAttributes) __ptr64
206??0FONT@@QEAA@PEBGEHW4FontAttributes@@@Z
207; public: __cdecl FONT::FONT(enum FontType) __ptr64
208??0FONT@@QEAA@W4FontType@@@Z
209; protected: __cdecl FORWARDING_BASE::FORWARDING_BASE(class BASE * __ptr64) __ptr64
210??0FORWARDING_BASE@@IEAA@PEAVBASE@@@Z
211; protected: __cdecl GET_FNAME_BASE_DLG::GET_FNAME_BASE_DLG(class OWNER_WINDOW * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
212??0GET_FNAME_BASE_DLG@@IEAA@PEAVOWNER_WINDOW@@PEBGK@Z
213; public: __cdecl GET_OPEN_FILENAME_DLG::GET_OPEN_FILENAME_DLG(class OWNER_WINDOW * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
214??0GET_OPEN_FILENAME_DLG@@QEAA@PEAVOWNER_WINDOW@@PEBGK@Z
215; public: __cdecl GET_SAVE_FILENAME_DLG::GET_SAVE_FILENAME_DLG(class OWNER_WINDOW * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
216??0GET_SAVE_FILENAME_DLG@@QEAA@PEAVOWNER_WINDOW@@PEBGK@Z
217; public: __cdecl GLOBAL_ATOM::GLOBAL_ATOM(unsigned short const * __ptr64) __ptr64
218??0GLOBAL_ATOM@@QEAA@PEBG@Z
219; public: __cdecl GRAPHICAL_BUTTON::GRAPHICAL_BUTTON(class OWNER_WINDOW * __ptr64,unsigned int,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
220??0GRAPHICAL_BUTTON@@QEAA@PEAVOWNER_WINDOW@@IPEBG11@Z
221; public: __cdecl GRAPHICAL_BUTTON::GRAPHICAL_BUTTON(class OWNER_WINDOW * __ptr64,unsigned int,unsigned short const * __ptr64,unsigned short const * __ptr64,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
222??0GRAPHICAL_BUTTON@@QEAA@PEAVOWNER_WINDOW@@IPEBG1VXYPOINT@@VXYDIMENSION@@K1@Z
223; public: __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::GRAPHICAL_BUTTON_WITH_DISABLE(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int) __ptr64
224??0GRAPHICAL_BUTTON_WITH_DISABLE@@QEAA@PEAVOWNER_WINDOW@@IIII@Z
225; public: __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::GRAPHICAL_BUTTON_WITH_DISABLE(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
226??0GRAPHICAL_BUTTON_WITH_DISABLE@@QEAA@PEAVOWNER_WINDOW@@IIIIVXYPOINT@@VXYDIMENSION@@K@Z
227; public: __cdecl HAS_MESSAGE_PUMP::HAS_MESSAGE_PUMP(void) __ptr64
228??0HAS_MESSAGE_PUMP@@QEAA@XZ
229; public: __cdecl HAW_FOR_HAWAII_INFO::HAW_FOR_HAWAII_INFO(void) __ptr64
230??0HAW_FOR_HAWAII_INFO@@QEAA@XZ
231; public: __cdecl HIDDEN_CONTROL::HIDDEN_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
232??0HIDDEN_CONTROL@@QEAA@PEAVOWNER_WINDOW@@I@Z
233; public: __cdecl HIER_LBI::HIER_LBI(int) __ptr64
234??0HIER_LBI@@QEAA@H@Z
235; public: __cdecl HIER_LBI_ITERATOR::HIER_LBI_ITERATOR(class HIER_LBI * __ptr64,int) __ptr64
236??0HIER_LBI_ITERATOR@@QEAA@PEAVHIER_LBI@@H@Z
237; public: __cdecl HIER_LISTBOX::HIER_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,int,enum FontType,int) __ptr64
238??0HIER_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IHW4FontType@@H@Z
239; public: __cdecl HIER_LISTBOX::HIER_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,int,enum FontType,int) __ptr64
240??0HIER_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KHW4FontType@@H@Z
241; public: __cdecl H_SPLITTER_BAR::H_SPLITTER_BAR(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
242??0H_SPLITTER_BAR@@QEAA@PEAVOWNER_WINDOW@@I@Z
243; public: __cdecl H_SPLITTER_BAR::H_SPLITTER_BAR(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
244??0H_SPLITTER_BAR@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@K@Z
245; public: __cdecl ICANON_SLE::ICANON_SLE(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,int) __ptr64
246??0ICANON_SLE@@QEAA@PEAVOWNER_WINDOW@@IIH@Z
247; public: __cdecl ICANON_SLE::ICANON_SLE(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,unsigned int,int) __ptr64
248??0ICANON_SLE@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGIH@Z
249; public: __cdecl ICON_CONTROL::ICON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
250??0ICON_CONTROL@@QEAA@PEAVOWNER_WINDOW@@I@Z
251; public: __cdecl ICON_CONTROL::ICON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class IDRESOURCE const & __ptr64) __ptr64
252??0ICON_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IAEBVIDRESOURCE@@@Z
253; public: __cdecl ICON_CONTROL::ICON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,class IDRESOURCE const & __ptr64,unsigned long,unsigned short const * __ptr64) __ptr64
254??0ICON_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@AEBVIDRESOURCE@@KPEBG@Z
255; public: __cdecl ICON_CONTROL::ICON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
256??0ICON_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBG@Z
257; public: __cdecl IDRESOURCE::IDRESOURCE(unsigned int) __ptr64
258??0IDRESOURCE@@QEAA@I@Z
259; public: __cdecl IDRESOURCE::IDRESOURCE(unsigned short const * __ptr64) __ptr64
260??0IDRESOURCE@@QEAA@PEBG@Z
261; public: __cdecl ITER_CTRL::ITER_CTRL(class OWNER_WINDOW const * __ptr64) __ptr64
262??0ITER_CTRL@@QEAA@PEBVOWNER_WINDOW@@@Z
263; public: __cdecl ITER_DL_SPIN_ITEM::ITER_DL_SPIN_ITEM(class DLIST & __ptr64) __ptr64
264??0ITER_DL_SPIN_ITEM@@QEAA@AEAVDLIST@@@Z
265; public: __cdecl ITER_SL_ASSOCHCFILE::ITER_SL_ASSOCHCFILE(class SLIST & __ptr64) __ptr64
266??0ITER_SL_ASSOCHCFILE@@QEAA@AEAVSLIST@@@Z
267; public: __cdecl ITER_SL_CLIENTDATA::ITER_SL_CLIENTDATA(class SLIST & __ptr64) __ptr64
268??0ITER_SL_CLIENTDATA@@QEAA@AEAVSLIST@@@Z
269; public: __cdecl ITER_SL_STRING_BITSET_PAIR::ITER_SL_STRING_BITSET_PAIR(class SLIST & __ptr64) __ptr64
270??0ITER_SL_STRING_BITSET_PAIR@@QEAA@AEAVSLIST@@@Z
271; public: __cdecl ITER_SL_TIMER_BASE::ITER_SL_TIMER_BASE(class SLIST & __ptr64) __ptr64
272??0ITER_SL_TIMER_BASE@@QEAA@AEAVSLIST@@@Z
273; public: __cdecl ITER_SL_UI_EXT::ITER_SL_UI_EXT(class SLIST & __ptr64) __ptr64
274??0ITER_SL_UI_EXT@@QEAA@AEAVSLIST@@@Z
275; public: __cdecl ITER_SL_USER_BROWSER_LBI::ITER_SL_USER_BROWSER_LBI(class SLIST & __ptr64) __ptr64
276??0ITER_SL_USER_BROWSER_LBI@@QEAA@AEAVSLIST@@@Z
277; public: __cdecl LAZY_LISTBOX::LAZY_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,int,enum FontType) __ptr64
278??0LAZY_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IHW4FontType@@@Z
279; public: __cdecl LAZY_LISTBOX::LAZY_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,int,enum FontType) __ptr64
280??0LAZY_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KHW4FontType@@@Z
281; public: __cdecl LBI::LBI(void) __ptr64
282??0LBI@@QEAA@XZ
283; public: __cdecl LBITREE::LBITREE(void) __ptr64
284??0LBITREE@@QEAA@XZ
285; public: __cdecl LBI_HEAP::LBI_HEAP(int,int) __ptr64
286??0LBI_HEAP@@QEAA@HH@Z
287; public: __cdecl LB_COLUMN_HEADER::LB_COLUMN_HEADER(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION) __ptr64
288??0LB_COLUMN_HEADER@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@@Z
289; public: __cdecl LB_COL_WIDTHS::LB_COL_WIDTHS(struct HWND__ * __ptr64,struct HINSTANCE__ * __ptr64,class IDRESOURCE const & __ptr64,unsigned int,unsigned int) __ptr64
290??0LB_COL_WIDTHS@@QEAA@PEAUHWND__@@PEAUHINSTANCE__@@AEBVIDRESOURCE@@II@Z
291; public: __cdecl LISTBOX::LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,int,enum FontType,int) __ptr64
292??0LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IHW4FontType@@H@Z
293; public: __cdecl LISTBOX::LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,int,enum FontType,int) __ptr64
294??0LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KHW4FontType@@H@Z
295; protected: __cdecl LIST_CONTROL::LIST_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,int) __ptr64
296??0LIST_CONTROL@@IEAA@PEAVOWNER_WINDOW@@IH@Z
297; protected: __cdecl LIST_CONTROL::LIST_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
298??0LIST_CONTROL@@IEAA@PEAVOWNER_WINDOW@@IHVXYPOINT@@VXYDIMENSION@@KPEBG@Z
299; public: __cdecl LM_OLLB::LM_OLLB(class OWNER_WINDOW * __ptr64,unsigned int,enum SELECTION_TYPE,unsigned long) __ptr64
300??0LM_OLLB@@QEAA@PEAVOWNER_WINDOW@@IW4SELECTION_TYPE@@K@Z
301; public: __cdecl LM_OLLB::LM_OLLB(class OWNER_WINDOW * __ptr64,unsigned int,enum SELECTION_TYPE,unsigned short const * __ptr64,unsigned long,unsigned long) __ptr64
302??0LM_OLLB@@QEAA@PEAVOWNER_WINDOW@@IW4SELECTION_TYPE@@PEBGKK@Z
303; public: __cdecl LOCAL_ATOM::LOCAL_ATOM(unsigned short const * __ptr64) __ptr64
304??0LOCAL_ATOM@@QEAA@PEBG@Z
305; public: __cdecl LOGON_HOURS_CONTROL::LOGON_HOURS_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
306??0LOGON_HOURS_CONTROL@@QEAA@PEAVOWNER_WINDOW@@I@Z
307; public: __cdecl LOGON_HOURS_CONTROL::LOGON_HOURS_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION) __ptr64
308??0LOGON_HOURS_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@@Z
309; public: __cdecl MAGIC_GROUP::MAGIC_GROUP(class OWNER_WINDOW * __ptr64,unsigned int,int,unsigned int,class CONTROL_GROUP * __ptr64) __ptr64
310??0MAGIC_GROUP@@QEAA@PEAVOWNER_WINDOW@@IHIPEAVCONTROL_GROUP@@@Z
311; public: __cdecl MASK_MAP::MASK_MAP(void) __ptr64
312??0MASK_MAP@@QEAA@XZ
313; public: __cdecl MEMORY_DC::MEMORY_DC(class DEVICE_CONTEXT & __ptr64) __ptr64
314??0MEMORY_DC@@QEAA@AEAVDEVICE_CONTEXT@@@Z
315; protected: __cdecl MENUITEM::MENUITEM(struct HMENU__ * __ptr64,unsigned int) __ptr64
316??0MENUITEM@@IEAA@PEAUHMENU__@@I@Z
317; public: __cdecl MENUITEM::MENUITEM(class APP_WINDOW * __ptr64,unsigned int) __ptr64
318??0MENUITEM@@QEAA@PEAVAPP_WINDOW@@I@Z
319; protected: __cdecl MENU_BASE::MENU_BASE(struct HMENU__ * __ptr64) __ptr64
320??0MENU_BASE@@IEAA@PEAUHMENU__@@@Z
321; public: __cdecl METER::METER(class OWNER_WINDOW * __ptr64,unsigned int,unsigned long) __ptr64
322??0METER@@QEAA@PEAVOWNER_WINDOW@@IK@Z
323; public: __cdecl METER::METER(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned long) __ptr64
324??0METER@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KK@Z
325; public: __cdecl MLE::MLE(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int) __ptr64
326??0MLE@@QEAA@PEAVOWNER_WINDOW@@II@Z
327; public: __cdecl MLE::MLE(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,unsigned int) __ptr64
328??0MLE@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGI@Z
329; public: __cdecl MLE_FONT::MLE_FONT(class OWNER_WINDOW * __ptr64,unsigned int,enum FontType) __ptr64
330??0MLE_FONT@@QEAA@PEAVOWNER_WINDOW@@IW4FontType@@@Z
331; public: __cdecl MLT::MLT(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
332??0MLT@@QEAA@PEAVOWNER_WINDOW@@I@Z
333; public: __cdecl MLT::MLT(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
334??0MLT@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBG@Z
335; public: __cdecl MLT_FONT::MLT_FONT(class OWNER_WINDOW * __ptr64,unsigned int,enum FontType) __ptr64
336??0MLT_FONT@@QEAA@PEAVOWNER_WINDOW@@IW4FontType@@@Z
337; public: __cdecl MOUSE_EVENT::MOUSE_EVENT(unsigned int,unsigned __int64,__int64) __ptr64
338??0MOUSE_EVENT@@QEAA@I_K_J@Z
339; public: __cdecl MSGPOPUP_DIALOG::MSGPOPUP_DIALOG(struct HWND__ * __ptr64,class NLS_STR const & __ptr64,long,enum MSG_SEVERITY,unsigned long,unsigned int,unsigned int,long,unsigned long) __ptr64
340??0MSGPOPUP_DIALOG@@QEAA@PEAUHWND__@@AEBVNLS_STR@@JW4MSG_SEVERITY@@KIIJK@Z
341; protected: __cdecl MSG_DIALOG_BASE::MSG_DIALOG_BASE(struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned int) __ptr64
342??0MSG_DIALOG_BASE@@IEAA@PEAUHWND__@@PEBGI@Z
343; public: __cdecl NT_FIND_ACCOUNT_DIALOG::NT_FIND_ACCOUNT_DIALOG(struct HWND__ * __ptr64,class NT_USER_BROWSER_DIALOG * __ptr64,class BROWSER_DOMAIN_CB * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
344??0NT_FIND_ACCOUNT_DIALOG@@QEAA@PEAUHWND__@@PEAVNT_USER_BROWSER_DIALOG@@PEAVBROWSER_DOMAIN_CB@@PEBGK@Z
345; public: __cdecl NT_GLOBALGROUP_BROWSER_DIALOG::NT_GLOBALGROUP_BROWSER_DIALOG(struct HWND__ * __ptr64,class NT_USER_BROWSER_DIALOG * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,class OS_SID const * __ptr64,class SAM_DOMAIN const * __ptr64,class LSA_POLICY * __ptr64,unsigned short const * __ptr64) __ptr64
346??0NT_GLOBALGROUP_BROWSER_DIALOG@@QEAA@PEAUHWND__@@PEAVNT_USER_BROWSER_DIALOG@@PEBG2PEBVOS_SID@@PEBVSAM_DOMAIN@@PEAVLSA_POLICY@@2@Z
347; public: __cdecl NT_GROUP_BROWSER_DIALOG::NT_GROUP_BROWSER_DIALOG(unsigned short const * __ptr64,struct HWND__ * __ptr64,class NT_USER_BROWSER_DIALOG * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
348??0NT_GROUP_BROWSER_DIALOG@@QEAA@PEBGPEAUHWND__@@PEAVNT_USER_BROWSER_DIALOG@@00@Z
349; public: __cdecl NT_GROUP_BROWSER_LB::NT_GROUP_BROWSER_LB(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
350??0NT_GROUP_BROWSER_LB@@QEAA@PEAVOWNER_WINDOW@@I@Z
351; public: __cdecl NT_LOCALGROUP_BROWSER_DIALOG::NT_LOCALGROUP_BROWSER_DIALOG(struct HWND__ * __ptr64,class NT_USER_BROWSER_DIALOG * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,class OS_SID const * __ptr64,class SAM_DOMAIN const * __ptr64,class SAM_DOMAIN const * __ptr64,class LSA_POLICY * __ptr64,unsigned short const * __ptr64) __ptr64
352??0NT_LOCALGROUP_BROWSER_DIALOG@@QEAA@PEAUHWND__@@PEAVNT_USER_BROWSER_DIALOG@@PEBG2PEBVOS_SID@@PEBVSAM_DOMAIN@@4PEAVLSA_POLICY@@2@Z
353; public: __cdecl NT_USER_BROWSER_DIALOG::NT_USER_BROWSER_DIALOG(unsigned short const * __ptr64,struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned long,unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long,class ADMIN_AUTHORITY const * __ptr64) __ptr64
354??0NT_USER_BROWSER_DIALOG@@QEAA@PEBGPEAUHWND__@@0KK0KKKPEBVADMIN_AUTHORITY@@@Z
355; public: __cdecl OLLB_ENTRY::OLLB_ENTRY(enum OUTLINE_LB_LEVEL,int,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
356??0OLLB_ENTRY@@QEAA@W4OUTLINE_LB_LEVEL@@HPEBG11@Z
357; public: __cdecl OPEN_DIALOG_BASE::OPEN_DIALOG_BASE(struct HWND__ * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int,unsigned int,unsigned short const * __ptr64,unsigned short const * __ptr64,class OPEN_LBOX_BASE * __ptr64) __ptr64
358??0OPEN_DIALOG_BASE@@QEAA@PEAUHWND__@@IIIIIPEBG1PEAVOPEN_LBOX_BASE@@@Z
359; public: __cdecl OPEN_LBI_BASE::OPEN_LBI_BASE(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned long,unsigned long) __ptr64
360??0OPEN_LBI_BASE@@QEAA@PEBG0KKK@Z
361; public: __cdecl OPEN_LBOX_BASE::OPEN_LBOX_BASE(class OWNER_WINDOW * __ptr64,unsigned int,class NLS_STR const & __ptr64,class NLS_STR const & __ptr64) __ptr64
362??0OPEN_LBOX_BASE@@QEAA@PEAVOWNER_WINDOW@@IAEBVNLS_STR@@1@Z
363; public: __cdecl ORDER_GROUP::ORDER_GROUP(class STRING_LISTBOX * __ptr64,class BUTTON_CONTROL * __ptr64,class BUTTON_CONTROL * __ptr64,class CONTROL_GROUP * __ptr64) __ptr64
364??0ORDER_GROUP@@QEAA@PEAVSTRING_LISTBOX@@PEAVBUTTON_CONTROL@@1PEAVCONTROL_GROUP@@@Z
365; public: __cdecl OUTLINE_LISTBOX::OUTLINE_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,int) __ptr64
366??0OUTLINE_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IH@Z
367; public: __cdecl OWNER_WINDOW::OWNER_WINDOW(unsigned short const * __ptr64,unsigned long,class WINDOW const * __ptr64) __ptr64
368??0OWNER_WINDOW@@QEAA@PEBGKPEBVWINDOW@@@Z
369; public: __cdecl OWNER_WINDOW::OWNER_WINDOW(void) __ptr64
370??0OWNER_WINDOW@@QEAA@XZ
371; public: __cdecl OWNINGWND::OWNINGWND(struct HWND__ * __ptr64) __ptr64
372??0OWNINGWND@@QEAA@PEAUHWND__@@@Z
373; public: __cdecl OWNINGWND::OWNINGWND(class OWNER_WINDOW const * __ptr64) __ptr64
374??0OWNINGWND@@QEAA@PEBVOWNER_WINDOW@@@Z
375; public: __cdecl PAINT_DISPLAY_CONTEXT::PAINT_DISPLAY_CONTEXT(class WINDOW * __ptr64) __ptr64
376??0PAINT_DISPLAY_CONTEXT@@QEAA@PEAVWINDOW@@@Z
377; public: __cdecl PASSWORD_CONTROL::PASSWORD_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int) __ptr64
378??0PASSWORD_CONTROL@@QEAA@PEAVOWNER_WINDOW@@II@Z
379; public: __cdecl PASSWORD_CONTROL::PASSWORD_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,unsigned int) __ptr64
380??0PASSWORD_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGI@Z
381; public: __cdecl POPUP::POPUP(struct HWND__ * __ptr64,long,enum MSG_SEVERITY,unsigned int,unsigned int,int) __ptr64
382??0POPUP@@QEAA@PEAUHWND__@@JW4MSG_SEVERITY@@IIH@Z
383; public: __cdecl POPUP::POPUP(struct HWND__ * __ptr64,long,enum MSG_SEVERITY,unsigned long,unsigned int,class NLS_STR const * __ptr64 * __ptr64,unsigned int) __ptr64
384??0POPUP@@QEAA@PEAUHWND__@@JW4MSG_SEVERITY@@KIPEAPEBVNLS_STR@@I@Z
385; public: __cdecl POPUP_MENU::POPUP_MENU(class IDRESOURCE & __ptr64) __ptr64
386??0POPUP_MENU@@QEAA@AEAVIDRESOURCE@@@Z
387; public: __cdecl POPUP_MENU::POPUP_MENU(class PWND2HWND const & __ptr64) __ptr64
388??0POPUP_MENU@@QEAA@AEBVPWND2HWND@@@Z
389; public: __cdecl POPUP_MENU::POPUP_MENU(struct HMENU__ * __ptr64) __ptr64
390??0POPUP_MENU@@QEAA@PEAUHMENU__@@@Z
391; public: __cdecl POPUP_MENU::POPUP_MENU(void) __ptr64
392??0POPUP_MENU@@QEAA@XZ
393; public: __cdecl PROC_INSTANCE::PROC_INSTANCE(unsigned __int64) __ptr64
394??0PROC_INSTANCE@@QEAA@_K@Z
395; public: __cdecl PROC_TIMER::PROC_TIMER(struct HWND__ * __ptr64,unsigned __int64,unsigned long,int) __ptr64
396??0PROC_TIMER@@QEAA@PEAUHWND__@@_KKH@Z
397; public: __cdecl PROGRESS_CONTROL::PROGRESS_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int) __ptr64
398??0PROGRESS_CONTROL@@QEAA@PEAVOWNER_WINDOW@@III@Z
399; public: __cdecl PROMPT_AND_CONNECT::PROMPT_AND_CONNECT(struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned long,unsigned int,unsigned short const * __ptr64) __ptr64
400??0PROMPT_AND_CONNECT@@QEAA@PEAUHWND__@@PEBGKI1@Z
401; public: __cdecl PROMPT_FOR_ANY_DC_DLG::PROMPT_FOR_ANY_DC_DLG(class PWND2HWND & __ptr64,unsigned long,class NLS_STR const * __ptr64,class PWND2HWND * __ptr64) __ptr64
402??0PROMPT_FOR_ANY_DC_DLG@@QEAA@AEAVPWND2HWND@@KPEBVNLS_STR@@PEAV2@@Z
403; public: __cdecl PUSH_BUTTON::PUSH_BUTTON(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
404??0PUSH_BUTTON@@QEAA@PEAVOWNER_WINDOW@@I@Z
405; public: __cdecl PUSH_BUTTON::PUSH_BUTTON(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
406??0PUSH_BUTTON@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@K@Z
407; public: __cdecl PWND2HWND::PWND2HWND(struct HWND__ * __ptr64) __ptr64
408??0PWND2HWND@@QEAA@PEAUHWND__@@@Z
409; public: __cdecl RADIO_BUTTON::RADIO_BUTTON(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
410??0RADIO_BUTTON@@QEAA@PEAVOWNER_WINDOW@@I@Z
411; public: __cdecl RADIO_GROUP::RADIO_GROUP(class OWNER_WINDOW * __ptr64,unsigned int,int,unsigned int,class CONTROL_GROUP * __ptr64) __ptr64
412??0RADIO_GROUP@@QEAA@PEAVOWNER_WINDOW@@IHIPEAVCONTROL_GROUP@@@Z
413; public: __cdecl RESOURCE_PASSWORD_DIALOG::RESOURCE_PASSWORD_DIALOG(struct HWND__ * __ptr64,unsigned short const * __ptr64,unsigned int,unsigned long) __ptr64
414??0RESOURCE_PASSWORD_DIALOG@@QEAA@PEAUHWND__@@PEBGIK@Z
415; public: __cdecl RESOURCE_STR::RESOURCE_STR(long) __ptr64
416??0RESOURCE_STR@@QEAA@J@Z
417; public: __cdecl RITER_DL_SPIN_ITEM::RITER_DL_SPIN_ITEM(class DLIST & __ptr64) __ptr64
418??0RITER_DL_SPIN_ITEM@@QEAA@AEAVDLIST@@@Z
419; public: __cdecl SCREEN_DC::SCREEN_DC(void) __ptr64
420??0SCREEN_DC@@QEAA@XZ
421; public: __cdecl SCROLLBAR::SCROLLBAR(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
422??0SCROLLBAR@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@K@Z
423; public: __cdecl SCROLL_EVENT::SCROLL_EVENT(unsigned int,unsigned __int64,__int64) __ptr64
424??0SCROLL_EVENT@@QEAA@I_K_J@Z
425; public: __cdecl SET_CONTROL::SET_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,struct HICON__ * __ptr64,struct HICON__ * __ptr64,class LISTBOX * __ptr64,class LISTBOX * __ptr64,unsigned int) __ptr64
426??0SET_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IIPEAUHICON__@@1PEAVLISTBOX@@2I@Z
427; public: __cdecl SET_OF_AUDIT_CATEGORIES::SET_OF_AUDIT_CATEGORIES(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,class MASK_MAP * __ptr64,class BITFIELD * __ptr64,class BITFIELD * __ptr64,int) __ptr64
428??0SET_OF_AUDIT_CATEGORIES@@QEAA@PEAVOWNER_WINDOW@@IIIPEAVMASK_MAP@@PEAVBITFIELD@@2H@Z
429; public: __cdecl SLE::SLE(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int) __ptr64
430??0SLE@@QEAA@PEAVOWNER_WINDOW@@II@Z
431; public: __cdecl SLE::SLE(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,unsigned int) __ptr64
432??0SLE@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGI@Z
433; public: __cdecl SLE_FONT::SLE_FONT(class OWNER_WINDOW * __ptr64,unsigned int,enum FontType) __ptr64
434??0SLE_FONT@@QEAA@PEAVOWNER_WINDOW@@IW4FontType@@@Z
435; public: __cdecl SLE_STRIP::SLE_STRIP(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,int) __ptr64
436??0SLE_STRIP@@QEAA@PEAVOWNER_WINDOW@@IIH@Z
437; public: __cdecl SLE_STRIP::SLE_STRIP(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,unsigned int,int) __ptr64
438??0SLE_STRIP@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGIH@Z
439; public: __cdecl SLE_STRLB_GROUP::SLE_STRLB_GROUP(class OWNER_WINDOW * __ptr64,class SLE * __ptr64,class STRING_LISTBOX * __ptr64,class PUSH_BUTTON * __ptr64,class PUSH_BUTTON * __ptr64) __ptr64
440??0SLE_STRLB_GROUP@@QEAA@PEAVOWNER_WINDOW@@PEAVSLE@@PEAVSTRING_LISTBOX@@PEAVPUSH_BUTTON@@3@Z
441; public: __cdecl SLIST_OF_ASSOCHCFILE::SLIST_OF_ASSOCHCFILE(int) __ptr64
442??0SLIST_OF_ASSOCHCFILE@@QEAA@H@Z
443; public: __cdecl SLIST_OF_CLIENTDATA::SLIST_OF_CLIENTDATA(int) __ptr64
444??0SLIST_OF_CLIENTDATA@@QEAA@H@Z
445; public: __cdecl SLIST_OF_OS_SID::SLIST_OF_OS_SID(int) __ptr64
446??0SLIST_OF_OS_SID@@QEAA@H@Z
447; public: __cdecl SLIST_OF_STRING_BITSET_PAIR::SLIST_OF_STRING_BITSET_PAIR(int) __ptr64
448??0SLIST_OF_STRING_BITSET_PAIR@@QEAA@H@Z
449; public: __cdecl SLIST_OF_TIMER_BASE::SLIST_OF_TIMER_BASE(int) __ptr64
450??0SLIST_OF_TIMER_BASE@@QEAA@H@Z
451; public: __cdecl SLIST_OF_UI_EXT::SLIST_OF_UI_EXT(int) __ptr64
452??0SLIST_OF_UI_EXT@@QEAA@H@Z
453; public: __cdecl SLIST_OF_ULC_API_BUFFER::SLIST_OF_ULC_API_BUFFER(int) __ptr64
454??0SLIST_OF_ULC_API_BUFFER@@QEAA@H@Z
455; public: __cdecl SLIST_OF_USER_BROWSER_LBI::SLIST_OF_USER_BROWSER_LBI(int) __ptr64
456??0SLIST_OF_USER_BROWSER_LBI@@QEAA@H@Z
457; public: __cdecl SLT::SLT(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
458??0SLT@@QEAA@PEAVOWNER_WINDOW@@I@Z
459; public: __cdecl SLT::SLT(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
460??0SLT@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBG@Z
461; public: __cdecl SLT_ELLIPSIS::SLT_ELLIPSIS(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,enum ELLIPSIS_STYLE) __ptr64
462??0SLT_ELLIPSIS@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGW4ELLIPSIS_STYLE@@@Z
463; public: __cdecl SLT_ELLIPSIS::SLT_ELLIPSIS(class OWNER_WINDOW * __ptr64,unsigned int,enum ELLIPSIS_STYLE) __ptr64
464??0SLT_ELLIPSIS@@QEAA@PEAVOWNER_WINDOW@@IW4ELLIPSIS_STYLE@@@Z
465; public: __cdecl SLT_FONT::SLT_FONT(class OWNER_WINDOW * __ptr64,unsigned int,enum FontType) __ptr64
466??0SLT_FONT@@QEAA@PEAVOWNER_WINDOW@@IW4FontType@@@Z
467; public: __cdecl SOLID_BRUSH::SOLID_BRUSH(int) __ptr64
468??0SOLID_BRUSH@@QEAA@H@Z
469; public: __cdecl SPIN_GROUP::SPIN_GROUP(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,int) __ptr64
470??0SPIN_GROUP@@QEAA@PEAVOWNER_WINDOW@@IIIH@Z
471; public: __cdecl SPIN_GROUP::SPIN_GROUP(class OWNER_WINDOW * __ptr64,unsigned int,unsigned int,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,int) __ptr64
472??0SPIN_GROUP@@QEAA@PEAVOWNER_WINDOW@@IIIVXYPOINT@@VXYDIMENSION@@KH@Z
473; public: __cdecl SPIN_ITEM::SPIN_ITEM(class CONTROL_WINDOW * __ptr64) __ptr64
474??0SPIN_ITEM@@QEAA@PEAVCONTROL_WINDOW@@@Z
475; public: __cdecl SPIN_SLE_NUM::SPIN_SLE_NUM(class OWNER_WINDOW * __ptr64,unsigned int,unsigned long,unsigned long,unsigned long,int,unsigned int) __ptr64
476??0SPIN_SLE_NUM@@QEAA@PEAVOWNER_WINDOW@@IKKKHI@Z
477; public: __cdecl SPIN_SLE_NUM::SPIN_SLE_NUM(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned long,unsigned long,unsigned long,int,unsigned int) __ptr64
478??0SPIN_SLE_NUM@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KKKKHI@Z
479; public: __cdecl SPIN_SLE_NUM_VALID::SPIN_SLE_NUM_VALID(class OWNER_WINDOW * __ptr64,unsigned int,unsigned long,unsigned long,unsigned long,int) __ptr64
480??0SPIN_SLE_NUM_VALID@@QEAA@PEAVOWNER_WINDOW@@IKKKH@Z
481; public: __cdecl SPIN_SLE_NUM_VALID::SPIN_SLE_NUM_VALID(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned long,unsigned long,unsigned long,int) __ptr64
482??0SPIN_SLE_NUM_VALID@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KKKKH@Z
483; public: __cdecl SPIN_SLE_STR::SPIN_SLE_STR(class OWNER_WINDOW * __ptr64,unsigned int,long,long,int,unsigned int) __ptr64
484??0SPIN_SLE_STR@@QEAA@PEAVOWNER_WINDOW@@IJJHI@Z
485; public: __cdecl SPIN_SLE_STR::SPIN_SLE_STR(class OWNER_WINDOW * __ptr64,unsigned int,long,long,class XYPOINT,class XYDIMENSION,unsigned long,int,unsigned int) __ptr64
486??0SPIN_SLE_STR@@QEAA@PEAVOWNER_WINDOW@@IJJVXYPOINT@@VXYDIMENSION@@KHI@Z
487; public: __cdecl SPIN_SLE_STR::SPIN_SLE_STR(class OWNER_WINDOW * __ptr64,unsigned int,unsigned short const * __ptr64 * __ptr64 const,long,int,unsigned int) __ptr64
488??0SPIN_SLE_STR@@QEAA@PEAVOWNER_WINDOW@@IQEAPEBGJHI@Z
489; public: __cdecl SPIN_SLE_STR::SPIN_SLE_STR(class OWNER_WINDOW * __ptr64,unsigned int,unsigned short const * __ptr64 * __ptr64 const,long,class XYPOINT,class XYDIMENSION,unsigned long,int,unsigned int) __ptr64
490??0SPIN_SLE_STR@@QEAA@PEAVOWNER_WINDOW@@IQEAPEBGJVXYPOINT@@VXYDIMENSION@@KHI@Z
491; public: __cdecl SPIN_SLE_VALID_SECOND::SPIN_SLE_VALID_SECOND(class OWNER_WINDOW * __ptr64,unsigned int,long,long,long,long,int) __ptr64
492??0SPIN_SLE_VALID_SECOND@@QEAA@PEAVOWNER_WINDOW@@IJJJJH@Z
493; public: __cdecl SPIN_SLT_SEPARATOR::SPIN_SLT_SEPARATOR(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
494??0SPIN_SLT_SEPARATOR@@QEAA@PEAVOWNER_WINDOW@@I@Z
495; public: __cdecl SPIN_SLT_SEPARATOR::SPIN_SLT_SEPARATOR(class OWNER_WINDOW * __ptr64,unsigned int,unsigned short const * __ptr64,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
496??0SPIN_SLT_SEPARATOR@@QEAA@PEAVOWNER_WINDOW@@IPEBGVXYPOINT@@VXYDIMENSION@@K@Z
497; public: __cdecl STANDALONE_SET_FOCUS_DLG::STANDALONE_SET_FOCUS_DLG(struct HWND__ * __ptr64,class NLS_STR * __ptr64,unsigned long,enum SELECTION_TYPE,unsigned long,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
498??0STANDALONE_SET_FOCUS_DLG@@QEAA@PEAUHWND__@@PEAVNLS_STR@@KW4SELECTION_TYPE@@KPEBG3K@Z
499; protected: __cdecl STATE2_BUTTON_CONTROL::STATE2_BUTTON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
500??0STATE2_BUTTON_CONTROL@@IEAA@PEAVOWNER_WINDOW@@I@Z
501; public: __cdecl STATELB::STATELB(int * __ptr64 const,class OWNER_WINDOW * __ptr64,unsigned int,int,int,enum FontType) __ptr64
502??0STATELB@@QEAA@QEAHPEAVOWNER_WINDOW@@IHHW4FontType@@@Z
503; public: __cdecl STATELBGRP::STATELBGRP(class STATELB * __ptr64) __ptr64
504??0STATELBGRP@@QEAA@PEAVSTATELB@@@Z
505; public: __cdecl STATELBGRP::STATELBGRP(int * __ptr64 const,class OWNER_WINDOW * __ptr64,unsigned int,int,int,enum FontType) __ptr64
506??0STATELBGRP@@QEAA@QEAHPEAVOWNER_WINDOW@@IHHW4FontType@@@Z
507; protected: __cdecl STATE_BUTTON_CONTROL::STATE_BUTTON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
508??0STATE_BUTTON_CONTROL@@IEAA@PEAVOWNER_WINDOW@@I@Z
509; protected: __cdecl STATE_BUTTON_CONTROL::STATE_BUTTON_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long) __ptr64
510??0STATE_BUTTON_CONTROL@@IEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@K@Z
511; public: __cdecl STATIC_SPIN_ITEM::STATIC_SPIN_ITEM(class CONTROL_WINDOW * __ptr64) __ptr64
512??0STATIC_SPIN_ITEM@@QEAA@PEAVCONTROL_WINDOW@@@Z
513; public: __cdecl STATIC_TEXT_CONTROL::STATIC_TEXT_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
514??0STATIC_TEXT_CONTROL@@QEAA@PEAVOWNER_WINDOW@@I@Z
515; public: __cdecl STATIC_TEXT_CONTROL::STATIC_TEXT_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
516??0STATIC_TEXT_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBG@Z
517; public: __cdecl STLBITEM::STLBITEM(class STATELBGRP * __ptr64) __ptr64
518??0STLBITEM@@QEAA@PEAVSTATELBGRP@@@Z
519; public: __cdecl STRING_BITSET_PAIR::STRING_BITSET_PAIR(class NLS_STR const & __ptr64,class BITFIELD const & __ptr64,int) __ptr64
520??0STRING_BITSET_PAIR@@QEAA@AEBVNLS_STR@@AEBVBITFIELD@@H@Z
521; public: __cdecl STRING_LISTBOX::STRING_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64,enum FontType) __ptr64
522??0STRING_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBGW4FontType@@@Z
523; public: __cdecl STRING_LISTBOX::STRING_LISTBOX(class OWNER_WINDOW * __ptr64,unsigned int,enum FontType) __ptr64
524??0STRING_LISTBOX@@QEAA@PEAVOWNER_WINDOW@@IW4FontType@@@Z
525; protected: __cdecl STRING_LIST_CONTROL::STRING_LIST_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,int) __ptr64
526??0STRING_LIST_CONTROL@@IEAA@PEAVOWNER_WINDOW@@IH@Z
527; protected: __cdecl STRING_LIST_CONTROL::STRING_LIST_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
528??0STRING_LIST_CONTROL@@IEAA@PEAVOWNER_WINDOW@@IHVXYPOINT@@VXYDIMENSION@@KPEBG@Z
529; public: __cdecl STR_DTE::STR_DTE(unsigned short const * __ptr64) __ptr64
530??0STR_DTE@@QEAA@PEBG@Z
531; public: __cdecl STR_DTE_ELLIPSIS::STR_DTE_ELLIPSIS(unsigned short const * __ptr64,class LISTBOX * __ptr64,enum ELLIPSIS_STYLE) __ptr64
532??0STR_DTE_ELLIPSIS@@QEAA@PEBGPEAVLISTBOX@@W4ELLIPSIS_STYLE@@@Z
533; public: __cdecl SUBJECT_BITMAP_BLOCK::SUBJECT_BITMAP_BLOCK(void) __ptr64
534??0SUBJECT_BITMAP_BLOCK@@QEAA@XZ
535; public: __cdecl SYSMENUITEM::SYSMENUITEM(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
536??0SYSMENUITEM@@QEAA@PEAVOWNER_WINDOW@@I@Z
537; public: __cdecl SYSTEM_MENU::SYSTEM_MENU(class PWND2HWND const & __ptr64) __ptr64
538??0SYSTEM_MENU@@QEAA@AEBVPWND2HWND@@@Z
539; public: __cdecl TEXT_CONTROL::TEXT_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
540??0TEXT_CONTROL@@QEAA@PEAVOWNER_WINDOW@@I@Z
541; public: __cdecl TEXT_CONTROL::TEXT_CONTROL(class OWNER_WINDOW * __ptr64,unsigned int,class XYPOINT,class XYDIMENSION,unsigned long,unsigned short const * __ptr64) __ptr64
542??0TEXT_CONTROL@@QEAA@PEAVOWNER_WINDOW@@IVXYPOINT@@VXYDIMENSION@@KPEBG@Z
543; public: __cdecl TIMER::TIMER(class TIMER_CALLOUT * __ptr64,unsigned long,int) __ptr64
544??0TIMER@@QEAA@PEAVTIMER_CALLOUT@@KH@Z
545; public: __cdecl TIMER_BASE::TIMER_BASE(unsigned long,int) __ptr64
546??0TIMER_BASE@@QEAA@KH@Z
547; public: __cdecl TIMER_EVENT::TIMER_EVENT(unsigned int,unsigned __int64,__int64) __ptr64
548??0TIMER_EVENT@@QEAA@I_K_J@Z
549; public: __cdecl TIMER_WINDOW::TIMER_WINDOW(class BLT_MASTER_TIMER * __ptr64) __ptr64
550??0TIMER_WINDOW@@QEAA@PEAVBLT_MASTER_TIMER@@@Z
551; public: __cdecl UI_DOMAIN::UI_DOMAIN(class PWND2HWND & __ptr64,unsigned long,unsigned short const * __ptr64,int) __ptr64
552??0UI_DOMAIN@@QEAA@AEAVPWND2HWND@@KPEBGH@Z
553; protected: __cdecl UI_EXT::UI_EXT(unsigned short const * __ptr64,unsigned long) __ptr64
554??0UI_EXT@@IEAA@PEBGK@Z
555; public: __cdecl UI_EXT_MGR::UI_EXT_MGR(class UI_EXT_MGR_IF * __ptr64,unsigned long,unsigned long) __ptr64
556??0UI_EXT_MGR@@QEAA@PEAVUI_EXT_MGR_IF@@KK@Z
557; protected: __cdecl UI_EXT_MGR_IF::UI_EXT_MGR_IF(void) __ptr64
558??0UI_EXT_MGR_IF@@IEAA@XZ
559; protected: __cdecl UI_MENU_EXT::UI_MENU_EXT(unsigned short const * __ptr64,unsigned long) __ptr64
560??0UI_MENU_EXT@@IEAA@PEBGK@Z
561; public: __cdecl UI_MENU_EXT_MGR::UI_MENU_EXT_MGR(class UI_EXT_MGR_IF * __ptr64,unsigned long,unsigned long) __ptr64
562??0UI_MENU_EXT_MGR@@QEAA@PEAVUI_EXT_MGR_IF@@KK@Z
563; public: __cdecl ULC_API_BUFFER::ULC_API_BUFFER(struct _DOMAIN_DISPLAY_USER * __ptr64,unsigned long) __ptr64
564??0ULC_API_BUFFER@@QEAA@PEAU_DOMAIN_DISPLAY_USER@@K@Z
565; public: __cdecl USER_BROWSER_LB::USER_BROWSER_LB(class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
566??0USER_BROWSER_LB@@QEAA@PEAVOWNER_WINDOW@@I@Z
567; public: __cdecl USER_BROWSER_LBI::USER_BROWSER_LBI(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,void * __ptr64 const,enum UI_SystemSid,enum _SID_NAME_USE,unsigned long) __ptr64
568??0USER_BROWSER_LBI@@QEAA@PEBG0000QEAXW4UI_SystemSid@@W4_SID_NAME_USE@@K@Z
569; public: __cdecl USER_BROWSER_LBI_CACHE::USER_BROWSER_LBI_CACHE(void) __ptr64
570??0USER_BROWSER_LBI_CACHE@@QEAA@XZ
571; public: __cdecl USER_LBI_CACHE::USER_LBI_CACHE(int) __ptr64
572??0USER_LBI_CACHE@@QEAA@H@Z
573; public: __cdecl USRLB_NT_GROUP_ENUM::USRLB_NT_GROUP_ENUM(class SAM_DOMAIN const * __ptr64) __ptr64
574??0USRLB_NT_GROUP_ENUM@@QEAA@PEBVSAM_DOMAIN@@@Z
575; public: __cdecl WIN32_EVENT::WIN32_EVENT(unsigned short const * __ptr64,int,int) __ptr64
576??0WIN32_EVENT@@QEAA@PEBGHH@Z
577; public: __cdecl WIN32_HANDLE::WIN32_HANDLE(void * __ptr64) __ptr64
578??0WIN32_HANDLE@@QEAA@PEAX@Z
579; public: __cdecl WIN32_MUTEX::WIN32_MUTEX(unsigned short const * __ptr64,int) __ptr64
580??0WIN32_MUTEX@@QEAA@PEBGH@Z
581; public: __cdecl WIN32_SEMAPHORE::WIN32_SEMAPHORE(unsigned short const * __ptr64,long,long) __ptr64
582??0WIN32_SEMAPHORE@@QEAA@PEBGJJ@Z
583; protected: __cdecl WIN32_SYNC_BASE::WIN32_SYNC_BASE(void * __ptr64) __ptr64
584??0WIN32_SYNC_BASE@@IEAA@PEAX@Z
585; public: __cdecl WIN32_THREAD::WIN32_THREAD(int,unsigned int,unsigned short const * __ptr64) __ptr64
586??0WIN32_THREAD@@QEAA@HIPEBG@Z
587; public: __cdecl WINDOW::WINDOW(class WINDOW const & __ptr64) __ptr64
588??0WINDOW@@QEAA@AEBV0@@Z
589; public: __cdecl WINDOW::WINDOW(struct HWND__ * __ptr64) __ptr64
590??0WINDOW@@QEAA@PEAUHWND__@@@Z
591; public: __cdecl WINDOW::WINDOW(unsigned short const * __ptr64,unsigned long,class WINDOW const * __ptr64,unsigned int) __ptr64
592??0WINDOW@@QEAA@PEBGKPEBV0@I@Z
593; public: __cdecl WINDOW::WINDOW(void) __ptr64
594??0WINDOW@@QEAA@XZ
595; public: __cdecl WINDOW_TIMER::WINDOW_TIMER(struct HWND__ * __ptr64,unsigned long,int,int) __ptr64
596??0WINDOW_TIMER@@QEAA@PEAUHWND__@@KHH@Z
597; public: __cdecl WIN_ELLIPSIS::WIN_ELLIPSIS(class WINDOW * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,enum ELLIPSIS_STYLE) __ptr64
598??0WIN_ELLIPSIS@@QEAA@PEAVWINDOW@@PEAUHDC__@@PEBUtagRECT@@W4ELLIPSIS_STYLE@@@Z
599; public: __cdecl WIN_ELLIPSIS::WIN_ELLIPSIS(class WINDOW * __ptr64,enum ELLIPSIS_STYLE) __ptr64
600??0WIN_ELLIPSIS@@QEAA@PEAVWINDOW@@W4ELLIPSIS_STYLE@@@Z
601; public: __cdecl XYDIMENSION::XYDIMENSION(struct tagSIZE const & __ptr64) __ptr64
602??0XYDIMENSION@@QEAA@AEBUtagSIZE@@@Z
603; public: __cdecl XYDIMENSION::XYDIMENSION(unsigned int,unsigned int) __ptr64
604??0XYDIMENSION@@QEAA@II@Z
605; public: __cdecl XYPOINT::XYPOINT(struct tagPOINT const & __ptr64) __ptr64
606??0XYPOINT@@QEAA@AEBUtagPOINT@@@Z
607; public: __cdecl XYPOINT::XYPOINT(int,int) __ptr64
608??0XYPOINT@@QEAA@HH@Z
609; public: __cdecl XYPOINT::XYPOINT(__int64) __ptr64
610??0XYPOINT@@QEAA@_J@Z
611; public: __cdecl XYRECT::XYRECT(struct tagRECT const & __ptr64) __ptr64
612??0XYRECT@@QEAA@AEBUtagRECT@@@Z
613; public: __cdecl XYRECT::XYRECT(class XYRECT const & __ptr64) __ptr64
614??0XYRECT@@QEAA@AEBV0@@Z
615; public: __cdecl XYRECT::XYRECT(int,int,int,int) __ptr64
616??0XYRECT@@QEAA@HHHH@Z
617; public: __cdecl XYRECT::XYRECT(struct HWND__ * __ptr64,int) __ptr64
618??0XYRECT@@QEAA@PEAUHWND__@@H@Z
619; public: __cdecl XYRECT::XYRECT(class WINDOW const * __ptr64,int) __ptr64
620??0XYRECT@@QEAA@PEBVWINDOW@@H@Z
621; public: __cdecl XYRECT::XYRECT(class XYPOINT,class XYPOINT) __ptr64
622??0XYRECT@@QEAA@VXYPOINT@@0@Z
623; public: __cdecl XYRECT::XYRECT(class XYPOINT,class XYDIMENSION) __ptr64
624??0XYRECT@@QEAA@VXYPOINT@@VXYDIMENSION@@@Z
625; public: __cdecl XYRECT::XYRECT(void) __ptr64
626??0XYRECT@@QEAA@XZ
627; public: __cdecl ACCELTABLE::~ACCELTABLE(void) __ptr64
628??1ACCELTABLE@@QEAA@XZ
629; public: __cdecl ACCOUNT_NAMES_MLE::~ACCOUNT_NAMES_MLE(void) __ptr64
630??1ACCOUNT_NAMES_MLE@@QEAA@XZ
631; public: __cdecl ALIAS_STR::~ALIAS_STR(void) __ptr64
632??1ALIAS_STR@@QEAA@XZ
633; public: __cdecl ALLOC_STR::~ALLOC_STR(void) __ptr64
634??1ALLOC_STR@@QEAA@XZ
635; protected: __cdecl APPLICATION::~APPLICATION(void) __ptr64
636??1APPLICATION@@IEAA@XZ
637; protected: __cdecl APP_WINDOW::~APP_WINDOW(void) __ptr64
638??1APP_WINDOW@@IEAA@XZ
639; public: __cdecl ARRAY_CONTROLVAL_CID_PAIR::~ARRAY_CONTROLVAL_CID_PAIR(void) __ptr64
640??1ARRAY_CONTROLVAL_CID_PAIR@@QEAA@XZ
641; public: __cdecl ARRAY_LIST_CONTROLVAL_CID_PAIR::~ARRAY_LIST_CONTROLVAL_CID_PAIR(void) __ptr64
642??1ARRAY_LIST_CONTROLVAL_CID_PAIR@@QEAA@XZ
643; public: __cdecl ARROW_BUTTON::~ARROW_BUTTON(void) __ptr64
644??1ARROW_BUTTON@@QEAA@XZ
645; public: __cdecl ASSOCHCFILE::~ASSOCHCFILE(void) __ptr64
646??1ASSOCHCFILE@@QEAA@XZ
647; public: __cdecl ASSOCHWNDDISP::~ASSOCHWNDDISP(void) __ptr64
648??1ASSOCHWNDDISP@@QEAA@XZ
649; public: __cdecl ASSOCHWNDPDLG::~ASSOCHWNDPDLG(void) __ptr64
650??1ASSOCHWNDPDLG@@QEAA@XZ
651; public: __cdecl ASSOCHWNDPWND::~ASSOCHWNDPWND(void) __ptr64
652??1ASSOCHWNDPWND@@QEAA@XZ
653; public: __cdecl ASSOCHWNDTHIS::~ASSOCHWNDTHIS(void) __ptr64
654??1ASSOCHWNDTHIS@@QEAA@XZ
655; protected: __cdecl ATOM_BASE::~ATOM_BASE(void) __ptr64
656??1ATOM_BASE@@IEAA@XZ
657; public: __cdecl AUDIT_CHECKBOXES::~AUDIT_CHECKBOXES(void) __ptr64
658??1AUDIT_CHECKBOXES@@QEAA@XZ
659; public: __cdecl AUTO_CURSOR::~AUTO_CURSOR(void) __ptr64
660??1AUTO_CURSOR@@QEAA@XZ
661; public: __cdecl BASE_ELLIPSIS::~BASE_ELLIPSIS(void) __ptr64
662??1BASE_ELLIPSIS@@QEAA@XZ
663; public: __cdecl BASE_PASSWORD_DIALOG::~BASE_PASSWORD_DIALOG(void) __ptr64
664??1BASE_PASSWORD_DIALOG@@QEAA@XZ
665; public: __cdecl BASE_SET_FOCUS_DLG::~BASE_SET_FOCUS_DLG(void) __ptr64
666??1BASE_SET_FOCUS_DLG@@QEAA@XZ
667; public: __cdecl BIT_MAP::~BIT_MAP(void) __ptr64
668??1BIT_MAP@@QEAA@XZ
669; public: __cdecl BLT_BACKGROUND_EDIT::~BLT_BACKGROUND_EDIT(void) __ptr64
670??1BLT_BACKGROUND_EDIT@@QEAA@XZ
671; public: __cdecl BLT_COMBOBOX::~BLT_COMBOBOX(void) __ptr64
672??1BLT_COMBOBOX@@QEAA@XZ
673; public: __cdecl BLT_DATE_SPIN_GROUP::~BLT_DATE_SPIN_GROUP(void) __ptr64
674??1BLT_DATE_SPIN_GROUP@@QEAA@XZ
675; public: __cdecl BLT_LISTBOX::~BLT_LISTBOX(void) __ptr64
676??1BLT_LISTBOX@@QEAA@XZ
677; public: __cdecl BLT_MASTER_TIMER::~BLT_MASTER_TIMER(void) __ptr64
678??1BLT_MASTER_TIMER@@QEAA@XZ
679; public: __cdecl BLT_SCRATCH::~BLT_SCRATCH(void) __ptr64
680??1BLT_SCRATCH@@QEAA@XZ
681; public: __cdecl BLT_TIME_SPIN_GROUP::~BLT_TIME_SPIN_GROUP(void) __ptr64
682??1BLT_TIME_SPIN_GROUP@@QEAA@XZ
683; public: __cdecl BROWSER_DOMAIN::~BROWSER_DOMAIN(void) __ptr64
684??1BROWSER_DOMAIN@@QEAA@XZ
685; public: __cdecl BROWSER_DOMAIN_CB::~BROWSER_DOMAIN_CB(void) __ptr64
686??1BROWSER_DOMAIN_CB@@QEAA@XZ
687; public: __cdecl BROWSER_DOMAIN_LB::~BROWSER_DOMAIN_LB(void) __ptr64
688??1BROWSER_DOMAIN_LB@@QEAA@XZ
689; public: virtual __cdecl BROWSER_DOMAIN_LBI::~BROWSER_DOMAIN_LBI(void) __ptr64
690??1BROWSER_DOMAIN_LBI@@UEAA@XZ
691; public: virtual __cdecl BROWSER_DOMAIN_LBI_PB::~BROWSER_DOMAIN_LBI_PB(void) __ptr64
692??1BROWSER_DOMAIN_LBI_PB@@UEAA@XZ
693; public: __cdecl BROWSER_SUBJECT::~BROWSER_SUBJECT(void) __ptr64
694??1BROWSER_SUBJECT@@QEAA@XZ
695; public: __cdecl BROWSER_SUBJECT_ITER::~BROWSER_SUBJECT_ITER(void) __ptr64
696??1BROWSER_SUBJECT_ITER@@QEAA@XZ
697; public: __cdecl BUTTON_CONTROL::~BUTTON_CONTROL(void) __ptr64
698??1BUTTON_CONTROL@@QEAA@XZ
699; public: __cdecl CANCEL_TASK_DIALOG::~CANCEL_TASK_DIALOG(void) __ptr64
700??1CANCEL_TASK_DIALOG@@QEAA@XZ
701; public: __cdecl CHANGEABLE_SPIN_ITEM::~CHANGEABLE_SPIN_ITEM(void) __ptr64
702??1CHANGEABLE_SPIN_ITEM@@QEAA@XZ
703; public: __cdecl CHECKBOX::~CHECKBOX(void) __ptr64
704??1CHECKBOX@@QEAA@XZ
705; public: __cdecl CLIENT_WINDOW::~CLIENT_WINDOW(void) __ptr64
706??1CLIENT_WINDOW@@QEAA@XZ
707; public: __cdecl COMBOBOX::~COMBOBOX(void) __ptr64
708??1COMBOBOX@@QEAA@XZ
709; public: __cdecl CONTROL_TABLE::~CONTROL_TABLE(void) __ptr64
710??1CONTROL_TABLE@@QEAA@XZ
711; public: __cdecl CONTROL_WINDOW::~CONTROL_WINDOW(void) __ptr64
712??1CONTROL_WINDOW@@QEAA@XZ
713; public: __cdecl CUSTOM_CONTROL::~CUSTOM_CONTROL(void) __ptr64
714??1CUSTOM_CONTROL@@QEAA@XZ
715; public: __cdecl DEC_SLT::~DEC_SLT(void) __ptr64
716??1DEC_SLT@@QEAA@XZ
717; public: __cdecl DEC_STR::~DEC_STR(void) __ptr64
718??1DEC_STR@@QEAA@XZ
719; public: __cdecl DIALOG_WINDOW::~DIALOG_WINDOW(void) __ptr64
720??1DIALOG_WINDOW@@QEAA@XZ
721; protected: __cdecl DISPATCHER::~DISPATCHER(void) __ptr64
722??1DISPATCHER@@IEAA@XZ
723; public: __cdecl DISPLAY_CONTEXT::~DISPLAY_CONTEXT(void) __ptr64
724??1DISPLAY_CONTEXT@@QEAA@XZ
725; public: __cdecl DISPLAY_MAP::~DISPLAY_MAP(void) __ptr64
726??1DISPLAY_MAP@@QEAA@XZ
727; public: __cdecl DLGLOAD::~DLGLOAD(void) __ptr64
728??1DLGLOAD@@QEAA@XZ
729; public: __cdecl DLIST_OF_SPIN_ITEM::~DLIST_OF_SPIN_ITEM(void) __ptr64
730??1DLIST_OF_SPIN_ITEM@@QEAA@XZ
731; public: __cdecl DMID_DTE::~DMID_DTE(void) __ptr64
732??1DMID_DTE@@QEAA@XZ
733; public: virtual __cdecl DOMAIN_FILL_THREAD::~DOMAIN_FILL_THREAD(void) __ptr64
734??1DOMAIN_FILL_THREAD@@UEAA@XZ
735; public: __cdecl EDIT_CONTROL::~EDIT_CONTROL(void) __ptr64
736??1EDIT_CONTROL@@QEAA@XZ
737; protected: __cdecl ENUM_OBJ_BASE::~ENUM_OBJ_BASE(void) __ptr64
738??1ENUM_OBJ_BASE@@IEAA@XZ
739; public: __cdecl EXPANDABLE_DIALOG::~EXPANDABLE_DIALOG(void) __ptr64
740??1EXPANDABLE_DIALOG@@QEAA@XZ
741; public: __cdecl FILE3_ENUM::~FILE3_ENUM(void) __ptr64
742??1FILE3_ENUM@@QEAA@XZ
743; public: __cdecl FILE3_ENUM_ITER::~FILE3_ENUM_ITER(void) __ptr64
744??1FILE3_ENUM_ITER@@QEAA@XZ
745; public: __cdecl FILE3_ENUM_OBJ::~FILE3_ENUM_OBJ(void) __ptr64
746??1FILE3_ENUM_OBJ@@QEAA@XZ
747; public: virtual __cdecl FOCUSDLG_DATA_THREAD::~FOCUSDLG_DATA_THREAD(void) __ptr64
748??1FOCUSDLG_DATA_THREAD@@UEAA@XZ
749; public: __cdecl FOCUS_CHECKBOX::~FOCUS_CHECKBOX(void) __ptr64
750??1FOCUS_CHECKBOX@@QEAA@XZ
751; public: __cdecl FONT::~FONT(void) __ptr64
752??1FONT@@QEAA@XZ
753; protected: __cdecl GET_FNAME_BASE_DLG::~GET_FNAME_BASE_DLG(void) __ptr64
754??1GET_FNAME_BASE_DLG@@IEAA@XZ
755; public: __cdecl GLOBAL_ATOM::~GLOBAL_ATOM(void) __ptr64
756??1GLOBAL_ATOM@@QEAA@XZ
757; public: __cdecl GRAPHICAL_BUTTON::~GRAPHICAL_BUTTON(void) __ptr64
758??1GRAPHICAL_BUTTON@@QEAA@XZ
759; public: __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::~GRAPHICAL_BUTTON_WITH_DISABLE(void) __ptr64
760??1GRAPHICAL_BUTTON_WITH_DISABLE@@QEAA@XZ
761; public: __cdecl HAW_FOR_HAWAII_INFO::~HAW_FOR_HAWAII_INFO(void) __ptr64
762??1HAW_FOR_HAWAII_INFO@@QEAA@XZ
763; public: __cdecl HEX_STR::~HEX_STR(void) __ptr64
764??1HEX_STR@@QEAA@XZ
765; public: virtual __cdecl HIER_LBI::~HIER_LBI(void) __ptr64
766??1HIER_LBI@@UEAA@XZ
767; public: __cdecl HIER_LBI_ITERATOR::~HIER_LBI_ITERATOR(void) __ptr64
768??1HIER_LBI_ITERATOR@@QEAA@XZ
769; public: __cdecl HIER_LISTBOX::~HIER_LISTBOX(void) __ptr64
770??1HIER_LISTBOX@@QEAA@XZ
771; public: __cdecl H_SPLITTER_BAR::~H_SPLITTER_BAR(void) __ptr64
772??1H_SPLITTER_BAR@@QEAA@XZ
773; public: __cdecl ICANON_SLE::~ICANON_SLE(void) __ptr64
774??1ICANON_SLE@@QEAA@XZ
775; public: __cdecl ICON_CONTROL::~ICON_CONTROL(void) __ptr64
776??1ICON_CONTROL@@QEAA@XZ
777; public: __cdecl ITER_DL_SPIN_ITEM::~ITER_DL_SPIN_ITEM(void) __ptr64
778??1ITER_DL_SPIN_ITEM@@QEAA@XZ
779; public: __cdecl ITER_SL_ASSOCHCFILE::~ITER_SL_ASSOCHCFILE(void) __ptr64
780??1ITER_SL_ASSOCHCFILE@@QEAA@XZ
781; public: __cdecl ITER_SL_CLIENTDATA::~ITER_SL_CLIENTDATA(void) __ptr64
782??1ITER_SL_CLIENTDATA@@QEAA@XZ
783; public: __cdecl ITER_SL_STRING_BITSET_PAIR::~ITER_SL_STRING_BITSET_PAIR(void) __ptr64
784??1ITER_SL_STRING_BITSET_PAIR@@QEAA@XZ
785; public: __cdecl ITER_SL_TIMER_BASE::~ITER_SL_TIMER_BASE(void) __ptr64
786??1ITER_SL_TIMER_BASE@@QEAA@XZ
787; public: __cdecl ITER_SL_UI_EXT::~ITER_SL_UI_EXT(void) __ptr64
788??1ITER_SL_UI_EXT@@QEAA@XZ
789; public: __cdecl ITER_SL_USER_BROWSER_LBI::~ITER_SL_USER_BROWSER_LBI(void) __ptr64
790??1ITER_SL_USER_BROWSER_LBI@@QEAA@XZ
791; public: __cdecl LAZY_LISTBOX::~LAZY_LISTBOX(void) __ptr64
792??1LAZY_LISTBOX@@QEAA@XZ
793; public: virtual __cdecl LBI::~LBI(void) __ptr64
794??1LBI@@UEAA@XZ
795; public: __cdecl LBITREE::~LBITREE(void) __ptr64
796??1LBITREE@@QEAA@XZ
797; public: __cdecl LBI_HEAP::~LBI_HEAP(void) __ptr64
798??1LBI_HEAP@@QEAA@XZ
799; public: __cdecl LB_COL_WIDTHS::~LB_COL_WIDTHS(void) __ptr64
800??1LB_COL_WIDTHS@@QEAA@XZ
801; public: __cdecl LISTBOX::~LISTBOX(void) __ptr64
802??1LISTBOX@@QEAA@XZ
803; protected: __cdecl LIST_CONTROL::~LIST_CONTROL(void) __ptr64
804??1LIST_CONTROL@@IEAA@XZ
805; public: __cdecl LM_FILE_2::~LM_FILE_2(void) __ptr64
806??1LM_FILE_2@@QEAA@XZ
807; public: __cdecl LM_MESSAGE::~LM_MESSAGE(void) __ptr64
808??1LM_MESSAGE@@QEAA@XZ
809; public: __cdecl LM_OLLB::~LM_OLLB(void) __ptr64
810??1LM_OLLB@@QEAA@XZ
811; public: __cdecl LOCAL_ATOM::~LOCAL_ATOM(void) __ptr64
812??1LOCAL_ATOM@@QEAA@XZ
813; public: __cdecl LOC_LM_OBJ::~LOC_LM_OBJ(void) __ptr64
814??1LOC_LM_OBJ@@QEAA@XZ
815; public: __cdecl LOGON_HOURS_CONTROL::~LOGON_HOURS_CONTROL(void) __ptr64
816??1LOGON_HOURS_CONTROL@@QEAA@XZ
817; public: __cdecl MAGIC_GROUP::~MAGIC_GROUP(void) __ptr64
818??1MAGIC_GROUP@@QEAA@XZ
819; public: __cdecl MASK_MAP::~MASK_MAP(void) __ptr64
820??1MASK_MAP@@QEAA@XZ
821; public: __cdecl MEMORY_DC::~MEMORY_DC(void) __ptr64
822??1MEMORY_DC@@QEAA@XZ
823; public: __cdecl MENU_BASE::~MENU_BASE(void) __ptr64
824??1MENU_BASE@@QEAA@XZ
825; public: __cdecl MLE::~MLE(void) __ptr64
826??1MLE@@QEAA@XZ
827; public: __cdecl MLE_FONT::~MLE_FONT(void) __ptr64
828??1MLE_FONT@@QEAA@XZ
829; public: __cdecl MLT::~MLT(void) __ptr64
830??1MLT@@QEAA@XZ
831; public: __cdecl MSGPOPUP_DIALOG::~MSGPOPUP_DIALOG(void) __ptr64
832??1MSGPOPUP_DIALOG@@QEAA@XZ
833; protected: __cdecl MSG_DIALOG_BASE::~MSG_DIALOG_BASE(void) __ptr64
834??1MSG_DIALOG_BASE@@IEAA@XZ
835; public: __cdecl NT_FIND_ACCOUNT_DIALOG::~NT_FIND_ACCOUNT_DIALOG(void) __ptr64
836??1NT_FIND_ACCOUNT_DIALOG@@QEAA@XZ
837; public: virtual __cdecl NT_GLOBALGROUP_BROWSER_DIALOG::~NT_GLOBALGROUP_BROWSER_DIALOG(void) __ptr64
838??1NT_GLOBALGROUP_BROWSER_DIALOG@@UEAA@XZ
839; public: virtual __cdecl NT_GROUP_BROWSER_DIALOG::~NT_GROUP_BROWSER_DIALOG(void) __ptr64
840??1NT_GROUP_BROWSER_DIALOG@@UEAA@XZ
841; public: __cdecl NT_GROUP_BROWSER_LB::~NT_GROUP_BROWSER_LB(void) __ptr64
842??1NT_GROUP_BROWSER_LB@@QEAA@XZ
843; public: __cdecl NT_GROUP_ENUM_ITER::~NT_GROUP_ENUM_ITER(void) __ptr64
844??1NT_GROUP_ENUM_ITER@@QEAA@XZ
845; public: __cdecl NT_GROUP_ENUM_OBJ::~NT_GROUP_ENUM_OBJ(void) __ptr64
846??1NT_GROUP_ENUM_OBJ@@QEAA@XZ
847; public: virtual __cdecl NT_LOCALGROUP_BROWSER_DIALOG::~NT_LOCALGROUP_BROWSER_DIALOG(void) __ptr64
848??1NT_LOCALGROUP_BROWSER_DIALOG@@UEAA@XZ
849; public: __cdecl NT_USER_BROWSER_DIALOG::~NT_USER_BROWSER_DIALOG(void) __ptr64
850??1NT_USER_BROWSER_DIALOG@@QEAA@XZ
851; public: virtual __cdecl OLLB_ENTRY::~OLLB_ENTRY(void) __ptr64
852??1OLLB_ENTRY@@UEAA@XZ
853; public: __cdecl OPEN_DIALOG_BASE::~OPEN_DIALOG_BASE(void) __ptr64
854??1OPEN_DIALOG_BASE@@QEAA@XZ
855; public: virtual __cdecl OPEN_LBI_BASE::~OPEN_LBI_BASE(void) __ptr64
856??1OPEN_LBI_BASE@@UEAA@XZ
857; public: __cdecl OPEN_LBOX_BASE::~OPEN_LBOX_BASE(void) __ptr64
858??1OPEN_LBOX_BASE@@QEAA@XZ
859; public: __cdecl OUTLINE_LISTBOX::~OUTLINE_LISTBOX(void) __ptr64
860??1OUTLINE_LISTBOX@@QEAA@XZ
861; public: __cdecl OWNER_WINDOW::~OWNER_WINDOW(void) __ptr64
862??1OWNER_WINDOW@@QEAA@XZ
863; public: __cdecl PAINT_DISPLAY_CONTEXT::~PAINT_DISPLAY_CONTEXT(void) __ptr64
864??1PAINT_DISPLAY_CONTEXT@@QEAA@XZ
865; public: __cdecl PASSWORD_CONTROL::~PASSWORD_CONTROL(void) __ptr64
866??1PASSWORD_CONTROL@@QEAA@XZ
867; public: __cdecl POPUP::~POPUP(void) __ptr64
868??1POPUP@@QEAA@XZ
869; public: __cdecl POPUP_MENU::~POPUP_MENU(void) __ptr64
870??1POPUP_MENU@@QEAA@XZ
871; public: __cdecl PROC_INSTANCE::~PROC_INSTANCE(void) __ptr64
872??1PROC_INSTANCE@@QEAA@XZ
873; public: __cdecl PROGRESS_CONTROL::~PROGRESS_CONTROL(void) __ptr64
874??1PROGRESS_CONTROL@@QEAA@XZ
875; public: __cdecl PROMPT_AND_CONNECT::~PROMPT_AND_CONNECT(void) __ptr64
876??1PROMPT_AND_CONNECT@@QEAA@XZ
877; public: __cdecl PROMPT_FOR_ANY_DC_DLG::~PROMPT_FOR_ANY_DC_DLG(void) __ptr64
878??1PROMPT_FOR_ANY_DC_DLG@@QEAA@XZ
879; public: __cdecl PUSH_BUTTON::~PUSH_BUTTON(void) __ptr64
880??1PUSH_BUTTON@@QEAA@XZ
881; public: __cdecl RADIO_BUTTON::~RADIO_BUTTON(void) __ptr64
882??1RADIO_BUTTON@@QEAA@XZ
883; public: __cdecl RADIO_GROUP::~RADIO_GROUP(void) __ptr64
884??1RADIO_GROUP@@QEAA@XZ
885; public: __cdecl RESOURCE_PASSWORD_DIALOG::~RESOURCE_PASSWORD_DIALOG(void) __ptr64
886??1RESOURCE_PASSWORD_DIALOG@@QEAA@XZ
887; public: __cdecl RESOURCE_STR::~RESOURCE_STR(void) __ptr64
888??1RESOURCE_STR@@QEAA@XZ
889; public: __cdecl RITER_DL_SPIN_ITEM::~RITER_DL_SPIN_ITEM(void) __ptr64
890??1RITER_DL_SPIN_ITEM@@QEAA@XZ
891; public: __cdecl SCREEN_DC::~SCREEN_DC(void) __ptr64
892??1SCREEN_DC@@QEAA@XZ
893; public: __cdecl SERVER1_ENUM::~SERVER1_ENUM(void) __ptr64
894??1SERVER1_ENUM@@QEAA@XZ
895; public: __cdecl SERVER1_ENUM_ITER::~SERVER1_ENUM_ITER(void) __ptr64
896??1SERVER1_ENUM_ITER@@QEAA@XZ
897; public: __cdecl SERVER1_ENUM_OBJ::~SERVER1_ENUM_OBJ(void) __ptr64
898??1SERVER1_ENUM_OBJ@@QEAA@XZ
899; public: __cdecl SERVER_ENUM::~SERVER_ENUM(void) __ptr64
900??1SERVER_ENUM@@QEAA@XZ
901; public: __cdecl SET_CONTROL::~SET_CONTROL(void) __ptr64
902??1SET_CONTROL@@QEAA@XZ
903; public: __cdecl SET_OF_AUDIT_CATEGORIES::~SET_OF_AUDIT_CATEGORIES(void) __ptr64
904??1SET_OF_AUDIT_CATEGORIES@@QEAA@XZ
905; public: __cdecl SLE::~SLE(void) __ptr64
906??1SLE@@QEAA@XZ
907; public: __cdecl SLE_FONT::~SLE_FONT(void) __ptr64
908??1SLE_FONT@@QEAA@XZ
909; public: __cdecl SLE_STRLB_GROUP::~SLE_STRLB_GROUP(void) __ptr64
910??1SLE_STRLB_GROUP@@QEAA@XZ
911; public: __cdecl SLIST_OF_ASSOCHCFILE::~SLIST_OF_ASSOCHCFILE(void) __ptr64
912??1SLIST_OF_ASSOCHCFILE@@QEAA@XZ
913; public: __cdecl SLIST_OF_CLIENTDATA::~SLIST_OF_CLIENTDATA(void) __ptr64
914??1SLIST_OF_CLIENTDATA@@QEAA@XZ
915; public: __cdecl SLIST_OF_OS_SID::~SLIST_OF_OS_SID(void) __ptr64
916??1SLIST_OF_OS_SID@@QEAA@XZ
917; public: __cdecl SLIST_OF_STRING_BITSET_PAIR::~SLIST_OF_STRING_BITSET_PAIR(void) __ptr64
918??1SLIST_OF_STRING_BITSET_PAIR@@QEAA@XZ
919; public: __cdecl SLIST_OF_TIMER_BASE::~SLIST_OF_TIMER_BASE(void) __ptr64
920??1SLIST_OF_TIMER_BASE@@QEAA@XZ
921; public: __cdecl SLIST_OF_UI_EXT::~SLIST_OF_UI_EXT(void) __ptr64
922??1SLIST_OF_UI_EXT@@QEAA@XZ
923; public: __cdecl SLIST_OF_ULC_API_BUFFER::~SLIST_OF_ULC_API_BUFFER(void) __ptr64
924??1SLIST_OF_ULC_API_BUFFER@@QEAA@XZ
925; public: __cdecl SLIST_OF_USER_BROWSER_LBI::~SLIST_OF_USER_BROWSER_LBI(void) __ptr64
926??1SLIST_OF_USER_BROWSER_LBI@@QEAA@XZ
927; public: __cdecl SLT::~SLT(void) __ptr64
928??1SLT@@QEAA@XZ
929; public: __cdecl SLT_ELLIPSIS::~SLT_ELLIPSIS(void) __ptr64
930??1SLT_ELLIPSIS@@QEAA@XZ
931; public: __cdecl SOLID_BRUSH::~SOLID_BRUSH(void) __ptr64
932??1SOLID_BRUSH@@QEAA@XZ
933; public: __cdecl SPIN_GROUP::~SPIN_GROUP(void) __ptr64
934??1SPIN_GROUP@@QEAA@XZ
935; public: __cdecl SPIN_ITEM::~SPIN_ITEM(void) __ptr64
936??1SPIN_ITEM@@QEAA@XZ
937; public: __cdecl SPIN_SLE_NUM::~SPIN_SLE_NUM(void) __ptr64
938??1SPIN_SLE_NUM@@QEAA@XZ
939; public: __cdecl SPIN_SLE_NUM_VALID::~SPIN_SLE_NUM_VALID(void) __ptr64
940??1SPIN_SLE_NUM_VALID@@QEAA@XZ
941; public: __cdecl SPIN_SLE_STR::~SPIN_SLE_STR(void) __ptr64
942??1SPIN_SLE_STR@@QEAA@XZ
943; public: __cdecl SPIN_SLE_VALID_SECOND::~SPIN_SLE_VALID_SECOND(void) __ptr64
944??1SPIN_SLE_VALID_SECOND@@QEAA@XZ
945; public: __cdecl SPIN_SLT_SEPARATOR::~SPIN_SLT_SEPARATOR(void) __ptr64
946??1SPIN_SLT_SEPARATOR@@QEAA@XZ
947; public: __cdecl STATE2_BUTTON_CONTROL::~STATE2_BUTTON_CONTROL(void) __ptr64
948??1STATE2_BUTTON_CONTROL@@QEAA@XZ
949; public: __cdecl STATELB::~STATELB(void) __ptr64
950??1STATELB@@QEAA@XZ
951; public: __cdecl STATELBGRP::~STATELBGRP(void) __ptr64
952??1STATELBGRP@@QEAA@XZ
953; public: __cdecl STATE_BUTTON_CONTROL::~STATE_BUTTON_CONTROL(void) __ptr64
954??1STATE_BUTTON_CONTROL@@QEAA@XZ
955; public: __cdecl STATIC_SPIN_ITEM::~STATIC_SPIN_ITEM(void) __ptr64
956??1STATIC_SPIN_ITEM@@QEAA@XZ
957; public: __cdecl STATIC_TEXT_CONTROL::~STATIC_TEXT_CONTROL(void) __ptr64
958??1STATIC_TEXT_CONTROL@@QEAA@XZ
959; public: virtual __cdecl STLBITEM::~STLBITEM(void) __ptr64
960??1STLBITEM@@UEAA@XZ
961; public: __cdecl STRING_BITSET_PAIR::~STRING_BITSET_PAIR(void) __ptr64
962??1STRING_BITSET_PAIR@@QEAA@XZ
963; public: __cdecl STRING_LIST_CONTROL::~STRING_LIST_CONTROL(void) __ptr64
964??1STRING_LIST_CONTROL@@QEAA@XZ
965; public: __cdecl SUBJECT_BITMAP_BLOCK::~SUBJECT_BITMAP_BLOCK(void) __ptr64
966??1SUBJECT_BITMAP_BLOCK@@QEAA@XZ
967; public: __cdecl SYSTEM_MENU::~SYSTEM_MENU(void) __ptr64
968??1SYSTEM_MENU@@QEAA@XZ
969; public: __cdecl TEXT_CONTROL::~TEXT_CONTROL(void) __ptr64
970??1TEXT_CONTROL@@QEAA@XZ
971; public: __cdecl TIMER_BASE::~TIMER_BASE(void) __ptr64
972??1TIMER_BASE@@QEAA@XZ
973; public: __cdecl TIMER_WINDOW::~TIMER_WINDOW(void) __ptr64
974??1TIMER_WINDOW@@QEAA@XZ
975; public: __cdecl UI_DOMAIN::~UI_DOMAIN(void) __ptr64
976??1UI_DOMAIN@@QEAA@XZ
977; public: virtual __cdecl UI_EXT::~UI_EXT(void) __ptr64
978??1UI_EXT@@UEAA@XZ
979; public: __cdecl UI_EXT_MGR::~UI_EXT_MGR(void) __ptr64
980??1UI_EXT_MGR@@QEAA@XZ
981; public: __cdecl UI_EXT_MGR_IF::~UI_EXT_MGR_IF(void) __ptr64
982??1UI_EXT_MGR_IF@@QEAA@XZ
983; public: virtual __cdecl UI_MENU_EXT::~UI_MENU_EXT(void) __ptr64
984??1UI_MENU_EXT@@UEAA@XZ
985; public: virtual __cdecl UI_MENU_EXT_MGR::~UI_MENU_EXT_MGR(void) __ptr64
986??1UI_MENU_EXT_MGR@@UEAA@XZ
987; public: __cdecl ULC_API_BUFFER::~ULC_API_BUFFER(void) __ptr64
988??1ULC_API_BUFFER@@QEAA@XZ
989; public: __cdecl USER_BROWSER_LB::~USER_BROWSER_LB(void) __ptr64
990??1USER_BROWSER_LB@@QEAA@XZ
991; public: virtual __cdecl USER_BROWSER_LBI::~USER_BROWSER_LBI(void) __ptr64
992??1USER_BROWSER_LBI@@UEAA@XZ
993; public: virtual __cdecl USER_BROWSER_LBI_CACHE::~USER_BROWSER_LBI_CACHE(void) __ptr64
994??1USER_BROWSER_LBI_CACHE@@UEAA@XZ
995; public: virtual __cdecl USER_LBI_CACHE::~USER_LBI_CACHE(void) __ptr64
996??1USER_LBI_CACHE@@UEAA@XZ
997; public: __cdecl USRLB_NT_GROUP_ENUM::~USRLB_NT_GROUP_ENUM(void) __ptr64
998??1USRLB_NT_GROUP_ENUM@@QEAA@XZ
999; public: __cdecl WIN32_EVENT::~WIN32_EVENT(void) __ptr64
1000??1WIN32_EVENT@@QEAA@XZ
1001; public: __cdecl WIN32_HANDLE::~WIN32_HANDLE(void) __ptr64
1002??1WIN32_HANDLE@@QEAA@XZ
1003; public: __cdecl WIN32_MUTEX::~WIN32_MUTEX(void) __ptr64
1004??1WIN32_MUTEX@@QEAA@XZ
1005; public: __cdecl WIN32_SEMAPHORE::~WIN32_SEMAPHORE(void) __ptr64
1006??1WIN32_SEMAPHORE@@QEAA@XZ
1007; public: __cdecl WIN32_SYNC_BASE::~WIN32_SYNC_BASE(void) __ptr64
1008??1WIN32_SYNC_BASE@@QEAA@XZ
1009; public: virtual __cdecl WIN32_THREAD::~WIN32_THREAD(void) __ptr64
1010??1WIN32_THREAD@@UEAA@XZ
1011; public: __cdecl WINDOW::~WINDOW(void) __ptr64
1012??1WINDOW@@QEAA@XZ
1013; public: __cdecl WIN_ELLIPSIS::~WIN_ELLIPSIS(void) __ptr64
1014??1WIN_ELLIPSIS@@QEAA@XZ
1015; public: class ARRAY_CONTROLVAL_CID_PAIR & __ptr64 __cdecl ARRAY_CONTROLVAL_CID_PAIR::operator=(class ARRAY_CONTROLVAL_CID_PAIR & __ptr64) __ptr64
1016??4ARRAY_CONTROLVAL_CID_PAIR@@QEAAAEAV0@AEAV0@@Z
1017; public: virtual unsigned short const * __ptr64 __cdecl GLOBAL_ATOM::operator=(unsigned short const * __ptr64) __ptr64
1018??4GLOBAL_ATOM@@UEAAPEBGPEBG@Z
1019; public: virtual unsigned short const * __ptr64 __cdecl LOCAL_ATOM::operator=(unsigned short const * __ptr64) __ptr64
1020??4LOCAL_ATOM@@UEAAPEBGPEBG@Z
1021; public: class XYRECT & __ptr64 __cdecl XYRECT::operator=(class XYRECT const & __ptr64) __ptr64
1022??4XYRECT@@QEAAAEAV0@AEBV0@@Z
1023; public: int __cdecl ASSOCHWNDDISP::operator!(void)const __ptr64
1024??7ASSOCHWNDDISP@@QEBAHXZ
1025; public: int __cdecl ASSOCHWNDPWND::operator!(void)const __ptr64
1026??7ASSOCHWNDPWND@@QEBAHXZ
1027; public: int __cdecl BASE::operator!(void)const __ptr64
1028??7BASE@@QEBAHXZ
1029; public: int __cdecl CONTROL_WINDOW::operator!(void)const __ptr64
1030??7CONTROL_WINDOW@@QEBAHXZ
1031; public: int __cdecl XYRECT::operator==(class XYRECT const & __ptr64)const __ptr64
1032??8XYRECT@@QEBAHAEBV0@@Z
1033; public: class CONTROLVAL_CID_PAIR & __ptr64 __cdecl ARRAY_CONTROLVAL_CID_PAIR::operator[](unsigned int)const __ptr64
1034??AARRAY_CONTROLVAL_CID_PAIR@@QEBAAEAVCONTROLVAL_CID_PAIR@@I@Z
1035; public: class DTE * __ptr64 & __ptr64 __cdecl DISPLAY_TABLE::operator[](unsigned int) __ptr64
1036??ADISPLAY_TABLE@@QEAAAEAPEAVDTE@@I@Z
1037; public: class RADIO_BUTTON * __ptr64 __cdecl RADIO_GROUP::operator[](unsigned int) __ptr64
1038??ARADIO_GROUP@@QEAAPEAVRADIO_BUTTON@@I@Z
1039; public: __cdecl NLS_STR::operator unsigned short const * __ptr64(void)const __ptr64
1040??BNLS_STR@@QEBAPEBGXZ
1041; public: __cdecl OS_SID::operator void * __ptr64(void)const __ptr64
1042??BOS_SID@@QEBAPEAXXZ
1043; public: __cdecl XYRECT::operator struct tagRECT const * __ptr64(void)const __ptr64
1044??BXYRECT@@QEBAPEBUtagRECT@@XZ
1045; public: class FILE3_ENUM_OBJ const * __ptr64 __cdecl FILE3_ENUM_ITER::operator()(long * __ptr64,int) __ptr64
1046??RFILE3_ENUM_ITER@@QEAAPEBVFILE3_ENUM_OBJ@@PEAJH@Z
1047; public: class HIER_LBI * __ptr64 __cdecl HIER_LBI_ITERATOR::operator()(void) __ptr64
1048??RHIER_LBI_ITERATOR@@QEAAPEAVHIER_LBI@@XZ
1049; public: class CONTROL_WINDOW * __ptr64 __cdecl ITER_CTRL::operator()(void) __ptr64
1050??RITER_CTRL@@QEAAPEAVCONTROL_WINDOW@@XZ
1051; public: unsigned short const * __ptr64 __cdecl ITER_DEVICE::operator()(void) __ptr64
1052??RITER_DEVICE@@QEAAPEBGXZ
1053; public: class NLS_STR * __ptr64 __cdecl ITER_SL_NLS_STR::operator()(void) __ptr64
1054??RITER_SL_NLS_STR@@QEAAPEAVNLS_STR@@XZ
1055; public: class NT_GROUP_ENUM_OBJ const * __ptr64 __cdecl NT_GROUP_ENUM_ITER::operator()(long * __ptr64,int) __ptr64
1056??RNT_GROUP_ENUM_ITER@@QEAAPEBVNT_GROUP_ENUM_OBJ@@PEAJH@Z
1057; public: virtual void __cdecl CHANGEABLE_SPIN_ITEM::operator+=(unsigned long) __ptr64
1058??YCHANGEABLE_SPIN_ITEM@@UEAAXK@Z
1059; public: class XYRECT & __ptr64 __cdecl XYRECT::operator+=(class XYRECT const & __ptr64) __ptr64
1060??YXYRECT@@QEAAAEAV0@AEBV0@@Z
1061; public: virtual void __cdecl CHANGEABLE_SPIN_ITEM::operator-=(unsigned long) __ptr64
1062??ZCHANGEABLE_SPIN_ITEM@@UEAAXK@Z
1063; void __cdecl `vector constructor iterator'(void * __ptr64,unsigned __int64,int,void * __ptr64 (__cdecl*)(void * __ptr64))
1064??_H@YAXPEAX_KHP6APEAX0@Z@Z
1065; void __cdecl `vector destructor iterator'(void * __ptr64,unsigned __int64,int,void (__cdecl*)(void * __ptr64))
1066??_I@YAXPEAX_KHP6AX0@Z@Z
1067; void __cdecl `vector vbase constructor iterator'(void * __ptr64,unsigned __int64,int,void * __ptr64 (__cdecl*)(void * __ptr64))
1068??_J@YAXPEAX_KHP6APEAX0@Z@Z
1069; private: void __cdecl HIER_LBI::Abandon(void) __ptr64
1070?Abandon@HIER_LBI@@AEAAXXZ
1071; private: void __cdecl HIER_LBI::AbandonAllChildren(void) __ptr64
1072?AbandonAllChildren@HIER_LBI@@AEAAXXZ
1073; protected: virtual int __cdecl MSG_DIALOG_BASE::ActionOnError(long) __ptr64
1074?ActionOnError@MSG_DIALOG_BASE@@MEAAHJ@Z
1075; private: void __cdecl MAGIC_GROUP::ActivateAssocControls(unsigned int,unsigned int,class CONTROL_VALUE * __ptr64) __ptr64
1076?ActivateAssocControls@MAGIC_GROUP@@AEAAXIIPEAVCONTROL_VALUE@@@Z
1077; public: virtual void __cdecl UI_EXT_MGR::ActivateExtension(struct HWND__ * __ptr64,unsigned long) __ptr64
1078?ActivateExtension@UI_EXT_MGR@@UEAAXPEAUHWND__@@K@Z
1079; public: int __cdecl ARRAY_LIST_CONTROLVAL_CID_PAIR::Add(class CONTROLVAL_CID_PAIR const & __ptr64) __ptr64
1080?Add@ARRAY_LIST_CONTROLVAL_CID_PAIR@@QEAAHAEBVCONTROLVAL_CID_PAIR@@@Z
1081; public: static void __cdecl HWND_DLGPTR_CACHE::Add(struct HWND__ * __ptr64,class DIALOG_WINDOW * __ptr64)
1082?Add@HWND_DLGPTR_CACHE@@SAXPEAUHWND__@@PEAVDIALOG_WINDOW@@@Z
1083; public: long __cdecl MASK_MAP::Add(class BITFIELD const & __ptr64,class NLS_STR const & __ptr64,int) __ptr64
1084?Add@MASK_MAP@@QEAAJAEBVBITFIELD@@AEBVNLS_STR@@H@Z
1085; public: long __cdecl MASK_MAP::Add(struct US_IDS_PAIRS * __ptr64 const,unsigned short) __ptr64
1086?Add@MASK_MAP@@QEAAJQEAUUS_IDS_PAIRS@@G@Z
1087; public: long __cdecl SLIST_OF_ASSOCHCFILE::Add(class ASSOCHCFILE const * __ptr64) __ptr64
1088?Add@SLIST_OF_ASSOCHCFILE@@QEAAJPEBVASSOCHCFILE@@@Z
1089; public: long __cdecl SLIST_OF_CLIENTDATA::Add(struct CLIENTDATA const * __ptr64) __ptr64
1090?Add@SLIST_OF_CLIENTDATA@@QEAAJPEBUCLIENTDATA@@@Z
1091; public: long __cdecl SLIST_OF_NLS_STR::Add(class NLS_STR const * __ptr64) __ptr64
1092?Add@SLIST_OF_NLS_STR@@QEAAJPEBVNLS_STR@@@Z
1093; public: long __cdecl SLIST_OF_OS_SID::Add(class OS_SID const * __ptr64) __ptr64
1094?Add@SLIST_OF_OS_SID@@QEAAJPEBVOS_SID@@@Z
1095; public: long __cdecl SLIST_OF_TIMER_BASE::Add(class TIMER_BASE const * __ptr64) __ptr64
1096?Add@SLIST_OF_TIMER_BASE@@QEAAJPEBVTIMER_BASE@@@Z
1097; public: long __cdecl SLIST_OF_USER_BROWSER_LBI::Add(class USER_BROWSER_LBI const * __ptr64) __ptr64
1098?Add@SLIST_OF_USER_BROWSER_LBI@@QEAAJPEBVUSER_BROWSER_LBI@@@Z
1099; protected: long __cdecl USER_BROWSER_LBI_CACHE::AddAliases(class ADMIN_AUTHORITY * __ptr64,unsigned short const * __ptr64,int * __ptr64) __ptr64
1100?AddAliases@USER_BROWSER_LBI_CACHE@@IEAAJPEAVADMIN_AUTHORITY@@PEBGPEAH@Z
1101; protected: long __cdecl USER_BROWSER_LBI_CACHE::AddAliases(class SAM_DOMAIN * __ptr64,unsigned short const * __ptr64,int * __ptr64) __ptr64
1102?AddAliases@USER_BROWSER_LBI_CACHE@@IEAAJPEAVSAM_DOMAIN@@PEBGPEAH@Z
1103; public: long __cdecl MAGIC_GROUP::AddAssociation(unsigned int,class CONTROL_VALUE * __ptr64) __ptr64
1104?AddAssociation@MAGIC_GROUP@@QEAAJIPEAVCONTROL_VALUE@@@Z
1105; public: long __cdecl SPIN_GROUP::AddAssociation(class SPIN_ITEM * __ptr64) __ptr64
1106?AddAssociation@SPIN_GROUP@@QEAAJPEAVSPIN_ITEM@@@Z
1107; protected: virtual long __cdecl HIER_LISTBOX::AddChildren(class HIER_LBI * __ptr64) __ptr64
1108?AddChildren@HIER_LISTBOX@@MEAAJPEAVHIER_LBI@@@Z
1109; public: static long __cdecl BLTIMP::AddClient(struct HINSTANCE__ * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int)
1110?AddClient@BLTIMP@@SAJPEAUHINSTANCE__@@IIII@Z
1111; public: int __cdecl CONTROL_TABLE::AddControl(class CONTROL_WINDOW * __ptr64) __ptr64
1112?AddControl@CONTROL_TABLE@@QEAAHPEAVCONTROL_WINDOW@@@Z
1113; private: int __cdecl OWNER_WINDOW::AddControl(class CONTROL_WINDOW * __ptr64) __ptr64
1114?AddControl@OWNER_WINDOW@@AEAAHPEAVCONTROL_WINDOW@@@Z
1115; public: int __cdecl OUTLINE_LISTBOX::AddDomain(unsigned short const * __ptr64,unsigned short const * __ptr64,int) __ptr64
1116?AddDomain@OUTLINE_LISTBOX@@QEAAHPEBG0H@Z
1117; protected: long __cdecl USER_BROWSER_LBI_CACHE::AddGroups(class ADMIN_AUTHORITY * __ptr64,unsigned short const * __ptr64,int * __ptr64) __ptr64
1118?AddGroups@USER_BROWSER_LBI_CACHE@@IEAAJPEAVADMIN_AUTHORITY@@PEBGPEAH@Z
1119; public: static long __cdecl BLTIMP::AddHelpAssoc(struct HINSTANCE__ * __ptr64,long,unsigned long,unsigned long)
1120?AddHelpAssoc@BLTIMP@@SAJPEAUHINSTANCE__@@JKK@Z
1121; public: int __cdecl ARRAY_LIST_CONTROLVAL_CID_PAIR::AddIdemp(class CONTROLVAL_CID_PAIR const & __ptr64) __ptr64
1122?AddIdemp@ARRAY_LIST_CONTROLVAL_CID_PAIR@@QEAAHAEBVCONTROLVAL_CID_PAIR@@@Z
1123; public: int __cdecl BLT_LISTBOX::AddItem(class LBI * __ptr64) __ptr64
1124?AddItem@BLT_LISTBOX@@QEAAHPEAVLBI@@@Z
1125; public: long __cdecl BROWSER_DOMAIN_CB::AddItem(class BROWSER_DOMAIN * __ptr64) __ptr64
1126?AddItem@BROWSER_DOMAIN_CB@@QEAAJPEAVBROWSER_DOMAIN@@@Z
1127; public: int __cdecl HIER_LISTBOX::AddItem(class HIER_LBI * __ptr64,class HIER_LBI * __ptr64,int) __ptr64
1128?AddItem@HIER_LISTBOX@@QEAAHPEAVHIER_LBI@@0H@Z
1129; public: long __cdecl LBI_HEAP::AddItem(class LBI * __ptr64) __ptr64
1130?AddItem@LBI_HEAP@@QEAAJPEAVLBI@@@Z
1131; protected: int __cdecl OUTLINE_LISTBOX::AddItem(enum OUTLINE_LB_LEVEL,int,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1132?AddItem@OUTLINE_LISTBOX@@IEAAHW4OUTLINE_LB_LEVEL@@HPEBG11@Z
1133; public: int __cdecl STRING_LIST_CONTROL::AddItem(unsigned short const * __ptr64) __ptr64
1134?AddItem@STRING_LIST_CONTROL@@QEAAHPEBG@Z
1135; public: int __cdecl USER_BROWSER_LB::AddItem(class LBI * __ptr64) __ptr64
1136?AddItem@USER_BROWSER_LB@@QEAAHPEAVLBI@@@Z
1137; public: virtual int __cdecl USER_BROWSER_LBI_CACHE::AddItem(class LBI * __ptr64) __ptr64
1138?AddItem@USER_BROWSER_LBI_CACHE@@UEAAHPEAVLBI@@@Z
1139; public: virtual int __cdecl USER_LBI_CACHE::AddItem(class LBI * __ptr64) __ptr64
1140?AddItem@USER_LBI_CACHE@@UEAAHPEAVLBI@@@Z
1141; protected: int __cdecl LIST_CONTROL::AddItemData(void * __ptr64) __ptr64
1142?AddItemData@LIST_CONTROL@@IEAAHPEAX@Z
1143; public: int __cdecl BLT_LISTBOX::AddItemIdemp(class LBI * __ptr64) __ptr64
1144?AddItemIdemp@BLT_LISTBOX@@QEAAHPEAVLBI@@@Z
1145; public: int __cdecl STRING_LIST_CONTROL::AddItemIdemp(class NLS_STR const & __ptr64) __ptr64
1146?AddItemIdemp@STRING_LIST_CONTROL@@QEAAHAEBVNLS_STR@@@Z
1147; public: int __cdecl STRING_LIST_CONTROL::AddItemIdemp(unsigned short const * __ptr64) __ptr64
1148?AddItemIdemp@STRING_LIST_CONTROL@@QEAAHPEBG@Z
1149; public: int __cdecl LBITREE::AddNode(class HIER_LBI * __ptr64,class HIER_LBI * __ptr64,int) __ptr64
1150?AddNode@LBITREE@@QEAAHPEAVHIER_LBI@@0H@Z
1151; public: long __cdecl NT_USER_BROWSER_DIALOG::AddSelectedUserBrowserLBIs(class USER_BROWSER_LB * __ptr64,int,int) __ptr64
1152?AddSelectedUserBrowserLBIs@NT_USER_BROWSER_DIALOG@@QEAAJPEAVUSER_BROWSER_LB@@HH@Z
1153; public: int __cdecl OUTLINE_LISTBOX::AddServer(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1154?AddServer@OUTLINE_LISTBOX@@QEAAHPEBG00@Z
1155; public: void __cdecl HIER_LISTBOX::AddSortedItems(class HIER_LBI * __ptr64 * __ptr64,int,class HIER_LBI * __ptr64,int) __ptr64
1156?AddSortedItems@HIER_LISTBOX@@QEAAXPEAPEAVHIER_LBI@@HPEAV2@H@Z
1157; public: long __cdecl USER_BROWSER_LBI_CACHE::AddUsers(class ADMIN_AUTHORITY * __ptr64,unsigned short const * __ptr64,int,int * __ptr64) __ptr64
1158?AddUsers@USER_BROWSER_LBI_CACHE@@QEAAJPEAVADMIN_AUTHORITY@@PEBGHPEAH@Z
1159; protected: long __cdecl USER_BROWSER_LBI_CACHE::AddWellKnownSids(class ADMIN_AUTHORITY * __ptr64,unsigned long,int * __ptr64) __ptr64
1160?AddWellKnownSids@USER_BROWSER_LBI_CACHE@@IEAAJPEAVADMIN_AUTHORITY@@KPEAH@Z
1161; public: void __cdecl LBI_HEAP::Adjust(void) __ptr64
1162?Adjust@LBI_HEAP@@QEAAXXZ
1163; public: class XYRECT & __ptr64 __cdecl XYRECT::AdjustBottom(int) __ptr64
1164?AdjustBottom@XYRECT@@QEAAAEAV1@H@Z
1165; private: void __cdecl HIER_LBI::AdjustDescendantCount(int) __ptr64
1166?AdjustDescendantCount@HIER_LBI@@AEAAXH@Z
1167; private: void __cdecl LBI_HEAP::AdjustDownwards(int) __ptr64
1168?AdjustDownwards@LBI_HEAP@@AEAAXH@Z
1169; public: class XYRECT & __ptr64 __cdecl XYRECT::AdjustLeft(int) __ptr64
1170?AdjustLeft@XYRECT@@QEAAAEAV1@H@Z
1171; public: class XYRECT & __ptr64 __cdecl XYRECT::AdjustRight(int) __ptr64
1172?AdjustRight@XYRECT@@QEAAAEAV1@H@Z
1173; public: class XYRECT & __ptr64 __cdecl XYRECT::AdjustTop(int) __ptr64
1174?AdjustTop@XYRECT@@QEAAAEAV1@H@Z
1175; private: void __cdecl LBI_HEAP::AdjustUpwards(int) __ptr64
1176?AdjustUpwards@LBI_HEAP@@AEAAXH@Z
1177; private: void __cdecl HIER_LBI::Adopt(class HIER_LBI * __ptr64,int) __ptr64
1178?Adopt@HIER_LBI@@AEAAXPEAV1@H@Z
1179; public: void __cdecl PROGRESS_CONTROL::Advance(int) __ptr64
1180?Advance@PROGRESS_CONTROL@@QEAAXH@Z
1181; protected: virtual void __cdecl CONTROL_GROUP::AfterGroupActions(void) __ptr64
1182?AfterGroupActions@CONTROL_GROUP@@MEAAXXZ
1183; public: void __cdecl USER_BROWSER_LBI::AliasUnicodeStrToDisplayName(struct _UNICODE_STRING * __ptr64) __ptr64
1184?AliasUnicodeStrToDisplayName@USER_BROWSER_LBI@@QEAAXPEAU_UNICODE_STRING@@@Z
1185; public: long __cdecl DLIST_OF_SPIN_ITEM::Append(class SPIN_ITEM * __ptr64 const) __ptr64
1186?Append@DLIST_OF_SPIN_ITEM@@QEAAJQEAVSPIN_ITEM@@@Z
1187; public: long __cdecl MENU_BASE::Append(unsigned short const * __ptr64,unsigned int,unsigned int)const __ptr64
1188?Append@MENU_BASE@@QEBAJPEBGII@Z
1189; public: long __cdecl MENU_BASE::Append(unsigned short const * __ptr64,struct HMENU__ * __ptr64,unsigned int)const __ptr64
1190?Append@MENU_BASE@@QEBAJPEBGPEAUHMENU__@@I@Z
1191; public: long __cdecl SLIST_OF_NLS_STR::Append(class NLS_STR const * __ptr64) __ptr64
1192?Append@SLIST_OF_NLS_STR@@QEAAJPEBVNLS_STR@@@Z
1193; public: long __cdecl SLIST_OF_STRING_BITSET_PAIR::Append(class STRING_BITSET_PAIR const * __ptr64) __ptr64
1194?Append@SLIST_OF_STRING_BITSET_PAIR@@QEAAJPEBVSTRING_BITSET_PAIR@@@Z
1195; public: long __cdecl SLIST_OF_UI_EXT::Append(class UI_EXT const * __ptr64) __ptr64
1196?Append@SLIST_OF_UI_EXT@@QEAAJPEBVUI_EXT@@@Z
1197; public: long __cdecl SLIST_OF_ULC_API_BUFFER::Append(class ULC_API_BUFFER const * __ptr64) __ptr64
1198?Append@SLIST_OF_ULC_API_BUFFER@@QEAAJPEBVULC_API_BUFFER@@@Z
1199; public: long __cdecl SLIST_OF_USER_BROWSER_LBI::Append(class USER_BROWSER_LBI const * __ptr64) __ptr64
1200?Append@SLIST_OF_USER_BROWSER_LBI@@QEAAJPEBVUSER_BROWSER_LBI@@@Z
1201; public: virtual long __cdecl DM_DTE::AppendDataTo(class NLS_STR * __ptr64)const __ptr64
1202?AppendDataTo@DM_DTE@@UEBAJPEAVNLS_STR@@@Z
1203; public: virtual long __cdecl STR_DTE::AppendDataTo(class NLS_STR * __ptr64)const __ptr64
1204?AppendDataTo@STR_DTE@@UEBAJPEAVNLS_STR@@@Z
1205; public: long __cdecl MENU_BASE::AppendSeparator(void)const __ptr64
1206?AppendSeparator@MENU_BASE@@QEBAJXZ
1207; public: long __cdecl SET_OF_AUDIT_CATEGORIES::ApplyPermissionsToCheckBoxes(class BITFIELD * __ptr64,class BITFIELD * __ptr64) __ptr64
1208?ApplyPermissionsToCheckBoxes@SET_OF_AUDIT_CATEGORIES@@QEAAJPEAVBITFIELD@@0@Z
1209; public: int __cdecl NT_USER_BROWSER_DIALOG::AreUsersShown(void)const __ptr64
1210?AreUsersShown@NT_USER_BROWSER_DIALOG@@QEBAHXZ
1211; protected: unsigned short const * __ptr64 __cdecl ATOM_BASE::AssignAux(unsigned short const * __ptr64) __ptr64
1212?AssignAux@ATOM_BASE@@IEAAPEBGPEBG@Z
1213; public: long __cdecl POPUP_MENU::Attach(class PWND2HWND const & __ptr64) __ptr64
1214?Attach@POPUP_MENU@@QEAAJAEBVPWND2HWND@@@Z
1215; long __cdecl BLTDoubleChar(class NLS_STR * __ptr64,unsigned short)
1216?BLTDoubleChar@@YAJPEAVNLS_STR@@G@Z
1217; protected: virtual long __cdecl SET_CONTROL::BLTMoveItems(class BLT_LISTBOX * __ptr64,class BLT_LISTBOX * __ptr64) __ptr64
1218?BLTMoveItems@SET_CONTROL@@MEAAJPEAVBLT_LISTBOX@@0@Z
1219; int __cdecl BLTPoints2LogUnits(int)
1220?BLTPoints2LogUnits@@YAHH@Z
1221; private: void __cdecl LOGON_HOURS_CONTROL::Beep(void)const __ptr64
1222?Beep@LOGON_HOURS_CONTROL@@AEBAXXZ
1223; protected: long __cdecl UI_MENU_EXT::BiasMenuIds(unsigned long) __ptr64
1224?BiasMenuIds@UI_MENU_EXT@@IEAAJK@Z
1225; public: int __cdecl USER_LBI_CACHE::BinarySearch(struct _DOMAIN_DISPLAY_USER * __ptr64) __ptr64
1226?BinarySearch@USER_LBI_CACHE@@QEAAHPEAU_DOMAIN_DISPLAY_USER@@@Z
1227; public: int __cdecl USER_LBI_CACHE::BinarySearch(class LBI * __ptr64) __ptr64
1228?BinarySearch@USER_LBI_CACHE@@QEAAHPEAVLBI@@@Z
1229; public: int __cdecl DEVICE_CONTEXT::BitBlt(class XYPOINT const & __ptr64,class XYDIMENSION,class DEVICE_CONTEXT const & __ptr64,class XYPOINT const & __ptr64,unsigned long) __ptr64
1230?BitBlt@DEVICE_CONTEXT@@QEAAHAEBVXYPOINT@@VXYDIMENSION@@AEBV1@0K@Z
1231; public: int __cdecl DEVICE_CONTEXT::BitBlt(int,int,int,int,class DEVICE_CONTEXT const & __ptr64,int,int,unsigned long) __ptr64
1232?BitBlt@DEVICE_CONTEXT@@QEAAHHHHHAEBV1@HHK@Z
1233; public: long __cdecl MASK_MAP::BitsToString(class BITFIELD const & __ptr64,class NLS_STR * __ptr64,int,unsigned int * __ptr64) __ptr64
1234?BitsToString@MASK_MAP@@QEAAJAEBVBITFIELD@@PEAVNLS_STR@@HPEAI@Z
1235; protected: long __cdecl USER_BROWSER_LBI_CACHE::BuildAndAddLBI(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64,void * __ptr64 const,enum UI_SystemSid,enum _SID_NAME_USE,unsigned long) __ptr64
1236?BuildAndAddLBI@USER_BROWSER_LBI_CACHE@@IEAAJPEBG0000QEAXW4UI_SystemSid@@W4_SID_NAME_USE@@K@Z
1237; protected: long __cdecl ACCOUNT_NAMES_MLE::BuildNameListFromStrList(class NLS_STR * __ptr64,class STRLIST * __ptr64) __ptr64
1238?BuildNameListFromStrList@ACCOUNT_NAMES_MLE@@IEAAJPEAVNLS_STR@@PEAVSTRLIST@@@Z
1239; protected: static __int64 __cdecl BLT_COMBOBOX::CBSubclassProc(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64)
1240?CBSubclassProc@BLT_COMBOBOX@@KA_JPEAUHWND__@@I_K_J@Z
1241; protected: virtual int __cdecl BLT_LISTBOX::CD_Char(unsigned short,unsigned short) __ptr64
1242?CD_Char@BLT_LISTBOX@@MEAAHGG@Z
1243; protected: virtual int __cdecl BLT_LISTBOX_HAW::CD_Char(unsigned short,unsigned short) __ptr64
1244?CD_Char@BLT_LISTBOX_HAW@@MEAAHGG@Z
1245; protected: virtual int __cdecl CONTROL_WINDOW::CD_Char(unsigned short,unsigned short) __ptr64
1246?CD_Char@CONTROL_WINDOW@@MEAAHGG@Z
1247; protected: virtual int __cdecl LM_OLLB::CD_Char(unsigned short,unsigned short) __ptr64
1248?CD_Char@LM_OLLB@@MEAAHGG@Z
1249; protected: virtual int __cdecl OUTLINE_LISTBOX::CD_Char(unsigned short,unsigned short) __ptr64
1250?CD_Char@OUTLINE_LISTBOX@@MEAAHGG@Z
1251; protected: virtual int __cdecl STATELB::CD_Char(unsigned short,unsigned short) __ptr64
1252?CD_Char@STATELB@@MEAAHGG@Z
1253; protected: virtual int __cdecl USER_BROWSER_LB::CD_Char(unsigned short,unsigned short) __ptr64
1254?CD_Char@USER_BROWSER_LB@@MEAAHGG@Z
1255; protected: int __cdecl BLT_LISTBOX::CD_Char_HAWforHawaii(unsigned short,unsigned short,class HAW_FOR_HAWAII_INFO * __ptr64) __ptr64
1256?CD_Char_HAWforHawaii@BLT_LISTBOX@@IEAAHGGPEAVHAW_FOR_HAWAII_INFO@@@Z
1257; protected: int __cdecl USER_BROWSER_LB::CD_Char_HAWforHawaii(unsigned short,unsigned short,class HAW_FOR_HAWAII_INFO * __ptr64) __ptr64
1258?CD_Char_HAWforHawaii@USER_BROWSER_LB@@IEAAHGGPEAVHAW_FOR_HAWAII_INFO@@@Z
1259; protected: virtual int __cdecl CONTROL_WINDOW::CD_Draw(struct tagDRAWITEMSTRUCT * __ptr64) __ptr64
1260?CD_Draw@CONTROL_WINDOW@@MEAAHPEAUtagDRAWITEMSTRUCT@@@Z
1261; protected: virtual int __cdecl GRAPHICAL_BUTTON::CD_Draw(struct tagDRAWITEMSTRUCT * __ptr64) __ptr64
1262?CD_Draw@GRAPHICAL_BUTTON@@MEAAHPEAUtagDRAWITEMSTRUCT@@@Z
1263; protected: virtual int __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::CD_Draw(struct tagDRAWITEMSTRUCT * __ptr64) __ptr64
1264?CD_Draw@GRAPHICAL_BUTTON_WITH_DISABLE@@MEAAHPEAUtagDRAWITEMSTRUCT@@@Z
1265; protected: virtual int __cdecl LISTBOX::CD_Draw(struct tagDRAWITEMSTRUCT * __ptr64) __ptr64
1266?CD_Draw@LISTBOX@@MEAAHPEAUtagDRAWITEMSTRUCT@@@Z
1267; protected: virtual long __cdecl BLT_LISTBOX::CD_Guiltt(int,class NLS_STR * __ptr64) __ptr64
1268?CD_Guiltt@BLT_LISTBOX@@MEAAJHPEAVNLS_STR@@@Z
1269; protected: virtual long __cdecl CONTROL_WINDOW::CD_Guiltt(int,class NLS_STR * __ptr64) __ptr64
1270?CD_Guiltt@CONTROL_WINDOW@@MEAAJHPEAVNLS_STR@@@Z
1271; protected: virtual long __cdecl LAZY_LISTBOX::CD_Guiltt(int,class NLS_STR * __ptr64) __ptr64
1272?CD_Guiltt@LAZY_LISTBOX@@MEAAJHPEAVNLS_STR@@@Z
1273; protected: virtual int __cdecl BLT_LISTBOX::CD_Measure(struct tagMEASUREITEMSTRUCT * __ptr64) __ptr64
1274?CD_Measure@BLT_LISTBOX@@MEAAHPEAUtagMEASUREITEMSTRUCT@@@Z
1275; protected: virtual int __cdecl CONTROL_WINDOW::CD_Measure(struct tagMEASUREITEMSTRUCT * __ptr64) __ptr64
1276?CD_Measure@CONTROL_WINDOW@@MEAAHPEAUtagMEASUREITEMSTRUCT@@@Z
1277; protected: virtual int __cdecl CONTROL_WINDOW::CD_VKey(unsigned short,unsigned short) __ptr64
1278?CD_VKey@CONTROL_WINDOW@@MEAAHGG@Z
1279; protected: virtual int __cdecl LISTBOX::CD_VKey(unsigned short,unsigned short) __ptr64
1280?CD_VKey@LISTBOX@@MEAAHGG@Z
1281; protected: virtual int __cdecl STATELB::CD_VKey(unsigned short,unsigned short) __ptr64
1282?CD_VKey@STATELB@@MEAAHGG@Z
1283; protected: virtual int __cdecl USER_BROWSER_LB::CD_VKey(unsigned short,unsigned short) __ptr64
1284?CD_VKey@USER_BROWSER_LB@@MEAAHGG@Z
1285; protected: void __cdecl CONTROL_GROUP::CVRestoreValue(class CONTROL_VALUE * __ptr64,int) __ptr64
1286?CVRestoreValue@CONTROL_GROUP@@IEAAXPEAVCONTROL_VALUE@@H@Z
1287; public: void __cdecl CUSTOM_CONTROL::CVRestoreValue(int) __ptr64
1288?CVRestoreValue@CUSTOM_CONTROL@@QEAAXH@Z
1289; protected: void __cdecl CONTROL_GROUP::CVSaveValue(class CONTROL_VALUE * __ptr64,int) __ptr64
1290?CVSaveValue@CONTROL_GROUP@@IEAAXPEAVCONTROL_VALUE@@H@Z
1291; public: void __cdecl CUSTOM_CONTROL::CVSaveValue(int) __ptr64
1292?CVSaveValue@CUSTOM_CONTROL@@QEAAXH@Z
1293; private: struct HICON__ * __ptr64 __cdecl SET_CONTROL::CalcAppropriateCursor(class LISTBOX * __ptr64,class LISTBOX * __ptr64,class XYPOINT const & __ptr64)const __ptr64
1294?CalcAppropriateCursor@SET_CONTROL@@AEBAPEAUHICON__@@PEAVLISTBOX@@0AEBVXYPOINT@@@Z
1295; private: static unsigned int __cdecl METALLIC_STR_DTE::CalcBottomTextMargin(void)
1296?CalcBottomTextMargin@METALLIC_STR_DTE@@CAIXZ
1297; private: int __cdecl LOGON_HOURS_CONTROL::CalcButtonFromPoint(class XYPOINT)const __ptr64
1298?CalcButtonFromPoint@LOGON_HOURS_CONTROL@@AEBAHVXYPOINT@@@Z
1299; public: static long __cdecl DISPLAY_TABLE::CalcColumnWidths(unsigned int * __ptr64,unsigned int,class OWNER_WINDOW * __ptr64,unsigned int,int)
1300?CalcColumnWidths@DISPLAY_TABLE@@SAJPEAIIPEAVOWNER_WINDOW@@IH@Z
1301; private: static int __cdecl POPUP::CalcDefButton(unsigned int,unsigned int)
1302?CalcDefButton@POPUP@@CAHII@Z
1303; protected: static int __cdecl OWNER_WINDOW::CalcFixedCDMeasure(struct HWND__ * __ptr64,struct tagMEASUREITEMSTRUCT * __ptr64)
1304?CalcFixedCDMeasure@OWNER_WINDOW@@KAHPEAUHWND__@@PEAUtagMEASUREITEMSTRUCT@@@Z
1305; protected: static int __cdecl WINDOW::CalcFixedHeight(struct HWND__ * __ptr64,unsigned int * __ptr64)
1306?CalcFixedHeight@WINDOW@@KAHPEAUHWND__@@PEAI@Z
1307; private: void __cdecl LOGON_HOURS_CONTROL::CalcGridRect(class XYRECT * __ptr64)const __ptr64
1308?CalcGridRect@LOGON_HOURS_CONTROL@@AEBAXPEAVXYRECT@@@Z
1309; public: virtual unsigned int __cdecl LBI::CalcHeight(unsigned int) __ptr64
1310?CalcHeight@LBI@@UEAAII@Z
1311; public: int __cdecl XYRECT::CalcHeight(void)const __ptr64
1312?CalcHeight@XYRECT@@QEBAHXZ
1313; public: static unsigned short const * __ptr64 __cdecl BLT::CalcHelpFileHC(unsigned long)
1314?CalcHelpFileHC@BLT@@SAPEBGK@Z
1315; public: static struct HINSTANCE__ * __ptr64 __cdecl BLT::CalcHmodRsrc(class IDRESOURCE const & __ptr64)
1316?CalcHmodRsrc@BLT@@SAPEAUHINSTANCE__@@AEBVIDRESOURCE@@@Z
1317; public: static struct HINSTANCE__ * __ptr64 __cdecl BLT::CalcHmodString(long)
1318?CalcHmodString@BLT@@SAPEAUHINSTANCE__@@J@Z
1319; public: class XYRECT & __ptr64 __cdecl XYRECT::CalcIntersect(class XYRECT const & __ptr64,class XYRECT const & __ptr64) __ptr64
1320?CalcIntersect@XYRECT@@QEAAAEAV1@AEBV1@0@Z
1321; private: void __cdecl LOGON_HOURS_CONTROL::CalcRectForCell(class XYRECT * __ptr64,int)const __ptr64
1322?CalcRectForCell@LOGON_HOURS_CONTROL@@AEBAXPEAVXYRECT@@H@Z
1323; private: void __cdecl LOGON_HOURS_CONTROL::CalcRectForCorner(class XYRECT * __ptr64)const __ptr64
1324?CalcRectForCorner@LOGON_HOURS_CONTROL@@AEBAXPEAVXYRECT@@@Z
1325; private: void __cdecl LOGON_HOURS_CONTROL::CalcRectForDay(class XYRECT * __ptr64,int)const __ptr64
1326?CalcRectForDay@LOGON_HOURS_CONTROL@@AEBAXPEAVXYRECT@@H@Z
1327; private: void __cdecl LOGON_HOURS_CONTROL::CalcRectForHour(class XYRECT * __ptr64,int)const __ptr64
1328?CalcRectForHour@LOGON_HOURS_CONTROL@@AEBAXPEAVXYRECT@@H@Z
1329; public: long __cdecl BLT_LISTBOX::CalcSingleLineHeight(void) __ptr64
1330?CalcSingleLineHeight@BLT_LISTBOX@@QEAAJXZ
1331; private: long __cdecl LOGON_HOURS_CONTROL::CalcSizes(class XYDIMENSION) __ptr64
1332?CalcSizes@LOGON_HOURS_CONTROL@@AEAAJVXYDIMENSION@@@Z
1333; private: static unsigned int __cdecl METALLIC_STR_DTE::CalcTopTextMargin(void)
1334?CalcTopTextMargin@METALLIC_STR_DTE@@CAIXZ
1335; public: class XYRECT & __ptr64 __cdecl XYRECT::CalcUnion(class XYRECT const & __ptr64,class XYRECT const & __ptr64) __ptr64
1336?CalcUnion@XYRECT@@QEAAAEAV1@AEBV1@0@Z
1337; public: int __cdecl XYRECT::CalcWidth(void)const __ptr64
1338?CalcWidth@XYRECT@@QEBAHXZ
1339; public: long __cdecl ACCOUNT_NAMES_MLE::CanonicalizeNames(unsigned short const * __ptr64,class STRLIST * __ptr64) __ptr64
1340?CanonicalizeNames@ACCOUNT_NAMES_MLE@@QEAAJPEBGPEAVSTRLIST@@@Z
1341; public: void __cdecl CLIENT_WINDOW::CaptureMouse(void) __ptr64
1342?CaptureMouse@CLIENT_WINDOW@@QEAAXXZ
1343; public: void __cdecl DISPATCHER::CaptureMouse(void) __ptr64
1344?CaptureMouse@DISPATCHER@@QEAAXXZ
1345; public: void __cdecl WINDOW::Center(struct HWND__ * __ptr64) __ptr64
1346?Center@WINDOW@@QEAAXPEAUHWND__@@@Z
1347; public: int __cdecl SPIN_GROUP::ChangeFieldValue(unsigned short,int) __ptr64
1348?ChangeFieldValue@SPIN_GROUP@@QEAAHGH@Z
1349; public: void __cdecl AUDIT_CHECKBOXES::CheckFailed(int) __ptr64
1350?CheckFailed@AUDIT_CHECKBOXES@@QEAAXH@Z
1351; public: unsigned int __cdecl MENU_BASE::CheckItem(unsigned int,int,unsigned int)const __ptr64
1352?CheckItem@MENU_BASE@@QEBAIIHI@Z
1353; protected: long __cdecl ACCOUNT_NAMES_MLE::CheckLookedUpNames(unsigned short * __ptr64 * __ptr64,class LSA_TRANSLATED_SID_MEM * __ptr64,class STRLIST * __ptr64,class NLS_STR * __ptr64,unsigned short const * __ptr64,long * __ptr64) __ptr64
1354?CheckLookedUpNames@ACCOUNT_NAMES_MLE@@IEAAJPEAPEAGPEAVLSA_TRANSLATED_SID_MEM@@PEAVSTRLIST@@PEAVNLS_STR@@PEBGPEAJ@Z
1355; public: static long __cdecl ACCOUNT_NAMES_MLE::CheckNameType(enum _SID_NAME_USE,unsigned long)
1356?CheckNameType@ACCOUNT_NAMES_MLE@@SAJW4_SID_NAME_USE@@K@Z
1357; public: int __cdecl CHANGEABLE_SPIN_ITEM::CheckRange(unsigned long)const __ptr64
1358?CheckRange@CHANGEABLE_SPIN_ITEM@@QEBAHK@Z
1359; public: void __cdecl AUDIT_CHECKBOXES::CheckSuccess(int) __ptr64
1360?CheckSuccess@AUDIT_CHECKBOXES@@QEAAXH@Z
1361; public: virtual int __cdecl CHANGEABLE_SPIN_ITEM::CheckValid(void) __ptr64
1362?CheckValid@CHANGEABLE_SPIN_ITEM@@UEAAHXZ
1363; public: virtual int __cdecl SPIN_SLE_NUM_VALID::CheckValid(void) __ptr64
1364?CheckValid@SPIN_SLE_NUM_VALID@@UEAAHXZ
1365; public: class CONTROL_WINDOW * __ptr64 __cdecl CONTROL_TABLE::CidToCtrlPtr(unsigned int)const __ptr64
1366?CidToCtrlPtr@CONTROL_TABLE@@QEBAPEAVCONTROL_WINDOW@@I@Z
1367; protected: class CONTROL_WINDOW * __ptr64 __cdecl OWNER_WINDOW::CidToCtrlPtr(unsigned int)const __ptr64
1368?CidToCtrlPtr@OWNER_WINDOW@@IEBAPEAVCONTROL_WINDOW@@I@Z
1369; public: void __cdecl CONTROL_WINDOW::ClaimFocus(void) __ptr64
1370?ClaimFocus@CONTROL_WINDOW@@QEAAXXZ
1371; public: void __cdecl ARRAY_LIST_CONTROLVAL_CID_PAIR::Clear(void) __ptr64
1372?Clear@ARRAY_LIST_CONTROLVAL_CID_PAIR@@QEAAXXZ
1373; public: void __cdecl DLIST_OF_SPIN_ITEM::Clear(void) __ptr64
1374?Clear@DLIST_OF_SPIN_ITEM@@QEAAXXZ
1375; public: void __cdecl SLIST_OF_ASSOCHCFILE::Clear(void) __ptr64
1376?Clear@SLIST_OF_ASSOCHCFILE@@QEAAXXZ
1377; public: void __cdecl SLIST_OF_CLIENTDATA::Clear(void) __ptr64
1378?Clear@SLIST_OF_CLIENTDATA@@QEAAXXZ
1379; public: void __cdecl SLIST_OF_OS_SID::Clear(void) __ptr64
1380?Clear@SLIST_OF_OS_SID@@QEAAXXZ
1381; public: void __cdecl SLIST_OF_STRING_BITSET_PAIR::Clear(void) __ptr64
1382?Clear@SLIST_OF_STRING_BITSET_PAIR@@QEAAXXZ
1383; public: void __cdecl SLIST_OF_TIMER_BASE::Clear(void) __ptr64
1384?Clear@SLIST_OF_TIMER_BASE@@QEAAXXZ
1385; public: void __cdecl SLIST_OF_UI_EXT::Clear(void) __ptr64
1386?Clear@SLIST_OF_UI_EXT@@QEAAXXZ
1387; public: void __cdecl SLIST_OF_ULC_API_BUFFER::Clear(void) __ptr64
1388?Clear@SLIST_OF_ULC_API_BUFFER@@QEAAXXZ
1389; public: void __cdecl SLIST_OF_USER_BROWSER_LBI::Clear(void) __ptr64
1390?Clear@SLIST_OF_USER_BROWSER_LBI@@QEAAXXZ
1391; private: void __cdecl H_SPLITTER_BAR::ClearDragBar(void) __ptr64
1392?ClearDragBar@H_SPLITTER_BAR@@AEAAXXZ
1393; public: static unsigned long __cdecl BLT_MASTER_TIMER::ClearMasterTimerHotkey(void)
1394?ClearMasterTimerHotkey@BLT_MASTER_TIMER@@SAKXZ
1395; public: void __cdecl SLT_ELLIPSIS::ClearText(void) __ptr64
1396?ClearText@SLT_ELLIPSIS@@QEAAXXZ
1397; public: void __cdecl WINDOW::ClearText(void) __ptr64
1398?ClearText@WINDOW@@QEAAXXZ
1399; public: void __cdecl XYPOINT::ClientToScreen(struct HWND__ * __ptr64) __ptr64
1400?ClientToScreen@XYPOINT@@QEAAXPEAUHWND__@@@Z
1401; public: void __cdecl APP_WINDOW::Close(void) __ptr64
1402?Close@APP_WINDOW@@QEAAXXZ
1403; public: long __cdecl WIN32_HANDLE::Close(void) __ptr64
1404?Close@WIN32_HANDLE@@QEAAJXZ
1405; protected: void __cdecl OPEN_DIALOG_BASE::CloseFile(class OPEN_LBI_BASE * __ptr64) __ptr64
1406?CloseFile@OPEN_DIALOG_BASE@@IEAAXPEAVOPEN_LBI_BASE@@@Z
1407; protected: static int __cdecl USER_LBI_CACHE::CmpUniStrs(struct _UNICODE_STRING const * __ptr64,struct _UNICODE_STRING const * __ptr64)
1408?CmpUniStrs@USER_LBI_CACHE@@KAHPEBU_UNICODE_STRING@@0@Z
1409; public: long __cdecl LM_OLLB::CollapseDomain(int) __ptr64
1410?CollapseDomain@LM_OLLB@@QEAAJH@Z
1411; public: long __cdecl LM_OLLB::CollapseDomain(void) __ptr64
1412?CollapseDomain@LM_OLLB@@QEAAJXZ
1413; public: void __cdecl HIER_LISTBOX::CollapseItem(int,int) __ptr64
1414?CollapseItem@HIER_LISTBOX@@QEAAXHH@Z
1415; public: void __cdecl HIER_LISTBOX::CollapseItem(class HIER_LBI * __ptr64,int) __ptr64
1416?CollapseItem@HIER_LISTBOX@@QEAAXPEAVHIER_LBI@@H@Z
1417; int __cdecl CommDlgHookProc(struct HWND__ * __ptr64,unsigned short,unsigned __int64,__int64)
1418?CommDlgHookProc@@YAHPEAUHWND__@@G_K_J@Z
1419; public: unsigned __int64 __cdecl WINDOW::Command(unsigned int,unsigned __int64,__int64)const __ptr64
1420?Command@WINDOW@@QEBA_KI_K_J@Z
1421; public: virtual int __cdecl BROWSER_DOMAIN_LBI::Compare(class LBI const * __ptr64)const __ptr64
1422?Compare@BROWSER_DOMAIN_LBI@@UEBAHPEBVLBI@@@Z
1423; public: virtual int __cdecl BROWSER_DOMAIN_LBI_PB::Compare(class LBI const * __ptr64)const __ptr64
1424?Compare@BROWSER_DOMAIN_LBI_PB@@UEBAHPEBVLBI@@@Z
1425; public: int __cdecl CONTROLVAL_CID_PAIR::Compare(class CONTROLVAL_CID_PAIR const * __ptr64)const __ptr64
1426?Compare@CONTROLVAL_CID_PAIR@@QEBAHPEBV1@@Z
1427; public: virtual int __cdecl LBI::Compare(class LBI const * __ptr64)const __ptr64
1428?Compare@LBI@@UEBAHPEBV1@@Z
1429; public: virtual int __cdecl OLLB_ENTRY::Compare(class LBI const * __ptr64)const __ptr64
1430?Compare@OLLB_ENTRY@@UEBAHPEBVLBI@@@Z
1431; protected: virtual int __cdecl STLBITEM::Compare(class LBI const * __ptr64)const __ptr64
1432?Compare@STLBITEM@@MEBAHPEBVLBI@@@Z
1433; public: virtual int __cdecl USER_BROWSER_LBI::Compare(class LBI const * __ptr64)const __ptr64
1434?Compare@USER_BROWSER_LBI@@UEBAHPEBVLBI@@@Z
1435; protected: virtual int __cdecl USER_BROWSER_LBI_CACHE::Compare(class LBI const * __ptr64,class LBI const * __ptr64)const __ptr64
1436?Compare@USER_BROWSER_LBI_CACHE@@MEBAHPEBVLBI@@0@Z
1437; protected: virtual int __cdecl USER_BROWSER_LBI_CACHE::Compare(class LBI const * __ptr64,struct _DOMAIN_DISPLAY_USER const * __ptr64)const __ptr64
1438?Compare@USER_BROWSER_LBI_CACHE@@MEBAHPEBVLBI@@PEBU_DOMAIN_DISPLAY_USER@@@Z
1439; public: int __cdecl USER_BROWSER_LBI::CompareAux(class LBI const * __ptr64)const __ptr64
1440?CompareAux@USER_BROWSER_LBI@@QEBAHPEBVLBI@@@Z
1441; protected: static int __cdecl USER_BROWSER_LBI_CACHE::CompareCacheLBIs(struct _ULC_ENTRY_BASE const * __ptr64,struct _ULC_ENTRY_BASE const * __ptr64)
1442?CompareCacheLBIs@USER_BROWSER_LBI_CACHE@@KAHPEBU_ULC_ENTRY_BASE@@0@Z
1443; protected: static int __cdecl USER_LBI_CACHE::CompareLogonNames(void const * __ptr64,void const * __ptr64)
1444?CompareLogonNames@USER_LBI_CACHE@@KAHPEBX0@Z
1445; public: virtual int __cdecl LBI::Compare_HAWforHawaii(class NLS_STR const & __ptr64)const __ptr64
1446?Compare_HAWforHawaii@LBI@@UEBAHAEBVNLS_STR@@@Z
1447; public: virtual int __cdecl USER_BROWSER_LBI::Compare_HAWforHawaii(class NLS_STR const & __ptr64)const __ptr64
1448?Compare_HAWforHawaii@USER_BROWSER_LBI@@UEBAHAEBVNLS_STR@@@Z
1449; int __cdecl ComparepLBIs(class USER_BROWSER_LBI * __ptr64 const * __ptr64,class USER_BROWSER_LBI * __ptr64 const * __ptr64)
1450?ComparepLBIs@@YAHPEBQEAVUSER_BROWSER_LBI@@0@Z
1451; public: long __cdecl PROMPT_AND_CONNECT::Connect(void) __ptr64
1452?Connect@PROMPT_AND_CONNECT@@QEAAJXZ
1453; public: int __cdecl XYRECT::ContainsXY(class XYPOINT)const __ptr64
1454?ContainsXY@XYRECT@@QEBAHVXYPOINT@@@Z
1455; protected: long __cdecl SLT_ELLIPSIS::ConvertAndSetStr(void) __ptr64
1456?ConvertAndSetStr@SLT_ELLIPSIS@@IEAAJXZ
1457; public: void __cdecl XYRECT::ConvertClientToScreen(struct HWND__ * __ptr64) __ptr64
1458?ConvertClientToScreen@XYRECT@@QEAAXPEAUHWND__@@@Z
1459; public: void __cdecl XYRECT::ConvertScreenToClient(struct HWND__ * __ptr64) __ptr64
1460?ConvertScreenToClient@XYRECT@@QEAAXPEAUHWND__@@@Z
1461; protected: virtual class LBI * __ptr64 __cdecl USER_BROWSER_LBI_CACHE::CreateLBI(struct _DOMAIN_DISPLAY_USER const * __ptr64) __ptr64
1462?CreateLBI@USER_BROWSER_LBI_CACHE@@MEAAPEAVLBI@@PEBU_DOMAIN_DISPLAY_USER@@@Z
1463; public: long __cdecl ACCOUNT_NAMES_MLE::CreateLBIListFromNames(unsigned short const * __ptr64,unsigned short const * __ptr64,class SLIST_OF_USER_BROWSER_LBI * __ptr64,class SLIST_OF_USER_BROWSER_LBI * __ptr64,long * __ptr64,class NLS_STR * __ptr64) __ptr64
1464?CreateLBIListFromNames@ACCOUNT_NAMES_MLE@@QEAAJPEBG0PEAVSLIST_OF_USER_BROWSER_LBI@@1PEAJPEAVNLS_STR@@@Z
1465; long __cdecl CreateLBIsFromSids(void * __ptr64 const * __ptr64,unsigned long,void * __ptr64 const,class LSA_POLICY * __ptr64,unsigned short const * __ptr64,class USER_BROWSER_LB * __ptr64,class SLIST_OF_USER_BROWSER_LBI * __ptr64)
1466?CreateLBIsFromSids@@YAJPEBQEAXKQEAXPEAVLSA_POLICY@@PEBGPEAVUSER_BROWSER_LB@@PEAVSLIST_OF_USER_BROWSER_LBI@@@Z
1467; private: void __cdecl GRAPHICAL_BUTTON::CtAux(unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64) __ptr64
1468?CtAux@GRAPHICAL_BUTTON@@AEAAXPEBG00@Z
1469; private: void __cdecl H_SPLITTER_BAR::CtAux(void) __ptr64
1470?CtAux@H_SPLITTER_BAR@@AEAAXXZ
1471; private: long __cdecl POPUP_MENU::CtAux(struct HMENU__ * __ptr64) __ptr64
1472?CtAux@POPUP_MENU@@AEAAJPEAUHMENU__@@@Z
1473; private: void __cdecl PROGRESS_CONTROL::CtAux(void) __ptr64
1474?CtAux@PROGRESS_CONTROL@@AEAAXXZ
1475; public: long __cdecl MENU_BASE::Delete(unsigned int,unsigned int)const __ptr64
1476?Delete@MENU_BASE@@QEBAJII@Z
1477; public: void __cdecl LIST_CONTROL::DeleteAllItems(void) __ptr64
1478?DeleteAllItems@LIST_CONTROL@@QEAAXXZ
1479; protected: void __cdecl WIN32_THREAD::DeleteAndExit(unsigned int) __ptr64
1480?DeleteAndExit@WIN32_THREAD@@IEAAXI@Z
1481; public: void __cdecl HIER_LISTBOX::DeleteChildren(class HIER_LBI * __ptr64) __ptr64
1482?DeleteChildren@HIER_LISTBOX@@QEAAXPEAVHIER_LBI@@@Z
1483; public: void __cdecl DEVICE_COMBO::DeleteCurrentDeviceName(void) __ptr64
1484?DeleteCurrentDeviceName@DEVICE_COMBO@@QEAAXXZ
1485; public: int __cdecl HIER_LISTBOX::DeleteItem(int,int) __ptr64
1486?DeleteItem@HIER_LISTBOX@@QEAAHHH@Z
1487; public: int __cdecl LIST_CONTROL::DeleteItem(int) __ptr64
1488?DeleteItem@LIST_CONTROL@@QEAAHH@Z
1489; public: static void __cdecl BLT::DeregisterHelpFile(struct HINSTANCE__ * __ptr64,unsigned long)
1490?DeregisterHelpFile@BLT@@SAXPEAUHINSTANCE__@@K@Z
1491; public: long __cdecl POPUP_MENU::Destroy(void) __ptr64
1492?Destroy@POPUP_MENU@@QEAAJXZ
1493; protected: void __cdecl DIALOG_WINDOW::Dismiss(unsigned int) __ptr64
1494?Dismiss@DIALOG_WINDOW@@IEAAXI@Z
1495; protected: void __cdecl DIALOG_WINDOW::DismissMsg(long,unsigned int) __ptr64
1496?DismissMsg@DIALOG_WINDOW@@IEAAXJI@Z
1497; protected: virtual int __cdecl DISPATCHER::Dispatch(class EVENT const & __ptr64,unsigned long * __ptr64) __ptr64
1498?Dispatch@DISPATCHER@@MEAAHAEBVEVENT@@PEAK@Z
1499; protected: virtual int __cdecl H_SPLITTER_BAR::Dispatch(class EVENT const & __ptr64,unsigned long * __ptr64) __ptr64
1500?Dispatch@H_SPLITTER_BAR@@MEAAHAEBVEVENT@@PEAK@Z
1501; protected: virtual int __cdecl LB_COLUMN_HEADER::Dispatch(class EVENT const & __ptr64,unsigned long * __ptr64) __ptr64
1502?Dispatch@LB_COLUMN_HEADER@@MEAAHAEBVEVENT@@PEAK@Z
1503; protected: virtual __int64 __cdecl APP_WINDOW::DispatchMessageW(class EVENT const & __ptr64) __ptr64
1504?DispatchMessageW@APP_WINDOW@@MEAA_JAEBVEVENT@@@Z
1505; protected: virtual __int64 __cdecl CLIENT_WINDOW::DispatchMessageW(class EVENT const & __ptr64) __ptr64
1506?DispatchMessageW@CLIENT_WINDOW@@MEAA_JAEBVEVENT@@@Z
1507; protected: virtual void __cdecl PROC_TIMER::DispatchTimer(void) __ptr64
1508?DispatchTimer@PROC_TIMER@@MEAAXXZ
1509; protected: virtual void __cdecl TIMER::DispatchTimer(void) __ptr64
1510?DispatchTimer@TIMER@@MEAAXXZ
1511; protected: virtual void __cdecl TIMER_BASE::DispatchTimer(void) __ptr64
1512?DispatchTimer@TIMER_BASE@@MEAAXXZ
1513; protected: virtual void __cdecl WINDOW_TIMER::DispatchTimer(void) __ptr64
1514?DispatchTimer@WINDOW_TIMER@@MEAAXXZ
1515; private: void __cdecl APPLICATION::DisplayCtError(long) __ptr64
1516?DisplayCtError@APPLICATION@@AEAAXJ@Z
1517; protected: virtual void __cdecl SPIN_SLE_NUM_VALID::DisplayErrorMsg(void) __ptr64
1518?DisplayErrorMsg@SPIN_SLE_NUM_VALID@@MEAAXXZ
1519; unsigned int __cdecl DisplayGenericError(class OWNINGWND const & __ptr64,long,long,unsigned short const * __ptr64,unsigned short const * __ptr64,enum MSG_SEVERITY)
1520?DisplayGenericError@@YAIAEBVOWNINGWND@@JJPEBG1W4MSG_SEVERITY@@@Z
1521; unsigned int __cdecl DisplayGenericError(class OWNINGWND const & __ptr64,long,long,unsigned short const * __ptr64,enum MSG_SEVERITY)
1522?DisplayGenericError@@YAIAEBVOWNINGWND@@JJPEBGW4MSG_SEVERITY@@@Z
1523; private: void __cdecl SPIN_SLE_NUM::DisplayNum(unsigned long) __ptr64
1524?DisplayNum@SPIN_SLE_NUM@@AEAAXK@Z
1525; public: static __int64 __cdecl DIALOG_WINDOW::DlgProc(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64)
1526?DlgProc@DIALOG_WINDOW@@SA_JPEAUHWND__@@I_K_J@Z
1527; public: virtual long __cdecl SET_CONTROL::DoAdd(void) __ptr64
1528?DoAdd@SET_CONTROL@@UEAAJXZ
1529; private: long __cdecl SET_CONTROL::DoAddOrRemove(class LISTBOX * __ptr64,class LISTBOX * __ptr64) __ptr64
1530?DoAddOrRemove@SET_CONTROL@@AEAAJPEAVLISTBOX@@0@Z
1531; public: int __cdecl SPIN_GROUP::DoArrowCommand(unsigned int,unsigned short) __ptr64
1532?DoArrowCommand@SPIN_GROUP@@QEAAHIG@Z
1533; public: void __cdecl LOGON_HOURS_CONTROL::DoBanButton(void) __ptr64
1534?DoBanButton@LOGON_HOURS_CONTROL@@QEAAXXZ
1535; private: void __cdecl LOGON_HOURS_CONTROL::DoButtonClick(int) __ptr64
1536?DoButtonClick@LOGON_HOURS_CONTROL@@AEAAXH@Z
1537; private: void __cdecl LOGON_HOURS_CONTROL::DoButtonDownVisuals(void) __ptr64
1538?DoButtonDownVisuals@LOGON_HOURS_CONTROL@@AEAAXXZ
1539; private: void __cdecl LOGON_HOURS_CONTROL::DoButtonUpVisuals(int) __ptr64
1540?DoButtonUpVisuals@LOGON_HOURS_CONTROL@@AEAAXH@Z
1541; public: int __cdecl DISPATCHER::DoChar(class CHAR_EVENT const & __ptr64) __ptr64
1542?DoChar@DISPATCHER@@QEAAHAEBVCHAR_EVENT@@@Z
1543; public: int __cdecl SPIN_GROUP::DoChar(class CHAR_EVENT const & __ptr64) __ptr64
1544?DoChar@SPIN_GROUP@@QEAAHAEBVCHAR_EVENT@@@Z
1545; public: int __cdecl SPIN_GROUP::DoNewFocus(class SPIN_ITEM * __ptr64) __ptr64
1546?DoNewFocus@SPIN_GROUP@@QEAAHPEAVSPIN_ITEM@@@Z
1547; protected: virtual long __cdecl CANCEL_TASK_DIALOG::DoOneItem(unsigned __int64,int * __ptr64,int * __ptr64,long * __ptr64) __ptr64
1548?DoOneItem@CANCEL_TASK_DIALOG@@MEAAJ_KPEAH1PEAJ@Z
1549; public: void __cdecl LOGON_HOURS_CONTROL::DoPermitButton(void) __ptr64
1550?DoPermitButton@LOGON_HOURS_CONTROL@@QEAAXXZ
1551; public: virtual long __cdecl SET_CONTROL::DoRemove(void) __ptr64
1552?DoRemove@SET_CONTROL@@UEAAJXZ
1553; protected: long __cdecl NT_FIND_ACCOUNT_DIALOG::DoSearch(void) __ptr64
1554?DoSearch@NT_FIND_ACCOUNT_DIALOG@@IEAAJXZ
1555; public: int __cdecl DISPATCHER::DoUserMessage(class EVENT const & __ptr64) __ptr64
1556?DoUserMessage@DISPATCHER@@QEAAHAEBVEVENT@@@Z
1557; private: int __cdecl LOGON_HOURS_CONTROL::DrawAllButtons(class PAINT_DISPLAY_CONTEXT & __ptr64)const __ptr64
1558?DrawAllButtons@LOGON_HOURS_CONTROL@@AEBAHAEAVPAINT_DISPLAY_CONTEXT@@@Z
1559; private: int __cdecl LOGON_HOURS_CONTROL::DrawBackground(class PAINT_DISPLAY_CONTEXT & __ptr64)const __ptr64
1560?DrawBackground@LOGON_HOURS_CONTROL@@AEBAHAEAVPAINT_DISPLAY_CONTEXT@@@Z
1561; private: void __cdecl LOGON_HOURS_CONTROL::DrawCurrentSelection(class DISPLAY_CONTEXT const & __ptr64)const __ptr64
1562?DrawCurrentSelection@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@@Z
1563; private: void __cdecl LOGON_HOURS_CONTROL::DrawFocusOnCell(class DISPLAY_CONTEXT const & __ptr64,int)const __ptr64
1564?DrawFocusOnCell@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@H@Z
1565; private: void __cdecl LOGON_HOURS_CONTROL::DrawFocusOnCornerButton(class DISPLAY_CONTEXT const & __ptr64)const __ptr64
1566?DrawFocusOnCornerButton@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@@Z
1567; private: void __cdecl LOGON_HOURS_CONTROL::DrawFocusOnDayButton(class DISPLAY_CONTEXT const & __ptr64,int)const __ptr64
1568?DrawFocusOnDayButton@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@H@Z
1569; private: void __cdecl LOGON_HOURS_CONTROL::DrawFocusOnHourButton(class DISPLAY_CONTEXT const & __ptr64,int)const __ptr64
1570?DrawFocusOnHourButton@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@H@Z
1571; public: void __cdecl DEVICE_CONTEXT::DrawFocusRect(struct tagRECT const * __ptr64)const __ptr64
1572?DrawFocusRect@DEVICE_CONTEXT@@QEBAXPEBUtagRECT@@@Z
1573; protected: void __cdecl FOCUS_CHECKBOX::DrawFocusRect(class DEVICE_CONTEXT * __ptr64,struct tagRECT * __ptr64,int) __ptr64
1574?DrawFocusRect@FOCUS_CHECKBOX@@IEAAXPEAVDEVICE_CONTEXT@@PEAUtagRECT@@H@Z
1575; private: void __cdecl LOGON_HOURS_CONTROL::DrawFocusSomewhere(class DISPLAY_CONTEXT const & __ptr64,int)const __ptr64
1576?DrawFocusSomewhere@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@H@Z
1577; private: int __cdecl LOGON_HOURS_CONTROL::DrawGridSetting(class PAINT_DISPLAY_CONTEXT & __ptr64)const __ptr64
1578?DrawGridSetting@LOGON_HOURS_CONTROL@@AEBAHAEAVPAINT_DISPLAY_CONTEXT@@@Z
1579; private: int __cdecl LOGON_HOURS_CONTROL::DrawGridWires(class PAINT_DISPLAY_CONTEXT & __ptr64)const __ptr64
1580?DrawGridWires@LOGON_HOURS_CONTROL@@AEBAHAEAVPAINT_DISPLAY_CONTEXT@@@Z
1581; private: int __cdecl APP_WINDOW::DrawIcon(void) __ptr64
1582?DrawIcon@APP_WINDOW@@AEAAHXZ
1583; public: long __cdecl APP_WINDOW::DrawMenuBar(void)const __ptr64
1584?DrawMenuBar@APP_WINDOW@@QEBAJXZ
1585; private: void __cdecl LOGON_HOURS_CONTROL::DrawOneCornerButton(class PAINT_DISPLAY_CONTEXT & __ptr64,class XYRECT const & __ptr64,int,struct HBRUSH__ * __ptr64,struct HPEN__ * __ptr64,struct HPEN__ * __ptr64)const __ptr64
1586?DrawOneCornerButton@LOGON_HOURS_CONTROL@@AEBAXAEAVPAINT_DISPLAY_CONTEXT@@AEBVXYRECT@@HPEAUHBRUSH__@@PEAUHPEN__@@3@Z
1587; private: int __cdecl LOGON_HOURS_CONTROL::DrawOneDayBar(class PAINT_DISPLAY_CONTEXT & __ptr64,int,int,int,struct HBRUSH__ * __ptr64)const __ptr64
1588?DrawOneDayBar@LOGON_HOURS_CONTROL@@AEBAHAEAVPAINT_DISPLAY_CONTEXT@@HHHPEAUHBRUSH__@@@Z
1589; private: void __cdecl LOGON_HOURS_CONTROL::DrawOneFlatButton(class PAINT_DISPLAY_CONTEXT & __ptr64,class XYRECT const & __ptr64,int,struct HBRUSH__ * __ptr64,struct HPEN__ * __ptr64,struct HPEN__ * __ptr64)const __ptr64
1590?DrawOneFlatButton@LOGON_HOURS_CONTROL@@AEBAXAEAVPAINT_DISPLAY_CONTEXT@@AEBVXYRECT@@HPEAUHBRUSH__@@PEAUHPEN__@@3@Z
1591; public: void __cdecl DEVICE_CONTEXT::DrawRect(struct tagRECT const * __ptr64)const __ptr64
1592?DrawRect@DEVICE_CONTEXT@@QEBAXPEBUtagRECT@@@Z
1593; private: void __cdecl LOGON_HOURS_CONTROL::DrawSelectionOnCell(class DISPLAY_CONTEXT const & __ptr64,int)const __ptr64
1594?DrawSelectionOnCell@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@H@Z
1595; private: void __cdecl LOGON_HOURS_CONTROL::DrawSelectionOnCells(class DISPLAY_CONTEXT const & __ptr64,int,int)const __ptr64
1596?DrawSelectionOnCells@LOGON_HOURS_CONTROL@@AEBAXAEBVDISPLAY_CONTEXT@@HH@Z
1597; public: int __cdecl DEVICE_CONTEXT::DrawTextW(class NLS_STR const & __ptr64,struct tagRECT * __ptr64,unsigned int) __ptr64
1598?DrawTextW@DEVICE_CONTEXT@@QEAAHAEBVNLS_STR@@PEAUtagRECT@@I@Z
1599; private: int __cdecl POPUP::Emergency(void)const __ptr64
1600?Emergency@POPUP@@AEBAHXZ
1601; public: void __cdecl AUDIT_CHECKBOXES::Enable(int,int) __ptr64
1602?Enable@AUDIT_CHECKBOXES@@QEAAXHH@Z
1603; public: void __cdecl MAGIC_GROUP::Enable(int) __ptr64
1604?Enable@MAGIC_GROUP@@QEAAXH@Z
1605; public: void __cdecl MENUITEM::Enable(int) __ptr64
1606?Enable@MENUITEM@@QEAAXH@Z
1607; public: void __cdecl RADIO_GROUP::Enable(int) __ptr64
1608?Enable@RADIO_GROUP@@QEAAXH@Z
1609; public: void __cdecl SET_OF_AUDIT_CATEGORIES::Enable(int,int) __ptr64
1610?Enable@SET_OF_AUDIT_CATEGORIES@@QEAAXHH@Z
1611; public: void __cdecl TIMER_BASE::Enable(int) __ptr64
1612?Enable@TIMER_BASE@@QEAAXH@Z
1613; public: void __cdecl WINDOW::Enable(int) __ptr64
1614?Enable@WINDOW@@QEAAXH@Z
1615; protected: void __cdecl NT_USER_BROWSER_DIALOG::EnableBrowsing(int) __ptr64
1616?EnableBrowsing@NT_USER_BROWSER_DIALOG@@IEAAXH@Z
1617; protected: void __cdecl SET_CONTROL::EnableButtons(void) __ptr64
1618?EnableButtons@SET_CONTROL@@IEAAXXZ
1619; public: unsigned int __cdecl MENU_BASE::EnableItem(unsigned int,int,unsigned int)const __ptr64
1620?EnableItem@MENU_BASE@@QEBAIIHI@Z
1621; public: void __cdecl SET_CONTROL::EnableMoves(int) __ptr64
1622?EnableMoves@SET_CONTROL@@QEAAXH@Z
1623; public: void __cdecl TRISTATE::EnableThirdState(int) __ptr64
1624?EnableThirdState@TRISTATE@@QEAAXH@Z
1625; public: static long __cdecl BLTIMP::EnterBLTCritSect(void)
1626?EnterBLTCritSect@BLTIMP@@SAJXZ
1627; public: static long __cdecl BLTIMP::EnterResourceCritSect(void)
1628?EnterResourceCritSect@BLTIMP@@SAJXZ
1629; public: long __cdecl MASK_MAP::EnumBits(class BITFIELD * __ptr64,int * __ptr64,int * __ptr64,int) __ptr64
1630?EnumBits@MASK_MAP@@QEAAJPEAVBITFIELD@@PEAH1H@Z
1631; public: long __cdecl MASK_MAP::EnumStrings(class NLS_STR * __ptr64,int * __ptr64,int * __ptr64,int) __ptr64
1632?EnumStrings@MASK_MAP@@QEAAJPEAVNLS_STR@@PEAH1H@Z
1633; protected: void __cdecl FOCUS_CHECKBOX::EraseFocusRect(class DEVICE_CONTEXT * __ptr64,struct tagRECT * __ptr64) __ptr64
1634?EraseFocusRect@FOCUS_CHECKBOX@@IEAAXPEAVDEVICE_CONTEXT@@PEAUtagRECT@@@Z
1635; private: void __cdecl LOGON_HOURS_CONTROL::EraseSelection(class DISPLAY_CONTEXT const & __ptr64) __ptr64
1636?EraseSelection@LOGON_HOURS_CONTROL@@AEAAXAEBVDISPLAY_CONTEXT@@@Z
1637; protected: void __cdecl WIN32_THREAD::Exit(unsigned int) __ptr64
1638?Exit@WIN32_THREAD@@IEAAXI@Z
1639; public: long __cdecl DOMAIN_FILL_THREAD::ExitThread(void) __ptr64
1640?ExitThread@DOMAIN_FILL_THREAD@@QEAAJXZ
1641; public: long __cdecl FOCUSDLG_DATA_THREAD::ExitThread(void) __ptr64
1642?ExitThread@FOCUSDLG_DATA_THREAD@@QEAAJXZ
1643; private: int __cdecl HIER_LISTBOX::ExpandChildren(int,class HIER_LBI * __ptr64) __ptr64
1644?ExpandChildren@HIER_LISTBOX@@AEAAHHPEAVHIER_LBI@@@Z
1645; public: long __cdecl LM_OLLB::ExpandDomain(int) __ptr64
1646?ExpandDomain@LM_OLLB@@QEAAJH@Z
1647; public: long __cdecl LM_OLLB::ExpandDomain(void) __ptr64
1648?ExpandDomain@LM_OLLB@@QEAAJXZ
1649; public: long __cdecl HIER_LISTBOX::ExpandItem(int) __ptr64
1650?ExpandItem@HIER_LISTBOX@@QEAAJH@Z
1651; public: long __cdecl HIER_LISTBOX::ExpandItem(class HIER_LBI * __ptr64) __ptr64
1652?ExpandItem@HIER_LISTBOX@@QEAAJPEAVHIER_LBI@@@Z
1653; public: int __cdecl DEVICE_CONTEXT::ExtTextOutW(int,int,unsigned int,struct tagRECT const * __ptr64,class NLS_STR const & __ptr64,int * __ptr64) __ptr64
1654?ExtTextOutW@DEVICE_CONTEXT@@QEAAHHHIPEBUtagRECT@@AEBVNLS_STR@@PEAH@Z
1655; public: int __cdecl DEVICE_CONTEXT::ExtTextOutW(int,int,unsigned int,struct tagRECT const * __ptr64,unsigned short const * __ptr64,int,int * __ptr64) __ptr64
1656?ExtTextOutW@DEVICE_CONTEXT@@QEAAHHHIPEBUtagRECT@@PEBGHPEAH@Z
1657; public: long __cdecl NT_GROUP_BROWSER_LB::Fill(void * __ptr64 const * __ptr64,unsigned long,class SAM_DOMAIN const * __ptr64,class LSA_POLICY * __ptr64,unsigned short const * __ptr64) __ptr64
1658?Fill@NT_GROUP_BROWSER_LB@@QEAAJPEBQEAXKPEBVSAM_DOMAIN@@PEAVLSA_POLICY@@PEBG@Z
1659; public: long __cdecl OPEN_LBOX_BASE::Fill(void) __ptr64
1660?Fill@OPEN_LBOX_BASE@@QEAAJXZ
1661; public: long __cdecl USER_BROWSER_LBI_CACHE::Fill(class ADMIN_AUTHORITY * __ptr64,unsigned short const * __ptr64,unsigned long,int,int,int * __ptr64) __ptr64
1662?Fill@USER_BROWSER_LBI_CACHE@@QEAAJPEAVADMIN_AUTHORITY@@PEBGKHHPEAH@Z
1663; public: void __cdecl LM_OLLB::FillAllInfo(class BROWSE_DOMAIN_ENUM * __ptr64,class SERVER1_ENUM * __ptr64,unsigned short const * __ptr64) __ptr64
1664?FillAllInfo@LM_OLLB@@QEAAXPEAVBROWSE_DOMAIN_ENUM@@PEAVSERVER1_ENUM@@PEBG@Z
1665; private: void __cdecl MSGPOPUP_DIALOG::FillButtonArray(unsigned int,int * __ptr64,int * __ptr64) __ptr64
1666?FillButtonArray@MSGPOPUP_DIALOG@@AEAAXIPEAH0@Z
1667; private: long __cdecl DEVICE_COMBO::FillDevices(void) __ptr64
1668?FillDevices@DEVICE_COMBO@@AEAAJXZ
1669; private: long __cdecl LM_OLLB::FillDomains(unsigned long,unsigned short const * __ptr64) __ptr64
1670?FillDomains@LM_OLLB@@AEAAJKPEBG@Z
1671; public: long __cdecl NT_GROUP_BROWSER_LB::FillGlobalGroupMembers(class OS_SID const * __ptr64,class SAM_DOMAIN const * __ptr64,class SAM_DOMAIN const * __ptr64,class LSA_POLICY * __ptr64,unsigned short const * __ptr64) __ptr64
1672?FillGlobalGroupMembers@NT_GROUP_BROWSER_LB@@QEAAJPEBVOS_SID@@PEBVSAM_DOMAIN@@1PEAVLSA_POLICY@@PEBG@Z
1673; public: long __cdecl NT_GROUP_BROWSER_LB::FillLocalGroupMembers(class OS_SID const * __ptr64,class SAM_DOMAIN const * __ptr64,class SAM_DOMAIN const * __ptr64,class LSA_POLICY * __ptr64,unsigned short const * __ptr64) __ptr64
1674?FillLocalGroupMembers@NT_GROUP_BROWSER_LB@@QEAAJPEBVOS_SID@@PEBVSAM_DOMAIN@@1PEAVLSA_POLICY@@PEBG@Z
1675; private: long __cdecl LM_OLLB::FillServers(unsigned short const * __ptr64,unsigned int * __ptr64) __ptr64
1676?FillServers@LM_OLLB@@AEAAJPEBGPEAI@Z
1677; protected: virtual int __cdecl DIALOG_WINDOW::FilterMessage(struct tagMSG * __ptr64) __ptr64
1678?FilterMessage@DIALOG_WINDOW@@MEAAHPEAUtagMSG@@@Z
1679; protected: virtual int __cdecl HAS_MESSAGE_PUMP::FilterMessage(struct tagMSG * __ptr64) __ptr64
1680?FilterMessage@HAS_MESSAGE_PUMP@@MEAAHPEAUtagMSG@@@Z
1681; public: int __cdecl ARRAY_LIST_CONTROLVAL_CID_PAIR::Find(class CONTROLVAL_CID_PAIR const & __ptr64)const __ptr64
1682?Find@ARRAY_LIST_CONTROLVAL_CID_PAIR@@QEBAHAEBVCONTROLVAL_CID_PAIR@@@Z
1683; public: static class DIALOG_WINDOW * __ptr64 __cdecl HWND_DLGPTR_CACHE::Find(struct HWND__ * __ptr64)
1684?Find@HWND_DLGPTR_CACHE@@SAPEAVDIALOG_WINDOW@@PEAUHWND__@@@Z
1685; private: unsigned int __cdecl MAGIC_GROUP::FindAssocRadioButton(class CONTROL_VALUE * __ptr64) __ptr64
1686?FindAssocRadioButton@MAGIC_GROUP@@AEAAIPEAVCONTROL_VALUE@@@Z
1687; public: class BROWSER_DOMAIN * __ptr64 __cdecl NT_USER_BROWSER_DIALOG::FindDomain(class OS_SID const * __ptr64) __ptr64
1688?FindDomain@NT_USER_BROWSER_DIALOG@@QEAAPEAVBROWSER_DOMAIN@@PEBVOS_SID@@@Z
1689; public: class UI_EXT * __ptr64 __cdecl UI_EXT_MGR::FindExtensionByDelta(unsigned long) __ptr64
1690?FindExtensionByDelta@UI_EXT_MGR@@QEAAPEAVUI_EXT@@K@Z
1691; public: class UI_EXT * __ptr64 __cdecl UI_EXT_MGR::FindExtensionByName(unsigned short const * __ptr64) __ptr64
1692?FindExtensionByName@UI_EXT_MGR@@QEAAPEAVUI_EXT@@PEBG@Z
1693; public: int __cdecl BLT_LISTBOX::FindItem(class LBI const & __ptr64)const __ptr64
1694?FindItem@BLT_LISTBOX@@QEBAHAEBVLBI@@@Z
1695; public: int __cdecl OUTLINE_LISTBOX::FindItem(unsigned short const * __ptr64,unsigned short const * __ptr64)const __ptr64
1696?FindItem@OUTLINE_LISTBOX@@QEBAHPEBG0@Z
1697; public: int __cdecl STRING_LIST_CONTROL::FindItem(unsigned short const * __ptr64)const __ptr64
1698?FindItem@STRING_LIST_CONTROL@@QEBAHPEBG@Z
1699; public: int __cdecl STRING_LIST_CONTROL::FindItem(unsigned short const * __ptr64,int)const __ptr64
1700?FindItem@STRING_LIST_CONTROL@@QEBAHPEBGH@Z
1701; public: int __cdecl STRING_LIST_CONTROL::FindItemExact(unsigned short const * __ptr64)const __ptr64
1702?FindItemExact@STRING_LIST_CONTROL@@QEBAHPEBG@Z
1703; public: int __cdecl STRING_LIST_CONTROL::FindItemExact(unsigned short const * __ptr64,int)const __ptr64
1704?FindItemExact@STRING_LIST_CONTROL@@QEBAHPEBGH@Z
1705; public: void __cdecl DEVICE_CONTEXT::FrameRect(struct tagRECT const * __ptr64,struct HBRUSH__ * __ptr64)const __ptr64
1706?FrameRect@DEVICE_CONTEXT@@QEBAXPEBUtagRECT@@PEAUHBRUSH__@@@Z
1707; private: virtual long __cdecl SPIN_SLE_STR::GetAccKey(class NLS_STR * __ptr64) __ptr64
1708?GetAccKey@SPIN_SLE_STR@@EEAAJPEAVNLS_STR@@@Z
1709; protected: virtual long __cdecl SPIN_SLT_SEPARATOR::GetAccKey(class NLS_STR * __ptr64) __ptr64
1710?GetAccKey@SPIN_SLT_SEPARATOR@@MEAAJPEAVNLS_STR@@@Z
1711; private: long __cdecl MSG_DIALOG_BASE::GetAndSendText(void) __ptr64
1712?GetAndSendText@MSG_DIALOG_BASE@@AEAAJXZ
1713; public: unsigned long __cdecl DEVICE_CONTEXT::GetBkColor(void)const __ptr64
1714?GetBkColor@DEVICE_CONTEXT@@QEBAKXZ
1715; public: long __cdecl BROWSER_DOMAIN::GetDomainInfo(class NT_USER_BROWSER_DIALOG * __ptr64,class ADMIN_AUTHORITY const * __ptr64) __ptr64
1716?GetDomainInfo@BROWSER_DOMAIN@@QEAAJPEAVNT_USER_BROWSER_DIALOG@@PEBVADMIN_AUTHORITY@@@Z
1717; public: long __cdecl UI_DOMAIN::GetInfo(void) __ptr64
1718?GetInfo@UI_DOMAIN@@QEAAJXZ
1719; public: long __cdecl APP_WINDOW::GetPlacement(struct tagWINDOWPLACEMENT * __ptr64)const __ptr64
1720?GetPlacement@APP_WINDOW@@QEBAJPEAUtagWINDOWPLACEMENT@@@Z
1721; public: long __cdecl BROWSER_DOMAIN::GetQualifiedDomainName(class NLS_STR * __ptr64) __ptr64
1722?GetQualifiedDomainName@BROWSER_DOMAIN@@QEAAJPEAVNLS_STR@@@Z
1723; public: long __cdecl BROWSER_DOMAIN_LBI_PB::GetQualifiedDomainName(class NLS_STR * __ptr64) __ptr64
1724?GetQualifiedDomainName@BROWSER_DOMAIN_LBI_PB@@QEAAJPEAVNLS_STR@@@Z
1725; public: unsigned long __cdecl DEVICE_CONTEXT::GetTextColor(void)const __ptr64
1726?GetTextColor@DEVICE_CONTEXT@@QEBAKXZ
1727; private: int __cdecl DISPLAY_MAP::GetTransColorIndex(unsigned long * __ptr64,int)const __ptr64
1728?GetTransColorIndex@DISPLAY_MAP@@AEBAHPEAKH@Z
1729; protected: long __cdecl NT_USER_BROWSER_DIALOG::GetTrustedDomainList(unsigned short const * __ptr64,class BROWSER_DOMAIN * __ptr64 * __ptr64,class BROWSER_DOMAIN_CB * __ptr64,class ADMIN_AUTHORITY const * __ptr64) __ptr64
1730?GetTrustedDomainList@NT_USER_BROWSER_DIALOG@@IEAAJPEBGPEAPEAVBROWSER_DOMAIN@@PEAVBROWSER_DOMAIN_CB@@PEBVADMIN_AUTHORITY@@@Z
1731; public: int __cdecl SET_CONTROL::HandleOnLMouseButtonDown(class LISTBOX * __ptr64,class CUSTOM_CONTROL * __ptr64,class MOUSE_EVENT const & __ptr64) __ptr64
1732?HandleOnLMouseButtonDown@SET_CONTROL@@QEAAHPEAVLISTBOX@@PEAVCUSTOM_CONTROL@@AEBVMOUSE_EVENT@@@Z
1733; public: int __cdecl SET_CONTROL::HandleOnLMouseButtonUp(class LISTBOX * __ptr64,class CUSTOM_CONTROL * __ptr64,class MOUSE_EVENT const & __ptr64) __ptr64
1734?HandleOnLMouseButtonUp@SET_CONTROL@@QEAAHPEAVLISTBOX@@PEAVCUSTOM_CONTROL@@AEBVMOUSE_EVENT@@@Z
1735; public: int __cdecl SET_CONTROL::HandleOnMouseMove(class LISTBOX * __ptr64,class MOUSE_EVENT const & __ptr64) __ptr64
1736?HandleOnMouseMove@SET_CONTROL@@QEAAHPEAVLISTBOX@@AEBVMOUSE_EVENT@@@Z
1737; public: int __cdecl HIER_LBI::HasChildren(void) __ptr64
1738?HasChildren@HIER_LBI@@QEAAHXZ
1739; public: int __cdecl WINDOW::HasFocus(void)const __ptr64
1740?HasFocus@WINDOW@@QEBAHXZ
1741; public: static class DISPATCHER * __ptr64 __cdecl ASSOCHWNDDISP::HwndToPdispatch(struct HWND__ * __ptr64)
1742?HwndToPdispatch@ASSOCHWNDDISP@@SAPEAVDISPATCHER@@PEAUHWND__@@@Z
1743; public: static class DIALOG_WINDOW * __ptr64 __cdecl ASSOCHWNDPDLG::HwndToPdlg(struct HWND__ * __ptr64)
1744?HwndToPdlg@ASSOCHWNDPDLG@@SAPEAVDIALOG_WINDOW@@PEAUHWND__@@@Z
1745; public: static class CLIENT_WINDOW * __ptr64 __cdecl ASSOCHWNDPWND::HwndToPwnd(struct HWND__ * __ptr64)
1746?HwndToPwnd@ASSOCHWNDPWND@@SAPEAVCLIENT_WINDOW@@PEAUHWND__@@@Z
1747; private: static class CLIENT_WINDOW * __ptr64 __cdecl CLIENT_WINDOW::HwndToPwnd(struct HWND__ * __ptr64)
1748?HwndToPwnd@CLIENT_WINDOW@@CAPEAV1@PEAUHWND__@@@Z
1749; private: static class DIALOG_WINDOW * __ptr64 __cdecl DIALOG_WINDOW::HwndToPwnd(struct HWND__ * __ptr64)
1750?HwndToPwnd@DIALOG_WINDOW@@CAPEAV1@PEAUHWND__@@@Z
1751; protected: static class DISPATCHER * __ptr64 __cdecl DISPATCHER::HwndToPwnd(struct HWND__ * __ptr64)
1752?HwndToPwnd@DISPATCHER@@KAPEAV1@PEAUHWND__@@@Z
1753; public: static void * __ptr64 __cdecl ASSOCHWNDTHIS::HwndToThis(struct HWND__ * __ptr64)
1754?HwndToThis@ASSOCHWNDTHIS@@SAPEAXPEAUHWND__@@@Z
1755; public: int __cdecl BASE_SET_FOCUS_DLG::InRasMode(void)const __ptr64
1756?InRasMode@BASE_SET_FOCUS_DLG@@QEBAHXZ
1757; public: int __cdecl XYPOINT::InRect(class XYRECT const & __ptr64)const __ptr64
1758?InRect@XYPOINT@@QEBAHAEBVXYRECT@@@Z
1759; public: virtual void __cdecl CONTROL_WINDOW::IndicateError(long) __ptr64
1760?IndicateError@CONTROL_WINDOW@@UEAAXJ@Z
1761; public: virtual void __cdecl SLE::IndicateError(long) __ptr64
1762?IndicateError@SLE@@UEAAXJ@Z
1763; public: class XYRECT & __ptr64 __cdecl XYRECT::Inflate(int,int) __ptr64
1764?Inflate@XYRECT@@QEAAAEAV1@HH@Z
1765; public: class XYRECT & __ptr64 __cdecl XYRECT::Inflate(class XYDIMENSION) __ptr64
1766?Inflate@XYRECT@@QEAAAEAV1@VXYDIMENSION@@@Z
1767; public: static long __cdecl BASE_ELLIPSIS::Init(void)
1768?Init@BASE_ELLIPSIS@@SAJXZ
1769; public: static long __cdecl BLT::Init(struct HINSTANCE__ * __ptr64,unsigned int,unsigned int,unsigned int,unsigned int)
1770?Init@BLT@@SAJPEAUHINSTANCE__@@IIII@Z
1771; public: static long __cdecl BLTIMP::Init(void)
1772?Init@BLTIMP@@SAJXZ
1773; public: static long __cdecl BLT_MASTER_TIMER::Init(void)
1774?Init@BLT_MASTER_TIMER@@SAJXZ
1775; public: static long __cdecl CLIENT_WINDOW::Init(void)
1776?Init@CLIENT_WINDOW@@SAJXZ
1777; public: static long __cdecl POPUP::Init(void)
1778?Init@POPUP@@SAJXZ
1779; public: long __cdecl SLE_STRLB_GROUP::Init(class STRLIST * __ptr64) __ptr64
1780?Init@SLE_STRLB_GROUP@@QEAAJPEAVSTRLIST@@@Z
1781; public: static void __cdecl WIN32_FONT_PICKER::InitCHOOSEFONT(struct tagCHOOSEFONTW * __ptr64,struct tagLOGFONTW * __ptr64,struct HWND__ * __ptr64)
1782?InitCHOOSEFONT@WIN32_FONT_PICKER@@SAXPEAUtagCHOOSEFONTW@@PEAUtagLOGFONTW@@PEAUHWND__@@@Z
1783; public: static long __cdecl BLT::InitDLL(void)
1784?InitDLL@BLT@@SAJXZ
1785; protected: void __cdecl GET_FNAME_BASE_DLG::InitialOFN(void) __ptr64
1786?InitialOFN@GET_FNAME_BASE_DLG@@IEAAXXZ
1787; private: long __cdecl SPIN_SLE_STR::Initialize(long,class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
1788?Initialize@SPIN_SLE_STR@@AEAAJJPEAVOWNER_WINDOW@@I@Z
1789; private: long __cdecl SPIN_SLE_STR::Initialize(unsigned short const * __ptr64 * __ptr64 const,class OWNER_WINDOW * __ptr64,unsigned int) __ptr64
1790?Initialize@SPIN_SLE_STR@@AEAAJQEAPEBGPEAVOWNER_WINDOW@@I@Z
1791; private: long __cdecl SPIN_SLT_SEPARATOR::Initialize(void) __ptr64
1792?Initialize@SPIN_SLT_SEPARATOR@@AEAAJXZ
1793; public: long __cdecl MENU_BASE::Insert(unsigned short const * __ptr64,unsigned int,unsigned int,unsigned int)const __ptr64
1794?Insert@MENU_BASE@@QEBAJPEBGIII@Z
1795; public: long __cdecl MENU_BASE::Insert(unsigned short const * __ptr64,unsigned int,struct HMENU__ * __ptr64,unsigned int)const __ptr64
1796?Insert@MENU_BASE@@QEBAJPEBGIPEAUHMENU__@@I@Z
1797; public: int __cdecl BLT_LISTBOX::InsertItem(int,class LBI * __ptr64) __ptr64
1798?InsertItem@BLT_LISTBOX@@QEAAHHPEAVLBI@@@Z
1799; public: int __cdecl STRING_LIST_CONTROL::InsertItem(int,class NLS_STR const & __ptr64) __ptr64
1800?InsertItem@STRING_LIST_CONTROL@@QEAAHHAEBVNLS_STR@@@Z
1801; public: int __cdecl STRING_LIST_CONTROL::InsertItem(int,unsigned short const * __ptr64) __ptr64
1802?InsertItem@STRING_LIST_CONTROL@@QEAAHHPEBG@Z
1803; protected: int __cdecl LIST_CONTROL::InsertItemData(int,void * __ptr64) __ptr64
1804?InsertItemData@LIST_CONTROL@@IEAAHHPEAX@Z
1805; public: long __cdecl NLS_STR::InsertParams(class NLS_STR const & __ptr64) __ptr64
1806?InsertParams@NLS_STR@@QEAAJAEBV1@@Z
1807; public: long __cdecl MENU_BASE::InsertSeparator(unsigned int,unsigned int)const __ptr64
1808?InsertSeparator@MENU_BASE@@QEBAJII@Z
1809; public: long __cdecl BLT_MASTER_TIMER::InsertTimer(class TIMER_BASE * __ptr64) __ptr64
1810?InsertTimer@BLT_MASTER_TIMER@@QEAAJPEAVTIMER_BASE@@@Z
1811; public: void __cdecl WINDOW::Invalidate(class XYRECT const & __ptr64) __ptr64
1812?Invalidate@WINDOW@@QEAAXAEBVXYRECT@@@Z
1813; public: void __cdecl WINDOW::Invalidate(int) __ptr64
1814?Invalidate@WINDOW@@QEAAXH@Z
1815; private: void __cdecl LOGON_HOURS_CONTROL::InvalidateButton(int) __ptr64
1816?InvalidateButton@LOGON_HOURS_CONTROL@@AEAAXH@Z
1817; public: void __cdecl LISTBOX::InvalidateItem(int,int) __ptr64
1818?InvalidateItem@LISTBOX@@QEAAXHH@Z
1819; private: void __cdecl H_SPLITTER_BAR::InvertDragBar(class XYPOINT const & __ptr64) __ptr64
1820?InvertDragBar@H_SPLITTER_BAR@@AEAAXAEBVXYPOINT@@@Z
1821; public: void __cdecl DEVICE_CONTEXT::InvertRect(struct tagRECT const * __ptr64)const __ptr64
1822?InvertRect@DEVICE_CONTEXT@@QEBAXPEBUtagRECT@@@Z
1823; public: int __cdecl INTL_PROFILE::Is24Hour(void)const __ptr64
1824?Is24Hour@INTL_PROFILE@@QEBAHXZ
1825; public: int __cdecl ACTIVATION_EVENT::IsActivating(void)const __ptr64
1826?IsActivating@ACTIVATION_EVENT@@QEBAHXZ
1827; public: int __cdecl SPIN_GROUP::IsActive(void)const __ptr64
1828?IsActive@SPIN_GROUP@@QEBAHXZ
1829; public: int __cdecl ASSOCHCFILE::IsAssociatedHC(unsigned long)const __ptr64
1830?IsAssociatedHC@ASSOCHCFILE@@QEBAHK@Z
1831; protected: int __cdecl HEAP_BASE::IsAutoReadjusting(void)const __ptr64
1832?IsAutoReadjusting@HEAP_BASE@@IEBAHXZ
1833; protected: int __cdecl NT_USER_BROWSER_DIALOG::IsBrowsingEnabled(void)const __ptr64
1834?IsBrowsingEnabled@NT_USER_BROWSER_DIALOG@@IEBAHXZ
1835; private: int __cdecl LOGON_HOURS_CONTROL::IsButtonACell(int)const __ptr64
1836?IsButtonACell@LOGON_HOURS_CONTROL@@AEBAHH@Z
1837; public: int __cdecl MENUITEM::IsChecked(void)const __ptr64
1838?IsChecked@MENUITEM@@QEBAHXZ
1839; public: int __cdecl WINDOW::IsChild(void)const __ptr64
1840?IsChild@WINDOW@@QEBAHXZ
1841; public: static int __cdecl WINDOW::IsClientGeneratedMessage(void)
1842?IsClientGeneratedMessage@WINDOW@@SAHXZ
1843; public: int __cdecl LIST_CONTROL::IsCombo(void)const __ptr64
1844?IsCombo@LIST_CONTROL@@QEBAHXZ
1845; public: int __cdecl PROMPT_AND_CONNECT::IsConnected(void) __ptr64
1846?IsConnected@PROMPT_AND_CONNECT@@QEAAHXZ
1847; private: int __cdecl BLT_DATE_SPIN_GROUP::IsConstructionFail(class CONTROL_WINDOW * __ptr64) __ptr64
1848?IsConstructionFail@BLT_DATE_SPIN_GROUP@@AEAAHPEAVCONTROL_WINDOW@@@Z
1849; private: int __cdecl BLT_TIME_SPIN_GROUP::IsConstructionFail(class CONTROL_WINDOW * __ptr64) __ptr64
1850?IsConstructionFail@BLT_TIME_SPIN_GROUP@@AEAAHPEAVCONTROL_WINDOW@@@Z
1851; public: int __cdecl INTL_PROFILE::IsDayLZero(void)const __ptr64
1852?IsDayLZero@INTL_PROFILE@@QEBAHXZ
1853; private: virtual int __cdecl HIER_LBI::IsDestroyable(void) __ptr64
1854?IsDestroyable@HIER_LBI@@EEAAHXZ
1855; protected: virtual int __cdecl LBI::IsDestroyable(void) __ptr64
1856?IsDestroyable@LBI@@MEAAHXZ
1857; protected: int __cdecl NT_USER_BROWSER_DIALOG::IsDomainComboDropped(void)const __ptr64
1858?IsDomainComboDropped@NT_USER_BROWSER_DIALOG@@IEBAHXZ
1859; public: int __cdecl COMBOBOX::IsDropDown(void)const __ptr64
1860?IsDropDown@COMBOBOX@@QEBAHXZ
1861; public: int __cdecl COMBOBOX::IsDropDownList(void)const __ptr64
1862?IsDropDownList@COMBOBOX@@QEBAHXZ
1863; public: int __cdecl BLT_COMBOBOX::IsDropped(void)const __ptr64
1864?IsDropped@BLT_COMBOBOX@@QEBAHXZ
1865; public: int __cdecl XYRECT::IsEmpty(void)const __ptr64
1866?IsEmpty@XYRECT@@QEBAHXZ
1867; public: int __cdecl MENUITEM::IsEnabled(void)const __ptr64
1868?IsEnabled@MENUITEM@@QEBAHXZ
1869; public: int __cdecl TIMER_BASE::IsEnabled(void)const __ptr64
1870?IsEnabled@TIMER_BASE@@QEBAHXZ
1871; public: int __cdecl WINDOW::IsEnabled(void)const __ptr64
1872?IsEnabled@WINDOW@@QEBAHXZ
1873; protected: int __cdecl BASE_SET_FOCUS_DLG::IsExpanded(void)const __ptr64
1874?IsExpanded@BASE_SET_FOCUS_DLG@@IEBAHXZ
1875; public: int __cdecl OLLB_ENTRY::IsExpanded(void)const __ptr64
1876?IsExpanded@OLLB_ENTRY@@QEBAHXZ
1877; public: int __cdecl AUDIT_CHECKBOXES::IsFailedChecked(void) __ptr64
1878?IsFailedChecked@AUDIT_CHECKBOXES@@QEAAHXZ
1879; protected: int __cdecl CANCEL_TASK_DIALOG::IsFinished(void)const __ptr64
1880?IsFinished@CANCEL_TASK_DIALOG@@IEBAHXZ
1881; public: int __cdecl GET_FNAME_BASE_DLG::IsHelpActive(void) __ptr64
1882?IsHelpActive@GET_FNAME_BASE_DLG@@QEAAHXZ
1883; public: int __cdecl INTL_PROFILE::IsHourLZero(void)const __ptr64
1884?IsHourLZero@INTL_PROFILE@@QEBAHXZ
1885; protected: int __cdecl CANCEL_TASK_DIALOG::IsInTimer(void)const __ptr64
1886?IsInTimer@CANCEL_TASK_DIALOG@@IEBAHXZ
1887; public: int __cdecl BROWSER_DOMAIN::IsInitialized(void)const __ptr64
1888?IsInitialized@BROWSER_DOMAIN@@QEBAHXZ
1889; public: virtual int __cdecl USER_LBI_CACHE::IsItemAvailable(int) __ptr64
1890?IsItemAvailable@USER_LBI_CACHE@@UEAAHH@Z
1891; public: int __cdecl LIST_CONTROL::IsItemSelected(unsigned int)const __ptr64
1892?IsItemSelected@LIST_CONTROL@@QEBAHI@Z
1893; public: int __cdecl RADIO_GROUP::IsMember(unsigned int) __ptr64
1894?IsMember@RADIO_GROUP@@QEAAHI@Z
1895; public: int __cdecl CLIENT_WINDOW::IsMinimized(void)const __ptr64
1896?IsMinimized@CLIENT_WINDOW@@QEBAHXZ
1897; public: int __cdecl SPIN_GROUP::IsModified(void)const __ptr64
1898?IsModified@SPIN_GROUP@@QEBAHXZ
1899; public: int __cdecl INTL_PROFILE::IsMonthLZero(void)const __ptr64
1900?IsMonthLZero@INTL_PROFILE@@QEBAHXZ
1901; public: int __cdecl LIST_CONTROL::IsMultSel(void)const __ptr64
1902?IsMultSel@LIST_CONTROL@@QEBAHXZ
1903; private: int __cdecl SET_CONTROL::IsOnDragStart(class LISTBOX * __ptr64,class LISTBOX * __ptr64,class XYPOINT const & __ptr64)const __ptr64
1904?IsOnDragStart@SET_CONTROL@@AEBAHPEAVLISTBOX@@0AEBVXYPOINT@@@Z
1905; private: int __cdecl SET_CONTROL::IsOnSelectedItem(class LISTBOX * __ptr64,class LISTBOX * __ptr64,class XYPOINT const & __ptr64)const __ptr64
1906?IsOnSelectedItem@SET_CONTROL@@AEBAHPEAVLISTBOX@@0AEBVXYPOINT@@@Z
1907; private: int __cdecl SET_CONTROL::IsOverTarget(class LISTBOX * __ptr64,class LISTBOX * __ptr64,class XYPOINT const & __ptr64)const __ptr64
1908?IsOverTarget@SET_CONTROL@@AEBAHPEAVLISTBOX@@0AEBVXYPOINT@@@Z
1909; private: int __cdecl HIER_LBI::IsParent(class HIER_LBI * __ptr64) __ptr64
1910?IsParent@HIER_LBI@@AEAAHPEAV1@@Z
1911; public: int __cdecl MENU_BASE::IsPopup(int)const __ptr64
1912?IsPopup@MENU_BASE@@QEBAHH@Z
1913; public: int __cdecl MASK_MAP::IsPresent(class BITFIELD * __ptr64) __ptr64
1914?IsPresent@MASK_MAP@@QEAAHPEAVBITFIELD@@@Z
1915; protected: virtual int __cdecl DIALOG_WINDOW::IsPumpFinished(void) __ptr64
1916?IsPumpFinished@DIALOG_WINDOW@@MEAAHXZ
1917; protected: virtual int __cdecl HAS_MESSAGE_PUMP::IsPumpFinished(void) __ptr64
1918?IsPumpFinished@HAS_MESSAGE_PUMP@@MEAAHXZ
1919; public: int __cdecl LISTBOX::IsReadOnly(void)const __ptr64
1920?IsReadOnly@LISTBOX@@QEBAHXZ
1921; protected: int __cdecl HEAP_BASE::IsRoot(int)const __ptr64
1922?IsRoot@HEAP_BASE@@IEBAHH@Z
1923; public: int __cdecl WIN32_THREAD::IsRunnable(void)const __ptr64
1924?IsRunnable@WIN32_THREAD@@QEBAHXZ
1925; protected: int __cdecl USER_BROWSER_LB::IsSelectionExpandableGroup(class USER_BROWSER_LBI const * __ptr64,int)const __ptr64
1926?IsSelectionExpandableGroup@USER_BROWSER_LB@@IEBAHPEBVUSER_BROWSER_LBI@@H@Z
1927; public: int __cdecl USER_BROWSER_LB::IsSelectionExpandableGroup(void)const __ptr64
1928?IsSelectionExpandableGroup@USER_BROWSER_LB@@QEBAHXZ
1929; public: int __cdecl MENU_BASE::IsSeparator(int)const __ptr64
1930?IsSeparator@MENU_BASE@@QEBAHH@Z
1931; protected: int __cdecl NT_USER_BROWSER_DIALOG::IsShowUsersButtonUsed(void)const __ptr64
1932?IsShowUsersButtonUsed@NT_USER_BROWSER_DIALOG@@IEBAHXZ
1933; public: int __cdecl COMBOBOX::IsSimple(void)const __ptr64
1934?IsSimple@COMBOBOX@@QEBAHXZ
1935; public: int __cdecl ACCOUNT_NAMES_MLE::IsSingleSelect(void)const __ptr64
1936?IsSingleSelect@ACCOUNT_NAMES_MLE@@QEBAHXZ
1937; public: int __cdecl NT_USER_BROWSER_DIALOG::IsSingleSelection(void)const __ptr64
1938?IsSingleSelection@NT_USER_BROWSER_DIALOG@@QEBAHXZ
1939; public: virtual int __cdecl CHANGEABLE_SPIN_ITEM::IsStatic(void)const __ptr64
1940?IsStatic@CHANGEABLE_SPIN_ITEM@@UEBAHXZ
1941; public: virtual int __cdecl STATIC_SPIN_ITEM::IsStatic(void)const __ptr64
1942?IsStatic@STATIC_SPIN_ITEM@@UEBAHXZ
1943; public: int __cdecl AUDIT_CHECKBOXES::IsSuccessChecked(void) __ptr64
1944?IsSuccessChecked@AUDIT_CHECKBOXES@@QEAAHXZ
1945; public: static int __cdecl APPLICATION::IsSystemInitialized(void)
1946?IsSystemInitialized@APPLICATION@@SAHXZ
1947; public: int __cdecl BROWSER_DOMAIN::IsTargetDomain(void)const __ptr64
1948?IsTargetDomain@BROWSER_DOMAIN@@QEBAHXZ
1949; public: int __cdecl BROWSER_DOMAIN_LBI::IsTargetDomain(void)const __ptr64
1950?IsTargetDomain@BROWSER_DOMAIN_LBI@@QEBAHXZ
1951; public: int __cdecl BROWSER_DOMAIN_LBI_PB::IsTargetDomain(void)const __ptr64
1952?IsTargetDomain@BROWSER_DOMAIN_LBI_PB@@QEBAHXZ
1953; public: int __cdecl INTL_PROFILE::IsTimePrefix(void)const __ptr64
1954?IsTimePrefix@INTL_PROFILE@@QEBAHXZ
1955; public: int __cdecl COMBOBOX::IsUserEdittable(void)const __ptr64
1956?IsUserEdittable@COMBOBOX@@QEBAHXZ
1957; public: int __cdecl BLT_DATE_SPIN_GROUP::IsValid(void) __ptr64
1958?IsValid@BLT_DATE_SPIN_GROUP@@QEAAHXZ
1959; public: int __cdecl BLT_TIME_SPIN_GROUP::IsValid(void) __ptr64
1960?IsValid@BLT_TIME_SPIN_GROUP@@QEAAHXZ
1961; protected: virtual int __cdecl DIALOG_WINDOW::IsValid(void) __ptr64
1962?IsValid@DIALOG_WINDOW@@MEAAHXZ
1963; protected: virtual int __cdecl SPIN_SLE_NUM_VALID::IsValid(void) __ptr64
1964?IsValid@SPIN_SLE_NUM_VALID@@MEAAHXZ
1965; protected: int __cdecl SPIN_GROUP::IsValidField(void) __ptr64
1966?IsValidField@SPIN_GROUP@@IEAAHXZ
1967; protected: int __cdecl BASE_ELLIPSIS::IsValidStyle(enum ELLIPSIS_STYLE)const __ptr64
1968?IsValidStyle@BASE_ELLIPSIS@@IEBAHW4ELLIPSIS_STYLE@@@Z
1969; protected: int __cdecl ACCOUNT_NAMES_MLE::IsWellKnownAccount(class NLS_STR const & __ptr64) __ptr64
1970?IsWellKnownAccount@ACCOUNT_NAMES_MLE@@IEAAHAEBVNLS_STR@@@Z
1971; public: int __cdecl BROWSER_DOMAIN::IsWinNTMachine(void)const __ptr64
1972?IsWinNTMachine@BROWSER_DOMAIN@@QEBAHXZ
1973; protected: int __cdecl H_SPLITTER_BAR::IsWithinHitZone(class XYPOINT const & __ptr64) __ptr64
1974?IsWithinHitZone@H_SPLITTER_BAR@@IEAAHAEBVXYPOINT@@@Z
1975; private: int __cdecl SET_CONTROL::IsWithinHitZone(class LISTBOX * __ptr64,class LISTBOX * __ptr64,class XYPOINT const & __ptr64)const __ptr64
1976?IsWithinHitZone@SET_CONTROL@@AEBAHPEAVLISTBOX@@0AEBVXYPOINT@@@Z
1977; public: int __cdecl INTL_PROFILE::IsYrCentury(void)const __ptr64
1978?IsYrCentury@INTL_PROFILE@@QEBAHXZ
1979; public: static int __cdecl MENUITEM::ItemExists(struct HMENU__ * __ptr64,unsigned int)
1980?ItemExists@MENUITEM@@SAHPEAUHMENU__@@I@Z
1981; public: static int __cdecl MENUITEM::ItemExists(class APP_WINDOW * __ptr64,unsigned int)
1982?ItemExists@MENUITEM@@SAHPEAVAPP_WINDOW@@I@Z
1983; public: int __cdecl SPIN_GROUP::JumpNextField(void) __ptr64
1984?JumpNextField@SPIN_GROUP@@QEAAHXZ
1985; public: int __cdecl SPIN_GROUP::JumpPrevField(void) __ptr64
1986?JumpPrevField@SPIN_GROUP@@QEAAHXZ
1987; private: void __cdecl DIALOG_WINDOW::LaunchHelp(void) __ptr64
1988?LaunchHelp@DIALOG_WINDOW@@AEAAXXZ
1989; public: static void __cdecl BLTIMP::LeaveBLTCritSect(void)
1990?LeaveBLTCritSect@BLTIMP@@SAXXZ
1991; public: static void __cdecl BLTIMP::LeaveResourceCritSect(void)
1992?LeaveResourceCritSect@BLTIMP@@SAXXZ
1993; public: void __cdecl DEVICE_CONTEXT::LineTo(int,int)const __ptr64
1994?LineTo@DEVICE_CONTEXT@@QEBAXHH@Z
1995; public: static struct HICON__ * __ptr64 __cdecl CURSOR::Load(class IDRESOURCE const & __ptr64)
1996?Load@CURSOR@@SAPEAUHICON__@@AEBVIDRESOURCE@@@Z
1997; public: long __cdecl NLS_STR::Load(long) __ptr64
1998?Load@NLS_STR@@QEAAJJ@Z
1999; public: virtual unsigned int __cdecl UI_EXT_MGR::LoadExtensions(void) __ptr64
2000?LoadExtensions@UI_EXT_MGR@@UEAAIXZ
2001; private: long __cdecl LOGON_HOURS_CONTROL::LoadLabels(long) __ptr64
2002?LoadLabels@LOGON_HOURS_CONTROL@@AEAAJJ@Z
2003; private: class NLS_STR * __ptr64 __cdecl POPUP::LoadMessage(long,int) __ptr64
2004?LoadMessage@POPUP@@AEAAPEAVNLS_STR@@JH@Z
2005; public: static struct HICON__ * __ptr64 __cdecl CURSOR::LoadSystem(class IDRESOURCE const & __ptr64)
2006?LoadSystem@CURSOR@@SAPEAUHICON__@@AEBVIDRESOURCE@@@Z
2007; public: long __cdecl NLS_STR::LoadSystem(long) __ptr64
2008?LoadSystem@NLS_STR@@QEAAJJ@Z
2009; protected: virtual void __cdecl USER_LBI_CACHE::LockCache(void) __ptr64
2010?LockCache@USER_LBI_CACHE@@MEAAXXZ
2011; void __cdecl MLTextPaint(struct HDC__ * __ptr64,unsigned short const * __ptr64,struct tagRECT const * __ptr64)
2012?MLTextPaint@@YAXPEAUHDC__@@PEBGPEBUtagRECT@@@Z
2013; protected: virtual long __cdecl DOMAIN_FILL_THREAD::Main(void) __ptr64
2014?Main@DOMAIN_FILL_THREAD@@MEAAJXZ
2015; protected: virtual long __cdecl FOCUSDLG_DATA_THREAD::Main(void) __ptr64
2016?Main@FOCUSDLG_DATA_THREAD@@MEAAJXZ
2017; protected: virtual long __cdecl WIN32_THREAD::Main(void) __ptr64
2018?Main@WIN32_THREAD@@MEAAJXZ
2019; public: void __cdecl PUSH_BUTTON::MakeDefault(void) __ptr64
2020?MakeDefault@PUSH_BUTTON@@QEAAXXZ
2021; private: static int __cdecl POPUP::MapButton(unsigned int)
2022?MapButton@POPUP@@CAHI@Z
2023; public: static long __cdecl BLT::MapLastError(long)
2024?MapLastError@BLT@@SAJJ@Z
2025; public: static long __cdecl POPUP::MapMessage(long)
2026?MapMessage@POPUP@@SAJJ@Z
2027; protected: virtual int __cdecl APP_WINDOW::MayRestore(void) __ptr64
2028?MayRestore@APP_WINDOW@@MEAAHXZ
2029; protected: virtual int __cdecl CANCEL_TASK_DIALOG::MayRun(void) __ptr64
2030?MayRun@CANCEL_TASK_DIALOG@@MEAAHXZ
2031; protected: virtual int __cdecl DIALOG_WINDOW::MayRun(void) __ptr64
2032?MayRun@DIALOG_WINDOW@@MEAAHXZ
2033; protected: virtual int __cdecl APP_WINDOW::MayShutdown(void) __ptr64
2034?MayShutdown@APP_WINDOW@@MEAAHXZ
2035; public: virtual void __cdecl UI_MENU_EXT_MGR::MenuInitExtensions(void) __ptr64
2036?MenuInitExtensions@UI_MENU_EXT_MGR@@UEAAXXZ
2037; public: long __cdecl MENU_BASE::Modify(unsigned short const * __ptr64,unsigned int,unsigned int,unsigned int)const __ptr64
2038?Modify@MENU_BASE@@QEBAJPEBGIII@Z
2039; public: long __cdecl MENU_BASE::Modify(unsigned short const * __ptr64,unsigned int,struct HMENU__ * __ptr64,unsigned int)const __ptr64
2040?Modify@MENU_BASE@@QEBAJPEBGIPEAUHMENU__@@I@Z
2041; private: void __cdecl LOGON_HOURS_CONTROL::MoveFocusDown(void) __ptr64
2042?MoveFocusDown@LOGON_HOURS_CONTROL@@AEAAXXZ
2043; private: void __cdecl LOGON_HOURS_CONTROL::MoveFocusLeft(void) __ptr64
2044?MoveFocusLeft@LOGON_HOURS_CONTROL@@AEAAXXZ
2045; private: void __cdecl LOGON_HOURS_CONTROL::MoveFocusRight(void) __ptr64
2046?MoveFocusRight@LOGON_HOURS_CONTROL@@AEAAXXZ
2047; private: void __cdecl LOGON_HOURS_CONTROL::MoveFocusTo(int) __ptr64
2048?MoveFocusTo@LOGON_HOURS_CONTROL@@AEAAXH@Z
2049; private: void __cdecl LOGON_HOURS_CONTROL::MoveFocusUp(void) __ptr64
2050?MoveFocusUp@LOGON_HOURS_CONTROL@@AEAAXXZ
2051; protected: virtual long __cdecl BLT_SET_CONTROL::MoveItems(class LISTBOX * __ptr64,class LISTBOX * __ptr64) __ptr64
2052?MoveItems@BLT_SET_CONTROL@@MEAAJPEAVLISTBOX@@0@Z
2053; public: void __cdecl DEVICE_CONTEXT::MoveTo(int,int)const __ptr64
2054?MoveTo@DEVICE_CONTEXT@@QEBAXHH@Z
2055; private: static int __cdecl MSGPOPUP_DIALOG::Msg2HC(long,unsigned long * __ptr64)
2056?Msg2HC@MSGPOPUP_DIALOG@@CAHJPEAK@Z
2057; int __cdecl MsgPopup(class OWNINGWND const & __ptr64,long,long,enum MSG_SEVERITY,unsigned long,unsigned int,class NLS_STR * __ptr64 * __ptr64 const,unsigned int)
2058?MsgPopup@@YAHAEBVOWNINGWND@@JJW4MSG_SEVERITY@@KIQEAPEAVNLS_STR@@I@Z
2059; int __cdecl MsgPopup(class OWNINGWND const & __ptr64,long,enum MSG_SEVERITY)
2060?MsgPopup@@YAHAEBVOWNINGWND@@JW4MSG_SEVERITY@@@Z
2061; int __cdecl MsgPopup(class OWNINGWND const & __ptr64,long,enum MSG_SEVERITY,unsigned int,unsigned int)
2062?MsgPopup@@YAHAEBVOWNINGWND@@JW4MSG_SEVERITY@@II@Z
2063; int __cdecl MsgPopup(class OWNINGWND const & __ptr64,long,enum MSG_SEVERITY,unsigned int,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned int)
2064?MsgPopup@@YAHAEBVOWNINGWND@@JW4MSG_SEVERITY@@IPEBG2I@Z
2065; int __cdecl MsgPopup(class OWNINGWND const & __ptr64,long,enum MSG_SEVERITY,unsigned int,unsigned short const * __ptr64,unsigned int)
2066?MsgPopup@@YAHAEBVOWNINGWND@@JW4MSG_SEVERITY@@IPEBGI@Z
2067; int __cdecl MsgPopup(class OWNINGWND const & __ptr64,long,enum MSG_SEVERITY,unsigned long,unsigned int,class NLS_STR * __ptr64 * __ptr64 const,unsigned int)
2068?MsgPopup@@YAHAEBVOWNINGWND@@JW4MSG_SEVERITY@@KIQEAPEAVNLS_STR@@I@Z
2069; public: long __cdecl BROWSER_SUBJECT_ITER::Next(class BROWSER_SUBJECT * __ptr64 * __ptr64) __ptr64
2070?Next@BROWSER_SUBJECT_ITER@@QEAAJPEAPEAVBROWSER_SUBJECT@@@Z
2071; public: class BROWSE_DOMAIN_INFO const * __ptr64 __cdecl BROWSE_DOMAIN_ENUM::Next(void) __ptr64
2072?Next@BROWSE_DOMAIN_ENUM@@QEAAPEBVBROWSE_DOMAIN_INFO@@XZ
2073; public: class CONTROL_WINDOW * __ptr64 __cdecl ITER_CTRL::Next(void) __ptr64
2074?Next@ITER_CTRL@@QEAAPEAVCONTROL_WINDOW@@XZ
2075; public: class SPIN_ITEM * __ptr64 __cdecl ITER_DL_SPIN_ITEM::Next(void) __ptr64
2076?Next@ITER_DL_SPIN_ITEM@@QEAAPEAVSPIN_ITEM@@XZ
2077; public: class ASSOCHCFILE * __ptr64 __cdecl ITER_SL_ASSOCHCFILE::Next(void) __ptr64
2078?Next@ITER_SL_ASSOCHCFILE@@QEAAPEAVASSOCHCFILE@@XZ
2079; public: class BROWSE_DOMAIN_INFO * __ptr64 __cdecl ITER_SL_BROWSE_DOMAIN_INFO::Next(void) __ptr64
2080?Next@ITER_SL_BROWSE_DOMAIN_INFO@@QEAAPEAVBROWSE_DOMAIN_INFO@@XZ
2081; public: struct CLIENTDATA * __ptr64 __cdecl ITER_SL_CLIENTDATA::Next(void) __ptr64
2082?Next@ITER_SL_CLIENTDATA@@QEAAPEAUCLIENTDATA@@XZ
2083; public: class NLS_STR * __ptr64 __cdecl ITER_SL_NLS_STR::Next(void) __ptr64
2084?Next@ITER_SL_NLS_STR@@QEAAPEAVNLS_STR@@XZ
2085; public: class STRING_BITSET_PAIR * __ptr64 __cdecl ITER_SL_STRING_BITSET_PAIR::Next(void) __ptr64
2086?Next@ITER_SL_STRING_BITSET_PAIR@@QEAAPEAVSTRING_BITSET_PAIR@@XZ
2087; public: class TIMER_BASE * __ptr64 __cdecl ITER_SL_TIMER_BASE::Next(void) __ptr64
2088?Next@ITER_SL_TIMER_BASE@@QEAAPEAVTIMER_BASE@@XZ
2089; public: class UI_EXT * __ptr64 __cdecl ITER_SL_UI_EXT::Next(void) __ptr64
2090?Next@ITER_SL_UI_EXT@@QEAAPEAVUI_EXT@@XZ
2091; public: class USER_BROWSER_LBI * __ptr64 __cdecl ITER_SL_USER_BROWSER_LBI::Next(void) __ptr64
2092?Next@ITER_SL_USER_BROWSER_LBI@@QEAAPEAVUSER_BROWSER_LBI@@XZ
2093; public: class SPIN_ITEM * __ptr64 __cdecl RITER_DL_SPIN_ITEM::Next(void) __ptr64
2094?Next@RITER_DL_SPIN_ITEM@@QEAAPEAVSPIN_ITEM@@XZ
2095; public: int __cdecl STLBITEM::NextState(void) __ptr64
2096?NextState@STLBITEM@@QEAAHXZ
2097; public: class TIMER_BASE * __ptr64 __cdecl BLT_MASTER_TIMER::NextTimer(void) __ptr64
2098?NextTimer@BLT_MASTER_TIMER@@QEAAPEAVTIMER_BASE@@XZ
2099; public: long __cdecl CONTROL_WINDOW::NotifyGroups(class CONTROL_EVENT const & __ptr64) __ptr64
2100?NotifyGroups@CONTROL_WINDOW@@QEAAJAEBVCONTROL_EVENT@@@Z
2101; public: class XYRECT & __ptr64 __cdecl XYRECT::Offset(int,int) __ptr64
2102?Offset@XYRECT@@QEAAAEAV1@HH@Z
2103; public: class XYRECT & __ptr64 __cdecl XYRECT::Offset(class XYDIMENSION) __ptr64
2104?Offset@XYRECT@@QEAAAEAV1@VXYDIMENSION@@@Z
2105; protected: virtual int __cdecl CLIENT_WINDOW::OnActivation(class ACTIVATION_EVENT const & __ptr64) __ptr64
2106?OnActivation@CLIENT_WINDOW@@MEAAHAEBVACTIVATION_EVENT@@@Z
2107; protected: virtual int __cdecl DISPATCHER::OnActivation(class ACTIVATION_EVENT const & __ptr64) __ptr64
2108?OnActivation@DISPATCHER@@MEAAHAEBVACTIVATION_EVENT@@@Z
2109; protected: long __cdecl NT_USER_BROWSER_DIALOG::OnAdd(void) __ptr64
2110?OnAdd@NT_USER_BROWSER_DIALOG@@IEAAJXZ
2111; protected: long __cdecl SLE_STRLB_GROUP::OnAdd(void) __ptr64
2112?OnAdd@SLE_STRLB_GROUP@@IEAAJXZ
2113; protected: int __cdecl OWNER_WINDOW::OnCDMessages(unsigned int,unsigned __int64,__int64) __ptr64
2114?OnCDMessages@OWNER_WINDOW@@IEAAHI_K_J@Z
2115; protected: virtual int __cdecl DIALOG_WINDOW::OnCancel(void) __ptr64
2116?OnCancel@DIALOG_WINDOW@@MEAAHXZ
2117; protected: virtual int __cdecl MSGPOPUP_DIALOG::OnCancel(void) __ptr64
2118?OnCancel@MSGPOPUP_DIALOG@@MEAAHXZ
2119; protected: virtual int __cdecl CLIENT_WINDOW::OnChange(class CONTROL_EVENT const & __ptr64) __ptr64
2120?OnChange@CLIENT_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2121; protected: virtual int __cdecl CLIENT_WINDOW::OnChar(class CHAR_EVENT const & __ptr64) __ptr64
2122?OnChar@CLIENT_WINDOW@@MEAAHAEBVCHAR_EVENT@@@Z
2123; protected: virtual int __cdecl DISPATCHER::OnChar(class CHAR_EVENT const & __ptr64) __ptr64
2124?OnChar@DISPATCHER@@MEAAHAEBVCHAR_EVENT@@@Z
2125; protected: virtual int __cdecl SPIN_ITEM::OnChar(class CHAR_EVENT const & __ptr64) __ptr64
2126?OnChar@SPIN_ITEM@@MEAAHAEBVCHAR_EVENT@@@Z
2127; protected: virtual int __cdecl SPIN_SLE_NUM::OnChar(class CHAR_EVENT const & __ptr64) __ptr64
2128?OnChar@SPIN_SLE_NUM@@MEAAHAEBVCHAR_EVENT@@@Z
2129; protected: virtual int __cdecl SPIN_SLE_STR::OnChar(class CHAR_EVENT const & __ptr64) __ptr64
2130?OnChar@SPIN_SLE_STR@@MEAAHAEBVCHAR_EVENT@@@Z
2131; protected: virtual int __cdecl CLIENT_WINDOW::OnClick(class CONTROL_EVENT const & __ptr64) __ptr64
2132?OnClick@CLIENT_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2133; protected: virtual int __cdecl APP_WINDOW::OnCloseReq(void) __ptr64
2134?OnCloseReq@APP_WINDOW@@MEAAHXZ
2135; protected: virtual int __cdecl CLIENT_WINDOW::OnCloseReq(void) __ptr64
2136?OnCloseReq@CLIENT_WINDOW@@MEAAHXZ
2137; protected: virtual int __cdecl DISPATCHER::OnCloseReq(void) __ptr64
2138?OnCloseReq@DISPATCHER@@MEAAHXZ
2139; protected: virtual int __cdecl BASE_SET_FOCUS_DLG::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2140?OnCommand@BASE_SET_FOCUS_DLG@@MEAAHAEBVCONTROL_EVENT@@@Z
2141; protected: virtual int __cdecl CLIENT_WINDOW::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2142?OnCommand@CLIENT_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2143; protected: virtual int __cdecl DIALOG_WINDOW::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2144?OnCommand@DIALOG_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2145; protected: virtual int __cdecl DISPATCHER::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2146?OnCommand@DISPATCHER@@MEAAHAEBVCONTROL_EVENT@@@Z
2147; protected: virtual int __cdecl EXPANDABLE_DIALOG::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2148?OnCommand@EXPANDABLE_DIALOG@@MEAAHAEBVCONTROL_EVENT@@@Z
2149; protected: virtual int __cdecl MSGPOPUP_DIALOG::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2150?OnCommand@MSGPOPUP_DIALOG@@MEAAHAEBVCONTROL_EVENT@@@Z
2151; protected: virtual int __cdecl NT_FIND_ACCOUNT_DIALOG::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2152?OnCommand@NT_FIND_ACCOUNT_DIALOG@@MEAAHAEBVCONTROL_EVENT@@@Z
2153; protected: virtual int __cdecl NT_GROUP_BROWSER_DIALOG::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2154?OnCommand@NT_GROUP_BROWSER_DIALOG@@MEAAHAEBVCONTROL_EVENT@@@Z
2155; protected: virtual int __cdecl NT_LOCALGROUP_BROWSER_DIALOG::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2156?OnCommand@NT_LOCALGROUP_BROWSER_DIALOG@@MEAAHAEBVCONTROL_EVENT@@@Z
2157; protected: virtual int __cdecl NT_USER_BROWSER_DIALOG::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2158?OnCommand@NT_USER_BROWSER_DIALOG@@MEAAHAEBVCONTROL_EVENT@@@Z
2159; protected: virtual int __cdecl OPEN_DIALOG_BASE::OnCommand(class CONTROL_EVENT const & __ptr64) __ptr64
2160?OnCommand@OPEN_DIALOG_BASE@@MEAAHAEBVCONTROL_EVENT@@@Z
2161; public: static int __cdecl LBI::OnCompareItem(unsigned __int64,__int64)
2162?OnCompareItem@LBI@@SAH_K_J@Z
2163; protected: virtual void __cdecl DIALOG_WINDOW::OnControlError(unsigned int,long) __ptr64
2164?OnControlError@DIALOG_WINDOW@@MEAAXIJ@Z
2165; public: virtual struct HBRUSH__ * __ptr64 __cdecl BLT_BACKGROUND_EDIT::OnCtlColor(struct HDC__ * __ptr64,struct HWND__ * __ptr64,unsigned int * __ptr64) __ptr64
2166?OnCtlColor@BLT_BACKGROUND_EDIT@@UEAAPEAUHBRUSH__@@PEAUHDC__@@PEAUHWND__@@PEAI@Z
2167; public: virtual struct HBRUSH__ * __ptr64 __cdecl CONTROL_WINDOW::OnCtlColor(struct HDC__ * __ptr64,struct HWND__ * __ptr64,unsigned int * __ptr64) __ptr64
2168?OnCtlColor@CONTROL_WINDOW@@UEAAPEAUHBRUSH__@@PEAUHDC__@@PEAUHWND__@@PEAI@Z
2169; protected: virtual struct HBRUSH__ * __ptr64 __cdecl DIALOG_WINDOW::OnCtlColor(struct HDC__ * __ptr64,struct HWND__ * __ptr64,unsigned int * __ptr64) __ptr64
2170?OnCtlColor@DIALOG_WINDOW@@MEAAPEAUHBRUSH__@@PEAUHDC__@@PEAUHWND__@@PEAI@Z
2171; public: virtual struct HBRUSH__ * __ptr64 __cdecl SPIN_SLT_SEPARATOR::OnCtlColor(struct HDC__ * __ptr64,struct HWND__ * __ptr64,unsigned int * __ptr64) __ptr64
2172?OnCtlColor@SPIN_SLT_SEPARATOR@@UEAAPEAUHBRUSH__@@PEAUHDC__@@PEAUHWND__@@PEAI@Z
2173; protected: virtual int __cdecl CLIENT_WINDOW::OnDblClick(class CONTROL_EVENT const & __ptr64) __ptr64
2174?OnDblClick@CLIENT_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2175; protected: virtual int __cdecl CLIENT_WINDOW::OnDeactivation(class ACTIVATION_EVENT const & __ptr64) __ptr64
2176?OnDeactivation@CLIENT_WINDOW@@MEAAHAEBVACTIVATION_EVENT@@@Z
2177; protected: virtual int __cdecl DISPATCHER::OnDeactivation(class ACTIVATION_EVENT const & __ptr64) __ptr64
2178?OnDeactivation@DISPATCHER@@MEAAHAEBVACTIVATION_EVENT@@@Z
2179; protected: virtual int __cdecl CLIENT_WINDOW::OnDefocus(class FOCUS_EVENT const & __ptr64) __ptr64
2180?OnDefocus@CLIENT_WINDOW@@MEAAHAEBVFOCUS_EVENT@@@Z
2181; protected: virtual int __cdecl DISPATCHER::OnDefocus(class FOCUS_EVENT const & __ptr64) __ptr64
2182?OnDefocus@DISPATCHER@@MEAAHAEBVFOCUS_EVENT@@@Z
2183; protected: virtual int __cdecl FOCUS_CHECKBOX::OnDefocus(class FOCUS_EVENT const & __ptr64) __ptr64
2184?OnDefocus@FOCUS_CHECKBOX@@MEAAHAEBVFOCUS_EVENT@@@Z
2185; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnDefocus(class FOCUS_EVENT const & __ptr64) __ptr64
2186?OnDefocus@LOGON_HOURS_CONTROL@@MEAAHAEBVFOCUS_EVENT@@@Z
2187; protected: virtual int __cdecl SPIN_SLE_NUM::OnDefocus(class FOCUS_EVENT const & __ptr64) __ptr64
2188?OnDefocus@SPIN_SLE_NUM@@MEAAHAEBVFOCUS_EVENT@@@Z
2189; protected: virtual int __cdecl SPIN_SLE_NUM_VALID::OnDefocus(class FOCUS_EVENT const & __ptr64) __ptr64
2190?OnDefocus@SPIN_SLE_NUM_VALID@@MEAAHAEBVFOCUS_EVENT@@@Z
2191; protected: virtual void __cdecl LAZY_LISTBOX::OnDeleteItem(class LBI * __ptr64) __ptr64
2192?OnDeleteItem@LAZY_LISTBOX@@MEAAXPEAVLBI@@@Z
2193; public: static void __cdecl LBI::OnDeleteItem(unsigned __int64,__int64)
2194?OnDeleteItem@LBI@@SAX_K_J@Z
2195; protected: virtual void __cdecl USER_BROWSER_LB::OnDeleteItem(class LBI * __ptr64) __ptr64
2196?OnDeleteItem@USER_BROWSER_LB@@MEAAXPEAVLBI@@@Z
2197; protected: virtual int __cdecl CLIENT_WINDOW::OnDestroy(void) __ptr64
2198?OnDestroy@CLIENT_WINDOW@@MEAAHXZ
2199; protected: virtual int __cdecl DISPATCHER::OnDestroy(void) __ptr64
2200?OnDestroy@DISPATCHER@@MEAAHXZ
2201; protected: virtual int __cdecl DIALOG_WINDOW::OnDlgActivation(class ACTIVATION_EVENT const & __ptr64) __ptr64
2202?OnDlgActivation@DIALOG_WINDOW@@MEAAHAEBVACTIVATION_EVENT@@@Z
2203; protected: virtual int __cdecl DIALOG_WINDOW::OnDlgDeactivation(class ACTIVATION_EVENT const & __ptr64) __ptr64
2204?OnDlgDeactivation@DIALOG_WINDOW@@MEAAHAEBVACTIVATION_EVENT@@@Z
2205; protected: virtual int __cdecl NT_USER_BROWSER_DIALOG::OnDlgDeactivation(class ACTIVATION_EVENT const & __ptr64) __ptr64
2206?OnDlgDeactivation@NT_USER_BROWSER_DIALOG@@MEAAHAEBVACTIVATION_EVENT@@@Z
2207; protected: long __cdecl NT_USER_BROWSER_DIALOG::OnDomainChange(class BROWSER_DOMAIN * __ptr64,class ADMIN_AUTHORITY const * __ptr64) __ptr64
2208?OnDomainChange@NT_USER_BROWSER_DIALOG@@IEAAJPEAVBROWSER_DOMAIN@@PEBVADMIN_AUTHORITY@@@Z
2209; private: void __cdecl BASE_SET_FOCUS_DLG::OnDomainLBChange(void) __ptr64
2210?OnDomainLBChange@BASE_SET_FOCUS_DLG@@AEAAXXZ
2211; public: void __cdecl HIER_LISTBOX::OnDoubleClick(class HIER_LBI * __ptr64) __ptr64
2212?OnDoubleClick@HIER_LISTBOX@@QEAAXPEAVHIER_LBI@@@Z
2213; protected: virtual void __cdecl H_SPLITTER_BAR::OnDragRelease(class XYPOINT const & __ptr64) __ptr64
2214?OnDragRelease@H_SPLITTER_BAR@@MEAAXAEBVXYPOINT@@@Z
2215; protected: virtual int __cdecl CLIENT_WINDOW::OnDropDown(class CONTROL_EVENT const & __ptr64) __ptr64
2216?OnDropDown@CLIENT_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2217; protected: virtual int __cdecl CLIENT_WINDOW::OnEnter(class CONTROL_EVENT const & __ptr64) __ptr64
2218?OnEnter@CLIENT_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2219; protected: virtual int __cdecl SPIN_SLE_NUM::OnEnter(class CONTROL_EVENT const & __ptr64) __ptr64
2220?OnEnter@SPIN_SLE_NUM@@MEAAHAEBVCONTROL_EVENT@@@Z
2221; protected: virtual int __cdecl SPIN_SLE_NUM_VALID::OnEnter(class CONTROL_EVENT const & __ptr64) __ptr64
2222?OnEnter@SPIN_SLE_NUM_VALID@@MEAAHAEBVCONTROL_EVENT@@@Z
2223; protected: virtual void __cdecl EXPANDABLE_DIALOG::OnExpand(void) __ptr64
2224?OnExpand@EXPANDABLE_DIALOG@@MEAAXXZ
2225; protected: virtual int __cdecl CLIENT_WINDOW::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2226?OnFocus@CLIENT_WINDOW@@MEAAHAEBVFOCUS_EVENT@@@Z
2227; protected: virtual int __cdecl DISPATCHER::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2228?OnFocus@DISPATCHER@@MEAAHAEBVFOCUS_EVENT@@@Z
2229; protected: virtual int __cdecl FOCUS_CHECKBOX::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2230?OnFocus@FOCUS_CHECKBOX@@MEAAHAEBVFOCUS_EVENT@@@Z
2231; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2232?OnFocus@LOGON_HOURS_CONTROL@@MEAAHAEBVFOCUS_EVENT@@@Z
2233; protected: virtual int __cdecl SPIN_ITEM::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2234?OnFocus@SPIN_ITEM@@MEAAHAEBVFOCUS_EVENT@@@Z
2235; protected: virtual int __cdecl SPIN_SLE_NUM::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2236?OnFocus@SPIN_SLE_NUM@@MEAAHAEBVFOCUS_EVENT@@@Z
2237; protected: virtual int __cdecl SPIN_SLE_STR::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2238?OnFocus@SPIN_SLE_STR@@MEAAHAEBVFOCUS_EVENT@@@Z
2239; protected: virtual int __cdecl STATIC_SPIN_ITEM::OnFocus(class FOCUS_EVENT const & __ptr64) __ptr64
2240?OnFocus@STATIC_SPIN_ITEM@@MEAAHAEBVFOCUS_EVENT@@@Z
2241; protected: virtual long __cdecl CONTROL_GROUP::OnGroupAction(class CONTROL_GROUP * __ptr64) __ptr64
2242?OnGroupAction@CONTROL_GROUP@@MEAAJPEAV1@@Z
2243; protected: virtual long __cdecl MAGIC_GROUP::OnGroupAction(class CONTROL_GROUP * __ptr64) __ptr64
2244?OnGroupAction@MAGIC_GROUP@@MEAAJPEAVCONTROL_GROUP@@@Z
2245; private: int __cdecl DIALOG_WINDOW::OnHelp(void) __ptr64
2246?OnHelp@DIALOG_WINDOW@@AEAAHXZ
2247; public: void __cdecl GET_FNAME_BASE_DLG::OnHelp(struct HWND__ * __ptr64) __ptr64
2248?OnHelp@GET_FNAME_BASE_DLG@@QEAAXPEAUHWND__@@@Z
2249; protected: virtual int __cdecl CLIENT_WINDOW::OnKeyDown(class VKEY_EVENT const & __ptr64) __ptr64
2250?OnKeyDown@CLIENT_WINDOW@@MEAAHAEBVVKEY_EVENT@@@Z
2251; protected: virtual int __cdecl DISPATCHER::OnKeyDown(class VKEY_EVENT const & __ptr64) __ptr64
2252?OnKeyDown@DISPATCHER@@MEAAHAEBVVKEY_EVENT@@@Z
2253; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnKeyDown(class VKEY_EVENT const & __ptr64) __ptr64
2254?OnKeyDown@LOGON_HOURS_CONTROL@@MEAAHAEBVVKEY_EVENT@@@Z
2255; protected: virtual int __cdecl SPIN_SLE_NUM::OnKeyDown(class VKEY_EVENT const & __ptr64) __ptr64
2256?OnKeyDown@SPIN_SLE_NUM@@MEAAHAEBVVKEY_EVENT@@@Z
2257; protected: virtual int __cdecl SPIN_SLE_STR::OnKeyDown(class VKEY_EVENT const & __ptr64) __ptr64
2258?OnKeyDown@SPIN_SLE_STR@@MEAAHAEBVVKEY_EVENT@@@Z
2259; protected: virtual int __cdecl CLIENT_WINDOW::OnKeyUp(class VKEY_EVENT const & __ptr64) __ptr64
2260?OnKeyUp@CLIENT_WINDOW@@MEAAHAEBVVKEY_EVENT@@@Z
2261; protected: virtual int __cdecl DISPATCHER::OnKeyUp(class VKEY_EVENT const & __ptr64) __ptr64
2262?OnKeyUp@DISPATCHER@@MEAAHAEBVVKEY_EVENT@@@Z
2263; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnKeyUp(class VKEY_EVENT const & __ptr64) __ptr64
2264?OnKeyUp@LOGON_HOURS_CONTROL@@MEAAHAEBVVKEY_EVENT@@@Z
2265; protected: static int __cdecl OWNER_WINDOW::OnLBIMessages(unsigned int,unsigned __int64,__int64)
2266?OnLBIMessages@OWNER_WINDOW@@KAHI_K_J@Z
2267; protected: virtual int __cdecl ARROW_BUTTON::OnLMouseButtonDblClick(class MOUSE_EVENT const & __ptr64) __ptr64
2268?OnLMouseButtonDblClick@ARROW_BUTTON@@MEAAHAEBVMOUSE_EVENT@@@Z
2269; protected: virtual int __cdecl CLIENT_WINDOW::OnLMouseButtonDblClick(class MOUSE_EVENT const & __ptr64) __ptr64
2270?OnLMouseButtonDblClick@CLIENT_WINDOW@@MEAAHAEBVMOUSE_EVENT@@@Z
2271; protected: virtual int __cdecl DISPATCHER::OnLMouseButtonDblClick(class MOUSE_EVENT const & __ptr64) __ptr64
2272?OnLMouseButtonDblClick@DISPATCHER@@MEAAHAEBVMOUSE_EVENT@@@Z
2273; protected: virtual int __cdecl ARROW_BUTTON::OnLMouseButtonDown(class MOUSE_EVENT const & __ptr64) __ptr64
2274?OnLMouseButtonDown@ARROW_BUTTON@@MEAAHAEBVMOUSE_EVENT@@@Z
2275; protected: virtual int __cdecl CLIENT_WINDOW::OnLMouseButtonDown(class MOUSE_EVENT const & __ptr64) __ptr64
2276?OnLMouseButtonDown@CLIENT_WINDOW@@MEAAHAEBVMOUSE_EVENT@@@Z
2277; protected: virtual int __cdecl DISPATCHER::OnLMouseButtonDown(class MOUSE_EVENT const & __ptr64) __ptr64
2278?OnLMouseButtonDown@DISPATCHER@@MEAAHAEBVMOUSE_EVENT@@@Z
2279; protected: virtual int __cdecl H_SPLITTER_BAR::OnLMouseButtonDown(class MOUSE_EVENT const & __ptr64) __ptr64
2280?OnLMouseButtonDown@H_SPLITTER_BAR@@MEAAHAEBVMOUSE_EVENT@@@Z
2281; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnLMouseButtonDown(class MOUSE_EVENT const & __ptr64) __ptr64
2282?OnLMouseButtonDown@LOGON_HOURS_CONTROL@@MEAAHAEBVMOUSE_EVENT@@@Z
2283; protected: virtual int __cdecl ARROW_BUTTON::OnLMouseButtonUp(class MOUSE_EVENT const & __ptr64) __ptr64
2284?OnLMouseButtonUp@ARROW_BUTTON@@MEAAHAEBVMOUSE_EVENT@@@Z
2285; protected: virtual int __cdecl CLIENT_WINDOW::OnLMouseButtonUp(class MOUSE_EVENT const & __ptr64) __ptr64
2286?OnLMouseButtonUp@CLIENT_WINDOW@@MEAAHAEBVMOUSE_EVENT@@@Z
2287; protected: virtual int __cdecl DISPATCHER::OnLMouseButtonUp(class MOUSE_EVENT const & __ptr64) __ptr64
2288?OnLMouseButtonUp@DISPATCHER@@MEAAHAEBVMOUSE_EVENT@@@Z
2289; protected: virtual int __cdecl H_SPLITTER_BAR::OnLMouseButtonUp(class MOUSE_EVENT const & __ptr64) __ptr64
2290?OnLMouseButtonUp@H_SPLITTER_BAR@@MEAAHAEBVMOUSE_EVENT@@@Z
2291; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnLMouseButtonUp(class MOUSE_EVENT const & __ptr64) __ptr64
2292?OnLMouseButtonUp@LOGON_HOURS_CONTROL@@MEAAHAEBVMOUSE_EVENT@@@Z
2293; protected: long __cdecl NT_LOCALGROUP_BROWSER_DIALOG::OnMembers(void) __ptr64
2294?OnMembers@NT_LOCALGROUP_BROWSER_DIALOG@@IEAAJXZ
2295; protected: long __cdecl NT_USER_BROWSER_DIALOG::OnMembers(void) __ptr64
2296?OnMembers@NT_USER_BROWSER_DIALOG@@IEAAJXZ
2297; protected: virtual int __cdecl APP_WINDOW::OnMenuCommand(unsigned int) __ptr64
2298?OnMenuCommand@APP_WINDOW@@MEAAHI@Z
2299; protected: virtual int __cdecl APP_WINDOW::OnMenuInit(class MENU_EVENT const & __ptr64) __ptr64
2300?OnMenuInit@APP_WINDOW@@MEAAHAEBVMENU_EVENT@@@Z
2301; protected: virtual int __cdecl APP_WINDOW::OnMenuSelect(class MENUITEM_EVENT const & __ptr64) __ptr64
2302?OnMenuSelect@APP_WINDOW@@MEAAHAEBVMENUITEM_EVENT@@@Z
2303; protected: virtual int __cdecl CLIENT_WINDOW::OnMouseMove(class MOUSE_EVENT const & __ptr64) __ptr64
2304?OnMouseMove@CLIENT_WINDOW@@MEAAHAEBVMOUSE_EVENT@@@Z
2305; protected: virtual int __cdecl DISPATCHER::OnMouseMove(class MOUSE_EVENT const & __ptr64) __ptr64
2306?OnMouseMove@DISPATCHER@@MEAAHAEBVMOUSE_EVENT@@@Z
2307; protected: virtual int __cdecl H_SPLITTER_BAR::OnMouseMove(class MOUSE_EVENT const & __ptr64) __ptr64
2308?OnMouseMove@H_SPLITTER_BAR@@MEAAHAEBVMOUSE_EVENT@@@Z
2309; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnMouseMove(class MOUSE_EVENT const & __ptr64) __ptr64
2310?OnMouseMove@LOGON_HOURS_CONTROL@@MEAAHAEBVMOUSE_EVENT@@@Z
2311; protected: virtual int __cdecl CLIENT_WINDOW::OnMove(class MOVE_EVENT const & __ptr64) __ptr64
2312?OnMove@CLIENT_WINDOW@@MEAAHAEBVMOVE_EVENT@@@Z
2313; protected: virtual int __cdecl DISPATCHER::OnMove(class MOVE_EVENT const & __ptr64) __ptr64
2314?OnMove@DISPATCHER@@MEAAHAEBVMOVE_EVENT@@@Z
2315; protected: virtual class LBI * __ptr64 __cdecl USER_BROWSER_LB::OnNewItem(unsigned int) __ptr64
2316?OnNewItem@USER_BROWSER_LB@@MEAAPEAVLBI@@I@Z
2317; protected: virtual int __cdecl BASE_SET_FOCUS_DLG::OnOK(void) __ptr64
2318?OnOK@BASE_SET_FOCUS_DLG@@MEAAHXZ
2319; protected: virtual int __cdecl DIALOG_WINDOW::OnOK(void) __ptr64
2320?OnOK@DIALOG_WINDOW@@MEAAHXZ
2321; protected: virtual int __cdecl MSGPOPUP_DIALOG::OnOK(void) __ptr64
2322?OnOK@MSGPOPUP_DIALOG@@MEAAHXZ
2323; private: virtual int __cdecl MSG_DIALOG_BASE::OnOK(void) __ptr64
2324?OnOK@MSG_DIALOG_BASE@@EEAAHXZ
2325; protected: virtual int __cdecl NT_FIND_ACCOUNT_DIALOG::OnOK(void) __ptr64
2326?OnOK@NT_FIND_ACCOUNT_DIALOG@@MEAAHXZ
2327; protected: virtual int __cdecl NT_USER_BROWSER_DIALOG::OnOK(void) __ptr64
2328?OnOK@NT_USER_BROWSER_DIALOG@@MEAAHXZ
2329; protected: virtual int __cdecl PROMPT_FOR_ANY_DC_DLG::OnOK(void) __ptr64
2330?OnOK@PROMPT_FOR_ANY_DC_DLG@@MEAAHXZ
2331; protected: virtual int __cdecl CLIENT_WINDOW::OnOther(class EVENT const & __ptr64) __ptr64
2332?OnOther@CLIENT_WINDOW@@MEAAHAEBVEVENT@@@Z
2333; protected: virtual int __cdecl APP_WINDOW::OnPaintReq(void) __ptr64
2334?OnPaintReq@APP_WINDOW@@MEAAHXZ
2335; protected: virtual int __cdecl CLIENT_WINDOW::OnPaintReq(void) __ptr64
2336?OnPaintReq@CLIENT_WINDOW@@MEAAHXZ
2337; protected: virtual int __cdecl DISPATCHER::OnPaintReq(void) __ptr64
2338?OnPaintReq@DISPATCHER@@MEAAHXZ
2339; protected: virtual int __cdecl FOCUS_CHECKBOX::OnPaintReq(void) __ptr64
2340?OnPaintReq@FOCUS_CHECKBOX@@MEAAHXZ
2341; protected: virtual int __cdecl H_SPLITTER_BAR::OnPaintReq(void) __ptr64
2342?OnPaintReq@H_SPLITTER_BAR@@MEAAHXZ
2343; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnPaintReq(void) __ptr64
2344?OnPaintReq@LOGON_HOURS_CONTROL@@MEAAHXZ
2345; protected: virtual int __cdecl METER::OnPaintReq(void) __ptr64
2346?OnPaintReq@METER@@MEAAHXZ
2347; protected: virtual unsigned long __cdecl DISPATCHER::OnQDlgCode(void) __ptr64
2348?OnQDlgCode@DISPATCHER@@MEAAKXZ
2349; protected: virtual unsigned long __cdecl LOGON_HOURS_CONTROL::OnQDlgCode(void) __ptr64
2350?OnQDlgCode@LOGON_HOURS_CONTROL@@MEAAKXZ
2351; protected: virtual unsigned long __cdecl DISPATCHER::OnQHitTest(class XYPOINT const & __ptr64) __ptr64
2352?OnQHitTest@DISPATCHER@@MEAAKAEBVXYPOINT@@@Z
2353; protected: virtual unsigned long __cdecl H_SPLITTER_BAR::OnQHitTest(class XYPOINT const & __ptr64) __ptr64
2354?OnQHitTest@H_SPLITTER_BAR@@MEAAKAEBVXYPOINT@@@Z
2355; protected: virtual unsigned long __cdecl LOGON_HOURS_CONTROL::OnQHitTest(class XYPOINT const & __ptr64) __ptr64
2356?OnQHitTest@LOGON_HOURS_CONTROL@@MEAAKAEBVXYPOINT@@@Z
2357; protected: virtual int __cdecl APP_WINDOW::OnQMinMax(class QMINMAX_EVENT & __ptr64) __ptr64
2358?OnQMinMax@APP_WINDOW@@MEAAHAEAVQMINMAX_EVENT@@@Z
2359; protected: virtual unsigned long __cdecl DISPATCHER::OnQMouseActivate(class QMOUSEACT_EVENT const & __ptr64) __ptr64
2360?OnQMouseActivate@DISPATCHER@@MEAAKAEBVQMOUSEACT_EVENT@@@Z
2361; protected: virtual unsigned long __cdecl LOGON_HOURS_CONTROL::OnQMouseActivate(class QMOUSEACT_EVENT const & __ptr64) __ptr64
2362?OnQMouseActivate@LOGON_HOURS_CONTROL@@MEAAKAEBVQMOUSEACT_EVENT@@@Z
2363; protected: virtual int __cdecl DISPATCHER::OnQMouseCursor(class QMOUSEACT_EVENT const & __ptr64) __ptr64
2364?OnQMouseCursor@DISPATCHER@@MEAAHAEBVQMOUSEACT_EVENT@@@Z
2365; protected: virtual int __cdecl H_SPLITTER_BAR::OnQMouseCursor(class QMOUSEACT_EVENT const & __ptr64) __ptr64
2366?OnQMouseCursor@H_SPLITTER_BAR@@MEAAHAEBVQMOUSEACT_EVENT@@@Z
2367; protected: virtual int __cdecl LOGON_HOURS_CONTROL::OnQMouseCursor(class QMOUSEACT_EVENT const & __ptr64) __ptr64
2368?OnQMouseCursor@LOGON_HOURS_CONTROL@@MEAAHAEBVQMOUSEACT_EVENT@@@Z
2369; protected: long __cdecl SLE_STRLB_GROUP::OnRemove(void) __ptr64
2370?OnRemove@SLE_STRLB_GROUP@@IEAAJXZ
2371; protected: virtual int __cdecl CLIENT_WINDOW::OnResize(class SIZE_EVENT const & __ptr64) __ptr64
2372?OnResize@CLIENT_WINDOW@@MEAAHAEBVSIZE_EVENT@@@Z
2373; protected: virtual int __cdecl DISPATCHER::OnResize(class SIZE_EVENT const & __ptr64) __ptr64
2374?OnResize@DISPATCHER@@MEAAHAEBVSIZE_EVENT@@@Z
2375; protected: virtual int __cdecl H_SPLITTER_BAR::OnResize(class SIZE_EVENT const & __ptr64) __ptr64
2376?OnResize@H_SPLITTER_BAR@@MEAAHAEBVSIZE_EVENT@@@Z
2377; protected: virtual int __cdecl DIALOG_WINDOW::OnScrollBar(class SCROLL_EVENT const & __ptr64) __ptr64
2378?OnScrollBar@DIALOG_WINDOW@@MEAAHAEBVSCROLL_EVENT@@@Z
2379; protected: virtual int __cdecl DIALOG_WINDOW::OnScrollBarThumb(class SCROLL_THUMB_EVENT const & __ptr64) __ptr64
2380?OnScrollBarThumb@DIALOG_WINDOW@@MEAAHAEBVSCROLL_THUMB_EVENT@@@Z
2381; protected: long __cdecl NT_USER_BROWSER_DIALOG::OnSearch(void) __ptr64
2382?OnSearch@NT_USER_BROWSER_DIALOG@@IEAAJXZ
2383; protected: virtual int __cdecl CLIENT_WINDOW::OnSelect(class CONTROL_EVENT const & __ptr64) __ptr64
2384?OnSelect@CLIENT_WINDOW@@MEAAHAEBVCONTROL_EVENT@@@Z
2385; protected: long __cdecl NT_USER_BROWSER_DIALOG::OnShowUsers(void) __ptr64
2386?OnShowUsers@NT_USER_BROWSER_DIALOG@@IEAAJXZ
2387; protected: virtual void __cdecl APP_WINDOW::OnShutdown(void) __ptr64
2388?OnShutdown@APP_WINDOW@@MEAAXXZ
2389; protected: virtual void __cdecl DIALOG_WINDOW::OnSysColorChange(void) __ptr64
2390?OnSysColorChange@DIALOG_WINDOW@@MEAAXXZ
2391; protected: virtual int __cdecl APP_WINDOW::OnSystemChange(class SYSCHANGE_EVENT const & __ptr64) __ptr64
2392?OnSystemChange@APP_WINDOW@@MEAAHAEBVSYSCHANGE_EVENT@@@Z
2393; protected: virtual int __cdecl ARROW_BUTTON::OnTimer(class TIMER_EVENT const & __ptr64) __ptr64
2394?OnTimer@ARROW_BUTTON@@MEAAHAEBVTIMER_EVENT@@@Z
2395; protected: virtual int __cdecl CANCEL_TASK_DIALOG::OnTimer(class TIMER_EVENT const & __ptr64) __ptr64
2396?OnTimer@CANCEL_TASK_DIALOG@@MEAAHAEBVTIMER_EVENT@@@Z
2397; protected: virtual int __cdecl CLIENT_WINDOW::OnTimer(class TIMER_EVENT const & __ptr64) __ptr64
2398?OnTimer@CLIENT_WINDOW@@MEAAHAEBVTIMER_EVENT@@@Z
2399; protected: virtual int __cdecl DIALOG_WINDOW::OnTimer(class TIMER_EVENT const & __ptr64) __ptr64
2400?OnTimer@DIALOG_WINDOW@@MEAAHAEBVTIMER_EVENT@@@Z
2401; protected: virtual int __cdecl DISPATCHER::OnTimer(class TIMER_EVENT const & __ptr64) __ptr64
2402?OnTimer@DISPATCHER@@MEAAHAEBVTIMER_EVENT@@@Z
2403; protected: virtual int __cdecl TIMER_WINDOW::OnTimer(class TIMER_EVENT const & __ptr64) __ptr64
2404?OnTimer@TIMER_WINDOW@@MEAAHAEBVTIMER_EVENT@@@Z
2405; protected: virtual void __cdecl TIMER_CALLOUT::OnTimerNotification(unsigned int) __ptr64
2406?OnTimerNotification@TIMER_CALLOUT@@MEAAXI@Z
2407; protected: virtual long __cdecl CONTROL_GROUP::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2408?OnUserAction@CONTROL_GROUP@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2409; protected: virtual long __cdecl CONTROL_WINDOW::OnUserAction(class CONTROL_EVENT const & __ptr64) __ptr64
2410?OnUserAction@CONTROL_WINDOW@@MEAAJAEBVCONTROL_EVENT@@@Z
2411; protected: virtual long __cdecl LM_OLLB::OnUserAction(class CONTROL_EVENT const & __ptr64) __ptr64
2412?OnUserAction@LM_OLLB@@MEAAJAEBVCONTROL_EVENT@@@Z
2413; protected: virtual long __cdecl MAGIC_GROUP::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2414?OnUserAction@MAGIC_GROUP@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2415; protected: virtual long __cdecl ORDER_GROUP::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2416?OnUserAction@ORDER_GROUP@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2417; protected: virtual long __cdecl RADIO_GROUP::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2418?OnUserAction@RADIO_GROUP@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2419; protected: virtual long __cdecl SET_CONTROL::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2420?OnUserAction@SET_CONTROL@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2421; protected: virtual long __cdecl SLE_STRLB_GROUP::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2422?OnUserAction@SLE_STRLB_GROUP@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2423; protected: virtual long __cdecl SPIN_GROUP::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2424?OnUserAction@SPIN_GROUP@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2425; protected: virtual long __cdecl STATELBGRP::OnUserAction(class CONTROL_WINDOW * __ptr64,class CONTROL_EVENT const & __ptr64) __ptr64
2426?OnUserAction@STATELBGRP@@MEAAJPEAVCONTROL_WINDOW@@AEBVCONTROL_EVENT@@@Z
2427; protected: virtual int __cdecl BASE_SET_FOCUS_DLG::OnUserMessage(class EVENT const & __ptr64) __ptr64
2428?OnUserMessage@BASE_SET_FOCUS_DLG@@MEAAHAEBVEVENT@@@Z
2429; protected: virtual int __cdecl DISPATCHER::OnUserMessage(class EVENT const & __ptr64) __ptr64
2430?OnUserMessage@DISPATCHER@@MEAAHAEBVEVENT@@@Z
2431; protected: virtual int __cdecl NT_USER_BROWSER_DIALOG::OnUserMessage(class EVENT const & __ptr64) __ptr64
2432?OnUserMessage@NT_USER_BROWSER_DIALOG@@MEAAHAEBVEVENT@@@Z
2433; protected: virtual int __cdecl OWNER_WINDOW::OnUserMessage(class EVENT const & __ptr64) __ptr64
2434?OnUserMessage@OWNER_WINDOW@@MEAAHAEBVEVENT@@@Z
2435; protected: virtual void __cdecl DIALOG_WINDOW::OnValidationError(unsigned int,long) __ptr64
2436?OnValidationError@DIALOG_WINDOW@@MEAAXIJ@Z
2437; private: class LISTBOX * __ptr64 __cdecl SET_CONTROL::OtherListbox(class LISTBOX * __ptr64)const __ptr64
2438?OtherListbox@SET_CONTROL@@AEBAPEAVLISTBOX@@PEAV2@@Z
2439; public: virtual void __cdecl BROWSER_DOMAIN_LBI::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
2440?Paint@BROWSER_DOMAIN_LBI@@UEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
2441; public: virtual void __cdecl BROWSER_DOMAIN_LBI_PB::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
2442?Paint@BROWSER_DOMAIN_LBI_PB@@UEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
2443; public: virtual void __cdecl COUNTED_STR_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2444?Paint@COUNTED_STR_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2445; public: int __cdecl DISPLAY_MAP::Paint(struct HDC__ * __ptr64,int,int)const __ptr64
2446?Paint@DISPLAY_MAP@@QEBAHPEAUHDC__@@HH@Z
2447; public: void __cdecl DISPLAY_TABLE::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2448?Paint@DISPLAY_TABLE@@QEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@@Z
2449; public: void __cdecl DISPLAY_TABLE::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
2450?Paint@DISPLAY_TABLE@@QEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
2451; public: virtual void __cdecl DM_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2452?Paint@DM_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2453; public: virtual void __cdecl LBI::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
2454?Paint@LBI@@UEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
2455; public: virtual void __cdecl METALLIC_STR_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2456?Paint@METALLIC_STR_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2457; public: virtual void __cdecl MULTILINE_STR_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2458?Paint@MULTILINE_STR_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2459; public: virtual void __cdecl OLLB_ENTRY::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
2460?Paint@OLLB_ENTRY@@UEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
2461; public: virtual void __cdecl OWNER_DRAW_DMID_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2462?Paint@OWNER_DRAW_DMID_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2463; public: virtual void __cdecl OWNER_DRAW_MULTILINE_STR_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2464?Paint@OWNER_DRAW_MULTILINE_STR_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2465; public: virtual void __cdecl OWNER_DRAW_STR_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2466?Paint@OWNER_DRAW_STR_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2467; protected: virtual void __cdecl STLBITEM::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
2468?Paint@STLBITEM@@MEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
2469; public: virtual void __cdecl STR_DTE::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2470?Paint@STR_DTE@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2471; public: virtual void __cdecl STR_DTE_ELLIPSIS::Paint(struct HDC__ * __ptr64,struct tagRECT const * __ptr64)const __ptr64
2472?Paint@STR_DTE_ELLIPSIS@@UEBAXPEAUHDC__@@PEBUtagRECT@@@Z
2473; public: virtual void __cdecl USER_BROWSER_LBI::Paint(class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
2474?Paint@USER_BROWSER_LBI@@UEBAXPEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
2475; protected: long __cdecl ACCOUNT_NAMES_MLE::ParseUserNameList(class STRLIST * __ptr64,unsigned short const * __ptr64) __ptr64
2476?ParseUserNameList@ACCOUNT_NAMES_MLE@@IEAAJPEAVSTRLIST@@PEBG@Z
2477; private: void __cdecl MSGPOPUP_DIALOG::PlaceButtons(void) __ptr64
2478?PlaceButtons@MSGPOPUP_DIALOG@@AEAAXXZ
2479; private: long __cdecl BLT_DATE_SPIN_GROUP::PlaceControl(int,class OWNER_WINDOW * __ptr64,class INTL_PROFILE const & __ptr64,class XYPOINT const & __ptr64,class XYDIMENSION const & __ptr64,class XYPOINT const & __ptr64,class XYDIMENSION const & __ptr64,class XYPOINT const & __ptr64,class XYDIMENSION const & __ptr64) __ptr64
2480?PlaceControl@BLT_DATE_SPIN_GROUP@@AEAAJHPEAVOWNER_WINDOW@@AEBVINTL_PROFILE@@AEBVXYPOINT@@AEBVXYDIMENSION@@2323@Z
2481; protected: virtual long __cdecl DOMAIN_FILL_THREAD::PostMain(void) __ptr64
2482?PostMain@DOMAIN_FILL_THREAD@@MEAAJXZ
2483; protected: virtual long __cdecl FOCUSDLG_DATA_THREAD::PostMain(void) __ptr64
2484?PostMain@FOCUSDLG_DATA_THREAD@@MEAAJXZ
2485; protected: virtual long __cdecl WIN32_THREAD::PostMain(void) __ptr64
2486?PostMain@WIN32_THREAD@@MEAAJXZ
2487; protected: virtual long __cdecl WIN32_THREAD::PreMain(void) __ptr64
2488?PreMain@WIN32_THREAD@@MEAAJXZ
2489; public: long __cdecl BASE_SET_FOCUS_DLG::Process(int * __ptr64) __ptr64
2490?Process@BASE_SET_FOCUS_DLG@@QEAAJPEAH@Z
2491; public: long __cdecl BASE_SET_FOCUS_DLG::Process(unsigned int * __ptr64) __ptr64
2492?Process@BASE_SET_FOCUS_DLG@@QEAAJPEAI@Z
2493; public: long __cdecl DIALOG_WINDOW::Process(int * __ptr64) __ptr64
2494?Process@DIALOG_WINDOW@@QEAAJPEAH@Z
2495; public: long __cdecl DIALOG_WINDOW::Process(unsigned int * __ptr64) __ptr64
2496?Process@DIALOG_WINDOW@@QEAAJPEAI@Z
2497; public: long __cdecl EXPANDABLE_DIALOG::Process(int * __ptr64) __ptr64
2498?Process@EXPANDABLE_DIALOG@@QEAAJPEAH@Z
2499; public: long __cdecl EXPANDABLE_DIALOG::Process(unsigned int * __ptr64) __ptr64
2500?Process@EXPANDABLE_DIALOG@@QEAAJPEAI@Z
2501; public: virtual long __cdecl GET_OPEN_FILENAME_DLG::Process(int * __ptr64) __ptr64
2502?Process@GET_OPEN_FILENAME_DLG@@UEAAJPEAH@Z
2503; public: virtual long __cdecl GET_SAVE_FILENAME_DLG::Process(int * __ptr64) __ptr64
2504?Process@GET_SAVE_FILENAME_DLG@@UEAAJPEAH@Z
2505; public: static long __cdecl WIN32_FONT_PICKER::Process(class OWNER_WINDOW * __ptr64,int * __ptr64,class FONT * __ptr64,struct tagLOGFONTW * __ptr64,struct tagCHOOSEFONTW * __ptr64)
2506?Process@WIN32_FONT_PICKER@@SAJPEAVOWNER_WINDOW@@PEAHPEAVFONT@@PEAUtagLOGFONTW@@PEAUtagCHOOSEFONTW@@@Z
2507; private: long __cdecl BASE_SET_FOCUS_DLG::ProcessNetPath(class NLS_STR * __ptr64,long * __ptr64) __ptr64
2508?ProcessNetPath@BASE_SET_FOCUS_DLG@@AEAAJPEAVNLS_STR@@PEAJ@Z
2509; public: long __cdecl WIN32_EVENT::Pulse(void) __ptr64
2510?Pulse@WIN32_EVENT@@QEAAJXZ
2511; public: long __cdecl USER_BROWSER_LBI::QualifyDisplayName(void) __ptr64
2512?QualifyDisplayName@USER_BROWSER_LBI@@QEAAJXZ
2513; public: static struct HICON__ * __ptr64 __cdecl CURSOR::Query(void)
2514?Query@CURSOR@@SAPEAUHICON__@@XZ
2515; public: virtual long __cdecl SPIN_ITEM::QueryAccCharPos(unsigned short) __ptr64
2516?QueryAccCharPos@SPIN_ITEM@@UEAAJG@Z
2517; public: virtual long __cdecl SPIN_SLE_STR::QueryAccCharPos(unsigned short) __ptr64
2518?QueryAccCharPos@SPIN_SLE_STR@@UEAAJG@Z
2519; public: long __cdecl SPIN_ITEM::QueryAccKey(class NLS_STR * __ptr64) __ptr64
2520?QueryAccKey@SPIN_ITEM@@QEAAJPEAVNLS_STR@@@Z
2521; public: unsigned short const * __ptr64 __cdecl OPEN_LBI_BASE::QueryAccessName(void)const __ptr64
2522?QueryAccessName@OPEN_LBI_BASE@@QEBAPEBGXZ
2523; public: class SAM_DOMAIN * __ptr64 __cdecl BROWSER_DOMAIN::QueryAccountDomain(void)const __ptr64
2524?QueryAccountDomain@BROWSER_DOMAIN@@QEBAPEAVSAM_DOMAIN@@XZ
2525; public: unsigned short const * __ptr64 __cdecl BROWSER_SUBJECT::QueryAccountName(void)const __ptr64
2526?QueryAccountName@BROWSER_SUBJECT@@QEBAPEBGXZ
2527; public: unsigned short const * __ptr64 __cdecl USER_BROWSER_LBI::QueryAccountName(void)const __ptr64
2528?QueryAccountName@USER_BROWSER_LBI@@QEBAPEBGXZ
2529; protected: virtual int __cdecl H_SPLITTER_BAR::QueryActiveArea(void) __ptr64
2530?QueryActiveArea@H_SPLITTER_BAR@@MEAAHXZ
2531; protected: class PUSH_BUTTON * __ptr64 __cdecl SLE_STRLB_GROUP::QueryAddButton(void)const __ptr64
2532?QueryAddButton@SLE_STRLB_GROUP@@IEBAPEAVPUSH_BUTTON@@XZ
2533; public: class ADMIN_AUTHORITY * __ptr64 __cdecl BROWSER_DOMAIN::QueryAdminAuthority(void)const __ptr64
2534?QueryAdminAuthority@BROWSER_DOMAIN@@QEBAPEAVADMIN_AUTHORITY@@XZ
2535; public: class ADMIN_AUTHORITY * __ptr64 __cdecl DOMAIN_FILL_THREAD::QueryAdminAuthority(void)const __ptr64
2536?QueryAdminAuthority@DOMAIN_FILL_THREAD@@QEBAPEAVADMIN_AUTHORITY@@XZ
2537; public: unsigned short const * __ptr64 __cdecl UI_DOMAIN::QueryAnyDC(void)const __ptr64
2538?QueryAnyDC@UI_DOMAIN@@QEBAPEBGXZ
2539; public: int __cdecl OWNER_WINDOW::QueryAttribute(unsigned long) __ptr64
2540?QueryAttribute@OWNER_WINDOW@@QEAAHK@Z
2541; public: class AUDIT_CHECKBOXES * __ptr64 __cdecl SET_OF_AUDIT_CATEGORIES::QueryAuditCheckBox(int) __ptr64
2542?QueryAuditCheckBox@SET_OF_AUDIT_CATEGORIES@@QEAAPEAVAUDIT_CHECKBOXES@@H@Z
2543; public: int __cdecl DEVICE_CONTEXT::QueryAveCharWidth(void)const __ptr64
2544?QueryAveCharWidth@DEVICE_CONTEXT@@QEBAHXZ
2545; public: virtual unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QueryBigDecValue(void)const __ptr64
2546?QueryBigDecValue@CHANGEABLE_SPIN_ITEM@@UEBAKXZ
2547; public: virtual unsigned long __cdecl SPIN_SLE_VALID_SECOND::QueryBigDecValue(void)const __ptr64
2548?QueryBigDecValue@SPIN_SLE_VALID_SECOND@@UEBAKXZ
2549; public: virtual unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QueryBigIncValue(void)const __ptr64
2550?QueryBigIncValue@CHANGEABLE_SPIN_ITEM@@UEBAKXZ
2551; public: virtual unsigned long __cdecl SPIN_SLE_VALID_SECOND::QueryBigIncValue(void)const __ptr64
2552?QueryBigIncValue@SPIN_SLE_VALID_SECOND@@UEBAKXZ
2553; public: class BITFIELD * __ptr64 __cdecl STRING_BITSET_PAIR::QueryBitfield(void) __ptr64
2554?QueryBitfield@STRING_BITSET_PAIR@@QEAAPEAVBITFIELD@@XZ
2555; public: struct HBITMAP__ * __ptr64 __cdecl DISPLAY_MAP::QueryBitmapHandle(void)const __ptr64
2556?QueryBitmapHandle@DISPLAY_MAP@@QEBAPEAUHBITMAP__@@XZ
2557; public: long __cdecl MASK_MAP::QueryBits(unsigned int,class BITFIELD * __ptr64,class NLS_STR * __ptr64,int * __ptr64) __ptr64
2558?QueryBits@MASK_MAP@@QEAAJIPEAVBITFIELD@@PEAVNLS_STR@@PEAH@Z
2559; public: int __cdecl XYRECT::QueryBottom(void)const __ptr64
2560?QueryBottom@XYRECT@@QEBAHXZ
2561; public: class BROWSER_DOMAIN * __ptr64 __cdecl BROWSER_DOMAIN_LBI::QueryBrowserDomain(void)const __ptr64
2562?QueryBrowserDomain@BROWSER_DOMAIN_LBI@@QEBAPEAVBROWSER_DOMAIN@@XZ
2563; public: class BROWSER_DOMAIN * __ptr64 __cdecl BROWSER_DOMAIN_LBI_PB::QueryBrowserDomain(void)const __ptr64
2564?QueryBrowserDomain@BROWSER_DOMAIN_LBI_PB@@QEBAPEAVBROWSER_DOMAIN@@XZ
2565; protected: void * __ptr64 __cdecl NT_MEMORY::QueryBuffer(void)const __ptr64
2566?QueryBuffer@NT_MEMORY@@IEBAPEAXXZ
2567; protected: unsigned char const * __ptr64 __cdecl ENUM_OBJ_BASE::QueryBufferPtr(void)const __ptr64
2568?QueryBufferPtr@ENUM_OBJ_BASE@@IEBAPEBEXZ
2569; public: struct _DOMAIN_DISPLAY_GROUP const * __ptr64 __cdecl NT_GROUP_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
2570?QueryBufferPtr@NT_GROUP_ENUM_OBJ@@QEBAPEBU_DOMAIN_DISPLAY_GROUP@@XZ
2571; public: struct _SERVER_INFO_101 const * __ptr64 __cdecl SERVER1_ENUM_OBJ::QueryBufferPtr(void)const __ptr64
2572?QueryBufferPtr@SERVER1_ENUM_OBJ@@QEBAPEBU_SERVER_INFO_101@@XZ
2573; public: class SAM_DOMAIN * __ptr64 __cdecl BROWSER_DOMAIN::QueryBuiltinDomain(void)const __ptr64
2574?QueryBuiltinDomain@BROWSER_DOMAIN@@QEBAPEAVSAM_DOMAIN@@XZ
2575; private: class PUSH_BUTTON * __ptr64 __cdecl MSGPOPUP_DIALOG::QueryButton(unsigned int) __ptr64
2576?QueryButton@MSGPOPUP_DIALOG@@AEAAPEAVPUSH_BUTTON@@I@Z
2577; public: int __cdecl LIST_CONTROL::QueryCaretIndex(void)const __ptr64
2578?QueryCaretIndex@LIST_CONTROL@@QEBAHXZ
2579; public: unsigned short __cdecl CHAR_EVENT::QueryChar(void)const __ptr64
2580?QueryChar@CHAR_EVENT@@QEBAGXZ
2581; public: int __cdecl STATE2_BUTTON_CONTROL::QueryCheck(void)const __ptr64
2582?QueryCheck@STATE2_BUTTON_CONTROL@@QEBAHXZ
2583; public: unsigned int __cdecl CONTROL_ENTRY::QueryCid(void)const __ptr64
2584?QueryCid@CONTROL_ENTRY@@QEBAIXZ
2585; public: unsigned int __cdecl CONTROL_EVENT::QueryCid(void)const __ptr64
2586?QueryCid@CONTROL_EVENT@@QEBAIXZ
2587; public: unsigned int __cdecl CONTROL_WINDOW::QueryCid(void)const __ptr64
2588?QueryCid@CONTROL_WINDOW@@QEBAIXZ
2589; public: void __cdecl WINDOW::QueryClientRect(struct tagRECT * __ptr64)const __ptr64
2590?QueryClientRect@WINDOW@@QEBAXPEAUtagRECT@@@Z
2591; public: void __cdecl WINDOW::QueryClientRect(class XYRECT * __ptr64)const __ptr64
2592?QueryClientRect@WINDOW@@QEBAXPEAVXYRECT@@@Z
2593; public: unsigned int __cdecl CONTROL_EVENT::QueryCode(void)const __ptr64
2594?QueryCode@CONTROL_EVENT@@QEBAIXZ
2595; public: unsigned int const * __ptr64 __cdecl STATELB::QueryColData(void) __ptr64
2596?QueryColData@STATELB@@QEAAPEBIXZ
2597; public: unsigned int const * __ptr64 __cdecl BROWSER_DOMAIN_CB::QueryColWidthArray(void)const __ptr64
2598?QueryColWidthArray@BROWSER_DOMAIN_CB@@QEBAPEBIXZ
2599; public: unsigned int const * __ptr64 __cdecl USER_BROWSER_LB::QueryColWidthArray(void)const __ptr64
2600?QueryColWidthArray@USER_BROWSER_LB@@QEBAPEBIXZ
2601; protected: static unsigned short const * __ptr64 __cdecl CONTROL_WINDOW::QueryComboboxClassName(void)
2602?QueryComboboxClassName@CONTROL_WINDOW@@KAPEBGXZ
2603; public: enum SCROLL_EVENT::SCROLL_COMMAND __cdecl SCROLL_EVENT::QueryCommand(void)const __ptr64
2604?QueryCommand@SCROLL_EVENT@@QEBA?AW4SCROLL_COMMAND@1@XZ
2605; public: unsigned short const * __ptr64 __cdecl BROWSER_SUBJECT::QueryComment(void)const __ptr64
2606?QueryComment@BROWSER_SUBJECT@@QEBAPEBGXZ
2607; public: long __cdecl NT_GROUP_ENUM_OBJ::QueryComment(class NLS_STR * __ptr64)const __ptr64
2608?QueryComment@NT_GROUP_ENUM_OBJ@@QEBAJPEAVNLS_STR@@@Z
2609; public: unsigned short const * __ptr64 __cdecl SERVER1_ENUM_OBJ::QueryComment(void)const __ptr64
2610?QueryComment@SERVER1_ENUM_OBJ@@QEBAPEBGXZ
2611; public: unsigned short const * __ptr64 __cdecl USER_BROWSER_LBI::QueryComment(void)const __ptr64
2612?QueryComment@USER_BROWSER_LBI@@QEBAPEBGXZ
2613; protected: virtual int (__cdecl*__cdecl USER_BROWSER_LBI_CACHE::QueryCompareMethod(void)const __ptr64)(void const * __ptr64,void const * __ptr64)
2614?QueryCompareMethod@USER_BROWSER_LBI_CACHE@@MEBAP6AHPEBX0@ZXZ
2615; protected: virtual int (__cdecl*__cdecl USER_LBI_CACHE::QueryCompareMethod(void)const __ptr64)(void const * __ptr64,void const * __ptr64)
2616?QueryCompareMethod@USER_LBI_CACHE@@MEBAP6AHPEBX0@ZXZ
2617; public: class CONTROL_VALUE * __ptr64 __cdecl CONTROLVAL_CID_PAIR::QueryContVal(void)const __ptr64
2618?QueryContVal@CONTROLVAL_CID_PAIR@@QEBAPEAVCONTROL_VALUE@@XZ
2619; public: void __cdecl SPIN_SLE_NUM::QueryContent(unsigned long * __ptr64)const __ptr64
2620?QueryContent@SPIN_SLE_NUM@@QEBAXPEAK@Z
2621; public: void __cdecl SPIN_SLE_NUM::QueryContent(class NLS_STR * __ptr64)const __ptr64
2622?QueryContent@SPIN_SLE_NUM@@QEBAXPEAVNLS_STR@@@Z
2623; public: long __cdecl SPIN_SLE_STR::QueryContent(class NLS_STR * __ptr64)const __ptr64
2624?QueryContent@SPIN_SLE_STR@@QEBAJPEAVNLS_STR@@@Z
2625; public: class CONTROL_WINDOW * __ptr64 __cdecl CUSTOM_CONTROL::QueryControlWin(void)const __ptr64
2626?QueryControlWin@CUSTOM_CONTROL@@QEBAPEAVCONTROL_WINDOW@@XZ
2627; public: unsigned int __cdecl ARRAY_CONTROLVAL_CID_PAIR::QueryCount(void)const __ptr64
2628?QueryCount@ARRAY_CONTROLVAL_CID_PAIR@@QEBAIXZ
2629; public: unsigned int __cdecl BITFIELD::QueryCount(void)const __ptr64
2630?QueryCount@BITFIELD@@QEBAIXZ
2631; public: unsigned int __cdecl CONTROL_TABLE::QueryCount(void)const __ptr64
2632?QueryCount@CONTROL_TABLE@@QEBAIXZ
2633; public: int __cdecl COUNTED_STR_DTE::QueryCount(void)const __ptr64
2634?QueryCount@COUNTED_STR_DTE@@QEBAHXZ
2635; public: int __cdecl HEAP_BASE::QueryCount(void)const __ptr64
2636?QueryCount@HEAP_BASE@@QEBAHXZ
2637; public: int __cdecl LIST_CONTROL::QueryCount(void)const __ptr64
2638?QueryCount@LIST_CONTROL@@QEBAHXZ
2639; public: unsigned int __cdecl MASK_MAP::QueryCount(void) __ptr64
2640?QueryCount@MASK_MAP@@QEAAIXZ
2641; public: unsigned long __cdecl NT_MEMORY::QueryCount(void)const __ptr64
2642?QueryCount@NT_MEMORY@@QEBAKXZ
2643; public: int __cdecl RADIO_GROUP::QueryCount(void) __ptr64
2644?QueryCount@RADIO_GROUP@@QEAAHXZ
2645; public: int __cdecl SET_OF_AUDIT_CATEGORIES::QueryCount(void) __ptr64
2646?QueryCount@SET_OF_AUDIT_CATEGORIES@@QEAAHXZ
2647; public: unsigned long __cdecl USER_BROWSER_LBI_CACHE::QueryCount(void)const __ptr64
2648?QueryCount@USER_BROWSER_LBI_CACHE@@QEBAKXZ
2649; public: int __cdecl USER_LBI_CACHE::QueryCount(void)const __ptr64
2650?QueryCount@USER_LBI_CACHE@@QEBAHXZ
2651; protected: virtual long __cdecl USRLB_NT_GROUP_ENUM::QueryCountPreferences(unsigned long * __ptr64,unsigned long * __ptr64,unsigned int,unsigned long,unsigned long,unsigned long) __ptr64
2652?QueryCountPreferences@USRLB_NT_GROUP_ENUM@@MEAAJPEAK0IKKK@Z
2653; public: class CONTROL_WINDOW * __ptr64 __cdecl CONTROL_ENTRY::QueryCtrlPtr(void)const __ptr64
2654?QueryCtrlPtr@CONTROL_ENTRY@@QEBAPEAVCONTROL_WINDOW@@XZ
2655; public: class USER_BROWSER_LBI_CACHE * __ptr64 __cdecl USER_BROWSER_LB::QueryCurrentCache(void)const __ptr64
2656?QueryCurrentCache@USER_BROWSER_LB@@QEBAPEAVUSER_BROWSER_LBI_CACHE@@XZ
2657; public: class BROWSER_DOMAIN * __ptr64 __cdecl NT_USER_BROWSER_DIALOG::QueryCurrentDomainFocus(void)const __ptr64
2658?QueryCurrentDomainFocus@NT_USER_BROWSER_DIALOG@@QEBAPEAVBROWSER_DOMAIN@@XZ
2659; protected: class SPIN_ITEM * __ptr64 __cdecl SPIN_GROUP::QueryCurrentField(void)const __ptr64
2660?QueryCurrentField@SPIN_GROUP@@IEBAPEAVSPIN_ITEM@@XZ
2661; public: int __cdecl LIST_CONTROL::QueryCurrentItem(void)const __ptr64
2662?QueryCurrentItem@LIST_CONTROL@@QEBAHXZ
2663; public: unsigned short const * __ptr64 __cdecl NT_USER_BROWSER_DIALOG::QueryDCofPrimaryDomain(void) __ptr64
2664?QueryDCofPrimaryDomain@NT_USER_BROWSER_DIALOG@@QEAAPEBGXZ
2665; public: int __cdecl BLT_DATE_SPIN_GROUP::QueryDay(void)const __ptr64
2666?QueryDay@BLT_DATE_SPIN_GROUP@@QEBAHXZ
2667; public: int __cdecl WIN_TIME::QueryDay(void)const __ptr64
2668?QueryDay@WIN_TIME@@QEBAHXZ
2669; public: int __cdecl INTL_PROFILE::QueryDayPos(void)const __ptr64
2670?QueryDayPos@INTL_PROFILE@@QEBAHXZ
2671; public: unsigned long __cdecl UI_EXT::QueryDelta(void)const __ptr64
2672?QueryDelta@UI_EXT@@QEBAKXZ
2673; public: unsigned long __cdecl UI_EXT_MGR::QueryDeltaDelta(void)const __ptr64
2674?QueryDeltaDelta@UI_EXT_MGR@@QEBAKXZ
2675; private: unsigned int __cdecl HIER_LBI::QueryDescendants(void) __ptr64
2676?QueryDescendants@HIER_LBI@@AEAAIXZ
2677; public: int __cdecl H_SPLITTER_BAR::QueryDesiredHeight(void) __ptr64
2678?QueryDesiredHeight@H_SPLITTER_BAR@@QEAAHXZ
2679; public: long __cdecl DEVICE_COMBO::QueryDevice(class NLS_STR * __ptr64)const __ptr64
2680?QueryDevice@DEVICE_COMBO@@QEBAJPEAVNLS_STR@@@Z
2681; public: struct HBITMAP__ * __ptr64 __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::QueryDisable(void)const __ptr64
2682?QueryDisable@GRAPHICAL_BUTTON_WITH_DISABLE@@QEBAPEAUHBITMAP__@@XZ
2683; public: class DISPLAY_MAP * __ptr64 __cdecl BROWSER_DOMAIN_CB::QueryDisplayMap(class BROWSER_DOMAIN_LBI const * __ptr64) __ptr64
2684?QueryDisplayMap@BROWSER_DOMAIN_CB@@QEAAPEAVDISPLAY_MAP@@PEBVBROWSER_DOMAIN_LBI@@@Z
2685; public: class DISPLAY_MAP * __ptr64 __cdecl DM_DTE::QueryDisplayMap(void)const __ptr64
2686?QueryDisplayMap@DM_DTE@@QEBAPEAVDISPLAY_MAP@@XZ
2687; public: class DISPLAY_MAP * __ptr64 __cdecl SUBJECT_BITMAP_BLOCK::QueryDisplayMap(int,int,int) __ptr64
2688?QueryDisplayMap@SUBJECT_BITMAP_BLOCK@@QEAAPEAVDISPLAY_MAP@@HHH@Z
2689; public: class DISPLAY_MAP * __ptr64 __cdecl USER_BROWSER_LB::QueryDisplayMap(class USER_BROWSER_LBI const * __ptr64) __ptr64
2690?QueryDisplayMap@USER_BROWSER_LB@@QEAAPEAVDISPLAY_MAP@@PEBVUSER_BROWSER_LBI@@@Z
2691; public: unsigned short const * __ptr64 __cdecl BROWSER_DOMAIN::QueryDisplayName(void)const __ptr64
2692?QueryDisplayName@BROWSER_DOMAIN@@QEBAPEBGXZ
2693; public: unsigned short const * __ptr64 __cdecl BROWSER_DOMAIN_LBI::QueryDisplayName(void)const __ptr64
2694?QueryDisplayName@BROWSER_DOMAIN_LBI@@QEBAPEBGXZ
2695; public: unsigned short const * __ptr64 __cdecl USER_BROWSER_LBI::QueryDisplayName(void)const __ptr64
2696?QueryDisplayName@USER_BROWSER_LBI@@QEBAPEBGXZ
2697; public: unsigned int __cdecl DM_DTE::QueryDisplayWidth(void)const __ptr64
2698?QueryDisplayWidth@DM_DTE@@QEBAIXZ
2699; public: unsigned short const * __ptr64 __cdecl UI_EXT::QueryDllName(void)const __ptr64
2700?QueryDllName@UI_EXT@@QEBAPEBGXZ
2701; public: class DM_DTE * __ptr64 __cdecl OUTLINE_LISTBOX::QueryDmDte(enum OUTLINE_LB_LEVEL,int)const __ptr64
2702?QueryDmDte@OUTLINE_LISTBOX@@QEBAPEAVDM_DTE@@W4OUTLINE_LB_LEVEL@@H@Z
2703; public: class DMID_DTE * __ptr64 __cdecl SUBJECT_BITMAP_BLOCK::QueryDmDte(int,int,int) __ptr64
2704?QueryDmDte@SUBJECT_BITMAP_BLOCK@@QEAAPEAVDMID_DTE@@HHH@Z
2705; public: unsigned short const * __ptr64 __cdecl OLLB_ENTRY::QueryDomain(void)const __ptr64
2706?QueryDomain@OLLB_ENTRY@@QEBAPEBGXZ
2707; public: unsigned int __cdecl BROWSE_DOMAIN_ENUM::QueryDomainCount(void) __ptr64
2708?QueryDomainCount@BROWSE_DOMAIN_ENUM@@QEAAIXZ
2709; public: long __cdecl LSA_TRANSLATED_NAME_MEM::QueryDomainIndex(unsigned long)const __ptr64
2710?QueryDomainIndex@LSA_TRANSLATED_NAME_MEM@@QEBAJK@Z
2711; public: long __cdecl LSA_TRANSLATED_SID_MEM::QueryDomainIndex(unsigned long)const __ptr64
2712?QueryDomainIndex@LSA_TRANSLATED_SID_MEM@@QEBAJK@Z
2713; public: unsigned short const * __ptr64 __cdecl BROWSER_DOMAIN::QueryDomainName(void)const __ptr64
2714?QueryDomainName@BROWSER_DOMAIN@@QEBAPEBGXZ
2715; public: unsigned short const * __ptr64 __cdecl BROWSER_SUBJECT::QueryDomainName(void)const __ptr64
2716?QueryDomainName@BROWSER_SUBJECT@@QEBAPEBGXZ
2717; public: unsigned short const * __ptr64 __cdecl BROWSE_DOMAIN_INFO::QueryDomainName(void)const __ptr64
2718?QueryDomainName@BROWSE_DOMAIN_INFO@@QEBAPEBGXZ
2719; public: unsigned short const * __ptr64 __cdecl USER_BROWSER_LBI::QueryDomainName(void)const __ptr64
2720?QueryDomainName@USER_BROWSER_LBI@@QEBAPEBGXZ
2721; public: class OS_SID const * __ptr64 __cdecl BROWSER_DOMAIN::QueryDomainSid(void)const __ptr64
2722?QueryDomainSid@BROWSER_DOMAIN@@QEBAPEBVOS_SID@@XZ
2723; public: class OS_SID const * __ptr64 __cdecl BROWSER_SUBJECT::QueryDomainSid(void)const __ptr64
2724?QueryDomainSid@BROWSER_SUBJECT@@QEBAPEBVOS_SID@@XZ
2725; protected: static unsigned short const * __ptr64 __cdecl CONTROL_WINDOW::QueryEditClassName(void)
2726?QueryEditClassName@CONTROL_WINDOW@@KAPEBGXZ
2727; public: struct _ULC_ENTRY_BASE * __ptr64 __cdecl USER_BROWSER_LBI_CACHE::QueryEntryPtr(int) __ptr64
2728?QueryEntryPtr@USER_BROWSER_LBI_CACHE@@QEAAPEAU_ULC_ENTRY_BASE@@H@Z
2729; public: long __cdecl ASSOCHWNDPDLG::QueryError(void)const __ptr64
2730?QueryError@ASSOCHWNDPDLG@@QEBAJXZ
2731; public: long __cdecl ASSOCHWNDPWND::QueryError(void)const __ptr64
2732?QueryError@ASSOCHWNDPWND@@QEBAJXZ
2733; public: long __cdecl BASE::QueryError(void)const __ptr64
2734?QueryError@BASE@@QEBAJXZ
2735; public: long __cdecl CONTROL_WINDOW::QueryError(void)const __ptr64
2736?QueryError@CONTROL_WINDOW@@QEBAJXZ
2737; public: long __cdecl FORWARDING_BASE::QueryError(void)const __ptr64
2738?QueryError@FORWARDING_BASE@@QEBAJXZ
2739; public: long __cdecl SLT_ELLIPSIS::QueryError(void)const __ptr64
2740?QueryError@SLT_ELLIPSIS@@QEBAJXZ
2741; protected: long __cdecl GET_FNAME_BASE_DLG::QueryErrorCode(void)const __ptr64
2742?QueryErrorCode@GET_FNAME_BASE_DLG@@IEBAJXZ
2743; public: class USER_BROWSER_LBI * __ptr64 __cdecl USER_BROWSER_LB::QueryErrorLBI(void)const __ptr64
2744?QueryErrorLBI@USER_BROWSER_LB@@QEBAPEAVUSER_BROWSER_LBI@@XZ
2745; public: long __cdecl BROWSER_DOMAIN::QueryErrorLoadingAuthority(void)const __ptr64
2746?QueryErrorLoadingAuthority@BROWSER_DOMAIN@@QEBAJXZ
2747; public: long __cdecl DOMAIN_FILL_THREAD::QueryErrorLoadingAuthority(void)const __ptr64
2748?QueryErrorLoadingAuthority@DOMAIN_FILL_THREAD@@QEBAJXZ
2749; protected: virtual unsigned int __cdecl ARROW_BUTTON::QueryEventEffects(class CONTROL_EVENT const & __ptr64) __ptr64
2750?QueryEventEffects@ARROW_BUTTON@@MEAAIAEBVCONTROL_EVENT@@@Z
2751; protected: virtual unsigned int __cdecl BUTTON_CONTROL::QueryEventEffects(class CONTROL_EVENT const & __ptr64) __ptr64
2752?QueryEventEffects@BUTTON_CONTROL@@MEAAIAEBVCONTROL_EVENT@@@Z
2753; protected: virtual unsigned int __cdecl COMBOBOX::QueryEventEffects(class CONTROL_EVENT const & __ptr64) __ptr64
2754?QueryEventEffects@COMBOBOX@@MEAAIAEBVCONTROL_EVENT@@@Z
2755; public: virtual unsigned int __cdecl CONTROL_VALUE::QueryEventEffects(class CONTROL_EVENT const & __ptr64) __ptr64
2756?QueryEventEffects@CONTROL_VALUE@@UEAAIAEBVCONTROL_EVENT@@@Z
2757; protected: virtual unsigned int __cdecl EDIT_CONTROL::QueryEventEffects(class CONTROL_EVENT const & __ptr64) __ptr64
2758?QueryEventEffects@EDIT_CONTROL@@MEAAIAEBVCONTROL_EVENT@@@Z
2759; protected: virtual unsigned int __cdecl LIST_CONTROL::QueryEventEffects(class CONTROL_EVENT const & __ptr64) __ptr64
2760?QueryEventEffects@LIST_CONTROL@@MEAAIAEBVCONTROL_EVENT@@@Z
2761; public: int __cdecl HIER_LBI::QueryExpanded(void)const __ptr64
2762?QueryExpanded@HIER_LBI@@QEBAHXZ
2763; public: class SLIST_OF_UI_EXT * __ptr64 __cdecl UI_EXT_MGR::QueryExtensions(void) __ptr64
2764?QueryExtensions@UI_EXT_MGR@@QEAAPEAVSLIST_OF_UI_EXT@@XZ
2765; public: unsigned int __cdecl SET_OF_AUDIT_CATEGORIES::QueryFailedBaseCID(void) __ptr64
2766?QueryFailedBaseCID@SET_OF_AUDIT_CATEGORIES@@QEAAIXZ
2767; public: unsigned long __cdecl OPEN_LBI_BASE::QueryFileID(void)const __ptr64
2768?QueryFileID@OPEN_LBI_BASE@@QEBAKXZ
2769; public: long __cdecl GET_FNAME_BASE_DLG::QueryFileTitle(class NLS_STR * __ptr64)const __ptr64
2770?QueryFileTitle@GET_FNAME_BASE_DLG@@QEBAJPEAVNLS_STR@@@Z
2771; public: long __cdecl GET_FNAME_BASE_DLG::QueryFilename(class NLS_STR * __ptr64)const __ptr64
2772?QueryFilename@GET_FNAME_BASE_DLG@@QEBAJPEAVNLS_STR@@@Z
2773; protected: int __cdecl HEAP_BASE::QueryFirstLeaf(void)const __ptr64
2774?QueryFirstLeaf@HEAP_BASE@@IEBAHXZ
2775; public: unsigned long __cdecl ACCOUNT_NAMES_MLE::QueryFlags(void)const __ptr64
2776?QueryFlags@ACCOUNT_NAMES_MLE@@QEBAKXZ
2777; public: unsigned long __cdecl NT_USER_BROWSER_DIALOG::QueryFlags(void)const __ptr64
2778?QueryFlags@NT_USER_BROWSER_DIALOG@@QEBAKXZ
2779; public: struct HFONT__ * __ptr64 __cdecl CONTROL_WINDOW::QueryFont(void)const __ptr64
2780?QueryFont@CONTROL_WINDOW@@QEBAPEAUHFONT__@@XZ
2781; public: int __cdecl DEVICE_CONTEXT::QueryFontHeight(void)const __ptr64
2782?QueryFontHeight@DEVICE_CONTEXT@@QEBAHXZ
2783; public: unsigned short const * __ptr64 __cdecl BROWSER_SUBJECT::QueryFullName(void)const __ptr64
2784?QueryFullName@BROWSER_SUBJECT@@QEBAPEBGXZ
2785; public: unsigned short const * __ptr64 __cdecl USER_BROWSER_LBI::QueryFullName(void)const __ptr64
2786?QueryFullName@USER_BROWSER_LBI@@QEBAPEBGXZ
2787; public: class CONTROL_GROUP * __ptr64 __cdecl CONTROL_VALUE::QueryGroup(void)const __ptr64
2788?QueryGroup@CONTROL_VALUE@@QEBAPEAVCONTROL_GROUP@@XZ
2789; public: long __cdecl NT_GROUP_ENUM_OBJ::QueryGroup(class NLS_STR * __ptr64)const __ptr64
2790?QueryGroup@NT_GROUP_ENUM_OBJ@@QEBAJPEAVNLS_STR@@@Z
2791; public: class CONTROL_GROUP * __ptr64 __cdecl SPIN_ITEM::QueryGroup(void) __ptr64
2792?QueryGroup@SPIN_ITEM@@QEAAPEAVCONTROL_GROUP@@XZ
2793; public: struct HACCEL__ * __ptr64 __cdecl ACCELTABLE::QueryHandle(void)const __ptr64
2794?QueryHandle@ACCELTABLE@@QEBAPEAUHACCEL__@@XZ
2795; public: unsigned short __cdecl ATOM_BASE::QueryHandle(void)const __ptr64
2796?QueryHandle@ATOM_BASE@@QEBAGXZ
2797; public: struct HBITMAP__ * __ptr64 __cdecl BIT_MAP::QueryHandle(void)const __ptr64
2798?QueryHandle@BIT_MAP@@QEBAPEAUHBITMAP__@@XZ
2799; public: struct HFONT__ * __ptr64 __cdecl FONT::QueryHandle(void)const __ptr64
2800?QueryHandle@FONT@@QEBAPEAUHFONT__@@XZ
2801; public: struct HMENU__ * __ptr64 __cdecl MENU_BASE::QueryHandle(void)const __ptr64
2802?QueryHandle@MENU_BASE@@QEBAPEAUHMENU__@@XZ
2803; public: void * __ptr64 __cdecl SAM_OBJECT::QueryHandle(void)const __ptr64
2804?QueryHandle@SAM_OBJECT@@QEBAPEAXXZ
2805; public: struct HBRUSH__ * __ptr64 __cdecl SOLID_BRUSH::QueryHandle(void)const __ptr64
2806?QueryHandle@SOLID_BRUSH@@QEBAPEAUHBRUSH__@@XZ
2807; public: void * __ptr64 __cdecl WIN32_HANDLE::QueryHandle(void)const __ptr64
2808?QueryHandle@WIN32_HANDLE@@QEBAPEAXXZ
2809; public: struct HDC__ * __ptr64 __cdecl DEVICE_CONTEXT::QueryHdc(void)const __ptr64
2810?QueryHdc@DEVICE_CONTEXT@@QEBAPEAUHDC__@@XZ
2811; public: unsigned int __cdecl BIT_MAP::QueryHeight(void)const __ptr64
2812?QueryHeight@BIT_MAP@@QEBAIXZ
2813; public: unsigned int __cdecl DISPLAY_MAP::QueryHeight(void)const __ptr64
2814?QueryHeight@DISPLAY_MAP@@QEBAIXZ
2815; public: int __cdecl LB_COLUMN_HEADER::QueryHeight(void) __ptr64
2816?QueryHeight@LB_COLUMN_HEADER@@QEAAHXZ
2817; public: unsigned int __cdecl SIZE_EVENT::QueryHeight(void)const __ptr64
2818?QueryHeight@SIZE_EVENT@@QEBAIXZ
2819; public: unsigned int __cdecl XYDIMENSION::QueryHeight(void)const __ptr64
2820?QueryHeight@XYDIMENSION@@QEBAIXZ
2821; protected: virtual unsigned long __cdecl BASE_PASSWORD_DIALOG::QueryHelpContext(void) __ptr64
2822?QueryHelpContext@BASE_PASSWORD_DIALOG@@MEAAKXZ
2823; protected: virtual unsigned long __cdecl BASE_SET_FOCUS_DLG::QueryHelpContext(void) __ptr64
2824?QueryHelpContext@BASE_SET_FOCUS_DLG@@MEAAKXZ
2825; protected: virtual unsigned long __cdecl DIALOG_WINDOW::QueryHelpContext(void) __ptr64
2826?QueryHelpContext@DIALOG_WINDOW@@MEAAKXZ
2827; public: unsigned long __cdecl GET_FNAME_BASE_DLG::QueryHelpContext(void) __ptr64
2828?QueryHelpContext@GET_FNAME_BASE_DLG@@QEAAKXZ
2829; protected: virtual unsigned long __cdecl MSGPOPUP_DIALOG::QueryHelpContext(void) __ptr64
2830?QueryHelpContext@MSGPOPUP_DIALOG@@MEAAKXZ
2831; protected: virtual unsigned long __cdecl NT_FIND_ACCOUNT_DIALOG::QueryHelpContext(void) __ptr64
2832?QueryHelpContext@NT_FIND_ACCOUNT_DIALOG@@MEAAKXZ
2833; protected: virtual unsigned long __cdecl NT_GLOBALGROUP_BROWSER_DIALOG::QueryHelpContext(void) __ptr64
2834?QueryHelpContext@NT_GLOBALGROUP_BROWSER_DIALOG@@MEAAKXZ
2835; protected: virtual unsigned long __cdecl NT_LOCALGROUP_BROWSER_DIALOG::QueryHelpContext(void) __ptr64
2836?QueryHelpContext@NT_LOCALGROUP_BROWSER_DIALOG@@MEAAKXZ
2837; public: virtual unsigned long __cdecl NT_USER_BROWSER_DIALOG::QueryHelpContext(void) __ptr64
2838?QueryHelpContext@NT_USER_BROWSER_DIALOG@@UEAAKXZ
2839; protected: virtual unsigned long __cdecl OPEN_DIALOG_BASE::QueryHelpContext(void) __ptr64
2840?QueryHelpContext@OPEN_DIALOG_BASE@@MEAAKXZ
2841; protected: virtual unsigned long __cdecl PROMPT_FOR_ANY_DC_DLG::QueryHelpContext(void) __ptr64
2842?QueryHelpContext@PROMPT_FOR_ANY_DC_DLG@@MEAAKXZ
2843; public: unsigned long __cdecl NT_USER_BROWSER_DIALOG::QueryHelpContextGlobalMembership(void) __ptr64
2844?QueryHelpContextGlobalMembership@NT_USER_BROWSER_DIALOG@@QEAAKXZ
2845; public: unsigned long __cdecl NT_USER_BROWSER_DIALOG::QueryHelpContextLocalMembership(void) __ptr64
2846?QueryHelpContextLocalMembership@NT_USER_BROWSER_DIALOG@@QEAAKXZ
2847; public: unsigned long __cdecl NT_USER_BROWSER_DIALOG::QueryHelpContextSearch(void) __ptr64
2848?QueryHelpContextSearch@NT_USER_BROWSER_DIALOG@@QEAAKXZ
2849; public: unsigned short const * __ptr64 __cdecl ASSOCHCFILE::QueryHelpFile(void)const __ptr64
2850?QueryHelpFile@ASSOCHCFILE@@QEBAPEBGXZ
2851; protected: virtual unsigned short const * __ptr64 __cdecl BASE_SET_FOCUS_DLG::QueryHelpFile(unsigned long) __ptr64
2852?QueryHelpFile@BASE_SET_FOCUS_DLG@@MEAAPEBGK@Z
2853; protected: virtual unsigned short const * __ptr64 __cdecl DIALOG_WINDOW::QueryHelpFile(unsigned long) __ptr64
2854?QueryHelpFile@DIALOG_WINDOW@@MEAAPEBGK@Z
2855; public: class NLS_STR * __ptr64 __cdecl GET_FNAME_BASE_DLG::QueryHelpFile(void) __ptr64
2856?QueryHelpFile@GET_FNAME_BASE_DLG@@QEAAPEAVNLS_STR@@XZ
2857; protected: virtual unsigned short const * __ptr64 __cdecl NT_FIND_ACCOUNT_DIALOG::QueryHelpFile(unsigned long) __ptr64
2858?QueryHelpFile@NT_FIND_ACCOUNT_DIALOG@@MEAAPEBGK@Z
2859; protected: virtual unsigned short const * __ptr64 __cdecl NT_GROUP_BROWSER_DIALOG::QueryHelpFile(unsigned long) __ptr64
2860?QueryHelpFile@NT_GROUP_BROWSER_DIALOG@@MEAAPEBGK@Z
2861; public: virtual unsigned short const * __ptr64 __cdecl NT_USER_BROWSER_DIALOG::QueryHelpFile(unsigned long) __ptr64
2862?QueryHelpFile@NT_USER_BROWSER_DIALOG@@UEAAPEBGK@Z
2863; public: unsigned int __cdecl QMOUSEACT_EVENT::QueryHitTest(void)const __ptr64
2864?QueryHitTest@QMOUSEACT_EVENT@@QEBAIXZ
2865; public: unsigned int __cdecl LISTBOX::QueryHorizontalExtent(void)const __ptr64
2866?QueryHorizontalExtent@LISTBOX@@QEBAIXZ
2867; public: int __cdecl BLT_TIME_SPIN_GROUP::QueryHour(void)const __ptr64
2868?QueryHour@BLT_TIME_SPIN_GROUP@@QEBAHXZ
2869; public: int __cdecl WIN_TIME::QueryHour(void)const __ptr64
2870?QueryHour@WIN_TIME@@QEBAHXZ
2871; public: long __cdecl LOGON_HOURS_CONTROL::QueryHours(class LOGON_HOURS_SETTING * __ptr64)const __ptr64
2872?QueryHours@LOGON_HOURS_CONTROL@@QEBAJPEAVLOGON_HOURS_SETTING@@@Z
2873; public: struct HWND__ * __ptr64 __cdecl CONTROL_EVENT::QueryHwnd(void)const __ptr64
2874?QueryHwnd@CONTROL_EVENT@@QEBAPEAUHWND__@@XZ
2875; public: struct HWND__ * __ptr64 __cdecl DISPATCHER::QueryHwnd(void)const __ptr64
2876?QueryHwnd@DISPATCHER@@QEBAPEAUHWND__@@XZ
2877; protected: struct HWND__ * __ptr64 __cdecl DISPLAY_CONTEXT::QueryHwnd(void) __ptr64
2878?QueryHwnd@DISPLAY_CONTEXT@@IEAAPEAUHWND__@@XZ
2879; public: struct HWND__ * __ptr64 __cdecl DLGLOAD::QueryHwnd(void)const __ptr64
2880?QueryHwnd@DLGLOAD@@QEBAPEAUHWND__@@XZ
2881; public: struct HWND__ * __ptr64 __cdecl OWNINGWND::QueryHwnd(void)const __ptr64
2882?QueryHwnd@OWNINGWND@@QEBAPEAUHWND__@@XZ
2883; public: struct HWND__ * __ptr64 __cdecl PWND2HWND::QueryHwnd(void)const __ptr64
2884?QueryHwnd@PWND2HWND@@QEBAPEAUHWND__@@XZ
2885; public: struct HWND__ * __ptr64 __cdecl WINDOW::QueryHwnd(void)const __ptr64
2886?QueryHwnd@WINDOW@@QEBAPEAUHWND__@@XZ
2887; public: unsigned int __cdecl DISPLAY_MAP::QueryID(void)const __ptr64
2888?QueryID@DISPLAY_MAP@@QEBAIXZ
2889; public: int __cdecl STRING_BITSET_PAIR::QueryID(void) __ptr64
2890?QueryID@STRING_BITSET_PAIR@@QEAAHXZ
2891; public: unsigned int __cdecl TIMER_BASE::QueryID(void)const __ptr64
2892?QueryID@TIMER_BASE@@QEBAIXZ
2893; public: struct HICON__ * __ptr64 __cdecl APP_WINDOW::QueryIcon(void)const __ptr64
2894?QueryIcon@APP_WINDOW@@QEBAPEAUHICON__@@XZ
2895; private: unsigned short const * __ptr64 __cdecl MSGPOPUP_DIALOG::QueryIcon(enum MSG_SEVERITY) __ptr64
2896?QueryIcon@MSGPOPUP_DIALOG@@AEAAPEBGW4MSG_SEVERITY@@@Z
2897; public: int __cdecl HIER_LBI::QueryIndentLevel(void) __ptr64
2898?QueryIndentLevel@HIER_LBI@@QEAAHXZ
2899; public: class SLE * __ptr64 __cdecl SLE_STRLB_GROUP::QueryInputSLE(void)const __ptr64
2900?QueryInputSLE@SLE_STRLB_GROUP@@QEBAPEAVSLE@@XZ
2901; public: class XYRECT const & __ptr64 __cdecl PAINT_DISPLAY_CONTEXT::QueryInvalidRect(void)const __ptr64
2902?QueryInvalidRect@PAINT_DISPLAY_CONTEXT@@QEBAAEBVXYRECT@@XZ
2903; public: class LBI * __ptr64 __cdecl BLT_LISTBOX::QueryItem(int)const __ptr64
2904?QueryItem@BLT_LISTBOX@@QEBAPEAVLBI@@H@Z
2905; public: class LBI * __ptr64 __cdecl BLT_LISTBOX::QueryItem(void)const __ptr64
2906?QueryItem@BLT_LISTBOX@@QEBAPEAVLBI@@XZ
2907; public: class CONTROL_ENTRY * __ptr64 __cdecl CONTROL_TABLE::QueryItem(unsigned int)const __ptr64
2908?QueryItem@CONTROL_TABLE@@QEBAPEAVCONTROL_ENTRY@@I@Z
2909; public: class OPEN_LBI_BASE * __ptr64 __cdecl OPEN_LBOX_BASE::QueryItem(int)const __ptr64
2910?QueryItem@OPEN_LBOX_BASE@@QEBAPEAVOPEN_LBI_BASE@@H@Z
2911; public: class OPEN_LBI_BASE * __ptr64 __cdecl OPEN_LBOX_BASE::QueryItem(void)const __ptr64
2912?QueryItem@OPEN_LBOX_BASE@@QEBAPEAVOPEN_LBI_BASE@@XZ
2913; public: class OLLB_ENTRY * __ptr64 __cdecl OUTLINE_LISTBOX::QueryItem(int)const __ptr64
2914?QueryItem@OUTLINE_LISTBOX@@QEBAPEAVOLLB_ENTRY@@H@Z
2915; public: class OLLB_ENTRY * __ptr64 __cdecl OUTLINE_LISTBOX::QueryItem(void)const __ptr64
2916?QueryItem@OUTLINE_LISTBOX@@QEBAPEAVOLLB_ENTRY@@XZ
2917; public: class STLBITEM * __ptr64 __cdecl STATELB::QueryItem(void)const __ptr64
2918?QueryItem@STATELB@@QEBAPEAVSTLBITEM@@XZ
2919; public: class USER_BROWSER_LBI * __ptr64 __cdecl USER_BROWSER_LB::QueryItem(int)const __ptr64
2920?QueryItem@USER_BROWSER_LB@@QEBAPEAVUSER_BROWSER_LBI@@H@Z
2921; public: class USER_BROWSER_LBI * __ptr64 __cdecl USER_BROWSER_LB::QueryItem(void)const __ptr64
2922?QueryItem@USER_BROWSER_LB@@QEBAPEAVUSER_BROWSER_LBI@@XZ
2923; public: virtual class LBI * __ptr64 __cdecl USER_LBI_CACHE::QueryItem(int) __ptr64
2924?QueryItem@USER_LBI_CACHE@@UEAAPEAVLBI@@H@Z
2925; public: int __cdecl MENU_BASE::QueryItemCount(void)const __ptr64
2926?QueryItemCount@MENU_BASE@@QEBAHXZ
2927; public: unsigned int __cdecl LIST_CONTROL::QueryItemHeight(unsigned int)const __ptr64
2928?QueryItemHeight@LIST_CONTROL@@QEBAII@Z
2929; public: unsigned int __cdecl MENU_BASE::QueryItemID(int)const __ptr64
2930?QueryItemID@MENU_BASE@@QEBAIH@Z
2931; public: int __cdecl STRING_LIST_CONTROL::QueryItemLength(int)const __ptr64
2932?QueryItemLength@STRING_LIST_CONTROL@@QEBAHH@Z
2933; public: int __cdecl STRING_LIST_CONTROL::QueryItemSize(int)const __ptr64
2934?QueryItemSize@STRING_LIST_CONTROL@@QEBAHH@Z
2935; public: unsigned int __cdecl MENU_BASE::QueryItemState(unsigned int,unsigned int)const __ptr64
2936?QueryItemState@MENU_BASE@@QEBAIII@Z
2937; public: long __cdecl MENU_BASE::QueryItemText(unsigned short * __ptr64,unsigned int,unsigned int,unsigned int)const __ptr64
2938?QueryItemText@MENU_BASE@@QEBAJPEAGIII@Z
2939; public: long __cdecl MENU_BASE::QueryItemText(class NLS_STR * __ptr64,unsigned int,unsigned int)const __ptr64
2940?QueryItemText@MENU_BASE@@QEBAJPEAVNLS_STR@@II@Z
2941; public: long __cdecl STRING_LIST_CONTROL::QueryItemText(unsigned short * __ptr64,int,int)const __ptr64
2942?QueryItemText@STRING_LIST_CONTROL@@QEBAJPEAGHH@Z
2943; public: long __cdecl STRING_LIST_CONTROL::QueryItemText(class NLS_STR * __ptr64)const __ptr64
2944?QueryItemText@STRING_LIST_CONTROL@@QEBAJPEAVNLS_STR@@@Z
2945; public: long __cdecl STRING_LIST_CONTROL::QueryItemText(class NLS_STR * __ptr64,int)const __ptr64
2946?QueryItemText@STRING_LIST_CONTROL@@QEBAJPEAVNLS_STR@@H@Z
2947; private: long __cdecl STRING_LIST_CONTROL::QueryItemTextAux(unsigned short * __ptr64,int)const __ptr64
2948?QueryItemTextAux@STRING_LIST_CONTROL@@AEBAJPEAGH@Z
2949; private: int __cdecl HIER_LBI::QueryLBIndex(void) __ptr64
2950?QueryLBIndex@HIER_LBI@@AEAAHXZ
2951; public: __int64 __cdecl EVENT::QueryLParam(void)const __ptr64
2952?QueryLParam@EVENT@@QEBA_JXZ
2953; public: class LSA_POLICY * __ptr64 __cdecl BROWSER_DOMAIN::QueryLSAPolicy(void)const __ptr64
2954?QueryLSAPolicy@BROWSER_DOMAIN@@QEBAPEAVLSA_POLICY@@XZ
2955; public: class STATELB * __ptr64 __cdecl STATELBGRP::QueryLb(void) __ptr64
2956?QueryLb@STATELBGRP@@QEAAPEAVSTATELB@@XZ
2957; public: virtual unsigned short __cdecl BROWSER_DOMAIN_LBI::QueryLeadingChar(void)const __ptr64
2958?QueryLeadingChar@BROWSER_DOMAIN_LBI@@UEBAGXZ
2959; public: virtual unsigned short __cdecl BROWSER_DOMAIN_LBI_PB::QueryLeadingChar(void)const __ptr64
2960?QueryLeadingChar@BROWSER_DOMAIN_LBI_PB@@UEBAGXZ
2961; public: virtual unsigned short __cdecl LBI::QueryLeadingChar(void)const __ptr64
2962?QueryLeadingChar@LBI@@UEBAGXZ
2963; public: virtual unsigned short __cdecl OLLB_ENTRY::QueryLeadingChar(void)const __ptr64
2964?QueryLeadingChar@OLLB_ENTRY@@UEBAGXZ
2965; protected: virtual unsigned short __cdecl OPEN_LBI_BASE::QueryLeadingChar(void)const __ptr64
2966?QueryLeadingChar@OPEN_LBI_BASE@@MEBAGXZ
2967; protected: virtual unsigned short __cdecl STLBITEM::QueryLeadingChar(void)const __ptr64
2968?QueryLeadingChar@STLBITEM@@MEBAGXZ
2969; public: virtual unsigned short __cdecl USER_BROWSER_LBI::QueryLeadingChar(void)const __ptr64
2970?QueryLeadingChar@USER_BROWSER_LBI@@UEBAGXZ
2971; public: int __cdecl XYRECT::QueryLeft(void)const __ptr64
2972?QueryLeft@XYRECT@@QEBAHXZ
2973; protected: int __cdecl HEAP_BASE::QueryLeftChild(int)const __ptr64
2974?QueryLeftChild@HEAP_BASE@@IEBAHH@Z
2975; public: virtual unsigned int __cdecl DTE::QueryLeftMargin(void)const __ptr64
2976?QueryLeftMargin@DTE@@UEBAIXZ
2977; public: virtual unsigned int __cdecl METALLIC_STR_DTE::QueryLeftMargin(void)const __ptr64
2978?QueryLeftMargin@METALLIC_STR_DTE@@UEBAIXZ
2979; public: int __cdecl OLLB_ENTRY::QueryLevel(void)const __ptr64
2980?QueryLevel@OLLB_ENTRY@@QEBAHXZ
2981; public: unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QueryLimit(void)const __ptr64
2982?QueryLimit@CHANGEABLE_SPIN_ITEM@@QEBAKXZ
2983; protected: virtual int __cdecl CONSOLE_ELLIPSIS::QueryLimit(void) __ptr64
2984?QueryLimit@CONSOLE_ELLIPSIS@@MEAAHXZ
2985; protected: virtual int __cdecl WIN_ELLIPSIS::QueryLimit(void) __ptr64
2986?QueryLimit@WIN_ELLIPSIS@@MEAAHXZ
2987; protected: static unsigned short const * __ptr64 __cdecl CONTROL_WINDOW::QueryListboxClassName(void)
2988?QueryListboxClassName@CONTROL_WINDOW@@KAPEBGXZ
2989; long __cdecl QueryLoggedOnDomainInfo(class NLS_STR * __ptr64,class NLS_STR * __ptr64)
2990?QueryLoggedOnDomainInfo@@YAJPEAVNLS_STR@@0@Z
2991; public: unsigned short const * __ptr64 __cdecl BROWSER_DOMAIN::QueryLsaLookupName(void)const __ptr64
2992?QueryLsaLookupName@BROWSER_DOMAIN@@QEBAPEBGXZ
2993; public: struct HBITMAP__ * __ptr64 __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::QueryMain(void)const __ptr64
2994?QueryMain@GRAPHICAL_BUTTON_WITH_DISABLE@@QEBAPEAUHBITMAP__@@XZ
2995; public: struct HBITMAP__ * __ptr64 __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::QueryMainInvert(void)const __ptr64
2996?QueryMainInvert@GRAPHICAL_BUTTON_WITH_DISABLE@@QEBAPEAUHBITMAP__@@XZ
2997; public: class DISPLAY_MAP * __ptr64 const * __ptr64 __cdecl STATELB::QueryMapArray(void)const __ptr64
2998?QueryMapArray@STATELB@@QEBAPEBQEAVDISPLAY_MAP@@XZ
2999; public: int __cdecl STATELB::QueryMapCount(void)const __ptr64
3000?QueryMapCount@STATELB@@QEBAHXZ
3001; public: class BITFIELD * __ptr64 __cdecl AUDIT_CHECKBOXES::QueryMask(void) __ptr64
3002?QueryMask@AUDIT_CHECKBOXES@@QEAAPEAVBITFIELD@@XZ
3003; public: struct HBITMAP__ * __ptr64 __cdecl DISPLAY_MAP::QueryMaskHandle(void)const __ptr64
3004?QueryMaskHandle@DISPLAY_MAP@@QEBAPEAUHBITMAP__@@XZ
3005; public: static long __cdecl BLT_MASTER_TIMER::QueryMasterTimer(class BLT_MASTER_TIMER * __ptr64 * __ptr64)
3006?QueryMasterTimer@BLT_MASTER_TIMER@@SAJPEAPEAV1@@Z
3007; public: unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QueryMax(void)const __ptr64
3008?QueryMax@CHANGEABLE_SPIN_ITEM@@QEBAKXZ
3009; public: unsigned int __cdecl SCROLLBAR::QueryMax(void)const __ptr64
3010?QueryMax@SCROLLBAR@@QEBAIXZ
3011; protected: virtual int __cdecl CONSOLE_ELLIPSIS::QueryMaxCharWidth(void) __ptr64
3012?QueryMaxCharWidth@CONSOLE_ELLIPSIS@@MEAAHXZ
3013; protected: virtual int __cdecl WIN_ELLIPSIS::QueryMaxCharWidth(void) __ptr64
3014?QueryMaxCharWidth@WIN_ELLIPSIS@@MEAAHXZ
3015; public: struct HMENU__ * __ptr64 __cdecl APP_WINDOW::QueryMenu(void)const __ptr64
3016?QueryMenu@APP_WINDOW@@QEBAPEAUHMENU__@@XZ
3017; public: struct HMENU__ * __ptr64 __cdecl UI_MENU_EXT::QueryMenuHandle(void)const __ptr64
3018?QueryMenuHandle@UI_MENU_EXT@@QEBAPEAUHMENU__@@XZ
3019; public: unsigned int __cdecl EVENT::QueryMessage(void)const __ptr64
3020?QueryMessage@EVENT@@QEBAIXZ
3021; public: int __cdecl BLT_TIME_SPIN_GROUP::QueryMin(void)const __ptr64
3022?QueryMin@BLT_TIME_SPIN_GROUP@@QEBAHXZ
3023; public: unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QueryMin(void)const __ptr64
3024?QueryMin@CHANGEABLE_SPIN_ITEM@@QEBAKXZ
3025; public: unsigned int __cdecl SCROLLBAR::QueryMin(void)const __ptr64
3026?QueryMin@SCROLLBAR@@QEBAIXZ
3027; public: int __cdecl WIN_TIME::QueryMinute(void)const __ptr64
3028?QueryMinute@WIN_TIME@@QEBAHXZ
3029; public: long __cdecl ELAPSED_TIME_CONTROL::QueryMinuteValue(void)const __ptr64
3030?QueryMinuteValue@ELAPSED_TIME_CONTROL@@QEBAJXZ
3031; public: struct HINSTANCE__ * __ptr64 __cdecl ASSOCHCFILE::QueryModule(void)const __ptr64
3032?QueryModule@ASSOCHCFILE@@QEBAPEAUHINSTANCE__@@XZ
3033; public: int __cdecl BLT_DATE_SPIN_GROUP::QueryMonth(void)const __ptr64
3034?QueryMonth@BLT_DATE_SPIN_GROUP@@QEBAHXZ
3035; public: int __cdecl WIN_TIME::QueryMonth(void)const __ptr64
3036?QueryMonth@WIN_TIME@@QEBAHXZ
3037; public: int __cdecl INTL_PROFILE::QueryMonthPos(void)const __ptr64
3038?QueryMonthPos@INTL_PROFILE@@QEBAHXZ
3039; public: long __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryName(class NLS_STR * __ptr64)const __ptr64
3040?QueryName@LSA_PRIMARY_DOM_INFO_MEM@@QEBAJPEAVNLS_STR@@@Z
3041; public: long __cdecl LSA_REF_DOMAIN_MEM::QueryName(unsigned long,class NLS_STR * __ptr64)const __ptr64
3042?QueryName@LSA_REF_DOMAIN_MEM@@QEBAJKPEAVNLS_STR@@@Z
3043; public: long __cdecl LSA_TRANSLATED_NAME_MEM::QueryName(unsigned long,class NLS_STR * __ptr64)const __ptr64
3044?QueryName@LSA_TRANSLATED_NAME_MEM@@QEBAJKPEAVNLS_STR@@@Z
3045; public: long __cdecl LSA_TRUST_INFO_MEM::QueryName(unsigned long,class NLS_STR * __ptr64)const __ptr64
3046?QueryName@LSA_TRUST_INFO_MEM@@QEBAJKPEAVNLS_STR@@@Z
3047; public: long __cdecl SAM_RID_ENUMERATION_MEM::QueryName(unsigned long,class NLS_STR * __ptr64)const __ptr64
3048?QueryName@SAM_RID_ENUMERATION_MEM@@QEBAJKPEAVNLS_STR@@@Z
3049; public: unsigned short const * __ptr64 __cdecl SERVER1_ENUM_OBJ::QueryName(void)const __ptr64
3050?QueryName@SERVER1_ENUM_OBJ@@QEBAPEBGXZ
3051; public: unsigned short const * __ptr64 __cdecl UI_DOMAIN::QueryName(void)const __ptr64
3052?QueryName@UI_DOMAIN@@QEBAPEBGXZ
3053; protected: struct tagOFNW * __ptr64 __cdecl GET_FNAME_BASE_DLG::QueryOFN(void) __ptr64
3054?QueryOFN@GET_FNAME_BASE_DLG@@IEAAPEAUtagOFNW@@XZ
3055; public: class OS_SID const * __ptr64 __cdecl SAM_DOMAIN::QueryOSSID(void)const __ptr64
3056?QueryOSSID@SAM_DOMAIN@@QEBAPEBVOS_SID@@XZ
3057; public: class OS_SID const * __ptr64 __cdecl USER_BROWSER_LBI::QueryOSSID(void)const __ptr64
3058?QueryOSSID@USER_BROWSER_LBI@@QEBAPEBVOS_SID@@XZ
3059; protected: virtual long __cdecl CANCEL_TASK_DIALOG::QueryObjectName(class NLS_STR * __ptr64) __ptr64
3060?QueryObjectName@CANCEL_TASK_DIALOG@@MEAAJPEAVNLS_STR@@@Z
3061; public: class NLS_STR __cdecl BASE_ELLIPSIS::QueryOriginalStr(void)const __ptr64
3062?QueryOriginalStr@BASE_ELLIPSIS@@QEBA?AVNLS_STR@@XZ
3063; public: struct HWND__ * __ptr64 __cdecl WINDOW::QueryOwnerHwnd(void)const __ptr64
3064?QueryOwnerHwnd@WINDOW@@QEBAPEAUHWND__@@XZ
3065; public: class OWNER_WINDOW * __ptr64 __cdecl SET_OF_AUDIT_CATEGORIES::QueryOwnerWindow(void) __ptr64
3066?QueryOwnerWindow@SET_OF_AUDIT_CATEGORIES@@QEAAPEAVOWNER_WINDOW@@XZ
3067; public: unsigned short const * __ptr64 __cdecl UI_DOMAIN::QueryPDC(void)const __ptr64
3068?QueryPDC@UI_DOMAIN@@QEBAPEBGXZ
3069; public: void * __ptr64 __cdecl LSA_ACCT_DOM_INFO_MEM::QueryPSID(void)const __ptr64
3070?QueryPSID@LSA_ACCT_DOM_INFO_MEM@@QEBAPEAXXZ
3071; public: void * __ptr64 __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryPSID(void)const __ptr64
3072?QueryPSID@LSA_PRIMARY_DOM_INFO_MEM@@QEBAPEAXXZ
3073; public: void * __ptr64 __cdecl LSA_REF_DOMAIN_MEM::QueryPSID(unsigned long)const __ptr64
3074?QueryPSID@LSA_REF_DOMAIN_MEM@@QEBAPEAXK@Z
3075; public: void * __ptr64 __cdecl LSA_TRUST_INFO_MEM::QueryPSID(unsigned long)const __ptr64
3076?QueryPSID@LSA_TRUST_INFO_MEM@@QEBAPEAXK@Z
3077; public: void * __ptr64 __cdecl OS_SID::QueryPSID(void)const __ptr64
3078?QueryPSID@OS_SID@@QEBAPEAXXZ
3079; public: void * __ptr64 __cdecl SAM_DOMAIN::QueryPSID(void)const __ptr64
3080?QueryPSID@SAM_DOMAIN@@QEBAPEAXXZ
3081; public: void * __ptr64 __cdecl USER_BROWSER_LBI::QueryPSID(void)const __ptr64
3082?QueryPSID@USER_BROWSER_LBI@@QEBAQEAXXZ
3083; protected: int __cdecl HEAP_BASE::QueryParent(int)const __ptr64
3084?QueryParent@HEAP_BASE@@IEBAHH@Z
3085; public: long __cdecl BASE_PASSWORD_DIALOG::QueryPassword(class NLS_STR * __ptr64) __ptr64
3086?QueryPassword@BASE_PASSWORD_DIALOG@@QEAAJPEAVNLS_STR@@@Z
3087; public: unsigned short const * __ptr64 __cdecl OPEN_LBI_BASE::QueryPath(void)const __ptr64
3088?QueryPath@OPEN_LBI_BASE@@QEBAPEBGXZ
3089; public: unsigned short const * __ptr64 __cdecl NLS_STR::QueryPch(void)const __ptr64
3090?QueryPch@NLS_STR@@QEBAPEBGXZ
3091; public: unsigned short const * __ptr64 __cdecl STR_DTE::QueryPch(void)const __ptr64
3092?QueryPch@STR_DTE@@QEBAPEBGXZ
3093; public: unsigned long __cdecl OPEN_LBI_BASE::QueryPermissions(void)const __ptr64
3094?QueryPermissions@OPEN_LBI_BASE@@QEBAKXZ
3095; public: struct tagPOINT __cdecl XYPOINT::QueryPoint(void)const __ptr64
3096?QueryPoint@XYPOINT@@QEBA?AUtagPOINT@@XZ
3097; public: static class XYPOINT __cdecl CURSOR::QueryPos(void)
3098?QueryPos@CURSOR@@SA?AVXYPOINT@@XZ
3099; public: class XYPOINT __cdecl MOUSE_EVENT::QueryPos(void)const __ptr64
3100?QueryPos@MOUSE_EVENT@@QEBA?AVXYPOINT@@XZ
3101; public: unsigned int __cdecl SCROLLBAR::QueryPos(void)const __ptr64
3102?QueryPos@SCROLLBAR@@QEBAIXZ
3103; public: class XYPOINT __cdecl SPIN_GROUP::QueryPos(void) __ptr64
3104?QueryPos@SPIN_GROUP@@QEAA?AVXYPOINT@@XZ
3105; public: class XYPOINT __cdecl WINDOW::QueryPos(void)const __ptr64
3106?QueryPos@WINDOW@@QEBA?AVXYPOINT@@XZ
3107; public: int __cdecl WIN32_THREAD::QueryPriority(void) __ptr64
3108?QueryPriority@WIN32_THREAD@@QEAAHXZ
3109; public: unsigned __int64 __cdecl PROC_INSTANCE::QueryProc(void)const __ptr64
3110?QueryProc@PROC_INSTANCE@@QEBA_KXZ
3111; public: class NLS_STR * __ptr64 __cdecl ITER_SL_NLS_STR::QueryProp(void) __ptr64
3112?QueryProp@ITER_SL_NLS_STR@@QEAAPEAVNLS_STR@@XZ
3113; public: class USER_BROWSER_LBI * __ptr64 __cdecl ITER_SL_USER_BROWSER_LBI::QueryProp(void) __ptr64
3114?QueryProp@ITER_SL_USER_BROWSER_LBI@@QEAAPEAVUSER_BROWSER_LBI@@XZ
3115; public: unsigned short const * __ptr64 __cdecl IDRESOURCE::QueryPsz(void)const __ptr64
3116?QueryPsz@IDRESOURCE@@QEBAPEBGXZ
3117; public: unsigned char * __ptr64 __cdecl BLT_SCRATCH::QueryPtr(void)const __ptr64
3118?QueryPtr@BLT_SCRATCH@@QEBAPEAEXZ
3119; public: struct _POLICY_ACCOUNT_DOMAIN_INFO const * __ptr64 __cdecl LSA_ACCT_DOM_INFO_MEM::QueryPtr(void)const __ptr64
3120?QueryPtr@LSA_ACCT_DOM_INFO_MEM@@QEBAPEBU_POLICY_ACCOUNT_DOMAIN_INFO@@XZ
3121; public: struct _POLICY_PRIMARY_DOMAIN_INFO const * __ptr64 __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryPtr(void)const __ptr64
3122?QueryPtr@LSA_PRIMARY_DOM_INFO_MEM@@QEBAPEBU_POLICY_PRIMARY_DOMAIN_INFO@@XZ
3123; private: struct _LSA_TRUST_INFORMATION const * __ptr64 __cdecl LSA_REF_DOMAIN_MEM::QueryPtr(void)const __ptr64
3124?QueryPtr@LSA_REF_DOMAIN_MEM@@AEBAPEBU_LSA_TRUST_INFORMATION@@XZ
3125; private: struct _LSA_TRANSLATED_NAME const * __ptr64 __cdecl LSA_TRANSLATED_NAME_MEM::QueryPtr(void)const __ptr64
3126?QueryPtr@LSA_TRANSLATED_NAME_MEM@@AEBAPEBU_LSA_TRANSLATED_NAME@@XZ
3127; private: struct _LSA_TRANSLATED_SID const * __ptr64 __cdecl LSA_TRANSLATED_SID_MEM::QueryPtr(void)const __ptr64
3128?QueryPtr@LSA_TRANSLATED_SID_MEM@@AEBAPEBU_LSA_TRANSLATED_SID@@XZ
3129; public: struct _LSA_TRUST_INFORMATION const * __ptr64 __cdecl LSA_TRUST_INFO_MEM::QueryPtr(void)const __ptr64
3130?QueryPtr@LSA_TRUST_INFO_MEM@@QEBAPEBU_LSA_TRUST_INFORMATION@@XZ
3131; public: struct _SAM_RID_ENUMERATION const * __ptr64 __cdecl SAM_RID_ENUMERATION_MEM::QueryPtr(void)const __ptr64
3132?QueryPtr@SAM_RID_ENUMERATION_MEM@@QEBAPEBU_SAM_RID_ENUMERATION@@XZ
3133; private: unsigned long const * __ptr64 __cdecl SAM_RID_MEM::QueryPtr(void)const __ptr64
3134?QueryPtr@SAM_RID_MEM@@AEBAPEBKXZ
3135; public: void * __ptr64 * __ptr64 __cdecl SAM_SID_MEM::QueryPtr(void)const __ptr64
3136?QueryPtr@SAM_SID_MEM@@QEBAPEAPEAXXZ
3137; public: long __cdecl BROWSER_SUBJECT::QueryQualifiedName(class NLS_STR * __ptr64,class NLS_STR const * __ptr64,int)const __ptr64
3138?QueryQualifiedName@BROWSER_SUBJECT@@QEBAJPEAVNLS_STR@@PEBV2@H@Z
3139; public: unsigned int __cdecl CONTROLVAL_CID_PAIR::QueryRBCID(void)const __ptr64
3140?QueryRBCID@CONTROLVAL_CID_PAIR@@QEBAIXZ
3141; public: unsigned long __cdecl LSA_TRANSLATED_SID_MEM::QueryRID(unsigned long)const __ptr64
3142?QueryRID@LSA_TRANSLATED_SID_MEM@@QEBAKK@Z
3143; public: unsigned int __cdecl NT_GROUP_ENUM_OBJ::QueryRID(void)const __ptr64
3144?QueryRID@NT_GROUP_ENUM_OBJ@@QEBAIXZ
3145; public: unsigned long __cdecl SAM_RID_ENUMERATION_MEM::QueryRID(unsigned long)const __ptr64
3146?QueryRID@SAM_RID_ENUMERATION_MEM@@QEBAKK@Z
3147; public: unsigned long __cdecl SAM_RID_MEM::QueryRID(unsigned long)const __ptr64
3148?QueryRID@SAM_RID_MEM@@QEBAKK@Z
3149; public: unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QueryRange(void)const __ptr64
3150?QueryRange@CHANGEABLE_SPIN_ITEM@@QEBAKXZ
3151; protected: class PUSH_BUTTON * __ptr64 __cdecl SLE_STRLB_GROUP::QueryRemoveButton(void)const __ptr64
3152?QueryRemoveButton@SLE_STRLB_GROUP@@IEBAPEAVPUSH_BUTTON@@XZ
3153; public: unsigned int __cdecl KEY_EVENT::QueryRepeat(void)const __ptr64
3154?QueryRepeat@KEY_EVENT@@QEBAIXZ
3155; public: int __cdecl XYRECT::QueryRight(void)const __ptr64
3156?QueryRight@XYRECT@@QEBAHXZ
3157; protected: int __cdecl HEAP_BASE::QueryRightSibling(int)const __ptr64
3158?QueryRightSibling@HEAP_BASE@@IEBAHH@Z
3159; public: virtual struct HWND__ * __ptr64 __cdecl CLIENT_WINDOW::QueryRobustHwnd(void)const __ptr64
3160?QueryRobustHwnd@CLIENT_WINDOW@@UEBAPEAUHWND__@@XZ
3161; public: virtual struct HWND__ * __ptr64 __cdecl DIALOG_WINDOW::QueryRobustHwnd(void)const __ptr64
3162?QueryRobustHwnd@DIALOG_WINDOW@@UEBAPEAUHWND__@@XZ
3163; public: virtual struct HWND__ * __ptr64 __cdecl DISPATCHER::QueryRobustHwnd(void)const __ptr64
3164?QueryRobustHwnd@DISPATCHER@@UEBAPEAUHWND__@@XZ
3165; public: unsigned int __cdecl SET_OF_AUDIT_CATEGORIES::QuerySLTBaseCID(void) __ptr64
3166?QuerySLTBaseCID@SET_OF_AUDIT_CATEGORIES@@QEAAIXZ
3167; public: unsigned int __cdecl LISTBOX::QueryScrollPos(void)const __ptr64
3168?QueryScrollPos@LISTBOX@@QEBAIXZ
3169; public: int __cdecl BLT_TIME_SPIN_GROUP::QuerySec(void)const __ptr64
3170?QuerySec@BLT_TIME_SPIN_GROUP@@QEBAHXZ
3171; public: int __cdecl WIN_TIME::QuerySecond(void)const __ptr64
3172?QuerySecond@WIN_TIME@@QEBAHXZ
3173; public: long __cdecl ELAPSED_TIME_CONTROL::QuerySecondValue(void)const __ptr64
3174?QuerySecondValue@ELAPSED_TIME_CONTROL@@QEBAJXZ
3175; public: int __cdecl LIST_CONTROL::QuerySelCount(void)const __ptr64
3176?QuerySelCount@LIST_CONTROL@@QEBAHXZ
3177; public: long __cdecl LIST_CONTROL::QuerySelItems(int * __ptr64,int)const __ptr64
3178?QuerySelItems@LIST_CONTROL@@QEBAJPEAHH@Z
3179; public: int __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::QuerySelected(void)const __ptr64
3180?QuerySelected@GRAPHICAL_BUTTON_WITH_DISABLE@@QEBAHXZ
3181; public: unsigned int __cdecl MAGIC_GROUP::QuerySelection(void)const __ptr64
3182?QuerySelection@MAGIC_GROUP@@QEBAIXZ
3183; public: unsigned int __cdecl RADIO_GROUP::QuerySelection(void)const __ptr64
3184?QuerySelection@RADIO_GROUP@@QEBAIXZ
3185; public: class SLIST_OF_USER_BROWSER_LBI * __ptr64 __cdecl NT_USER_BROWSER_DIALOG::QuerySelectionCache(void) __ptr64
3186?QuerySelectionCache@NT_USER_BROWSER_DIALOG@@QEAAPEAVSLIST_OF_USER_BROWSER_LBI@@XZ
3187; public: class SLIST_OF_USER_BROWSER_LBI * __ptr64 __cdecl NT_USER_BROWSER_DIALOG::QuerySelectionList(void) __ptr64
3188?QuerySelectionList@NT_USER_BROWSER_DIALOG@@QEAAPEAVSLIST_OF_USER_BROWSER_LBI@@XZ
3189; public: unsigned short const * __ptr64 __cdecl ADMIN_AUTHORITY::QueryServer(void)const __ptr64
3190?QueryServer@ADMIN_AUTHORITY@@QEBAPEBGXZ
3191; public: unsigned short const * __ptr64 __cdecl OLLB_ENTRY::QueryServer(void)const __ptr64
3192?QueryServer@OLLB_ENTRY@@QEBAPEBGXZ
3193; public: unsigned short const * __ptr64 __cdecl OPEN_DIALOG_BASE::QueryServer(void)const __ptr64
3194?QueryServer@OPEN_DIALOG_BASE@@QEBAPEBGXZ
3195; public: unsigned short const * __ptr64 __cdecl NT_USER_BROWSER_DIALOG::QueryServerResourceLivesOn(void)const __ptr64
3196?QueryServerResourceLivesOn@NT_USER_BROWSER_DIALOG@@QEBAPEBGXZ
3197; public: class OS_SID const * __ptr64 __cdecl BROWSER_SUBJECT::QuerySid(void)const __ptr64
3198?QuerySid@BROWSER_SUBJECT@@QEBAPEBVOS_SID@@XZ
3199; public: void * __ptr64 __cdecl OS_SID::QuerySid(void)const __ptr64
3200?QuerySid@OS_SID@@QEBAPEAXXZ
3201; public: unsigned int __cdecl BLT_LISTBOX::QuerySingleLineHeight(void) __ptr64
3202?QuerySingleLineHeight@BLT_LISTBOX@@QEAAIXZ
3203; public: unsigned int __cdecl BLT_SCRATCH::QuerySize(void)const __ptr64
3204?QuerySize@BLT_SCRATCH@@QEBAIXZ
3205; public: class XYDIMENSION __cdecl SPIN_GROUP::QuerySize(void) __ptr64
3206?QuerySize@SPIN_GROUP@@QEAA?AVXYDIMENSION@@XZ
3207; public: class XYDIMENSION __cdecl WINDOW::QuerySize(void)const __ptr64
3208?QuerySize@WINDOW@@QEBA?AVXYDIMENSION@@XZ
3209; public: void __cdecl WINDOW::QuerySize(int * __ptr64,int * __ptr64)const __ptr64
3210?QuerySize@WINDOW@@QEBAXPEAH0@Z
3211; public: virtual unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QuerySmallDecValue(void)const __ptr64
3212?QuerySmallDecValue@CHANGEABLE_SPIN_ITEM@@UEBAKXZ
3213; public: virtual unsigned long __cdecl SPIN_SLE_VALID_SECOND::QuerySmallDecValue(void)const __ptr64
3214?QuerySmallDecValue@SPIN_SLE_VALID_SECOND@@UEBAKXZ
3215; public: virtual unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QuerySmallIncValue(void)const __ptr64
3216?QuerySmallIncValue@CHANGEABLE_SPIN_ITEM@@UEBAKXZ
3217; public: virtual unsigned long __cdecl SPIN_SLE_VALID_SECOND::QuerySmallIncValue(void)const __ptr64
3218?QuerySmallIncValue@SPIN_SLE_VALID_SECOND@@UEBAKXZ
3219; protected: class NT_GROUP_BROWSER_DIALOG * __ptr64 __cdecl NT_GROUP_BROWSER_DIALOG::QuerySourceDialog(void) __ptr64
3220?QuerySourceDialog@NT_GROUP_BROWSER_DIALOG@@IEAAPEAV1@XZ
3221; public: class USER_BROWSER_LB * __ptr64 __cdecl NT_FIND_ACCOUNT_DIALOG::QuerySourceListbox(void) __ptr64
3222?QuerySourceListbox@NT_FIND_ACCOUNT_DIALOG@@QEAAPEAVUSER_BROWSER_LB@@XZ
3223; public: class USER_BROWSER_LB * __ptr64 __cdecl NT_GROUP_BROWSER_DIALOG::QuerySourceListbox(void) __ptr64
3224?QuerySourceListbox@NT_GROUP_BROWSER_DIALOG@@QEAAPEAVUSER_BROWSER_LB@@XZ
3225; protected: unsigned int __cdecl STATE_BUTTON_CONTROL::QueryState(void)const __ptr64
3226?QueryState@STATE_BUTTON_CONTROL@@IEBAIXZ
3227; public: int __cdecl STLBITEM::QueryState(void)const __ptr64
3228?QueryState@STLBITEM@@QEBAHXZ
3229; private: enum _THREAD_STATE __cdecl WIN32_THREAD::QueryState(void)const __ptr64
3230?QueryState@WIN32_THREAD@@AEBA?AW4_THREAD_STATE@@XZ
3231; protected: static unsigned short const * __ptr64 __cdecl CONTROL_WINDOW::QueryStaticClassName(void)
3232?QueryStaticClassName@CONTROL_WINDOW@@KAPEBGXZ
3233; public: class STRING_LISTBOX * __ptr64 __cdecl SLE_STRLB_GROUP::QueryStrLB(void)const __ptr64
3234?QueryStrLB@SLE_STRLB_GROUP@@QEBAPEAVSTRING_LISTBOX@@XZ
3235; protected: virtual int __cdecl CONSOLE_ELLIPSIS::QueryStrLen(unsigned short const * __ptr64,int) __ptr64
3236?QueryStrLen@CONSOLE_ELLIPSIS@@MEAAHPEBGH@Z
3237; protected: virtual int __cdecl CONSOLE_ELLIPSIS::QueryStrLen(class NLS_STR) __ptr64
3238?QueryStrLen@CONSOLE_ELLIPSIS@@MEAAHVNLS_STR@@@Z
3239; protected: virtual int __cdecl WIN_ELLIPSIS::QueryStrLen(unsigned short const * __ptr64,int) __ptr64
3240?QueryStrLen@WIN_ELLIPSIS@@MEAAHPEBGH@Z
3241; protected: virtual int __cdecl WIN_ELLIPSIS::QueryStrLen(class NLS_STR) __ptr64
3242?QueryStrLen@WIN_ELLIPSIS@@MEAAHVNLS_STR@@@Z
3243; private: long __cdecl SPIN_SLE_STR::QueryStrNum(class NLS_STR const & __ptr64,long) __ptr64
3244?QueryStrNum@SPIN_SLE_STR@@AEAAJAEBVNLS_STR@@J@Z
3245; public: long __cdecl ATOM_BASE::QueryString(unsigned short * __ptr64,unsigned int)const __ptr64
3246?QueryString@ATOM_BASE@@QEBAJPEAGI@Z
3247; public: class NLS_STR * __ptr64 __cdecl STRING_BITSET_PAIR::QueryString(void) __ptr64
3248?QueryString@STRING_BITSET_PAIR@@QEAAPEAVNLS_STR@@XZ
3249; public: enum ELLIPSIS_STYLE __cdecl BASE_ELLIPSIS::QueryStyle(void)const __ptr64
3250?QueryStyle@BASE_ELLIPSIS@@QEBA?AW4ELLIPSIS_STYLE@@XZ
3251; public: unsigned long __cdecl WINDOW::QueryStyle(void)const __ptr64
3252?QueryStyle@WINDOW@@QEBAKXZ
3253; public: struct HMENU__ * __ptr64 __cdecl MENU_BASE::QuerySubMenu(int)const __ptr64
3254?QuerySubMenu@MENU_BASE@@QEBAPEAUHMENU__@@H@Z
3255; public: unsigned int __cdecl SET_OF_AUDIT_CATEGORIES::QuerySuccessBaseCID(void) __ptr64
3256?QuerySuccessBaseCID@SET_OF_AUDIT_CATEGORIES@@QEAAIXZ
3257; protected: unsigned long __cdecl BASE_SET_FOCUS_DLG::QuerySuppliedHelpContext(void) __ptr64
3258?QuerySuppliedHelpContext@BASE_SET_FOCUS_DLG@@IEAAKXZ
3259; protected: unsigned short const * __ptr64 __cdecl BASE_SET_FOCUS_DLG::QuerySuppliedHelpFile(void) __ptr64
3260?QuerySuppliedHelpFile@BASE_SET_FOCUS_DLG@@IEAAPEBGXZ
3261; public: long __cdecl BASE_ELLIPSIS::QueryText(unsigned short * __ptr64,unsigned int)const __ptr64
3262?QueryText@BASE_ELLIPSIS@@QEBAJPEAGI@Z
3263; public: long __cdecl BASE_ELLIPSIS::QueryText(class NLS_STR * __ptr64)const __ptr64
3264?QueryText@BASE_ELLIPSIS@@QEBAJPEAVNLS_STR@@@Z
3265; public: long __cdecl SLE_STRIP::QueryText(unsigned short * __ptr64,unsigned int,unsigned short const * __ptr64,unsigned short const * __ptr64)const __ptr64
3266?QueryText@SLE_STRIP@@QEBAJPEAGIPEBG1@Z
3267; public: long __cdecl SLE_STRIP::QueryText(class NLS_STR * __ptr64,unsigned short const * __ptr64,unsigned short const * __ptr64)const __ptr64
3268?QueryText@SLE_STRIP@@QEBAJPEAVNLS_STR@@PEBG1@Z
3269; public: long __cdecl SLT_ELLIPSIS::QueryText(unsigned short * __ptr64,unsigned int)const __ptr64
3270?QueryText@SLT_ELLIPSIS@@QEBAJPEAGI@Z
3271; public: long __cdecl SLT_ELLIPSIS::QueryText(class NLS_STR * __ptr64)const __ptr64
3272?QueryText@SLT_ELLIPSIS@@QEBAJPEAVNLS_STR@@@Z
3273; public: long __cdecl WINDOW::QueryText(unsigned short * __ptr64,unsigned int)const __ptr64
3274?QueryText@WINDOW@@QEBAJPEAGI@Z
3275; public: long __cdecl WINDOW::QueryText(class NLS_STR * __ptr64)const __ptr64
3276?QueryText@WINDOW@@QEBAJPEAVNLS_STR@@@Z
3277; public: class XYDIMENSION __cdecl DEVICE_CONTEXT::QueryTextExtent(class NLS_STR const & __ptr64)const __ptr64
3278?QueryTextExtent@DEVICE_CONTEXT@@QEBA?AVXYDIMENSION@@AEBVNLS_STR@@@Z
3279; public: class XYDIMENSION __cdecl DEVICE_CONTEXT::QueryTextExtent(unsigned short const * __ptr64,unsigned int)const __ptr64
3280?QueryTextExtent@DEVICE_CONTEXT@@QEBA?AVXYDIMENSION@@PEBGI@Z
3281; public: int __cdecl BASE_ELLIPSIS::QueryTextLength(void)const __ptr64
3282?QueryTextLength@BASE_ELLIPSIS@@QEBAHXZ
3283; public: unsigned int __cdecl NLS_STR::QueryTextLength(void)const __ptr64
3284?QueryTextLength@NLS_STR@@QEBAIXZ
3285; public: int __cdecl WINDOW::QueryTextLength(void)const __ptr64
3286?QueryTextLength@WINDOW@@QEBAHXZ
3287; public: int __cdecl DEVICE_CONTEXT::QueryTextMetrics(struct tagTEXTMETRICW * __ptr64)const __ptr64
3288?QueryTextMetrics@DEVICE_CONTEXT@@QEBAHPEAUtagTEXTMETRICW@@@Z
3289; public: int __cdecl BASE_ELLIPSIS::QueryTextSize(void)const __ptr64
3290?QueryTextSize@BASE_ELLIPSIS@@QEBAHXZ
3291; public: int __cdecl WINDOW::QueryTextSize(void)const __ptr64
3292?QueryTextSize@WINDOW@@QEBAHXZ
3293; public: int __cdecl DISPLAY_CONTEXT::QueryTextWidth(class NLS_STR const & __ptr64)const __ptr64
3294?QueryTextWidth@DISPLAY_CONTEXT@@QEBAHAEBVNLS_STR@@@Z
3295; public: int __cdecl DISPLAY_CONTEXT::QueryTextWidth(unsigned short const * __ptr64,unsigned int)const __ptr64
3296?QueryTextWidth@DISPLAY_CONTEXT@@QEBAHPEBGI@Z
3297; public: int __cdecl XYRECT::QueryTop(void)const __ptr64
3298?QueryTop@XYRECT@@QEBAHXZ
3299; public: int __cdecl LIST_CONTROL::QueryTopIndex(void)const __ptr64
3300?QueryTopIndex@LIST_CONTROL@@QEBAHXZ
3301; public: enum _SID_NAME_USE __cdecl BROWSER_SUBJECT::QueryType(void)const __ptr64
3302?QueryType@BROWSER_SUBJECT@@QEBA?AW4_SID_NAME_USE@@XZ
3303; public: enum OUTLINE_LB_LEVEL __cdecl OLLB_ENTRY::QueryType(void)const __ptr64
3304?QueryType@OLLB_ENTRY@@QEBA?AW4OUTLINE_LB_LEVEL@@XZ
3305; public: enum _SID_NAME_USE __cdecl USER_BROWSER_LBI::QueryType(void)const __ptr64
3306?QueryType@USER_BROWSER_LBI@@QEBA?AW4_SID_NAME_USE@@XZ
3307; public: enum UI_SystemSid __cdecl USER_BROWSER_LBI::QueryUISysSid(void)const __ptr64
3308?QueryUISysSid@USER_BROWSER_LBI@@QEBA?AW4UI_SystemSid@@XZ
3309; protected: struct _ULC_ENTRY * __ptr64 __cdecl USER_LBI_CACHE::QueryULCEntryPtr(int) __ptr64
3310?QueryULCEntryPtr@USER_LBI_CACHE@@IEAAPEAU_ULC_ENTRY@@H@Z
3311; protected: int __cdecl USER_LBI_CACHE::QueryULCEntrySize(void) __ptr64
3312?QueryULCEntrySize@USER_LBI_CACHE@@IEAAHXZ
3313; public: struct _UNICODE_STRING const * __ptr64 __cdecl NT_GROUP_ENUM_OBJ::QueryUnicodeComment(void)const __ptr64
3314?QueryUnicodeComment@NT_GROUP_ENUM_OBJ@@QEBAPEBU_UNICODE_STRING@@XZ
3315; public: struct _UNICODE_STRING const * __ptr64 __cdecl NT_GROUP_ENUM_OBJ::QueryUnicodeGroup(void)const __ptr64
3316?QueryUnicodeGroup@NT_GROUP_ENUM_OBJ@@QEBAPEBU_UNICODE_STRING@@XZ
3317; public: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_PRIMARY_DOM_INFO_MEM::QueryUnicodeName(void)const __ptr64
3318?QueryUnicodeName@LSA_PRIMARY_DOM_INFO_MEM@@QEBAPEBU_UNICODE_STRING@@XZ
3319; private: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_REF_DOMAIN_MEM::QueryUnicodeName(unsigned long)const __ptr64
3320?QueryUnicodeName@LSA_REF_DOMAIN_MEM@@AEBAPEBU_UNICODE_STRING@@K@Z
3321; private: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_TRANSLATED_NAME_MEM::QueryUnicodeName(unsigned long)const __ptr64
3322?QueryUnicodeName@LSA_TRANSLATED_NAME_MEM@@AEBAPEBU_UNICODE_STRING@@K@Z
3323; public: struct _UNICODE_STRING const * __ptr64 __cdecl LSA_TRUST_INFO_MEM::QueryUnicodeName(unsigned long)const __ptr64
3324?QueryUnicodeName@LSA_TRUST_INFO_MEM@@QEBAPEBU_UNICODE_STRING@@K@Z
3325; public: struct _UNICODE_STRING const * __ptr64 __cdecl SAM_RID_ENUMERATION_MEM::QueryUnicodeName(unsigned long)const __ptr64
3326?QueryUnicodeName@SAM_RID_ENUMERATION_MEM@@QEBAPEBU_UNICODE_STRING@@K@Z
3327; public: enum _SID_NAME_USE __cdecl LSA_TRANSLATED_NAME_MEM::QueryUse(unsigned long)const __ptr64
3328?QueryUse@LSA_TRANSLATED_NAME_MEM@@QEBA?AW4_SID_NAME_USE@@K@Z
3329; public: enum _SID_NAME_USE __cdecl LSA_TRANSLATED_SID_MEM::QueryUse(unsigned long)const __ptr64
3330?QueryUse@LSA_TRANSLATED_SID_MEM@@QEBA?AW4_SID_NAME_USE@@K@Z
3331; public: unsigned long __cdecl USER_BROWSER_LBI::QueryUserAccountFlags(void)const __ptr64
3332?QueryUserAccountFlags@USER_BROWSER_LBI@@QEBAKXZ
3333; protected: class NT_USER_BROWSER_DIALOG * __ptr64 __cdecl NT_GROUP_BROWSER_DIALOG::QueryUserBrowserDialog(void) __ptr64
3334?QueryUserBrowserDialog@NT_GROUP_BROWSER_DIALOG@@IEAAPEAVNT_USER_BROWSER_DIALOG@@XZ
3335; public: unsigned short const * __ptr64 __cdecl OPEN_LBI_BASE::QueryUserName(void)const __ptr64
3336?QueryUserName@OPEN_LBI_BASE@@QEBAPEBGXZ
3337; public: long __cdecl SET_OF_AUDIT_CATEGORIES::QueryUserSelectedBits(class BITFIELD * __ptr64,class BITFIELD * __ptr64) __ptr64
3338?QueryUserSelectedBits@SET_OF_AUDIT_CATEGORIES@@QEAAJPEAVBITFIELD@@0@Z
3339; public: unsigned __int64 __cdecl VKEY_EVENT::QueryVKey(void)const __ptr64
3340?QueryVKey@VKEY_EVENT@@QEBA_KXZ
3341; public: unsigned long __cdecl CHANGEABLE_SPIN_ITEM::QueryValue(void)const __ptr64
3342?QueryValue@CHANGEABLE_SPIN_ITEM@@QEBAKXZ
3343; public: static unsigned int __cdecl METALLIC_STR_DTE::QueryVerticalMargins(void)
3344?QueryVerticalMargins@METALLIC_STR_DTE@@SAIXZ
3345; public: unsigned __int64 __cdecl EVENT::QueryWParam(void)const __ptr64
3346?QueryWParam@EVENT@@QEBA_KXZ
3347; public: static unsigned short const * __ptr64 __cdecl SLE_STRIP::QueryWhiteSpace(void)
3348?QueryWhiteSpace@SLE_STRIP@@SAPEBGXZ
3349; public: unsigned int __cdecl BIT_MAP::QueryWidth(void)const __ptr64
3350?QueryWidth@BIT_MAP@@QEBAIXZ
3351; public: unsigned int __cdecl DISPLAY_MAP::QueryWidth(void)const __ptr64
3352?QueryWidth@DISPLAY_MAP@@QEBAIXZ
3353; public: unsigned int __cdecl SIZE_EVENT::QueryWidth(void)const __ptr64
3354?QueryWidth@SIZE_EVENT@@QEBAIXZ
3355; public: unsigned int __cdecl XYDIMENSION::QueryWidth(void)const __ptr64
3356?QueryWidth@XYDIMENSION@@QEBAIXZ
3357; public: void __cdecl WINDOW::QueryWindowRect(struct tagRECT * __ptr64)const __ptr64
3358?QueryWindowRect@WINDOW@@QEBAXPEAUtagRECT@@@Z
3359; public: void __cdecl WINDOW::QueryWindowRect(class XYRECT * __ptr64)const __ptr64
3360?QueryWindowRect@WINDOW@@QEBAXPEAVXYRECT@@@Z
3361; public: int __cdecl CHANGEABLE_SPIN_ITEM::QueryWrap(void)const __ptr64
3362?QueryWrap@CHANGEABLE_SPIN_ITEM@@QEBAHXZ
3363; public: int __cdecl XYPOINT::QueryX(void)const __ptr64
3364?QueryX@XYPOINT@@QEBAHXZ
3365; public: unsigned int __cdecl LOGON_HOURS_CONTROL::QueryXForRow(int) __ptr64
3366?QueryXForRow@LOGON_HOURS_CONTROL@@QEAAIH@Z
3367; public: int __cdecl XYPOINT::QueryY(void)const __ptr64
3368?QueryY@XYPOINT@@QEBAHXZ
3369; public: int __cdecl BLT_DATE_SPIN_GROUP::QueryYear(void)const __ptr64
3370?QueryYear@BLT_DATE_SPIN_GROUP@@QEBAHXZ
3371; public: int __cdecl WIN_TIME::QueryYear(void)const __ptr64
3372?QueryYear@WIN_TIME@@QEBAHXZ
3373; public: int __cdecl INTL_PROFILE::QueryYearPos(void)const __ptr64
3374?QueryYearPos@INTL_PROFILE@@QEBAHXZ
3375; protected: virtual enum FOCUS_CACHE_SETTING __cdecl BASE_SET_FOCUS_DLG::ReadFocusCache(unsigned short const * __ptr64)const __ptr64
3376?ReadFocusCache@BASE_SET_FOCUS_DLG@@MEBA?AW4FOCUS_CACHE_SETTING@@PEBG@Z
3377; public: long __cdecl USER_LBI_CACHE::ReadUsers(class ADMIN_AUTHORITY * __ptr64,unsigned int,unsigned int,int,int * __ptr64) __ptr64
3378?ReadUsers@USER_LBI_CACHE@@QEAAJPEAVADMIN_AUTHORITY@@IIHPEAH@Z
3379; public: long __cdecl DEVICE_COMBO::Refresh(void) __ptr64
3380?Refresh@DEVICE_COMBO@@QEAAJXZ
3381; protected: void __cdecl OPEN_DIALOG_BASE::Refresh(void) __ptr64
3382?Refresh@OPEN_DIALOG_BASE@@IEAAXXZ
3383; public: long __cdecl OPEN_LBOX_BASE::Refresh(void) __ptr64
3384?Refresh@OPEN_LBOX_BASE@@QEAAJXZ
3385; protected: virtual void __cdecl HIER_LISTBOX::RefreshChildren(class HIER_LBI * __ptr64) __ptr64
3386?RefreshChildren@HIER_LISTBOX@@MEAAXPEAVHIER_LBI@@@Z
3387; public: virtual void __cdecl UI_EXT_MGR::RefreshExtensions(struct HWND__ * __ptr64) __ptr64
3388?RefreshExtensions@UI_EXT_MGR@@UEAAXPEAUHWND__@@@Z
3389; public: static long __cdecl BLT::RegisterHelpFile(struct HINSTANCE__ * __ptr64,long,unsigned long,unsigned long)
3390?RegisterHelpFile@BLT@@SAJPEAUHINSTANCE__@@JKK@Z
3391; public: long __cdecl WIN32_MUTEX::Release(void) __ptr64
3392?Release@WIN32_MUTEX@@QEAAJXZ
3393; public: long __cdecl WIN32_SEMAPHORE::Release(long,long * __ptr64) __ptr64
3394?Release@WIN32_SEMAPHORE@@QEAAJJPEAJ@Z
3395; private: virtual void __cdecl BLT_LISTBOX::ReleaseLBI(class LBI * __ptr64) __ptr64
3396?ReleaseLBI@BLT_LISTBOX@@EEAAXPEAVLBI@@@Z
3397; private: virtual void __cdecl LAZY_LISTBOX::ReleaseLBI(class LBI * __ptr64) __ptr64
3398?ReleaseLBI@LAZY_LISTBOX@@EEAAXPEAVLBI@@@Z
3399; public: void __cdecl CLIENT_WINDOW::ReleaseMouse(void) __ptr64
3400?ReleaseMouse@CLIENT_WINDOW@@QEAAXXZ
3401; public: void __cdecl DISPATCHER::ReleaseMouse(void) __ptr64
3402?ReleaseMouse@DISPATCHER@@QEAAXXZ
3403; public: virtual long __cdecl LB_COL_WIDTHS::ReloadColumnWidths(struct HWND__ * __ptr64,struct HINSTANCE__ * __ptr64,class IDRESOURCE const & __ptr64) __ptr64
3404?ReloadColumnWidths@LB_COL_WIDTHS@@UEAAJPEAUHWND__@@PEAUHINSTANCE__@@AEBVIDRESOURCE@@@Z
3405; public: int __cdecl ARRAY_LIST_CONTROLVAL_CID_PAIR::Remove(class CONTROLVAL_CID_PAIR const & __ptr64) __ptr64
3406?Remove@ARRAY_LIST_CONTROLVAL_CID_PAIR@@QEAAHAEBVCONTROLVAL_CID_PAIR@@@Z
3407; public: static void __cdecl HWND_DLGPTR_CACHE::Remove(struct HWND__ * __ptr64)
3408?Remove@HWND_DLGPTR_CACHE@@SAXPEAUHWND__@@@Z
3409; public: long __cdecl MENU_BASE::Remove(unsigned int,unsigned int)const __ptr64
3410?Remove@MENU_BASE@@QEBAJII@Z
3411; public: class ASSOCHCFILE * __ptr64 __cdecl SLIST_OF_ASSOCHCFILE::Remove(class ITER_SL_ASSOCHCFILE & __ptr64) __ptr64
3412?Remove@SLIST_OF_ASSOCHCFILE@@QEAAPEAVASSOCHCFILE@@AEAVITER_SL_ASSOCHCFILE@@@Z
3413; public: struct CLIENTDATA * __ptr64 __cdecl SLIST_OF_CLIENTDATA::Remove(class ITER_SL_CLIENTDATA & __ptr64) __ptr64
3414?Remove@SLIST_OF_CLIENTDATA@@QEAAPEAUCLIENTDATA@@AEAVITER_SL_CLIENTDATA@@@Z
3415; public: class NLS_STR * __ptr64 __cdecl SLIST_OF_NLS_STR::Remove(class ITER_SL_NLS_STR & __ptr64) __ptr64
3416?Remove@SLIST_OF_NLS_STR@@QEAAPEAVNLS_STR@@AEAVITER_SL_NLS_STR@@@Z
3417; public: class TIMER_BASE * __ptr64 __cdecl SLIST_OF_TIMER_BASE::Remove(class ITER_SL_TIMER_BASE & __ptr64) __ptr64
3418?Remove@SLIST_OF_TIMER_BASE@@QEAAPEAVTIMER_BASE@@AEAVITER_SL_TIMER_BASE@@@Z
3419; public: class USER_BROWSER_LBI * __ptr64 __cdecl SLIST_OF_USER_BROWSER_LBI::Remove(class ITER_SL_USER_BROWSER_LBI & __ptr64) __ptr64
3420?Remove@SLIST_OF_USER_BROWSER_LBI@@QEAAPEAVUSER_BROWSER_LBI@@AEAVITER_SL_USER_BROWSER_LBI@@@Z
3421; public: void __cdecl BLT_LISTBOX::RemoveAllItems(void) __ptr64
3422?RemoveAllItems@BLT_LISTBOX@@QEAAXXZ
3423; public: static void __cdecl BLTIMP::RemoveClient(struct HINSTANCE__ * __ptr64)
3424?RemoveClient@BLTIMP@@SAXPEAUHINSTANCE__@@@Z
3425; public: int __cdecl CONTROL_TABLE::RemoveControl(class CONTROL_WINDOW * __ptr64) __ptr64
3426?RemoveControl@CONTROL_TABLE@@QEAAHPEAVCONTROL_WINDOW@@@Z
3427; protected: void __cdecl ACCOUNT_NAMES_MLE::RemoveDuplicateAccountNames(class STRLIST * __ptr64) __ptr64
3428?RemoveDuplicateAccountNames@ACCOUNT_NAMES_MLE@@IEAAXPEAVSTRLIST@@@Z
3429; public: static void __cdecl BLTIMP::RemoveHelpAssoc(struct HINSTANCE__ * __ptr64,unsigned long)
3430?RemoveHelpAssoc@BLTIMP@@SAXPEAUHINSTANCE__@@K@Z
3431; public: class LBI * __ptr64 __cdecl BLT_LISTBOX::RemoveItem(int) __ptr64
3432?RemoveItem@BLT_LISTBOX@@QEAAPEAVLBI@@H@Z
3433; public: class LBI * __ptr64 __cdecl USER_BROWSER_LB::RemoveItem(int) __ptr64
3434?RemoveItem@USER_BROWSER_LB@@QEAAPEAVLBI@@H@Z
3435; public: virtual class LBI * __ptr64 __cdecl USER_BROWSER_LBI_CACHE::RemoveItem(int) __ptr64
3436?RemoveItem@USER_BROWSER_LBI_CACHE@@UEAAPEAVLBI@@H@Z
3437; public: virtual class LBI * __ptr64 __cdecl USER_LBI_CACHE::RemoveItem(int) __ptr64
3438?RemoveItem@USER_LBI_CACHE@@UEAAPEAVLBI@@H@Z
3439; public: void __cdecl LIST_CONTROL::RemoveSelection(void) __ptr64
3440?RemoveSelection@LIST_CONTROL@@QEAAXXZ
3441; public: void __cdecl BLT_MASTER_TIMER::RemoveTimer(class TIMER_BASE * __ptr64) __ptr64
3442?RemoveTimer@BLT_MASTER_TIMER@@QEAAXPEAVTIMER_BASE@@@Z
3443; public: class LBI * __ptr64 __cdecl LBI_HEAP::RemoveTopItem(void) __ptr64
3444?RemoveTopItem@LBI_HEAP@@QEAAPEAVLBI@@XZ
3445; public: void __cdecl WINDOW::RepaintNow(void) __ptr64
3446?RepaintNow@WINDOW@@QEAAXXZ
3447; protected: long __cdecl ACCOUNT_NAMES_MLE::ReplaceDomainIfBuiltIn(class NLS_STR * __ptr64,int * __ptr64) __ptr64
3448?ReplaceDomainIfBuiltIn@ACCOUNT_NAMES_MLE@@IEAAJPEAVNLS_STR@@PEAH@Z
3449; public: long __cdecl BLT_LISTBOX::ReplaceItem(int,class LBI * __ptr64,class LBI * __ptr64 * __ptr64) __ptr64
3450?ReplaceItem@BLT_LISTBOX@@QEAAJHPEAVLBI@@PEAPEAV2@@Z
3451; protected: void __cdecl BASE::ReportError(long) __ptr64
3452?ReportError@BASE@@IEAAXJ@Z
3453; protected: void __cdecl CONTROL_TABLE::ReportError(void) __ptr64
3454?ReportError@CONTROL_TABLE@@IEAAXXZ
3455; protected: void __cdecl CONTROL_WINDOW::ReportError(long) __ptr64
3456?ReportError@CONTROL_WINDOW@@IEAAXJ@Z
3457; protected: void __cdecl FORWARDING_BASE::ReportError(long) __ptr64
3458?ReportError@FORWARDING_BASE@@IEAAXJ@Z
3459; protected: void __cdecl SLT_ELLIPSIS::ReportError(long) __ptr64
3460?ReportError@SLT_ELLIPSIS@@IEAAXJ@Z
3461; public: long __cdecl BROWSER_DOMAIN::RequestAccountData(void) __ptr64
3462?RequestAccountData@BROWSER_DOMAIN@@QEAAJXZ
3463; public: long __cdecl DOMAIN_FILL_THREAD::RequestAccountData(void) __ptr64
3464?RequestAccountData@DOMAIN_FILL_THREAD@@QEAAJXZ
3465; public: long __cdecl BROWSER_DOMAIN::RequestAndWaitForUsers(void) __ptr64
3466?RequestAndWaitForUsers@BROWSER_DOMAIN@@QEAAJXZ
3467; public: long __cdecl DOMAIN_FILL_THREAD::RequestAndWaitForUsers(void) __ptr64
3468?RequestAndWaitForUsers@DOMAIN_FILL_THREAD@@QEAAJXZ
3469; private: virtual class LBI * __ptr64 __cdecl BLT_LISTBOX::RequestLBI(struct tagDRAWITEMSTRUCT const * __ptr64) __ptr64
3470?RequestLBI@BLT_LISTBOX@@EEAAPEAVLBI@@PEBUtagDRAWITEMSTRUCT@@@Z
3471; private: virtual class LBI * __ptr64 __cdecl LAZY_LISTBOX::RequestLBI(struct tagDRAWITEMSTRUCT const * __ptr64) __ptr64
3472?RequestLBI@LAZY_LISTBOX@@EEAAPEAVLBI@@PEBUtagDRAWITEMSTRUCT@@@Z
3473; public: void __cdecl BROWSE_DOMAIN_ENUM::Reset(void) __ptr64
3474?Reset@BROWSE_DOMAIN_ENUM@@QEAAXXZ
3475; public: void __cdecl ITER_CTRL::Reset(void) __ptr64
3476?Reset@ITER_CTRL@@QEAAXXZ
3477; public: long __cdecl WIN32_EVENT::Reset(void) __ptr64
3478?Reset@WIN32_EVENT@@QEAAJXZ
3479; public: static void __cdecl POPUP::ResetCaption(void)
3480?ResetCaption@POPUP@@SAXXZ
3481; protected: void __cdecl WINDOW::ResetCreator(void) __ptr64
3482?ResetCreator@WINDOW@@IEAAXXZ
3483; protected: void __cdecl BASE::ResetError(void) __ptr64
3484?ResetError@BASE@@IEAAXXZ
3485; protected: void __cdecl CONTROL_WINDOW::ResetError(void) __ptr64
3486?ResetError@CONTROL_WINDOW@@IEAAXXZ
3487; protected: void __cdecl FORWARDING_BASE::ResetError(void) __ptr64
3488?ResetError@FORWARDING_BASE@@IEAAXXZ
3489; protected: void __cdecl SLT_ELLIPSIS::ResetError(void) __ptr64
3490?ResetError@SLT_ELLIPSIS@@IEAAXXZ
3491; public: void __cdecl BLT_MASTER_TIMER::ResetIterator(void) __ptr64
3492?ResetIterator@BLT_MASTER_TIMER@@QEAAXXZ
3493; public: void __cdecl SLT_ELLIPSIS::ResetStyle(enum ELLIPSIS_STYLE) __ptr64
3494?ResetStyle@SLT_ELLIPSIS@@QEAAXW4ELLIPSIS_STYLE@@@Z
3495; public: int __cdecl ARRAY_CONTROLVAL_CID_PAIR::Resize(unsigned int,int) __ptr64
3496?Resize@ARRAY_CONTROLVAL_CID_PAIR@@QEAAHIH@Z
3497; public: long __cdecl BLT_LISTBOX::Resort(void) __ptr64
3498?Resort@BLT_LISTBOX@@QEAAJXZ
3499; protected: virtual void __cdecl BLT_DATE_SPIN_GROUP::RestoreValue(int) __ptr64
3500?RestoreValue@BLT_DATE_SPIN_GROUP@@MEAAXH@Z
3501; protected: virtual void __cdecl BLT_TIME_SPIN_GROUP::RestoreValue(int) __ptr64
3502?RestoreValue@BLT_TIME_SPIN_GROUP@@MEAAXH@Z
3503; protected: virtual void __cdecl COMBOBOX::RestoreValue(int) __ptr64
3504?RestoreValue@COMBOBOX@@MEAAXH@Z
3505; protected: virtual void __cdecl CONTROL_VALUE::RestoreValue(int) __ptr64
3506?RestoreValue@CONTROL_VALUE@@MEAAXH@Z
3507; protected: virtual void __cdecl EDIT_CONTROL::RestoreValue(int) __ptr64
3508?RestoreValue@EDIT_CONTROL@@MEAAXH@Z
3509; protected: virtual void __cdecl LIST_CONTROL::RestoreValue(int) __ptr64
3510?RestoreValue@LIST_CONTROL@@MEAAXH@Z
3511; protected: virtual void __cdecl MAGIC_GROUP::RestoreValue(int) __ptr64
3512?RestoreValue@MAGIC_GROUP@@MEAAXH@Z
3513; protected: virtual void __cdecl RADIO_GROUP::RestoreValue(int) __ptr64
3514?RestoreValue@RADIO_GROUP@@MEAAXH@Z
3515; protected: virtual void __cdecl SLT::RestoreValue(int) __ptr64
3516?RestoreValue@SLT@@MEAAXH@Z
3517; public: virtual void __cdecl SPIN_GROUP::RestoreValue(int) __ptr64
3518?RestoreValue@SPIN_GROUP@@UEAAXH@Z
3519; protected: virtual void __cdecl STATE_BUTTON_CONTROL::RestoreValue(int) __ptr64
3520?RestoreValue@STATE_BUTTON_CONTROL@@MEAAXH@Z
3521; public: long __cdecl WIN32_THREAD::Resume(void) __ptr64
3522?Resume@WIN32_THREAD@@QEAAJXZ
3523; protected: virtual int __cdecl APPLICATION::Run(void) __ptr64
3524?Run@APPLICATION@@MEAAHXZ
3525; protected: unsigned __int64 __cdecl HAS_MESSAGE_PUMP::RunMessagePump(void) __ptr64
3526?RunMessagePump@HAS_MESSAGE_PUMP@@IEAA_KXZ
3527; public: virtual long __cdecl CHANGEABLE_SPIN_ITEM::SaveCurrentData(void) __ptr64
3528?SaveCurrentData@CHANGEABLE_SPIN_ITEM@@UEAAJXZ
3529; public: virtual long __cdecl SPIN_SLE_NUM::SaveCurrentData(void) __ptr64
3530?SaveCurrentData@SPIN_SLE_NUM@@UEAAJXZ
3531; public: virtual long __cdecl SPIN_SLE_STR::SaveCurrentData(void) __ptr64
3532?SaveCurrentData@SPIN_SLE_STR@@UEAAJXZ
3533; protected: virtual void __cdecl BLT_DATE_SPIN_GROUP::SaveValue(int) __ptr64
3534?SaveValue@BLT_DATE_SPIN_GROUP@@MEAAXH@Z
3535; protected: virtual void __cdecl BLT_TIME_SPIN_GROUP::SaveValue(int) __ptr64
3536?SaveValue@BLT_TIME_SPIN_GROUP@@MEAAXH@Z
3537; protected: virtual void __cdecl COMBOBOX::SaveValue(int) __ptr64
3538?SaveValue@COMBOBOX@@MEAAXH@Z
3539; protected: virtual void __cdecl CONTROL_VALUE::SaveValue(int) __ptr64
3540?SaveValue@CONTROL_VALUE@@MEAAXH@Z
3541; protected: virtual void __cdecl EDIT_CONTROL::SaveValue(int) __ptr64
3542?SaveValue@EDIT_CONTROL@@MEAAXH@Z
3543; protected: virtual void __cdecl LIST_CONTROL::SaveValue(int) __ptr64
3544?SaveValue@LIST_CONTROL@@MEAAXH@Z
3545; protected: virtual void __cdecl MAGIC_GROUP::SaveValue(int) __ptr64
3546?SaveValue@MAGIC_GROUP@@MEAAXH@Z
3547; protected: virtual void __cdecl RADIO_GROUP::SaveValue(int) __ptr64
3548?SaveValue@RADIO_GROUP@@MEAAXH@Z
3549; protected: virtual void __cdecl SLT::SaveValue(int) __ptr64
3550?SaveValue@SLT@@MEAAXH@Z
3551; public: virtual void __cdecl SPIN_GROUP::SaveValue(int) __ptr64
3552?SaveValue@SPIN_GROUP@@UEAAXH@Z
3553; protected: virtual void __cdecl STATE_BUTTON_CONTROL::SaveValue(int) __ptr64
3554?SaveValue@STATE_BUTTON_CONTROL@@MEAAXH@Z
3555; public: void __cdecl XYPOINT::ScreenToClient(struct HWND__ * __ptr64) __ptr64
3556?ScreenToClient@XYPOINT@@QEAAXPEAUHWND__@@@Z
3557; public: struct HBITMAP__ * __ptr64 __cdecl DEVICE_CONTEXT::SelectBitmap(struct HBITMAP__ * __ptr64) __ptr64
3558?SelectBitmap@DEVICE_CONTEXT@@QEAAPEAUHBITMAP__@@PEAU2@@Z
3559; public: struct HBRUSH__ * __ptr64 __cdecl DEVICE_CONTEXT::SelectBrush(struct HBRUSH__ * __ptr64) __ptr64
3560?SelectBrush@DEVICE_CONTEXT@@QEAAPEAUHBRUSH__@@PEAU2@@Z
3561; public: struct HFONT__ * __ptr64 __cdecl DEVICE_CONTEXT::SelectFont(struct HFONT__ * __ptr64) __ptr64
3562?SelectFont@DEVICE_CONTEXT@@QEAAPEAUHFONT__@@PEAU2@@Z
3563; public: void __cdecl BROWSER_DOMAIN_CB::SelectItem(class BROWSER_DOMAIN * __ptr64) __ptr64
3564?SelectItem@BROWSER_DOMAIN_CB@@QEAAXPEAVBROWSER_DOMAIN@@@Z
3565; public: void __cdecl LIST_CONTROL::SelectItem(int,int) __ptr64
3566?SelectItem@LIST_CONTROL@@QEAAXHH@Z
3567; public: void __cdecl LIST_CONTROL::SelectItems(int * __ptr64,int,int) __ptr64
3568?SelectItems@LIST_CONTROL@@QEAAXPEAHHH@Z
3569; private: void __cdecl BASE_SET_FOCUS_DLG::SelectNetPathString(void) __ptr64
3570?SelectNetPathString@BASE_SET_FOCUS_DLG@@AEAAXXZ
3571; protected: void * __ptr64 __cdecl DEVICE_CONTEXT::SelectObject(void * __ptr64) __ptr64
3572?SelectObject@DEVICE_CONTEXT@@IEAAPEAXPEAX@Z
3573; public: struct HPEN__ * __ptr64 __cdecl DEVICE_CONTEXT::SelectPen(struct HPEN__ * __ptr64) __ptr64
3574?SelectPen@DEVICE_CONTEXT@@QEAAPEAUHPEN__@@PEAU2@@Z
3575; public: void __cdecl COMBOBOX::SelectString(void) __ptr64
3576?SelectString@COMBOBOX@@QEAAXXZ
3577; public: void __cdecl EDIT_CONTROL::SelectString(void) __ptr64
3578?SelectString@EDIT_CONTROL@@QEAAXXZ
3579; public: __int64 __cdecl EVENT::SendTo(struct HWND__ * __ptr64)const __ptr64
3580?SendTo@EVENT@@QEBA_JPEAUHWND__@@@Z
3581; public: static struct HICON__ * __ptr64 __cdecl CURSOR::Set(struct HICON__ * __ptr64)
3582?Set@CURSOR@@SAPEAUHICON__@@PEAU2@@Z
3583; public: long __cdecl WIN32_EVENT::Set(void) __ptr64
3584?Set@WIN32_EVENT@@QEAAJXZ
3585; public: long __cdecl SPIN_ITEM::SetAccKey(class NLS_STR const & __ptr64) __ptr64
3586?SetAccKey@SPIN_ITEM@@QEAAJAEBVNLS_STR@@@Z
3587; public: long __cdecl SPIN_ITEM::SetAccKey(long) __ptr64
3588?SetAccKey@SPIN_ITEM@@QEAAJJ@Z
3589; public: long __cdecl NT_USER_BROWSER_DIALOG::SetAndFillErrorText(long,int) __ptr64
3590?SetAndFillErrorText@NT_USER_BROWSER_DIALOG@@QEAAJJH@Z
3591; protected: void __cdecl SPIN_GROUP::SetArrowButtonStatus(void) __ptr64
3592?SetArrowButtonStatus@SPIN_GROUP@@IEAAXXZ
3593; public: long __cdecl BROWSER_DOMAIN::SetAsTargetDomain(void) __ptr64
3594?SetAsTargetDomain@BROWSER_DOMAIN@@QEAAJXZ
3595; protected: void __cdecl HEAP_BASE::SetAutoReadjust(int) __ptr64
3596?SetAutoReadjust@HEAP_BASE@@IEAAXH@Z
3597; public: void __cdecl CHANGEABLE_SPIN_ITEM::SetBigDecValue(unsigned long) __ptr64
3598?SetBigDecValue@CHANGEABLE_SPIN_ITEM@@QEAAXK@Z
3599; public: void __cdecl CHANGEABLE_SPIN_ITEM::SetBigIncValue(unsigned long) __ptr64
3600?SetBigIncValue@CHANGEABLE_SPIN_ITEM@@QEAAXK@Z
3601; public: void __cdecl BIT_MAP::SetBitmap(struct HBITMAP__ * __ptr64) __ptr64
3602?SetBitmap@BIT_MAP@@QEAAXPEAUHBITMAP__@@@Z
3603; private: void __cdecl DISPLAY_MAP::SetBitmapBits(unsigned char * __ptr64,int,int,unsigned int) __ptr64
3604?SetBitmapBits@DISPLAY_MAP@@AEAAXPEAEHHI@Z
3605; public: unsigned long __cdecl DEVICE_CONTEXT::SetBkColor(unsigned long) __ptr64
3606?SetBkColor@DEVICE_CONTEXT@@QEAAKK@Z
3607; public: int __cdecl DEVICE_CONTEXT::SetBkMode(int) __ptr64
3608?SetBkMode@DEVICE_CONTEXT@@QEAAHH@Z
3609; protected: long __cdecl GET_FNAME_BASE_DLG::SetBuffer(class BUFFER * __ptr64,class STRLIST & __ptr64) __ptr64
3610?SetBuffer@GET_FNAME_BASE_DLG@@IEAAJPEAVBUFFER@@AEAVSTRLIST@@@Z
3611; protected: void __cdecl ENUM_OBJ_BASE::SetBufferPtr(unsigned char const * __ptr64) __ptr64
3612?SetBufferPtr@ENUM_OBJ_BASE@@IEAAXPEBE@Z
3613; public: void __cdecl ORDER_GROUP::SetButton(void) __ptr64
3614?SetButton@ORDER_GROUP@@QEAAXXZ
3615; public: static void __cdecl POPUP::SetCaption(long)
3616?SetCaption@POPUP@@SAXJ@Z
3617; public: void __cdecl LIST_CONTROL::SetCaretIndex(int,int) __ptr64
3618?SetCaretIndex@LIST_CONTROL@@QEAAXHH@Z
3619; public: void __cdecl MENUITEM::SetCheck(int) __ptr64
3620?SetCheck@MENUITEM@@QEAAXH@Z
3621; private: void __cdecl RADIO_BUTTON::SetCheck(int) __ptr64
3622?SetCheck@RADIO_BUTTON@@AEAAXH@Z
3623; public: void __cdecl STATE2_BUTTON_CONTROL::SetCheck(int) __ptr64
3624?SetCheck@STATE2_BUTTON_CONTROL@@QEAAXH@Z
3625; public: long __cdecl SET_OF_AUDIT_CATEGORIES::SetCheckBoxNames(class MASK_MAP * __ptr64) __ptr64
3626?SetCheckBoxNames@SET_OF_AUDIT_CATEGORIES@@QEAAJPEAVMASK_MAP@@@Z
3627; protected: static void __cdecl WINDOW::SetClientGeneratedMsgFlag(int)
3628?SetClientGeneratedMsgFlag@WINDOW@@KAXH@Z
3629; public: void __cdecl METER::SetComplete(int) __ptr64
3630?SetComplete@METER@@QEAAXH@Z
3631; protected: virtual void __cdecl BLT_DATE_SPIN_GROUP::SetControlValueFocus(void) __ptr64
3632?SetControlValueFocus@BLT_DATE_SPIN_GROUP@@MEAAXXZ
3633; protected: virtual void __cdecl BLT_TIME_SPIN_GROUP::SetControlValueFocus(void) __ptr64
3634?SetControlValueFocus@BLT_TIME_SPIN_GROUP@@MEAAXXZ
3635; public: virtual void __cdecl CONTROL_VALUE::SetControlValueFocus(void) __ptr64
3636?SetControlValueFocus@CONTROL_VALUE@@UEAAXXZ
3637; public: virtual void __cdecl CONTROL_WINDOW::SetControlValueFocus(void) __ptr64
3638?SetControlValueFocus@CONTROL_WINDOW@@UEAAXXZ
3639; protected: virtual void __cdecl EDIT_CONTROL::SetControlValueFocus(void) __ptr64
3640?SetControlValueFocus@EDIT_CONTROL@@MEAAXXZ
3641; public: virtual void __cdecl MAGIC_GROUP::SetControlValueFocus(void) __ptr64
3642?SetControlValueFocus@MAGIC_GROUP@@UEAAXXZ
3643; public: virtual void __cdecl RADIO_GROUP::SetControlValueFocus(void) __ptr64
3644?SetControlValueFocus@RADIO_GROUP@@UEAAXXZ
3645; public: virtual void __cdecl SPIN_GROUP::SetControlValueFocus(void) __ptr64
3646?SetControlValueFocus@SPIN_GROUP@@UEAAXXZ
3647; public: void __cdecl LAZY_LISTBOX::SetCount(unsigned int) __ptr64
3648?SetCount@LAZY_LISTBOX@@QEAAXI@Z
3649; public: void __cdecl USER_BROWSER_LB::SetCurrentCache(class USER_BROWSER_LBI_CACHE * __ptr64) __ptr64
3650?SetCurrentCache@USER_BROWSER_LB@@QEAAXPEAVUSER_BROWSER_LBI_CACHE@@@Z
3651; public: long __cdecl BLT_DATE_SPIN_GROUP::SetCurrentDay(void) __ptr64
3652?SetCurrentDay@BLT_DATE_SPIN_GROUP@@QEAAJXZ
3653; public: void __cdecl NT_USER_BROWSER_DIALOG::SetCurrentDomainFocus(class BROWSER_DOMAIN * __ptr64) __ptr64
3654?SetCurrentDomainFocus@NT_USER_BROWSER_DIALOG@@QEAAXPEAVBROWSER_DOMAIN@@@Z
3655; protected: void __cdecl SPIN_GROUP::SetCurrentField(class SPIN_ITEM * __ptr64) __ptr64
3656?SetCurrentField@SPIN_GROUP@@IEAAXPEAVSPIN_ITEM@@@Z
3657; public: long __cdecl BLT_TIME_SPIN_GROUP::SetCurrentTime(void) __ptr64
3658?SetCurrentTime@BLT_TIME_SPIN_GROUP@@QEAAJXZ
3659; public: long __cdecl GET_FNAME_BASE_DLG::SetCustomFilter(class STRLIST & __ptr64,unsigned long) __ptr64
3660?SetCustomFilter@GET_FNAME_BASE_DLG@@QEAAJAEAVSTRLIST@@K@Z
3661; public: void __cdecl DISK_SPACE_SUBCLASS::SetDSFieldName(long) __ptr64
3662?SetDSFieldName@DISK_SPACE_SUBCLASS@@QEAAXJ@Z
3663; public: void __cdecl BLT_DATE_SPIN_GROUP::SetDay(int) __ptr64
3664?SetDay@BLT_DATE_SPIN_GROUP@@QEAAXH@Z
3665; private: static void __cdecl HIER_LBI::SetDestroyable(int)
3666?SetDestroyable@HIER_LBI@@CAXH@Z
3667; public: void __cdecl OWNER_WINDOW::SetDialogFocus(class CONTROL_WINDOW & __ptr64) __ptr64
3668?SetDialogFocus@OWNER_WINDOW@@QEAAXAEAVCONTROL_WINDOW@@@Z
3669; protected: void __cdecl NT_USER_BROWSER_DIALOG::SetDomainComboDropFlag(int) __ptr64
3670?SetDomainComboDropFlag@NT_USER_BROWSER_DIALOG@@IEAAXH@Z
3671; public: void __cdecl OUTLINE_LISTBOX::SetDomainExpanded(int,int) __ptr64
3672?SetDomainExpanded@OUTLINE_LISTBOX@@QEAAXHH@Z
3673; public: long __cdecl BASE_ELLIPSIS::SetEllipsis(unsigned short * __ptr64) __ptr64
3674?SetEllipsis@BASE_ELLIPSIS@@QEAAJPEAG@Z
3675; public: long __cdecl BASE_ELLIPSIS::SetEllipsis(class NLS_STR * __ptr64) __ptr64
3676?SetEllipsis@BASE_ELLIPSIS@@QEAAJPEAVNLS_STR@@@Z
3677; protected: long __cdecl BASE_ELLIPSIS::SetEllipsisCenter(class NLS_STR * __ptr64) __ptr64
3678?SetEllipsisCenter@BASE_ELLIPSIS@@IEAAJPEAVNLS_STR@@@Z
3679; protected: long __cdecl BASE_ELLIPSIS::SetEllipsisLeft(class NLS_STR * __ptr64) __ptr64
3680?SetEllipsisLeft@BASE_ELLIPSIS@@IEAAJPEAVNLS_STR@@@Z
3681; protected: long __cdecl BASE_ELLIPSIS::SetEllipsisPath(class NLS_STR * __ptr64) __ptr64
3682?SetEllipsisPath@BASE_ELLIPSIS@@IEAAJPEAVNLS_STR@@@Z
3683; protected: long __cdecl BASE_ELLIPSIS::SetEllipsisRight(class NLS_STR * __ptr64) __ptr64
3684?SetEllipsisRight@BASE_ELLIPSIS@@IEAAJPEAVNLS_STR@@@Z
3685; protected: void __cdecl GET_FNAME_BASE_DLG::SetEnableHook(int) __ptr64
3686?SetEnableHook@GET_FNAME_BASE_DLG@@IEAAXH@Z
3687; public: void __cdecl HIER_LBI::SetExpanded(int) __ptr64
3688?SetExpanded@HIER_LBI@@QEAAXH@Z
3689; private: void __cdecl OLLB_ENTRY::SetExpanded(int) __ptr64
3690?SetExpanded@OLLB_ENTRY@@AEAAXH@Z
3691; public: int __cdecl SPIN_GROUP::SetFieldMinMax(unsigned short) __ptr64
3692?SetFieldMinMax@SPIN_GROUP@@QEAAHG@Z
3693; public: long __cdecl SPIN_SLE_NUM_VALID::SetFieldName(long) __ptr64
3694?SetFieldName@SPIN_SLE_NUM_VALID@@QEAAJJ@Z
3695; public: long __cdecl GET_FNAME_BASE_DLG::SetFileExtension(class NLS_STR const & __ptr64) __ptr64
3696?SetFileExtension@GET_FNAME_BASE_DLG@@QEAAJAEBVNLS_STR@@@Z
3697; public: long __cdecl GET_FNAME_BASE_DLG::SetFilter(class STRLIST & __ptr64,unsigned long) __ptr64
3698?SetFilter@GET_FNAME_BASE_DLG@@QEAAJAEAVSTRLIST@@K@Z
3699; public: void __cdecl MLE::SetFmtLines(int) __ptr64
3700?SetFmtLines@MLE@@QEAAXH@Z
3701; public: void __cdecl OWNER_WINDOW::SetFocus(unsigned int) __ptr64
3702?SetFocus@OWNER_WINDOW@@QEAAXI@Z
3703; public: void __cdecl CONTROL_WINDOW::SetFont(struct HFONT__ * __ptr64,int) __ptr64
3704?SetFont@CONTROL_WINDOW@@QEAAXPEAUHFONT__@@H@Z
3705; public: long __cdecl FONT::SetFont(struct tagLOGFONTW const & __ptr64) __ptr64
3706?SetFont@FONT@@QEAAJAEBUtagLOGFONTW@@@Z
3707; public: long __cdecl FONT::SetFont(struct HFONT__ * __ptr64) __ptr64
3708?SetFont@FONT@@QEAAJPEAUHFONT__@@@Z
3709; public: void __cdecl CONTROL_VALUE::SetGroup(class CONTROL_GROUP * __ptr64) __ptr64
3710?SetGroup@CONTROL_VALUE@@QEAAXPEAVCONTROL_GROUP@@@Z
3711; protected: void __cdecl MENU_BASE::SetHandle(struct HMENU__ * __ptr64) __ptr64
3712?SetHandle@MENU_BASE@@IEAAXPEAUHMENU__@@@Z
3713; protected: void __cdecl WIN32_HANDLE::SetHandle(void * __ptr64) __ptr64
3714?SetHandle@WIN32_HANDLE@@IEAAXPEAX@Z
3715; public: void __cdecl XYDIMENSION::SetHeight(unsigned int) __ptr64
3716?SetHeight@XYDIMENSION@@QEAAXI@Z
3717; public: void __cdecl GET_FNAME_BASE_DLG::SetHelpActive(int) __ptr64
3718?SetHelpActive@GET_FNAME_BASE_DLG@@QEAAXH@Z
3719; public: static unsigned long __cdecl POPUP::SetHelpContextBase(unsigned long)
3720?SetHelpContextBase@POPUP@@SAKK@Z
3721; public: void __cdecl GET_FNAME_BASE_DLG::SetHookProc(unsigned __int64) __ptr64
3722?SetHookProc@GET_FNAME_BASE_DLG@@QEAAX_K@Z
3723; public: void __cdecl LISTBOX::SetHorizontalExtent(unsigned int) __ptr64
3724?SetHorizontalExtent@LISTBOX@@QEAAXI@Z
3725; public: void __cdecl BLT_TIME_SPIN_GROUP::SetHour(int) __ptr64
3726?SetHour@BLT_TIME_SPIN_GROUP@@QEAAXH@Z
3727; public: long __cdecl LOGON_HOURS_CONTROL::SetHours(class LOGON_HOURS_SETTING const * __ptr64) __ptr64
3728?SetHours@LOGON_HOURS_CONTROL@@QEAAJPEBVLOGON_HOURS_SETTING@@@Z
3729; protected: void __cdecl WINDOW::SetHwnd(struct HWND__ * __ptr64) __ptr64
3730?SetHwnd@WINDOW@@IEAAXPEAUHWND__@@@Z
3731; public: int __cdecl APP_WINDOW::SetIcon(class IDRESOURCE const & __ptr64) __ptr64
3732?SetIcon@APP_WINDOW@@QEAAHAEBVIDRESOURCE@@@Z
3733; public: long __cdecl ICON_CONTROL::SetIcon(class IDRESOURCE const & __ptr64) __ptr64
3734?SetIcon@ICON_CONTROL@@QEAAJAEBVIDRESOURCE@@@Z
3735; protected: void __cdecl CANCEL_TASK_DIALOG::SetInTimer(int) __ptr64
3736?SetInTimer@CANCEL_TASK_DIALOG@@IEAAXH@Z
3737; public: void __cdecl USER_BROWSER_LBI_CACHE::SetIncludeUsers(int) __ptr64
3738?SetIncludeUsers@USER_BROWSER_LBI_CACHE@@QEAAXH@Z
3739; private: void __cdecl HIER_LBI::SetIndentLevel(void) __ptr64
3740?SetIndentLevel@HIER_LBI@@AEAAXXZ
3741; public: long __cdecl GET_FNAME_BASE_DLG::SetInitialDir(class NLS_STR const & __ptr64) __ptr64
3742?SetInitialDir@GET_FNAME_BASE_DLG@@QEAAJAEBVNLS_STR@@@Z
3743; private: void __cdecl BLT_LISTBOX::SetItem(int,class LBI * __ptr64) __ptr64
3744?SetItem@BLT_LISTBOX@@AEAAXHPEAVLBI@@@Z
3745; protected: int __cdecl LIST_CONTROL::SetItemData(int,void * __ptr64) __ptr64
3746?SetItemData@LIST_CONTROL@@IEAAHHPEAX@Z
3747; public: int __cdecl DEVICE_CONTEXT::SetMapMode(int) __ptr64
3748?SetMapMode@DEVICE_CONTEXT@@QEAAHH@Z
3749; private: void __cdecl DISPLAY_MAP::SetMaskBits(unsigned char * __ptr64,int,int,unsigned int) __ptr64
3750?SetMaskBits@DISPLAY_MAP@@AEAAXPEAEHHI@Z
3751; private: void __cdecl SPIN_SLE_NUM::SetMaxInput(void) __ptr64
3752?SetMaxInput@SPIN_SLE_NUM@@AEAAXXZ
3753; public: int __cdecl COMBOBOX::SetMaxLength(unsigned int) __ptr64
3754?SetMaxLength@COMBOBOX@@QEAAHI@Z
3755; public: void __cdecl EDIT_CONTROL::SetMaxLength(unsigned int) __ptr64
3756?SetMaxLength@EDIT_CONTROL@@QEAAXI@Z
3757; public: int __cdecl APP_WINDOW::SetMenu(class IDRESOURCE const & __ptr64) __ptr64
3758?SetMenu@APP_WINDOW@@QEAAHAEBVIDRESOURCE@@@Z
3759; public: void __cdecl CHANGEABLE_SPIN_ITEM::SetMin(unsigned long) __ptr64
3760?SetMin@CHANGEABLE_SPIN_ITEM@@QEAAXK@Z
3761; public: void __cdecl SPIN_SLE_NUM::SetMin(unsigned long) __ptr64
3762?SetMin@SPIN_SLE_NUM@@QEAAXK@Z
3763; public: void __cdecl BLT_TIME_SPIN_GROUP::SetMinute(int) __ptr64
3764?SetMinute@BLT_TIME_SPIN_GROUP@@QEAAXH@Z
3765; public: void __cdecl ELAPSED_TIME_CONTROL::SetMinuteFieldName(long) __ptr64
3766?SetMinuteFieldName@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3767; public: void __cdecl ELAPSED_TIME_CONTROL::SetMinuteMin(long) __ptr64
3768?SetMinuteMin@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3769; public: void __cdecl ELAPSED_TIME_CONTROL::SetMinuteRange(long) __ptr64
3770?SetMinuteRange@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3771; public: void __cdecl ELAPSED_TIME_CONTROL::SetMinuteValue(long) __ptr64
3772?SetMinuteValue@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3773; public: void __cdecl SPIN_GROUP::SetModified(int) __ptr64
3774?SetModified@SPIN_GROUP@@QEAAXH@Z
3775; public: void __cdecl BLT_DATE_SPIN_GROUP::SetMonth(int) __ptr64
3776?SetMonth@BLT_DATE_SPIN_GROUP@@QEAAXH@Z
3777; public: static void __cdecl POPUP::SetMsgMapTable(struct _MSGMAPENTRY * __ptr64)
3778?SetMsgMapTable@POPUP@@SAXPEAU_MSGMAPENTRY@@@Z
3779; protected: virtual long __cdecl BASE_SET_FOCUS_DLG::SetNetworkFocus(struct HWND__ * __ptr64,unsigned short const * __ptr64,enum FOCUS_CACHE_SETTING) __ptr64
3780?SetNetworkFocus@BASE_SET_FOCUS_DLG@@MEAAJPEAUHWND__@@PEBGW4FOCUS_CACHE_SETTING@@@Z
3781; protected: virtual long __cdecl STANDALONE_SET_FOCUS_DLG::SetNetworkFocus(struct HWND__ * __ptr64,unsigned short const * __ptr64,enum FOCUS_CACHE_SETTING) __ptr64
3782?SetNetworkFocus@STANDALONE_SET_FOCUS_DLG@@MEAAJPEAUHWND__@@PEBGW4FOCUS_CACHE_SETTING@@@Z
3783; private: void __cdecl TIMER_BASE::SetNewTimeDue(void) __ptr64
3784?SetNewTimeDue@TIMER_BASE@@AEAAXXZ
3785; public: long __cdecl BASE_ELLIPSIS::SetOriginalStr(unsigned short const * __ptr64) __ptr64
3786?SetOriginalStr@BASE_ELLIPSIS@@QEAAJPEBG@Z
3787; protected: void __cdecl DM_DTE::SetPdm(class DISPLAY_MAP * __ptr64) __ptr64
3788?SetPdm@DM_DTE@@IEAAXPEAVDISPLAY_MAP@@@Z
3789; public: virtual void __cdecl HIER_LBI::SetPelIndent(unsigned int) __ptr64
3790?SetPelIndent@HIER_LBI@@UEAAXI@Z
3791; public: long __cdecl APP_WINDOW::SetPlacement(struct tagWINDOWPLACEMENT const * __ptr64)const __ptr64
3792?SetPlacement@APP_WINDOW@@QEBAJPEBUtagWINDOWPLACEMENT@@@Z
3793; public: static void __cdecl CURSOR::SetPos(class XYPOINT const & __ptr64)
3794?SetPos@CURSOR@@SAXAEBVXYPOINT@@@Z
3795; public: void __cdecl SCROLLBAR::SetPos(unsigned int) __ptr64
3796?SetPos@SCROLLBAR@@QEAAXI@Z
3797; public: void __cdecl WINDOW::SetPos(class XYPOINT,int,class WINDOW * __ptr64) __ptr64
3798?SetPos@WINDOW@@QEAAXVXYPOINT@@HPEAV1@@Z
3799; public: long __cdecl ICON_CONTROL::SetPredefinedIcon(class IDRESOURCE const & __ptr64) __ptr64
3800?SetPredefinedIcon@ICON_CONTROL@@QEAAJAEBVIDRESOURCE@@@Z
3801; public: long __cdecl WIN32_THREAD::SetPriority(int) __ptr64
3802?SetPriority@WIN32_THREAD@@QEAAJH@Z
3803; public: void __cdecl CHANGEABLE_SPIN_ITEM::SetRange(unsigned long) __ptr64
3804?SetRange@CHANGEABLE_SPIN_ITEM@@QEAAXK@Z
3805; public: void __cdecl SCROLLBAR::SetRange(unsigned int,unsigned int) __ptr64
3806?SetRange@SCROLLBAR@@QEAAXII@Z
3807; public: void __cdecl SPIN_SLE_NUM::SetRange(unsigned long) __ptr64
3808?SetRange@SPIN_SLE_NUM@@QEAAXK@Z
3809; public: void __cdecl SPIN_SLE_STR::SetRange(long) __ptr64
3810?SetRange@SPIN_SLE_STR@@QEAAXJ@Z
3811; public: void __cdecl WINDOW::SetRedraw(int) __ptr64
3812?SetRedraw@WINDOW@@QEAAXH@Z
3813; public: long __cdecl EDIT_CONTROL::SetSaveValue(unsigned short const * __ptr64) __ptr64
3814?SetSaveValue@EDIT_CONTROL@@QEAAJPEBG@Z
3815; public: long __cdecl SPIN_SLE_NUM::SetSaveValue(unsigned long) __ptr64
3816?SetSaveValue@SPIN_SLE_NUM@@QEAAJK@Z
3817; public: void __cdecl LISTBOX::SetScrollPos(unsigned int) __ptr64
3818?SetScrollPos@LISTBOX@@QEAAXI@Z
3819; public: void __cdecl BLT_TIME_SPIN_GROUP::SetSecond(int) __ptr64
3820?SetSecond@BLT_TIME_SPIN_GROUP@@QEAAXH@Z
3821; public: void __cdecl ELAPSED_TIME_CONTROL::SetSecondFieldName(long) __ptr64
3822?SetSecondFieldName@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3823; public: void __cdecl ELAPSED_TIME_CONTROL::SetSecondMin(long) __ptr64
3824?SetSecondMin@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3825; public: void __cdecl ELAPSED_TIME_CONTROL::SetSecondRange(long) __ptr64
3826?SetSecondRange@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3827; public: void __cdecl ELAPSED_TIME_CONTROL::SetSecondValue(long) __ptr64
3828?SetSecondValue@ELAPSED_TIME_CONTROL@@QEAAXJ@Z
3829; public: void __cdecl GRAPHICAL_BUTTON_WITH_DISABLE::SetSelected(int) __ptr64
3830?SetSelected@GRAPHICAL_BUTTON_WITH_DISABLE@@QEAAXH@Z
3831; private: void __cdecl LOGON_HOURS_CONTROL::SetSelectedCells(int) __ptr64
3832?SetSelectedCells@LOGON_HOURS_CONTROL@@AEAAXH@Z
3833; private: void __cdecl LOGON_HOURS_CONTROL::SetSelection(int) __ptr64
3834?SetSelection@LOGON_HOURS_CONTROL@@AEAAXH@Z
3835; private: void __cdecl LOGON_HOURS_CONTROL::SetSelection(int,int) __ptr64
3836?SetSelection@LOGON_HOURS_CONTROL@@AEAAXHH@Z
3837; public: void __cdecl MAGIC_GROUP::SetSelection(unsigned int) __ptr64
3838?SetSelection@MAGIC_GROUP@@QEAAXI@Z
3839; public: void __cdecl RADIO_GROUP::SetSelection(unsigned int) __ptr64
3840?SetSelection@RADIO_GROUP@@QEAAXI@Z
3841; protected: void __cdecl RADIO_GROUP::SetSelectionDontNotifyGroups(unsigned int) __ptr64
3842?SetSelectionDontNotifyGroups@RADIO_GROUP@@IEAAXI@Z
3843; public: void __cdecl CONSOLE_ELLIPSIS::SetSize(int) __ptr64
3844?SetSize@CONSOLE_ELLIPSIS@@QEAAXH@Z
3845; public: void __cdecl SLT_ELLIPSIS::SetSize(int,int,int) __ptr64
3846?SetSize@SLT_ELLIPSIS@@QEAAXHHH@Z
3847; public: void __cdecl WINDOW::SetSize(int,int,int) __ptr64
3848?SetSize@WINDOW@@QEAAXHHH@Z
3849; public: void __cdecl WINDOW::SetSize(class XYDIMENSION,int) __ptr64
3850?SetSize@WINDOW@@QEAAXVXYDIMENSION@@H@Z
3851; public: void __cdecl WIN_ELLIPSIS::SetSize(int,int) __ptr64
3852?SetSize@WIN_ELLIPSIS@@QEAAXHH@Z
3853; public: void __cdecl CHANGEABLE_SPIN_ITEM::SetSmallDecValue(unsigned long) __ptr64
3854?SetSmallDecValue@CHANGEABLE_SPIN_ITEM@@QEAAXK@Z
3855; public: void __cdecl CHANGEABLE_SPIN_ITEM::SetSmallIncValue(unsigned long) __ptr64
3856?SetSmallIncValue@CHANGEABLE_SPIN_ITEM@@QEAAXK@Z
3857; protected: void __cdecl NT_GROUP_BROWSER_DIALOG::SetSourceDialog(class NT_GROUP_BROWSER_DIALOG * __ptr64) __ptr64
3858?SetSourceDialog@NT_GROUP_BROWSER_DIALOG@@IEAAXPEAV1@@Z
3859; private: long __cdecl ELAPSED_TIME_CONTROL::SetSpinItemAccKey(class SPIN_ITEM * __ptr64,class SLT & __ptr64,int) __ptr64
3860?SetSpinItemAccKey@ELAPSED_TIME_CONTROL@@AEAAJPEAVSPIN_ITEM@@AEAVSLT@@H@Z
3861; protected: void __cdecl SLE_STRLB_GROUP::SetState(void)const __ptr64
3862?SetState@SLE_STRLB_GROUP@@IEBAXXZ
3863; protected: void __cdecl STATE_BUTTON_CONTROL::SetState(unsigned int) __ptr64
3864?SetState@STATE_BUTTON_CONTROL@@IEAAXI@Z
3865; public: int __cdecl STLBITEM::SetState(int) __ptr64
3866?SetState@STLBITEM@@QEAAHH@Z
3867; private: void __cdecl WIN32_THREAD::SetState(enum _THREAD_STATE) __ptr64
3868?SetState@WIN32_THREAD@@AEAAXW4_THREAD_STATE@@@Z
3869; public: void __cdecl GRAPHICAL_BUTTON::SetStatus(unsigned int) __ptr64
3870?SetStatus@GRAPHICAL_BUTTON@@QEAAXI@Z
3871; public: void __cdecl GRAPHICAL_BUTTON::SetStatus(struct HBITMAP__ * __ptr64) __ptr64
3872?SetStatus@GRAPHICAL_BUTTON@@QEAAXPEAUHBITMAP__@@@Z
3873; private: void __cdecl SPIN_SLE_STR::SetStr(long) __ptr64
3874?SetStr@SPIN_SLE_STR@@AEAAXJ@Z
3875; private: long __cdecl GET_FNAME_BASE_DLG::SetStringField(unsigned short * __ptr64 * __ptr64,class NLS_STR const & __ptr64) __ptr64
3876?SetStringField@GET_FNAME_BASE_DLG@@AEAAJPEAPEAGAEBVNLS_STR@@@Z
3877; public: void __cdecl BASE_ELLIPSIS::SetStyle(enum ELLIPSIS_STYLE) __ptr64
3878?SetStyle@BASE_ELLIPSIS@@QEAAXW4ELLIPSIS_STYLE@@@Z
3879; public: void __cdecl WINDOW::SetStyle(unsigned long) __ptr64
3880?SetStyle@WINDOW@@QEAAXK@Z
3881; protected: virtual void __cdecl CONTROL_VALUE::SetTabStop(int) __ptr64
3882?SetTabStop@CONTROL_VALUE@@MEAAXH@Z
3883; protected: virtual void __cdecl CONTROL_WINDOW::SetTabStop(int) __ptr64
3884?SetTabStop@CONTROL_WINDOW@@MEAAXH@Z
3885; public: long __cdecl ACCOUNT_NAMES_MLE::SetTargetDomain(unsigned short const * __ptr64) __ptr64
3886?SetTargetDomain@ACCOUNT_NAMES_MLE@@QEAAJPEBG@Z
3887; public: long __cdecl GET_FNAME_BASE_DLG::SetText(class NLS_STR const & __ptr64) __ptr64
3888?SetText@GET_FNAME_BASE_DLG@@QEAAJAEBVNLS_STR@@@Z
3889; public: int __cdecl MENUITEM::SetText(unsigned short const * __ptr64) __ptr64
3890?SetText@MENUITEM@@QEAAHPEBG@Z
3891; public: long __cdecl SLT_ELLIPSIS::SetText(class NLS_STR const & __ptr64) __ptr64
3892?SetText@SLT_ELLIPSIS@@QEAAJAEBVNLS_STR@@@Z
3893; public: long __cdecl SLT_ELLIPSIS::SetText(unsigned short const * __ptr64) __ptr64
3894?SetText@SLT_ELLIPSIS@@QEAAJPEBG@Z
3895; public: void __cdecl WINDOW::SetText(class NLS_STR const & __ptr64) __ptr64
3896?SetText@WINDOW@@QEAAXAEBVNLS_STR@@@Z
3897; public: void __cdecl WINDOW::SetText(unsigned short const * __ptr64) __ptr64
3898?SetText@WINDOW@@QEAAXPEBG@Z
3899; public: unsigned int __cdecl DEVICE_CONTEXT::SetTextAlign(unsigned int) __ptr64
3900?SetTextAlign@DEVICE_CONTEXT@@QEAAII@Z
3901; public: unsigned long __cdecl DEVICE_CONTEXT::SetTextColor(unsigned long) __ptr64
3902?SetTextColor@DEVICE_CONTEXT@@QEAAKK@Z
3903; public: void __cdecl LIST_CONTROL::SetTopIndex(int) __ptr64
3904?SetTopIndex@LIST_CONTROL@@QEAAXH@Z
3905; public: long __cdecl BROWSER_SUBJECT::SetUserBrowserLBI(class USER_BROWSER_LBI * __ptr64) __ptr64
3906?SetUserBrowserLBI@BROWSER_SUBJECT@@QEAAJPEAVUSER_BROWSER_LBI@@@Z
3907; public: void __cdecl CHANGEABLE_SPIN_ITEM::SetValue(unsigned long) __ptr64
3908?SetValue@CHANGEABLE_SPIN_ITEM@@QEAAXK@Z
3909; public: void __cdecl DEC_SLT::SetValue(long) __ptr64
3910?SetValue@DEC_SLT@@QEAAXJ@Z
3911; public: void __cdecl DEC_SLT::SetValue(unsigned long) __ptr64
3912?SetValue@DEC_SLT@@QEAAXK@Z
3913; public: void __cdecl XYDIMENSION::SetWidth(unsigned int) __ptr64
3914?SetWidth@XYDIMENSION@@QEAAXI@Z
3915; public: void __cdecl XYPOINT::SetX(int) __ptr64
3916?SetX@XYPOINT@@QEAAXH@Z
3917; public: void __cdecl XYPOINT::SetY(int) __ptr64
3918?SetY@XYPOINT@@QEAAXH@Z
3919; public: void __cdecl BLT_DATE_SPIN_GROUP::SetYear(int) __ptr64
3920?SetYear@BLT_DATE_SPIN_GROUP@@QEAAXH@Z
3921; public: static void __cdecl CURSOR::Show(int)
3922?Show@CURSOR@@SAXH@Z
3923; public: int __cdecl POPUP::Show(void) __ptr64
3924?Show@POPUP@@QEAAHXZ
3925; public: int __cdecl WINDOW::Show(int) __ptr64
3926?Show@WINDOW@@QEAAHH@Z
3927; protected: void __cdecl BASE_SET_FOCUS_DLG::ShowArea(int) __ptr64
3928?ShowArea@BASE_SET_FOCUS_DLG@@IEAAXH@Z
3929; protected: void __cdecl EXPANDABLE_DIALOG::ShowArea(int) __ptr64
3930?ShowArea@EXPANDABLE_DIALOG@@IEAAXH@Z
3931; private: void __cdecl H_SPLITTER_BAR::ShowDragBar(class XYPOINT const & __ptr64) __ptr64
3932?ShowDragBar@H_SPLITTER_BAR@@AEAAXAEBVXYPOINT@@@Z
3933; public: void __cdecl WINDOW::ShowFirst(void) __ptr64
3934?ShowFirst@WINDOW@@QEAAXXZ
3935; private: void __cdecl H_SPLITTER_BAR::ShowSpecialCursor(int) __ptr64
3936?ShowSpecialCursor@H_SPLITTER_BAR@@AEAAXH@Z
3937; public: void __cdecl WIN32_THREAD::Sleep(unsigned int) __ptr64
3938?Sleep@WIN32_THREAD@@QEAAXI@Z
3939; public: void __cdecl USER_LBI_CACHE::Sort(void) __ptr64
3940?Sort@USER_LBI_CACHE@@QEAAXXZ
3941; private: static unsigned long __cdecl WIN32_THREAD::StartThread(void * __ptr64)
3942?StartThread@WIN32_THREAD@@CAKPEAX@Z
3943; private: long __cdecl LB_COL_WIDTHS::StretchForFonts(struct HWND__ * __ptr64,unsigned short const * __ptr64) __ptr64
3944?StretchForFonts@LB_COL_WIDTHS@@AEAAJPEAUHWND__@@PEBG@Z
3945; public: long __cdecl MASK_MAP::StringToBits(class NLS_STR const & __ptr64,class BITFIELD * __ptr64,int,unsigned int * __ptr64) __ptr64
3946?StringToBits@MASK_MAP@@QEAAJAEBVNLS_STR@@PEAVBITFIELD@@HPEAI@Z
3947; protected: long __cdecl ACCOUNT_NAMES_MLE::StripDomainIfWellKnown(class NLS_STR * __ptr64) __ptr64
3948?StripDomainIfWellKnown@ACCOUNT_NAMES_MLE@@IEAAJPEAVNLS_STR@@@Z
3949; protected: __int64 __cdecl CUSTOM_CONTROL::SubClassWndProc(class EVENT const & __ptr64) __ptr64
3950?SubClassWndProc@CUSTOM_CONTROL@@IEAA_JAEBVEVENT@@@Z
3951; public: long __cdecl WIN32_THREAD::Suspend(void) __ptr64
3952?Suspend@WIN32_THREAD@@QEAAJXZ
3953; public: static void __cdecl BASE_ELLIPSIS::Term(void)
3954?Term@BASE_ELLIPSIS@@SAXXZ
3955; public: static void __cdecl BLT::Term(struct HINSTANCE__ * __ptr64)
3956?Term@BLT@@SAXPEAUHINSTANCE__@@@Z
3957; public: static void __cdecl BLTIMP::Term(void)
3958?Term@BLTIMP@@SAXXZ
3959; public: static void __cdecl BLT_MASTER_TIMER::Term(void)
3960?Term@BLT_MASTER_TIMER@@SAXXZ
3961; public: static void __cdecl CLIENT_WINDOW::Term(void)
3962?Term@CLIENT_WINDOW@@SAXXZ
3963; public: static void __cdecl POPUP::Term(void)
3964?Term@POPUP@@SAXXZ
3965; public: static void __cdecl BLT::TermDLL(void)
3966?TermDLL@BLT@@SAXXZ
3967; public: long __cdecl WIN32_THREAD::Terminate(unsigned int) __ptr64
3968?Terminate@WIN32_THREAD@@QEAAJI@Z
3969; public: int __cdecl DEVICE_CONTEXT::TextOutW(class NLS_STR const & __ptr64,class XYPOINT)const __ptr64
3970?TextOutW@DEVICE_CONTEXT@@QEBAHAEBVNLS_STR@@VXYPOINT@@@Z
3971; public: int __cdecl DEVICE_CONTEXT::TextOutW(class NLS_STR const & __ptr64,class XYPOINT,struct tagRECT const * __ptr64)const __ptr64
3972?TextOutW@DEVICE_CONTEXT@@QEBAHAEBVNLS_STR@@VXYPOINT@@PEBUtagRECT@@@Z
3973; public: int __cdecl DEVICE_CONTEXT::TextOutW(unsigned short const * __ptr64,int,int,int)const __ptr64
3974?TextOutW@DEVICE_CONTEXT@@QEBAHPEBGHHH@Z
3975; public: int __cdecl DEVICE_CONTEXT::TextOutW(unsigned short const * __ptr64,int,int,int,struct tagRECT const * __ptr64)const __ptr64
3976?TextOutW@DEVICE_CONTEXT@@QEBAHPEBGHHHPEBUtagRECT@@@Z
3977; public: int __cdecl CHECKBOX::Toggle(void) __ptr64
3978?Toggle@CHECKBOX@@QEAAHXZ
3979; public: long __cdecl LM_OLLB::ToggleDomain(int) __ptr64
3980?ToggleDomain@LM_OLLB@@QEAAJH@Z
3981; public: long __cdecl POPUP_MENU::Track(class PWND2HWND const & __ptr64,unsigned int,int,int,struct tagRECT const * __ptr64)const __ptr64
3982?Track@POPUP_MENU@@QEBAJAEBVPWND2HWND@@IHHPEBUtagRECT@@@Z
3983; public: int __cdecl ACCELTABLE::Translate(class WINDOW const * __ptr64,struct tagMSG * __ptr64)const __ptr64
3984?Translate@ACCELTABLE@@QEBAHPEBVWINDOW@@PEAUtagMSG@@@Z
3985; public: void __cdecl TIMER_BASE::TriggerNow(void) __ptr64
3986?TriggerNow@TIMER_BASE@@QEAAXXZ
3987; long __cdecl TrimLeading(class NLS_STR * __ptr64,unsigned short const * __ptr64)
3988?TrimLeading@@YAJPEAVNLS_STR@@PEBG@Z
3989; long __cdecl TrimTrailing(class NLS_STR * __ptr64,unsigned short const * __ptr64)
3990?TrimTrailing@@YAJPEAVNLS_STR@@PEBG@Z
3991; public: void __cdecl AUTO_CURSOR::TurnOff(void) __ptr64
3992?TurnOff@AUTO_CURSOR@@QEAAXXZ
3993; public: void __cdecl AUTO_CURSOR::TurnOn(void) __ptr64
3994?TurnOn@AUTO_CURSOR@@QEAAXXZ
3995; public: long __cdecl BROWSER_DOMAIN::UnRequestAccountData(void) __ptr64
3996?UnRequestAccountData@BROWSER_DOMAIN@@QEAAJXZ
3997; public: long __cdecl DOMAIN_FILL_THREAD::UnRequestAccountData(void) __ptr64
3998?UnRequestAccountData@DOMAIN_FILL_THREAD@@QEAAJXZ
3999; public: virtual void __cdecl UI_EXT_MGR::UnloadExtensions(void) __ptr64
4000?UnloadExtensions@UI_EXT_MGR@@UEAAXXZ
4001; private: void __cdecl LOGON_HOURS_CONTROL::UnloadLabels(void) __ptr64
4002?UnloadLabels@LOGON_HOURS_CONTROL@@AEAAXXZ
4003; protected: virtual void __cdecl USER_LBI_CACHE::UnlockCache(void) __ptr64
4004?UnlockCache@USER_LBI_CACHE@@MEAAXXZ
4005; private: static void __cdecl BLTIMP::Unwind(enum BLT_CTOR_STATE)
4006?Unwind@BLTIMP@@CAXW4BLT_CTOR_STATE@@@Z
4007; public: virtual void __cdecl CHANGEABLE_SPIN_ITEM::Update(void) __ptr64
4008?Update@CHANGEABLE_SPIN_ITEM@@UEAAXXZ
4009; public: virtual void __cdecl SPIN_SLE_NUM::Update(void) __ptr64
4010?Update@SPIN_SLE_NUM@@UEAAXXZ
4011; public: virtual void __cdecl SPIN_SLE_STR::Update(void) __ptr64
4012?Update@SPIN_SLE_STR@@UEAAXXZ
4013; protected: void __cdecl NT_FIND_ACCOUNT_DIALOG::UpdateButtonState(void) __ptr64
4014?UpdateButtonState@NT_FIND_ACCOUNT_DIALOG@@IEAAXXZ
4015; protected: virtual void __cdecl NT_GROUP_BROWSER_DIALOG::UpdateButtonState(void) __ptr64
4016?UpdateButtonState@NT_GROUP_BROWSER_DIALOG@@MEAAXXZ
4017; protected: virtual void __cdecl NT_LOCALGROUP_BROWSER_DIALOG::UpdateButtonState(void) __ptr64
4018?UpdateButtonState@NT_LOCALGROUP_BROWSER_DIALOG@@MEAAXXZ
4019; protected: void __cdecl NT_USER_BROWSER_DIALOG::UpdateButtonState(void) __ptr64
4020?UpdateButtonState@NT_USER_BROWSER_DIALOG@@IEAAXXZ
4021; private: void __cdecl BASE_SET_FOCUS_DLG::UpdateRasMode(void) __ptr64
4022?UpdateRasMode@BASE_SET_FOCUS_DLG@@AEAAXXZ
4023; public: virtual long __cdecl CONTROL_WINDOW::Validate(void) __ptr64
4024?Validate@CONTROL_WINDOW@@UEAAJXZ
4025; private: long __cdecl DIALOG_WINDOW::Validate(void) __ptr64
4026?Validate@DIALOG_WINDOW@@AEAAJXZ
4027; public: virtual long __cdecl ICANON_SLE::Validate(void) __ptr64
4028?Validate@ICANON_SLE@@UEAAJXZ
4029; public: virtual long __cdecl SPIN_SLE_NUM::Validate(void) __ptr64
4030?Validate@SPIN_SLE_NUM@@UEAAJXZ
4031; protected: virtual long __cdecl SLE_STRLB_GROUP::W_Add(unsigned short const * __ptr64) __ptr64
4032?W_Add@SLE_STRLB_GROUP@@MEAAJPEBG@Z
4033; private: virtual unsigned short __cdecl GLOBAL_ATOM::W_AddAtom(unsigned short const * __ptr64)const __ptr64
4034?W_AddAtom@GLOBAL_ATOM@@EEBAGPEBG@Z
4035; private: virtual unsigned short __cdecl LOCAL_ATOM::W_AddAtom(unsigned short const * __ptr64)const __ptr64
4036?W_AddAtom@LOCAL_ATOM@@EEBAGPEBG@Z
4037; protected: long __cdecl MENU_BASE::W_Append(void const * __ptr64,unsigned __int64,unsigned int)const __ptr64
4038?W_Append@MENU_BASE@@IEBAJPEBX_KI@Z
4039; private: long __cdecl UI_MENU_EXT::W_BiasMenuIds(struct HMENU__ * __ptr64,unsigned long) __ptr64
4040?W_BiasMenuIds@UI_MENU_EXT@@AEAAJPEAUHMENU__@@K@Z
4041; private: class LBI * __ptr64 __cdecl USER_LBI_CACHE::W_GetLBI(int) __ptr64
4042?W_GetLBI@USER_LBI_CACHE@@AEAAPEAVLBI@@H@Z
4043; private: int __cdecl USER_LBI_CACHE::W_GrowCache(int) __ptr64
4044?W_GrowCache@USER_LBI_CACHE@@AEAAHH@Z
4045; protected: long __cdecl MENU_BASE::W_Insert(void const * __ptr64,unsigned int,unsigned __int64,unsigned int)const __ptr64
4046?W_Insert@MENU_BASE@@IEBAJPEBXI_KI@Z
4047; protected: virtual class UI_EXT * __ptr64 __cdecl UI_EXT_MGR::W_LoadExtension(unsigned short const * __ptr64,unsigned long) __ptr64
4048?W_LoadExtension@UI_EXT_MGR@@MEAAPEAVUI_EXT@@PEBGK@Z
4049; protected: long __cdecl MENU_BASE::W_Modify(void const * __ptr64,unsigned int,unsigned __int64,unsigned int)const __ptr64
4050?W_Modify@MENU_BASE@@IEBAJPEBXI_KI@Z
4051; public: void __cdecl BROWSER_DOMAIN_LBI::W_Paint(class BROWSER_DOMAIN_CB * __ptr64,class LISTBOX * __ptr64,struct HDC__ * __ptr64,struct tagRECT const * __ptr64,struct GUILTT_INFO * __ptr64)const __ptr64
4052?W_Paint@BROWSER_DOMAIN_LBI@@QEBAXPEAVBROWSER_DOMAIN_CB@@PEAVLISTBOX@@PEAUHDC__@@PEBUtagRECT@@PEAUGUILTT_INFO@@@Z
4053; protected: int __cdecl MENU_BASE::W_QueryItemText(unsigned short * __ptr64,unsigned int,unsigned int,unsigned int)const __ptr64
4054?W_QueryItemText@MENU_BASE@@IEBAHPEAGIII@Z
4055; private: virtual long __cdecl GLOBAL_ATOM::W_QueryString(unsigned short * __ptr64,unsigned int)const __ptr64
4056?W_QueryString@GLOBAL_ATOM@@EEBAJPEAGI@Z
4057; private: virtual long __cdecl LOCAL_ATOM::W_QueryString(unsigned short * __ptr64,unsigned int)const __ptr64
4058?W_QueryString@LOCAL_ATOM@@EEBAJPEAGI@Z
4059; private: long __cdecl ICON_CONTROL::W_SetIcon(class IDRESOURCE const & __ptr64,int) __ptr64
4060?W_SetIcon@ICON_CONTROL@@AEAAJAEBVIDRESOURCE@@H@Z
4061; public: long __cdecl WIN32_SYNC_BASE::Wait(unsigned int) __ptr64
4062?Wait@WIN32_SYNC_BASE@@QEAAJI@Z
4063; public: long __cdecl BROWSER_DOMAIN::WaitForAdminAuthority(unsigned long,int * __ptr64)const __ptr64
4064?WaitForAdminAuthority@BROWSER_DOMAIN@@QEBAJKPEAH@Z
4065; public: long __cdecl DOMAIN_FILL_THREAD::WaitForAdminAuthority(unsigned long,int * __ptr64)const __ptr64
4066?WaitForAdminAuthority@DOMAIN_FILL_THREAD@@QEBAJKPEAH@Z
4067; private: int __cdecl OPEN_DIALOG_BASE::WarnCloseMulti(void) __ptr64
4068?WarnCloseMulti@OPEN_DIALOG_BASE@@AEAAHXZ
4069; private: int __cdecl OPEN_DIALOG_BASE::WarnCloseSingle(class OPEN_LBI_BASE * __ptr64) __ptr64
4070?WarnCloseSingle@OPEN_DIALOG_BASE@@AEAAHPEAVOPEN_LBI_BASE@@@Z
4071; private: int __cdecl ARRAY_CONTROLVAL_CID_PAIR::WithinRange(unsigned int)const __ptr64
4072?WithinRange@ARRAY_CONTROLVAL_CID_PAIR@@AEBAHI@Z
4073; public: static __int64 __cdecl CLIENT_WINDOW::WndProc(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64)
4074?WndProc@CLIENT_WINDOW@@SA_JPEAUHWND__@@I_K_J@Z
4075; public: static __int64 __cdecl CUSTOM_CONTROL::WndProc(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64)
4076?WndProc@CUSTOM_CONTROL@@SA_JPEAUHWND__@@I_K_J@Z
4077; int __cdecl max(int,int)
4078?max@@YAHHH@Z
4079; int __cdecl min(int,int)
4080?min@@YAHHH@Z
4081; public: unsigned long (__cdecl*__cdecl GET_FNAME_BASE_DLG::pfExtendedError(void)const __ptr64)(void)
4082?pfExtendedError@GET_FNAME_BASE_DLG@@QEBAP6AKXZXZ
4083; public: int (__cdecl*__cdecl GET_FNAME_BASE_DLG::pfGetOpenFileName(void)const __ptr64)(struct tagOFNW * __ptr64)
4084?pfGetOpenFileName@GET_FNAME_BASE_DLG@@QEBAP6AHPEAUtagOFNW@@@ZXZ
4085; public: int (__cdecl*__cdecl GET_FNAME_BASE_DLG::pfGetSaveFileName(void)const __ptr64)(struct tagOFNW * __ptr64)
4086?pfGetSaveFileName@GET_FNAME_BASE_DLG@@QEBAP6AHPEAUtagOFNW@@@ZXZ
4087BltCCWndProc
4088BltDlgProc
4089BltWndProc
4090CloseUserBrowser
4091EnumUserBrowserSelection
4092LongToHandle
4093OpenUserBrowser
4094PtrToUlong
4095ShellDlgProc
4096UIntToPtr
lib/libc/mingw/lib64/nntpapi.def created+34
......@@ -0,0 +1,34 @@
1;
2; Exports of file NNTPAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NNTPAPI.dll
8EXPORTS
9NntpAddExpire
10NntpAddFeed
11NntpCancelMessageID
12NntpClearStatistics
13NntpCreateNewsgroup
14NntpDeleteExpire
15NntpDeleteFeed
16NntpDeleteNewsgroup
17NntpEnableFeed
18NntpEnumerateExpires
19NntpEnumerateFeeds
20NntpEnumerateSessions
21NntpFindNewsgroup
22NntpGetAdminInformation
23NntpGetBuildStatus
24NntpGetExpireInformation
25NntpGetFeedInformation
26NntpGetNewsgroup
27NntpGetVRootWin32Error
28NntpQueryStatistics
29NntpSetAdminInformation
30NntpSetExpireInformation
31NntpSetFeedInformation
32NntpSetNewsgroup
33NntpStartRebuild
34NntpTerminateSession
lib/libc/mingw/lib64/npptools.def created+73
......@@ -0,0 +1,73 @@
1;
2; Exports of file NPPTools.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NPPTools.dll
8EXPORTS
9ClearEventData
10ReleaseEventSystem
11SendEvent
12ConvertHexStringToWString
13ConvertWStringToHexString
14CreateBlob
15CreateNPPInterface
16DestroyBlob
17DuplicateBlob
18FilterNPPBlob
19FindOneOf
20FindUnknownBlobCategories
21FindUnknownBlobTags
22GetBoolFromBlob
23GetClassIDFromBlob
24GetDwordFromBlob
25GetMacAddressFromBlob
26GetNPPAddress2FilterFromBlob
27GetNPPAddressFilterFromBlob
28GetNPPBlobFromUI
29GetNPPBlobTable
30GetNPPEtypeSapFilter
31GetNPPMacTypeAsNumber
32GetNPPPatternFilterFromBlob
33GetNPPTriggerFromBlob
34GetNetworkInfoFromBlob
35GetStringFromBlob
36GetStringsFromBlob
37GetWStringFromBlob
38IsRemoteNPP
39LockBlob
40MarshalBlob
41MergeBlob
42NmAddUsedEntry
43NmHeapAllocate
44NmHeapFree
45NmHeapReallocate
46NmHeapSetMaxSize
47NmHeapSize
48NmRemoveUsedEntry
49RaiseNMEvent
50ReadBlobFromFile
51RegCreateBlobKey
52RegOpenBlobKey
53RemoveFromBlob
54SelectNPPBlobFromTable
55SetBoolInBlob
56SetClassIDInBlob
57SetDwordInBlob
58SetMacAddressInBlob
59SetNPPAddress2FilterInBlob
60SetNPPAddressFilterInBlob
61SetNPPEtypeSapFilter
62SetNPPPatternFilterInBlob
63SetNPPTriggerInBlob
64SetNetworkInfoInBlob
65SetStringInBlob
66SetWStringInBlob
67SubkeyExists
68UnMarshalBlob
69UnlockBlob
70WriteBlobToFile
71WriteCrackedBlobToFile
72recursiveDeleteKey
73setKeyAndValue
lib/libc/mingw/lib64/nshipsec.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file NSHIPSEC.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NSHIPSEC.DLL
8EXPORTS
9GetIpsecLastError
10GetResourceString
11InitHelperDll
lib/libc/mingw/lib64/ntdsbcli.def created+36
......@@ -0,0 +1,36 @@
1;
2; Exports of file ntdsbcli.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ntdsbcli.dll
8EXPORTS
9DsBackupClose
10DsBackupEnd
11DsBackupFree
12DsBackupGetBackupLogsA
13DsBackupGetBackupLogsW
14DsBackupGetDatabaseNamesA
15DsBackupGetDatabaseNamesW
16DsBackupOpenFileA
17DsBackupOpenFileW
18DsBackupPrepareA
19DsBackupPrepareW
20DsBackupRead
21DsBackupTruncateLogs
22DsIsNTDSOnlineA
23DsIsNTDSOnlineW
24DsRestoreCheckExpiryToken
25DsRestoreEnd
26DsRestoreGetDatabaseLocationsA
27DsRestoreGetDatabaseLocationsW
28DsRestorePrepareA
29DsRestorePrepareW
30DsRestoreRegisterA
31DsRestoreRegisterComplete
32DsRestoreRegisterW
33DsSetAuthIdentityA
34DsSetAuthIdentityW
35DsSetCurrentBackupLogA
36DsSetCurrentBackupLogW
lib/libc/mingw/lib64/ntlanui.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file NTLANUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NTLANUI.dll
8EXPORTS
9ShareAsDialogA0
10StopShareDialogA0
11DllMain
12I_SystemFocusDialog
13NPGetPropertyText
14NPPropertyDialog
15ServerBrowseDialogA0
16ShareCreate
17ShareManage
18ShareStop
lib/libc/mingw/lib64/ntlsapi.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file ntlsapi.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ntlsapi.dll
8EXPORTS
9NtLSFreeHandle
10NtLicenseRequestA
11NtLicenseRequestW
lib/libc/mingw/lib64/ntmarta.def created+51
......@@ -0,0 +1,51 @@
1;
2; Exports of file NTMARTA.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NTMARTA.dll
8EXPORTS
9AccFreeIndexArray
10AccGetInheritanceSource
11AccProvHandleGrantAccessRights
12AccRewriteGetExplicitEntriesFromAcl
13AccRewriteGetHandleRights
14AccRewriteGetNamedRights
15AccRewriteSetEntriesInAcl
16AccRewriteSetHandleRights
17AccRewriteSetNamedRights
18AccTreeResetNamedSecurityInfo
19AccConvertAccessMaskToActrlAccess
20AccConvertAccessToSD
21AccConvertAccessToSecurityDescriptor
22AccConvertAclToAccess
23AccConvertSDToAccess
24AccGetAccessForTrustee
25AccGetExplicitEntries
26AccLookupAccountName
27AccLookupAccountSid
28AccLookupAccountTrustee
29AccProvCancelOperation
30AccProvGetAccessInfoPerObjectType
31AccProvGetAllRights
32AccProvGetCapabilities
33AccProvGetOperationResults
34AccProvGetTrusteesAccess
35AccProvGrantAccessRights
36AccProvHandleGetAccessInfoPerObjectType
37AccProvHandleGetAllRights
38AccProvHandleGetTrusteesAccess
39AccProvHandleIsAccessAudited
40AccProvHandleIsObjectAccessible
41AccProvHandleRevokeAccessRights
42AccProvHandleRevokeAuditRights
43AccProvHandleSetAccessRights
44AccProvIsAccessAudited
45AccProvIsObjectAccessible
46AccProvRevokeAccessRights
47AccProvRevokeAuditRights
48AccProvSetAccessRights
49AccSetEntriesInAList
50EventGuidToName
51EventNameFree
lib/libc/mingw/lib64/ntmsapi.def created+83
......@@ -0,0 +1,83 @@
1;
2; Exports of file NTMSAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NTMSAPI.dll
8EXPORTS
9AccessNtmsLibraryDoor
10AddNtmsMediaType
11AllocateNtmsMedia
12BeginNtmsDeviceChangeDetection
13CancelNtmsLibraryRequest
14CancelNtmsOperatorRequest
15ChangeNtmsMediaType
16CleanNtmsDrive
17CloseNtmsNotification
18CloseNtmsSession
19CreateNtmsMediaA
20CreateNtmsMediaPoolA
21CreateNtmsMediaPoolW
22CreateNtmsMediaW
23DeallocateNtmsMedia
24DecommissionNtmsMedia
25DeleteNtmsDrive
26DeleteNtmsLibrary
27DeleteNtmsMedia
28DeleteNtmsMediaPool
29DeleteNtmsMediaType
30DeleteNtmsRequests
31DisableNtmsObject
32DismountNtmsDrive
33DismountNtmsMedia
34DoEjectFromSADriveW
35EjectDiskFromSADriveA
36EjectDiskFromSADriveW
37EjectNtmsCleaner
38EjectNtmsMedia
39EnableNtmsObject
40EndNtmsDeviceChangeDetection
41EnumerateNtmsObject
42ExportNtmsDatabase
43GetNtmsMediaPoolNameA
44GetNtmsMediaPoolNameW
45GetNtmsObjectAttributeA
46GetNtmsObjectAttributeW
47GetNtmsObjectInformationA
48GetNtmsObjectInformationW
49GetNtmsObjectSecurity
50GetNtmsRequestOrder
51GetNtmsUIOptionsA
52GetNtmsUIOptionsW
53GetVolumesFromDriveA
54GetVolumesFromDriveW
55IdentifyNtmsSlot
56ImportNtmsDatabase
57InjectNtmsCleaner
58InjectNtmsMedia
59InventoryNtmsLibrary
60MountNtmsMedia
61MoveToNtmsMediaPool
62OpenNtmsNotification
63OpenNtmsSessionA
64OpenNtmsSessionW
65ReleaseNtmsCleanerSlot
66ReserveNtmsCleanerSlot
67SatisfyNtmsOperatorRequest
68SetNtmsDeviceChangeDetection
69SetNtmsMediaComplete
70SetNtmsObjectAttributeA
71SetNtmsObjectAttributeW
72SetNtmsObjectInformationA
73SetNtmsObjectInformationW
74SetNtmsObjectSecurity
75SetNtmsRequestOrder
76SetNtmsUIOptionsA
77SetNtmsUIOptionsW
78SubmitNtmsOperatorRequestA
79SubmitNtmsOperatorRequestW
80SwapNtmsMedia
81UpdateNtmsOmidInfo
82WaitForNtmsNotification
83WaitForNtmsOperatorRequest
lib/libc/mingw/lib64/ntoc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file NTOC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NTOC.dll
8EXPORTS
9NtOcSetupProc
lib/libc/mingw/lib64/ntoskrnl.def created+2137
......@@ -0,0 +1,2137 @@
1;
2; Definition file of ntoskrnl.exe
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "ntoskrnl.exe"
7EXPORTS
8AlpcGetHeaderSize
9AlpcGetMessageAttribute
10AlpcInitializeMessageAttribute
11CcCanIWrite
12CcCoherencyFlushAndPurgeCache
13CcCopyRead
14CcCopyWrite
15CcCopyWriteWontFlush
16CcDeferWrite
17CcFastCopyRead
18CcFastCopyWrite
19CcFastMdlReadWait DATA
20CcFastReadNotPossible DATA
21CcFastReadWait DATA
22CcFlushCache
23CcGetDirtyPages
24CcGetFileObjectFromBcb
25CcGetFileObjectFromSectionPtrs
26CcGetFileObjectFromSectionPtrsRef
27CcGetFlushedValidData
28CcGetLsnForFileObject
29CcInitializeCacheMap
30CcIsThereDirtyData
31CcIsThereDirtyDataEx
32CcMapData
33CcMdlRead
34CcMdlReadComplete
35CcMdlWriteAbort
36CcMdlWriteComplete
37CcPinMappedData
38CcPinRead
39CcPrepareMdlWrite
40CcPreparePinWrite
41CcPurgeCacheSection
42CcRemapBcb
43CcRepinBcb
44CcScheduleReadAhead
45CcSetAdditionalCacheAttributes
46CcSetBcbOwnerPointer
47CcSetDirtyPageThreshold
48CcSetDirtyPinnedData
49CcSetFileSizes
50CcSetFileSizesEx
51CcSetLogHandleForFile
52CcSetParallelFlushFile
53CcSetReadAheadGranularity
54CcTestControl
55CcUninitializeCacheMap
56CcUnpinData
57CcUnpinDataForThread
58CcUnpinRepinnedBcb
59CcWaitForCurrentLazyWriterActivity
60CcZeroData
61CmCallbackGetKeyObjectID
62CmGetBoundTransaction
63CmGetCallbackVersion
64CmKeyObjectType DATA
65CmRegisterCallback
66CmRegisterCallbackEx
67CmSetCallbackObjectContext
68CmUnRegisterCallback
69DbgBreakPoint
70DbgBreakPointWithStatus
71DbgCommandString
72DbgLoadImageSymbols
73DbgPrint
74DbgPrintEx
75DbgPrintReturnControlC
76DbgPrompt
77DbgQueryDebugFilterState
78DbgSetDebugFilterState
79DbgSetDebugPrintCallback
80DbgkLkmdRegisterCallback
81DbgkLkmdUnregisterCallback
82EmClientQueryRuleState
83EmClientRuleDeregisterNotification
84EmClientRuleEvaluate
85EmClientRuleRegisterNotification
86EmProviderDeregister
87EmProviderDeregisterEntry
88EmProviderRegister
89EmProviderRegisterEntry
90EmpProviderRegister
91EtwActivityIdControl
92EtwEnableTrace
93EtwEventEnabled
94EtwProviderEnabled
95EtwRegister
96EtwRegisterClassicProvider
97EtwSendTraceBuffer
98EtwUnregister
99EtwWrite
100EtwWriteEndScenario
101EtwWriteEx
102EtwWriteStartScenario
103EtwWriteString
104EtwWriteTransfer
105ExAcquireCacheAwarePushLockExclusive
106ExAcquireFastMutex
107ExAcquireFastMutexUnsafe
108ExAcquireResourceExclusiveLite
109ExAcquireResourceSharedLite
110ExAcquireRundownProtection
111ExAcquireRundownProtectionCacheAware
112ExAcquireRundownProtectionCacheAwareEx
113ExAcquireRundownProtectionEx
114ExAcquireSharedStarveExclusive
115ExAcquireSharedWaitForExclusive
116ExAcquireSpinLockExclusive
117ExAcquireSpinLockExclusiveAtDpcLevel
118ExAcquireSpinLockShared
119ExAcquireSpinLockSharedAtDpcLevel
120ExAllocateCacheAwarePushLock
121ExAllocateCacheAwareRundownProtection
122ExAllocateFromPagedLookasideList
123ExAllocatePool
124ExAllocatePoolWithQuota
125ExAllocatePoolWithQuotaTag
126ExAllocatePoolWithTag
127ExAllocatePoolWithTagPriority
128ExConvertExclusiveToSharedLite
129ExCreateCallback
130ExDeleteLookasideListEx
131ExDeleteNPagedLookasideList
132ExDeletePagedLookasideList
133ExDeleteResourceLite
134ExDesktopObjectType DATA
135ExDisableResourceBoostLite
136ExEnterCriticalRegionAndAcquireFastMutexUnsafe
137ExEnterCriticalRegionAndAcquireResourceExclusive
138ExEnterCriticalRegionAndAcquireResourceShared
139ExEnterCriticalRegionAndAcquireSharedWaitForExclusive
140ExEnterPriorityRegionAndAcquireResourceExclusive
141ExEnterPriorityRegionAndAcquireResourceShared
142ExEnumHandleTable
143ExEventObjectType DATA
144ExExtendZone
145ExFetchLicenseData
146ExFlushLookasideListEx
147ExFreeCacheAwarePushLock
148ExFreeCacheAwareRundownProtection
149ExFreePool
150ExFreePoolWithTag
151ExFreeToPagedLookasideList
152ExGetCurrentProcessorCounts
153ExGetCurrentProcessorCpuUsage
154ExGetExclusiveWaiterCount
155ExGetLicenseTamperState
156ExGetPreviousMode
157ExGetSharedWaiterCount
158ExInitializeLookasideListEx
159ExInitializeNPagedLookasideList
160ExInitializePagedLookasideList
161ExInitializePushLock
162ExInitializeResourceLite
163ExInitializeRundownProtection
164ExInitializeRundownProtectionCacheAware
165ExInitializeZone
166ExInterlockedAddLargeInteger
167ExInterlockedAddUlong
168ExInterlockedExtendZone
169ExInterlockedInsertHeadList
170ExInterlockedInsertTailList
171ExInterlockedPopEntryList
172ExInterlockedPushEntryList
173ExInterlockedRemoveHeadList
174ExIsProcessorFeaturePresent
175ExIsResourceAcquiredExclusiveLite
176ExIsResourceAcquiredSharedLite
177ExLocalTimeToSystemTime
178ExNotifyCallback
179ExQueryAttributeInformation
180ExQueryDepthSList
181ExQueryPoolBlockSize
182ExQueueWorkItem
183ExRaiseAccessViolation
184ExRaiseDatatypeMisalignment
185ExRaiseException
186ExRaiseHardError
187ExRaiseStatus
188ExReInitializeRundownProtection
189ExReInitializeRundownProtectionCacheAware
190ExRegisterAttributeInformationCallback
191ExRegisterCallback
192ExRegisterExtension
193ExReinitializeResourceLite
194ExReleaseCacheAwarePushLockExclusive
195ExReleaseFastMutex
196ExReleaseFastMutexUnsafe
197ExReleaseFastMutexUnsafeAndLeaveCriticalRegion
198ExReleaseResourceAndLeaveCriticalRegion
199ExReleaseResourceAndLeavePriorityRegion
200ExReleaseResourceForThreadLite
201ExReleaseResourceLite
202ExReleaseRundownProtection
203ExReleaseRundownProtectionCacheAware
204ExReleaseRundownProtectionCacheAwareEx
205ExReleaseRundownProtectionEx
206ExReleaseSpinLockExclusive
207ExReleaseSpinLockExclusiveFromDpcLevel
208ExReleaseSpinLockShared
209ExReleaseSpinLockSharedFromDpcLevel
210ExRundownCompleted
211ExRundownCompletedCacheAware
212ExSemaphoreObjectType DATA
213ExSetLicenseTamperState
214ExSetResourceOwnerPointer
215ExSetResourceOwnerPointerEx
216ExSetTimerResolution
217ExSizeOfRundownProtectionCacheAware
218ExSystemExceptionFilter
219ExSystemTimeToLocalTime
220ExTryConvertSharedSpinLockExclusive
221ExTryToAcquireFastMutex
222ExUnregisterAttributeInformationCallback
223ExUnregisterCallback
224ExUnregisterExtension
225ExUpdateLicenseData
226ExUuidCreate
227ExVerifySuite
228ExWaitForRundownProtectionRelease
229ExWaitForRundownProtectionReleaseCacheAware
230ExWindowStationObjectType DATA
231ExfAcquirePushLockExclusive
232ExfAcquirePushLockShared
233ExfReleasePushLock
234ExfReleasePushLockExclusive
235ExfReleasePushLockShared
236ExfTryAcquirePushLockShared
237ExfTryToWakePushLock
238ExfUnblockPushLock
239ExpInterlockedFlushSList
240ExpInterlockedPopEntrySList
241ExpInterlockedPushEntrySList
242FirstEntrySList
243FsRtlAcknowledgeEcp
244FsRtlAcquireFileExclusive
245FsRtlAddBaseMcbEntry
246FsRtlAddBaseMcbEntryEx
247FsRtlAddLargeMcbEntry
248FsRtlAddMcbEntry
249FsRtlAddToTunnelCache
250FsRtlAllocateExtraCreateParameter
251FsRtlAllocateExtraCreateParameterFromLookasideList
252FsRtlAllocateExtraCreateParameterList
253FsRtlAllocateFileLock
254FsRtlAllocatePool
255FsRtlAllocatePoolWithQuota
256FsRtlAllocatePoolWithQuotaTag
257FsRtlAllocatePoolWithTag
258FsRtlAllocateResource
259FsRtlAreNamesEqual
260FsRtlAreThereCurrentOrInProgressFileLocks
261FsRtlAreVolumeStartupApplicationsComplete
262FsRtlBalanceReads
263FsRtlCancellableWaitForMultipleObjects
264FsRtlCancellableWaitForSingleObject
265FsRtlChangeBackingFileObject
266FsRtlCheckLockForReadAccess
267FsRtlCheckLockForWriteAccess
268FsRtlCheckOplock
269FsRtlCheckOplockEx
270FsRtlCopyRead
271FsRtlCopyWrite
272FsRtlCreateSectionForDataScan
273FsRtlCurrentBatchOplock
274FsRtlCurrentOplock
275FsRtlCurrentOplockH
276FsRtlDeleteExtraCreateParameterLookasideList
277FsRtlDeleteKeyFromTunnelCache
278FsRtlDeleteTunnelCache
279FsRtlDeregisterUncProvider
280FsRtlDissectDbcs
281FsRtlDissectName
282FsRtlDoesDbcsContainWildCards
283FsRtlDoesNameContainWildCards
284FsRtlFastCheckLockForRead
285FsRtlFastCheckLockForWrite
286FsRtlFastUnlockAll
287FsRtlFastUnlockAllByKey
288FsRtlFastUnlockSingle
289FsRtlFindExtraCreateParameter
290FsRtlFindInTunnelCache
291FsRtlFreeExtraCreateParameter
292FsRtlFreeExtraCreateParameterList
293FsRtlFreeFileLock
294FsRtlGetEcpListFromIrp
295FsRtlGetFileSize
296FsRtlGetNextBaseMcbEntry
297FsRtlGetNextExtraCreateParameter
298FsRtlGetNextFileLock
299FsRtlGetNextLargeMcbEntry
300FsRtlGetNextMcbEntry
301FsRtlGetVirtualDiskNestingLevel
302FsRtlIncrementCcFastMdlReadWait
303FsRtlIncrementCcFastReadNoWait
304FsRtlIncrementCcFastReadNotPossible
305FsRtlIncrementCcFastReadResourceMiss
306FsRtlIncrementCcFastReadWait
307FsRtlInitExtraCreateParameterLookasideList
308FsRtlInitializeBaseMcb
309FsRtlInitializeBaseMcbEx
310FsRtlInitializeExtraCreateParameter
311FsRtlInitializeExtraCreateParameterList
312FsRtlInitializeFileLock
313FsRtlInitializeLargeMcb
314FsRtlInitializeMcb
315FsRtlInitializeOplock
316FsRtlInitializeTunnelCache
317FsRtlInsertExtraCreateParameter
318FsRtlInsertPerFileContext
319FsRtlInsertPerFileObjectContext
320FsRtlInsertPerStreamContext
321FsRtlIsDbcsInExpression
322FsRtlIsEcpAcknowledged
323FsRtlIsEcpFromUserMode
324FsRtlIsFatDbcsLegal
325FsRtlIsHpfsDbcsLegal
326FsRtlIsNameInExpression
327FsRtlIsNtstatusExpected
328FsRtlIsPagingFile
329FsRtlIsTotalDeviceFailure
330FsRtlLegalAnsiCharacterArray DATA
331FsRtlLogCcFlushError
332FsRtlLookupBaseMcbEntry
333FsRtlLookupLargeMcbEntry
334FsRtlLookupLastBaseMcbEntry
335FsRtlLookupLastBaseMcbEntryAndIndex
336FsRtlLookupLastLargeMcbEntry
337FsRtlLookupLastLargeMcbEntryAndIndex
338FsRtlLookupLastMcbEntry
339FsRtlLookupMcbEntry
340FsRtlLookupPerFileContext
341FsRtlLookupPerFileObjectContext
342FsRtlLookupPerStreamContextInternal
343FsRtlMdlRead
344FsRtlMdlReadComplete
345FsRtlMdlReadCompleteDev
346FsRtlMdlReadDev
347FsRtlMdlWriteComplete
348FsRtlMdlWriteCompleteDev
349FsRtlMupGetProviderIdFromName
350FsRtlMupGetProviderInfoFromFileObject
351FsRtlNormalizeNtstatus
352FsRtlNotifyChangeDirectory
353FsRtlNotifyCleanup
354FsRtlNotifyCleanupAll
355FsRtlNotifyFilterChangeDirectory
356FsRtlNotifyFilterReportChange
357FsRtlNotifyFullChangeDirectory
358FsRtlNotifyFullReportChange
359FsRtlNotifyInitializeSync
360FsRtlNotifyReportChange
361FsRtlNotifyUninitializeSync
362FsRtlNotifyVolumeEvent
363FsRtlNotifyVolumeEventEx
364FsRtlNumberOfRunsInBaseMcb
365FsRtlNumberOfRunsInLargeMcb
366FsRtlNumberOfRunsInMcb
367FsRtlOplockBreakH
368FsRtlOplockBreakToNone
369FsRtlOplockBreakToNoneEx
370FsRtlOplockFsctrl
371FsRtlOplockFsctrlEx
372FsRtlOplockIsFastIoPossible
373FsRtlOplockIsSharedRequest
374FsRtlOplockKeysEqual
375FsRtlPostPagingFileStackOverflow
376FsRtlPostStackOverflow
377FsRtlPrepareMdlWrite
378FsRtlPrepareMdlWriteDev
379FsRtlPrivateLock
380FsRtlProcessFileLock
381FsRtlQueryMaximumVirtualDiskNestingLevel
382FsRtlRegisterFileSystemFilterCallbacks
383FsRtlRegisterFltMgrCalls
384FsRtlRegisterMupCalls
385FsRtlRegisterUncProvider
386FsRtlRegisterUncProviderEx
387FsRtlReleaseFile
388FsRtlRemoveBaseMcbEntry
389FsRtlRemoveDotsFromPath
390FsRtlRemoveExtraCreateParameter
391FsRtlRemoveLargeMcbEntry
392FsRtlRemoveMcbEntry
393FsRtlRemovePerFileContext
394FsRtlRemovePerFileObjectContext
395FsRtlRemovePerStreamContext
396FsRtlResetBaseMcb
397FsRtlResetLargeMcb
398FsRtlSetEcpListIntoIrp
399FsRtlSplitBaseMcb
400FsRtlSplitLargeMcb
401FsRtlSyncVolumes
402FsRtlTeardownPerFileContexts
403FsRtlTeardownPerStreamContexts
404FsRtlTruncateBaseMcb
405FsRtlTruncateLargeMcb
406FsRtlTruncateMcb
407FsRtlUninitializeBaseMcb
408FsRtlUninitializeFileLock
409FsRtlUninitializeLargeMcb
410FsRtlUninitializeMcb
411FsRtlUninitializeOplock
412FsRtlValidateReparsePointBuffer
413HalDispatchTable DATA
414HalExamineMBR
415HalPrivateDispatchTable DATA
416HeadlessDispatch
417HvlQueryConnection
418InbvAcquireDisplayOwnership
419InbvCheckDisplayOwnership
420InbvDisplayString
421InbvEnableBootDriver
422InbvEnableDisplayString
423InbvInstallDisplayStringFilter
424InbvIsBootDriverInstalled
425InbvNotifyDisplayOwnershipLost
426InbvResetDisplay
427InbvSetScrollRegion
428InbvSetTextColor
429InbvSolidColorFill
430InitSafeBootMode DATA
431InitializeSListHead
432IoAcquireCancelSpinLock
433IoAcquireRemoveLockEx
434IoAcquireVpbSpinLock
435IoAdapterObjectType DATA
436IoAdjustStackSizeForRedirection
437IoAllocateAdapterChannel
438IoAllocateController
439IoAllocateDriverObjectExtension
440IoAllocateErrorLogEntry
441IoAllocateIrp
442IoAllocateMdl
443IoAllocateMiniCompletionPacket
444IoAllocateSfioStreamIdentifier
445IoAllocateWorkItem
446IoAssignDriveLetters
447IoApplyPriorityInfoThread
448IoAssignResources
449IoAttachDevice
450IoAttachDeviceByPointer
451IoAttachDeviceToDeviceStack
452IoAttachDeviceToDeviceStackSafe
453IoBuildAsynchronousFsdRequest
454IoBuildDeviceIoControlRequest
455IoBuildPartialMdl
456IoBuildSynchronousFsdRequest
457IoCallDriver
458IoCancelFileOpen
459IoCancelIrp
460IoCheckDesiredAccess
461IoCheckEaBufferValidity
462IoCheckFunctionAccess
463IoCheckQuerySetFileInformation
464IoCheckQuerySetVolumeInformation
465IoCheckQuotaBufferValidity
466IoCheckShareAccess
467IoCheckShareAccessEx
468IoClearDependency
469IoClearIrpExtraCreateParameter
470IoCompleteRequest
471IoConnectInterrupt
472IoConnectInterruptEx
473IoCreateArcName
474IoCreateController
475IoCreateDevice
476IoCreateDisk
477IoCreateDriver
478IoCreateFile
479IoCreateFileEx
480IoCreateFileSpecifyDeviceObjectHint
481IoCreateNotificationEvent
482IoCreateStreamFileObject
483IoCreateStreamFileObjectEx
484IoCreateStreamFileObjectLite
485IoCreateSymbolicLink
486IoCreateSynchronizationEvent
487IoCreateUnprotectedSymbolicLink
488IoCsqInitialize
489IoCsqInitializeEx
490IoCsqInsertIrp
491IoCsqInsertIrpEx
492IoCsqRemoveIrp
493IoCsqRemoveNextIrp
494IoDeleteAllDependencyRelations
495IoDeleteController
496IoDeleteDevice
497IoDeleteDriver
498IoDeleteSymbolicLink
499IoDetachDevice
500IoDeviceHandlerObjectSize DATA
501IoDeviceHandlerObjectType DATA
502IoDeviceObjectType DATA
503IoDisconnectInterrupt
504IoDisconnectInterruptEx
505IoDriverObjectType DATA
506IoDuplicateDependency
507IoEnqueueIrp
508IoEnumerateDeviceObjectList
509IoEnumerateRegisteredFiltersList
510IoFastQueryNetworkAttributes
511IoFileObjectType DATA
512IoForwardAndCatchIrp
513IoForwardIrpSynchronously
514IoFreeController
515IoFreeErrorLogEntry
516IoFreeIrp
517IoFreeMdl
518IoFreeMiniCompletionPacket
519IoFreeSfioStreamIdentifier
520IoFreeWorkItem
521IoGetAffinityInterrupt
522IoGetAttachedDevice
523IoGetAttachedDeviceReference
524IoGetBaseFileSystemDeviceObject
525IoGetBootDiskInformation
526IoGetBootDiskInformationLite
527IoGetConfigurationInformation
528IoGetContainerInformation
529IoGetCurrentProcess
530IoGetDeviceAttachmentBaseRef
531IoGetDeviceInterfaceAlias
532IoGetDeviceInterfaces
533IoGetDeviceNumaNode
534IoGetDeviceObjectPointer
535IoGetDeviceProperty
536IoGetDevicePropertyData
537IoGetDeviceToVerify
538IoGetDiskDeviceObject
539IoGetDmaAdapter
540IoGetDriverObjectExtension
541IoGetFileObjectGenericMapping
542IoGetInitialStack
543IoGetIoPriorityHint
544IoGetIrpExtraCreateParameter
545IoGetLowerDeviceObject
546IoGetOplockKeyContext
547IoGetPagingIoPriority
548IoGetRelatedDeviceObject
549IoGetRequestorProcess
550IoGetRequestorProcessId
551IoGetRequestorSessionId
552IoGetSfioStreamIdentifier
553IoGetStackLimits
554IoGetSymlinkSupportInformation
555IoGetTopLevelIrp
556IoGetTransactionParameterBlock
557IoInitializeIrp
558IoInitializeRemoveLockEx
559IoInitializeTimer
560IoInitializeWorkItem
561IoInvalidateDeviceRelations
562IoInvalidateDeviceState
563IoIs32bitProcess
564IoIsFileObjectIgnoringSharing
565IoIsFileOriginRemote
566IoIsOperationSynchronous
567IoIsSystemThread
568IoIsValidNameGraftingBuffer
569IoIsWdmVersionAvailable
570IoMakeAssociatedIrp
571IoOpenDeviceInterfaceRegistryKey
572IoOpenDeviceRegistryKey
573IoPageRead
574IoPnPDeliverServicePowerNotification
575IoQueryDeviceDescription
576IoQueryFileDosDeviceName
577IoQueryFileInformation
578IoQueryVolumeInformation
579IoQueueThreadIrp
580IoQueueWorkItem
581IoQueueWorkItemEx
582IoRaiseHardError
583IoRaiseInformationalHardError
584IoReadDiskSignature
585IoReadOperationCount DATA
586IoReadPartitionTable
587IoReadPartitionTableEx
588IoReadTransferCount DATA
589IoRegisterBootDriverReinitialization
590IoRegisterContainerNotification
591IoRegisterDeviceInterface
592IoRegisterDriverReinitialization
593IoRegisterFileSystem
594IoRegisterFsRegistrationChange
595IoRegisterFsRegistrationChangeMountAware
596IoRegisterLastChanceShutdownNotification
597IoRegisterPlugPlayNotification
598IoRegisterPriorityCallback
599IoRegisterShutdownNotification
600IoReleaseCancelSpinLock
601IoReleaseRemoveLockAndWaitEx
602IoReleaseRemoveLockEx
603IoReleaseVpbSpinLock
604IoRemoveShareAccess
605IoReplaceFileObjectName
606IoReplacePartitionUnit
607IoReportDetectedDevice
608IoReportHalResourceUsage
609IoReportResourceForDetection
610IoReportResourceUsage
611IoReportRootDevice
612IoReportTargetDeviceChange
613IoReportTargetDeviceChangeAsynchronous
614IoRequestDeviceEject
615IoRequestDeviceEjectEx
616IoRetrievePriorityInfo
617IoReuseIrp
618IoSetCompletionRoutineEx
619IoSetDependency
620IoSetDeviceInterfaceState
621IoSetDevicePropertyData
622IoSetDeviceToVerify
623IoSetFileObjectIgnoreSharing
624IoSetFileOrigin
625IoSetHardErrorOrVerifyDevice
626IoSetInformation
627IoSetIoCompletion
628IoSetIoCompletionEx
629IoSetIoPriorityHint
630IoSetIoPriorityHintIntoFileObject
631IoSetIoPriorityHintIntoThread
632IoSetIrpExtraCreateParameter
633IoSetOplockKeyContext
634IoSetPartitionInformation
635IoSetPartitionInformationEx
636IoSetShareAccess
637IoSetShareAccessEx
638IoSetStartIoAttributes
639IoSetSystemPartition
640IoSetThreadHardErrorMode
641IoSetTopLevelIrp
642IoSizeofWorkItem
643IoStartNextPacket
644IoStartNextPacketByKey
645IoStartPacket
646IoStartTimer
647IoStatisticsLock DATA
648IoStopTimer
649IoSynchronousInvalidateDeviceRelations
650IoSynchronousPageWrite
651IoThreadToProcess
652IoTranslateBusAddress
653IoUninitializeWorkItem
654IoUnregisterContainerNotification
655IoUnregisterFileSystem
656IoUnregisterFsRegistrationChange
657IoUnregisterPlugPlayNotification
658IoUnregisterPlugPlayNotificationEx
659IoUnregisterPriorityCallback
660IoUnregisterShutdownNotification
661IoUpdateShareAccess
662IoValidateDeviceIoControlAccess
663IoVerifyPartitionTable
664IoVerifyVolume
665IoVolumeDeviceToDosName
666IoWMIAllocateInstanceIds
667IoWMIDeviceObjectToInstanceName
668IoWMIDeviceObjectToProviderId
669IoWMIExecuteMethod
670IoWMIHandleToInstanceName
671IoWMIOpenBlock
672IoWMIQueryAllData
673IoWMIQueryAllDataMultiple
674IoWMIQuerySingleInstance
675IoWMIQuerySingleInstanceMultiple
676IoWMIRegistrationControl
677IoWMISetNotificationCallback
678IoWMISetSingleInstance
679IoWMISetSingleItem
680IoWMISuggestInstanceName
681IoWMIWriteEvent
682IoWithinStackLimits
683IoWriteErrorLogEntry
684IoWriteOperationCount DATA
685IoWritePartitionTable
686IoWritePartitionTableEx
687IoWriteTransferCount DATA
688IofCallDriver
689IofCompleteRequest
690KdChangeOption
691KdDebuggerEnabled DATA
692KdDebuggerNotPresent DATA
693KdDisableDebugger
694KdEnableDebugger
695KdEnteredDebugger DATA
696KdPollBreakIn
697KdPowerTransition
698KdRefreshDebuggerNotPresent
699KdSystemDebugControl
700KeAcquireGuardedMutex
701KeAcquireGuardedMutexUnsafe
702KeAcquireInStackQueuedSpinLock
703KeAcquireInStackQueuedSpinLockAtDpcLevel
704KeAcquireInStackQueuedSpinLockForDpc
705KeAcquireInStackQueuedSpinLockRaiseToSynch
706KeAcquireInterruptSpinLock
707KeAcquireQueuedSpinLock
708KeAcquireQueuedSpinLockRaiseToSynch
709KeAcquireSpinLockAtDpcLevel
710KeAcquireSpinLockForDpc
711KeAcquireSpinLockRaiseToDpc
712KeAcquireSpinLockRaiseToSynch
713KeAddGroupAffinityEx
714KeAddProcessorAffinityEx
715KeAddProcessorGroupAffinity
716KeAddSystemServiceTable
717KeAlertThread
718KeAllocateCalloutStack
719KeAllocateCalloutStackEx
720KeAndAffinityEx
721KeAndGroupAffinityEx
722KeAreAllApcsDisabled
723KeAreApcsDisabled
724KeAttachProcess
725KeBugCheck
726KeBugCheckEx
727KeCancelTimer
728KeCapturePersistentThreadState
729KeCheckProcessorAffinityEx
730KeCheckProcessorGroupAffinity
731KeClearEvent
732KeConnectInterrupt
733KeComplementAffinityEx
734KeCopyAffinityEx
735KeCountSetBitsAffinityEx
736KeCountSetBitsGroupAffinity
737KeDelayExecutionThread
738KeDeregisterBugCheckCallback
739KeDeregisterBugCheckReasonCallback
740KeDeregisterNmiCallback
741KeDeregisterProcessorChangeCallback
742KeDetachProcess
743KeDisconnectInterrupt
744KeEnterCriticalRegion
745KeEnterGuardedRegion
746KeEnterKernelDebugger
747KeEnumerateNextProcessor
748KeExpandKernelStackAndCallout
749KeExpandKernelStackAndCalloutEx
750KeFindConfigurationEntry
751KeFindConfigurationNextEntry
752KeFindFirstSetLeftAffinityEx
753KeFindFirstSetLeftGroupAffinity
754KeFindFirstSetRightGroupAffinity
755KeFirstGroupAffinityEx
756KeFlushEntireTb
757KeFlushQueuedDpcs
758KeFreeCalloutStack
759KeGenericCallDpc
760KeGetCurrentIrql
761KeGetCurrentNodeNumber
762KeGetCurrentProcessorNumberEx
763KeGetCurrentThread
764KeGetProcessorIndexFromNumber
765KeGetProcessorNumberFromIndex
766KeGetRecommendedSharedDataAlignment
767KeGetXSaveFeatureFlags
768KeInitializeAffinityEx
769KeInitializeApc
770KeInitializeCrashDumpHeader
771KeInitializeDeviceQueue
772KeInitializeDpc
773KeInitializeEnumerationContext
774KeInitializeEnumerationContextFromGroup
775KeInitializeEvent
776KeInitializeGuardedMutex
777KeInitializeInterrupt
778KeInitializeMutant
779KeInitializeMutex
780KeInitializeQueue
781KeInitializeSemaphore
782KeInitializeThreadedDpc
783KeInitializeTimer
784KeInitializeTimerEx
785KeInsertByKeyDeviceQueue
786KeInsertDeviceQueue
787KeInsertHeadQueue
788KeInsertQueue
789KeInsertQueueApc
790KeInsertQueueDpc
791KeInterlockedClearProcessorAffinityEx
792KeInterlockedSetProcessorAffinityEx
793KeInvalidateAllCaches
794KeInvalidateRangeAllCaches
795KeIpiGenericCall
796KeIsAttachedProcess
797KeIsEmptyAffinityEx
798KeIsEqualAffinityEx
799KeIsExecutingDpc
800KeIsSingleGroupAffinityEx
801KeIsSubsetAffinityEx
802KeIsWaitListEmpty
803KeLastBranchMSR DATA
804KeLeaveCriticalRegion
805KeLeaveGuardedRegion
806KeLoaderBlock DATA
807KeLowerIrql
808KeNumberProcessors DATA
809KeOrAffinityEx
810KeProcessorGroupAffinity
811KeProfileInterruptWithSource
812KePulseEvent
813KeQueryActiveGroupCount
814KeQueryActiveProcessorAffinity
815KeQueryActiveProcessorCount
816KeQueryActiveProcessorCountEx
817KeQueryActiveProcessors
818KeQueryMultiThreadProcessorSet
819KeQueryDpcWatchdogInformation
820KeQueryGroupAffinity
821KeQueryGroupAffinityEx
822KeQueryHardwareCounterConfiguration
823KeQueryHighestNodeNumber
824KeQueryLogicalProcessorRelationship
825KeQueryMaximumGroupCount
826KeQueryMaximumProcessorCount
827KeQueryMaximumProcessorCountEx
828KeQueryNodeActiveAffinity
829KeQueryNodeMaximumProcessorCount
830KeQueryPrcbAddress
831KeQueryPriorityThread
832KeQueryRuntimeThread
833KeQueryTimeIncrement
834KeQueryUnbiasedInterruptTime
835KeRaiseIrqlToDpcLevel
836KeRaiseUserException
837KeReadStateEvent
838KeReadStateMutant
839KeReadStateMutex
840KeReadStateQueue
841KeReadStateSemaphore
842KeReadStateTimer
843KeRegisterBugCheckCallback
844KeRegisterBugCheckReasonCallback
845KeRegisterNmiCallback
846KeRegisterProcessorChangeCallback
847KeReleaseGuardedMutex
848KeReleaseGuardedMutexUnsafe
849KeReleaseInStackQueuedSpinLock
850KeReleaseInStackQueuedSpinLockForDpc
851KeReleaseInStackQueuedSpinLockFromDpcLevel
852KeReleaseInterruptSpinLock
853KeReleaseMutant
854KeReleaseMutex
855KeReleaseQueuedSpinLock
856KeReleaseSemaphore
857KeReleaseSpinLock
858KeReleaseSpinLockForDpc
859KeReleaseSpinLockFromDpcLevel
860KeRemoveByKeyDeviceQueue
861KeRemoveByKeyDeviceQueueIfBusy
862KeRemoveDeviceQueue
863KeRemoveEntryDeviceQueue
864KeRemoveGroupAffinityEx
865KeRemoveProcessorAffinityEx
866KeRemoveProcessorGroupAffinity
867KeRemoveQueue
868KeRemoveQueueDpc
869KeRemoveQueueEx
870KeRemoveSystemServiceTable
871KeResetEvent
872KeRestoreExtendedProcessorState
873KeRestoreFloatingPointState
874KeRevertToUserAffinityThread
875KeRevertToUserAffinityThreadEx
876KeRevertToUserGroupAffinityThread
877KeRundownQueue
878KeSaveExtendedProcessorState
879KeSaveFloatingPointState
880KeSaveStateForHibernate
881KeSetActualBasePriorityThread
882KeSetAffinityThread
883KeSetBasePriorityThread
884KeSetCoalescableTimer
885KeSetDmaIoCoherency
886KeSetEvent
887KeSetEventBoostPriority
888KeSetHardwareCounterConfiguration
889KeSetIdealProcessorThread
890KeSetImportanceDpc
891KeSetKernelStackSwapEnable
892KeSetPriorityThread
893KeSetProfileIrql
894KeSetSystemAffinityThread
895KeSetSystemAffinityThreadEx
896KeSetSystemGroupAffinityThread
897KeSetTargetProcessorDpc
898KeSetTargetProcessorDpcEx
899KeSetTimeIncrement
900KeSetTimer
901KeSetTimerEx
902KeSignalCallDpcDone
903KeSignalCallDpcSynchronize
904KeStackAttachProcess
905KeStartDynamicProcessor
906KeSubtractAffinityEx
907KeSynchronizeExecution
908KeTerminateThread
909KeTestAlertThread
910KeTestSpinLock
911KeTryToAcquireGuardedMutex
912KeTryToAcquireQueuedSpinLock
913KeTryToAcquireQueuedSpinLockRaiseToSynch
914KeTryToAcquireSpinLockAtDpcLevel
915KeUnstackDetachProcess
916KeUpdateRunTime
917KeUpdateSystemTime
918KeUserModeCallback
919KeWaitForMultipleObjects
920KeWaitForMutexObject
921KeWaitForSingleObject
922KfRaiseIrql
923KiBugCheckData DATA
924KiCheckForKernelApcDelivery
925KiCpuId
926LdrAccessResource
927LdrEnumResources
928LdrFindResourceDirectory_U
929LdrFindResourceEx_U
930LdrFindResource_U
931LdrResFindResource
932LdrResFindResourceDirectory
933LdrResSearchResource
934LpcPortObjectType DATA
935LpcReplyWaitReplyPort
936LpcRequestPort
937LpcRequestWaitReplyPort
938LpcRequestWaitReplyPortEx
939LpcSendWaitReceivePort
940LsaCallAuthenticationPackage
941LsaDeregisterLogonProcess
942LsaFreeReturnBuffer
943LsaLogonUser
944LsaLookupAuthenticationPackage
945LsaRegisterLogonProcess
946Mm64BitPhysicalAddress DATA
947MmAddPhysicalMemory
948MmAddVerifierThunks
949MmAdjustWorkingSetSize
950MmAdvanceMdl
951MmAllocateContiguousMemory
952MmAllocateContiguousMemorySpecifyCache
953MmAllocateContiguousMemorySpecifyCacheNode
954MmAllocateMappingAddress
955MmAllocateNonCachedMemory
956MmAllocatePagesForMdl
957MmAllocatePagesForMdlEx
958MmBadPointer DATA
959MmBuildMdlForNonPagedPool
960MmCanFileBeTruncated
961MmCommitSessionMappedView
962MmCopyVirtualMemory
963MmCreateMdl
964MmCreateMirror
965MmCreateSection
966MmDisableModifiedWriteOfSection
967MmDoesFileHaveUserWritableReferences
968MmFlushImageSection
969MmForceSectionClosed
970MmFreeContiguousMemory
971MmFreeContiguousMemorySpecifyCache
972MmFreeMappingAddress
973MmFreeNonCachedMemory
974MmFreePagesFromMdl
975MmGetPhysicalAddress
976MmGetPhysicalMemoryRanges
977MmGetSystemRoutineAddress
978MmGetVirtualForPhysical
979MmGrowKernelStack
980MmHighestUserAddress DATA
981MmIsAddressValid
982MmIsDriverVerifying
983MmIsDriverVerifyingByAddress
984MmIsIoSpaceActive
985MmIsNonPagedSystemAddressValid
986MmIsRecursiveIoFault
987MmIsThisAnNtAsSystem
988MmIsVerifierEnabled
989MmLockPagableDataSection
990MmLockPagableImageSection
991MmLockPagableSectionByHandle
992MmMapIoSpace
993MmMapLockedPages
994MmMapLockedPagesSpecifyCache
995MmMapLockedPagesWithReservedMapping
996MmMapMemoryDumpMdl
997MmMapUserAddressesToPage
998MmMapVideoDisplay
999MmMapViewInSessionSpace
1000MmMapViewInSystemSpace
1001MmMapViewOfSection
1002MmMarkPhysicalMemoryAsBad
1003MmMarkPhysicalMemoryAsGood
1004MmPageEntireDriver
1005MmPrefetchPages
1006MmProbeAndLockPages
1007MmProbeAndLockProcessPages
1008MmProbeAndLockSelectedPages
1009MmProtectMdlSystemAddress
1010MmQuerySystemSize
1011MmRemovePhysicalMemory
1012MmResetDriverPaging
1013MmRotatePhysicalView
1014MmSectionObjectType DATA
1015MmSecureVirtualMemory
1016MmSetAddressRangeModified
1017MmSetBankedSection
1018MmSizeOfMdl
1019MmSystemRangeStart DATA
1020MmTrimAllSystemPagableMemory
1021MmUnlockPagableImageSection
1022MmUnlockPages
1023MmUnmapIoSpace
1024MmUnmapLockedPages
1025MmUnmapReservedMapping
1026MmUnmapVideoDisplay
1027MmUnmapViewInSessionSpace
1028MmUnmapViewInSystemSpace
1029MmUnmapViewOfSection
1030MmUnsecureVirtualMemory
1031MmUserProbeAddress DATA
1032NlsAnsiCodePage DATA
1033NlsLeadByteInfo DATA
1034NlsMbCodePageTag DATA
1035NlsMbOemCodePageTag DATA
1036NlsOemCodePage DATA
1037NlsOemLeadByteInfo DATA
1038NtAddAtom
1039NtAdjustPrivilegesToken
1040NtAllocateLocallyUniqueId
1041NtAllocateUuids
1042NtAllocateVirtualMemory
1043NtBuildGUID DATA
1044NtBuildLab DATA
1045NtBuildNumber DATA
1046NtClose
1047NtCommitComplete
1048NtCommitEnlistment
1049NtCommitTransaction
1050NtConnectPort
1051NtCreateEnlistment
1052NtCreateEvent
1053NtCreateFile
1054NtCreateResourceManager
1055NtCreateSection
1056NtCreateTransaction
1057NtCreateTransactionManager
1058NtDeleteAtom
1059NtDeleteFile
1060NtDeviceIoControlFile
1061NtDuplicateObject
1062NtDuplicateToken
1063NtEnumerateTransactionObject
1064NtFindAtom
1065NtFreeVirtualMemory
1066NtFreezeTransactions
1067NtFsControlFile
1068NtGetEnvironmentVariableEx
1069NtGetNotificationResourceManager
1070NtGlobalFlag DATA
1071NtLockFile
1072NtMakePermanentObject
1073NtMapViewOfSection
1074NtNotifyChangeDirectoryFile
1075NtOpenEnlistment
1076NtOpenFile
1077NtOpenProcess
1078NtOpenProcessToken
1079NtOpenProcessTokenEx
1080NtOpenResourceManager
1081NtOpenThread
1082NtOpenThreadToken
1083NtOpenThreadTokenEx
1084NtOpenTransaction
1085NtOpenTransactionManager
1086NtPrePrepareComplete
1087NtPrePrepareEnlistment
1088NtPrepareComplete
1089NtPrepareEnlistment
1090NtPropagationComplete
1091NtPropagationFailed
1092NtQueryDirectoryFile
1093NtQueryEaFile
1094NtQueryEnvironmentVariableInfoEx
1095NtQueryInformationAtom
1096NtQueryInformationEnlistment
1097NtQueryInformationFile
1098NtQueryInformationProcess
1099NtQueryInformationResourceManager
1100NtQueryInformationThread
1101NtQueryInformationToken
1102NtQueryInformationTransaction
1103NtQueryInformationTransactionManager
1104NtQueryQuotaInformationFile
1105NtQuerySecurityAttributesToken
1106NtQuerySecurityObject
1107NtQuerySystemInformation
1108NtQuerySystemInformationEx
1109NtQueryVolumeInformationFile
1110NtReadFile
1111NtReadOnlyEnlistment
1112NtRecoverEnlistment
1113NtRecoverResourceManager
1114NtRecoverTransactionManager
1115NtRequestPort
1116NtRequestWaitReplyPort
1117NtRollbackComplete
1118NtRollbackEnlistment
1119NtRollbackTransaction
1120NtSetEaFile
1121NtSetEvent
1122NtSetInformationEnlistment
1123NtSetInformationFile
1124NtSetInformationProcess
1125NtSetInformationResourceManager
1126NtSetInformationThread
1127NtSetInformationToken
1128NtSetInformationTransaction
1129NtSetQuotaInformationFile
1130NtSetSecurityObject
1131NtSetVolumeInformationFile
1132NtShutdownSystem
1133NtThawTransactions
1134NtTraceControl
1135NtTraceEvent
1136NtUnlockFile
1137NtVdmControl
1138NtWaitForSingleObject
1139NtWriteFile
1140ObAssignSecurity
1141ObCheckCreateObjectAccess
1142ObCheckObjectAccess
1143ObCloseHandle
1144ObCreateObject
1145ObCreateObjectType
1146ObDeleteCapturedInsertInfo
1147ObDereferenceObject
1148ObDereferenceObjectDeferDelete
1149ObDereferenceObjectDeferDeleteWithTag
1150ObDereferenceSecurityDescriptor
1151ObFindHandleForObject
1152ObGetFilterVersion
1153ObGetObjectSecurity
1154ObGetObjectType
1155ObInsertObject
1156ObIsDosDeviceLocallyMapped
1157ObIsKernelHandle
1158ObLogSecurityDescriptor
1159ObMakeTemporaryObject
1160ObOpenObjectByName
1161ObOpenObjectByPointer
1162ObOpenObjectByPointerWithTag
1163ObQueryNameInfo
1164ObQueryNameString
1165ObQueryObjectAuditingByHandle
1166ObReferenceObjectByHandle
1167ObReferenceObjectByHandleWithTag
1168ObReferenceObjectByName
1169ObReferenceObjectByPointer
1170ObReferenceObjectByPointerWithTag
1171ObReferenceSecurityDescriptor
1172ObRegisterCallbacks
1173ObReleaseObjectSecurity
1174ObSetHandleAttributes
1175ObSetSecurityDescriptorInfo
1176ObSetSecurityObjectByPointer
1177ObUnRegisterCallbacks
1178ObfDereferenceObject
1179ObfDereferenceObjectWithTag
1180ObfReferenceObject
1181ObfReferenceObjectWithTag
1182POGOBuffer DATA
1183PcwAddInstance
1184PcwCloseInstance
1185PcwCreateInstance
1186PcwRegister
1187PcwUnregister
1188PfFileInfoNotify
1189PfxFindPrefix
1190PfxInitialize
1191PfxInsertPrefix
1192PfxRemovePrefix
1193PoCallDriver
1194PoCancelDeviceNotify
1195PoClearPowerRequest
1196PoCreatePowerRequest
1197PoDeletePowerRequest
1198PoDisableSleepStates
1199PoEndDeviceBusy
1200PoGetSystemWake
1201PoQueryWatchdogTime
1202PoQueueShutdownWorkItem
1203PoReenableSleepStates
1204PoRegisterDeviceForIdleDetection
1205PoRegisterDeviceNotify
1206PoRegisterPowerSettingCallback
1207PoRegisterSystemState
1208PoRequestPowerIrp
1209PoRequestShutdownEvent
1210PoSetDeviceBusyEx
1211PoSetFixedWakeSource
1212PoSetHiberRange
1213PoSetPowerRequest
1214PoSetPowerState
1215PoSetSystemState
1216PoSetSystemWake
1217PoShutdownBugCheck
1218PoStartDeviceBusy
1219PoStartNextPowerIrp
1220PoUnregisterPowerSettingCallback
1221PoUnregisterSystemState
1222PoUserShutdownInitiated
1223ProbeForRead
1224ProbeForWrite
1225PsAcquireProcessExitSynchronization
1226PsAssignImpersonationToken
1227PsChargePoolQuota
1228PsChargeProcessNonPagedPoolQuota
1229PsChargeProcessPagedPoolQuota
1230PsChargeProcessPoolQuota
1231PsCreateSystemProcess
1232PsCreateSystemThread
1233PsDereferenceImpersonationToken
1234PsDereferencePrimaryToken
1235PsDisableImpersonation
1236PsEnterPriorityRegion
1237PsEstablishWin32Callouts
1238PsGetContextThread
1239PsGetCurrentProcess
1240PsGetCurrentProcessId
1241PsGetCurrentProcessSessionId
1242PsGetCurrentProcessWin32Process
1243PsGetCurrentProcessWow64Process
1244PsGetCurrentThread
1245PsGetCurrentThreadId
1246PsGetCurrentThreadPreviousMode
1247PsGetCurrentThreadProcess
1248PsGetCurrentThreadProcessId
1249PsGetCurrentThreadStackBase
1250PsGetCurrentThreadStackLimit
1251PsGetCurrentThreadTeb
1252PsGetCurrentThreadWin32Thread
1253PsGetCurrentThreadWin32ThreadAndEnterCriticalRegion
1254PsGetJobLock
1255PsGetJobSessionId
1256PsGetJobUIRestrictionsClass
1257PsGetProcessCreateTimeQuadPart
1258PsGetProcessDebugPort
1259PsGetProcessExitProcessCalled
1260PsGetProcessExitStatus
1261PsGetProcessExitTime
1262PsGetProcessId
1263PsGetProcessImageFileName
1264PsGetProcessInheritedFromUniqueProcessId
1265PsGetProcessJob
1266PsGetProcessPeb
1267PsGetProcessPriorityClass
1268PsGetProcessSectionBaseAddress
1269PsGetProcessSecurityPort
1270PsGetProcessSessionId
1271PsGetProcessSessionIdEx
1272PsGetProcessWin32Process
1273PsGetProcessWin32WindowStation
1274PsGetProcessWow64Process
1275PsGetThreadFreezeCount
1276PsGetThreadHardErrorsAreDisabled
1277PsGetThreadId
1278PsGetThreadProcess
1279PsGetThreadProcessId
1280PsGetThreadSessionId
1281PsGetThreadTeb
1282PsGetThreadWin32Thread
1283PsGetVersion
1284PsImpersonateClient
1285PsInitialSystemProcess DATA
1286PsIsCurrentThreadPrefetching
1287PsIsProcessBeingDebugged
1288PsIsProtectedProcess
1289PsIsSystemProcess
1290PsIsSystemThread
1291PsIsThreadImpersonating
1292PsIsThreadTerminating
1293PsJobType DATA
1294PsLeavePriorityRegion
1295PsLookupProcessByProcessId
1296PsLookupProcessThreadByCid
1297PsLookupThreadByThreadId
1298PsProcessType DATA
1299PsQueryProcessExceptionFlags
1300PsReferenceImpersonationToken
1301PsReferencePrimaryToken
1302PsReferenceProcessFilePointer
1303PsReleaseProcessExitSynchronization
1304PsRemoveCreateThreadNotifyRoutine
1305PsRemoveLoadImageNotifyRoutine
1306PsRestoreImpersonation
1307PsResumeProcess
1308PsReturnPoolQuota
1309PsReturnProcessNonPagedPoolQuota
1310PsReturnProcessPagedPoolQuota
1311PsRevertThreadToSelf
1312PsRevertToSelf
1313PsSetContextThread
1314PsSetCreateProcessNotifyRoutine
1315PsSetCreateProcessNotifyRoutineEx
1316PsSetCreateThreadNotifyRoutine
1317PsSetCurrentThreadPrefetching
1318PsSetJobUIRestrictionsClass
1319PsSetLegoNotifyRoutine
1320PsSetLoadImageNotifyRoutine
1321PsSetProcessPriorityByClass
1322PsSetProcessPriorityClass
1323PsSetProcessSecurityPort
1324PsSetProcessWin32Process
1325PsSetProcessWindowStation
1326PsSetThreadHardErrorsAreDisabled
1327PsSetThreadWin32Thread
1328PsSuspendProcess
1329PsTerminateSystemThread
1330PsThreadType DATA
1331PsUILanguageComitted DATA
1332PsWrapApcWow64Thread
1333RtlAbsoluteToSelfRelativeSD
1334RtlAddAccessAllowedAce
1335RtlAddAccessAllowedAceEx
1336RtlAddAce
1337RtlAddAtomToAtomTable
1338RtlAddRange
1339RtlAllocateHeap
1340RtlAnsiCharToUnicodeChar
1341RtlAnsiStringToUnicodeSize
1342RtlAnsiStringToUnicodeString
1343RtlAppendAsciizToString
1344RtlAppendStringToString
1345RtlAppendUnicodeStringToString
1346RtlAppendUnicodeToString
1347RtlAreAllAccessesGranted
1348RtlAreAnyAccessesGranted
1349RtlAreBitsClear
1350RtlAreBitsSet
1351RtlAssert
1352RtlCaptureContext
1353RtlCaptureStackBackTrace
1354RtlCharToInteger
1355RtlCheckRegistryKey
1356RtlClearAllBits
1357RtlClearBit
1358RtlClearBits
1359RtlCmDecodeMemIoResource
1360RtlCmEncodeMemIoResource
1361RtlCompareAltitudes
1362RtlCompareMemory
1363RtlCompareMemoryUlong
1364RtlCompareString
1365RtlCompareUnicodeString
1366RtlCompareUnicodeStrings
1367RtlCompressBuffer
1368RtlCompressChunks
1369RtlComputeCrc32
1370RtlContractHashTable
1371RtlConvertSidToUnicodeString
1372RtlCopyLuid
1373RtlCopyLuidAndAttributesArray
1374RtlCopyMemory
1375RtlCopyMemoryNonTemporal
1376RtlCopyRangeList
1377RtlCopySid
1378RtlCopySidAndAttributesArray
1379RtlCopyString
1380RtlCopyUnicodeString
1381RtlCreateAcl
1382RtlCreateAtomTable
1383RtlCreateHashTable
1384RtlCreateHeap
1385RtlCreateRegistryKey
1386RtlCreateSecurityDescriptor
1387RtlCreateSystemVolumeInformationFolder
1388RtlCreateUnicodeString
1389RtlCustomCPToUnicodeN
1390RtlDecompressBuffer
1391RtlDecompressChunks
1392RtlDecompressFragment
1393RtlDelete
1394RtlDeleteAce
1395RtlDeleteAtomFromAtomTable
1396RtlDeleteElementGenericTable
1397RtlDeleteElementGenericTableAvl
1398RtlDeleteHashTable
1399RtlDeleteNoSplay
1400RtlDeleteOwnersRanges
1401RtlDeleteRange
1402RtlDeleteRegistryValue
1403RtlDescribeChunk
1404RtlDestroyAtomTable
1405RtlDestroyHeap
1406RtlDowncaseUnicodeChar
1407RtlDowncaseUnicodeString
1408RtlDuplicateUnicodeString
1409RtlEmptyAtomTable
1410RtlEndEnumerationHashTable
1411RtlEndWeakEnumerationHashTable
1412RtlEnumerateEntryHashTable
1413RtlEnumerateGenericTable
1414RtlEnumerateGenericTableAvl
1415RtlEnumerateGenericTableLikeADirectory
1416RtlEnumerateGenericTableWithoutSplaying
1417RtlEnumerateGenericTableWithoutSplayingAvl
1418RtlEqualLuid
1419RtlEqualSid
1420RtlEqualString
1421RtlEqualUnicodeString
1422RtlEthernetAddressToStringA
1423RtlEthernetAddressToStringW
1424RtlEthernetStringToAddressA
1425RtlEthernetStringToAddressW
1426RtlExpandHashTable
1427RtlFillMemory
1428RtlFindAceByType
1429RtlFindClearBits
1430RtlFindClearBitsAndSet
1431RtlFindClearRuns
1432RtlFindClosestEncodableLength
1433RtlFindFirstRunClear
1434RtlFindLastBackwardRunClear
1435RtlFindLeastSignificantBit
1436RtlFindLongestRunClear
1437RtlFindMessage
1438RtlFindMostSignificantBit
1439RtlFindNextForwardRunClear
1440RtlFindRange
1441RtlFindSetBits
1442RtlFindSetBitsAndClear
1443RtlFindUnicodePrefix
1444RtlFormatCurrentUserKeyPath
1445RtlFormatMessage
1446RtlFreeAnsiString
1447RtlFreeHeap
1448RtlFreeOemString
1449RtlFreeRangeList
1450RtlFreeUnicodeString
1451RtlGUIDFromString
1452RtlGenerate8dot3Name
1453RtlGetAce
1454RtlGetCallersAddress
1455RtlGetCompressionWorkSpaceSize
1456RtlGetDaclSecurityDescriptor
1457RtlGetDefaultCodePage
1458RtlGetElementGenericTable
1459RtlGetElementGenericTableAvl
1460RtlGetEnabledExtendedFeatures
1461RtlGetFirstRange
1462RtlGetGroupSecurityDescriptor
1463RtlGetIntegerAtom
1464RtlGetLastRange
1465RtlGetNextEntryHashTable
1466RtlGetNextRange
1467RtlGetNtGlobalFlags
1468RtlGetOwnerSecurityDescriptor
1469RtlGetProductInfo
1470RtlGetSaclSecurityDescriptor
1471RtlGetSetBootStatusData
1472RtlGetThreadLangIdByIndex
1473RtlGetVersion
1474RtlHashUnicodeString
1475RtlIdnToAscii
1476RtlIdnToNameprepUnicode
1477RtlIdnToUnicode
1478RtlImageDirectoryEntryToData
1479RtlImageNtHeader
1480RtlInitAnsiString
1481RtlInitAnsiStringEx
1482RtlInitCodePageTable
1483RtlInitEnumerationHashTable
1484RtlInitString
1485RtlInitUnicodeString
1486RtlInitUnicodeStringEx
1487RtlInitWeakEnumerationHashTable
1488RtlInitializeBitMap
1489RtlInitializeGenericTable
1490RtlInitializeGenericTableAvl
1491RtlInitializeRangeList
1492RtlInitializeSid
1493RtlInitializeUnicodePrefix
1494RtlInsertElementGenericTable
1495RtlInsertElementGenericTableAvl
1496RtlInsertElementGenericTableFull
1497RtlInsertElementGenericTableFullAvl
1498RtlInsertEntryHashTable
1499RtlInsertUnicodePrefix
1500RtlInt64ToUnicodeString
1501RtlIntegerToChar
1502RtlIntegerToUnicode
1503RtlIntegerToUnicodeString
1504RtlInvertRangeList
1505RtlInvertRangeListEx
1506RtlIoDecodeMemIoResource
1507RtlIoEncodeMemIoResource
1508RtlIpv4AddressToStringA
1509RtlIpv4AddressToStringExA
1510RtlIpv4AddressToStringExW
1511RtlIpv4AddressToStringW
1512RtlIpv4StringToAddressA
1513RtlIpv4StringToAddressExA
1514RtlIpv4StringToAddressExW
1515RtlIpv4StringToAddressW
1516RtlIpv6AddressToStringA
1517RtlIpv6AddressToStringExA
1518RtlIpv6AddressToStringExW
1519RtlIpv6AddressToStringW
1520RtlIpv6StringToAddressA
1521RtlIpv6StringToAddressExA
1522RtlIpv6StringToAddressExW
1523RtlIpv6StringToAddressW
1524RtlIsGenericTableEmpty
1525RtlIsGenericTableEmptyAvl
1526RtlIsNameLegalDOS8Dot3
1527RtlIsNormalizedString
1528RtlIsNtDdiVersionAvailable
1529RtlIsRangeAvailable
1530RtlIsServicePackVersionInstalled
1531RtlIsValidOemCharacter
1532RtlLengthRequiredSid
1533RtlLengthSecurityDescriptor
1534RtlLengthSid
1535RtlLoadString
1536RtlLocalTimeToSystemTime
1537RtlLockBootStatusData
1538RtlLookupAtomInAtomTable
1539RtlLookupElementGenericTable
1540RtlLookupElementGenericTableAvl
1541RtlLookupElementGenericTableFull
1542RtlLookupElementGenericTableFullAvl
1543RtlLookupEntryHashTable
1544RtlLookupFirstMatchingElementGenericTableAvl
1545RtlLookupFunctionEntry
1546RtlMapGenericMask
1547RtlMapSecurityErrorToNtStatus
1548RtlMergeRangeLists
1549RtlMoveMemory
1550RtlMultiByteToUnicodeN
1551RtlMultiByteToUnicodeSize
1552RtlNextUnicodePrefix
1553RtlNormalizeString
1554RtlNtStatusToDosError
1555RtlNtStatusToDosErrorNoTeb
1556RtlNumberGenericTableElements
1557RtlNumberGenericTableElementsAvl
1558RtlNumberOfClearBits
1559RtlNumberOfSetBits
1560RtlNumberOfSetBitsUlongPtr
1561RtlOemStringToCountedUnicodeString
1562RtlOemStringToUnicodeSize
1563RtlOemStringToUnicodeString
1564RtlOemToUnicodeN
1565RtlOwnerAcesPresent
1566RtlPcToFileHeader
1567RtlPinAtomInAtomTable
1568RtlPrefetchMemoryNonTemporal
1569RtlPrefixString
1570RtlPrefixUnicodeString
1571RtlQueryAtomInAtomTable
1572RtlQueryDynamicTimeZoneInformation
1573RtlQueryElevationFlags
1574RtlQueryModuleInformation
1575RtlQueryRegistryValues
1576RtlQueryTimeZoneInformation
1577RtlRaiseException
1578RtlRandom
1579RtlRandomEx
1580RtlRealPredecessor
1581RtlRealSuccessor
1582RtlRemoveEntryHashTable
1583RtlRemoveUnicodePrefix
1584RtlReplaceSidInSd
1585RtlReserveChunk
1586RtlRestoreContext
1587RtlRunOnceBeginInitialize
1588RtlRunOnceComplete
1589RtlRunOnceExecuteOnce
1590RtlRunOnceInitialize
1591RtlSecondsSince1970ToTime
1592RtlSecondsSince1980ToTime
1593RtlSelfRelativeToAbsoluteSD
1594RtlSelfRelativeToAbsoluteSD2
1595RtlSetAllBits
1596RtlSetBit
1597RtlSetBits
1598RtlSetDaclSecurityDescriptor
1599RtlSetDynamicTimeZoneInformation
1600RtlSetGroupSecurityDescriptor
1601RtlSetOwnerSecurityDescriptor
1602RtlSetSaclSecurityDescriptor
1603RtlSetTimeZoneInformation
1604RtlSidHashInitialize
1605RtlSidHashLookup
1606RtlSizeHeap
1607RtlSplay
1608RtlStringFromGUID
1609RtlSubAuthorityCountSid
1610RtlSubAuthoritySid
1611RtlSubtreePredecessor
1612RtlSubtreeSuccessor
1613RtlSystemTimeToLocalTime
1614RtlTestBit
1615RtlTimeFieldsToTime
1616RtlTimeToElapsedTimeFields
1617RtlTimeToSecondsSince1970
1618RtlTimeToSecondsSince1980
1619RtlTimeToTimeFields
1620RtlTraceDatabaseAdd
1621RtlTraceDatabaseCreate
1622RtlTraceDatabaseDestroy
1623RtlTraceDatabaseEnumerate
1624RtlTraceDatabaseFind
1625RtlTraceDatabaseLock
1626RtlTraceDatabaseUnlock
1627RtlTraceDatabaseValidate
1628RtlUTF8ToUnicodeN
1629RtlUnicodeStringToAnsiSize
1630RtlUnicodeStringToAnsiString
1631RtlUnicodeStringToCountedOemString
1632RtlUnicodeStringToInteger
1633RtlUnicodeStringToOemSize
1634RtlUnicodeStringToOemString
1635RtlUnicodeToCustomCPN
1636RtlUnicodeToMultiByteN
1637RtlUnicodeToMultiByteSize
1638RtlUnicodeToOemN
1639RtlUnicodeToUTF8N
1640RtlUnlockBootStatusData
1641RtlUnwind
1642RtlUnwindEx
1643RtlUpcaseUnicodeChar
1644RtlUpcaseUnicodeString
1645RtlUpcaseUnicodeStringToAnsiString
1646RtlUpcaseUnicodeStringToCountedOemString
1647RtlUpcaseUnicodeStringToOemString
1648RtlUpcaseUnicodeToCustomCPN
1649RtlUpcaseUnicodeToMultiByteN
1650RtlUpcaseUnicodeToOemN
1651RtlUpperChar
1652RtlUpperString
1653RtlValidRelativeSecurityDescriptor
1654RtlValidSecurityDescriptor
1655RtlValidSid
1656RtlValidateUnicodeString
1657RtlVerifyVersionInfo
1658RtlVirtualUnwind
1659RtlVolumeDeviceToDosName
1660RtlWalkFrameChain
1661RtlWeaklyEnumerateEntryHashTable
1662RtlWriteRegistryValue
1663RtlZeroHeap
1664RtlZeroMemory
1665RtlxAnsiStringToUnicodeSize
1666RtlxOemStringToUnicodeSize
1667RtlxUnicodeStringToAnsiSize
1668RtlxUnicodeStringToOemSize
1669SeAccessCheck
1670SeAccessCheckEx
1671SeAccessCheckFromState
1672SeAccessCheckWithHint
1673SeAppendPrivileges
1674SeAssignSecurity
1675SeAssignSecurityEx
1676SeAuditHardLinkCreation
1677SeAuditHardLinkCreationWithTransaction
1678eAuditTransactionStateChange
1679SeAuditingAnyFileEventsWithContext
1680SeAuditingFileEvents
1681SeAuditingFileEventsWithContext
1682SeAuditingFileOrGlobalEvents
1683SeAuditingHardLinkEvents
1684SeAuditingHardLinkEventsWithContext
1685SeAuditingWithTokenForSubcategory
1686SeCaptureSecurityDescriptor
1687SeCaptureSubjectContext
1688SeCaptureSubjectContextEx
1689SeCloseObjectAuditAlarm
1690SeCloseObjectAuditAlarmForNonObObject
1691SeComputeAutoInheritByObjectType
1692SeCreateAccessState
1693SeCreateAccessStateEx
1694SeCreateClientSecurity
1695SeCreateClientSecurityFromSubjectContext
1696SeDeassignSecurity
1697SeDeleteAccessState
1698SeDeleteObjectAuditAlarm
1699SeDeleteObjectAuditAlarmWithTransaction
1700SeExamineSacl
1701SeExports DATA
1702SeFilterToken
1703SeFreePrivileges
1704SeGetLinkedToken
1705SeImpersonateClient
1706SeImpersonateClientEx
1707SeLocateProcessImageName
1708SeLockSubjectContext
1709SeMarkLogonSessionForTerminationNotification
1710SeOpenObjectAuditAlarm
1711SeOpenObjectAuditAlarmForNonObObject
1712SeOpenObjectAuditAlarmWithTransaction
1713SeOpenObjectForDeleteAuditAlarm
1714SeOpenObjectForDeleteAuditAlarmWithTransaction
1715SePrivilegeCheck
1716SePrivilegeObjectAuditAlarm
1717SePublicDefaultDacl DATA
1718SeQueryAuthenticationIdToken
1719SeQueryInformationToken
1720SeQuerySecurityAttributesToken
1721SeQuerySecurityDescriptorInfo
1722SeQuerySessionIdToken
1723SeRegisterLogonSessionTerminatedRoutine
1724SeReleaseSecurityDescriptor
1725SeReleaseSubjectContext
1726SeReportSecurityEvent
1727SeReportSecurityEventWithSubCategory
1728SeSetAccessStateGenericMapping
1729SeSetAuditParameter
1730SeSetSecurityAttributesToken
1731SeSetSecurityDescriptorInfo
1732SeSetSecurityDescriptorInfoEx
1733SeSinglePrivilegeCheck
1734SeSrpAccessCheck
1735SeSystemDefaultDacl DATA
1736SeTokenImpersonationLevel
1737SeTokenIsAdmin
1738SeTokenIsRestricted
1739SeTokenIsWriteRestricted
1740SeTokenObjectType DATA
1741SeTokenType
1742SeUnlockSubjectContext
1743SeUnregisterLogonSessionTerminatedRoutine
1744SeValidSecurityDescriptor
1745TmCancelPropagationRequest
1746TmCommitComplete
1747TmCommitEnlistment
1748TmCommitTransaction
1749TmCreateEnlistment
1750TmCurrentTransaction
1751TmDereferenceEnlistmentKey
1752TmEnableCallbacks
1753TmEndPropagationRequest
1754TmEnlistmentObjectType DATA
1755TmFreezeTransactions
1756TmGetTransactionId
1757TmInitSystem
1758TmInitSystemPhase2
1759TmInitializeResourceManager
1760TmInitializeTransaction
1761TmIsTransactionActive
1762TmPrePrepareComplete
1763TmPrePrepareEnlistment
1764TmPrepareComplete
1765TmPrepareEnlistment
1766TmPropagationComplete
1767TmPropagationFailed
1768TmReadOnlyEnlistment
1769TmRecoverEnlistment
1770TmRecoverResourceManager
1771TmRecoverTransactionManager
1772TmReferenceEnlistmentKey
1773TmRequestOutcomeEnlistment
1774TmResourceManagerObjectType DATA
1775TmRollbackComplete
1776TmRollbackEnlistment
1777TmRollbackTransaction
1778TmSetCurrentTransaction
1779TmThawTransactions
1780TmTransactionManagerObjectType DATA
1781TmTransactionObjectType DATA
1782TmpIsKTMCommitCoordinator
1783VerSetConditionMask
1784VfFailDeviceNode
1785VfFailDriver
1786VfFailSystemBIOS
1787VfIsVerificationEnabled
1788WmiFlushTrace
1789WheaAddErrorSource
1790WheaAttemptPhysicalPageOffline
1791WheaConfigureErrorSource
1792WheaDeferredRecoveryService
1793WheaGetErrorSource
1794WheaInitializeDeferredRecoveryObject
1795WheaInitializeRecordHeader
1796WheaReportHwError
1797WheaRequestDeferredRecovery
1798WmiGetClock
1799WmiQueryTrace
1800WmiQueryTraceInformation
1801WmiStartTrace
1802WmiStopTrace
1803WmiTraceFastEvent
1804WmiTraceMessage
1805WmiTraceMessageVa
1806WmiUpdateTrace
1807XIPDispatch
1808ZwAccessCheckAndAuditAlarm
1809ZwAddBootEntry
1810ZwAddDriverEntry
1811ZwAdjustPrivilegesToken
1812ZwAlertThread
1813ZwAllocateLocallyUniqueId
1814ZwAllocateVirtualMemory
1815ZwAlpcAcceptConnectPort
1816ZwAlpcCancelMessage
1817ZwAlpcConnectPort
1818ZwAlpcCreatePort
1819ZwAlpcCreatePortSection
1820ZwAlpcCreateResourceReserve
1821ZwAlpcCreateSectionView
1822ZwAlpcCreateSecurityContext
1823ZwAlpcDeletePortSection
1824ZwAlpcDeleteResourceReserve
1825ZwAlpcDeleteSectionView
1826ZwAlpcDeleteSecurityContext
1827ZwAlpcDisconnectPort
1828ZwAlpcQueryInformation
1829ZwAlpcSendWaitReceivePort
1830ZwAlpcSetInformation
1831ZwAssignProcessToJobObject
1832ZwCancelIoFile
1833ZwCancelTimer
1834ZwClearEvent
1835ZwClose
1836ZwCloseObjectAuditAlarm
1837ZwCommitComplete
1838ZwCommitEnlistment
1839ZwCommitTransaction
1840ZwConnectPort
1841ZwCreateDirectoryObject
1842ZwCreateEnlistment
1843ZwCreateEvent
1844ZwCreateFile
1845ZwCreateIoCompletion
1846ZwCreateJobObject
1847ZwCreateKey
1848ZwCreateKeyTransacted
1849ZwCreateResourceManager
1850ZwCreateSection
1851ZwCreateSymbolicLinkObject
1852ZwCreateTimer
1853ZwCreateTransaction
1854ZwCreateTransactionManager
1855ZwDeleteBootEntry
1856ZwDeleteDriverEntry
1857ZwDeleteFile
1858ZwDeleteKey
1859ZwDeleteValueKey
1860ZwDeviceIoControlFile
1861ZwDisplayString
1862ZwDuplicateObject
1863ZwDuplicateToken
1864ZwEnumerateBootEntries
1865ZwEnumerateDriverEntries
1866ZwEnumerateKey
1867ZwEnumerateTransactionObject
1868ZwEnumerateValueKey
1869ZwFlushBuffersFile
1870ZwFlushInstructionCache
1871ZwFlushKey
1872ZwFlushVirtualMemory
1873ZwFreeVirtualMemory
1874ZwFsControlFile
1875ZwGetNotificationResourceManager
1876ZwImpersonateAnonymousToken
1877ZwInitiatePowerAction
1878ZwIsProcessInJob
1879ZwLoadDriver
1880ZwLoadKey
1881ZwLoadKeyEx
1882ZwLockFile
1883ZwLockProductActivationKeys
1884ZwMakeTemporaryObject
1885ZwMapViewOfSection
1886ZwModifyBootEntry
1887ZwModifyDriverEntry
1888ZwNotifyChangeKey
1889ZwNotifyChangeSession
1890ZwOpenDirectoryObject
1891ZwOpenEnlistment
1892ZwOpenEvent
1893ZwOpenFile
1894ZwOpenJobObject
1895ZwOpenKey
1896ZwOpenKeyEx
1897ZwOpenKeyTransacted
1898ZwOpenKeyTransactedEx
1899ZwOpenProcess
1900ZwOpenProcessToken
1901ZwOpenProcessTokenEx
1902ZwOpenResourceManager
1903ZwOpenSection
1904ZwOpenSession
1905ZwOpenSymbolicLinkObject
1906ZwOpenThread
1907ZwOpenThreadToken
1908ZwOpenThreadTokenEx
1909ZwOpenTimer
1910ZwOpenTransaction
1911ZwOpenTransactionManager
1912ZwPowerInformation
1913ZwPrePrepareComplete
1914ZwPrePrepareEnlistment
1915ZwPrepareComplete
1916ZwPrepareEnlistment
1917ZwPropagationComplete
1918ZwPropagationFailed
1919ZwPulseEvent
1920ZwQueryBootEntryOrder
1921ZwQueryBootOptions
1922ZwQueryDefaultLocale
1923ZwQueryDefaultUILanguage
1924ZwQueryDirectoryFile
1925ZwQueryDirectoryObject
1926ZwQueryDriverEntryOrder
1927ZwQueryEaFile
1928ZwQueryFullAttributesFile
1929ZwQueryInformationEnlistment
1930ZwQueryInformationFile
1931ZwQueryInformationJobObject
1932ZwQueryInformationProcess
1933ZwQueryInformationResourceManager
1934ZwQueryInformationThread
1935ZwQueryInformationToken
1936ZwQueryInformationTransaction
1937ZwQueryInformationTransactionManager
1938ZwQueryInstallUILanguage
1939ZwQueryKey
1940ZwQueryLicenseValue
1941ZwQueryObject
1942ZwQueryQuotaInformationFile
1943ZwQuerySection
1944ZwQuerySecurityAttributesToken
1945ZwQuerySecurityObject
1946ZwQuerySymbolicLinkObject
1947ZwQuerySystemInformation
1948ZwQueryValueKey
1949ZwQueryVirtualMemory
1950ZwQueryVolumeInformationFile
1951ZwReadFile
1952ZwReadOnlyEnlistment
1953ZwRecoverEnlistment
1954ZwRecoverResourceManager
1955ZwRecoverTransactionManager
1956ZwRemoveIoCompletion
1957ZwRemoveIoCompletionEx
1958ZwReplaceKey
1959ZwRequestPort
1960ZwRequestWaitReplyPort
1961ZwResetEvent
1962ZwRestoreKey
1963ZwRollbackComplete
1964ZwRollbackEnlistment
1965ZwRollbackTransaction
1966ZwSaveKey
1967ZwSaveKeyEx
1968ZwSecureConnectPort
1969ZwSetBootEntryOrder
1970ZwSetBootOptions
1971ZwSetDefaultLocale
1972ZwSetDefaultUILanguage
1973ZwSetDriverEntryOrder
1974ZwSetEaFile
1975ZwSetEvent
1976ZwSetInformationEnlistment
1977ZwSetInformationFile
1978ZwSetInformationJobObject
1979ZwSetInformationObject
1980ZwSetInformationProcess
1981ZwSetInformationResourceManager
1982ZwSetInformationThread
1983ZwSetInformationToken
1984ZwSetInformationTransaction
1985ZwSetQuotaInformationFile
1986ZwSetSecurityObject
1987ZwSetSystemInformation
1988ZwSetSystemTime
1989ZwSetTimer
1990ZwSetTimerEx
1991ZwSetValueKey
1992ZwSetVolumeInformationFile
1993ZwTerminateJobObject
1994ZwTerminateProcess
1995ZwTraceEvent
1996ZwTranslateFilePath
1997ZwUnloadDriver
1998ZwUnloadKey
1999ZwUnloadKeyEx
2000ZwUnlockFile
2001ZwUnmapViewOfSection
2002ZwWaitForMultipleObjects
2003ZwWaitForSingleObject
2004ZwWriteFile
2005ZwYieldExecution
2006__C_specific_handler
2007;__chkstk
2008__misaligned_access
2009_i64toa_s
2010_i64tow_s
2011_itoa
2012_itoa_s
2013_itow
2014_itow_s
2015_local_unwind
2016_ltoa_s
2017_ltow_s
2018_makepath_s
2019_purecall
2020_setjmp
2021_setjmpex
2022_snprintf
2023_snprintf_s
2024_snscanf_s
2025_snwprintf
2026_snwprintf_s
2027_snwscanf_s
2028_splitpath_s
2029_stricmp
2030_strlwr
2031strlwr == _strlwr
2032_strnicmp
2033_strnset
2034_strnset_s
2035_strrev
2036_strset
2037_strset_s
2038_strtoui64
2039_strupr
2040_swprintf
2041_ui64toa_s
2042_ui64tow_s
2043_ultoa_s
2044_ultow_s
2045_vsnprintf
2046_vsnprintf_s
2047_vsnwprintf
2048_vsnwprintf_s
2049_vswprintf
2050_wcsicmp
2051_wcslwr
2052wcslwr == _wcslwr
2053_wcsnicmp
2054_wcsnset
2055_wcsnset_s
2056_wcsrev
2057_wcsset_s
2058_wcsupr
2059_wmakepath_s
2060_wsplitpath_s
2061_wtoi
2062_wtol
2063atoi
2064atol
2065bsearch
2066isdigit
2067islower
2068isprint
2069isspace
2070isupper
2071isxdigit
2072longjmp
2073mbstowcs
2074mbtowc
2075memchr
2076memcmp
2077memcpy
2078memcpy_s
2079memmove
2080memmove_s
2081memset
2082psMUITest DATA
2083qsort
2084rand
2085sprintf
2086sprintf_s
2087srand
2088sscanf_s
2089strcat
2090strcat_s
2091strchr
2092strcmp
2093strcpy
2094strcpy_s
2095strlen
2096strncat
2097strncat_s
2098strncmp
2099strncpy
2100strncpy_s
2101strnlen
2102strrchr
2103strspn
2104strstr
2105strtok_s
2106swprintf
2107swprintf_s
2108swscanf_s
2109tolower
2110toupper
2111towlower
2112towupper
2113vDbgPrintEx
2114vDbgPrintExWithPrefix
2115vsprintf
2116vsprintf_s
2117vswprintf_s
2118wcscat
2119wcscat_s
2120wcschr
2121wcscmp
2122wcscpy
2123wcscpy_s
2124wcscspn
2125wcslen
2126wcsncat
2127wcsncat_s
2128wcsncmp
2129wcsncpy
2130wcsncpy_s
2131wcsnlen
2132wcsrchr
2133wcsspn
2134wcsstr
2135wcstombs
2136wcstoul
2137wctomb
lib/libc/mingw/lib64/ntprint.def created+51
......@@ -0,0 +1,51 @@
1;
2; Exports of file NTPRINT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NTPRINT.dll
8EXPORTS
9IppOcEntry
10PSetupUpgradeClusterDriversW
11ServerInstallW
12SetupInetPrint
13ClassInstall32
14PSetupAssociateICMProfiles
15PSetupBuildDriversFromPath
16PSetupCreateDrvSetupPage
17PSetupCreateMonitorInfo
18PSetupCreatePrinterDeviceInfoList
19PSetupDestroyDriverInfo3
20PSetupDestroyMonitorInfo
21PSetupDestroyPrinterDeviceInfoList
22PSetupDestroySelectedDriverInfo
23PSetupDriverInfoFromName
24PSetupEnumMonitor
25PSetupFindMappedDriver
26PSetupFreeDrvField
27PSetupFreeMem
28PSetupGetActualInstallSection
29PSetupGetDriverInfForPrinter
30PSetupGetDriverInfForPrinterEx
31PSetupGetDriverInfo3
32PSetupGetLocalDataField
33PSetupGetPathToSearch
34PSetupGetSelectedDriverInfo
35PSetupInstallICMProfiles
36PSetupInstallInboxDriverSilently
37PSetupInstallMonitor
38PSetupInstallPrinterDriver
39PSetupInstallPrinterDriverFromTheWeb
40PSetupIsCompatibleDriver
41PSetupIsDriverInstalled
42PSetupIsTheDriverFoundInInfInstalled
43PSetupKillBadUserConnections
44PSetupPreSelectDriver
45PSetupProcessPrinterAdded
46PSetupSelectDeviceButtons
47PSetupSelectDriver
48PSetupSetDriverPlatform
49PSetupSetSelectDevTitleAndInstructions
50PSetupShowBlockedDriverUI
51PSetupThisPlatform
lib/libc/mingw/lib64/ntshrui.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file ntshrui.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ntshrui.dll
8EXPORTS
9CanShareFolderW
10DllCanUnloadNow
11DllGetClassObject
12GetLocalPathFromNetResource
13GetLocalPathFromNetResourceA
14GetLocalPathFromNetResourceW
15GetNetResourceFromLocalPath
16GetNetResourceFromLocalPathA
17GetNetResourceFromLocalPathW
18IsFolderPrivateForUser
19IsPathShared
20IsPathSharedA
21IsPathSharedW
22SetFolderPermissionsForSharing
23SharingDialog
24SharingDialogA
25SharingDialogW
26ShowShareFolderUIW
lib/libc/mingw/lib64/ntvdm64.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file ntvdm64.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ntvdm64.dll
8EXPORTS
9DllInstall
10NtVdm64CreateProcess
11NtVdm64RaiseInvalid16BitError
lib/libc/mingw/lib64/nwprovau.def created+49
......@@ -0,0 +1,49 @@
1;
2; Exports of file NWPROVAU.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY NWPROVAU.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11GetServiceItemFromList
12InitializePrintProvidor
13LsaApCallPackage
14LsaApInitializePackage
15LsaApLogonTerminated
16LsaApLogonUser
17NPAddConnection
18NPAddConnection3
19NPCancelConnection
20NPCloseEnum
21NPEnumResource
22NPFormatNetworkName
23NPGetCaps
24NPGetConnection
25NPGetConnectionPerformance
26NPGetResourceInformation
27NPGetResourceParent
28NPGetUniversalName
29NPGetUser
30NPLoadNameSpaces
31NPLogonNotify
32NPOpenEnum
33NPPasswordChangeNotify
34NSPStartup
35NwDeregisterService
36NwEncryptChallenge
37NwEnumConnections
38NwGetService
39NwGetUserNameForServer
40NwInitializeServiceProvider
41NwQueryInfo
42NwQueryLogonOptions
43NwRegisterService
44NwSetInfoInRegistry
45NwSetInfoInWksta
46NwSetLogonOptionsInRegistry
47NwSetLogonScript
48NwTerminateServiceProvider
49NwValidateUser
lib/libc/mingw/lib64/oakley.def created+24
......@@ -0,0 +1,24 @@
1;
2; Exports of file oakley.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY oakley.DLL
8EXPORTS
9IKEQueryStatistics
10IKEEnumMMs
11IKEDeleteAssociation
12IKEInitiateIKENegotiation
13IKEQuerySpiChange
14IKERegisterNotifyClient
15IKEInit
16IKEShutdown
17IKEInterfaceChange
18IKECloseIKENotifyHandle
19IKEQueryIKENegotiationStatus
20IKECloseIKENegotiationHandle
21IKENotifyPolicyChange
22IKEAddSAs
23IKESetConfigurationVariables
24IKEGetConfigurationVariables
lib/libc/mingw/lib64/ocgen.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file OCSBS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OCSBS.dll
8EXPORTS
9OcEntry
lib/libc/mingw/lib64/ocmanage.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file OCMANAGE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OCMANAGE.dll
8EXPORTS
9OcComponentState
10OcCreateOcPage
11OcCreateSetupPage
12OcGetWizardPages
13OcInitialize
14OcRememberWizardDialogHandle
15OcSubComponentsPresent
16OcTerminate
lib/libc/mingw/lib64/ocmsn.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file OCMSN.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OCMSN.dll
8EXPORTS
9OcEntry
lib/libc/mingw/lib64/odbcbcp.def created+36
......@@ -0,0 +1,36 @@
1;
2; Exports of file odbcbcp.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY odbcbcp.dll
8EXPORTS
9dbprtypeA
10bcp_batch
11bcp_bind
12bcp_colfmt
13bcp_collen
14bcp_colptr
15bcp_columns
16bcp_control
17bcp_done
18bcp_initA
19bcp_exec
20bcp_moretext
21bcp_sendrow
22bcp_readfmtA
23bcp_writefmtA
24dbprtypeW
25bcp_initW
26bcp_readfmtW
27bcp_writefmtW
28SQLLinkedServers
29SQLLinkedCatalogsW
30SQLLinkedCatalogsA
31LibMain
32SQLInitEnumServers
33SQLGetNextEnumeration
34SQLCloseEnumServers
35bcp_getcolfmt
36bcp_setcolfmt
lib/libc/mingw/lib64/odbcconf.def created+104
......@@ -0,0 +1,104 @@
1;
2; Exports of file odbcconf.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY odbcconf.DLL
8EXPORTS
9SetSilent
10SetActionLogFile
11SetActionLogModeSz
12SetActionLogMode
13ExecuteAction
14SetActionEnum
15SetActionName
16ExpandPath
17GetPathFromID
18ApplyW2KXPak
19ApplyMillenCat
20UnregW2KXPak
21AppRegEnum
22CloseAppRegEnum
23OpenAppRegEnum
24QueryApplication
25RefreshAppRegEnum
26RegisterApplication
27RunDLL32_RegisterApplication
28RunDLL32_UnregisterApplication
29UnregisterApplication
30DllCanUnloadNow
31DllGetClassObject
32DllRegisterServer
33SLListCreate
34SLListDestroy
35SLListAddNode
36SLListRemoveNode
37SLListGetHead
38SLListGetNext
39SLListGetData
40SLListSetData
41DllUnregisterServer
42DLListCreate
43DLListDestroy
44DLListAddNode
45DLListRemoveNode
46DLListGetHead
47DLListGetNext
48DLListGetPrev
49DLListGetData
50DLListSetData
51OpenProcessInfo
52CloseProcessInfo
53IsFileLocked
54EnableNTPrivilege
55DisableNTPrivilege
56EnableDebugPrivileges
57DisableDebugPrivileges
58LookupAppFriendlyName
59IsModuleLoadedByProcess
60IsModuleLoadedByProcessEx
61ShutdownProcess
62OpenProcessDisplayNames
63CloseProcessDisplayNames
64GetProcessListFromFileList
65OpenProcessList
66CloseProcessList
67EnumerateProcesses
68AddInfToList
69CreateInfList
70PopulateInfFileList
71DestroyInfList
72OpenDriveSpaceList
73CloseDriveSpaceList
74CalculateRequiredDriveSpace
75OpenDriveSpaceListFromInfList
76RunDLL32_FilterRunOnceExRegistration
77AddFilterRunOnceExRegistrationToRegistry
78RemoveFilterRunOnceExRegistrationFromRegistry
79FilterRunOnceExRegistration
80BackupRegKey
81RestoreRegKey
82RegVersion
83RegVersionEx
84LoadRegVersion
85LoadRegVersionEx
86GetProgramFilesDirectory
87GetProgramFilesCommonFilesDirectory
88OpenPendingRenameList
89ClosePendingRenameList
90ParseVersionDataFromString
91ParseVersionDataFromStringEx
92CompareVersionData
93CompareVersionDataEx
94IsExceptionInf
95IsExceptionInfEx
96CreateRegKeyBackupList
97DestroyRegKeyBackupList
98RegKeyBackup
99RegKeyRestore
100SaveRegKeyBackupToFile
101LoadRegKeyBackupFromFile
102BackupCatalog
103RestoreCatalog
104DoesFileExist
lib/libc/mingw/lib64/odbccr32.def created+45
......@@ -0,0 +1,45 @@
1;
2; Exports of file ODBCCR32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ODBCCR32.dll
8EXPORTS
9SQLBindCol
10SQLCancel
11ReleaseCLStmtResources
12SQLExecDirect
13SQLExecute
14SQLFetch
15SQLFreeStmt
16SQLPrepare
17SQLRowCount
18SQLTransact
19SQLCloseCursor
20SQLEndTran
21SQLFetchScroll
22SQLFreeHandle
23SQLGetDescField
24SQLGetDescRec
25SQLGetStmtAttr
26SQLSetConnectAttr
27SQLGetData
28SQLGetInfo
29SQLGetStmtOption
30SQLParamData
31SQLPutData
32SQLSetConnectOption
33SQLSetStmtOption
34SQLExtendedFetch
35SQLMoreResults
36SQLNativeSql
37SQLNumParams
38SQLParamOptions
39SQLSetPos
40SQLSetScrollOptions
41SQLBindParameter
42SQLSetDescField
43SQLSetDescRec
44SQLSetStmtAttr
45SQLBulkOperations
lib/libc/mingw/lib64/odbccu32.def created+45
......@@ -0,0 +1,45 @@
1;
2; Exports of file ODBCCR32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ODBCCR32.dll
8EXPORTS
9SQLBindCol
10SQLCancel
11ReleaseCLStmtResources
12SQLExecDirect
13SQLExecute
14SQLFetch
15SQLFreeStmt
16SQLPrepare
17SQLRowCount
18SQLTransact
19SQLCloseCursor
20SQLEndTran
21SQLFetchScroll
22SQLFreeHandle
23SQLGetDescField
24SQLGetDescRec
25SQLGetStmtAttr
26SQLSetConnectAttr
27SQLGetData
28SQLGetInfo
29SQLGetStmtOption
30SQLParamData
31SQLPutData
32SQLSetConnectOption
33SQLSetStmtOption
34SQLExtendedFetch
35SQLMoreResults
36SQLNativeSql
37SQLNumParams
38SQLParamOptions
39SQLSetPos
40SQLSetScrollOptions
41SQLBindParameter
42SQLSetDescField
43SQLSetDescRec
44SQLSetStmtAttr
45SQLBulkOperations
lib/libc/mingw/lib64/odbctrac.def created+130
......@@ -0,0 +1,130 @@
1;
2; Exports of file ODBCTRAC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ODBCTRAC.dll
8EXPORTS
9TraceSQLAllocConnect
10TraceSQLAllocEnv
11TraceSQLAllocStmt
12TraceSQLBindCol
13TraceSQLCancel
14TraceSQLColAttributes
15TraceSQLConnect
16TraceSQLDescribeCol
17TraceSQLDisconnect
18TraceSQLError
19TraceSQLExecDirect
20TraceSQLExecute
21TraceSQLFetch
22TraceSQLFreeConnect
23TraceSQLFreeEnv
24TraceSQLFreeStmt
25TraceSQLGetCursorName
26TraceSQLNumResultCols
27TraceSQLPrepare
28TraceSQLRowCount
29TraceSQLSetCursorName
30TraceSQLSetParam
31TraceSQLTransact
32TraceSQLAllocHandle
33TraceSQLBindParam
34TraceSQLCloseCursor
35TraceSQLColAttribute
36TraceSQLCopyDesc
37TraceSQLEndTran
38TraceSQLFetchScroll
39TraceSQLFreeHandle
40TraceSQLGetConnectAttr
41TraceSQLGetDescField
42TraceSQLGetDescRec
43TraceSQLGetDiagField
44TraceSQLGetDiagRec
45TraceSQLGetEnvAttr
46TraceSQLGetStmtAttr
47TraceSQLSetConnectAttr
48TraceSQLColumns
49TraceSQLDriverConnect
50TraceSQLGetConnectOption
51TraceSQLGetData
52TraceSQLGetFunctions
53TraceSQLGetInfo
54TraceSQLGetStmtOption
55TraceSQLGetTypeInfo
56TraceSQLParamData
57TraceSQLPutData
58TraceSQLSetConnectOption
59TraceSQLSetStmtOption
60TraceSQLSpecialColumns
61TraceSQLStatistics
62TraceSQLTables
63TraceSQLBrowseConnect
64TraceSQLColumnPrivileges
65TraceSQLDataSources
66TraceSQLDescribeParam
67TraceSQLExtendedFetch
68TraceSQLForeignKeys
69TraceSQLMoreResults
70TraceSQLNativeSql
71TraceSQLNumParams
72TraceSQLParamOptions
73TraceSQLPrimaryKeys
74TraceSQLProcedureColumns
75TraceSQLProcedures
76TraceSQLSetPos
77TraceSQLSetScrollOptions
78TraceSQLTablePrivileges
79TraceSQLDrivers
80TraceSQLBindParameter
81TraceSQLSetDescField
82TraceSQLSetDescRec
83TraceSQLSetEnvAttr
84TraceSQLSetStmtAttr
85TraceSQLAllocHandleStd
86TraceSQLBulkOperations
87FireVSDebugEvent
88TraceVSControl
89TraceSQLColAttributesW
90TraceSQLConnectW
91TraceSQLDescribeColW
92TraceSQLErrorW
93TraceSQLExecDirectW
94TraceSQLGetCursorNameW
95TraceSQLPrepareW
96TraceSQLSetCursorNameW
97TraceSQLColAttributeW
98TraceSQLGetConnectAttrW
99TraceSQLGetDescFieldW
100TraceSQLGetDescRecW
101TraceSQLGetDiagFieldW
102TraceSQLGetDiagRecW
103TraceSQLGetStmtAttrW
104TraceSQLSetConnectAttrW
105TraceSQLColumnsW
106TraceSQLDriverConnectW
107TraceSQLGetConnectOptionW
108TraceSQLGetInfoW
109TraceSQLGetTypeInfoW
110TraceSQLSetConnectOptionW
111TraceSQLSpecialColumnsW
112TraceSQLStatisticsW
113TraceSQLTablesW
114TraceSQLBrowseConnectW
115TraceSQLColumnPrivilegesW
116TraceSQLDataSourcesW
117TraceSQLForeignKeysW
118TraceSQLNativeSqlW
119TraceSQLPrimaryKeysW
120TraceSQLProcedureColumnsW
121TraceSQLProceduresW
122TraceSQLTablePrivilegesW
123TraceSQLDriversW
124TraceSQLSetDescFieldW
125TraceSQLSetStmtAttrW
126TraceSQLAllocHandleStdW
127TraceReturn
128TraceOpenLogFile
129TraceCloseLogFile
130TraceVersion
lib/libc/mingw/lib64/oeimport.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file OEIMPORT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OEIMPORT.dll
8EXPORTS
9PerformImport
10ExportMessages
11PerformMigration
12DllCanUnloadNow
13DllGetClassObject
14DllRegisterServer
15DllUnregisterServer
lib/libc/mingw/lib64/oemiglib.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file OEMIGLIB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OEMIGLIB.dll
8EXPORTS
9OE5SimpleCreate
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/olecli32.def created+186
......@@ -0,0 +1,186 @@
1;
2; Exports of file OLECLI32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OLECLI32.dll
8EXPORTS
9WEP
10OleDelete
11OleSaveToStream
12OleLoadFromStream
13OleClone
14OleCopyFromLink
15OleEqual
16OleQueryLinkFromClip
17OleQueryCreateFromClip
18OleCreateLinkFromClip
19OleCreateFromClip
20OleCopyToClipboard
21OleQueryType
22OleSetHostNames
23OleSetTargetDevice
24OleSetBounds
25OleQueryBounds
26OleDraw
27OleQueryOpen
28OleActivate
29OleUpdate
30OleReconnect
31OleGetLinkUpdateOptions
32OleSetLinkUpdateOptions
33OleEnumFormats
34OleClose
35OleGetData
36OleSetData
37OleQueryProtocol
38OleQueryOutOfDate
39OleObjectConvert
40OleCreateFromTemplate
41OleCreate
42OleQueryReleaseStatus
43OleQueryReleaseError
44OleQueryReleaseMethod
45OleCreateFromFile
46OleCreateLinkFromFile
47OleRelease
48OleRegisterClientDoc
49OleRevokeClientDoc
50OleRenameClientDoc
51OleRevertClientDoc
52OleSavedClientDoc
53OleRename
54OleEnumObjects
55OleQueryName
56OleSetColorScheme
57OleRequestData
58OleLockServer
59OleUnlockServer
60OleQuerySize
61OleExecute
62OleCreateInvisible
63OleQueryClientVersion
64OleIsDcMeta
65DocWndProc
66SrvrWndProc
67MfCallbackFunc
68DefLoadFromStream
69DefCreateFromClip
70DefCreateLinkFromClip
71DefCreateFromTemplate
72DefCreate
73DefCreateFromFile
74DefCreateLinkFromFile
75DefCreateInvisible
76LeRelease
77LeShow
78LeGetData
79LeSetData
80LeSetHostNames
81LeSetTargetDevice
82LeSetBounds
83LeSaveToStream
84LeClone
85LeCopyFromLink
86LeEqual
87LeCopy
88LeQueryType
89LeQueryBounds
90LeDraw
91LeQueryOpen
92LeActivate
93LeUpdate
94LeReconnect
95LeEnumFormat
96LeQueryProtocol
97LeQueryOutOfDate
98LeObjectConvert
99LeChangeData
100LeClose
101LeGetUpdateOptions
102LeSetUpdateOptions
103LeExecute
104LeObjectLong
105LeCreateInvisible
106MfRelease
107MfGetData
108MfSaveToStream
109MfClone
110MfEqual
111MfCopy
112MfQueryBounds
113MfDraw
114MfEnumFormat
115MfChangeData
116BmRelease
117BmGetData
118BmSaveToStream
119BmClone
120BmEqual
121BmCopy
122BmQueryBounds
123BmDraw
124BmEnumFormat
125BmChangeData
126DibRelease
127DibGetData
128DibSaveToStream
129DibClone
130DibEqual
131DibCopy
132DibQueryBounds
133DibDraw
134DibEnumFormat
135DibChangeData
136GenRelease
137GenGetData
138GenSetData
139GenSaveToStream
140GenClone
141GenEqual
142GenCopy
143GenQueryBounds
144GenDraw
145GenEnumFormat
146GenChangeData
147ErrShow
148ErrSetData
149ErrSetHostNames
150ErrSetTargetDevice
151ErrSetBounds
152ErrCopyFromLink
153ErrQueryOpen
154ErrActivate
155ErrClose
156ErrUpdate
157ErrReconnect
158ErrQueryProtocol
159ErrQueryOutOfDate
160ErrObjectConvert
161ErrGetUpdateOptions
162ErrSetUpdateOptions
163ErrExecute
164ErrObjectLong
165PbLoadFromStream
166PbCreateFromClip
167PbCreateLinkFromClip
168PbCreateFromTemplate
169PbCreate
170PbDraw
171PbQueryBounds
172PbCopyToClipboard
173PbCreateFromFile
174PbCreateLinkFromFile
175PbEnumFormats
176PbGetData
177PbCreateInvisible
178ObjQueryName
179ObjRename
180ObjQueryType
181ObjQuerySize
182ConnectDlgProc
183SetNetName
184CheckNetDrive
185SetNextNetDrive
186GetTaskVisibleWindow
lib/libc/mingw/lib64/olecnv32.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file OLECNV32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OLECNV32.dll
8EXPORTS
9QD2GDI
lib/libc/mingw/lib64/oledb32.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file OLEDB32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OLEDB32.dll
8EXPORTS
9DllMain
10OpenDSLFile
11DllCanUnloadNow
12DllGetClassObject
13DllRegisterServer
14DllUnregisterServer
lib/libc/mingw/lib64/olesvr32.def created+31
......@@ -0,0 +1,31 @@
1;
2; Exports of file OLESVR32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY OLESVR32.dll
8EXPORTS
9WEP
10OleRegisterServer
11OleRevokeServer
12OleBlockServer
13OleUnblockServer
14OleRegisterServerDoc
15OleRevokeServerDoc
16OleRenameServerDoc
17OleRevertServerDoc
18OleSavedServerDoc
19OleRevokeObject
20OleQueryServerVersion
21SrvrWndProc
22DocWndProc
23ItemWndProc
24SendDataMsg
25FindItemWnd
26ItemCallBack
27TerminateClients
28TerminateDocClients
29DeleteClientInfo
30SendRenameMsg
31EnumForTerminate
lib/libc/mingw/lib64/p2pcollab.def created+92
......@@ -0,0 +1,92 @@
1;
2; Definition file of P2PCOLLAB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "P2PCOLLAB.dll"
7EXPORTS
8AIApplicationGetRegistrationInfo
9AIApplicationRegister
10AIApplicationUnregister
11AIAsyncSend
12AICancel
13AICloseHandle
14AIEnumApplicationRegistrationInfo
15AIGetApplicationLaunchInfo
16AIGetResponse
17AIRespond
18AIShutdown
19AISpecificStart
20AISpecificStop
21AIStartup
22AISyncSend
23CollabAddContact
24CollabConvertBitmapToPicture
25CollabConvertPicture
26CollabConvertPictureToBitmap
27CollabCreateXMLContactBlob
28CollabDeleteContact
29CollabDisableAutoStart
30CollabDisplayPrivacyWebpage
31CollabEnableAutoStart
32CollabEnumContacts
33CollabExportContact
34CollabExportScopedContact
35CollabGetContact
36CollabGetContactPicture
37CollabGetScopedContact
38CollabGetSignInInfo
39CollabGetUserSettings
40CollabLayerInitialize
41CollabLayerShutdown
42CollabLoadPrivacyStmt
43CollabParseContact
44CollabPublicationInitialize
45CollabPublicationListen
46CollabPublicationPublish
47CollabPublicationShutdown
48CollabPublicationStopListen
49CollabPublicationUnpublish
50CollabRegisterIPAddrChange
51CollabSetSignInInfo
52CollabSetUserSettings
53CollabSetup
54CollabTrimNicknameSpaces
55CollabUnregisterIPAddrChange
56CollabUpdateContact
57ContactManagerCleanup
58ContactManagerInit
59PeopleNearMeGetEndpointsNearMe
60PeopleNearMeInitialize
61PeopleNearMeSignin
62PeopleNearMeSignout
63PeopleNearMeUninitialize
64PeopleNearMeUpdateEndpointName
65PeopleNearMeUpdateFriendlyName
66SPDeleteContact
67SPEndRequest
68SPGetApplications
69SPGetEndpointName
70SPGetEndpoints
71SPGetObjects
72SPGetPresenceInfo
73SPPublishObject
74SPQueryContactData
75SPRegisterApplication
76SPRequestPublishedItems
77SPSetEndpointName
78SPSetPresenceInfo
79SPSubscribeEndpoint
80SPUnpublishObjects
81SPUnregisterApplication
82SPUnsubscribeEndpoint
83SPUnsubscribeOnRundown
84SPUpdateContact
85SPUpdateMeContact
86SPUpdateUserPicture
87SPUpdateUserSettings
88SSPAddCredentials
89SSPRemoveCredentials
90DllMain
91InitSecurityInterfaceW
92QuerySecurityPackageInfoW
lib/libc/mingw/lib64/pautoenr.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PAUTOENR.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PAUTOENR.dll
8EXPORTS
9CertAutoEnrollment
10CertAutoRemove
11ProvAutoEnrollment
lib/libc/mingw/lib64/pdh.def deleted-173
......@@ -1,173 +0,0 @@
1;
2; Definition file of pdh.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "pdh.dll"
7EXPORTS
8PdhPlaGetLogFileNameA
9DllInstall
10PdhAdd009CounterA
11PdhAdd009CounterW
12PdhAddCounterA
13PdhAddCounterW
14PdhAddEnglishCounterA
15PdhAddEnglishCounterW
16PdhBindInputDataSourceA
17PdhBindInputDataSourceW
18PdhBrowseCountersA
19PdhBrowseCountersHA
20PdhBrowseCountersHW
21PdhBrowseCountersW
22PdhCalculateCounterFromRawValue
23PdhCloseLog
24PdhCloseQuery
25PdhCollectQueryData
26PdhCollectQueryDataEx
27PdhCollectQueryDataWithTime
28PdhComputeCounterStatistics
29PdhConnectMachineA
30PdhConnectMachineW
31PdhCreateSQLTablesA
32PdhCreateSQLTablesW
33PdhEnumLogSetNamesA
34PdhEnumLogSetNamesW
35PdhEnumMachinesA
36PdhEnumMachinesHA
37PdhEnumMachinesHW
38PdhEnumMachinesW
39PdhEnumObjectItemsA
40PdhEnumObjectItemsHA
41PdhEnumObjectItemsHW
42PdhEnumObjectItemsW
43PdhEnumObjectsA
44PdhEnumObjectsHA
45PdhEnumObjectsHW
46PdhEnumObjectsW
47PdhExpandCounterPathA
48PdhExpandCounterPathW
49PdhExpandWildCardPathA
50PdhExpandWildCardPathHA
51PdhExpandWildCardPathHW
52PdhExpandWildCardPathW
53PdhFormatFromRawValue
54PdhGetCounterInfoA
55PdhGetCounterInfoW
56PdhGetCounterTimeBase
57PdhGetDataSourceTimeRangeA
58PdhGetDataSourceTimeRangeH
59PdhGetDataSourceTimeRangeW
60PdhGetDefaultPerfCounterA
61PdhGetDefaultPerfCounterHA
62PdhGetDefaultPerfCounterHW
63PdhGetDefaultPerfCounterW
64PdhGetDefaultPerfObjectA
65PdhGetDefaultPerfObjectHA
66PdhGetDefaultPerfObjectHW
67PdhGetDefaultPerfObjectW
68PdhGetDllVersion
69PdhGetExplainText
70PdhGetFormattedCounterArrayA
71PdhGetFormattedCounterArrayW
72PdhGetFormattedCounterValue
73PdhGetLogFileSize
74PdhGetLogFileTypeA
75PdhGetLogFileTypeW
76PdhGetLogSetGUID
77PdhGetRawCounterArrayA
78PdhGetRawCounterArrayW
79PdhGetRawCounterValue
80PdhIsRealTimeQuery
81PdhListLogFileHeaderA
82PdhListLogFileHeaderW
83PdhLookupPerfIndexByNameA
84PdhLookupPerfIndexByNameW
85PdhLookupPerfNameByIndexA
86PdhLookupPerfNameByIndexW
87PdhMakeCounterPathA
88PdhMakeCounterPathW
89PdhOpenLogA
90PdhOpenLogW
91PdhOpenQuery
92PdhOpenQueryA
93PdhOpenQueryH
94PdhOpenQueryW
95PdhParseCounterPathA
96PdhParseCounterPathW
97PdhParseInstanceNameA
98PdhParseInstanceNameW
99PdhPlaAddItemA
100PdhPlaAddItemW
101PdhPlaCreateA
102PdhPlaCreateW
103PdhPlaDeleteA
104PdhPlaDeleteW
105PdhPlaDowngradeW
106PdhPlaEnumCollectionsA
107PdhPlaEnumCollectionsW
108PdhPlaGetInfoA
109PdhPlaGetInfoW
110PdhPlaGetLogFileNameW
111PdhPlaGetScheduleA
112PdhPlaGetScheduleW
113PdhPlaRemoveAllItemsA
114PdhPlaRemoveAllItemsW
115PdhPlaScheduleA
116PdhPlaScheduleW
117PdhPlaSetInfoA
118PdhPlaSetInfoW
119PdhPlaSetItemListA
120PdhPlaSetItemListW
121PdhPlaSetRunAsA
122PdhPlaSetRunAsW
123PdhPlaStartA
124PdhPlaStartW
125PdhPlaStopA
126PdhPlaStopW
127PdhPlaUpgradeW
128PdhPlaValidateInfoA
129PdhPlaValidateInfoW
130PdhReadRawLogRecord
131PdhRelogA
132PdhRelogW
133PdhRemoveCounter
134PdhSelectDataSourceA
135PdhSelectDataSourceW
136PdhSetCounterScaleFactor
137PdhSetDefaultRealTimeDataSource
138PdhSetLogSetRunID
139PdhSetQueryTimeRange
140PdhTranslate009CounterA
141PdhTranslate009CounterW
142PdhTranslateLocaleCounterA
143PdhTranslateLocaleCounterW
144PdhUpdateLogA
145PdhUpdateLogFileCatalog
146PdhUpdateLogW
147PdhValidatePathA
148PdhValidatePathExA
149PdhValidatePathExW
150PdhValidatePathW
151PdhVbAddCounter
152PdhVbCreateCounterPathList
153PdhVbGetCounterPathElements
154PdhVbGetCounterPathFromList
155PdhVbGetDoubleCounterValue
156PdhVbGetLogFileSize
157PdhVbGetOneCounterPath
158PdhVbIsGoodStatus
159PdhVbOpenLog
160PdhVbOpenQuery
161PdhVbUpdateLog
162PdhVerifySQLDBA
163PdhVerifySQLDBW
164PdhiPla2003SP1Installed
165PdhiPlaDowngrade
166PdhiPlaFormatBlanksA
167PdhiPlaFormatBlanksW
168PdhiPlaGetVersion
169PdhiPlaRunAs
170PdhiPlaSetRunAs
171PdhiPlaUpgrade
172PlaTimeInfoToMilliSeconds
173PdhpGetLoggerName
lib/libc/mingw/lib64/pidgen.def created+20
......@@ -0,0 +1,20 @@
1;
2; Exports of file PIDGen.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PIDGen.dll
8EXPORTS
9PIDGenA
10PIDGenW
11PIDGenSimpA
12PIDGenSimpW
13SetupPIDGenA
14SetupPIDGenW
15PIDGenExA
16PIDGenExW
17SetupPIDGenExA
18SetupPIDGenExW
19PIDGenEx2A
20PIDGenEx2W
lib/libc/mingw/lib64/pintlcsd.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file IMESKDic.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY IMESKDic.dll
8EXPORTS
9CreateIImeSkdicInstance
lib/libc/mingw/lib64/policman.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file POLICMAN.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY POLICMAN.DLL
8EXPORTS
9CreateADContainers
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/polstore.def created+72
......@@ -0,0 +1,72 @@
1;
2; Exports of file POLSTORE.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY POLSTORE.DLL
8EXPORTS
9DllRegisterServer
10DllUnregisterServer
11IPSecAllocPolMem
12IPSecAllocPolStr
13IPSecAssignPolicy
14IPSecChooseDriverBootMode
15IPSecClearWMIStore
16IPSecClosePolicyStore
17IPSecCopyAuthMethod
18IPSecCopyFilterData
19IPSecCopyFilterSpec
20IPSecCopyISAKMPData
21IPSecCopyNFAData
22IPSecCopyNegPolData
23IPSecCopyPolicyData
24IPSecCreateFilterData
25IPSecCreateISAKMPData
26IPSecCreateNFAData
27IPSecCreateNegPolData
28IPSecCreatePolicyData
29IPSecDeleteFilterData
30IPSecDeleteISAKMPData
31IPSecDeleteNFAData
32IPSecDeleteNegPolData
33IPSecDeletePolicyData
34IPSecEnumFilterData
35IPSecEnumISAKMPData
36IPSecEnumNFAData
37IPSecEnumNegPolData
38IPSecEnumPolicyData
39IPSecExportPolicies
40IPSecFreeFilterData
41IPSecFreeFilterSpec
42IPSecFreeFilterSpecs
43IPSecFreeISAKMPData
44IPSecFreeMulFilterData
45IPSecFreeMulISAKMPData
46IPSecFreeMulNFAData
47IPSecFreeMulNegPolData
48IPSecFreeMulPolicyData
49IPSecFreeNFAData
50IPSecFreeNegPolData
51IPSecFreePolMem
52IPSecFreePolStr
53IPSecFreePolicyData
54IPSecGetAssignedDomainPolicyName
55IPSecGetAssignedPolicyData
56IPSecGetFilterData
57IPSecGetISAKMPData
58IPSecGetNegPolData
59IPSecImportPolicies
60IPSecIsDomainPolicyAssigned
61IPSecIsLocalPolicyAssigned
62IPSecOpenPolicyStore
63IPSecReallocatePolMem
64IPSecReallocatePolStr
65IPSecRestoreDefaultPolicies
66IPSecSetFilterData
67IPSecSetISAKMPData
68IPSecSetNFAData
69IPSecSetNegPolData
70IPSecSetPolicyData
71IPSecUnassignPolicy
72WriteDirectoryPolicyToWMI
lib/libc/mingw/lib64/printui.def created+33
......@@ -0,0 +1,33 @@
1;
2; Exports of file PRINTUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PRINTUI.dll
8EXPORTS
9ConstructPrinterFriendlyName
10DocumentPropertiesWrap
11PnPInterface
12PrintUIEntryW
13PrinterPropPageProvider
14ConnectToPrinterDlg
15ConnectToPrinterPropertyPage
16DllCanUnloadNow
17DllGetClassObject
18DllMain
19GetLegacyPrintUI
20PrintNotifyTray_Exit
21PrintNotifyTray_Init
22RegisterPrintNotify
23ShowErrorMessageHR
24ShowErrorMessageSC
25UnregisterPrintNotify
26bFolderEnumPrinters
27bFolderGetPrinter
28bFolderRefresh
29bPrinterSetup
30vDocumentDefaults
31vPrinterPropPages
32vQueueCreate
33vServerPropPages
lib/libc/mingw/lib64/profmap.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file PROFMAP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PROFMAP.dll
8EXPORTS
9DllMain
10InitializeProfileMappingApi
11RemapAndMoveUserA
12RemapAndMoveUserW
13RemapUserProfileA
14RemapUserProfileW
lib/libc/mingw/lib64/psbase.def created+29
......@@ -0,0 +1,29 @@
1;
2; Exports of file PSBASE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PSBASE.dll
8EXPORTS
9FPasswordChangeNotify
10SPCloseItem
11SPOpenItem
12SPAcquireContext
13SPCreateSubtype
14SPCreateType
15SPDeleteItem
16SPDeleteSubtype
17SPDeleteType
18SPEnumItems
19SPEnumSubtypes
20SPEnumTypes
21SPGetProvInfo
22SPGetProvParam
23SPGetSubtypeInfo
24SPGetTypeInfo
25SPProviderInitialize
26SPReadItem
27SPReleaseContext
28SPSetProvParam
29SPWriteItem
lib/libc/mingw/lib64/pschdprf.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PschdPrf.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PschdPrf.dll
8EXPORTS
9ClosePschedPerformanceData
10CollectPschedPerformanceData
11OpenPschedPerformanceData
lib/libc/mingw/lib64/pstorsvc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file PSTORSVC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PSTORSVC.dll
8EXPORTS
9PSTOREServiceMain
10ServiceEntry
11Start
lib/libc/mingw/lib64/qmgr.def created+38
......@@ -0,0 +1,38 @@
1;
2; Exports of file qmgr.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY qmgr.dll
8EXPORTS
9; public: __cdecl CNestedImpersonation::CNestedImpersonation(class TokenHandle & __ptr64) __ptr64
10??0CNestedImpersonation@@QEAA@AEAVTokenHandle@@@Z
11; public: __cdecl CNestedImpersonation::CNestedImpersonation(void * __ptr64) __ptr64
12??0CNestedImpersonation@@QEAA@PEAX@Z
13; public: __cdecl CNestedImpersonation::CNestedImpersonation(void) __ptr64
14??0CNestedImpersonation@@QEAA@XZ
15; public: __cdecl PROXY_SETTINGS_CONTAINER::PROXY_SETTINGS_CONTAINER(unsigned short const * __ptr64,struct PROXY_SETTINGS const * __ptr64) __ptr64
16??0PROXY_SETTINGS_CONTAINER@@QEAA@PEBGPEBUPROXY_SETTINGS@@@Z
17; void * __ptr64 __cdecl BITSAlloc(unsigned __int64)
18?BITSAlloc@@YAPEAX_K@Z
19; void __cdecl BITSFree(void * __ptr64)
20?BITSFree@@YAXPEAX@Z
21; public: unsigned __int64 __cdecl CRangeCollection::BytesRemainingInCurrentRange(void) __ptr64
22?BytesRemainingInCurrentRange@CRangeCollection@@QEAA_KXZ
23; protected: bool __cdecl CRangeCollection::CalculateBytesTotal(void) __ptr64
24?CalculateBytesTotal@CRangeCollection@@IEAA_NXZ
25; public: long __cdecl CCredentialsContainer::Find(enum __MIDL_IBackgroundCopyJob2_0001,enum __MIDL_IBackgroundCopyJob2_0002,struct __MIDL_IBackgroundCopyJob2_0005 * __ptr64 * __ptr64)const __ptr64
26?Find@CCredentialsContainer@@QEBAJW4__MIDL_IBackgroundCopyJob2_0001@@W4__MIDL_IBackgroundCopyJob2_0002@@PEAPEAU__MIDL_IBackgroundCopyJob2_0005@@@Z
27; unsigned long __cdecl FindInterfaceIndex(unsigned short const * __ptr64)
28?FindInterfaceIndex@@YAKPEBG@Z
29; public: long __cdecl CRangeCollection::GetSubRanges(unsigned __int64,unsigned __int64,unsigned __int64,unsigned int,class CRangeCollection * __ptr64 * __ptr64) __ptr64
30?GetSubRanges@CRangeCollection@@QEAAJ_K00IPEAPEAV1@@Z
31; class std::auto_ptr<unsigned short> __cdecl HostFromProxyDescription(unsigned short * __ptr64)
32?HostFromProxyDescription@@YA?AV?$auto_ptr@G@std@@PEAG@Z
33ServiceMain
34; private: static struct GenericStringHandle<unsigned short>::StringData GenericStringHandle<unsigned short>::s_EmptyString
35?s_EmptyString@?$GenericStringHandle@G@@0UStringData@1@A DATA
36BITSServiceMain
37DllRegisterServer
38DllUnregisterServer
lib/libc/mingw/lib64/qosname.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file qosname.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY qosname.dll
8EXPORTS
9WPUGetQOSTemplate
10WSCInstallQOSTemplate
11WSCRemoveQOSTemplate
lib/libc/mingw/lib64/rasman.def created+170
......@@ -0,0 +1,170 @@
1;
2; Exports of file rasman.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasman.dll
8EXPORTS
9DwRasGetHostByName
10IsRasmanProcess
11RasActivateRoute
12RasActivateRouteEx
13RasAddConnectionPort
14RasAddNotification
15RasAllocateRoute
16RasBundleClearStatistics
17RasBundleClearStatisticsEx
18RasBundleGetPort
19RasBundleGetStatistics
20RasBundleGetStatisticsEx
21RasCompressionGetInfo
22RasCompressionSetInfo
23RasConnectionEnum
24RasConnectionGetStatistics
25RasCreateConnection
26RasDeAllocateRoute
27RasDestroyConnection
28RasDeviceConnect
29RasDeviceEnum
30RasDeviceGetInfo
31RasDeviceSetInfo
32RasDoIke
33RasEnableIpSec
34RasEnumConnectionPorts
35RasEnumLanNets
36RasFindPrerequisiteEntry
37RasFreeBuffer
38RasGetBandwidthUtilization
39RasGetBestInterface
40RasGetBuffer
41RasGetCalledIdInfo
42RasGetConnectInfo
43RasGetConnectionParams
44RasGetConnectionUserData
45RasGetCustomScriptDll
46RasGetDevConfig
47RasGetDevConfigEx
48RasGetDeviceConfigInfo
49RasGetDeviceName
50RasGetDeviceNameW
51RasGetDialParams
52RasGetEapUserInfo
53RasGetFramingCapabilities
54RasGetHConnFromEntry
55RasGetHportFromConnection
56RasGetInfo
57RasGetInfoEx
58RasGetKey
59RasGetNdiswanDriverCaps
60RasGetNumPortOpen
61RasGetPortUserData
62RasGetProtocolInfo
63RasGetTimeSinceLastActivity
64RasGetUnicodeDeviceName
65RasGetUserCredentials
66RasInitialize
67RasInitializeNoWait
68RasIsIpSecEnabled
69RasIsPulseDial
70RasIsTrustedCustomDll
71RasLinkGetStatistics
72RasPnPControl
73RasPortBundle
74RasPortCancelReceive
75RasPortClearStatistics
76RasPortClose
77RasPortConnectComplete
78RasPortDisconnect
79RasPortEnum
80RasPortEnumProtocols
81RasPortFree
82RasPortGetBundle
83RasPortGetBundledPort
84RasPortGetFramingEx
85RasPortGetInfo
86RasPortGetProtocolCompression
87RasPortGetStatistics
88RasPortGetStatisticsEx
89RasPortListen
90RasPortOpen
91RasPortOpenEx
92RasPortReceive
93RasPortReceiveEx
94RasPortRegisterSlip
95RasPortReserve
96RasPortRetrieveUserData
97RasPortSend
98RasPortSetFraming
99RasPortSetFramingEx
100RasPortSetInfo
101RasPortSetProtocolCompression
102RasPortStoreUserData
103RasPppCallback
104RasPppChangePassword
105RasPppGetEapInfo
106RasPppGetInfo
107RasPppRetry
108RasPppSetEapInfo
109RasPppStart
110RasPppStarted
111RasPppStop
112RasProtocolEnum
113RasRPCBind
114RasRefConnection
115RasReferenceCustomCount
116RasReferenceRasman
117RasRegisterPnPEvent
118RasRegisterPnPHandler
119RasRegisterRedialCallback
120RasRequestNotification
121RasRpcConnect
122RasRpcConnectServer
123RasRpcDeleteEntry
124RasRpcDeviceEnum
125RasRpcDisconnect
126RasRpcDisconnectServer
127RasRpcEnumConnections
128RasRpcGetCountryInfo
129RasRpcGetDevConfig
130RasRpcGetErrorString
131RasRpcGetInstalledProtocols
132RasRpcGetInstalledProtocolsEx
133RasRpcGetSystemDirectory
134RasRpcGetUserPreferences
135RasRpcGetVersion
136RasRpcPortEnum
137RasRpcPortGetInfo
138RasRpcRemoteGetSystemDirectory
139RasRpcRemoteGetUserPreferences
140RasRpcRemoteRasDeleteEntry
141RasRpcRemoteSetUserPreferences
142RasRpcSetUserPreferences
143RasRpcUnloadDll
144RasSecurityDialogGetInfo
145RasSecurityDialogReceive
146RasSecurityDialogSend
147RasSendCreds
148RasSendNotification
149RasSendPppMessageToRasman
150RasServerPortClose
151RasSetAddressDisable
152RasSetBapPolicy
153RasSetCachedCredentials
154RasSetCalledIdInfo
155RasSetCommSettings
156RasSetConnectionParams
157RasSetConnectionUserData
158RasSetDevConfig
159RasSetDeviceConfigInfo
160RasSetDialParams
161RasSetEapLogonInfo
162RasSetEapUserInfo
163RasSetIoCompletionPort
164RasSetKey
165RasSetPortUserData
166RasSetRasdialInfo
167RasSetRouterUsage
168RasSignalNewConnection
169RasStartRasAutoIfRequired
170RasmanUninitialize
lib/libc/mingw/lib64/rasmans.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file rasmans.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasmans.dll
8EXPORTS
9ServiceMain
10ServiceRequestInProcess
11SetEntryDialParams
12_RasmanEngine
13_RasmanInit
lib/libc/mingw/lib64/rasppp.def created+35
......@@ -0,0 +1,35 @@
1;
2; Exports of file rasppp.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rasppp.dll
8EXPORTS
9HelperResetDefaultInterfaceNet
10HelperResetDefaultInterfaceNetEx
11HelperSetDefaultInterfaceNet
12HelperSetDefaultInterfaceNetEx
13IpxCpInit
14IpxcpBind
15PppDdmBapCallbackResult
16PppDdmCallbackDone
17PppDdmChangeNotification
18PppDdmDeInit
19PppDdmInit
20PppDdmRemoveQuarantine
21PppDdmSendInterfaceInfo
22PppDdmStart
23PppDdmStop
24PppStop
25RasCpEnumProtocolIds
26RasCpGetInfo
27RasSrvrAcquireAddress
28RasSrvrActivateIp
29RasSrvrInitialize
30RasSrvrQueryServerAddresses
31RasSrvrReleaseAddress
32RasSrvrUninitialize
33SendPPPMessageToEngine
34StartPPP
35StopPPP
lib/libc/mingw/lib64/rasrad.def created+23
......@@ -0,0 +1,23 @@
1;
2; Exports of file RASRAD.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RASRAD.dll
8EXPORTS
9Open
10Collect
11Close
12RasAcctConfigChangeNotification
13RasAcctProviderFreeAttributes
14RasAcctProviderInitialize
15RasAcctProviderInterimAccounting
16RasAcctProviderStartAccounting
17RasAcctProviderStopAccounting
18RasAcctProviderTerminate
19RasAuthConfigChangeNotification
20RasAuthProviderAuthenticateUser
21RasAuthProviderFreeAttributes
22RasAuthProviderInitialize
23RasAuthProviderTerminate
lib/libc/mingw/lib64/rassapi.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file RASSAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RASSAPI.dll
8EXPORTS
9RasAdminDLLInit
10RasAdminUserSetInfo
11RasAdminUserGetInfo
12RasAdminGetUserAccountServer
13RasAdminPortEnum
14RasAdminPortGetInfo
15RasAdminPortClearStatistics
16RasAdminServerGetInfo
17RasAdminPortDisconnect
18RasAdminFreeBuffer
19RasAdminSetUserParms
20RasAdminGetUserParms
21RasAdminCompressPhoneNumber
22RasAdminGetErrorString
lib/libc/mingw/lib64/rastls.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file rastls.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY rastls.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13PeapUpdateStateToTLV
14RasEapCreateConnectionProperties
15RasEapCreateUserProperties
16RasEapFreeMemory
17RasEapGetCredentials
18RasEapGetIdentity
19RasEapGetInfo
20RasEapInvokeConfigUI
21RasEapInvokeInteractiveUI
22RasEapUpdateServerConfig
lib/libc/mingw/lib64/rdpsnd.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file RDPSND.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RDPSND.dll
8EXPORTS
9DriverProc
10auxMessage
11midMessage
12modMessage
13mxdMessage
14widMessage
15wodMessage
lib/libc/mingw/lib64/rdpwsx.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file RDPWSX.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RDPWSX.dll
8EXPORTS
9WsxBrokenConnection
10WsxCanLogonProceed
11WsxClearContext
12WsxConnect
13WsxConvertPublishedApp
14WsxCopyContext
15WsxDisconnect
16WsxDuplicateContext
17WsxEscape
18WsxIcaStackIoControl
19WsxInitialize
20WsxInitializeClientData
21WsxLogonNotify
22WsxSendAutoReconnectStatus
23WsxSetErrorInfo
24WsxVirtualChannelSecurity
25WsxWinStationInitialize
26WsxWinStationReInitialize
27WsxWinStationRundown
lib/libc/mingw/lib64/resutil.def created+85
......@@ -0,0 +1,85 @@
1;
2; Definition file of RESUTILS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "RESUTILS.dll"
7EXPORTS
8ClusWorkerCheckTerminate
9ClusWorkerCreate
10ClusWorkerStart
11ClusWorkerTerminate
12ResUtilAddUnknownProperties
13ResUtilCreateDirectoryTree
14ResUtilDupParameterBlock
15ResUtilDupString
16ResUtilEnumPrivateProperties
17ResUtilEnumProperties
18ResUtilEnumResources
19ResUtilEnumResourcesEx
20ResUtilExpandEnvironmentStrings
21ResUtilFindBinaryProperty
22ResUtilFindDependentDiskResourceDriveLetter
23ResUtilFindDwordProperty
24ResUtilFindExpandSzProperty
25ResUtilFindExpandedSzProperty
26ResUtilFindFileTimeProperty
27ResUtilFindLongProperty
28ResUtilFindMultiSzProperty
29ResUtilFindSzProperty
30ResUtilFreeEnvironment
31ResUtilFreeParameterBlock
32ResUtilGetAllProperties
33ResUtilGetBinaryProperty
34ResUtilGetBinaryValue
35ResUtilGetClusterRoleState
36ResUtilGetCoreClusterResources
37ResUtilGetDwordProperty
38ResUtilGetDwordValue
39ResUtilGetEnvironmentWithNetName
40ResUtilGetFileTimeProperty
41ResUtilGetLongProperty
42ResUtilGetMultiSzProperty
43ResUtilGetPrivateProperties
44ResUtilGetProperties
45ResUtilGetPropertiesToParameterBlock
46ResUtilGetProperty
47ResUtilGetPropertyFormats
48ResUtilGetPropertySize
49ResUtilGetQwordValue
50ResUtilGetResourceDependency
51ResUtilGetResourceDependencyByClass
52ResUtilGetResourceDependencyByName
53ResUtilGetResourceDependentIPAddressProps
54ResUtilGetResourceName
55ResUtilGetResourceNameDependency
56ResUtilGetSzProperty
57ResUtilGetSzValue
58ResUtilIsPathValid
59ResUtilIsResourceClassEqual
60ResUtilPropertyListFromParameterBlock
61ResUtilRemoveResourceServiceEnvironment
62ResUtilResourceTypesEqual
63ResUtilResourcesEqual
64ResUtilSetBinaryValue
65ResUtilSetDwordValue
66ResUtilSetExpandSzValue
67ResUtilSetMultiSzValue
68ResUtilSetPrivatePropertyList
69ResUtilSetPropertyParameterBlock
70ResUtilSetPropertyParameterBlockEx
71ResUtilSetPropertyTable
72ResUtilSetPropertyTableEx
73ResUtilSetQwordValue
74ResUtilSetResourceServiceEnvironment
75ResUtilSetResourceServiceStartParameters
76ResUtilSetSzValue
77ResUtilSetUnknownProperties
78ResUtilStartResourceService
79ResUtilStopResourceService
80ResUtilStopService
81ResUtilTerminateServiceProcessFromResDll
82ResUtilVerifyPrivatePropertyList
83ResUtilVerifyPropertyTable
84ResUtilVerifyResourceService
85ResUtilVerifyService
lib/libc/mingw/lib64/routetab.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file ROUTETAB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ROUTETAB.dll
8EXPORTS
9AddRoute
10DeleteRoute
11FreeIPAddressTable
12FreeRouteTable
13GetIPAddressTable
14GetIfEntry
15GetRouteTable
16RefreshAddresses
17ReloadIPAddressTable
18SetAddrChangeNotifyEvent
lib/libc/mingw/lib64/rpcdiag.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of RpcDiag.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "RpcDiag.dll"
7EXPORTS
8I_RpcSetupDiagCallback
9RpcDiagnoseError
lib/libc/mingw/lib64/rpchttp.def created+54
......@@ -0,0 +1,54 @@
1;
2; Definition file of rpchttp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "rpchttp.dll"
7EXPORTS
8CompareHttpTransportCredentials
9ConvertToUnicodeHttpTransportCredentials
10DuplicateHttpTransportCredentials
11FreeHttpTransportCredentials
12HTTP2AbortConnection
13HTTP2ChannelDataOriginatorDirectSend
14HTTP2ContinueDrainChannel
15HTTP2DirectReceive
16HTTP2EpRecvFailed
17HTTP2FlowControlChannelDirectSend
18HTTP2IISDirectReceive
19HTTP2IISSenderDirectSend
20HTTP2PlugChannelDirectSend
21HTTP2ProcessComplexTReceive
22HTTP2ProcessComplexTSend
23HTTP2RecycleChannel
24HTTP2TestHook
25HTTP2TimerReschedule
26HTTP2WinHttpDelayedReceive
27HTTP2WinHttpDirectReceive
28HTTP2WinHttpDirectSend
29HTTP_Abort
30HTTP_Close
31HTTP_CopyResolverHint
32HTTP_FreeResolverHint
33HTTP_Initialize
34HTTP_Open
35HTTP_QueryClientAddress
36HTTP_QueryClientId
37HTTP_QueryClientIpAddress
38HTTP_QueryLocalAddress
39HTTP_Recv
40HTTP_Send
41HTTP_ServerListen
42HTTP_SetLastBufferToFree
43HTTP_SyncRecv
44HTTP_SyncSend
45HTTP_TurnOnOffKeepAlives
46HttpParseNetworkOptions
47HttpSendIdentifyResponse
48I_RpcGetRpcProxy
49I_RpcTransFreeHttpCredentials
50I_RpcTransGetHttpCredentials
51WS_HTTP2_CONNECTION__Initialize
52WS_HTTP2_INITIAL_CONNECTION__new
53I_RpcProxyNewConnection
54I_RpcReplyToClientWithStatus
lib/libc/mingw/lib64/rpcref.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file RPCREF.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY RPCREF.dll
8EXPORTS
9InetinfoStartRpcServerListen
10InetinfoStopRpcServerListen
lib/libc/mingw/lib64/samlib.def created+73
......@@ -0,0 +1,73 @@
1;
2; Exports of file SAMLIB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SAMLIB.dll
8EXPORTS
9SamAddMemberToAlias
10SamAddMemberToGroup
11SamAddMultipleMembersToAlias
12SamChangePasswordUser
13SamChangePasswordUser2
14SamChangePasswordUser3
15SamCloseHandle
16SamConnect
17SamConnectWithCreds
18SamCreateAliasInDomain
19SamCreateGroupInDomain
20SamCreateUser2InDomain
21SamCreateUserInDomain
22SamDeleteAlias
23SamDeleteGroup
24SamDeleteUser
25SamEnumerateAliasesInDomain
26SamEnumerateDomainsInSamServer
27SamEnumerateGroupsInDomain
28SamEnumerateUsersInDomain
29SamFreeMemory
30SamGetAliasMembership
31SamGetCompatibilityMode
32SamGetDisplayEnumerationIndex
33SamGetGroupsForUser
34SamGetMembersInAlias
35SamGetMembersInGroup
36SamLookupDomainInSamServer
37SamLookupIdsInDomain
38SamLookupNamesInDomain
39SamOpenAlias
40SamOpenDomain
41SamOpenGroup
42SamOpenUser
43SamQueryDisplayInformation
44SamQueryInformationAlias
45SamQueryInformationDomain
46SamQueryInformationGroup
47SamQueryInformationUser
48SamQuerySecurityObject
49SamRemoveMemberFromAlias
50SamRemoveMemberFromForeignDomain
51SamRemoveMemberFromGroup
52SamRemoveMultipleMembersFromAlias
53SamRidToSid
54SamSetInformationAlias
55SamSetInformationDomain
56SamSetInformationGroup
57SamSetInformationUser
58SamSetMemberAttributesOfGroup
59SamSetSecurityObject
60SamShutdownSamServer
61SamTestPrivateFunctionsDomain
62SamTestPrivateFunctionsUser
63SamValidatePassword
64SamiChangeKeys
65SamiChangePasswordUser
66SamiChangePasswordUser2
67SamiEncryptPasswords
68SamiGetBootKeyInformation
69SamiLmChangePasswordUser
70SamiOemChangePasswordUser2
71SamiSetBootKeyInformation
72SamiSetDSRMPassword
73SamiSetDSRMPasswordOWF
lib/libc/mingw/lib64/samsrv.def created+170
......@@ -0,0 +1,170 @@
1;
2; Exports of file SAMSRV.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SAMSRV.dll
8EXPORTS
9SamIAccountRestrictions
10SamIAddDSNameToAlias
11SamIAddDSNameToGroup
12SamIAmIGC
13SamIChangePasswordForeignUser
14SamIChangePasswordForeignUser2
15SamIConnect
16SamICreateAccountByRid
17SamIDemote
18SamIDemoteUndo
19SamIDoFSMORoleChange
20SamIDsCreateObjectInDomain
21SamIDsSetObjectInformation
22SamIEnumerateAccountRids
23SamIEnumerateInterdomainTrustAccountsForUpgrade
24SamIFloatingSingleMasterOpEx
25SamIFreeSidAndAttributesList
26SamIFreeSidArray
27SamIFreeVoid
28SamIFree_SAMPR_ALIAS_INFO_BUFFER
29SamIFree_SAMPR_DISPLAY_INFO_BUFFER
30SamIFree_SAMPR_DOMAIN_INFO_BUFFER
31SamIFree_SAMPR_ENUMERATION_BUFFER
32SamIFree_SAMPR_GET_GROUPS_BUFFER
33SamIFree_SAMPR_GET_MEMBERS_BUFFER
34SamIFree_SAMPR_GROUP_INFO_BUFFER
35SamIFree_SAMPR_PSID_ARRAY
36SamIFree_SAMPR_RETURNED_USTRING_ARRAY
37SamIFree_SAMPR_SR_SECURITY_DESCRIPTOR
38SamIFree_SAMPR_ULONG_ARRAY
39SamIFree_SAMPR_USER_INFO_BUFFER
40SamIFree_UserInternal6Information
41SamIGCLookupNames
42SamIGCLookupSids
43SamIGetAliasMembership
44SamIGetBootKeyInformation
45SamIGetDefaultAdministratorName
46SamIGetDefaultComputersContainer
47SamIGetFixedAttributes
48SamIGetInterdomainTrustAccountPasswordsForUpgrade
49SamIGetPrivateData
50SamIGetResourceGroupMembershipsTransitive
51SamIGetSerialNumberDomain
52SamIGetUserLogonInformation
53SamIGetUserLogonInformation2
54SamIGetUserLogonInformationEx
55SamIHandleObjectUpdate
56SamIImpersonateNullSession
57SamIIncrementPerformanceCounter
58SamIInitialize
59SamIIsAttributeProtected
60SamIIsDownlevelDcUpgrade
61SamIIsExtendedSidMode
62SamIIsRebootAfterPromotion
63SamIIsSetupInProgress
64SamILoadDownlevelDatabase
65SamILoopbackConnect
66SamIMixedDomain
67SamIMixedDomain2
68SamINT4UpgradeInProgress
69SamINetLogonPing
70SamINotifyDelta
71SamINotifyRoleChange
72SamINotifyServerDelta
73SamIOpenAccount
74SamIOpenUserByAlternateId
75SamIPromote
76SamIPromoteUndo
77SamIQueryServerRole
78SamIQueryServerRole2
79SamIRemoveDSNameFromAlias
80SamIRemoveDSNameFromGroup
81SamIReplaceDownlevelDatabase
82SamIResetBadPwdCountOnPdc
83SamIRetrievePrimaryCredentials
84SamIRevertNullSession
85SamISameSite
86SamISetAuditingInformation
87SamISetMixedDomainFlag
88SamISetPasswordForeignUser
89SamISetPasswordForeignUser2
90SamISetPasswordInfoOnPdc
91SamISetPrivateData
92SamISetSerialNumberDomain
93SamIStorePrimaryCredentials
94SamIUPNFromUserHandle
95SamIUnLoadDownlevelDatabase
96SamIUpdateLogonStatistics
97SampAbortSingleLoopbackTask
98SampAccountControlToFlags
99SampAcquireSamLockExclusive
100SampAcquireWriteLock
101SampCommitBufferedWrites
102SampConvertNt4SdToNt5Sd
103SampDsChangePasswordUser
104SampFlagsToAccountControl
105SampGetDefaultSecurityDescriptorForClass
106SampGetSerialNumberDomain2
107SampInitializeRegistry
108SampInitializeSdConversion
109SampInvalidateDomainCache
110SampInvalidateRidRange
111SampIsAuditingEnabled
112SampNetLogonNotificationRequired
113SampNotifyAuditChange
114SampNotifyReplicatedInChange
115SampProcessSingleLoopbackTask
116SampReleaseSamLockExclusive
117SampReleaseWriteLock
118SampRtlConvertUlongToUnicodeString
119SampSetSerialNumberDomain2
120SampUsingDsData
121SampWriteGroupType
122SamrAddMemberToAlias
123SamrAddMemberToGroup
124SamrAddMultipleMembersToAlias
125SamrChangePasswordUser
126SamrCloseHandle
127SamrCreateAliasInDomain
128SamrCreateGroupInDomain
129SamrCreateUser2InDomain
130SamrCreateUserInDomain
131SamrDeleteAlias
132SamrDeleteGroup
133SamrDeleteUser
134SamrEnumerateAliasesInDomain
135SamrEnumerateDomainsInSamServer
136SamrEnumerateGroupsInDomain
137SamrEnumerateUsersInDomain
138SamrGetAliasMembership
139SamrGetGroupsForUser
140SamrGetMembersInAlias
141SamrGetMembersInGroup
142SamrGetUserDomainPasswordInformation
143SamrLookupDomainInSamServer
144SamrLookupIdsInDomain
145SamrLookupNamesInDomain
146SamrOpenAlias
147SamrOpenDomain
148SamrOpenGroup
149SamrOpenUser
150SamrQueryDisplayInformation
151SamrQueryInformationAlias
152SamrQueryInformationDomain
153SamrQueryInformationGroup
154SamrQueryInformationUser
155SamrQuerySecurityObject
156SamrRemoveMemberFromAlias
157SamrRemoveMemberFromForeignDomain
158SamrRemoveMemberFromGroup
159SamrRemoveMultipleMembersFromAlias
160SamrRidToSid
161SamrSetInformationAlias
162SamrSetInformationDomain
163SamrSetInformationGroup
164SamrSetInformationUser
165SamrSetMemberAttributesOfGroup
166SamrSetSecurityObject
167SamrShutdownSamServer
168SamrTestPrivateFunctionsDomain
169SamrTestPrivateFunctionsUser
170SamrUnicodeChangePasswordUser2
lib/libc/mingw/lib64/sapi.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file sapi.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY sapi.dll
8EXPORTS
9RunSapiServer
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/sccbase.def created+34
......@@ -0,0 +1,34 @@
1;
2; Exports of file SCCBASE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SCCBASE.dll
8EXPORTS
9CPAcquireContext
10CPAcquireContextW
11CPCreateHash
12CPDecrypt
13CPDeriveKey
14CPDestroyHash
15CPDestroyKey
16CPEncrypt
17CPExportKey
18CPGenKey
19CPGenRandom
20CPGetHashParam
21CPGetKeyParam
22CPGetProvParam
23CPGetUserKey
24CPHashData
25CPHashSessionKey
26CPImportKey
27CPReleaseContext
28CPSetHashParam
29CPSetKeyParam
30CPSetProvParam
31CPSignHash
32CPVerifySignature
33DllRegisterServer
34DllUnregisterServer
lib/libc/mingw/lib64/scecli.def created+80
......@@ -0,0 +1,80 @@
1;
2; Exports of file SCECLI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SCECLI.dll
8EXPORTS
9DeltaNotify
10InitializeChangeNotify
11SceConfigureConvertedFileSecurity
12SceGenerateGroupPolicy
13SceNotifyPolicyDelta
14SceOpenPolicy
15SceProcessEFSRecoveryGPO
16SceProcessSecurityPolicyGPO
17SceProcessSecurityPolicyGPOEx
18SceSysPrep
19DllRegisterServer
20DllUnregisterServer
21SceAddToNameList
22SceAddToNameStatusList
23SceAddToObjectList
24SceAnalyzeSystem
25SceAppendSecurityProfileInfo
26SceBrowseDatabaseTable
27SceCloseProfile
28SceCommitTransaction
29SceCompareNameList
30SceCompareSecurityDescriptors
31SceConfigureSystem
32SceCopyBaseProfile
33SceCreateDirectory
34SceDcPromoCreateGPOsInSysvol
35SceDcPromoCreateGPOsInSysvolEx
36SceDcPromoteSecurity
37SceDcPromoteSecurityEx
38SceEnforceSecurityPolicyPropagation
39SceEnumerateServices
40SceFreeMemory
41SceFreeProfileMemory
42SceGenerateRollback
43SceGetAnalysisAreaSummary
44SceGetAreas
45SceGetDatabaseSetting
46SceGetDbTime
47SceGetObjectChildren
48SceGetObjectSecurity
49SceGetScpProfileDescription
50SceGetSecurityProfileInfo
51SceGetServerProductType
52SceGetTimeStamp
53SceIsSystemDatabase
54SceLookupPrivRightName
55SceOpenProfile
56SceRegisterRegValues
57SceRollbackTransaction
58SceSetDatabaseSetting
59SceSetupBackupSecurity
60SceSetupConfigureServices
61SceSetupGenerateTemplate
62SceSetupMoveSecurityFile
63SceSetupRootSecurity
64SceSetupSystemByInfName
65SceSetupUnwindSecurityFile
66SceSetupUpdateSecurityFile
67SceSetupUpdateSecurityKey
68SceSetupUpdateSecurityService
69SceStartTransaction
70SceSvcConvertSDToText
71SceSvcConvertTextToSD
72SceSvcFree
73SceSvcGetInformationTemplate
74SceSvcQueryInfo
75SceSvcSetInfo
76SceSvcSetInformationTemplate
77SceSvcUpdateInfo
78SceUpdateObjectInfo
79SceUpdateSecurityProfile
80SceWriteSecurityProfileInfo
lib/libc/mingw/lib64/schedsvc.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file schedsvc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY schedsvc.dll
8EXPORTS
9SPUninstall
10SPUninstallCallback
11SchedServiceMain
12SysPrepBackup
13SysPrepRestore
14CloseProc
15SysPrepCallback
lib/libc/mingw/lib64/sclgntfy.def created+20
......@@ -0,0 +1,20 @@
1;
2; Exports of file SCLGNTFY.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SCLGNTFY.dll
8EXPORTS
9WLEventLock
10WLEventLogoff
11WLEventLogon
12WLEventShutdown
13WLEventStartScreenSaver
14WLEventStartShell
15WLEventStartup
16WLEventStopScreenSaver
17WLEventUnlock
18DllRegisterServer
19DllUnregisterServer
20GenerateDefaultEFSRecoveryPolicy
lib/libc/mingw/lib64/scredir.def created+52
......@@ -0,0 +1,52 @@
1;
2; Exports of file scredir.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY scredir.dll
8EXPORTS
9SCardReleaseBadContext
10DllRegisterServer
11DllUnregisterServer
12SCardAccessStartedEvent
13SCardAddReaderToGroupA
14SCardAddReaderToGroupW
15SCardBeginTransaction
16SCardCancel
17SCardConnectA
18SCardConnectW
19SCardControl
20SCardDisconnect
21SCardEndTransaction
22SCardEstablishContext
23SCardForgetReaderA
24SCardForgetReaderGroupA
25SCardForgetReaderGroupW
26SCardForgetReaderW
27SCardGetAttrib
28SCardGetStatusChangeA
29SCardGetStatusChangeW
30SCardIntroduceReaderA
31SCardIntroduceReaderGroupA
32SCardIntroduceReaderGroupW
33SCardIntroduceReaderW
34SCardIsValidContext
35SCardListReaderGroupsA
36SCardListReaderGroupsW
37SCardListReadersA
38SCardListReadersW
39SCardLocateCardsA
40SCardLocateCardsByATRA
41SCardLocateCardsByATRW
42SCardLocateCardsW
43SCardReconnect
44SCardReleaseContext
45SCardReleaseStartedEvent
46SCardRemoveReaderFromGroupA
47SCardRemoveReaderFromGroupW
48SCardSetAttrib
49SCardState
50SCardStatusA
51SCardStatusW
52SCardTransmit
lib/libc/mingw/lib64/script.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file SCRIPT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SCRIPT.dll
8EXPORTS
9DestinationModule
10DllMain
11ModuleInitialize
12ModuleTerminate
13SourceModule
14TypeModule
15VirtualComputerModule
lib/libc/mingw/lib64/senscfg.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file SensCfg.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SensCfg.dll
8EXPORTS
9SensRegister
10SensUnregister
lib/libc/mingw/lib64/seo.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file SEO.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SEO.DLL
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13MCISGetBindingInMetabaseA
14MCISGetBindingInMetabaseW
15MCISInitSEOA
16MCISInitSEOW
17SEOCancelListenForEvent
18SEOCopyDictionary
19SEOCreateDictionaryFromIStream
20SEOCreateDictionaryFromMultiSzA
21SEOCreateDictionaryFromMultiSzW
22SEOCreateIStreamFromFileA
23SEOCreateIStreamFromFileW
24SEOCreateMultiSzFromDictionaryA
25SEOCreateMultiSzFromDictionaryW
26SEOListenForEvent
27SEOWriteDictionaryToIStream
lib/libc/mingw/lib64/setupqry.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file setupqry.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY setupqry.dll
8EXPORTS
9IndexSrv
lib/libc/mingw/lib64/sfc_os.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file sfc_os.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY sfc_os.dll
8EXPORTS
9SfcGetNextProtectedFile
10SfcIsFileProtected
11SfcWLEventLogoff
12SfcWLEventLogon
lib/libc/mingw/lib64/sfcfiles.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file sfcfiles.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY sfcfiles.dll
8EXPORTS
9SfcGetFiles
lib/libc/mingw/lib64/sfmapi.def created+40
......@@ -0,0 +1,40 @@
1;
2; Exports of file SFMAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SFMAPI.dll
8EXPORTS
9AfpAdminBufferFree
10AfpAdminConnect
11AfpAdminConnectionClose
12AfpAdminConnectionEnum
13AfpAdminDirectoryGetInfo
14AfpAdminDirectorySetInfo
15AfpAdminDisconnect
16AfpAdminETCMapAdd
17AfpAdminETCMapAssociate
18AfpAdminETCMapDelete
19AfpAdminETCMapGetInfo
20AfpAdminETCMapSetInfo
21AfpAdminFileClose
22AfpAdminFileEnum
23AfpAdminFinderSetInfo
24AfpAdminInvalidVolumeDelete
25AfpAdminInvalidVolumeEnum
26AfpAdminMessageSend
27AfpAdminProfileClear
28AfpAdminProfileGet
29AfpAdminServerGetInfo
30AfpAdminServerSetInfo
31AfpAdminSessionClose
32AfpAdminSessionEnum
33AfpAdminStatisticsClear
34AfpAdminStatisticsGet
35AfpAdminStatisticsGetEx
36AfpAdminVolumeAdd
37AfpAdminVolumeDelete
38AfpAdminVolumeEnum
39AfpAdminVolumeGetInfo
40AfpAdminVolumeSetInfo
lib/libc/mingw/lib64/shimeng.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file ShimEng.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ShimEng.dll
8EXPORTS
9SE_DllLoaded
10SE_DllUnloaded
11SE_DynamicShim
12SE_DynamicUnshim
13SE_InstallAfterInit
14SE_InstallBeforeInit
15SE_IsShimDll
16SE_ProcessDying
17SE_RemoveNTVDMTask
18SE_ShimNTVDM
lib/libc/mingw/lib64/shscrap.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file SHSCRAP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SHSCRAP.dll
8EXPORTS
9Scrap_CreateFromDataObject
10DllCanUnloadNow
11DllGetClassObject
12OpenScrap_RunDLL
13OpenScrap_RunDLLA
14OpenScrap_RunDLLW
lib/libc/mingw/lib64/sigtab.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file SIGTAB.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SIGTAB.DLL
8EXPORTS
9DriverSigningDialog
lib/libc/mingw/lib64/skdll.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file SKDLL.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SKDLL.dll
8EXPORTS
9SKEY_SystemParametersInfo
lib/libc/mingw/lib64/slbcsp.def created+35
......@@ -0,0 +1,35 @@
1;
2; Exports of file SLBCSP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SLBCSP.dll
8EXPORTS
9CPAcquireContext
10CPSetHashParam
11CPSetKeyParam
12CPSetProvParam
13CPCreateHash
14CPDecrypt
15CPDeriveKey
16CPDestroyHash
17CPDestroyKey
18CPDuplicateHash
19CPDuplicateKey
20CPEncrypt
21CPExportKey
22CPGenKey
23CPGenRandom
24CPGetHashParam
25CPGetKeyParam
26CPGetProvParam
27CPGetUserKey
28CPHashData
29CPHashSessionKey
30CPImportKey
31CPReleaseContext
32CPSignHash
33CPVerifySignature
34DllRegisterServer
35DllUnregisterServer
lib/libc/mingw/lib64/smtpapi.def created+26
......@@ -0,0 +1,26 @@
1;
2; Exports of file SMTPAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SMTPAPI.dll
8EXPORTS
9SmtpBackupRoutingTable
10SmtpClearStatistics
11SmtpCreateDistList
12SmtpCreateDistListMember
13SmtpCreateUser
14SmtpDeleteDistList
15SmtpDeleteDistListMember
16SmtpDeleteUser
17SmtpDisconnectUser
18SmtpGetAdminInformation
19SmtpGetConnectedUserList
20SmtpGetNameList
21SmtpGetNameListFromList
22SmtpGetUserProps
23SmtpGetVRootSize
24SmtpQueryStatistics
25SmtpSetAdminInformation
26SmtpSetUserProps
lib/libc/mingw/lib64/smtpctrs.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file SMTPCTRS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SMTPCTRS.dll
8EXPORTS
9OpenSmtpPerformanceData
10CollectSmtpPerformanceData
11CloseSmtpPerformanceData
lib/libc/mingw/lib64/snmpmib.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file SNMPMIB.exe
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SNMPMIB.exe
8EXPORTS
9SnmpExtensionInit
10SnmpExtensionMonitor
11SnmpExtensionQuery
12SnmpExtensionTrap
lib/libc/mingw/lib64/snprfdll.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file ExPrfDll.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ExPrfDll.dll
8EXPORTS
9NTFSDrvClose
10NTFSDrvCollect
11NTFSDrvOpen
lib/libc/mingw/lib64/spoolss.def-1
......@@ -130,7 +130,6 @@ MarshallDownStructuresArray
130130MarshallUpStructure
131131MarshallUpStructuresArray
132132OldGetPrinterDriverW
133OpenPrinterExW
134133OpenPrinterPortW
135134OpenPrinter2W
136135OpenPrinterPort2W
lib/libc/mingw/lib64/sqlxmlx.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file SQLXMLX.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SQLXMLX.dll
8EXPORTS
9DllMain
10ExecuteToStream
11DllCanUnloadNow
12DllGetClassObject
13DllRegisterServer
14DllUnregisterServer
lib/libc/mingw/lib64/srchctls.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file srchctls.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY srchctls.dll
8EXPORTS
9InitializeSearchControls
10UninitializeSearchControls
11CreateSpellEdit
lib/libc/mingw/lib64/srclient.def created+35
......@@ -0,0 +1,35 @@
1;
2; Exports of file SRCLIENT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SRCLIENT.dll
8EXPORTS
9CreateFirstRunRp
10CreateSnapshot
11DisableFIFO
12DisableSR
13DllCanUnloadNow
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
17EnableFIFO
18EnableSR
19EnableSREx
20ResetSR
21RestoreSnapshot
22SRCompress
23SRFifo
24SRFreeze
25SRNotify
26SRPrintState
27SRRegisterSnapshotCallback
28SRRemoveRestorePoint
29SRSetRestorePointA
30SRSetRestorePointW
31SRSwitchLog
32SRUnregisterSnapshotCallback
33SRUpdateDSSize
34SRUpdateMonitoredListA
35SRUpdateMonitoredListW
lib/libc/mingw/lib64/srrstr.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file SRRSTR.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SRRSTR.dll
8EXPORTS
9DllMain
10IsSRFrozen
11CheckPrivilegesForRestore
12SRGetCplPropPage
13PrepareRestore
14InitiateRestore
15ResumeRestore
16InitializeChangeNotify
17PasswordChangeNotify
18InvokeDiskCleanup
lib/libc/mingw/lib64/ssdpapi.def created+27
......@@ -0,0 +1,27 @@
1;
2; Exports of file SSDPAPI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SSDPAPI.dll
8EXPORTS
9CleanupCache
10DHDisableDeviceHost
11DHEnableDeviceHost
12DHSetICSInterfaces
13DHSetICSOff
14DeregisterNotification
15DeregisterService
16DeregisterServiceByUSN
17FindServices
18FindServicesCallback
19FindServicesCancel
20FindServicesClose
21FreeSsdpMessage
22GetFirstService
23GetNextService
24RegisterNotification
25RegisterService
26SsdpCleanup
27SsdpStartup
lib/libc/mingw/lib64/ssinc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file SSINC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SSINC.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/staxmem.def created+42
......@@ -0,0 +1,42 @@
1;
2; Exports of file STAXMEM.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY STAXMEM.dll
8EXPORTS
9ExchAlloc
10ExchFree
11ExchHeapAlloc
12ExchHeapCompact
13ExchHeapCreate
14ExchHeapDestroy
15ExchHeapFree
16ExchHeapLock
17ExchHeapReAlloc
18ExchHeapSize
19ExchHeapUnlock
20ExchHeapValidate
21ExchHeapWalk
22ExchMHeapAlloc
23ExchMHeapAllocDebug
24ExchMHeapCreate
25ExchMHeapDestroy
26ExchMHeapFree
27ExchMHeapReAlloc
28ExchMHeapReAllocDebug
29ExchMHeapSize
30ExchReAlloc
31ExchSize
32ExchmemFormatSymbol
33ExchmemGetCallStack
34ExchmemReloadSymbols
35MpHeapAlloc
36MpHeapCompact
37MpHeapCreate
38MpHeapDestroy
39MpHeapFree
40MpHeapGetStatistics
41MpHeapReAlloc
42MpHeapValidate
lib/libc/mingw/lib64/sti.def created+42
......@@ -0,0 +1,42 @@
1;
2; Exports of file STI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY STI.dll
8EXPORTS
9; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
10??0BUFFER@@QEAA@I@Z
11; public: __cdecl BUFFER_CHAIN::BUFFER_CHAIN(void) __ptr64
12??0BUFFER_CHAIN@@QEAA@XZ
13; public: __cdecl BUFFER_CHAIN_ITEM::BUFFER_CHAIN_ITEM(unsigned int) __ptr64
14??0BUFFER_CHAIN_ITEM@@QEAA@I@Z
15; public: __cdecl BUFFER::~BUFFER(void) __ptr64
16??1BUFFER@@QEAA@XZ
17; public: __cdecl BUFFER_CHAIN::~BUFFER_CHAIN(void) __ptr64
18??1BUFFER_CHAIN@@QEAA@XZ
19; public: __cdecl BUFFER_CHAIN_ITEM::~BUFFER_CHAIN_ITEM(void) __ptr64
20??1BUFFER_CHAIN_ITEM@@QEAA@XZ
21; public: void __cdecl BUFFER::`default constructor closure'(void) __ptr64
22??_FBUFFER@@QEAAXXZ
23; public: void __cdecl BUFFER_CHAIN_ITEM::`default constructor closure'(void) __ptr64
24??_FBUFFER_CHAIN_ITEM@@QEAAXXZ
25; public: void * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
26?QueryPtr@BUFFER@@QEBAPEAXXZ
27; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
28?QuerySize@BUFFER@@QEBAIXZ
29; public: unsigned long __cdecl BUFFER_CHAIN_ITEM::QueryUsed(void)const __ptr64
30?QueryUsed@BUFFER_CHAIN_ITEM@@QEBAKXZ
31; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64
32?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z
33DllCanUnloadNow
34DllGetClassObject
35DllRegisterServer
36DllUnregisterServer
37GetProxyDllInfo
38MigrateRegisteredSTIAppsForWIAEvents
39RegSTIforWia
40StiCreateInstance
41StiCreateInstanceA
42StiCreateInstanceW
lib/libc/mingw/lib64/sti_ci.def created+43
......@@ -0,0 +1,43 @@
1;
2; Exports of file sti_ci.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY sti_ci.dll
8EXPORTS
9; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
10??0BUFFER@@QEAA@I@Z
11; public: __cdecl BUFFER_CHAIN::BUFFER_CHAIN(void) __ptr64
12??0BUFFER_CHAIN@@QEAA@XZ
13; public: __cdecl BUFFER_CHAIN_ITEM::BUFFER_CHAIN_ITEM(unsigned int) __ptr64
14??0BUFFER_CHAIN_ITEM@@QEAA@I@Z
15; public: __cdecl BUFFER::~BUFFER(void) __ptr64
16??1BUFFER@@QEAA@XZ
17; public: __cdecl BUFFER_CHAIN::~BUFFER_CHAIN(void) __ptr64
18??1BUFFER_CHAIN@@QEAA@XZ
19; public: __cdecl BUFFER_CHAIN_ITEM::~BUFFER_CHAIN_ITEM(void) __ptr64
20??1BUFFER_CHAIN_ITEM@@QEAA@XZ
21; public: void __cdecl BUFFER::`default constructor closure'(void) __ptr64
22??_FBUFFER@@QEAAXXZ
23; public: void __cdecl BUFFER_CHAIN_ITEM::`default constructor closure'(void) __ptr64
24??_FBUFFER_CHAIN_ITEM@@QEAAXXZ
25AddDevice
26InstallWiaService
27MigrateDevice
28; public: void * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
29?QueryPtr@BUFFER@@QEBAPEAXXZ
30; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
31?QuerySize@BUFFER@@QEBAIXZ
32; public: unsigned long __cdecl BUFFER_CHAIN_ITEM::QueryUsed(void)const __ptr64
33?QueryUsed@BUFFER_CHAIN_ITEM@@QEBAKXZ
34; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64
35?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z
36WiaAddDevice
37WiaCreatePortList
38WiaCreateWizardMenu
39WiaDestroyPortList
40WiaRemoveDevice
41ClassInstall
42CoinstallerEntry
43PTPCoinstallerEntry
lib/libc/mingw/lib64/storprop.def created+18
......@@ -0,0 +1,18 @@
1;
2; Exports of file PROPPAGE.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY PROPPAGE.DLL
8EXPORTS
9CdromDisableDigitalPlayback
10CdromEnableDigitalPlayback
11CdromIsDigitalPlaybackEnabled
12CdromKnownGoodDigitalPlayback
13DiskClassInstaller
14DvdClassInstaller
15DvdLauncher
16DvdPropPageProvider
17IdePropPageProvider
18VolumePropPageProvider
lib/libc/mingw/lib64/strmfilt.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file strmfilt.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY strmfilt.dll
8EXPORTS
9IsapiFilterInitialize
10IsapiFilterTerminate
11StreamFilterClientInitialize
12StreamFilterClientStart
13StreamFilterClientStop
14StreamFilterClientTerminate
15StreamFilterInitialize
16StreamFilterStart
17StreamFilterStop
18StreamFilterTerminate
19DllMain
lib/libc/mingw/lib64/svcpack.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file SVCPACK.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SVCPACK.dll
8EXPORTS
9SvcPackCallbackRoutine
lib/libc/mingw/lib64/synceng.def created+44
......@@ -0,0 +1,44 @@
1;
2; Exports of file SYNCENG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SYNCENG.dll
8EXPORTS
9AddAllTwinsToTwinList
10AddFolderTwin
11AddObjectTwin
12AddTwinToTwinList
13AnyTwins
14BeginReconciliation
15ClearBriefcaseCache
16CloseBriefcase
17CompareFileStamps
18CountSourceFolderTwins
19CreateFolderTwinList
20CreateRecList
21CreateTwinList
22DeleteBriefcase
23DeleteTwin
24DestroyFolderTwinList
25DestroyRecList
26DestroyTwinList
27EndReconciliation
28FindBriefcaseClose
29FindFirstBriefcase
30FindNextBriefcase
31GetFileStamp
32GetFolderTwinStatus
33GetObjectTwinHandle
34GetOpenBriefcaseInfo
35GetVolumeDescription
36IsFolderTwin
37IsOrphanObjectTwin
38IsPathOnVolume
39OpenBriefcase
40ReconcileItem
41ReleaseTwinHandle
42RemoveAllTwinsFromTwinList
43RemoveTwinFromTwinList
44SaveBriefcase
lib/libc/mingw/lib64/syncui.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file SYNCUI.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SYNCUI.dll
8EXPORTS
9Briefcase_Create
10Briefcase_Intro
11Briefcase_CreateW
12Briefcase_CreateA
13DllCanUnloadNow
14DllGetClassObject
lib/libc/mingw/lib64/sysinv.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file SysInv.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SysInv.dll
8EXPORTS
9GetSystemInventoryA
10GetSystemInventoryW
lib/libc/mingw/lib64/sysmod.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file SYSMOD.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SYSMOD.dll
8EXPORTS
9DestinationModule
10DllMain
11ModuleInitialize
12ModuleTerminate
13SourceModule
14TypeModule
15VirtualComputerModule
lib/libc/mingw/lib64/syssetup.def created+96
......@@ -0,0 +1,96 @@
1;
2; Exports of file SYSSETUP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY SYSSETUP.dll
8EXPORTS
9AsrAddSifEntryA
10AsrAddSifEntryW
11AsrCreateStateFileA
12AsrCreateStateFileW
13AsrFreeContext
14AsrRestorePlugPlayRegistryData
15AsrpGetLocalDiskInfo
16AsrpGetLocalVolumeInfo
17AsrpRestoreNonCriticalDisksW
18ComputerClassInstaller
19CreateLocalAdminAccount
20CreateLocalAdminAccountEx
21CreateLocalUserAccount
22CriticalDeviceCoInstaller
23DevInstallW
24DeviceBayClassInstaller
25DiskPropPageProvider
26DoInstallComponentInfs
27EisaUpHalCoInstaller
28GenerateName
29GetAnswerFileSetting
30HdcClassInstaller
31InitializeSetupLog
32InstallWindowsNt
33InvokeExternalApplicationEx
34KeyboardClassInstaller
35LegacyDriverPropPageProvider
36MigrateExceptionPackages
37MouseClassInstaller
38NtApmClassInstaller
39OpkCheckVersion
40PS2MousePropPageProvider
41PnPInitializationThread
42PrepareForAudit
43RepairStartMenuItems
44ReportError
45RunOEMExtraTasks
46ScsiClassInstaller
47SetAccountsDomainSid
48SetupAddOrRemoveTestCertificate
49SetupChangeFontSize
50SetupChangeLocale
51SetupChangeLocaleEx
52SetupCreateOptionalComponentsPage
53SetupDestroyLanguageList
54SetupDestroyPhoneList
55SetupEnumerateRegisteredOsComponents
56SetupExtendPartition
57SetupGetGeoOptions
58SetupGetInstallMode
59SetupGetKeyboardOptions
60SetupGetLocaleOptions
61SetupGetProductType
62SetupGetSetupInfo
63SetupGetValidEula
64SetupIEHardeningSettings
65SetupInfObjectInstallActionW
66SetupInstallCatalog
67SetupMapTapiToIso
68SetupOobeBnk
69SetupOobeCleanup
70SetupOobeInitDebugLog
71SetupOobeInitPostServices
72SetupOobeInitPreServices
73SetupPidGen3
74SetupQueryRegisteredOsComponent
75SetupQueryRegisteredOsComponentsOrder
76SetupReadPhoneList
77SetupRegisterOsComponent
78SetupSetAdminPassword
79SetupSetDisplay
80SetupSetIntlOptions
81SetupSetRegisteredOsComponentsOrder
82SetupSetSetupInfo
83SetupShellSettings
84SetupStartService
85SetupUnRegisterOsComponent
86StorageCoInstaller
87SystemUpdateUserProfileDirectory
88TapeClassInstaller
89TapePropPageProvider
90TerminateSetupLog
91UpdatePnpDeviceDrivers
92UpgradePrinters
93ViewSetupActionLog
94VolumeClassInstaller
95pSetupDebugPrint
96pSetuplogSfcError
lib/libc/mingw/lib64/tcpmib.def created+72
......@@ -0,0 +1,72 @@
1;
2; Exports of file TCPMIB.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY TCPMIB.dll
8EXPORTS
9; public: __cdecl CTcpMib::CTcpMib(class CTcpMib const & __ptr64) __ptr64
10??0CTcpMib@@QEAA@AEBV0@@Z
11; public: __cdecl CTcpMib::CTcpMib(void) __ptr64
12??0CTcpMib@@QEAA@XZ
13; public: __cdecl CTcpMibABC::CTcpMibABC(class CTcpMibABC const & __ptr64) __ptr64
14??0CTcpMibABC@@QEAA@AEBV0@@Z
15; public: __cdecl CTcpMibABC::CTcpMibABC(void) __ptr64
16??0CTcpMibABC@@QEAA@XZ
17; public: virtual __cdecl CTcpMib::~CTcpMib(void) __ptr64
18??1CTcpMib@@UEAA@XZ
19; public: virtual __cdecl CTcpMibABC::~CTcpMibABC(void) __ptr64
20??1CTcpMibABC@@UEAA@XZ
21; public: class CTcpMib & __ptr64 __cdecl CTcpMib::operator=(class CTcpMib const & __ptr64) __ptr64
22??4CTcpMib@@QEAAAEAV0@AEBV0@@Z
23; public: class CTcpMibABC & __ptr64 __cdecl CTcpMibABC::operator=(class CTcpMibABC const & __ptr64) __ptr64
24??4CTcpMibABC@@QEAAAEAV0@AEBV0@@Z
25; const CTcpMib::`vftable'
26??_7CTcpMib@@6B@
27; const CTcpMibABC::`vftable'
28??_7CTcpMibABC@@6B@
29; private: void __cdecl CTcpMib::EnterCSection(void) __ptr64
30?EnterCSection@CTcpMib@@AEAAXXZ
31; private: void __cdecl CTcpMib::ExitCSection(void) __ptr64
32?ExitCSection@CTcpMib@@AEAAXXZ
33; public: virtual unsigned long __cdecl CTcpMib::GetDeviceDescription(char const * __ptr64,char const * __ptr64,unsigned long,unsigned short * __ptr64,unsigned long) __ptr64
34?GetDeviceDescription@CTcpMib@@UEAAKPEBD0KPEAGK@Z
35; public: virtual unsigned long __cdecl CTcpMib::GetDeviceHWAddress(char const * __ptr64,char const * __ptr64,unsigned long,unsigned long,unsigned short * __ptr64) __ptr64
36?GetDeviceHWAddress@CTcpMib@@UEAAKPEBD0KKPEAG@Z
37; public: virtual unsigned long __cdecl CTcpMib::GetDeviceName(char const * __ptr64,char const * __ptr64,unsigned long,unsigned long,unsigned short * __ptr64) __ptr64
38?GetDeviceName@CTcpMib@@UEAAKPEBD0KKPEAG@Z
39; public: virtual unsigned long __cdecl CTcpMib::GetNextRequestId(unsigned long * __ptr64) __ptr64
40?GetNextRequestId@CTcpMib@@UEAAKPEAK@Z
41; private: static unsigned long __cdecl CTcpMib::GetStatusFromVBL(void * __ptr64,struct smiVALUE * __ptr64,struct smiVALUE * __ptr64,struct smiVALUE * __ptr64)
42?GetStatusFromVBL@CTcpMib@@CAKPEAXPEAUsmiVALUE@@11@Z
43; public: virtual unsigned long __cdecl CTcpMib::InitSnmp(void) __ptr64
44?InitSnmp@CTcpMib@@UEAAKXZ
45; public: int __cdecl CTcpMib::IsValid(void)const __ptr64
46?IsValid@CTcpMib@@QEBAHXZ
47; private: static int __cdecl CTcpMib::MapAsynchToPortStatus(unsigned long,struct _PORT_INFO_3W * __ptr64)
48?MapAsynchToPortStatus@CTcpMib@@CAHKPEAU_PORT_INFO_3W@@@Z
49; public: virtual unsigned long __cdecl CTcpMib::RegisterDeviceStatusCallback(unsigned long (__cdecl*)(int,char const * __ptr64,char const * __ptr64,unsigned long,unsigned long,unsigned long),void * __ptr64 * __ptr64) __ptr64
50?RegisterDeviceStatusCallback@CTcpMib@@UEAAKP6AKHPEBD0KKK@ZPEAPEAX@Z
51; public: virtual unsigned long __cdecl CTcpMib::RequestDeviceStatus(void * __ptr64,unsigned long,unsigned short const * __ptr64,unsigned short const * __ptr64,unsigned long) __ptr64
52?RequestDeviceStatus@CTcpMib@@UEAAKPEAXKPEBG1K@Z
53; private: static unsigned long __cdecl CTcpMib::SnmpCallback(void * __ptr64,void * __ptr64,unsigned int,unsigned __int64,__int64,void * __ptr64)
54?SnmpCallback@CTcpMib@@CAKPEAX0I_K_J0@Z
55; public: unsigned long __cdecl CTcpMib::SnmpGet(char const * __ptr64,char const * __ptr64,unsigned long,struct SnmpVarBindList * __ptr64) __ptr64
56?SnmpGet@CTcpMib@@QEAAKPEBD0KPEAUSnmpVarBindList@@@Z
57; public: virtual unsigned long __cdecl CTcpMib::SnmpGet(char const * __ptr64,char const * __ptr64,unsigned long,struct AsnObjectIdentifier * __ptr64,struct SnmpVarBindList * __ptr64) __ptr64
58?SnmpGet@CTcpMib@@UEAAKPEBD0KPEAUAsnObjectIdentifier@@PEAUSnmpVarBindList@@@Z
59; public: unsigned long __cdecl CTcpMib::SnmpGetNext(char const * __ptr64,char const * __ptr64,unsigned long,struct SnmpVarBindList * __ptr64) __ptr64
60?SnmpGetNext@CTcpMib@@QEAAKPEBD0KPEAUSnmpVarBindList@@@Z
61; public: virtual unsigned long __cdecl CTcpMib::SnmpGetNext(char const * __ptr64,char const * __ptr64,unsigned long,struct AsnObjectIdentifier * __ptr64,struct SnmpVarBindList * __ptr64) __ptr64
62?SnmpGetNext@CTcpMib@@UEAAKPEBD0KPEAUAsnObjectIdentifier@@PEAUSnmpVarBindList@@@Z
63; public: unsigned long __cdecl CTcpMib::SnmpWalk(char const * __ptr64,char const * __ptr64,unsigned long,struct SnmpVarBindList * __ptr64) __ptr64
64?SnmpWalk@CTcpMib@@QEAAKPEBD0KPEAUSnmpVarBindList@@@Z
65; public: virtual unsigned long __cdecl CTcpMib::SnmpWalk(char const * __ptr64,char const * __ptr64,unsigned long,struct AsnObjectIdentifier * __ptr64,struct SnmpVarBindList * __ptr64) __ptr64
66?SnmpWalk@CTcpMib@@UEAAKPEBD0KPEAUAsnObjectIdentifier@@PEAUSnmpVarBindList@@@Z
67; public: virtual int __cdecl CTcpMib::SupportsPrinterMib(char const * __ptr64,char const * __ptr64,unsigned long,int * __ptr64) __ptr64
68?SupportsPrinterMib@CTcpMib@@UEAAHPEBD0KPEAH@Z
69; public: virtual void __cdecl CTcpMib::UnInitSnmp(void) __ptr64
70?UnInitSnmp@CTcpMib@@UEAAXXZ
71GetTcpMibPtr
72Ping
lib/libc/mingw/lib64/tsappcmp.def created+37
......@@ -0,0 +1,37 @@
1;
2; Exports of file TSAPPCMP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY TSAPPCMP.dll
8EXPORTS
9TermServPrepareAppInstallDueMSI
10TermServProcessAppInstallDueMSI
11GetTermsrCompatFlags
12GetTermsrCompatFlagsEx
13TermsrvAdjustPhyMemLimits
14TermsrvBuildIniFileName
15TermsrvBuildSysIniPath
16TermsrvCORIniFile
17TermsrvCheckNewIniFiles
18TermsrvConvertSysRootToUserDir
19TermsrvCopyIniFile
20TermsrvCreateRegEntry
21TermsrvDeleteKey
22TermsrvDeleteValue
23TermsrvFormatObjectName
24TermsrvGetComputerName
25TermsrvGetPreSetValue
26TermsrvGetString
27TermsrvGetWindowsDirectoryA
28TermsrvGetWindowsDirectoryW
29TermsrvLogInstallIniFile
30TermsrvLogInstallIniFileEx
31TermsrvOpenRegEntry
32TermsrvOpenUserClasses
33TermsrvRemoveClassesKey
34TermsrvRestoreKey
35TermsrvSetKeySecurity
36TermsrvSetValueKey
37TermsrvUpdateAllUserMenu
lib/libc/mingw/lib64/tsd32.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file tsd32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY tsd32.dll
8EXPORTS
9TrueSpeech_Version
10TrueSpeech_Init
11TrueSpeech_Term
12TrueSpeech_Encod
13TrueSpeech_Decod
14TrueSpeech_Reset
lib/libc/mingw/lib64/tsoc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file tsoc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY tsoc.dll
8EXPORTS
9HydraOc
10SysPrepBackup
11SysPrepRestore
lib/libc/mingw/lib64/udhisapi.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file isapitst.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY isapitst.DLL
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/ufat.def created+113
......@@ -0,0 +1,113 @@
1;
2; Exports of file UFAT.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY UFAT.dll
8EXPORTS
9; public: __cdecl CLUSTER_CHAIN::CLUSTER_CHAIN(void) __ptr64
10??0CLUSTER_CHAIN@@QEAA@XZ
11; public: __cdecl EA_HEADER::EA_HEADER(void) __ptr64
12??0EA_HEADER@@QEAA@XZ
13; public: __cdecl EA_SET::EA_SET(void) __ptr64
14??0EA_SET@@QEAA@XZ
15; public: __cdecl FAT_DIRENT::FAT_DIRENT(void) __ptr64
16??0FAT_DIRENT@@QEAA@XZ
17; public: __cdecl FAT_SA::FAT_SA(void) __ptr64
18??0FAT_SA@@QEAA@XZ
19; public: __cdecl FILEDIR::FILEDIR(void) __ptr64
20??0FILEDIR@@QEAA@XZ
21; public: __cdecl REAL_FAT_SA::REAL_FAT_SA(void) __ptr64
22??0REAL_FAT_SA@@QEAA@XZ
23; public: __cdecl ROOTDIR::ROOTDIR(void) __ptr64
24??0ROOTDIR@@QEAA@XZ
25; public: virtual __cdecl CLUSTER_CHAIN::~CLUSTER_CHAIN(void) __ptr64
26??1CLUSTER_CHAIN@@UEAA@XZ
27; public: virtual __cdecl EA_HEADER::~EA_HEADER(void) __ptr64
28??1EA_HEADER@@UEAA@XZ
29; public: virtual __cdecl EA_SET::~EA_SET(void) __ptr64
30??1EA_SET@@UEAA@XZ
31; public: virtual __cdecl FAT_DIRENT::~FAT_DIRENT(void) __ptr64
32??1FAT_DIRENT@@UEAA@XZ
33; public: virtual __cdecl FAT_SA::~FAT_SA(void) __ptr64
34??1FAT_SA@@UEAA@XZ
35; public: virtual __cdecl FILEDIR::~FILEDIR(void) __ptr64
36??1FILEDIR@@UEAA@XZ
37; public: virtual __cdecl REAL_FAT_SA::~REAL_FAT_SA(void) __ptr64
38??1REAL_FAT_SA@@UEAA@XZ
39; public: virtual __cdecl ROOTDIR::~ROOTDIR(void) __ptr64
40??1ROOTDIR@@UEAA@XZ
41; public: unsigned long __cdecl FAT::AllocChain(unsigned long,unsigned long * __ptr64) __ptr64
42?AllocChain@FAT@@QEAAKKPEAK@Z
43; public: void __cdecl FAT::FreeChain(unsigned long) __ptr64
44?FreeChain@FAT@@QEAAXK@Z
45; public: struct _EA * __ptr64 __cdecl EA_SET::GetEa(unsigned long,long * __ptr64,unsigned char * __ptr64) __ptr64
46?GetEa@EA_SET@@QEAAPEAU_EA@@KPEAJPEAE@Z
47; private: unsigned long __cdecl FAT::Index12(unsigned long)const __ptr64
48?Index12@FAT@@AEBAKK@Z
49; public: unsigned char __cdecl REAL_FAT_SA::InitFATChkDirty(class LOG_IO_DP_DRIVE * __ptr64,class MESSAGE * __ptr64) __ptr64
50?InitFATChkDirty@REAL_FAT_SA@@QEAAEPEAVLOG_IO_DP_DRIVE@@PEAVMESSAGE@@@Z
51; public: unsigned char __cdecl CLUSTER_CHAIN::Initialize(class MEM * __ptr64,class LOG_IO_DP_DRIVE * __ptr64,class FAT_SA * __ptr64,class FAT const * __ptr64,unsigned long,unsigned long) __ptr64
52?Initialize@CLUSTER_CHAIN@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@PEAVFAT_SA@@PEBVFAT@@KK@Z
53; public: unsigned char __cdecl EA_HEADER::Initialize(class MEM * __ptr64,class LOG_IO_DP_DRIVE * __ptr64,class FAT_SA * __ptr64,class FAT const * __ptr64,unsigned long,unsigned long) __ptr64
54?Initialize@EA_HEADER@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@PEAVFAT_SA@@PEBVFAT@@KK@Z
55; public: unsigned char __cdecl EA_SET::Initialize(class MEM * __ptr64,class LOG_IO_DP_DRIVE * __ptr64,class FAT_SA * __ptr64,class FAT const * __ptr64,unsigned long,unsigned long) __ptr64
56?Initialize@EA_SET@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@PEAVFAT_SA@@PEBVFAT@@KK@Z
57; public: unsigned char __cdecl FAT_DIRENT::Initialize(void * __ptr64) __ptr64
58?Initialize@FAT_DIRENT@@QEAAEPEAX@Z
59; public: unsigned char __cdecl FAT_DIRENT::Initialize(void * __ptr64,unsigned char) __ptr64
60?Initialize@FAT_DIRENT@@QEAAEPEAXE@Z
61; public: unsigned char __cdecl FILEDIR::Initialize(class MEM * __ptr64,class LOG_IO_DP_DRIVE * __ptr64,class FAT_SA * __ptr64,class FAT const * __ptr64,unsigned long) __ptr64
62?Initialize@FILEDIR@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@PEAVFAT_SA@@PEBVFAT@@K@Z
63; public: virtual unsigned char __cdecl REAL_FAT_SA::Initialize(class LOG_IO_DP_DRIVE * __ptr64,class MESSAGE * __ptr64,unsigned char) __ptr64
64?Initialize@REAL_FAT_SA@@UEAAEPEAVLOG_IO_DP_DRIVE@@PEAVMESSAGE@@E@Z
65; public: unsigned char __cdecl ROOTDIR::Initialize(class MEM * __ptr64,class LOG_IO_DP_DRIVE * __ptr64,unsigned long,long) __ptr64
66?Initialize@ROOTDIR@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@KJ@Z
67; public: unsigned char __cdecl FAT_DIRENT::IsValidCreationTime(void)const __ptr64
68?IsValidCreationTime@FAT_DIRENT@@QEBAEXZ
69; public: unsigned char __cdecl FAT_DIRENT::IsValidLastAccessTime(void)const __ptr64
70?IsValidLastAccessTime@FAT_DIRENT@@QEBAEXZ
71; public: unsigned char __cdecl FAT_DIRENT::IsValidLastWriteTime(void)const __ptr64
72?IsValidLastWriteTime@FAT_DIRENT@@QEBAEXZ
73; public: unsigned long __cdecl FAT::QueryAllocatedClusters(void)const __ptr64
74?QueryAllocatedClusters@FAT@@QEBAKXZ
75; public: unsigned char __cdecl FAT_SA::QueryCensusAndRelocate(struct _CENSUS_REPORT * __ptr64,class INTSTACK * __ptr64,unsigned char * __ptr64) __ptr64
76?QueryCensusAndRelocate@FAT_SA@@QEAAEPEAU_CENSUS_REPORT@@PEAVINTSTACK@@PEAE@Z
77; public: unsigned char __cdecl FAT_DIRENT::QueryCreationTime(union _LARGE_INTEGER * __ptr64)const __ptr64
78?QueryCreationTime@FAT_DIRENT@@QEBAEPEAT_LARGE_INTEGER@@@Z
79; public: unsigned short __cdecl EA_HEADER::QueryEaSetClusterNumber(unsigned short)const __ptr64
80?QueryEaSetClusterNumber@EA_HEADER@@QEBAGG@Z
81; public: unsigned long __cdecl FAT_SA::QueryFileStartingCluster(class WSTRING const * __ptr64,class HMEM * __ptr64,class FATDIR * __ptr64 * __ptr64,unsigned char * __ptr64,class FAT_DIRENT * __ptr64) __ptr64
82?QueryFileStartingCluster@FAT_SA@@QEAAKPEBVWSTRING@@PEAVHMEM@@PEAPEAVFATDIR@@PEAEPEAVFAT_DIRENT@@@Z
83; public: unsigned long __cdecl REAL_FAT_SA::QueryFreeSectors(void)const __ptr64
84?QueryFreeSectors@REAL_FAT_SA@@QEBAKXZ
85; public: unsigned char __cdecl FAT_DIRENT::QueryLastAccessTime(union _LARGE_INTEGER * __ptr64)const __ptr64
86?QueryLastAccessTime@FAT_DIRENT@@QEBAEPEAT_LARGE_INTEGER@@@Z
87; public: unsigned char __cdecl FAT_DIRENT::QueryLastWriteTime(union _LARGE_INTEGER * __ptr64)const __ptr64
88?QueryLastWriteTime@FAT_DIRENT@@QEBAEPEAT_LARGE_INTEGER@@@Z
89; public: unsigned long __cdecl FAT::QueryLengthOfChain(unsigned long,unsigned long * __ptr64)const __ptr64
90?QueryLengthOfChain@FAT@@QEBAKKPEAK@Z
91; public: unsigned char __cdecl FATDIR::QueryLongName(long,class WSTRING * __ptr64) __ptr64
92?QueryLongName@FATDIR@@QEAAEJPEAVWSTRING@@@Z
93; public: unsigned char __cdecl FAT_DIRENT::QueryName(class WSTRING * __ptr64)const __ptr64
94?QueryName@FAT_DIRENT@@QEBAEPEAVWSTRING@@@Z
95; public: unsigned long __cdecl FAT::QueryNthCluster(unsigned long,unsigned long)const __ptr64
96?QueryNthCluster@FAT@@QEBAKKK@Z
97; public: virtual unsigned char __cdecl CLUSTER_CHAIN::Read(void) __ptr64
98?Read@CLUSTER_CHAIN@@UEAAEXZ
99; public: virtual unsigned char __cdecl EA_SET::Read(void) __ptr64
100?Read@EA_SET@@UEAAEXZ
101; public: virtual unsigned char __cdecl REAL_FAT_SA::Read(class MESSAGE * __ptr64) __ptr64
102?Read@REAL_FAT_SA@@UEAAEPEAVMESSAGE@@@Z
103; public: void * __ptr64 __cdecl FATDIR::SearchForDirEntry(class WSTRING const * __ptr64) __ptr64
104?SearchForDirEntry@FATDIR@@QEAAPEAXPEBVWSTRING@@@Z
105; private: void __cdecl FAT::Set12(unsigned long,unsigned long) __ptr64
106?Set12@FAT@@AEAAXKK@Z
107; public: virtual unsigned char __cdecl CLUSTER_CHAIN::Write(void) __ptr64
108?Write@CLUSTER_CHAIN@@UEAAEXZ
109Chkdsk
110ChkdskEx
111Format
112FormatEx
113Recover
lib/libc/mingw/lib64/umandlg.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file UMANDLG.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY UMANDLG.dll
8EXPORTS
9UManDlg
lib/libc/mingw/lib64/umpnpmgr.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file umpnpmgr.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY umpnpmgr.dll
8EXPORTS
9DeleteServicePlugPlayRegKeys
10PNP_GetDeviceList
11PNP_GetDeviceListSize
12PNP_GetDeviceRegProp
13PNP_HwProfFlags
14PNP_SetActiveService
15RegisterScmCallback
16RegisterServiceNotification
17SvcEntry_PlugPlay
lib/libc/mingw/lib64/uniime.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file UNIIME.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY UNIIME.DLL
8EXPORTS
9UniSearchPhrasePredictionA
10UniSearchPhrasePredictionW
lib/libc/mingw/lib64/untfs.def created+300
......@@ -0,0 +1,300 @@
1;
2; Exports of file UNTFS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY UNTFS.dll
8EXPORTS
9; public: __cdecl NTFS_ATTRIBUTE::NTFS_ATTRIBUTE(void) __ptr64
10??0NTFS_ATTRIBUTE@@QEAA@XZ
11; public: __cdecl NTFS_ATTRIBUTE_DEFINITION_TABLE::NTFS_ATTRIBUTE_DEFINITION_TABLE(void) __ptr64
12??0NTFS_ATTRIBUTE_DEFINITION_TABLE@@QEAA@XZ
13; public: __cdecl NTFS_ATTRIBUTE_LIST::NTFS_ATTRIBUTE_LIST(void) __ptr64
14??0NTFS_ATTRIBUTE_LIST@@QEAA@XZ
15; public: __cdecl NTFS_ATTRIBUTE_RECORD::NTFS_ATTRIBUTE_RECORD(void) __ptr64
16??0NTFS_ATTRIBUTE_RECORD@@QEAA@XZ
17; public: __cdecl NTFS_BAD_CLUSTER_FILE::NTFS_BAD_CLUSTER_FILE(void) __ptr64
18??0NTFS_BAD_CLUSTER_FILE@@QEAA@XZ
19; public: __cdecl NTFS_BITMAP::NTFS_BITMAP(void) __ptr64
20??0NTFS_BITMAP@@QEAA@XZ
21; public: __cdecl NTFS_BITMAP_FILE::NTFS_BITMAP_FILE(void) __ptr64
22??0NTFS_BITMAP_FILE@@QEAA@XZ
23; public: __cdecl NTFS_BOOT_FILE::NTFS_BOOT_FILE(void) __ptr64
24??0NTFS_BOOT_FILE@@QEAA@XZ
25; public: __cdecl NTFS_CLUSTER_RUN::NTFS_CLUSTER_RUN(void) __ptr64
26??0NTFS_CLUSTER_RUN@@QEAA@XZ
27; public: __cdecl NTFS_EXTENT_LIST::NTFS_EXTENT_LIST(void) __ptr64
28??0NTFS_EXTENT_LIST@@QEAA@XZ
29; public: __cdecl NTFS_FILE_RECORD_SEGMENT::NTFS_FILE_RECORD_SEGMENT(void) __ptr64
30??0NTFS_FILE_RECORD_SEGMENT@@QEAA@XZ
31; public: __cdecl NTFS_FRS_STRUCTURE::NTFS_FRS_STRUCTURE(void) __ptr64
32??0NTFS_FRS_STRUCTURE@@QEAA@XZ
33; public: __cdecl NTFS_INDEX_TREE::NTFS_INDEX_TREE(void) __ptr64
34??0NTFS_INDEX_TREE@@QEAA@XZ
35; public: __cdecl NTFS_LOG_FILE::NTFS_LOG_FILE(void) __ptr64
36??0NTFS_LOG_FILE@@QEAA@XZ
37; public: __cdecl NTFS_MFT_FILE::NTFS_MFT_FILE(void) __ptr64
38??0NTFS_MFT_FILE@@QEAA@XZ
39; public: __cdecl NTFS_MFT_INFO::NTFS_MFT_INFO(void) __ptr64
40??0NTFS_MFT_INFO@@QEAA@XZ
41; public: __cdecl NTFS_REFLECTED_MASTER_FILE_TABLE::NTFS_REFLECTED_MASTER_FILE_TABLE(void) __ptr64
42??0NTFS_REFLECTED_MASTER_FILE_TABLE@@QEAA@XZ
43; public: __cdecl NTFS_SA::NTFS_SA(void) __ptr64
44??0NTFS_SA@@QEAA@XZ
45; public: __cdecl NTFS_UPCASE_FILE::NTFS_UPCASE_FILE(void) __ptr64
46??0NTFS_UPCASE_FILE@@QEAA@XZ
47; public: __cdecl NTFS_UPCASE_TABLE::NTFS_UPCASE_TABLE(void) __ptr64
48??0NTFS_UPCASE_TABLE@@QEAA@XZ
49; public: __cdecl RA_PROCESS_FILE::RA_PROCESS_FILE(void) __ptr64
50??0RA_PROCESS_FILE@@QEAA@XZ
51; public: __cdecl RA_PROCESS_SD::RA_PROCESS_SD(void) __ptr64
52??0RA_PROCESS_SD@@QEAA@XZ
53; public: virtual __cdecl NTFS_ATTRIBUTE::~NTFS_ATTRIBUTE(void) __ptr64
54??1NTFS_ATTRIBUTE@@UEAA@XZ
55; public: virtual __cdecl NTFS_ATTRIBUTE_DEFINITION_TABLE::~NTFS_ATTRIBUTE_DEFINITION_TABLE(void) __ptr64
56??1NTFS_ATTRIBUTE_DEFINITION_TABLE@@UEAA@XZ
57; public: virtual __cdecl NTFS_ATTRIBUTE_LIST::~NTFS_ATTRIBUTE_LIST(void) __ptr64
58??1NTFS_ATTRIBUTE_LIST@@UEAA@XZ
59; public: virtual __cdecl NTFS_ATTRIBUTE_RECORD::~NTFS_ATTRIBUTE_RECORD(void) __ptr64
60??1NTFS_ATTRIBUTE_RECORD@@UEAA@XZ
61; public: virtual __cdecl NTFS_BAD_CLUSTER_FILE::~NTFS_BAD_CLUSTER_FILE(void) __ptr64
62??1NTFS_BAD_CLUSTER_FILE@@UEAA@XZ
63; public: virtual __cdecl NTFS_BITMAP::~NTFS_BITMAP(void) __ptr64
64??1NTFS_BITMAP@@UEAA@XZ
65; public: virtual __cdecl NTFS_BITMAP_FILE::~NTFS_BITMAP_FILE(void) __ptr64
66??1NTFS_BITMAP_FILE@@UEAA@XZ
67; public: virtual __cdecl NTFS_BOOT_FILE::~NTFS_BOOT_FILE(void) __ptr64
68??1NTFS_BOOT_FILE@@UEAA@XZ
69; public: virtual __cdecl NTFS_CLUSTER_RUN::~NTFS_CLUSTER_RUN(void) __ptr64
70??1NTFS_CLUSTER_RUN@@UEAA@XZ
71; public: virtual __cdecl NTFS_EXTENT_LIST::~NTFS_EXTENT_LIST(void) __ptr64
72??1NTFS_EXTENT_LIST@@UEAA@XZ
73; public: virtual __cdecl NTFS_FILE_RECORD_SEGMENT::~NTFS_FILE_RECORD_SEGMENT(void) __ptr64
74??1NTFS_FILE_RECORD_SEGMENT@@UEAA@XZ
75; public: virtual __cdecl NTFS_FRS_STRUCTURE::~NTFS_FRS_STRUCTURE(void) __ptr64
76??1NTFS_FRS_STRUCTURE@@UEAA@XZ
77; public: virtual __cdecl NTFS_INDEX_TREE::~NTFS_INDEX_TREE(void) __ptr64
78??1NTFS_INDEX_TREE@@UEAA@XZ
79; public: virtual __cdecl NTFS_LOG_FILE::~NTFS_LOG_FILE(void) __ptr64
80??1NTFS_LOG_FILE@@UEAA@XZ
81; public: virtual __cdecl NTFS_MFT_FILE::~NTFS_MFT_FILE(void) __ptr64
82??1NTFS_MFT_FILE@@UEAA@XZ
83; public: virtual __cdecl NTFS_MFT_INFO::~NTFS_MFT_INFO(void) __ptr64
84??1NTFS_MFT_INFO@@UEAA@XZ
85; public: virtual __cdecl NTFS_REFLECTED_MASTER_FILE_TABLE::~NTFS_REFLECTED_MASTER_FILE_TABLE(void) __ptr64
86??1NTFS_REFLECTED_MASTER_FILE_TABLE@@UEAA@XZ
87; public: virtual __cdecl NTFS_SA::~NTFS_SA(void) __ptr64
88??1NTFS_SA@@UEAA@XZ
89; public: virtual __cdecl NTFS_UPCASE_FILE::~NTFS_UPCASE_FILE(void) __ptr64
90??1NTFS_UPCASE_FILE@@UEAA@XZ
91; public: virtual __cdecl NTFS_UPCASE_TABLE::~NTFS_UPCASE_TABLE(void) __ptr64
92??1NTFS_UPCASE_TABLE@@UEAA@XZ
93; public: virtual __cdecl RA_PROCESS_FILE::~RA_PROCESS_FILE(void) __ptr64
94??1RA_PROCESS_FILE@@UEAA@XZ
95; public: virtual __cdecl RA_PROCESS_SD::~RA_PROCESS_SD(void) __ptr64
96??1RA_PROCESS_SD@@UEAA@XZ
97; public: unsigned char __cdecl NTFS_EXTENT_LIST::AddExtent(class BIG_INT,class BIG_INT,class BIG_INT) __ptr64
98?AddExtent@NTFS_EXTENT_LIST@@QEAAEVBIG_INT@@00@Z
99; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::AddFileNameAttribute(struct _FILE_NAME * __ptr64) __ptr64
100?AddFileNameAttribute@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAU_FILE_NAME@@@Z
101; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::AddSecurityDescriptor(enum _CANNED_SECURITY_TYPE,class NTFS_BITMAP * __ptr64) __ptr64
102?AddSecurityDescriptor@NTFS_FILE_RECORD_SEGMENT@@QEAAEW4_CANNED_SECURITY_TYPE@@PEAVNTFS_BITMAP@@@Z
103; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::AddSecurityDescriptorData(class NTFS_ATTRIBUTE * __ptr64,void * __ptr64,struct _SECURITY_ENTRY * __ptr64 * __ptr64,unsigned long,enum _CANNED_SECURITY_TYPE,class NTFS_BITMAP * __ptr64,unsigned char) __ptr64
104?AddSecurityDescriptorData@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAXPEAPEAU_SECURITY_ENTRY@@KW4_CANNED_SECURITY_TYPE@@PEAVNTFS_BITMAP@@E@Z
105; public: unsigned char __cdecl NTFS_MASTER_FILE_TABLE::AllocateFileRecordSegment(class BIG_INT * __ptr64,unsigned char) __ptr64
106?AllocateFileRecordSegment@NTFS_MASTER_FILE_TABLE@@QEAAEPEAVBIG_INT@@E@Z
107; public: static unsigned char __cdecl NTFS_MFT_INFO::CompareDupInfo(void * __ptr64,struct _FILE_NAME * __ptr64)
108?CompareDupInfo@NTFS_MFT_INFO@@SAEPEAXPEAU_FILE_NAME@@@Z
109; public: static unsigned char __cdecl NTFS_MFT_INFO::CompareFileName(void * __ptr64,unsigned long,struct _FILE_NAME * __ptr64,unsigned short * __ptr64)
110?CompareFileName@NTFS_MFT_INFO@@SAEPEAXKPEAU_FILE_NAME@@PEAG@Z
111; private: static void __cdecl NTFS_MFT_INFO::ComputeDupInfoSignature(struct _DUPLICATED_INFORMATION * __ptr64,unsigned char * __ptr64 const)
112?ComputeDupInfoSignature@NTFS_MFT_INFO@@CAXPEAU_DUPLICATED_INFORMATION@@QEAE@Z
113; private: static void __cdecl NTFS_MFT_INFO::ComputeFileNameSignature(unsigned long,struct _FILE_NAME * __ptr64,unsigned char * __ptr64 const)
114?ComputeFileNameSignature@NTFS_MFT_INFO@@CAXKPEAU_FILE_NAME@@QEAE@Z
115; public: unsigned char __cdecl NTFS_INDEX_TREE::CopyIterator(class NTFS_INDEX_TREE * __ptr64) __ptr64
116?CopyIterator@NTFS_INDEX_TREE@@QEAAEPEAV1@@Z
117; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::Create(struct _STANDARD_INFORMATION const * __ptr64,unsigned short) __ptr64
118?Create@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEBU_STANDARD_INFORMATION@@G@Z
119; public: unsigned char __cdecl NTFS_LOG_FILE::CreateDataAttribute(class BIG_INT,unsigned long,class NTFS_BITMAP * __ptr64) __ptr64
120?CreateDataAttribute@NTFS_LOG_FILE@@QEAAEVBIG_INT@@KPEAVNTFS_BITMAP@@@Z
121; public: unsigned char __cdecl NTFS_SA::CreateElementaryStructures(class NTFS_BITMAP * __ptr64,unsigned long,unsigned long,unsigned long,unsigned long,class NUMBER_SET const * __ptr64,unsigned char,unsigned char,class MESSAGE * __ptr64,struct BIOS_PARAMETER_BLOCK * __ptr64,class WSTRING const * __ptr64) __ptr64
122?CreateElementaryStructures@NTFS_SA@@QEAAEPEAVNTFS_BITMAP@@KKKKPEBVNUMBER_SET@@EEPEAVMESSAGE@@PEAUBIOS_PARAMETER_BLOCK@@PEBVWSTRING@@@Z
123; public: unsigned char __cdecl NTFS_MASTER_FILE_TABLE::Extend(unsigned long) __ptr64
124?Extend@NTFS_MASTER_FILE_TABLE@@QEAAEK@Z
125; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::Flush(class NTFS_BITMAP * __ptr64,class NTFS_INDEX_TREE * __ptr64,unsigned char) __ptr64
126?Flush@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_BITMAP@@PEAVNTFS_INDEX_TREE@@E@Z
127; public: unsigned char __cdecl NTFS_MFT_FILE::Flush(void) __ptr64
128?Flush@NTFS_MFT_FILE@@QEAAEXZ
129; public: struct _INDEX_ENTRY const * __ptr64 __cdecl NTFS_INDEX_TREE::GetNext(unsigned long * __ptr64,unsigned char * __ptr64,unsigned char) __ptr64
130?GetNext@NTFS_INDEX_TREE@@QEAAPEBU_INDEX_ENTRY@@PEAKPEAEE@Z
131; public: struct _ATTRIBUTE_LIST_ENTRY const * __ptr64 __cdecl NTFS_ATTRIBUTE_LIST::GetNextAttributeListEntry(struct _ATTRIBUTE_LIST_ENTRY const * __ptr64)const __ptr64
132?GetNextAttributeListEntry@NTFS_ATTRIBUTE_LIST@@QEBAPEBU_ATTRIBUTE_LIST_ENTRY@@PEBU2@@Z
133; public: void * __ptr64 __cdecl NTFS_FRS_STRUCTURE::GetNextAttributeRecord(void const * __ptr64,class MESSAGE * __ptr64,unsigned char * __ptr64) __ptr64
134?GetNextAttributeRecord@NTFS_FRS_STRUCTURE@@QEAAPEAXPEBXPEAVMESSAGE@@PEAE@Z
135; public: unsigned char __cdecl NTFS_ATTRIBUTE::Initialize(class LOG_IO_DP_DRIVE * __ptr64,unsigned long,class NTFS_EXTENT_LIST const * __ptr64,class BIG_INT,class BIG_INT,unsigned long,class WSTRING const * __ptr64,unsigned short) __ptr64
136?Initialize@NTFS_ATTRIBUTE@@QEAAEPEAVLOG_IO_DP_DRIVE@@KPEBVNTFS_EXTENT_LIST@@VBIG_INT@@2KPEBVWSTRING@@G@Z
137; public: unsigned char __cdecl NTFS_ATTRIBUTE::Initialize(class LOG_IO_DP_DRIVE * __ptr64,unsigned long,void const * __ptr64,unsigned long,unsigned long,class WSTRING const * __ptr64,unsigned short) __ptr64
138?Initialize@NTFS_ATTRIBUTE@@QEAAEPEAVLOG_IO_DP_DRIVE@@KPEBXKKPEBVWSTRING@@G@Z
139; public: unsigned char __cdecl NTFS_ATTRIBUTE_DEFINITION_TABLE::Initialize(class NTFS_MASTER_FILE_TABLE * __ptr64,unsigned char) __ptr64
140?Initialize@NTFS_ATTRIBUTE_DEFINITION_TABLE@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@E@Z
141; public: unsigned char __cdecl NTFS_ATTRIBUTE_RECORD::Initialize(class IO_DP_DRIVE * __ptr64,void * __ptr64) __ptr64
142?Initialize@NTFS_ATTRIBUTE_RECORD@@QEAAEPEAVIO_DP_DRIVE@@PEAX@Z
143; public: unsigned char __cdecl NTFS_BAD_CLUSTER_FILE::Initialize(class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
144?Initialize@NTFS_BAD_CLUSTER_FILE@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@@Z
145; public: unsigned char __cdecl NTFS_BITMAP::Initialize(class BIG_INT,unsigned char,class LOG_IO_DP_DRIVE * __ptr64,unsigned long) __ptr64
146?Initialize@NTFS_BITMAP@@QEAAEVBIG_INT@@EPEAVLOG_IO_DP_DRIVE@@K@Z
147; public: unsigned char __cdecl NTFS_BITMAP_FILE::Initialize(class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
148?Initialize@NTFS_BITMAP_FILE@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@@Z
149; public: unsigned char __cdecl NTFS_BOOT_FILE::Initialize(class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
150?Initialize@NTFS_BOOT_FILE@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@@Z
151; public: unsigned char __cdecl NTFS_CLUSTER_RUN::Initialize(class MEM * __ptr64,class LOG_IO_DP_DRIVE * __ptr64,class BIG_INT,unsigned long,unsigned long) __ptr64
152?Initialize@NTFS_CLUSTER_RUN@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@VBIG_INT@@KK@Z
153; public: unsigned char __cdecl NTFS_EXTENT_LIST::Initialize(class BIG_INT,class BIG_INT) __ptr64
154?Initialize@NTFS_EXTENT_LIST@@QEAAEVBIG_INT@@0@Z
155; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::Initialize(class BIG_INT,unsigned long,class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
156?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEVBIG_INT@@KPEAVNTFS_MASTER_FILE_TABLE@@@Z
157; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::Initialize(class BIG_INT,class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
158?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEVBIG_INT@@PEAVNTFS_MASTER_FILE_TABLE@@@Z
159; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::Initialize(class BIG_INT,class NTFS_MFT_FILE * __ptr64) __ptr64
160?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEVBIG_INT@@PEAVNTFS_MFT_FILE@@@Z
161; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::Initialize(void) __ptr64
162?Initialize@NTFS_FILE_RECORD_SEGMENT@@QEAAEXZ
163; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::Initialize(class MEM * __ptr64,class LOG_IO_DP_DRIVE * __ptr64,class BIG_INT,unsigned long,class BIG_INT,unsigned long,class NTFS_UPCASE_TABLE * __ptr64,unsigned long) __ptr64
164?Initialize@NTFS_FRS_STRUCTURE@@QEAAEPEAVMEM@@PEAVLOG_IO_DP_DRIVE@@VBIG_INT@@K2KPEAVNTFS_UPCASE_TABLE@@K@Z
165; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::Initialize(class MEM * __ptr64,class NTFS_ATTRIBUTE * __ptr64,class BIG_INT,unsigned long,class BIG_INT,unsigned long,class NTFS_UPCASE_TABLE * __ptr64) __ptr64
166?Initialize@NTFS_FRS_STRUCTURE@@QEAAEPEAVMEM@@PEAVNTFS_ATTRIBUTE@@VBIG_INT@@K2KPEAVNTFS_UPCASE_TABLE@@@Z
167; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::Initialize(class MEM * __ptr64,class NTFS_ATTRIBUTE * __ptr64,class BIG_INT,unsigned long,unsigned long,class BIG_INT,unsigned long,class NTFS_UPCASE_TABLE * __ptr64) __ptr64
168?Initialize@NTFS_FRS_STRUCTURE@@QEAAEPEAVMEM@@PEAVNTFS_ATTRIBUTE@@VBIG_INT@@KK2KPEAVNTFS_UPCASE_TABLE@@@Z
169; public: unsigned char __cdecl NTFS_INDEX_TREE::Initialize(unsigned long,class LOG_IO_DP_DRIVE * __ptr64,unsigned long,class NTFS_BITMAP * __ptr64,class NTFS_UPCASE_TABLE * __ptr64,unsigned long,unsigned long,unsigned long,class WSTRING const * __ptr64) __ptr64
170?Initialize@NTFS_INDEX_TREE@@QEAAEKPEAVLOG_IO_DP_DRIVE@@KPEAVNTFS_BITMAP@@PEAVNTFS_UPCASE_TABLE@@KKKPEBVWSTRING@@@Z
171; public: unsigned char __cdecl NTFS_INDEX_TREE::Initialize(class LOG_IO_DP_DRIVE * __ptr64,unsigned long,class NTFS_BITMAP * __ptr64,class NTFS_UPCASE_TABLE * __ptr64,unsigned long,class NTFS_FILE_RECORD_SEGMENT * __ptr64,class WSTRING const * __ptr64) __ptr64
172?Initialize@NTFS_INDEX_TREE@@QEAAEPEAVLOG_IO_DP_DRIVE@@KPEAVNTFS_BITMAP@@PEAVNTFS_UPCASE_TABLE@@KPEAVNTFS_FILE_RECORD_SEGMENT@@PEBVWSTRING@@@Z
173; public: unsigned char __cdecl NTFS_LOG_FILE::Initialize(class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
174?Initialize@NTFS_LOG_FILE@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@@Z
175; public: unsigned char __cdecl NTFS_MFT_FILE::Initialize(class LOG_IO_DP_DRIVE * __ptr64,class BIG_INT,unsigned long,unsigned long,class BIG_INT,class NTFS_BITMAP * __ptr64,class NTFS_UPCASE_TABLE * __ptr64) __ptr64
176?Initialize@NTFS_MFT_FILE@@QEAAEPEAVLOG_IO_DP_DRIVE@@VBIG_INT@@KK1PEAVNTFS_BITMAP@@PEAVNTFS_UPCASE_TABLE@@@Z
177; public: unsigned char __cdecl NTFS_MFT_INFO::Initialize(class BIG_INT,class NTFS_UPCASE_TABLE * __ptr64,unsigned char,unsigned char,unsigned __int64) __ptr64
178?Initialize@NTFS_MFT_INFO@@QEAAEVBIG_INT@@PEAVNTFS_UPCASE_TABLE@@EE_K@Z
179; public: unsigned char __cdecl NTFS_MFT_INFO::Initialize(void) __ptr64
180?Initialize@NTFS_MFT_INFO@@QEAAEXZ
181; public: unsigned char __cdecl NTFS_REFLECTED_MASTER_FILE_TABLE::Initialize(class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
182?Initialize@NTFS_REFLECTED_MASTER_FILE_TABLE@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@@Z
183; public: unsigned char __cdecl NTFS_SA::Initialize(class LOG_IO_DP_DRIVE * __ptr64,class MESSAGE * __ptr64,class BIG_INT,class BIG_INT) __ptr64
184?Initialize@NTFS_SA@@QEAAEPEAVLOG_IO_DP_DRIVE@@PEAVMESSAGE@@VBIG_INT@@2@Z
185; public: unsigned char __cdecl NTFS_UPCASE_FILE::Initialize(class NTFS_MASTER_FILE_TABLE * __ptr64) __ptr64
186?Initialize@NTFS_UPCASE_FILE@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@@Z
187; public: unsigned char __cdecl NTFS_UPCASE_TABLE::Initialize(class NTFS_ATTRIBUTE * __ptr64) __ptr64
188?Initialize@NTFS_UPCASE_TABLE@@QEAAEPEAVNTFS_ATTRIBUTE@@@Z
189; public: static unsigned char __cdecl RA_PROCESS_FILE::Initialize(class NTFS_SA * __ptr64,class BIG_INT,class BIG_INT * __ptr64,unsigned long * __ptr64,class NTFS_FRS_STRUCTURE * __ptr64,class NTFS_FRS_STRUCTURE * __ptr64,class HMEM * __ptr64,class HMEM * __ptr64,void * __ptr64,void * __ptr64,class NTFS_ATTRIBUTE * __ptr64,class NTFS_UPCASE_TABLE * __ptr64)
190?Initialize@RA_PROCESS_FILE@@SAEPEAVNTFS_SA@@VBIG_INT@@PEAV3@PEAKPEAVNTFS_FRS_STRUCTURE@@4PEAVHMEM@@5PEAX6PEAVNTFS_ATTRIBUTE@@PEAVNTFS_UPCASE_TABLE@@@Z
191; public: static unsigned char __cdecl RA_PROCESS_SD::Initialize(class NTFS_SA * __ptr64,class BIG_INT,class BIG_INT * __ptr64,unsigned long * __ptr64,class NTFS_FILE_RECORD_SEGMENT * __ptr64,class NTFS_FILE_RECORD_SEGMENT * __ptr64,void * __ptr64,void * __ptr64,class NTFS_MASTER_FILE_TABLE * __ptr64)
192?Initialize@RA_PROCESS_SD@@SAEPEAVNTFS_SA@@VBIG_INT@@PEAV3@PEAKPEAVNTFS_FILE_RECORD_SEGMENT@@4PEAX5PEAVNTFS_MASTER_FILE_TABLE@@@Z
193; public: unsigned char __cdecl NTFS_INDEX_TREE::InsertEntry(unsigned long,void * __ptr64,struct _MFT_SEGMENT_REFERENCE,unsigned char) __ptr64
194?InsertEntry@NTFS_INDEX_TREE@@QEAAEKPEAXU_MFT_SEGMENT_REFERENCE@@E@Z
195; public: virtual unsigned char __cdecl NTFS_ATTRIBUTE::InsertIntoFile(class NTFS_FILE_RECORD_SEGMENT * __ptr64,class NTFS_BITMAP * __ptr64) __ptr64
196?InsertIntoFile@NTFS_ATTRIBUTE@@UEAAEPEAVNTFS_FILE_RECORD_SEGMENT@@PEAVNTFS_BITMAP@@@Z
197; public: unsigned char __cdecl NTFS_BITMAP::IsAllocated(class BIG_INT,class BIG_INT)const __ptr64
198?IsAllocated@NTFS_BITMAP@@QEBAEVBIG_INT@@0@Z
199; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::IsAttributePresent(unsigned long,class WSTRING const * __ptr64,unsigned char) __ptr64
200?IsAttributePresent@NTFS_FILE_RECORD_SEGMENT@@QEAAEKPEBVWSTRING@@E@Z
201; public: static unsigned char __cdecl NTFS_SA::IsDosName(struct _FILE_NAME const * __ptr64)
202?IsDosName@NTFS_SA@@SAEPEBU_FILE_NAME@@@Z
203; public: unsigned char __cdecl NTFS_BITMAP::IsFree(class BIG_INT,class BIG_INT)const __ptr64
204?IsFree@NTFS_BITMAP@@QEBAEVBIG_INT@@0@Z
205; public: static unsigned char __cdecl NTFS_SA::IsNtfsName(struct _FILE_NAME const * __ptr64)
206?IsNtfsName@NTFS_SA@@SAEPEBU_FILE_NAME@@@Z
207; public: virtual unsigned char __cdecl NTFS_ATTRIBUTE::MakeNonresident(class NTFS_BITMAP * __ptr64) __ptr64
208?MakeNonresident@NTFS_ATTRIBUTE@@UEAAEPEAVNTFS_BITMAP@@@Z
209; long __cdecl NtfsUpcaseCompare(unsigned short const * __ptr64,unsigned long,unsigned short const * __ptr64,unsigned long,class NTFS_UPCASE_TABLE const * __ptr64,unsigned char)
210?NtfsUpcaseCompare@@YAJPEBGK0KPEBVNTFS_UPCASE_TABLE@@E@Z
211; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::QueryAttribute(class NTFS_ATTRIBUTE * __ptr64,unsigned char * __ptr64,unsigned long,class WSTRING const * __ptr64) __ptr64
212?QueryAttribute@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAEKPEBVWSTRING@@@Z
213; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::QueryAttributeByOrdinal(class NTFS_ATTRIBUTE * __ptr64,unsigned char * __ptr64,unsigned long,unsigned long) __ptr64
214?QueryAttributeByOrdinal@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAEKK@Z
215; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::QueryAttributeList(class NTFS_ATTRIBUTE_LIST * __ptr64) __ptr64
216?QueryAttributeList@NTFS_FRS_STRUCTURE@@QEAAEPEAVNTFS_ATTRIBUTE_LIST@@@Z
217; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::QueryAttributeListAttribute(class NTFS_ATTRIBUTE * __ptr64,unsigned char * __ptr64) __ptr64
218?QueryAttributeListAttribute@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAE@Z
219; public: unsigned char __cdecl NTFS_SA::QueryClusterFactor(void)const __ptr64
220?QueryClusterFactor@NTFS_SA@@QEBAEXZ
221; public: static unsigned long __cdecl NTFS_SA::QueryDefaultClustersPerIndexBuffer(class DP_DRIVE const * __ptr64,unsigned long)
222?QueryDefaultClustersPerIndexBuffer@NTFS_SA@@SAKPEBVDP_DRIVE@@K@Z
223; public: unsigned char __cdecl NTFS_INDEX_TREE::QueryEntry(unsigned long,void * __ptr64,unsigned long,struct _INDEX_ENTRY * __ptr64 * __ptr64,class NTFS_INDEX_BUFFER * __ptr64 * __ptr64,unsigned char * __ptr64) __ptr64
224?QueryEntry@NTFS_INDEX_TREE@@QEAAEKPEAXKPEAPEAU_INDEX_ENTRY@@PEAPEAVNTFS_INDEX_BUFFER@@PEAE@Z
225; public: unsigned char __cdecl NTFS_EXTENT_LIST::QueryExtent(unsigned long,class BIG_INT * __ptr64,class BIG_INT * __ptr64,class BIG_INT * __ptr64)const __ptr64
226?QueryExtent@NTFS_EXTENT_LIST@@QEBAEKPEAVBIG_INT@@00@Z
227; public: unsigned char __cdecl NTFS_ATTRIBUTE_RECORD::QueryExtentList(class NTFS_EXTENT_LIST * __ptr64)const __ptr64
228?QueryExtentList@NTFS_ATTRIBUTE_RECORD@@QEBAEPEAVNTFS_EXTENT_LIST@@@Z
229; public: unsigned char __cdecl NTFS_INDEX_TREE::QueryFileReference(unsigned long,void * __ptr64,unsigned long,struct _MFT_SEGMENT_REFERENCE * __ptr64,unsigned char * __ptr64) __ptr64
230?QueryFileReference@NTFS_INDEX_TREE@@QEAAEKPEAXKPEAU_MFT_SEGMENT_REFERENCE@@PEAE@Z
231; public: unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::QueryFileSizes(class BIG_INT * __ptr64,class BIG_INT * __ptr64,unsigned char * __ptr64) __ptr64
232?QueryFileSizes@NTFS_FILE_RECORD_SEGMENT@@QEAAEPEAVBIG_INT@@0PEAE@Z
233; public: static unsigned char __cdecl NTFS_MFT_INFO::QueryFlags(void * __ptr64,unsigned short)
234?QueryFlags@NTFS_MFT_INFO@@SAEPEAXG@Z
235; public: unsigned char __cdecl NTFS_SA::QueryFrsFromPath(class WSTRING const * __ptr64,class NTFS_MASTER_FILE_TABLE * __ptr64,class NTFS_BITMAP * __ptr64,class NTFS_FILE_RECORD_SEGMENT * __ptr64,unsigned char * __ptr64,unsigned char * __ptr64) __ptr64
236?QueryFrsFromPath@NTFS_SA@@QEAAEPEBVWSTRING@@PEAVNTFS_MASTER_FILE_TABLE@@PEAVNTFS_BITMAP@@PEAVNTFS_FILE_RECORD_SEGMENT@@PEAE4@Z
237; public: unsigned char __cdecl NTFS_EXTENT_LIST::QueryLcnFromVcn(class BIG_INT,class BIG_INT * __ptr64,class BIG_INT * __ptr64)const __ptr64
238?QueryLcnFromVcn@NTFS_EXTENT_LIST@@QEBAEVBIG_INT@@PEAV2@1@Z
239; public: unsigned char __cdecl NTFS_ATTRIBUTE_RECORD::QueryName(class WSTRING * __ptr64)const __ptr64
240?QueryName@NTFS_ATTRIBUTE_RECORD@@QEBAEPEAVWSTRING@@@Z
241; public: unsigned char __cdecl NTFS_ATTRIBUTE_LIST::QueryNextEntry(struct _ATTR_LIST_CURR_ENTRY * __ptr64,unsigned long * __ptr64,class BIG_INT * __ptr64,struct _MFT_SEGMENT_REFERENCE * __ptr64,unsigned short * __ptr64,class WSTRING * __ptr64)const __ptr64
242?QueryNextEntry@NTFS_ATTRIBUTE_LIST@@QEBAEPEAU_ATTR_LIST_CURR_ENTRY@@PEAKPEAVBIG_INT@@PEAU_MFT_SEGMENT_REFERENCE@@PEAGPEAVWSTRING@@@Z
243; public: unsigned long __cdecl NTFS_EXTENT_LIST::QueryNumberOfExtents(void)const __ptr64
244?QueryNumberOfExtents@NTFS_EXTENT_LIST@@QEBAKXZ
245; public: static unsigned long __cdecl NTFS_SA::QuerySectorsInElementaryStructures(class DP_DRIVE const * __ptr64,unsigned long,unsigned long,unsigned long,unsigned long)
246?QuerySectorsInElementaryStructures@NTFS_SA@@SAKPEBVDP_DRIVE@@KKKK@Z
247; public: static struct _MFT_SEGMENT_REFERENCE __cdecl NTFS_MFT_INFO::QuerySegmentReference(void * __ptr64)
248?QuerySegmentReference@NTFS_MFT_INFO@@SA?AU_MFT_SEGMENT_REFERENCE@@PEAX@Z
249; public: unsigned short __cdecl NTFS_SA::QueryVolumeFlagsAndLabel(unsigned char * __ptr64,unsigned char * __ptr64,unsigned char * __ptr64,class WSTRING * __ptr64) __ptr64
250?QueryVolumeFlagsAndLabel@NTFS_SA@@QEAAGPEAE00PEAVWSTRING@@@Z
251; public: unsigned char __cdecl NTFS_ATTRIBUTE::Read(void * __ptr64,class BIG_INT,unsigned long,unsigned long * __ptr64) __ptr64
252?Read@NTFS_ATTRIBUTE@@QEAAEPEAXVBIG_INT@@KPEAK@Z
253; public: virtual unsigned char __cdecl NTFS_FRS_STRUCTURE::Read(void) __ptr64
254?Read@NTFS_FRS_STRUCTURE@@UEAAEXZ
255; public: virtual unsigned char __cdecl NTFS_MFT_FILE::Read(void) __ptr64
256?Read@NTFS_MFT_FILE@@UEAAEXZ
257; public: unsigned char __cdecl NTFS_SA::Read(class MESSAGE * __ptr64) __ptr64
258?Read@NTFS_SA@@QEAAEPEAVMESSAGE@@@Z
259; public: virtual unsigned char __cdecl NTFS_SA::Read(void) __ptr64
260?Read@NTFS_SA@@UEAAEXZ
261; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::ReadAgain(class BIG_INT) __ptr64
262?ReadAgain@NTFS_FRS_STRUCTURE@@QEAAEVBIG_INT@@@Z
263; public: unsigned char __cdecl NTFS_ATTRIBUTE_LIST::ReadList(void) __ptr64
264?ReadList@NTFS_ATTRIBUTE_LIST@@QEAAEXZ
265; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::ReadNext(class BIG_INT) __ptr64
266?ReadNext@NTFS_FRS_STRUCTURE@@QEAAEVBIG_INT@@@Z
267; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::ReadSet(class TLINK * __ptr64) __ptr64
268?ReadSet@NTFS_FRS_STRUCTURE@@QEAAEPEAVTLINK@@@Z
269; public: void __cdecl NTFS_CLUSTER_RUN::Relocate(class BIG_INT) __ptr64
270?Relocate@NTFS_CLUSTER_RUN@@QEAAXVBIG_INT@@@Z
271; public: void __cdecl NTFS_INDEX_TREE::ResetIterator(void) __ptr64
272?ResetIterator@NTFS_INDEX_TREE@@QEAAXXZ
273; public: virtual unsigned char __cdecl NTFS_ATTRIBUTE::Resize(class BIG_INT,class NTFS_BITMAP * __ptr64) __ptr64
274?Resize@NTFS_ATTRIBUTE@@UEAAEVBIG_INT@@PEAVNTFS_BITMAP@@@Z
275; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::SafeQueryAttribute(unsigned long,class NTFS_ATTRIBUTE * __ptr64,class NTFS_ATTRIBUTE * __ptr64) __ptr64
276?SafeQueryAttribute@NTFS_FRS_STRUCTURE@@QEAAEKPEAVNTFS_ATTRIBUTE@@0@Z
277; public: unsigned char __cdecl NTFS_INDEX_TREE::Save(class NTFS_FILE_RECORD_SEGMENT * __ptr64) __ptr64
278?Save@NTFS_INDEX_TREE@@QEAAEPEAVNTFS_FILE_RECORD_SEGMENT@@@Z
279; public: virtual unsigned char __cdecl NTFS_ATTRIBUTE::SetSparse(class BIG_INT,class NTFS_BITMAP * __ptr64) __ptr64
280?SetSparse@NTFS_ATTRIBUTE@@UEAAEVBIG_INT@@PEAVNTFS_BITMAP@@@Z
281; public: unsigned char __cdecl NTFS_SA::SetVolumeFlag(unsigned short,unsigned char * __ptr64) __ptr64
282?SetVolumeFlag@NTFS_SA@@QEAAEGPEAE@Z
283; public: unsigned char __cdecl NTFS_SA::TakeCensus(class NTFS_MASTER_FILE_TABLE * __ptr64,unsigned long,struct NTFS_CENSUS_INFO * __ptr64) __ptr64
284?TakeCensus@NTFS_SA@@QEAAEPEAVNTFS_MASTER_FILE_TABLE@@KPEAUNTFS_CENSUS_INFO@@@Z
285; public: virtual unsigned char __cdecl NTFS_ATTRIBUTE::Write(void const * __ptr64,class BIG_INT,unsigned long,unsigned long * __ptr64,class NTFS_BITMAP * __ptr64) __ptr64
286?Write@NTFS_ATTRIBUTE@@UEAAEPEBXVBIG_INT@@KPEAKPEAVNTFS_BITMAP@@@Z
287; public: unsigned char __cdecl NTFS_BITMAP::Write(class NTFS_ATTRIBUTE * __ptr64,class NTFS_BITMAP * __ptr64) __ptr64
288?Write@NTFS_BITMAP@@QEAAEPEAVNTFS_ATTRIBUTE@@PEAV1@@Z
289; public: virtual unsigned char __cdecl NTFS_FILE_RECORD_SEGMENT::Write(void) __ptr64
290?Write@NTFS_FILE_RECORD_SEGMENT@@UEAAEXZ
291; public: unsigned char __cdecl NTFS_FRS_STRUCTURE::Write(void) __ptr64
292?Write@NTFS_FRS_STRUCTURE@@QEAAEXZ
293; public: unsigned char __cdecl NTFS_SA::WriteRemainingBootCode(void) __ptr64
294?WriteRemainingBootCode@NTFS_SA@@QEAAEXZ
295Chkdsk
296ChkdskEx
297Extend
298Format
299FormatEx
300Recover
lib/libc/mingw/lib64/upnpui.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file upnpui.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY upnpui.dll
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13InstallUPnPUI
14IsUPnPUIInstalled
15UnInstallUPnPUI
lib/libc/mingw/lib64/urlauth.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file URLAUTH.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY URLAUTH.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/usbcamd2.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of USBCAMD2.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "USBCAMD2.SYS"
7EXPORTS
8DllUnload
9USBCAMD_AdapterReceivePacket
10USBCAMD_ControlVendorCommand
11USBCAMD_Debug_LogEntry
12USBCAMD_DriverEntry
13USBCAMD_GetRegistryKeyValue
14USBCAMD_InitializeNewInterface
15USBCAMD_SelectAlternateInterface
lib/libc/mingw/lib64/usbd.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of USBD.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "USBD.SYS"
7EXPORTS
8DllInitialize
9DllUnload
10USBD_CalculateUsbBandwidth
11USBD_CreateConfigurationRequest
12USBD_CreateConfigurationRequestEx
13USBD_GetInterfaceLength
14USBD_GetPdoRegistryParameter
15USBD_GetRegistryKeyValue
16USBD_GetUSBDIVersion
17USBD_ParseConfigurationDescriptor
18USBD_ParseConfigurationDescriptorEx
19USBD_ParseDescriptors
20USBD_QueryBusTime
21USBD_RegisterHcFilter
22USBD_ValidateConfigurationDescriptor
lib/libc/mingw/lib64/usbport.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of USBPORT.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "USBPORT.SYS"
7EXPORTS
8DllInitialize
9DllUnload
10USBPORT_GetHciMn
11USBPORT_RegisterUSBPortDriver
lib/libc/mingw/lib64/vdsutil.def created+267
......@@ -0,0 +1,267 @@
1;
2; Exports of file vdsutil.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY vdsutil.dll
8EXPORTS
9; public: __cdecl CVdsHandleImpl<-1>::CVdsHandleImpl<-1>(void) __ptr64
10??0?$CVdsHandleImpl@$0?0@@QEAA@XZ
11; public: __cdecl CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINT>::CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINT>(void) __ptr64
12??0?$CVdsHeapPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEAA@XZ
13; public: __cdecl CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINTS>::CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINTS>(void) __ptr64
14??0?$CVdsHeapPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEAA@XZ
15; public: __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINT>::CVdsPtr<struct _MOUNTMGR_MOUNT_POINT>(void) __ptr64
16??0?$CVdsPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEAA@XZ
17; public: __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINTS>::CVdsPtr<struct _MOUNTMGR_MOUNT_POINTS>(void) __ptr64
18??0?$CVdsPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEAA@XZ
19; public: __cdecl CPrvEnumObject::CPrvEnumObject(void) __ptr64
20??0CPrvEnumObject@@QEAA@XZ
21; public: __cdecl CVdsAsyncObjectBase::CVdsAsyncObjectBase(void) __ptr64
22??0CVdsAsyncObjectBase@@QEAA@XZ
23; public: __cdecl CVdsCallTracer::CVdsCallTracer(unsigned long,char const * __ptr64) __ptr64
24??0CVdsCallTracer@@QEAA@KPEBD@Z
25; public: __cdecl CVdsCriticalSection::CVdsCriticalSection(struct _RTL_CRITICAL_SECTION * __ptr64) __ptr64
26??0CVdsCriticalSection@@QEAA@PEAU_RTL_CRITICAL_SECTION@@@Z
27; public: __cdecl CVdsDebugLog::CVdsDebugLog(int) __ptr64
28??0CVdsDebugLog@@QEAA@H@Z
29; public: __cdecl CVdsPnPNotificationBase::CVdsPnPNotificationBase(void) __ptr64
30??0CVdsPnPNotificationBase@@QEAA@XZ
31; public: __cdecl CVdsStructuredExceptionTranslator::CVdsStructuredExceptionTranslator(void) __ptr64
32??0CVdsStructuredExceptionTranslator@@QEAA@XZ
33; public: __cdecl CVdsUnlockIt::CVdsUnlockIt(long & __ptr64) __ptr64
34??0CVdsUnlockIt@@QEAA@AEAJ@Z
35; public: __cdecl CVdsHandleImpl<-1>::~CVdsHandleImpl<-1>(void) __ptr64
36??1?$CVdsHandleImpl@$0?0@@QEAA@XZ
37; public: __cdecl CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINT>::~CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINT>(void) __ptr64
38??1?$CVdsHeapPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEAA@XZ
39; public: __cdecl CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINTS>::~CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINTS>(void) __ptr64
40??1?$CVdsHeapPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEAA@XZ
41; public: __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINT>::~CVdsPtr<struct _MOUNTMGR_MOUNT_POINT>(void) __ptr64
42??1?$CVdsPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEAA@XZ
43; public: __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINTS>::~CVdsPtr<struct _MOUNTMGR_MOUNT_POINTS>(void) __ptr64
44??1?$CVdsPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEAA@XZ
45; public: __cdecl CPrvEnumObject::~CPrvEnumObject(void) __ptr64
46??1CPrvEnumObject@@QEAA@XZ
47; public: __cdecl CVdsAsyncObjectBase::~CVdsAsyncObjectBase(void) __ptr64
48??1CVdsAsyncObjectBase@@QEAA@XZ
49; public: __cdecl CVdsCallTracer::~CVdsCallTracer(void) __ptr64
50??1CVdsCallTracer@@QEAA@XZ
51; public: __cdecl CVdsCriticalSection::~CVdsCriticalSection(void) __ptr64
52??1CVdsCriticalSection@@QEAA@XZ
53; public: __cdecl CVdsDebugLog::~CVdsDebugLog(void) __ptr64
54??1CVdsDebugLog@@QEAA@XZ
55; public: __cdecl CVdsPnPNotificationBase::~CVdsPnPNotificationBase(void) __ptr64
56??1CVdsPnPNotificationBase@@QEAA@XZ
57; public: __cdecl CVdsStructuredExceptionTranslator::~CVdsStructuredExceptionTranslator(void) __ptr64
58??1CVdsStructuredExceptionTranslator@@QEAA@XZ
59; public: __cdecl CVdsUnlockIt::~CVdsUnlockIt(void) __ptr64
60??1CVdsUnlockIt@@QEAA@XZ
61; public: void * __ptr64 __cdecl CVdsHandleImpl<-1>::operator=(void * __ptr64) __ptr64
62??4?$CVdsHandleImpl@$0?0@@QEAAPEAXPEAX@Z
63; public: struct _MOUNTMGR_MOUNT_POINT * __ptr64 __cdecl CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINT>::operator=(struct _MOUNTMGR_MOUNT_POINT * __ptr64) __ptr64
64??4?$CVdsHeapPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEAAPEAU_MOUNTMGR_MOUNT_POINT@@PEAU1@@Z
65; public: struct _MOUNTMGR_MOUNT_POINTS * __ptr64 __cdecl CVdsHeapPtr<struct _MOUNTMGR_MOUNT_POINTS>::operator=(struct _MOUNTMGR_MOUNT_POINTS * __ptr64) __ptr64
66??4?$CVdsHeapPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEAAPEAU_MOUNTMGR_MOUNT_POINTS@@PEAU1@@Z
67; public: bool __cdecl CVdsHandleImpl<-1>::operator==(void * __ptr64)const __ptr64
68??8?$CVdsHandleImpl@$0?0@@QEBA_NPEAX@Z
69; public: bool __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINT>::operator==(struct _MOUNTMGR_MOUNT_POINT * __ptr64)const __ptr64
70??8?$CVdsPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEBA_NPEAU_MOUNTMGR_MOUNT_POINT@@@Z
71; public: bool __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINTS>::operator==(struct _MOUNTMGR_MOUNT_POINTS * __ptr64)const __ptr64
72??8?$CVdsPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEBA_NPEAU_MOUNTMGR_MOUNT_POINTS@@@Z
73; public: __cdecl CVdsHandleImpl<-1>::operator void * __ptr64(void) __ptr64
74??B?$CVdsHandleImpl@$0?0@@QEAAPEAXXZ
75; public: __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINT>::operator struct _MOUNTMGR_MOUNT_POINT * __ptr64(void)const __ptr64
76??B?$CVdsPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEBAPEAU_MOUNTMGR_MOUNT_POINT@@XZ
77; public: __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINTS>::operator struct _MOUNTMGR_MOUNT_POINTS * __ptr64(void)const __ptr64
78??B?$CVdsPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEBAPEAU_MOUNTMGR_MOUNT_POINTS@@XZ
79; public: struct _MOUNTMGR_MOUNT_POINT * __ptr64 __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINT>::operator->(void)const __ptr64
80??C?$CVdsPtr@U_MOUNTMGR_MOUNT_POINT@@@@QEBAPEAU_MOUNTMGR_MOUNT_POINT@@XZ
81; public: struct _MOUNTMGR_MOUNT_POINTS * __ptr64 __cdecl CVdsPtr<struct _MOUNTMGR_MOUNT_POINTS>::operator->(void)const __ptr64
82??C?$CVdsPtr@U_MOUNTMGR_MOUNT_POINTS@@@@QEBAPEAU_MOUNTMGR_MOUNT_POINTS@@XZ
83; public: void * __ptr64 * __ptr64 __cdecl CVdsHandleImpl<-1>::operator&(void) __ptr64
84??I?$CVdsHandleImpl@$0?0@@QEAAPEAPEAXXZ
85; bool __cdecl operator<(struct _GUID const & __ptr64,struct _GUID const & __ptr64)
86??M@YA_NAEBU_GUID@@0@Z
87; unsigned long __cdecl AddEventSource(unsigned short * __ptr64,struct HINSTANCE__ * __ptr64)
88?AddEventSource@@YAKPEAGPEAUHINSTANCE__@@@Z
89; public: void __cdecl CVdsAsyncObjectBase::AllowCancel(void) __ptr64
90?AllowCancel@CVdsAsyncObjectBase@@QEAAXXZ
91; public: long __cdecl CPrvEnumObject::Append(struct IUnknown * __ptr64) __ptr64
92?Append@CPrvEnumObject@@QEAAJPEAUIUnknown@@@Z
93; long __cdecl AssignTempVolumeName(unsigned short * __ptr64,unsigned short * __ptr64 const)
94?AssignTempVolumeName@@YAJPEAGQEAG@Z
95; public: virtual long __cdecl CVdsAsyncObjectBase::Cancel(void) __ptr64
96?Cancel@CVdsAsyncObjectBase@@UEAAJXZ
97; public: void __cdecl CPrvEnumObject::Clear(void) __ptr64
98?Clear@CPrvEnumObject@@QEAAXXZ
99; public: virtual long __cdecl CPrvEnumObject::Clone(struct IEnumVdsObject * __ptr64 * __ptr64) __ptr64
100?Clone@CPrvEnumObject@@UEAAJPEAPEAUIEnumVdsObject@@@Z
101; void __cdecl CoFreeStringArray(unsigned short * __ptr64 * __ptr64,long)
102?CoFreeStringArray@@YAXPEAPEAGJ@Z
103; unsigned long __cdecl CreateDeviceInfoSet(unsigned short * __ptr64,void * __ptr64 * __ptr64,struct _SP_DEVINFO_DATA * __ptr64)
104?CreateDeviceInfoSet@@YAKPEAGPEAPEAXPEAU_SP_DEVINFO_DATA@@@Z
105; private: unsigned long __cdecl CVdsPnPNotificationBase::CreateListenThread(void) __ptr64
106?CreateListenThread@CVdsPnPNotificationBase@@AEAAKXZ
107; public: void * __ptr64 __cdecl CVdsHandleImpl<-1>::Detach(void) __ptr64
108?Detach@?$CVdsHandleImpl@$0?0@@QEAAPEAXXZ
109; public: void __cdecl CVdsAsyncObjectBase::DisallowCancel(void) __ptr64
110?DisallowCancel@CVdsAsyncObjectBase@@QEAAXXZ
111; void __cdecl GarbageCollectDriveLetters(void)
112?GarbageCollectDriveLetters@@YAXXZ
113; unsigned long __cdecl GetDeviceAndMediaType(void * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64)
114?GetDeviceAndMediaType@@YAKPEAXPEAK1@Z
115; unsigned long __cdecl GetDeviceLocation(void * __ptr64,struct _VDS_DISK_PROP * __ptr64)
116?GetDeviceLocation@@YAKPEAXPEAU_VDS_DISK_PROP@@@Z
117; unsigned long __cdecl GetDeviceName(void * __ptr64,int,unsigned short * __ptr64 const)
118?GetDeviceName@@YAKPEAXHQEAG@Z
119; unsigned long __cdecl GetDeviceNumber(void * __ptr64,struct _STORAGE_DEVICE_NUMBER * __ptr64)
120?GetDeviceNumber@@YAKPEAXPEAU_STORAGE_DEVICE_NUMBER@@@Z
121; unsigned long __cdecl GetDeviceRegistryProperty(unsigned long,unsigned long,unsigned char * __ptr64 * __ptr64,unsigned long)
122?GetDeviceRegistryProperty@@YAKKKPEAPEAEK@Z
123; unsigned long __cdecl GetDeviceRegistryProperty(void * __ptr64,struct _SP_DEVINFO_DATA * __ptr64,unsigned long,unsigned char * __ptr64 * __ptr64,unsigned long)
124?GetDeviceRegistryProperty@@YAKPEAXPEAU_SP_DEVINFO_DATA@@KPEAPEAEK@Z
125; unsigned long __cdecl GetDiskLayout(void * __ptr64,struct _DRIVE_LAYOUT_INFORMATION_EX * __ptr64 * __ptr64)
126?GetDiskLayout@@YAKPEAXPEAPEAU_DRIVE_LAYOUT_INFORMATION_EX@@@Z
127; unsigned long __cdecl GetInterfaceDetailData(void * __ptr64,struct _SP_DEVICE_INTERFACE_DATA * __ptr64,struct _SP_DEVICE_INTERFACE_DETAIL_DATA_W * __ptr64 * __ptr64)
128?GetInterfaceDetailData@@YAKPEAXPEAU_SP_DEVICE_INTERFACE_DATA@@PEAPEAU_SP_DEVICE_INTERFACE_DETAIL_DATA_W@@@Z
129; unsigned long __cdecl GetIsRemovable(void * __ptr64,int * __ptr64)
130?GetIsRemovable@@YAKPEAXPEAH@Z
131; unsigned long __cdecl GetMediaGeometry(void * __ptr64,unsigned long,struct _DISK_GEOMETRY * __ptr64)
132?GetMediaGeometry@@YAKPEAXKPEAU_DISK_GEOMETRY@@@Z
133; unsigned long __cdecl GetMediaGeometry(void * __ptr64,struct _VDS_DISK_PROP * __ptr64)
134?GetMediaGeometry@@YAKPEAXPEAU_VDS_DISK_PROP@@@Z
135; public: enum __MIDL___MIDL_itf_vdscmlyr_0000_0002 __cdecl CVdsAsyncObjectBase::GetOutputType(void) __ptr64
136?GetOutputType@CVdsAsyncObjectBase@@QEAA?AW4__MIDL___MIDL_itf_vdscmlyr_0000_0002@@XZ
137; unsigned long __cdecl GetPartitionInformation(void * __ptr64,struct _PARTITION_INFORMATION_EX * __ptr64)
138?GetPartitionInformation@@YAKPEAXPEAU_PARTITION_INFORMATION_EX@@@Z
139; unsigned long __cdecl GetVolumeDiskExtentInfo(void * __ptr64,struct _VOLUME_DISK_EXTENTS * __ptr64 * __ptr64)
140?GetVolumeDiskExtentInfo@@YAKPEAXPEAPEAU_VOLUME_DISK_EXTENTS@@@Z
141; long __cdecl GetVolumeName(unsigned short * __ptr64,unsigned short * __ptr64)
142?GetVolumeName@@YAJPEAG0@Z
143; unsigned long __cdecl GetVolumeSize(unsigned short * __ptr64,unsigned __int64 * __ptr64)
144?GetVolumeSize@@YAKPEAGPEA_K@Z
145; public: struct HWND__ * __ptr64 __cdecl CVdsPnPNotificationBase::GetWindowHandle(void) __ptr64
146?GetWindowHandle@CVdsPnPNotificationBase@@QEAAPEAUHWND__@@XZ
147; protected: int __cdecl CVdsPnPNotificationBase::HasMatchingNotification(unsigned __int64,unsigned long) __ptr64
148?HasMatchingNotification@CVdsPnPNotificationBase@@IEAAH_KK@Z
149; public: static unsigned long __cdecl CVdsAsyncObjectBase::Initialize(void)
150?Initialize@CVdsAsyncObjectBase@@SAKXZ
151; public: unsigned long __cdecl CVdsPnPNotificationBase::Initialize(void) __ptr64
152?Initialize@CVdsPnPNotificationBase@@QEAAKXZ
153; unsigned long __cdecl InitializeSecurityDescriptor(unsigned long,void * __ptr64,struct _ACL * __ptr64 * __ptr64,void * __ptr64 * __ptr64,void * __ptr64 * __ptr64,void * __ptr64 * __ptr64)
154?InitializeSecurityDescriptor@@YAKKPEAXPEAPEAU_ACL@@PEAPEAX22@Z
155; public: int __cdecl CVdsAsyncObjectBase::IsCancelRequested(void) __ptr64
156?IsCancelRequested@CVdsAsyncObjectBase@@QEAAHXZ
157; int __cdecl IsDeviceFullyInstalled(unsigned short * __ptr64)
158?IsDeviceFullyInstalled@@YAHPEAG@Z
159; int __cdecl IsDiskClustered(void * __ptr64)
160?IsDiskClustered@@YAHPEAX@Z
161; public: int __cdecl CVdsAsyncObjectBase::IsFinished(void) __ptr64
162?IsFinished@CVdsAsyncObjectBase@@QEAAHXZ
163; long __cdecl IsLocalComputer(unsigned short * __ptr64)
164?IsLocalComputer@@YAJPEAG@Z
165; int __cdecl IsMediaPresent(void * __ptr64)
166?IsMediaPresent@@YAHPEAX@Z
167; int __cdecl IsNoAutoMount(void)
168?IsNoAutoMount@@YAHXZ
169; int __cdecl IsWinPE(void)
170?IsWinPE@@YAHXZ
171; unsigned long __cdecl LockDismountVolume(void * __ptr64,int)
172?LockDismountVolume@@YAKPEAXH@Z
173; unsigned long __cdecl LockVolume(void * __ptr64)
174?LockVolume@@YAKPEAX@Z
175; public: void __cdecl CVdsDebugLog::Log(unsigned long,unsigned long,int,char * __ptr64,char * __ptr64) __ptr64
176?Log@CVdsDebugLog@@QEAAXKKHPEAD0@Z
177; public: void __cdecl CVdsDebugLog::Log(unsigned long,unsigned long,int,char * __ptr64,...) __ptr64
178?Log@CVdsDebugLog@@QEAAXKKHPEADZZ
179; void __cdecl LogError(unsigned short * __ptr64,unsigned long,unsigned long,void * __ptr64,unsigned long,unsigned long,unsigned short * __ptr64,char * __ptr64)
180?LogError@@YAXPEAGKKPEAXKK0PEAD@Z
181; void __cdecl LogEvent(unsigned short * __ptr64,unsigned long,unsigned short,unsigned long,void * __ptr64,unsigned long,unsigned short * __ptr64 * __ptr64 const)
182?LogEvent@@YAXPEAGKGKPEAXKQEAPEAG@Z
183; void __cdecl LogInfo(unsigned short * __ptr64,unsigned long,unsigned long,void * __ptr64,unsigned long,unsigned short * __ptr64,char * __ptr64)
184?LogInfo@@YAXPEAGKKPEAXK0PEAD@Z
185; void __cdecl LogWarning(unsigned short * __ptr64,unsigned long,unsigned long,void * __ptr64,unsigned long,unsigned long,unsigned short * __ptr64,char * __ptr64)
186?LogWarning@@YAXPEAGKKPEAXKK0PEAD@Z
187; unsigned long __cdecl MountVolume(unsigned short * __ptr64)
188?MountVolume@@YAKPEAG@Z
189; public: virtual long __cdecl CPrvEnumObject::Next(unsigned long,struct IUnknown * __ptr64 * __ptr64,unsigned long * __ptr64) __ptr64
190?Next@CPrvEnumObject@@UEAAJKPEAPEAUIUnknown@@PEAK@Z
191; private: unsigned long __cdecl CVdsPnPNotificationBase::NotificationThread(void * __ptr64) __ptr64
192?NotificationThread@CVdsPnPNotificationBase@@AEAAKPEAX@Z
193; private: static unsigned long __cdecl CVdsPnPNotificationBase::NotificationThreadEntry(void * __ptr64)
194?NotificationThreadEntry@CVdsPnPNotificationBase@@CAKPEAX@Z
195; unsigned long __cdecl OpenDevice(unsigned short * __ptr64,unsigned long,void * __ptr64 * __ptr64)
196?OpenDevice@@YAKPEAGKPEAPEAX@Z
197; long __cdecl QueryObjects(struct IUnknown * __ptr64,struct IEnumVdsObject * __ptr64 * __ptr64,struct _RTL_CRITICAL_SECTION & __ptr64)
198?QueryObjects@@YAJPEAUIUnknown@@PEAPEAUIEnumVdsObject@@AEAU_RTL_CRITICAL_SECTION@@@Z
199; public: virtual long __cdecl CVdsAsyncObjectBase::QueryStatus(long * __ptr64,unsigned long * __ptr64) __ptr64
200?QueryStatus@CVdsAsyncObjectBase@@UEAAJPEAJPEAK@Z
201; public: unsigned long __cdecl CVdsPnPNotificationBase::Register(struct _NotificationListeningRequest * __ptr64,unsigned long) __ptr64
202?Register@CVdsPnPNotificationBase@@QEAAKPEAU_NotificationListeningRequest@@K@Z
203; public: unsigned long __cdecl CVdsPnPNotificationBase::RegisterHandle(void * __ptr64,void * __ptr64 * __ptr64) __ptr64
204?RegisterHandle@CVdsPnPNotificationBase@@QEAAKPEAXPEAPEAX@Z
205; long __cdecl RegisterProvider(struct _GUID,struct _GUID,unsigned short * __ptr64,enum _VDS_PROVIDER_TYPE,unsigned short * __ptr64,unsigned short * __ptr64,struct _GUID)
206?RegisterProvider@@YAJU_GUID@@0PEAGW4_VDS_PROVIDER_TYPE@@110@Z
207; unsigned long __cdecl RemoveEventSource(unsigned short * __ptr64)
208?RemoveEventSource@@YAKPEAG@Z
209; void __cdecl RemoveTempVolumeName(unsigned short * __ptr64,unsigned short * __ptr64)
210?RemoveTempVolumeName@@YAXPEAG0@Z
211; public: virtual long __cdecl CPrvEnumObject::Reset(void) __ptr64
212?Reset@CPrvEnumObject@@UEAAJXZ
213; public: void __cdecl CVdsAsyncObjectBase::SetCompletionStatus(long,unsigned long) __ptr64
214?SetCompletionStatus@CVdsAsyncObjectBase@@QEAAXJK@Z
215; unsigned long __cdecl SetDiskLayout(void * __ptr64,struct _DRIVE_LAYOUT_INFORMATION_EX * __ptr64)
216?SetDiskLayout@@YAKPEAXPEAU_DRIVE_LAYOUT_INFORMATION_EX@@@Z
217; public: void __cdecl CVdsAsyncObjectBase::SetOutputType(enum __MIDL___MIDL_itf_vdscmlyr_0000_0002) __ptr64
218?SetOutputType@CVdsAsyncObjectBase@@QEAAXW4__MIDL___MIDL_itf_vdscmlyr_0000_0002@@@Z
219; public: void __cdecl CPrvEnumObject::SetPositionToLast(void) __ptr64
220?SetPositionToLast@CPrvEnumObject@@QEAAXXZ
221; public: void __cdecl CVdsAsyncObjectBase::Signal(void) __ptr64
222?Signal@CVdsAsyncObjectBase@@QEAAXXZ
223; public: virtual long __cdecl CPrvEnumObject::Skip(unsigned long) __ptr64
224?Skip@CPrvEnumObject@@UEAAJK@Z
225; public: int __cdecl CVdsDebugLog::TracingLogEnabled(void) __ptr64
226?TracingLogEnabled@CVdsDebugLog@@QEAAHXZ
227; public: static void __cdecl CVdsAsyncObjectBase::Uninitialize(void)
228?Uninitialize@CVdsAsyncObjectBase@@SAXXZ
229; public: void __cdecl CVdsPnPNotificationBase::Uninitialize(void) __ptr64
230?Uninitialize@CVdsPnPNotificationBase@@QEAAXXZ
231; public: void __cdecl CVdsPnPNotificationBase::Unregister(struct _NotificationListeningRequest * __ptr64) __ptr64
232?Unregister@CVdsPnPNotificationBase@@QEAAXPEAU_NotificationListeningRequest@@@Z
233; public: void __cdecl CVdsPnPNotificationBase::UnregisterHandle(void * __ptr64) __ptr64
234?UnregisterHandle@CVdsPnPNotificationBase@@QEAAXPEAX@Z
235; long __cdecl UnregisterProvider(struct _GUID)
236?UnregisterProvider@@YAJU_GUID@@@Z
237; unsigned short * __ptr64 __cdecl VdsAllocateEmptyString(void)
238?VdsAllocateEmptyString@@YAPEAGXZ
239; void * __ptr64 __cdecl VdsHeapAlloc(void * __ptr64,unsigned long,unsigned __int64)
240?VdsHeapAlloc@@YAPEAXPEAXK_K@Z
241; int __cdecl VdsHeapFree(void * __ptr64,unsigned long,void * __ptr64)
242?VdsHeapFree@@YAHPEAXK0@Z
243; unsigned long __cdecl VdsInitializeCriticalSection(struct _RTL_CRITICAL_SECTION * __ptr64)
244?VdsInitializeCriticalSection@@YAKPEAU_RTL_CRITICAL_SECTION@@@Z
245; public: static void __cdecl CVdsStructuredExceptionTranslator::VdsSeTranslator(unsigned int,struct _EXCEPTION_POINTERS * __ptr64)
246?VdsSeTranslator@CVdsStructuredExceptionTranslator@@SAXIPEAU_EXCEPTION_POINTERS@@@Z
247; void __cdecl VdsTrace(unsigned long,char * __ptr64,...)
248?VdsTrace@@YAXKPEADZZ
249; void __cdecl VdsTraceEx(unsigned long,unsigned long,char * __ptr64,...)
250?VdsTraceEx@@YAXKKPEADZZ
251; void __cdecl VdsTraceExHelper(unsigned long,unsigned long,char * __ptr64,char * __ptr64)
252?VdsTraceExHelper@@YAXKKPEAD0@Z
253; void __cdecl VdsTraceExW(unsigned long,unsigned long,unsigned short * __ptr64,...)
254?VdsTraceExW@@YAXKKPEAGZZ
255; void __cdecl VdsTraceExWHelper(unsigned long,unsigned long,unsigned short * __ptr64,char * __ptr64)
256?VdsTraceExWHelper@@YAXKKPEAGPEAD@Z
257; void __cdecl VdsTraceW(unsigned long,unsigned short * __ptr64,...)
258?VdsTraceW@@YAXKPEAGZZ
259; public: long __cdecl CVdsAsyncObjectBase::WaitImpl(long * __ptr64) __ptr64
260?WaitImpl@CVdsAsyncObjectBase@@QEAAJPEAJ@Z
261; private: static __int64 __cdecl CVdsPnPNotificationBase::WindowProcEntry(struct HWND__ * __ptr64,unsigned int,unsigned __int64,__int64)
262?WindowProcEntry@CVdsPnPNotificationBase@@CA_JPEAUHWND__@@I_K_J@Z
263; public: void __cdecl CVdsAsyncObjectBase::ZeroAsyncOut(void) __ptr64
264?ZeroAsyncOut@CVdsAsyncObjectBase@@QEAAXXZ
265DllMain
266RegisterVdsFabric
267UnregisterVdsFabric
lib/libc/mingw/lib64/verifier.def created+25
......@@ -0,0 +1,25 @@
1;
2; Exports of file VERIFIER.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY VERIFIER.dll
8EXPORTS
9VerifierAddFreeMemoryCallback
10VerifierCreateRpcPageHeap
11VerifierDeleteFreeMemoryCallback
12VerifierDestroyRpcPageHeap
13VerifierDisableFaultInjectionExclusionRange
14VerifierDisableFaultInjectionTargetRange
15VerifierEnableFaultInjectionExclusionRange
16VerifierEnableFaultInjectionTargetRange
17VerifierEnumerateResource
18VerifierIsCurrentThreadHoldingLocks
19VerifierIsDllEntryActive
20VerifierLogMessage
21VerifierQueryRuntimeFlags
22VerifierSetFaultInjectionProbability
23VerifierSetFlags
24VerifierSetRuntimeFlags
25VerifierStopMessage
lib/libc/mingw/lib64/vgx.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file VGX.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY VGX.DLL
8EXPORTS
9$DllMain$_gdiplus
10DllCanUnloadNow
11DllGetClassObject
12DllRegisterServer
13DllUnregisterServer
14MsoAssertSzProcVar
15MsoFFeature
16MsoFInitOffice
17MsoFSetFeature
lib/libc/mingw/lib64/vmx_mode.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file VMX_MODE.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY VMX_MODE.dll
8EXPORTS
9VMX_ModeChange
lib/libc/mingw/lib64/w3core.def created+17
......@@ -0,0 +1,17 @@
1;
2; Exports of file w3core.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY w3core.dll
8EXPORTS
9; int __cdecl FindInETagList(char const * __ptr64,char const * __ptr64,int)
10?FindInETagList@@YAHPEBD0H@Z
11; public: static class W3_FILE_INFO_CACHE * __ptr64 __cdecl W3_FILE_INFO_CACHE::GetFileCache(void)
12?GetFileCache@W3_FILE_INFO_CACHE@@SAPEAV1@XZ
13; public: long __cdecl W3_FILE_INFO_CACHE::GetFileInfo(class STRU & __ptr64,struct DIRMON_CONFIG * __ptr64,class CACHE_USER * __ptr64,int,class W3_FILE_INFO * __ptr64 * __ptr64,struct FILE_CACHE_ASYNC_CONTEXT * __ptr64,int * __ptr64,int,int,struct _ETW_TRACE_INFO * __ptr64) __ptr64
14?GetFileInfo@W3_FILE_INFO_CACHE@@QEAAJAEAVSTRU@@PEAUDIRMON_CONFIG@@PEAVCACHE_USER@@HPEAPEAVW3_FILE_INFO@@PEAUFILE_CACHE_ASYNC_CONTEXT@@PEAHHHPEAU_ETW_TRACE_INFO@@@Z
15; public: int __cdecl W3_FILE_INFO::SetAssociatedObject(class ASSOCIATED_FILE_OBJECT * __ptr64) __ptr64
16?SetAssociatedObject@W3_FILE_INFO@@QEAAHPEAVASSOCIATED_FILE_OBJECT@@@Z
17UlW3Start
lib/libc/mingw/lib64/w3ctrs.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file W3CTRS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY W3CTRS.dll
8EXPORTS
9OpenW3PerformanceData
10CollectW3PerformanceData
11CloseW3PerformanceData
lib/libc/mingw/lib64/w3dt.def created+28
......@@ -0,0 +1,28 @@
1;
2; Exports of file w3dt.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY w3dt.dll
8EXPORTS
9; public: class IPM_MESSAGE_PIPE & __ptr64 __cdecl IPM_MESSAGE_PIPE::operator=(class IPM_MESSAGE_PIPE const & __ptr64) __ptr64
10??4IPM_MESSAGE_PIPE@@QEAAAEAV0@AEBV0@@Z
11UlAtqAddFragmentToCache
12UlAtqAllocateMemory
13UlAtqFlushUlCache
14UlAtqFreeContext
15UlAtqGetContextProperty
16UlAtqInduceShutdown
17UlAtqInitialize
18UlAtqReadFragmentFromCache
19UlAtqReceiveClientCertificate
20UlAtqReceiveEntityBody
21UlAtqRemoveFragmentFromCache
22UlAtqSendEntityBody
23UlAtqSendHttpResponse
24UlAtqSetContextProperty
25UlAtqSetUnhealthy
26UlAtqStartListen
27UlAtqTerminate
28UlAtqWaitForDisconnect
lib/libc/mingw/lib64/w3isapi.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file w3isapi.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY w3isapi.dll
8EXPORTS
9InitModule
10ProcessIsapiCompletion
11ProcessIsapiRequest
12TerminateModule
lib/libc/mingw/lib64/w3ssl.def created+10
......@@ -0,0 +1,10 @@
1;
2; Exports of file w3ssl.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY w3ssl.dll
8EXPORTS
9HTTPFilterServiceMain
10ServiceEntry
lib/libc/mingw/lib64/w3tp.def created+31
......@@ -0,0 +1,31 @@
1;
2; Exports of file W3TP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY W3TP.dll
8EXPORTS
9; private: __cdecl THREAD_POOL::THREAD_POOL(void) __ptr64
10??0THREAD_POOL@@AEAA@XZ
11; private: __cdecl THREAD_POOL::~THREAD_POOL(void) __ptr64
12??1THREAD_POOL@@AEAA@XZ
13; public: int __cdecl THREAD_POOL::BindIoCompletionCallback(void * __ptr64,void (__cdecl*)(unsigned long,unsigned long,struct _OVERLAPPED * __ptr64),unsigned long) __ptr64
14?BindIoCompletionCallback@THREAD_POOL@@QEAAHPEAXP6AXKKPEAU_OVERLAPPED@@@ZK@Z
15; public: static int __cdecl THREAD_POOL::CreateThreadPool(class THREAD_POOL * __ptr64 * __ptr64,struct THREAD_POOL_CONFIG * __ptr64)
16?CreateThreadPool@THREAD_POOL@@SAHPEAPEAV1@PEAUTHREAD_POOL_CONFIG@@@Z
17; public: void __cdecl THREAD_POOL::GetStats(unsigned long * __ptr64,unsigned long * __ptr64,unsigned long * __ptr64) __ptr64
18?GetStats@THREAD_POOL@@QEAAXPEAK00@Z
19; public: int __cdecl THREAD_POOL::PostCompletion(unsigned long,void (__cdecl*)(unsigned long,unsigned long,struct _OVERLAPPED * __ptr64),struct _OVERLAPPED * __ptr64) __ptr64
20?PostCompletion@THREAD_POOL@@QEAAHKP6AXKKPEAU_OVERLAPPED@@@Z0@Z
21; public: unsigned __int64 __cdecl THREAD_POOL::SetInfo(enum THREAD_POOL_INFO,unsigned __int64) __ptr64
22?SetInfo@THREAD_POOL@@QEAA_KW4THREAD_POOL_INFO@@_K@Z
23; public: void __cdecl THREAD_POOL::TerminateThreadPool(void) __ptr64
24?TerminateThreadPool@THREAD_POOL@@QEAAXXZ
25ThreadPoolBindIoCompletionCallback
26ThreadPoolGetStats
27ThreadPoolInitialize
28ThreadPoolPostCompletion
29ThreadPoolSetInfo
30ThreadPoolTerminate
31DllMain
lib/libc/mingw/lib64/wab32.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file WAB32.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WAB32.dll
8EXPORTS
9WABOpen
10WABCreateIProp
11WABOpenEx
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/wabimp.def created+22
......@@ -0,0 +1,22 @@
1;
2; Exports of file WABIMP.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WABIMP.dll
8EXPORTS
9NetscapeImport
10NetscapeExport
11EudoraImport
12EudoraExport
13Athena16Import
14Athena16Export
15PABImport
16PABExport
17CSVImport
18CSVExport
19LDIFImport
20MessengerImport
21DllRegisterServer
22DllUnregisterServer
lib/libc/mingw/lib64/wamreg.def created+19
......@@ -0,0 +1,19 @@
1;
2; Exports of file wamreg.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wamreg.DLL
8EXPORTS
9CreateIISPackage
10DeleteIISPackage
11WamReg_RegisterSinkNotify
12WamReg_UnRegisterSinkNotify
13InstallWam
14UnInstallWam
15CreateCOMPlusApplication
16DllCanUnloadNow
17DllGetClassObject
18DllRegisterServer
19DllUnregisterServer
lib/libc/mingw/lib64/wbemcore.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file WBEMCORE.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WBEMCORE.DLL
8EXPORTS
9DllCanUnloadNow
10DllGetClassObject
11DllRegisterServer
12DllUnregisterServer
13Reinitialize
14Shutdown
lib/libc/mingw/lib64/wbemupgd.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file WbemUpgd.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WbemUpgd.dll
8EXPORTS
9CheckWMISetup
10LoadMofFiles
11MUI_InstallMFLFiles
12OcEntry
13RepairWMISetup
14DllInstall
15DllRegisterServer
lib/libc/mingw/lib64/wdmaud.def created+15
......@@ -0,0 +1,15 @@
1;
2; Exports of file WDMAUD.DRV
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WDMAUD.DRV
8EXPORTS
9DriverProc
10auxMessage
11midMessage
12modMessage
13mxdMessage
14widMessage
15wodMessage
lib/libc/mingw/lib64/wdsclient.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of WdsClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WdsClient.dll"
7EXPORTS
8CallBack_WdsClient_ConnectToImageStore
9CallBack_WdsClient_DetectWdsMode
10CallBack_WdsClient_GetImageList
11CallBack_WdsClient_ImageSelectionDone
12CallBack_WdsClient_ProcessCmdLine
13GetServerParamsFromBootPacket
14Module_Init_WdsClient
15g_Kernel32 DATA
16g_Mpr DATA
17g_Wdscore DATA
18g_Wdslib DATA
19g_hSession DATA
lib/libc/mingw/lib64/wdscore.def created+234
......@@ -0,0 +1,234 @@
1;
2; Definition file of WDSCORE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WDSCORE.dll"
7EXPORTS
8; public: __cdecl <unsigned char,unsigned char *__ptr64>::<unsigned char,unsigned char *__ptr64>(unsigned __int64)__ptr64
9??0?$CDynamicArray@EPEAE@@QEAA@_K@Z
10; public: __cdecl <unsigned char,struct SKey *__ptr64>::<unsigned char,struct SKey *__ptr64>(unsigned __int64)__ptr64
11??0?$CDynamicArray@EPEAUSKey@@@@QEAA@_K@Z
12; public: __cdecl <unsigned char,struct SValue *__ptr64>::<unsigned char,struct SValue *__ptr64>(unsigned __int64)__ptr64
13??0?$CDynamicArray@EPEAUSValue@@@@QEAA@_K@Z
14; public: __cdecl <unsigned short,unsigned short *__ptr64>::<unsigned short,unsigned short *__ptr64>(unsigned __int64)__ptr64
15??0?$CDynamicArray@GPEAG@@QEAA@_K@Z
16; public: __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::<struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>(unsigned __int64)__ptr64
17??0?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAA@_K@Z
18; public: __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::<struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>(unsigned __int64)__ptr64
19??0?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAA@_K@Z
20; public: __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::<unsigned __int64,unsigned __int64 *__ptr64>(unsigned __int64)__ptr64
21??0?$CDynamicArray@_KPEA_K@@QEAA@_K@Z
22; public: __cdecl <unsigned char,unsigned char *__ptr64>::~<unsigned char,unsigned char *__ptr64>(void)__ptr64
23??1?$CDynamicArray@EPEAE@@QEAA@XZ
24; public: __cdecl <unsigned char,struct SKey *__ptr64>::~<unsigned char,struct SKey *__ptr64>(void)__ptr64
25??1?$CDynamicArray@EPEAUSKey@@@@QEAA@XZ
26; public: __cdecl <unsigned char,struct SValue *__ptr64>::~<unsigned char,struct SValue *__ptr64>(void)__ptr64
27??1?$CDynamicArray@EPEAUSValue@@@@QEAA@XZ
28; public: __cdecl <unsigned short,unsigned short *__ptr64>::~<unsigned short,unsigned short *__ptr64>(void)__ptr64
29??1?$CDynamicArray@GPEAG@@QEAA@XZ
30; public: __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::~<struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>(void)__ptr64
31??1?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAA@XZ
32; public: __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::~<struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>(void)__ptr64
33??1?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAA@XZ
34; public: __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::~<unsigned __int64,unsigned __int64 *__ptr64>(void)__ptr64
35??1?$CDynamicArray@_KPEA_K@@QEAA@XZ
36; public: class <unsigned char,unsigned char *__ptr64> &__ptr64 __cdecl <unsigned char,unsigned char *__ptr64>::operator =(class <unsigned char,unsigned char *__ptr64> const &__ptr64 )__ptr64
37??4?$CDynamicArray@EPEAE@@QEAAAEAV0@AEBV0@@Z
38; public: class <unsigned char,struct SKey *__ptr64> &__ptr64 __cdecl <unsigned char,struct SKey *__ptr64>::operator =(class <unsigned char,struct SKey *__ptr64> const &__ptr64 )__ptr64
39??4?$CDynamicArray@EPEAUSKey@@@@QEAAAEAV0@AEBV0@@Z
40; public: class <unsigned char,struct SValue *__ptr64> &__ptr64 __cdecl <unsigned char,struct SValue *__ptr64>::operator =(class <unsigned char,struct SValue *__ptr64> const &__ptr64 )__ptr64
41??4?$CDynamicArray@EPEAUSValue@@@@QEAAAEAV0@AEBV0@@Z
42; public: class <unsigned short,unsigned short *__ptr64> &__ptr64 __cdecl <unsigned short,unsigned short *__ptr64>::operator =(class <unsigned short,unsigned short *__ptr64> const &__ptr64 )__ptr64
43??4?$CDynamicArray@GPEAG@@QEAAAEAV0@AEBV0@@Z
44; public: class <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64> &__ptr64 __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::operator =(class <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64> const &__ptr64 )__ptr64
45??4?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAAAEAV0@AEBV0@@Z
46; public: class <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64> &__ptr64 __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::operator =(class <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64> const &__ptr64 )__ptr64
47??4?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAAAEAV0@AEBV0@@Z
48; public: class <unsigned __int64,unsigned __int64 *__ptr64> &__ptr64 __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::operator =(class <unsigned __int64,unsigned __int64 *__ptr64> const &__ptr64 )__ptr64
49??4?$CDynamicArray@_KPEA_K@@QEAAAEAV0@AEBV0@@Z
50; public: struct SEnumBinContext *__ptr64 &__ptr64 __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::operator[](unsigned __int64)__ptr64
51??A?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAAAEAPEAUSEnumBinContext@@_K@Z
52; public: unsigned __int64 &__ptr64 __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::operator[](unsigned __int64)__ptr64
53??A?$CDynamicArray@_KPEA_K@@QEAAAEA_K_K@Z
54; public: void __cdecl <unsigned char,struct SKey *__ptr64>::operator struct SKey *__ptr64(...)const __ptr64 throw()
55??B?$CDynamicArray@EPEAUSKey@@@@QEBAPEAUSKey@@XZ
56; public: void __cdecl <unsigned char,struct SValue *__ptr64>::operator struct SValue *__ptr64(...)const __ptr64 throw()
57??B?$CDynamicArray@EPEAUSValue@@@@QEBAPEAUSValue@@XZ
58; public: void __cdecl <unsigned short,unsigned short *__ptr64>::operator unsigned short *__ptr64(...)const __ptr64 throw()
59??B?$CDynamicArray@GPEAG@@QEBAPEAGXZ
60; public: struct SKey *__ptr64 __cdecl <unsigned char,struct SKey *__ptr64>::operator ->(void)const __ptr64
61??C?$CDynamicArray@EPEAUSKey@@@@QEBAPEAUSKey@@XZ
62; public: struct SValue *__ptr64 __cdecl <unsigned char,struct SValue *__ptr64>::operator ->(void)const __ptr64
63??C?$CDynamicArray@EPEAUSValue@@@@QEBAPEAUSValue@@XZ
64; public: void __cdecl <unsigned char,unsigned char *__ptr64>::__dflt_ctor_closure(void)__ptr64
65??_F?$CDynamicArray@EPEAE@@QEAAXXZ
66; public: void __cdecl <unsigned char,struct SKey *__ptr64>::__dflt_ctor_closure(void)__ptr64
67??_F?$CDynamicArray@EPEAUSKey@@@@QEAAXXZ
68; public: void __cdecl <unsigned char,struct SValue *__ptr64>::__dflt_ctor_closure(void)__ptr64
69??_F?$CDynamicArray@EPEAUSValue@@@@QEAAXXZ
70; public: void __cdecl <unsigned short,unsigned short *__ptr64>::__dflt_ctor_closure(void)__ptr64
71??_F?$CDynamicArray@GPEAG@@QEAAXXZ
72; public: void __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::__dflt_ctor_closure(void)__ptr64
73??_F?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAAXXZ
74; public: void __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::__dflt_ctor_closure(void)__ptr64
75??_F?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAAXXZ
76; public: void __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::__dflt_ctor_closure(void)__ptr64
77??_F?$CDynamicArray@_KPEA_K@@QEAAXXZ
78; public: int __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::Add(struct SEnumBinContext *__ptr64 &__ptr64 )__ptr64
79?Add@?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAAHAEAPEAUSEnumBinContext@@@Z
80; public: int __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::Add(struct CBlackboardFactory::SKeeperEntry &__ptr64 )__ptr64
81?Add@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAAHAEAUSKeeperEntry@CBlackboardFactory@@@Z
82; public: int __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::Add(struct CBlackboardFactory::SKeeperEntry &__ptr64 ,unsigned __int64 &__ptr64 )__ptr64
83?Add@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAAHAEAUSKeeperEntry@CBlackboardFactory@@AEA_K@Z
84; public: int __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::Add(unsigned __int64 &__ptr64 )__ptr64
85?Add@?$CDynamicArray@_KPEA_K@@QEAAHAEA_K@Z
86; public: unsigned short &__ptr64 __cdecl <unsigned short,unsigned short *__ptr64>::ElementAt(unsigned __int64)__ptr64
87?ElementAt@?$CDynamicArray@GPEAG@@QEAAAEAG_K@Z
88; public: struct CBlackboardFactory::SKeeperEntry &__ptr64 __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::ElementAt(unsigned __int64)__ptr64
89?ElementAt@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAAAEAUSKeeperEntry@CBlackboardFactory@@_K@Z
90; public: unsigned char *__ptr64 __cdecl <unsigned char,unsigned char *__ptr64>::GetBuffer(unsigned __int64)__ptr64
91?GetBuffer@?$CDynamicArray@EPEAE@@QEAAPEAE_K@Z
92; public: struct SValue *__ptr64 __cdecl <unsigned char,struct SValue *__ptr64>::GetBuffer(unsigned __int64)__ptr64
93?GetBuffer@?$CDynamicArray@EPEAUSValue@@@@QEAAPEAUSValue@@_K@Z
94; public: unsigned short *__ptr64 __cdecl <unsigned short,unsigned short *__ptr64>::GetBuffer(unsigned __int64)__ptr64
95?GetBuffer@?$CDynamicArray@GPEAG@@QEAAPEAG_K@Z
96; public: unsigned __int64 __cdecl <unsigned char,unsigned char *__ptr64>::GetSize(void)const __ptr64
97?GetSize@?$CDynamicArray@EPEAE@@QEBA_KXZ
98; public: unsigned __int64 __cdecl <unsigned short,unsigned short *__ptr64>::GetSize(void)const __ptr64
99?GetSize@?$CDynamicArray@GPEAG@@QEBA_KXZ
100; public: unsigned __int64 __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::GetSize(void)const __ptr64
101?GetSize@?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEBA_KXZ
102; public: unsigned __int64 __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::GetSize(void)const __ptr64
103?GetSize@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEBA_KXZ
104; public: unsigned __int64 __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::GetSize(void)const __ptr64
105?GetSize@?$CDynamicArray@_KPEA_K@@QEBA_KXZ
106; protected: void __cdecl <unsigned char,unsigned char *__ptr64>::Init(unsigned __int64)__ptr64
107?Init@?$CDynamicArray@EPEAE@@IEAAX_K@Z
108; protected: void __cdecl <unsigned char,struct SKey *__ptr64>::Init(unsigned __int64)__ptr64
109?Init@?$CDynamicArray@EPEAUSKey@@@@IEAAX_K@Z
110; protected: void __cdecl <unsigned char,struct SValue *__ptr64>::Init(unsigned __int64)__ptr64
111?Init@?$CDynamicArray@EPEAUSValue@@@@IEAAX_K@Z
112; protected: void __cdecl <unsigned short,unsigned short *__ptr64>::Init(unsigned __int64)__ptr64
113?Init@?$CDynamicArray@GPEAG@@IEAAX_K@Z
114; protected: void __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::Init(unsigned __int64)__ptr64
115?Init@?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@IEAAX_K@Z
116; protected: void __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::Init(unsigned __int64)__ptr64
117?Init@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@IEAAX_K@Z
118; protected: void __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::Init(unsigned __int64)__ptr64
119?Init@?$CDynamicArray@_KPEA_K@@IEAAX_K@Z
120; public: void __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::RemoveAll(void)__ptr64
121?RemoveAll@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAAXXZ
122; public: void __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::RemoveAll(void)__ptr64
123?RemoveAll@?$CDynamicArray@_KPEA_K@@QEAAXXZ
124; public: void __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::RemoveItemFromTail(void)__ptr64
125?RemoveItemFromTail@?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAAXXZ
126; public: int __cdecl <unsigned char,unsigned char *__ptr64>::SetSize(unsigned __int64)__ptr64
127?SetSize@?$CDynamicArray@EPEAE@@QEAAH_K@Z
128; public: int __cdecl <unsigned char,struct SKey *__ptr64>::SetSize(unsigned __int64)__ptr64
129?SetSize@?$CDynamicArray@EPEAUSKey@@@@QEAAH_K@Z
130; public: int __cdecl <unsigned char,struct SValue *__ptr64>::SetSize(unsigned __int64)__ptr64
131?SetSize@?$CDynamicArray@EPEAUSValue@@@@QEAAH_K@Z
132; public: int __cdecl <unsigned short,unsigned short *__ptr64>::SetSize(unsigned __int64)__ptr64
133?SetSize@?$CDynamicArray@GPEAG@@QEAAH_K@Z
134; public: int __cdecl <struct SEnumBinContext *__ptr64,struct SEnumBinContext *__ptr64 *__ptr64>::SetSize(unsigned __int64)__ptr64
135?SetSize@?$CDynamicArray@PEAUSEnumBinContext@@PEAPEAU1@@@QEAAH_K@Z
136; public: int __cdecl <struct CBlackboardFactory::SKeeperEntry,struct CBlackboardFactory::SKeeperEntry *__ptr64>::SetSize(unsigned __int64)__ptr64
137?SetSize@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PEAU12@@@QEAAH_K@Z
138; public: int __cdecl <unsigned __int64,unsigned __int64 *__ptr64>::SetSize(unsigned __int64)__ptr64
139?SetSize@?$CDynamicArray@_KPEA_K@@QEAAH_K@Z
140WdsGetPointer
141g_Kernel32 DATA
142g_bEnableDiagnosticMode DATA
143ConstructPartialMsgIfA
144ConstructPartialMsgIfW
145ConstructPartialMsgVA
146ConstructPartialMsgVW
147CurrentIP
148EndMajorTask
149EndMinorTask
150GetMajorTask
151GetMajorTaskA
152GetMinorTask
153GetMinorTaskA
154StartMajorTask
155StartMinorTask
156WdsAbortBlackboardItemEnum
157WdsAddModule
158WdsAddUsmtLogStack
159WdsAllocCollection
160WdsCollectionAddValue
161WdsCollectionGetValue
162WdsCopyBlackboardItems
163WdsCopyBlackboardItemsEx
164WdsCreateBlackboard
165WdsDeleteBlackboardValue
166WdsDeleteEvent
167WdsDestroyBlackboard
168WdsDuplicateData
169WdsEnableDiagnosticMode
170WdsEnableExit
171WdsEnableExitEx
172WdsEnumFirstBlackboardItem
173WdsEnumFirstCollectionValue
174WdsEnumNextBlackboardItem
175WdsEnumNextCollectionValue
176WdsExecuteWorkQueue
177WdsExecuteWorkQueue2
178WdsExecuteWorkQueueEx
179WdsExitImmediately
180WdsExitImmediatelyEx
181WdsFreeCollection
182WdsFreeData
183WdsGenericSetupLogInit
184WdsGetAssertFlags
185WdsGetBlackboardBinaryData
186WdsGetBlackboardStringA
187WdsGetBlackboardStringW
188WdsGetBlackboardUintPtr
189WdsGetBlackboardValue
190WdsGetCurrentExecutionGroup
191WdsGetSetupLog
192WdsGetTempDir
193WdsInitialize
194WdsInitializeCallbackArray
195WdsInitializeDataBinary
196WdsInitializeDataStringA
197WdsInitializeDataStringW
198WdsInitializeDataUInt32
199WdsInitializeDataUInt64
200WdsIsDiagnosticModeEnabled
201WdsIterateOfflineQueue
202WdsIterateQueue
203WdsLockBlackboardValue
204WdsLockExecutionGroup
205WdsLogCreate
206WdsLogDestroy
207WdsLogRegStockProviders
208WdsLogRegisterProvider
209WdsLogStructuredException
210WdsLogUnRegStockProviders
211WdsLogUnRegisterProvider
212WdsPackCollection
213WdsPublish
214WdsPublishEx
215WdsPublishImmediateAsync
216WdsPublishImmediateEx
217WdsPublishOffline
218WdsSeqAlloc
219WdsSeqFree
220WdsSetAssertFlags
221WdsSetBlackboardValue
222WdsSetNextExecutionGroup
223WdsSetUILanguage
224WdsSetupLogDestroy
225WdsSetupLogInit
226WdsSetupLogMessageA
227WdsSetupLogMessageW
228WdsSubscribeEx
229WdsTerminate
230WdsUnlockExecutionGroup
231WdsUnpackCollection
232WdsUnsubscribe
233WdsUnsubscribeEx
234WdsValidBlackboard
lib/libc/mingw/lib64/wdscsl.def created+23
......@@ -0,0 +1,23 @@
1;
2; Definition file of WDSCSL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WDSCSL.dll"
7EXPORTS
8WdsClientExecute
9WdsClientInitializeLibrary
10WdsClientPacketAllocate
11WdsClientPacketFree
12WdsClientRegisterTrace
13WdsClientSessionCreate
14WdsClientSessionExecute
15WdsClientSessionShutdown
16WdsCpPacketGetBuffer
17WdsCpPacketInitialize
18WdsCpPacketRelease
19WdsCpParameterAdd
20WdsCpParameterDelete
21WdsCpParameterQuery
22WdsCpParameterValidate
23WdsCpRecvPacketInitialize
lib/libc/mingw/lib64/wdsimage.def created+81
......@@ -0,0 +1,81 @@
1;
2; Definition file of WdsImage.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WdsImage.dll"
7EXPORTS
8FindFirstImage
9FindNextImage
10WDSFreeImageInformation
11WDSGetImageInformation
12WDSInitializeEmptyImageInformation
13WDSParseImageInformation
14WDSSetImageInformation
15WdsImgAddReference
16WdsImgApplyImage
17WdsImgCaptureImage
18WdsImgClose
19WdsImgCopyImage
20WdsImgCreateImageGroup
21WdsImgDeleteImage
22WdsImgDeleteImageGroup
23WdsImgDeleteUnattendFile
24WdsImgExportImage
25WdsImgExtractFiles
26WdsImgFindFirstImage
27WdsImgFindFirstImageGroup
28WdsImgFindNextImage
29WdsImgFindNextImageGroup
30WdsImgGetArchitecture
31WdsImgGetBootIndex
32WdsImgGetCompressionType
33WdsImgGetCreationTime
34WdsImgGetDependantFiles
35WdsImgGetDescription
36WdsImgGetEnabled
37WdsImgGetExFlags
38WdsImgGetFlags
39WdsImgGetHalName
40WdsImgGetHandleFromFindHandle
41WdsImgGetImageType
42WdsImgGetIndex
43WdsImgGetLanguage
44WdsImgGetLanguages
45WdsImgGetLastModifiedTime
46WdsImgGetName
47WdsImgGetPartitionStyle
48WdsImgGetPath
49WdsImgGetProductFamily
50WdsImgGetProductName
51WdsImgGetResourcePath
52WdsImgGetSecurity
53WdsImgGetServicePackLevel
54WdsImgGetSize
55WdsImgGetSystemRoot
56WdsImgGetUnattendFilePresent
57WdsImgGetVersion
58WdsImgGetXml
59WdsImgGroupCanImportImage
60WdsImgGroupGetName
61WdsImgGroupGetSecurity
62WdsImgGroupSetName
63WdsImgGroupSetSecurity
64WdsImgImportImage
65WdsImgIsAccessible
66WdsImgIsBootImage
67WdsImgIsFoundationImage
68WdsImgIsValidImageFile
69WdsImgOpenBootImageGroup
70WdsImgOpenImage
71WdsImgOpenImageGroup
72WdsImgOpenImageStore
73WdsImgRefreshData
74WdsImgReplaceImage
75WdsImgSetBootImage
76WdsImgSetDescription
77WdsImgSetEnabled
78WdsImgSetName
79WdsImgSetSecurity
80WdsImgSetUnattendFile
81WdsImgVerifyImageFile
lib/libc/mingw/lib64/wdsupgcompl.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WdsUpgCompl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WdsUpgCompl.dll"
7EXPORTS
8WdsUpgradeComplianceCheck
lib/libc/mingw/lib64/wdsutil.def created+525
......@@ -0,0 +1,525 @@
1;
2; Definition file of WDSUTIL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WDSUTIL.dll"
7EXPORTS
8; public: __cdecl <class CStringUserSetting>::<class CStringUserSetting>(class <class CStringUserSetting> const &__ptr64 )__ptr64
9??0?$CShimUserSetting@VCStringUserSetting@@@@QEAA@AEBV0@@Z
10; public: __cdecl <class CStringUserSetting>::<class CStringUserSetting>(void)__ptr64
11??0?$CShimUserSetting@VCStringUserSetting@@@@QEAA@XZ
12; public: __cdecl <class CUInt32UserSetting>::<class CUInt32UserSetting>(class <class CUInt32UserSetting> const &__ptr64 )__ptr64
13??0?$CShimUserSetting@VCUInt32UserSetting@@@@QEAA@AEBV0@@Z
14; public: __cdecl <class CUInt32UserSetting>::<class CUInt32UserSetting>(void)__ptr64
15??0?$CShimUserSetting@VCUInt32UserSetting@@@@QEAA@XZ
16; public: __cdecl <class CUInt64UserSetting>::<class CUInt64UserSetting>(class <class CUInt64UserSetting> const &__ptr64 )__ptr64
17??0?$CShimUserSetting@VCUInt64UserSetting@@@@QEAA@AEBV0@@Z
18; public: __cdecl <class CUInt64UserSetting>::<class CUInt64UserSetting>(void)__ptr64
19??0?$CShimUserSetting@VCUInt64UserSetting@@@@QEAA@XZ
20; public: __cdecl CComputerNameSetting::CComputerNameSetting(class CComputerNameSetting const &__ptr64 )__ptr64
21??0CComputerNameSetting@@QEAA@AEBV0@@Z
22; public: __cdecl CComputerNameSetting::CComputerNameSetting(void)__ptr64
23??0CComputerNameSetting@@QEAA@XZ
24; public: __cdecl CDUUIProgressSetting::CDUUIProgressSetting(class CDUUIProgressSetting const &__ptr64 )__ptr64
25??0CDUUIProgressSetting@@QEAA@AEBV0@@Z
26; public: __cdecl CDUUIProgressSetting::CDUUIProgressSetting(void)__ptr64
27??0CDUUIProgressSetting@@QEAA@XZ
28; public: __cdecl CDUUIWelcomeSetting::CDUUIWelcomeSetting(class CDUUIWelcomeSetting const &__ptr64 )__ptr64
29??0CDUUIWelcomeSetting@@QEAA@AEBV0@@Z
30; public: __cdecl CDUUIWelcomeSetting::CDUUIWelcomeSetting(void)__ptr64
31??0CDUUIWelcomeSetting@@QEAA@XZ
32; public: __cdecl CDiskPartFileSystemUserSetting::CDiskPartFileSystemUserSetting(class CDiskPartFileSystemUserSetting const &__ptr64 )__ptr64
33??0CDiskPartFileSystemUserSetting@@QEAA@AEBV0@@Z
34; public: __cdecl CDiskPartFileSystemUserSetting::CDiskPartFileSystemUserSetting(void)__ptr64
35??0CDiskPartFileSystemUserSetting@@QEAA@XZ
36; public: __cdecl CDiskPartFormatUserSetting::CDiskPartFormatUserSetting(class CDiskPartFormatUserSetting const &__ptr64 )__ptr64
37??0CDiskPartFormatUserSetting@@QEAA@AEBV0@@Z
38; public: __cdecl CDiskPartFormatUserSetting::CDiskPartFormatUserSetting(void)__ptr64
39??0CDiskPartFormatUserSetting@@QEAA@XZ
40; public: __cdecl CDiskPartUserSetting::CDiskPartUserSetting(class CDiskPartUserSetting const &__ptr64 )__ptr64
41??0CDiskPartUserSetting@@QEAA@AEBV0@@Z
42; public: __cdecl CDiskPartUserSetting::CDiskPartUserSetting(void)__ptr64
43??0CDiskPartUserSetting@@QEAA@XZ
44; public: __cdecl CEulaSetting::CEulaSetting(class CEulaSetting const &__ptr64 )__ptr64
45??0CEulaSetting@@QEAA@AEBV0@@Z
46; public: __cdecl CEulaSetting::CEulaSetting(void)__ptr64
47??0CEulaSetting@@QEAA@XZ
48; public: __cdecl CIBSUIImageSelectionSetting::CIBSUIImageSelectionSetting(class CIBSUIImageSelectionSetting const &__ptr64 )__ptr64
49??0CIBSUIImageSelectionSetting@@QEAA@AEBV0@@Z
50; public: __cdecl CIBSUIImageSelectionSetting::CIBSUIImageSelectionSetting(void)__ptr64
51??0CIBSUIImageSelectionSetting@@QEAA@XZ
52; public: __cdecl CKeyboardSetting::CKeyboardSetting(class CKeyboardSetting const &__ptr64 )__ptr64
53??0CKeyboardSetting@@QEAA@AEBV0@@Z
54; public: __cdecl CKeyboardSetting::CKeyboardSetting(void)__ptr64
55??0CKeyboardSetting@@QEAA@XZ
56; public: __cdecl COOBEUIFinishSetting::COOBEUIFinishSetting(class COOBEUIFinishSetting const &__ptr64 )__ptr64
57??0COOBEUIFinishSetting@@QEAA@AEBV0@@Z
58; public: __cdecl COOBEUIFinishSetting::COOBEUIFinishSetting(void)__ptr64
59??0COOBEUIFinishSetting@@QEAA@XZ
60; public: __cdecl COOBEUIWelcomeSetting::COOBEUIWelcomeSetting(class COOBEUIWelcomeSetting const &__ptr64 )__ptr64
61??0COOBEUIWelcomeSetting@@QEAA@AEBV0@@Z
62; public: __cdecl COOBEUIWelcomeSetting::COOBEUIWelcomeSetting(void)__ptr64
63??0COOBEUIWelcomeSetting@@QEAA@XZ
64; public: __cdecl CProductKeyUserSetting::CProductKeyUserSetting(class CProductKeyUserSetting const &__ptr64 )__ptr64
65??0CProductKeyUserSetting@@QEAA@AEBV0@@Z
66; public: __cdecl CProductKeyUserSetting::CProductKeyUserSetting(void)__ptr64
67??0CProductKeyUserSetting@@QEAA@XZ
68; public: __cdecl CSetupUISummarySetting::CSetupUISummarySetting(class CSetupUISummarySetting const &__ptr64 )__ptr64
69??0CSetupUISummarySetting@@QEAA@AEBV0@@Z
70; public: __cdecl CSetupUISummarySetting::CSetupUISummarySetting(void)__ptr64
71??0CSetupUISummarySetting@@QEAA@XZ
72; public: __cdecl CSetupUIWelcomeSetting::CSetupUIWelcomeSetting(class CSetupUIWelcomeSetting const &__ptr64 )__ptr64
73??0CSetupUIWelcomeSetting@@QEAA@AEBV0@@Z
74; public: __cdecl CSetupUIWelcomeSetting::CSetupUIWelcomeSetting(void)__ptr64
75??0CSetupUIWelcomeSetting@@QEAA@XZ
76; public: __cdecl CShimStringUserSetting::CShimStringUserSetting(class CShimStringUserSetting const &__ptr64 )__ptr64
77??0CShimStringUserSetting@@QEAA@AEBV0@@Z
78; public: __cdecl CShimStringUserSetting::CShimStringUserSetting(void)__ptr64
79??0CShimStringUserSetting@@QEAA@XZ
80; public: __cdecl CShimUInt32UserSetting::CShimUInt32UserSetting(class CShimUInt32UserSetting const &__ptr64 )__ptr64
81??0CShimUInt32UserSetting@@QEAA@AEBV0@@Z
82; public: __cdecl CShimUInt32UserSetting::CShimUInt32UserSetting(void)__ptr64
83??0CShimUInt32UserSetting@@QEAA@XZ
84; public: __cdecl CShimUInt64UserSetting::CShimUInt64UserSetting(class CShimUInt64UserSetting const &__ptr64 )__ptr64
85??0CShimUInt64UserSetting@@QEAA@AEBV0@@Z
86; public: __cdecl CShimUInt64UserSetting::CShimUInt64UserSetting(void)__ptr64
87??0CShimUInt64UserSetting@@QEAA@XZ
88; protected: __cdecl CShowFlagUserSetting::CShowFlagUserSetting(void)__ptr64
89??0CShowFlagUserSetting@@IEAA@XZ
90; public: __cdecl CShowFlagUserSetting::CShowFlagUserSetting(class CShowFlagUserSetting const &__ptr64 )__ptr64
91??0CShowFlagUserSetting@@QEAA@AEBV0@@Z
92; public: __cdecl CSimpleStringUserSetting::CSimpleStringUserSetting(class CSimpleStringUserSetting const &__ptr64 )__ptr64
93??0CSimpleStringUserSetting@@QEAA@AEBV0@@Z
94; public: __cdecl CSimpleStringUserSetting::CSimpleStringUserSetting(void)__ptr64
95??0CSimpleStringUserSetting@@QEAA@XZ
96; public: __cdecl CSimpleUInt32UserSetting::CSimpleUInt32UserSetting(class CSimpleUInt32UserSetting const &__ptr64 )__ptr64
97??0CSimpleUInt32UserSetting@@QEAA@AEBV0@@Z
98; public: __cdecl CSimpleUInt32UserSetting::CSimpleUInt32UserSetting(void)__ptr64
99??0CSimpleUInt32UserSetting@@QEAA@XZ
100; public: __cdecl CSimpleUInt64UserSetting::CSimpleUInt64UserSetting(class CSimpleUInt64UserSetting const &__ptr64 )__ptr64
101??0CSimpleUInt64UserSetting@@QEAA@AEBV0@@Z
102; public: __cdecl CSimpleUInt64UserSetting::CSimpleUInt64UserSetting(void)__ptr64
103??0CSimpleUInt64UserSetting@@QEAA@XZ
104; protected: __cdecl CStringUserSetting::CStringUserSetting(void)__ptr64
105??0CStringUserSetting@@IEAA@XZ
106; public: __cdecl CStringUserSetting::CStringUserSetting(class CStringUserSetting const &__ptr64 )__ptr64
107??0CStringUserSetting@@QEAA@AEBV0@@Z
108; public: __cdecl CTimezoneSetting::CTimezoneSetting(class CTimezoneSetting const &__ptr64 )__ptr64
109??0CTimezoneSetting@@QEAA@AEBV0@@Z
110; public: __cdecl CTimezoneSetting::CTimezoneSetting(void)__ptr64
111??0CTimezoneSetting@@QEAA@XZ
112; protected: __cdecl CUInt32UserSetting::CUInt32UserSetting(void)__ptr64
113??0CUInt32UserSetting@@IEAA@XZ
114; public: __cdecl CUInt32UserSetting::CUInt32UserSetting(class CUInt32UserSetting const &__ptr64 )__ptr64
115??0CUInt32UserSetting@@QEAA@AEBV0@@Z
116; protected: __cdecl CUInt64UserSetting::CUInt64UserSetting(void)__ptr64
117??0CUInt64UserSetting@@IEAA@XZ
118; public: __cdecl CUInt64UserSetting::CUInt64UserSetting(class CUInt64UserSetting const &__ptr64 )__ptr64
119??0CUInt64UserSetting@@QEAA@AEBV0@@Z
120; public: __cdecl CUpgStoreUserSetting::CUpgStoreUserSetting(class CUpgStoreUserSetting const &__ptr64 )__ptr64
121??0CUpgStoreUserSetting@@QEAA@AEBV0@@Z
122; public: __cdecl CUpgStoreUserSetting::CUpgStoreUserSetting(void)__ptr64
123??0CUpgStoreUserSetting@@QEAA@XZ
124; public: __cdecl CUpgradeUserSetting::CUpgradeUserSetting(class CUpgradeUserSetting const &__ptr64 )__ptr64
125??0CUpgradeUserSetting@@QEAA@AEBV0@@Z
126; public: __cdecl CUpgradeUserSetting::CUpgradeUserSetting(void)__ptr64
127??0CUpgradeUserSetting@@QEAA@XZ
128; public: __cdecl CUserSetting::CUserSetting(class CUserSetting const &__ptr64 )__ptr64
129??0CUserSetting@@QEAA@AEBV0@@Z
130; public: __cdecl CUserSetting::CUserSetting(void)__ptr64
131??0CUserSetting@@QEAA@XZ
132; public: __cdecl CWDSUIImageSelectionSetting::CWDSUIImageSelectionSetting(class CWDSUIImageSelectionSetting const &__ptr64 )__ptr64
133??0CWDSUIImageSelectionSetting@@QEAA@AEBV0@@Z
134; public: __cdecl CWDSUIImageSelectionSetting::CWDSUIImageSelectionSetting(void)__ptr64
135??0CWDSUIImageSelectionSetting@@QEAA@XZ
136; public: __cdecl CWDSUIWelcomeSetting::CWDSUIWelcomeSetting(class CWDSUIWelcomeSetting const &__ptr64 )__ptr64
137??0CWDSUIWelcomeSetting@@QEAA@AEBV0@@Z
138; public: __cdecl CWDSUIWelcomeSetting::CWDSUIWelcomeSetting(void)__ptr64
139??0CWDSUIWelcomeSetting@@QEAA@XZ
140; public: __cdecl <class CStringUserSetting>::~<class CStringUserSetting>(void)__ptr64
141??1?$CShimUserSetting@VCStringUserSetting@@@@QEAA@XZ
142; public: __cdecl <class CUInt32UserSetting>::~<class CUInt32UserSetting>(void)__ptr64
143??1?$CShimUserSetting@VCUInt32UserSetting@@@@QEAA@XZ
144; public: __cdecl <class CUInt64UserSetting>::~<class CUInt64UserSetting>(void)__ptr64
145??1?$CShimUserSetting@VCUInt64UserSetting@@@@QEAA@XZ
146; public: __cdecl CComputerNameSetting::~CComputerNameSetting(void)__ptr64
147??1CComputerNameSetting@@QEAA@XZ
148; public: __cdecl CDUUIProgressSetting::~CDUUIProgressSetting(void)__ptr64
149??1CDUUIProgressSetting@@QEAA@XZ
150; public: __cdecl CDUUIWelcomeSetting::~CDUUIWelcomeSetting(void)__ptr64
151??1CDUUIWelcomeSetting@@QEAA@XZ
152; public: __cdecl CDiskPartFileSystemUserSetting::~CDiskPartFileSystemUserSetting(void)__ptr64
153??1CDiskPartFileSystemUserSetting@@QEAA@XZ
154; public: __cdecl CDiskPartFormatUserSetting::~CDiskPartFormatUserSetting(void)__ptr64
155??1CDiskPartFormatUserSetting@@QEAA@XZ
156; public: __cdecl CDiskPartUserSetting::~CDiskPartUserSetting(void)__ptr64
157??1CDiskPartUserSetting@@QEAA@XZ
158; public: __cdecl CEulaSetting::~CEulaSetting(void)__ptr64
159??1CEulaSetting@@QEAA@XZ
160; public: __cdecl CIBSUIImageSelectionSetting::~CIBSUIImageSelectionSetting(void)__ptr64
161??1CIBSUIImageSelectionSetting@@QEAA@XZ
162; public: __cdecl CKeyboardSetting::~CKeyboardSetting(void)__ptr64
163??1CKeyboardSetting@@QEAA@XZ
164; public: __cdecl COOBEUIFinishSetting::~COOBEUIFinishSetting(void)__ptr64
165??1COOBEUIFinishSetting@@QEAA@XZ
166; public: __cdecl COOBEUIWelcomeSetting::~COOBEUIWelcomeSetting(void)__ptr64
167??1COOBEUIWelcomeSetting@@QEAA@XZ
168; public: __cdecl CProductKeyUserSetting::~CProductKeyUserSetting(void)__ptr64
169??1CProductKeyUserSetting@@QEAA@XZ
170; public: __cdecl CSetupUISummarySetting::~CSetupUISummarySetting(void)__ptr64
171??1CSetupUISummarySetting@@QEAA@XZ
172; public: __cdecl CSetupUIWelcomeSetting::~CSetupUIWelcomeSetting(void)__ptr64
173??1CSetupUIWelcomeSetting@@QEAA@XZ
174; public: __cdecl CShimStringUserSetting::~CShimStringUserSetting(void)__ptr64
175??1CShimStringUserSetting@@QEAA@XZ
176; public: __cdecl CShimUInt32UserSetting::~CShimUInt32UserSetting(void)__ptr64
177??1CShimUInt32UserSetting@@QEAA@XZ
178; public: __cdecl CShimUInt64UserSetting::~CShimUInt64UserSetting(void)__ptr64
179??1CShimUInt64UserSetting@@QEAA@XZ
180; protected: __cdecl CShowFlagUserSetting::~CShowFlagUserSetting(void)__ptr64
181??1CShowFlagUserSetting@@IEAA@XZ
182; public: __cdecl CSimpleStringUserSetting::~CSimpleStringUserSetting(void)__ptr64
183??1CSimpleStringUserSetting@@QEAA@XZ
184; public: __cdecl CSimpleUInt32UserSetting::~CSimpleUInt32UserSetting(void)__ptr64
185??1CSimpleUInt32UserSetting@@QEAA@XZ
186; public: __cdecl CSimpleUInt64UserSetting::~CSimpleUInt64UserSetting(void)__ptr64
187??1CSimpleUInt64UserSetting@@QEAA@XZ
188; protected: __cdecl CStringUserSetting::~CStringUserSetting(void)__ptr64
189??1CStringUserSetting@@IEAA@XZ
190; public: __cdecl CTimezoneSetting::~CTimezoneSetting(void)__ptr64
191??1CTimezoneSetting@@QEAA@XZ
192; protected: __cdecl CUInt32UserSetting::~CUInt32UserSetting(void)__ptr64
193??1CUInt32UserSetting@@IEAA@XZ
194; protected: __cdecl CUInt64UserSetting::~CUInt64UserSetting(void)__ptr64
195??1CUInt64UserSetting@@IEAA@XZ
196; public: __cdecl CUpgStoreUserSetting::~CUpgStoreUserSetting(void)__ptr64
197??1CUpgStoreUserSetting@@QEAA@XZ
198; public: __cdecl CUpgradeUserSetting::~CUpgradeUserSetting(void)__ptr64
199??1CUpgradeUserSetting@@QEAA@XZ
200; public: __cdecl CUserSetting::~CUserSetting(void)__ptr64
201??1CUserSetting@@QEAA@XZ
202; public: __cdecl CWDSUIImageSelectionSetting::~CWDSUIImageSelectionSetting(void)__ptr64
203??1CWDSUIImageSelectionSetting@@QEAA@XZ
204; public: __cdecl CWDSUIWelcomeSetting::~CWDSUIWelcomeSetting(void)__ptr64
205??1CWDSUIWelcomeSetting@@QEAA@XZ
206; public: class <class CStringUserSetting> &__ptr64 __cdecl <class CStringUserSetting>::operator =(class <class CStringUserSetting> const &__ptr64 )__ptr64
207??4?$CShimUserSetting@VCStringUserSetting@@@@QEAAAEAV0@AEBV0@@Z
208; public: class <class CUInt32UserSetting> &__ptr64 __cdecl <class CUInt32UserSetting>::operator =(class <class CUInt32UserSetting> const &__ptr64 )__ptr64
209??4?$CShimUserSetting@VCUInt32UserSetting@@@@QEAAAEAV0@AEBV0@@Z
210; public: class <class CUInt64UserSetting> &__ptr64 __cdecl <class CUInt64UserSetting>::operator =(class <class CUInt64UserSetting> const &__ptr64 )__ptr64
211??4?$CShimUserSetting@VCUInt64UserSetting@@@@QEAAAEAV0@AEBV0@@Z
212; public: class CComputerNameSetting &__ptr64 __cdecl CComputerNameSetting::operator =(class CComputerNameSetting const &__ptr64 )__ptr64
213??4CComputerNameSetting@@QEAAAEAV0@AEBV0@@Z
214; public: class CDUUIProgressSetting &__ptr64 __cdecl CDUUIProgressSetting::operator =(class CDUUIProgressSetting const &__ptr64 )__ptr64
215??4CDUUIProgressSetting@@QEAAAEAV0@AEBV0@@Z
216; public: class CDUUIWelcomeSetting &__ptr64 __cdecl CDUUIWelcomeSetting::operator =(class CDUUIWelcomeSetting const &__ptr64 )__ptr64
217??4CDUUIWelcomeSetting@@QEAAAEAV0@AEBV0@@Z
218; public: class CDiskPartFileSystemUserSetting &__ptr64 __cdecl CDiskPartFileSystemUserSetting::operator =(class CDiskPartFileSystemUserSetting const &__ptr64 )__ptr64
219??4CDiskPartFileSystemUserSetting@@QEAAAEAV0@AEBV0@@Z
220; public: class CDiskPartFormatUserSetting &__ptr64 __cdecl CDiskPartFormatUserSetting::operator =(class CDiskPartFormatUserSetting const &__ptr64 )__ptr64
221??4CDiskPartFormatUserSetting@@QEAAAEAV0@AEBV0@@Z
222; public: class CDiskPartUserSetting &__ptr64 __cdecl CDiskPartUserSetting::operator =(class CDiskPartUserSetting const &__ptr64 )__ptr64
223??4CDiskPartUserSetting@@QEAAAEAV0@AEBV0@@Z
224; public: class CEulaSetting &__ptr64 __cdecl CEulaSetting::operator =(class CEulaSetting const &__ptr64 )__ptr64
225??4CEulaSetting@@QEAAAEAV0@AEBV0@@Z
226; public: class CIBSUIImageSelectionSetting &__ptr64 __cdecl CIBSUIImageSelectionSetting::operator =(class CIBSUIImageSelectionSetting const &__ptr64 )__ptr64
227??4CIBSUIImageSelectionSetting@@QEAAAEAV0@AEBV0@@Z
228; public: class CKeyboardSetting &__ptr64 __cdecl CKeyboardSetting::operator =(class CKeyboardSetting const &__ptr64 )__ptr64
229??4CKeyboardSetting@@QEAAAEAV0@AEBV0@@Z
230; public: class COOBEUIFinishSetting &__ptr64 __cdecl COOBEUIFinishSetting::operator =(class COOBEUIFinishSetting const &__ptr64 )__ptr64
231??4COOBEUIFinishSetting@@QEAAAEAV0@AEBV0@@Z
232; public: class COOBEUIWelcomeSetting &__ptr64 __cdecl COOBEUIWelcomeSetting::operator =(class COOBEUIWelcomeSetting const &__ptr64 )__ptr64
233??4COOBEUIWelcomeSetting@@QEAAAEAV0@AEBV0@@Z
234; public: class CProductKeyUserSetting &__ptr64 __cdecl CProductKeyUserSetting::operator =(class CProductKeyUserSetting const &__ptr64 )__ptr64
235??4CProductKeyUserSetting@@QEAAAEAV0@AEBV0@@Z
236; public: class CSetupUISummarySetting &__ptr64 __cdecl CSetupUISummarySetting::operator =(class CSetupUISummarySetting const &__ptr64 )__ptr64
237??4CSetupUISummarySetting@@QEAAAEAV0@AEBV0@@Z
238; public: class CSetupUIWelcomeSetting &__ptr64 __cdecl CSetupUIWelcomeSetting::operator =(class CSetupUIWelcomeSetting const &__ptr64 )__ptr64
239??4CSetupUIWelcomeSetting@@QEAAAEAV0@AEBV0@@Z
240; public: class CShimStringUserSetting &__ptr64 __cdecl CShimStringUserSetting::operator =(class CShimStringUserSetting const &__ptr64 )__ptr64
241??4CShimStringUserSetting@@QEAAAEAV0@AEBV0@@Z
242; public: class CShimUInt32UserSetting &__ptr64 __cdecl CShimUInt32UserSetting::operator =(class CShimUInt32UserSetting const &__ptr64 )__ptr64
243??4CShimUInt32UserSetting@@QEAAAEAV0@AEBV0@@Z
244; public: class CShimUInt64UserSetting &__ptr64 __cdecl CShimUInt64UserSetting::operator =(class CShimUInt64UserSetting const &__ptr64 )__ptr64
245??4CShimUInt64UserSetting@@QEAAAEAV0@AEBV0@@Z
246; public: class CShowFlagUserSetting &__ptr64 __cdecl CShowFlagUserSetting::operator =(class CShowFlagUserSetting const &__ptr64 )__ptr64
247??4CShowFlagUserSetting@@QEAAAEAV0@AEBV0@@Z
248; public: class CSimpleStringUserSetting &__ptr64 __cdecl CSimpleStringUserSetting::operator =(class CSimpleStringUserSetting const &__ptr64 )__ptr64
249??4CSimpleStringUserSetting@@QEAAAEAV0@AEBV0@@Z
250; public: class CSimpleUInt32UserSetting &__ptr64 __cdecl CSimpleUInt32UserSetting::operator =(class CSimpleUInt32UserSetting const &__ptr64 )__ptr64
251??4CSimpleUInt32UserSetting@@QEAAAEAV0@AEBV0@@Z
252; public: class CSimpleUInt64UserSetting &__ptr64 __cdecl CSimpleUInt64UserSetting::operator =(class CSimpleUInt64UserSetting const &__ptr64 )__ptr64
253??4CSimpleUInt64UserSetting@@QEAAAEAV0@AEBV0@@Z
254; public: class CStringUserSetting &__ptr64 __cdecl CStringUserSetting::operator =(class CStringUserSetting const &__ptr64 )__ptr64
255??4CStringUserSetting@@QEAAAEAV0@AEBV0@@Z
256; public: class CTimezoneSetting &__ptr64 __cdecl CTimezoneSetting::operator =(class CTimezoneSetting const &__ptr64 )__ptr64
257??4CTimezoneSetting@@QEAAAEAV0@AEBV0@@Z
258; public: class CUInt32UserSetting &__ptr64 __cdecl CUInt32UserSetting::operator =(class CUInt32UserSetting const &__ptr64 )__ptr64
259??4CUInt32UserSetting@@QEAAAEAV0@AEBV0@@Z
260; public: class CUInt64UserSetting &__ptr64 __cdecl CUInt64UserSetting::operator =(class CUInt64UserSetting const &__ptr64 )__ptr64
261??4CUInt64UserSetting@@QEAAAEAV0@AEBV0@@Z
262; public: class CUpgStoreUserSetting &__ptr64 __cdecl CUpgStoreUserSetting::operator =(class CUpgStoreUserSetting const &__ptr64 )__ptr64
263??4CUpgStoreUserSetting@@QEAAAEAV0@AEBV0@@Z
264; public: class CUpgradeUserSetting &__ptr64 __cdecl CUpgradeUserSetting::operator =(class CUpgradeUserSetting const &__ptr64 )__ptr64
265??4CUpgradeUserSetting@@QEAAAEAV0@AEBV0@@Z
266; public: class CUserSetting &__ptr64 __cdecl CUserSetting::operator =(class CUserSetting const &__ptr64 )__ptr64
267??4CUserSetting@@QEAAAEAV0@AEBV0@@Z
268; public: class CWDSUIImageSelectionSetting &__ptr64 __cdecl CWDSUIImageSelectionSetting::operator =(class CWDSUIImageSelectionSetting const &__ptr64 )__ptr64
269??4CWDSUIImageSelectionSetting@@QEAAAEAV0@AEBV0@@Z
270; public: class CWDSUIWelcomeSetting &__ptr64 __cdecl CWDSUIWelcomeSetting::operator =(class CWDSUIWelcomeSetting const &__ptr64 )__ptr64
271??4CWDSUIWelcomeSetting@@QEAAAEAV0@AEBV0@@Z
272; const <class CStringUserSetting>::$vftable
273??_7?$CShimUserSetting@VCStringUserSetting@@@@6B@ DATA
274; const <class CUInt32UserSetting>::$vftable
275??_7?$CShimUserSetting@VCUInt32UserSetting@@@@6B@ DATA
276; const <class CUInt64UserSetting>::$vftable
277??_7?$CShimUserSetting@VCUInt64UserSetting@@@@6B@ DATA
278; const CComputerNameSetting::$vftable
279??_7CComputerNameSetting@@6B@ DATA
280; const CDUUIProgressSetting::$vftable
281??_7CDUUIProgressSetting@@6B@ DATA
282; const CDUUIWelcomeSetting::$vftable
283??_7CDUUIWelcomeSetting@@6B@ DATA
284; const CDiskPartFileSystemUserSetting::$vftable
285??_7CDiskPartFileSystemUserSetting@@6B@ DATA
286; const CDiskPartFormatUserSetting::$vftable
287??_7CDiskPartFormatUserSetting@@6B@ DATA
288; const CDiskPartUserSetting::$vftable
289??_7CDiskPartUserSetting@@6B@ DATA
290; const CEulaSetting::$vftable
291??_7CEulaSetting@@6B@ DATA
292; const CIBSUIImageSelectionSetting::$vftable
293??_7CIBSUIImageSelectionSetting@@6B@ DATA
294; const CKeyboardSetting::$vftable
295??_7CKeyboardSetting@@6B@ DATA
296; const COOBEUIFinishSetting::$vftable
297??_7COOBEUIFinishSetting@@6B@ DATA
298; const COOBEUIWelcomeSetting::$vftable
299??_7COOBEUIWelcomeSetting@@6B@ DATA
300; const CProductKeyUserSetting::$vftable
301??_7CProductKeyUserSetting@@6B@ DATA
302; const CSetupUISummarySetting::$vftable
303??_7CSetupUISummarySetting@@6B@ DATA
304; const CSetupUIWelcomeSetting::$vftable
305??_7CSetupUIWelcomeSetting@@6B@ DATA
306; const CShimStringUserSetting::$vftable
307??_7CShimStringUserSetting@@6B@ DATA
308; const CShimUInt32UserSetting::$vftable
309??_7CShimUInt32UserSetting@@6B@ DATA
310; const CShimUInt64UserSetting::$vftable
311??_7CShimUInt64UserSetting@@6B@ DATA
312; const CShowFlagUserSetting::$vftable
313??_7CShowFlagUserSetting@@6B@ DATA
314; const CSimpleStringUserSetting::$vftable
315??_7CSimpleStringUserSetting@@6B@ DATA
316; const CSimpleUInt32UserSetting::$vftable
317??_7CSimpleUInt32UserSetting@@6B@ DATA
318; const CSimpleUInt64UserSetting::$vftable
319??_7CSimpleUInt64UserSetting@@6B@ DATA
320; const CStringUserSetting::$vftable
321??_7CStringUserSetting@@6B@ DATA
322; const CTimezoneSetting::$vftable
323??_7CTimezoneSetting@@6B@ DATA
324; const CUInt32UserSetting::$vftable
325??_7CUInt32UserSetting@@6B@ DATA
326; const CUInt64UserSetting::$vftable
327??_7CUInt64UserSetting@@6B@ DATA
328; const CUpgStoreUserSetting::$vftable
329??_7CUpgStoreUserSetting@@6B@ DATA
330; const CUpgradeUserSetting::$vftable
331??_7CUpgradeUserSetting@@6B@ DATA
332; const CUserSetting::$vftable
333??_7CUserSetting@@6B@ DATA
334; const CWDSUIImageSelectionSetting::$vftable
335??_7CWDSUIImageSelectionSetting@@6B@ DATA
336; const CWDSUIWelcomeSetting::$vftable
337??_7CWDSUIWelcomeSetting@@6B@ DATA
338; protected: void __cdecl CUserSetting::AcquireMutex(void)__ptr64
339?AcquireMutex@CUserSetting@@IEAAXXZ
340; protected: long __cdecl CUserSetting::DeserializeField(unsigned short const *__ptr64,unsigned int,struct WDS_DATA *__ptr64,int)__ptr64
341?DeserializeField@CUserSetting@@IEAAJPEBGIPEAUWDS_DATA@@H@Z
342; protected: long __cdecl CStringUserSetting::DeserializeString(unsigned short *__ptr64 *__ptr64,int)__ptr64
343?DeserializeString@CStringUserSetting@@IEAAJPEAPEAGH@Z
344; protected: long __cdecl CUInt32UserSetting::DeserializeUInt32(unsigned int *__ptr64,int)__ptr64
345?DeserializeUInt32@CUInt32UserSetting@@IEAAJPEAIH@Z
346; protected: long __cdecl CUInt64UserSetting::DeserializeUInt64(unsigned __int64 *__ptr64,int)__ptr64
347?DeserializeUInt64@CUInt64UserSetting@@IEAAJPEA_KH@Z
348DiskRegionSupportsCapabilityForType
349DiskSupportsCapabilityForType
350FreeReason
351GetApplicableDiskReason
352GetApplicableDiskRegionReason
353; protected: struct _BLACKBOARD *__ptr64 __cdecl CUserSetting::GetBlackboard(void)__ptr64
354?GetBlackboard@CUserSetting@@IEAAPEAU_BLACKBOARD@@XZ
355GetDiskKey
356; protected: long __cdecl CUserSetting::GetKeyName(unsigned short *__ptr64,int,int)__ptr64
357?GetKeyName@CUserSetting@@IEAAJPEAGHH@Z
358; public: void *__ptr64 __cdecl CUserSetting::GetModuleId(void)__ptr64
359?GetModuleId@CUserSetting@@QEAAPEAXXZ
360GetRegionKey
361; public: static int __cdecl CUpgradeUserSetting::IsUpgrade(void)
362?IsUpgrade@CUpgradeUserSetting@@SAHXZ
363LogDiskReasons
364LogDiskRegionReasons
365; protected: long __cdecl CUserSetting::ReadError(long *__ptr64,int)__ptr64
366?ReadError@CUserSetting@@IEAAJPEAJH@Z
367; protected: long __cdecl CUserSetting::ReadShow(int *__ptr64,int)__ptr64
368?ReadShow@CUserSetting@@IEAAJPEAHH@Z
369; protected: void __cdecl CUserSetting::ReleaseMutex(void)__ptr64
370?ReleaseMutex@CUserSetting@@IEAAXXZ
371; protected: void __cdecl CUserSetting::SerializeField(unsigned short const *__ptr64,struct WDS_DATA *__ptr64)__ptr64
372?SerializeField@CUserSetting@@IEAAXPEBGPEAUWDS_DATA@@@Z
373; protected: void __cdecl CStringUserSetting::SerializeString(unsigned short const *__ptr64)__ptr64
374?SerializeString@CStringUserSetting@@IEAAXPEBG@Z
375; protected: void __cdecl CUInt32UserSetting::SerializeUInt32(unsigned int)__ptr64
376?SerializeUInt32@CUInt32UserSetting@@IEAAXI@Z
377; protected: void __cdecl CUInt64UserSetting::SerializeUInt64(unsigned __int64)__ptr64
378?SerializeUInt64@CUInt64UserSetting@@IEAAX_K@Z
379; public: void __cdecl CUserSetting::SetModuleId(void *__ptr64)__ptr64
380?SetModuleId@CUserSetting@@QEAAXPEAX@Z
381; protected: long __cdecl CStringUserSetting::Simple_get_String(unsigned short *__ptr64 *__ptr64)__ptr64
382?Simple_get_String@CStringUserSetting@@IEAAJPEAPEAG@Z
383; protected: long __cdecl CUInt32UserSetting::Simple_get_UInt32(unsigned int *__ptr64)__ptr64
384?Simple_get_UInt32@CUInt32UserSetting@@IEAAJPEAI@Z
385; protected: long __cdecl CUInt64UserSetting::Simple_get_UInt64(unsigned __int64 *__ptr64)__ptr64
386?Simple_get_UInt64@CUInt64UserSetting@@IEAAJPEA_K@Z
387; protected: long __cdecl CStringUserSetting::Simple_set_String(unsigned short const *__ptr64)__ptr64
388?Simple_set_String@CStringUserSetting@@IEAAJPEBG@Z
389; protected: long __cdecl CUInt32UserSetting::Simple_set_UInt32(unsigned int)__ptr64
390?Simple_set_UInt32@CUInt32UserSetting@@IEAAJI@Z
391; protected: long __cdecl CUInt64UserSetting::Simple_set_UInt64(unsigned __int64)__ptr64
392?Simple_set_UInt64@CUInt64UserSetting@@IEAAJ_K@Z
393; public: static int __cdecl CUpgradeUserSetting::UnattendChecked(void)
394?UnattendChecked@CUpgradeUserSetting@@SAHXZ
395; protected: static unsigned short const *__ptr64 const const __ptr64 CUserSetting::c_stErrorName
396?c_stErrorName@CUserSetting@@1QEBGEB DATA
397; protected: static unsigned short const *__ptr64 const const __ptr64 CUserSetting::c_stMutex
398?c_stMutex@CUserSetting@@1QEBGEB DATA
399; protected: static unsigned short const *__ptr64 const const __ptr64 CUserSetting::c_stShowName
400?c_stShowName@CUserSetting@@1QEBGEB DATA
401; protected: static unsigned short const *__ptr64 const const __ptr64 CUserSetting::c_stValueName
402?c_stValueName@CUserSetting@@1QEBGEB DATA
403; public: virtual long __cdecl <class CStringUserSetting>::get_Error(long *__ptr64)__ptr64
404?get_Error@?$CShimUserSetting@VCStringUserSetting@@@@UEAAJPEAJ@Z
405; public: virtual long __cdecl <class CUInt32UserSetting>::get_Error(long *__ptr64)__ptr64
406?get_Error@?$CShimUserSetting@VCUInt32UserSetting@@@@UEAAJPEAJ@Z
407; public: virtual long __cdecl <class CUInt64UserSetting>::get_Error(long *__ptr64)__ptr64
408?get_Error@?$CShimUserSetting@VCUInt64UserSetting@@@@UEAAJPEAJ@Z
409; public: virtual long __cdecl CShowFlagUserSetting::get_Error(long *__ptr64)__ptr64
410?get_Error@CShowFlagUserSetting@@UEAAJPEAJ@Z
411; public: virtual long __cdecl CSimpleStringUserSetting::get_Error(long *__ptr64)__ptr64
412?get_Error@CSimpleStringUserSetting@@UEAAJPEAJ@Z
413; public: virtual long __cdecl CSimpleUInt32UserSetting::get_Error(long *__ptr64)__ptr64
414?get_Error@CSimpleUInt32UserSetting@@UEAAJPEAJ@Z
415; public: virtual long __cdecl CSimpleUInt64UserSetting::get_Error(long *__ptr64)__ptr64
416?get_Error@CSimpleUInt64UserSetting@@UEAAJPEAJ@Z
417; private: virtual unsigned short *__ptr64 __cdecl CComputerNameSetting::get_Name(void)__ptr64
418?get_Name@CComputerNameSetting@@EEAAPEAGXZ
419; private: virtual unsigned short *__ptr64 __cdecl CDUUIProgressSetting::get_Name(void)__ptr64
420?get_Name@CDUUIProgressSetting@@EEAAPEAGXZ
421; private: virtual unsigned short *__ptr64 __cdecl CDUUIWelcomeSetting::get_Name(void)__ptr64
422?get_Name@CDUUIWelcomeSetting@@EEAAPEAGXZ
423; private: virtual unsigned short *__ptr64 __cdecl CDiskPartFileSystemUserSetting::get_Name(void)__ptr64
424?get_Name@CDiskPartFileSystemUserSetting@@EEAAPEAGXZ
425; private: virtual unsigned short *__ptr64 __cdecl CDiskPartFormatUserSetting::get_Name(void)__ptr64
426?get_Name@CDiskPartFormatUserSetting@@EEAAPEAGXZ
427; private: virtual unsigned short *__ptr64 __cdecl CDiskPartUserSetting::get_Name(void)__ptr64
428?get_Name@CDiskPartUserSetting@@EEAAPEAGXZ
429; private: virtual unsigned short *__ptr64 __cdecl CEulaSetting::get_Name(void)__ptr64
430?get_Name@CEulaSetting@@EEAAPEAGXZ
431; private: virtual unsigned short *__ptr64 __cdecl CIBSUIImageSelectionSetting::get_Name(void)__ptr64
432?get_Name@CIBSUIImageSelectionSetting@@EEAAPEAGXZ
433; private: virtual unsigned short *__ptr64 __cdecl CKeyboardSetting::get_Name(void)__ptr64
434?get_Name@CKeyboardSetting@@EEAAPEAGXZ
435; private: virtual unsigned short *__ptr64 __cdecl COOBEUIFinishSetting::get_Name(void)__ptr64
436?get_Name@COOBEUIFinishSetting@@EEAAPEAGXZ
437; private: virtual unsigned short *__ptr64 __cdecl COOBEUIWelcomeSetting::get_Name(void)__ptr64
438?get_Name@COOBEUIWelcomeSetting@@EEAAPEAGXZ
439; private: virtual unsigned short *__ptr64 __cdecl CProductKeyUserSetting::get_Name(void)__ptr64
440?get_Name@CProductKeyUserSetting@@EEAAPEAGXZ
441; private: virtual unsigned short *__ptr64 __cdecl CSetupUISummarySetting::get_Name(void)__ptr64
442?get_Name@CSetupUISummarySetting@@EEAAPEAGXZ
443; private: virtual unsigned short *__ptr64 __cdecl CSetupUIWelcomeSetting::get_Name(void)__ptr64
444?get_Name@CSetupUIWelcomeSetting@@EEAAPEAGXZ
445; private: virtual unsigned short *__ptr64 __cdecl CTimezoneSetting::get_Name(void)__ptr64
446?get_Name@CTimezoneSetting@@EEAAPEAGXZ
447; private: virtual unsigned short *__ptr64 __cdecl CUpgStoreUserSetting::get_Name(void)__ptr64
448?get_Name@CUpgStoreUserSetting@@EEAAPEAGXZ
449; private: virtual unsigned short *__ptr64 __cdecl CUpgradeUserSetting::get_Name(void)__ptr64
450?get_Name@CUpgradeUserSetting@@EEAAPEAGXZ
451; private: virtual unsigned short *__ptr64 __cdecl CWDSUIImageSelectionSetting::get_Name(void)__ptr64
452?get_Name@CWDSUIImageSelectionSetting@@EEAAPEAGXZ
453; private: virtual unsigned short *__ptr64 __cdecl CWDSUIWelcomeSetting::get_Name(void)__ptr64
454?get_Name@CWDSUIWelcomeSetting@@EEAAPEAGXZ
455; public: virtual long __cdecl <class CStringUserSetting>::get_Show(int *__ptr64)__ptr64
456?get_Show@?$CShimUserSetting@VCStringUserSetting@@@@UEAAJPEAH@Z
457; public: virtual long __cdecl <class CUInt32UserSetting>::get_Show(int *__ptr64)__ptr64
458?get_Show@?$CShimUserSetting@VCUInt32UserSetting@@@@UEAAJPEAH@Z
459; public: virtual long __cdecl <class CUInt64UserSetting>::get_Show(int *__ptr64)__ptr64
460?get_Show@?$CShimUserSetting@VCUInt64UserSetting@@@@UEAAJPEAH@Z
461; public: virtual long __cdecl CComputerNameSetting::get_Show(int *__ptr64)__ptr64
462?get_Show@CComputerNameSetting@@UEAAJPEAH@Z
463; public: virtual long __cdecl CDiskPartUserSetting::get_Show(int *__ptr64)__ptr64
464?get_Show@CDiskPartUserSetting@@UEAAJPEAH@Z
465; public: virtual long __cdecl CShowFlagUserSetting::get_Show(int *__ptr64)__ptr64
466?get_Show@CShowFlagUserSetting@@UEAAJPEAH@Z
467; public: virtual long __cdecl CSimpleStringUserSetting::get_Show(int *__ptr64)__ptr64
468?get_Show@CSimpleStringUserSetting@@UEAAJPEAH@Z
469; public: virtual long __cdecl CSimpleUInt32UserSetting::get_Show(int *__ptr64)__ptr64
470?get_Show@CSimpleUInt32UserSetting@@UEAAJPEAH@Z
471; public: virtual long __cdecl CSimpleUInt64UserSetting::get_Show(int *__ptr64)__ptr64
472?get_Show@CSimpleUInt64UserSetting@@UEAAJPEAH@Z
473; public: virtual long __cdecl CShimStringUserSetting::get_String(unsigned short *__ptr64 *__ptr64)__ptr64
474?get_String@CShimStringUserSetting@@UEAAJPEAPEAG@Z
475; public: virtual long __cdecl CSimpleStringUserSetting::get_String(unsigned short *__ptr64 *__ptr64)__ptr64
476?get_String@CSimpleStringUserSetting@@UEAAJPEAPEAG@Z
477; public: virtual long __cdecl CDiskPartUserSetting::get_UInt32(unsigned int *__ptr64)__ptr64
478?get_UInt32@CDiskPartUserSetting@@UEAAJPEAI@Z
479; public: virtual long __cdecl CShimUInt32UserSetting::get_UInt32(unsigned int *__ptr64)__ptr64
480?get_UInt32@CShimUInt32UserSetting@@UEAAJPEAI@Z
481; public: virtual long __cdecl CSimpleUInt32UserSetting::get_UInt32(unsigned int *__ptr64)__ptr64
482?get_UInt32@CSimpleUInt32UserSetting@@UEAAJPEAI@Z
483; public: virtual long __cdecl CShimUInt64UserSetting::get_UInt64(unsigned __int64 *__ptr64)__ptr64
484?get_UInt64@CShimUInt64UserSetting@@UEAAJPEA_K@Z
485; public: virtual long __cdecl CSimpleUInt64UserSetting::get_UInt64(unsigned __int64 *__ptr64)__ptr64
486?get_UInt64@CSimpleUInt64UserSetting@@UEAAJPEA_K@Z
487; private: virtual int __cdecl CComputerNameSetting::get_ValidateID(void)__ptr64
488?get_ValidateID@CComputerNameSetting@@EEAAHXZ
489; private: virtual int __cdecl CDiskPartUserSetting::get_ValidateID(void)__ptr64
490?get_ValidateID@CDiskPartUserSetting@@EEAAHXZ
491; private: virtual int __cdecl CProductKeyUserSetting::get_ValidateID(void)__ptr64
492?get_ValidateID@CProductKeyUserSetting@@EEAAHXZ
493; public: long __cdecl CUserSetting::set_Error(long)__ptr64
494?set_Error@CUserSetting@@QEAAJJ@Z
495; public: long __cdecl CUserSetting::set_Show(int)__ptr64
496?set_Show@CUserSetting@@QEAAJH@Z
497; public: virtual long __cdecl CComputerNameSetting::set_String(unsigned short const *__ptr64)__ptr64
498?set_String@CComputerNameSetting@@UEAAJPEBG@Z
499; public: virtual long __cdecl CShimStringUserSetting::set_String(unsigned short const *__ptr64)__ptr64
500?set_String@CShimStringUserSetting@@UEAAJPEBG@Z
501; public: virtual long __cdecl CSimpleStringUserSetting::set_String(unsigned short const *__ptr64)__ptr64
502?set_String@CSimpleStringUserSetting@@UEAAJPEBG@Z
503; public: virtual long __cdecl CDiskPartUserSetting::set_UInt32(unsigned int)__ptr64
504?set_UInt32@CDiskPartUserSetting@@UEAAJI@Z
505; public: virtual long __cdecl CShimUInt32UserSetting::set_UInt32(unsigned int)__ptr64
506?set_UInt32@CShimUInt32UserSetting@@UEAAJI@Z
507; public: virtual long __cdecl CSimpleUInt32UserSetting::set_UInt32(unsigned int)__ptr64
508?set_UInt32@CSimpleUInt32UserSetting@@UEAAJI@Z
509; public: virtual long __cdecl CUpgradeUserSetting::set_UInt32(unsigned int)__ptr64
510?set_UInt32@CUpgradeUserSetting@@UEAAJI@Z
511; public: virtual long __cdecl CShimUInt64UserSetting::set_UInt64(unsigned __int64)__ptr64
512?set_UInt64@CShimUInt64UserSetting@@UEAAJ_K@Z
513; public: virtual long __cdecl CSimpleUInt64UserSetting::set_UInt64(unsigned __int64)__ptr64
514?set_UInt64@CSimpleUInt64UserSetting@@UEAAJ_K@Z
515CallbackGetArgumentInt32
516CallbackGetArgumentString
517CallbackGetArgumentUInt64
518IsCrossArchitectureInstall
519PublishMessage
520SignalSetupComplianceBlock
521WdsCollectionAddString
522WdsCollectionAddUInt32
523WdsCollectionAddUInt64
524WdsPickTempDriveBasedOnInstallDrive
525WdsValidateInstallDrive
lib/libc/mingw/lib64/webcheck.def created+14
......@@ -0,0 +1,14 @@
1;
2; Exports of file WebCheck.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WebCheck.dll
8EXPORTS
9XMLScheduleElementToTaskTrigger
10DllCanUnloadNow
11DllGetClassObject
12DllInstall
13DllRegisterServer
14DllUnregisterServer
lib/libc/mingw/lib64/webhits.def created+11
......@@ -0,0 +1,11 @@
1;
2; Exports of file WEBHITS.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WEBHITS.dll
8EXPORTS
9GetExtensionVersion
10HttpExtensionProc
11TerminateExtension
lib/libc/mingw/lib64/wer.def deleted-84
......@@ -1,84 +0,0 @@
1;
2; Definition file of wer.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "wer.dll"
7EXPORTS
8WerSysprepCleanup
9WerSysprepGeneralize
10WerSysprepSpecialize
11WerUnattendedSetup
12WerpAddAppCompatData
13WerpAddFile
14WerpAddMemoryBlock
15WerpAddRegisteredDataToReport
16WerpAddSecondaryParameter
17WerpAddTextToReport
18WerpArchiveReport
19WerpCancelResponseDownload
20WerpCancelUpload
21WerpCloseStore
22WerpCreateMachineStore
23WerpDeleteReport
24WerpDestroyWerString
25WerpDownloadResponse
26WerpDownloadResponseTemplate
27WerpEnumerateStoreNext
28WerpEnumerateStoreStart
29WerpExtractReportFiles
30WerpGetBucketId
31WerpGetDynamicParameter
32WerpGetEventType
33WerpGetFileByIndex
34WerpGetFilePathByIndex
35WerpGetNumFiles
36WerpGetNumSecParams
37WerpGetNumSigParams
38WerpGetReportFinalConsent
39WerpGetReportFlags
40WerpGetReportInformation
41WerpGetReportTime
42WerpGetReportType
43WerpGetResponseId
44WerpGetResponseUrl
45WerpGetSecParamByIndex
46WerpGetSigParamByIndex
47WerpGetStoreLocation
48WerpGetStoreType
49WerpGetTextFromReport
50WerpGetUIParamByIndex
51WerpGetUploadTime
52WerpGetWerStringData
53WerpIsTransportAvailable
54WerpLoadReport
55WerpOpenMachineArchive
56WerpOpenMachineQueue
57WerpOpenUserArchive
58WerpReportCancel
59WerpRestartApplication
60WerpSetDynamicParameter
61WerpSetEventName
62WerpSetReportFlags
63WerpSetReportInformation
64WerpSetReportTime
65WerpSetReportUploadContextToken
66WerpShowNXNotification
67WerpShowSecondLevelConsent
68WerpShowUpsellUI
69WerpSubmitReportFromStore
70WerpSvcReportFromMachineQueue
71WerAddExcludedApplication
72WerRemoveExcludedApplication
73WerReportAddDump
74WerReportAddFile
75WerReportCloseHandle
76WerReportCreate
77WerReportSetParameter
78WerReportSetUIOption
79WerReportSubmit
80WerpGetReportConsent
81WerpIsDisabled
82WerpOpenUserQueue
83WerpPromtUser
84WerpSetCallBack
lib/libc/mingw/lib64/wevtfwd.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of WEVTFWD.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WEVTFWD.DLL"
7EXPORTS
8WSManProvPullEvents
9WSManProvShutdown
10WSManProvStartup
11WSManProvSubscribe
12WSManProvUnsubscribe
lib/libc/mingw/lib64/wiadss.def created+39
......@@ -0,0 +1,39 @@
1;
2; Exports of file WIADSS.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WIADSS.DLL
8EXPORTS
9FindFirstImportDS
10FindNextImportDS
11CloseFindContext
12LoadImportDS
13UnloadImportDS
14GetLoaderStatus
15FindImportDSByDeviceName
16; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
17??0BUFFER@@QEAA@I@Z
18; public: __cdecl BUFFER_CHAIN::BUFFER_CHAIN(void) __ptr64
19??0BUFFER_CHAIN@@QEAA@XZ
20; public: __cdecl BUFFER_CHAIN_ITEM::BUFFER_CHAIN_ITEM(unsigned int) __ptr64
21??0BUFFER_CHAIN_ITEM@@QEAA@I@Z
22; public: __cdecl BUFFER::~BUFFER(void) __ptr64
23??1BUFFER@@QEAA@XZ
24; public: __cdecl BUFFER_CHAIN::~BUFFER_CHAIN(void) __ptr64
25??1BUFFER_CHAIN@@QEAA@XZ
26; public: __cdecl BUFFER_CHAIN_ITEM::~BUFFER_CHAIN_ITEM(void) __ptr64
27??1BUFFER_CHAIN_ITEM@@QEAA@XZ
28; public: void __cdecl BUFFER::`default constructor closure'(void) __ptr64
29??_FBUFFER@@QEAAXXZ
30; public: void __cdecl BUFFER_CHAIN_ITEM::`default constructor closure'(void) __ptr64
31??_FBUFFER_CHAIN_ITEM@@QEAAXXZ
32; public: void * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
33?QueryPtr@BUFFER@@QEBAPEAXXZ
34; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
35?QuerySize@BUFFER@@QEBAIXZ
36; public: unsigned long __cdecl BUFFER_CHAIN_ITEM::QueryUsed(void)const __ptr64
37?QueryUsed@BUFFER_CHAIN_ITEM@@QEBAKXZ
38; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64
39?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z
lib/libc/mingw/lib64/wiarpc.def created+34
......@@ -0,0 +1,34 @@
1;
2; Exports of file wiarpc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wiarpc.dll
8EXPORTS
9; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
10??0BUFFER@@QEAA@I@Z
11; public: __cdecl BUFFER_CHAIN::BUFFER_CHAIN(void) __ptr64
12??0BUFFER_CHAIN@@QEAA@XZ
13; public: __cdecl BUFFER_CHAIN_ITEM::BUFFER_CHAIN_ITEM(unsigned int) __ptr64
14??0BUFFER_CHAIN_ITEM@@QEAA@I@Z
15; public: __cdecl BUFFER::~BUFFER(void) __ptr64
16??1BUFFER@@QEAA@XZ
17; public: __cdecl BUFFER_CHAIN::~BUFFER_CHAIN(void) __ptr64
18??1BUFFER_CHAIN@@QEAA@XZ
19; public: __cdecl BUFFER_CHAIN_ITEM::~BUFFER_CHAIN_ITEM(void) __ptr64
20??1BUFFER_CHAIN_ITEM@@QEAA@XZ
21; public: void __cdecl BUFFER::`default constructor closure'(void) __ptr64
22??_FBUFFER@@QEAAXXZ
23; public: void __cdecl BUFFER_CHAIN_ITEM::`default constructor closure'(void) __ptr64
24??_FBUFFER_CHAIN_ITEM@@QEAAXXZ
25; public: void * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
26?QueryPtr@BUFFER@@QEBAPEAXXZ
27; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
28?QuerySize@BUFFER@@QEBAIXZ
29; public: unsigned long __cdecl BUFFER_CHAIN_ITEM::QueryUsed(void)const __ptr64
30?QueryUsed@BUFFER_CHAIN_ITEM@@QEBAKXZ
31; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64
32?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z
33WiaEventsInitialize
34WiaEventsTerminate
lib/libc/mingw/lib64/wiaservc.def created+90
......@@ -0,0 +1,90 @@
1;
2; Exports of file wiaservc.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wiaservc.dll
8EXPORTS
9; public: __cdecl BUFFER::BUFFER(unsigned int) __ptr64
10??0BUFFER@@QEAA@I@Z
11; public: __cdecl BUFFER_CHAIN::BUFFER_CHAIN(void) __ptr64
12??0BUFFER_CHAIN@@QEAA@XZ
13; public: __cdecl BUFFER_CHAIN_ITEM::BUFFER_CHAIN_ITEM(unsigned int) __ptr64
14??0BUFFER_CHAIN_ITEM@@QEAA@I@Z
15; public: __cdecl BUFFER::~BUFFER(void) __ptr64
16??1BUFFER@@QEAA@XZ
17; public: __cdecl BUFFER_CHAIN::~BUFFER_CHAIN(void) __ptr64
18??1BUFFER_CHAIN@@QEAA@XZ
19; public: __cdecl BUFFER_CHAIN_ITEM::~BUFFER_CHAIN_ITEM(void) __ptr64
20??1BUFFER_CHAIN_ITEM@@QEAA@XZ
21; public: void __cdecl BUFFER::`default constructor closure'(void) __ptr64
22??_FBUFFER@@QEAAXXZ
23; public: void __cdecl BUFFER_CHAIN_ITEM::`default constructor closure'(void) __ptr64
24??_FBUFFER_CHAIN_ITEM@@QEAAXXZ
25; public: void * __ptr64 __cdecl BUFFER::QueryPtr(void)const __ptr64
26?QueryPtr@BUFFER@@QEBAPEAXXZ
27; public: unsigned int __cdecl BUFFER::QuerySize(void)const __ptr64
28?QuerySize@BUFFER@@QEBAIXZ
29; public: unsigned long __cdecl BUFFER_CHAIN_ITEM::QueryUsed(void)const __ptr64
30?QueryUsed@BUFFER_CHAIN_ITEM@@QEBAKXZ
31ServiceMain
32; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64
33?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z
34SvchostPushServiceGlobals
35DllEntryPoint
36DllRegisterServer
37DllUnregisterServer
38wiasCreateChildAppItem
39wiasCreateDrvItem
40wiasCreateLogInstance
41wiasCreatePropContext
42wiasDebugError
43wiasDebugTrace
44wiasDownSampleBuffer
45wiasFormatArgs
46wiasFreePropContext
47wiasGetChangedValueFloat
48wiasGetChangedValueGuid
49wiasGetChangedValueLong
50wiasGetChangedValueStr
51wiasGetChildrenContexts
52wiasGetContextFromName
53wiasGetDrvItem
54wiasGetImageInformation
55wiasGetItemType
56wiasGetPropertyAttributes
57wiasGetRootItem
58wiasIsPropChanged
59wiasParseEndorserString
60wiasPrintDebugHResult
61wiasQueueEvent
62wiasReadMultiple
63wiasReadPropBin
64wiasReadPropFloat
65wiasReadPropGuid
66wiasReadPropLong
67wiasReadPropStr
68wiasSendEndOfPage
69wiasSetItemPropAttribs
70wiasSetItemPropNames
71wiasSetPropChanged
72wiasSetPropertyAttributes
73wiasSetValidFlag
74wiasSetValidListFloat
75wiasSetValidListGuid
76wiasSetValidListLong
77wiasSetValidListStr
78wiasSetValidRangeFloat
79wiasSetValidRangeLong
80wiasUpdateScanRect
81wiasUpdateValidFormat
82wiasValidateItemProperties
83wiasWriteBufToFile
84wiasWriteMultiple
85wiasWritePageBufToFile
86wiasWritePropBin
87wiasWritePropFloat
88wiasWritePropGuid
89wiasWritePropLong
90wiasWritePropStr
lib/libc/mingw/lib64/winhvemulation.def created+6
......@@ -0,0 +1,6 @@
1LIBRARY "winhvemulation.dll"
2EXPORTS
3WHvEmulatorCreateEmulator
4WHvEmulatorDestroyEmulator
5WHvEmulatorTryIoEmulation
6WHvEmulatorTryMmioEmulation
lib/libc/mingw/lib64/winhvplatform.def created+68
......@@ -0,0 +1,68 @@
1LIBRARY "winhvplatform.dll"
2EXPORTS
3WHvAcceptPartitionMigration
4WHvAdviseGpaRange
5WHvAllocateVpciResource
6WHvCancelPartitionMigration
7WHvCancelRunVirtualProcessor
8WHvCompletePartitionMigration
9WHvCreateNotificationPort
10WHvCreatePartition
11WHvCreateTrigger
12WHvCreateVirtualProcessor
13WHvCreateVirtualProcessor2
14WHvCreateVpciDevice
15WHvDeleteNotificationPort
16WHvDeletePartition
17WHvDeleteTrigger
18WHvDeleteVirtualProcessor
19WHvDeleteVpciDevice
20WHvGetCapability
21WHvGetInterruptTargetVpSet
22WHvGetPartitionCounters
23WHvGetPartitionProperty
24WHvGetVirtualProcessorCounters
25WHvGetVirtualProcessorCpuidOutput
26WHvGetVirtualProcessorInterruptControllerState
27WHvGetVirtualProcessorInterruptControllerState2
28WHvGetVirtualProcessorRegisters
29WHvGetVirtualProcessorState
30WHvGetVirtualProcessorXsaveState
31WHvGetVpciDeviceInterruptTarget
32WHvGetVpciDeviceNotification
33WHvGetVpciDeviceProperty
34WHvMapGpaRange
35WHvMapGpaRange2
36WHvMapVpciDeviceInterrupt
37WHvMapVpciDeviceMmioRanges
38WHvPostVirtualProcessorSynicMessage
39WHvQueryGpaRangeDirtyBitmap
40WHvReadGpaRange
41WHvReadVpciDeviceRegister
42WHvRegisterPartitionDoorbellEvent
43WHvRequestInterrupt
44WHvRequestVpciDeviceInterrupt
45WHvResetPartition
46WHvResumePartitionTime
47WHvRetargetVpciDeviceInterrupt
48WHvRunVirtualProcessor
49WHvSetNotificationPortProperty
50WHvSetPartitionProperty
51WHvSetVirtualProcessorInterruptControllerState
52WHvSetVirtualProcessorInterruptControllerState2
53WHvSetVirtualProcessorRegisters
54WHvSetVirtualProcessorState
55WHvSetVirtualProcessorXsaveState
56WHvSetVpciDevicePowerState
57WHvSetupPartition
58WHvSignalVirtualProcessorSynicEvent
59WHvStartPartitionMigration
60WHvSuspendPartitionTime
61WHvTranslateGva
62WHvUnmapGpaRange
63WHvUnmapVpciDeviceInterrupt
64WHvUnmapVpciDeviceMmioRanges
65WHvUnregisterPartitionDoorbellEvent
66WHvUpdateTriggerParameters
67WHvWriteGpaRange
68WHvWriteVpciDeviceRegister
lib/libc/mingw/lib64/winipsec.def created+71
......@@ -0,0 +1,71 @@
1;
2; Exports of file WINIPSEC.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WINIPSEC.DLL
8EXPORTS
9SPDApiBufferAllocate
10SPDApiBufferFree
11AddTransportFilter
12DeleteTransportFilter
13EnumTransportFilters
14SetTransportFilter
15GetTransportFilter
16AddQMPolicy
17DeleteQMPolicy
18EnumQMPolicies
19SetQMPolicy
20GetQMPolicy
21AddMMPolicy
22DeleteMMPolicy
23EnumMMPolicies
24SetMMPolicy
25GetMMPolicy
26AddMMFilter
27DeleteMMFilter
28EnumMMFilters
29SetMMFilter
30GetMMFilter
31MatchMMFilter
32MatchTransportFilter
33GetQMPolicyByID
34GetMMPolicyByID
35AddMMAuthMethods
36DeleteMMAuthMethods
37EnumMMAuthMethods
38SetMMAuthMethods
39GetMMAuthMethods
40InitiateIKENegotiation
41QueryIKENegotiationStatus
42CloseIKENegotiationHandle
43EnumMMSAs
44QueryIKEStatistics
45DeleteMMSAs
46RegisterIKENotifyClient
47QueryIKENotifyData
48CloseIKENotifyHandle
49QueryIPSecStatistics
50EnumQMSAs
51AddTunnelFilter
52DeleteTunnelFilter
53EnumTunnelFilters
54SetTunnelFilter
55GetTunnelFilter
56MatchTunnelFilter
57OpenMMFilterHandle
58CloseMMFilterHandle
59OpenTransportFilterHandle
60CloseTransportFilterHandle
61OpenTunnelFilterHandle
62CloseTunnelFilterHandle
63EnumIPSecInterfaces
64AddSAs
65DeleteQMSAs
66GetConfigurationVariables
67SetConfigurationVariables
68QuerySpdPolicyState
69OpenIPSecPerformanceData
70CollectIPSecPerformanceData
71CloseIPSecPerformanceData
lib/libc/mingw/lib64/wlnotify.def created+38
......@@ -0,0 +1,38 @@
1;
2; Exports of file WlNotify.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WlNotify.dll
8EXPORTS
9RegisterTicketExpiredNotificationEvent
10SCardResumeCertProp
11SCardStartCertProp
12SCardStopCertProp
13SCardSuspendCertProp
14SchedEventLogOff
15SchedStartShell
16ShowNotificationBalloonW
17UnregisterTicketExpiredNotificationEvent
18SensDisconnectEvent
19SensLockEvent
20SensLogoffEvent
21SensLogonEvent
22SensPostShellEvent
23SensReconnectEvent
24SensShutdownEvent
25SensStartScreenSaverEvent
26SensStartShellEvent
27SensStartupEvent
28SensStopScreenSaverEvent
29SensUnlockEvent
30TSEventDisconnect
31TSEventLogoff
32TSEventLogon
33TSEventPostShell
34TSEventReconnect
35TSEventShutdown
36TSEventStartShell
37TSEventStartup
38TermsrvCreateTempDir
lib/libc/mingw/lib64/wlstore.def created+33
......@@ -0,0 +1,33 @@
1;
2; Exports of file WLSTORE.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WLSTORE.DLL
8EXPORTS
9DllRegisterServer
10DllUnregisterServer
11UpdateWirelessPSData
12WirelessAddPSToPolicy
13WirelessAllocPolMem
14WirelessAllocPolStr
15WirelessClearWMIStore
16WirelessClosePolicyStore
17WirelessCopyPolicyData
18WirelessCreatePolicyData
19WirelessDeletePolicyData
20WirelessEnumPolicyData
21WirelessFreeMulPolicyData
22WirelessFreePolMem
23WirelessFreePolStr
24WirelessFreePolicyData
25WirelessGPOOpenPolicyStore
26WirelessPolicyPSId
27WirelessReallocatePolMem
28WirelessReallocatePolStr
29WirelessRemovePSFromPolicy
30WirelessRemovePSFromPolicyId
31WirelessSetPSDataInPolicy
32WirelessSetPolicyData
33WirelessWriteDirectoryPolicyToWMI
lib/libc/mingw/lib64/wmi2xml.def created+16
......@@ -0,0 +1,16 @@
1;
2; Exports of file wmi2xml.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wmi2xml.dll
8EXPORTS
9CloseWbemTextSource
10OpenWbemTextSource
11TextToWbemObject
12WbemObjectToText
13DllCanUnloadNow
14DllGetClassObject
15DllRegisterServer
16DllUnregisterServer
lib/libc/mingw/lib64/wmiaprpl.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file WmiApRpl.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WmiApRpl.dll
8EXPORTS
9WmiClosePerfData
10WmiCollectPerfData
11WmiOpenPerfData
12DllRegisterServer
13DllUnregisterServer
lib/libc/mingw/lib64/wmilib.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of WMILIB.SYS
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "WMILIB.SYS"
7EXPORTS
8WmiCompleteRequest
9WmiFireEvent
10WmiSystemControl
lib/libc/mingw/lib64/wmisvc.def created+225
......@@ -0,0 +1,225 @@
1;
2; Exports of file WMIsvc.DLL
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY WMIsvc.DLL
8EXPORTS
9; public: __cdecl C9XAce::C9XAce(class C9XAce const & __ptr64) __ptr64
10??0C9XAce@@QEAA@AEBV0@@Z
11; public: __cdecl C9XAce::C9XAce(void) __ptr64
12??0C9XAce@@QEAA@XZ
13; public: __cdecl CArena::CArena(class CArena const & __ptr64) __ptr64
14??0CArena@@QEAA@AEBV0@@Z
15; public: __cdecl CArena::CArena(void) __ptr64
16??0CArena@@QEAA@XZ
17; public: __cdecl CBaseAce::CBaseAce(class CBaseAce const & __ptr64) __ptr64
18??0CBaseAce@@QEAA@AEBV0@@Z
19; public: __cdecl CBaseAce::CBaseAce(void) __ptr64
20??0CBaseAce@@QEAA@XZ
21; public: __cdecl CCheckedInCritSec::CCheckedInCritSec(class CCritSec * __ptr64) __ptr64
22??0CCheckedInCritSec@@QEAA@PEAVCCritSec@@@Z
23; public: __cdecl CCritSec::CCritSec(void) __ptr64
24??0CCritSec@@QEAA@XZ
25; public: __cdecl CEnterWbemCriticalSection::CEnterWbemCriticalSection(class CWbemCriticalSection * __ptr64,unsigned long) __ptr64
26??0CEnterWbemCriticalSection@@QEAA@PEAVCWbemCriticalSection@@K@Z
27; public: __cdecl CHaltable::CHaltable(class CHaltable const & __ptr64) __ptr64
28??0CHaltable@@QEAA@AEBV0@@Z
29; public: __cdecl CInCritSec::CInCritSec(struct _RTL_CRITICAL_SECTION * __ptr64) __ptr64
30??0CInCritSec@@QEAA@PEAU_RTL_CRITICAL_SECTION@@@Z
31; public: __cdecl CNtAce::CNtAce(void) __ptr64
32??0CNtAce@@QEAA@XZ
33; public: __cdecl CNtSid::CNtSid(void) __ptr64
34??0CNtSid@@QEAA@XZ
35; public: __cdecl CWin32DefaultArena::CWin32DefaultArena(class CWin32DefaultArena const & __ptr64) __ptr64
36??0CWin32DefaultArena@@QEAA@AEBV0@@Z
37; public: __cdecl CWin32DefaultArena::CWin32DefaultArena(void) __ptr64
38??0CWin32DefaultArena@@QEAA@XZ
39; public: virtual __cdecl CBaseAce::~CBaseAce(void) __ptr64
40??1CBaseAce@@UEAA@XZ
41; public: __cdecl CCheckedInCritSec::~CCheckedInCritSec(void) __ptr64
42??1CCheckedInCritSec@@QEAA@XZ
43; public: __cdecl CCritSec::~CCritSec(void) __ptr64
44??1CCritSec@@QEAA@XZ
45; public: __cdecl CEnterWbemCriticalSection::~CEnterWbemCriticalSection(void) __ptr64
46??1CEnterWbemCriticalSection@@QEAA@XZ
47; public: __cdecl CInCritSec::~CInCritSec(void) __ptr64
48??1CInCritSec@@QEAA@XZ
49; public: __cdecl CWin32DefaultArena::~CWin32DefaultArena(void) __ptr64
50??1CWin32DefaultArena@@QEAA@XZ
51; public: class C9XAce & __ptr64 __cdecl C9XAce::operator=(class C9XAce const & __ptr64) __ptr64
52??4C9XAce@@QEAAAEAV0@AEBV0@@Z
53; public: class CArena & __ptr64 __cdecl CArena::operator=(class CArena const & __ptr64) __ptr64
54??4CArena@@QEAAAEAV0@AEBV0@@Z
55; public: class CBaseAce & __ptr64 __cdecl CBaseAce::operator=(class CBaseAce const & __ptr64) __ptr64
56??4CBaseAce@@QEAAAEAV0@AEBV0@@Z
57; public: class CCheckedInCritSec & __ptr64 __cdecl CCheckedInCritSec::operator=(class CCheckedInCritSec const & __ptr64) __ptr64
58??4CCheckedInCritSec@@QEAAAEAV0@AEBV0@@Z
59; public: class CCritSec & __ptr64 __cdecl CCritSec::operator=(class CCritSec const & __ptr64) __ptr64
60??4CCritSec@@QEAAAEAV0@AEBV0@@Z
61; public: class CEnterWbemCriticalSection & __ptr64 __cdecl CEnterWbemCriticalSection::operator=(class CEnterWbemCriticalSection const & __ptr64) __ptr64
62??4CEnterWbemCriticalSection@@QEAAAEAV0@AEBV0@@Z
63; public: class CFlexQueue & __ptr64 __cdecl CFlexQueue::operator=(class CFlexQueue const & __ptr64) __ptr64
64??4CFlexQueue@@QEAAAEAV0@AEBV0@@Z
65; public: class CHaltable & __ptr64 __cdecl CHaltable::operator=(class CHaltable const & __ptr64) __ptr64
66??4CHaltable@@QEAAAEAV0@AEBV0@@Z
67; public: class CInCritSec & __ptr64 __cdecl CInCritSec::operator=(class CInCritSec const & __ptr64) __ptr64
68??4CInCritSec@@QEAAAEAV0@AEBV0@@Z
69; public: class CNtSecurity & __ptr64 __cdecl CNtSecurity::operator=(class CNtSecurity const & __ptr64) __ptr64
70??4CNtSecurity@@QEAAAEAV0@AEBV0@@Z
71; public: class CPersistentConfig & __ptr64 __cdecl CPersistentConfig::operator=(class CPersistentConfig const & __ptr64) __ptr64
72??4CPersistentConfig@@QEAAAEAV0@AEBV0@@Z
73; public: class CSmallArrayBlob & __ptr64 __cdecl CSmallArrayBlob::operator=(class CSmallArrayBlob const & __ptr64) __ptr64
74??4CSmallArrayBlob@@QEAAAEAV0@AEBV0@@Z
75; public: class CStaticCritSec & __ptr64 __cdecl CStaticCritSec::operator=(class CStaticCritSec const & __ptr64) __ptr64
76??4CStaticCritSec@@QEAAAEAV0@AEBV0@@Z
77; public: class CWbemCriticalSection & __ptr64 __cdecl CWbemCriticalSection::operator=(class CWbemCriticalSection const & __ptr64) __ptr64
78??4CWbemCriticalSection@@QEAAAEAV0@AEBV0@@Z
79; public: class CWin32DefaultArena & __ptr64 __cdecl CWin32DefaultArena::operator=(class CWin32DefaultArena const & __ptr64) __ptr64
80??4CWin32DefaultArena@@QEAAAEAV0@AEBV0@@Z
81; public: class MD5 & __ptr64 __cdecl MD5::operator=(class MD5 const & __ptr64) __ptr64
82??4MD5@@QEAAAEAV0@AEBV0@@Z
83; public: class Registry & __ptr64 __cdecl Registry::operator=(class Registry const & __ptr64) __ptr64
84??4Registry@@QEAAAEAV0@AEBV0@@Z
85; public: void * __ptr64 & __ptr64 __cdecl CFlexArray::operator[](int) __ptr64
86??ACFlexArray@@QEAAAEAPEAXH@Z
87; public: void * __ptr64 __cdecl CFlexArray::operator[](int)const __ptr64
88??ACFlexArray@@QEBAPEAXH@Z
89; public: void * __ptr64 __cdecl CSmallArrayBlob::operator[](int)const __ptr64
90??ACSmallArrayBlob@@QEBAPEAXH@Z
91; public: unsigned short * __ptr64 __cdecl CWStringArray::operator[](int)const __ptr64
92??ACWStringArray@@QEBAPEAGH@Z
93; const C9XAce::`vftable'
94??_7C9XAce@@6B@
95; const CArena::`vftable'
96??_7CArena@@6B@
97; const CBaseAce::`vftable'
98??_7CBaseAce@@6B@
99; const CHaltable::`vftable'
100??_7CHaltable@@6B@
101; const CNtAce::`vftable'
102??_7CNtAce@@6B@
103; const CWin32DefaultArena::`vftable'
104??_7CWin32DefaultArena@@6B@
105; public: void __cdecl CFlexArray::`default constructor closure'(void) __ptr64
106??_FCFlexArray@@QEAAXXZ
107; public: void __cdecl CFlexQueue::`default constructor closure'(void) __ptr64
108??_FCFlexQueue@@QEAAXXZ
109; public: void __cdecl CNtAcl::`default constructor closure'(void) __ptr64
110??_FCNtAcl@@QEAAXXZ
111; public: void __cdecl CWStringArray::`default constructor closure'(void) __ptr64
112??_FCWStringArray@@QEAAXXZ
113; public: int __cdecl CFlexArray::Add(void * __ptr64) __ptr64
114?Add@CFlexArray@@QEAAHPEAX@Z
115; public: virtual void * __ptr64 __cdecl CWin32DefaultArena::Alloc(unsigned __int64) __ptr64
116?Alloc@CWin32DefaultArena@@UEAAPEAX_K@Z
117; public: void __cdecl CWStringArray::Compress(void) __ptr64
118?Compress@CWStringArray@@QEAAXXZ
119; protected: void __cdecl CFlexQueue::DecrementIndex(int & __ptr64) __ptr64
120?DecrementIndex@CFlexQueue@@IEAAXAEAH@Z
121DredgeRA
122; public: void __cdecl CCheckedInCritSec::Enter(void) __ptr64
123?Enter@CCheckedInCritSec@@QEAAXXZ
124; public: void __cdecl CCritSec::Enter(void) __ptr64
125?Enter@CCritSec@@QEAAXXZ
126; public: virtual int __cdecl CWin32DefaultArena::Free(void * __ptr64) __ptr64
127?Free@CWin32DefaultArena@@UEAAHPEAX@Z
128; public: virtual unsigned long __cdecl C9XAce::GetAccessMask(void) __ptr64
129?GetAccessMask@C9XAce@@UEAAKXZ
130; public: void * __ptr64 * __ptr64 __cdecl CFlexArray::GetArrayPtr(void) __ptr64
131?GetArrayPtr@CFlexArray@@QEAAPEAPEAXXZ
132; public: void * __ptr64 const * __ptr64 __cdecl CFlexArray::GetArrayPtr(void)const __ptr64
133?GetArrayPtr@CFlexArray@@QEBAPEBQEAXXZ
134; public: void * __ptr64 * __ptr64 __cdecl CSmallArrayBlob::GetArrayPtr(void) __ptr64
135?GetArrayPtr@CSmallArrayBlob@@QEAAPEAPEAXXZ
136; public: void * __ptr64 const * __ptr64 __cdecl CSmallArrayBlob::GetArrayPtr(void)const __ptr64
137?GetArrayPtr@CSmallArrayBlob@@QEBAPEBQEAXXZ
138; public: unsigned short const * __ptr64 * __ptr64 __cdecl CWStringArray::GetArrayPtr(void) __ptr64
139?GetArrayPtr@CWStringArray@@QEAAPEAPEBGXZ
140; public: void * __ptr64 __cdecl CFlexArray::GetAt(int)const __ptr64
141?GetAt@CFlexArray@@QEBAPEAXH@Z
142; public: void * __ptr64 __cdecl CSmallArrayBlob::GetAt(int)const __ptr64
143?GetAt@CSmallArrayBlob@@QEBAPEAXH@Z
144; public: unsigned short * __ptr64 __cdecl CWStringArray::GetAt(int)const __ptr64
145?GetAt@CWStringArray@@QEBAPEAGH@Z
146; public: virtual int __cdecl C9XAce::GetFlags(void) __ptr64
147?GetFlags@C9XAce@@UEAAHXZ
148; public: long __cdecl Registry::GetLastError(void) __ptr64
149?GetLastError@Registry@@QEAAJXZ
150; public: long __cdecl CWbemCriticalSection::GetLockCount(void) __ptr64
151?GetLockCount@CWbemCriticalSection@@QEAAJXZ
152; public: unsigned long __cdecl CWbemCriticalSection::GetOwningThreadId(void) __ptr64
153?GetOwningThreadId@CWbemCriticalSection@@QEAAKXZ
154; public: struct _ACCESS_ALLOWED_ACE * __ptr64 __cdecl CNtAce::GetPtr(void) __ptr64
155?GetPtr@CNtAce@@QEAAPEAU_ACCESS_ALLOWED_ACE@@XZ
156; public: struct _ACL * __ptr64 __cdecl CNtAcl::GetPtr(void) __ptr64
157?GetPtr@CNtAcl@@QEAAPEAU_ACL@@XZ
158; public: void * __ptr64 __cdecl CNtSecurityDescriptor::GetPtr(void) __ptr64
159?GetPtr@CNtSecurityDescriptor@@QEAAPEAXXZ
160; public: void * __ptr64 __cdecl CNtSid::GetPtr(void) __ptr64
161?GetPtr@CNtSid@@QEAAPEAXXZ
162; public: int __cdecl CFlexQueue::GetQueueSize(void)const __ptr64
163?GetQueueSize@CFlexQueue@@QEBAHXZ
164; public: long __cdecl CWbemCriticalSection::GetRecursionCount(void) __ptr64
165?GetRecursionCount@CWbemCriticalSection@@QEAAJXZ
166; public: unsigned long __cdecl CNtAce::GetSize(void) __ptr64
167?GetSize@CNtAce@@QEAAKXZ
168; public: virtual unsigned long __cdecl C9XAce::GetStatus(void) __ptr64
169?GetStatus@C9XAce@@UEAAKXZ
170; public: virtual unsigned long __cdecl CNtAce::GetStatus(void) __ptr64
171?GetStatus@CNtAce@@UEAAKXZ
172; public: unsigned long __cdecl CNtAcl::GetStatus(void) __ptr64
173?GetStatus@CNtAcl@@QEAAKXZ
174; public: unsigned long __cdecl CNtSecurityDescriptor::GetStatus(void) __ptr64
175?GetStatus@CNtSecurityDescriptor@@QEAAKXZ
176; public: unsigned long __cdecl CNtSid::GetStatus(void) __ptr64
177?GetStatus@CNtSid@@QEAAKXZ
178; public: virtual int __cdecl C9XAce::GetType(void) __ptr64
179?GetType@C9XAce@@UEAAHXZ
180; protected: void __cdecl CFlexQueue::IncrementIndex(int & __ptr64) __ptr64
181?IncrementIndex@CFlexQueue@@IEAAXAEAH@Z
182; public: int __cdecl CCheckedInCritSec::IsEntered(void) __ptr64
183?IsEntered@CCheckedInCritSec@@QEAAHXZ
184; public: int __cdecl CEnterWbemCriticalSection::IsEntered(void) __ptr64
185?IsEntered@CEnterWbemCriticalSection@@QEAAHXZ
186IsShutDown
187; public: bool __cdecl CNtSid::IsUser(void) __ptr64
188?IsUser@CNtSid@@QEAA_NXZ
189; public: int __cdecl CNtAcl::IsValid(void) __ptr64
190?IsValid@CNtAcl@@QEAAHXZ
191; public: int __cdecl CNtSecurityDescriptor::IsValid(void) __ptr64
192?IsValid@CNtSecurityDescriptor@@QEAAHXZ
193; public: int __cdecl CNtSid::IsValid(void) __ptr64
194?IsValid@CNtSid@@QEAAHXZ
195; public: void __cdecl CCheckedInCritSec::Leave(void) __ptr64
196?Leave@CCheckedInCritSec@@QEAAXXZ
197; public: void __cdecl CCritSec::Leave(void) __ptr64
198?Leave@CCritSec@@QEAAXXZ
199MoveToAlone
200MoveToShared
201; public: virtual void * __ptr64 __cdecl CWin32DefaultArena::Realloc(void * __ptr64,unsigned __int64) __ptr64
202?Realloc@CWin32DefaultArena@@UEAAPEAXPEAX_K@Z
203ServiceMain
204; public: void __cdecl CFlexArray::SetAt(int,void * __ptr64) __ptr64
205?SetAt@CFlexArray@@QEAAXHPEAX@Z
206; public: virtual void __cdecl C9XAce::SetFlags(long) __ptr64
207?SetFlags@C9XAce@@UEAAXJ@Z
208; public: virtual void __cdecl CNtAce::SetFlags(long) __ptr64
209?SetFlags@CNtAce@@UEAAXJ@Z
210; public: void __cdecl CFlexArray::SetSize(int) __ptr64
211?SetSize@CFlexArray@@QEAAXH@Z
212; public: int __cdecl CFlexArray::Size(void)const __ptr64
213?Size@CFlexArray@@QEBAHXZ
214; public: int __cdecl CSmallArrayBlob::Size(void)const __ptr64
215?Size@CSmallArrayBlob@@QEBAHXZ
216; public: int __cdecl CWStringArray::Size(void)const __ptr64
217?Size@CWStringArray@@QEBAHXZ
218; public: void * __ptr64 __cdecl CFlexQueue::Unqueue(void) __ptr64
219?Unqueue@CFlexQueue@@QEAAPEAXXZ
220; public: static void __cdecl CWin32DefaultArena::WbemSysFreeString(unsigned short * __ptr64)
221?WbemSysFreeString@CWin32DefaultArena@@SAXPEAG@Z
222; public: bool __cdecl CHaltable::isValid(void) __ptr64
223?isValid@CHaltable@@QEAA_NXZ
224DllRegisterServer
225DllUnregisterServer
lib/libc/mingw/lib64/wow64.def created+32
......@@ -0,0 +1,32 @@
1;
2; Exports of file wow64.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wow64.dll
8EXPORTS
9Wow64AllocateHeap
10Wow64AllocateTemp
11Wow64ApcRoutine
12Wow64Assert
13Wow64CheckIfNXEnabled
14Wow64EmulateAtlThunk
15Wow64ExecuteFlags DATA
16Wow64FreeHeap
17Wow64GetWow64ImageOption
18Wow64KiUserCallbackDispatcher
19Wow64LdrpInitialize
20Wow64LogPrint
21Wow64OpenConfigKey
22Wow64PrepareForDebuggerAttach
23Wow64PrepareForException
24Wow64RaiseException
25Wow64ShallowThunkAllocObjectAttributes32TO64_FNC
26Wow64ShallowThunkAllocSecurityQualityOfService32TO64_FNC
27Wow64ShallowThunkSIZE_T32TO64
28Wow64ShallowThunkSIZE_T64TO32
29Wow64StartupContextToContextX86
30Wow64SystemService
31Wow64SystemServiceEx
32pfnWow64PerfMonitorCall DATA
lib/libc/mingw/lib64/wow64cpu.def created+29
......@@ -0,0 +1,29 @@
1;
2; Exports of file wow64cpu.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wow64cpu.dll
8EXPORTS
9CpuFlushInstructionCache
10CpuGetContext
11CpuGetStackPointer
12CpuInitializeStartupContext
13CpuNotifyDllLoad
14CpuNotifyDllUnload
15CpuPrepareForDebuggerAttach
16CpuProcessDebugEvent
17CpuProcessInit
18CpuProcessTerm
19CpuResetFloatingPoint
20CpuResetToConsistentState
21CpuSetContext
22CpuSetInstructionPointer
23CpuSetStackPointer
24CpuSimulate
25CpuSuspendThread
26CpuThreadInit
27CpuThreadTerm
28TurboDispatchJumpAddressEnd
29TurboDispatchJumpAddressStart
lib/libc/mingw/lib64/wow64mib.def created+13
......@@ -0,0 +1,13 @@
1;
2; Exports of file wow64mib.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wow64mib.dll
8EXPORTS
9SnmpExtensionClose
10SnmpExtensionInit
11SnmpExtensionInitEx
12SnmpExtensionQuery
13SnmpExtensionTrap
lib/libc/mingw/lib64/wow64win.def created+12
......@@ -0,0 +1,12 @@
1;
2; Exports of file wow64win.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wow64win.dll
8EXPORTS
9Win32kCallbackTable
10ptcbc DATA
11sdwhcon DATA
12sdwhwin32 DATA
lib/libc/mingw/lib64/wshatm.def created+24
......@@ -0,0 +1,24 @@
1;
2; Exports of file wshatm.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY wshatm.dll
8EXPORTS
9WSHAddressToString
10WSHEnumProtocols
11WSHGetBroadcastSockaddr
12WSHGetProviderGuid
13WSHGetSockaddrType
14WSHGetSocketInformation
15WSHGetWSAProtocolInfo
16WSHGetWildcardSockaddr
17WSHGetWinsockMapping
18WSHIoctl
19WSHJoinLeaf
20WSHNotify
21WSHOpenSocket
22WSHOpenSocket2
23WSHSetSocketInformation
24WSHStringToAddress
lib/libc/mingw/lib64/x3daudio1_2.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_2.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_2.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib64/x3daudio1_3.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_3.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_3.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib64/x3daudio1_4.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_4.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_4.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib64/x3daudio1_5.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_5.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_5.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib64/x3daudio1_6.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_6.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_6.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib64/x3daudio1_7.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of X3DAudio1_7.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudio1_7.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
lib/libc/mingw/lib64/x3daudiod1_7.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of X3DAudioD1_7.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "X3DAudioD1_7.dll"
7EXPORTS
8X3DAudioCalculate
9X3DAudioInitialize
10X3DAudioSetValidationCallback
lib/libc/mingw/lib64/xapofx1_0.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_0.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_0.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib64/xapofx1_1.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_1.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_1.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib64/xapofx1_2.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_2.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_2.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib64/xapofx1_3.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_3.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_3.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib64/xapofx1_4.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_4.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_4.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib64/xapofx1_5.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFX1_5.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFX1_5.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib64/xapofxd1_5.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of XAPOFXd1_5.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XAPOFXd1_5.dll"
7EXPORTS
8CreateFX
lib/libc/mingw/lib64/xinput1_1.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of XINPUT1_1.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT1_1.dll"
7EXPORTS
8DllMain
9XInputEnable
10XInputGetCapabilities
11XInputGetDSoundAudioDeviceGuids
12XInputGetState
13XInputSetState
lib/libc/mingw/lib64/xinput1_2.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of XINPUT1_2.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT1_2.dll"
7EXPORTS
8DllMain
9XInputEnable
10XInputGetCapabilities
11XInputGetDSoundAudioDeviceGuids
12XInputGetState
13XInputSetState
lib/libc/mingw/lib64/xinput1_3.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of XINPUT1_3.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT1_3.dll"
7EXPORTS
8DllMain
9XInputGetState
10XInputSetState
11XInputGetCapabilities
12XInputEnable
13XInputGetDSoundAudioDeviceGuids
14XInputGetBatteryInformation
15XInputGetKeystroke
16;ord_100 @100
17;ord_101 @101
18;ord_102 @102
19;ord_103 @103
lib/libc/mingw/lib64/xinput9_1_0.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of XINPUT9_1_0.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008
5;
6LIBRARY "XINPUT9_1_0.dll"
7EXPORTS
8;DllMain
9XInputGetCapabilities
10XInputGetDSoundAudioDeviceGuids
11XInputGetState
12XInputSetState
lib/libc/mingw/lib64/zoneoc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Exports of file ZoneOC.dll
3;
4; Autogenerated by gen_exportdef
5; Written by Kai Tietz, 2007
6;
7LIBRARY ZoneOC.dll
8EXPORTS
9ZoneSetupProc
lib/libc/mingw/libarm32/acppage.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of acppage.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "acppage.dll"
7EXPORTS
8GetExeFromLnk
lib/libc/mingw/libarm32/acproxy.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of ACPROXY.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ACPROXY.dll"
7EXPORTS
8PerformAutochkOperations
lib/libc/mingw/libarm32/actionqueue.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of ActionQueue.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ActionQueue.dll"
7EXPORTS
8GenerateActionQueue
9ProcessActionQueue
lib/libc/mingw/libarm32/adhapi.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of AdhApi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AdhApi.dll"
7EXPORTS
8AdhEngineClose
9AdhEngineOpen
10AdhGetConfig
11AdhGetEvidenceCollectorResult
12AdhStatusEventSubscribe
13AdhStatusEventUnsubscribe
lib/libc/mingw/libarm32/adhsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of adhsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "adhsvc.dll"
7EXPORTS
8SubServiceScmNotification
9SubServiceStart
10SubServiceStop
lib/libc/mingw/libarm32/admtmpl.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of ADMTMPL.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ADMTMPL.DLL"
7EXPORTS
8CreateCmtStoreObject
9CreateParserObject
lib/libc/mingw/libarm32/adsldpc.def created+182
......@@ -0,0 +1,182 @@
1;
2; Definition file of adsldpc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "adsldpc.dll"
7EXPORTS
8??0CLexer@@QAA@XZ
9??1CLexer@@QAA@XZ
10ADSIPrint
11ADsAbandonSearch
12ADsCloseSearchHandle
13ADsCreateAttributeDefinition
14ADsCreateClassDefinition
15ADsCreateDSObject
16ADsCreateDSObjectExt
17ADsDeleteAttributeDefinition
18ADsDeleteClassDefinition
19ADsDeleteDSObject
20ADsEnumAttributes
21ADsEnumClasses
22ADsExecuteSearch
23ADsFreeColumn
24ADsGetColumn
25ADsGetFirstRow
26ADsGetNextColumnName
27ADsGetNextRow
28ADsGetObjectAttributes
29ADsGetPreviousRow
30ADsHelperGetCurrentRowMessage
31ADsObject
32ADsSetObjectAttributes
33ADsSetSearchPreference
34ADsWriteAttributeDefinition
35ADsWriteClassDefinition
36AdsTypeToLdapTypeCopyConstruct
37AdsTypeToLdapTypeCopyDNWithBinary
38AdsTypeToLdapTypeCopyDNWithString
39AdsTypeToLdapTypeCopyGeneralizedTime
40AdsTypeToLdapTypeCopyTime
41BerBvFree
42BerEncodingQuotaControl
43BuildADsParentPath
44BuildADsParentPathFromObjectInfo2
45BuildADsParentPathFromObjectInfo
46BuildADsPathFromLDAPPath2
47BuildADsPathFromLDAPPath
48BuildADsPathFromParent
49BuildLDAPPathFromADsPath2
50BuildLDAPPathFromADsPath
51ChangeSeparator
52Component
53ConvertSidToString
54ConvertSidToU2Trustee
55ConvertU2TrusteeToSid
56FindEntryInSearchTable
57FindSearchTableIndex
58FreeObjectInfo
59GetDefaultServer
60GetDisplayName
61GetDomainDNSNameForDomain
62GetLDAPTypeName
63?GetNextToken@CLexer@@QAAJPAGPAK@Z
64GetServerAndPort
65GetSyntaxOfAttribute
66InitObjectInfo
67?InitializePath@CLexer@@QAAJPAG@Z
68IsGCNamespace
69LdapAddExtS
70LdapAddS
71LdapAttributeFree
72LdapCacheAddRef
73LdapCloseObject
74LdapCompareExt
75LdapControlFree
76LdapControlsFree
77LdapCountEntries
78LdapCrackUserDNtoNTLMUser2
79LdapCreatePageControl
80LdapDeleteExtS
81LdapDeleteS
82LdapFirstAttribute
83LdapFirstEntry
84LdapGetDn
85LdapGetNextPageS
86LdapGetSchemaObjectCount
87LdapGetSubSchemaSubEntryPath
88LdapGetSyntaxIdOfAttribute
89LdapGetSyntaxOfAttributeOnServer
90LdapGetValues
91LdapGetValuesLen
92LdapInitializeSearchPreferences
93LdapIsClassNameValidOnServer
94LdapMakeSchemaCacheObsolete
95LdapMemFree
96LdapModDnS
97LdapModifyExtS
98LdapModifyS
99LdapMsgFree
100LdapNextAttribute
101LdapNextEntry
102LdapOpenObject2
103LdapOpenObject
104LdapParsePageControl
105LdapParseResult
106LdapReadAttribute2
107LdapReadAttribute
108LdapReadAttributeFast
109LdapRenameExtS
110LdapResult
111LdapSearch
112LdapSearchAbandonPage
113LdapSearchExtS
114LdapSearchInitPage
115LdapSearchS
116LdapSearchST
117LdapTypeBinaryToString
118LdapTypeCopyConstruct
119LdapTypeFreeLdapModList
120LdapTypeFreeLdapModObject
121LdapTypeFreeLdapObjects
122LdapTypeToAdsTypeDNWithBinary
123LdapTypeToAdsTypeDNWithString
124LdapTypeToAdsTypeGeneralizedTime
125LdapTypeToAdsTypeUTCTime
126LdapValueFree
127LdapValueFreeLen
128LdapcKeepHandleAround
129LdapcSetStickyServer
130PathName
131ReadPagingSupportedAttr
132ReadSecurityDescriptorControlType
133ReadServerSupportsIsADAMControl
134ReadServerSupportsIsADControl
135SchemaAddRef
136SchemaClose
137SchemaGetClassInfo
138SchemaGetClassInfoByIndex
139SchemaGetObjectCount
140SchemaGetPropertyInfo
141SchemaGetPropertyInfoByIndex
142SchemaGetStringsFromStringTable
143SchemaGetSyntaxOfAttribute
144SchemaIsClassAContainer
145SchemaOpen
146?SetAtDisabler@CLexer@@QAAXH@Z
147?SetExclaimnationDisabler@CLexer@@QAAXH@Z
148?SetFSlashDisabler@CLexer@@QAAXH@Z
149SortAndRemoveDuplicateOIDs
150UnMarshallLDAPToLDAPSynID
151intcmp
152ADSIAbandonSearch
153ADSICloseDSObject
154ADSICloseSearchHandle
155ADSICreateDSObject
156ADSIDeleteDSObject
157ADSIExecuteSearch
158ADSIFreeColumn
159ADSIGetColumn
160ADSIGetFirstRow
161ADSIGetNextColumnName
162ADSIGetNextRow
163ADSIGetObjectAttributes
164ADSIGetPreviousRow
165ADSIModifyRdn
166ADSIOpenDSObject
167ADSISetObjectAttributes
168ADSISetSearchPreference
169ADsDecodeBinaryData
170ADsEncodeBinaryData
171ADsGetLastError
172ADsSetLastError
173AdsTypeFreeAdsObjects
174AllocADsMem
175AllocADsStr
176FreeADsMem
177FreeADsStr
178LdapTypeToAdsTypeCopyConstruct
179MapADSTypeToLDAPType
180MapLDAPTypeToADSType
181ReallocADsMem
182ReallocADsStr
lib/libc/mingw/libarm32/aecache.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of AECache.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AECache.dll"
7EXPORTS
8AeCachePrep
lib/libc/mingw/libarm32/aeinv.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of aeinv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "aeinv.dll"
7EXPORTS
8CollectMatchingInfo
9CollectMatchingInformation
10CreateAppxPackageInventory
11CreateSoftwareInventory
12SetFileExtensionList
13UpdateSoftwareInventoryW
lib/libc/mingw/libarm32/aelupsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of AELUPSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AELUPSVC.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/aepdu.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of AEPDU.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AEPDU.dll"
7EXPORTS
8AePduRunUpdateW
lib/libc/mingw/libarm32/aepic.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of AEPIC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AEPIC.dll"
7EXPORTS
8PicAmiClose
9PicAmiInitialize
10PicFreeFileInfo
11PicRetrieveFileInfo
12PicRetrieveFileInfoAppx
lib/libc/mingw/libarm32/apphlpdm.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of Apphlpdm.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Apphlpdm.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/appinfo.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of appinfo.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "appinfo.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/apprepapi.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of apprepapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "apprepapi.dll"
7EXPORTS
8AppRepComputeImageHash
9AppRepComputeSignatureInfo
10AppRepFreeAttributeLib
11AppRepInitializeAttributeLib
12AppRepParameterCleanup
13RepGetFileInformation
14RepGetFileReputation
15RepInformUserAction
lib/libc/mingw/libarm32/appsruprov.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of AppSruProv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppSruProv.dll"
7EXPORTS
8PsmQueryApplicationPerformanceInformation
9PsmQueryQuotaInformation
10SruInitializeProvider
11SruUninitializeProvider
lib/libc/mingw/libarm32/appxalluserstore.def created+39
......@@ -0,0 +1,39 @@
1;
2; Definition file of AppXAllUserStore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppXAllUserStore.dll"
7EXPORTS
8AddPackageToRegistryStore
9AddStagedPackageToRegistryStore
10CheckPackagePreinstallPolicy
11CommitTakeOwnershipSession
12DeleteAllPackagesFromMainPackageArray
13DeleteAllPackagesFromPackageArray
14DeletePackageInfo
15DeleteUserRegistryKeyFromAllUserStore
16DidAppSurviveOSUpgradeForUser
17DoesPerUserStoreExist
18FamilyMonikerStringToSid
19FindExistingVersionInRegistryStore
20GetAllNonInboxPackagesFromRegistryStore
21GetAllPackagesToBeInstalledForUser
22GetAllStagedPackagesForMainPackageFromRegistryStore
23GetAppxProvisionFactory
24HasStagedPackages
25IsEnterprisePolicyEnabled
26IsInboxPackage
27IsNonInboxAllUserPackage
28IsPackageInUpgradeKey
29IsSystemInAuditBoot
30MarkStatusOfMainPackageForUser
31PackageFamilyNameFromId
32PackageIdBasicFromFullName
33PackageSidToPackageCapabilitySid
34RemovePackageFromRegistryStore
35RemoveStagedPackageFromRegistryStore
36RollbackTakeOwnershipSession
37TakeOwnershipOnFolder
38UpdateFrameworkPackageInRegistryStore
39UpdatePackageInRegistryStore
lib/libc/mingw/libarm32/appxapplicabilityengine.def created+987
......@@ -0,0 +1,987 @@
1;
2; Definition file of AppxApplicabilityEngine.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppxApplicabilityEngine.dll"
7EXPORTS
8??0Atom@Resources@Microsoft@@QAA@HH@Z
9??0Atom@Resources@Microsoft@@QAA@T_DEF_ATOM@@@Z
10??0Atom@Resources@Microsoft@@QAA@T_DEF_ATOM_SMALL@@@Z
11??0Atom@Resources@Microsoft@@QAA@XZ
12??0AtomIndexedDictionaryBase@Build@Resources@Microsoft@@QAA@ABV0123@@Z
13??0AtomPoolGroup@Resources@Microsoft@@QAA@ABV012@@Z
14??0BaseAtomLinkedFile@Resources@Microsoft@@QAA@ABV012@@Z
15??0BaseFile@Resources@Microsoft@@QAA@ABV012@@Z
16??0BaseFileSectionResult@Resources@Microsoft@@QAA@ABV012@@Z
17??0DataBlobBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
18??0DataItemsBuildInstanceReference@Build@Resources@Microsoft@@QAA@ABV0123@@Z
19??0DataItemsSectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
20??0DataSectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
21??0DecisionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
22??0DecisionInfoBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
23??0DecisionInfoFileSection@Resources@Microsoft@@QAA@ABV012@@Z
24??0DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
25??0DecisionInfoSectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
26??0DecisionResult@Resources@Microsoft@@QAA@ABV012@@Z
27??0DefChecksum@Resources@Microsoft@@QAA@XZ
28??0DefObject@Resources@Microsoft@@QAA@XZ
29??0DefStatus@Resources@Microsoft@@QAA@ABV012@@Z
30??0DefStatus@Resources@Microsoft@@QAA@XZ
31??0DefStatusWrapper@Resources@Microsoft@@QAA@ABV012@@Z
32??0DefStatusWrapper@Resources@Microsoft@@QAA@PAU_DEFSTATUS@@@Z
33??0EnvironmentCollectionBase@Resources@Microsoft@@IAA@XZ
34??0EnvironmentCollectionBase@Resources@Microsoft@@QAA@ABV012@@Z
35??0EnvironmentReference@Resources@Microsoft@@IAA@XZ
36??0EnvironmentReference@Resources@Microsoft@@QAA@ABV012@@Z
37??0EnvironmentReferenceBuilder@Build@Resources@Microsoft@@IAA@XZ
38??0EnvironmentReferenceBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
39??0ExternalFileStaticDataInstanceReference@Build@Resources@Microsoft@@QAA@ABV0123@@Z
40??0FileAtomPool@Resources@Microsoft@@QAA@ABV012@@Z
41??0FileAtomPoolBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
42??0FileAtoms@Resources@Microsoft@@QAA@XZ
43??0FileBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
44??0FileFileList@Resources@Microsoft@@QAA@ABV012@@Z
45??0FileInfo@Build@Resources@Microsoft@@QAA@ABV0123@@Z
46??0FileInfoPrivateData@Build@Resources@Microsoft@@QAA@ABV0123@@Z
47??0FileListBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
48??0FileSectionBase@Resources@Microsoft@@QAA@ABV012@@Z
49??0FileSectionBuildInstanceReference@Build@Resources@Microsoft@@QAA@ABV0123@@Z
50??0FolderInfo@Build@Resources@Microsoft@@QAA@ABV0123@@Z
51??0HNamesNode@Build@Resources@Microsoft@@QAA@ABV0123@@Z
52??0HierarchicalName@Build@Resources@Microsoft@@QAA@PBVHierarchicalNamesConfig@23@@Z
53??0HierarchicalNameSegment@Build@Resources@Microsoft@@QAA@PBVHierarchicalNamesConfig@23@@Z
54??0HierarchicalNames@Resources@Microsoft@@QAA@ABV012@@Z
55??0HierarchicalNamesBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
56??0HierarchicalNamesConfig@Resources@Microsoft@@IAA@XZ
57??0HierarchicalNamesConfig@Resources@Microsoft@@QAA@ABV012@@Z
58??0HierarchicalSchema@Resources@Microsoft@@QAA@ABV012@@Z
59??0HierarchicalSchemaReference@Resources@Microsoft@@QAA@ABV012@@Z
60??0HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
61??0HierarchicalSchemaVersionInfo@Resources@Microsoft@@QAA@ABV012@@Z
62??0HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
63??0IAtomPool@Resources@Microsoft@@QAA@ABV012@@Z
64??0IAtomPool@Resources@Microsoft@@QAA@XZ
65??0IAtomPoolWriter@Resources@Microsoft@@QAA@ABV012@@Z
66??0IAtomPoolWriter@Resources@Microsoft@@QAA@XZ
67??0IBuildInstanceReference@Build@Resources@Microsoft@@QAA@ABV0123@@Z
68??0IBuildInstanceReference@Build@Resources@Microsoft@@QAA@XZ
69??0ICondition@Resources@Microsoft@@QAA@ABV012@@Z
70??0ICondition@Resources@Microsoft@@QAA@XZ
71??0IDecision@Resources@Microsoft@@QAA@ABV012@@Z
72??0IDecision@Resources@Microsoft@@QAA@XZ
73??0IDecisionInfo@Resources@Microsoft@@QAA@ABV012@@Z
74??0IDecisionInfo@Resources@Microsoft@@QAA@XZ
75??0IDefStatus@Resources@Microsoft@@QAA@ABV012@@Z
76??0IDefStatus@Resources@Microsoft@@QAA@XZ
77??0IEnvironment@Resources@Microsoft@@QAA@ABV012@@Z
78??0IEnvironment@Resources@Microsoft@@QAA@XZ
79??0IEnvironmentCollection@Resources@Microsoft@@IAA@XZ
80??0IEnvironmentCollection@Resources@Microsoft@@QAA@ABV012@@Z
81??0IEnvironmentVersionInfo@Resources@Microsoft@@QAA@ABV012@@Z
82??0IEnvironmentVersionInfo@Resources@Microsoft@@QAA@XZ
83??0IFileList@Resources@Microsoft@@IAA@XZ
84??0IFileList@Resources@Microsoft@@QAA@ABV012@@Z
85??0IFileSection@Resources@Microsoft@@QAA@ABV012@@Z
86??0IFileSection@Resources@Microsoft@@QAA@XZ
87??0IFileSectionResolver@Resources@Microsoft@@QAA@ABV012@@Z
88??0IFileSectionResolver@Resources@Microsoft@@QAA@XZ
89??0IHNamesGlobalNodes@Build@Resources@Microsoft@@QAA@ABV0123@@Z
90??0IHNamesGlobalNodes@Build@Resources@Microsoft@@QAA@XZ
91??0IHierarchicalNames@Resources@Microsoft@@QAA@ABV012@@Z
92??0IHierarchicalNames@Resources@Microsoft@@QAA@XZ
93??0IHierarchicalSchema@Resources@Microsoft@@QAA@ABV012@@Z
94??0IHierarchicalSchema@Resources@Microsoft@@QAA@XZ
95??0IHierarchicalSchemaDescription@Resources@Microsoft@@QAA@ABV012@@Z
96??0IHierarchicalSchemaDescription@Resources@Microsoft@@QAA@XZ
97??0IHierarchicalSchemaVersionInfo@Resources@Microsoft@@QAA@ABV012@@Z
98??0IHierarchicalSchemaVersionInfo@Resources@Microsoft@@QAA@XZ
99??0IMrmFile@Resources@Microsoft@@QAA@ABV012@@Z
100??0IMrmFile@Resources@Microsoft@@QAA@XZ
101??0INamedResourceBase@Resources@Microsoft@@QAA@ABV012@@Z
102??0INamedResourceBase@Resources@Microsoft@@QAA@XZ
103??0IQualifier@Resources@Microsoft@@QAA@ABV012@@Z
104??0IQualifier@Resources@Microsoft@@QAA@XZ
105??0IQualifierSet@Resources@Microsoft@@QAA@ABV012@@Z
106??0IQualifierSet@Resources@Microsoft@@QAA@XZ
107??0IQualifierType@Resources@Microsoft@@QAA@ABV012@@Z
108??0IQualifierType@Resources@Microsoft@@QAA@XZ
109??0IQualifierValueProvider@Resources@Microsoft@@QAA@ABV012@@Z
110??0IQualifierValueProvider@Resources@Microsoft@@QAA@XZ
111??0IResourceCandidateBase@Resources@Microsoft@@QAA@ABV012@@Z
112??0IResourceCandidateBase@Resources@Microsoft@@QAA@XZ
113??0IResourceMapBase@Resources@Microsoft@@QAA@ABV012@@Z
114??0IResourceMapBase@Resources@Microsoft@@QAA@XZ
115??0IResourceMapCollection@Resources@Microsoft@@QAA@ABV012@@Z
116??0IResourceMapCollection@Resources@Microsoft@@QAA@XZ
117??0ISchemaCollection@Resources@Microsoft@@QAA@ABV012@@Z
118??0ISchemaCollection@Resources@Microsoft@@QAA@XZ
119??0ISchemaVersionInfo@Resources@Microsoft@@QAA@ABV012@@Z
120??0ISchemaVersionInfo@Resources@Microsoft@@QAA@XZ
121??0ISectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
122??0ISectionBuilder@Build@Resources@Microsoft@@QAA@XZ
123??0IStringResult@Resources@Microsoft@@QAA@ABV012@@Z
124??0IStringResult@Resources@Microsoft@@QAA@XZ
125??0IUnifiedResourceView@Resources@Microsoft@@QAA@ABV012@@Z
126??0IUnifiedResourceView@Resources@Microsoft@@QAA@XZ
127??0ItemInfo@Build@Resources@Microsoft@@QAA@ABV0123@@Z
128??0MrmBuildConfiguration@Build@Resources@Microsoft@@IAA@T_DEFFILE_MAGIC@@I@Z
129??0MrmBuildConfiguration@Build@Resources@Microsoft@@QAA@ABV0123@@Z
130??0MrmFile@Resources@Microsoft@@QAA@ABV012@@Z
131??0NamedResourceResult@Resources@Microsoft@@QAA@ABV012@@Z
132??0PriDescriptor@Resources@Microsoft@@QAA@ABV012@@Z
133??0PriFile@Resources@Microsoft@@QAA@ABV012@@Z
134??0PriFileBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
135??0PriFileMerger@Build@Resources@Microsoft@@QAA@ABV0123@@Z
136??0PriMapMerger@Build@Resources@Microsoft@@QAA@XZ
137??0PriSectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
138??0QualifierResult@Resources@Microsoft@@QAA@ABV012@@Z
139??0QualifierSetResult@Resources@Microsoft@@QAA@ABV012@@Z
140??0RemapInfo@Resources@Microsoft@@QAA@ABV012@@Z
141??0RemapUInt16@Resources@Microsoft@@QAA@ABV012@@Z
142??0ResourceCandidateResult@Resources@Microsoft@@QAA@ABV012@@Z
143??0ResourceMapBase@Resources@Microsoft@@QAA@ABV012@@Z
144??0ResourceMapSectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
145??0ResourceMapSubtree@Resources@Microsoft@@QAA@ABV012@@Z
146??0ReverseFileMap@Resources@Microsoft@@QAA@ABV012@@Z
147??0ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@QAA@ABV0123@@Z
148??0ScopeInfo@Build@Resources@Microsoft@@QAA@ABV0123@@Z
149??0StandalonePriFile@Resources@Microsoft@@QAA@ABV012@@Z
150??0StaticAtomPool@Resources@Microsoft@@IAA@PBQBGHPBGW4_DEFCOMPAREOPTIONS@@@Z
151??0StaticAtomPool@Resources@Microsoft@@QAA@ABV012@@Z
152??0StaticHierarchicalSchemaDescription@Resources@Microsoft@@QAA@ABV012@@Z
153??0StringResult@Resources@Microsoft@@QAA@ABV012@@Z
154??0StringResultWrapper@Resources@Microsoft@@IAA@PAU_DEFSTRINGRESULT@@@Z
155??0StringResultWrapper@Resources@Microsoft@@QAA@ABV012@@Z
156??0StringResultWrapper@Resources@Microsoft@@QAA@PAU_DEFSTRINGRESULT@@PAVIDefStatus@12@@Z
157??0WindowsRuntimeEnvironment@Resources@Microsoft@@IAA@XZ
158??0WindowsRuntimeEnvironment@Resources@Microsoft@@QAA@ABV012@@Z
159??0WriteableStringPool@Build@Resources@Microsoft@@QAA@ABV0123@@Z
160??1BaseFileSectionResult@Resources@Microsoft@@UAA@XZ
161??1BuilderCandidateResult@Build@Resources@Microsoft@@QAA@XZ
162??1DataItemsBuildInstanceReference@Build@Resources@Microsoft@@UAA@XZ
163??1DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UAA@XZ
164??1DefObject@Resources@Microsoft@@QAA@XZ
165??1DefStatus@Resources@Microsoft@@UAA@XZ
166??1DefStatusWrapper@Resources@Microsoft@@UAA@XZ
167??1EnvironmentCollectionBase@Resources@Microsoft@@MAA@XZ
168??1EnvironmentReference@Resources@Microsoft@@QAA@XZ
169??1EnvironmentReferenceBuilder@Build@Resources@Microsoft@@QAA@XZ
170??1ExternalFileStaticDataInstanceReference@Build@Resources@Microsoft@@UAA@XZ
171??1FileAtoms@Resources@Microsoft@@QAA@XZ
172??1FileFileList@Resources@Microsoft@@UAA@XZ
173??1FileSectionBuildInstanceReference@Build@Resources@Microsoft@@UAA@XZ
174??1HNamesNode@Build@Resources@Microsoft@@UAA@XZ
175??1HierarchicalName@Build@Resources@Microsoft@@QAA@XZ
176??1HierarchicalNameSegment@Build@Resources@Microsoft@@QAA@XZ
177??1HierarchicalSchemaReference@Resources@Microsoft@@UAA@XZ
178??1HierarchicalSchemaVersionInfo@Resources@Microsoft@@QAA@XZ
179??1HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@QAA@XZ
180??1IAtomPool@Resources@Microsoft@@UAA@XZ
181??1IAtomPoolWriter@Resources@Microsoft@@UAA@XZ
182??1IBuildInstanceReference@Build@Resources@Microsoft@@UAA@XZ
183??1ICondition@Resources@Microsoft@@QAA@XZ
184??1IDecision@Resources@Microsoft@@QAA@XZ
185??1IDecisionInfo@Resources@Microsoft@@QAA@XZ
186??1IDefStatus@Resources@Microsoft@@UAA@XZ
187??1IEnvironment@Resources@Microsoft@@UAA@XZ
188??1IEnvironmentCollection@Resources@Microsoft@@MAA@XZ
189??1IEnvironmentVersionInfo@Resources@Microsoft@@QAA@XZ
190??1IFileSection@Resources@Microsoft@@UAA@XZ
191??1IFileSectionResolver@Resources@Microsoft@@UAA@XZ
192??1IHierarchicalNames@Resources@Microsoft@@QAA@XZ
193??1IHierarchicalSchema@Resources@Microsoft@@UAA@XZ
194??1IHierarchicalSchemaDescription@Resources@Microsoft@@UAA@XZ
195??1IHierarchicalSchemaVersionInfo@Resources@Microsoft@@QAA@XZ
196??1IMrmFile@Resources@Microsoft@@UAA@XZ
197??1INamedResourceBase@Resources@Microsoft@@QAA@XZ
198??1IQualifier@Resources@Microsoft@@QAA@XZ
199??1IQualifierSet@Resources@Microsoft@@QAA@XZ
200??1IQualifierType@Resources@Microsoft@@UAA@XZ
201??1IQualifierValueProvider@Resources@Microsoft@@UAA@XZ
202??1IResourceCandidateBase@Resources@Microsoft@@QAA@XZ
203??1IResourceMapBase@Resources@Microsoft@@QAA@XZ
204??1IResourceMapCollection@Resources@Microsoft@@QAA@XZ
205??1ISchemaCollection@Resources@Microsoft@@QAA@XZ
206??1ISchemaVersionInfo@Resources@Microsoft@@QAA@XZ
207??1ISectionBuilder@Build@Resources@Microsoft@@UAA@XZ
208??1IStringResult@Resources@Microsoft@@UAA@XZ
209??1IUnifiedResourceView@Resources@Microsoft@@UAA@XZ
210??1MrmBuildConfiguration@Build@Resources@Microsoft@@UAA@XZ
211??1PriDescriptor@Resources@Microsoft@@UAA@XZ
212??1PriMapMerger@Build@Resources@Microsoft@@QAA@XZ
213??1ResourceCandidateResult@Resources@Microsoft@@QAA@XZ
214??1StaticAtomPool@Resources@Microsoft@@UAA@XZ
215??1StringResultWrapper@Resources@Microsoft@@UAA@XZ
216??2Atom@Resources@Microsoft@@SAPAXI@Z
217??2Atom@Resources@Microsoft@@SAPAXIABUnothrow_t@std@@@Z
218??2Atom@Resources@Microsoft@@SAPAXIABUnothrow_t@std@@PAVIDefStatus@12@@Z
219??2Atom@Resources@Microsoft@@SAPAXIPAX@Z
220??2DefObject@Resources@Microsoft@@SAPAXI@Z
221??2DefObject@Resources@Microsoft@@SAPAXIABUnothrow_t@std@@@Z
222??2DefObject@Resources@Microsoft@@SAPAXIPAX@Z
223??3Atom@Resources@Microsoft@@SAXPAX@Z
224??3Atom@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@@Z
225??3Atom@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@PAVIDefStatus@12@@Z
226??3DefObject@Resources@Microsoft@@SAXPAX@Z
227??3DefObject@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@@Z
228??3DefObject@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@PAVIDefStatus@12@@Z
229??4Atom@Resources@Microsoft@@QAAAAU012@ABU012@@Z
230??4AtomIndexedDictionaryBase@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
231??4AtomPoolGroup@Resources@Microsoft@@QAAAAV012@ABV012@@Z
232??4BaseAtomLinkedFile@Resources@Microsoft@@QAAAAV012@ABV012@@Z
233??4BaseFile@Resources@Microsoft@@QAAAAV012@ABV012@@Z
234??4BaseFileSectionResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
235??4BuilderCandidateResult@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
236??4DataBlobBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
237??4DataItemsBuildInstanceReference@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
238??4DataItemsSectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
239??4DataSectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
240??4DecisionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
241??4DecisionInfoBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
242??4DecisionInfoFileSection@Resources@Microsoft@@QAAAAV012@ABV012@@Z
243??4DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
244??4DecisionInfoSectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
245??4DecisionResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
246??4DefChecksum@Resources@Microsoft@@QAAAAU012@ABU012@@Z
247??4DefObject@Resources@Microsoft@@QAAAAV012@ABV012@@Z
248??4DefStatus@Resources@Microsoft@@QAAAAV012@ABV012@@Z
249??4DefStatusWrapper@Resources@Microsoft@@QAAAAV012@ABV012@@Z
250??4EnvironmentCollectionBase@Resources@Microsoft@@QAAAAV012@ABV012@@Z
251??4EnvironmentReference@Resources@Microsoft@@QAAAAV012@ABV012@@Z
252??4EnvironmentReferenceBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
253??4ExternalFileStaticDataInstanceReference@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
254??4FileAtomPool@Resources@Microsoft@@QAAAAV012@ABV012@@Z
255??4FileAtomPoolBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
256??4FileAtoms@Resources@Microsoft@@QAAAAV012@ABV012@@Z
257??4FileBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
258??4FileFileList@Resources@Microsoft@@QAAAAV012@ABV012@@Z
259??4FileInfo@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
260??4FileInfoPrivateData@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
261??4FileListBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
262??4FileSectionBase@Resources@Microsoft@@QAAAAV012@ABV012@@Z
263??4FileSectionBuildInstanceReference@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
264??4FolderInfo@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
265??4HNamesNode@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
266??4HierarchicalName@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
267??4HierarchicalNameSegment@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
268??4HierarchicalNames@Resources@Microsoft@@QAAAAV012@ABV012@@Z
269??4HierarchicalNamesBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
270??4HierarchicalNamesConfig@Resources@Microsoft@@QAAAAV012@ABV012@@Z
271??4HierarchicalSchema@Resources@Microsoft@@QAAAAV012@ABV012@@Z
272??4HierarchicalSchemaReference@Resources@Microsoft@@QAAAAV012@ABV012@@Z
273??4HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
274??4HierarchicalSchemaVersionInfo@Resources@Microsoft@@QAAAAV012@ABV012@@Z
275??4HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
276??4IAtomPool@Resources@Microsoft@@QAAAAV012@ABV012@@Z
277??4IAtomPoolWriter@Resources@Microsoft@@QAAAAV012@ABV012@@Z
278??4IBuildInstanceReference@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
279??4ICondition@Resources@Microsoft@@QAAAAV012@ABV012@@Z
280??4IDecision@Resources@Microsoft@@QAAAAV012@ABV012@@Z
281??4IDecisionInfo@Resources@Microsoft@@QAAAAV012@ABV012@@Z
282??4IDefStatus@Resources@Microsoft@@QAAAAV012@ABV012@@Z
283??4IEnvironment@Resources@Microsoft@@QAAAAV012@ABV012@@Z
284??4IEnvironmentCollection@Resources@Microsoft@@QAAAAV012@ABV012@@Z
285??4IEnvironmentVersionInfo@Resources@Microsoft@@QAAAAV012@ABV012@@Z
286??4IFileList@Resources@Microsoft@@QAAAAV012@ABV012@@Z
287??4IFileSection@Resources@Microsoft@@QAAAAV012@ABV012@@Z
288??4IFileSectionResolver@Resources@Microsoft@@QAAAAV012@ABV012@@Z
289??4IHNamesGlobalNodes@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
290??4IHierarchicalNames@Resources@Microsoft@@QAAAAV012@ABV012@@Z
291??4IHierarchicalSchema@Resources@Microsoft@@QAAAAV012@ABV012@@Z
292??4IHierarchicalSchemaDescription@Resources@Microsoft@@QAAAAV012@ABV012@@Z
293??4IHierarchicalSchemaVersionInfo@Resources@Microsoft@@QAAAAV012@ABV012@@Z
294??4IMrmFile@Resources@Microsoft@@QAAAAV012@ABV012@@Z
295??4INamedResourceBase@Resources@Microsoft@@QAAAAV012@ABV012@@Z
296??4IQualifier@Resources@Microsoft@@QAAAAV012@ABV012@@Z
297??4IQualifierSet@Resources@Microsoft@@QAAAAV012@ABV012@@Z
298??4IQualifierType@Resources@Microsoft@@QAAAAV012@ABV012@@Z
299??4IQualifierValueProvider@Resources@Microsoft@@QAAAAV012@ABV012@@Z
300??4IResourceCandidateBase@Resources@Microsoft@@QAAAAV012@ABV012@@Z
301??4IResourceMapBase@Resources@Microsoft@@QAAAAV012@ABV012@@Z
302??4IResourceMapCollection@Resources@Microsoft@@QAAAAV012@ABV012@@Z
303??4ISchemaCollection@Resources@Microsoft@@QAAAAV012@ABV012@@Z
304??4ISchemaVersionInfo@Resources@Microsoft@@QAAAAV012@ABV012@@Z
305??4ISectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
306??4IStringResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
307??4IUnifiedResourceView@Resources@Microsoft@@QAAAAV012@ABV012@@Z
308??4ItemInfo@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
309??4MrmBuildConfiguration@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
310??4MrmFile@Resources@Microsoft@@QAAAAV012@ABV012@@Z
311??4NamedResourceResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
312??4PriDescriptor@Resources@Microsoft@@QAAAAV012@ABV012@@Z
313??4PriFile@Resources@Microsoft@@QAAAAV012@ABV012@@Z
314??4PriFileBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
315??4PriFileMerger@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
316??4PriMapMerger@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
317??4PriSectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
318??4QualifierResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
319??4QualifierSetResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
320??4RemapInfo@Resources@Microsoft@@QAAAAV012@ABV012@@Z
321??4RemapUInt16@Resources@Microsoft@@QAAAAV012@ABV012@@Z
322??4ResourceCandidateResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
323??4ResourceMapBase@Resources@Microsoft@@QAAAAV012@ABV012@@Z
324??4ResourceMapSectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
325??4ResourceMapSubtree@Resources@Microsoft@@QAAAAV012@ABV012@@Z
326??4ReverseFileMap@Resources@Microsoft@@QAAAAV012@ABV012@@Z
327??4ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
328??4ScopeInfo@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
329??4StandalonePriFile@Resources@Microsoft@@QAAAAV012@ABV012@@Z
330??4StaticAtomPool@Resources@Microsoft@@QAAAAV012@ABV012@@Z
331??4StaticHierarchicalSchemaDescription@Resources@Microsoft@@QAAAAV012@ABV012@@Z
332??4StringResult@Resources@Microsoft@@QAAAAV012@ABV012@@Z
333??4StringResultWrapper@Resources@Microsoft@@QAAAAV012@ABV012@@Z
334??4WindowsRuntimeEnvironment@Resources@Microsoft@@QAAAAV012@ABV012@@Z
335??4WriteableStringPool@Build@Resources@Microsoft@@QAAAAV0123@ABV0123@@Z
336??8Atom@Resources@Microsoft@@QBA_NABU012@@Z
337??9Atom@Resources@Microsoft@@QBA_NABU012@@Z
338??_7AtomIndexedDictionaryBase@Build@Resources@Microsoft@@6B@ DATA
339??_7AtomPoolGroup@Resources@Microsoft@@6B@ DATA
340??_7BaseAtomLinkedFile@Resources@Microsoft@@6B@ DATA
341??_7BaseFile@Resources@Microsoft@@6B@ DATA
342??_7BaseFileSectionResult@Resources@Microsoft@@6B@ DATA
343??_7DataBlobBuilder@Build@Resources@Microsoft@@6B@ DATA
344??_7DataItemsBuildInstanceReference@Build@Resources@Microsoft@@6B@ DATA
345??_7DataItemsSectionBuilder@Build@Resources@Microsoft@@6B@ DATA
346??_7DataSectionBuilder@Build@Resources@Microsoft@@6BDataBlobBuilder@123@@ DATA
347??_7DataSectionBuilder@Build@Resources@Microsoft@@6BISectionBuilder@123@@ DATA
348??_7DecisionBuilder@Build@Resources@Microsoft@@6B@ DATA
349??_7DecisionInfoBuilder@Build@Resources@Microsoft@@6B@ DATA
350??_7DecisionInfoFileSection@Resources@Microsoft@@6BFileSectionBase@12@@ DATA
351??_7DecisionInfoFileSection@Resources@Microsoft@@6BIDecisionInfo@12@@ DATA
352??_7DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@6B@ DATA
353??_7DecisionInfoSectionBuilder@Build@Resources@Microsoft@@6BDecisionInfoBuilder@123@@ DATA
354??_7DecisionInfoSectionBuilder@Build@Resources@Microsoft@@6BISectionBuilder@123@@ DATA
355??_7DecisionResult@Resources@Microsoft@@6B@ DATA
356??_7DefStatus@Resources@Microsoft@@6B@ DATA
357??_7DefStatusWrapper@Resources@Microsoft@@6B@ DATA
358??_7EnvironmentCollectionBase@Resources@Microsoft@@6B@ DATA
359??_7EnvironmentReference@Resources@Microsoft@@6B@ DATA
360??_7EnvironmentReferenceBuilder@Build@Resources@Microsoft@@6B@ DATA
361??_7ExternalFileStaticDataInstanceReference@Build@Resources@Microsoft@@6B@ DATA
362??_7FileAtomPool@Resources@Microsoft@@6BFileSectionBase@12@@ DATA
363??_7FileAtomPool@Resources@Microsoft@@6BIAtomPool@12@@ DATA
364??_7FileAtomPoolBuilder@Build@Resources@Microsoft@@6BIAtomPoolWriter@23@@ DATA
365??_7FileAtomPoolBuilder@Build@Resources@Microsoft@@6BISectionBuilder@123@@ DATA
366??_7FileBuilder@Build@Resources@Microsoft@@6B@ DATA
367??_7FileFileList@Resources@Microsoft@@6BFileSectionBase@12@@ DATA
368??_7FileFileList@Resources@Microsoft@@6BIFileList@12@@ DATA
369??_7FileInfo@Build@Resources@Microsoft@@6B@ DATA
370??_7FileInfoPrivateData@Build@Resources@Microsoft@@6B@ DATA
371??_7FileListBuilder@Build@Resources@Microsoft@@6B@ DATA
372??_7FileSectionBase@Resources@Microsoft@@6B@ DATA
373??_7FileSectionBuildInstanceReference@Build@Resources@Microsoft@@6B@ DATA
374??_7FolderInfo@Build@Resources@Microsoft@@6B@ DATA
375??_7HNamesNode@Build@Resources@Microsoft@@6B@ DATA
376??_7HierarchicalNames@Resources@Microsoft@@6BFileSectionBase@12@@ DATA
377??_7HierarchicalNames@Resources@Microsoft@@6BHierarchicalNamesConfig@12@@ DATA
378??_7HierarchicalNames@Resources@Microsoft@@6BIHierarchicalNames@12@@ DATA
379??_7HierarchicalNamesBuilder@Build@Resources@Microsoft@@6BHierarchicalNamesConfig@23@@ DATA
380??_7HierarchicalNamesBuilder@Build@Resources@Microsoft@@6BIHNamesGlobalNodes@123@@ DATA
381??_7HierarchicalNamesBuilder@Build@Resources@Microsoft@@6BISectionBuilder@123@@ DATA
382??_7HierarchicalNamesConfig@Resources@Microsoft@@6B@ DATA
383??_7HierarchicalSchema@Resources@Microsoft@@6BFileSectionBase@12@@ DATA
384??_7HierarchicalSchema@Resources@Microsoft@@6BIHierarchicalSchema@12@@ DATA
385??_7HierarchicalSchemaReference@Resources@Microsoft@@6B@ DATA
386??_7HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@6BIHierarchicalSchema@23@@ DATA
387??_7HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@6BISectionBuilder@123@@ DATA
388??_7HierarchicalSchemaVersionInfo@Resources@Microsoft@@6B@ DATA
389??_7HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@6B@ DATA
390??_7IAtomPool@Resources@Microsoft@@6B@ DATA
391??_7IAtomPoolWriter@Resources@Microsoft@@6B@ DATA
392??_7IBuildInstanceReference@Build@Resources@Microsoft@@6B@ DATA
393??_7ICondition@Resources@Microsoft@@6B@ DATA
394??_7IDecision@Resources@Microsoft@@6B@ DATA
395??_7IDecisionInfo@Resources@Microsoft@@6B@ DATA
396??_7IDefStatus@Resources@Microsoft@@6B@ DATA
397??_7IEnvironment@Resources@Microsoft@@6B@ DATA
398??_7IEnvironmentCollection@Resources@Microsoft@@6B@ DATA
399??_7IEnvironmentVersionInfo@Resources@Microsoft@@6B@ DATA
400??_7IFileList@Resources@Microsoft@@6B@ DATA
401??_7IFileSection@Resources@Microsoft@@6B@ DATA
402??_7IFileSectionResolver@Resources@Microsoft@@6B@ DATA
403??_7IHNamesGlobalNodes@Build@Resources@Microsoft@@6B@ DATA
404??_7IHierarchicalNames@Resources@Microsoft@@6B@ DATA
405??_7IHierarchicalSchema@Resources@Microsoft@@6B@ DATA
406??_7IHierarchicalSchemaDescription@Resources@Microsoft@@6B@ DATA
407??_7IHierarchicalSchemaVersionInfo@Resources@Microsoft@@6B@ DATA
408??_7IMrmFile@Resources@Microsoft@@6B@ DATA
409??_7INamedResourceBase@Resources@Microsoft@@6B@ DATA
410??_7IQualifier@Resources@Microsoft@@6B@ DATA
411??_7IQualifierSet@Resources@Microsoft@@6B@ DATA
412??_7IQualifierType@Resources@Microsoft@@6B@ DATA
413??_7IQualifierValueProvider@Resources@Microsoft@@6B@ DATA
414??_7IResourceCandidateBase@Resources@Microsoft@@6B@ DATA
415??_7IResourceMapBase@Resources@Microsoft@@6B@ DATA
416??_7IResourceMapCollection@Resources@Microsoft@@6B@ DATA
417??_7ISchemaCollection@Resources@Microsoft@@6B@ DATA
418??_7ISchemaVersionInfo@Resources@Microsoft@@6B@ DATA
419??_7ISectionBuilder@Build@Resources@Microsoft@@6B@ DATA
420??_7IStringResult@Resources@Microsoft@@6B@ DATA
421??_7IUnifiedResourceView@Resources@Microsoft@@6BIResourceMapCollection@12@@ DATA
422??_7IUnifiedResourceView@Resources@Microsoft@@6BISchemaCollection@12@@ DATA
423??_7ItemInfo@Build@Resources@Microsoft@@6B@ DATA
424??_7MrmBuildConfiguration@Build@Resources@Microsoft@@6B@ DATA
425??_7MrmFile@Resources@Microsoft@@6B@ DATA
426??_7NamedResourceResult@Resources@Microsoft@@6B@ DATA
427??_7PriDescriptor@Resources@Microsoft@@6B@ DATA
428??_7PriFile@Resources@Microsoft@@6BIResourceMapCollection@12@@ DATA
429??_7PriFile@Resources@Microsoft@@6BISchemaCollection@12@@ DATA
430??_7PriFileBuilder@Build@Resources@Microsoft@@6B@ DATA
431??_7PriFileMerger@Build@Resources@Microsoft@@6B@ DATA
432??_7PriSectionBuilder@Build@Resources@Microsoft@@6B@ DATA
433??_7QualifierResult@Resources@Microsoft@@6B@ DATA
434??_7QualifierSetResult@Resources@Microsoft@@6B@ DATA
435??_7RemapInfo@Resources@Microsoft@@6B@ DATA
436??_7RemapUInt16@Resources@Microsoft@@6B@ DATA
437??_7ResourceCandidateResult@Resources@Microsoft@@6B@ DATA
438??_7ResourceMapBase@Resources@Microsoft@@6BFileSectionBase@12@@ DATA
439??_7ResourceMapBase@Resources@Microsoft@@6BIResourceMapBase@12@@ DATA
440??_7ResourceMapBase@Resources@Microsoft@@6BResourceMapSubtree@12@@ DATA
441??_7ResourceMapSectionBuilder@Build@Resources@Microsoft@@6B@ DATA
442??_7ResourceMapSubtree@Resources@Microsoft@@6B@ DATA
443??_7ReverseFileMap@Resources@Microsoft@@6B@ DATA
444??_7ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@6B@ DATA
445??_7ScopeInfo@Build@Resources@Microsoft@@6B@ DATA
446??_7StandalonePriFile@Resources@Microsoft@@6B@ DATA
447??_7StandalonePriFile@Resources@Microsoft@@6BIResourceMapCollection@12@@ DATA
448??_7StandalonePriFile@Resources@Microsoft@@6BISchemaCollection@12@@ DATA
449??_7StaticAtomPool@Resources@Microsoft@@6B@ DATA
450??_7StaticHierarchicalSchemaDescription@Resources@Microsoft@@6B@ DATA
451??_7StringResult@Resources@Microsoft@@6B@ DATA
452??_7StringResultWrapper@Resources@Microsoft@@6B@ DATA
453??_7WindowsRuntimeEnvironment@Resources@Microsoft@@6B@ DATA
454??_7WriteableStringPool@Build@Resources@Microsoft@@6B@ DATA
455??_UAtom@Resources@Microsoft@@SAPAXI@Z
456??_UAtom@Resources@Microsoft@@SAPAXIABUnothrow_t@std@@@Z
457??_UAtom@Resources@Microsoft@@SAPAXIABUnothrow_t@std@@PAVIDefStatus@12@@Z
458??_UDefObject@Resources@Microsoft@@SAPAXI@Z
459??_UDefObject@Resources@Microsoft@@SAPAXIABUnothrow_t@std@@@Z
460??_VAtom@Resources@Microsoft@@SAXPAX@Z
461??_VAtom@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@@Z
462??_VAtom@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@PAVIDefStatus@12@@Z
463??_VDefObject@Resources@Microsoft@@SAXPAX@Z
464??_VDefObject@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@@Z
465??_VDefObject@Resources@Microsoft@@SAXPAXABUnothrow_t@std@@PAVIDefStatus@12@@Z
466?AddDataItem@DataItemsSectionBuilder@Build@Resources@Microsoft@@QAA_NPBXIPAVIDefStatus@34@PAU_PrebuildItemReference@1234@@Z
467?AddQualifier@DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@QAA_NPBG0HNPAVIDefStatus@34@PAH@Z
468?AdvanceToNextSegment@HierarchicalName@Build@Resources@Microsoft@@QAA_NPAVIDefStatus@34@@Z
469?Align16Bit@BaseFile@Resources@Microsoft@@2IB
470?Align32Bit@BaseFile@Resources@Microsoft@@2IB
471?Align64Bit@BaseFile@Resources@Microsoft@@2IB
472?AllConfigurationFlags@MrmBuildConfiguration@Build@Resources@Microsoft@@2IB
473?AlwaysTrueQualifierIndex@IDecisionInfo@Resources@Microsoft@@2HB
474?BaseFileOwnsDataFlag@BaseFile@Resources@Microsoft@@1IB
475?CheckPhase@FileBuilder@Build@Resources@Microsoft@@QBA_NW4BuildPhase@234@PAVIDefStatus@34@@Z
476?CheckSetPhase@FileBuilder@Build@Resources@Microsoft@@QAA_NW4BuildPhase@234@PAVIDefStatus@34@@Z
477?CompareSegments@HierarchicalNamesConfig@Resources@Microsoft@@UBAHPBG0@Z
478?CompareSegments@HierarchicalNamesConfig@Resources@Microsoft@@UBAHPBGH0H@Z
479?ComputeAtomChecksum@DefChecksum@Resources@Microsoft@@QAAIUAtom@23@PBVAtomPoolGroup@23@PAVIDefStatus@23@@Z
480?ComputeAtomPoolChecksum@DefChecksum@Resources@Microsoft@@QAAIPBVIAtomPool@23@HPAVIDefStatus@23@@Z
481?ComputeAtomPoolChecksum@DefChecksum@Resources@Microsoft@@QAAIPBVIAtomPool@23@PAVIDefStatus@23@@Z
482?ComputeChecksum@DefChecksum@Resources@Microsoft@@QAAIPBEIPAVIDefStatus@23@@Z
483?ComputeHash@HNamesNode@Build@Resources@Microsoft@@SAIPBGPAVIDefStatus@34@@Z
484?ComputeStringChecksum@DefChecksum@Resources@Microsoft@@QAAI_NPBGPAVIDefStatus@23@@Z
485?ComputeUInt32Checksum@DefChecksum@Resources@Microsoft@@QAAII@Z
486?ConcatPathElement@IStringResult@Resources@Microsoft@@UAA_NPBGPAVIDefStatus@23@@Z
487?ConcatPathElement@StringResultWrapper@Resources@Microsoft@@UAA_NPBGPAVIDefStatus@23@@Z
488?Contains@HierarchicalSchema@Resources@Microsoft@@QBA_NPBGHPAVIDefStatus@23@PAH22@Z
489?Contains@HierarchicalSchema@Resources@Microsoft@@QBA_NPBGPAVIDefStatus@23@PAH22@Z
490?Contains@HierarchicalSchema@Resources@Microsoft@@UBA_NPBGHPAVIDefStatus@23@PAH2@Z
491?Contains@HierarchicalSchema@Resources@Microsoft@@UBA_NPBGPAVIDefStatus@23@PAH2@Z
492?Contains@IAtomPool@Resources@Microsoft@@UBA_NHPAVIDefStatus@23@@Z
493?DefaultAlignment@BaseFile@Resources@Microsoft@@2IB
494?DefaultAlignment@DataItemsSectionBuilder@Build@Resources@Microsoft@@2HB
495?DefaultFlags@BaseFile@Resources@Microsoft@@2IB
496?DefaultInitialSize@FileAtomPoolBuilder@Build@Resources@Microsoft@@1HB
497?DefaultInitialSize@WriteableStringPool@Build@Resources@Microsoft@@1IB
498?DescriptionLength@FileAtomPool@Resources@Microsoft@@2HB
499?EmbeddedDataResourceValueTypeIndex@WindowsRuntimeEnvironment@Resources@Microsoft@@2HB
500?EmptyDecisionIndex@IDecisionInfo@Resources@Microsoft@@2HB
501?Failed@DefStatusWrapper@Resources@Microsoft@@UBA_NXZ
502GetApplicabilityContext
503?GetAtom@Atom@Resources@Microsoft@@QBA?AT_DEF_ATOM@@XZ
504?GetAtomPoolGroup@FileAtomPool@Resources@Microsoft@@UBAPAVAtomPoolGroup@23@XZ
505?GetAtomPoolGroup@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAPAVAtomPoolGroup@34@XZ
506?GetAtomPoolMapping@RemapInfo@Resources@Microsoft@@QBAPAHPAH@Z
507?GetAtomPoolSection@IMrmFile@Resources@Microsoft@@QBAPAVFileAtomPool@23@FPAVIDefStatus@23@@Z
508?GetAtoms@BaseAtomLinkedFile@Resources@Microsoft@@QBAPBVAtomPoolGroup@23@XZ
509?GetAtoms@PriSectionBuilder@Build@Resources@Microsoft@@QBAPAVAtomPoolGroup@34@XZ
510?GetAtoms@StandalonePriFile@Resources@Microsoft@@UBAPAVAtomPoolGroup@23@XZ
511?GetAtoms@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPAVAtomPoolGroup@23@XZ
512?GetAttributeNames@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBVIAtomPool@23@XZ
513?GetAttributeTypeNames@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBVIAtomPool@23@XZ
514?GetAttributeTypesPoolIndex@EnvironmentReference@Resources@Microsoft@@QBAHXZ
515?GetAttributesPoolIndex@EnvironmentReference@Resources@Microsoft@@QBAHXZ
516?GetAutoMergeEnabled@PriDescriptor@Resources@Microsoft@@QBA_NXZ
517?GetAutoMergeEnabled@PriFile@Resources@Microsoft@@QBA_NXZ
518?GetAutoMergeEnabled@StandalonePriFile@Resources@Microsoft@@QBA_NXZ
519?GetBaseFile@MrmFile@Resources@Microsoft@@UBAPBVBaseFile@23@PAVIDefStatus@23@@Z
520?GetBaseMrmFile@PriFile@Resources@Microsoft@@QBAPBVIMrmFile@23@XZ
521?GetBaseResourceView@PriFile@Resources@Microsoft@@QBAPBVIUnifiedResourceView@23@XZ
522?GetBuffer@WriteableStringPool@Build@Resources@Microsoft@@QBAPBGXZ
523?GetCandidateIndex@ResourceCandidateResult@Resources@Microsoft@@QBAHXZ
524?GetChecksum@DefChecksum@Resources@Microsoft@@QBAIXZ
525?GetConditionOperatorNames@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBVIAtomPool@23@XZ
526?GetConditionOperatorsPoolIndex@EnvironmentReference@Resources@Microsoft@@QBAHXZ
527?GetConfig@HNamesNode@Build@Resources@Microsoft@@QBAPBVHierarchicalNamesConfig@34@XZ
528?GetConfig@HierarchicalName@Build@Resources@Microsoft@@QBAPBVHierarchicalNamesConfig@34@XZ
529?GetConfig@HierarchicalNameSegment@Build@Resources@Microsoft@@QBAPBVHierarchicalNamesConfig@34@XZ
530?GetConfig@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UBAPBVHierarchicalNamesConfig@34@XZ
531?GetCurrentDataSize@DataBlobBuilder@Build@Resources@Microsoft@@UBAIXZ
532?GetCurrentGeneration@ResourceMapBase@Resources@Microsoft@@UBA_KXZ
533?GetCurrentSegment@HierarchicalName@Build@Resources@Microsoft@@QBAPBVHierarchicalNameSegment@234@XZ
534?GetCurrentSegmentHash@HierarchicalName@Build@Resources@Microsoft@@QBAIPAVIDefStatus@34@@Z
535?GetCurrentSegmentInitialChar@HierarchicalName@Build@Resources@Microsoft@@QBAGXZ
536?GetCurrentSegmentText@HierarchicalName@Build@Resources@Microsoft@@QBAPBGXZ
537?GetData@FileBuilder@Build@Resources@Microsoft@@IAAPBXXZ
538?GetDataItemsSection@IMrmFile@Resources@Microsoft@@QBAPAVFileDataItemsSection@23@FPAVIDefStatus@23@@Z
539?GetDataItemsSectionBuilder@DataItemsBuildInstanceReference@Build@Resources@Microsoft@@QAAPAVDataItemsSectionBuilder@234@XZ
540?GetDataSection@IMrmFile@Resources@Microsoft@@QBAPAVFileDataSection@23@FPAVIDefStatus@23@@Z
541?GetDataSize@FileBuilder@Build@Resources@Microsoft@@IAAIXZ
542?GetDecisionInfo@ResourceMapSectionBuilder@Build@Resources@Microsoft@@QBAPAVDecisionInfoSectionBuilder@234@XZ
543?GetDecisionInfoBuilder@PriSectionBuilder@Build@Resources@Microsoft@@QBAPAVDecisionInfoSectionBuilder@234@XZ
544?GetDecisionInfoSection@IMrmFile@Resources@Microsoft@@QBAPAVDecisionInfoFileSection@23@FPAVIDefStatus@23@@Z
545?GetDefStatus@DefStatusWrapper@Resources@Microsoft@@UAAPAU_DEFSTATUS@@XZ
546?GetDefaultDecisionInfo@StandalonePriFile@Resources@Microsoft@@UBAPAVUnifiedDecisionInfo@23@XZ
547?GetDefaultEnvironment@StandalonePriFile@Resources@Microsoft@@UBAPAVUnifiedEnvironment@23@XZ
548?GetDefaultPathSeparator@HierarchicalNamesConfig@Resources@Microsoft@@UBAGXZ
549?GetDesc@DefStatusWrapper@Resources@Microsoft@@UBAPBGXZ
550?GetDescendents@HierarchicalSchema@Resources@Microsoft@@UBA_NHPAVIDefStatus@23@HPAGPAHH12@Z
551?GetDescription@FileAtomPool@Resources@Microsoft@@UBAPBGXZ
552?GetDescription@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAPBGXZ
553?GetDescriptor@PriFileBuilder@Build@Resources@Microsoft@@QAAPAVPriSectionBuilder@234@XZ
554?GetDescriptorIndex@FileBuilder@Build@Resources@Microsoft@@QAAFXZ
555?GetDetails@DefStatusWrapper@Resources@Microsoft@@QBAIXZ
556?GetDisplayName@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBGXZ
557?GetEnvironment@ResourceMapSectionBuilder@Build@Resources@Microsoft@@QBAPBVUnifiedEnvironment@34@XZ
558?GetFileBuilder@PriSectionBuilder@Build@Resources@Microsoft@@QBAPAVFileBuilder@234@XZ
559?GetFileData@BaseFile@Resources@Microsoft@@QBA_NPAVIDefStatus@23@PAVBlobResult@23@@Z
560?GetFileHeader@BaseFile@Resources@Microsoft@@QBAPBU_DEFFILE_HEADER@@XZ
561?GetFileListSection@IMrmFile@Resources@Microsoft@@QBAPAVFileFileList@23@FPAVIDefStatus@23@@Z
562?GetFileMagicNumber@MrmBuildConfiguration@Build@Resources@Microsoft@@QBA?AT_DEFFILE_MAGIC@@XZ
563?GetFileName@FileInfo@Build@Resources@Microsoft@@QBAPBGXZ
564?GetFileSizeInBytes@BaseFile@Resources@Microsoft@@QBAIXZ
565?GetFileTrailer@BaseFile@Resources@Microsoft@@SAPAU_DEFFILE_TRAILER@@PAU_DEFFILE_HEADER@@@Z
566?GetFirstChild@ScopeInfo@Build@Resources@Microsoft@@QBAPAVHNamesNode@234@XZ
567?GetFlag@FileInfo@Build@Resources@Microsoft@@QBAGXZ
568?GetFlags@DataItemsSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
569?GetFlags@DataSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
570?GetFlags@DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
571?GetFlags@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAGXZ
572?GetFlags@FileListBuilder@Build@Resources@Microsoft@@UBAGXZ
573?GetFlags@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UBAGXZ
574?GetFlags@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
575?GetFlags@PriSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
576?GetFlags@ResourceMapSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
577?GetFlags@ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
578?GetFolderName@FolderInfo@Build@Resources@Microsoft@@QBAPBGXZ
579?GetFullPath@HierarchicalName@Build@Resources@Microsoft@@QBAQBGXZ
580?GetFullResourceMap@ResourceMapSubtree@Resources@Microsoft@@QBAPBVIResourceMapBase@23@XZ
581?GetGlobalNodes@ScopeInfo@Build@Resources@Microsoft@@QAAPAVIHNamesGlobalNodes@234@XZ
582?GetHash@HNamesNode@Build@Resources@Microsoft@@QBAIPAVIDefStatus@34@@Z
583?GetHash@HierarchicalNameSegment@Build@Resources@Microsoft@@QBAIPAVIDefStatus@34@@Z
584?GetIndex@Atom@Resources@Microsoft@@QBAHXZ
585?GetIndex@DecisionBuilder@Build@Resources@Microsoft@@UBAHPAVIDefStatus@34@@Z
586?GetIndex@DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@UBAHPAVIDefStatus@34@@Z
587?GetIndex@FileInfo@Build@Resources@Microsoft@@QBAHXZ
588?GetIndex@FileInfoPrivateData@Build@Resources@Microsoft@@QBA?BHXZ
589?GetIndex@FolderInfo@Build@Resources@Microsoft@@QBAHXZ
590?GetIndex@HNamesNode@Build@Resources@Microsoft@@QBAHXZ
591?GetIndex@IAtomPool@Resources@Microsoft@@QBA_NPBGPAVIDefStatus@23@PAH@Z
592?GetIndex@IAtomPool@Resources@Microsoft@@QBA_NUAtom@23@PAVIDefStatus@23@PAH@Z
593?GetInitialChar@HNamesNode@Build@Resources@Microsoft@@QBAGXZ
594?GetInitialChar@HierarchicalNameSegment@Build@Resources@Microsoft@@QBAGXZ
595?GetInstanceLocatorNames@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBVIAtomPool@23@XZ
596?GetInstanceLocatorType@DataItemsBuildInstanceReference@Build@Resources@Microsoft@@UBAPBGXZ
597?GetInstanceLocatorType@ExternalFileStaticDataInstanceReference@Build@Resources@Microsoft@@UBAPBGXZ
598?GetInstanceLocatorType@FileSectionBuildInstanceReference@Build@Resources@Microsoft@@UBAPBGXZ
599?GetInstanceLocatorsPoolIndex@EnvironmentReference@Resources@Microsoft@@QBAHXZ
600?GetInstanceTypeNames@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBVIAtomPool@23@XZ
601?GetInstanceTypesPoolIndex@EnvironmentReference@Resources@Microsoft@@QBAHXZ
602?GetInt64@Atom@Resources@Microsoft@@QBA_JXZ
603?GetIsAutomergeMergeResult@PriDescriptor@Resources@Microsoft@@QBA_NXZ
604?GetIsCaseInsensitive@FileAtomPool@Resources@Microsoft@@UBA_NXZ
605?GetIsCaseInsensitive@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBA_NXZ
606?GetIsCaseInsensitive@WriteableStringPool@Build@Resources@Microsoft@@QBA_NXZ
607?GetIsDeploymentMergeResult@PriDescriptor@Resources@Microsoft@@QBA_NXZ
608?GetIsDeploymentMergeResult@PriFile@Resources@Microsoft@@QBA_NXZ
609?GetIsDeploymentMergeable@PriDescriptor@Resources@Microsoft@@QBA_NXZ
610?GetIsDeploymentMergeable@PriFile@Resources@Microsoft@@UBA_NXZ
611?GetIsDeploymentMergeable@StandalonePriFile@Resources@Microsoft@@UBA_NXZ
612?GetItemNames@HierarchicalNames@Resources@Microsoft@@UBAPAVIAtomPool@23@XZ
613?GetItemNames@HierarchicalNamesBuilder@Build@Resources@Microsoft@@QBAPAVIAtomPool@34@XZ
614?GetItemNames@HierarchicalSchema@Resources@Microsoft@@UBAPAVIAtomPool@23@XZ
615?GetItemNames@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAPAVIAtomPool@23@XZ
616?GetItemTypeNames@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBVIAtomPool@23@XZ
617?GetItemTypesPoolIndex@EnvironmentReference@Resources@Microsoft@@QBAHXZ
618?GetItemsPoolIndex@HierarchicalSchemaReference@Resources@Microsoft@@QBAHXZ
619?GetLine@DefStatusWrapper@Resources@Microsoft@@QBAIXZ
620?GetLocatorType@DataItemsBuildInstanceReference@Build@Resources@Microsoft@@UBAEXZ
621?GetLocatorType@ExternalFileStaticDataInstanceReference@Build@Resources@Microsoft@@UBAEXZ
622?GetLocatorType@FileSectionBuildInstanceReference@Build@Resources@Microsoft@@UBAEXZ
623?GetLongestPath@FileFileList@Resources@Microsoft@@UBAHXZ
624?GetMagic@FileBuilder@Build@Resources@Microsoft@@QAA?AT_DEFFILE_MAGIC@@XZ
625?GetMajorVersion@EnvironmentReference@Resources@Microsoft@@UBAGXZ
626?GetMajorVersion@HierarchicalSchema@Resources@Microsoft@@UBAGXZ
627?GetMajorVersion@HierarchicalSchemaReference@Resources@Microsoft@@QBAHXZ
628?GetMajorVersion@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
629?GetMajorVersion@HierarchicalSchemaVersionInfo@Resources@Microsoft@@UBAGXZ
630?GetMajorVersion@HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@UBAGXZ
631?GetMajorVersion@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAGXZ
632?GetMaxAtomIndex@AtomIndexedDictionaryBase@Build@Resources@Microsoft@@QBAHXZ
633?GetMaxNameLength@HierarchicalNames@Resources@Microsoft@@UBAHXZ
634?GetMaxNameLength@HierarchicalSchema@Resources@Microsoft@@QBAHXZ
635?GetMaxPoolIndex@AtomPoolGroup@Resources@Microsoft@@QBAHXZ
636?GetMaxSizeInBytes@EnvironmentReferenceBuilder@Build@Resources@Microsoft@@QBAIXZ
637?GetMinAtomIndex@AtomIndexedDictionaryBase@Build@Resources@Microsoft@@QAAHXZ
638?GetMinorVersion@EnvironmentReference@Resources@Microsoft@@UBAGXZ
639?GetMinorVersion@HierarchicalSchema@Resources@Microsoft@@UBAGXZ
640?GetMinorVersion@HierarchicalSchemaReference@Resources@Microsoft@@QBAHXZ
641?GetMinorVersion@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
642?GetMinorVersion@HierarchicalSchemaVersionInfo@Resources@Microsoft@@UBAGXZ
643?GetMinorVersion@HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@UBAGXZ
644?GetMinorVersion@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAGXZ
645?GetName@FileFileList@Resources@Microsoft@@IBAPBGHHPAVIDefStatus@23@@Z
646?GetName@HNamesNode@Build@Resources@Microsoft@@QBAPBGXZ
647?GetName@HierarchicalNameSegment@Build@Resources@Microsoft@@QBAPBGXZ
648?GetNameIndex@HNamesNode@Build@Resources@Microsoft@@QBAHXZ
649?GetNames@AtomIndexedDictionaryBase@Build@Resources@Microsoft@@QAAPBVIAtomPool@34@XZ
650?GetNext@FileInfoPrivateData@Build@Resources@Microsoft@@QBAPAV1234@XZ
651?GetNextItem@AtomIndexedDictionaryBase@Build@Resources@Microsoft@@QBA_NPAVIterator@1234@PAVIDefStatus@34@PAH@Z
652?GetNextSibling@HNamesNode@Build@Resources@Microsoft@@QAAPAV1234@XZ
653?GetNumAtomPools@RemapInfo@Resources@Microsoft@@QBAHXZ
654?GetNumAtoms@FileAtomPool@Resources@Microsoft@@UBAHXZ
655?GetNumAtoms@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAHXZ
656?GetNumAttributeTypes@EnvironmentReference@Resources@Microsoft@@UBAHXZ
657?GetNumAttributes@EnvironmentReference@Resources@Microsoft@@UBAHXZ
658?GetNumCharsInPool@WriteableStringPool@Build@Resources@Microsoft@@QBAIXZ
659?GetNumChildItems@ScopeInfo@Build@Resources@Microsoft@@QBAHXZ
660?GetNumChildScopes@ScopeInfo@Build@Resources@Microsoft@@QBAHXZ
661?GetNumChildren@ScopeInfo@Build@Resources@Microsoft@@QBAHXZ
662?GetNumConditionOperators@EnvironmentReference@Resources@Microsoft@@UBAHXZ
663?GetNumDataItemSections@PriDescriptor@Resources@Microsoft@@QBAHXZ
664?GetNumDecisionInfos@PriDescriptor@Resources@Microsoft@@QBAHXZ
665?GetNumDescendents@HierarchicalNames@Resources@Microsoft@@QBA_NHPAVIDefStatus@23@PAH1@Z
666?GetNumDescendents@HierarchicalSchema@Resources@Microsoft@@UBA_NHPAVIDefStatus@23@PAH1@Z
667?GetNumEntries@ReverseFileMap@Resources@Microsoft@@QBAHXZ
668?GetNumFiles@FolderInfo@Build@Resources@Microsoft@@QBAHXZ
669?GetNumInstanceLocators@EnvironmentReference@Resources@Microsoft@@UBAHXZ
670?GetNumInstanceTypes@EnvironmentReference@Resources@Microsoft@@UBAHXZ
671?GetNumItemTypes@EnvironmentReference@Resources@Microsoft@@UBAHXZ
672?GetNumItems@HierarchicalNames@Resources@Microsoft@@UBAHXZ
673?GetNumItems@HierarchicalSchema@Resources@Microsoft@@UBAHXZ
674?GetNumItems@HierarchicalSchemaReference@Resources@Microsoft@@QBAHXZ
675?GetNumItems@HierarchicalSchemaVersionInfo@Resources@Microsoft@@UBAHXZ
676?GetNumItems@HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@UBAHXZ
677?GetNumItems@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAHXZ
678?GetNumNames@HierarchicalNames@Resources@Microsoft@@UBAHXZ
679?GetNumNames@HierarchicalSchema@Resources@Microsoft@@UBAHXZ
680?GetNumPools@AtomPoolGroup@Resources@Microsoft@@QBAHXZ
681?GetNumReferencedFileSections@PriDescriptor@Resources@Microsoft@@QBAHXZ
682?GetNumResourceMaps@PriDescriptor@Resources@Microsoft@@QBAHXZ
683?GetNumRootFolders@FileFileList@Resources@Microsoft@@UBAHXZ
684?GetNumSchemas@PriDescriptor@Resources@Microsoft@@QBAHXZ
685?GetNumScopes@HierarchicalNames@Resources@Microsoft@@UBAHXZ
686?GetNumScopes@HierarchicalSchema@Resources@Microsoft@@UBAHXZ
687?GetNumScopes@HierarchicalSchemaReference@Resources@Microsoft@@QBAHXZ
688?GetNumScopes@HierarchicalSchemaVersionInfo@Resources@Microsoft@@UBAHXZ
689?GetNumScopes@HierarchicalSchemaVersionInfoBuilder@Build@Resources@Microsoft@@UBAHXZ
690?GetNumScopes@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAHXZ
691?GetNumSections@BaseFile@Resources@Microsoft@@QBAFXZ
692?GetNumSections@FileBuilder@Build@Resources@Microsoft@@QAAIXZ
693?GetNumSections@RemapInfo@Resources@Microsoft@@QBAFXZ
694?GetNumSubfolders@FolderInfo@Build@Resources@Microsoft@@QBAHXZ
695?GetNumVersionInfos@HierarchicalSchema@Resources@Microsoft@@UBAHXZ
696?GetNumVersionInfos@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAHXZ
697?GetOperand1Qualifier@ICondition@Resources@Microsoft@@UBA_NPAVIDefStatus@23@PAUAtom@23@@Z
698?GetOrAddQualifier@DecisionInfoBuilder@Build@Resources@Microsoft@@QAA_NPBG0GNPAVIDefStatus@34@PAVQualifierResult@34@@Z
699?GetOwner@FileInfoPrivateData@Build@Resources@Microsoft@@QBAPBXXZ
700?GetParentFolder@FileInfo@Build@Resources@Microsoft@@QBAPAVFolderInfo@234@XZ
701?GetParentFolder@FolderInfo@Build@Resources@Microsoft@@QBAPAV1234@XZ
702?GetParentSchema@NamedResourceResult@Resources@Microsoft@@UBAPBVIHierarchicalSchema@23@PAVIDefStatus@23@@Z
703?GetParentScope@HNamesNode@Build@Resources@Microsoft@@QBAPAVScopeInfo@234@XZ
704?GetPhase@FileBuilder@Build@Resources@Microsoft@@QBA?AW4BuildPhase@234@XZ
705?GetPool@DecisionBuilder@Build@Resources@Microsoft@@UBAPBVIDecisionInfo@34@PAVIDefStatus@34@@Z
706?GetPool@DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@UBAPBVIDecisionInfo@34@PAVIDefStatus@34@@Z
707?GetPoolIndex@Atom@Resources@Microsoft@@QBAHXZ
708?GetPoolIndex@FileAtomPool@Resources@Microsoft@@UBAHXZ
709?GetPoolIndex@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAHXZ
710?GetPreviousSibling@HNamesNode@Build@Resources@Microsoft@@QAAPAV1234@XZ
711?GetPriDescriptor@PriFile@Resources@Microsoft@@QBAPBVPriDescriptor@23@XZ
712?GetPriDescriptor@StandalonePriFile@Resources@Microsoft@@QBAPBVPriDescriptor@23@XZ
713?GetPriDescriptorSection@IMrmFile@Resources@Microsoft@@QBAPAVPriDescriptor@23@FPAVIDefStatus@23@@Z
714?GetPrivateData@FileInfo@Build@Resources@Microsoft@@QBAPAVFileInfoPrivateData@234@XZ
715?GetProfile@PriFile@Resources@Microsoft@@UBAPBVMrmProfile@23@XZ
716?GetProfile@StandalonePriFile@Resources@Microsoft@@UBAPBVMrmProfile@23@XZ
717?GetQualifier@IEnvironment@Resources@Microsoft@@QBA_NHPAVIDefStatus@23@PAUResourceQualifier@23@@Z
718?GetQualifier@IEnvironment@Resources@Microsoft@@QBA_NPBGPAVIDefStatus@23@PAUResourceQualifier@23@@Z
719?GetQualifier@IEnvironment@Resources@Microsoft@@QBA_NUAtom@23@PAVIDefStatus@23@PAUResourceQualifier@23@@Z
720?GetQualifierNames@IEnvironment@Resources@Microsoft@@QBAPBVIAtomPool@23@XZ
721?GetQualifierTypeNames@IEnvironment@Resources@Microsoft@@QBAPBVIAtomPool@23@XZ
722?GetRawResourceMap@ResourceCandidateResult@Resources@Microsoft@@QBAPBVIRawResourceMap@23@XZ
723?GetResourceIndexInSchema@NamedResourceResult@Resources@Microsoft@@UBAHPAVIDefStatus@23@@Z
724?GetResourceMap@ResourceMapBase@Resources@Microsoft@@IBAPBV123@XZ
725?GetResourceMapSection@IMrmFile@Resources@Microsoft@@QBAPAVResourceMapBase@23@FPAVIDefStatus@23@@Z
726?GetResourceValueLocatorNames@IEnvironment@Resources@Microsoft@@QBAPBVIAtomPool@23@XZ
727?GetResourceValueTypeNames@IEnvironment@Resources@Microsoft@@QBAPBVIAtomPool@23@XZ
728?GetReverseFileMapSection@IMrmFile@Resources@Microsoft@@QBAPAVReverseFileMap@23@FPAVIDefStatus@23@@Z
729?GetRootSubtree@ResourceMapBase@Resources@Microsoft@@UBAPBVResourceMapSubtree@23@XZ
730?GetRootSubtree@ResourceMapSubtree@Resources@Microsoft@@QBAPBV123@XZ
731?GetSchema@ResourceMapSectionBuilder@Build@Resources@Microsoft@@QBAPAVHierarchicalSchemaSectionBuilder@234@XZ
732?GetSchemaBlobFromFileSection@IHierarchicalSchema@Resources@Microsoft@@UBA_NPAVBlobResult@23@PAVIDefStatus@23@@Z
733?GetSchemaSection@IMrmFile@Resources@Microsoft@@QBAPAVHierarchicalSchema@23@FPAVIDefStatus@23@@Z
734?GetScopeNames@HierarchicalNames@Resources@Microsoft@@UBAPAVIAtomPool@23@XZ
735?GetScopeNames@HierarchicalNamesBuilder@Build@Resources@Microsoft@@QBAPAVIAtomPool@34@XZ
736?GetScopeNames@HierarchicalSchema@Resources@Microsoft@@UBAPAVIAtomPool@23@XZ
737?GetScopeNames@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAPAVIAtomPool@23@XZ
738?GetSection@IMrmFile@Resources@Microsoft@@QBAPBVIFileSection@23@FPAVIDefStatus@23@@Z
739?GetSectionData@BaseFile@Resources@Microsoft@@SAPAEPBU_DEFFILE_HEADER@@H@Z
740?GetSectionData@BaseFile@Resources@Microsoft@@SAPAXPBU_DEFFILE_HEADER@@PBU_DEFFILE_TOC_ENTRY@@@Z
741?GetSectionDataSize@BaseFile@Resources@Microsoft@@SAIPBU_DEFFILE_TOC_ENTRY@@@Z
742?GetSectionFlags@DataItemsSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
743?GetSectionFlags@DataSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
744?GetSectionFlags@DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
745?GetSectionFlags@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAGXZ
746?GetSectionFlags@FileListBuilder@Build@Resources@Microsoft@@UBAGXZ
747?GetSectionFlags@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UBAGXZ
748?GetSectionFlags@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
749?GetSectionFlags@PriSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
750?GetSectionFlags@ResourceMapSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
751?GetSectionFlags@ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@UBAGXZ
752?GetSectionHeader@BaseFile@Resources@Microsoft@@SAPAU_DEFFILE_SECTION_HEADER@@PBU_DEFFILE_HEADER@@PBU_DEFFILE_TOC_ENTRY@@@Z
753?GetSectionIndex@DataItemsSectionBuilder@Build@Resources@Microsoft@@UBAFXZ
754?GetSectionIndex@DataSectionBuilder@Build@Resources@Microsoft@@UBAFXZ
755?GetSectionIndex@DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UBAFXZ
756?GetSectionIndex@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAFXZ
757?GetSectionIndex@FileListBuilder@Build@Resources@Microsoft@@UBAFXZ
758?GetSectionIndex@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UBAFXZ
759?GetSectionIndex@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAFXZ
760?GetSectionIndex@PriSectionBuilder@Build@Resources@Microsoft@@UBAFXZ
761?GetSectionIndex@ResourceMapSectionBuilder@Build@Resources@Microsoft@@UBAFXZ
762?GetSectionIndex@ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@UBAFXZ
763?GetSectionMapping@RemapInfo@Resources@Microsoft@@QBAPAFPAF@Z
764?GetSectionQualifier@DataItemsSectionBuilder@Build@Resources@Microsoft@@UBAIXZ
765?GetSectionQualifier@DataSectionBuilder@Build@Resources@Microsoft@@UBAIXZ
766?GetSectionQualifier@DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UBAIXZ
767?GetSectionQualifier@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBAIXZ
768?GetSectionQualifier@FileListBuilder@Build@Resources@Microsoft@@UBAIXZ
769?GetSectionQualifier@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UBAIXZ
770?GetSectionQualifier@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAIXZ
771?GetSectionQualifier@PriSectionBuilder@Build@Resources@Microsoft@@UBAIXZ
772?GetSectionQualifier@ResourceMapSectionBuilder@Build@Resources@Microsoft@@UBAIXZ
773?GetSectionQualifier@ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@UBAIXZ
774?GetSectionStructureOverhead@BaseFile@Resources@Microsoft@@SAIXZ
775?GetSectionTrailer@BaseFile@Resources@Microsoft@@SAPAU_DEFFILE_SECTION_TRAILER@@PBU_DEFFILE_SECTION_HEADER@@@Z
776?GetSectionType@DataItemsSectionBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
777?GetSectionType@DataSectionBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
778?GetSectionType@DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
779?GetSectionType@FileAtomPoolBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
780?GetSectionType@FileListBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
781?GetSectionType@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
782?GetSectionType@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
783?GetSectionType@PriSectionBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
784?GetSectionType@ResourceMapSectionBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
785?GetSectionType@ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@UBA?AT_DEFFILE_SECTION_TYPEID@@XZ
786?GetSections@FileBuilder@Build@Resources@Microsoft@@IAAPAU_SectionInfo@1234@XZ
787?GetSegmentInitialChar@HierarchicalNamesConfig@Resources@Microsoft@@UBAGPBG@Z
788?GetSimpleId@HierarchicalSchema@Resources@Microsoft@@UBAPBGXZ
789?GetSimpleId@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAPBGXZ
790?GetSimpleId@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAPBGXZ
791?GetSmallAtom@Atom@Resources@Microsoft@@QBA?AT_DEF_ATOM_SMALL@@PAVIDefStatus@23@@Z
792?GetSmallAtom@Atom@Resources@Microsoft@@QBA_NPAVIDefStatus@23@PAT_DEF_ATOM_SMALL@@@Z
793?GetSmallIndex@Atom@Resources@Microsoft@@QBA_NPAVIDefStatus@23@PAG@Z
794?GetSmallIndex@Atom@Resources@Microsoft@@SA_NHPAVIDefStatus@23@PAG@Z
795?GetSmallPoolIndex@Atom@Resources@Microsoft@@QBA_NPAVIDefStatus@23@PAG@Z
796?GetSmallPoolIndex@Atom@Resources@Microsoft@@SA_NHPAVIDefStatus@23@PAG@Z
797?GetSmallPoolIndex@IAtomPool@Resources@Microsoft@@QBA_NPAVIDefStatus@23@PAG@Z
798?GetStringPool@FileAtomPoolBuilder@Build@Resources@Microsoft@@QAAPAVWriteableStringPool@234@XZ
799?GetStringResult@StringResultWrapper@Resources@Microsoft@@UAAPAU_DEFSTRINGRESULT@@XZ
800?GetStructureOverhead@BaseFile@Resources@Microsoft@@SAII@Z
801?GetSubtreeRootIndex@ResourceMapSubtree@Resources@Microsoft@@UBAHXZ
802?GetTargetOsVersion@PriFile@Resources@Microsoft@@UBAPBGXZ
803?GetTargetOsVersion@StandalonePriFile@Resources@Microsoft@@UBAPBGXZ
804?GetToc@BaseFile@Resources@Microsoft@@QBAPBU_DEFFILE_TOC_ENTRY@@PAVIDefStatus@23@@Z
805?GetToc@BaseFile@Resources@Microsoft@@SAPAU_DEFFILE_TOC_ENTRY@@PBU_DEFFILE_HEADER@@@Z
806?GetTotalNumFiles@FileFileList@Resources@Microsoft@@UBAHXZ
807?GetTotalNumFiles@FolderInfo@Build@Resources@Microsoft@@QBAHXZ
808?GetTotalNumFolders@FileFileList@Resources@Microsoft@@UBAHXZ
809?GetTotalNumFolders@FolderInfo@Build@Resources@Microsoft@@QBAHXZ
810?GetTotalNumItems@ScopeInfo@Build@Resources@Microsoft@@QBAHXZ
811?GetTotalNumScopes@ScopeInfo@Build@Resources@Microsoft@@QBAHXZ
812?GetUInt64@Atom@Resources@Microsoft@@QBA_KXZ
813?GetUniqueId@HierarchicalSchema@Resources@Microsoft@@UBAPBGXZ
814?GetUniqueId@HierarchicalSchemaReference@Resources@Microsoft@@QBAPBGXZ
815?GetUniqueId@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UBAPBGXZ
816?GetUniqueId@StaticHierarchicalSchemaDescription@Resources@Microsoft@@UBAPBGXZ
817?GetUniqueName@EnvironmentReference@Resources@Microsoft@@QBAPBGXZ
818?GetUniqueName@WindowsRuntimeEnvironment@Resources@Microsoft@@UBAPBGXZ
819?GetVersionChecksum@EnvironmentReference@Resources@Microsoft@@UBAIXZ
820?GetVersionChecksum@HierarchicalSchemaVersionInfo@Resources@Microsoft@@UBAIXZ
821?GetVersionInfo@HierarchicalSchemaReference@Resources@Microsoft@@QBAPBVIHierarchicalSchemaVersionInfo@23@XZ
822?GetWhat@DefStatusWrapper@Resources@Microsoft@@UBA?BKXZ
823?GetWhere@DefStatusWrapper@Resources@Microsoft@@UBAPBGXZ
824?HashMethodCaseInsensitive@Atom@Resources@Microsoft@@2W4DEF_ATOM_HASH_METHOD@@B
825?HashMethodDefault@Atom@Resources@Microsoft@@2W4DEF_ATOM_HASH_METHOD@@B
826?HashString@Atom@Resources@Microsoft@@SAIPBGPAVIDefStatus@23@@Z
827?HaveCurrentSegment@HierarchicalName@Build@Resources@Microsoft@@QBA_NXZ
828?HaveName@HierarchicalNameSegment@Build@Resources@Microsoft@@QBA_NXZ
829?HaveNextSegment@HierarchicalName@Build@Resources@Microsoft@@QBA_NXZ
830?IndexNone@Atom@Resources@Microsoft@@2HB
831?Init@BaseFile@Resources@Microsoft@@IAAXXZ
832?InitialLargeItemDataCapacity@DataItemsSectionBuilder@Build@Resources@Microsoft@@0HB
833?InitialLargeItemSize@DataItemsSectionBuilder@Build@Resources@Microsoft@@0HB
834?InitialQualifierSetsSize@DecisionBuilder@Build@Resources@Microsoft@@0HB
835?InitialQualifiersSize@DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@0HB
836?InitialSmallItemDataCapacity@DataItemsSectionBuilder@Build@Resources@Microsoft@@0HB
837?InitialSmallItemSize@DataItemsSectionBuilder@Build@Resources@Microsoft@@0HB
838?InitialSparseSize@AtomIndexedDictionaryBase@Build@Resources@Microsoft@@1HB
839?IsAbsolutePath@IStringResult@Resources@Microsoft@@QBA_NPAVIDefStatus@23@@Z
840?IsAbsolutePath@StringResultWrapper@Resources@Microsoft@@QBA_NPAVIDefStatus@23@@Z
841?IsAligned@BaseFile@Resources@Microsoft@@SA_NHH@Z
842?IsEmpty@IStringResult@Resources@Microsoft@@QAA_NXZ
843?IsEqual@Atom@Resources@Microsoft@@QBA_NT_DEF_ATOM_SMALL@@@Z
844?IsEqual@Atom@Resources@Microsoft@@QBA_NU123@@Z
845?IsFinalized@HierarchicalNamesBuilder@Build@Resources@Microsoft@@QBA_NXZ
846?IsMapGenerated@ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@ABA_NXZ
847?IsNull@Atom@Resources@Microsoft@@QBA_NXZ
848?IsPathSeparator@HierarchicalNamesConfig@Resources@Microsoft@@UBA_NG@Z
849?IsScope@ItemInfo@Build@Resources@Microsoft@@UBA_NXZ
850?IsScope@ScopeInfo@Build@Resources@Microsoft@@UBA_NXZ
851?IsValid@DataItemsSectionBuilder@Build@Resources@Microsoft@@UBA_NPAVIDefStatus@34@@Z
852?IsValid@DataSectionBuilder@Build@Resources@Microsoft@@UBA_NPAVIDefStatus@34@@Z
853?IsValid@DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UBA_NPAVIDefStatus@34@@Z
854?IsValid@FileListBuilder@Build@Resources@Microsoft@@UBA_NPAVIDefStatus@34@@Z
855?IsValid@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UBA_NPAVIDefStatus@34@@Z
856?IsValidAlignment@BaseFile@Resources@Microsoft@@SA_NIPAVIDefStatus@23@@Z
857?IsValidConditionOperator@ICondition@Resources@Microsoft@@SA_NW4ConditionOperator@123@@Z
858?IsValidDecisionIndex@DecisionInfoBuilder@Build@Resources@Microsoft@@QBA_NH@Z
859?IsValidFileRange@IFileList@Resources@Microsoft@@IBA_NHHPAVIDefStatus@23@@Z
860?IsValidFolderRange@IFileList@Resources@Microsoft@@IBA_NHHPAVIDefStatus@23@@Z
861?IsValidNonNull@Atom@Resources@Microsoft@@QBA_NXZ
862?IsValidOrNull@Atom@Resources@Microsoft@@QBA_NXZ
863?IsValidPoolIndex@Atom@Resources@Microsoft@@SA_NH@Z
864?IsValidQualifierIndex@DecisionInfoBuilder@Build@Resources@Microsoft@@QBA_NH@Z
865?IsValidQualifierSetIndex@DecisionInfoBuilder@Build@Resources@Microsoft@@QBA_NH@Z
866?IsValidSectionCount@BaseFile@Resources@Microsoft@@SA_NH@Z
867?IsValidSectionIndex@BaseFile@Resources@Microsoft@@SA_NH@Z
868?IsValidSegmentChar@HierarchicalNamesConfig@Resources@Microsoft@@UBA_NG@Z
869?IsValidSmallAtom@Atom@Resources@Microsoft@@QBA_NXZ
870?IsValidSmallAtomCount@Atom@Resources@Microsoft@@SA_NH@Z
871?IsValidSmallAtomIndex@Atom@Resources@Microsoft@@SA_NH@Z
872?IsValidSmallPoolIndex@Atom@Resources@Microsoft@@SA_NH@Z
873?LoadFileFlag@BaseFile@Resources@Microsoft@@2IB
874?MapFileFlag@BaseFile@Resources@Microsoft@@2IB
875?Matches@FileInfoPrivateData@Build@Resources@Microsoft@@QBA_NPAV1234@PAVIDefStatus@34@@Z
876?Matches@FileInfoPrivateData@Build@Resources@Microsoft@@QBA_NPBXHPAVIDefStatus@34@@Z
877?MaxAtomCount@Atom@Resources@Microsoft@@2HB
878?MaxAtomCountSmall@Atom@Resources@Microsoft@@2HB
879?MaxAtomIndex@Atom@Resources@Microsoft@@2HB
880?MaxAtomIndexSmall@Atom@Resources@Microsoft@@2HB
881?MaxFallbackScore@IQualifier@Resources@Microsoft@@2GB
882?MaxFileIndex@IFileList@Resources@Microsoft@@2GB
883?MaxInternalDataSize@ResourceMapSectionBuilder@Build@Resources@Microsoft@@2HB
884?MaxPoolCount@Atom@Resources@Microsoft@@2HB
885?MaxPoolCountSmall@Atom@Resources@Microsoft@@2HB
886?MaxPoolIndex@Atom@Resources@Microsoft@@2HB
887?MaxPoolIndexSmall@Atom@Resources@Microsoft@@2HB
888?MaxSectionCount@BaseFile@Resources@Microsoft@@2FB
889?MaxSectionIndex@BaseFile@Resources@Microsoft@@2FB
890?MinFallbackScore@IQualifier@Resources@Microsoft@@2GB
891?MoveToRoot@ResourceMapSubtree@Resources@Microsoft@@QAA_NPAVIDefStatus@23@@Z
892?NeutralOnlyDecisionIndex@IDecisionInfo@Resources@Microsoft@@2HB
893?New@AtomPoolGroup@Resources@Microsoft@@SAPAV123@PAVIDefStatus@23@@Z
894?New@DecisionInfoBuilder@Build@Resources@Microsoft@@SAPAV1234@PBVUnifiedEnvironment@34@PAVIDefStatus@34@@Z
895?New@StaticAtomPool@Resources@Microsoft@@SAPAV123@PBQBGHPBG_NPAVIDefStatus@23@@Z
896?New@WriteableStringPool@Build@Resources@Microsoft@@SAPAV1234@IPAVIDefStatus@34@@Z
897?New@WriteableStringPool@Build@Resources@Microsoft@@SAPAV1234@PAGIPAVIDefStatus@34@@Z
898?New@WriteableStringPool@Build@Resources@Microsoft@@SAPAV1234@PAVIDefStatus@34@@Z
899?NormalizePathSlashes@IStringResult@Resources@Microsoft@@UAA_NPAVIDefStatus@23@@Z
900?NullAtomIndex@Atom@Resources@Microsoft@@2HB
901?NullPoolIndex@Atom@Resources@Microsoft@@2HB
902?OperatorIsUnary@QualifierResult@Resources@Microsoft@@UBA_NXZ
903?PadData@BaseFile@Resources@Microsoft@@SAHHH@Z
904?PadSectionData@BaseFile@Resources@Microsoft@@SAHH@Z
905?PathResourceValueTypeIndex@WindowsRuntimeEnvironment@Resources@Microsoft@@2HB
906?PoolIndexNone@Atom@Resources@Microsoft@@2HB
907?PresenceMaskWidth@RemapUInt16@Resources@Microsoft@@1HB
908?RemapAtom@RemapInfo@Resources@Microsoft@@SA?AUAtom@23@PAV123@U423@PAVIDefStatus@23@@Z
909?Reset@DefStatusWrapper@Resources@Microsoft@@UAAXXZ
910?SectionIndexNone@BaseFile@Resources@Microsoft@@2FB
911?SectionIsPresent@BaseFile@Resources@Microsoft@@QAA_NF@Z
912?SectionTypesEqual@BaseFile@Resources@Microsoft@@SA_NABT_DEFFILE_SECTION_TYPEID@@0@Z
913?Set@Atom@Resources@Microsoft@@QAAXHH@Z
914?Set@Atom@Resources@Microsoft@@QAAXT_DEF_ATOM@@@Z
915?Set@Atom@Resources@Microsoft@@QAAXU123@@Z
916?Set@NamedResourceResult@Resources@Microsoft@@QAA_NPBVIRawResourceMap@23@HPAVIDefStatus@23@@Z
917?SetAtomPoolGroup@FileAtomPool@Resources@Microsoft@@UAAXPAVAtomPoolGroup@23@@Z
918?SetAtomPoolGroup@FileAtomPoolBuilder@Build@Resources@Microsoft@@UAAXPAVAtomPoolGroup@34@@Z
919?SetByRef@HierarchicalNameSegment@Build@Resources@Microsoft@@QAA_NPBGPAVIDefStatus@34@@Z
920?SetByRef@HierarchicalNameSegment@Build@Resources@Microsoft@@QAA_NPBV1234@PAVIDefStatus@34@@Z
921?SetCopy@HierarchicalNameSegment@Build@Resources@Microsoft@@QAA_NPBGPAVIDefStatus@34@@Z
922?SetCopy@HierarchicalNameSegment@Build@Resources@Microsoft@@QAA_NPBV1234@PAVIDefStatus@34@@Z
923?SetFlag@FileInfo@Build@Resources@Microsoft@@QAAXG@Z
924?SetFromInt64@Atom@Resources@Microsoft@@QAAX_J@Z
925?SetFromUInt64@Atom@Resources@Microsoft@@QAAX_K@Z
926?SetIndex@DecisionBuilder@Build@Resources@Microsoft@@QAAXH@Z
927?SetIndex@DecisionInfoQualifierSetBuilder@Build@Resources@Microsoft@@QAAXH@Z
928?SetIndex@FileInfo@Build@Resources@Microsoft@@QAAXH@Z
929?SetIndex@FolderInfo@Build@Resources@Microsoft@@QAAXH@Z
930?SetNameIndex@HNamesNode@Build@Resources@Microsoft@@QAAXH@Z
931?SetPathByRef@HierarchicalName@Build@Resources@Microsoft@@QAA_NPBGPAVIDefStatus@34@@Z
932?SetPhase@FileBuilder@Build@Resources@Microsoft@@QAA_NW4BuildPhase@234@@Z
933?SetPoolIndex@FileAtomPool@Resources@Microsoft@@UAAXH@Z
934?SetPoolIndex@FileAtomPoolBuilder@Build@Resources@Microsoft@@UAAXH@Z
935?SetRef@IStringResult@Resources@Microsoft@@SA_NPAV123@PBGPAVIDefStatus@23@@Z
936?SetSectionIndex@DataItemsSectionBuilder@Build@Resources@Microsoft@@UAAXF@Z
937?SetSectionIndex@DataSectionBuilder@Build@Resources@Microsoft@@UAAXF@Z
938?SetSectionIndex@DecisionInfoSectionBuilder@Build@Resources@Microsoft@@UAAXF@Z
939?SetSectionIndex@FileAtomPoolBuilder@Build@Resources@Microsoft@@UAAXF@Z
940?SetSectionIndex@FileListBuilder@Build@Resources@Microsoft@@UAAXF@Z
941?SetSectionIndex@HierarchicalNamesBuilder@Build@Resources@Microsoft@@UAAXF@Z
942?SetSectionIndex@HierarchicalSchemaSectionBuilder@Build@Resources@Microsoft@@UAAXF@Z
943?SetSectionIndex@PriSectionBuilder@Build@Resources@Microsoft@@UAAXF@Z
944?SetSectionIndex@ResourceMapSectionBuilder@Build@Resources@Microsoft@@UAAXF@Z
945?SetSectionIndex@ReverseFileMapSectionBuilder@Build@Resources@Microsoft@@UAAXF@Z
946?Size@RemapUInt16@Resources@Microsoft@@QBAHXZ
947?StringResourceValueTypeIndex@WindowsRuntimeEnvironment@Resources@Microsoft@@2HB
948?Succeeded@DefStatusWrapper@Resources@Microsoft@@UBA_NXZ
949?ToDoubleScore@IQualifier@Resources@Microsoft@@SANGPAVIDefStatus@23@@Z
950?ToItem@HNamesNode@Build@Resources@Microsoft@@UAAPAVItemInfo@234@XZ
951?ToItem@ItemInfo@Build@Resources@Microsoft@@UAAPAV1234@XZ
952?ToItem@ScopeInfo@Build@Resources@Microsoft@@UAAPAVItemInfo@234@XZ
953?ToScope@HNamesNode@Build@Resources@Microsoft@@UAAPAVScopeInfo@234@XZ
954?ToScope@ScopeInfo@Build@Resources@Microsoft@@UAAPAV1234@XZ
955?ToUint16Score@IQualifier@Resources@Microsoft@@SAGNPAVIDefStatus@23@@Z
956?TruncData@BaseFile@Resources@Microsoft@@SAHHH@Z
957?TryGetAtom@IAtomPool@Resources@Microsoft@@UBA_NHPAVIDefStatus@23@PAUAtom@23@@Z
958?TryGetItemInfo@HierarchicalSchema@Resources@Microsoft@@UBA_NHPAVIDefStatus@23@PAVIStringResult@23@@Z
959?TryGetItemLocalName@HierarchicalSchema@Resources@Microsoft@@UBA_NHPAVIDefStatus@23@PAVIStringResult@23@@Z
960?TryGetName@HierarchicalSchema@Resources@Microsoft@@QBA_NHHPAVIDefStatus@23@PAVIStringResult@23@PAH2@Z
961?TryGetName@HierarchicalSchema@Resources@Microsoft@@QBA_NHPAVIDefStatus@23@PAVIStringResult@23@PAH2@Z
962?TryGetNext@FileInfoPrivateData@Build@Resources@Microsoft@@QBA_NPBXPAVIDefStatus@34@PAPAV1234@@Z
963?TryGetPrivateData@FileInfo@Build@Resources@Microsoft@@QBA_NPBXPAVIDefStatus@34@PAPAVFileInfoPrivateData@234@@Z
964?TryGetRelativeItemName@HierarchicalSchema@Resources@Microsoft@@UBA_NHHPAVIDefStatus@23@PAVIStringResult@23@@Z
965?TryGetRelativeScopeName@HierarchicalSchema@Resources@Microsoft@@UBA_NHHPAVIDefStatus@23@PAVIStringResult@23@@Z
966?TryGetScopeChild@HierarchicalSchema@Resources@Microsoft@@UBA_NHHPAVIDefStatus@23@PAH1@Z
967?TryGetScopeChildName@HierarchicalSchema@Resources@Microsoft@@UBA_NHHPAVIDefStatus@23@PAVIStringResult@23@@Z
968?TryGetScopeInfo@HierarchicalSchema@Resources@Microsoft@@UBA_NHPAVIDefStatus@23@PAVIStringResult@23@PAH@Z
969?TryGetSmallAtom@Atom@Resources@Microsoft@@QBA_NPAT_DEF_ATOM_SMALL@@@Z
970?TryRemapAtom@RemapInfo@Resources@Microsoft@@SA_NPAV123@UAtom@23@PAVIDefStatus@23@PAU423@@Z
971?UnconditionalQualifierSetIndex@IDecisionInfo@Resources@Microsoft@@2HB
972?UseDataItemLocator@MrmBuildConfiguration@Build@Resources@Microsoft@@QBA_NXZ
973?UseDataItemLocatorFlag@MrmBuildConfiguration@Build@Resources@Microsoft@@2IB
974?UseFileInfoLocator@MrmBuildConfiguration@Build@Resources@Microsoft@@QBA_NXZ
975?UseFileInfoLocatorFlag@MrmBuildConfiguration@Build@Resources@Microsoft@@2IB
976?UseInstanceLocator@MrmBuildConfiguration@Build@Resources@Microsoft@@QBA_NXZ
977?UseInstanceLocatorFlag@MrmBuildConfiguration@Build@Resources@Microsoft@@2IB
978?ValidFlags@BaseFile@Resources@Microsoft@@2IB
979?fCompareCaseInsensitive@WriteableStringPool@Build@Resources@Microsoft@@2IB
980?fCompareDefault@WriteableStringPool@Build@Resources@Microsoft@@2IB
981?fExternalBuffer@WriteableStringPool@Build@Resources@Microsoft@@1IB
982?maxListBufferSize@DataBlobBuilder@Build@Resources@Microsoft@@1IB
983CreateApplicabilityContext
984FreeApplicabilityContext
985FreeApplicablePackages
986GetApplicablePackages
987GetApplicablePackagesForUser
lib/libc/mingw/libarm32/appxdeploymentclient.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of AppXDeploymentClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppXDeploymentClient.dll"
7EXPORTS
8ord_1 @1
9GetApplicability
10AppxGetPackageType
11AppxPackageRepositoryRecoverStagedPackages
12AppxPackageRepositoryRecoverUserInstalls
13AppxRecoverUserInstallsForUpgrade
14AppxDeletePackageFiles
15AppxRequestRemovePackageForUser
16IsPackageInstalled
17RDSRecoverRequests
18AppxPreStageCleanupRunTask
19AppxPreRegisterPackage
20ReArmAppxPreStageCleanupTask
21AppxAddPackageToAllUserStoreForPbr
22GetPackageApplicabilityForUserLogon
23ord_16 @16
24AppxValidatePackages
lib/libc/mingw/libarm32/appxdeploymentextensions.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of AppxDeploymentExtensions.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppxDeploymentExtensions.dll"
7EXPORTS
8LoadCategoryNameTable
9LoadExtensionRegistrationTable
10ShellRefresh
lib/libc/mingw/libarm32/appxdeploymentserver.def created+34
......@@ -0,0 +1,34 @@
1;
2; Definition file of AppxDeploymentServer.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppxDeploymentServer.dll"
7EXPORTS
8CancelDeploymentImplementation
9CreateWnfStateNameImplementation
10EnumPackagesByUserSidInternal
11EnumPackagesByUserSidNamePublisherInternal
12EnumPackagesByUserSidPackageFamilyNameInternal
13EnumVisibilityByPackageFullNameInternal
14FindPackageByUserSidPackageFullNameInternal
15FixStagedPackagesImplementation
16GenerateBytecodeForPackageImplementation
17GenerateBytecodeForPackagesImplementation
18GetApplicabilityImplementation
19GetDeploymentError
20GetPackageFilesDiskUsageImplementation
21GetPackageTypeImplementation
22GetSortedRegisterPackageListImplementation
23IsPackageInstalledInternal
24PackageRepositoryAllocate
25PackageRepositoryFree
26RDSRecoverRequestsImplementation
27RequestPackageOperationImplementation
28ServiceMain
29SetDeploymentError
30SetPackageStateImplementation
31StartDeploymentImplementation
32AddToPurgeList
33AppXSetTrustLabelOnPackage
34SvchostPushServiceGlobals
lib/libc/mingw/libarm32/appxsip.def created+25
......@@ -0,0 +1,25 @@
1;
2; Definition file of AppxSip.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppxSip.dll"
7EXPORTS
8AppxSipIsFileSupportedName
9AppxSipGetSignedDataMsg
10AppxSipPutSignedDataMsg
11AppxSipRemoveSignedDataMsg
12AppxSipCreateIndirectData
13AppxSipVerifyIndirectData
14P7xSipIsFileSupportedName
15P7xSipGetSignedDataMsg
16P7xSipPutSignedDataMsg
17P7xSipRemoveSignedDataMsg
18P7xSipCreateIndirectData
19P7xSipVerifyIndirectData
20AppxBundleSipIsFileSupportedName
21AppxBundleSipGetSignedDataMsg
22AppxBundleSipPutSignedDataMsg
23AppxBundleSipRemoveSignedDataMsg
24AppxBundleSipCreateIndirectData
25AppxBundleSipVerifyIndirectData
lib/libc/mingw/libarm32/appxsysprep.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of AppxSysprep.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppxSysprep.dll"
7EXPORTS
8AppxSysprepSpecialize
9SysprepGeneralize
lib/libc/mingw/libarm32/atl110.def created+59
......@@ -0,0 +1,59 @@
1;
2; Definition file of atl110.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "atl110.DLL"
7EXPORTS
8AtlAdvise
9AtlUnadvise
10AtlFreeMarshalStream
11AtlMarshalPtrInProc
12AtlUnmarshalPtr
13AtlComModuleGetClassObject
14AtlComModuleRegisterClassObjects
15AtlComModuleRevokeClassObjects
16AtlComModuleUnregisterServer
17AtlUpdateRegistryFromResourceD
18AtlWaitWithMessageLoop
19AtlSetErrorInfo
20AtlCreateTargetDC
21AtlHiMetricToPixel
22AtlPixelToHiMetric
23AtlDevModeW2A
24AtlComPtrAssign
25AtlComQIPtrAssign
26AtlInternalQueryInterface
27AtlGetVersion
28AtlAxDialogBoxW
29AtlAxDialogBoxA
30AtlAxCreateDialogW
31AtlAxCreateDialogA
32AtlAxCreateControl
33AtlAxCreateControlEx
34AtlAxAttachControl
35AtlAxWinInit
36AtlWinModuleAddCreateWndData
37AtlWinModuleExtractCreateWndData
38AtlWinModuleRegisterWndClassInfoW
39AtlWinModuleRegisterWndClassInfoA
40AtlAxGetControl
41AtlAxGetHost
42AtlRegisterClassCategoriesHelper
43AtlIPersistStreamInit_Load
44AtlIPersistStreamInit_Save
45AtlIPersistPropertyBag_Load
46AtlIPersistPropertyBag_Save
47AtlGetObjectSourceInterface
48AtlLoadTypeLib
49AtlModuleAddTermFunc
50AtlAxCreateControlLic
51AtlAxCreateControlLicEx
52AtlCreateRegistrar
53AtlWinModuleRegisterClassExW
54AtlWinModuleRegisterClassExA
55AtlCallTermFunc
56AtlWinModuleInit
57AtlWinModuleTerm
58AtlSetPerUserRegistration
59AtlGetPerUserRegistration
lib/libc/mingw/libarm32/audioendpointbuilder.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of AUDIOEPB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AUDIOEPB.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/audioeng.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of audioeng.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "audioeng.dll"
7EXPORTS
8AERT_Allocate
9AERT_Free
lib/libc/mingw/libarm32/auditcse.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of AUDITCSE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AUDITCSE.dll"
7EXPORTS
8GenerateGroupPolicy
9GenerateGroupPolicyCap
10ProcessGroupPolicyEx
11ProcessGroupPolicyExCap
lib/libc/mingw/libarm32/authbroker.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of AuthBroker.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AuthBroker.dll"
7EXPORTS
8AuthBrokerClearThreadClientContext
9AuthBrokerCreateClientContext
10AuthBrokerFreeClientContext
11AuthBrokerSetThreadClientContext
12PurgeAuthHostSsoCache
lib/libc/mingw/libarm32/azsqlext.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of AzSqlExt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AzSqlExt.dll"
7EXPORTS
8AzGenerateAudit
9__GetXpVersion
10xp_AzManAddRole
11xp_AzManAddUserToRole
12xp_AzManDeleteRole
13xp_AzManRemoveUserFromRole
lib/libc/mingw/libarm32/basecsp.def created+33
......@@ -0,0 +1,33 @@
1;
2; Definition file of BaseCSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BaseCSP.dll"
7EXPORTS
8CPAcquireContext
9CPAcquireContextW
10CPCreateHash
11CPDecrypt
12CPDeriveKey
13CPDestroyHash
14CPDestroyKey
15CPDuplicateHash
16CPDuplicateKey
17CPEncrypt
18CPExportKey
19CPGenKey
20CPGenRandom
21CPGetHashParam
22CPGetKeyParam
23CPGetProvParam
24CPGetUserKey
25CPHashData
26CPHashSessionKey
27CPImportKey
28CPReleaseContext
29CPSetHashParam
30CPSetKeyParam
31CPSetProvParam
32CPSignHash
33CPVerifySignature
lib/libc/mingw/libarm32/batmeter.def created+36
......@@ -0,0 +1,36 @@
1;
2; Definition file of BatMeter.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BatMeter.dll"
7EXPORTS
8ord_999 @999
9BatMeterIconAnimationReset
10BatMeterIconThemeReset
11BatMeterOnDeviceChange
12CleanupBatteryData
13CreateBatteryData
14GetBatMeterIconAnimationState
15GetBatMeterIconAnimationTimeDelay
16GetBatMeterIconAnimationUpdate
17GetBatteryCapacityInfo
18GetBatteryDetails
19GetBatteryImmersiveIcon
20GetBatteryInfo
21GetBatteryStatusText
22GetBatteryWorkingState
23IsBatteryBad
24IsBatteryHealthWarningEnabled
25IsBatteryLevelCritical
26IsBatteryLevelLow
27IsBatteryLevelReserve
28PowerCapabilities
29QueryBatteryData
30SetBatteryHealthWarningState
31SetBatteryLevel
32SetBatteryWorkingState
33SubscribeBatteryUpdateNotification
34UnsubscribeBatteryUpdateNotification
35UpdateBatteryData
36UpdateBatteryDataAsync
lib/libc/mingw/libarm32/bcd.def created+73
......@@ -0,0 +1,73 @@
1;
2; Definition file of bcd.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bcd.dll"
7EXPORTS
8BcdCloseObject
9BcdCloseStore
10BcdCopyObject
11BcdCopyObjectEx
12BcdCopyObjects
13BcdCreateObject
14BcdCreateStore
15BcdDeleteElement
16BcdDeleteObject
17BcdDeleteObjectReferences
18BcdDeleteSystemStore
19BcdEnumerateAndUnpackElements
20BcdEnumerateElementTypes
21BcdEnumerateElements
22BcdEnumerateElementsWithFlags
23BcdEnumerateObjects
24BcdExportStore
25BcdForciblyUnloadStore
26BcdGetElementData
27BcdGetElementDataWithFlags
28BcdImportStore
29BcdImportStoreWithFlags
30BcdMarkAsSystemStore
31BcdOpenObject
32BcdOpenStoreFromFile
33BcdOpenSystemStore
34BcdQueryObject
35BcdSetElementData
36BcdSetElementDataWithFlags
37BcdSetSystemStoreDevice
38GUID_BAD_MEMORY_GROUP
39GUID_BOOT_LOADER_SETTINGS_GROUP
40GUID_CURRENT_BOOT_ENTRY
41GUID_DEBUGGER_SETTINGS_GROUP
42GUID_DEFAULT_BOOT_ENTRY
43GUID_EMS_SETTINGS_GROUP
44GUID_FIRMWARE_BOOTMGR
45GUID_GLOBAL_SETTINGS_GROUP
46GUID_HYPERVISOR_SETTINGS_GROUP
47GUID_KERNEL_DEBUGGER_SETTINGS_GROUP
48GUID_RESUME_LOADER_SETTINGS_GROUP
49GUID_WINDOWS_BOOTMGR
50GUID_WINDOWS_LEGACY_NTLDR
51GUID_WINDOWS_MEMORY_TESTER
52GUID_WINDOWS_OS_TARGET_TEMPLATE_EFI
53GUID_WINDOWS_OS_TARGET_TEMPLATE_PCAT
54GUID_WINDOWS_RESUME_TARGET_TEMPLATE_EFI
55GUID_WINDOWS_RESUME_TARGET_TEMPLATE_PCAT
56GUID_WINDOWS_SETUP_EFI
57GUID_WINDOWS_SETUP_PCAT
58GUID_WINDOWS_SETUP_RAMDISK_OPTIONS
59PARTITION_BASIC_DATA_GUID
60PARTITION_CLUSTER_GUID
61PARTITION_ENTRY_UNUSED_GUID
62PARTITION_LDM_DATA_GUID
63PARTITION_LDM_METADATA_GUID
64PARTITION_MSFT_RECOVERY_GUID
65PARTITION_MSFT_RESERVED_GUID
66PARTITION_MSFT_SNAPSHOT_GUID
67PARTITION_SPACES_GUID
68PARTITION_SYSTEM_GUID
69SyspartDirectGetSystemDisk
70SyspartDirectGetSystemPartition
71SyspartDirectSetSystemDevice
72SyspartGetSystemDisk
73SyspartGetSystemPartition
lib/libc/mingw/libarm32/bcp47langs.def created+134
......@@ -0,0 +1,134 @@
1;
2; Definition file of Bcp47Langs.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Bcp47Langs.dll"
7EXPORTS
8??0CLanguage@Internal@Windows@@QAA@ABV012@@Z
9??0CLanguage@Internal@Windows@@QAA@PAUHKL__@@@Z
10??0CLanguage@Internal@Windows@@QAA@PBG@Z
11??0CLanguage@Internal@Windows@@QAA@XZ
12??0CLanguage@Internal@Windows@@QAA@_K@Z
13??0CLanguagesListFactory@Internal@Windows@@AAA@XZ
14??0CRegion@Internal@Windows@@QAA@I@Z
15??0CRegion@Internal@Windows@@QAA@PBG@Z
16??1CLanguage@Internal@Windows@@UAA@XZ
17??1CLanguagesListFactory@Internal@Windows@@AAA@XZ
18??1CRegion@Internal@Windows@@QAA@XZ
19??4CLanguage@Internal@Windows@@IAAAAV012@ABV012@@Z
20??4CLanguagesListFactory@Internal@Windows@@QAAAAV012@ABV012@@Z
21??4CRegion@Internal@Windows@@QAAAAV012@ABV012@@Z
22??8CLanguage@Internal@Windows@@QBA_NABV012@@Z
23??8CRegion@Internal@Windows@@QBA_NABV012@@Z
24??8CRegion@Internal@Windows@@QBA_NI@Z
25??BCLanguage@Internal@Windows@@QBA?AUBcp47TagSubtagsInfo@12@XZ
26??BCLanguage@Internal@Windows@@QBA_KXZ
27??_7CLanguage@Internal@Windows@@6B@ DATA
28?CheckLanguageRegionAffinity@CLanguage@Internal@Windows@@QBAJABV123@PAH@Z
29?CloseAppKey@CLanguagesListFactory@Internal@Windows@@CAXPBGPAUHKEY__@@PAX@Z
30?Compare@CLanguage@Internal@Windows@@QBAJABV123@PAN@Z
31?Compare@CLanguage@Internal@Windows@@QBAJPBGPAN@Z
32?Compare@CRegion@Internal@Windows@@QBAJABV123@PAN@Z
33?CompareUsingAny@CLanguage@Internal@Windows@@QBAJABV123@PAN@Z
34?CompareUsingAny@CLanguage@Internal@Windows@@QBAJPBGPAN@Z
35?CreateInstance@CLanguagesList@Internal@Windows@@SAJPBGPAPBV123@@Z
36?FindClosestInList@CLanguage@Internal@Windows@@QBAJPBGW4BCP47_COMPARISON_ALGORITHM@23@PAPBGPAN@Z
37?GetAbbreviation@CLanguage@Internal@Windows@@QBAJIPAGPAI@Z
38?GetApplicationLanguageOverride@CLanguagesListFactory@Internal@Windows@@SAJPBGPAG@Z
39?GetApplicationLanguages@CLanguagesListFactory@Internal@Windows@@SAJPBGPAPBVCLanguagesList@23@@Z
40?GetApplicationLanguagesAsHTTPAccept@CLanguagesListFactory@Internal@Windows@@SAJPBGPAPAG@Z
41?GetApplicationLanguagesAsMUI@CLanguagesListFactory@Internal@Windows@@SAJPBG_NPAPAG@Z
42?GetCompositeRegionCode@CRegion@Internal@Windows@@QBAIXZ
43?GetCompositeRegionCode@CRegion@Internal@Windows@@SAII@Z
44?GetDirectionality@CLanguage@Internal@Windows@@QBAJPAW4BCP47_SCRIPT_DIRECTIONALITY@23@@Z
45?GetIso15924Code@CLanguage@Internal@Windows@@QBAJIPAGPAI@Z
46?GetIso3166Code@CLanguage@Internal@Windows@@QBAJIPAGPAI@Z
47?GetIso639Code@CLanguage@Internal@Windows@@QBAJIPAGPAI@Z
48?GetSubtagFields@CLanguage@Internal@Windows@@QBAJW4BCP47_SUBTAG_FLAGS@23@IPAGPAI@Z
49?GetSubtagFields@CLanguage@Internal@Windows@@QBAJW4BCP47_SUBTAG_FLAGS@23@PAG@Z
50?GetSubtagsMap@CLanguage@Internal@Windows@@QBA?AW4BCP47_SUBTAG_FLAGS@23@XZ
51?GetUN_M49Code@CLanguage@Internal@Windows@@QBAJIPAGPAI@Z
52?GetUserLanguages@CLanguagesListFactory@Internal@Windows@@SAJPAPBVCLanguagesList@23@@Z
53?Initialize@CLanguage@Internal@Windows@@IAAJPBG@Z
54?IsPseudoLanguage@CLanguage@Internal@Windows@@QBA_NXZ
55?IsValidRegionTag@CRegion@Internal@Windows@@QAA_NXZ
56?IsValidRegionTag@CRegion@Internal@Windows@@SA_NPBG@Z
57?IsValidTag@CLanguage@Internal@Windows@@QBA_NXZ
58?IsValidTag@CLanguage@Internal@Windows@@SA_NPBG@Z
59?IsWellFormedTag@CLanguage@Internal@Windows@@QBA_NXZ
60?IsWellFormedTag@CLanguage@Internal@Windows@@SA_NPBG@Z
61?LanguageListToStringWrapper@CLanguagesListFactory@Internal@Windows@@CAJPBVCLanguagesList@23@W4BCP47_SUBTAG_FLAGS@23@PAIPAPAG@Z
62?OpenAppKey@CLanguagesListFactory@Internal@Windows@@CAJPBGPAPAUHKEY__@@PAPAX@Z
63?ParseTag@CLanguage@Internal@Windows@@IAA_NPBG@Z
64?SetApplicationLanguageOverride@CLanguagesListFactory@Internal@Windows@@SAJPBGPBVCLanguage@23@@Z
65?SetApplicationManifestLanguages@CLanguagesListFactory@Internal@Windows@@SAJPBGPBVCLanguagesList@23@@Z
66?TryFindFirstInList@CLanguage@Internal@Windows@@QBAJPBGW4BCP47_CLOSENESS_MEASURE@23@PAPBG@Z
67?TryFindRegionId@CRegion@Internal@Windows@@CAIPBG@Z
68?ValidateTag@CLanguage@Internal@Windows@@IAA_NPBG@Z
69?ValidateTagAndInitialize@CLanguage@Internal@Windows@@IAA_NPBG@Z
70AppendUserLanguageInputMethods
71AppendUserLanguageInternal
72AppendUserLanguages
73Bcp47BufferFromLcid
74Bcp47FromCompactTagInternal
75Bcp47FromHkl
76Bcp47FromLcid
77Bcp47GetAbbreviation
78Bcp47GetDirectionality
79Bcp47GetDistance
80Bcp47GetExtensionSingletons
81Bcp47GetExtensionSubstring
82Bcp47GetIsoLanguageCode
83Bcp47GetIsoScriptCode
84Bcp47GetLanguageName
85Bcp47GetMuiForm
86Bcp47GetNeutralForm
87Bcp47GetNlsForm
88Bcp47GetSubtagMapInternal
89Bcp47GetUnIsoRegionCode
90Bcp47IsInstalledAndLicensedAsSystemLanguage
91Bcp47IsValid
92Bcp47IsWellFormed
93Bcp47Normalize
94Bcp47RequiresTransientLcid
95ClearApplicationLanguageOverride
96ClearApplicationManifestLanguages
97ClearHttpAcceptLanguageOptOut
98ClearUserDisplayLanguageOverride
99ClearUserLocaleFromLanguageProfileOptOut
100CompactTagFromBcp47Internal
101FilterLanguageListOnInstalledMuiLanguages
102GetApplicationLanguageOverride
103GetApplicationLanguages
104GetApplicationLayoutDirection
105GetApplicationManifestLanguages
106GetAppropriateUserLocaleForUserLanguages
107GetAvailableTransientLcidCount
108GetHttpAcceptLanguageOptOut
109GetInputMethodOverrideForUser
110GetPendingUserDisplayLanguage
111GetSerializedUserLanguageProfile
112GetUserDisplayLanguageOverride
113GetUserLanguageInputMethods
114GetUserLanguageInputMethodsForUser
115GetUserLanguages
116GetUserLanguagesForUser
117GetUserLocaleFromLanguageProfileOptOut
118IsTransientLcid
119IsValidBcp47RegionSubtag
120LanguageListAsHttpAcceptHeader
121LanguageListAsMuiForm
122LcidFromBcp47
123RemoveInputsForAllLanguagesInternal
124RemoveUserLanguageInputMethods
125ResolveLanguages
126SetApplicationLanguageOverride
127SetApplicationManifestLanguages
128SetHttpAcceptLanguageOptOut
129SetInputMethodOverride
130SetUserDisplayLanguageOverride
131SetUserLanguageInputMethods
132SetUserLanguagesInternal
133SetUserLocaleFromLanguageProfileOptOut
134SqmLanguageProfileData
lib/libc/mingw/libarm32/bcryptprimitives.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of bcryptPrimitives.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bcryptPrimitives.dll"
7EXPORTS
8GetAsymmetricEncryptionInterface
9GetCipherInterface
10GetHashInterface
11GetKeyDerivationInterface
12GetRngInterface
13GetSecretAgreementInterface
14GetSignatureInterface
15ProcessPrng
lib/libc/mingw/libarm32/bdehdcfglib.def created+117
......@@ -0,0 +1,117 @@
1;
2; Definition file of BDEHDCFGLIB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BDEHDCFGLIB.dll"
7EXPORTS
8??0CBcdStore@@IAA@XZ
9??0CBcdStore@@QAA@ABV0@@Z
10??0CBcdWmiWrapper@@IAA@XZ
11??0CBcdWmiWrapper@@QAA@ABV0@@Z
12??0CBdeCfgLibraryLoader@@QAA@XZ
13??0CDriveConfiguration@@QAA@XZ
14??1CBcdStore@@UAA@XZ
15??1CBcdWmiWrapper@@MAA@XZ
16??1CBdeCfgLibraryLoader@@QAA@XZ
17??1CDriveConfiguration@@QAA@XZ
18??4CBcdStore@@QAAAAV0@ABV0@@Z
19??4CBcdWmiWrapper@@QAAAAV0@ABV0@@Z
20??4CBdeCfgLibraryLoader@@QAAAAV0@ABV0@@Z
21??4CDriveConfiguration@@QAAAAV0@ABV0@@Z
22??_7CBcdStore@@6B@ DATA
23??_7CBcdWmiWrapper@@6B@ DATA
24?ActionRequiresCreate@CDriveConfiguration@@QAA_NXZ
25?ActionRequiresMerge@CDriveConfiguration@@QAA_NXZ
26?ActionRequiresShrink@CDriveConfiguration@@QAA_NXZ
27BdeCfgCalculateSizeRequirements
28BdeCfgCanCreateActivePartOnDisk
29BdeCfgCheckAndGetBootVolume
30BdeCfgCheckGPTRecoveryPartition
31BdeCfgCheckVolumeAsCandidate
32BdeCfgCleanupOldBootFiles
33BdeCfgCountGPTPartitions
34BdeCfgCreateWinREPartitionGPT
35BdeCfgDetectWinRESize
36BdeCfgDetectWinREVolumeName
37BdeCfgDisableWinRE
38BdeCfgFindBasicVolumeExtent
39BdeCfgFindCandidateVolumes
40BdeCfgFindGPTRecoveryPartitionCandidate
41BdeCfgFindLargestUnallocatedExtent
42BdeCfgFindRecoveryPartitionGPT
43BdeCfgFindVolumeWithName
44BdeCfgFindVolumeWithProp
45BdeCfgGetBootVolume
46BdeCfgGetDeviceNameFromVolume
47BdeCfgGetMaxShrinkSize
48BdeCfgGetNtfsVolumeSize
49BdeCfgGetVolumeDisk
50BdeCfgGetVolumeDriveLetter
51BdeCfgGetVolumeFromId
52BdeCfgInitialize
53BdeCfgIsDiskConfiguredForBitLocker
54BdeCfgIsElevated
55BdeCfgIsWinREOnOSVolume
56BdeCfgLoadErrorString
57BdeCfgLoadResourceString
58BdeCfgMigrateBootHive
59BdeCfgMoveWinRE
60BdeCfgRestart
61BdeCfgSecureFormatPartition
62BdeCfgShrinkSimpleVolume
63BdeCfgUninitialize
64?CancelConfiguration@CDriveConfiguration@@QAAJXZ
65?CancelConfigurationEntry@CDriveConfiguration@@CAXPAX@Z
66?CancelConfiguration_Thread@CDriveConfiguration@@AAAJXZ
67?Cleanup@CDriveConfiguration@@AAAXXZ
68?ConfigureDrive@CDriveConfiguration@@QAAJXZ
69?CreateClass@CBcdStore@@SAJPAPAV1@@Z
70?CreateInParams@CBcdWmiWrapper@@IAAJPBGPAPAUIWbemClassObject@@@Z
71?DetectTargetDrive@CDriveConfiguration@@AAAJPAUIVdsVolume@@@Z
72?DriveConfigurationEntry@CDriveConfiguration@@CAXPAX@Z
73?ExecuteMethod@CBcdWmiWrapper@@IAAJPBGPAUIWbemClassObject@@PAPAU2@@Z
74?ExportSystemStore@CBcdStore@@QAAJPBG@Z
75?GetActionType@CDriveConfiguration@@QAA?AW4BDECFG_ACTION_TYPE@@XZ
76?GetConfigurationResult@CDriveConfiguration@@QAAJXZ
77?GetInitializationResult@CDriveConfiguration@@QAAJXZ
78?GetNamespace@CBcdWmiWrapper@@IAAPAUIWbemServices@@XZ
79?GetNewDriveLetter@CDriveConfiguration@@QAAGXZ
80?GetNumberOfSteps@CDriveConfiguration@@QAAKXZ
81?GetShrinkSize@CDriveConfiguration@@QAA_KXZ
82?GetStepExecutionOrder@CDriveConfiguration@@QAAKW4_BDECFG_STEP_ID@@@Z
83?GetTargetDiskNumber@CDriveConfiguration@@QAAKXZ
84?GetTargetDriveLetter@CDriveConfiguration@@QAAGXZ
85?GetTargetPartitionNumber@CDriveConfiguration@@QAAKXZ
86?GetTargetPartitionSize@CDriveConfiguration@@QAA_KXZ
87?ImportSystemStore@CBcdStore@@QAAJPBG@Z
88?Initialize@CDriveConfiguration@@QAAJPBU_BDECFG_PARAMS@@QAU_BDECFG_SIZE_REQUIREMENTS@@PAVIConfigurationProgress@@@Z
89?InitializeAndHoldLibrary@CBdeCfgLibraryLoader@@AAAJXZ
90?InitializeAndHoldLibraryEntry@CBdeCfgLibraryLoader@@CAXPAX@Z
91?InitializeAndHoldLibrary_Thread@CBdeCfgLibraryLoader@@AAAJXZ
92?InitializeClass@CBcdWmiWrapper@@IAAJPBG@Z
93?InitializeEntry@CDriveConfiguration@@CAXPAX@Z
94?InitializeFromParams@CDriveConfiguration@@AAAJPAUIVdsVolume@@@Z
95?InitializeInstance@CBcdWmiWrapper@@IAAJPAUIWbemServices@@PAUIWbemClassObject@@@Z
96?InitializeNamespace@CBcdWmiWrapper@@AAAJXZ
97?Initialized@CDriveConfiguration@@QAA_NXZ
98?IsMergeTargetWinRE@CDriveConfiguration@@QAAJPAH@Z
99?LibraryLoaded@CBdeCfgLibraryLoader@@QAA_NXZ
100?Load@CBdeCfgLibraryLoader@@QAAJXZ
101?OpenStore@CBcdStore@@QAAJPBGPAPAV1@@Z
102?QueryStepPercentComplete@CDriveConfiguration@@QAAJPAK@Z
103?RemapObjectDevices@CBcdStore@@QAAJPBG0@Z
104?SetConfigurationStep@CDriveConfiguration@@AAAJW4_BDECFG_STEP_ID@@@Z
105?Thread_ConfigureDrive@CDriveConfiguration@@AAAJXZ
106?Thread_Initialize@CDriveConfiguration@@AAAJXZ
107?Unload@CBdeCfgLibraryLoader@@QAAXXZ
108BdeCfgLogCandidateDrive
109BdeCfgLogClose
110BdeCfgLogCommandLineParams
111BdeCfgLogDetectedWinRE
112BdeCfgLogEnumExtent
113BdeCfgLogError
114BdeCfgLogFailedTarget
115BdeCfgLogFoundUnallocatedExtent
116BdeCfgLogInit
117BdeCfgLogWarning
lib/libc/mingw/libarm32/bderepair.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of BDEREPAIR.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BDEREPAIR.dll"
7EXPORTS
8FveAuthWithClearKey
9FveAuthWithKey
10FveAuthWithPassphraseW
11FveAuthWithPasswordW
12FveCreateRestoreContext
13FveDecryptData
14FveDestroyRestoreContext
15FveGetConvLogOffset
16FveGetInterruptedRangeOffset
17FveGetMetadataFromRestoreContext
18FveLoadConvLog
19FveRecoverBlock
20FveSupplyInformationBlock
21FveSupplyKeyPackage
22FveSupplyWatermark
lib/libc/mingw/libarm32/bdesvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of bdesvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bdesvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/bfe.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of bfe.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bfe.dll"
7EXPORTS
8BfeGetDirectDispatchTable
9BfeOnServiceStartTypeChange
10BfeServiceMain
11SvchostPushServiceGlobals
lib/libc/mingw/libarm32/bi.def created+29
......@@ -0,0 +1,29 @@
1;
2; Definition file of bi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bi.dll"
7EXPORTS
8BiActivateDeferredWorkItem
9BiActivateInBackground
10BiActivateWorkItem
11BiAssociateActivationProxy
12BiAssociateApplicationExtensionClass
13BiCancelWorkItem
14BiCreateEventForPackageName
15BiDeleteEvent
16BiDisassociateWorkItem
17BiDiscardPendingActivations
18BiEnumerateBrokeredEvents
19BiEnumerateUserSessions
20BiEnumerateWorkItemsForPackageName
21BiFreeMemory
22BiQueryBrokeredEvent
23BiQuerySystemStateBroadcastChannels
24BiQueryUserSession
25BiQueryWorkItem
26BiSignalEvent
27BiSignalMultipleEvents
28BiUpdateEventFlags
29BiUpdateEventInformation
lib/libc/mingw/libarm32/bisrv.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of bisrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bisrv.dll"
7EXPORTS
8BipMain
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/libarm32/bitsigd.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of bitsigd.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bitsigd.dll"
7EXPORTS
8?s_EmptyString@?$GenericStringHandle@G@@0UStringData@1@A DATA
9InitializeEx
10UninitializeEx
lib/libc/mingw/libarm32/bitsperf.def created+39
......@@ -0,0 +1,39 @@
1;
2; Definition file of bitsperf.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bitsperf.dll"
7EXPORTS
8??0CPerfMon@@QAA@PAGPAU_PERF_ITEM@0@@Z
9??1CPerfMon@@QAA@XZ
10??4CPerfMon@@QAAAAV0@ABV0@@Z
11?CalcBytesForPerfObject@CPerfMon@@ABAKPAU__OBJECT_ORD@1@@Z
12?CalcPerfMetrics@CPerfMon@@ABAXPAU__OBJECT_ORD@1@PAU__INSTANCE_ID@1@PAU_PERF_METRICS@1@PAPAU_PERF_ITEM@1@@Z
13?Collect@CPerfMon@@QAAKPAGPAPAEPAK2@Z
14?CollectAllObjects@CPerfMon@@ABAKPAGPAPAEPAK2@Z
15?CollectAnObject@CPerfMon@@ABAKPAU__OBJECT_ORD@1@PAPAE@Z
16?ConvertInstIdToInUseInstId@CPerfMon@@ABAHPAU__OBJECT_ORD@1@PAU__INSTANCE_ID@1@@Z
17?CounterIdToObjectOrd@CPerfMon@@ABAPAU__OBJECT_ORD@1@PAU__COUNTER_ID@1@PAH@Z
18?CounterIdToPerfItem@CPerfMon@@ABAPAU_PERF_ITEM@1@PAU__COUNTER_ID@1@@Z
19?CounterIdToPerfItemIndex@CPerfMon@@ABAHPAU__COUNTER_ID@1@PAH@Z
20?CounterOrdToPerfItem@CPerfMon@@ABAPAU_PERF_ITEM@1@PAU__OBJECT_ORD@1@PAU__COUNTER_ORD@1@@Z
21?DetermineObjectsToCollect@CPerfMon@@ABAXPAU__OBJECT_ORD@1@@Z
22?GetCounter32@CPerfMon@@QAAPAJPAU__COUNTER_ID@1@PAU__INSTANCE_ID@1@@Z
23?GetCounter64@CPerfMon@@QAAPA_JPAU__COUNTER_ID@1@PAU__INSTANCE_ID@1@@Z
24?GetCounter@CPerfMon@@AAAPAEPAU__COUNTER_ID@1@PAU__INSTANCE_ID@1@@Z
25?HowManyInstancesAreInUse@CPerfMon@@ABAHPAU__OBJECT_ORD@1@@Z
26?IdToPerfItemIndex@CPerfMon@@ABAHHK@Z
27?Initialize@CPerfMon@@QAAKH@Z
28?InitializePerfMon@CPerfMon@@AAAKH@Z
29?IsValidInstId@CPerfMon@@ABAHPAU__OBJECT_ORD@1@PAU__INSTANCE_ID@1@@Z
30?IsValidObjOrd@CPerfMon@@ABAHPAU__OBJECT_ORD@1@@Z
31?ObjectIdToObjectOrd@CPerfMon@@ABAPAU__OBJECT_ORD@1@PAU__OBJECT_ID@1@@Z
32?ObjectIdToPerfItem@CPerfMon@@ABAPAU_PERF_ITEM@1@PAU__OBJECT_ID@1@@Z
33?ObjectIdToPerfItemIndex@CPerfMon@@ABAHPAU__OBJECT_ID@1@@Z
34?ObjectOrdToPerfItem@CPerfMon@@ABAPAU_PERF_ITEM@1@PAU__OBJECT_ORD@1@@Z
35?ObjectOrdToPerfItemIndex@CPerfMon@@ABAHPAU__OBJECT_ORD@1@@Z
36?VerifyPerfItemTable@CPerfMon@@AAAKXZ
37PerfMon_Close
38PerfMon_Collect
39PerfMon_Open
lib/libc/mingw/libarm32/bootmenuux.def created+69
......@@ -0,0 +1,69 @@
1;
2; Definition file of BootMenuUX.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BootMenuUX.dll"
7EXPORTS
8CreateAdvancedOptionsButton
9CreateAdvancedRecoveryToolsButtonCollection
10CreateAdvancedStartupButton
11CreateAdvancedStartupLaunchPage
12CreateBasicResetFinalChecksPage
13CreateBasicResetLandingPage
14CreateBasicSystemResetButton
15CreateBasicSystemResetLaunchPage
16CreateBitlockerLandingPage
17CreateBlackWallpaperButton
18CreateBootableDeviceButtonCollection
19CreateBootableOSButtonCollection
20CreateCSRTFinalPage
21CreateClearWallpaperPage
22CreateDefaultOSButton
23CreateDefaultOSButtonCollection
24CreateDefaultOSListButton
25CreateDeviceListButton
26CreateFactoryResetFinalChecksPage
27CreateFactoryResetLandingPage
28CreateFactorySystemResetButton
29CreateFactorySystemResetLaunchPage
30CreateFirmwareSettingsButton
31CreateFiveMinuteTimeoutAction
32CreateFiveSecondTimeoutAction
33CreateKeyboardLayoutButtonCollection
34CreateLanguageButtonCollection
35CreateOSListButton
36CreateOneMinuteTimeoutAction
37CreatePBRCancelButton
38CreatePBRFinalPage
39CreatePBRStartPage
40CreatePBRfactoryResetAllVolumesButton
41CreatePBRfactoryResetBareMetalDisabled
42CreatePBRfactoryResetBareMetalEnabled
43CreatePBRfactoryResetCancelOperationButton
44CreatePBRfactoryResetContinueChecksButton
45CreatePBRfactoryResetDataEraseDisabled
46CreatePBRfactoryResetDataEraseEnabled
47CreatePBRfactoryResetOsOnlyButton
48CreatePasswordButton
49CreatePasswordPage
50CreateRecoveryToolsListButton
51CreateRestartButton
52CreateSelectOSPage
53CreateSetWallpaperPage
54CreateShutdownButton
55CreateSkippableSelectOSPage
56CreateTenSecondTimeoutAction
57CreateThirtySecondTimeoutAction
58CreateTopLevelRecoveryToolsButtonCollection
59CreateTopLevelRecoveryToolsPage
60CreateUserNameButtonCollection
61CreateUserSelectionPage
62CreateWinReTargetOSButtonCollection
63CreateWinReTargetOSPage
64CreateZeroSecondTimeoutAction
65InitializePasswordDatabase
66InitializeSRTSyncInterface
67InitializeSyncInterface
68UtilBcdCloseSystemStore
69UtilGetCurrentKeyboardLayout
lib/libc/mingw/libarm32/brokerlib.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of BrokerLib.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BrokerLib.dll"
7EXPORTS
8BrBufferFree
9BrCheckCallerCapabilities
10BrCheckCallerIsAppContainer
11BrCreateBrokerInstance
12BrCreateBrokeredEvent
13BrDecQuota
14BrDeleteBrokerInstance
15BrDeleteBrokeredEvent
16BrFindBrokeredEvent
17BrGetBrokeredAppState
18BrGetQuota
19BrIncQuota
20BrInitializeBrokerInstance
21BrLockBroker
22BrQueryBrokeredApplicationState
23BrQueryBrokeredEvents
24BrRegisterBrokeredEvent
25BrSignalBrokerEvent
26BrUnlockBroker
27BrUnregisterBrokeredEvent
lib/libc/mingw/libarm32/bthpanapi.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of bthpanapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "bthpanapi.dll"
7EXPORTS
8BluetoothCloseNetworkHandle
9BluetoothConnectToNetwork
10BluetoothCreateNetworkHandle
11BluetoothDisconnectFromNetwork
12BluetoothDuplicateNetworkHandle
13BluetoothFindFirstNetwork
14BluetoothFindNetworkClose
15BluetoothFindNextNetwork
16BluetoothGetIncompleteConnectedNetworkHandle
17BluetoothGetNetworkAddress
18BluetoothGetNetworkAvailableRoles
19BluetoothGetNetworkContainerId
20BluetoothGetNetworkInterfaceId
21BluetoothGetNetworkName
22BluetoothGetNetworkStatus
23BluetoothRegisterNetworkNotifications
24BluetoothUnregisterNetworkNotifications
lib/libc/mingw/libarm32/bthsqm.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of BthSQM.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "BthSQM.dll"
7EXPORTS
8BthSqmRunTask
lib/libc/mingw/libarm32/capisp.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of capisp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "capisp.dll"
7EXPORTS
8CAPISysPrep_Generalize
9CryptoSysPrep_Clean
10CryptoSysPrep_Specialize
11CryptoSysPrep_Specialize_Clone
lib/libc/mingw/libarm32/catsrv.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of catsrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "catsrv.dll"
7EXPORTS
8?CancelWriteICR@@YAJPAPAUIComponentRecords@@@Z
9CreateComponentLibraryTS
10GetCatalogCRMClerk
11?GetReadICR@@YAJHPAPAUIComponentRecords@@@Z
12?GetWriteICR@@YAJPAPAUIComponentRecords@@@Z
13OpenComponentLibraryTS
14?ReleaseReadICR@@YAXPAPAUIComponentRecords@@@Z
15?SaveWriteICR@@YAJPAPAUIComponentRecords@@@Z
16GetAppImport
lib/libc/mingw/libarm32/catsrvut.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of catsrvut.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "catsrvut.DLL"
7EXPORTS
8??0CComPlusComponent@@QAA@ABV0@@Z
9??0CComPlusInterface@@QAA@ABV0@@Z
10??0CComPlusMethod@@QAA@ABV0@@Z
11??0CComPlusObject@@QAA@ABV0@@Z
12??1CComPlusComponent@@UAA@XZ
13??1CComPlusInterface@@UAA@XZ
14??4CComPlusComponent@@QAAAAV0@ABV0@@Z
15??4CComPlusInterface@@QAAAAV0@ABV0@@Z
16??4CComPlusMethod@@QAAAAV0@ABV0@@Z
17??4CComPlusObject@@QAAAAV0@ABV0@@Z
18??4CComPlusTypelib@@QAAAAV0@ABV0@@Z
19??_7CComPlusComponent@@6B@ DATA
20??_7CComPlusInterface@@6B@ DATA
21??_7CComPlusMethod@@6B@ DATA
22??_7CComPlusObject@@6B@ DATA
23?GetITypeLib@CComPlusTypelib@@QAAPAUITypeLib@@XZ
24RegDBBackup
25RegDBRestore
26StartMTSTOCOM
27WinlogonHandlePendingInfOperations
28CGMIsAdministrator
29COMPlusUninstallActionW
30CreateComRegDBWriter
31DestroyComRegDBWriter
32FindAssemblyModulesW
33ManagedRequestW
34QueryUserDllW
35RunMTSToCom
36SysprepComplus
37SysprepComplus2
lib/libc/mingw/libarm32/certca.def created+183
......@@ -0,0 +1,183 @@
1;
2; Definition file of certca.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "certca.dll"
7EXPORTS
8CAFindByName
9CAFindByCertType
10CAFindByIssuerDN
11CAEnumFirstCA
12CAEnumNextCA
13CACreateNewCA
14CAUpdateCA
15CAUpdateCAEx
16CADeleteCA
17CADeleteCAEx
18CACountCAs
19CACloseCA
20CAGetCAProperty
21CAFreeCAProperty
22CASetCAProperty
23CAGetCACertificate
24CASetCACertificate
25CAGetCAExpiration
26CASetCAExpiration
27CAGetCASecurity
28CASetCASecurity
29CAAccessCheck
30CAAccessCheckEx
31CAEnumCertTypesForCA
32CAEnumCertTypesForCAEx
33CAAddCACertificateType
34CAAddCACertificateTypeEx
35CARemoveCACertificateType
36CARemoveCACertificateTypeEx
37CAGetCAFlags
38CASetCAFlags
39CAGetDN
40CAEnumCertTypes
41CAEnumCertTypesEx
42CAFindCertTypeByName
43CACreateCertType
44CAUpdateCertType
45CAUpdateCertTypeEx
46CADeleteCertType
47CADeleteCertTypeEx
48CACloneCertType
49CAEnumNextCertType
50CACountCertTypes
51CACloseCertType
52CAGetCertTypeProperty
53CAGetCertTypePropertyEx
54CASetCertTypeProperty
55CASetCertTypePropertyEx
56CADCSetCertTypePropertyEx
57CAFreeCertTypeProperty
58CAGetCertTypeExtensions
59CAGetCertTypeExtensionsEx
60CAFreeCertTypeExtensions
61CASetCertTypeExtension
62CAGetCertTypeKeySpec
63CASetCertTypeKeySpec
64CAGetCertTypeExpiration
65CASetCertTypeExpiration
66CAGetCertTypeFlags
67CAGetCertTypeFlagsEx
68CASetCertTypeFlags
69CASetCertTypeFlagsEx
70CAInstallDefaultCertType
71CAInstallDefaultCertTypeEx
72CAIsCertTypeCurrent
73CAIsCertTypeCurrentEx
74CACertTypeGetSecurity
75CACertTypeSetSecurity
76CACertTypeAccessCheck
77CACertTypeAccessCheckEx
78CACertTypeAuthzAccessCheck
79CAOIDCreateNew
80CAOIDCreateNewEx
81CAOIDSetProperty
82CAOIDSetPropertyEx
83CAOIDAdd
84CAOIDAddEx
85CAOIDDelete
86CAOIDDeleteEx
87CAOIDGetProperty
88CAOIDGetPropertyEx
89CAOIDFreeProperty
90CAOIDGetLdapURL
91CAOIDFreeLdapURL
92CACertTypeRegisterQuery
93CACertTypeQuery
94CACertTypeUnregisterQuery
95CACreateLocalAutoEnrollmentObject
96CADeleteLocalAutoEnrollmentObject
97CACreateAutoEnrollmentObjectEx
98CAEnumCertTypesEx2
99CAFindCertTypeByName2
100ord_601 @601
101ord_602 @602
102ord_603 @603
103ord_604 @604
104ord_701 @701
105ord_702 @702
106ord_703 @703
107ord_704 @704
108ord_705 @705
109ord_706 @706
110ord_707 @707
111ord_708 @708
112ord_801 @801
113ord_802 @802
114ord_803 @803
115ord_804 @804
116ord_805 @805
117ord_806 @806
118ord_807 @807
119ord_808 @808
120ord_809 @809
121ord_810 @810
122ord_811 @811
123ord_812 @812
124ord_813 @813
125ord_814 @814
126ord_815 @815
127ord_816 @816
128ord_817 @817
129ord_818 @818
130ord_819 @819
131ord_820 @820
132ord_821 @821
133ord_822 @822
134ord_823 @823
135ord_824 @824
136ord_825 @825
137ord_826 @826
138ord_827 @827
139ord_828 @828
140ord_829 @829
141ord_830 @830
142ord_831 @831
143ord_832 @832
144ord_833 @833
145ord_834 @834
146ord_835 @835
147ord_836 @836
148ord_837 @837
149ord_838 @838
150ord_839 @839
151ord_840 @840
152ord_841 @841
153ord_842 @842
154ord_843 @843
155ord_844 @844
156ord_845 @845
157ord_846 @846
158ord_847 @847
159ord_848 @848
160ord_849 @849
161ord_850 @850
162ord_851 @851
163ord_852 @852
164ord_853 @853
165ord_854 @854
166ord_855 @855
167ord_856 @856
168ord_857 @857
169ord_858 @858
170ord_859 @859
171CCFindCertificateBuildFilter
172CCFindCertificateFreeFilter
173CCFindCertificateFromFilter
174CCGetCertNameList
175CCFreeStringArray
176ord_865 @865
177ord_866 @866
178ord_867 @867
179ord_868 @868
180ord_869 @869
181ord_870 @870
182ord_871 @871
183ord_872 @872
lib/libc/mingw/libarm32/certcli.def created+174
......@@ -0,0 +1,174 @@
1;
2; Definition file of certcli.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "certcli.dll"
7EXPORTS
8CSPrintAssert
9CSPrintError
10DbgPrintf
11DbgPrintfInit
12DbgIsSSActive
13myHResultToString
14myGetErrorMessageText
15myHResultToStringRaw
16CAAccessCheck
17ord_210 @210
18CAAccessCheckEx
19CAAddCACertificateType
20myFreeColumnDisplayNames
21myRobustLdapBind
22myIsDelayLoadHResult
23myHExceptionCode
24myJetHResult
25myModifyVirtualRootsAndFileShares
26ord_219 @219
27ord_220 @220
28ord_221 @221
29CAAddCACertificateTypeEx
30DecodeFileW
31CACertTypeAccessCheck
32EncodeToFileW
33CACertTypeAccessCheckEx
34CACertTypeAuthzAccessCheck
35CACertTypeGetSecurity
36CACertTypeQuery
37CACertTypeRegisterQuery
38CACertTypeSetSecurity
39CACertTypeUnregisterQuery
40CACloneCertType
41CACloseCA
42CACloseCertType
43CACountCAs
44CACountCertTypes
45CACreateAutoEnrollmentObjectEx
46CACreateCertType
47myAddShare
48ord_241 @241
49DbgLogStringInit
50CACreateLocalAutoEnrollmentObject
51CACreateNewCA
52WszToMultiByteIntegerBuf
53WszToMultiByteInteger
54myGetErrorMessageText1
55myGetErrorMessageTextEx
56myCAPropGetDisplayName
57myCAPropInfoUnmarshal
58myCAPropInfoLookup
59myRobustLdapBindEx
60caTranslateFileTimePeriodToPeriodUnits
61myCryptBinaryToString
62myCryptBinaryToStringA
63myCryptStringToBinary
64myCryptStringToBinaryA
65myOIDHashOIDToString
66myLogExceptionInit
67myHExceptionCodePrint
68DbgPrintfW
69IsASPEnabledInIIS
70EnableASPInIIS
71IsISAPIExtensionEnabled
72EnableISAPIExtension
73myGetSidFromDomain
74IsASPEnabledInIIS_New
75CADCSetCertTypePropertyEx
76CADeleteCA
77CADeleteCAEx
78CADeleteCertType
79CADeleteCertTypeEx
80CADeleteLocalAutoEnrollmentObject
81CAEnumCertTypes
82CAEnumCertTypesEx
83CAEnumCertTypesForCA
84CAEnumCertTypesForCAEx
85CAEnumFirstCA
86CAEnumNextCA
87CAEnumNextCertType
88CAFindByCertType
89CAFindByIssuerDN
90CAFindByName
91CAFindCertTypeByName
92CAFreeCAProperty
93CAFreeCertTypeExtensions
94CAFreeCertTypeProperty
95CAGetCACertificate
96CAGetCAExpiration
97CAGetCAFlags
98CAGetCAProperty
99CAGetCASecurity
100CAGetCertTypeExpiration
101CAGetCertTypeExtensions
102CAGetCertTypeExtensionsEx
103CAGetCertTypeFlags
104CAGetCertTypeFlagsEx
105CAGetCertTypeKeySpec
106CAGetCertTypeProperty
107CAGetCertTypePropertyEx
108CAGetDN
109CAInstallDefaultCertType
110CAInstallDefaultCertTypeEx
111CAIsCertTypeCurrent
112CAIsCertTypeCurrentEx
113CAOIDAdd
114CAOIDAddEx
115CAOIDCreateNew
116CAOIDCreateNewEx
117CAOIDDelete
118CAOIDDeleteEx
119CAOIDFreeLdapURL
120CAOIDFreeProperty
121CAOIDGetLdapURL
122CAOIDGetProperty
123CAOIDGetPropertyEx
124CAOIDSetProperty
125CAOIDSetPropertyEx
126CARemoveCACertificateType
127CARemoveCACertificateTypeEx
128CASetCACertificate
129CASetCAExpiration
130CASetCAFlags
131CASetCAProperty
132CASetCASecurity
133CASetCertTypeExpiration
134CASetCertTypeExtension
135CASetCertTypeFlags
136CASetCertTypeFlagsEx
137CASetCertTypeKeySpec
138CASetCertTypeProperty
139CASetCertTypePropertyEx
140CAUpdateCA
141CAUpdateCAEx
142CAUpdateCertType
143CAUpdateCertTypeEx
144myDoesDSExist@209
145mySanitizeName
146mySanitizedNameToDSName
147mySanitizedNameToShortName
148myRevertSanitizeName
149myGenerateGuidString
150myGenerateGuidSerialNumber
151mylstrcmpiL
152myHGetLastError
153CSPrintErrorLineFile
154CSPrintErrorLineFile2
155CSPrintErrorLineFileData
156CSPrintErrorLineFileData2
157CAGetAccessRights
158CAIsValid
159CAGetCertTypeAccessRights
160CAIsCertTypeValid
161ord_365 @365
162DbgLogStringInit2
163ord_367 @367
164RemoveISAPIExtension
165RemoveVDir
166SplitConfigString
167AddOrRemoveOCSPISAPIExtension
168myGetTargetMachineDomainDnsName
169ord_374 @374
170myNetLogonUser
171CertcliGetDetailedCertcliVersionString
172myGetHashAlgorithmOIDInfoFromSignatureAlgorithm
173myEnablePrivilege
174CAGetConfigStringFromUIPicker
lib/libc/mingw/libarm32/certenroll.def created+34
......@@ -0,0 +1,34 @@
1;
2; Definition file of certenroll.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "certenroll.dll"
7EXPORTS
8ord_15 @15
9ord_16 @16
10ord_18 @18
11ord_19 @19
12ord_20 @20
13ord_21 @21
14ord_22 @22
15ord_23 @23
16ord_24 @24
17ord_25 @25
18ord_26 @26
19ord_27 @27
20ord_28 @28
21ord_29 @29
22ord_30 @30
23ord_31 @31
24LogCertReplace
25LogCertDelete
26LogCertArchive
27LogCertExpire
28ord_36 @36
29ord_37 @37
30ord_38 @38
31LogCertInstall
32LogCertCopy
33LogCertImport
34LogCertExport
lib/libc/mingw/libarm32/certenrollui.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of CertEnrollUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CertEnrollUI.dll"
7EXPORTS
8CreateUIObject
lib/libc/mingw/libarm32/certprop.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of certprop.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "certprop.dll"
7EXPORTS
8CertPropServiceMain
9ScPolicyServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/libarm32/chartv.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of CHARTV.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CHARTV.dll"
7EXPORTS
8CvCloseDataSource
9CvCreateDataSource
10CvGetData
11CvGetDataSourceName
12CvInitialize
13CvSetData
14CvSetDataSourceName
15CvUninitialize
lib/libc/mingw/libarm32/chkwudrv.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of chkwudrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "chkwudrv.dll"
7EXPORTS
8CancelWUOperation
9IsWUAvailable
10OpenWUContext
11ReleaseWUContext
12RemoveWUDirectory
13WUDownloadUpdatedFiles
14WUExpandUpdateToPath
15WUFindMatchingDriver
16WUInstallBestUpdate
lib/libc/mingw/libarm32/chxreadingstringime.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of CHxReadingStringIME.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CHxReadingStringIME.dll"
7EXPORTS
8GetReadingString
9ShowReadingWindow
lib/libc/mingw/libarm32/ci.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of CI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CI.dll"
7EXPORTS
8ord_1 @1
9ord_2 @2
10ord_3 @3
11CiCheckSignedFile
12CiFindPageHashesInCatalog
13CiFindPageHashesInSignedFile
14CiFreePolicyInfo
15CiGetPEInformation
16CiInitialize
17CiVerifyHashInCatalog
lib/libc/mingw/libarm32/cmdext.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of CMDEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CMDEXT.dll"
7EXPORTS
8CmdBatNotificationStub
9DoSHChangeNotify
10FindFirstStreamWStub
11FindNextStreamWStub
12GetBinaryTypeWStub
13GetVDMCurrentDirectoriesStub
14LookupAccountSidWStub
15MessageBeepStub
16QueryFullProcessImageNameWStub
17SaferWorker
18ShellExecuteWorker
19WNetAddConnection2WStub
20WNetCancelConnection2WStub
21WNetGetConnectionWStub
lib/libc/mingw/libarm32/cmifw.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of cmifw.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "cmifw.DLL"
7EXPORTS
8EnableGroupW
9unattendW
lib/libc/mingw/libarm32/cmipnpinstall.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of cmipnpinstall.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "cmipnpinstall.DLL"
7EXPORTS
8OnlineSetupPNPInstall
lib/libc/mingw/libarm32/cofiredm.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of cofiredm.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "cofiredm.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/colorui.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of colorui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "colorui.dll"
7EXPORTS
8LaunchColorCpl
lib/libc/mingw/libarm32/combase.def created+357
......@@ -0,0 +1,357 @@
1;
2; Definition file of combase.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "combase.dll"
7EXPORTS
8ord_1 @1
9ObjectStublessClient3
10ObjectStublessClient4
11ObjectStublessClient5
12ObjectStublessClient6
13ObjectStublessClient7
14ObjectStublessClient8
15ObjectStublessClient9
16ObjectStublessClient10
17ObjectStublessClient11
18ObjectStublessClient12
19ObjectStublessClient13
20ObjectStublessClient14
21ObjectStublessClient15
22ObjectStublessClient16
23ObjectStublessClient17
24ObjectStublessClient18
25ObjectStublessClient19
26ObjectStublessClient20
27ObjectStublessClient21
28ObjectStublessClient22
29ObjectStublessClient23
30ObjectStublessClient24
31ObjectStublessClient25
32ObjectStublessClient26
33ObjectStublessClient27
34ObjectStublessClient28
35ObjectStublessClient29
36ObjectStublessClient30
37ObjectStublessClient31
38ObjectStublessClient32
39NdrProxyForwardingFunction3
40NdrProxyForwardingFunction4
41NdrProxyForwardingFunction5
42NdrProxyForwardingFunction6
43NdrProxyForwardingFunction7
44NdrProxyForwardingFunction8
45NdrProxyForwardingFunction9
46NdrProxyForwardingFunction10
47NdrProxyForwardingFunction11
48NdrProxyForwardingFunction12
49NdrProxyForwardingFunction13
50NdrProxyForwardingFunction14
51NdrProxyForwardingFunction15
52NdrProxyForwardingFunction16
53NdrProxyForwardingFunction17
54NdrProxyForwardingFunction18
55NdrProxyForwardingFunction19
56NdrProxyForwardingFunction20
57NdrProxyForwardingFunction21
58NdrProxyForwardingFunction22
59NdrProxyForwardingFunction23
60NdrProxyForwardingFunction24
61NdrProxyForwardingFunction25
62NdrProxyForwardingFunction26
63NdrProxyForwardingFunction27
64NdrProxyForwardingFunction28
65NdrProxyForwardingFunction29
66NdrProxyForwardingFunction30
67NdrProxyForwardingFunction31
68NdrProxyForwardingFunction32
69NdrOleInitializeExtension
70ord_63 @63
71ord_64 @64
72ord_65 @65
73ord_66 @66
74ord_67 @67
75ord_68 @68
76ord_69 @69
77ord_70 @70
78ord_71 @71
79RoFailFastWithErrorContextInternal2
80RoFailFastWithErrorContextInternal
81UpdateProcessTracing
82CLSIDFromOle1Class
83CLSIDFromProgID
84CLSIDFromString
85CleanupOleStateInAllTls
86ord_79 @79
87ord_80 @80
88ord_81 @81
89CleanupTlsOleState
90ClearCleanupFlag
91CoAddRefServerProcess
92CoAllowUnmarshalerCLSID
93ord_86 @86
94ord_87 @87
95ord_88 @88
96CoCancelCall
97ord_90 @90
98ord_91 @91
99ord_92 @92
100ord_93 @93
101CoCopyProxy
102ord_95 @95
103ord_96 @96
104ord_97 @97
105ord_98 @98
106ord_99 @99
107ord_100 @100
108ord_101 @101
109ord_102 @102
110ord_103 @103
111ord_104 @104
112CoCreateErrorInfo
113CoCreateFreeThreadedMarshaler
114CoCreateGuid
115CoCreateInstance
116CoCreateInstanceEx
117ord_110 @110
118ord_111 @111
119ord_112 @112
120CoCreateInstanceFromApp
121CoCreateObjectInContext
122CoDeactivateObject
123CoDecodeProxy
124CoDecrementMTAUsage
125CoDisableCallCancellation
126CoDisconnectContext
127ord_120 @120
128ord_121 @121
129ord_122 @122
130ord_123 @123
131ord_124 @124
132ord_125 @125
133ord_126 @126
134ord_127 @127
135ord_128 @128
136ord_129 @129
137ord_130 @130
138CoDisconnectObject
139CoEnableCallCancellation
140ord_133 @133
141ord_134 @134
142ord_135 @135
143ord_136 @136
144ord_137 @137
145ord_138 @138
146ord_139 @139
147CoFreeUnusedLibraries
148CoFreeUnusedLibrariesEx
149CoGetActivationState
150CoGetApartmentID
151CoGetApartmentType
152CoGetCallContext
153CoGetCallState
154CoGetCallerTID
155CoGetCancelObject
156CoGetClassObject
157CoGetClassVersion
158CoGetContextToken
159CoGetCurrentLogicalThreadId
160CoGetCurrentProcess
161CoGetDefaultContext
162CoGetErrorInfo
163CoGetInstanceFromFile
164CoGetInstanceFromIStorage
165CoGetInterfaceAndReleaseStream
166CoGetMalloc
167CoGetMarshalSizeMax
168CoGetModuleType
169CoGetObjectContext
170CoGetPSClsid
171CoGetProcessIdentifier
172CoGetStandardMarshal
173CoGetStdMarshalEx
174CoGetSystemSecurityPermissions
175CoGetTreatAsClass
176CoImpersonateClient
177CoIncrementMTAUsage
178CoInitializeEx
179CoInitializeSecurity
180CoInitializeWOW
181CoInvalidateRemoteMachineBindings
182CoIsHandlerConnected
183CoLockObjectExternal
184CoMarshalHresult
185CoMarshalInterThreadInterfaceInStream
186CoMarshalInterface
187CoPopServiceDomain
188CoPushServiceDomain
189CoQueryAuthenticationServices
190CoQueryClientBlanket
191CoQueryProxyBlanket
192CoReactivateObject
193CoRegisterActivationFilter
194CoRegisterClassObject
195CoRegisterInitializeSpy
196CoRegisterMallocSpy
197CoRegisterMessageFilter
198CoRegisterPSClsid
199CoRegisterSurrogate
200CoRegisterSurrogateEx
201CoReleaseMarshalData
202CoReleaseServerProcess
203CoResumeClassObjects
204CoRetireServer
205CoRevertToSelf
206CoRevokeClassObject
207CoRevokeInitializeSpy
208CoRevokeMallocSpy
209CoSetCancelObject
210CoSetErrorInfo
211CoSetProxyBlanket
212CoSuspendClassObjects
213CoSwitchCallContext
214CoTaskMemAlloc
215CoTaskMemFree
216CoTaskMemRealloc
217CoTestCancel
218CoUninitialize
219CoUnloadingWOW
220CoUnmarshalHresult
221CoUnmarshalInterface
222CoVrfCheckThreadState
223CoVrfGetThreadState
224CoVrfReleaseThreadState
225CoWaitForMultipleHandles
226CoWaitForMultipleObjects
227CreateErrorInfo
228CreateStreamOnHGlobal
229DcomChannelSetHResult
230DllDebugObjectRPCHook
231EnableHookObject
232FreePropVariantArray
233FreePropVariantArrayWorker
234GetCatalogHelper
235GetErrorInfo
236GetFuncDescs
237GetHGlobalFromStream
238GetHookInterface
239GetRestrictedErrorInfo
240HSTRING_UserFree
241HSTRING_UserMarshal
242HSTRING_UserSize
243HSTRING_UserUnmarshal
244HkOleRegisterObject
245IIDFromString
246InternalAppInvokeExceptionFilter
247InternalCCFreeUnused
248InternalCCGetClassInformationForDde
249InternalCCGetClassInformationFromKey
250InternalCCSetDdeServerWindow
251InternalCMLSendReceive
252InternalCallAsProxyExceptionFilter
253InternalCallFrameExceptionFilter
254InternalCallerIsAppContainer
255InternalCanMakeOutCall
256InternalCoIsSurrogateProcess
257InternalCoRegisterDisconnectCallback
258InternalCoRegisterSurrogatedObject
259InternalCoStdMarshalObject
260InternalCoUnregisterDisconnectCallback
261InternalCompleteObjRef
262InternalCreateCAggId
263InternalCreateIdentityHandler
264InternalDoATClassCreate
265InternalFillLocalOXIDInfo
266InternalFreeObjRef
267InternalGetWindowPropInterface
268InternalIrotEnumRunning
269InternalIrotGetObject
270InternalIrotGetTimeOfLastChange
271InternalIrotIsRunning
272InternalIrotNoteChangeTime
273InternalIrotRegister
274InternalIrotRevoke
275InternalIsApartmentInitialized
276InternalIsProcessInitialized
277InternalMarshalObjRef
278InternalNotifyDDStartOrStop
279InternalOleModalLoopBlockFn
280InternalRegisterWindowPropInterface
281InternalReleaseMarshalObjRef
282InternalSTAInvoke
283InternalServerExceptionFilter
284InternalSetAptCallCtrlOnTlsIfRequired
285InternalSetOleThunkWowPtr
286InternalStubInvoke
287InternalTlsAllocData
288InternalUnmarshalObjRef
289IsErrorPropagationEnabled
290NdrExtStubInitialize
291NdrOleDllGetClassObject
292NdrpFindInterface
293ProgIDFromCLSID
294PropVariantClear
295PropVariantCopy
296ReleaseFuncDescs
297RoActivateInstance
298RoCaptureErrorContext
299RoClearError
300RoFailFastWithErrorContext
301RoFreeParameterizedTypeExtra
302RoGetActivatableClassRegistration
303RoGetActivationFactory
304RoGetAgileReference
305RoGetApartmentIdentifier
306RoGetErrorReportingFlags
307RoGetMatchingRestrictedErrorInfo
308RoGetParameterizedTypeInstanceIID
309RoGetServerActivatableClasses
310RoInitialize
311RoInspectCapturedStackBackTrace
312RoInspectThreadErrorInfo
313RoOriginateError
314RoOriginateErrorW
315RoOriginateLanguageException
316RoParameterizedTypeExtraGetTypeSignature
317RoRegisterActivationFactories
318RoRegisterForApartmentShutdown
319RoReportCapabilityCheckFailure
320RoReportFailedDelegate
321RoReportUnhandledError
322RoResolveRestrictedErrorInfoReference
323RoRevokeActivationFactories
324RoSetErrorReportingFlags
325RoTransformError
326RoTransformErrorW
327RoUninitialize
328RoUnregisterForApartmentShutdown
329SetCleanupFlag
330SetErrorInfo
331SetRestrictedErrorInfo
332StringFromCLSID
333StringFromGUID2
334StringFromIID
335UpdateDCOMSettings
336WdtpInterfacePointer_UserMarshal
337WdtpInterfacePointer_UserSize
338WdtpInterfacePointer_UserUnmarshal
339WindowsCompareStringOrdinal
340WindowsConcatString
341WindowsCreateString
342WindowsCreateStringReference
343WindowsDeleteString
344WindowsDeleteStringBuffer
345WindowsDuplicateString
346WindowsGetStringLen
347WindowsGetStringRawBuffer
348WindowsInspectString
349WindowsIsStringEmpty
350WindowsPreallocateStringBuffer
351WindowsPromoteStringBuffer
352WindowsReplaceString
353WindowsStringHasEmbeddedNull
354WindowsSubstring
355WindowsSubstringWithSpecifiedLength
356WindowsTrimStringEnd
357WindowsTrimStringStart
lib/libc/mingw/libarm32/comppkgsup.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of CompPkgSup.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CompPkgSup.DLL"
7EXPORTS
8InstantiateComponentFromPackage
lib/libc/mingw/libarm32/connectedaccountstate.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of ConnectedAccountState.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ConnectedAccountState.dll"
7EXPORTS
8ActionCenterRunDllW
lib/libc/mingw/libarm32/credssp.def created+33
......@@ -0,0 +1,33 @@
1;
2; Definition file of CREDSSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CREDSSP.dll"
7EXPORTS
8InitSecurityInterfaceW
9SpAcceptSecurityContext
10SpAcquireCredentialsHandleW
11SpAddCredentialsW
12SpApplyControlToken
13SpChangeAccountPasswordW
14SpCompleteAuthToken
15SpDecryptMessage
16SpDeleteSecurityContext
17SpEncryptMessage
18SpEnumerateSecurityPackagesW
19SpExportSecurityContext
20SpFreeContextBuffer
21SpFreeCredentialsHandle
22SpImpersonateSecurityContext
23SpImportSecurityContextW
24SpInitializeSecurityContextW
25SpMakeSignature
26SpQueryContextAttributesW
27SpQueryCredentialsAttributesW
28SpQuerySecurityContextToken
29SpQuerySecurityPackageInfoW
30SpRevertSecurityContext
31SpSetContextAttributesW
32SpSetCredentialsAttributesW
33SpVerifySignature
lib/libc/mingw/libarm32/cryptcatsvc.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of CRYPTCATSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CRYPTCATSVC.dll"
7EXPORTS
8CryptsvcDllCtrl
lib/libc/mingw/libarm32/crypttpmeksvc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of CRYPTTPMEKSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CRYPTTPMEKSVC.dll"
7EXPORTS
8CryptsvcDllCtrl
9FreeCMCResponse
10IsCmcResponseForAttestation
11ParseCMCResponse
lib/libc/mingw/libarm32/cryptuiwizard.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of CRYPTUIWIZARD.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CRYPTUIWIZARD.dll"
7EXPORTS
8GetFunctionTable
9CryptUIWizBuildCTL
10CryptUIWizDigitalSign
11CryptUIWizExport
12CryptUIWizFreeDigitalSignContext
13CryptUIWizImport
14CryptUIWizImportInternal
lib/libc/mingw/libarm32/cscdll.def created+25
......@@ -0,0 +1,25 @@
1;
2; Definition file of CSCDLL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CSCDLL.dll"
7EXPORTS
8CSCIsCSCEnabled
9CSCFindClose
10CSCSetMaxSpace
11CSCDoEnableDisable
12CSCPinFileW
13CSCUnpinFileW
14CSCQueryFileStatusW
15CSCFindFirstFileW
16CSCFindNextFileW
17CSCDeleteW
18CSCEnumForStatsW
19CSCIsServerOfflineW
20CSCTransitionServerOnlineW
21CSCEnumForStatsExW
22CSCFindFirstFileForSidW
23CSCDisconnectPath
24CSCIsPathOffline
25CSCTransitionPathOnline
lib/libc/mingw/libarm32/csrsrv.def created+38
......@@ -0,0 +1,38 @@
1;
2; Definition file of CSRSRV.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CSRSRV.dll"
7EXPORTS
8CsrAddStaticServerThread
9CsrCallServerFromServer
10CsrConnectToUser
11CsrCreateProcess
12CsrCreateRemoteThread
13CsrCreateThread
14CsrDeferredCreateProcess
15CsrDereferenceProcess
16CsrDereferenceThread
17CsrDestroyProcess
18CsrDestroyThread
19CsrExecServerThread
20CsrGetProcessLuid
21CsrImpersonateClient
22CsrLockProcessByClientId
23CsrLockThreadByClientId
24CsrLockedReferenceProcess
25CsrQueryApiPort
26CsrReferenceThread
27CsrRegisterClientThreadSetup
28CsrReplyToMessage
29CsrRevertToSelf
30CsrServerInitialization
31CsrSetBackgroundPriority
32CsrSetForegroundPriority
33CsrShutdownProcesses
34CsrUnhandledExceptionFilter
35CsrUnlockProcess
36CsrUnlockThread
37CsrValidateMessageBuffer
38CsrValidateMessageString
lib/libc/mingw/libarm32/csystemeventsbrokerclient.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of CSystemEventsBrokerClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "CSystemEventsBrokerClient.dll"
7EXPORTS
8CSebCreatePrivateEvent
9CSebCreateWellKnownEvent
10CSebDeleteEvent
11CSebEnumerateEvents
12CSebQueryEventData
lib/libc/mingw/libarm32/d3d10_1core.def created+47
......@@ -0,0 +1,47 @@
1;
2; Definition file of d3d10_1core.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "d3d10_1core.dll"
7EXPORTS
8D3DKMTCloseAdapter
9D3DKMTDestroyAllocation
10D3DKMTDestroyContext
11D3DKMTDestroyDevice
12D3DKMTDestroySynchronizationObject
13D3DKMTQueryAdapterInfo
14D3DKMTSetDisplayPrivateDriverFormat
15D3DKMTSignalSynchronizationObject
16D3DKMTUnlock
17D3DKMTWaitForSynchronizationObject
18OpenAdapter10
19OpenAdapter10_2
20D3D10CoreCreateDevice1
21D3D10CoreGetSupportedVersions
22D3D10CoreGetVersion
23D3D10CoreRegisterLayers
24D3DKMTCreateAllocation
25D3DKMTCreateContext
26D3DKMTCreateDevice
27D3DKMTCreateSynchronizationObject
28D3DKMTEscape
29D3DKMTGetContextSchedulingPriority
30D3DKMTGetDeviceState
31D3DKMTGetDisplayModeList
32D3DKMTGetMultisampleMethodList
33D3DKMTGetRuntimeData
34D3DKMTGetSharedPrimaryHandle
35D3DKMTLock
36D3DKMTOpenAdapterFromHdc
37D3DKMTOpenResource
38D3DKMTPresent
39D3DKMTQueryAllocationResidency
40D3DKMTQueryResourceInfo
41D3DKMTRender
42D3DKMTSetAllocationPriority
43D3DKMTSetContextSchedulingPriority
44D3DKMTSetDisplayMode
45D3DKMTSetGammaRamp
46D3DKMTSetVidPnSourceOwner
47D3DKMTWaitForVerticalBlankEvent
lib/libc/mingw/libarm32/d3d10core.def created+47
......@@ -0,0 +1,47 @@
1;
2; Definition file of d3d10core.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "d3d10core.dll"
7EXPORTS
8D3DKMTCloseAdapter
9D3DKMTDestroyAllocation
10D3DKMTDestroyContext
11D3DKMTDestroyDevice
12D3DKMTDestroySynchronizationObject
13D3DKMTQueryAdapterInfo
14D3DKMTSetDisplayPrivateDriverFormat
15D3DKMTSignalSynchronizationObject
16D3DKMTUnlock
17D3DKMTWaitForSynchronizationObject
18OpenAdapter10
19OpenAdapter10_2
20D3D10CoreCreateDevice
21D3D10CoreGetSupportedVersions
22D3D10CoreGetVersion
23D3D10CoreRegisterLayers
24D3DKMTCreateAllocation
25D3DKMTCreateContext
26D3DKMTCreateDevice
27D3DKMTCreateSynchronizationObject
28D3DKMTEscape
29D3DKMTGetContextSchedulingPriority
30D3DKMTGetDeviceState
31D3DKMTGetDisplayModeList
32D3DKMTGetMultisampleMethodList
33D3DKMTGetRuntimeData
34D3DKMTGetSharedPrimaryHandle
35D3DKMTLock
36D3DKMTOpenAdapterFromHdc
37D3DKMTOpenResource
38D3DKMTPresent
39D3DKMTQueryAllocationResidency
40D3DKMTQueryResourceInfo
41D3DKMTRender
42D3DKMTSetAllocationPriority
43D3DKMTSetContextSchedulingPriority
44D3DKMTSetDisplayMode
45D3DKMTSetGammaRamp
46D3DKMTSetVidPnSourceOwner
47D3DKMTWaitForVerticalBlankEvent
lib/libc/mingw/libarm32/d3d10level9.def created+86
......@@ -0,0 +1,86 @@
1;
2; Definition file of d3d10level9.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "d3d10level9.dll"
7EXPORTS
8D3D10CheckLevel9Hardware
9D3D10CreateDeviceExternalImplementation
10D3D10Level9DumpJournal
11D3D11CreateDeviceExternalImplementation
12D3DKMTCloseAdapter
13D3DKMTConfigureSharedResource
14D3DKMTDestroyAllocation
15D3DKMTDestroyContext
16D3DKMTDestroyDevice
17D3DKMTDestroyKeyedMutex
18D3DKMTDestroySynchronizationObject
19D3DKMTGetContextInProcessSchedulingPriority
20D3DKMTGetThunkVersion
21D3DKMTOfferAllocations
22D3DKMTOutputDuplPresent
23D3DKMTPinDirectFlipResources
24D3DKMTPresentMultiPlaneOverlay
25D3DKMTQueryAdapterInfo
26D3DKMTReclaimAllocations
27D3DKMTSetContextInProcessSchedulingPriority
28D3DKMTSetDisplayPrivateDriverFormat
29D3DKMTSetQueuedLimit
30D3DKMTSetVidPnSourceOwner1
31D3DKMTSignalSynchronizationObject2
32D3DKMTSignalSynchronizationObject
33D3DKMTUnlock
34D3DKMTUnpinDirectFlipResources
35D3DKMTWaitForSynchronizationObject2
36D3DKMTWaitForSynchronizationObject
37D3DKMTWaitForVerticalBlankEvent2
38LogMarkerStringTable
39OpenAdapter10
40OpenAdapter10_2
41RetrieveFilteredOpenAdapter
42D3DKMTAcquireKeyedMutex
43D3DKMTAcquireKeyedMutex2
44D3DKMTCheckMultiPlaneOverlaySupport
45D3DKMTCreateAllocation
46D3DKMTCreateAllocation2
47D3DKMTCreateContext
48D3DKMTCreateDevice
49D3DKMTCreateKeyedMutex
50D3DKMTCreateKeyedMutex2
51D3DKMTCreateSynchronizationObject
52D3DKMTCreateSynchronizationObject2
53D3DKMTEscape
54D3DKMTGetContextSchedulingPriority
55D3DKMTGetDeviceSchedulingPriority
56D3DKMTGetDeviceState
57D3DKMTGetDisplayModeList
58D3DKMTGetMultisampleMethodList
59D3DKMTGetRuntimeData
60D3DKMTGetSharedPrimaryHandle
61D3DKMTLock
62D3DKMTOpenAdapterFromDeviceName
63D3DKMTOpenAdapterFromGdiDisplayName
64D3DKMTOpenKeyedMutex
65D3DKMTOpenKeyedMutex2
66D3DKMTOpenNtHandleFromName
67D3DKMTOpenResource
68D3DKMTOpenResource2
69D3DKMTOpenResourceFromNtHandle
70D3DKMTOpenSyncObjectFromNtHandle
71D3DKMTOpenSynchronizationObject
72D3DKMTPresent
73D3DKMTQueryAllocationResidency
74D3DKMTQueryResourceInfo
75D3DKMTQueryResourceInfoFromNtHandle
76D3DKMTReleaseKeyedMutex
77D3DKMTReleaseKeyedMutex2
78D3DKMTRender
79D3DKMTSetAllocationPriority
80D3DKMTSetContextSchedulingPriority
81D3DKMTSetDeviceSchedulingPriority
82D3DKMTSetDisplayMode
83D3DKMTSetGammaRamp
84D3DKMTSetVidPnSourceOwner
85D3DKMTShareObjects
86D3DKMTWaitForVerticalBlankEvent
lib/libc/mingw/libarm32/d3d10warp.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of d3d10warp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "d3d10warp.dll"
7EXPORTS
8ord_199 @199
9VSD3DDebugConnectionBuffer DATA
10D3D11RefGetLastCreation
11D3DLayerGetInterface
12OpenAdapter
13OpenAdapter10_2
14QueryDListForApplication1
lib/libc/mingw/libarm32/dab.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of DAB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DAB.dll"
7EXPORTS
8DabInitialize
9DabPowerStateChanged
10DabSessionStateChanged
11DabTerminate
lib/libc/mingw/libarm32/dabapi.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of DABAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DABAPI.dll"
7EXPORTS
8DabApiBufferFree
9DabRegisterTriggerConsumer
10DabUnregisterTriggerConsumer
lib/libc/mingw/libarm32/datusage.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of DatUsage.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DatUsage.dll"
7EXPORTS
8CreateDataUsageHelper
9SetRealTimeUsage
10SetUsageHistory
lib/libc/mingw/libarm32/devdispitemprovider.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of DevDispItemProvider.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DevDispItemProvider.dll"
7EXPORTS
8DevQueryEntry
lib/libc/mingw/libarm32/deviceassociation.def created+29
......@@ -0,0 +1,29 @@
1;
2; Definition file of deviceassociation.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "deviceassociation.dll"
7EXPORTS
8DafAepExport
9DafAepImport
10DafChallengeDevicePresence
11DafCloseAssociationContext
12DafCloseChallengeContext
13DafCloseImportExportContext
14DafCreateAssociationContext
15DafCreateAssociationContextFromOobBlob
16DafCreateChallengeContext
17DafCreateDeviceChallengeContext
18DafCreateDeviceInterfaceChallengeContext
19DafCreateImportExportContext
20DafMemFree
21DafSelectCeremony
22DafStartAepExport
23DafStartAepImport
24DafStartDeviceStatusNotification
25DafStartEnumCeremonies
26DafStartFinalize
27DafStartReadCeremonyData
28DafStartRemoveAssociation
29DafStartWriteCeremonyData
lib/libc/mingw/libarm32/deviceregistration.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of DeviceRegistration.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DeviceRegistration.DLL"
7EXPORTS
8RegisterDevice
9UnRegisterDevice
10DiscoverRegistrationService
11GetRegistrationInfo
12IsRegistrationAvailable
lib/libc/mingw/libarm32/devinv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of devinv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "devinv.dll"
7EXPORTS
8RunDeviceInventoryW
9CreateDeviceInventory
lib/libc/mingw/libarm32/dfdts.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of DFDTS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DFDTS.dll"
7EXPORTS
8DfdGetDefaultPolicyAndSMART
9WdiDiagnosticModuleMain
10WdiGetDiagnosticModuleInterfaceVersion
11WdiHandleInstance
lib/libc/mingw/libarm32/dfpcommon.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of DfpCommon.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DfpCommon.dll"
7EXPORTS
8Anonymize
9ClearPIIFilter
10FreePathAnonymizer
11IsRunningElevated
12LogMessage
13MakeConfigService
14MakeDriveStudyTask
15MakeFolderStudyTask
16MakeLogger
17MakeMaintenanceService
18MakePathAnonymizer
19MakeStudyService
20OutputMessage
lib/libc/mingw/libarm32/dhcpcore.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of dhcpcore.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dhcpcore.DLL"
7EXPORTS
8DhcpGlobalIsShuttingDown DATA
9DhcpGlobalServiceSyncEvent DATA
10DhcpGlobalTerminateEvent DATA
11ServiceMain
lib/libc/mingw/libarm32/dhcpcore6.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of dhcpcore6.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dhcpcore6.DLL"
7EXPORTS
8Dhcpv6Main
lib/libc/mingw/libarm32/dhcpcsvc6.def deleted-29
......@@ -1,29 +0,0 @@
1;
2; Definition file of dhcpcsvc6.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dhcpcsvc6.DLL"
7EXPORTS
8Dhcpv6AcquireParameters
9Dhcpv6CApiCleanup
10Dhcpv6CApiInitialize
11Dhcpv6CancelOperation
12Dhcpv6EnableDhcp
13Dhcpv6EnableTracing
14Dhcpv6FreeLeaseInfo
15Dhcpv6FreeLeaseInfoArray
16Dhcpv6GetTraceArray
17Dhcpv6GetUserClasses
18Dhcpv6IsEnabled
19Dhcpv6QueryLeaseInfo
20Dhcpv6QueryLeaseInfoArray
21Dhcpv6ReleaseParameters
22Dhcpv6ReleasePrefix
23Dhcpv6ReleasePrefixEx
24Dhcpv6RenewPrefix
25Dhcpv6RenewPrefixEx
26Dhcpv6RequestParams
27Dhcpv6RequestPrefix
28Dhcpv6RequestPrefixEx
29Dhcpv6SetUserClass
lib/libc/mingw/libarm32/dhcpqec.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of DhcpQEC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DhcpQEC.dll"
7EXPORTS
8DhcpQecEnableTracing
9InitializeQec
10UninitializeQec
lib/libc/mingw/libarm32/diagperf.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of official.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "official.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/dispci.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of DispCI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DispCI.dll"
7EXPORTS
8DisplayClassInstaller
lib/libc/mingw/libarm32/display.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of DISPLAY.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DISPLAY.dll"
7EXPORTS
8DisplaySaveSettingsEx
lib/libc/mingw/libarm32/dmdskmgr.def created+248
......@@ -0,0 +1,248 @@
1;
2; Definition file of DMDskMgr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DMDskMgr.dll"
7EXPORTS
8??0CDataCache@@QAA@XZ
9??1CDMNodeObj@@QAA@XZ
10??1CDataCache@@UAA@XZ
11?AddFileSystemInfoToCache@CDataCache@@QAAXKPAUfilesysteminfo@@@Z
12?AddFileSystemInfoToListAndMap@CDataCache@@QAAXKPAUfilesysteminfo@@@Z
13?AddLDMObjMapEntry@CDataCache@@QAAXPAU_LDM_OBJ_MAP_ENTRY@@@Z
14?AddRegionToVolumeMemberList@CDataCache@@QAAXPAVCDMNodeObj@@@Z
15?AddRow@CDMComponentData@@QAAXPAVCDMScopeNode@@J@Z
16?AdjustRegionCountInLegendList@CDataCache@@QAAXW4_REGIONTYPE@@HPAVCTaskData@@@Z
17?AdjustVolumeCountInLegendList@CDataCache@@QAAXW4_VOLUMELAYOUT@@HPAVCTaskData@@@Z
18?CanHaveGPT@CDMNodeObj@@QAAHXZ
19?ChangeRow@CDMComponentData@@QAAXPAVCDMScopeNode@@J@Z
20?Command@CContextMenu@@QAAJJPAUIDataObject@@J@Z
21?CompareDiskNames@@YAHJJ@Z
22?ContainsActivePartition@CDMNodeObj@@QAAHXZ
23?ContainsBootIniPartition@CDMNodeObj@@QAAHXZ
24?ContainsBootIniPartitionForWolfpack@CDMNodeObj@@QAAHXZ
25?ContainsBootVolumesNumberChange@CDMNodeObj@@QAAH_JPAH@Z
26?ContainsESPPartition@CDMNodeObj@@QAAHXZ
27?ContainsFVEPartition@CDMNodeObj@@QAAHXZ
28?ContainsLogicalDrvBootPartition@CDMNodeObj@@QAAHXZ
29?ContainsPageFile@CDMNodeObj@@QAAHXZ
30?ContainsRealSystemPartition@CDMNodeObj@@QAAHXZ
31?ContainsSubDiskNeedResync@CDMNodeObj@@QAAHXZ
32?ContainsSystemInformation@CDMNodeObj@@QAAHXZ
33?ContainsSystemPartition@CDMNodeObj@@QAAHXZ
34?ConvertBytesToMB@@YA_J_J@Z
35?ConvertMBToBytes@@YA_J_J@Z
36?CookieSort@@YAXPAJIIIP6AHJJ@Z@Z
37?CreateDiskList@CDataCache@@QAAXXZ
38?CreateNodeObjAndAddToMap@CDataCache@@QAAPAVCDMNodeObj@@HW4_NODEOBJ_TYPES@@PAV1@PAX_J@Z
39?CreateRegionNodeObj@CDataCache@@QAAPAVCDMNodeObj@@PAV2@PAUregioninfoex@@@Z
40?CreateShortDiskName@CDataCache@@QAAXAAUdiskinfoex@@@Z
41?CreateVolumeList@CDataCache@@QAAXXZ
42?DeleteDiskGroupData@CDataCache@@QAAXPAUDISK_GROUP_DATA@@@Z
43?DeleteEncapsulateData@CDataCache@@QAAXPAUENCAPSULATE_DATA@@@Z
44?DeleteLists@CDataCache@@QAAXXZ
45?DeleteRegionFromVolumeMemberList@CDataCache@@QAAXPAVCDMNodeObj@@@Z
46?DeleteRow@CDMComponentData@@QAAXPAVCDMScopeNode@@J@Z
47?DoDelete@CContextMenu@@QAAXJ@Z
48?DoRevertToNT4@CContextMenu@@QAAXJH@Z
49?EmptyOcxViewData@CDMComponentData@@QAAXPAVCDMScopeNode@@@Z
50?EnhancedIsUpgradeable@CDMNodeObj@@QAAHPAVCTaskData@@@Z
51?EnumDiskRegions@CDMNodeObj@@QAAXPAPAJAAJ@Z
52?EnumDisks@CTaskData@@QAAXAAKPAPAJ@Z
53?EnumFirstVolumeMember@CDMNodeObj@@QAAXAAJ0@Z
54?EnumNTFSwithDriveLetter@CDataCache@@QAAXPAHPAPAG@Z
55?EnumNTFSwithDriveLetter@CTaskData@@QAAXPAHPAPAG@Z
56?EnumVolumeMembers@CDMNodeObj@@QAAXPAPAJAAJ@Z
57?EnumVolumes@CTaskData@@QAAXAAKPAPAJ@Z
58?FillDeviceInstanceId@CDataCache@@QAAXPAG0@Z
59?FilterCookiesBigEnoughForFTRepair@CTaskData@@QAAXAAKPAJPAPAJ_JPAVCDMNodeObj@@@Z
60?FilterCookiesBigEnoughForRAID5Repair@CTaskData@@QAAXAAKPAJPAPAJ_JPAVCDMNodeObj@@@Z
61?FindCookieAndRemoveFromList@CDataCache@@QAAHJPAV?$CList@PAVCDMNodeObj@@PAV1@@@@Z
62?FindDeviceInstanceId@CDataCache@@QAAPAG_J@Z
63?FindDiskPtrFromDiskId@CDataCache@@QAAH_JPAPAVCDMNodeObj@@@Z
64?FindDriveLetter@CDataCache@@QAAH_JAAG@Z
65?FindDriveLetter@CTaskData@@QAAX_JAAG@Z
66?FindDriveLetterHelper@@YAHPAUdriveletterinfo@@H_JAAG@Z
67?FindFileSystem@CDataCache@@QAAH_JAAUfilesysteminfo@@@Z
68?FindFileSystem@CTaskData@@QAAH_JAAUfilesysteminfo@@@Z
69?FindRegionPtrFromRegionId@CDataCache@@QAAH_JPAPAVCDMNodeObj@@@Z
70?FindRegionPtrFromRegionId@CTaskData@@QAAH_JPAPAVCDMNodeObj@@@Z
71?FindRegionPtrOnDiskFromRegionId@CDataCache@@QAAHPAVCDMNodeObj@@_JPAPAV2@AAPAU__POSITION@@@Z
72?GetAssignedDriveLetter@CTaskData@@QAAHJAAG@Z
73?GetBootPort@CDataCache@@QAAHXZ
74?GetBootPort@CTaskData@@QAAHXZ
75?GetColorRef@CDMNodeObj@@QAAKXZ
76?GetComponentData@CDataCache@@QAAPAVCDMComponentData@@XZ
77?GetDMDataObjPtrFromId@CTaskData@@QAAPAVCDMNodeObj@@_J@Z
78?GetDeviceAttributes@CDMNodeObj@@QAAKXZ
79?GetDeviceState@CDMNodeObj@@QAAKXZ
80?GetDeviceType@CDMNodeObj@@QAAKXZ
81?GetDiskCookies@CDataCache@@IAAXAAKPAPAJ@Z
82?GetDiskCookies@CTaskData@@QAAXAAKPAPAJHKH@Z
83?GetDiskCookiesForAddMirror@CTaskData@@QAAXJAAKPAPAJ@Z
84?GetDiskCookiesForCreateVolume@CTaskData@@QAAXAAKPAPAJ@Z
85?GetDiskCookiesForExtendVolume@CTaskData@@QAAXJAAKPAPAJ@Z
86?GetDiskCookiesForSig@CTaskData@@QAAXAAKPAPAJ@Z
87?GetDiskCookiesForUpgrade@CTaskData@@QAAXAAKPAPAJ@Z
88?GetDiskCookiesToEncap@CTaskData@@QAAXAAKPAPAJ@Z
89?GetDiskCookiesWithFreeSpace@CTaskData@@QAAXAAKPAPAJ@Z
90?GetDiskCount@CDataCache@@QAAKXZ
91?GetDiskInfo@CDMNodeObj@@QAAHAAUdiskinfoex@@@Z
92?GetDiskInfoFromVolCookie@CTaskData@@QAAXJAAHAAKPAPAJKH@Z
93?GetDiskSpec@CDMNodeObj@@QAAHAAUdiskspec@@@Z
94?GetDiskStatus@CDMNodeObj@@QAAHAAVCString@@@Z
95?GetDiskStatusHelper@@YAHPAUdiskinfoex@@AAVCString@@H@Z
96?GetDiskTypeName@CDMNodeObj@@QAAXAAVCString@@@Z
97?GetDiskTypeNameHelper@@YAXPAUdiskinfoex@@AAVCString@@G@Z
98?GetDriveLetter@CDMNodeObj@@QAAXAAG@Z
99?GetDriveLetters@CDataCache@@IAAXAAFPAPAGG@Z
100?GetDriveLetters@CTaskData@@QAAXAAFPAPAGG@Z
101?GetExtendedRegionColor@CDMNodeObj@@QAAKXZ
102?GetExtraRegionStatus@CDMNodeObj@@QAAHAAVCString@@H@Z
103?GetFileSystemLabel@CDMNodeObj@@QAAXAAVCString@@@Z
104?GetFileSystemName@CDMNodeObj@@QAAXAAVCString@@@Z
105?GetFileSystemSize@CDMNodeObj@@QAAXAAJ@Z
106?GetFileSystemType@CDMNodeObj@@QAAHXZ
107?GetFileSystemTypes@CDataCache@@QAAXAAKPAPAUifilesysteminfo@@@Z
108?GetFileSystemTypes@CTaskData@@QAAXAAKPAPAUifilesysteminfo@@@Z
109?GetFlags@CDMNodeObj@@QAAJXZ
110?GetIVolumeClientVersion@CDMNodeObj@@QAAFXZ
111?GetIVolumeClientVersion@CTaskData@@QAAFXZ
112?GetIconId@CDMNodeObj@@QAAIH@Z
113?GetImageNum@CDMNodeObj@@QAAHXZ
114?GetLastKnownState@CDataCache@@QAA_J_J@Z
115?GetLayoutType@CDMNodeObj@@QAA?AW4_LAYOUT_TYPES@@XZ
116?GetLdmObjectId@CDMNodeObj@@QAA_JXZ
117?GetLogicalDriveCount@CDMNodeObj@@QAAKXZ
118?GetLongName@CDMNodeObj@@QAAXAAVCString@@H@Z
119?GetMMCWindow@CDMComponentData@@QAAPAUHWND__@@XZ
120?GetMaxAdjustedFreeSize@CDMNodeObj@@QAAXAA_J@Z
121?GetMaxPartitionCount@CDMNodeObj@@QAAKXZ
122?GetMinMaxPartitionSizes@CDataCache@@IAAXJAA_J0@Z
123?GetMinMaxPartitionSizes@CTaskData@@QAAXJAA_J0@Z
124?GetName@CDMNodeObj@@QAAXAAVCString@@@Z
125?GetNumMembers@CDMNodeObj@@QAAKXZ
126?GetNumRegions@CDMNodeObj@@QAAKXZ
127?GetObjectId@CDMNodeObj@@QAAXAA_J@Z
128?GetOcxFrameCWndPtr@CTaskData@@QAAPAVCWnd@@XZ
129?GetOfflineReasonText@CDMNodeObj@@QAAHAAVCString@@@Z
130?GetOtherDisksFromVolCookie@CTaskData@@QAAXJAAKPAPAJ@Z
131?GetParentDiskPtr@CDMNodeObj@@QAAPAV1@XZ
132?GetParentVolumePtr@CDMNodeObj@@QAAPAV1@XZ
133?GetPartitionStyle@CDMNodeObj@@QAA?AW4_PARTITIONSTYLE@@XZ
134?GetPartitionStyleString@CDMNodeObj@@QAAXAAVCString@@H@Z
135?GetPartitionStyleStringHelper@@YAXW4_PARTITIONSTYLE@@AAVCString@@HKKH@Z
136?GetPatternRef@CDMNodeObj@@QAAHXZ
137?GetPort@CDMNodeObj@@QAAHXZ
138?GetPrimaryPartitionCount@CDMNodeObj@@QAAKXZ
139GetPropertyPageData
140?GetRegionByOffset@CDMNodeObj@@QAAPAV1@_J@Z
141?GetRegionColorStructPtr@CTaskData@@QAAXPAPAU_REGION_COLORS@@AAH@Z
142?GetRegionInfo@CDMNodeObj@@QAAHAAUregioninfoex@@@Z
143?GetResultPane@CDMSnapin@@QAAHJPAPAVCDMResultPane@@@Z
144?GetResultStringArray@CDMNodeObj@@QAAHAAVCStringArray@@@Z
145?GetScopeNode@CDMScopeNodeCollection@@QAAHJPAPAVCDMScopeNode@@@Z
146?GetScopeNodeForResultPane@CDMComponentData@@QAAHJPAPAVCDMScopeNode@@@Z
147?GetServerName@CDataCache@@QAA?AVCString@@XZ
148?GetServerName@CTaskData@@QAA?AVCString@@XZ
149?GetShortName@CDMNodeObj@@QAAXAAVCString@@@Z
150?GetShrinkableSizeInMB@CDMNodeObj@@QAA_JXZ
151?GetSize@CDMNodeObj@@QAAXAA_JH@Z
152?GetSizeMB@CDMNodeObj@@QAAXAA_J@Z
153?GetSizeString@CDMNodeObj@@QAAXAAVCString@@@Z
154?GetStartOffset@CDMNodeObj@@QAA_JXZ
155?GetStatus@CDMNodeObj@@QAAHXZ
156?GetStorageType@CDMNodeObj@@QAA?AW4_STORAGE_TYPES@@XZ
157?GetStorageType@CDMNodeObj@@QAAXAAVCString@@H@Z
158?GetStringFromRc@@YA?AVCString@@K@Z
159?GetUIState@CTaskData@@QAAKXZ
160?GetUnallocSpace@CDMNodeObj@@QAA_JH@Z
161?GetUsableContiguousSpaceInMB@CDMNodeObj@@QAA_JXZ
162?GetVolumeCookies@CDataCache@@IAAXAAKPAPAJ@Z
163?GetVolumeCount@CDataCache@@QAAKXZ
164?GetVolumeFileSystemTypes@CDMNodeObj@@QAAJAAKPAPAUilhfilesysteminfo@@@Z
165?GetVolumeInfo@CDMNodeObj@@QAAHAAUvolumeinfo@@@Z
166?GetVolumeStatus@CDMNodeObj@@QAAHAAVCString@@@Z
167?GetVolumeTotalSizeMB@CDMNodeObj@@QAA_JXZ
168?HasExtendedPartition@CDMNodeObj@@QAAHXZ
169?HasNTFSwithDriveLetter@CDataCache@@QAAHXZ
170?HasNTFSwithDriveLetter@CTaskData@@QAAHXZ
171?HasVMDisk@CDataCache@@QAAHXZ
172?IsActive@CDMNodeObj@@QAAHXZ
173?IsAlpha@CDataCache@@QAAHXZ
174?IsAlpha@CTaskData@@QAAHXZ
175?IsConvertSuccess@CDMNodeObj@@QAAJH@Z
176?IsCurrBootVolume@CDMNodeObj@@QAAHXZ
177?IsCurrSystemVolume@CDMNodeObj@@QAAHXZ
178?IsDiskEmpty@CDMNodeObj@@QAAHXZ
179?IsDiskOffline@CDMNodeObj@@QAAHXZ
180?IsDiskReadOnly@CDMNodeObj@@QAAHXZ
181?IsDynamic1394@CDataCache@@QAAHXZ
182?IsEECoveredGPTDisk@CDMNodeObj@@QAAHXZ
183?IsESPPartition@CDMNodeObj@@QAAHXZ
184?IsEfi@CDataCache@@QAAHXZ
185?IsEfi@CTaskData@@QAAHXZ
186?IsExtendedPartitionCreated@CDMNodeObj@@QAAJXZ
187?IsFTVolume@CDMNodeObj@@QAAHXZ
188?IsFakeVolume@CDMNodeObj@@QAAHXZ
189?IsFirstFreeRegion@CDMNodeObj@@QAAHXZ
190?IsFreeSpaceFollowed@CDMNodeObj@@QAAH_J@Z
191?IsHiddenRegion@@YAHAAUregioninfoex@@@Z
192?IsHiddenRegion@CDMNodeObj@@QAAHXZ
193?IsInFlux@CDMNodeObj@@QAAHXZ
194?IsLocalMachine@CTaskData@@QAAHXZ
195?IsMbrEEPartition@@YAHAAUregioninfoex@@@Z
196?IsMbrEEPartition@CDMNodeObj@@QAAHXZ
197?IsMember@CDMNodeObj@@QAAHPAV1@@Z
198?IsNEC_98Disk@CDMNodeObj@@QAAHXZ
199?IsNEC_98Server@CDataCache@@QAAHXZ
200?IsNEC_98Server@CTaskData@@QAAHXZ
201?IsNTServer@CTaskData@@QAAHXZ
202?IsOemPartition@CDMNodeObj@@QAAHXZ
203?IsPersonalOrLapTopServer@CDataCache@@QAAHXZ
204?IsPostLonghornVdsVersion@CDataCache@@QAAHXZ
205?IsPostLonghornVdsVersion@CTaskData@@QAAHXZ
206?IsPreLonghornVdsVersion@CDataCache@@QAAHXZ
207?IsPreLonghornVdsVersion@CTaskData@@QAAHXZ
208IsRequestPending
209?IsRevertable@CDMNodeObj@@QAAHXZ
210?IsSecureSystemPartition@CTaskData@@QAAHXZ
211?IsSpacesProtectivePartition@CDMNodeObj@@QAAHXZ
212?IsUnknownPartition@CDMNodeObj@@QAAHXZ
213?IsUpgradeable@CDMNodeObj@@QAAHXZ
214?IsVolumeArrived@CDMNodeObj@@QAAJ_JW4_LAYOUT_TYPES@@@Z
215?IsVolumeSimple@CDMNodeObj@@QAAHXZ
216?IsWolfpack@CDataCache@@QAAHXZ
217?IsWolfpack@CTaskData@@QAAHXZ
218?LoadData@CDMComponentData@@QAAXPAVCDMScopeNode@@J@Z
219LoadPropertyPageData
220?MarkDiskForLastVolume@CDMNodeObj@@QAAXPAV1@@Z
221?MarkDisksForLastVolume@CDMNodeObj@@QAAXXZ
222?OnlyContiguousExtendAllowed@CDMNodeObj@@QAAHXZ
223?ParseDeviceName@@YAXPAH00PAG@Z
224?PopUpInit@CContextMenu@@QAAXPAVCDMNodeObj@@AAH1H@Z
225?PopulateDiskGroupData@CDataCache@@QAAXPAUDISK_GROUP_DATA@@@Z
226?PopulateEncapsulateData@CDataCache@@QAAXPAUENCAPSULATE_DATA@@@Z
227?RecalculateSpace@CDMNodeObj@@QAAXXZ
228?RefreshDiskView@CDMComponentData@@QAAXPAVCDMScopeNode@@@Z
229?RefreshFileSys@CContextMenu@@QAAXJ@Z
230?ReloadData@CDMComponentData@@QAAXPAVCDMScopeNode@@@Z
231?RoundUpToMB@@YA_J_J@Z
232?SetDescriptionBarText@CDMSnapin@@QAAXJ@Z
233?SetDiskList@CDataCache@@QAAXPAUdiskinfoex@@K@Z
234?SetDriveLetterInUse@CDataCache@@QAAXGH@Z
235?SetFSId@CDMNodeObj@@QAAX_J@Z
236?SetOcxViewType@CDMComponentData@@QAAXPAVCDMScopeNode@@@Z
237?SetOcxViewTypeForce@CDMComponentData@@QAAXPAVCDMScopeNode@@@Z
238?SetUIState@CTaskData@@QAAXK@Z
239?SetVolumeList@CDataCache@@QAAXPAUvolumeinfo@@KPAVCTaskData@@@Z
240?ShowContextMenu@CContextMenu@@QAAJPAVCWnd@@JJJ@Z
241?SupportGpt@CDataCache@@QAAHXZ
242?SupportGpt@CTaskData@@QAAHXZ
243?SupportMirror@CDataCache@@QAAHXZ
244?SupportRaid5@CDataCache@@QAAHXZ
245?UIStateChange@CDMComponentData@@QAAXPAVCDMScopeNode@@K@Z
246?UpDateConsoleView@CDMSnapin@@QAAXJ@Z
247?VolumeContainsActiveRegion@CDMNodeObj@@QAAHXZ
248?namecmp@@YAHPBG0@Z
lib/libc/mingw/libarm32/dmvdsitf.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of dmivcitf.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dmivcitf.dll"
7EXPORTS
8?AddLDMObjMapEntry@CDataCache@@QAAXPAU_LDM_OBJ_MAP_ENTRY@@@Z
9CreateDataCacheZ
10CreateServerRequestsZ
11?GetDiskCount@CDataCache@@QAAKXZ
12?GetLdmObjectId@CDMNodeObj@@QAA_JXZ
13?GetNumMembers@CDMNodeObj@@QAAKXZ
14?GetOcxFrameCWndPtr@CTaskData@@QAAPAVCWnd@@XZ
15?GetRegionColorStructPtr@CTaskData@@QAAXPAPAU_REGION_COLORS@@AAH@Z
16?GetServerName@CDataCache@@QAA?AVCString@@XZ
17?GetVolumeCount@CDataCache@@QAAKXZ
18LoadPropertyPageData
lib/libc/mingw/libarm32/dot3api.def created+33
......@@ -0,0 +1,33 @@
1;
2; Definition file of dot3api.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dot3api.dll"
7EXPORTS
8Dot3CancelPlap
9Dot3CloseHandle
10Dot3DeinitPlapParams
11Dot3DeleteProfile
12Dot3DoPlap
13Dot3EnumInterfaces
14Dot3FreeMemory
15Dot3GetCurrentProfile
16Dot3GetInterfaceState
17Dot3GetProfile
18Dot3GetProfileEapUserDataInfo
19Dot3InitPlapParams
20Dot3OpenHandle
21Dot3QueryAutoConfigParameter
22Dot3QueryPlapCredentials
23Dot3QueryUIRequest
24Dot3ReConnect
25Dot3ReasonCodeToString
26Dot3RegisterNotification
27Dot3SetAutoConfigParameter
28Dot3SetInterface
29Dot3SetProfile
30Dot3SetProfileEapUserData
31Dot3SetProfileEapXmlUserData
32Dot3UIResponse
33QueryNetconStatus
lib/libc/mingw/libarm32/dot3dlg.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of dot3dlg.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dot3dlg.dll"
7EXPORTS
8Dot3ACOnBalloonClick
9Dot3ACCanShowBalloon
lib/libc/mingw/libarm32/dot3gpclnt.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of dot3gpclnt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dot3gpclnt.dll"
7EXPORTS
8DeserializeLANPolicy
9GenerateLANPolicy
10ProcessLANPolicyEx
11LANGPADeInit
12LANGPAInit
lib/libc/mingw/libarm32/dot3msm.def created+26
......@@ -0,0 +1,26 @@
1;
2; Definition file of dot3msm.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dot3msm.dll"
7EXPORTS
8Dot3MsmConnect
9Dot3MsmCreateDefaultProfile
10Dot3MsmDeInit
11Dot3MsmDeInitAdapter
12Dot3MsmDisconnect
13Dot3MsmFreeMemory
14Dot3MsmFreeProfile
15Dot3MsmIndicateSessionChange
16Dot3MsmInit
17Dot3MsmInitAdapter
18Dot3MsmQueryMediaState
19Dot3MsmQueryPendingUIRequest
20Dot3MsmQueryState
21Dot3MsmReAuthenticate
22Dot3MsmSetRuntimeState
23Dot3MsmUIResponse
24Dot3MsmValidateProfile
25Dot3ReasonCodeMsmToString
26Dot3SetPortAuthenticationState
lib/libc/mingw/libarm32/dot3svc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of Dot3svc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Dot3svc.dll"
7EXPORTS
8Dot3SvcMain
9LanNotifyOnLogoff
10LanNotifyOnLogon
11SvchostPushServiceGlobals
lib/libc/mingw/libarm32/dot3ui.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of dot3ui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dot3ui.dll"
7EXPORTS
8Dot3CreatePsPage
lib/libc/mingw/libarm32/dpapi.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of DPAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DPAPI.dll"
7EXPORTS
8CryptProtectDataNoUI
9CryptProtectMemory
10CryptResetMachineCredentials
11CryptUnprotectDataNoUI
12CryptUnprotectMemory
13CryptUpdateProtectedState
14iCryptIdentifyProtection
lib/libc/mingw/libarm32/dpapisrv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of dpapisrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dpapisrv.dll"
7EXPORTS
8InitializeLsaExtension
9QueryLsaInterface
lib/libc/mingw/libarm32/dpx.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of dpx.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dpx.dll"
7EXPORTS
8DpxFreeMemory
9DpxNewJob
10DpxNewJobEx
11DpxRestoreJob
12DpxRestoreJobEx
lib/libc/mingw/libarm32/drvstore.def created+50
......@@ -0,0 +1,50 @@
1;
2; Definition file of drvstore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "drvstore.dll"
7EXPORTS
8DriverPackageClose
9DriverPackageEnumClassesW
10DriverPackageEnumConfigurationsW
11DriverPackageEnumDevicesW
12DriverPackageEnumDriversW
13DriverPackageEnumFilesW
14DriverPackageEnumInterfacesW
15DriverPackageEnumPropertiesW
16DriverPackageEnumRegKeysW
17DriverPackageEnumServicesW
18DriverPackageGetVersionInfoW
19DriverPackageOpenW
20DriverStoreClose
21DriverStoreConfigureW
22DriverStoreCopyW
23DriverStoreDeleteW
24DriverStoreDriverPackageResolveCallbackW
25DriverStoreEnumObjectsW
26DriverStoreEnumW
27DriverStoreFindW
28DriverStoreGetObjectPropertyKeysW
29DriverStoreGetObjectPropertyW
30DriverStoreImportW
31DriverStoreOfflineAddDriverPackageA
32DriverStoreOfflineAddDriverPackageW
33DriverStoreOfflineDeleteDriverPackageA
34DriverStoreOfflineDeleteDriverPackageW
35DriverStoreOfflineEnumDriverPackageA
36DriverStoreOfflineEnumDriverPackageW
37DriverStoreOfflineFindDriverPackageA
38DriverStoreOfflineFindDriverPackageW
39DriverStoreOpenW
40DriverStorePublishW
41DriverStoreReflectCriticalW
42DriverStoreReflectW
43DriverStoreSetLogContext
44DriverStoreSetObjectPropertyW
45DriverStoreUnconfigureW
46DriverStoreUnpublishW
47DriverStoreUnreflectCriticalW
48DriverStoreUnreflectW
49pServerDeleteDriverPackage
50pServerImportDriverPackage
lib/libc/mingw/libarm32/dui70.def created+4137
......@@ -0,0 +1,4137 @@
1;
2; Definition file of DUI70.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "DUI70.dll"
7EXPORTS
8??0?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@QAA@XZ
9??0?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@QAA@XZ
10??0?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@QAA@XZ
11??0?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@QAA@XZ
12??0?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@QAA@XZ
13??0?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@QAA@XZ
14??0?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@QAA@XZ
15??0?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@QAA@XZ
16??0?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@QAA@XZ
17??0?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@QAA@XZ
18??0?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@QAA@XZ
19??0?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@QAA@XZ
20??0?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@QAA@XZ
21??0?$SafeArrayAccessor@H@DirectUI@@QAA@XZ
22??0AccessibleButton@DirectUI@@QAA@ABV01@@Z
23??0AccessibleButton@DirectUI@@QAA@XZ
24??0AnimationStrip@DirectUI@@QAA@ABV01@@Z
25??0AnimationStrip@DirectUI@@QAA@XZ
26??0AutoButton@DirectUI@@QAA@ABV01@@Z
27??0AutoButton@DirectUI@@QAA@XZ
28??0AutoLock@DirectUI@@QAA@PAU_RTL_CRITICAL_SECTION@@@Z
29??0AutoThread@DirectUI@@QAA@XZ
30??0AutoVariant@DirectUI@@QAA@XZ
31??0BaseScrollBar@DirectUI@@QAA@ABV01@@Z
32??0BaseScrollBar@DirectUI@@QAA@XZ
33??0BaseScrollViewer@DirectUI@@QAA@ABV01@@Z
34??0BaseScrollViewer@DirectUI@@QAA@XZ
35??0Bind@DirectUI@@QAA@ABV01@@Z
36??0Bind@DirectUI@@QAA@XZ
37??0BorderLayout@DirectUI@@QAA@ABV01@@Z
38??0BorderLayout@DirectUI@@QAA@XZ
39??0Browser@DirectUI@@QAA@ABV01@@Z
40??0Browser@DirectUI@@QAA@XZ
41??0BrowserSelectionProxy@DirectUI@@QAA@ABV01@@Z
42??0BrowserSelectionProxy@DirectUI@@QAA@XZ
43??0Button@DirectUI@@QAA@ABV01@@Z
44??0Button@DirectUI@@QAA@XZ
45??0CCAVI@DirectUI@@QAA@ABV01@@Z
46??0CCAVI@DirectUI@@QAA@XZ
47??0CCBase@DirectUI@@QAA@ABV01@@Z
48??0CCBase@DirectUI@@QAA@KPBG@Z
49??0CCBaseCheckRadioButton@DirectUI@@QAA@ABV01@@Z
50??0CCBaseCheckRadioButton@DirectUI@@QAA@K@Z
51??0CCBaseScrollBar@DirectUI@@QAA@ABV01@@Z
52??0CCBaseScrollBar@DirectUI@@QAA@K@Z
53??0CCCheckBox@DirectUI@@QAA@ABV01@@Z
54??0CCCheckBox@DirectUI@@QAA@K@Z
55??0CCCommandLink@DirectUI@@QAA@ABV01@@Z
56??0CCCommandLink@DirectUI@@QAA@K@Z
57??0CCHScrollBar@DirectUI@@QAA@ABV01@@Z
58??0CCHScrollBar@DirectUI@@QAA@XZ
59??0CCListBox@DirectUI@@QAA@ABV01@@Z
60??0CCListBox@DirectUI@@QAA@XZ
61??0CCListView@DirectUI@@QAA@ABV01@@Z
62??0CCListView@DirectUI@@QAA@XZ
63??0CCProgressBar@DirectUI@@QAA@ABV01@@Z
64??0CCProgressBar@DirectUI@@QAA@XZ
65??0CCPushButton@DirectUI@@QAA@ABV01@@Z
66??0CCPushButton@DirectUI@@QAA@K@Z
67??0CCRadioButton@DirectUI@@QAA@ABV01@@Z
68??0CCRadioButton@DirectUI@@QAA@XZ
69??0CCSysLink@DirectUI@@QAA@ABV01@@Z
70??0CCSysLink@DirectUI@@QAA@XZ
71??0CCTrackBar@DirectUI@@QAA@ABV01@@Z
72??0CCTrackBar@DirectUI@@QAA@XZ
73??0CCTreeView@DirectUI@@QAA@ABV01@@Z
74??0CCTreeView@DirectUI@@QAA@K@Z
75??0CCVScrollBar@DirectUI@@QAA@ABV01@@Z
76??0CCVScrollBar@DirectUI@@QAA@XZ
77??0CallstackTracker@DirectUI@@QAA@XZ
78??0CheckBoxGlyph@DirectUI@@QAA@ABV01@@Z
79??0CheckBoxGlyph@DirectUI@@QAA@XZ
80??0ClassInfoBase@DirectUI@@QAA@ABV01@@Z
81??0ClassInfoBase@DirectUI@@QAA@XZ
82??0Clipper@DirectUI@@QAA@ABV01@@Z
83??0Clipper@DirectUI@@QAA@XZ
84??0Combobox@DirectUI@@QAA@ABV01@@Z
85??0Combobox@DirectUI@@QAA@XZ
86??0CritSecLock@DirectUI@@QAA@PAU_RTL_CRITICAL_SECTION@@@Z
87??0DCSurface@DirectUI@@QAA@ABV01@@Z
88??0DCSurface@DirectUI@@QAA@PAUHDC__@@@Z
89??0DUIFactory@DirectUI@@QAA@PAUHWND__@@@Z
90??0DUIXmlParser@DirectUI@@QAA@ABV01@@Z
91??0DUIXmlParser@DirectUI@@QAA@XZ
92??0DialogElement@DirectUI@@QAA@ABV01@@Z
93??0DialogElement@DirectUI@@QAA@XZ
94??0DuiAccessible@DirectUI@@QAA@XZ
95??0Edit@DirectUI@@QAA@ABV01@@Z
96??0Edit@DirectUI@@QAA@XZ
97??0Element@DirectUI@@QAA@ABV01@@Z
98??0Element@DirectUI@@QAA@XZ
99??0ElementProvider@DirectUI@@QAA@XZ
100??0ElementProxy@DirectUI@@QAA@ABV01@@Z
101??0ElementProxy@DirectUI@@QAA@XZ
102??0ElementWithHWND@DirectUI@@QAA@ABV01@@Z
103??0ElementWithHWND@DirectUI@@QAA@XZ
104??0ExpandCollapseProvider@DirectUI@@QAA@XZ
105??0ExpandCollapseProxy@DirectUI@@QAA@ABV01@@Z
106??0ExpandCollapseProxy@DirectUI@@QAA@XZ
107??0Expandable@DirectUI@@QAA@ABV01@@Z
108??0Expandable@DirectUI@@QAA@XZ
109??0Expando@DirectUI@@QAA@ABV01@@Z
110??0Expando@DirectUI@@QAA@XZ
111??0ExpandoButtonGlyph@DirectUI@@QAA@ABV01@@Z
112??0ExpandoButtonGlyph@DirectUI@@QAA@XZ
113??0FillLayout@DirectUI@@QAA@ABV01@@Z
114??0FillLayout@DirectUI@@QAA@XZ
115??0FlowLayout@DirectUI@@QAA@ABV01@@Z
116??0FlowLayout@DirectUI@@QAA@XZ
117??0FontCache@DirectUI@@QAA@ABV01@@Z
118??0FontCache@DirectUI@@QAA@XZ
119??0FontCheckOut@DirectUI@@QAA@PAVElement@1@PAUHDC__@@@Z
120??0GridItemProvider@DirectUI@@QAA@XZ
121??0GridItemProxy@DirectUI@@QAA@ABV01@@Z
122??0GridItemProxy@DirectUI@@QAA@XZ
123??0GridLayout@DirectUI@@QAA@ABV01@@Z
124??0GridLayout@DirectUI@@QAA@XZ
125??0GridProvider@DirectUI@@QAA@XZ
126??0GridProxy@DirectUI@@QAA@ABV01@@Z
127??0GridProxy@DirectUI@@QAA@XZ
128??0HWNDElement@DirectUI@@QAA@ABV01@@Z
129??0HWNDElement@DirectUI@@QAA@XZ
130??0HWNDElementAccessible@DirectUI@@QAA@XZ
131??0HWNDElementProvider@DirectUI@@QAA@XZ
132??0HWNDElementProxy@DirectUI@@QAA@ABV01@@Z
133??0HWNDElementProxy@DirectUI@@QAA@XZ
134??0HWNDHost@DirectUI@@QAA@ABV01@@Z
135??0HWNDHost@DirectUI@@QAA@XZ
136??0HWNDHostAccessible@DirectUI@@QAA@XZ
137??0HWNDHostClientAccessible@DirectUI@@QAA@XZ
138??0IDataEngine@DirectUI@@QAA@ABU01@@Z
139??0IDataEngine@DirectUI@@QAA@XZ
140??0IDataEntry@DirectUI@@QAA@ABU01@@Z
141??0IDataEntry@DirectUI@@QAA@XZ
142??0IProvider@DirectUI@@QAA@ABV01@@Z
143??0IProvider@DirectUI@@QAA@XZ
144??0ISBLeak@DirectUI@@QAA@ABU01@@Z
145??0ISBLeak@DirectUI@@QAA@XZ
146??0IXElementCP@DirectUI@@QAA@ABV01@@Z
147??0IXElementCP@DirectUI@@QAA@XZ
148??0IXProviderCP@DirectUI@@QAA@ABV01@@Z
149??0IXProviderCP@DirectUI@@QAA@XZ
150??0InvokeHelper@DirectUI@@QAA@XZ
151??0InvokeProvider@DirectUI@@QAA@XZ
152??0InvokeProxy@DirectUI@@QAA@ABV01@@Z
153??0InvokeProxy@DirectUI@@QAA@XZ
154??0ItemList@DirectUI@@QAA@XZ
155??0Layout@DirectUI@@QAA@ABV01@@Z
156??0Layout@DirectUI@@QAA@XZ
157??0LinkedList@DirectUI@@QAA@XZ
158??0Macro@DirectUI@@QAA@ABV01@@Z
159??0Macro@DirectUI@@QAA@XZ
160??0ModernProgressBar@DirectUI@@QAA@XZ
161??0ModernProgressBarRangeValueProxy@DirectUI@@QAA@ABV01@@Z
162??0ModernProgressBarRangeValueProxy@DirectUI@@QAA@XZ
163??0ModernProgressRing@DirectUI@@QAA@XZ
164??0Movie@DirectUI@@QAA@ABV01@@Z
165??0Movie@DirectUI@@QAA@XZ
166??0NativeHWNDHost@DirectUI@@QAA@ABV01@@Z
167??0NativeHWNDHost@DirectUI@@QAA@XZ
168??0Navigator@DirectUI@@QAA@ABV01@@Z
169??0Navigator@DirectUI@@QAA@XZ
170??0NavigatorSelectionItemProxy@DirectUI@@QAA@ABV01@@Z
171??0NavigatorSelectionItemProxy@DirectUI@@QAA@XZ
172??0NineGridLayout@DirectUI@@QAA@ABV01@@Z
173??0NineGridLayout@DirectUI@@QAA@XZ
174??0PText@DirectUI@@QAA@ABV01@@Z
175??0PText@DirectUI@@QAA@XZ
176??0Page@DirectUI@@QAA@ABV01@@Z
177??0Page@DirectUI@@QAA@XZ
178??0Pages@DirectUI@@QAA@ABV01@@Z
179??0Pages@DirectUI@@QAA@XZ
180??0Progress@DirectUI@@QAA@ABV01@@Z
181??0Progress@DirectUI@@QAA@XZ
182??0ProgressRangeValueProxy@DirectUI@@QAA@ABV01@@Z
183??0ProgressRangeValueProxy@DirectUI@@QAA@XZ
184??0ProviderProxy@DirectUI@@IAA@XZ
185??0ProviderProxy@DirectUI@@QAA@ABV01@@Z
186??0Proxy@DirectUI@@QAA@ABV01@@Z
187??0Proxy@DirectUI@@QAA@XZ
188??0PushButton@DirectUI@@QAA@ABV01@@Z
189??0PushButton@DirectUI@@QAA@XZ
190??0RadioButtonGlyph@DirectUI@@QAA@ABV01@@Z
191??0RadioButtonGlyph@DirectUI@@QAA@XZ
192??0RangeValueProvider@DirectUI@@QAA@XZ
193??0RangeValueProxy@DirectUI@@IAA@XZ
194??0RangeValueProxy@DirectUI@@QAA@ABV01@@Z
195??0RefPointElement@DirectUI@@QAA@ABV01@@Z
196??0RefPointElement@DirectUI@@QAA@XZ
197??0RefcountBase@DirectUI@@QAA@XZ
198??0RepeatButton@DirectUI@@QAA@ABV01@@Z
199??0RepeatButton@DirectUI@@QAA@XZ
200??0Repeater@DirectUI@@QAA@ABV01@@Z
201??0Repeater@DirectUI@@QAA@XZ
202??0ResourceModuleHandles@DirectUI@@QAA@XZ
203??0RichText@DirectUI@@QAA@XZ
204??0RowLayout@DirectUI@@QAA@ABV01@@Z
205??0RowLayout@DirectUI@@QAA@XZ
206??0ScrollBar@DirectUI@@QAA@ABV01@@Z
207??0ScrollBar@DirectUI@@QAA@XZ
208??0ScrollBarRangeValueProxy@DirectUI@@QAA@ABV01@@Z
209??0ScrollBarRangeValueProxy@DirectUI@@QAA@XZ
210??0ScrollItemProvider@DirectUI@@QAA@XZ
211??0ScrollItemProxy@DirectUI@@QAA@ABV01@@Z
212??0ScrollItemProxy@DirectUI@@QAA@XZ
213??0ScrollProvider@DirectUI@@QAA@XZ
214??0ScrollProxy@DirectUI@@QAA@ABV01@@Z
215??0ScrollProxy@DirectUI@@QAA@XZ
216??0ScrollViewer@DirectUI@@QAA@ABV01@@Z
217??0ScrollViewer@DirectUI@@QAA@XZ
218??0SelectionItemProvider@DirectUI@@QAA@XZ
219??0SelectionItemProxy@DirectUI@@IAA@XZ
220??0SelectionItemProxy@DirectUI@@QAA@ABV01@@Z
221??0SelectionProvider@DirectUI@@QAA@XZ
222??0SelectionProxy@DirectUI@@IAA@XZ
223??0SelectionProxy@DirectUI@@QAA@ABV01@@Z
224??0Selector@DirectUI@@QAA@ABV01@@Z
225??0Selector@DirectUI@@QAA@XZ
226??0SelectorNoDefault@DirectUI@@QAA@ABV01@@Z
227??0SelectorNoDefault@DirectUI@@QAA@XZ
228??0SelectorSelectionItemProxy@DirectUI@@QAA@ABV01@@Z
229??0SelectorSelectionItemProxy@DirectUI@@QAA@XZ
230??0SelectorSelectionProxy@DirectUI@@QAA@ABV01@@Z
231??0SelectorSelectionProxy@DirectUI@@QAA@XZ
232??0ShellBorderLayout@DirectUI@@QAA@ABV01@@Z
233??0ShellBorderLayout@DirectUI@@QAA@XZ
234??0StyleSheet@DirectUI@@QAA@ABV01@@Z
235??0StyleSheet@DirectUI@@QAA@XZ
236??0StyledScrollViewer@DirectUI@@QAA@ABV01@@Z
237??0StyledScrollViewer@DirectUI@@QAA@XZ
238??0Surface@DirectUI@@QAA@ABV01@@Z
239??0Surface@DirectUI@@QAA@XZ
240??0TableItemProvider@DirectUI@@QAA@XZ
241??0TableItemProxy@DirectUI@@QAA@ABV01@@Z
242??0TableItemProxy@DirectUI@@QAA@XZ
243??0TableLayout@DirectUI@@QAA@ABV01@@Z
244??0TableLayout@DirectUI@@QAA@XZ
245??0TableProvider@DirectUI@@QAA@XZ
246??0TableProxy@DirectUI@@QAA@ABV01@@Z
247??0TableProxy@DirectUI@@QAA@XZ
248??0TaskPage@DirectUI@@QAA@ABV01@@Z
249??0TaskPage@DirectUI@@QAA@XZ
250??0TextGraphic@DirectUI@@QAA@ABV01@@Z
251??0TextGraphic@DirectUI@@QAA@XZ
252??0Thumb@DirectUI@@QAA@ABV01@@Z
253??0Thumb@DirectUI@@QAA@XZ
254??0ToggleProvider@DirectUI@@QAA@XZ
255??0ToggleProxy@DirectUI@@QAA@ABV01@@Z
256??0ToggleProxy@DirectUI@@QAA@XZ
257??0TouchButton@DirectUI@@QAA@XZ
258??0TouchCheckBox@DirectUI@@QAA@XZ
259??0TouchCheckBoxGlyph@DirectUI@@QAA@XZ
260??0TouchCommandButton@DirectUI@@QAA@XZ
261??0TouchEdit2@DirectUI@@QAA@XZ
262??0TouchHWNDElement@DirectUI@@QAA@XZ
263??0TouchHyperLink@DirectUI@@QAA@XZ
264??0TouchRepeatButton@DirectUI@@QAA@XZ
265??0TouchScrollBar@DirectUI@@QAA@XZ
266??0TouchSelect@DirectUI@@QAA@XZ
267??0TouchSelectItem@DirectUI@@QAA@XZ
268??0UnknownElement@DirectUI@@QAA@ABV01@@Z
269??0UnknownElement@DirectUI@@QAA@XZ
270??0ValueProvider@DirectUI@@QAA@XZ
271??0ValueProxy@DirectUI@@QAA@ABV01@@Z
272??0ValueProxy@DirectUI@@QAA@XZ
273??0VerticalFlowLayout@DirectUI@@QAA@ABV01@@Z
274??0VerticalFlowLayout@DirectUI@@QAA@XZ
275??0Viewer@DirectUI@@QAA@ABV01@@Z
276??0Viewer@DirectUI@@QAA@XZ
277??0XBaby@DirectUI@@QAA@ABV01@@Z
278??0XBaby@DirectUI@@QAA@XZ
279??0XElement@DirectUI@@QAA@ABV01@@Z
280??0XElement@DirectUI@@QAA@XZ
281??0XHost@DirectUI@@QAA@XZ
282??0XProvider@DirectUI@@QAA@ABV01@@Z
283??0XProvider@DirectUI@@QAA@XZ
284??0XResourceProvider@DirectUI@@QAA@ABV01@@Z
285??0XResourceProvider@DirectUI@@QAA@XZ
286??1?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@UAA@XZ
287??1?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@UAA@XZ
288??1?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@UAA@XZ
289??1?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@UAA@XZ
290??1?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@UAA@XZ
291??1?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@UAA@XZ
292??1?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@UAA@XZ
293??1?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@UAA@XZ
294??1?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@UAA@XZ
295??1?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@UAA@XZ
296??1?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@UAA@XZ
297??1?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@UAA@XZ
298??1?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@UAA@XZ
299??1?$SafeArrayAccessor@H@DirectUI@@QAA@XZ
300??1AccessibleButton@DirectUI@@UAA@XZ
301??1AnimationStrip@DirectUI@@UAA@XZ
302??1AutoButton@DirectUI@@UAA@XZ
303??1AutoLock@DirectUI@@QAA@XZ
304??1AutoThread@DirectUI@@QAA@XZ
305??1AutoVariant@DirectUI@@QAA@XZ
306??1BaseScrollViewer@DirectUI@@UAA@XZ
307??1Bind@DirectUI@@UAA@XZ
308??1BorderLayout@DirectUI@@UAA@XZ
309??1Browser@DirectUI@@UAA@XZ
310??1Button@DirectUI@@UAA@XZ
311??1CCAVI@DirectUI@@UAA@XZ
312??1CCBase@DirectUI@@UAA@XZ
313??1CCBaseCheckRadioButton@DirectUI@@UAA@XZ
314??1CCBaseScrollBar@DirectUI@@UAA@XZ
315??1CCCheckBox@DirectUI@@UAA@XZ
316??1CCCommandLink@DirectUI@@UAA@XZ
317??1CCHScrollBar@DirectUI@@UAA@XZ
318??1CCListBox@DirectUI@@UAA@XZ
319??1CCListView@DirectUI@@UAA@XZ
320??1CCProgressBar@DirectUI@@UAA@XZ
321??1CCPushButton@DirectUI@@UAA@XZ
322??1CCRadioButton@DirectUI@@UAA@XZ
323??1CCSysLink@DirectUI@@UAA@XZ
324??1CCTrackBar@DirectUI@@UAA@XZ
325??1CCTreeView@DirectUI@@UAA@XZ
326??1CCVScrollBar@DirectUI@@UAA@XZ
327??1CallstackTracker@DirectUI@@QAA@XZ
328??1CheckBoxGlyph@DirectUI@@UAA@XZ
329??1ClassInfoBase@DirectUI@@UAA@XZ
330??1Clipper@DirectUI@@UAA@XZ
331??1Combobox@DirectUI@@UAA@XZ
332??1CritSecLock@DirectUI@@QAA@XZ
333??1DCSurface@DirectUI@@UAA@XZ
334??1DUIFactory@DirectUI@@QAA@XZ
335??1DUIXmlParser@DirectUI@@UAA@XZ
336??1DialogElement@DirectUI@@UAA@XZ
337??1DuiAccessible@DirectUI@@UAA@XZ
338??1Edit@DirectUI@@UAA@XZ
339??1Element@DirectUI@@UAA@XZ
340??1ElementProvider@DirectUI@@UAA@XZ
341??1ElementWithHWND@DirectUI@@UAA@XZ
342??1ExpandCollapseProvider@DirectUI@@UAA@XZ
343??1Expandable@DirectUI@@UAA@XZ
344??1Expando@DirectUI@@UAA@XZ
345??1ExpandoButtonGlyph@DirectUI@@UAA@XZ
346??1FillLayout@DirectUI@@UAA@XZ
347??1FlowLayout@DirectUI@@UAA@XZ
348??1FontCheckOut@DirectUI@@QAA@XZ
349??1GridItemProvider@DirectUI@@UAA@XZ
350??1GridLayout@DirectUI@@UAA@XZ
351??1GridProvider@DirectUI@@UAA@XZ
352??1HWNDElement@DirectUI@@UAA@XZ
353??1HWNDElementAccessible@DirectUI@@UAA@XZ
354??1HWNDElementProvider@DirectUI@@UAA@XZ
355??1HWNDHost@DirectUI@@UAA@XZ
356??1HWNDHostAccessible@DirectUI@@UAA@XZ
357??1HWNDHostClientAccessible@DirectUI@@UAA@XZ
358??1IDataEngine@DirectUI@@UAA@XZ
359??1IDataEntry@DirectUI@@UAA@XZ
360??1InvokeHelper@DirectUI@@UAA@XZ
361??1InvokeProvider@DirectUI@@UAA@XZ
362??1ItemList@DirectUI@@UAA@XZ
363??1Layout@DirectUI@@UAA@XZ
364??1LinkedList@DirectUI@@QAA@XZ
365??1Macro@DirectUI@@UAA@XZ
366??1ModernProgressBar@DirectUI@@UAA@XZ
367??1ModernProgressRing@DirectUI@@UAA@XZ
368??1Movie@DirectUI@@UAA@XZ
369??1NativeHWNDHost@DirectUI@@UAA@XZ
370??1Navigator@DirectUI@@UAA@XZ
371??1NineGridLayout@DirectUI@@UAA@XZ
372??1PText@DirectUI@@UAA@XZ
373??1Page@DirectUI@@UAA@XZ
374??1Pages@DirectUI@@UAA@XZ
375??1Progress@DirectUI@@UAA@XZ
376??1Proxy@DirectUI@@UAA@XZ
377??1PushButton@DirectUI@@UAA@XZ
378??1RadioButtonGlyph@DirectUI@@UAA@XZ
379??1RangeValueProvider@DirectUI@@UAA@XZ
380??1RefPointElement@DirectUI@@UAA@XZ
381??1RefcountBase@DirectUI@@UAA@XZ
382??1RepeatButton@DirectUI@@UAA@XZ
383??1Repeater@DirectUI@@UAA@XZ
384??1ResourceModuleHandles@DirectUI@@QAA@XZ
385??1RichText@DirectUI@@UAA@XZ
386??1RowLayout@DirectUI@@UAA@XZ
387??1ScrollBar@DirectUI@@UAA@XZ
388??1ScrollItemProvider@DirectUI@@UAA@XZ
389??1ScrollProvider@DirectUI@@UAA@XZ
390??1ScrollViewer@DirectUI@@UAA@XZ
391??1SelectionItemProvider@DirectUI@@UAA@XZ
392??1SelectionProvider@DirectUI@@UAA@XZ
393??1Selector@DirectUI@@UAA@XZ
394??1SelectorNoDefault@DirectUI@@UAA@XZ
395??1ShellBorderLayout@DirectUI@@UAA@XZ
396??1StyledScrollViewer@DirectUI@@UAA@XZ
397??1Surface@DirectUI@@UAA@XZ
398??1TableItemProvider@DirectUI@@UAA@XZ
399??1TableLayout@DirectUI@@UAA@XZ
400??1TableProvider@DirectUI@@UAA@XZ
401??1TaskPage@DirectUI@@UAA@XZ
402??1TextGraphic@DirectUI@@UAA@XZ
403??1Thumb@DirectUI@@UAA@XZ
404??1ToggleProvider@DirectUI@@UAA@XZ
405??1TouchButton@DirectUI@@UAA@XZ
406??1TouchCheckBox@DirectUI@@UAA@XZ
407??1TouchCheckBoxGlyph@DirectUI@@UAA@XZ
408??1TouchHWNDElement@DirectUI@@UAA@XZ
409??1TouchHyperLink@DirectUI@@UAA@XZ
410??1TouchScrollBar@DirectUI@@UAA@XZ
411??1TouchSelect@DirectUI@@UAA@XZ
412??1TouchSelectItem@DirectUI@@UAA@XZ
413??1UnknownElement@DirectUI@@UAA@XZ
414??1ValueProvider@DirectUI@@UAA@XZ
415??1VerticalFlowLayout@DirectUI@@UAA@XZ
416??1Viewer@DirectUI@@UAA@XZ
417??1XBaby@DirectUI@@UAA@XZ
418??1XElement@DirectUI@@UAA@XZ
419??1XHost@DirectUI@@QAA@XZ
420??1XProvider@DirectUI@@UAA@XZ
421??4?$FunctionDefinition@H@DUIXmlParser@DirectUI@@QAAAAU012@ABU012@@Z
422??4?$FunctionDefinition@K@DUIXmlParser@DirectUI@@QAAAAU012@ABU012@@Z
423??4?$FunctionDefinition@PAVValue@DirectUI@@@DUIXmlParser@DirectUI@@QAAAAU012@ABU012@@Z
424??4?$FunctionDefinition@UScaledRECT@DirectUI@@@DUIXmlParser@DirectUI@@QAAAAU012@ABU012@@Z
425??4ACCESSIBLEROLE@AccessibleButton@DirectUI@@QAAAAU012@ABU012@@Z
426??4AccessibleButton@DirectUI@@QAAAAV01@ABV01@@Z
427??4AnimationStrip@DirectUI@@QAAAAV01@ABV01@@Z
428??4AutoButton@DirectUI@@QAAAAV01@ABV01@@Z
429??4AutoLock@DirectUI@@QAAAAV01@ABV01@@Z
430??4AutoThread@DirectUI@@QAAAAV01@ABV01@@Z
431??4AutoVariant@DirectUI@@QAAAAV01@ABV01@@Z
432??4BaseScrollBar@DirectUI@@QAAAAV01@ABV01@@Z
433??4BaseScrollViewer@DirectUI@@QAAAAV01@ABV01@@Z
434??4Bind@DirectUI@@QAAAAV01@ABV01@@Z
435??4BorderLayout@DirectUI@@QAAAAV01@ABV01@@Z
436??4Browser@DirectUI@@QAAAAV01@ABV01@@Z
437??4BrowserSelectionProxy@DirectUI@@QAAAAV01@ABV01@@Z
438??4Button@DirectUI@@QAAAAV01@ABV01@@Z
439??4CCAVI@DirectUI@@QAAAAV01@ABV01@@Z
440??4CCBase@DirectUI@@QAAAAV01@ABV01@@Z
441??4CCBaseCheckRadioButton@DirectUI@@QAAAAV01@ABV01@@Z
442??4CCBaseScrollBar@DirectUI@@QAAAAV01@ABV01@@Z
443??4CCCheckBox@DirectUI@@QAAAAV01@ABV01@@Z
444??4CCCommandLink@DirectUI@@QAAAAV01@ABV01@@Z
445??4CCHScrollBar@DirectUI@@QAAAAV01@ABV01@@Z
446??4CCListBox@DirectUI@@QAAAAV01@ABV01@@Z
447??4CCListView@DirectUI@@QAAAAV01@ABV01@@Z
448??4CCProgressBar@DirectUI@@QAAAAV01@ABV01@@Z
449??4CCPushButton@DirectUI@@QAAAAV01@ABV01@@Z
450??4CCRadioButton@DirectUI@@QAAAAV01@ABV01@@Z
451??4CCSysLink@DirectUI@@QAAAAV01@ABV01@@Z
452??4CCTrackBar@DirectUI@@QAAAAV01@ABV01@@Z
453??4CCTreeView@DirectUI@@QAAAAV01@ABV01@@Z
454??4CCVScrollBar@DirectUI@@QAAAAV01@ABV01@@Z
455??4CallstackTracker@DirectUI@@QAAAAV01@ABV01@@Z
456??4CheckBoxGlyph@DirectUI@@QAAAAV01@ABV01@@Z
457??4ClassInfoBase@DirectUI@@QAAAAV01@ABV01@@Z
458??4Clipper@DirectUI@@QAAAAV01@ABV01@@Z
459??4Combobox@DirectUI@@QAAAAV01@ABV01@@Z
460??4CritSecLock@DirectUI@@QAAAAV01@ABV01@@Z
461??4DCSurface@DirectUI@@QAAAAV01@ABV01@@Z
462??4DUIFactory@DirectUI@@QAAAAV01@ABV01@@Z
463??4DUIXmlParser@DirectUI@@QAAAAV01@ABV01@@Z
464??4DialogElement@DirectUI@@QAAAAV01@ABV01@@Z
465??4DialogElementCore@DirectUI@@QAAAAV01@ABV01@@Z
466??4DuiNavigate@DirectUI@@QAAAAV01@ABV01@@Z
467??4Edit@DirectUI@@QAAAAV01@ABV01@@Z
468??4Element@DirectUI@@QAAAAV01@ABV01@@Z
469??4ElementProviderManager@DirectUI@@QAAAAV01@ABV01@@Z
470??4ElementProxy@DirectUI@@QAAAAV01@ABV01@@Z
471??4ElementWithHWND@DirectUI@@QAAAAV01@ABV01@@Z
472??4EventManager@DirectUI@@QAAAAV01@ABV01@@Z
473??4ExpandCollapseProxy@DirectUI@@QAAAAV01@ABV01@@Z
474??4Expandable@DirectUI@@QAAAAV01@ABV01@@Z
475??4Expando@DirectUI@@QAAAAV01@ABV01@@Z
476??4ExpandoButtonGlyph@DirectUI@@QAAAAV01@ABV01@@Z
477??4Expression@DirectUI@@QAAAAV01@ABV01@@Z
478??4FillLayout@DirectUI@@QAAAAV01@ABV01@@Z
479??4FlowLayout@DirectUI@@QAAAAV01@ABV01@@Z
480??4FontCache@DirectUI@@QAAAAV01@ABV01@@Z
481??4FontCheckOut@DirectUI@@QAAAAV01@ABV01@@Z
482??4GridItemProxy@DirectUI@@QAAAAV01@ABV01@@Z
483??4GridLayout@DirectUI@@QAAAAV01@ABV01@@Z
484??4GridProxy@DirectUI@@QAAAAV01@ABV01@@Z
485??4HWNDElement@DirectUI@@QAAAAV01@ABV01@@Z
486??4HWNDElementProxy@DirectUI@@QAAAAV01@ABV01@@Z
487??4HWNDHost@DirectUI@@QAAAAV01@ABV01@@Z
488??4IDataEngine@DirectUI@@QAAAAU01@ABU01@@Z
489??4IDataEntry@DirectUI@@QAAAAU01@ABU01@@Z
490??4IProvider@DirectUI@@QAAAAV01@ABV01@@Z
491??4ISBLeak@DirectUI@@QAAAAU01@ABU01@@Z
492??4IXElementCP@DirectUI@@QAAAAV01@ABV01@@Z
493??4IXProviderCP@DirectUI@@QAAAAV01@ABV01@@Z
494??4InvokeManager@DirectUI@@QAAAAV01@ABV01@@Z
495??4InvokeProxy@DirectUI@@QAAAAV01@ABV01@@Z
496??4Layout@DirectUI@@QAAAAV01@ABV01@@Z
497??4LinkedList@DirectUI@@QAAAAV01@ABV01@@Z
498??4LinkedListNode@DirectUI@@QAAAAV01@ABV01@@Z
499??4Macro@DirectUI@@QAAAAV01@ABV01@@Z
500??4ModernProgressBarRangeValueProxy@DirectUI@@QAAAAV01@ABV01@@Z
501??4Movie@DirectUI@@QAAAAV01@ABV01@@Z
502??4NativeHWNDHost@DirectUI@@QAAAAV01@ABV01@@Z
503??4NavReference@DirectUI@@QAAAAU01@ABU01@@Z
504??4NavScoring@DirectUI@@QAAAAU01@ABU01@@Z
505??4Navigator@DirectUI@@QAAAAV01@ABV01@@Z
506??4NavigatorSelectionItemProxy@DirectUI@@QAAAAV01@ABV01@@Z
507??4NineGridLayout@DirectUI@@QAAAAV01@ABV01@@Z
508??4PText@DirectUI@@QAAAAV01@ABV01@@Z
509??4PVLAnimation@DirectUI@@QAAAAV01@ABV01@@Z
510??4Page@DirectUI@@QAAAAV01@ABV01@@Z
511??4Pages@DirectUI@@QAAAAV01@ABV01@@Z
512??4Progress@DirectUI@@QAAAAV01@ABV01@@Z
513??4ProgressRangeValueProxy@DirectUI@@QAAAAV01@ABV01@@Z
514??4ProviderProxy@DirectUI@@QAAAAV01@ABV01@@Z
515??4Proxy@DirectUI@@QAAAAV01@ABV01@@Z
516??4PushButton@DirectUI@@QAAAAV01@ABV01@@Z
517??4RadioButtonGlyph@DirectUI@@QAAAAV01@ABV01@@Z
518??4RangeValueProxy@DirectUI@@QAAAAV01@ABV01@@Z
519??4RefPointElement@DirectUI@@QAAAAV01@ABV01@@Z
520??4RepeatButton@DirectUI@@QAAAAV01@ABV01@@Z
521??4Repeater@DirectUI@@QAAAAV01@ABV01@@Z
522??4ResourceModuleHandles@DirectUI@@QAAAAV01@ABV01@@Z
523??4RowLayout@DirectUI@@QAAAAV01@ABV01@@Z
524??4Schema@DirectUI@@QAAAAV01@ABV01@@Z
525??4ScrollBar@DirectUI@@QAAAAV01@ABV01@@Z
526??4ScrollBarRangeValueProxy@DirectUI@@QAAAAV01@ABV01@@Z
527??4ScrollItemProxy@DirectUI@@QAAAAV01@ABV01@@Z
528??4ScrollProxy@DirectUI@@QAAAAV01@ABV01@@Z
529??4ScrollViewer@DirectUI@@QAAAAV01@ABV01@@Z
530??4SelectionItemProxy@DirectUI@@QAAAAV01@ABV01@@Z
531??4SelectionProxy@DirectUI@@QAAAAV01@ABV01@@Z
532??4Selector@DirectUI@@QAAAAV01@ABV01@@Z
533??4SelectorNoDefault@DirectUI@@QAAAAV01@ABV01@@Z
534??4SelectorSelectionItemProxy@DirectUI@@QAAAAV01@ABV01@@Z
535??4SelectorSelectionProxy@DirectUI@@QAAAAV01@ABV01@@Z
536??4ShellBorderLayout@DirectUI@@QAAAAV01@ABV01@@Z
537??4StyleSheet@DirectUI@@QAAAAV01@ABV01@@Z
538??4StyledScrollViewer@DirectUI@@QAAAAV01@ABV01@@Z
539??4Surface@DirectUI@@QAAAAV01@ABV01@@Z
540??4TableItemProxy@DirectUI@@QAAAAV01@ABV01@@Z
541??4TableLayout@DirectUI@@QAAAAV01@ABV01@@Z
542??4TableProxy@DirectUI@@QAAAAV01@ABV01@@Z
543??4TaskPage@DirectUI@@QAAAAV01@ABV01@@Z
544??4TextGraphic@DirectUI@@QAAAAV01@ABV01@@Z
545??4Thumb@DirectUI@@QAAAAV01@ABV01@@Z
546??4ToggleProxy@DirectUI@@QAAAAV01@ABV01@@Z
547??4UnknownElement@DirectUI@@QAAAAV01@ABV01@@Z
548??4Value@DirectUI@@QAAAAV01@ABV01@@Z
549??4ValueProxy@DirectUI@@QAAAAV01@ABV01@@Z
550??4VerticalFlowLayout@DirectUI@@QAAAAV01@ABV01@@Z
551??4Viewer@DirectUI@@QAAAAV01@ABV01@@Z
552??4XBaby@DirectUI@@QAAAAV01@ABV01@@Z
553??4XElement@DirectUI@@QAAAAV01@ABV01@@Z
554??4XHost@DirectUI@@QAAAAV01@ABV01@@Z
555??4XProvider@DirectUI@@QAAAAV01@ABV01@@Z
556??4XResourceProvider@DirectUI@@QAAAAV01@ABV01@@Z
557??B?$SafeArrayAccessor@H@DirectUI@@QAAPAHXZ
558??BTaskPage@DirectUI@@QAAPAU_PSP@@XZ
559??_7?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@6BIProvider@1@@ DATA
560??_7?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@6BRefcountBase@1@@ DATA
561??_7?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@6BIProvider@1@@ DATA
562??_7?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@6BRefcountBase@1@@ DATA
563??_7?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@6BIProvider@1@@ DATA
564??_7?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@6BRefcountBase@1@@ DATA
565??_7?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@6BIProvider@1@@ DATA
566??_7?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@6BRefcountBase@1@@ DATA
567??_7?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@6BIProvider@1@@ DATA
568??_7?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@6BRefcountBase@1@@ DATA
569??_7?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@6BIProvider@1@@ DATA
570??_7?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@6BRefcountBase@1@@ DATA
571??_7?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@6BIProvider@1@@ DATA
572??_7?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@6BRefcountBase@1@@ DATA
573??_7?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@6BIProvider@1@@ DATA
574??_7?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@6BRefcountBase@1@@ DATA
575??_7?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@6BIProvider@1@@ DATA
576??_7?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@6BRefcountBase@1@@ DATA
577??_7?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@6BIProvider@1@@ DATA
578??_7?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@6BRefcountBase@1@@ DATA
579??_7?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@6BIProvider@1@@ DATA
580??_7?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@6BRefcountBase@1@@ DATA
581??_7?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@6BIProvider@1@@ DATA
582??_7?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@6BRefcountBase@1@@ DATA
583??_7?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@6BIProvider@1@@ DATA
584??_7?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@6BRefcountBase@1@@ DATA
585??_7AccessibleButton@DirectUI@@6B@ DATA
586??_7AnimationStrip@DirectUI@@6B@ DATA
587??_7AutoButton@DirectUI@@6B@ DATA
588??_7BaseScrollBar@DirectUI@@6B@ DATA
589??_7BaseScrollViewer@DirectUI@@6BElement@1@@ DATA
590??_7BaseScrollViewer@DirectUI@@6BIElementListener@1@@ DATA
591??_7Bind@DirectUI@@6B@ DATA
592??_7BorderLayout@DirectUI@@6B@ DATA
593??_7Browser@DirectUI@@6B@ DATA
594??_7BrowserSelectionProxy@DirectUI@@6B@ DATA
595??_7Button@DirectUI@@6B@ DATA
596??_7CCAVI@DirectUI@@6B@ DATA
597??_7CCBase@DirectUI@@6B@ DATA
598??_7CCBaseCheckRadioButton@DirectUI@@6B@ DATA
599??_7CCBaseScrollBar@DirectUI@@6BBaseScrollBar@1@@ DATA
600??_7CCBaseScrollBar@DirectUI@@6BCCBase@1@@ DATA
601??_7CCCheckBox@DirectUI@@6B@ DATA
602??_7CCCommandLink@DirectUI@@6B@ DATA
603??_7CCHScrollBar@DirectUI@@6BBaseScrollBar@1@@ DATA
604??_7CCHScrollBar@DirectUI@@6BCCBase@1@@ DATA
605??_7CCListBox@DirectUI@@6B@ DATA
606??_7CCListView@DirectUI@@6B@ DATA
607??_7CCProgressBar@DirectUI@@6B@ DATA
608??_7CCPushButton@DirectUI@@6B@ DATA
609??_7CCRadioButton@DirectUI@@6B@ DATA
610??_7CCSysLink@DirectUI@@6B@ DATA
611??_7CCTrackBar@DirectUI@@6B@ DATA
612??_7CCTreeView@DirectUI@@6B@ DATA
613??_7CCVScrollBar@DirectUI@@6BBaseScrollBar@1@@ DATA
614??_7CCVScrollBar@DirectUI@@6BCCBase@1@@ DATA
615??_7CheckBoxGlyph@DirectUI@@6B@ DATA
616??_7ClassInfoBase@DirectUI@@6B@ DATA
617??_7Clipper@DirectUI@@6B@ DATA
618??_7Combobox@DirectUI@@6B@ DATA
619??_7DCSurface@DirectUI@@6B@ DATA
620??_7DUIXmlParser@DirectUI@@6B@ DATA
621??_7DialogElement@DirectUI@@6BHWNDElement@1@@ DATA
622??_7DialogElement@DirectUI@@6BIDialogElement@1@@ DATA
623??_7DialogElement@DirectUI@@6BIElementListener@1@@ DATA
624??_7DuiAccessible@DirectUI@@6BIAccIdentity@@@ DATA
625??_7DuiAccessible@DirectUI@@6BIAccessible@@@ DATA
626??_7DuiAccessible@DirectUI@@6BIEnumVARIANT@@@ DATA
627??_7DuiAccessible@DirectUI@@6BIOleWindow@@@ DATA
628??_7DuiAccessible@DirectUI@@6BIServiceProvider@@@ DATA
629??_7Edit@DirectUI@@6B@ DATA
630??_7Element@DirectUI@@6B@ DATA
631??_7ElementProvider@DirectUI@@6BIRawElementProviderAdviseEvents@@@ DATA
632??_7ElementProvider@DirectUI@@6BIRawElementProviderFragment@@@ DATA
633??_7ElementProvider@DirectUI@@6BIRawElementProviderSimple@@@ DATA
634??_7ElementProvider@DirectUI@@6BRefcountBase@1@@ DATA
635??_7ElementProxy@DirectUI@@6B@ DATA
636??_7ElementWithHWND@DirectUI@@6B@ DATA
637??_7ExpandCollapseProvider@DirectUI@@6B@ DATA
638??_7ExpandCollapseProvider@DirectUI@@6BIProvider@1@@ DATA
639??_7ExpandCollapseProvider@DirectUI@@6BRefcountBase@1@@ DATA
640??_7ExpandCollapseProxy@DirectUI@@6B@ DATA
641??_7Expandable@DirectUI@@6B@ DATA
642??_7Expando@DirectUI@@6B@ DATA
643??_7ExpandoButtonGlyph@DirectUI@@6B@ DATA
644??_7FillLayout@DirectUI@@6B@ DATA
645??_7FlowLayout@DirectUI@@6B@ DATA
646??_7FontCache@DirectUI@@6B@ DATA
647??_7GridItemProvider@DirectUI@@6B@ DATA
648??_7GridItemProvider@DirectUI@@6BIProvider@1@@ DATA
649??_7GridItemProvider@DirectUI@@6BRefcountBase@1@@ DATA
650??_7GridItemProxy@DirectUI@@6B@ DATA
651??_7GridLayout@DirectUI@@6B@ DATA
652??_7GridProvider@DirectUI@@6B@ DATA
653??_7GridProvider@DirectUI@@6BIProvider@1@@ DATA
654??_7GridProvider@DirectUI@@6BRefcountBase@1@@ DATA
655??_7GridProxy@DirectUI@@6B@ DATA
656??_7HWNDElement@DirectUI@@6B@ DATA
657??_7HWNDElementAccessible@DirectUI@@6BIAccIdentity@@@ DATA
658??_7HWNDElementAccessible@DirectUI@@6BIAccessible@@@ DATA
659??_7HWNDElementAccessible@DirectUI@@6BIEnumVARIANT@@@ DATA
660??_7HWNDElementAccessible@DirectUI@@6BIOleWindow@@@ DATA
661??_7HWNDElementAccessible@DirectUI@@6BIServiceProvider@@@ DATA
662??_7HWNDElementProvider@DirectUI@@6B@ DATA
663??_7HWNDElementProvider@DirectUI@@6BIRawElementProviderAdviseEvents@@@ DATA
664??_7HWNDElementProvider@DirectUI@@6BIRawElementProviderFragment@@@ DATA
665??_7HWNDElementProvider@DirectUI@@6BIRawElementProviderSimple@@@ DATA
666??_7HWNDElementProvider@DirectUI@@6BRefcountBase@1@@ DATA
667??_7HWNDElementProxy@DirectUI@@6B@ DATA
668??_7HWNDHost@DirectUI@@6B@ DATA
669??_7HWNDHostAccessible@DirectUI@@6BIAccIdentity@@@ DATA
670??_7HWNDHostAccessible@DirectUI@@6BIAccessible@@@ DATA
671??_7HWNDHostAccessible@DirectUI@@6BIEnumVARIANT@@@ DATA
672??_7HWNDHostAccessible@DirectUI@@6BIOleWindow@@@ DATA
673??_7HWNDHostAccessible@DirectUI@@6BIServiceProvider@@@ DATA
674??_7HWNDHostClientAccessible@DirectUI@@6BIAccIdentity@@@ DATA
675??_7HWNDHostClientAccessible@DirectUI@@6BIAccessible@@@ DATA
676??_7HWNDHostClientAccessible@DirectUI@@6BIEnumVARIANT@@@ DATA
677??_7HWNDHostClientAccessible@DirectUI@@6BIOleWindow@@@ DATA
678??_7HWNDHostClientAccessible@DirectUI@@6BIServiceProvider@@@ DATA
679??_7IDataEngine@DirectUI@@6B@ DATA
680??_7IDataEntry@DirectUI@@6B@ DATA
681??_7IProvider@DirectUI@@6B@ DATA
682??_7ISBLeak@DirectUI@@6B@ DATA
683??_7IXElementCP@DirectUI@@6B@ DATA
684??_7IXProviderCP@DirectUI@@6B@ DATA
685??_7InvokeHelper@DirectUI@@6B@ DATA
686??_7InvokeProvider@DirectUI@@6B@ DATA
687??_7InvokeProvider@DirectUI@@6BIProvider@1@@ DATA
688??_7InvokeProvider@DirectUI@@6BRefcountBase@1@@ DATA
689??_7InvokeProxy@DirectUI@@6B@ DATA
690??_7Layout@DirectUI@@6B@ DATA
691??_7Macro@DirectUI@@6B@ DATA
692??_7ModernProgressBarRangeValueProxy@DirectUI@@6B@ DATA
693??_7Movie@DirectUI@@6B@ DATA
694??_7NativeHWNDHost@DirectUI@@6B@ DATA
695??_7Navigator@DirectUI@@6B@ DATA
696??_7NavigatorSelectionItemProxy@DirectUI@@6B@ DATA
697??_7NineGridLayout@DirectUI@@6B@ DATA
698??_7PText@DirectUI@@6B@ DATA
699??_7Page@DirectUI@@6B@ DATA
700??_7Pages@DirectUI@@6B@ DATA
701??_7Progress@DirectUI@@6B@ DATA
702??_7ProgressRangeValueProxy@DirectUI@@6B@ DATA
703??_7ProviderProxy@DirectUI@@6B@ DATA
704??_7Proxy@DirectUI@@6B@ DATA
705??_7PushButton@DirectUI@@6B@ DATA
706??_7RadioButtonGlyph@DirectUI@@6B@ DATA
707??_7RangeValueProvider@DirectUI@@6B@ DATA
708??_7RangeValueProvider@DirectUI@@6BIProvider@1@@ DATA
709??_7RangeValueProvider@DirectUI@@6BRefcountBase@1@@ DATA
710??_7RangeValueProxy@DirectUI@@6B@ DATA
711??_7RefPointElement@DirectUI@@6B@ DATA
712??_7RefcountBase@DirectUI@@6B@ DATA
713??_7RepeatButton@DirectUI@@6B@ DATA
714??_7Repeater@DirectUI@@6B@ DATA
715??_7RowLayout@DirectUI@@6B@ DATA
716??_7ScrollBar@DirectUI@@6BBaseScrollBar@1@@ DATA
717??_7ScrollBar@DirectUI@@6BElement@1@@ DATA
718??_7ScrollBarRangeValueProxy@DirectUI@@6B@ DATA
719??_7ScrollItemProvider@DirectUI@@6B@ DATA
720??_7ScrollItemProvider@DirectUI@@6BIProvider@1@@ DATA
721??_7ScrollItemProvider@DirectUI@@6BRefcountBase@1@@ DATA
722??_7ScrollItemProxy@DirectUI@@6B@ DATA
723??_7ScrollProvider@DirectUI@@6B@ DATA
724??_7ScrollProvider@DirectUI@@6BIProvider@1@@ DATA
725??_7ScrollProvider@DirectUI@@6BRefcountBase@1@@ DATA
726??_7ScrollProxy@DirectUI@@6B@ DATA
727??_7ScrollViewer@DirectUI@@6BElement@1@@ DATA
728??_7ScrollViewer@DirectUI@@6BIElementListener@1@@ DATA
729??_7SelectionItemProvider@DirectUI@@6B@ DATA
730??_7SelectionItemProvider@DirectUI@@6BIProvider@1@@ DATA
731??_7SelectionItemProvider@DirectUI@@6BRefcountBase@1@@ DATA
732??_7SelectionItemProxy@DirectUI@@6B@ DATA
733??_7SelectionProvider@DirectUI@@6B@ DATA
734??_7SelectionProvider@DirectUI@@6BIProvider@1@@ DATA
735??_7SelectionProvider@DirectUI@@6BRefcountBase@1@@ DATA
736??_7SelectionProxy@DirectUI@@6B@ DATA
737??_7Selector@DirectUI@@6B@ DATA
738??_7SelectorNoDefault@DirectUI@@6B@ DATA
739??_7SelectorSelectionItemProxy@DirectUI@@6B@ DATA
740??_7SelectorSelectionProxy@DirectUI@@6B@ DATA
741??_7ShellBorderLayout@DirectUI@@6B@ DATA
742??_7StyleSheet@DirectUI@@6B@ DATA
743??_7StyledScrollViewer@DirectUI@@6BElement@1@@ DATA
744??_7StyledScrollViewer@DirectUI@@6BIElementListener@1@@ DATA
745??_7Surface@DirectUI@@6B@ DATA
746??_7TableItemProvider@DirectUI@@6B@ DATA
747??_7TableItemProvider@DirectUI@@6BIProvider@1@@ DATA
748??_7TableItemProvider@DirectUI@@6BRefcountBase@1@@ DATA
749??_7TableItemProxy@DirectUI@@6B@ DATA
750??_7TableLayout@DirectUI@@6B@ DATA
751??_7TableProvider@DirectUI@@6B@ DATA
752??_7TableProvider@DirectUI@@6BIProvider@1@@ DATA
753??_7TableProvider@DirectUI@@6BRefcountBase@1@@ DATA
754??_7TableProxy@DirectUI@@6B@ DATA
755??_7TaskPage@DirectUI@@6BIElementListener@1@@ DATA
756??_7TaskPage@DirectUI@@6BIXProviderCP@1@@ DATA
757??_7TextGraphic@DirectUI@@6B@ DATA
758??_7Thumb@DirectUI@@6B@ DATA
759??_7ToggleProvider@DirectUI@@6B@ DATA
760??_7ToggleProvider@DirectUI@@6BIProvider@1@@ DATA
761??_7ToggleProvider@DirectUI@@6BRefcountBase@1@@ DATA
762??_7ToggleProxy@DirectUI@@6B@ DATA
763??_7UnknownElement@DirectUI@@6B@ DATA
764??_7ValueProvider@DirectUI@@6B@ DATA
765??_7ValueProvider@DirectUI@@6BIProvider@1@@ DATA
766??_7ValueProvider@DirectUI@@6BRefcountBase@1@@ DATA
767??_7ValueProxy@DirectUI@@6B@ DATA
768??_7VerticalFlowLayout@DirectUI@@6B@ DATA
769??_7Viewer@DirectUI@@6B@ DATA
770??_7XBaby@DirectUI@@6B@ DATA
771??_7XBaby@DirectUI@@6BHWNDElement@1@@ DATA
772??_7XBaby@DirectUI@@6BIDialogElement@1@@ DATA
773??_7XBaby@DirectUI@@6BIElementListener@1@@ DATA
774??_7XElement@DirectUI@@6BHWNDHost@1@@ DATA
775??_7XElement@DirectUI@@6BIXElementCP@1@@ DATA
776??_7XProvider@DirectUI@@6B@ DATA
777??_7XResourceProvider@DirectUI@@6B@ DATA
778??_FCCBase@DirectUI@@QAAXXZ
779??_FCCBaseScrollBar@DirectUI@@QAAXXZ
780??_FCCCheckBox@DirectUI@@QAAXXZ
781??_FCCCommandLink@DirectUI@@QAAXXZ
782??_FCCPushButton@DirectUI@@QAAXXZ
783??_FCCTreeView@DirectUI@@QAAXXZ
784?AbsorbsShortcutProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
785?AccDefActionProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
786?AccDescProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
787?AccHelpProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
788?AccItemStatusProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
789?AccItemTypeProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
790?AccNameProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
791?AccNavigate@DuiAccessible@DirectUI@@SAJPAVElement@2@JPAPAV32@@Z
792?AccRoleProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
793?AccStateProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
794?AccValueProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
795?AcceleratorKeyProperty@Schema@DirectUI@@2HA DATA
796?Access@?$SafeArrayAccessor@H@DirectUI@@QAAJPAUtagSAFEARRAY@@G@Z
797?AccessKeyProperty@Schema@DirectUI@@2HA DATA
798?AccessibleProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
799?ActionInitiated@Navigator@DirectUI@@SA?AVUID@@XZ
800?ActivateTooltip@Element@DirectUI@@MAAXPAV12@K@Z
801?ActivateTooltip@HWNDElement@DirectUI@@UAAXPAVElement@2@K@Z
802?ActivateTooltip@TouchHWNDElement@DirectUI@@UAAXPAVElement@2@K@Z
803?ActiveProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
804?ActiveStateChanged@TouchScrollBar@DirectUI@@SA?AVUID@@XZ
805?ActualReferencePointProp@RefPointElement@DirectUI@@SAPBUPropertyInfo@2@XZ
806?Add@BaseScrollViewer@DirectUI@@UAAJPAPAVElement@2@I@Z
807?Add@Element@DirectUI@@QAAJPAV12@@Z
808?Add@Element@DirectUI@@QAAJPAV12@P6AHPBX1@Z@Z
809?Add@Element@DirectUI@@UAAJPAPAV12@I@Z
810?Add@ElementProviderManager@DirectUI@@SAJPAVElementProvider@2@@Z
811?Add@Expando@DirectUI@@UAAJPAPAVElement@2@I@Z
812?Add@LinkedList@DirectUI@@QAAXPAVLinkedListNode@2@@Z
813?Add@Macro@DirectUI@@UAAJPAPAVElement@2@I@Z
814?Add@Pages@DirectUI@@UAAJPAPAVElement@2@I@Z
815?Add@TouchEdit2@DirectUI@@UAAJPAPAVElement@2@I@Z
816?Add@TouchSelect@DirectUI@@UAAJPAPAVElement@2@I@Z
817?AddBehavior@Element@DirectUI@@UAAJPAUIDuiBehavior@@@Z
818?AddChild@ClassInfoBase@DirectUI@@UAAXXZ
819?AddChildren@ScrollViewer@DirectUI@@MAAJXZ
820?AddChildren@StyledScrollViewer@DirectUI@@MAAJXZ
821?AddElement@TouchSelect@DirectUI@@QAAJPAVElement@2@PBG@Z
822?AddListener@Element@DirectUI@@QAAJPAUIElementListener@2@@Z
823?AddRectangleChange@EventManager@DirectUI@@CAJPAVElement@2@_N1@Z
824?AddRef@ClassInfoBase@DirectUI@@UAAXXZ
825?AddRef@DuiAccessible@DirectUI@@UAAKXZ
826?AddRef@Element@DirectUI@@QAAKXZ
827?AddRef@ElementProvider@DirectUI@@UAAKXZ
828?AddRef@ExpandCollapseProvider@DirectUI@@UAAKXZ
829?AddRef@GridItemProvider@DirectUI@@UAAKXZ
830?AddRef@GridProvider@DirectUI@@UAAKXZ
831?AddRef@HWNDElementProvider@DirectUI@@UAAKXZ
832?AddRef@InvokeProvider@DirectUI@@UAAKXZ
833?AddRef@RangeValueProvider@DirectUI@@UAAKXZ
834?AddRef@RefcountBase@DirectUI@@QAAJXZ
835?AddRef@ScrollItemProvider@DirectUI@@UAAKXZ
836?AddRef@ScrollProvider@DirectUI@@UAAKXZ
837?AddRef@SelectionItemProvider@DirectUI@@UAAKXZ
838?AddRef@SelectionProvider@DirectUI@@UAAKXZ
839?AddRef@TableItemProvider@DirectUI@@UAAKXZ
840?AddRef@TableProvider@DirectUI@@UAAKXZ
841?AddRef@ToggleProvider@DirectUI@@UAAKXZ
842?AddRef@Value@DirectUI@@QAAXXZ
843?AddRef@ValueProvider@DirectUI@@UAAKXZ
844?AddRef@XProvider@DirectUI@@UAAKXZ
845?AddRulesToStyleSheet@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAVStyleSheet@2@PBGPAV?$DynamicArray@UXMLParserCond@DirectUI@@$0A@@2@PAV?$DynamicArray@PAG$0A@@2@@Z
846?AddString@CCListBox@DirectUI@@QAAHPBG@Z
847?AddString@Combobox@DirectUI@@QAAHPBG@Z
848?AddString@TouchSelect@DirectUI@@QAAJPBG@Z
849?AddString@TouchSelect@DirectUI@@QAAJPBGPAPAVElement@2@@Z
850?AddStringWithLabelOverride@TouchSelect@DirectUI@@QAAJPBG0PAPAVElement@2@@Z
851?AddToSelection@NavigatorSelectionItemProxy@DirectUI@@AAAJPAVBrowser@2@@Z
852?AddToSelection@SelectionItemProvider@DirectUI@@UAAJXZ
853?AddToSelection@SelectorSelectionItemProxy@DirectUI@@AAAJXZ
854?AdvanceFrame@AnimationStrip@DirectUI@@IAAXXZ
855?AdvanceFrame@Movie@DirectUI@@SA?AVUID@@XZ
856?AdviseEventAdded@ElementProvider@DirectUI@@UAAJHPAUtagSAFEARRAY@@@Z
857?AdviseEventAdded@EventManager@DirectUI@@SAJHPAUtagSAFEARRAY@@@Z
858?AdviseEventRemoved@ElementProvider@DirectUI@@UAAJHPAUtagSAFEARRAY@@@Z
859?AdviseEventRemoved@EventManager@DirectUI@@SAJHPAUtagSAFEARRAY@@@Z
860?AliasedRenderingProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
861?AlphaProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
862?AnimatePopupOnDismissProp@TouchSelect@DirectUI@@SAPBUPropertyInfo@2@XZ
863?AnimateScroll@TouchScrollBar@DirectUI@@SA?AVUID@@XZ
864?AnimationChange@Element@DirectUI@@SA?AVUID@@XZ
865?AnimationProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
866?AnimationStatusChange@PVLAnimation@DirectUI@@SA?AVUID@@XZ
867?ApplySinkRegion@HWNDHost@DirectUI@@AAAXPBUtagRECT@@_N@Z
868?Arrow@Expando@DirectUI@@KAGXZ
869?AssertPIZeroRef@ClassInfoBase@DirectUI@@UBAXXZ
870?AsyncContentLoadedEvent@Schema@DirectUI@@2HA DATA
871?Attach@Layout@DirectUI@@UAAXPAVElement@2@@Z
872?AttachCtrlSubclassProc@HWNDHost@DirectUI@@KAXPAUHWND__@@@Z
873?AutoGroupingProp@CCRadioButton@DirectUI@@SAPBUPropertyInfo@2@XZ
874?AutoStartProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
875?AutoStopProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
876?AutomationFocusChangedEvent@Schema@DirectUI@@2HA DATA
877?AutomationIdProperty@Schema@DirectUI@@2HA DATA
878?AutomationPropertyChangedEvent@Schema@DirectUI@@2HA DATA
879?BackgroundOwnerIDProp@HWNDHost@DirectUI@@SAPBUPropertyInfo@2@XZ
880?BackgroundProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
881?BaselineProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
882?BorderColorProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
883?BorderStyleProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
884?BorderThicknessProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
885?BoundingRectangleProperty@Schema@DirectUI@@2HA DATA
886?BroadcastEvent@Element@DirectUI@@QAAXPAUEvent@2@@Z
887?BufferingProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
888?BuildCacheInfo@FlowLayout@DirectUI@@IAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@_N@Z
889?BuildCacheInfo@VerticalFlowLayout@DirectUI@@IAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@_N@Z
890?BuildElement@Macro@DirectUI@@MAAJXZ
891?BuildElement@Repeater@DirectUI@@MAAJXZ
892?ButtonClassAcceptsEnterKeyProp@DialogElement@DirectUI@@SAPBUPropertyInfo@2@XZ
893?ButtonControlType@Schema@DirectUI@@2HA DATA
894?CacheParser@XBaby@DirectUI@@UAAXPAVDUIXmlParser@2@@Z
895?CalendarControlType@Schema@DirectUI@@2HA DATA
896?CanPerformManualVisualSwap@TouchScrollViewer@DirectUI@@QAA_NXZ
897?CanSetFocus@HWNDElement@DirectUI@@UAA_NXZ
898?CanSetFocus@XBaby@DirectUI@@UAA_NXZ
899?CanSetFocus@XProvider@DirectUI@@UAAJPA_N@Z
900?CancelClick@TouchButton@DirectUI@@QAA_NW4ClickDevice@12@@Z
901?CancelCurrentDrag@TouchSlider@DirectUI@@QAAXXZ
902?CaptureCallstackFrames@CallstackTracker@DirectUI@@QAAHXZ
903?CapturedProp@Button@DirectUI@@SAPBUPropertyInfo@2@XZ
904?CapturedProp@TouchButton@DirectUI@@SAPBUPropertyInfo@2@XZ
905?CaretMoved@TouchEditBase@DirectUI@@SA?AVUID@@XZ
906?CheckBoxControlType@Schema@DirectUI@@2HA DATA
907?CheckScroll@BaseScrollViewer@DirectUI@@AAAXPAVBaseScrollBar@2@HHH@Z
908?CheckedStateProp@TouchCheckBox@DirectUI@@SAPBUPropertyInfo@2@XZ
909?ChildrenProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
910?ClassExist@ClassInfoBase@DirectUI@@SA_NPAPAUIClassInfo@2@PBQBUPropertyInfo@2@IPAU32@PAUHINSTANCE__@@PBG_N@Z
911?ClassNameProperty@Schema@DirectUI@@2HA DATA
912?ClassProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
913?ClearButtonClicked@TouchEdit2@DirectUI@@SA?AVUID@@XZ
914?ClearCacheDirty@Layout@DirectUI@@IAAXXZ
915?ClearParser@DUIFactory@DirectUI@@AAAXXZ
916?Click@Button@DirectUI@@SA?AVUID@@XZ
917?Click@TouchButton@DirectUI@@SA?AVUID@@XZ
918?ClickDefaultButton@DialogElement@DirectUI@@UAA_NXZ
919?ClickDefaultButton@DialogElementCore@DirectUI@@QAA_NXZ
920?ClickDefaultButton@XBaby@DirectUI@@UAA_NXZ
921?ClickDefaultButton@XProvider@DirectUI@@UAAHXZ
922?ClickablePointProperty@Schema@DirectUI@@2HA DATA
923?Clipper@Expando@DirectUI@@KAGXZ
924?Clone@DuiAccessible@DirectUI@@UAAJPAPAUIEnumVARIANT@@@Z
925?Clone@HWNDHostAccessible@DirectUI@@UAAJPAPAUIEnumVARIANT@@@Z
926?Close@ElementProviderManager@DirectUI@@SAXXZ
927?Close@EventManager@DirectUI@@SAXXZ
928?Close@InvokeManager@DirectUI@@SAXXZ
929?ClosePopup@TouchSelect@DirectUI@@QAAXXZ
930?CloseThread@InvokeManager@DirectUI@@SAXXZ
931?Collapse@ExpandCollapseProvider@DirectUI@@UAAJXZ
932?ColorFontPaletteIndexProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
933?ComboBoxControlType@Schema@DirectUI@@2HA DATA
934?CompositedTextProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
935?CompositingQualityProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
936?CompositionChange@HWNDElement@DirectUI@@SA?AVUID@@XZ
937?ConnectProp@Bind@DirectUI@@SAPBUPropertyInfo@2@XZ
938?ConstrainLayoutProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
939?ContentAlignProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
940?ContentProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
941?Context@Button@DirectUI@@SA?AVUID@@XZ
942?ContextMenuHintShowing@ContextMenuBehavior@DirectUI@@SA?AVUID@@XZ
943?ContextMenuRequested@ContextMenuBehavior@DirectUI@@SA?AVUID@@XZ
944?ContextMenuRequested@TouchEdit2@DirectUI@@SA?AVUID@@XZ
945?ContextSensitiveHelp@DuiAccessible@DirectUI@@UAAJH@Z
946?ContextSensitiveHelp@HWNDHostAccessible@DirectUI@@UAAJH@Z
947?ControlTypeProperty@Schema@DirectUI@@2HA DATA
948?CopySheets@DUIXmlParser@DirectUI@@QAAJPAPAV?$DynamicArray@PAVValue@DirectUI@@$0A@@2@@Z
949?Count@?$SafeArrayAccessor@H@DirectUI@@QAAHXZ
950?Create@?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
951?Create@?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
952?Create@?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
953?Create@?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
954?Create@?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
955?Create@?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
956?Create@?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
957?Create@?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
958?Create@?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
959?Create@?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
960?Create@?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
961?Create@?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
962?Create@?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@SAJPAVElementProvider@2@PAPAUIUnknown@@@Z
963?Create@AcceleratorBehavior@@SAJPAPAUIDuiBehavior@@@Z
964?Create@AccessibleButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
965?Create@AnimationStrip@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
966?Create@AutoButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
967?Create@Bind@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
968?Create@BorderLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
969?Create@BorderLayout@DirectUI@@SAJPAPAVLayout@2@@Z
970?Create@Browser@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
971?Create@Button@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
972?Create@Button@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
973?Create@CCAVI@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
974?Create@CCAVI@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
975?Create@CCBase@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
976?Create@CCBase@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
977?Create@CCCheckBox@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
978?Create@CCCheckBox@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
979?Create@CCCommandLink@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
980?Create@CCCommandLink@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
981?Create@CCHScrollBar@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
982?Create@CCHScrollBar@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
983?Create@CCListBox@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
984?Create@CCListBox@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
985?Create@CCListView@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
986?Create@CCListView@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
987?Create@CCProgressBar@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
988?Create@CCProgressBar@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
989?Create@CCPushButton@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
990?Create@CCPushButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
991?Create@CCRadioButton@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
992?Create@CCRadioButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
993?Create@CCSysLink@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
994?Create@CCSysLink@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
995?Create@CCTrackBar@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
996?Create@CCTrackBar@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
997?Create@CCTreeView@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
998?Create@CCTreeView@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
999?Create@CCVScrollBar@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1000?Create@CCVScrollBar@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1001?Create@CheckBoxGlyph@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1002?Create@CheckBoxGlyph@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1003?Create@Clipper@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1004?Create@Combobox@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1005?Create@Combobox@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1006?Create@ContextMenuBehavior@DirectUI@@SAJPAPAUIDuiBehavior@@@Z
1007?Create@DUIXmlParser@DirectUI@@SAJPAPAV12@P6APAVValue@2@PBGPAX@Z2P6AX11H2@Z2@Z
1008?Create@DialogElement@DirectUI@@SAJPAUHWND__@@_NIPAVElement@2@PAKPAPAV42@@Z
1009?Create@DuiAccessible@DirectUI@@SAJPAVElement@2@PAPAV12@@Z
1010?Create@Edit@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1011?Create@Edit@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1012?Create@Element@DirectUI@@SAJIPAV12@PAKPAPAV12@@Z
1013?Create@ElementProvider@DirectUI@@SAJPAVElement@2@PAVInvokeHelper@2@PAPAV12@@Z
1014?Create@ElementProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1015?Create@ElementWithHWND@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1016?Create@ExpandCollapseProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1017?Create@Expandable@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1018?Create@Expando@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1019?Create@ExpandoButtonGlyph@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1020?Create@ExpandoButtonGlyph@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1021?Create@FillLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1022?Create@FillLayout@DirectUI@@SAJPAPAVLayout@2@@Z
1023?Create@FlowLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1024?Create@FlowLayout@DirectUI@@SAJ_NIIIPAPAVLayout@2@@Z
1025?Create@GridItemProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1026?Create@GridLayout@DirectUI@@SAJHHPAPAVLayout@2@@Z
1027?Create@GridLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1028?Create@GridProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1029?Create@HWNDElement@DirectUI@@SAJPAUHWND__@@_NIPAVElement@2@PAKPAPAV42@@Z
1030?Create@HWNDElementAccessible@DirectUI@@SAJPAVHWNDElement@2@PAPAVDuiAccessible@2@@Z
1031?Create@HWNDElementProvider@DirectUI@@SAJPAVHWNDElement@2@PAVInvokeHelper@2@PAPAV12@@Z
1032?Create@HWNDElementProxy@DirectUI@@SAPAV12@PAVHWNDElement@2@@Z
1033?Create@HWNDHost@DirectUI@@SAJIIPAVElement@2@PAKPAPAV32@@Z
1034?Create@HWNDHost@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1035?Create@HWNDHostAccessible@DirectUI@@SAJPAVElement@2@PAUIAccessible@@PAPAVDuiAccessible@2@@Z
1036?Create@HWNDHostClientAccessible@DirectUI@@SAJPAVElement@2@PAUIAccessible@@PAPAVDuiAccessible@2@@Z
1037?Create@InvokeProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1038?Create@ItemList@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1039?Create@Layout@DirectUI@@SAJPAPAV12@@Z
1040?Create@Macro@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1041?Create@ModernProgressBar@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1042?Create@ModernProgressRing@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1043?Create@Movie@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1044?Create@Movie@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1045?Create@NativeHWNDHost@DirectUI@@SAJPBG0PAUHWND__@@PAUHICON__@@HHHHHHPAUHINSTANCE__@@IPAPAV12@@Z
1046?Create@NativeHWNDHost@DirectUI@@SAJPBGPAUHWND__@@PAUHICON__@@HHHHHHIPAPAV12@@Z
1047?Create@Navigator@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1048?Create@NineGridLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1049?Create@NineGridLayout@DirectUI@@SAJPAPAVLayout@2@@Z
1050?Create@PText@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1051?Create@Page@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1052?Create@Pages@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1053?Create@Progress@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1054?Create@PushButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1055?Create@RadioButtonGlyph@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1056?Create@RadioButtonGlyph@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1057?Create@RangeValueProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1058?Create@RefPointElement@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1059?Create@RefPointElement@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1060?Create@RepeatButton@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1061?Create@RepeatButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1062?Create@Repeater@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1063?Create@RichText@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1064?Create@RowLayout@DirectUI@@SAJHIIPAPAVLayout@2@@Z
1065?Create@RowLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1066?Create@RowLayout@DirectUI@@SAJIIPAPAVLayout@2@@Z
1067?Create@ScrollBar@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1068?Create@ScrollBar@DirectUI@@SAJ_NPAVElement@2@PAKPAPAV32@@Z
1069?Create@ScrollItemProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1070?Create@ScrollProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1071?Create@ScrollViewer@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1072?Create@ScrubBehavior@@SAJPAPAUIDuiBehavior@@@Z
1073?Create@SelectionItemProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1074?Create@SelectionProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1075?Create@Selector@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1076?Create@SelectorNoDefault@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1077?Create@SemanticZoomToggle@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1078?Create@ShellBorderLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1079?Create@ShellBorderLayout@DirectUI@@SAJPAPAVLayout@2@@Z
1080?Create@StyleSheet@DirectUI@@SAJPAPAV12@@Z
1081?Create@StyledScrollViewer@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1082?Create@TableItemProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1083?Create@TableLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1084?Create@TableProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1085?Create@TextGraphic@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1086?Create@Thumb@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1087?Create@Thumb@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1088?Create@ToggleProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1089?Create@TouchButton@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1090?Create@TouchButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1091?Create@TouchCheckBox@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1092?Create@TouchCheckBox@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1093?Create@TouchCheckBoxGlyph@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1094?Create@TouchCommandButton@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1095?Create@TouchCommandButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1096?Create@TouchEdit2@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1097?Create@TouchEditBase@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1098?Create@TouchHWNDElement@DirectUI@@SAJPAUHWND__@@_NIPAVElement@2@PAKPAPAV42@@Z
1099?Create@TouchHyperLink@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1100?Create@TouchHyperLink@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1101?Create@TouchRepeatButton@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1102?Create@TouchRepeatButton@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1103?Create@TouchScrollBar@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1104?Create@TouchScrollViewer@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1105?Create@TouchSelect@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1106?Create@TouchSelectItem@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1107?Create@TouchSlider@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1108?Create@TouchSwitch@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1109?Create@UnknownElement@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1110?Create@UnknownElement@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1111?Create@ValueProxy@DirectUI@@SAPAV12@PAVElement@2@@Z
1112?Create@VerticalFlowLayout@DirectUI@@SAJHPAHPAPAVValue@2@@Z
1113?Create@VerticalFlowLayout@DirectUI@@SAJ_NIIIPAPAVLayout@2@@Z
1114?Create@Viewer@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1115?Create@XBaby@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1116?Create@XBaby@DirectUI@@SAJPAVIXElementCP@2@PAVXProvider@2@PAUHWND__@@PAVElement@2@PAKPAPAV62@@Z
1117?Create@XElement@DirectUI@@SAJIPAVElement@2@PAKPAPAV32@@Z
1118?Create@XElement@DirectUI@@SAJPAVElement@2@PAKPAPAV32@@Z
1119?Create@XHost@DirectUI@@SAJPAVIXElementCP@2@PAPAV12@@Z
1120?Create@XProvider@DirectUI@@SAJPAVElement@2@PAVIXProviderCP@2@PAPAV12@@Z
1121?Create@XResourceProvider@DirectUI@@SAJPAPAV12@@Z
1122?Create@XResourceProvider@DirectUI@@SAJPAUHINSTANCE__@@PBG11PAPAV12@@Z
1123?CreateAccNameLabel@HWNDHost@DirectUI@@IAAPAUHWND__@@PAU3@@Z
1124?CreateAtom@Value@DirectUI@@SAPAV12@G@Z
1125?CreateAtom@Value@DirectUI@@SAPAV12@PBG@Z
1126?CreateBool@Value@DirectUI@@SAPAV12@_N@Z
1127?CreateButtons@ScrollBar@DirectUI@@MAAJXZ
1128?CreateButtons@TouchScrollBar@DirectUI@@UAAJXZ
1129?CreateCache@RichText@DirectUI@@SAJIPAPAUIDUIRichTextCache@@@Z
1130?CreateColor@Value@DirectUI@@SAPAV12@K@Z
1131?CreateColor@Value@DirectUI@@SAPAV12@KKE@Z
1132?CreateColor@Value@DirectUI@@SAPAV12@KKKE@Z
1133?CreateCursor@Value@DirectUI@@SAPAV12@PAUHICON__@@@Z
1134?CreateCursor@Value@DirectUI@@SAPAV12@PBG@Z
1135?CreateDFCFill@Value@DirectUI@@SAPAV12@II@Z
1136?CreateDTBFill@Value@DirectUI@@SAPAV12@PBGHH@Z
1137?CreateDUI@XProvider@DirectUI@@UAAJPAVIXElementCP@2@PAPAUHWND__@@@Z
1138?CreateDUICP@TaskPage@DirectUI@@EAAJPAVHWNDElement@2@PAUHWND__@@1PAPAVElement@2@PAPAVDUIXmlParser@2@@Z
1139?CreateDUICP@XResourceProvider@DirectUI@@UAAJPAVHWNDElement@2@PAUHWND__@@1PAPAVElement@2@PAPAVDUIXmlParser@2@@Z
1140CreateDUIWrapperTouchEx
1141?CreateDoubleList@Value@DirectUI@@SAPAV12@PAV?$DynamicArray@N$0A@@2@@Z
1142?CreateDoubleList@Value@DirectUI@@SAPAV12@PBNH@Z
1143?CreateElement@DUIXmlParser@DirectUI@@QAAJPBGPAVElement@2@1PAKPAPAV32@@Z
1144?CreateElementList@Value@DirectUI@@SAPAV12@PAV?$DynamicArray@PAVElement@DirectUI@@$0A@@2@@Z
1145?CreateElementRef@Value@DirectUI@@SAPAV12@PAVElement@2@@Z
1146?CreateElementScaledValue@Value@DirectUI@@SAPAV12@PAVElement@2@PAV12@@Z
1147?CreateEncodedString@Value@DirectUI@@SAPAV12@PBG@Z
1148?CreateExpression@Value@DirectUI@@SAPAV12@PAVExpression@2@@Z
1149?CreateFill@Value@DirectUI@@SAPAV12@ABUFill@2@@Z
1150?CreateFloat@Value@DirectUI@@SAPAV12@MW4DynamicScaleValue@@@Z
1151?CreateGraphic@Value@DirectUI@@SAPAV12@PAUHBITMAP__@@EI_N11@Z
1152?CreateGraphic@Value@DirectUI@@SAPAV12@PAUHENHMETAFILE__@@0@Z
1153?CreateGraphic@Value@DirectUI@@SAPAV12@PAUHICON__@@_N11@Z
1154?CreateGraphic@Value@DirectUI@@SAPAV12@PAUISharedBitmap@@EI@Z
1155?CreateGraphic@Value@DirectUI@@SAPAV12@PBGEIGGPAUHINSTANCE__@@_N2@Z
1156?CreateGraphic@Value@DirectUI@@SAPAV12@PBGGGPAUHINSTANCE__@@_N2@Z
1157?CreateHWND@CCBase@DirectUI@@UAAPAUHWND__@@PAU3@@Z
1158?CreateHWND@CCBaseScrollBar@DirectUI@@UAAPAUHWND__@@PAU3@@Z
1159?CreateHWND@Combobox@DirectUI@@UAAPAUHWND__@@PAU3@@Z
1160?CreateHWND@Edit@DirectUI@@MAAPAUHWND__@@PAU3@@Z
1161?CreateHWND@Edit@DirectUI@@MAAPAUHWND__@@PAU3@_N@Z
1162?CreateHWND@HWNDHost@DirectUI@@MAAPAUHWND__@@PAU3@@Z
1163?CreateHWND@XElement@DirectUI@@UAAPAUHWND__@@PAU3@@Z
1164?CreateHostWindow@NativeHWNDHost@DirectUI@@UAAPAUHWND__@@KPBG0KHHHHPAU3@PAUHMENU__@@PAUHINSTANCE__@@PAX@Z
1165?CreateInstance@CSafeElementProxy@@SAJPAVElement@DirectUI@@PAPAV1@@Z
1166?CreateInt@Value@DirectUI@@SAPAV12@HW4DynamicScaleValue@@@Z
1167?CreateLayout@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@P6AJHPAHPAPAVValue@2@@Z@Z
1168?CreateLayout@Value@DirectUI@@SAPAV12@PAVLayout@2@@Z
1169?CreateParser@DUIFactory@DirectUI@@QAAJXZ
1170?CreateParser@XProvider@DirectUI@@QAAJPAPAVDUIXmlParser@2@@Z
1171?CreateParserCP@TaskPage@DirectUI@@EAAJPAPAVDUIXmlParser@2@@Z
1172?CreateParserCP@XResourceProvider@DirectUI@@UAAJPAPAVDUIXmlParser@2@@Z
1173?CreatePatternProvider@Schema@DirectUI@@SAJW4Pattern@12@PAVElementProvider@2@PAPAUIUnknown@@@Z
1174?CreatePoint@Value@DirectUI@@SAPAV12@HHW4DynamicScaleValue@@@Z
1175?CreateRect@Value@DirectUI@@SAPAV12@HHHHW4DynamicScaleValue@@@Z
1176?CreateScaledValue@Value@DirectUI@@SAPAV12@MPAV12@@Z
1177?CreateScrollBars@ScrollViewer@DirectUI@@MAAJXZ
1178?CreateScrollBars@StyledScrollViewer@DirectUI@@MAAJXZ
1179?CreateSize@Value@DirectUI@@SAPAV12@HHW4DynamicScaleValue@@@Z
1180?CreateString@Value@DirectUI@@SAPAV12@PBGPAUHINSTANCE__@@@Z
1181?CreateStringRP@Value@DirectUI@@SAPAV12@PBGPAUHINSTANCE__@@@Z
1182?CreateStyleParser@HWNDElement@DirectUI@@UAAJPAPAVDUIXmlParser@2@@Z
1183?CreateStyleParser@XBaby@DirectUI@@UAAJPAPAVDUIXmlParser@2@@Z
1184?CreateStyleSheet@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PBGPAPAVStyleSheet@2@@Z
1185?CreateStyleSheet@Value@DirectUI@@SAPAV12@PAVStyleSheet@2@@Z
1186?CreateValueList@Value@DirectUI@@SAPAV12@PAV12@@Z
1187?CreateValueList@Value@DirectUI@@SAPAV12@PAV?$DynamicArray@PAVValue@DirectUI@@$0A@@2@@Z
1188?CreateXBaby@XProvider@DirectUI@@UAAJPAVIXElementCP@2@PAUHWND__@@PAVElement@2@PAKPAPAUIXBaby@2@@Z
1189?CreateXmlReader@DUIXmlParser@DirectUI@@IAAJPAPAUIXmlReader@@@Z
1190?CreateXmlReaderFromHGLOBAL@DUIXmlParser@DirectUI@@IAAJPAXPAPAUIXmlReader@@@Z
1191?CreateXmlReaderInputWithEncodingName@DUIXmlParser@DirectUI@@IAAJPAUIStream@@PBGPAPAUIUnknown@@@Z
1192?CtrlSubclassProc@HWNDHost@DirectUI@@KAJPAUHWND__@@IIJ@Z
1193?CultureProperty@Schema@DirectUI@@2HA DATA
1194?CursorProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1195?CustomControlType@Schema@DirectUI@@2HA DATA
1196?CustomDragDropScalingHint@PVLAnimation@DirectUI@@SA?AVUID@@XZ
1197?CustomProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1198?CustomReflowHint@PVLAnimation@DirectUI@@SA?AVUID@@XZ
1199?CustomTapHint@PVLAnimation@DirectUI@@SA?AVUID@@XZ
1200?Cut@TouchEditBase@DirectUI@@SA?AVUID@@XZ
1201?DCompDeviceRebuilt@Element@DirectUI@@SA?AVUID@@XZ
1202?DPIProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1203?DUICreatePropertySheetPage@TaskPage@DirectUI@@QAAJPAUHINSTANCE__@@@Z
1204DUIStopPVLAnimation
1205?DataGridControlType@Schema@DirectUI@@2HA DATA
1206?DataItemControlType@Schema@DirectUI@@2HA DATA
1207?DefaultAction@Button@DirectUI@@UAAJXZ
1208?DefaultAction@CCBase@DirectUI@@UAAJXZ
1209?DefaultAction@CCPushButton@DirectUI@@UAAJXZ
1210?DefaultAction@Element@DirectUI@@UAAJXZ
1211?DefaultAction@SemanticZoomToggle@DirectUI@@UAAJXZ
1212?DefaultAction@TouchButton@DirectUI@@UAAJXZ
1213?DefaultAction@TouchRepeatButton@DirectUI@@UAAJXZ
1214?DefaultButtonTrackingProp@DialogElement@DirectUI@@SAPBUPropertyInfo@2@XZ
1215?DelayActivateTooltip@HWNDElement@DirectUI@@QAAXXZ
1216?DeleteString@CCListBox@DirectUI@@QAAHH@Z
1217?DesiredSizeProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1218?Destroy@ClassInfoBase@DirectUI@@UAAXXZ
1219?Destroy@DUIXmlParser@DirectUI@@QAAXXZ
1220?Destroy@Element@DirectUI@@QAAJ_N@Z
1221?Destroy@Expression@DirectUI@@QAAXXZ
1222?Destroy@Layout@DirectUI@@QAAXXZ
1223?Destroy@NativeHWNDHost@DirectUI@@QAAXXZ
1224?Destroy@XHost@DirectUI@@QAAXXZ
1225?DestroyAll@Element@DirectUI@@QAAJ_N@Z
1226?DestroyCP@TaskPage@DirectUI@@EAAXXZ
1227?DestroyCP@XResourceProvider@DirectUI@@UAAXXZ
1228?DestroyListener@EventManager@DirectUI@@SAXPAVElement@2@@Z
1229?DestroyMsg@NativeHWNDHost@DirectUI@@SAIXZ
1230?DestroyWindow@NativeHWNDHost@DirectUI@@QAAXXZ
1231?DestroyWindow@XHost@DirectUI@@QAAXXZ
1232?Detach@CSafeElementProxy@@QAAXXZ
1233?Detach@Element@DirectUI@@QAAXPAVDeferCycle@2@@Z
1234?Detach@HWNDHost@DirectUI@@QAAXXZ
1235?Detach@Layout@DirectUI@@UAAXPAVElement@2@@Z
1236?DetachParser@DUIFactory@DirectUI@@QAAPAVDUIXmlParser@2@XZ
1237?DeterminateProp@ModernProgressBar@DirectUI@@SAPBUPropertyInfo@2@XZ
1238?DirectionProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1239?DirtyProp@Edit@DirectUI@@SAPBUPropertyInfo@2@XZ
1240?DisableAccTextExtendProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
1241?DisableMouseInRectCheckProp@TouchRepeatButton@DirectUI@@SAPBUPropertyInfo@2@XZ
1242?DisableSelectionHandlesOnEmptyContent@TouchEdit2@DirectUI@@QAAXXZ
1243?Disconnect@DuiAccessible@DirectUI@@UAAJXZ
1244?Disconnect@HWNDElementAccessible@DirectUI@@UAAJXZ
1245?Disconnect@HWNDHostAccessible@DirectUI@@UAAJXZ
1246?DismissIHMAsync@TouchHWNDElement@DirectUI@@QAAJXZ
1247?DllsLoaded@CallstackTracker@DirectUI@@CAHXZ
1248?DoInvoke@?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@IAAJHZZ
1249?DoInvoke@?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@IAAJHZZ
1250?DoInvoke@?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@IAAJHZZ
1251?DoInvoke@?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@IAAJHZZ
1252?DoInvoke@?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@IAAJHZZ
1253?DoInvoke@?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@IAAJHZZ
1254?DoInvoke@?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@IAAJHZZ
1255?DoInvoke@?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@IAAJHZZ
1256?DoInvoke@?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@IAAJHZZ
1257?DoInvoke@?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@IAAJHZZ
1258?DoInvoke@?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@IAAJHZZ
1259?DoInvoke@?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@IAAJHZZ
1260?DoInvoke@?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@IAAJHZZ
1261?DoInvoke@ElementProvider@DirectUI@@IAAJHZZ
1262?DoInvoke@InvokeHelper@DirectUI@@QAAJHPAVElementProvider@2@P6APAVProviderProxy@2@PAVElement@2@@ZPAD@Z
1263?DoInvokeArgs@ElementProvider@DirectUI@@QAAJHP6APAVProviderProxy@2@PAVElement@2@@ZPAD@Z
1264?DoLayout@BorderLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1265?DoLayout@FillLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1266?DoLayout@FlowLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1267?DoLayout@GridLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1268?DoLayout@Layout@DirectUI@@UAAXPAVElement@2@HH@Z
1269?DoLayout@NineGridLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1270?DoLayout@RowLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1271?DoLayout@TableLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1272?DoLayout@VerticalFlowLayout@DirectUI@@UAAXPAVElement@2@HH@Z
1273?DoMethod@BrowserSelectionProxy@DirectUI@@UAAJHPAD@Z
1274?DoMethod@ElementProxy@DirectUI@@UAAJHPAD@Z
1275?DoMethod@ExpandCollapseProxy@DirectUI@@UAAJHPAD@Z
1276?DoMethod@GridItemProxy@DirectUI@@UAAJHPAD@Z
1277?DoMethod@GridProxy@DirectUI@@UAAJHPAD@Z
1278?DoMethod@HWNDElementProxy@DirectUI@@UAAJHPAD@Z
1279?DoMethod@InvokeProxy@DirectUI@@UAAJHPAD@Z
1280?DoMethod@ModernProgressBarRangeValueProxy@DirectUI@@UAAJHPAD@Z
1281?DoMethod@NavigatorSelectionItemProxy@DirectUI@@UAAJHPAD@Z
1282?DoMethod@ProgressRangeValueProxy@DirectUI@@UAAJHPAD@Z
1283?DoMethod@RangeValueProxy@DirectUI@@UAAJHPAD@Z
1284?DoMethod@ScrollBarRangeValueProxy@DirectUI@@UAAJHPAD@Z
1285?DoMethod@ScrollItemProxy@DirectUI@@UAAJHPAD@Z
1286?DoMethod@ScrollProxy@DirectUI@@UAAJHPAD@Z
1287?DoMethod@SelectionItemProxy@DirectUI@@UAAJHPAD@Z
1288?DoMethod@SelectionProxy@DirectUI@@UAAJHPAD@Z
1289?DoMethod@SelectorSelectionItemProxy@DirectUI@@UAAJHPAD@Z
1290?DoMethod@SelectorSelectionProxy@DirectUI@@UAAJHPAD@Z
1291?DoMethod@TableItemProxy@DirectUI@@UAAJHPAD@Z
1292?DoMethod@TableProxy@DirectUI@@UAAJHPAD@Z
1293?DoMethod@ToggleProxy@DirectUI@@UAAJHPAD@Z
1294?DoMethod@ValueProxy@DirectUI@@UAAJHPAD@Z
1295?DockPattern@Schema@DirectUI@@2HA DATA
1296?DocumentControlType@Schema@DirectUI@@2HA DATA
1297?DoubleBuffered@Element@DirectUI@@QAAX_N@Z
1298?Drag@Thumb@DirectUI@@SA?AVUID@@XZ
1299?DragDragCancelEvent@Schema@DirectUI@@2HA DATA
1300?DragDragCompleteEvent@Schema@DirectUI@@2HA DATA
1301?DragDragStartEvent@Schema@DirectUI@@2HA DATA
1302?DragPattern@Schema@DirectUI@@2HA DATA
1303?Drag_DropEffect_Property@Schema@DirectUI@@2HA DATA
1304?Drag_DropEffects_Property@Schema@DirectUI@@2HA DATA
1305?Drag_IsGrabbed_Property@Schema@DirectUI@@2HA DATA
1306?DrawOutlinesProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
1307DuiCreateObject
1308?DumpDuiProperties@@YAXPAVElement@DirectUI@@@Z
1309?DumpDuiTree@@YAXPAVElement@DirectUI@@H@Z
1310?EdgeHighlightColorProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1311?EdgeHighlightThicknessProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1312?EditControlType@Schema@DirectUI@@2HA DATA
1313?ElementFromPoint@HWNDElement@DirectUI@@QAAPAVElement@2@PAUtagPOINT@@@Z
1314?ElementFromPoint@HWNDElementProxy@DirectUI@@IAAJNNPAPAUIRawElementProviderFragment@@@Z
1315?ElementMovesOnIHMNotifyProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
1316?ElementProviderFromPoint@HWNDElementProvider@DirectUI@@UAAJNNPAPAUIRawElementProviderFragment@@@Z
1317?EnableDesignMode@DUIXmlParser@DirectUI@@QAAXXZ
1318?EnableUiaEvents@Element@DirectUI@@QAAX_N@Z
1319?EnabledProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1320?End@BaseScrollBar@DirectUI@@UAAXXZ
1321?EndDefer@Element@DirectUI@@QAAXK@Z
1322?EndDefer@EventManager@DirectUI@@SAJPAVElement@2@@Z
1323?EnforceSizeProp@PushButton@DirectUI@@SAPBUPropertyInfo@2@XZ
1324?EnsureVisible@Element@DirectUI@@QAA_NI@Z
1325?EnsureVisible@Element@DirectUI@@QAA_NXZ
1326?EnsureVisible@Element@DirectUI@@UAA_NHHHH@Z
1327?EnsureVisible@Viewer@DirectUI@@UAA_NHHHH@Z
1328?Enter@Edit@DirectUI@@SA?AVUID@@XZ
1329?Enter@TouchEditBase@DirectUI@@SA?AVUID@@XZ
1330?Entered@Browser@DirectUI@@SA?AVUID@@XZ
1331?EnumCallstackFrames@CallstackTracker@DirectUI@@QAAHP6AXPBD0KK@Z@Z
1332?EnumPropertyInfo@ClassInfoBase@DirectUI@@UAAPBUPropertyInfo@2@I@Z
1333?EraseBkgnd@HWNDHost@DirectUI@@MAA_NPAUHDC__@@PAJ@Z
1334?EraseFeedback@TouchSlider@DirectUI@@QAAXXZ
1335?EstimateContentSize@CCPushButton@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1336?EventFromEventId@Schema@DirectUI@@SA?AW4Event@12@H@Z
1337?EventListener@EventManager@DirectUI@@SAJPAVElement@2@PAUEvent@2@@Z
1338?ExecuteManualSwapDeferredZoomToRect@TouchScrollViewer@DirectUI@@QAAJ_N@Z
1339?Expand@ExpandCollapseProvider@DirectUI@@UAAJXZ
1340?ExpandCollapsePattern@Schema@DirectUI@@2HA DATA
1341?ExpandCollapse_ExpandCollapseState_Property@Schema@DirectUI@@2HA DATA
1342?ExpandProp@Macro@DirectUI@@SAPBUPropertyInfo@2@XZ
1343?ExpandedProp@Expandable@DirectUI@@SAPBUPropertyInfo@2@XZ
1344?ExtentProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1345?FWantAnyEvent@EventManager@DirectUI@@SA_NPAVElement@2@@Z
1346?FillSymbolInfo@CallstackTracker@DirectUI@@AAAXPAUSTACK_SYMBOL_INFO@12@_K@Z
1347?FilterOnPasteProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
1348?FinalizeCurrentIMEComposition@TouchEdit2@DirectUI@@UAAJXZ
1349?FinalizeCurrentIMEComposition@TouchEditBase@DirectUI@@UAAJXZ
1350?Find@ElementProviderManager@DirectUI@@SAPAVElementProvider@2@PAVElement@2@@Z
1351?FindAccessibleRole@AccessibleButton@DirectUI@@CAPBUACCESSIBLEROLE@12@H@Z
1352?FindDescendent@Element@DirectUI@@QAAPAV12@G@Z
1353?FindDescendentWorker@Element@DirectUI@@AAAPAV12@G@Z
1354?FindElementWithShortcutAndDoDefaultAction@XProvider@DirectUI@@UAAHGH@Z
1355?FindInvokeHelper@InvokeManager@DirectUI@@CAPAVInvokeHelper@2@PAI@Z
1356?FindProviderCallback@ElementProviderManager@DirectUI@@CA_NPAVElementProvider@2@PAX@Z
1357?FindRefPoint@RefPointElement@DirectUI@@SAPAVElement@2@PAV32@PAUtagPOINT@@@Z
1358?FindShortcut@HWNDElement@DirectUI@@SA_NGPAVElement@2@PAPAV32@PAH2H@Z
1359?FindShortcutRecursive@HWNDElement@DirectUI@@KA_NGPAVElement@2@PAPAV32@PAH2H@Z
1360?FireAnimationChangeEvent@BaseScrollViewer@DirectUI@@IAAX_N@Z
1361?FireClickEvent@TouchButton@DirectUI@@UAAXIIW4ClickDevice@12@PAUtagPOINT@@@Z
1362?FireClickEvent@TouchRepeatButton@DirectUI@@UAAXIIW4ClickDevice@TouchButton@2@PAUtagPOINT@@@Z
1363?FireEvent@Element@DirectUI@@QAAXPAUEvent@2@_N1@Z
1364?FireEventOnMouseOrPointerRelease@TouchSlider@DirectUI@@QAAXXZ
1365?FireHostEvent@PushButton@DirectUI@@AAAXPAVElement@2@_N@Z
1366?FireNavigate@Browser@DirectUI@@AAAHG@Z
1367?FireNavigationEvent@Navigator@DirectUI@@AAAXXZ
1368?FireRightClickEvent@TouchButton@DirectUI@@UAAXIPAUtagPOINT@@@Z
1369?FireRightClickEvent@TouchRepeatButton@DirectUI@@UAAXIPAUtagPOINT@@@Z
1370?FireStructureChangedEvent@EventManager@DirectUI@@SAJPAVElement@2@W4StructureChangeType@@@Z
1371?FlagsProp@TouchHWNDElement@DirectUI@@SAPBUPropertyInfo@2@XZ
1372?FlushWorkingSet@HWNDElement@DirectUI@@QAAXXZ
1373?FontColorRunsProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
1374?FontFaceProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1375?FontProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1376?FontQualityProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1377?FontSizeProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1378?FontSizeRunsProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
1379?FontStyleProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1380?FontWeightProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1381?FontWeightRunsProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
1382?ForceEditTextToLTRProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
1383?ForceThemeChange@XBaby@DirectUI@@UAAXIJ@Z
1384?ForceThemeChange@XProvider@DirectUI@@UAAJIJ@Z
1385?ForegroundProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
1386?Forward@Movie@DirectUI@@QAAXXZ
1387?ForwardingWindowMessage@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
1388?FrameDurationProp@AnimationStrip@DirectUI@@SAPBUPropertyInfo@2@XZ
1389?FrameIndexProp@AnimationStrip@DirectUI@@SAPBUPropertyInfo@2@XZ
1390?FrameWidthProp@AnimationStrip@DirectUI@@SAPBUPropertyInfo@2@XZ
1391?FrameworkId@Schema@DirectUI@@2HA DATA
1392?FreeComCtl32@TaskPage@DirectUI@@AAAXXZ
1393?FreeProvider@XElement@DirectUI@@QAAXXZ
1394?GetAbsorbsShortcut@Element@DirectUI@@QAA_NXZ
1395?GetAccDefAction@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1396?GetAccDesc@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1397?GetAccHelp@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1398?GetAccItemStatus@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1399?GetAccItemType@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1400?GetAccName@DuiAccessible@DirectUI@@IAAJUtagVARIANT@@HPAPAG@Z
1401?GetAccName@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1402?GetAccNameAsDisplayed@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1403?GetAccNameFromContent@DuiAccessible@DirectUI@@IAAJPAPAG@Z
1404?GetAccRole@Element@DirectUI@@QAAHXZ
1405?GetAccState@Element@DirectUI@@QAAHXZ
1406?GetAccValue@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1407?GetAccessible@Element@DirectUI@@QAA_NXZ
1408?GetAccessibleImpl@Element@DirectUI@@UAAJPAPAUIAccessible@@@Z
1409?GetAccessibleImpl@HWNDElement@DirectUI@@UAAJPAPAUIAccessible@@@Z
1410?GetAccessibleImpl@HWNDHost@DirectUI@@AAAJPAPAUIAccessible@@_N@Z
1411?GetAccessibleImpl@HWNDHost@DirectUI@@UAAJPAPAUIAccessible@@@Z
1412?GetAccessibleImpl@TouchEdit2@DirectUI@@UAAJPAPAUIAccessible@@@Z
1413?GetAccessibleParent@DuiAccessible@DirectUI@@SAPAVElement@2@PAV32@@Z
1414?GetActive@Element@DirectUI@@QAAHXZ
1415?GetActiveState@TouchScrollBar@DirectUI@@QAA?AW4ActiveState@2@XZ
1416?GetActualReferencePoint@RefPointElement@DirectUI@@QAAPBUtagPOINT@@PAPAVValue@2@@Z
1417?GetAdjacent@BorderLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1418?GetAdjacent@Element@DirectUI@@UAAPAV12@PAV12@HPBUNavReference@2@K@Z
1419?GetAdjacent@FillLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1420?GetAdjacent@FlowLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1421?GetAdjacent@GridLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1422?GetAdjacent@ItemList@DirectUI@@UAAPAVElement@2@PAV32@HPBUNavReference@2@K@Z
1423?GetAdjacent@Layout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1424?GetAdjacent@NineGridLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1425?GetAdjacent@RowLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1426?GetAdjacent@Selector@DirectUI@@UAAPAVElement@2@PAV32@HPBUNavReference@2@K@Z
1427?GetAdjacent@ShellBorderLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1428?GetAdjacent@TableLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1429?GetAdjacent@VerticalFlowLayout@DirectUI@@UAAPAVElement@2@PAV32@0HPBUNavReference@2@K@Z
1430?GetAdjacent@XBaby@DirectUI@@UAAPAVElement@2@PAV32@HPBUNavReference@2@K@Z
1431?GetAllowArrowOut@TouchScrollViewer@DirectUI@@QAA_NXZ
1432?GetAlpha@Element@DirectUI@@QAAHXZ
1433?GetAnimatePopupOnDismiss@TouchSelect@DirectUI@@QAA_NXZ
1434?GetAnimation@Element@DirectUI@@QAAHXZ
1435?GetAtom@Value@DirectUI@@QAAGXZ
1436?GetAtomZero@Value@DirectUI@@SAPAV12@XZ
1437?GetAutoGrouping@CCRadioButton@DirectUI@@QAA_NXZ
1438?GetAutoStart@Movie@DirectUI@@QAA_NXZ
1439?GetAutoStop@Movie@DirectUI@@QAA_NXZ
1440?GetAutomationId@ElementProxy@DirectUI@@IAAJPAUtagVARIANT@@@Z
1441?GetBackgroundColor@Element@DirectUI@@QAAPBUFill@2@PAPAVValue@2@@Z
1442?GetBackgroundOwner@HWNDHost@DirectUI@@IAAPAVElement@2@XZ
1443?GetBackgroundOwnerID@HWNDHost@DirectUI@@QAAGXZ
1444?GetBackgroundStdColor@Element@DirectUI@@QAAHXZ
1445?GetBool@EventManager@DirectUI@@CAJPAUtagVARIANT@@PAVValue@2@@Z
1446?GetBool@Value@DirectUI@@QAA_NXZ
1447?GetBoolFalse@Value@DirectUI@@SAPAV12@XZ
1448?GetBoolTrue@Value@DirectUI@@SAPAV12@XZ
1449?GetBorderColor@Element@DirectUI@@QAAPBUFill@2@PAPAVValue@2@@Z
1450?GetBorderStdColor@Element@DirectUI@@QAAHXZ
1451?GetBorderStyle@Element@DirectUI@@QAAHXZ
1452?GetBorderThickness@Element@DirectUI@@QAAPBUtagRECT@@PAPAVValue@2@@Z
1453?GetBoundingRect@ElementProxy@DirectUI@@IAAJPAUUiaRect@@@Z
1454?GetBrowser@Navigator@DirectUI@@QAAPAVBrowser@2@XZ
1455?GetBuffering@TouchSlider@DirectUI@@QAAHXZ
1456?GetButtonClassAcceptsEnterKey@DialogElement@DirectUI@@UAA_NXZ
1457?GetButtonColor@CCPushButton@DirectUI@@UAA_NPAUHDC__@@PAPAUHBRUSH__@@@Z
1458?GetByClassIndex@ClassInfoBase@DirectUI@@UAAPBUPropertyInfo@2@I@Z
1459?GetCaptured@Button@DirectUI@@QAA_NXZ
1460?GetCaptured@TouchButton@DirectUI@@QAA_NXZ
1461?GetCellInfo@TableLayout@DirectUI@@QAAPAUCellInfo@2@H@Z
1462?GetCheckedState@TouchCheckBox@DirectUI@@QAA?AW4CheckedStateFlags@2@XZ
1463?GetChildFromLayoutIndex@Layout@DirectUI@@QAAPAVElement@2@PAV32@HPAV?$DynamicArray@PAVElement@DirectUI@@$0A@@2@@Z
1464?GetChildren@ClassInfoBase@DirectUI@@UBAHXZ
1465?GetChildren@Element@DirectUI@@QAAPAV?$DynamicArray@PAVElement@DirectUI@@$0A@@2@PAPAVValue@2@@Z
1466?GetClass@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1467?GetClassInfoPtr@AccessibleButton@DirectUI@@SAPAUIClassInfo@2@XZ
1468?GetClassInfoPtr@AnimationStrip@DirectUI@@SAPAUIClassInfo@2@XZ
1469?GetClassInfoPtr@AutoButton@DirectUI@@SAPAUIClassInfo@2@XZ
1470?GetClassInfoPtr@BaseScrollViewer@DirectUI@@SAPAUIClassInfo@2@XZ
1471?GetClassInfoPtr@Bind@DirectUI@@SAPAUIClassInfo@2@XZ
1472?GetClassInfoPtr@Browser@DirectUI@@SAPAUIClassInfo@2@XZ
1473?GetClassInfoPtr@Button@DirectUI@@SAPAUIClassInfo@2@XZ
1474?GetClassInfoPtr@CCAVI@DirectUI@@SAPAUIClassInfo@2@XZ
1475?GetClassInfoPtr@CCBase@DirectUI@@SAPAUIClassInfo@2@XZ
1476?GetClassInfoPtr@CCBaseCheckRadioButton@DirectUI@@SAPAUIClassInfo@2@XZ
1477?GetClassInfoPtr@CCBaseScrollBar@DirectUI@@SAPAUIClassInfo@2@XZ
1478?GetClassInfoPtr@CCCheckBox@DirectUI@@SAPAUIClassInfo@2@XZ
1479?GetClassInfoPtr@CCCommandLink@DirectUI@@SAPAUIClassInfo@2@XZ
1480?GetClassInfoPtr@CCHScrollBar@DirectUI@@SAPAUIClassInfo@2@XZ
1481?GetClassInfoPtr@CCListBox@DirectUI@@SAPAUIClassInfo@2@XZ
1482?GetClassInfoPtr@CCListView@DirectUI@@SAPAUIClassInfo@2@XZ
1483?GetClassInfoPtr@CCProgressBar@DirectUI@@SAPAUIClassInfo@2@XZ
1484?GetClassInfoPtr@CCPushButton@DirectUI@@SAPAUIClassInfo@2@XZ
1485?GetClassInfoPtr@CCRadioButton@DirectUI@@SAPAUIClassInfo@2@XZ
1486?GetClassInfoPtr@CCSysLink@DirectUI@@SAPAUIClassInfo@2@XZ
1487?GetClassInfoPtr@CCTrackBar@DirectUI@@SAPAUIClassInfo@2@XZ
1488?GetClassInfoPtr@CCTreeView@DirectUI@@SAPAUIClassInfo@2@XZ
1489?GetClassInfoPtr@CCVScrollBar@DirectUI@@SAPAUIClassInfo@2@XZ
1490?GetClassInfoPtr@CheckBoxGlyph@DirectUI@@SAPAUIClassInfo@2@XZ
1491?GetClassInfoPtr@Clipper@DirectUI@@SAPAUIClassInfo@2@XZ
1492?GetClassInfoPtr@Combobox@DirectUI@@SAPAUIClassInfo@2@XZ
1493?GetClassInfoPtr@DialogElement@DirectUI@@SAPAUIClassInfo@2@XZ
1494?GetClassInfoPtr@Edit@DirectUI@@SAPAUIClassInfo@2@XZ
1495?GetClassInfoPtr@Element@DirectUI@@SAPAUIClassInfo@2@XZ
1496?GetClassInfoPtr@ElementWithHWND@DirectUI@@SAPAUIClassInfo@2@XZ
1497?GetClassInfoPtr@Expandable@DirectUI@@SAPAUIClassInfo@2@XZ
1498?GetClassInfoPtr@Expando@DirectUI@@SAPAUIClassInfo@2@XZ
1499?GetClassInfoPtr@ExpandoButtonGlyph@DirectUI@@SAPAUIClassInfo@2@XZ
1500?GetClassInfoPtr@HWNDElement@DirectUI@@SAPAUIClassInfo@2@XZ
1501?GetClassInfoPtr@HWNDHost@DirectUI@@SAPAUIClassInfo@2@XZ
1502?GetClassInfoPtr@ItemList@DirectUI@@SAPAUIClassInfo@2@XZ
1503?GetClassInfoPtr@Macro@DirectUI@@SAPAUIClassInfo@2@XZ
1504?GetClassInfoPtr@ModernProgressBar@DirectUI@@SAPAUIClassInfo@2@XZ
1505?GetClassInfoPtr@ModernProgressRing@DirectUI@@SAPAUIClassInfo@2@XZ
1506?GetClassInfoPtr@Movie@DirectUI@@SAPAUIClassInfo@2@XZ
1507?GetClassInfoPtr@Navigator@DirectUI@@SAPAUIClassInfo@2@XZ
1508?GetClassInfoPtr@PText@DirectUI@@SAPAUIClassInfo@2@XZ
1509?GetClassInfoPtr@Page@DirectUI@@SAPAUIClassInfo@2@XZ
1510?GetClassInfoPtr@Pages@DirectUI@@SAPAUIClassInfo@2@XZ
1511?GetClassInfoPtr@Progress@DirectUI@@SAPAUIClassInfo@2@XZ
1512?GetClassInfoPtr@PushButton@DirectUI@@SAPAUIClassInfo@2@XZ
1513?GetClassInfoPtr@RadioButtonGlyph@DirectUI@@SAPAUIClassInfo@2@XZ
1514?GetClassInfoPtr@RefPointElement@DirectUI@@SAPAUIClassInfo@2@XZ
1515?GetClassInfoPtr@RepeatButton@DirectUI@@SAPAUIClassInfo@2@XZ
1516?GetClassInfoPtr@Repeater@DirectUI@@SAPAUIClassInfo@2@XZ
1517?GetClassInfoPtr@RichText@DirectUI@@SAPAUIClassInfo@2@XZ
1518?GetClassInfoPtr@ScrollBar@DirectUI@@SAPAUIClassInfo@2@XZ
1519?GetClassInfoPtr@ScrollViewer@DirectUI@@SAPAUIClassInfo@2@XZ
1520?GetClassInfoPtr@Selector@DirectUI@@SAPAUIClassInfo@2@XZ
1521?GetClassInfoPtr@SelectorNoDefault@DirectUI@@SAPAUIClassInfo@2@XZ
1522?GetClassInfoPtr@SemanticZoomToggle@DirectUI@@SAPAUIClassInfo@2@XZ
1523?GetClassInfoPtr@StyledScrollViewer@DirectUI@@SAPAUIClassInfo@2@XZ
1524?GetClassInfoPtr@TextGraphic@DirectUI@@SAPAUIClassInfo@2@XZ
1525?GetClassInfoPtr@Thumb@DirectUI@@SAPAUIClassInfo@2@XZ
1526?GetClassInfoPtr@TouchButton@DirectUI@@SAPAUIClassInfo@2@XZ
1527?GetClassInfoPtr@TouchCheckBox@DirectUI@@SAPAUIClassInfo@2@XZ
1528?GetClassInfoPtr@TouchCheckBoxGlyph@DirectUI@@SAPAUIClassInfo@2@XZ
1529?GetClassInfoPtr@TouchCommandButton@DirectUI@@SAPAUIClassInfo@2@XZ
1530?GetClassInfoPtr@TouchEdit2@DirectUI@@SAPAUIClassInfo@2@XZ
1531?GetClassInfoPtr@TouchEditBase@DirectUI@@SAPAUIClassInfo@2@XZ
1532?GetClassInfoPtr@TouchHWNDElement@DirectUI@@SAPAUIClassInfo@2@XZ
1533?GetClassInfoPtr@TouchHyperLink@DirectUI@@SAPAUIClassInfo@2@XZ
1534?GetClassInfoPtr@TouchRepeatButton@DirectUI@@SAPAUIClassInfo@2@XZ
1535?GetClassInfoPtr@TouchScrollBar@DirectUI@@SAPAUIClassInfo@2@XZ
1536?GetClassInfoPtr@TouchScrollViewer@DirectUI@@SAPAUIClassInfo@2@XZ
1537?GetClassInfoPtr@TouchSelect@DirectUI@@SAPAUIClassInfo@2@XZ
1538?GetClassInfoPtr@TouchSelectItem@DirectUI@@SAPAUIClassInfo@2@XZ
1539?GetClassInfoPtr@TouchSlider@DirectUI@@SAPAUIClassInfo@2@XZ
1540?GetClassInfoPtr@TouchSwitch@DirectUI@@SAPAUIClassInfo@2@XZ
1541?GetClassInfoPtr@UnknownElement@DirectUI@@SAPAUIClassInfo@2@XZ
1542?GetClassInfoPtr@Viewer@DirectUI@@SAPAUIClassInfo@2@XZ
1543?GetClassInfoPtr@XBaby@DirectUI@@SAPAUIClassInfo@2@XZ
1544?GetClassInfoPtr@XElement@DirectUI@@SAPAUIClassInfo@2@XZ
1545?GetClassInfoW@AccessibleButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1546?GetClassInfoW@AnimationStrip@DirectUI@@UAAPAUIClassInfo@2@XZ
1547?GetClassInfoW@AutoButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1548?GetClassInfoW@BaseScrollViewer@DirectUI@@UAAPAUIClassInfo@2@XZ
1549?GetClassInfoW@Bind@DirectUI@@UAAPAUIClassInfo@2@XZ
1550?GetClassInfoW@Browser@DirectUI@@UAAPAUIClassInfo@2@XZ
1551?GetClassInfoW@Button@DirectUI@@UAAPAUIClassInfo@2@XZ
1552?GetClassInfoW@CCAVI@DirectUI@@UAAPAUIClassInfo@2@XZ
1553?GetClassInfoW@CCBase@DirectUI@@UAAPAUIClassInfo@2@XZ
1554?GetClassInfoW@CCBaseCheckRadioButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1555?GetClassInfoW@CCBaseScrollBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1556?GetClassInfoW@CCCheckBox@DirectUI@@UAAPAUIClassInfo@2@XZ
1557?GetClassInfoW@CCCommandLink@DirectUI@@UAAPAUIClassInfo@2@XZ
1558?GetClassInfoW@CCHScrollBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1559?GetClassInfoW@CCListBox@DirectUI@@UAAPAUIClassInfo@2@XZ
1560?GetClassInfoW@CCListView@DirectUI@@UAAPAUIClassInfo@2@XZ
1561?GetClassInfoW@CCProgressBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1562?GetClassInfoW@CCPushButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1563?GetClassInfoW@CCRadioButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1564?GetClassInfoW@CCSysLink@DirectUI@@UAAPAUIClassInfo@2@XZ
1565?GetClassInfoW@CCTrackBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1566?GetClassInfoW@CCTreeView@DirectUI@@UAAPAUIClassInfo@2@XZ
1567?GetClassInfoW@CCVScrollBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1568?GetClassInfoW@CheckBoxGlyph@DirectUI@@UAAPAUIClassInfo@2@XZ
1569?GetClassInfoW@Clipper@DirectUI@@UAAPAUIClassInfo@2@XZ
1570?GetClassInfoW@Combobox@DirectUI@@UAAPAUIClassInfo@2@XZ
1571?GetClassInfoW@DialogElement@DirectUI@@UAAPAUIClassInfo@2@XZ
1572?GetClassInfoW@Edit@DirectUI@@UAAPAUIClassInfo@2@XZ
1573?GetClassInfoW@Element@DirectUI@@UAAPAUIClassInfo@2@XZ
1574?GetClassInfoW@ElementWithHWND@DirectUI@@UAAPAUIClassInfo@2@XZ
1575?GetClassInfoW@Expandable@DirectUI@@UAAPAUIClassInfo@2@XZ
1576?GetClassInfoW@Expando@DirectUI@@UAAPAUIClassInfo@2@XZ
1577?GetClassInfoW@ExpandoButtonGlyph@DirectUI@@UAAPAUIClassInfo@2@XZ
1578?GetClassInfoW@HWNDElement@DirectUI@@UAAPAUIClassInfo@2@XZ
1579?GetClassInfoW@HWNDHost@DirectUI@@UAAPAUIClassInfo@2@XZ
1580?GetClassInfoW@ItemList@DirectUI@@UAAPAUIClassInfo@2@XZ
1581?GetClassInfoW@Macro@DirectUI@@UAAPAUIClassInfo@2@XZ
1582?GetClassInfoW@ModernProgressBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1583?GetClassInfoW@ModernProgressRing@DirectUI@@UAAPAUIClassInfo@2@XZ
1584?GetClassInfoW@Movie@DirectUI@@UAAPAUIClassInfo@2@XZ
1585?GetClassInfoW@Navigator@DirectUI@@UAAPAUIClassInfo@2@XZ
1586?GetClassInfoW@PText@DirectUI@@UAAPAUIClassInfo@2@XZ
1587?GetClassInfoW@Page@DirectUI@@UAAPAUIClassInfo@2@XZ
1588?GetClassInfoW@Pages@DirectUI@@UAAPAUIClassInfo@2@XZ
1589?GetClassInfoW@Progress@DirectUI@@UAAPAUIClassInfo@2@XZ
1590?GetClassInfoW@PushButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1591?GetClassInfoW@RadioButtonGlyph@DirectUI@@UAAPAUIClassInfo@2@XZ
1592?GetClassInfoW@RefPointElement@DirectUI@@UAAPAUIClassInfo@2@XZ
1593?GetClassInfoW@RepeatButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1594?GetClassInfoW@Repeater@DirectUI@@UAAPAUIClassInfo@2@XZ
1595?GetClassInfoW@RichText@DirectUI@@UAAPAUIClassInfo@2@XZ
1596?GetClassInfoW@ScrollBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1597?GetClassInfoW@ScrollViewer@DirectUI@@UAAPAUIClassInfo@2@XZ
1598?GetClassInfoW@Selector@DirectUI@@UAAPAUIClassInfo@2@XZ
1599?GetClassInfoW@SelectorNoDefault@DirectUI@@UAAPAUIClassInfo@2@XZ
1600?GetClassInfoW@SemanticZoomToggle@DirectUI@@UAAPAUIClassInfo@2@XZ
1601?GetClassInfoW@StyledScrollViewer@DirectUI@@UAAPAUIClassInfo@2@XZ
1602?GetClassInfoW@TextGraphic@DirectUI@@UAAPAUIClassInfo@2@XZ
1603?GetClassInfoW@Thumb@DirectUI@@UAAPAUIClassInfo@2@XZ
1604?GetClassInfoW@TouchButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1605?GetClassInfoW@TouchCheckBox@DirectUI@@UAAPAUIClassInfo@2@XZ
1606?GetClassInfoW@TouchCheckBoxGlyph@DirectUI@@UAAPAUIClassInfo@2@XZ
1607?GetClassInfoW@TouchCommandButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1608?GetClassInfoW@TouchEdit2@DirectUI@@UAAPAUIClassInfo@2@XZ
1609?GetClassInfoW@TouchEditBase@DirectUI@@UAAPAUIClassInfo@2@XZ
1610?GetClassInfoW@TouchHWNDElement@DirectUI@@UAAPAUIClassInfo@2@XZ
1611?GetClassInfoW@TouchHyperLink@DirectUI@@UAAPAUIClassInfo@2@XZ
1612?GetClassInfoW@TouchRepeatButton@DirectUI@@UAAPAUIClassInfo@2@XZ
1613?GetClassInfoW@TouchScrollBar@DirectUI@@UAAPAUIClassInfo@2@XZ
1614?GetClassInfoW@TouchScrollViewer@DirectUI@@UAAPAUIClassInfo@2@XZ
1615?GetClassInfoW@TouchSelect@DirectUI@@UAAPAUIClassInfo@2@XZ
1616?GetClassInfoW@TouchSelectItem@DirectUI@@UAAPAUIClassInfo@2@XZ
1617?GetClassInfoW@TouchSlider@DirectUI@@UAAPAUIClassInfo@2@XZ
1618?GetClassInfoW@TouchSwitch@DirectUI@@UAAPAUIClassInfo@2@XZ
1619?GetClassInfoW@UnknownElement@DirectUI@@UAAPAUIClassInfo@2@XZ
1620?GetClassInfoW@Viewer@DirectUI@@UAAPAUIClassInfo@2@XZ
1621?GetClassInfoW@XBaby@DirectUI@@UAAPAUIClassInfo@2@XZ
1622?GetClassInfoW@XElement@DirectUI@@UAAPAUIClassInfo@2@XZ
1623?GetClickDevice@TouchButton@DirectUI@@QAA?AW4ClickDevice@12@XZ
1624?GetClickablePoint@Element@DirectUI@@QAA_NPAUtagPOINT@@@Z
1625?GetClientAccessibleImpl@HWNDHost@DirectUI@@QAAJPAPAUIAccessible@@@Z
1626?GetColorFromProperty@DirectUI@@YAJPAVElement@1@PBUPropertyInfo@1@HPAK@Z
1627?GetColorFromValue@DirectUI@@YAJPAVElement@1@PAVValue@1@PAK@Z
1628?GetColorTrans@Value@DirectUI@@SAPAV12@XZ
1629?GetColorize@Element@DirectUI@@QAAHXZ
1630?GetColumn@GridItemProxy@DirectUI@@AAAJPAH@Z
1631?GetColumnCount@GridProxy@DirectUI@@AAAJPAH@Z
1632?GetColumnHeaderItems@TableItemProvider@DirectUI@@UAAJPAPAUtagSAFEARRAY@@@Z
1633?GetColumnHeaders@TableProvider@DirectUI@@UAAJPAPAUtagSAFEARRAY@@@Z
1634?GetCommonDrawTextFlags@Element@DirectUI@@AAAIH@Z
1635?GetCompositingQuality@Movie@DirectUI@@QAAHXZ
1636?GetConnect@Bind@DirectUI@@QAAPBGPAPAVValue@2@@Z
1637?GetContainingGrid@GridItemProxy@DirectUI@@AAAJPAPAUIRawElementProviderSimple@@@Z
1638?GetContent@ElementProxy@DirectUI@@IAAJPAUtagVARIANT@@PAUIAccessible@@@Z
1639?GetContentAlign@Element@DirectUI@@QAAHXZ
1640?GetContentCrossfadeOpacity@TouchScrollViewer@DirectUI@@QAAMXZ
1641?GetContentDesiredSize@XBaby@DirectUI@@UAA?AUtagSIZE@@HH@Z
1642?GetContentSize@CCBase@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1643?GetContentSize@CCBaseCheckRadioButton@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1644?GetContentSize@CCCommandLink@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1645?GetContentSize@CCHScrollBar@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1646?GetContentSize@CCListBox@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1647?GetContentSize@CCListView@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1648?GetContentSize@CCPushButton@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1649?GetContentSize@CCSysLink@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1650?GetContentSize@CCTreeView@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1651?GetContentSize@CCVScrollBar@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1652?GetContentSize@Combobox@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1653?GetContentSize@Edit@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1654?GetContentSize@Element@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1655?GetContentSize@Progress@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1656?GetContentSize@PushButton@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1657?GetContentSize@RichText@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
1658?GetContentString@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1659?GetContentStringAsDisplayed@Edit@DirectUI@@UAAPBGPAPAVValue@2@@Z
1660?GetContentStringAsDisplayed@Element@DirectUI@@UAAPBGPAPAVValue@2@@Z
1661?GetContentStringAsDisplayed@TextGraphic@DirectUI@@UAAPBGPAPAVValue@2@@Z
1662?GetContentStringAsDisplayed@TouchEditBase@DirectUI@@UAAPBGPAPAVValue@2@@Z
1663?GetControlType@ElementProxy@DirectUI@@IAAXPAUtagVARIANT@@PAUIAccessible@@@Z
1664?GetControllerFor@TouchEditBase@DirectUI@@UAAJPAPAUIUnknown@@@Z
1665?GetCount@CCListBox@DirectUI@@QAAHXZ
1666?GetCount@Pages@DirectUI@@QAAIXZ
1667?GetCreationFlags@XElement@DirectUI@@UAAIXZ
1668?GetCurrentCols@GridLayout@DirectUI@@IAAIH@Z
1669?GetCurrentCols@GridLayout@DirectUI@@IAAIPAVElement@2@@Z
1670?GetCurrentPage@Browser@DirectUI@@QAAPAVElement@2@XZ
1671?GetCurrentPageID@Browser@DirectUI@@QAAGXZ
1672?GetCurrentRows@GridLayout@DirectUI@@IAAIH@Z
1673?GetCurrentRows@GridLayout@DirectUI@@IAAIPAVElement@2@@Z
1674?GetCursor@Value@DirectUI@@QAAPAUCursor@2@XZ
1675?GetCursorNull@Value@DirectUI@@SAPAV12@XZ
1676?GetDPI@Element@DirectUI@@QAAHXZ
1677?GetDataEntry@Macro@DirectUI@@QAAPAUIDataEntry@2@XZ
1678?GetDblListEmpty@Value@DirectUI@@SAPAV12@XZ
1679?GetDefaultButton@DialogElement@DirectUI@@UAAPAVElement@2@XZ
1680?GetDefaultButton@DialogElementCore@DirectUI@@QAAPAVElement@2@XZ
1681?GetDefaultButtonTracking@DialogElement@DirectUI@@UAA_NXZ
1682?GetDefaultButtonTracking@XBaby@DirectUI@@UAA_NXZ
1683?GetDeferObject@Element@DirectUI@@QAAPAVDeferCycle@2@XZ
1684?GetDesiredSize@Element@DirectUI@@QAAPBUtagSIZE@@XZ
1685?GetDesiredSize@XProvider@DirectUI@@UAAJHHPAUtagSIZE@@@Z
1686?GetDirection@Element@DirectUI@@QAAHXZ
1687?GetDirty@Edit@DirectUI@@QAA_NXZ
1688?GetDisableMouseInRectCheck@TouchRepeatButton@DirectUI@@QAA_NXZ
1689?GetDispatchFromElement@DuiAccessible@DirectUI@@IAAJPAVElement@2@PAPAUIDispatch@@@Z
1690?GetDisplayNode@Element@DirectUI@@QAAPAUHGADGET__@@XZ
1691?GetDoubleList@Value@DirectUI@@QAAPAV?$DynamicArray@N$0A@@2@XZ
1692?GetDrawOutlines@Movie@DirectUI@@QAA_NXZ
1693?GetEdgeHighlightColor@Element@DirectUI@@QAAPBUFill@2@PAPAVValue@2@@Z
1694?GetEdgeHighlightThickness@Element@DirectUI@@QAAPBUtagRECT@@PAPAVValue@2@@Z
1695?GetElListNull@Value@DirectUI@@SAPAV12@XZ
1696?GetElement@CCBaseScrollBar@DirectUI@@UAAPAVElement@2@XZ
1697?GetElement@ElementProvider@DirectUI@@UAAPDVElement@2@XZ
1698?GetElement@NativeHWNDHost@DirectUI@@QAAPAVElement@2@XZ
1699?GetElement@ScrollBar@DirectUI@@UAAPAVElement@2@XZ
1700?GetElement@TaskPage@DirectUI@@IAAPAVElement@2@XZ
1701?GetElement@Value@DirectUI@@QAAPAVElement@2@XZ
1702?GetElement@XHost@DirectUI@@QAAPAVElement@2@XZ
1703?GetElementKey@ElementProvider@DirectUI@@QAAPBVElement@2@XZ
1704?GetElementList@Value@DirectUI@@QAAPAV?$DynamicArray@PAVElement@DirectUI@@$0A@@2@XZ
1705?GetElementMovesOnIHMNotify@TouchEditBase@DirectUI@@QAA_NXZ
1706?GetElementNull@Value@DirectUI@@SAPAV12@XZ
1707?GetElementProviderImpl@Element@DirectUI@@UAAJPAVInvokeHelper@2@PAPAVElementProvider@2@@Z
1708?GetElementProviderImpl@TouchSelect@DirectUI@@UAAJPAVInvokeHelper@2@PAPAVElementProvider@2@@Z
1709?GetElementProviderImpl@XBaby@DirectUI@@UAAJPAVInvokeHelper@2@PAPAVElementProvider@2@@Z
1710?GetElementScaleFactor@Element@DirectUI@@QAAMXZ
1711?GetElementScaledFloat@Value@DirectUI@@QAAMPAVElement@2@@Z
1712?GetElementScaledInt@Value@DirectUI@@QAAHPAVElement@2@@Z
1713?GetElementScaledPoint@Value@DirectUI@@QAAXPAVElement@2@PAUtagPOINT@@@Z
1714?GetElementScaledRect@Value@DirectUI@@QAAXPAVElement@2@PAUtagRECT@@@Z
1715?GetElementScaledSize@Value@DirectUI@@QAAXPAVElement@2@PAUtagSIZE@@@Z
1716?GetEmbeddedFragmentRoots@ElementProvider@DirectUI@@UAAJPAPAUtagSAFEARRAY@@@Z
1717?GetEnabled@Element@DirectUI@@QAA_NXZ
1718?GetEncodedContentString@Element@DirectUI@@QAAJPAGI@Z
1719?GetEncodedContentStringLength@Element@DirectUI@@QAAIXZ
1720?GetEncodedString@Value@DirectUI@@QAAJPAGI@Z
1721?GetEncodedStringLength@Value@DirectUI@@QAAIXZ
1722?GetEnforceSize@PushButton@DirectUI@@QAA_NXZ
1723?GetExpand@Macro@DirectUI@@QAAPBGPAPAVValue@2@@Z
1724?GetExpandCollapseState@EventManager@DirectUI@@CAXPAUtagVARIANT@@@Z
1725?GetExpanded@Expandable@DirectUI@@QAA_NXZ
1726?GetExprNull@Value@DirectUI@@SAPAV12@XZ
1727?GetExpression@Value@DirectUI@@QAAPAVExpression@2@XZ
1728?GetExtent@Element@DirectUI@@QAAPBUtagSIZE@@PAPAVValue@2@@Z
1729?GetFactory@RichText@DirectUI@@QAAPAUIDWriteFactory@@XZ
1730?GetFactoryLock@Element@DirectUI@@SAPAU_RTL_CRITICAL_SECTION@@XZ
1731?GetFill@Value@DirectUI@@QAAPBUFill@2@XZ
1732?GetFillpartElement@TouchSlider@DirectUI@@QAAPAVElement@2@XZ
1733?GetFilterOnPaste@TouchEditBase@DirectUI@@QAA_NXZ
1734?GetFlags@TouchHWNDElement@DirectUI@@QAA?AW4TouchHWNDElementFlags@2@XZ
1735?GetFloat@Value@DirectUI@@QAAMXZ
1736?GetFloatOne@Value@DirectUI@@SAPAV12@XZ
1737?GetFloatZero@Value@DirectUI@@SAPAV12@XZ
1738?GetFocus@HWNDElementProvider@DirectUI@@UAAJPAPAUIRawElementProviderFragment@@@Z
1739?GetFocus@HWNDElementProxy@DirectUI@@IAAJPAPAUIRawElementProviderFragment@@@Z
1740?GetFocusableElement@XBaby@DirectUI@@UAAPAVElement@2@XZ
1741?GetFocusedHWNDElement@HWNDElement@DirectUI@@SAPAV12@XZ
1742?GetFont@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1743?GetFont@HWNDHost@DirectUI@@IAAPAUHFONT__@@XZ
1744?GetFontFace@Element@DirectUI@@QAAPBGPAPAVValue@2@@Z
1745?GetFontQuality@Element@DirectUI@@QAAHXZ
1746?GetFontSize@Element@DirectUI@@QAAHXZ
1747?GetFontStyle@Element@DirectUI@@QAAHXZ
1748?GetFontWeight@Element@DirectUI@@QAAHXZ
1749?GetForceEditTextToLTR@TouchEditBase@DirectUI@@QAA_NXZ
1750?GetForegroundColor@Element@DirectUI@@QAAPBUFill@2@PAPAVValue@2@@Z
1751?GetForegroundColorRef@RichText@DirectUI@@UAAJPAK@Z
1752?GetForegroundColorRef@TouchButton@DirectUI@@UAAJPAK@Z
1753?GetForegroundStdColor@Element@DirectUI@@QAAHXZ
1754?GetFragmentRoot@ElementProxy@DirectUI@@IAAJPAPAUIRawElementProviderFragmentRoot@@@Z
1755?GetFrameDuration@AnimationStrip@DirectUI@@QAAHXZ
1756?GetFrameIndex@AnimationStrip@DirectUI@@QAAHXZ
1757?GetFrameWidth@AnimationStrip@DirectUI@@QAAHXZ
1758?GetGetSheetCallback@DUIXmlParser@DirectUI@@QAAP6APAVValue@2@PBGPAX@ZXZ
1759?GetGlobalIndex@ClassInfoBase@DirectUI@@UBAIXZ
1760?GetGraphic@Value@DirectUI@@QAAPAUGraphic@2@XZ
1761?GetHDC@DCSurface@DirectUI@@QAAPAUHDC__@@XZ
1762?GetHInstance@DUIXmlParser@DirectUI@@QAAPAUHINSTANCE__@@XZ
1763?GetHScroll@ScrollViewer@DirectUI@@MAAPAVBaseScrollBar@2@XZ
1764?GetHScroll@StyledScrollViewer@DirectUI@@MAAPAVBaseScrollBar@2@XZ
1765?GetHScrollbar@TouchScrollViewer@DirectUI@@QAAJPAPAVElement@2@@Z
1766?GetHWND@HWNDElement@DirectUI@@UAAPAUHWND__@@XZ
1767?GetHWND@HWNDHost@DirectUI@@UAAPAUHWND__@@XZ
1768?GetHWND@NativeHWNDHost@DirectUI@@QAAPAUHWND__@@XZ
1769?GetHWND@XHost@DirectUI@@QAAPAUHWND__@@XZ
1770?GetHWNDParent@HWNDHost@DirectUI@@QAAPAUHWND__@@XZ
1771?GetHandle@ResourceModuleHandles@DirectUI@@QAAJPBGPAPAUHINSTANCE__@@@Z
1772?GetHandleEnter@TouchButton@DirectUI@@QAA_NXZ
1773?GetHandleEnterKey@DialogElement@DirectUI@@UAA_NXZ
1774?GetHandleGlobalEnter@TouchButton@DirectUI@@QAA_NXZ
1775?GetHasShield@CCPushButton@DirectUI@@QAA_NXZ
1776?GetHeight@Element@DirectUI@@QAAHXZ
1777?GetHighDPI@Element@DirectUI@@QAA_NXZ
1778?GetHostedElementID@XBaby@DirectUI@@UAAJPAG@Z
1779?GetHostedElementID@XProvider@DirectUI@@UAAJPAG@Z
1780?GetHwnd@ElementProxy@DirectUI@@IAAJPAPAUHWND__@@@Z
1781?GetID@Element@DirectUI@@QAAGXZ
1782?GetIDsOfNames@DuiAccessible@DirectUI@@UAAJABU_GUID@@PAPAGIKPAJ@Z
1783?GetIHMRect@TouchHWNDElement@DirectUI@@QAAJPAUtagRECT@@@Z
1784?GetIHMState@TouchHWNDElement@DirectUI@@QAA?AW4IHMState@2@XZ
1785?GetIMEComposing@TouchEditBase@DirectUI@@QAA_NXZ
1786?GetIdentityString@DuiAccessible@DirectUI@@UAAJKPAPAEPAK@Z
1787?GetIdentityString@HWNDHostAccessible@DirectUI@@UAAJKPAPAEPAK@Z
1788?GetIgnoredKeyCombos@TouchEditBase@DirectUI@@QAA?AW4TouchEditFilteredKeyComboFlags@2@XZ
1789?GetImage@Value@DirectUI@@QAAPAX_N@Z
1790?GetImmediateChild@Element@DirectUI@@QAAPAV12@PAV12@@Z
1791?GetImmersiveFocusRectOffsets@Element@DirectUI@@UAAXPAUtagRECT@@@Z
1792?GetImmersiveFocusRectOffsets@TouchButton@DirectUI@@UAAXPAUtagRECT@@@Z
1793?GetImmersiveFocusRectOffsets@TouchCheckBox@DirectUI@@UAAXPAUtagRECT@@@Z
1794?GetImmersiveFocusRectOffsets@TouchHyperLink@DirectUI@@UAAXPAUtagRECT@@@Z
1795?GetIndex@Element@DirectUI@@QAAHXZ
1796?GetInertiaEndpointVisibleRect@TouchScrollViewer@DirectUI@@QAAXPAUtagRECT@@@Z
1797?GetInertiaEndpointZoomLevel@TouchScrollViewer@DirectUI@@QAAMM@Z
1798?GetInnerBorderThickness@TouchEdit2@DirectUI@@QAAPBUtagRECT@@PAPAVValue@2@@Z
1799?GetInnerHWND@XElement@DirectUI@@QAAPAUHWND__@@XZ
1800?GetInputScope@TouchEdit2@DirectUI@@QAA?AW4__MIDL___MIDL_itf_inputscope_0000_0000_0001@@XZ
1801?GetInt@EventManager@DirectUI@@CAJPAUtagVARIANT@@PAVValue@2@@Z
1802?GetInt@Value@DirectUI@@QAAHXZ
1803?GetIntMinusOne@Value@DirectUI@@SAPAV12@XZ
1804?GetIntZero@Value@DirectUI@@SAPAV12@XZ
1805?GetIntegrateIMECandidateList@TouchEditBase@DirectUI@@QAA_NXZ
1806?GetInteractionMode@TouchScrollViewer@DirectUI@@QAAHXZ
1807?GetInterpolationMode@Movie@DirectUI@@QAAHXZ
1808?GetInvokeHelper@InvokeManager@DirectUI@@SAJPAPAVInvokeHelper@2@@Z
1809?GetIsContinuous@TouchSlider@DirectUI@@QAA_NXZ
1810?GetIsPressed@TouchSlider@DirectUI@@QAA_NXZ
1811?GetIsReadOnly@ValueProxy@DirectUI@@AAAJPAH@Z
1812?GetIsSelected@NavigatorSelectionItemProxy@DirectUI@@AAAJPAVBrowser@2@PAH@Z
1813?GetIsSelectionRequired@BrowserSelectionProxy@DirectUI@@AAAJPAH@Z
1814?GetIsSelectionRequired@SelectorSelectionProxy@DirectUI@@AAAJPAH@Z
1815?GetIsShowOnOffFeedback@TouchSlider@DirectUI@@QAA_NXZ
1816?GetIsVertical@TouchSlider@DirectUI@@QAA_NXZ
1817?GetItem@GridProvider@DirectUI@@UAAJHHPAPAUIRawElementProviderSimple@@@Z
1818?GetItem@GridProxy@DirectUI@@AAAJIIPAPAUIRawElementProviderSimple@@@Z
1819?GetItemCount@TouchSelect@DirectUI@@QAAKXZ
1820?GetItemData@TouchSelect@DirectUI@@QAAJHPAPAUIUnknown@@@Z
1821?GetItemData@TouchSelectItem@DirectUI@@QAAJPAPAUIUnknown@@@Z
1822?GetItemHeightInPopup@TouchSelect@DirectUI@@QAAHXZ
1823?GetItemState@CCTreeView@DirectUI@@QAAIQAU_TREEITEM@@@Z
1824?GetKeyFocused@Element@DirectUI@@UAA_NXZ
1825?GetKeyFocused@HWNDHost@DirectUI@@UAA_NXZ
1826?GetKeyFocusedElement@DialogElement@DirectUI@@UAAPAVElement@2@XZ
1827?GetKeyFocusedElement@HWNDElement@DirectUI@@SAPAVElement@2@XZ
1828?GetKeyWithin@Element@DirectUI@@QAA_NXZ
1829?GetKeyWithinChild@Element@DirectUI@@QAAPAV12@XZ
1830?GetKeyboardNavigationCapture@TouchEditBase@DirectUI@@QAA?AW4TouchEditKeyboardNavigationCapture@2@XZ
1831?GetLabel@ElementProxy@DirectUI@@IAAJPAUtagVARIANT@@@Z
1832?GetLayout@Element@DirectUI@@QAAPAVLayout@2@PAPAVValue@2@@Z
1833?GetLayout@Value@DirectUI@@QAAPAVLayout@2@XZ
1834?GetLayoutChildCount@Layout@DirectUI@@QAAIPAVElement@2@@Z
1835?GetLayoutIndexFromChild@Layout@DirectUI@@QAAHPAVElement@2@0@Z
1836?GetLayoutNull@Value@DirectUI@@SAPAV12@XZ
1837?GetLayoutPos@Element@DirectUI@@QAAHXZ
1838?GetLightDismissIHM@TouchHWNDElement@DirectUI@@QAA_NXZ
1839?GetLine@CCBaseScrollBar@DirectUI@@UAAHXZ
1840?GetLine@FlowLayout@DirectUI@@QAAHPAVElement@2@0@Z
1841?GetLine@ScrollBar@DirectUI@@UAAHXZ
1842?GetLine@VerticalFlowLayout@DirectUI@@QAAHPAVElement@2@0@Z
1843?GetLineCount@RichText@DirectUI@@QAAKXZ
1844?GetLineSize@CCTrackBar@DirectUI@@QAAHXZ
1845?GetLinkIndicatorsToContent@TouchScrollViewer@DirectUI@@QAA_NXZ
1846?GetLocation@Element@DirectUI@@QAAPBUtagPOINT@@PAPAVValue@2@@Z
1847?GetManipulationCompositor@TouchScrollViewer@DirectUI@@QAAPAUIDirectManipulationCompositor@@XZ
1848?GetManipulationHorizontalAlignment@TouchScrollViewer@DirectUI@@QAAHXZ
1849?GetManipulationManager@TouchScrollViewer@DirectUI@@QAAPAUIDirectManipulationManager@@XZ
1850?GetManipulationVerticalAlignment@TouchScrollViewer@DirectUI@@QAAHXZ
1851?GetManipulationViewport@TouchScrollViewer@DirectUI@@QAAPAUIDirectManipulationViewport@@_N@Z
1852?GetMargin@Element@DirectUI@@QAAPBUtagRECT@@PAPAVValue@2@@Z
1853?GetMaxLength@Edit@DirectUI@@QAAHXZ
1854?GetMaxLength@TouchEditBase@DirectUI@@QAAHXZ
1855?GetMaximum@CCBaseScrollBar@DirectUI@@UAAHXZ
1856?GetMaximum@ModernProgressBar@DirectUI@@QAAHXZ
1857?GetMaximum@Progress@DirectUI@@QAAHXZ
1858?GetMaximum@ScrollBar@DirectUI@@UAAHXZ
1859?GetMetering@TouchSlider@DirectUI@@QAAHXZ
1860?GetMinSize@Element@DirectUI@@QAAPBUtagSIZE@@PAPAVValue@2@@Z
1861?GetMinimum@CCBaseScrollBar@DirectUI@@UAAHXZ
1862?GetMinimum@ModernProgressBar@DirectUI@@QAAHXZ
1863?GetMinimum@Progress@DirectUI@@QAAHXZ
1864?GetMinimum@ScrollBar@DirectUI@@UAAHXZ
1865?GetModule@ClassInfoBase@DirectUI@@UBAPAUHINSTANCE__@@XZ
1866?GetModuleBase@CallstackTracker@DirectUI@@AAA_KPAX_K@Z
1867?GetMouseFocused@Element@DirectUI@@QAA_NXZ
1868?GetMouseWithin@Element@DirectUI@@QAA_NXZ
1869?GetMouseWithinChild@Element@DirectUI@@QAAPAV12@XZ
1870?GetMouseWithinHorizontalScrollRegion@TouchScrollViewer@DirectUI@@QAA_NXZ
1871?GetMoveCaretToEndOnSyncContent@TouchEditBase@DirectUI@@QAA_NXZ
1872?GetMultiline@Edit@DirectUI@@QAA_NXZ
1873?GetMultiline@TouchEditBase@DirectUI@@QAA_NXZ
1874?GetName@ClassInfoBase@DirectUI@@UBAPBGXZ
1875?GetNote@CCCommandLink@DirectUI@@QAAPBGPAPAVValue@2@@Z
1876?GetNotificationSinkHWND@XElement@DirectUI@@UAAPAUHWND__@@XZ
1877?GetNull@Value@DirectUI@@SAPAV12@XZ
1878?GetOffText@TouchSwitch@DirectUI@@QAAPBGPAPAVValue@2@@Z
1879?GetOnText@TouchSwitch@DirectUI@@QAAPBGPAPAVValue@2@@Z
1880?GetOptimizeMove@HWNDHost@DirectUI@@QAA_NXZ
1881?GetOrder@ScrollBar@DirectUI@@QAAHXZ
1882?GetOverhang@Element@DirectUI@@QAA_NXZ
1883?GetOverrideButtonBackground@CCPushButton@DirectUI@@QAA_NXZ
1884?GetOverrideScaleFactor@DUIXmlParser@DirectUI@@QBA_NPAM@Z
1885?GetPICount@ClassInfoBase@DirectUI@@UBAIXZ
1886?GetPVLAnimationState@Element@DirectUI@@QAAHXZ
1887?GetPadding@Element@DirectUI@@QAAPBUtagRECT@@PAPAVValue@2@@Z
1888?GetPage@CCBaseScrollBar@DirectUI@@UAAHXZ
1889?GetPage@Pages@DirectUI@@QAAPAVElement@2@I@Z
1890?GetPage@Pages@DirectUI@@QAAPAVElement@2@PBG@Z
1891?GetPage@ScrollBar@DirectUI@@UAAHXZ
1892?GetPageInc@BaseScrollBar@DirectUI@@QAAHXZ
1893?GetPageRCID@TaskPage@DirectUI@@MAAIXZ
1894?GetPageResID@TaskPage@DirectUI@@MAAPBGXZ
1895?GetPages@Browser@DirectUI@@QAAPAVPages@2@XZ
1896?GetParent@Element@DirectUI@@QAAPAV12@XZ
1897?GetParentHWND@TaskPage@DirectUI@@QAAPAUHWND__@@XZ
1898?GetParser@DUIFactory@DirectUI@@QAAPAVDUIXmlParser@2@XZ
1899?GetParserCommon@DUIXmlParser@DirectUI@@IAAJPAPAV12@@Z
1900?GetPasswordCharacter@Edit@DirectUI@@QAAHXZ
1901?GetPasswordCharacter@TouchEditBase@DirectUI@@QAAHXZ
1902?GetPasswordRevealMode@TouchEdit2@DirectUI@@QAA?AW4TouchEditPasswordRevealMode@2@XZ
1903?GetPath@Movie@DirectUI@@QAAPBGPAPAVValue@2@@Z
1904?GetPatternProvider@ElementProvider@DirectUI@@UAAJHPAPAUIUnknown@@@Z
1905?GetPinning@BaseScrollViewer@DirectUI@@QAAHXZ
1906?GetPixelOffsetMode@Movie@DirectUI@@QAAHXZ
1907?GetPlay@AnimationStrip@DirectUI@@QAA_NXZ
1908?GetPlayAllFramesMode@Movie@DirectUI@@QAA_NXZ
1909?GetPoint@Value@DirectUI@@QAAPBUtagPOINT@@XZ
1910?GetPointZero@Value@DirectUI@@SAPAV12@XZ
1911?GetPopupBounds@TouchSelect@DirectUI@@QAAPBUtagRECT@@PAPAVValue@2@@Z
1912?GetPosition@CCBaseScrollBar@DirectUI@@UAAHXZ
1913?GetPosition@ModernProgressBar@DirectUI@@QAAHXZ
1914?GetPosition@Progress@DirectUI@@QAAHXZ
1915?GetPosition@ScrollBar@DirectUI@@UAAHXZ
1916?GetPredictedVisibleRect@TouchScrollViewer@DirectUI@@QAAXPAUtagRECT@@@Z
1917?GetPreserveAlphaChannel@Element@DirectUI@@QBA_NXZ
1918?GetPressed@Button@DirectUI@@QAA_NXZ
1919?GetPressed@TouchButton@DirectUI@@QAA_NXZ
1920?GetPreventFormatChangeUpdatingModifiedState@TouchEditBase@DirectUI@@QAA_NXZ
1921?GetProcs@Schema@DirectUI@@CAJXZ
1922?GetPromptText@TouchEdit2@DirectUI@@QAAPBGPAPAVValue@2@@Z
1923?GetPromptWithCaret@TouchEdit2@DirectUI@@QAA_NXZ
1924?GetPropValPairInfo@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAUIClassInfo@2@PBG2PAPBUPropertyInfo@2@PAPAVValue@2@@Z
1925?GetPropValPairInfo@DUIXmlParser@DirectUI@@IAAJULINEINFO@2@PAUIClassInfo@2@PBG2PAPBUPropertyInfo@2@PAPAVValue@2@@Z
1926?GetProperty@Bind@DirectUI@@QAAPBGPAPAVValue@2@@Z
1927?GetProperty@ElementProxy@DirectUI@@IAAJPAUtagVARIANT@@H@Z
1928?GetPropertyValue@ElementProvider@DirectUI@@UAAJHPAUtagVARIANT@@@Z
1929?GetProportional@CCBaseScrollBar@DirectUI@@UAA_NXZ
1930?GetProportional@ScrollBar@DirectUI@@UAA_NXZ
1931?GetProvider@XElement@DirectUI@@QAAPAUIXProvider@2@XZ
1932?GetProviderOptions@ElementProxy@DirectUI@@IAAJPAW4ProviderOptions@@@Z
1933?GetProxyCreator@?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1934?GetProxyCreator@?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1935?GetProxyCreator@?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1936?GetProxyCreator@?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1937?GetProxyCreator@?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1938?GetProxyCreator@?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1939?GetProxyCreator@?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1940?GetProxyCreator@?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1941?GetProxyCreator@?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1942?GetProxyCreator@?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1943?GetProxyCreator@?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1944?GetProxyCreator@?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1945?GetProxyCreator@?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1946?GetProxyCreator@ElementProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1947?GetProxyCreator@ExpandCollapseProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1948?GetProxyCreator@GridItemProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1949?GetProxyCreator@GridProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1950?GetProxyCreator@HWNDElementProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1951?GetProxyCreator@InvokeProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1952?GetProxyCreator@RangeValueProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1953?GetProxyCreator@ScrollItemProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1954?GetProxyCreator@ScrollProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1955?GetProxyCreator@SelectionItemProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1956?GetProxyCreator@SelectionProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1957?GetProxyCreator@TableItemProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1958?GetProxyCreator@TableProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1959?GetProxyCreator@ToggleProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1960?GetProxyCreator@ValueProvider@DirectUI@@UAAP6APAVProviderProxy@2@PAVElement@2@@ZXZ
1961?GetRangeMax@CCTrackBar@DirectUI@@QAAHXZ
1962?GetRangeMax@TouchSlider@DirectUI@@QAAHXZ
1963?GetRangeMin@CCTrackBar@DirectUI@@QAAHXZ
1964?GetRangeMin@TouchSlider@DirectUI@@QAAHXZ
1965?GetRawValue@Element@DirectUI@@QAAPAVValue@2@PBUPropertyInfo@2@HPAUUpdateCache@2@@Z
1966?GetReadOnly@TouchEditBase@DirectUI@@QAA_NXZ
1967?GetRect@Value@DirectUI@@QAAPBUtagRECT@@XZ
1968?GetRectZero@Value@DirectUI@@SAPAV12@XZ
1969?GetRefCount@Value@DirectUI@@QBAHXZ
1970?GetReferencePoint@RefPointElement@DirectUI@@QAAPBUtagPOINT@@PAPAVValue@2@@Z
1971?GetRegisteredDefaultButton@DialogElement@DirectUI@@UAAPAVElement@2@XZ
1972?GetRenderBorderThickness@Element@DirectUI@@QAAXPAUtagRECT@@@Z
1973?GetRenderEdgeHighlightThickness@Element@DirectUI@@QAAXPAUtagRECT@@@Z
1974?GetRenderMargin@Element@DirectUI@@QAAXPAUtagRECT@@@Z
1975?GetRenderMinSize@Element@DirectUI@@QAAXPAUtagSIZE@@@Z
1976?GetRenderPadding@Element@DirectUI@@QAAXPAUtagRECT@@@Z
1977?GetRepeat@Movie@DirectUI@@QAA_NXZ
1978?GetResourceHInstance@DUIXmlParser@DirectUI@@QAAPAUHINSTANCE__@@XZ
1979?GetRoot@Element@DirectUI@@QAAPAV12@XZ
1980?GetRoot@XProvider@DirectUI@@IAAPAVElement@2@XZ
1981?GetRootRelativeBounds@Element@DirectUI@@QAAJPAUtagRECT@@@Z
1982?GetRow@GridItemProxy@DirectUI@@AAAJPAH@Z
1983?GetRowCount@GridProxy@DirectUI@@AAAJPAH@Z
1984?GetRowHeaderItems@TableItemProvider@DirectUI@@UAAJPAPAUtagSAFEARRAY@@@Z
1985?GetRowHeaders@TableProvider@DirectUI@@UAAJPAPAUtagSAFEARRAY@@@Z
1986?GetRuntimeId@ElementProvider@DirectUI@@UAAJPAPAUtagSAFEARRAY@@@Z
1987?GetRuntimeId@ElementProxy@DirectUI@@IAAJPAPAUtagSAFEARRAY@@@Z
1988?GetScaledFloat@Value@DirectUI@@QAAMM@Z
1989?GetScaledInt@Value@DirectUI@@QAAHM@Z
1990?GetScaledInt@Value@DirectUI@@QAAPBUScaledInt@2@XZ
1991?GetScaledPoint@Value@DirectUI@@QAAXMPAUtagPOINT@@@Z
1992?GetScaledRect@Value@DirectUI@@QAAXMPAUtagRECT@@@Z
1993?GetScaledSize@Value@DirectUI@@QAAXMPAUtagSIZE@@@Z
1994?GetScrollBar@ScrollProxy@DirectUI@@AAAPAVBaseScrollBar@2@_N@Z
1995?GetScrollBarHelper@ScrollProxy@DirectUI@@AAAPAVBaseScrollBar@2@PAVElement@2@_N@Z
1996?GetScrollPadding@TouchScrollViewer@DirectUI@@QAAPBUtagRECT@@PAPAVValue@2@@Z
1997?GetScrollPercent@ScrollProxy@DirectUI@@AAAJ_NPAN@Z
1998?GetScrollable@ScrollProxy@DirectUI@@AAAJ_NPAH@Z
1999?GetSelected@Element@DirectUI@@QAA_NXZ
2000?GetSelection@BrowserSelectionProxy@DirectUI@@AAAJPAPAUtagSAFEARRAY@@@Z
2001?GetSelection@Combobox@DirectUI@@QAAHXZ
2002?GetSelection@SelectionProvider@DirectUI@@UAAJPAPAUtagSAFEARRAY@@@Z
2003?GetSelection@Selector@DirectUI@@QAAPAVElement@2@XZ
2004?GetSelection@TouchEdit2@DirectUI@@QAAJPAJ0@Z
2005?GetSelection@TouchSelect@DirectUI@@QAAPAVElement@2@XZ
2006?GetSelectionBackgroundColor@TouchEditBase@DirectUI@@QAAPAVValue@2@XZ
2007?GetSelectionContainer@SelectorSelectionItemProxy@DirectUI@@AAAJPAPAUIRawElementProviderSimple@@@Z
2008?GetSelectionForegroundColor@TouchEditBase@DirectUI@@QAAPAVValue@2@XZ
2009?GetSelectionIndex@TouchSelect@DirectUI@@QAAHXZ
2010?GetShadowIntensity@Element@DirectUI@@QAAHXZ
2011?GetSheet@DUIXmlParser@DirectUI@@QAAJPBGPAPAVValue@2@@Z
2012?GetSheet@Element@DirectUI@@QAAPAVStyleSheet@2@XZ
2013?GetSheetContext@DUIXmlParser@DirectUI@@QAAPAXXZ
2014?GetSheetNull@Value@DirectUI@@SAPAV12@XZ
2015?GetShortcut@Element@DirectUI@@QAAHXZ
2016?GetShortcutChar@Element@DirectUI@@QAAGXZ
2017?GetShortcutChar@RichText@DirectUI@@QAAGXZ
2018?GetShowClearButtonMinWidth@TouchEdit2@DirectUI@@QAAHXZ
2019?GetShowKeyFocus@TouchButton@DirectUI@@QAA_NXZ
2020?GetShowTick@TouchSlider@DirectUI@@QAA_NXZ
2021?GetSinkRect@HWNDHost@DirectUI@@AAAXPBUtagRECT@@PAU3@@Z
2022?GetSize@Value@DirectUI@@QAAPBUtagSIZE@@XZ
2023?GetSizeZero@Value@DirectUI@@SAPAV12@XZ
2024?GetSmoothingMode@Movie@DirectUI@@QAAHXZ
2025?GetSnapIntervalX@TouchScrollViewer@DirectUI@@QAAMXZ
2026?GetSnapIntervalY@TouchScrollViewer@DirectUI@@QAAMXZ
2027?GetSnapMode@TouchScrollViewer@DirectUI@@QAAHXZ
2028?GetSnapOffsetX@TouchScrollViewer@DirectUI@@QAAMXZ
2029?GetSnapOffsetY@TouchScrollViewer@DirectUI@@QAAMXZ
2030?GetSnapPointCollectionX@TouchScrollViewer@DirectUI@@QAAPAV?$DynamicArray@N$0A@@2@PAPAVValue@2@@Z
2031?GetSnapPointCollectionY@TouchScrollViewer@DirectUI@@QAAPAV?$DynamicArray@N$0A@@2@PAPAVValue@2@@Z
2032?GetState@ModernProgressBar@DirectUI@@QAAHXZ
2033?GetStaticColor@HWNDHost@DirectUI@@IAA_NPAUHDC__@@PAPAUHBRUSH__@@@Z
2034?GetStepCount@TouchSlider@DirectUI@@QAAHXZ
2035?GetString@EventManager@DirectUI@@CAJPAUtagVARIANT@@PAVValue@2@@Z
2036?GetString@Value@DirectUI@@QAAPBGXZ
2037?GetStringDynamicScaling@Value@DirectUI@@QAAPBGXZ
2038?GetStringNull@Value@DirectUI@@SAPAV12@XZ
2039?GetStringRPNull@Value@DirectUI@@SAPAV12@XZ
2040?GetStyle@CCTreeView@DirectUI@@QAAKXZ
2041?GetStyleSheet@Value@DirectUI@@QAAPAVStyleSheet@2@XZ
2042?GetSubContent@TouchCommandButton@DirectUI@@QAAPBGPAPAVValue@2@@Z
2043?GetSuppressClearButton@TouchEdit2@DirectUI@@QAA_NXZ
2044?GetSurfaceType@Surface@DirectUI@@SA?AW4EType@12@I@Z
2045?GetSurfaceType@Surface@DirectUI@@SAIW4EType@12@@Z
2046?GetSyncContentWhileIMEComposing@TouchEditBase@DirectUI@@QAA_NXZ
2047?GetTargetPage@Navigator@DirectUI@@QAAPBGPAPAVValue@2@@Z
2048?GetTextContentOverride@TouchSelectItem@DirectUI@@QAAPBGPAPAVValue@2@@Z
2049?GetTextDocument@TouchEdit2@DirectUI@@UAAJPAPAUITextDocument@@@Z
2050?GetTextDocument@TouchEditBase@DirectUI@@UAAJPAPAUITextDocument@@@Z
2051?GetTextGlowSize@Element@DirectUI@@QAAHXZ
2052?GetTextHeight@Edit@DirectUI@@AAAIXZ
2053?GetTextHost@TouchEdit2@DirectUI@@QAAJPAPAVITextHost@@@Z
2054?GetTextMode@TouchEditBase@DirectUI@@QAA?AW4TouchEditTextMode@2@XZ
2055?GetTextSelection@TouchEdit2@DirectUI@@QAAJPAPAUITextSelection@@@Z
2056?GetTextServices@TouchEdit2@DirectUI@@UAAJPAPAVITextServices@@@Z
2057?GetTextServices@TouchEditBase@DirectUI@@UAAJPAPAVITextServices@@@Z
2058?GetThemeChanged@HWNDHost@DirectUI@@IAAHXZ
2059?GetThemedBorder@Edit@DirectUI@@QAA_NXZ
2060?GetThumb@TouchScrollBar@DirectUI@@QAAPAVElement@2@XZ
2061?GetThumbElement@TouchSlider@DirectUI@@QAAPAVButton@2@XZ
2062?GetThumbPosition@CCTrackBar@DirectUI@@QAAHXZ
2063?GetThumbValue@TouchSlider@DirectUI@@QAAHXZ
2064?GetTickCount@TouchSlider@DirectUI@@QAAHXZ
2065?GetTitleText@TouchSwitch@DirectUI@@QAAPBGPAPAVValue@2@@Z
2066?GetToggleOnClick@TouchCheckBox@DirectUI@@QAA_NXZ
2067?GetToggleState@EventManager@DirectUI@@CAXPAUtagVARIANT@@@Z
2068?GetToggleState@ToggleProxy@DirectUI@@AAAJPAW4ToggleState@@@Z
2069?GetToggleValue@TouchSwitch@DirectUI@@QAAHXZ
2070?GetTooltip@Element@DirectUI@@QAA_NXZ
2071?GetTooltipMaxWidth@Element@DirectUI@@QAAHXZ
2072?GetTooltipMaximumLineCount@TouchHWNDElement@DirectUI@@QAAHXZ
2073?GetTopLevel@Element@DirectUI@@QAAPAV12@XZ
2074?GetTrackElement@TouchSlider@DirectUI@@QAAPAVElement@2@XZ
2075?GetTracking@CCBaseScrollBar@DirectUI@@QAA_NXZ
2076?GetTranslatedTileRects@TouchScrollViewer@DirectUI@@QAAXPAUtagRECT@@PAII@Z
2077?GetTransparent@HWNDHost@DirectUI@@QAA_NXZ
2078?GetTreatRightMouseButtonAsLeft@TouchButton@DirectUI@@QAA_NXZ
2079?GetTreeAlphaLevel@Element@DirectUI@@QAAMXZ
2080?GetTrimmedLineCount@RichText@DirectUI@@QAAKXZ
2081?GetType@DCSurface@DirectUI@@UBA?AW4EType@Surface@2@XZ
2082?GetType@Value@DirectUI@@QBAHXZ
2083?GetTypeInfo@DuiAccessible@DirectUI@@UAAJIKPAPAUITypeInfo@@@Z
2084?GetTypeInfoCount@DuiAccessible@DirectUI@@UAAJPAI@Z
2085?GetUIAElementProvider@Element@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2086?GetUIState@HWNDElement@DirectUI@@QAAGXZ
2087?GetUiaFocusDelegate@Element@DirectUI@@UAAPAV12@XZ
2088?GetUiaFocusDelegate@TouchEdit2@DirectUI@@UAAPAVElement@2@XZ
2089?GetUnavailable@Value@DirectUI@@SAPAV12@XZ
2090?GetUnset@Value@DirectUI@@SAPAV12@XZ
2091?GetVScroll@ScrollViewer@DirectUI@@MAAPAVBaseScrollBar@2@XZ
2092?GetVScroll@StyledScrollViewer@DirectUI@@MAAPAVBaseScrollBar@2@XZ
2093?GetVScrollbar@TouchScrollViewer@DirectUI@@QAAJPAPAVElement@2@@Z
2094?GetValue@Element@DirectUI@@QAAPAVValue@2@P6APBUPropertyInfo@2@XZHPAUUpdateCache@2@@Z
2095?GetValue@Element@DirectUI@@QAAPAVValue@2@PBUPropertyInfo@2@HPAUUpdateCache@2@@Z
2096?GetValue@ValueProxy@DirectUI@@AAAJPAPAG@Z
2097?GetValueList@Value@DirectUI@@QAAPAV?$DynamicArray@PAVValue@DirectUI@@$0A@@2@XZ
2098?GetValueParser@DUIXmlParser@DirectUI@@IAAJPAPAVValueParser@ParserTools@2@@Z
2099?GetVertical@ScrollBar@DirectUI@@QAA_NXZ
2100?GetViewSize@ScrollProxy@DirectUI@@AAAJ_NPAN@Z
2101?GetViewer@ScrollProxy@DirectUI@@AAAJPAPAVViewer@2@@Z
2102?GetVisible@Element@DirectUI@@QAA_NXZ
2103?GetVisibleRect@TouchScrollViewer@DirectUI@@QAAXPAUtagRECT@@@Z
2104?GetVisited@TouchHyperLink@DirectUI@@QAA_NXZ
2105?GetVisualState@TouchSlider@DirectUI@@QAAHXZ
2106?GetWantTabs@Edit@DirectUI@@QAA_NXZ
2107?GetWidth@Element@DirectUI@@QAAHXZ
2108?GetWinStyle@CCBase@DirectUI@@QAAHXZ
2109?GetWindow@DuiAccessible@DirectUI@@UAAJPAPAUHWND__@@@Z
2110?GetWindow@HWNDHostAccessible@DirectUI@@UAAJPAPAUHWND__@@@Z
2111?GetWindowAccessGradientColor@TouchHWNDElement@DirectUI@@QAAPAVValue@2@XZ
2112?GetWindowActive@Element@DirectUI@@QAA_NXZ
2113?GetWindowClassNameAndStyle@HWNDElement@DirectUI@@UAAXPAPBGPAI@Z
2114?GetWrapKeyboardNavigate@HWNDElement@DirectUI@@QAA_NXZ
2115?GetX@Element@DirectUI@@QAAHXZ
2116?GetXBabyElement@XBaby@DirectUI@@UAAPAVHWNDElement@2@XZ
2117?GetXBarVisibility@BaseScrollViewer@DirectUI@@QAAHXZ
2118?GetXOffset@BaseScrollViewer@DirectUI@@QAAHXZ
2119?GetXOffset@Viewer@DirectUI@@QAAHXZ
2120?GetXScrollHeight@BaseScrollViewer@DirectUI@@QAAHXZ
2121?GetXScrollable@BaseScrollViewer@DirectUI@@QAA_NXZ
2122?GetXScrollable@Viewer@DirectUI@@QAA_NXZ
2123?GetXmlLiteDll@DUIXmlParser@DirectUI@@KAJPAPAUHINSTANCE__@@@Z
2124?GetY@Element@DirectUI@@QAAHXZ
2125?GetYBarVisibility@BaseScrollViewer@DirectUI@@QAAHXZ
2126?GetYOffset@BaseScrollViewer@DirectUI@@QAAHXZ
2127?GetYOffset@Viewer@DirectUI@@QAAHXZ
2128?GetYScrollWidth@BaseScrollViewer@DirectUI@@QAAHXZ
2129?GetYScrollable@BaseScrollViewer@DirectUI@@QAA_NXZ
2130?GetYScrollable@Viewer@DirectUI@@QAA_NXZ
2131?GetZoomMaximum@TouchScrollViewer@DirectUI@@QAAMXZ
2132?GetZoomMinimum@TouchScrollViewer@DirectUI@@QAAMXZ
2133?GridItemPattern@Schema@DirectUI@@2HA DATA
2134?GridItem_ColumnSpan_Property@Schema@DirectUI@@2HA DATA
2135?GridItem_Column_Property@Schema@DirectUI@@2HA DATA
2136?GridItem_Parent_Property@Schema@DirectUI@@2HA DATA
2137?GridItem_RowSpan_Property@Schema@DirectUI@@2HA DATA
2138?GridItem_Row_Property@Schema@DirectUI@@2HA DATA
2139?GridPattern@Schema@DirectUI@@2HA DATA
2140?Grid_ColumnCount_Property@Schema@DirectUI@@2HA DATA
2141?Grid_RowCount_Property@Schema@DirectUI@@2HA DATA
2142?GroupControlType@Schema@DirectUI@@2HA DATA
2143?HandleAccChange@EventManager@DirectUI@@CAJPAVElement@2@PAUIRawElementProviderSimple@@PAVValue@2@2@Z
2144?HandleAccDesc@EventManager@DirectUI@@CAJPAVElement@2@PAUIRawElementProviderSimple@@PAVValue@2@2@Z
2145?HandleAccPatternChange@EventManager@DirectUI@@CAJPAVElement@2@PAUIRawElementProviderSimple@@IIHPAUtagVARIANT@@2P6AX2@Z@Z
2146?HandleAccRoleEvent@EventManager@DirectUI@@CAJPAUIRawElementProviderSimple@@PAVValue@2@1@Z
2147?HandleAccStateChange@EventManager@DirectUI@@CAJPAUIRawElementProviderSimple@@IIHPAUtagVARIANT@@1_N@Z
2148?HandleBoolProp@EventManager@DirectUI@@CAJPAVElement@2@P6A_N0@ZPAUIRawElementProviderSimple@@HPAVValue@2@3@Z
2149?HandleChildrenEvent@EventManager@DirectUI@@CAJPAVElement@2@PAVValue@2@1@Z
2150?HandleEnterKeyProp@DialogElement@DirectUI@@SAPBUPropertyInfo@2@XZ
2151?HandleEnterProp@TouchButton@DirectUI@@SAPBUPropertyInfo@2@XZ
2152?HandleGlobalEnterProp@TouchButton@DirectUI@@SAPBUPropertyInfo@2@XZ
2153?HandleRangeValue@EventManager@DirectUI@@CAJPAVElement@2@PAUIRawElementProviderSimple@@PAVValue@2@2@Z
2154?HandleScrollPos@EventManager@DirectUI@@CAJPAVElement@2@PAUIRawElementProviderSimple@@PAVValue@2@2@Z
2155?HandleSelectedChange@EventManager@DirectUI@@CAJPAUIRawElementProviderSimple@@PAVValue@2@@Z
2156?HandleStringProp@EventManager@DirectUI@@CAJPAUIRawElementProviderSimple@@HPAVValue@2@1@Z
2157?HandleToggleValue@EventManager@DirectUI@@CAJPAVElement@2@PAUIRawElementProviderSimple@@PAVValue@2@2@Z
2158?HandleUiaDestroyListener@Element@DirectUI@@UAAXXZ
2159?HandleUiaEventListener@Element@DirectUI@@UAAXPAUEvent@2@@Z
2160?HandleUiaPropertyChangingListener@Element@DirectUI@@UAAXPBUPropertyInfo@2@@Z
2161?HandleUiaPropertyListener@Element@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2162?HandleVisibilityChange@EventManager@DirectUI@@CAJPAVElement@2@I@Z
2163?HasAnimation@Element@DirectUI@@QAA_NXZ
2164?HasBorder@Element@DirectUI@@QAA_NXZ
2165?HasChildren@Element@DirectUI@@QAA_NXZ
2166?HasContent@Element@DirectUI@@QAA_NXZ
2167?HasEdgeHighlight@Element@DirectUI@@QAA_NXZ
2168?HasKeyboardFocusProperty@Schema@DirectUI@@2HA DATA
2169?HasLayout@Element@DirectUI@@QAA_NXZ
2170?HasMargin@Element@DirectUI@@QAA_NXZ
2171?HasPVLAnimationState@Element@DirectUI@@QAA_NI@Z
2172?HasPadding@Element@DirectUI@@QAA_NXZ
2173?HasSelection@TouchEdit2@DirectUI@@QAA_NXZ
2174?HasShieldProp@CCPushButton@DirectUI@@SAPBUPropertyInfo@2@XZ
2175?HaveWin32Focus@HWNDHost@DirectUI@@AAA_NXZ
2176?HeaderControlType@Schema@DirectUI@@2HA DATA
2177?HeaderItemControlType@Schema@DirectUI@@2HA DATA
2178?HeightProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2179?HelpTextProperty@Schema@DirectUI@@2HA DATA
2180?HideTouchTooltip@TouchHWNDElement@DirectUI@@QAAJXZ
2181?HideWindow@NativeHWNDHost@DirectUI@@QAAXXZ
2182?HideWindow@XHost@DirectUI@@QAAXXZ
2183?HighDPIProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2184?Home@BaseScrollBar@DirectUI@@UAAXXZ
2185?Host@NativeHWNDHost@DirectUI@@QAAXPAVElement@2@@Z
2186?Host@XHost@DirectUI@@QAAXPAVElement@2@@Z
2187?Hosted@PushButton@DirectUI@@SA?AVUID@@XZ
2188?HyperlinkControlType@Schema@DirectUI@@2HA DATA
2189?IDProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2190?IHMNotify@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
2191?IMEComposingProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2192?INITIALSTACKSKIP@CallstackTracker@DirectUI@@0HB
2193?IgnoredKeyCombosProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2194?ImageControlType@Schema@DirectUI@@2HA DATA
2195?ImmersiveColorSchemeChange@HWNDElement@DirectUI@@SA?AVUID@@XZ
2196?Init@?$PatternProvider@VExpandCollapseProvider@DirectUI@@UIExpandCollapseProvider@@$00@DirectUI@@UAAXPAVElementProvider@2@@Z
2197?Init@?$PatternProvider@VGridItemProvider@DirectUI@@UIGridItemProvider@@$01@DirectUI@@UAAXPAVElementProvider@2@@Z
2198?Init@?$PatternProvider@VGridProvider@DirectUI@@UIGridProvider@@$02@DirectUI@@UAAXPAVElementProvider@2@@Z
2199?Init@?$PatternProvider@VInvokeProvider@DirectUI@@UIInvokeProvider@@$0A@@DirectUI@@UAAXPAVElementProvider@2@@Z
2200?Init@?$PatternProvider@VRangeValueProvider@DirectUI@@UIRangeValueProvider@@$03@DirectUI@@UAAXPAVElementProvider@2@@Z
2201?Init@?$PatternProvider@VScrollItemProvider@DirectUI@@UIScrollItemProvider@@$05@DirectUI@@UAAXPAVElementProvider@2@@Z
2202?Init@?$PatternProvider@VScrollProvider@DirectUI@@UIScrollProvider@@$04@DirectUI@@UAAXPAVElementProvider@2@@Z
2203?Init@?$PatternProvider@VSelectionItemProvider@DirectUI@@UISelectionItemProvider@@$06@DirectUI@@UAAXPAVElementProvider@2@@Z
2204?Init@?$PatternProvider@VSelectionProvider@DirectUI@@UISelectionProvider@@$07@DirectUI@@UAAXPAVElementProvider@2@@Z
2205?Init@?$PatternProvider@VTableItemProvider@DirectUI@@UITableItemProvider@@$09@DirectUI@@UAAXPAVElementProvider@2@@Z
2206?Init@?$PatternProvider@VTableProvider@DirectUI@@UITableProvider@@$08@DirectUI@@UAAXPAVElementProvider@2@@Z
2207?Init@?$PatternProvider@VToggleProvider@DirectUI@@UIToggleProvider@@$0L@@DirectUI@@UAAXPAVElementProvider@2@@Z
2208?Init@?$PatternProvider@VValueProvider@DirectUI@@UIValueProvider@@$0M@@DirectUI@@UAAXPAVElementProvider@2@@Z
2209?Init@AutoThread@DirectUI@@QAAJXZ
2210?Init@BrowserSelectionProxy@DirectUI@@MAAXPAVElement@2@@Z
2211?Init@CallstackTracker@DirectUI@@SAHXZ
2212?Init@ElementProvider@DirectUI@@MAAJPAVElement@2@PAVInvokeHelper@2@@Z
2213?Init@ElementProviderManager@DirectUI@@SAJXZ
2214?Init@ElementProxy@DirectUI@@MAAXPAVElement@2@@Z
2215?Init@EventManager@DirectUI@@SAJXZ
2216?Init@ExpandCollapseProxy@DirectUI@@MAAXPAVElement@2@@Z
2217?Init@GridItemProxy@DirectUI@@MAAXPAVElement@2@@Z
2218?Init@GridProxy@DirectUI@@MAAXPAVElement@2@@Z
2219?Init@HWNDElementProvider@DirectUI@@MAAJPAVHWNDElement@2@PAVInvokeHelper@2@@Z
2220?Init@HWNDElementProxy@DirectUI@@UAAXPAVHWNDElement@2@@Z
2221?Init@InvokeHelper@DirectUI@@QAAHK@Z
2222?Init@InvokeManager@DirectUI@@SAJXZ
2223?Init@InvokeProxy@DirectUI@@MAAXPAVElement@2@@Z
2224?Init@ModernProgressBarRangeValueProxy@DirectUI@@MAAXPAVElement@2@@Z
2225?Init@NavReference@DirectUI@@QAAXPAVElement@2@PAUtagRECT@@@Z
2226?Init@NavScoring@DirectUI@@QAAXPAVElement@2@HPBUNavReference@2@@Z
2227?Init@NavigatorSelectionItemProxy@DirectUI@@MAAXPAVElement@2@@Z
2228?Init@ProgressRangeValueProxy@DirectUI@@MAAXPAVElement@2@@Z
2229?Init@ProviderProxy@DirectUI@@MAAXPAVElement@2@@Z
2230?Init@RangeValueProxy@DirectUI@@MAAXPAVElement@2@@Z
2231?Init@Schema@DirectUI@@SAJXZ
2232?Init@ScrollBarRangeValueProxy@DirectUI@@MAAXPAVElement@2@@Z
2233?Init@ScrollItemProxy@DirectUI@@MAAXPAVElement@2@@Z
2234?Init@ScrollProxy@DirectUI@@MAAXPAVElement@2@@Z
2235?Init@SelectionItemProxy@DirectUI@@MAAXPAVElement@2@@Z
2236?Init@SelectionProxy@DirectUI@@MAAXPAVElement@2@@Z
2237?Init@SelectorSelectionItemProxy@DirectUI@@MAAXPAVElement@2@@Z
2238?Init@SelectorSelectionProxy@DirectUI@@MAAXPAVElement@2@@Z
2239?Init@TableItemProxy@DirectUI@@MAAXPAVElement@2@@Z
2240?Init@TableProxy@DirectUI@@MAAXPAVElement@2@@Z
2241?Init@ToggleProxy@DirectUI@@MAAXPAVElement@2@@Z
2242?Init@ValueProxy@DirectUI@@MAAXPAVElement@2@@Z
2243?InitOnceCallback@CallstackTracker@DirectUI@@CAHPAT_RTL_RUN_ONCE@@PAXPAPAX@Z
2244?InitProcess@FontCache@DirectUI@@SAJXZ
2245?InitPropSheetPage@TaskPage@DirectUI@@MAAXPAU_PROPSHEETPAGEW@@@Z
2246?InitThread@FontCache@DirectUI@@SAJXZ
2247?Initialize@AccessibleButton@DirectUI@@QAAJPAVElement@2@PAK@Z
2248?Initialize@AnimationStrip@DirectUI@@QAAJIPAVElement@2@PAK@Z
2249?Initialize@AutoButton@DirectUI@@QAAJPAVElement@2@PAK@Z
2250?Initialize@BaseScrollViewer@DirectUI@@QAAJPAVElement@2@PAK@Z
2251?Initialize@Bind@DirectUI@@QAAJPAVElement@2@PAK@Z
2252?Initialize@BorderLayout@DirectUI@@QAAXXZ
2253?Initialize@Browser@DirectUI@@QAAJPAVElement@2@PAK@Z
2254?Initialize@Button@DirectUI@@QAAJIPAVElement@2@PAK@Z
2255?Initialize@CCBase@DirectUI@@QAAJIPAVElement@2@PAK@Z
2256?Initialize@CCBaseScrollBar@DirectUI@@QAAJIPAVElement@2@PAK@Z
2257?Initialize@CCListView@DirectUI@@QAAJIPAVElement@2@PAK@Z
2258?Initialize@CCProgressBar@DirectUI@@QAAJIPAVElement@2@PAK@Z
2259?Initialize@CSafeElementProxy@@IAAJPAVElement@DirectUI@@@Z
2260?Initialize@CheckBoxGlyph@DirectUI@@QAAJIPAVElement@2@PAK@Z
2261?Initialize@ClassInfoBase@DirectUI@@QAAJPAUHINSTANCE__@@PBG_NPBQBUPropertyInfo@2@I@Z
2262?Initialize@Clipper@DirectUI@@QAAJPAVElement@2@PAK@Z
2263?Initialize@Combobox@DirectUI@@QAAJIPAVElement@2@PAK@Z
2264?Initialize@DUIXmlParser@DirectUI@@IAAJXZ
2265?Initialize@DialogElementCore@DirectUI@@QAAXPAUIDialogElement@2@PAUIElementListener@2@@Z
2266?Initialize@DuiAccessible@DirectUI@@QAAXPAVElement@2@@Z
2267?Initialize@Edit@DirectUI@@QAAJIPAVElement@2@PAK@Z
2268?Initialize@Element@DirectUI@@QAAJIPAV12@PAK@Z
2269?Initialize@Expando@DirectUI@@QAAJPAVElement@2@PAK@Z
2270?Initialize@ExpandoButtonGlyph@DirectUI@@QAAJIPAVElement@2@PAK@Z
2271?Initialize@FillLayout@DirectUI@@QAAXXZ
2272?Initialize@FlowLayout@DirectUI@@QAAX_NIII@Z
2273?Initialize@GridLayout@DirectUI@@QAAXHH@Z
2274?Initialize@HWNDElement@DirectUI@@QAAJPAUHWND__@@_NIPAVElement@2@PAK@Z
2275?Initialize@HWNDElementAccessible@DirectUI@@QAAJPAVHWNDElement@2@@Z
2276?Initialize@HWNDHost@DirectUI@@QAAJIIPAVElement@2@PAK@Z
2277?Initialize@HWNDHostAccessible@DirectUI@@QAAJPAVElement@2@PAUIAccessible@@@Z
2278?Initialize@Layout@DirectUI@@QAAXXZ
2279?Initialize@Macro@DirectUI@@QAAJPAVElement@2@PAK@Z
2280?Initialize@NativeHWNDHost@DirectUI@@QAAJPBG0PAUHWND__@@PAUHICON__@@HHHHHHPAUHINSTANCE__@@I@Z
2281?Initialize@NativeHWNDHost@DirectUI@@QAAJPBGPAUHWND__@@PAUHICON__@@HHHHHHI@Z
2282?Initialize@Navigator@DirectUI@@QAAJPAVElement@2@PAK@Z
2283?Initialize@NineGridLayout@DirectUI@@QAAXXZ
2284?Initialize@PText@DirectUI@@QAAJPAVElement@2@PAK@Z
2285?Initialize@Page@DirectUI@@QAAJPAVElement@2@PAK@Z
2286?Initialize@Pages@DirectUI@@QAAJPAVElement@2@PAK@Z
2287?Initialize@Progress@DirectUI@@QAAJPAVElement@2@PAK@Z
2288?Initialize@RadioButtonGlyph@DirectUI@@QAAJIPAVElement@2@PAK@Z
2289?Initialize@RefPointElement@DirectUI@@QAAJIPAVElement@2@PAK@Z
2290?Initialize@RepeatButton@DirectUI@@QAAJIPAVElement@2@PAK@Z
2291?Initialize@Repeater@DirectUI@@QAAJPAVElement@2@PAK@Z
2292?Initialize@RichText@DirectUI@@QAAJPAVElement@2@PAK@Z
2293?Initialize@RowLayout@DirectUI@@QAAJHII@Z
2294?Initialize@ScrollBar@DirectUI@@QAAJ_NPAVElement@2@PAK@Z
2295?Initialize@Selector@DirectUI@@QAAJPAVElement@2@PAK@Z
2296?Initialize@SelectorNoDefault@DirectUI@@QAAJPAVElement@2@PAK@Z
2297?Initialize@SemanticZoomToggle@DirectUI@@QAAJPAVElement@2@PAK@Z
2298?Initialize@TableLayout@DirectUI@@QAAXHHHPAH@Z
2299?Initialize@TextGraphic@DirectUI@@QAAJPAVElement@2@PAK@Z
2300?Initialize@Thumb@DirectUI@@QAAJIPAVElement@2@PAK@Z
2301?Initialize@TouchButton@DirectUI@@QAAJIPAVElement@2@PAK@Z
2302?Initialize@TouchCheckBox@DirectUI@@QAAJIPAVElement@2@PAK@Z
2303?Initialize@TouchCheckBoxGlyph@DirectUI@@QAAJPAVElement@2@PAK@Z
2304?Initialize@TouchCommandButton@DirectUI@@QAAJIPAVElement@2@PAK@Z
2305?Initialize@TouchEdit2@DirectUI@@QAAJPAVElement@2@PAK@Z
2306?Initialize@TouchHWNDElement@DirectUI@@QAAJPAUHWND__@@_NIPAVElement@2@PAK@Z
2307?Initialize@TouchRepeatButton@DirectUI@@QAAJIPAVElement@2@PAK@Z
2308?Initialize@TouchScrollBar@DirectUI@@QAAJ_NPAVElement@2@PAK@Z
2309?Initialize@TouchSelect@DirectUI@@QAAJPAVElement@2@PAK@Z
2310?Initialize@TouchSlider@DirectUI@@QAAJPAVElement@2@PAK@Z
2311?Initialize@TouchSwitch@DirectUI@@QAAJPAVElement@2@PAK@Z
2312?Initialize@UnknownElement@DirectUI@@QAAJIPAVElement@2@PAK@Z
2313?Initialize@VerticalFlowLayout@DirectUI@@QAAX_NIII@Z
2314?Initialize@Viewer@DirectUI@@QAAJPAVElement@2@PAK@Z
2315?Initialize@XBaby@DirectUI@@IAAJPAVIXElementCP@2@PAVXProvider@2@PAUHWND__@@PAVElement@2@PAK@Z
2316?Initialize@XElement@DirectUI@@QAAJIPAVElement@2@PAK@Z
2317?Initialize@XHost@DirectUI@@QAAJPAVIXElementCP@2@@Z
2318?Initialize@XProvider@DirectUI@@QAAJPAVElement@2@PAVIXProviderCP@2@@Z
2319?Initialize@XResourceProvider@DirectUI@@QAAJPAUHINSTANCE__@@PBG11@Z
2320?InitializeDllInfo@CallstackTracker@DirectUI@@CAHXZ
2321?InitializeParserFromXmlReader@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAUHINSTANCE__@@1@Z
2322?InitializeSymbols@CallstackTracker@DirectUI@@CAHXZ
2323?InnerBorderThicknessProp@TouchEdit2@DirectUI@@SAPBUPropertyInfo@2@XZ
2324?Insert@Element@DirectUI@@QAAJPAV12@I@Z
2325?Insert@Element@DirectUI@@UAAJPAPAV12@II@Z
2326?Insert@TouchCheckBox@DirectUI@@UAAJPAPAVElement@2@II@Z
2327?Insert@TouchCheckBoxGlyph@DirectUI@@UAAJPAPAVElement@2@II@Z
2328?Insert@TouchCommandButton@DirectUI@@UAAJPAPAVElement@2@II@Z
2329?Insert@TouchEditBase@DirectUI@@UAAJPAPAVElement@2@II@Z
2330?Insert@TouchSelect@DirectUI@@UAAJPAPAVElement@2@II@Z
2331?InsertItem@CCTreeView@DirectUI@@QAAPAU_TREEITEM@@PAGIQAU3@1@Z
2332?InsertItem@CCTreeView@DirectUI@@QAAPAU_TREEITEM@@PBUtagTVINSERTSTRUCTW@@@Z
2333?IntegrateIMECandidateListProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2334?InteractionEnd@TouchScrollBar@DirectUI@@SA?AVUID@@XZ
2335?InteractionStart@TouchScrollBar@DirectUI@@SA?AVUID@@XZ
2336?InternalCreate@TableLayout@DirectUI@@SAJHHHPAHPAPAVLayout@2@@Z
2337?InterpolationModeProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
2338?Invoke@DuiAccessible@DirectUI@@UAAJJABU_GUID@@KGPAUtagDISPPARAMS@@PAUtagVARIANT@@PAUtagEXCEPINFO@@PAI@Z
2339?Invoke@InvokeProvider@DirectUI@@UAAJXZ
2340?Invoke@Proxy@DirectUI@@IAAXIPAX@Z
2341?InvokeAnimation@Element@DirectUI@@QAAXHI@Z
2342?InvokeAnimation@Element@DirectUI@@QAAXIIMM_N@Z
2343?InvokeInvokedEvent@Schema@DirectUI@@2HA DATA
2344?InvokePattern@Schema@DirectUI@@2HA DATA
2345?IsActivityOccuring@ModernProgressBar@DirectUI@@QAA_NXZ
2346?IsActivityOccuring@ModernProgressRing@DirectUI@@QAA_NXZ
2347?IsAddLayeredRef@ModernProgressBar@DirectUI@@QAA_NXZ
2348?IsAddLayeredRef@ModernProgressRing@DirectUI@@QAA_NXZ
2349?IsAutoHeight@ModernProgressBar@DirectUI@@QAA_NXZ
2350?IsBehaviorLayout@Element@DirectUI@@QBA_NXZ
2351?IsButtonEnabledAndVisible@DialogElementCore@DirectUI@@KA_NPAVElement@2@@Z
2352?IsCacheDirty@Layout@DirectUI@@IAA_NXZ
2353?IsCompositedText@Element@DirectUI@@QAA_NXZ
2354?IsContentElementProperty@Schema@DirectUI@@2HA DATA
2355?IsContentProtected@Edit@DirectUI@@UAA_NXZ
2356?IsContentProtected@Element@DirectUI@@UAA_NXZ
2357?IsContentProtected@TouchEditBase@DirectUI@@UAA_NXZ
2358?IsContinuousProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
2359?IsControlElementProperty@Schema@DirectUI@@2HA DATA
2360?IsCorrectImageHlpVersion@CallstackTracker@DirectUI@@CAHXZ
2361?IsCrossfadeInProgress@TouchScrollViewer@DirectUI@@QAA_NXZ
2362?IsDefaultCAlign@Element@DirectUI@@QAA_NXZ
2363?IsDefaultCursor@Element@DirectUI@@QAA_NXZ
2364?IsDescendent@Element@DirectUI@@QAA_NPAV12@@Z
2365?IsDescendent@XElement@DirectUI@@QAA_NPAVElement@2@@Z
2366?IsDescendent@XProvider@DirectUI@@UAAJPAVElement@2@PA_N@Z
2367?IsDestroyed@Element@DirectUI@@QAA_NXZ
2368?IsDeterminate@ModernProgressBar@DirectUI@@QAA_NXZ
2369?IsDynamicScaled@Value@DirectUI@@QAA_NXZ
2370?IsDynamicScaling@DUIXmlParser@DirectUI@@QAA_NXZ
2371?IsEnabledProperty@Schema@DirectUI@@2HA DATA
2372?IsEqual@Value@DirectUI@@QAA_NPAV12@@Z
2373?IsFirstElement@HWNDElement@DirectUI@@QAA_NPAVElement@2@@Z
2374?IsGlobal@ClassInfoBase@DirectUI@@UBA_NXZ
2375?IsHosted@Element@DirectUI@@QAA_NXZ
2376?IsIndependentAnimations@ModernProgressBar@DirectUI@@QAA_NXZ
2377?IsKeyboardFocusableProperty@Schema@DirectUI@@2HA DATA
2378?IsLastElement@HWNDElement@DirectUI@@QAA_NPAVElement@2@@Z
2379?IsMSAAEnabled@HWNDElement@DirectUI@@UAA_NXZ
2380?IsMSAAEnabled@TouchHWNDElement@DirectUI@@UAA_NXZ
2381?IsManualVisualSwapInProgress@TouchScrollViewer@DirectUI@@QAA_NXZ
2382?IsMoveDeferred@HWNDHost@DirectUI@@IAA_NXZ
2383?IsOffscreen@Schema@DirectUI@@2HA DATA
2384?IsPasswordProperty@Schema@DirectUI@@2HA DATA
2385?IsPatternSupported@ElementProxy@DirectUI@@IAAJW4Pattern@Schema@2@PA_N@Z
2386?IsPatternSupported@ExpandCollapseProxy@DirectUI@@SA_NPAVElement@2@@Z
2387?IsPatternSupported@GridItemProxy@DirectUI@@SA_NPAVElement@2@@Z
2388?IsPatternSupported@GridProxy@DirectUI@@SA_NPAVElement@2@@Z
2389?IsPatternSupported@InvokeProxy@DirectUI@@SA_NPAVElement@2@@Z
2390?IsPatternSupported@RangeValueProxy@DirectUI@@SA_NPAVElement@2@@Z
2391?IsPatternSupported@ScrollItemProxy@DirectUI@@SA_NPAVElement@2@@Z
2392?IsPatternSupported@ScrollProxy@DirectUI@@SA_NPAVElement@2@@Z
2393?IsPatternSupported@SelectionItemProxy@DirectUI@@SA_NPAVElement@2@@Z
2394?IsPatternSupported@SelectionProxy@DirectUI@@SA_NPAVElement@2@@Z
2395?IsPatternSupported@TableItemProxy@DirectUI@@SA_NPAVElement@2@@Z
2396?IsPatternSupported@TableProxy@DirectUI@@SA_NPAVElement@2@@Z
2397?IsPatternSupported@ToggleProxy@DirectUI@@SA_NPAVElement@2@@Z
2398?IsPatternSupported@ValueProxy@DirectUI@@SA_NPAVElement@2@@Z
2399?IsPeripheral@Schema@DirectUI@@2HA DATA
2400?IsPinned@BaseScrollBar@DirectUI@@QAA_NXZ
2401?IsPointValid@Element@DirectUI@@AAA_NNN@Z
2402?IsPopupOpen@TouchSelect@DirectUI@@QAA_NXZ
2403?IsPressedProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
2404?IsRTL@Element@DirectUI@@QAA_NXZ
2405?IsRTLReading@Element@DirectUI@@UAA_NXZ
2406?IsRegisteredForAnimationStatusChanges@TouchHWNDElement@DirectUI@@QAA_NXZ
2407?IsReorderable@ItemList@DirectUI@@QAA_NXZ
2408?IsRoot@Element@DirectUI@@QAAHXZ
2409?IsScrollable@BaseScrollBar@DirectUI@@QAA_NXZ
2410?IsSelfLayout@Element@DirectUI@@QAA_NXZ
2411?IsShowOnOffFeedbackProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
2412?IsSmoothFillAnimation@ModernProgressBar@DirectUI@@QAA_NXZ
2413?IsSubclassOf@ClassInfoBase@DirectUI@@UBA_NPAUIClassInfo@2@@Z
2414?IsThemeClassName@DUIXmlParser@DirectUI@@KA_NPBUExprNode@ParserTools@2@@Z
2415?IsThumbActive@TouchScrollBar@DirectUI@@QAA_NXZ
2416?IsTileMember@TouchScrollViewer@DirectUI@@QAA_NIPAVElement@2@@Z
2417?IsValidAccessor@Element@DirectUI@@QAA_NPBUPropertyInfo@2@H_N@Z
2418?IsValidProperty@ClassInfoBase@DirectUI@@UBA_NPBUPropertyInfo@2@@Z
2419?IsValidValue@Element@DirectUI@@SA_NPBUPropertyInfo@2@PAVValue@2@@Z
2420?IsVerticalProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
2421?IsWordWrap@Element@DirectUI@@QAA_NXZ
2422?ItemContainerPattern@Schema@DirectUI@@2HA DATA
2423?ItemHeightInPopupProp@TouchSelect@DirectUI@@SAPBUPropertyInfo@2@XZ
2424?ItemStatusProperty@Schema@DirectUI@@2HA DATA
2425?ItemTypeProperty@Schema@DirectUI@@2HA DATA
2426?KeyFocusedProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2427?KeyWithinProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2428?KeyboardNavigate@Element@DirectUI@@SA?AVUID@@XZ
2429?KeyboardNavigationCaptureProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2430?LabeledByProperty@Schema@DirectUI@@2HA DATA
2431?LastDSConstProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2432?LayoutInvalidatedEvent@Schema@DirectUI@@2HA DATA
2433?LayoutPosProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2434?LayoutProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2435?Leaving@Browser@DirectUI@@SA?AVUID@@XZ
2436?LightDismissIHMProp@TouchHWNDElement@DirectUI@@SAPBUPropertyInfo@2@XZ
2437?LineDown@BaseScrollBar@DirectUI@@UAAXI@Z
2438?LineDown@TouchScrollBar@DirectUI@@UAAXI@Z
2439?LineProp@CCBaseScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2440?LineProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2441?LineSizeProp@CCTrackBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2442?LineSpacingProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
2443?LineUp@BaseScrollBar@DirectUI@@UAAXI@Z
2444?LineUp@TouchScrollBar@DirectUI@@UAAXI@Z
2445?ListControlType@Schema@DirectUI@@2HA DATA
2446?ListItemControlType@Schema@DirectUI@@2HA DATA
2447?LoadComCtl32@TaskPage@DirectUI@@AAAJXZ
2448?LoadCommonControlExports@AnimationStrip@DirectUI@@AAAJXZ
2449?LoadFromBuffer@DUIFactory@DirectUI@@QAAJPBGI0PAVElement@2@PAKPAPAV32@@Z
2450?LoadFromFile@DUIFactory@DirectUI@@QAAJPBG0PAVElement@2@PAKPAPAV32@@Z
2451?LoadFromPath@Movie@DirectUI@@QAAJPBG@Z
2452?LoadFromResource@DUIFactory@DirectUI@@QAAJPAUHINSTANCE__@@PBG1PAVElement@2@PAKPAPAV42@1@Z
2453?LoadFromResource@Movie@DirectUI@@QAAJPAUHINSTANCE__@@H@Z
2454?LoadImagesIntoAnimationStrip@AnimationStrip@DirectUI@@IAAJXZ
2455?LoadPage@TaskPage@DirectUI@@AAAJPAPAVElement@2@PAV32@PAPAVDUIXmlParser@2@@Z
2456?LoadPage@TaskPage@DirectUI@@MAAJPAVHWNDElement@2@PAUHINSTANCE__@@PAPAVElement@2@PAPAVDUIXmlParser@2@@Z
2457?LoadParser@TaskPage@DirectUI@@MAAJPAPAVDUIXmlParser@2@@Z
2458?LocaleProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
2459?LocalizedControlTypeProperty@Schema@DirectUI@@2HA DATA
2460?Locate@RefPointElement@DirectUI@@SAPAV12@PAVElement@2@@Z
2461?LocationProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2462?LookupAccessibleRole@Schema@DirectUI@@SAHHPA_N@Z
2463?LookupControlInfos@Schema@DirectUI@@CAJXZ
2464?LookupElement@DUIXmlParser@DirectUI@@QAAJPAUIXmlReader@@PBGPAUHINSTANCE__@@PAPAUIClassInfo@2@@Z
2465?LookupElement@DUIXmlParser@DirectUI@@QAAJULINEINFO@2@PBGPAUHINSTANCE__@@PAPAUIClassInfo@2@@Z
2466?LookupEventInfos@Schema@DirectUI@@CAJXZ
2467?LookupPatternInfos@Schema@DirectUI@@CAJXZ
2468?LookupPropertyInfos@Schema@DirectUI@@CAJXZ
2469?ManipulationCompleted@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
2470?ManipulationDelta@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
2471?ManipulationHorizontalAlignmentProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
2472?ManipulationStarted@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
2473?ManipulationStarting@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
2474?ManipulationVerticalAlignmentProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
2475?ManualStoryboardVerify@PVLAnimation@DirectUI@@SA?AVUID@@XZ
2476?MapContentVisuals@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
2477?MapElementPoint@Element@DirectUI@@QAAXPAV12@PBUtagPOINT@@PAU3@@Z
2478?MapPropertyEnumValue@DUIXmlParser@DirectUI@@IAAJPBUEnumMap@2@PBGPAH@Z
2479?MapPropertyNameToPropertyInfo@DUIXmlParser@DirectUI@@IAAJULINEINFO@2@PAUIClassInfo@2@PBGPAPBUPropertyInfo@2@@Z
2480?MapRunsToClustersProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
2481?MarginProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2482?MarkHosted@Element@DirectUI@@IAAXXZ
2483?MarkNeedsDSUpdate@Element@DirectUI@@QAAXXZ
2484?MarkSelfLayout@Element@DirectUI@@IAAXXZ
2485?MaxLengthProp@Edit@DirectUI@@SAPBUPropertyInfo@2@XZ
2486?MaxLengthProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2487?MaximumProp@CCBaseScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2488?MaximumProp@ModernProgressBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2489?MaximumProp@Progress@DirectUI@@SAPBUPropertyInfo@2@XZ
2490?MaximumProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2491?MenuBarControlType@Schema@DirectUI@@2HA DATA
2492?MenuClosedEvent@Schema@DirectUI@@2HA DATA
2493?MenuControlType@Schema@DirectUI@@2HA DATA
2494?MenuItemControlType@Schema@DirectUI@@2HA DATA
2495?MenuOpenedEvent@Schema@DirectUI@@2HA DATA
2496?MessageCallback@Edit@DirectUI@@UAAIPAUtagGMSG@@@Z
2497?MessageCallback@Element@DirectUI@@UAAIPAUtagGMSG@@@Z
2498?MessageCallback@HWNDHost@DirectUI@@UAAIPAUtagGMSG@@@Z
2499?MessageCallback@TouchHWNDElement@DirectUI@@UAAIPAUtagGMSG@@@Z
2500?MeteringProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
2501?MinSizeProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2502?MinimumProp@CCBaseScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2503?MinimumProp@ModernProgressBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2504?MinimumProp@Progress@DirectUI@@SAPBUPropertyInfo@2@XZ
2505?MinimumProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2506?MonitorPowerSettingsChange@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
2507?MouseFocusedProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2508?MouseOrPointerReleased@TouchSlider@DirectUI@@SA?AVUID@@XZ
2509?MouseWithinProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2510?MoveCaretToEndOnSyncContentProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2511?MultilineProp@Edit@DirectUI@@SAPBUPropertyInfo@2@XZ
2512?MultilineProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2513?MultipleClick@TouchButton@DirectUI@@SA?AVUID@@XZ
2514?MultipleViewPattern@Schema@DirectUI@@2HA DATA
2515?NameProperty@Schema@DirectUI@@2HA DATA
2516?Navigate@DuiNavigate@DirectUI@@SAPAVElement@2@PAV32@PAV?$DynamicArray@PAVElement@DirectUI@@$0A@@2@H@Z
2517?Navigate@ElementProvider@DirectUI@@UAAJW4NavigateDirection@@PAPAUIRawElementProviderFragment@@@Z
2518?Navigate@ElementProxy@DirectUI@@IAAJW4NavigateDirection@@PAPAUIRawElementProviderFragment@@@Z
2519?Navigate@XProvider@DirectUI@@UAAJHPA_N@Z
2520?NeedsDSUpdate@Element@DirectUI@@QAA_NXZ
2521?NewChildElementsAdded@TouchScrollViewer@DirectUI@@QAAXXZ
2522?NewNativeWindowHandleProperty@Schema@DirectUI@@2HA DATA
2523?Next@DuiAccessible@DirectUI@@UAAJKPAUtagVARIANT@@PAK@Z
2524?Next@HWNDHostAccessible@DirectUI@@UAAJKPAUtagVARIANT@@PAK@Z
2525?NoteProp@CCCommandLink@DirectUI@@SAPBUPropertyInfo@2@XZ
2526?NotifyComplete@PVLAnimation@DirectUI@@SA?AVUID@@XZ
2527?NotifyImplicit@PVLAnimation@DirectUI@@SA?AVUID@@XZ
2528?NotifyStart@PVLAnimation@DirectUI@@SA?AVUID@@XZ
2529?NotifyStoryboardComplete@PVLAnimation@DirectUI@@SA?AVUID@@XZ
2530?NullControlType@Schema@DirectUI@@2HA DATA
2531?OffTextProp@TouchSwitch@DirectUI@@SAPBUPropertyInfo@2@XZ
2532?OnAction@AnimationStrip@DirectUI@@IAAXPAUGMA_ACTIONINFO@@@Z
2533?OnAdd@BorderLayout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2534?OnAdd@Layout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2535?OnAdd@NineGridLayout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2536?OnAdd@ShellBorderLayout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2537?OnAdjustWindowSize@Combobox@DirectUI@@UAAHHHI@Z
2538?OnAdjustWindowSize@HWNDHost@DirectUI@@UAAHHHI@Z
2539?OnChildLostFocus@DialogElement@DirectUI@@UAA_NPAVElement@2@@Z
2540?OnChildLostFocus@DialogElementCore@DirectUI@@QAA_NPAVElement@2@@Z
2541?OnChildLostFocus@XBaby@DirectUI@@UAA_NPAVElement@2@@Z
2542?OnChildReceivedFocus@DialogElement@DirectUI@@UAA_NPAVElement@2@@Z
2543?OnChildReceivedFocus@DialogElementCore@DirectUI@@QAA_NPAVElement@2@@Z
2544?OnChildReceivedFocus@XBaby@DirectUI@@UAA_NPAVElement@2@@Z
2545?OnCompositionChanged@HWNDElement@DirectUI@@UAAXXZ
2546?OnCtrlThemeChanged@HWNDHost@DirectUI@@UAA_NIIJPAJ@Z
2547?OnCustomDraw@CCBase@DirectUI@@UAA_NPAUtagNMCUSTOMDRAWINFO@@PAJ@Z
2548?OnDefaultButtonTrackingChanged@DialogElementCore@DirectUI@@QAAXPAVValue@2@@Z
2549?OnDestroy@AnimationStrip@DirectUI@@MAAXXZ
2550?OnDestroy@DialogElement@DirectUI@@UAAXXZ
2551?OnDestroy@DialogElementCore@DirectUI@@QAAXXZ
2552?OnDestroy@Element@DirectUI@@UAAXXZ
2553?OnDestroy@HWNDElement@DirectUI@@UAAXXZ
2554?OnDestroy@HWNDHost@DirectUI@@UAAXXZ
2555?OnDestroy@ModernProgressBar@DirectUI@@MAAXXZ
2556?OnDestroy@ModernProgressRing@DirectUI@@MAAXXZ
2557?OnDestroy@Movie@DirectUI@@UAAXXZ
2558?OnDestroy@TouchHWNDElement@DirectUI@@UAAXXZ
2559?OnEvent@AutoButton@DirectUI@@UAAXPAUEvent@2@@Z
2560?OnEvent@BaseScrollViewer@DirectUI@@UAAXPAUEvent@2@@Z
2561?OnEvent@Browser@DirectUI@@UAAXPAUEvent@2@@Z
2562?OnEvent@Element@DirectUI@@UAAXPAUEvent@2@@Z
2563?OnEvent@Expando@DirectUI@@UAAXPAUEvent@2@@Z
2564?OnEvent@HWNDElement@DirectUI@@UAAXPAUEvent@2@@Z
2565?OnEvent@HWNDHost@DirectUI@@UAAXPAUEvent@2@@Z
2566?OnEvent@Movie@DirectUI@@UAAXPAUEvent@2@@Z
2567?OnEvent@Navigator@DirectUI@@UAAXPAUEvent@2@@Z
2568?OnEvent@RichText@DirectUI@@UAAXPAUEvent@2@@Z
2569?OnEvent@ScrollBar@DirectUI@@UAAXPAUEvent@2@@Z
2570?OnEvent@Selector@DirectUI@@UAAXPAUEvent@2@@Z
2571?OnEvent@SelectorNoDefault@DirectUI@@UAAXPAUEvent@2@@Z
2572?OnEvent@TouchButton@DirectUI@@UAAXPAUEvent@2@@Z
2573?OnEvent@TouchCheckBox@DirectUI@@UAAXPAUEvent@2@@Z
2574?OnEvent@TouchEdit2@DirectUI@@UAAXPAUEvent@2@@Z
2575?OnEvent@TouchHWNDElement@DirectUI@@UAAXPAUEvent@2@@Z
2576?OnEvent@TouchScrollBar@DirectUI@@UAAXPAUEvent@2@@Z
2577?OnEvent@TouchSelect@DirectUI@@UAAXPAUEvent@2@@Z
2578?OnEvent@Viewer@DirectUI@@UAAXPAUEvent@2@@Z
2579?OnEvent@XBaby@DirectUI@@UAAXPAUEvent@2@@Z
2580?OnEvent@XElement@DirectUI@@UAAXPAUEvent@2@@Z
2581?OnGetDlgCode@DialogElement@DirectUI@@UAAXPAUtagMSG@@PAJ@Z
2582?OnGetDlgCode@DialogElementCore@DirectUI@@QAAXPAUtagMSG@@PAJ@Z
2583?OnGetDlgCode@HWNDElement@DirectUI@@UAAXPAUtagMSG@@PAJ@Z
2584?OnGroupChanged@Element@DirectUI@@UAAXH_N@Z
2585?OnGroupChanged@HWNDElement@DirectUI@@UAAXH_N@Z
2586?OnHosted@Combobox@DirectUI@@UAAXPAVElement@2@@Z
2587?OnHosted@Element@DirectUI@@MAAXPAV12@@Z
2588?OnHosted@HWNDHost@DirectUI@@MAAXPAVElement@2@@Z
2589?OnHosted@ModernProgressBar@DirectUI@@MAAXPAVElement@2@@Z
2590?OnHosted@ModernProgressRing@DirectUI@@MAAXPAVElement@2@@Z
2591?OnHosted@Movie@DirectUI@@UAAXPAVElement@2@@Z
2592?OnHosted@PushButton@DirectUI@@UAAXPAVElement@2@@Z
2593?OnHosted@RichText@DirectUI@@UAAXPAVElement@2@@Z
2594?OnHosted@TouchButton@DirectUI@@UAAXPAVElement@2@@Z
2595?OnHosted@TouchEdit2@DirectUI@@UAAXPAVElement@2@@Z
2596?OnHosted@TouchScrollBar@DirectUI@@UAAXPAVElement@2@@Z
2597?OnHosted@TouchSelect@DirectUI@@UAAXPAVElement@2@@Z
2598?OnImmersiveColorSchemeChanged@HWNDElement@DirectUI@@UAAXXZ
2599?OnInput@BaseScrollViewer@DirectUI@@UAAXPAUInputEvent@2@@Z
2600?OnInput@Button@DirectUI@@UAAXPAUInputEvent@2@@Z
2601?OnInput@CCBase@DirectUI@@UAAXPAUInputEvent@2@@Z
2602?OnInput@CCCheckBox@DirectUI@@UAAXPAUInputEvent@2@@Z
2603?OnInput@CCProgressBar@DirectUI@@UAAXPAUInputEvent@2@@Z
2604?OnInput@CCPushButton@DirectUI@@UAAXPAUInputEvent@2@@Z
2605?OnInput@CCRadioButton@DirectUI@@UAAXPAUInputEvent@2@@Z
2606?OnInput@CCSysLink@DirectUI@@UAAXPAUInputEvent@2@@Z
2607?OnInput@Combobox@DirectUI@@UAAXPAUInputEvent@2@@Z
2608?OnInput@DialogElement@DirectUI@@UAAXPAUInputEvent@2@@Z
2609?OnInput@DialogElementCore@DirectUI@@QAAXPAUInputEvent@2@@Z
2610?OnInput@Edit@DirectUI@@UAAXPAUInputEvent@2@@Z
2611?OnInput@Element@DirectUI@@UAAXPAUInputEvent@2@@Z
2612?OnInput@HWNDElement@DirectUI@@UAAXPAUInputEvent@2@@Z
2613?OnInput@HWNDHost@DirectUI@@UAAXPAUInputEvent@2@@Z
2614?OnInput@RepeatButton@DirectUI@@UAAXPAUInputEvent@2@@Z
2615?OnInput@Selector@DirectUI@@UAAXPAUInputEvent@2@@Z
2616?OnInput@Thumb@DirectUI@@UAAXPAUInputEvent@2@@Z
2617?OnInput@TouchButton@DirectUI@@UAAXPAUInputEvent@2@@Z
2618?OnInput@TouchEdit2@DirectUI@@UAAXPAUInputEvent@2@@Z
2619?OnInput@TouchHWNDElement@DirectUI@@UAAXPAUInputEvent@2@@Z
2620?OnInput@TouchScrollBar@DirectUI@@UAAXPAUInputEvent@2@@Z
2621?OnInput@TouchSelect@DirectUI@@UAAXPAUInputEvent@2@@Z
2622?OnInput@Viewer@DirectUI@@UAAXPAUInputEvent@2@@Z
2623?OnInput@XElement@DirectUI@@UAAXPAUInputEvent@2@@Z
2624?OnInvoke@InvokeHelper@DirectUI@@AAAXPAUInvokeArgs@12@@Z
2625?OnInvoke@Proxy@DirectUI@@MAAXIPAX@Z
2626?OnKeyFocusMoved@DialogElement@DirectUI@@UAAXPAVElement@2@0@Z
2627?OnKeyFocusMoved@DialogElementCore@DirectUI@@QAAXPAVElement@2@0@Z
2628?OnKeyFocusMoved@Element@DirectUI@@UAAXPAV12@0@Z
2629?OnKeyFocusMoved@Selector@DirectUI@@UAAXPAVElement@2@0@Z
2630?OnKeyFocusMoved@SelectorNoDefault@DirectUI@@UAAXPAVElement@2@0@Z
2631?OnKeyFocusMoved@TouchHWNDElement@DirectUI@@UAAXPAVElement@2@0@Z
2632?OnKillActive@TaskPage@DirectUI@@MAAJXZ
2633?OnLayoutPosChanged@BorderLayout@DirectUI@@UAAXPAVElement@2@0HH@Z
2634?OnLayoutPosChanged@Layout@DirectUI@@UAAXPAVElement@2@0HH@Z
2635?OnLayoutPosChanged@NineGridLayout@DirectUI@@UAAXPAVElement@2@0HH@Z
2636?OnLayoutPosChanged@ShellBorderLayout@DirectUI@@UAAXPAVElement@2@0HH@Z
2637?OnListenedEvent@BaseScrollViewer@DirectUI@@UAAXPAVElement@2@PAUEvent@2@@Z
2638?OnListenedEvent@DialogElement@DirectUI@@UAAXPAVElement@2@PAUEvent@2@@Z
2639?OnListenedEvent@TaskPage@DirectUI@@MAAXPAVElement@2@PAUEvent@2@@Z
2640?OnListenedInput@BaseScrollViewer@DirectUI@@UAAXPAVElement@2@PAUInputEvent@2@@Z
2641?OnListenedInput@DialogElement@DirectUI@@UAAXPAVElement@2@PAUInputEvent@2@@Z
2642?OnListenedInput@TaskPage@DirectUI@@MAAXPAVElement@2@PAUInputEvent@2@@Z
2643?OnListenedPropertyChanged@BaseScrollViewer@DirectUI@@UAAXPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2644?OnListenedPropertyChanged@DialogElement@DirectUI@@UAAXPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2645?OnListenedPropertyChanged@ScrollViewer@DirectUI@@UAAXPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2646?OnListenedPropertyChanged@StyledScrollViewer@DirectUI@@UAAXPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2647?OnListenedPropertyChanged@TaskPage@DirectUI@@MAAXPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2648?OnListenedPropertyChanged@TouchEdit2@DirectUI@@EAAXPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2649?OnListenedPropertyChanging@BaseScrollViewer@DirectUI@@UAA_NPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2650?OnListenedPropertyChanging@DialogElement@DirectUI@@UAA_NPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2651?OnListenedPropertyChanging@TaskPage@DirectUI@@MAA_NPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2652?OnListenerAttach@BaseScrollViewer@DirectUI@@UAAXPAVElement@2@@Z
2653?OnListenerAttach@DialogElement@DirectUI@@UAAXPAVElement@2@@Z
2654?OnListenerAttach@TaskPage@DirectUI@@MAAXPAVElement@2@@Z
2655?OnListenerDetach@BaseScrollViewer@DirectUI@@UAAXPAVElement@2@@Z
2656?OnListenerDetach@DialogElement@DirectUI@@UAAXPAVElement@2@@Z
2657?OnListenerDetach@DialogElementCore@DirectUI@@QAAXPAVElement@2@@Z
2658?OnListenerDetach@TaskPage@DirectUI@@MAAXPAVElement@2@@Z
2659?OnListenerDetach@TouchEdit2@DirectUI@@EAAXPAVElement@2@@Z
2660?OnLostDialogFocus@Button@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2661?OnLostDialogFocus@CCBase@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2662?OnLostDialogFocus@CCBaseCheckRadioButton@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2663?OnLostDialogFocus@CCPushButton@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2664?OnLostDialogFocus@CCSysLink@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2665?OnLostDialogFocus@CheckBoxGlyph@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2666?OnLostDialogFocus@ExpandoButtonGlyph@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2667?OnLostDialogFocus@RadioButtonGlyph@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2668?OnMaximumChanged@BaseScrollBar@DirectUI@@QAAXPAVValue@2@@Z
2669?OnMessage@CCBaseScrollBar@DirectUI@@UAA_NIIJPAJ@Z
2670?OnMessage@CCPushButton@DirectUI@@UAA_NIIJPAJ@Z
2671?OnMessage@CCTrackBar@DirectUI@@UAA_NIIJPAJ@Z
2672?OnMessage@HWNDHost@DirectUI@@UAA_NIIJPAJ@Z
2673?OnMessage@NativeHWNDHost@DirectUI@@UAAJIIJPAJ@Z
2674?OnMessage@TaskPage@DirectUI@@MAA_NIIJPAJ@Z
2675?OnMessage@XElement@DirectUI@@UAA_NIIJPAJ@Z
2676?OnMinimumChanged@BaseScrollBar@DirectUI@@QAAXPAVValue@2@@Z
2677?OnMouseFocusMoved@Element@DirectUI@@UAAXPAV12@0@Z
2678?OnNoChildWithShortcutFound@HWNDElement@DirectUI@@UAAXPAUKeyboardEvent@2@@Z
2679?OnNoChildWithShortcutFound@XBaby@DirectUI@@UAAXPAUKeyboardEvent@2@@Z
2680?OnNotify@CCBase@DirectUI@@UAA_NIIJPAJ@Z
2681?OnNotify@CCCheckBox@DirectUI@@UAA_NIIJPAJ@Z
2682?OnNotify@CCPushButton@DirectUI@@UAA_NIIJPAJ@Z
2683?OnNotify@CCRadioButton@DirectUI@@UAA_NIIJPAJ@Z
2684?OnNotify@CCTreeView@DirectUI@@UAA_NIIJPAJ@Z
2685?OnNotify@Combobox@DirectUI@@UAA_NIIJPAJ@Z
2686?OnNotify@Edit@DirectUI@@UAA_NIIJPAJ@Z
2687?OnNotify@HWNDHost@DirectUI@@UAA_NIIJPAJ@Z
2688?OnPageChanged@BaseScrollBar@DirectUI@@QAAXPAVValue@2@@Z
2689?OnPageChanging@BaseScrollBar@DirectUI@@QAA_NPAVValue@2@@Z
2690?OnPositionChanged@BaseScrollBar@DirectUI@@QAAXPAVValue@2@@Z
2691?OnPositionChanging@BaseScrollBar@DirectUI@@QAA_NPAVValue@2@@Z
2692?OnPropertyChanged@AccessibleButton@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2693?OnPropertyChanged@AnimationStrip@DirectUI@@MAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2694?OnPropertyChanged@BaseScrollViewer@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2695?OnPropertyChanged@Browser@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2696?OnPropertyChanged@Button@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2697?OnPropertyChanged@CCBase@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2698?OnPropertyChanged@CCBaseCheckRadioButton@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2699?OnPropertyChanged@CCBaseScrollBar@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2700?OnPropertyChanged@CCCommandLink@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2701?OnPropertyChanged@CCPushButton@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2702?OnPropertyChanged@CCTrackBar@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2703?OnPropertyChanged@Combobox@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2704?OnPropertyChanged@DialogElement@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2705?OnPropertyChanged@Edit@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2706?OnPropertyChanged@Element@DirectUI@@UAAXPAUPropertyInfo@2@HPAVValue@2@1@Z
2707?OnPropertyChanged@Element@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2708?OnPropertyChanged@Expando@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2709?OnPropertyChanged@HWNDElement@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2710?OnPropertyChanged@HWNDHost@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2711?OnPropertyChanged@ItemList@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2712?OnPropertyChanged@Macro@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2713?OnPropertyChanged@ModernProgressBar@DirectUI@@MAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2714?OnPropertyChanged@ModernProgressRing@DirectUI@@MAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2715?OnPropertyChanged@RefPointElement@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2716?OnPropertyChanged@RichText@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2717?OnPropertyChanged@ScrollBar@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2718?OnPropertyChanged@ScrollViewer@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2719?OnPropertyChanged@Selector@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2720?OnPropertyChanged@TextGraphic@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2721?OnPropertyChanged@TouchButton@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2722?OnPropertyChanged@TouchCheckBox@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2723?OnPropertyChanged@TouchCommandButton@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2724?OnPropertyChanged@TouchEdit2@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2725?OnPropertyChanged@TouchEditBase@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2726?OnPropertyChanged@TouchHWNDElement@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2727?OnPropertyChanged@TouchHyperLink@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2728?OnPropertyChanged@TouchRepeatButton@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2729?OnPropertyChanged@TouchScrollBar@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2730?OnPropertyChanged@TouchSelect@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2731?OnPropertyChanged@Viewer@DirectUI@@UAAXPBUPropertyInfo@2@HPAVValue@2@1@Z
2732?OnPropertyChanging@BaseScrollViewer@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2733?OnPropertyChanging@CCBaseScrollBar@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2734?OnPropertyChanging@CCTrackBar@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2735?OnPropertyChanging@Element@DirectUI@@UAA_NPAUPropertyInfo@2@HPAVValue@2@1@Z
2736?OnPropertyChanging@Element@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2737?OnPropertyChanging@PText@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2738?OnPropertyChanging@ScrollBar@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2739?OnPropertyChanging@TextGraphic@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2740?OnPropertyChanging@TouchCheckBox@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2741?OnPropertyChanging@TouchCheckBoxGlyph@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2742?OnPropertyChanging@TouchCommandButton@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2743?OnPropertyChanging@TouchEdit2@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2744?OnPropertyChanging@TouchEditBase@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2745?OnPropertyChanging@TouchSelect@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2746?OnPropertyChanging@Viewer@DirectUI@@UAA_NPBUPropertyInfo@2@HPAVValue@2@1@Z
2747?OnQueryCancel@TaskPage@DirectUI@@MAAJXZ
2748?OnQueryInitialFocus@TaskPage@DirectUI@@MAAPAVElement@2@XZ
2749?OnReceivedDialogFocus@Button@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2750?OnReceivedDialogFocus@CCBase@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2751?OnReceivedDialogFocus@CCBaseCheckRadioButton@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2752?OnReceivedDialogFocus@CCPushButton@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2753?OnReceivedDialogFocus@CCSysLink@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2754?OnReceivedDialogFocus@CheckBoxGlyph@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2755?OnReceivedDialogFocus@ExpandoButtonGlyph@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2756?OnReceivedDialogFocus@RadioButtonGlyph@DirectUI@@UAA_NPAUIDialogElement@2@@Z
2757?OnRegisteredDefaultButtonChanged@DialogElementCore@DirectUI@@QAAXPAVValue@2@0@Z
2758?OnRemove@BorderLayout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2759?OnRemove@Layout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2760?OnRemove@NineGridLayout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2761?OnRemove@ShellBorderLayout@DirectUI@@UAAXPAVElement@2@PAPAV32@I@Z
2762?OnReset@TaskPage@DirectUI@@MAAJXZ
2763?OnSelectedPropertyChanged@CCCommandLink@DirectUI@@UAAXXZ
2764?OnSelectedPropertyChanged@CCPushButton@DirectUI@@UAAXXZ
2765?OnSetActive@TaskPage@DirectUI@@MAAJXZ
2766?OnSinkThemeChanged@HWNDHost@DirectUI@@UAA_NIIJPAJ@Z
2767?OnSinkThemeChanged@XElement@DirectUI@@UAA_NIIJPAJ@Z
2768?OnSysChar@HWNDHost@DirectUI@@UAA_NG@Z
2769?OnSysChar@XElement@DirectUI@@UAA_NG@Z
2770?OnTextProp@TouchSwitch@DirectUI@@SAPBUPropertyInfo@2@XZ
2771?OnThemeChanged@HWNDElement@DirectUI@@UAAXPAUThemeChangedEvent@2@@Z
2772?OnThemeChanged@XBaby@DirectUI@@UAAXPAUThemeChangedEvent@2@@Z
2773?OnToolTip@EventManager@DirectUI@@SAJPAVElement@2@K@Z
2774?OnUnHosted@Element@DirectUI@@MAAXPAV12@@Z
2775?OnUnHosted@HWNDHost@DirectUI@@MAAXPAVElement@2@@Z
2776?OnUnHosted@ModernProgressBar@DirectUI@@MAAXPAVElement@2@@Z
2777?OnUnHosted@ModernProgressRing@DirectUI@@MAAXPAVElement@2@@Z
2778?OnUnHosted@PushButton@DirectUI@@UAAXPAVElement@2@@Z
2779?OnUnHosted@TouchButton@DirectUI@@UAAXPAVElement@2@@Z
2780?OnUnHosted@TouchSelect@DirectUI@@UAAXPAVElement@2@@Z
2781?OnWindowStyleChanged@HWNDHost@DirectUI@@UAAXIPBUtagSTYLESTRUCT@@@Z
2782?OnWizBack@TaskPage@DirectUI@@MAAJXZ
2783?OnWizFinish@TaskPage@DirectUI@@MAAJXZ
2784?OnWizNext@TaskPage@DirectUI@@MAAJXZ
2785?OnWmSettingChanged@HWNDElement@DirectUI@@UAAXIJ@Z
2786?OnWmThemeChanged@HWNDElement@DirectUI@@UAAXIJ@Z
2787?OnWmThemeChanged@XBaby@DirectUI@@UAAXIJ@Z
2788?OnWndMsg@TaskPage@DirectUI@@AAAHIIJPAJ@Z
2789?OpenAnimation@CCAVI@DirectUI@@AAAXPAUHWND__@@@Z
2790?OpenPopup@TouchSelect@DirectUI@@QAAJXZ
2791?OptimizeMoveProp@HWNDHost@DirectUI@@SAPBUPropertyInfo@2@XZ
2792?OrderProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2793?Orientation@Schema@DirectUI@@2HA DATA
2794?OverhangOffsetProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
2795?OverhangProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2796?OverrideButtonBackgroundProp@CCPushButton@DirectUI@@SAPBUPropertyInfo@2@XZ
2797?OverrideZoomThreshold@TouchScrollViewer@DirectUI@@QAAJMMH@Z
2798?PaddingProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2799?PageDown@BaseScrollBar@DirectUI@@UAAXI@Z
2800?PageDown@TouchScrollBar@DirectUI@@UAAXI@Z
2801?PageProp@CCBaseScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2802?PageProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2803?PageUp@BaseScrollBar@DirectUI@@UAAXI@Z
2804?PageUp@TouchScrollBar@DirectUI@@UAAXI@Z
2805?Paint@AnimationStrip@DirectUI@@MAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2806?Paint@Element@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2807?Paint@HWNDHost@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2808?Paint@ModernProgressBar@DirectUI@@MAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2809?Paint@ModernProgressRing@DirectUI@@MAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2810?Paint@Movie@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2811?Paint@Progress@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2812?Paint@RichText@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2813?Paint@TouchCheckBox@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2814?Paint@TouchCheckBoxGlyph@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2815?Paint@TouchCommandButton@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2816?Paint@TouchEdit2@DirectUI@@UAAXPAUHDC__@@PBUtagRECT@@1PAU4@2@Z
2817?PaintBackground@Element@DirectUI@@QAAXPAUHDC__@@PAVValue@2@ABUtagRECT@@222@Z
2818?PaintBorder@Element@DirectUI@@QAAXPAUHDC__@@PAVValue@2@PAUtagRECT@@ABU5@@Z
2819?PaintContent@Element@DirectUI@@QAAXPAUHDC__@@PBUtagRECT@@@Z
2820?PaintEdgeHighlight@Element@DirectUI@@QAAXPAUHDC__@@ABUtagRECT@@1@Z
2821?PaintFocusRect@Element@DirectUI@@QAAXPAUHDC__@@PBUtagRECT@@1@Z
2822?PaintStringContent@Element@DirectUI@@QAAXPAUHDC__@@PBUtagRECT@@PAVValue@2@H@Z
2823?PaneControlType@Schema@DirectUI@@2HA DATA
2824?ParentProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2825?ParseARGBColor@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAK@Z
2826?ParseArgs@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PATParsedArg@12@IPBD@Z
2827?ParseAtomValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2828?ParseBehavior@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@@Z
2829?ParseBehaviorArgValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2830?ParseBoolValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2831?ParseColor@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAK@Z
2832?ParseDFCFill@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2833?ParseDTBFill@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2834?ParseDoubleListValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2835?ParseFillValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2836?ParseFloat@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAMPA_N@Z
2837?ParseFloatValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2838?ParseFunction@DUIXmlParser@DirectUI@@IAAJPBGPBUExprNode@ParserTools@2@PATParsedArg@12@IPBD@Z
2839?ParseGTCColor@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAK@Z
2840?ParseGTFStr@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2841?ParseGTMarRect@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAUScaledRECT@2@@Z
2842?ParseGTMetInt@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAH@Z
2843?ParseGradientFill@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2844?ParseGraphicGraphic@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2845?ParseGraphicHelper@DUIXmlParser@DirectUI@@IAAJ_NPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2846?ParseGraphicValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2847?ParseIconGraphic@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2848?ParseImageGraphic@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2849?ParseIntValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2850?ParseLayoutValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@@Z
2851?ParseLibrary@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAUHINSTANCE__@@@Z
2852?ParseLiteral@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPBG@Z
2853?ParseLiteralColor@DUIXmlParser@DirectUI@@IAAJPBGPAK@Z
2854?ParseLiteralColorInt@DUIXmlParser@DirectUI@@IAAJPBGPAH@Z
2855?ParseLiteralNumber@DUIXmlParser@DirectUI@@IAAJPBGPAHPA_N@Z
2856?ParseMagnitude@DUIXmlParser@DirectUI@@IAAJPBGPAHPA_N@Z
2857?ParseMagnitudeFloat@DUIXmlParser@DirectUI@@IAAJPBGPAMPA_N@Z
2858?ParseNumber@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAHPA_N@Z
2859?ParsePointValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2860?ParseQuotedString@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPBG@Z
2861?ParseRGBColor@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAK@Z
2862?ParseRect@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAUScaledRECT@2@@Z
2863?ParseRectRect@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAUScaledRECT@2@@Z
2864?ParseRectValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2865?ParseResStr@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2866?ParseResid@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPBG@Z
2867?ParseSGraphicGraphic@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2868?ParseSGraphicHelper@DUIXmlParser@DirectUI@@IAAJ_NPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2869?ParseSizeValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2870?ParseStringValue@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2871?ParseStyleSheets@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@@Z
2872?ParseSysMetricInt@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAH@Z
2873?ParseSysMetricStr@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAVValue@2@@Z
2874?ParseTheme@DUIXmlParser@DirectUI@@IAAJPBUExprNode@ParserTools@2@PAPAX@Z
2875?PasswordCharacterProp@Edit@DirectUI@@SAPBUPropertyInfo@2@XZ
2876?PasswordCharacterProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2877?PasswordRevealModeProp@TouchEdit2@DirectUI@@SAPBUPropertyInfo@2@XZ
2878?Paste@TouchEditBase@DirectUI@@SA?AVUID@@XZ
2879?PasteText@TouchEdit2@DirectUI@@QAAJPBG@Z
2880?PathProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
2881?PatternFromPatternId@Schema@DirectUI@@SA?AW4Pattern@12@H@Z
2882?Pause@Movie@DirectUI@@QAAXXZ
2883?PfnIsSupportedFromPattern@Schema@DirectUI@@SAP6A_NPAVElement@2@@ZW4Pattern@12@@Z
2884?PinningProp@BaseScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
2885?PixelOffsetModeProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
2886?Play@CCAVI@DirectUI@@QAAXPAUHWND__@@@Z
2887?Play@Movie@DirectUI@@QAAXXZ
2888?PlayAllFramesModeProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
2889?PlayProp@AnimationStrip@DirectUI@@SAPBUPropertyInfo@2@XZ
2890?PopupBoundsProp@TouchSelect@DirectUI@@SAPBUPropertyInfo@2@XZ
2891?PopupChange@TouchSelect@DirectUI@@SA?AVUID@@XZ
2892?PosInLayoutProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
2893?PositionProp@CCBaseScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2894?PositionProp@ModernProgressBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2895?PositionProp@Progress@DirectUI@@SAPBUPropertyInfo@2@XZ
2896?PositionProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2897?PostCreate@CCAVI@DirectUI@@MAAXPAUHWND__@@@Z
2898?PostCreate@CCBase@DirectUI@@MAAXPAUHWND__@@@Z
2899?PostCreate@CCBaseCheckRadioButton@DirectUI@@MAAXPAUHWND__@@@Z
2900?PostCreate@CCCommandLink@DirectUI@@MAAXPAUHWND__@@@Z
2901?PostCreate@CCTrackBar@DirectUI@@MAAXPAUHWND__@@@Z
2902?PrepareManualSwapDeferredZoomToRect@TouchScrollViewer@DirectUI@@QAAJPBUtagRECT@@PBM1PAM2M@Z
2903?PressedProp@Button@DirectUI@@SAPBUPropertyInfo@2@XZ
2904?PressedProp@TouchButton@DirectUI@@SAPBUPropertyInfo@2@XZ
2905?PreventFormatChangeUpdatingModifiedStateProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2906?PrintRTLControl@HWNDHost@DirectUI@@IAAXPAUHDC__@@0ABUtagRECT@@@Z
2907?ProcessIdProperty@Schema@DirectUI@@2HA DATA
2908?ProcessingKeyboardNavigation@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
2909?ProgressBarControlType@Schema@DirectUI@@2HA DATA
2910?PromptTextProp@TouchEdit2@DirectUI@@SAPBUPropertyInfo@2@XZ
2911?PromptWithCaretProp@TouchEdit2@DirectUI@@SAPBUPropertyInfo@2@XZ
2912?PropSheet_SendMessage@TaskPage@DirectUI@@IAAJIIJ@Z
2913?PropertyChangedCore@Edit@DirectUI@@AAAXPBUPropertyInfo@2@HPAVValue@2@PAUHWND__@@@Z
2914?PropertyChangingListener@EventManager@DirectUI@@SAJPAVElement@2@PBUPropertyInfo@2@PA_N@Z
2915?PropertyListener@EventManager@DirectUI@@SAJPAVElement@2@PBUPropertyInfo@2@HPAVValue@2@2@Z
2916?PropertyProp@Bind@DirectUI@@SAPBUPropertyInfo@2@XZ
2917?ProportionalProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2918?QueryInterface@DuiAccessible@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2919?QueryInterface@Element@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2920?QueryInterface@ElementProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2921?QueryInterface@ExpandCollapseProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2922?QueryInterface@GridItemProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2923?QueryInterface@GridProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2924?QueryInterface@HWNDElementProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2925?QueryInterface@HWNDHostAccessible@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2926?QueryInterface@InvokeProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2927?QueryInterface@RangeValueProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2928?QueryInterface@ScrollItemProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2929?QueryInterface@ScrollProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2930?QueryInterface@SelectionItemProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2931?QueryInterface@SelectionProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2932?QueryInterface@TableItemProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2933?QueryInterface@TableProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2934?QueryInterface@ToggleProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2935?QueryInterface@ValueProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2936?QueryInterface@XProvider@DirectUI@@UAAJABU_GUID@@PAPAX@Z
2937?QueryService@DuiAccessible@DirectUI@@UAAJABU_GUID@@0PAPAX@Z
2938?QueryService@HWNDHostAccessible@DirectUI@@UAAJABU_GUID@@0PAPAX@Z
2939?QuerySysMetric@DUIXmlParser@DirectUI@@KAHH@Z
2940?QuerySysMetricStr@DUIXmlParser@DirectUI@@KAPBGHPAGI@Z
2941?QueueDefaultAction@Element@DirectUI@@QAAJXZ
2942?RadioButtonControlType@Schema@DirectUI@@2HA DATA
2943?RaiseChildRemovedEvent@EventManager@DirectUI@@CAJABUElementRuntimeId@2@PAVElement@2@@Z
2944?RaiseGeometryEventWorker@EventManager@DirectUI@@CAJPAURectangleChange@2@_N111@Z
2945?RaiseGeometryEvents@EventManager@DirectUI@@CAJXZ
2946?RaiseStructureChangedEvent@EventManager@DirectUI@@CAJPAVElement@2@W4StructureChangeType@@@Z
2947?RaiseStructureEvents@EventManager@DirectUI@@CAJXZ
2948?RaiseVisibilityEvents@EventManager@DirectUI@@CAJXZ
2949?RangeMaxProp@CCTrackBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2950?RangeMinProp@CCTrackBar@DirectUI@@SAPBUPropertyInfo@2@XZ
2951?RangeValuePattern@Schema@DirectUI@@2HA DATA
2952?RangeValue_IsReadOnly_Property@Schema@DirectUI@@2HA DATA
2953?RangeValue_LargeChange_Property@Schema@DirectUI@@2HA DATA
2954?RangeValue_Maximum_Property@Schema@DirectUI@@2HA DATA
2955?RangeValue_Minimum_Property@Schema@DirectUI@@2HA DATA
2956?RangeValue_SmallChange_Property@Schema@DirectUI@@2HA DATA
2957?RangeValue_Value_Property@Schema@DirectUI@@2HA DATA
2958?RawActionProc@AnimationStrip@DirectUI@@KAXPAUGMA_ACTIONINFO@@@Z
2959?RawActionProc@Movie@DirectUI@@SAXPAUGMA_ACTIONINFO@@@Z
2960?ReadOnlyProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
2961?Recalc@AccessibleButton@DirectUI@@QAAXXZ
2962?ReferencePointProp@RefPointElement@DirectUI@@SAPBUPropertyInfo@2@XZ
2963?ReflowStyle@PVLAnimation@DirectUI@@SA?AVUID@@XZ
2964?RefreshContent@TouchEdit2@DirectUI@@UAAJXZ
2965?RefreshContent@TouchEditBase@DirectUI@@UAAJXZ
2966?Register@AccessibleButton@DirectUI@@SAJXZ
2967?Register@AnimationStrip@DirectUI@@SAJXZ
2968?Register@AutoButton@DirectUI@@SAJXZ
2969?Register@BaseScrollViewer@DirectUI@@SAJXZ
2970?Register@Bind@DirectUI@@SAJXZ
2971?Register@Browser@DirectUI@@SAJXZ
2972?Register@Button@DirectUI@@SAJXZ
2973?Register@CCAVI@DirectUI@@SAJXZ
2974?Register@CCBase@DirectUI@@SAJXZ
2975?Register@CCBaseCheckRadioButton@DirectUI@@SAJXZ
2976?Register@CCBaseScrollBar@DirectUI@@SAJXZ
2977?Register@CCCheckBox@DirectUI@@SAJXZ
2978?Register@CCCommandLink@DirectUI@@SAJXZ
2979?Register@CCHScrollBar@DirectUI@@SAJXZ
2980?Register@CCListBox@DirectUI@@SAJXZ
2981?Register@CCListView@DirectUI@@SAJXZ
2982?Register@CCProgressBar@DirectUI@@SAJXZ
2983?Register@CCPushButton@DirectUI@@SAJXZ
2984?Register@CCRadioButton@DirectUI@@SAJXZ
2985?Register@CCSysLink@DirectUI@@SAJXZ
2986?Register@CCTrackBar@DirectUI@@SAJXZ
2987?Register@CCTreeView@DirectUI@@SAJXZ
2988?Register@CCVScrollBar@DirectUI@@SAJXZ
2989?Register@CheckBoxGlyph@DirectUI@@SAJXZ
2990?Register@ClassInfoBase@DirectUI@@QAAJXZ
2991?Register@Clipper@DirectUI@@SAJXZ
2992?Register@Combobox@DirectUI@@SAJXZ
2993?Register@DialogElement@DirectUI@@SAJXZ
2994?Register@Edit@DirectUI@@SAJXZ
2995?Register@Element@DirectUI@@SAJXZ
2996?Register@ElementWithHWND@DirectUI@@SAJXZ
2997?Register@Expandable@DirectUI@@SAJXZ
2998?Register@Expando@DirectUI@@SAJXZ
2999?Register@ExpandoButtonGlyph@DirectUI@@SAJXZ
3000?Register@HWNDElement@DirectUI@@SAJXZ
3001?Register@HWNDHost@DirectUI@@SAJXZ
3002?Register@ItemList@DirectUI@@SAJXZ
3003?Register@Macro@DirectUI@@SAJXZ
3004?Register@ModernProgressBar@DirectUI@@SAJXZ
3005?Register@ModernProgressRing@DirectUI@@SAJXZ
3006?Register@Movie@DirectUI@@SAJXZ
3007?Register@Navigator@DirectUI@@SAJXZ
3008?Register@PText@DirectUI@@SAJXZ
3009?Register@Page@DirectUI@@SAJXZ
3010?Register@Pages@DirectUI@@SAJXZ
3011?Register@Progress@DirectUI@@SAJXZ
3012?Register@PushButton@DirectUI@@SAJXZ
3013?Register@RadioButtonGlyph@DirectUI@@SAJXZ
3014?Register@RefPointElement@DirectUI@@SAJXZ
3015?Register@RepeatButton@DirectUI@@SAJXZ
3016?Register@Repeater@DirectUI@@SAJXZ
3017?Register@RichText@DirectUI@@SAJXZ
3018?Register@ScrollBar@DirectUI@@SAJXZ
3019?Register@ScrollViewer@DirectUI@@SAJXZ
3020?Register@Selector@DirectUI@@SAJXZ
3021?Register@SelectorNoDefault@DirectUI@@SAJXZ
3022?Register@SemanticZoomToggle@DirectUI@@SAJXZ
3023?Register@StyledScrollViewer@DirectUI@@SAJXZ
3024?Register@TextGraphic@DirectUI@@SAJXZ
3025?Register@Thumb@DirectUI@@SAJXZ
3026?Register@TouchButton@DirectUI@@SAJXZ
3027?Register@TouchCheckBox@DirectUI@@SAJXZ
3028?Register@TouchCheckBoxGlyph@DirectUI@@SAJXZ
3029?Register@TouchCommandButton@DirectUI@@SAJXZ
3030?Register@TouchEdit2@DirectUI@@SAJXZ
3031?Register@TouchEditBase@DirectUI@@SAJXZ
3032?Register@TouchHWNDElement@DirectUI@@SAJXZ
3033?Register@TouchHyperLink@DirectUI@@SAJXZ
3034?Register@TouchRepeatButton@DirectUI@@SAJXZ
3035?Register@TouchScrollBar@DirectUI@@SAJXZ
3036?Register@TouchSelect@DirectUI@@SAJXZ
3037?Register@TouchSelectItem@DirectUI@@SAJXZ
3038?Register@TouchSlider@DirectUI@@SAJXZ
3039?Register@TouchSwitch@DirectUI@@SAJXZ
3040?Register@UnknownElement@DirectUI@@SAJXZ
3041?Register@Viewer@DirectUI@@SAJXZ
3042?Register@XBaby@DirectUI@@SAJXZ
3043?Register@XElement@DirectUI@@SAJXZ
3044?RegisterForAnimationStatusChanges@TouchHWNDElement@DirectUI@@QAAXXZ
3045?RegisterForIHMChanges@TouchHWNDElement@DirectUI@@QAAJXZ
3046?RegisterForMonitorPowerChanges@TouchHWNDElement@DirectUI@@QAAJXZ
3047?RegisteredDefaultButtonProp@DialogElement@DirectUI@@SAPBUPropertyInfo@2@XZ
3048?Release@ClassInfoBase@DirectUI@@UAAHXZ
3049?Release@DuiAccessible@DirectUI@@UAAKXZ
3050?Release@Element@DirectUI@@QAAKXZ
3051?Release@ElementProvider@DirectUI@@UAAKXZ
3052?Release@ExpandCollapseProvider@DirectUI@@UAAKXZ
3053?Release@GridItemProvider@DirectUI@@UAAKXZ
3054?Release@GridProvider@DirectUI@@UAAKXZ
3055?Release@HWNDElementProvider@DirectUI@@UAAKXZ
3056?Release@InvokeProvider@DirectUI@@UAAKXZ
3057?Release@RangeValueProvider@DirectUI@@UAAKXZ
3058?Release@RefcountBase@DirectUI@@QAAJXZ
3059?Release@ScrollItemProvider@DirectUI@@UAAKXZ
3060?Release@ScrollProvider@DirectUI@@UAAKXZ
3061?Release@SelectionItemProvider@DirectUI@@UAAKXZ
3062?Release@SelectionProvider@DirectUI@@UAAKXZ
3063?Release@TableItemProvider@DirectUI@@UAAKXZ
3064?Release@TableProvider@DirectUI@@UAAKXZ
3065?Release@ToggleProvider@DirectUI@@UAAKXZ
3066?Release@Value@DirectUI@@QAAXXZ
3067?Release@ValueProvider@DirectUI@@UAAKXZ
3068?Release@XProvider@DirectUI@@UAAKXZ
3069?ReleaseSnapshot@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
3070?Remove@Element@DirectUI@@QAAJPAV12@@Z
3071?Remove@Element@DirectUI@@UAAJPAPAV12@I@Z
3072?Remove@ElementProviderManager@DirectUI@@SAXPAVElementProvider@2@@Z
3073?Remove@LinkedList@DirectUI@@QAAXPAVLinkedListNode@2@@Z
3074?RemoveAll@Element@DirectUI@@QAAJXZ
3075?RemoveAll@TouchSelect@DirectUI@@QAAXXZ
3076?RemoveBehavior@Element@DirectUI@@UAAJPAUIDuiBehavior@@@Z
3077?RemoveChild@ClassInfoBase@DirectUI@@UAAXXZ
3078?RemoveFromSelection@SelectionItemProvider@DirectUI@@UAAJXZ
3079?RemoveItem@TouchSelect@DirectUI@@QAAJH@Z
3080?RemoveListener@Element@DirectUI@@QAAXPAUIElementListener@2@@Z
3081?RemoveLocalValue@Element@DirectUI@@QAAJP6APBUPropertyInfo@2@XZ@Z
3082?RemoveLocalValue@Element@DirectUI@@QAAJPBUPropertyInfo@2@@Z
3083?RemoveRichDuiTooltip@TouchSlider@DirectUI@@QAAXXZ
3084?RemoveShortcutFromName@Element@DirectUI@@AAAPAGPBG@Z
3085?RemoveTail@LinkedList@DirectUI@@QAAPAVLinkedListNode@2@XZ
3086?RemoveTooltip@Element@DirectUI@@MAAXPAV12@@Z
3087?RemoveTooltip@HWNDElement@DirectUI@@UAAXPAVElement@2@@Z
3088?RemoveTooltip@TouchHWNDElement@DirectUI@@UAAXPAVElement@2@@Z
3089?RepeatClick@TouchRepeatButton@DirectUI@@SA?AVUID@@XZ
3090?RepeatProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
3091?Reset@DuiAccessible@DirectUI@@UAAJXZ
3092?Reset@HWNDHostAccessible@DirectUI@@UAAJXZ
3093?ResetInputState@TouchScrollViewer@DirectUI@@QAAJXZ
3094?ResetManipulations@TouchScrollViewer@DirectUI@@QAAJXZ
3095?ResolveBindings@Macro@DirectUI@@IAAXXZ
3096?RestoreFocus@NativeHWNDHost@DirectUI@@QAAHXZ
3097?Resume@Movie@DirectUI@@QAAXXZ
3098?ReturnValueParser@DUIXmlParser@DirectUI@@IAAXPAVValueParser@ParserTools@2@@Z
3099?Rewind@Movie@DirectUI@@QAAXXZ
3100?RichTooltipShowing@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
3101?RightClick@TouchButton@DirectUI@@SA?AVUID@@XZ
3102?RuntimeIdProperty@Schema@DirectUI@@2HA DATA
3103?STACKDEPTH@CallstackTracker@DirectUI@@0HB
3104?SaveFocus@NativeHWNDHost@DirectUI@@QAAXXZ
3105?ScaleChanged@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
3106?ScaleFactorProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3107?Scroll@BaseScrollBar@DirectUI@@SA?AVUID@@XZ
3108?Scroll@ScrollProvider@DirectUI@@UAAJW4ScrollAmount@@0@Z
3109?Scroll@ScrollProxy@DirectUI@@AAAJW4ScrollAmount@@0@Z
3110?ScrollBarControlType@Schema@DirectUI@@2HA DATA
3111?ScrollIntoView@ScrollItemProvider@DirectUI@@UAAJXZ
3112?ScrollItemPattern@Schema@DirectUI@@2HA DATA
3113?ScrollLine@ScrollProxy@DirectUI@@AAAJ_N0@Z
3114?ScrollPaddingProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3115?ScrollPage@ScrollProxy@DirectUI@@AAAJ_N0@Z
3116?ScrollPattern@Schema@DirectUI@@2HA DATA
3117?ScrollToHorizontalPosition@ScrollProxy@DirectUI@@AAAJH_N@Z
3118?ScrollToVerticalPosition@ScrollProxy@DirectUI@@AAAJH_N@Z
3119?Scroll_HorizontalScrollPercent_Property@Schema@DirectUI@@2HA DATA
3120?Scroll_HorizontalViewSize_Property@Schema@DirectUI@@2HA DATA
3121?Scroll_HorizontallyScrollable_Property@Schema@DirectUI@@2HA DATA
3122?Scroll_VerticalScrollPercent_Property@Schema@DirectUI@@2HA DATA
3123?Scroll_VerticalViewSize_Property@Schema@DirectUI@@2HA DATA
3124?Scroll_VerticallyScrollable_Property@Schema@DirectUI@@2HA DATA
3125?Select@SelectionItemProvider@DirectUI@@UAAJXZ
3126?Select@SelectorSelectionItemProxy@DirectUI@@AAAJXZ
3127?SelectAll@TouchEdit2@DirectUI@@QAAJXZ
3128?SelectNone@TouchEdit2@DirectUI@@QAAJXZ
3129?SelectedProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3130?SelectionBackgroundColorProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
3131?SelectionChange@Combobox@DirectUI@@SA?AVUID@@XZ
3132?SelectionChange@Selector@DirectUI@@SA?AVUID@@XZ
3133?SelectionChange@TouchSelect@DirectUI@@SA?AVUID@@XZ
3134?SelectionForegroundColorProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
3135?SelectionInvalidatedEvent@Schema@DirectUI@@2HA DATA
3136?SelectionItemElementAddedToSelectionEvent@Schema@DirectUI@@2HA DATA
3137?SelectionItemElementRemovedFromSelectionEvent@Schema@DirectUI@@2HA DATA
3138?SelectionItemElementSelectedEvent@Schema@DirectUI@@2HA DATA
3139?SelectionItemPattern@Schema@DirectUI@@2HA DATA
3140?SelectionItem_IsSelected_Property@Schema@DirectUI@@2HA DATA
3141?SelectionItem_SelectionContainer_Property@Schema@DirectUI@@2HA DATA
3142?SelectionPattern@Schema@DirectUI@@2HA DATA
3143?SelectionProp@Combobox@DirectUI@@SAPBUPropertyInfo@2@XZ
3144?SelectionProp@Selector@DirectUI@@SAPBUPropertyInfo@2@XZ
3145?SelectionProp@TouchSelect@DirectUI@@SAPBUPropertyInfo@2@XZ
3146?Selection_CanSelectMultiple_Property@Schema@DirectUI@@2HA DATA
3147?Selection_IsSelectionRequired_Property@Schema@DirectUI@@2HA DATA
3148?Selection_Selection_Property@Schema@DirectUI@@2HA DATA
3149?SemanticChange@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
3150?SemanticZoomControlType@Schema@DirectUI@@2HA DATA
3151?SendParseError@DUIXmlParser@DirectUI@@IAAXPBG0HHJ@Z
3152?SendParseError@DUIXmlParser@DirectUI@@IAAXPBG0PAUIXmlReader@@J@Z
3153?SeparatorControlType@Schema@DirectUI@@2HA DATA
3154?SetAbsorbsShortcut@Element@DirectUI@@QAAJ_N@Z
3155?SetAccDefAction@Element@DirectUI@@QAAJPBG@Z
3156?SetAccDesc@Element@DirectUI@@QAAJPBG@Z
3157?SetAccHelp@Element@DirectUI@@QAAJPBG@Z
3158?SetAccItemStatus@Element@DirectUI@@QAAJPBG@Z
3159?SetAccItemType@Element@DirectUI@@QAAJPBG@Z
3160?SetAccName@Element@DirectUI@@QAAJPBG@Z
3161?SetAccRole@Element@DirectUI@@QAAJH@Z
3162?SetAccState@Element@DirectUI@@QAAJH@Z
3163?SetAccValue@Element@DirectUI@@QAAJPBG@Z
3164?SetAccessible@Element@DirectUI@@QAAJ_N@Z
3165?SetActive@Element@DirectUI@@QAAJH@Z
3166?SetActiveState@TouchScrollBar@DirectUI@@QAAXW4ActiveState@2@_N@Z
3167?SetActivityOccuring@ModernProgressBar@DirectUI@@QAAJ_N@Z
3168?SetActivityOccuring@ModernProgressRing@DirectUI@@QAAJ_N@Z
3169?SetAddLayeredRef@ModernProgressBar@DirectUI@@QAAJ_N@Z
3170?SetAddLayeredRef@ModernProgressRing@DirectUI@@QAAJ_N@Z
3171?SetAliasedRendering@RichText@DirectUI@@QAAJ_N@Z
3172?SetAllowArrowOut@TouchScrollViewer@DirectUI@@QAAJ_N@Z
3173?SetAlpha@Element@DirectUI@@QAAJH@Z
3174?SetAnimatePopupOnDismiss@TouchSelect@DirectUI@@QAAJ_N@Z
3175?SetAnimation@Element@DirectUI@@QAAJH@Z
3176?SetAutoGrouping@CCRadioButton@DirectUI@@QAAJ_N@Z
3177?SetAutoHeight@ModernProgressBar@DirectUI@@QAAJ_N@Z
3178?SetAutoStart@Movie@DirectUI@@QAAJ_N@Z
3179?SetAutoStop@Movie@DirectUI@@QAAJ_N@Z
3180?SetBackgroundColor@Element@DirectUI@@QAAJABUFill@2@@Z
3181?SetBackgroundColor@Element@DirectUI@@QAAJK@Z
3182?SetBackgroundColor@Element@DirectUI@@QAAJKKE@Z
3183?SetBackgroundColor@Element@DirectUI@@QAAJKKKE@Z
3184?SetBackgroundColor@Element@DirectUI@@QAAJPBGHH@Z
3185?SetBackgroundOwnerID@HWNDHost@DirectUI@@QAAJPBG@Z
3186?SetBackgroundStdColor@Element@DirectUI@@QAAJH@Z
3187?SetBaseline@RichText@DirectUI@@QAAJH@Z
3188?SetBorderColor@Element@DirectUI@@QAAJK@Z
3189?SetBorderGradientColor@Element@DirectUI@@QAAJKKE@Z
3190?SetBorderStdColor@Element@DirectUI@@QAAJH@Z
3191?SetBorderStyle@Element@DirectUI@@QAAJH@Z
3192?SetBorderThickness@Element@DirectUI@@QAAJHHHH@Z
3193?SetBuffering@TouchSlider@DirectUI@@QAAJH@Z
3194?SetButtonClassAcceptsEnterKey@DialogElement@DirectUI@@QAAJ_N@Z
3195?SetButtonClassAcceptsEnterKey@XBaby@DirectUI@@UAAJ_N@Z
3196?SetButtonClassAcceptsEnterKey@XProvider@DirectUI@@UAAJ_N@Z
3197?SetCache@RichText@DirectUI@@QAAXKPAUIDUIRichTextCache@@@Z
3198?SetCacheDirty@Layout@DirectUI@@IAAXXZ
3199?SetCaptured@Button@DirectUI@@QAAJ_N@Z
3200?SetCaptured@TouchButton@DirectUI@@QAAJ_N@Z
3201?SetCaretPosition@TouchEdit2@DirectUI@@QAAJJ@Z
3202?SetCheckedState@TouchCheckBox@DirectUI@@QAAJW4CheckedStateFlags@2@@Z
3203?SetClass@Element@DirectUI@@QAAJPBG@Z
3204?SetClassInfoPtr@AccessibleButton@DirectUI@@SAXPAUIClassInfo@2@@Z
3205?SetClassInfoPtr@AnimationStrip@DirectUI@@SAXPAUIClassInfo@2@@Z
3206?SetClassInfoPtr@AutoButton@DirectUI@@SAXPAUIClassInfo@2@@Z
3207?SetClassInfoPtr@BaseScrollViewer@DirectUI@@SAXPAUIClassInfo@2@@Z
3208?SetClassInfoPtr@Bind@DirectUI@@SAXPAUIClassInfo@2@@Z
3209?SetClassInfoPtr@Browser@DirectUI@@SAXPAUIClassInfo@2@@Z
3210?SetClassInfoPtr@Button@DirectUI@@SAXPAUIClassInfo@2@@Z
3211?SetClassInfoPtr@CCAVI@DirectUI@@SAXPAUIClassInfo@2@@Z
3212?SetClassInfoPtr@CCBase@DirectUI@@SAXPAUIClassInfo@2@@Z
3213?SetClassInfoPtr@CCBaseCheckRadioButton@DirectUI@@SAXPAUIClassInfo@2@@Z
3214?SetClassInfoPtr@CCBaseScrollBar@DirectUI@@SAXPAUIClassInfo@2@@Z
3215?SetClassInfoPtr@CCCheckBox@DirectUI@@SAXPAUIClassInfo@2@@Z
3216?SetClassInfoPtr@CCCommandLink@DirectUI@@SAXPAUIClassInfo@2@@Z
3217?SetClassInfoPtr@CCHScrollBar@DirectUI@@SAXPAUIClassInfo@2@@Z
3218?SetClassInfoPtr@CCListBox@DirectUI@@SAXPAUIClassInfo@2@@Z
3219?SetClassInfoPtr@CCListView@DirectUI@@SAXPAUIClassInfo@2@@Z
3220?SetClassInfoPtr@CCProgressBar@DirectUI@@SAXPAUIClassInfo@2@@Z
3221?SetClassInfoPtr@CCPushButton@DirectUI@@SAXPAUIClassInfo@2@@Z
3222?SetClassInfoPtr@CCRadioButton@DirectUI@@SAXPAUIClassInfo@2@@Z
3223?SetClassInfoPtr@CCSysLink@DirectUI@@SAXPAUIClassInfo@2@@Z
3224?SetClassInfoPtr@CCTrackBar@DirectUI@@SAXPAUIClassInfo@2@@Z
3225?SetClassInfoPtr@CCTreeView@DirectUI@@SAXPAUIClassInfo@2@@Z
3226?SetClassInfoPtr@CCVScrollBar@DirectUI@@SAXPAUIClassInfo@2@@Z
3227?SetClassInfoPtr@CheckBoxGlyph@DirectUI@@SAXPAUIClassInfo@2@@Z
3228?SetClassInfoPtr@Clipper@DirectUI@@SAXPAUIClassInfo@2@@Z
3229?SetClassInfoPtr@Combobox@DirectUI@@SAXPAUIClassInfo@2@@Z
3230?SetClassInfoPtr@DialogElement@DirectUI@@SAXPAUIClassInfo@2@@Z
3231?SetClassInfoPtr@Edit@DirectUI@@SAXPAUIClassInfo@2@@Z
3232?SetClassInfoPtr@Element@DirectUI@@SAXPAUIClassInfo@2@@Z
3233?SetClassInfoPtr@ElementWithHWND@DirectUI@@SAXPAUIClassInfo@2@@Z
3234?SetClassInfoPtr@Expandable@DirectUI@@SAXPAUIClassInfo@2@@Z
3235?SetClassInfoPtr@Expando@DirectUI@@SAXPAUIClassInfo@2@@Z
3236?SetClassInfoPtr@ExpandoButtonGlyph@DirectUI@@SAXPAUIClassInfo@2@@Z
3237?SetClassInfoPtr@HWNDElement@DirectUI@@SAXPAUIClassInfo@2@@Z
3238?SetClassInfoPtr@HWNDHost@DirectUI@@SAXPAUIClassInfo@2@@Z
3239?SetClassInfoPtr@Macro@DirectUI@@SAXPAUIClassInfo@2@@Z
3240?SetClassInfoPtr@Movie@DirectUI@@SAXPAUIClassInfo@2@@Z
3241?SetClassInfoPtr@Navigator@DirectUI@@SAXPAUIClassInfo@2@@Z
3242?SetClassInfoPtr@PText@DirectUI@@SAXPAUIClassInfo@2@@Z
3243?SetClassInfoPtr@Page@DirectUI@@SAXPAUIClassInfo@2@@Z
3244?SetClassInfoPtr@Pages@DirectUI@@SAXPAUIClassInfo@2@@Z
3245?SetClassInfoPtr@Progress@DirectUI@@SAXPAUIClassInfo@2@@Z
3246?SetClassInfoPtr@PushButton@DirectUI@@SAXPAUIClassInfo@2@@Z
3247?SetClassInfoPtr@RadioButtonGlyph@DirectUI@@SAXPAUIClassInfo@2@@Z
3248?SetClassInfoPtr@RefPointElement@DirectUI@@SAXPAUIClassInfo@2@@Z
3249?SetClassInfoPtr@RepeatButton@DirectUI@@SAXPAUIClassInfo@2@@Z
3250?SetClassInfoPtr@Repeater@DirectUI@@SAXPAUIClassInfo@2@@Z
3251?SetClassInfoPtr@ScrollBar@DirectUI@@SAXPAUIClassInfo@2@@Z
3252?SetClassInfoPtr@ScrollViewer@DirectUI@@SAXPAUIClassInfo@2@@Z
3253?SetClassInfoPtr@Selector@DirectUI@@SAXPAUIClassInfo@2@@Z
3254?SetClassInfoPtr@SelectorNoDefault@DirectUI@@SAXPAUIClassInfo@2@@Z
3255?SetClassInfoPtr@StyledScrollViewer@DirectUI@@SAXPAUIClassInfo@2@@Z
3256?SetClassInfoPtr@TextGraphic@DirectUI@@SAXPAUIClassInfo@2@@Z
3257?SetClassInfoPtr@Thumb@DirectUI@@SAXPAUIClassInfo@2@@Z
3258?SetClassInfoPtr@UnknownElement@DirectUI@@SAXPAUIClassInfo@2@@Z
3259?SetClassInfoPtr@Viewer@DirectUI@@SAXPAUIClassInfo@2@@Z
3260?SetClassInfoPtr@XBaby@DirectUI@@SAXPAUIClassInfo@2@@Z
3261?SetClassInfoPtr@XElement@DirectUI@@SAXPAUIClassInfo@2@@Z
3262?SetClient@BorderLayout@DirectUI@@AAAXPAVElement@2@@Z
3263?SetColorFontPaletteIndex@RichText@DirectUI@@QAAJH@Z
3264?SetCompositedText@Element@DirectUI@@QAAJ_N@Z
3265?SetCompositingQuality@Movie@DirectUI@@QAAJH@Z
3266?SetConnect@Bind@DirectUI@@QAAJPBG@Z
3267?SetConstrainLayout@RichText@DirectUI@@QAAJH@Z
3268?SetContact@TouchScrollViewer@DirectUI@@QAAJI_N@Z
3269?SetContactNeeded@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
3270?SetContactNotify@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
3271?SetContentAlign@Element@DirectUI@@QAAJH@Z
3272?SetContentGraphic@Element@DirectUI@@QAAJPBGEI@Z
3273?SetContentGraphic@Element@DirectUI@@QAAJPBGGG@Z
3274?SetContentString@Element@DirectUI@@QAAJPBG@Z
3275?SetCursor@Element@DirectUI@@QAAJPBG@Z
3276?SetCursorHandle@Element@DirectUI@@QAAJPAUHICON__@@@Z
3277?SetDWriteFontCollection@RichText@DirectUI@@QAAXPAUIDWriteFontCollection@@@Z
3278?SetDWriteTextLayout@RichText@DirectUI@@QAAXPAUIDWriteTextLayout@@@Z
3279?SetDataEngine@Repeater@DirectUI@@QAAXPAUIDataEngine@2@@Z
3280?SetDataEntry@Macro@DirectUI@@QAAXPAUIDataEntry@2@PAVElement@2@@Z
3281?SetDataEntry@PText@DirectUI@@QAAXPAUIDataEntry@2@@Z
3282?SetDefaultButtonTracking@DialogElement@DirectUI@@UAAJ_N@Z
3283?SetDefaultButtonTracking@XBaby@DirectUI@@UAAJ_N@Z
3284?SetDefaultButtonTracking@XProvider@DirectUI@@UAAJ_N@Z
3285?SetDefaultFocusID@NativeHWNDHost@DirectUI@@QAAXPBG@Z
3286?SetDefaultGraphicType@Macro@DirectUI@@QAAXE_N@Z
3287?SetDefaultHInstance@DUIXmlParser@DirectUI@@QAAXPAUHINSTANCE__@@@Z
3288?SetDefaultState@CCPushButton@DirectUI@@IAAXKK@Z
3289?SetDelegateEventHandler@TouchScrollViewer@DirectUI@@QAAJPAUIUnknown@@@Z
3290?SetDeterminate@ModernProgressBar@DirectUI@@QAAJ_N@Z
3291?SetDirection@Element@DirectUI@@QAAJH@Z
3292?SetDirty@Edit@DirectUI@@QAAJ_N@Z
3293?SetDisableAccTextExtend@RichText@DirectUI@@QAAJ_N@Z
3294?SetDisableMouseInRectCheck@TouchRepeatButton@DirectUI@@QAAJ_N@Z
3295?SetDisableOffscreenCaching@TouchScrollViewer@DirectUI@@QAAX_N@Z
3296?SetDrawOutlines@Movie@DirectUI@@QAAJ_N@Z
3297?SetDynamicScaling@DUIXmlParser@DirectUI@@QAAXW4DynamicScaleParsing@2@@Z
3298?SetEdgeHighlightColor@Element@DirectUI@@QAAJK@Z
3299?SetEdgeHighlightThickness@Element@DirectUI@@QAAJHHHH@Z
3300?SetElementMovesOnIHMNotify@TouchEditBase@DirectUI@@QAAJ_N@Z
3301?SetEnabled@Element@DirectUI@@QAAJ_N@Z
3302?SetEncodedContentString@Element@DirectUI@@QAAJPBG@Z
3303?SetEnforceSize@PushButton@DirectUI@@QAAJ_N@Z
3304?SetEnsureVisibleUseLayoutCoordinates@Viewer@DirectUI@@QAAX_N@Z
3305?SetError@DUIFactory@DirectUI@@QAAXPBGZZ
3306?SetExpand@Macro@DirectUI@@QAAJPBG@Z
3307?SetExpanded@Expandable@DirectUI@@QAAJ_N@Z
3308?SetFilterOnPaste@TouchEditBase@DirectUI@@QAAJ_N@Z
3309?SetFireContinuousSliderEvent@TouchSlider@DirectUI@@QAAX_N@Z
3310?SetFlags@TouchHWNDElement@DirectUI@@QAAJW4TouchHWNDElementFlags@2@0@Z
3311?SetFocus@ElementProvider@DirectUI@@UAAJXZ
3312?SetFocus@HWNDElement@DirectUI@@QAAX_N@Z
3313?SetFocus@XProvider@DirectUI@@UAAJPAVElement@2@@Z
3314?SetFont@Element@DirectUI@@QAAJPBG@Z
3315?SetFontColorRuns@RichText@DirectUI@@QAAJPBG@Z
3316?SetFontFace@Element@DirectUI@@QAAJPBG@Z
3317?SetFontQuality@Element@DirectUI@@QAAJH@Z
3318?SetFontSize@Element@DirectUI@@QAAJH@Z
3319?SetFontSizeRuns@RichText@DirectUI@@QAAJPBG@Z
3320?SetFontStyle@Element@DirectUI@@QAAJH@Z
3321?SetFontWeight@Element@DirectUI@@QAAJH@Z
3322?SetFontWeightRuns@RichText@DirectUI@@QAAJPBG@Z
3323?SetForceEditTextToLTR@TouchEditBase@DirectUI@@QAAJ_N@Z
3324?SetForegroundColor@Element@DirectUI@@QAAJK@Z
3325?SetForegroundColor@Element@DirectUI@@QAAJKKE@Z
3326?SetForegroundColor@Element@DirectUI@@QAAJKKKE@Z
3327?SetForegroundStdColor@Element@DirectUI@@QAAJH@Z
3328?SetFrameDuration@AnimationStrip@DirectUI@@QAAJH@Z
3329?SetFrameIndex@AnimationStrip@DirectUI@@QAAJH@Z
3330?SetFrameWidth@AnimationStrip@DirectUI@@QAAJH@Z
3331?SetGetSheetCallback@DUIXmlParser@DirectUI@@QAAXP6APAVValue@2@PBGPAX@Z1@Z
3332?SetGraphicType@Repeater@DirectUI@@QAAXE@Z
3333?SetHandleEnter@TouchButton@DirectUI@@QAAJ_N@Z
3334?SetHandleEnterKey@DialogElement@DirectUI@@QAAJ_N@Z
3335?SetHandleEnterKey@XBaby@DirectUI@@UAAJ_N@Z
3336?SetHandleEnterKey@XProvider@DirectUI@@IAAX_N@Z
3337?SetHandleGlobalEnter@TouchButton@DirectUI@@QAAJ_N@Z
3338?SetHeight@Element@DirectUI@@QAAJH@Z
3339?SetID@Element@DirectUI@@QAAJPBG@Z
3340?SetIMEComposing@TouchEditBase@DirectUI@@QAAJ_N@Z
3341?SetIgnoredKeyCombos@TouchEditBase@DirectUI@@QAAJW4TouchEditFilteredKeyComboFlags@2@0@Z
3342?SetIndependentAnimations@ModernProgressBar@DirectUI@@QAAJ_N@Z
3343?SetInnerBorderThickness@TouchEdit2@DirectUI@@QAAJHHHH@Z
3344?SetInputScope@TouchEdit2@DirectUI@@QAAJW4__MIDL___MIDL_itf_inputscope_0000_0000_0001@@@Z
3345?SetIntegrateIMECandidateList@TouchEditBase@DirectUI@@QAAJ_N@Z
3346?SetInteractionMode@TouchScrollViewer@DirectUI@@QAAJH@Z
3347?SetInterpolationMode@Movie@DirectUI@@QAAJH@Z
3348?SetIsContinuous@TouchSlider@DirectUI@@QAAJ_N@Z
3349?SetIsPressed@TouchSlider@DirectUI@@QAAJ_N@Z
3350?SetIsShowOnOffFeedback@TouchSlider@DirectUI@@QAAJ_N@Z
3351?SetIsVertical@TouchSlider@DirectUI@@QAAJ_N@Z
3352?SetItemData@TouchSelect@DirectUI@@QAAJHPAUIUnknown@@@Z
3353?SetItemData@TouchSelectItem@DirectUI@@QAAJPAUIUnknown@@@Z
3354?SetItemHeightInPopup@TouchSelect@DirectUI@@QAAJH@Z
3355?SetItemState@CCTreeView@DirectUI@@QAAXPAU_TREEITEM@@I@Z
3356?SetKeyFocus@Element@DirectUI@@UAAXXZ
3357?SetKeyFocus@HWNDHost@DirectUI@@UAAXXZ
3358?SetKeyFocus@TouchEditBase@DirectUI@@UAAXXZ
3359?SetKeyFocus@XBaby@DirectUI@@UAAXXZ
3360?SetKeyFocus@XElement@DirectUI@@UAAXXZ
3361?SetKeyboardNavigationCapture@TouchEditBase@DirectUI@@QAAJW4TouchEditKeyboardNavigationCapture@2@@Z
3362?SetLayout@Element@DirectUI@@QAAJPAVLayout@2@@Z
3363?SetLayoutCompletionNotify@Element@DirectUI@@QAAX_N@Z
3364?SetLayoutPos@Element@DirectUI@@QAAJH@Z
3365?SetLightDismissIHM@TouchHWNDElement@DirectUI@@QAAJ_N@Z
3366?SetLine@CCBaseScrollBar@DirectUI@@UAAJH@Z
3367?SetLine@ScrollBar@DirectUI@@UAAJH@Z
3368?SetLineSize@CCTrackBar@DirectUI@@QAAJH@Z
3369?SetLineSpacing@RichText@DirectUI@@QAAJH@Z
3370?SetLinkIndicatorsToContent@TouchScrollViewer@DirectUI@@QAAJ_N@Z
3371?SetLocale@RichText@DirectUI@@QAAJPBG@Z
3372?SetManipulationHorizontalAlignment@TouchScrollViewer@DirectUI@@QAAJH@Z
3373?SetManipulationVerticalAlignment@TouchScrollViewer@DirectUI@@QAAJH@Z
3374?SetMapRunsToClusters@RichText@DirectUI@@QAAJ_N@Z
3375?SetMargin@Element@DirectUI@@QAAJHHHH@Z
3376?SetMaxLength@Edit@DirectUI@@QAAJH@Z
3377?SetMaxLength@TouchEditBase@DirectUI@@QAAJH@Z
3378?SetMaxLineCount@RichText@DirectUI@@QAAXI@Z
3379?SetMaximum@CCBaseScrollBar@DirectUI@@UAAJH@Z
3380?SetMaximum@ModernProgressBar@DirectUI@@QAAJH@Z
3381?SetMaximum@Progress@DirectUI@@QAAJH@Z
3382?SetMaximum@ScrollBar@DirectUI@@UAAJH@Z
3383?SetMetering@TouchSlider@DirectUI@@QAAJH@Z
3384?SetMinSize@Element@DirectUI@@QAAJHH@Z
3385?SetMinimum@CCBaseScrollBar@DirectUI@@UAAJH@Z
3386?SetMinimum@ModernProgressBar@DirectUI@@QAAJH@Z
3387?SetMinimum@Progress@DirectUI@@QAAJH@Z
3388?SetMinimum@ScrollBar@DirectUI@@UAAJH@Z
3389?SetMoveCaretToEndOnSyncContent@TouchEditBase@DirectUI@@QAAJ_N@Z
3390?SetMultiline@Edit@DirectUI@@QAAJ_N@Z
3391?SetMultiline@TouchEditBase@DirectUI@@QAAJ_N@Z
3392?SetNoBrowseOnFirstAdd@Pages@DirectUI@@QAAXXZ
3393?SetNote@CCCommandLink@DirectUI@@QAAJPBG@Z
3394?SetNotifyHandler@CCBase@DirectUI@@QAAXP6AHIIJPAJPAX@Z1@Z
3395?SetOffText@TouchSwitch@DirectUI@@QAAJPBG@Z
3396?SetOnOffText@TouchSwitch@DirectUI@@QAAXPBG0@Z
3397?SetOnText@TouchSwitch@DirectUI@@QAAJPBG@Z
3398?SetOptimizeMove@HWNDHost@DirectUI@@QAAJ_N@Z
3399?SetOrder@ScrollBar@DirectUI@@QAAJH@Z
3400?SetOverhang@Element@DirectUI@@QAAJ_N@Z
3401?SetOverhangOffset@RichText@DirectUI@@QAAJH@Z
3402?SetOverrideButtonBackground@CCPushButton@DirectUI@@QAAJ_N@Z
3403?SetOverrideScaleFactor@DUIXmlParser@DirectUI@@QAAXM@Z
3404?SetOverrideScaleFactor@Element@DirectUI@@QAAXM@Z
3405?SetPVLAnimationState@Element@DirectUI@@QAAXH@Z
3406?SetPadding@Element@DirectUI@@QAAJHHHH@Z
3407?SetPage@CCBaseScrollBar@DirectUI@@UAAJH@Z
3408?SetPage@ScrollBar@DirectUI@@UAAJH@Z
3409?SetParameter@XProvider@DirectUI@@UAAJABU_GUID@@PAX@Z
3410?SetParentSizeControl@HWNDElement@DirectUI@@QAAX_N@Z
3411?SetParseErrorCallback@DUIXmlParser@DirectUI@@QAAXP6AXPBG0HPAX@Z1@Z
3412?SetParseState@DUIXmlParser@DirectUI@@AAAXW4_DUI_PARSE_STATE@2@@Z
3413?SetParser@Macro@DirectUI@@QAAXPAVDUIXmlParser@2@@Z
3414?SetPasswordCharacter@Edit@DirectUI@@QAAJH@Z
3415?SetPasswordCharacter@TouchEditBase@DirectUI@@QAAJH@Z
3416?SetPasswordRevealMode@TouchEdit2@DirectUI@@QAAJW4TouchEditPasswordRevealMode@2@@Z
3417?SetPath@Movie@DirectUI@@QAAJPBG@Z
3418?SetPercent@ScrollProxy@DirectUI@@AAAJPAVBaseScrollBar@2@N@Z
3419?SetPinned@BaseScrollBar@DirectUI@@QAAX_N@Z
3420?SetPinning@BaseScrollViewer@DirectUI@@QAAJH@Z
3421?SetPixelOffsetMode@Movie@DirectUI@@QAAJH@Z
3422?SetPlay@AnimationStrip@DirectUI@@QAAJ_N@Z
3423?SetPlayAllFramesMode@Movie@DirectUI@@QAAJ_N@Z
3424?SetPopupBounds@TouchSelect@DirectUI@@QAAJHHHH@Z
3425?SetPosition@CCBaseScrollBar@DirectUI@@UAAJH@Z
3426?SetPosition@ModernProgressBar@DirectUI@@QAAJH@Z
3427?SetPosition@Progress@DirectUI@@QAAJH@Z
3428?SetPosition@ScrollBar@DirectUI@@UAAJH@Z
3429?SetPreprocessedXML@DUIXmlParser@DirectUI@@QAAJPBGPAUHINSTANCE__@@1@Z
3430?SetPreserveAlphaChannel@Element@DirectUI@@QAAX_N@Z
3431?SetPressed@Button@DirectUI@@QAAJ_N@Z
3432?SetPressed@TouchButton@DirectUI@@QAAJ_N@Z
3433?SetPreventFormatChangeUpdatingModifiedState@TouchEditBase@DirectUI@@QAAJ_N@Z
3434?SetPromptText@TouchEdit2@DirectUI@@QAAJPBG@Z
3435?SetPromptWithCaret@TouchEdit2@DirectUI@@QAAJ_N@Z
3436?SetProperty@Bind@DirectUI@@QAAJPBG@Z
3437?SetProportional@ScrollBar@DirectUI@@QAAJ_N@Z
3438?SetProvider@XElement@DirectUI@@QAAJPAUIUnknown@@@Z
3439?SetRangeMax@CCTrackBar@DirectUI@@QAAJH@Z
3440?SetRangeMax@TouchSlider@DirectUI@@QAAXH@Z
3441?SetRangeMin@CCTrackBar@DirectUI@@QAAJH@Z
3442?SetRangeMin@TouchSlider@DirectUI@@QAAXH@Z
3443?SetRangeMinAndRangeMax@TouchSlider@DirectUI@@QAAXHH@Z
3444?SetReadOnly@TouchEditBase@DirectUI@@QAAJ_N@Z
3445?SetReferencePoint@RefPointElement@DirectUI@@QAAJHH@Z
3446?SetRegisteredDefaultButton@DialogElement@DirectUI@@QAAJPAVElement@2@@Z
3447?SetRegisteredDefaultButton@XBaby@DirectUI@@UAAJPAVElement@2@@Z
3448?SetRegisteredDefaultButton@XProvider@DirectUI@@UAAJPAVElement@2@@Z
3449?SetRegisteredDefaultButtonSelectedState@DialogElementCore@DirectUI@@IAAX_N@Z
3450?SetReorderable@ItemList@DirectUI@@QAAJ_N@Z
3451?SetRepeat@Movie@DirectUI@@QAAJ_N@Z
3452?SetRespectLanguageDirection@TouchSlider@DirectUI@@QAAX_N@Z
3453?SetRespondToMouseScroll@TouchSlider@DirectUI@@QAAX_N@Z
3454?SetScaleFactor@DUIXmlParser@DirectUI@@QAAXM@Z
3455?SetScreenCenter@HWNDElement@DirectUI@@QAAX_N@Z
3456?SetScrollControlHost@TouchScrollViewer@DirectUI@@QAAJPAVElement@2@@Z
3457?SetScrollPadding@TouchScrollViewer@DirectUI@@QAAJHHHH@Z
3458?SetScrollPercent@ScrollProvider@DirectUI@@UAAJNN@Z
3459?SetScrollPercent@ScrollProxy@DirectUI@@AAAJNN@Z
3460?SetSelected@Element@DirectUI@@QAAJ_N@Z
3461?SetSelection@Combobox@DirectUI@@QAAJH@Z
3462?SetSelection@Selector@DirectUI@@UAAJPAVElement@2@@Z
3463?SetSelection@SelectorNoDefault@DirectUI@@UAAJPAVElement@2@@Z
3464?SetSelection@TouchEdit2@DirectUI@@QAAJJJ@Z
3465?SetSelection@TouchSelect@DirectUI@@QAAJPAVElement@2@@Z
3466?SetSelectionBackgroundColor@TouchEditBase@DirectUI@@QAAJPAVValue@2@@Z
3467?SetSelectionForegroundColor@TouchEditBase@DirectUI@@QAAJPAVValue@2@@Z
3468?SetSelectionIndex@TouchSelect@DirectUI@@QAAJH@Z
3469?SetShadowIntensity@Element@DirectUI@@QAAJH@Z
3470?SetSheet@Element@DirectUI@@QAAJPAVStyleSheet@2@@Z
3471?SetShortcut@Element@DirectUI@@QAAJH@Z
3472?SetShowClearButtonMinWidth@TouchEdit2@DirectUI@@QAAJH@Z
3473?SetShowKeyFocus@TouchButton@DirectUI@@QAAJ_N@Z
3474?SetShowTick@TouchSlider@DirectUI@@QAAJ_N@Z
3475?SetSmoothFillAnimation@ModernProgressBar@DirectUI@@QAAJ_N@Z
3476?SetSmoothingMode@Movie@DirectUI@@QAAJH@Z
3477?SetSnapIntervalX@TouchScrollViewer@DirectUI@@QAAJM@Z
3478?SetSnapIntervalY@TouchScrollViewer@DirectUI@@QAAJM@Z
3479?SetSnapMode@TouchScrollViewer@DirectUI@@QAAJH@Z
3480?SetSnapOffsetX@TouchScrollViewer@DirectUI@@QAAJM@Z
3481?SetSnapOffsetY@TouchScrollViewer@DirectUI@@QAAJM@Z
3482?SetSnapPointCollectionX@TouchScrollViewer@DirectUI@@QAAJPAV?$DynamicArray@N$0A@@2@@Z
3483?SetSnapPointCollectionX@TouchScrollViewer@DirectUI@@QAAJPBNH@Z
3484?SetSnapPointCollectionY@TouchScrollViewer@DirectUI@@QAAJPAV?$DynamicArray@N$0A@@2@@Z
3485?SetSnapPointCollectionY@TouchScrollViewer@DirectUI@@QAAJPBNH@Z
3486?SetState@ModernProgressBar@DirectUI@@QAAJH@Z
3487?SetStdCursor@Element@DirectUI@@QAAJH@Z
3488?SetStepCount@TouchSlider@DirectUI@@QAAXH@Z
3489?SetStopThumbBehavior@RepeatButton@DirectUI@@QAAXXZ
3490?SetString@ElementProxy@DirectUI@@IAAJPAUtagVARIANT@@P8Element@2@AAPBGPAPAVValue@2@@Z@Z
3491?SetStyle@CCTreeView@DirectUI@@QAAKK@Z
3492?SetSubContent@TouchCommandButton@DirectUI@@QAAJPBG@Z
3493?SetSuppressClearButton@TouchEdit2@DirectUI@@QAAJ_N@Z
3494?SetSuppressSetContact@TouchScrollViewer@DirectUI@@QAAJ_N@Z
3495?SetSyncContentWhileIMEComposing@TouchEditBase@DirectUI@@QAAJ_N@Z
3496?SetTargetPage@Navigator@DirectUI@@QAAJPBG@Z
3497?SetTextContentOverride@TouchSelectItem@DirectUI@@QAAJPBG@Z
3498?SetTextGlowSize@Element@DirectUI@@QAAJH@Z
3499?SetTextMode@TouchEditBase@DirectUI@@QAAJW4TouchEditTextMode@2@@Z
3500?SetThemeChanged@HWNDHost@DirectUI@@IAAJH@Z
3501?SetThemedBorder@Edit@DirectUI@@QAAJ_N@Z
3502?SetThumbPosition@CCTrackBar@DirectUI@@QAAJH@Z
3503?SetThumbValue@TouchSlider@DirectUI@@QAAXH_N0@Z
3504?SetThumbValue@TouchSlider@DirectUI@@QAAXH_N@Z
3505?SetTickCount@TouchSlider@DirectUI@@QAAJH@Z
3506?SetTitleText@TouchSwitch@DirectUI@@QAAJPBG@Z
3507?SetToHost@XBaby@DirectUI@@UAAJPAVElement@2@@Z
3508?SetToggleOnClick@TouchCheckBox@DirectUI@@QAAJ_N@Z
3509?SetToggleSwitchText@TouchSwitch@DirectUI@@QAAXPBG@Z
3510?SetToggleValue@TouchSwitch@DirectUI@@QAAXH@Z
3511?SetToggleValue@TouchSwitch@DirectUI@@QAAXH_N0@Z
3512?SetToggleValue@TouchSwitch@DirectUI@@QAAXH_N@Z
3513?SetTooltip@Element@DirectUI@@QAAJ_N@Z
3514?SetTooltipMaxWidth@Element@DirectUI@@QAAJH@Z
3515?SetTooltipMaximumLineCount@TouchHWNDElement@DirectUI@@QAAJH@Z
3516?SetTooltipText@TouchSlider@DirectUI@@QAAXPBG@Z
3517?SetTracking@CCBaseScrollBar@DirectUI@@QAAJ_N@Z
3518?SetTransparent@HWNDHost@DirectUI@@QAAJ_N@Z
3519?SetTreatRightMouseButtonAsLeft@TouchButton@DirectUI@@QAAJ_N@Z
3520?SetTypography@RichText@DirectUI@@QAAJPBG@Z
3521?SetTypographyRuns@RichText@DirectUI@@QAAJPBG@Z
3522?SetUnavailableIcon@DUIXmlParser@DirectUI@@QAAXPAUHICON__@@@Z
3523?SetUnknownAttrCallback@DUIXmlParser@DirectUI@@QAAXP6A_NPBGPAX@Z1@Z
3524?SetValue@Element@DirectUI@@QAAJP6APBUPropertyInfo@2@XZHPAVValue@2@@Z
3525?SetValue@Element@DirectUI@@QAAJPBUPropertyInfo@2@HPAVValue@2@@Z
3526?SetValue@RangeValueProvider@DirectUI@@UAAJN@Z
3527?SetValue@ValueProvider@DirectUI@@UAAJPBG@Z
3528?SetValue@ValueProxy@DirectUI@@AAAJPBG@Z
3529?SetVertical@ScrollBar@DirectUI@@QAAJ_N@Z
3530?SetVerticalScript@RichText@DirectUI@@QAAJ_N@Z
3531?SetVirtualizeElements@TouchScrollViewer@DirectUI@@QAAJ_N@Z
3532?SetVisible@Element@DirectUI@@QAAJ_N@Z
3533?SetVisited@TouchHyperLink@DirectUI@@QAAJ_N@Z
3534?SetWantTabs@Edit@DirectUI@@QAAJ_N@Z
3535?SetWidth@Element@DirectUI@@QAAJH@Z
3536?SetWinStyle@CCBase@DirectUI@@QAAJH@Z
3537?SetWindowAccessGradientColor@TouchHWNDElement@DirectUI@@QAAJPAVValue@2@@Z
3538?SetWindowActive@Element@DirectUI@@QAAJ_N@Z
3539?SetWindowDirection@HWNDHost@DirectUI@@UAAXPAUHWND__@@@Z
3540?SetWrapKeyboardNavigate@HWNDElement@DirectUI@@QAAJ_N@Z
3541?SetX@Element@DirectUI@@QAAJH@Z
3542?SetXBarVisibility@BaseScrollViewer@DirectUI@@QAAJH@Z
3543?SetXML@DUIXmlParser@DirectUI@@QAAJPBGPAUHINSTANCE__@@1@Z
3544?SetXMLFromResource@DUIXmlParser@DirectUI@@QAAJIPAUHINSTANCE__@@0@Z
3545?SetXMLFromResource@DUIXmlParser@DirectUI@@QAAJIPBGPAUHINSTANCE__@@1@Z
3546?SetXMLFromResource@DUIXmlParser@DirectUI@@QAAJPBG0PAUHINSTANCE__@@1@Z
3547?SetXMLFromResource@DUIXmlParser@DirectUI@@QAAJPBGPAUHINSTANCE__@@1@Z
3548?SetXMLFromResourceWithTheme@DUIXmlParser@DirectUI@@QAAJIPAUHINSTANCE__@@00@Z
3549?SetXOffset@BaseScrollViewer@DirectUI@@QAAJH@Z
3550?SetXOffset@Viewer@DirectUI@@QAAJH@Z
3551?SetXScrollable@BaseScrollViewer@DirectUI@@QAAJ_N@Z
3552?SetXScrollable@Viewer@DirectUI@@QAAJ_N@Z
3553?SetY@Element@DirectUI@@QAAJH@Z
3554?SetYBarVisibility@BaseScrollViewer@DirectUI@@QAAJH@Z
3555?SetYOffset@BaseScrollViewer@DirectUI@@QAAJH@Z
3556?SetYOffset@Viewer@DirectUI@@QAAJH@Z
3557?SetYScrollable@BaseScrollViewer@DirectUI@@QAAJ_N@Z
3558?SetYScrollable@Viewer@DirectUI@@QAAJ_N@Z
3559?SetZoomMaximum@TouchScrollViewer@DirectUI@@QAAJM@Z
3560?SetZoomMinimum@TouchScrollViewer@DirectUI@@QAAJM@Z
3561?ShadowIntensityProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3562?SheetProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3563?ShiftChild@Element@DirectUI@@QAAJII@Z
3564?ShortcutProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3565?ShouldUsePerMonitorScaling@TouchHWNDElement@DirectUI@@QAA_NXZ
3566?ShowAccel@HWNDElement@DirectUI@@QAA_NXZ
3567?ShowClearButtonMinWidthProp@TouchEdit2@DirectUI@@SAPBUPropertyInfo@2@XZ
3568?ShowFocus@HWNDElement@DirectUI@@QAA_NXZ
3569?ShowKeyFocusProp@TouchButton@DirectUI@@SAPBUPropertyInfo@2@XZ
3570?ShowRichTooltip@TouchHWNDElement@DirectUI@@QAAJW4TOUCHTOOLTIP_INPUT@@W4TOUCHTOOLTIP_OPTION_FLAGS@@PAVElement@2@@Z
3571?ShowTickProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
3572?ShowTooltipOnRightForLTRBuild@TouchSlider@DirectUI@@QAAXXZ
3573?ShowUIState@HWNDElement@DirectUI@@QAAX_N0@Z
3574?ShowWindow@NativeHWNDHost@DirectUI@@QAAXH@Z
3575?ShowWindow@XHost@DirectUI@@QAAXH@Z
3576?SideGraphicProp@TextGraphic@DirectUI@@SAPBUPropertyInfo@2@XZ
3577?SizeInLayoutProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3578?SizeZero@FlowLayout@DirectUI@@KA?AUtagSIZE@@XZ
3579?SizeZero@VerticalFlowLayout@DirectUI@@KA?AUtagSIZE@@XZ
3580?Skip@DuiAccessible@DirectUI@@UAAJK@Z
3581?Skip@HWNDHostAccessible@DirectUI@@UAAJK@Z
3582?SliderControlType@Schema@DirectUI@@2HA DATA
3583?SliderUpdated@TouchSlider@DirectUI@@SA?AVUID@@XZ
3584?SmoothingModeProp@Movie@DirectUI@@SAPBUPropertyInfo@2@XZ
3585?SnapIntervalXProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3586?SnapIntervalYProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3587?SnapModeProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3588?SnapOffsetXProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3589?SnapOffsetYProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3590?SnapPointCollectionXProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3591?SnapPointCollectionYProp@TouchScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3592?SnapshotTransformElement@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
3593?SortChildren@Element@DirectUI@@QAAJP6AHPBX0@Z@Z
3594?SpinnerControlType@Schema@DirectUI@@2HA DATA
3595?SplitButtonControlType@Schema@DirectUI@@2HA DATA
3596?Start@AnimationStrip@DirectUI@@AAAJXZ
3597?StartDefer@Element@DirectUI@@QAAXPAK@Z
3598?StartNavigate@Browser@DirectUI@@SA?AVUID@@XZ
3599?StartRichTooltipTimer@TouchHWNDElement@DirectUI@@QAAJW4TOUCHTOOLTIP_INPUT@@@Z
3600?StateProp@ModernProgressBar@DirectUI@@SAPBUPropertyInfo@2@XZ
3601?StaticWndProc@HWNDElement@DirectUI@@SAJPAUHWND__@@IIJ@Z
3602?StaticXHostSubclassProc@TaskPage@DirectUI@@CAJPAUHWND__@@IIJ@Z
3603?StaticXmlParserError@TaskPage@DirectUI@@CAXPBG0HPAX@Z
3604?StatusBarControlType@Schema@DirectUI@@2HA DATA
3605?Stop@AnimationStrip@DirectUI@@AAAXXZ
3606?Stop@CCAVI@DirectUI@@QAAXXZ
3607?StopAnimation@Element@DirectUI@@QAAXI@Z
3608?StopUsingCache@RichText@DirectUI@@QAAXXZ
3609?StrDupW@Value@DirectUI@@CAJPBGPAPAG@Z
3610?StructureChangedEvent@Schema@DirectUI@@2HA DATA
3611?SubContentProp@TouchCommandButton@DirectUI@@SAPBUPropertyInfo@2@XZ
3612?SuppressClearButtonProp@TouchEdit2@DirectUI@@SAPBUPropertyInfo@2@XZ
3613?SupressRightButtonDrag@Thumb@DirectUI@@QAAX_N@Z
3614?SyncBackground@HWNDHost@DirectUI@@IAAXXZ
3615?SyncCallback@Proxy@DirectUI@@SAJPAUHGADGET__@@PAXPAUEventMsg@@@Z
3616?SyncColorsAndFonts@HWNDHost@DirectUI@@AAAXXZ
3617?SyncContentWhileIMEComposingProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
3618?SyncDestroyWindow@NativeHWNDHost@DirectUI@@QAAXXZ
3619?SyncDirection@HWNDHost@DirectUI@@IAAXXZ
3620?SyncElementAlphaFromForegroundAlpha@DirectUI@@YAXPAVElement@1@@Z
3621?SyncFont@HWNDHost@DirectUI@@IAAXXZ
3622?SyncForeground@HWNDHost@DirectUI@@IAAXXZ
3623?SyncNoteAndGlyph@CCCommandLink@DirectUI@@IAAXPAUHWND__@@@Z
3624?SyncParent@HWNDHost@DirectUI@@IAAXXZ
3625?SyncRect@HWNDHost@DirectUI@@IAAXI_N@Z
3626?SyncScrollBar@CCBaseScrollBar@DirectUI@@QAAXXZ
3627?SyncStyle@HWNDHost@DirectUI@@IAAXXZ
3628?SyncText@HWNDHost@DirectUI@@IAAXXZ
3629?SyncVisible@HWNDHost@DirectUI@@IAAXXZ
3630?SystemAlertEvent@Schema@DirectUI@@2HA DATA
3631?TabControlType@Schema@DirectUI@@2HA DATA
3632?TabItemControlType@Schema@DirectUI@@2HA DATA
3633?TableControlType@Schema@DirectUI@@2HA DATA
3634?TableItemPattern@Schema@DirectUI@@2HA DATA
3635?TableItem_ColumnHeaderItems_Property@Schema@DirectUI@@2HA DATA
3636?TableItem_RowHeaderItems_Property@Schema@DirectUI@@2HA DATA
3637?TablePattern@Schema@DirectUI@@2HA DATA
3638?Table_ColumnHeaders_Property@Schema@DirectUI@@2HA DATA
3639?Table_RowHeaders_Property@Schema@DirectUI@@2HA DATA
3640?Table_RowOrColumnMajor_Property@Schema@DirectUI@@2HA DATA
3641?TargetPageProp@Navigator@DirectUI@@SAPBUPropertyInfo@2@XZ
3642?TelemetrySetDescription@TouchScrollViewer@DirectUI@@QAAJPBG@Z
3643?TestDeferObject@Element@DirectUI@@QAAPAVDeferCycle@2@XZ
3644?TextContentOverrideProp@TouchSelectItem@DirectUI@@SAPBUPropertyInfo@2@XZ
3645?TextControlType@Schema@DirectUI@@2HA DATA
3646?TextGlowSizeProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3647?TextModeProp@TouchEditBase@DirectUI@@SAPBUPropertyInfo@2@XZ
3648?TextPattern@Schema@DirectUI@@2HA DATA
3649?TextTextSelectionChangedEvent@Schema@DirectUI@@2HA DATA
3650?TextTooltipShowing@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
3651?ThemeChange@HWNDElement@DirectUI@@SA?AVUID@@XZ
3652?ThemeChangedProp@HWNDHost@DirectUI@@SAPBUPropertyInfo@2@XZ
3653?ThemedBorderProp@Edit@DirectUI@@SAPBUPropertyInfo@2@XZ
3654?ThumbControlType@Schema@DirectUI@@2HA DATA
3655?ThumbPositionProp@CCTrackBar@DirectUI@@SAPBUPropertyInfo@2@XZ
3656?ThumbPositionProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
3657?TickCountProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
3658?TitleBarControlType@Schema@DirectUI@@2HA DATA
3659?TitleTextProp@TouchSwitch@DirectUI@@SAPBUPropertyInfo@2@XZ
3660?ToString@Value@DirectUI@@QBAPAGPAGI@Z
3661?Toggle@AutoButton@DirectUI@@SA?AVUID@@XZ
3662?Toggle@SemanticZoomToggle@DirectUI@@SA?AVUID@@XZ
3663?Toggle@ToggleProvider@DirectUI@@UAAJXZ
3664?ToggleOnClickProp@TouchCheckBox@DirectUI@@SAPBUPropertyInfo@2@XZ
3665?TogglePattern@Schema@DirectUI@@2HA DATA
3666?ToggleUIState@HWNDElement@DirectUI@@QAAX_N0@Z
3667?Toggle_ToggleState_Property@Schema@DirectUI@@2HA DATA
3668?ToolBarControlType@Schema@DirectUI@@2HA DATA
3669?ToolTipClosedEvent@Schema@DirectUI@@2HA DATA
3670?ToolTipControlType@Schema@DirectUI@@2HA DATA
3671?ToolTipOpenedEvent@Schema@DirectUI@@2HA DATA
3672?TooltipMaxWidthProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3673?TooltipMaximumLineCountProp@TouchHWNDElement@DirectUI@@SAPBUPropertyInfo@2@XZ
3674?TooltipProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3675?TooltipTimerStarting@TouchHWNDElement@DirectUI@@SA?AVUID@@XZ
3676?TossElement@ElementProvider@DirectUI@@UAAXXZ
3677?TossPatternProvider@ElementProvider@DirectUI@@QAAXW4Pattern@Schema@2@@Z
3678?TrackScore@NavScoring@DirectUI@@QAAHPAVElement@2@0@Z
3679?TrackingProp@CCBaseScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
3680?TransformPattern@Schema@DirectUI@@2HA DATA
3681?TranslateThumbPositionToThumbValue@TouchSlider@DirectUI@@QAAHH@Z
3682?TransparentProp@HWNDHost@DirectUI@@SAPBUPropertyInfo@2@XZ
3683?TreatRightMouseButtonAsLeftProp@TouchButton@DirectUI@@SAPBUPropertyInfo@2@XZ
3684?TreeControlType@Schema@DirectUI@@2HA DATA
3685?TreeItemControlType@Schema@DirectUI@@2HA DATA
3686?TriggeredAnimationComplete@PVLAnimation@DirectUI@@SA?AVUID@@XZ
3687?Try@NavScoring@DirectUI@@QAAHPAVElement@2@HPBUNavReference@2@K@Z
3688?TryLinePattern@Element@DirectUI@@AAA_NPAUtagPOINT@@ABUtagRECT@@@Z
3689?TryPattern@Element@DirectUI@@AAA_NNNPAUtagPOINT@@ABUtagRECT@@@Z
3690?TrySparsePattern@Element@DirectUI@@AAA_NPAUtagPOINT@@ABUtagRECT@@@Z
3691?TypographyProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
3692?TypographyRunsProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
3693?UiaEvents@Element@DirectUI@@QAA_NXZ
3694?UiaHostProviderFromHwnd@Schema@DirectUI@@2P6AJPAUHWND__@@PAPAUIRawElementProviderSimple@@@ZA DATA
3695?UiaLookupId@Schema@DirectUI@@2P6AHW4AutomationIdentifierType@@PBU_GUID@@@ZA DATA
3696?UiaRaiseAutomationEvent@Schema@DirectUI@@2P6AJPAUIRawElementProviderSimple@@H@ZA DATA
3697?UiaRaiseAutomationPropertyChangedEvent@Schema@DirectUI@@2P6AJPAUIRawElementProviderSimple@@HUtagVARIANT@@1@ZA DATA
3698?UiaRaiseStructureChangedEvent@Schema@DirectUI@@2P6AJPAUIRawElementProviderSimple@@W4StructureChangeType@@PAHH@ZA DATA
3699?UiaReturnRawElementProvider@Schema@DirectUI@@2P6AJPAUHWND__@@IJPAUIRawElementProviderSimple@@@ZA DATA
3700?UnRegister@Element@DirectUI@@SAJPAPAUIClassInfo@2@@Z
3701?UnhandledSyschar@XElement@DirectUI@@SA?AVUID@@XZ
3702?Uninit@CallstackTracker@DirectUI@@SAXXZ
3703?Uninit@InvokeHelper@DirectUI@@QAAXXZ
3704?UninitProcess@FontCache@DirectUI@@SAXXZ
3705?UninitThread@FontCache@DirectUI@@SAXXZ
3706?UnloadCommonControlExports@AnimationStrip@DirectUI@@AAAXXZ
3707?Unlock@CritSecLock@DirectUI@@QAAXXZ
3708?UnregisterForAnimationStatusChanges@TouchHWNDElement@DirectUI@@QAAXXZ
3709?UnregisterForIHMChanges@TouchHWNDElement@DirectUI@@QAAXXZ
3710?UnregisterForMonitorPowerChanges@TouchHWNDElement@DirectUI@@QAAJXZ
3711?UnvirtualizePosition@HWNDHost@DirectUI@@AAAXXZ
3712?UpdateChildFocus@DialogElementCore@DirectUI@@QAAXPAVElement@2@0@Z
3713?UpdateChildren@Expando@DirectUI@@IAAXPAVValue@2@@Z
3714?UpdateContentSize@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
3715?UpdateDesiredSize@BorderLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3716?UpdateDesiredSize@FillLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3717?UpdateDesiredSize@FlowLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3718?UpdateDesiredSize@GridLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3719?UpdateDesiredSize@Layout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3720?UpdateDesiredSize@NineGridLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3721?UpdateDesiredSize@RowLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3722?UpdateDesiredSize@TableLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3723?UpdateDesiredSize@VerticalFlowLayout@DirectUI@@UAA?AUtagSIZE@@PAVElement@2@HHPAVSurface@2@@Z
3724?UpdateElement@TouchSelect@DirectUI@@QAAJHPAVElement@2@PBG@Z
3725?UpdateLayout@Element@DirectUI@@QAAXXZ
3726?UpdateLayoutRect@Layout@DirectUI@@SAXPAVElement@2@HH0HHHH@Z
3727?UpdateSheets@DUIXmlParser@DirectUI@@QAAJPAVElement@2@@Z
3728?UpdateString@TouchSelect@DirectUI@@QAAJHPBG@Z
3729?UpdateStyleSheets@HWNDElement@DirectUI@@IAAXXZ
3730?UpdateToggleState@SemanticZoomToggle@DirectUI@@QAAXW4SemanticZoomToggleState@@_N@Z
3731?UpdateTooltip@Element@DirectUI@@MAAXPAV12@@Z
3732?UpdateTooltip@HWNDElement@DirectUI@@UAAXPAVElement@2@@Z
3733?UpdateTooltip@TouchHWNDElement@DirectUI@@UAAXPAVElement@2@@Z
3734?UpdateView@TouchScrollViewer@DirectUI@@SA?AVUID@@XZ
3735?UseFixedTooltipOffset@TouchSlider@DirectUI@@QAAXXZ
3736?UsePerMonitorScaling@TouchHWNDElement@DirectUI@@QAAXPAUHMONITOR__@@@Z
3737?UserTextChanged@TouchEditBase@DirectUI@@SA?AVUID@@XZ
3738?UserTextUpdateNoChange@TouchEditBase@DirectUI@@SA?AVUID@@XZ
3739?ValuePattern@Schema@DirectUI@@2HA DATA
3740?Value_IsReadOnly_Property@Schema@DirectUI@@2HA DATA
3741?Value_Value_Property@Schema@DirectUI@@2HA DATA
3742?VerifyParentage@HWNDHost@DirectUI@@IAAHXZ
3743?VerticalProp@ScrollBar@DirectUI@@SAPBUPropertyInfo@2@XZ
3744?VerticalScriptProp@RichText@DirectUI@@SAPBUPropertyInfo@2@XZ
3745?VirtualizedItemPattern@Schema@DirectUI@@2HA DATA
3746?VisibleProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3747?VisitedProp@TouchHyperLink@DirectUI@@SAPBUPropertyInfo@2@XZ
3748?VisualStateProp@TouchSlider@DirectUI@@SAPBUPropertyInfo@2@XZ
3749?WantEvent@EventManager@DirectUI@@CA_NW4Event@Schema@2@H@Z
3750?WantEvent@EventManager@DirectUI@@SA_NW4Event@Schema@2@@Z
3751?WantPropertyEvent@EventManager@DirectUI@@SA_NH@Z
3752?WantTabsProp@Edit@DirectUI@@SAPBUPropertyInfo@2@XZ
3753?WidthProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3754?WinStyleProp@CCBase@DirectUI@@SAPBUPropertyInfo@2@XZ
3755?WindowAccessGradientColorProp@TouchHWNDElement@DirectUI@@SAPBUPropertyInfo@2@XZ
3756?WindowActiveProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3757?WindowControlType@Schema@DirectUI@@2HA DATA
3758?WindowPattern@Schema@DirectUI@@2HA DATA
3759?WindowWindowClosedEvent@Schema@DirectUI@@2HA DATA
3760?WindowWindowOpenedEvent@Schema@DirectUI@@2HA DATA
3761?WndProc@HWNDElement@DirectUI@@UAAJPAUHWND__@@IIJ@Z
3762?WndProc@NativeHWNDHost@DirectUI@@SAJPAUHWND__@@IIJ@Z
3763?WndProc@TouchHWNDElement@DirectUI@@UAAJPAUHWND__@@IIJ@Z
3764?WndProc@XHost@DirectUI@@SAJPAUHWND__@@IIJ@Z
3765?WrapKeyboardNavigateProp@HWNDElement@DirectUI@@SAPBUPropertyInfo@2@XZ
3766?XBarVisibilityProp@BaseScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3767?XOffsetProp@BaseScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3768?XOffsetProp@Viewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3769?XProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3770?XScrollableProp@BaseScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3771?XScrollableProp@Viewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3772?YBarVisibilityProp@BaseScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3773?YOffsetProp@BaseScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3774?YOffsetProp@Viewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3775?YProp@Element@DirectUI@@SAPBUPropertyInfo@2@XZ
3776?YScrollableProp@BaseScrollViewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3777?YScrollableProp@Viewer@DirectUI@@SAPBUPropertyInfo@2@XZ
3778?ZoomToRect@TouchScrollViewer@DirectUI@@QAAJPBUtagRECT@@_N@Z
3779?ZoomToRectManualVisualSwap@TouchScrollViewer@DirectUI@@QAAJMMMMPBHMMM_N@Z
3780?_AddDependency@Element@DirectUI@@SAXPAV12@PBUPropertyInfo@2@HPAUDepRecs@2@PAVDeferCycle@2@PAJ@Z
3781?_BitAccurateFillRect@Macro@DirectUI@@KAXPAUHDC__@@HHHHEEEEK@Z
3782?_BroadcastEventWorker@Element@DirectUI@@AAAXPAUEvent@2@@Z
3783?_BuildChildren@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAVElement@2@@Z
3784?_BuildElement@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAVElement@2@PAPAV42@@Z
3785?_BuildFromBinary@DUIXmlParser@DirectUI@@IAAJPAVElement@2@0PBGPAKPAPAV32@@Z
3786?_BuildStyles@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@@Z
3787?_CachedValueIsEqual@Element@DirectUI@@AAAHPBUPropertyInfo@2@PAV12@@Z
3788?_CalcTabOrder@ShellBorderLayout@DirectUI@@AAAJPAVElement@2@@Z
3789?_ClearNeedsLayout@Element@DirectUI@@QAAXXZ
3790?_ClearTooltipState@TouchHWNDElement@DirectUI@@IAAXXZ
3791?_CreateAndSetLayout@DirectUI@@YAJPAVElement@1@P6AJHPAHPAPAVValue@1@@ZH1@Z
3792?_CreateValue@DUIXmlParser@DirectUI@@IAAJPBGPBUPropertyInfo@2@PAPAVValue@2@@Z
3793?_CtrlWndProc@HWNDHost@DirectUI@@CAHPAXPAUHWND__@@IIJPAJ@Z
3794?_DeleteCtrlWnd@HWNDHost@DirectUI@@AAAXXZ
3795?_DestroyTables@DUIXmlParser@DirectUI@@QAAXXZ
3796?_DestroyTooltip@TouchHWNDElement@DirectUI@@IAAXXZ
3797?_DisplayNodeCallback@Element@DirectUI@@SAJPAUHGADGET__@@PAXPAUEventMsg@@@Z
3798?_EndOptimizedLayoutQ@Element@DirectUI@@QAAXXZ
3799?_EnterOnCurrentThread@DUIXmlParser@DirectUI@@IAAJXZ
3800?_Fill@Element@DirectUI@@IAAXPAUHDC__@@KHHHH_N@Z
3801?_FlushDS@Element@DirectUI@@AAAXPAVDeferCycle@2@@Z
3802?_FlushLayout@Element@DirectUI@@KAXPAV12@PAVDeferCycle@2@@Z
3803?_GetBitmapSize@Macro@DirectUI@@KA_NPAUHBITMAP__@@PAUtagSIZE@@@Z
3804?_GetBuriedSheetDependencies@Element@DirectUI@@AAAXPBUPropertyInfo@2@PAV12@PAUDepRecs@2@PAVDeferCycle@2@PAJ@Z
3805?_GetChangesUpdatePass@Element@DirectUI@@QAAHXZ
3806?_GetClassForElement@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAPAUIClassInfo@2@@Z
3807?_GetClassForElementByName@DUIXmlParser@DirectUI@@IAAJPBGPAPAUIClassInfo@2@@Z
3808?_GetComputedValue@Element@DirectUI@@AAAPAVValue@2@PBUPropertyInfo@2@PAUUpdateCache@2@@Z
3809?_GetContent@Viewer@DirectUI@@AAAPAVElement@2@XZ
3810?_GetDependencies@Element@DirectUI@@AAAJPBUPropertyInfo@2@HPAUDepRecs@2@HPAVValue@2@PAVDeferCycle@2@@Z
3811?_GetLineInfo@DUIXmlParser@DirectUI@@IAA?AULINEINFO@2@PAUIXmlReader@@@Z
3812?_GetLocalValue@Element@DirectUI@@AAAPAVValue@2@PBUPropertyInfo@2@@Z
3813?_GetLocalValueFromVM@Element@DirectUI@@AAAPAVValue@2@PBUPropertyInfo@2@@Z
3814?_GetNeedsLayout@Element@DirectUI@@QAAIXZ
3815?_GetPropertyForAttribute@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAUIClassInfo@2@PAPBUPropertyInfo@2@@Z
3816?_GetSpecifiedValue@Element@DirectUI@@AAAPAVValue@2@PBUPropertyInfo@2@PAUUpdateCache@2@@Z
3817?_GetSpecifiedValueIgnoreCache@Element@DirectUI@@AAAPAVValue@2@PBUPropertyInfo@2@@Z
3818?_GetValueForStyleSheet@DUIXmlParser@DirectUI@@IAAJPAUIClassInfo@2@PBG1PAPBUPropertyInfo@2@PAPAVValue@2@@Z
3819?_HandleImmersiveColorSchemeChange@HWNDElement@DirectUI@@IAAXXZ
3820?_InheritProperties@Element@DirectUI@@AAAXXZ
3821?_InitializeTables@DUIXmlParser@DirectUI@@QAAJXZ
3822?_InternalEnsureVisible@Viewer@DirectUI@@AAA_NHHHH@Z
3823?_InvalidateCachedDSConstraints@Element@DirectUI@@KAXPAV12@@Z
3824?_IsSemanticZoomControl@ElementProxy@DirectUI@@AAA_NH@Z
3825?_IsWindowHostUsingDoNotStealFocusFlag@ElementProxy@DirectUI@@AAA_NXZ
3826?_LeaveOnCurrentThread@DUIXmlParser@DirectUI@@IAAXXZ
3827?_LoadImage32BitsPerPixel@Macro@DirectUI@@KAPAVValue@2@PBG@Z
3828?_MarkElementForDS@Element@DirectUI@@SAHPAV12@@Z
3829?_MarkElementForLayout@Element@DirectUI@@SAHPAV12@I@Z
3830?_OnFontPropChanged@Element@DirectUI@@IAAXPAVValue@2@@Z
3831?_OnGetInfoTip@CCTreeView@DirectUI@@MAAJPBUtagNMTVGETINFOTIPW@@@Z
3832?_OnItemChanged@CCTreeView@DirectUI@@MAAJPBUtagTVITEMCHANGE@@@Z
3833?_OnUIStateChanged@HWNDElement@DirectUI@@MAAXGG@Z
3834?_OnUIStateChanged@TouchHWNDElement@DirectUI@@MAAXGG@Z
3835?_ParseBehavior@DUIXmlParser@DirectUI@@IAAJPAVElement@2@PBG@Z
3836?_ParseLayout@DUIXmlParser@DirectUI@@IAAJPBGPAPAVValue@2@@Z
3837?_ParseValue@DUIXmlParser@DirectUI@@IAAJPBUPropertyInfo@2@PBGPAPAVValue@2@@Z
3838?_PostEvent@Element@DirectUI@@AAAXPAUEvent@2@H@Z
3839?_PostSourceChange@Element@DirectUI@@AAAJXZ
3840?_PreSourceChange@Element@DirectUI@@AAAJP6APBUPropertyInfo@2@XZHPAVValue@2@1@Z
3841?_PreSourceChange@Element@DirectUI@@AAAJPBUPropertyInfo@2@HPAVValue@2@1@Z
3842?_RecordElementBehaviors@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PBG@Z
3843?_RecordElementLayout@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PBG@Z
3844?_RecordElementStyleSheet@DUIXmlParser@DirectUI@@IAAJPBG_N@Z
3845?_RecordElementTrees@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@@Z
3846?_RecordElementWithChildren@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@_NPAPAG@Z
3847?_RecordInstantiateElement@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAPAG@Z
3848?_RecordSetElementProperties@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@@Z
3849?_RecordSetValue@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PBG1@Z
3850?_RemoveLocalValue@Element@DirectUI@@IAAJP6APBUPropertyInfo@2@XZ_N@Z
3851?_RemoveLocalValue@Element@DirectUI@@IAAJPBUPropertyInfo@2@_N@Z
3852?_RepeatButtonActionCallback@RepeatButton@DirectUI@@CAXPAUGMA_ACTIONINFO@@@Z
3853?_Reset@ShellBorderLayout@DirectUI@@AAAXXZ
3854?_ResolveStyleSheet@DUIXmlParser@DirectUI@@IAAJPBGPAPAVValue@2@PAI@Z
3855?_ScalePointsToPixels@DUIXmlParser@DirectUI@@ABAHH@Z
3856?_ScalePointsToPixels@DUIXmlParser@DirectUI@@ABAMM@Z
3857?_ScaleRelativePixels@DUIXmlParser@DirectUI@@ABAHH@Z
3858?_ScaleRelativePixels@DUIXmlParser@DirectUI@@ABAMM@Z
3859?_SelfLayoutDoLayout@Clipper@DirectUI@@UAAXHH@Z
3860?_SelfLayoutDoLayout@Element@DirectUI@@MAAXHH@Z
3861?_SelfLayoutDoLayout@ScrollBar@DirectUI@@UAAXHH@Z
3862?_SelfLayoutDoLayout@TouchScrollBar@DirectUI@@UAAXHH@Z
3863?_SelfLayoutDoLayout@Viewer@DirectUI@@UAAXHH@Z
3864?_SelfLayoutUpdateDesiredSize@Clipper@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
3865?_SelfLayoutUpdateDesiredSize@Element@DirectUI@@MAA?AUtagSIZE@@HHPAVSurface@2@@Z
3866?_SelfLayoutUpdateDesiredSize@ScrollBar@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
3867?_SelfLayoutUpdateDesiredSize@TouchScrollBar@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
3868?_SelfLayoutUpdateDesiredSize@Viewer@DirectUI@@UAA?AUtagSIZE@@HHPAVSurface@2@@Z
3869?_SetBinaryXml@DUIXmlParser@DirectUI@@IAAJPBEIPAUHINSTANCE__@@@Z
3870?_SetGroupChanges@Element@DirectUI@@SA_NPAV12@HPAVDeferCycle@2@@Z
3871?_SetNeedsLayout@Element@DirectUI@@QAAHI@Z
3872?_SetProperties@DUIXmlParser@DirectUI@@IAAJPAUIXmlReader@@PAUIClassInfo@2@PAVElement@2@@Z
3873?_SetValue@Element@DirectUI@@IAAJP6APBUPropertyInfo@2@XZHPAVValue@2@_N@Z
3874?_SetValue@Element@DirectUI@@IAAJPBUPropertyInfo@2@HPAVValue@2@_N@Z
3875?_SetXMLFromResource@DUIXmlParser@DirectUI@@IAAJPBG0PAUHINSTANCE__@@11@Z
3876?_SetupParserState@DUIXmlParser@DirectUI@@IAAJPAUHINSTANCE__@@0@Z
3877?_SinkWndProc@HWNDHost@DirectUI@@CAHPAXPAUHWND__@@IIJPAJ@Z
3878?_StartOptimizedLayoutQ@Element@DirectUI@@QAAXXZ
3879?_SyncBackground@Element@DirectUI@@AAAXXZ
3880?_SyncRedrawStyle@Element@DirectUI@@AAAXXZ
3881?_SyncVisible@Element@DirectUI@@AAAXXZ
3882?_TransferGroupFlags@Element@DirectUI@@SAXPAV12@H@Z
3883?_UpdateDesiredSize@Element@DirectUI@@QAA?AUtagSIZE@@HHPAVSurface@2@@Z
3884?_UpdateLayoutPosition@Element@DirectUI@@QAAXHH@Z
3885?_UpdateLayoutSize@Element@DirectUI@@QAAXHH@Z
3886?_UpdatePropertyInCache@Element@DirectUI@@AAAXPBUPropertyInfo@2@@Z
3887?_UpdateTileList@NineGridLayout@DirectUI@@AAAXHPAVElement@2@@Z
3888?_UsesUIAProxies@ElementProxy@DirectUI@@IAAHXZ
3889?_VoidPCNotifyTree@Element@DirectUI@@CAXHPAVDeferCycle@2@@Z
3890?_WndProc@InvokeHelper@DirectUI@@CAHPAXPAUHWND__@@IIJPAJ@Z
3891?_ZeroRelease@Value@DirectUI@@AAAXXZ
3892?_atmArrow@Expando@DirectUI@@0GA DATA
3893?_atmClipper@Expando@DirectUI@@0GA DATA
3894?_roleMapping@Schema@DirectUI@@0QBURoleMap@12@B
3895?accDoDefaultAction@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@@Z
3896?accDoDefaultAction@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@@Z
3897?accHitTest@DuiAccessible@DirectUI@@UAAJJJPAUtagVARIANT@@@Z
3898?accHitTest@HWNDHostAccessible@DirectUI@@UAAJJJPAUtagVARIANT@@@Z
3899?accLocation@DuiAccessible@DirectUI@@UAAJPAJ000UtagVARIANT@@@Z
3900?accLocation@HWNDHostAccessible@DirectUI@@UAAJPAJ000UtagVARIANT@@@Z
3901?accNavigate@DuiAccessible@DirectUI@@UAAJJUtagVARIANT@@PAU3@@Z
3902?accNavigate@HWNDHostAccessible@DirectUI@@UAAJJUtagVARIANT@@PAU3@@Z
3903?accNavigate@HWNDHostClientAccessible@DirectUI@@UAAJJUtagVARIANT@@PAU3@@Z
3904?accSelect@DuiAccessible@DirectUI@@UAAJJUtagVARIANT@@@Z
3905?accSelect@HWNDHostAccessible@DirectUI@@UAAJJUtagVARIANT@@@Z
3906?advanceFrameActionStart@Movie@DirectUI@@AAAXXZ
3907?advanceFrameActionStop@Movie@DirectUI@@AAAXXZ
3908?cChangeBulk@EventManager@DirectUI@@0HB
3909?c_RefCountBitOffset@Value@DirectUI@@0HB
3910?c_RefCountMask@Value@DirectUI@@0JB
3911?c_SingleRefCount@Value@DirectUI@@0JB
3912?c_rgar@AccessibleButton@DirectUI@@0QBUACCESSIBLEROLE@12@B
3913?doAction@Movie@DirectUI@@QAAXPAUGMA_ACTIONINFO@@@Z
3914?g_cRefCount@ResourceModuleHandles@DirectUI@@0JC DATA
3915?g_controlInfoTable@Schema@DirectUI@@0QBUControlInfo@12@B DATA
3916?g_cs@ElementProviderManager@DirectUI@@2U_RTL_CRITICAL_SECTION@@A DATA
3917?g_cs@EventManager@DirectUI@@0U_RTL_CRITICAL_SECTION@@A DATA
3918?g_cs@InvokeManager@DirectUI@@0U_RTL_CRITICAL_SECTION@@A DATA
3919?g_dwElSlot@DirectUI@@3KA DATA
3920?g_eventInfoTable@Schema@DirectUI@@0QBUEventInfo@12@B DATA
3921?g_eventMapping@Schema@DirectUI@@0QBUEventMap@12@B DATA
3922?g_eventRegisteredMap@EventManager@DirectUI@@0PAIA DATA
3923?g_fInited@Schema@DirectUI@@0_NA DATA
3924?g_fWantAnyEvent@EventManager@DirectUI@@0_NA DATA
3925?g_pArrayInvokeHelper@InvokeManager@DirectUI@@0PAV?$UiaArray@PAVInvokeHelper@DirectUI@@@2@A DATA
3926?g_pArrayPprv@ElementProviderManager@DirectUI@@0PAV?$UiaArray@PAVElementProvider@DirectUI@@@2@A DATA
3927?g_pArrayPropertyEvent@EventManager@DirectUI@@0PAV?$UiaArray@H@2@A DATA
3928?g_patternInfoTable@Schema@DirectUI@@0QBUPatternInfo@12@B DATA
3929?g_patternMapping@Schema@DirectUI@@0QBUPatternMap@12@B DATA
3930?g_propertyInfoTable@Schema@DirectUI@@0QBUPropertyInfo@12@B DATA
3931?g_rgMouseMap@HWNDHost@DirectUI@@0QAY02$$CBIA
3932?get_BoundingRectangle@ElementProvider@DirectUI@@UAAJPAUUiaRect@@@Z
3933?get_CanSelectMultiple@SelectionProvider@DirectUI@@UAAJPAH@Z
3934?get_Column@GridItemProvider@DirectUI@@UAAJPAH@Z
3935?get_ColumnCount@GridProvider@DirectUI@@UAAJPAH@Z
3936?get_ColumnSpan@GridItemProvider@DirectUI@@UAAJPAH@Z
3937?get_ContainingGrid@GridItemProvider@DirectUI@@UAAJPAPAUIRawElementProviderSimple@@@Z
3938?get_ExpandCollapseState@ExpandCollapseProvider@DirectUI@@UAAJPAW4ExpandCollapseState@@@Z
3939?get_FragmentRoot@ElementProvider@DirectUI@@UAAJPAPAUIRawElementProviderFragmentRoot@@@Z
3940?get_HorizontalScrollPercent@ScrollProvider@DirectUI@@UAAJPAN@Z
3941?get_HorizontalViewSize@ScrollProvider@DirectUI@@UAAJPAN@Z
3942?get_HorizontallyScrollable@ScrollProvider@DirectUI@@UAAJPAH@Z
3943?get_HostRawElementProvider@ElementProvider@DirectUI@@UAAJPAPAUIRawElementProviderSimple@@@Z
3944?get_IsReadOnly@RangeValueProvider@DirectUI@@UAAJPAH@Z
3945?get_IsReadOnly@ValueProvider@DirectUI@@UAAJPAH@Z
3946?get_IsSelected@SelectionItemProvider@DirectUI@@UAAJPAH@Z
3947?get_IsSelectionRequired@SelectionProvider@DirectUI@@UAAJPAH@Z
3948?get_LargeChange@RangeValueProvider@DirectUI@@UAAJPAN@Z
3949?get_Maximum@RangeValueProvider@DirectUI@@UAAJPAN@Z
3950?get_Minimum@RangeValueProvider@DirectUI@@UAAJPAN@Z
3951?get_ProviderOptions@ElementProvider@DirectUI@@UAAJPAW4ProviderOptions@@@Z
3952?get_Row@GridItemProvider@DirectUI@@UAAJPAH@Z
3953?get_RowCount@GridProvider@DirectUI@@UAAJPAH@Z
3954?get_RowOrColumnMajor@TableProvider@DirectUI@@UAAJPAW4RowOrColumnMajor@@@Z
3955?get_RowSpan@GridItemProvider@DirectUI@@UAAJPAH@Z
3956?get_SelectionContainer@SelectionItemProvider@DirectUI@@UAAJPAPAUIRawElementProviderSimple@@@Z
3957?get_SmallChange@RangeValueProvider@DirectUI@@UAAJPAN@Z
3958?get_ToggleState@ToggleProvider@DirectUI@@UAAJPAW4ToggleState@@@Z
3959?get_Value@RangeValueProvider@DirectUI@@UAAJPAN@Z
3960?get_Value@ValueProvider@DirectUI@@UAAJPAPAG@Z
3961?get_VerticalScrollPercent@ScrollProvider@DirectUI@@UAAJPAN@Z
3962?get_VerticalViewSize@ScrollProvider@DirectUI@@UAAJPAN@Z
3963?get_VerticallyScrollable@ScrollProvider@DirectUI@@UAAJPAH@Z
3964?get_accChild@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAUIDispatch@@@Z
3965?get_accChild@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAUIDispatch@@@Z
3966?get_accChildCount@DuiAccessible@DirectUI@@UAAJPAJ@Z
3967?get_accChildCount@HWNDHostAccessible@DirectUI@@UAAJPAJ@Z
3968?get_accDefaultAction@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3969?get_accDefaultAction@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3970?get_accDescription@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3971?get_accDescription@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3972?get_accFocus@DuiAccessible@DirectUI@@UAAJPAUtagVARIANT@@@Z
3973?get_accFocus@HWNDHostAccessible@DirectUI@@UAAJPAUtagVARIANT@@@Z
3974?get_accHelp@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3975?get_accHelp@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3976?get_accHelpTopic@DuiAccessible@DirectUI@@UAAJPAPAGUtagVARIANT@@PAJ@Z
3977?get_accHelpTopic@HWNDHostAccessible@DirectUI@@UAAJPAPAGUtagVARIANT@@PAJ@Z
3978?get_accKeyboardShortcut@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3979?get_accKeyboardShortcut@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3980?get_accName@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3981?get_accName@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3982?get_accParent@DuiAccessible@DirectUI@@UAAJPAPAUIDispatch@@@Z
3983?get_accParent@HWNDElementAccessible@DirectUI@@UAAJPAPAUIDispatch@@@Z
3984?get_accParent@HWNDHostAccessible@DirectUI@@UAAJPAPAUIDispatch@@@Z
3985?get_accParent@HWNDHostClientAccessible@DirectUI@@UAAJPAPAUIDispatch@@@Z
3986?get_accRole@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAU3@@Z
3987?get_accRole@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAU3@@Z
3988?get_accRole@HWNDHostClientAccessible@DirectUI@@UAAJUtagVARIANT@@PAU3@@Z
3989?get_accSelection@DuiAccessible@DirectUI@@UAAJPAUtagVARIANT@@@Z
3990?get_accSelection@HWNDHostAccessible@DirectUI@@UAAJPAUtagVARIANT@@@Z
3991?get_accState@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAU3@@Z
3992?get_accState@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAU3@@Z
3993?get_accValue@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3994?get_accValue@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAPAG@Z
3995?put_accName@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAG@Z
3996?put_accName@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAG@Z
3997?put_accValue@DuiAccessible@DirectUI@@UAAJUtagVARIANT@@PAG@Z
3998?put_accValue@HWNDHostAccessible@DirectUI@@UAAJUtagVARIANT@@PAG@Z
3999?s_HandleDUIEventMessage@Element@DirectUI@@CA_NPAV12@PAUEventMsg@@@Z
4000?s_ImageHlpFuncList@CallstackTracker@DirectUI@@0PAUIMGHLPFN_LOAD@12@A DATA
4001?s_SyncCallback@CSafeElementProxy@@SAJPAUHGADGET__@@PAXPAUEventMsg@@@Z
4002?s_XMLParseError@DUIFactory@DirectUI@@CAXPBG0HPAX@Z
4003?s_fdClr@DUIXmlParser@DirectUI@@1QBU?$FunctionDefinition@K@12@B DATA
4004?s_fdFill@DUIXmlParser@DirectUI@@1QBU?$FunctionDefinition@PAVValue@DirectUI@@@12@B DATA
4005?s_fdGraphic@DUIXmlParser@DirectUI@@1QBU?$FunctionDefinition@PAVValue@DirectUI@@@12@B DATA
4006?s_fdInt@DUIXmlParser@DirectUI@@1QBU?$FunctionDefinition@H@12@B DATA
4007?s_fdRect@DUIXmlParser@DirectUI@@1QBU?$FunctionDefinition@UScaledRECT@DirectUI@@@12@B DATA
4008?s_fdString@DUIXmlParser@DirectUI@@1QBU?$FunctionDefinition@PAVValue@DirectUI@@@12@B DATA
4009?s_hProcess@CallstackTracker@DirectUI@@0PAXA DATA
4010?s_hinstImageHlp@CallstackTracker@DirectUI@@0PAUHINSTANCE__@@A DATA
4011?s_hinstNtDll@CallstackTracker@DirectUI@@0PAUHINSTANCE__@@A DATA
4012?s_initonceInit@CallstackTracker@DirectUI@@0T_RTL_RUN_ONCE@@A DATA
4013?s_pClassInfo@AccessibleButton@DirectUI@@0PAUIClassInfo@2@A DATA
4014?s_pClassInfo@AnimationStrip@DirectUI@@0PAUIClassInfo@2@A DATA
4015?s_pClassInfo@AutoButton@DirectUI@@0PAUIClassInfo@2@A DATA
4016?s_pClassInfo@BaseScrollViewer@DirectUI@@0PAUIClassInfo@2@A DATA
4017?s_pClassInfo@Bind@DirectUI@@0PAUIClassInfo@2@A DATA
4018?s_pClassInfo@Browser@DirectUI@@0PAUIClassInfo@2@A DATA
4019?s_pClassInfo@Button@DirectUI@@0PAUIClassInfo@2@A DATA
4020?s_pClassInfo@CCAVI@DirectUI@@0PAUIClassInfo@2@A DATA
4021?s_pClassInfo@CCBase@DirectUI@@0PAUIClassInfo@2@A DATA
4022?s_pClassInfo@CCBaseCheckRadioButton@DirectUI@@0PAUIClassInfo@2@A DATA
4023?s_pClassInfo@CCBaseScrollBar@DirectUI@@0PAUIClassInfo@2@A DATA
4024?s_pClassInfo@CCCheckBox@DirectUI@@0PAUIClassInfo@2@A DATA
4025?s_pClassInfo@CCCommandLink@DirectUI@@0PAUIClassInfo@2@A DATA
4026?s_pClassInfo@CCHScrollBar@DirectUI@@0PAUIClassInfo@2@A DATA
4027?s_pClassInfo@CCListBox@DirectUI@@0PAUIClassInfo@2@A DATA
4028?s_pClassInfo@CCListView@DirectUI@@0PAUIClassInfo@2@A DATA
4029?s_pClassInfo@CCProgressBar@DirectUI@@0PAUIClassInfo@2@A DATA
4030?s_pClassInfo@CCPushButton@DirectUI@@0PAUIClassInfo@2@A DATA
4031?s_pClassInfo@CCRadioButton@DirectUI@@0PAUIClassInfo@2@A DATA
4032?s_pClassInfo@CCSysLink@DirectUI@@0PAUIClassInfo@2@A DATA
4033?s_pClassInfo@CCTrackBar@DirectUI@@0PAUIClassInfo@2@A DATA
4034?s_pClassInfo@CCTreeView@DirectUI@@0PAUIClassInfo@2@A DATA
4035?s_pClassInfo@CCVScrollBar@DirectUI@@0PAUIClassInfo@2@A DATA
4036?s_pClassInfo@CheckBoxGlyph@DirectUI@@0PAUIClassInfo@2@A DATA
4037?s_pClassInfo@Clipper@DirectUI@@0PAUIClassInfo@2@A DATA
4038?s_pClassInfo@Combobox@DirectUI@@0PAUIClassInfo@2@A DATA
4039?s_pClassInfo@DialogElement@DirectUI@@0PAUIClassInfo@2@A DATA
4040?s_pClassInfo@Edit@DirectUI@@0PAUIClassInfo@2@A DATA
4041?s_pClassInfo@Element@DirectUI@@0PAUIClassInfo@2@A DATA
4042?s_pClassInfo@ElementWithHWND@DirectUI@@0PAUIClassInfo@2@A DATA
4043?s_pClassInfo@Expandable@DirectUI@@0PAUIClassInfo@2@A DATA
4044?s_pClassInfo@Expando@DirectUI@@0PAUIClassInfo@2@A DATA
4045?s_pClassInfo@ExpandoButtonGlyph@DirectUI@@0PAUIClassInfo@2@A DATA
4046?s_pClassInfo@HWNDElement@DirectUI@@0PAUIClassInfo@2@A DATA
4047?s_pClassInfo@HWNDHost@DirectUI@@0PAUIClassInfo@2@A DATA
4048?s_pClassInfo@Macro@DirectUI@@0PAUIClassInfo@2@A DATA
4049?s_pClassInfo@Movie@DirectUI@@0PAUIClassInfo@2@A DATA
4050?s_pClassInfo@Navigator@DirectUI@@0PAUIClassInfo@2@A DATA
4051?s_pClassInfo@PText@DirectUI@@0PAUIClassInfo@2@A DATA
4052?s_pClassInfo@Page@DirectUI@@0PAUIClassInfo@2@A DATA
4053?s_pClassInfo@Pages@DirectUI@@0PAUIClassInfo@2@A DATA
4054?s_pClassInfo@Progress@DirectUI@@0PAUIClassInfo@2@A DATA
4055?s_pClassInfo@PushButton@DirectUI@@0PAUIClassInfo@2@A DATA
4056?s_pClassInfo@RadioButtonGlyph@DirectUI@@0PAUIClassInfo@2@A DATA
4057?s_pClassInfo@RefPointElement@DirectUI@@0PAUIClassInfo@2@A DATA
4058?s_pClassInfo@RepeatButton@DirectUI@@0PAUIClassInfo@2@A DATA
4059?s_pClassInfo@Repeater@DirectUI@@0PAUIClassInfo@2@A DATA
4060?s_pClassInfo@ScrollBar@DirectUI@@0PAUIClassInfo@2@A DATA
4061?s_pClassInfo@ScrollViewer@DirectUI@@0PAUIClassInfo@2@A DATA
4062?s_pClassInfo@Selector@DirectUI@@0PAUIClassInfo@2@A DATA
4063?s_pClassInfo@SelectorNoDefault@DirectUI@@0PAUIClassInfo@2@A DATA
4064?s_pClassInfo@StyledScrollViewer@DirectUI@@0PAUIClassInfo@2@A DATA
4065?s_pClassInfo@TextGraphic@DirectUI@@0PAUIClassInfo@2@A DATA
4066?s_pClassInfo@Thumb@DirectUI@@0PAUIClassInfo@2@A DATA
4067?s_pClassInfo@UnknownElement@DirectUI@@0PAUIClassInfo@2@A DATA
4068?s_pClassInfo@Viewer@DirectUI@@0PAUIClassInfo@2@A DATA
4069?s_pClassInfo@XBaby@DirectUI@@0PAUIClassInfo@2@A DATA
4070?s_pClassInfo@XElement@DirectUI@@0PAUIClassInfo@2@A DATA
4071?s_pfnImagehlpApiVersionEx@CallstackTracker@DirectUI@@0P6APAUAPI_VERSION@@PAU3@@ZA DATA
4072?s_pfnRtlCaptureStackBackTrace@CallstackTracker@DirectUI@@0P6AGKKPAPAXPAK@ZA DATA
4073?s_pfnSymFromAddr@CallstackTracker@DirectUI@@0P6AHPAX_KPA_KPAU_SYMBOL_INFO@@@ZA DATA
4074?s_pfnSymGetModuleInfo64@CallstackTracker@DirectUI@@0P6AHPAX_KPAU_IMAGEHLP_MODULE64@@@ZA DATA
4075?s_pfnSymInitialize@CallstackTracker@DirectUI@@0P6AHPAXPBDH@ZA DATA
4076?s_pfnSymLoadModule64@CallstackTracker@DirectUI@@0P6A_KPAX0PBD1_KK@ZA DATA
4077?s_pfnSymSetOptions@CallstackTracker@DirectUI@@0P6AKK@ZA DATA
4078?s_uButtonFocusChangeMsg@XElement@DirectUI@@2IB DATA
4079?s_uInvokeHelperMsg@InvokeHelper@DirectUI@@0IB DATA
4080?s_uNavigateOutMsg@XElement@DirectUI@@2IB DATA
4081?s_uUnhandledSyscharMsg@XElement@DirectUI@@2IB DATA
4082ARGBColorFromEnumI
4083BlurBitmap
4084BrushFromEnumI
4085ColorFromEnumI
4086CreateDUIWrapper
4087CreateDUIWrapperEx
4088CreateDUIWrapperFromResource
4089CreateTouchTooltip
4090DUIDrawShadowText
4091DisableAnimations
4092DisableInitCallstackTracking
4093DrawShadowTextEx
4094ElementFromGadget
4095EnableAnimations
4096FlushThemeHandles
4097ForceDebugBreak
4098GetElementDataEntry
4099GetElementMacro
4100GetFontCache
4101GetScaleFactor
4102GetThemeHandle
4103HStrDup
4104HrSysAllocString
4105InitPreprocessor
4106InitProcessPriv
4107InitThread
4108IsAnimationsEnabled
4109IsPalette
4110IsUIAutomationProviderEnabled
4111MultiByteToUnicode
4112NotifyAccessibilityEvent
4113PreprocessBuffer
4114ProcessAlphaBitmapI
4115PurgeThemeHandles
4116RegisterAllControls
4117RegisterBaseControls
4118RegisterBrowserControls
4119RegisterCommonControls
4120RegisterExtendedControls
4121RegisterMacroControls
4122RegisterMiscControls
4123RegisterPVLBehaviorFactory
4124RegisterStandardControls
4125RegisterXControls
4126SetDefAction
4127SkipDLLUnloadInitChecks
4128StartMessagePump
4129StopMessagePump
4130StrToID
4131UiaHideOnGetObject
4132UiaOnDestroySink
4133UiaOnGetObject
4134UiaOnToolTip
4135UnInitProcessPriv
4136UnInitThread
4137UnicodeToMultiByte
lib/libc/mingw/libarm32/dwmcore.def created+58
......@@ -0,0 +1,58 @@
1;
2; Definition file of dwmcore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dwmcore.dll"
7EXPORTS
8MIL3DCalcBrushToIdealSampleSpace
9MIL3DCalcProjected2DBounds
10MilChannel_AppendCommandData
11MilChannel_BeginCommand
12MilChannel_CommitChannel
13MilChannel_EndCommand
14MilChannel_FreeSyncCommandReplay
15MilChannel_GetMarshalType
16MilChannel_SendSyncCommand
17MilChannel_SetNotificationWindow
18MilChannel_SetReceiveBroadcastMessages
19MilCommandTransport_AddRef
20MilCommandTransport_Release
21MilCompositionEngine_DeinitializePartitionManager
22MilCompositionEngine_GetComposedEventId
23MilCompositionEngine_GetFeedbackReader
24MilCompositionEngine_InitializePartitionManager
25MilCompositionEngine_UpdateSchedulerSettings
26MilComposition_PeekNextMessage
27MilComposition_SyncFlush
28MilComposition_WaitForNextMessage
29MilConnectionManager_NotifyHostEvent
30MilConnection_CreateChannel
31MilConnection_DestroyChannel
32MilConnection_GetChannelKernelHandle
33MilCoreClientIsDwm
34MilCrossThreadPacketTransport_Create
35MilResource_CreateOrAddRefOnChannel
36MilResource_DuplicateHandle
37MilResource_DuplicateHandleOnTarget
38MilResource_ReleaseOnChannel
39MilResource_SendCommand
40MilResource_SendCommandBitmapSource
41MilResource_SendCommandBitmapSourceEx
42MilTransport_AddRef
43MilTransport_Close
44MilTransport_Create
45MilTransport_CreateFromPacketTransport
46MilTransport_CreateTransportParameters
47MilTransport_DisconnectTransport
48MilTransport_InitializeConnectionManager
49MilTransport_Open
50MilTransport_PostPacket
51MilTransport_Release
52MilTransport_ShutDownConnectionManager
53MilUtility_GetTileBrushMapping
54MilVersionCheck
55MilVisualTarget_AttachToHwnd
56MilVisualTarget_DetachFromHwnd
57SetMilPerfInstrumentationFlags
58MILCreateFactory
lib/libc/mingw/libarm32/dwmredir.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of dwmredir.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dwmredir.dll"
7EXPORTS
8DwmInitializeTransport
9DwmRedirectionManagerDispatchMessage
10DwmRedirectionManagerEnableMMCSS
11DwmRedirectionManagerFailMessage
12DwmRedirectionManagerInitialize
13DwmRedirectionManagerLockMemoryAllocations
14DwmRedirectionManagerPlayingVideo
15DwmRedirectionManagerSetClientChannel
16DwmRedirectionManagerSetClientRenderTarget
17DwmRedirectionManagerShouldRemainOnHibernate
18DwmRedirectionManagerShutdown
19DwmRedirectionManagerWaitForMultipleObjects
20DwmRenderDesktopForDDA
21DwmShutdownTransport
22DwmVersionCheck
lib/libc/mingw/libarm32/dxgwdi.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of dxgwdi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dxgwdi.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/eapprovp.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of eapprovp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "eapprovp.dll"
7EXPORTS
8EapProvPlugGetInfo
9EapProvPluginDeinitialize
10EapProvPluginInitialize
11EapProvPluginTestForAuthenticatingWlanInterfaces
12EapProvPluginWlanCloseHandle
13EapProvPluginWlanOpenHandle
14EapProvPluginWlanRegisterNotification
lib/libc/mingw/libarm32/eapqec.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of EapQec.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EapQec.dll"
7EXPORTS
8InitializeQec
9UninitializeQec
lib/libc/mingw/libarm32/easwrt.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of easwrt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "easwrt.dll"
7EXPORTS
8EasClientSecurityPolicyApply
9EasClientSecurityPolicyCheckCompliance
10EasGetClientDeviceInformation
lib/libc/mingw/libarm32/efscore.def created+43
......@@ -0,0 +1,43 @@
1;
2; Definition file of EFSCORE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EFSCORE.dll"
7EXPORTS
8EfsDllAddUsersToFileSrv
9EfsDllAllocateHeap
10EfsDllCloseFileRaw
11EfsDllConstructEFS
12EfsDllDecryptFek
13EfsDllDecryptFileSrv
14EfsDllDisabled
15EfsDllDuplicateEncryptionInfoFileSrv
16EfsDllEncryptFileSrv
17EfsDllErrorToNtStatus
18EfsDllFileKeyInfoSrv
19EfsDllFreeHeap
20EfsDllFreeUserInfo
21EfsDllGetLocalFileName
22EfsDllGetLogFile
23EfsDllGetUserInfo
24EfsDllGetVolumeRoot
25EfsDllIsNonEfsSKU
26EfsDllLoadUserProfile
27EfsDllMarkFileForDelete
28EfsDllOnSessionChange
29EfsDllOpenFileRaw
30EfsDllQueryProtectorsSrv
31EfsDllQueryRecoveryAgentsSrv
32EfsDllQueryUsersOnFileSrv
33EfsDllReadFileRaw
34EfsDllRemoveUsersFromFileSrv
35EfsDllSetFileEncryptionKeySrv
36EfsDllShareDecline
37EfsDllSsoFlushUserCache
38EfsDllUnloadUserProfile
39EfsDllUsePinForEncryptedFilesSrv
40EfsDllValidateEfsStream
41EfsDllWriteFileRaw
42EfsInitialize
43EfsUnInitialize
lib/libc/mingw/libarm32/efslsaext.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of efslsaext.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "efslsaext.dll"
7EXPORTS
8InitializeLsaExtension
lib/libc/mingw/libarm32/efssvc.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of efssvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "efssvc.dll"
7EXPORTS
8EfsServiceMain
lib/libc/mingw/libarm32/efsutil.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of EFSUTIL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EFSUTIL.dll"
7EXPORTS
8EfsUtilApplyGroupPolicy
9EfsUtilCheckCurrentKeyCapabilities
10EfsUtilCreateSelfSignedCertificate
11EfsUtilGetCertContextFromCertHash
12EfsUtilGetCurrentKey
13EfsUtilGetCurrentKey_Deprecated
14EfsUtilGetCurrentUserInformation
15EfsUtilGetProvider
16EfsUtilGetSmartcardProviderName
17EfsUtilGetUserKey
18EfsUtilIsSmartcardKey
19EfsUtilIsSmartcardProvider
20EfsUtilReleaseProvider
21EfsUtilReleaseUserKey
22EfsUtilSetCurrentKey
23EfsUtilSetSmartcardPin
24EfsUtilSmartcardCredsNeededError
lib/libc/mingw/libarm32/ehstorpwdmgr.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of EhStorPwdMgr.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EhStorPwdMgr.DLL"
7EXPORTS
8EnhancedStoragePasswordInitDisk
9EnhancedStoragePasswordConfig
lib/libc/mingw/libarm32/elshyph.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of elshyph.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "elshyph.dll"
7EXPORTS
8DoAction
9FreePropertyBag
10FreeService
11InitService
12RecognizeText
lib/libc/mingw/libarm32/elslad.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of elslad.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "elslad.dll"
7EXPORTS
8DoAction
9FreePropertyBag
10FreeService
11InitService
12RecognizeText
lib/libc/mingw/libarm32/elstrans.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of elstrans.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "elstrans.dll"
7EXPORTS
8DoAction
9EnumServices
10FreePropertyBag
11FreeService
12InitService
13RecognizeText
lib/libc/mingw/libarm32/embeddedapplauncherconfig.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of EmbeddedAppLauncherConfig.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EmbeddedAppLauncherConfig.dll"
7EXPORTS
8EmbeddedAppLauncherSysprepCleanup
9EmbeddedAppLauncherSysprepGeneralize
10EmbeddedAppLauncherSysprepSpecialize
11ExePassThrough
lib/libc/mingw/libarm32/encdump.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of EncDump.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EncDump.dll"
7EXPORTS
8EncryptDumpFile
lib/libc/mingw/libarm32/energy.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of ENERGY.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ENERGY.dll"
7EXPORTS
8SaveBatteryReport
9SqmSleepStudyReport
10EnergyWizard_Analyze
11EnergyWizard_CancelTrace
12EnergyWizard_CollectTrace
13EnergyWizard_CreateEnergyWizard
14EnergyWizard_DefaultTraceDuration
15EnergyWizard_DestroyEnergyWizard
16EnergyWizard_GetLogEntryCounts
17EnergyWizard_SaveReport
18EnergyWizard_SqmAnalysis
19EnergyWizard_TransformReport
20SaveSleepStudyReport
21TransformBatteryReport
22TransformSleepStudyReport
lib/libc/mingw/libarm32/energyprov.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of EnergyProv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EnergyProv.dll"
7EXPORTS
8SruInitializeProvider
9SruUninitializeProvider
lib/libc/mingw/libarm32/es.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of ES.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ES.dll"
7EXPORTS
8SvchostPushServiceGlobals
9LCEControlServer
10NotifyLogoffUser
11NotifyLogonUser
12ServiceMain
lib/libc/mingw/libarm32/esent.def deleted-363
......@@ -1,363 +0,0 @@
1;
2; Definition file of ESENT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ESENT.dll"
7EXPORTS
8DebugExtensionInitialize
9DebugExtensionNotify
10DebugExtensionUninitialize
11JetAddColumn
12JetAddColumnA
13JetAddColumnW
14JetAttachDatabase
15JetAttachDatabase2
16JetAttachDatabase2A
17JetAttachDatabase2W
18JetAttachDatabaseA
19JetAttachDatabaseW
20JetAttachDatabaseWithStreaming
21JetAttachDatabaseWithStreamingA
22JetAttachDatabaseWithStreamingW
23JetBackup
24JetBackupA
25JetBackupInstance
26JetBackupInstanceA
27JetBackupInstanceW
28JetBackupW
29JetBeginDatabaseIncrementalReseed
30JetBeginDatabaseIncrementalReseedA
31JetBeginDatabaseIncrementalReseedW
32JetBeginExternalBackup
33JetBeginExternalBackupInstance
34JetBeginSession
35JetBeginSessionA
36JetBeginSessionW
37JetBeginSurrogateBackup
38JetBeginTransaction
39JetBeginTransaction2
40JetBeginTransaction3
41JetCloseDatabase
42JetCloseFile
43JetCloseFileInstance
44JetCloseTable
45JetCommitTransaction
46JetCommitTransaction2
47JetCompact
48JetCompactA
49JetCompactW
50JetComputeStats
51JetConfigureProcessForCrashDump
52JetConsumeLogData
53JetConvertDDL
54JetConvertDDLA
55JetConvertDDLW
56JetCreateDatabase
57JetCreateDatabase2
58JetCreateDatabase2A
59JetCreateDatabase2W
60JetCreateDatabaseA
61JetCreateDatabaseW
62JetCreateDatabaseWithStreaming
63JetCreateDatabaseWithStreamingA
64JetCreateDatabaseWithStreamingW
65JetCreateIndex
66JetCreateIndex2
67JetCreateIndex2A
68JetCreateIndex2W
69JetCreateIndex3A
70JetCreateIndex3W
71JetCreateIndex4A
72JetCreateIndex4W
73JetCreateIndexA
74JetCreateIndexW
75JetCreateInstance
76JetCreateInstance2
77JetCreateInstance2A
78JetCreateInstance2W
79JetCreateInstanceA
80JetCreateInstanceW
81JetCreateTable
82JetCreateTableA
83JetCreateTableColumnIndex
84JetCreateTableColumnIndex2
85JetCreateTableColumnIndex2A
86JetCreateTableColumnIndex2W
87JetCreateTableColumnIndex3A
88JetCreateTableColumnIndex3W
89JetCreateTableColumnIndex4A
90JetCreateTableColumnIndex4W
91JetCreateTableColumnIndexA
92JetCreateTableColumnIndexW
93JetCreateTableW
94JetDBUtilities
95JetDBUtilitiesA
96JetDBUtilitiesW
97JetDatabaseScan
98JetDefragment
99JetDefragment2
100JetDefragment2A
101JetDefragment2W
102JetDefragment3
103JetDefragment3A
104JetDefragment3W
105JetDefragmentA
106JetDefragmentW
107JetDelete
108JetDeleteColumn
109JetDeleteColumn2
110JetDeleteColumn2A
111JetDeleteColumn2W
112JetDeleteColumnA
113JetDeleteColumnW
114JetDeleteIndex
115JetDeleteIndexA
116JetDeleteIndexW
117JetDeleteTable
118JetDeleteTableA
119JetDeleteTableW
120JetDetachDatabase
121JetDetachDatabase2
122JetDetachDatabase2A
123JetDetachDatabase2W
124JetDetachDatabaseA
125JetDetachDatabaseW
126JetDupCursor
127JetDupSession
128JetEnableMultiInstance
129JetEnableMultiInstanceA
130JetEnableMultiInstanceW
131JetEndDatabaseIncrementalReseed
132JetEndDatabaseIncrementalReseedA
133JetEndDatabaseIncrementalReseedW
134JetEndExternalBackup
135JetEndExternalBackupInstance
136JetEndExternalBackupInstance2
137JetEndSession
138JetEndSurrogateBackup
139JetEnumerateColumns
140JetEscrowUpdate
141JetExternalRestore
142JetExternalRestore2
143JetExternalRestore2A
144JetExternalRestore2W
145JetExternalRestoreA
146JetExternalRestoreW
147JetFreeBuffer
148JetGetAttachInfo
149JetGetAttachInfoA
150JetGetAttachInfoInstance
151JetGetAttachInfoInstanceA
152JetGetAttachInfoInstanceW
153JetGetAttachInfoW
154JetGetBookmark
155JetGetColumnInfo
156JetGetColumnInfoA
157JetGetColumnInfoW
158JetGetCounter
159JetGetCurrentIndex
160JetGetCurrentIndexA
161JetGetCurrentIndexW
162JetGetCursorInfo
163JetGetDatabaseFileInfo
164JetGetDatabaseFileInfoA
165JetGetDatabaseFileInfoW
166JetGetDatabaseInfo
167JetGetDatabaseInfoA
168JetGetDatabaseInfoW
169JetGetDatabasePages
170JetGetErrorInfoW
171JetGetIndexInfo
172JetGetIndexInfoA
173JetGetIndexInfoW
174JetGetInstanceInfo
175JetGetInstanceInfoA
176JetGetInstanceInfoW
177JetGetInstanceMiscInfo
178JetGetLS
179JetGetLock
180JetGetLogFileInfo
181JetGetLogFileInfoA
182JetGetLogFileInfoW
183JetGetLogInfo
184JetGetLogInfoA
185JetGetLogInfoInstance
186JetGetLogInfoInstance2
187JetGetLogInfoInstance2A
188JetGetLogInfoInstance2W
189JetGetLogInfoInstanceA
190JetGetLogInfoInstanceW
191JetGetLogInfoW
192JetGetMaxDatabaseSize
193JetGetObjectInfo
194JetGetObjectInfoA
195JetGetObjectInfoW
196JetGetPageInfo
197JetGetPageInfo2
198JetGetRecordPosition
199JetGetRecordSize
200JetGetRecordSize2
201JetGetResourceParam
202JetGetSecondaryIndexBookmark
203JetGetSessionInfo
204JetGetSessionParameter
205JetGetSystemParameter
206JetGetSystemParameterA
207JetGetSystemParameterW
208JetGetTableColumnInfo
209JetGetTableColumnInfoA
210JetGetTableColumnInfoW
211JetGetTableIndexInfo
212JetGetTableIndexInfoA
213JetGetTableIndexInfoW
214JetGetTableInfo
215JetGetTableInfoA
216JetGetTableInfoW
217JetGetThreadStats
218JetGetTruncateLogInfoInstance
219JetGetTruncateLogInfoInstanceA
220JetGetTruncateLogInfoInstanceW
221JetGetVersion
222JetGotoBookmark
223JetGotoPosition
224JetGotoSecondaryIndexBookmark
225JetGrowDatabase
226JetIdle
227JetIndexRecordCount
228JetInit
229JetInit2
230JetInit3
231JetInit3A
232JetInit3W
233JetInit4
234JetInit4A
235JetInit4W
236JetIntersectIndexes
237JetMakeKey
238JetMove
239JetOSSnapshotAbort
240JetOSSnapshotEnd
241JetOSSnapshotFreeze
242JetOSSnapshotFreezeA
243JetOSSnapshotFreezeW
244JetOSSnapshotGetFreezeInfo
245JetOSSnapshotGetFreezeInfoA
246JetOSSnapshotGetFreezeInfoW
247JetOSSnapshotPrepare
248JetOSSnapshotPrepareInstance
249JetOSSnapshotThaw
250JetOSSnapshotTruncateLog
251JetOSSnapshotTruncateLogInstance
252JetOnlinePatchDatabasePage
253JetOpenDatabase
254JetOpenDatabaseA
255JetOpenDatabaseW
256JetOpenFile
257JetOpenFileA
258JetOpenFileInstance
259JetOpenFileInstanceA
260JetOpenFileInstanceW
261JetOpenFileSectionInstance
262JetOpenFileSectionInstanceA
263JetOpenFileSectionInstanceW
264JetOpenFileW
265JetOpenTable
266JetOpenTableA
267JetOpenTableW
268JetOpenTempTable
269JetOpenTempTable2
270JetOpenTempTable3
271JetOpenTemporaryTable
272JetOpenTemporaryTable2
273JetPatchDatabasePages
274JetPatchDatabasePagesA
275JetPatchDatabasePagesW
276JetPrepareToCommitTransaction
277JetPrepareUpdate
278JetPrereadIndexRanges
279JetPrereadKeys
280JetPrereadTablesW
281JetReadFile
282JetReadFileInstance
283JetRegisterCallback
284JetRemoveLogfileA
285JetRemoveLogfileW
286JetRenameColumn
287JetRenameColumnA
288JetRenameColumnW
289JetRenameTable
290JetRenameTableA
291JetRenameTableW
292JetResetCounter
293JetResetSessionContext
294JetResetTableSequential
295JetResizeDatabase
296JetRestore
297JetRestore2
298JetRestore2A
299JetRestore2W
300JetRestoreA
301JetRestoreInstance
302JetRestoreInstanceA
303JetRestoreInstanceW
304JetRestoreW
305JetRetrieveColumn
306JetRetrieveColumns
307JetRetrieveKey
308JetRetrieveTaggedColumnList
309JetRollback
310JetSeek
311JetSetColumn
312JetSetColumnDefaultValue
313JetSetColumnDefaultValueA
314JetSetColumnDefaultValueW
315JetSetColumns
316JetSetCurrentIndex
317JetSetCurrentIndex2
318JetSetCurrentIndex2A
319JetSetCurrentIndex2W
320JetSetCurrentIndex3
321JetSetCurrentIndex3A
322JetSetCurrentIndex3W
323JetSetCurrentIndex4
324JetSetCurrentIndex4A
325JetSetCurrentIndex4W
326JetSetCurrentIndexA
327JetSetCurrentIndexW
328JetSetCursorFilter
329JetSetDatabaseSize
330JetSetDatabaseSizeA
331JetSetDatabaseSizeW
332JetSetIndexRange
333JetSetLS
334JetSetMaxDatabaseSize
335JetSetResourceParam
336JetSetSessionContext
337JetSetSessionParameter
338JetSetSystemParameter
339JetSetSystemParameterA
340JetSetSystemParameterW
341JetSetTableSequential
342JetSnapshotStart
343JetSnapshotStartA
344JetSnapshotStartW
345JetSnapshotStop
346JetStopBackup
347JetStopBackupInstance
348JetStopService
349JetStopServiceInstance
350JetStopServiceInstance2
351JetTerm
352JetTerm2
353JetTestHook
354JetTracing
355JetTruncateLog
356JetTruncateLogInstance
357JetUnregisterCallback
358JetUpdate
359JetUpdate2
360JetUpgradeDatabase
361JetUpgradeDatabaseA
362JetUpgradeDatabaseW
363ese
lib/libc/mingw/libarm32/eventaggregation.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of EventAggregation.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "EventAggregation.dll"
7EXPORTS
8EACreateAggregateEvent
9EADeleteAggregateEvent
10EAEnumerateAggregateEvents
11EAQueryAggregateEventData
lib/libc/mingw/libarm32/fdphost.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of fdPHost.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fdPHost.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/fdprint.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of fdprint.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fdprint.dll"
7EXPORTS
8InvokeTaskW
lib/libc/mingw/libarm32/fdrespub.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of respub.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "respub.DLL"
7EXPORTS
8FDResPub_MainHosted
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/libarm32/fdssdp.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of fdSSDP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fdSSDP.dll"
7EXPORTS
8FdphostSessionChange
9FdphostSetComContext
10FdphostSetSharedService
lib/libc/mingw/libarm32/fdwsd.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of fdWSD.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fdWSD.dll"
7EXPORTS
8FdphostSessionChange
9FdphostSetComContext
10FdphostSetSharedService
lib/libc/mingw/libarm32/fhevents.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of FHEVENTS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FHEVENTS.dll"
7EXPORTS
8DpElGetNextEvent
9DpElReleaseObjects
10DpElScanEvents
lib/libc/mingw/libarm32/fhshl.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of dll.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dll.dll"
7EXPORTS
8CreateCatalog
9CreateSearchBindCtx
10CreateVirtualItem
11FreeCatalog
12GetBackupPathFromPidl
13ParsePIDL
lib/libc/mingw/libarm32/fhsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of fhsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fhsvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/firewallapi.def created+274
......@@ -0,0 +1,274 @@
1;
2; Definition file of FirewallAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FirewallAPI.dll"
7EXPORTS
8CreateDefaultPerInterfaceIcmpRule
9CreateDefaultPerInterfaceOpenPortRule
10FwAdvPolicyDecodeFirewallRule
11FwAdvPolicyEncodeRule
12FwBstrToPorts
13FwGetCurrentProfile
14FwGetVersionField
15FwPortsToString
16GetDisabledInterfaces
17NetworkIsolationEnumerateAppContainerRules
18NetworkIsolationFreeAppContainers
19CalculateOpenPortOrAuthAppAddrStringSize
20FWAddAuthenticationSet
21FWAddConnectionSecurityRule
22FWAddCryptoSet
23FWAddFirewallRule
24FWAddMainModeRule
25FWChangeNotificationCreate
26FWChangeNotificationDestroy
27FWChangeTransactionalState
28FWClosePolicyStore
29FWCopyAuthenticationSet
30FWCopyConnectionSecurityRule
31FWCopyCryptoSet
32FWCopyFirewallRule
33FWDeleteAllAuthenticationSets
34FWDeleteAllConnectionSecurityRules
35FWDeleteAllCryptoSets
36FWDeleteAllFirewallRules
37FWDeleteAllMainModeRules
38FWDeleteAuthenticationSet
39FWDeleteConnectionSecurityRule
40FWDeleteCryptoSet
41FWDeleteFirewallRule
42FWDeleteMainModeRule
43FWDeletePhase1SAs
44FWDeletePhase2SAs
45FWDiagGetAppList
46FWEnumAdapters
47FWEnumAuthenticationSets
48FWEnumConnectionSecurityRules
49FWEnumCryptoSets
50FWEnumFirewallRules
51FWEnumMainModeRules
52FWEnumNetworks
53FWEnumPhase1SAs
54FWEnumPhase2SAs
55FWEnumProducts
56FWExportPolicy
57FWFreeAdapters
58FWFreeAuthenticationSet
59FWFreeAuthenticationSets
60FWFreeAuthenticationSetsByHandle
61FWFreeConnectionSecurityRule
62FWFreeConnectionSecurityRules
63FWFreeConnectionSecurityRulesByHandle
64FWFreeCryptoSet
65FWFreeCryptoSets
66FWFreeCryptoSetsByHandle
67FWFreeDiagAppList
68FWFreeFirewallRule
69FWFreeFirewallRules
70FWFreeFirewallRulesByHandle
71FWFreeFirewallRulesOld
72FWFreeMainModeRule
73FWFreeMainModeRules
74FWFreeMainModeRulesByHandle
75FWFreeNetworks
76FWFreePhase1SAs
77FWFreePhase2SAs
78FWFreeProducts
79FWGPLock
80FWGPUnlock
81FWGetConfig
82FWGetConfig2
83FWGetGlobalConfig
84FWGetGlobalConfig2
85FWGetGlobalConfig3
86FWGetIndicatedPortInUse
87FWImportPolicy
88FWIndicatePortInUse
89FWIndicateProxyForUrl
90FWIndicateProxyResolverRefresh
91FWIndicateTupleInUse
92FWIsTargetAProxy
93FWOpenPolicyStore
94FWQueryAuthenticationSets
95FWQueryConnectionSecurityRules
96FWQueryCryptoSets
97FWQueryFirewallRules
98FWQueryIsolationType
99FWQueryMainModeRules
100FWRegisterProduct
101FWResetIndicatedPortInUse
102FWResetIndicatedTupleInUse
103FWResolveGPONames
104FWRestoreDefaults
105FWRestoreGPODefaults
106FWRevertTransaction
107FWSelectConSecRule
108FWSetAuthenticationSet
109FWSetConfig
110FWSetConnectionSecurityRule
111FWSetCryptoSet
112FWSetFirewallRule
113FWSetGPHelperFnPtrs
114FWSetGlobalConfig
115FWSetGlobalConfig2
116FWSetMainModeRule
117FWStatusMessageFromStatusCode
118FWUnregisterProduct
119FWVerifyAuthenticationSet
120FWVerifyAuthenticationSetQuery
121FWVerifyConnectionSecurityRule
122FWVerifyConnectionSecurityRuleQuery
123FWVerifyCryptoSet
124FWVerifyCryptoSetQuery
125FWVerifyFirewallRule
126FWVerifyFirewallRuleQuery
127FWVerifyMainModeRule
128FWVerifyMainModeRuleQuery
129FreeAbsoluteInterfaces
130FwActivate
131FwAddRule
132FwAddSet
133FwAddrChangeSourceInitialize
134FwAddrChangeSourceShutdown
135FwAddrChangeSourceSignal
136FwAlloc
137FwAllocCheckSize
138FwAnalyzeFirewallPolicy
139FwAnalyzeFirewallPolicyOnProfile
140FwAppContainerChangeFree
141FwAreAllContainedInAddresses
142FwBinariesFree
143FwCSRuleEmpty
144FwCSRuleVerify
145FwCanonizeAuthorizedApps
146FwChangeSourceInitialize
147FwChangeSourceShutdown
148FwChangeSourceSignal
149FwChangeSourceSignalStart
150FwChkBuildSidAndAttributesFree
151FwClosePolicyStore
152FwConvertIPv6SubNetToRange
153FwCopyAuthSet
154FwCopyAuthSetListToLowerVersion
155FwCopyAuthsetToHigherVersion
156FwCopyCSRule
157FwCopyCryptoSet
158FwCopyICMPTypeCode
159FwCopyInterfaceLuids
160FwCopyLUID
161FwCopyMMRule
162FwCopyMainModeRule
163FwCopyPlatform
164FwCopyPortRange
165FwCopyPortsContents
166FwCopyRule
167FwCopyWFAddressesContents
168FwCreateLocalTempStore
169FwDeleteAllRules
170FwDeleteAllSets
171FwDeleteRule
172FwDeleteSet
173FwDestroyLocalTempStore
174FwDoNothingOnObject
175FwEmptyWFAddresses
176FwEmptyWFRule
177FwEnableMemTracing
178FwEnumRules
179FwEnumSets
180FwFree
181FwFreeAddresses
182FwFreeRules
183FwFreeSets
184FwFreeWFRule
185FwGetAddressesAsString
186FwGetAppBlockList
187FwGetConfig
188FwGetGlobalConfig
189FwGetGlobalConfigFromLocalTempStore
190FwGetRule
191FwICFProfileToWfProfile
192FwICFProtocolToWfProtocol
193FwIPV4RangeContainsMulticast
194FwIPV6RangeContainsMulticast
195FwImageListDestroy
196FwImageListHasImage
197FwIsGroupPolicyEnforced
198FwIsRemoteManagementEnabled
199FwIsV6AddrLoopback
200FwMMRuleVerify
201FwMergeAddresses
202FwMigrateLegacyAuthenticatedBypassSddl
203FwMigrateLegacySettings
204FwNegateAddresses
205FwOpenAppCDbPolicyStore
206FwOpenPolicyStore
207FwParseAddressToken
208FwReduceObjectsToVersion
209FwRemoveDuplicateAddresses
210FwResolveIndirectString
211FwRuleResolveFlags
212FwSddlStringVerify
213FwSetConfig
214FwSetGlobalConfig
215FwSetMemLeakPolicy
216FwSetResolveFlags
217FwSetRule
218FwSetSet
219FwSidAndAttributesCopy
220FwSidAndAttributesFree
221FwSidCopy
222FwSidsToString
223FwStringToAddresses
224FwStringToSids
225FwSubtractAddresses
226FwUniteWFAddressesContents
227FwVerifyNoHeapLeaks
228FwVerifyWFRuleSemantics
229FwWfProtocolToICFProtocol
230GetOpenPortOrAuthAppAddrScope
231IcfAddrChangeNotificationCreate
232IcfChangeNotificationCreate
233IcfChangeNotificationDestroy
234IcfConnect
235IcfDisconnect
236IcfFreeDynamicFwPorts
237IcfFreeProfile
238IcfFreeTickets
239IcfGetCurrentProfileType
240IcfGetDynamicFwPorts
241IcfGetOperationalMode
242IcfGetProfile
243IcfGetTickets
244IcfIsPortAllowed
245IcfOpenDynamicFwPortWithoutSocket
246IcfSubNetsGetScope
247IsAddressesEmpty
248IsEqualAddresses
249IsFirewallInCoExistanceMode
250IsPortOrICMPAllowed
251IsPortsEmpty
252IsRuleOldAuthApp
253IsRuleOldGlobalOpenPort
254IsRuleOpenPortOrAuthApp
255IsRulePerInterfaceIcmp
256IsRulePerInterfaceOpenPort
257IsUnicastExplicitAddressesEmpty
258Isv4Orv6AddressesEmpty
259LoadGPExtensionDll
260MakeAbsoluteInterfaces
261NetworkIsolationCreateAppContainer
262NetworkIsolationDeleteAppContainer
263NetworkIsolationDiagnoseConnectFailure
264NetworkIsolationDiagnoseConnectFailureAndGetInfo
265NetworkIsolationDiagnoseListen
266NetworkIsolationDiagnoseSocketCreation
267NetworkIsolationEnumAppContainers
268NetworkIsolationGetAppContainerConfig
269NetworkIsolationRegisterForAppContainerChanges
270NetworkIsolationSetAppContainerConfig
271NetworkIsolationSetupAppContainerBinaries
272NetworkIsolationUnregisterForAppContainerChanges
273OpenPortOrAuthAppAddrToString
274ValidatePortOrAppAddressString
lib/libc/mingw/libarm32/firewallcontrolpanel.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of FIREWALLCONTROLPANEL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FIREWALLCONTROLPANEL.dll"
7EXPORTS
8ShowNotificationDialogW
9ShowWarningDialogW
lib/libc/mingw/libarm32/fm20.def created+36
......@@ -0,0 +1,36 @@
1;
2; Definition file of fm20.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fm20.dll"
7EXPORTS
8ord_29 @29
9ord_30 @30
10ChooseColorA
11ChooseColorW
12ChooseFontA
13ChooseFontW
14CommDlgExtendedError
15DllRegisterServerSetup
16ExtractIconA
17ExtractIconW
18FormsCheckUFIControls
19FormsCloseParentUnit
20FormsOpenParentUnit
21FormsSetLCID
22GetOpenFileNameA
23GetOpenFileNameW
24GetSaveFileNameA
25ord_50 @50
26ord_51 @51
27ord_52 @52
28GetSaveFileNameW
29PrintDlgW
30ord_100 @100
31ord_101 @101
32ord_102 @102
33ord_103 @103
34ord_104 @104
35ord_105 @105
36ord_106 @106
lib/libc/mingw/libarm32/fmapi.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of fmapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fmapi.dll"
7EXPORTS
8CloseFileRestoreContext
9CreateFileRestoreContext
10DetectBootSector
11DetectEncryptedVolume
12DetectEncryptedVolumeEx
13RestoreFile
14ScanRestorableFiles
15SupplyDecryptionInfo
lib/libc/mingw/libarm32/fms.def created+30
......@@ -0,0 +1,30 @@
1;
2; Definition file of fms.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fms.dll"
7EXPORTS
8FmsActivateFonts
9FmsAddFilter
10FmsDeactivateFonts
11FmsFreeEnumerator
12FmsGetBestMatchInFamily
13FmsGetCurrentFilter
14FmsGetDirectWriteLogFont
15FmsGetFilteredFontList
16FmsGetFilteredPropertyList
17FmsGetFontAutoActivationMode
18FmsGetFontProperty
19FmsGetGDILogFont
20FmsGetGdiLogicalFont
21FmsInitializeEnumerator
22FmsMapGdiLogicalFont
23FmsMapLogicalFont
24FmsResetEnumerator
25FmsResetFontsActivationState
26FmsSetDefaultFilter
27FmsSetFilter
28FmsSetFontAutoActivationMode
29FmsSetTextFilter
30FmsToggleOnDesignAxis
lib/libc/mingw/libarm32/fntcache.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of FntCache.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FntCache.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/fontext.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of fontext.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "fontext.DLL"
7EXPORTS
8InstallFontFile
lib/libc/mingw/libarm32/framedyn.def created+619
......@@ -0,0 +1,619 @@
1;
2; Definition file of framedyn.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "framedyn.dll"
7EXPORTS
8??0CAutoEvent@@QAA@XZ
9??0CFrameworkQuery@@QAA@ABV0@@Z
10??0CFrameworkQuery@@QAA@XZ
11??0CFrameworkQueryEx@@QAA@ABV0@@Z
12??0CFrameworkQueryEx@@QAA@XZ
13??0CHPtrArray@@QAA@XZ
14??0CHString@@QAA@ABV0@@Z
15??0CHString@@QAA@GH@Z
16??0CHString@@QAA@PBD@Z
17??0CHString@@QAA@PBE@Z
18??0CHString@@QAA@PBG@Z
19??0CHString@@QAA@PBGH@Z
20??0CHString@@QAA@XZ
21??0CHStringArray@@QAA@XZ
22??0CInstance@@QAA@ABV0@@Z
23??0CInstance@@QAA@PAUIWbemClassObject@@PAVMethodContext@@@Z
24??0CObjectPathParser@@QAA@W4ObjectParserFlags@@@Z
25??0CRegistry@@QAA@ABV0@@Z
26??0CRegistry@@QAA@XZ
27??0CRegistrySearch@@QAA@ABV0@@Z
28??0CRegistrySearch@@QAA@XZ
29??0CThreadBase@@QAA@ABV0@@Z
30??0CThreadBase@@QAA@W4THREAD_SAFETY_MECHANISM@0@@Z
31??0CWbemGlueFactory@@QAA@ABV0@@Z
32??0CWbemGlueFactory@@QAA@PAJ@Z
33??0CWbemGlueFactory@@QAA@XZ
34??0CWbemProviderGlue@@QAA@ABV0@@Z
35??0CWbemProviderGlue@@QAA@PAJ@Z
36??0CWbemProviderGlue@@QAA@XZ
37??0CWinMsgEvent@@QAA@ABV0@@Z
38??0CWinMsgEvent@@QAA@XZ
39??0CreateMutexAsProcess@@QAA@PBG@Z
40??0KeyRef@@QAA@PBGPBUtagVARIANT@@@Z
41??0KeyRef@@QAA@XZ
42??0MethodContext@@QAA@ABV0@@Z
43??0MethodContext@@QAA@PAUIWbemContext@@PAVCWbemProviderGlue@@@Z
44??0ParsedObjectPath@@QAA@XZ
45??0Provider@@QAA@ABV0@@Z
46??0Provider@@QAA@PBG0@Z
47??0ProviderLog@@QAA@ABV0@@Z
48??0ProviderLog@@QAA@XZ
49??0WBEMTime@@QAA@ABJ@Z
50??0WBEMTime@@QAA@ABU_FILETIME@@@Z
51??0WBEMTime@@QAA@ABU_SYSTEMTIME@@@Z
52??0WBEMTime@@QAA@ABUtm@@@Z
53??0WBEMTime@@QAA@QAG@Z
54??0WBEMTime@@QAA@XZ
55??0WBEMTimeSpan@@QAA@ABJ@Z
56??0WBEMTimeSpan@@QAA@ABU_FILETIME@@@Z
57??0WBEMTimeSpan@@QAA@HHHHHHH@Z
58??0WBEMTimeSpan@@QAA@QAG@Z
59??0WBEMTimeSpan@@QAA@XZ
60??0_Lockit@std@@QAA@XZ
61??1CAutoEvent@@QAA@XZ
62??1CFrameworkQuery@@QAA@XZ
63??1CFrameworkQueryEx@@QAA@XZ
64??1CHPtrArray@@QAA@XZ
65??1CHString@@QAA@XZ
66??1CHStringArray@@QAA@XZ
67??1CInstance@@UAA@XZ
68??1CObjectPathParser@@QAA@XZ
69??1CRegistry@@QAA@XZ
70??1CRegistrySearch@@QAA@XZ
71??1CThreadBase@@UAA@XZ
72??1CWbemGlueFactory@@QAA@XZ
73??1CWbemProviderGlue@@QAA@XZ
74??1CWinMsgEvent@@QAA@XZ
75??1CreateMutexAsProcess@@QAA@XZ
76??1KeyRef@@QAA@XZ
77??1MethodContext@@UAA@XZ
78??1ParsedObjectPath@@QAA@XZ
79??1Provider@@UAA@XZ
80??1ProviderLog@@UAA@XZ
81??1_Lockit@std@@QAA@XZ
82??4CAutoEvent@@QAAAAV0@ABV0@@Z
83??4CFrameworkQuery@@QAAAAV0@ABV0@@Z
84??4CFrameworkQueryEx@@QAAAAV0@ABV0@@Z
85??4CHPtrArray@@QAAAAV0@ABV0@@Z
86??4CHString@@QAAABV0@ABV0@@Z
87??4CHString@@QAAABV0@D@Z
88??4CHString@@QAAABV0@G@Z
89??4CHString@@QAAABV0@PAV0@@Z
90??4CHString@@QAAABV0@PBD@Z
91??4CHString@@QAAABV0@PBE@Z
92??4CHString@@QAAABV0@PBG@Z
93??4CHStringArray@@QAAAAV0@ABV0@@Z
94??4CInstance@@QAAAAV0@ABV0@@Z
95??4CObjectPathParser@@QAAAAV0@ABV0@@Z
96??4CRegistry@@QAAAAV0@ABV0@@Z
97??4CRegistrySearch@@QAAAAV0@ABV0@@Z
98??4CThreadBase@@QAAAAV0@ABV0@@Z
99??4CWbemGlueFactory@@QAAAAV0@ABV0@@Z
100??4CWbemProviderGlue@@QAAAAV0@ABV0@@Z
101??4CWinMsgEvent@@QAAAAV0@ABV0@@Z
102??4CreateMutexAsProcess@@QAAAAV0@ABV0@@Z
103??4KeyRef@@QAAAAU0@ABU0@@Z
104??4MethodContext@@QAAAAV0@ABV0@@Z
105??4ParsedObjectPath@@QAAAAU0@ABU0@@Z
106??4Provider@@QAAAAV0@ABV0@@Z
107??4ProviderLog@@QAAAAV0@ABV0@@Z
108??4WBEMTime@@QAAAAV0@ABV0@@Z
109??4WBEMTime@@QAAABV0@ABJ@Z
110??4WBEMTime@@QAAABV0@ABU_FILETIME@@@Z
111??4WBEMTime@@QAAABV0@ABU_SYSTEMTIME@@@Z
112??4WBEMTime@@QAAABV0@ABUtm@@@Z
113??4WBEMTime@@QAAABV0@QAG@Z
114??4WBEMTimeSpan@@QAAAAV0@ABV0@@Z
115??4WBEMTimeSpan@@QAAABV0@ABJ@Z
116??4WBEMTimeSpan@@QAAABV0@ABU_FILETIME@@@Z
117??4WBEMTimeSpan@@QAAABV0@QAG@Z
118??8WBEMTime@@QBAHABV0@@Z
119??8WBEMTimeSpan@@QBAHABV0@@Z
120??9WBEMTime@@QBAHABV0@@Z
121??9WBEMTimeSpan@@QBAHABV0@@Z
122??ACHPtrArray@@QAAAAPAXH@Z
123??ACHPtrArray@@QBAPAXH@Z
124??ACHString@@QBAGH@Z
125??ACHStringArray@@QAAAAVCHString@@H@Z
126??ACHStringArray@@QBA?AVCHString@@H@Z
127??BCHString@@QBAPBGXZ
128??GWBEMTime@@QAA?AVWBEMTimeSpan@@ABV0@@Z
129??GWBEMTime@@QBA?AV0@ABVWBEMTimeSpan@@@Z
130??GWBEMTimeSpan@@QBA?AV0@ABV0@@Z
131??H@YA?AVCHString@@ABV0@0@Z
132??H@YA?AVCHString@@ABV0@G@Z
133??H@YA?AVCHString@@ABV0@PBG@Z
134??H@YA?AVCHString@@GABV0@@Z
135??H@YA?AVCHString@@PBGABV0@@Z
136??HWBEMTime@@QBA?AV0@ABVWBEMTimeSpan@@@Z
137??HWBEMTimeSpan@@QBA?AV0@ABV0@@Z
138??MWBEMTime@@QBAHABV0@@Z
139??MWBEMTimeSpan@@QBAHABV0@@Z
140??NWBEMTime@@QBAHABV0@@Z
141??NWBEMTimeSpan@@QBAHABV0@@Z
142??OWBEMTime@@QBAHABV0@@Z
143??OWBEMTimeSpan@@QBAHABV0@@Z
144??PWBEMTime@@QBAHABV0@@Z
145??PWBEMTimeSpan@@QBAHABV0@@Z
146??YCHString@@QAAABV0@ABV0@@Z
147??YCHString@@QAAABV0@D@Z
148??YCHString@@QAAABV0@G@Z
149??YCHString@@QAAABV0@PBG@Z
150??YWBEMTime@@QAAABV0@ABVWBEMTimeSpan@@@Z
151??YWBEMTimeSpan@@QAAABV0@ABV0@@Z
152??ZWBEMTime@@QAAABV0@ABVWBEMTimeSpan@@@Z
153??ZWBEMTimeSpan@@QAAABV0@ABV0@@Z
154??_7CFrameworkQueryEx@@6B@ DATA
155??_7CInstance@@6B@ DATA
156??_7CThreadBase@@6B@ DATA
157??_7CWbemGlueFactory@@6B@ DATA
158??_7CWbemProviderGlue@@6BIWbemProviderInit@@@ DATA
159??_7CWbemProviderGlue@@6BIWbemServices@@@ DATA
160??_7CWinMsgEvent@@6B@ DATA
161??_7MethodContext@@6B@ DATA
162??_7Provider@@6B@ DATA
163??_7ProviderLog@@6B@ DATA
164??_FCObjectPathParser@@QAAXXZ
165??_FCThreadBase@@QAAXXZ
166?Add@CHPtrArray@@QAAHPAX@Z
167?Add@CHStringArray@@QAAHPBG@Z
168?AddFlushPtr@CWbemProviderGlue@@AAAXPAX@Z
169?AddKeyRef@ParsedObjectPath@@QAAHPAUKeyRef@@@Z
170?AddKeyRef@ParsedObjectPath@@QAAHPBGPBUtagVARIANT@@@Z
171?AddKeyRefEx@ParsedObjectPath@@QAAHPBGPBUtagVARIANT@@@Z
172?AddNamespace@ParsedObjectPath@@QAAHPBG@Z
173?AddProviderToMap@CWbemProviderGlue@@CAPAVProvider@@PBG0PAV2@@Z
174?AddRef@CInstance@@QAAJXZ
175?AddRef@CThreadBase@@QAAJXZ
176?AddRef@CWbemGlueFactory@@UAAKXZ
177?AddRef@CWbemProviderGlue@@UAAKXZ
178?AddRef@MethodContext@@QAAJXZ
179?AddToFactoryMap@CWbemProviderGlue@@KAXPBVCWbemGlueFactory@@PAJ@Z
180?AllPropertiesAreRequired@CFrameworkQuery@@QAA_NXZ
181?AllocBeforeWrite@CHString@@IAAXH@Z
182?AllocBuffer@CHString@@IAAXH@Z
183?AllocCopy@CHString@@IBAXAAV1@HHH@Z
184?AllocSysString@CHString@@QBAPAGXZ
185?Append@CHPtrArray@@QAAHABV1@@Z
186?Append@CHStringArray@@QAAHABV1@@Z
187?AssignCopy@CHString@@IAAXHPBG@Z
188?BeginRead@CThreadBase@@QAAHK@Z
189?BeginWrite@CThreadBase@@QAAHK@Z
190?CancelAsyncCall@CWbemProviderGlue@@UAAJPAUIWbemObjectSink@@@Z
191?CancelAsyncRequest@CWbemProviderGlue@@UAAJJ@Z
192?CheckAndAddToList@CRegistrySearch@@AAAXPAVCRegistry@@VCHString@@1AAVCHPtrArray@@11H@Z
193?CheckFileSize@ProviderLog@@AAAXAAT_LARGE_INTEGER@@ABVCHString@@@Z
194?CheckImpersonationLevel@CWbemProviderGlue@@CAJXZ
195?Clear@WBEMTime@@QAAXXZ
196?Clear@WBEMTimeSpan@@QAAXXZ
197?ClearKeys@ParsedObjectPath@@QAAXXZ
198?Close@CRegistry@@QAAXXZ
199?CloseSubKey@CRegistry@@AAAXXZ
200?Collate@CHString@@QBAHPBG@Z
201?Commit@CInstance@@QAAJXZ
202?Commit@Provider@@IAAJPAVCInstance@@_N@Z
203?Compare@CHString@@QBAHPBG@Z
204?CompareNoCase@CHString@@QBAHPBG@Z
205?ConcatCopy@CHString@@IAAXHPBGH0@Z
206?ConcatInPlace@CHString@@IAAXHPBG@Z
207?Copy@CHPtrArray@@QAAXABV1@@Z
208?Copy@CHStringArray@@QAAXABV1@@Z
209?CopyBeforeWrite@CHString@@IAAXXZ
210?Create@CWbemGlueFactory@@SAPAV1@PAJ@Z
211?Create@CWbemGlueFactory@@SAPAV1@XZ
212?CreateClassEnum@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
213?CreateClassEnumAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
214?CreateInstance@CWbemGlueFactory@@UAAJPAUIUnknown@@ABU_GUID@@PAPAX@Z
215?CreateInstanceEnum@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
216?CreateInstanceEnum@Provider@@AAAJPAVMethodContext@@J@Z
217?CreateInstanceEnumAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
218?CreateMsgProvider@CWinMsgEvent@@CAXXZ
219?CreateMsgWindow@CWinMsgEvent@@CAPAUHWND__@@XZ
220?CreateNewInstance@Provider@@IAAPAVCInstance@@PAVMethodContext@@@Z
221?CreateOpen@CRegistry@@QAAJPAUHKEY__@@PBGPAGKKPAU_SECURITY_ATTRIBUTES@@PAK@Z
222?CtrlHandlerRoutine@CWinMsgEvent@@CAHK@Z
223?DecrementMapCount@CWbemProviderGlue@@KAJPAJ@Z
224?DecrementMapCount@CWbemProviderGlue@@KAJPBVCWbemGlueFactory@@@Z
225?DecrementObjectCount@CWbemProviderGlue@@SAJXZ
226?DeleteClass@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
227?DeleteClassAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
228?DeleteCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBG@Z
229?DeleteCurrentKeyValue@CRegistry@@QAAKPBG@Z
230?DeleteInstance@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
231?DeleteInstance@Provider@@AAAJPAUParsedObjectPath@@JPAVMethodContext@@@Z
232?DeleteInstance@Provider@@MAAJABVCInstance@@J@Z
233?DeleteInstanceAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
234?DeleteKey@CRegistry@@QAAJPAVCHString@@@Z
235?DeleteValue@CRegistry@@QAAJPBG@Z
236?Destroy@CWbemGlueFactory@@QAAXXZ
237?DestroyMsgWindow@CWinMsgEvent@@CAXXZ
238?ElementAt@CHPtrArray@@QAAAAPAXH@Z
239?ElementAt@CHStringArray@@QAAAAVCHString@@H@Z
240?Empty@CHString@@QAAXXZ
241?Empty@CObjectPathParser@@AAAXXZ
242?EndRead@CThreadBase@@QAAXXZ
243?EndWrite@CThreadBase@@QAAXXZ
244?EnumerateAndGetValues@CRegistry@@QAAJAAKAAPAGAAPAE@Z
245?EnumerateInstances@Provider@@MAAJPAVMethodContext@@J@Z
246?ExecMethod@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemClassObject@@PAPAU3@PAPAUIWbemCallResult@@@Z
247?ExecMethod@Provider@@AAAJPAUParsedObjectPath@@PAGJPAVCInstance@@2PAVMethodContext@@@Z
248?ExecMethod@Provider@@MAAJABVCInstance@@QAGPAV2@2J@Z
249?ExecMethodAsync@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemClassObject@@PAUIWbemObjectSink@@@Z
250?ExecNotificationQuery@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
251?ExecNotificationQueryAsync@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
252?ExecQuery@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
253?ExecQuery@Provider@@MAAJPAVMethodContext@@AAVCFrameworkQuery@@J@Z
254?ExecQueryAsync@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
255?ExecuteQuery@Provider@@AAAJPAVMethodContext@@AAVCFrameworkQuery@@J@Z
256?FillInstance@CWbemProviderGlue@@SAJPAVCInstance@@PBG@Z
257?FillInstance@CWbemProviderGlue@@SAJPAVMethodContext@@PAVCInstance@@@Z
258?Find@CHString@@QBAHG@Z
259?Find@CHString@@QBAHPBG@Z
260?FindOneOf@CHString@@QBAHPBG@Z
261?Flush@Provider@@MAAXXZ
262?FlushAll@CWbemProviderGlue@@AAAXXZ
263?Format@CHString@@QAAXIZZ
264?Format@CHString@@QAAXPBGZZ
265?FormatMessageW@CHString@@QAAXIZZ
266?FormatMessageW@CHString@@QAAXPBGZZ
267?FormatV@CHString@@QAAXPBGPAD@Z
268?FrameworkLogin@CWbemProviderGlue@@SAXPBGPAVProvider@@0@Z
269?FrameworkLoginDLL@CWbemProviderGlue@@SAHPBG@Z
270?FrameworkLoginDLL@CWbemProviderGlue@@SAHPBGPAJ@Z
271?FrameworkLogoff@CWbemProviderGlue@@SAXPBG0@Z
272?FrameworkLogoffDLL@CWbemProviderGlue@@SAHPBG@Z
273?FrameworkLogoffDLL@CWbemProviderGlue@@SAHPBGPAJ@Z
274?Free@CObjectPathParser@@QAAXPAUParsedObjectPath@@@Z
275?FreeExtra@CHPtrArray@@QAAXXZ
276?FreeExtra@CHString@@QAAXXZ
277?FreeExtra@CHStringArray@@QAAXXZ
278?FreeSearchList@CRegistrySearch@@QAAHHAAVCHPtrArray@@@Z
279?GetAllDerivedInstances@CWbemProviderGlue@@SAJPBGPAV?$TRefPointerCollection@VCInstance@@@@PAVMethodContext@@0@Z
280?GetAllDerivedInstancesAsynch@CWbemProviderGlue@@SAJPBGPAVProvider@@P6AJ1PAVCInstance@@PAVMethodContext@@PAX@Z034@Z
281?GetAllInstances@CWbemProviderGlue@@SAJPBGPAV?$TRefPointerCollection@VCInstance@@@@0PAVMethodContext@@@Z
282?GetAllInstancesAsynch@CWbemProviderGlue@@SAJPBGPAVProvider@@P6AJ1PAVCInstance@@PAVMethodContext@@PAX@Z034@Z
283?GetAllocLength@CHString@@QBAHXZ
284?GetAt@CHPtrArray@@QBAPAXH@Z
285?GetAt@CHString@@QBAGH@Z
286?GetAt@CHStringArray@@QBA?AVCHString@@H@Z
287?GetBSTR@WBEMTime@@QBAPAGXZ
288?GetBSTR@WBEMTimeSpan@@QBAPAGXZ
289?GetBuffer@CHString@@QAAPAGH@Z
290?GetBufferSetLength@CHString@@QAAPAGH@Z
291?GetByte@CInstance@@QBA_NPBGAAE@Z
292?GetCHString@CInstance@@QBA_NPBGAAVCHString@@@Z
293?GetCSDVersion@CWbemProviderGlue@@SAPBGXZ
294?GetClassNameW@CRegistry@@QAAPAGXZ
295?GetClassObjectInterface@CInstance@@QAAPAUIWbemClassObject@@XZ
296?GetClassObjectInterface@Provider@@AAAPAUIWbemClassObject@@PAVMethodContext@@@Z
297?GetComputerNameW@CWbemProviderGlue@@CAXAAVCHString@@@Z
298?GetCurrentBinaryKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGPAEPAK@Z
299?GetCurrentBinaryKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
300?GetCurrentBinaryKeyValue@CRegistry@@QAAKPBGPAEPAK@Z
301?GetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAK@Z
302?GetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHString@@@Z
303?GetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHStringArray@@@Z
304?GetCurrentKeyValue@CRegistry@@QAAKPBGAAK@Z
305?GetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
306?GetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHStringArray@@@Z
307?GetCurrentRawKeyValue@CRegistry@@AAAKPAUHKEY__@@PBGPAXPAK3@Z
308?GetCurrentRawSubKeyValue@CRegistry@@AAAKPBGPAXPAK2@Z
309?GetCurrentSubKeyCount@CRegistry@@QAAKXZ
310?GetCurrentSubKeyName@CRegistry@@QAAKAAVCHString@@@Z
311?GetCurrentSubKeyPath@CRegistry@@QAAKAAVCHString@@@Z
312?GetCurrentSubKeyValue@CRegistry@@QAAKPBGAAK@Z
313?GetCurrentSubKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
314?GetCurrentSubKeyValue@CRegistry@@QAAKPBGPAXPAK@Z
315?GetDMTF@WBEMTime@@QBAPAGH@Z
316?GetDMTFNonNtfs@WBEMTime@@QBAPAGXZ
317?GetDOUBLE@CInstance@@QBA_NPBGAAN@Z
318?GetDWORD@CInstance@@QBA_NPBGAAK@Z
319?GetData@CHPtrArray@@QAAPAPAXXZ
320?GetData@CHPtrArray@@QBAPAPBXXZ
321?GetData@CHString@@IBAPAUCHStringData@@XZ
322?GetData@CHStringArray@@QAAPAVCHString@@XZ
323?GetData@CHStringArray@@QBAPBVCHString@@XZ
324?GetDateTime@CInstance@@QBA_NPBGAAVWBEMTime@@@Z
325?GetEmbeddedObject@CInstance@@QBA_NPBGPAPAV1@PAVMethodContext@@@Z
326?GetEmptyInstance@CWbemProviderGlue@@SAJPAVMethodContext@@PBGPAPAVCInstance@@1@Z
327?GetEmptyInstance@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@0@Z
328?GetFILETIME@WBEMTime@@QBAHPAU_FILETIME@@@Z
329?GetFILETIME@WBEMTimeSpan@@QBAHPAU_FILETIME@@@Z
330?GetIWBEMContext@MethodContext@@UAAPAUIWbemContext@@XZ
331?GetInstanceByPath@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@PAVMethodContext@@@Z
332?GetInstanceFromCIMOM@CWbemProviderGlue@@CAJPBG0PAVMethodContext@@PAPAVCInstance@@@Z
333?GetInstanceKeysByPath@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@PAVMethodContext@@@Z
334?GetInstancePropertiesByPath@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@PAVMethodContext@@AAVCHStringArray@@@Z
335?GetInstancesByQuery@CWbemProviderGlue@@SAJPBGPAV?$TRefPointerCollection@VCInstance@@@@PAVMethodContext@@0@Z
336?GetInstancesByQueryAsynch@CWbemProviderGlue@@SAJPBGPAVProvider@@P6AJ1PAVCInstance@@PAVMethodContext@@PAX@Z034@Z
337?GetKeyString@ParsedObjectPath@@QAAPAGXZ
338?GetLength@CHString@@QBAHXZ
339?GetLocalComputerName@Provider@@IAAABVCHString@@XZ
340?GetLocalInstancePath@Provider@@IAA_NPBVCInstance@@AAVCHString@@@Z
341?GetLocalOffsetForDate@WBEMTime@@SAJABJ@Z
342?GetLocalOffsetForDate@WBEMTime@@SAJPBU_FILETIME@@@Z
343?GetLocalOffsetForDate@WBEMTime@@SAJPBU_SYSTEMTIME@@@Z
344?GetLocalOffsetForDate@WBEMTime@@SAJPBUtm@@@Z
345?GetLongestClassStringSize@CRegistry@@QAAKXZ
346?GetLongestSubKeySize@CRegistry@@QAAKXZ
347?GetLongestValueData@CRegistry@@QAAKXZ
348?GetLongestValueName@CRegistry@@QAAKXZ
349?GetMapCountPtr@CWbemProviderGlue@@KAPAJPBVCWbemGlueFactory@@@Z
350?GetMethodContext@CInstance@@QBAPAVMethodContext@@XZ
351?GetNamespace@CFrameworkQuery@@IAAABVCHString@@XZ
352?GetNamespace@Provider@@IAAABVCHString@@XZ
353?GetNamespaceConnection@CWbemProviderGlue@@SAPAUIWbemServices@@PBG@Z
354?GetNamespaceConnection@CWbemProviderGlue@@SAPAUIWbemServices@@PBGPAVMethodContext@@@Z
355?GetNamespacePart@ParsedObjectPath@@QAAPAGXZ
356?GetOSMajorVersion@CWbemProviderGlue@@SAKXZ
357?GetObject@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemClassObject@@PAPAUIWbemCallResult@@@Z
358?GetObject@Provider@@AAAJPAUParsedObjectPath@@PAVMethodContext@@J@Z
359?GetObject@Provider@@MAAJPAVCInstance@@J@Z
360?GetObject@Provider@@MAAJPAVCInstance@@JAAVCFrameworkQuery@@@Z
361?GetObjectAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
362?GetParentNamespacePart@ParsedObjectPath@@QAAPAGXZ
363?GetPlatform@CWbemProviderGlue@@SAKXZ
364?GetPropertyBitMask@CFrameworkQueryEx@@QAAXABVCHPtrArray@@PAX@Z
365?GetProviderGlue@MethodContext@@AAAPAVCWbemProviderGlue@@XZ
366?GetProviderName@Provider@@IAAABVCHString@@XZ
367?GetQuery@CFrameworkQuery@@QAAABVCHString@@XZ
368?GetQueryClassName@CFrameworkQuery@@QAAPAGXZ
369?GetRelativePath@CObjectPathParser@@SAPAGPAG@Z
370?GetRequiredProperties@CFrameworkQuery@@QAAXAAVCHStringArray@@@Z
371?GetSYSTEMTIME@WBEMTime@@QBAHPAU_SYSTEMTIME@@@Z
372?GetSize@CHPtrArray@@QBAHXZ
373?GetSize@CHStringArray@@QBAHXZ
374?GetStatus@CInstance@@QBA_NPBGAA_NAAG@Z
375?GetStatusObject@CWbemProviderGlue@@CAPAUIWbemClassObject@@PAVMethodContext@@PBG@Z
376?GetStatusObject@MethodContext@@QAAPAUIWbemClassObject@@XZ
377?GetStringArray@CInstance@@QBA_NPBGAAPAUtagSAFEARRAY@@@Z
378?GetStructtm@WBEMTime@@QBAHPAUtm@@@Z
379?GetTime@WBEMTime@@QBA_KXZ
380?GetTime@WBEMTimeSpan@@QBA_KXZ
381?GetTimeSpan@CInstance@@QBA_NPBGAAVWBEMTimeSpan@@@Z
382?GetUpperBound@CHPtrArray@@QBAHXZ
383?GetUpperBound@CHStringArray@@QBAHXZ
384?GetValueCount@CRegistry@@QAAKXZ
385?GetValuesForProp@CFrameworkQuery@@QAAJPBGAAV?$vector@V_bstr_t@@V?$allocator@V_bstr_t@@@std@@@std@@@Z
386?GetValuesForProp@CFrameworkQuery@@QAAJPBGAAVCHStringArray@@@Z
387?GetValuesForProp@CFrameworkQueryEx@@QAAJPBGAAV?$vector@HV?$allocator@H@std@@@std@@@Z
388?GetValuesForProp@CFrameworkQueryEx@@QAAJPBGAAV?$vector@V_variant_t@@V?$allocator@V_variant_t@@@std@@@std@@@Z
389?GetVariant@CInstance@@QBA_NPBGAAUtagVARIANT@@@Z
390?GetWBEMINT16@CInstance@@QBA_NPBGAAF@Z
391?GetWBEMINT64@CInstance@@QBA_NPBGAAVCHString@@@Z
392?GetWBEMINT64@CInstance@@QBA_NPBGAA_J@Z
393?GetWBEMINT64@CInstance@@QBA_NPBGAA_K@Z
394?GetWCHAR@CInstance@@QBA_NPBGPAPAG@Z
395?GetWORD@CInstance@@QBA_NPBGAAG@Z
396?Getbool@CInstance@@QBA_NPBGAA_N@Z
397?GethKey@CRegistry@@QAAPAUHKEY__@@XZ
398?Gettime_t@WBEMTime@@QBAHPAJ@Z
399?Gettime_t@WBEMTimeSpan@@QBAHPAJ@Z
400?IncrementMapCount@CWbemProviderGlue@@KAJPAJ@Z
401?IncrementMapCount@CWbemProviderGlue@@KAJPBVCWbemGlueFactory@@@Z
402?IncrementObjectCount@CWbemProviderGlue@@SAXXZ
403?Init2@CFrameworkQuery@@QAAXPAUIWbemClassObject@@@Z
404?Init@CFrameworkQuery@@QAAJPAUParsedObjectPath@@PAUIWbemContext@@PBGAAVCHString@@@Z
405?Init@CFrameworkQuery@@QAAJQAG0JAAVCHString@@@Z
406?Init@CHString@@IAAXXZ
407?Init@CWbemProviderGlue@@CAXXZ
408?InitComputerName@Provider@@CAXXZ
409?InitEx@CFrameworkQueryEx@@UAAJQAG0JAAVCHString@@@Z
410?Initialize@CWbemProviderGlue@@UAAJPAGJ00PAUIWbemServices@@PAUIWbemContext@@PAUIWbemProviderInitSink@@@Z
411?InsertAt@CHPtrArray@@QAAXHPAV1@@Z
412?InsertAt@CHPtrArray@@QAAXHPAXH@Z
413?InsertAt@CHStringArray@@QAAXHPAV1@@Z
414?InsertAt@CHStringArray@@QAAXHPBGH@Z
415?InternalGetNamespaceConnection@CWbemProviderGlue@@AAAPAUIWbemServices@@PBG@Z
416?Is3TokenOR@CFrameworkQueryEx@@QAAHPBG0AAUtagVARIANT@@1@Z
417?IsClass@ParsedObjectPath@@QAAHXZ
418?IsDerivedFrom@CWbemProviderGlue@@SA_NPBG0PAVMethodContext@@0@Z
419?IsEmpty@CHString@@QBAHXZ
420?IsExtended@CFrameworkQueryEx@@UAA_NXZ
421?IsInList@CFrameworkQuery@@IAAKABVCHStringArray@@PBG@Z
422?IsInstance@ParsedObjectPath@@QAAHXZ
423?IsLocal@ParsedObjectPath@@QAAHPBG@Z
424?IsLoggingOn@ProviderLog@@QAA?AW4LogLevel@1@PAVCHString@@@Z
425?IsNTokenAnd@CFrameworkQueryEx@@QAAHAAVCHStringArray@@AAVCHPtrArray@@@Z
426?IsNull@CInstance@@QBA_NPBG@Z
427?IsObject@ParsedObjectPath@@QAAHXZ
428?IsOk@WBEMTime@@QBA_NXZ
429?IsOk@WBEMTimeSpan@@QBA_NXZ
430?IsPropertyRequired@CFrameworkQuery@@QAA_NPBG@Z
431?IsReference@CFrameworkQuery@@IAAHPBG@Z
432?IsRelative@ParsedObjectPath@@QAAHPBG0@Z
433?KeysOnly@CFrameworkQuery@@QAA_NXZ
434?Left@CHString@@QBA?AV1@H@Z
435?LoadStringW@CHString@@IAAHIPAGI@Z
436?LoadStringW@CHString@@QAAHI@Z
437?LocalLogMessage@ProviderLog@@QAAXPBG0HW4LogLevel@1@@Z
438?LocalLogMessage@ProviderLog@@QAAXPBGHW4LogLevel@1@0ZZ
439?LocateKeyByNameOrValueName@CRegistrySearch@@QAAHPAUHKEY__@@PBG1PAPBGKAAVCHString@@3@Z
440?Lock@CThreadBase@@AAAXXZ
441?LockBuffer@CHString@@QAAPAGXZ
442?LockFactoryMap@CWbemProviderGlue@@CAXXZ
443?LockProviderMap@CWbemProviderGlue@@CAXXZ
444?LockServer@CWbemGlueFactory@@UAAJH@Z
445?LogError@CInstance@@IBAXPBG00J@Z
446?MakeLocalPath@Provider@@IAA?AVCHString@@ABV2@@Z
447?MakeLower@CHString@@QAAXXZ
448?MakeReverse@CHString@@QAAXXZ
449?MakeUpper@CHString@@QAAXXZ
450?Mid@CHString@@QBA?AV1@H@Z
451?Mid@CHString@@QBA?AV1@HH@Z
452?MsgWndProc@CWinMsgEvent@@CAJPAUHWND__@@IIJ@Z
453?NextSubKey@CRegistry@@QAAKXZ
454?NextToken@CObjectPathParser@@AAAHXZ
455?NormalizePath@@YAKPBG00KAAVCHString@@@Z
456?NullOutUnsetProperties@CWbemProviderGlue@@AAAJPAUIWbemClassObject@@PAPAU2@ABUtagVARIANT@@@Z
457?OnFinalRelease@CThreadBase@@MAAXXZ
458?Open@CRegistry@@QAAJPAUHKEY__@@PBGK@Z
459?OpenAndEnumerateSubKeys@CRegistry@@QAAJPAUHKEY__@@PBGK@Z
460?OpenCurrentUser@CRegistry@@QAAKPBGK@Z
461?OpenLocalMachineKeyAndReadValue@CRegistry@@QAAJPBG0AAVCHString@@@Z
462?OpenNamespace@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemServices@@PAPAUIWbemCallResult@@@Z
463?OpenSubKey@CRegistry@@AAAKXZ
464?Parse@CObjectPathParser@@QAAHPBGPAPAUParsedObjectPath@@@Z
465?PreProcessPutInstanceParms@CWbemProviderGlue@@AAAJPAUIWbemClassObject@@PAPAU2@PAUIWbemContext@@@Z
466?PrepareToReOpen@CRegistry@@AAAXXZ
467?PutClass@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
468?PutClassAsync@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
469?PutInstance@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
470?PutInstance@Provider@@AAAJPAUIWbemClassObject@@JPAVMethodContext@@@Z
471?PutInstance@Provider@@MAAJABVCInstance@@J@Z
472?PutInstanceAsync@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
473?QueryInterface@CWbemGlueFactory@@UAAJABU_GUID@@PAPAX@Z
474?QueryInterface@CWbemProviderGlue@@UAAJABU_GUID@@PAPAX@Z
475?QueryObjectSink@CWbemProviderGlue@@UAAJJPAPAUIWbemObjectSink@@@Z
476?QueryPostProcess@MethodContext@@UAAXXZ
477?RegisterForMessage@CWinMsgEvent@@IAAXIH@Z
478?Release@CHString@@QAAXXZ
479?Release@CHString@@SAXPAUCHStringData@@@Z
480?Release@CInstance@@QAAJXZ
481?Release@CThreadBase@@QAAJXZ
482?Release@CWbemGlueFactory@@UAAKXZ
483?Release@CWbemProviderGlue@@UAAKXZ
484?Release@MethodContext@@QAAJXZ
485?ReleaseBuffer@CHString@@QAAXH@Z
486?RemoveAll@CHPtrArray@@QAAXXZ
487?RemoveAll@CHStringArray@@QAAXXZ
488?RemoveAt@CHPtrArray@@QAAXHH@Z
489?RemoveAt@CHStringArray@@QAAXHH@Z
490?RemoveFromFactoryMap@CWbemProviderGlue@@KAXPBVCWbemGlueFactory@@@Z
491?Reset@CFrameworkQuery@@AAAXXZ
492?ReverseFind@CHString@@QBAHG@Z
493?RewindSubKeys@CRegistry@@QAAXXZ
494?Right@CHString@@QBA?AV1@H@Z
495?SafeStrlen@CHString@@KAHPBG@Z
496?SearchAndBuildList@CRegistrySearch@@QAAHVCHString@@AAVCHPtrArray@@00HPAUHKEY__@@@Z
497?SearchMapForProvider@CWbemProviderGlue@@CAPAVProvider@@PBG0@Z
498?SetAt@CHPtrArray@@QAAXHPAX@Z
499?SetAt@CHString@@QAAXHG@Z
500?SetAt@CHStringArray@@QAAXHPBG@Z
501?SetAtGrow@CHPtrArray@@QAAXHPAX@Z
502?SetAtGrow@CHStringArray@@QAAXHPBG@Z
503?SetByte@CInstance@@QAA_NPBGE@Z
504?SetCHString@CInstance@@QAA_NPBG0@Z
505?SetCHString@CInstance@@QAA_NPBGABVCHString@@@Z
506?SetCHString@CInstance@@QAA_NPBGPBD@Z
507?SetCHStringResourceHandle@@YAXPAUHINSTANCE__@@@Z
508?SetCharSplat@CInstance@@QAA_NPBG0@Z
509?SetCharSplat@CInstance@@QAA_NPBGK@Z
510?SetCharSplat@CInstance@@QAA_NPBGPBD@Z
511?SetClassName@ParsedObjectPath@@QAAHPBG@Z
512?SetCreationClassName@Provider@@IAA_NPAVCInstance@@@Z
513?SetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAK@Z
514?SetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHString@@@Z
515?SetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHStringArray@@@Z
516?SetCurrentKeyValue@CRegistry@@QAAKPBGAAK@Z
517?SetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
518?SetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHStringArray@@@Z
519?SetCurrentKeyValueExpand@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHString@@@Z
520?SetDMTF@WBEMTime@@QAAHQAG@Z
521?SetDOUBLE@CInstance@@QAA_NPBGN@Z
522?SetDWORD@CInstance@@QAA_NPBGK@Z
523?SetDateTime@CInstance@@QAA_NPBGABVWBEMTime@@@Z
524?SetDefaultValues@CRegistry@@AAAXXZ
525?SetEmbeddedObject@CInstance@@QAA_NPBGAAV1@@Z
526?SetKeyFromParsedObjectPath@Provider@@AAAHPAVCInstance@@PAUParsedObjectPath@@@Z
527?SetNull@CInstance@@QAA_NPBG@Z
528?SetPlatformID@CRegistry@@CAHXZ
529?SetSize@CHPtrArray@@QAAXHH@Z
530?SetSize@CHStringArray@@QAAXHH@Z
531?SetStatusObject@CWbemProviderGlue@@SA_NPAVMethodContext@@PBG1JPBUtagSAFEARRAY@@2@Z
532?SetStatusObject@MethodContext@@QAA_NPAUIWbemClassObject@@@Z
533?SetStringArray@CInstance@@QAA_NPBGABUtagSAFEARRAY@@@Z
534?SetTimeSpan@CInstance@@QAA_NPBGABVWBEMTimeSpan@@@Z
535?SetVariant@CInstance@@QAA_NPBGABUtagVARIANT@@@Z
536?SetWBEMINT16@CInstance@@QAA_NPBGABF@Z
537?SetWBEMINT64@CInstance@@QAA_NPBGABVCHString@@@Z
538?SetWBEMINT64@CInstance@@QAA_NPBG_J@Z
539?SetWBEMINT64@CInstance@@QAA_NPBG_K@Z
540?SetWCHARSplat@CInstance@@QAA_NPBG0@Z
541?SetWORD@CInstance@@QAA_NPBGG@Z
542?Setbool@CInstance@@QAA_NPBG_N@Z
543?Signal@CAutoEvent@@QAAHXZ
544?SpanExcluding@CHString@@QBA?AV1@PBG@Z
545?SpanIncluding@CHString@@QBA?AV1@PBG@Z
546?TrimLeft@CHString@@QAAXXZ
547?TrimRight@CHString@@QAAXXZ
548?UnInit@CWbemProviderGlue@@CAXXZ
549?UnRegisterAllMessages@CWinMsgEvent@@IAAXXZ
550?UnRegisterMessage@CWinMsgEvent@@IAA_NIH@Z
551?Unlock@CThreadBase@@AAAXXZ
552?UnlockBuffer@CHString@@QAAXXZ
553?UnlockFactoryMap@CWbemProviderGlue@@CAXXZ
554?UnlockProviderMap@CWbemProviderGlue@@CAXXZ
555?Unparse@CObjectPathParser@@SAHPAUParsedObjectPath@@PAPAG@Z
556?ValidateDeletionFlags@Provider@@MAAJJ@Z
557?ValidateEnumerationFlags@Provider@@MAAJJ@Z
558?ValidateFlags@Provider@@IAAJJW4FlagDefs@1@@Z
559?ValidateGetObjFlags@Provider@@MAAJJ@Z
560?ValidateIMOSPointer@Provider@@AAAHXZ
561?ValidateMethodFlags@Provider@@MAAJJ@Z
562?ValidatePutInstanceFlags@Provider@@MAAJJ@Z
563?ValidateQueryFlags@Provider@@MAAJJ@Z
564?Wait@CAutoEvent@@QAAKK@Z
565?WindowsDispatch@CWinMsgEvent@@CAXXZ
566?Zero@CObjectPathParser@@AAAXXZ
567?begin_parse@CObjectPathParser@@AAAHXZ
568?captainsLog@@3VProviderLog@@A DATA
569?dwThreadProc@CWinMsgEvent@@CAKPAX@Z
570?g_cs@@3VCCritSec@@A DATA
571?ident_becomes_class@CObjectPathParser@@AAAHXZ
572?ident_becomes_ns@CObjectPathParser@@AAAHXZ
573?initFailed@Provider@@SAHXZ
574?initFailed_@Provider@@0HA DATA
575?key_const@CObjectPathParser@@AAAHXZ
576?keyref@CObjectPathParser@@AAAHXZ
577?keyref_list@CObjectPathParser@@AAAHXZ
578?keyref_term@CObjectPathParser@@AAAHXZ
579?m_FlushPtrs@CWbemProviderGlue@@0V?$set@PAXU?$less@PAX@std@@V?$allocator@PAX@2@@std@@A DATA
580?m_csFlushPtrs@CWbemProviderGlue@@0VCCritSec@@A DATA
581?m_csStatusObject@CWbemProviderGlue@@0VCCritSec@@A DATA
582?m_pStatusObject@CWbemProviderGlue@@0PAUIWbemClassObject@@A DATA
583?mg_aeCreateWindow@CWinMsgEvent@@0VCAutoEvent@@A DATA
584?mg_csMapLock@CWinMsgEvent@@0VCCritSec@@A DATA
585?mg_csWindowLock@CWinMsgEvent@@0VCCritSec@@A DATA
586?mg_hDevNotify@CWinMsgEvent@@0PAXA DATA
587?mg_hThreadPumpHandle@CWinMsgEvent@@0PAXA DATA
588?mg_hWnd@CWinMsgEvent@@0PAUHWND__@@A DATA
589?mg_oSinkMap@CWinMsgEvent@@0V?$multimap@IPAVCWinMsgEvent@@U?$less@I@std@@V?$allocator@PAVCWinMsgEvent@@@3@@std@@A DATA
590?myRegCreateKeyEx@CRegistry@@AAAJPAUHKEY__@@PBGKPAGKKQAU_SECURITY_ATTRIBUTES@@PAPAU2@PAK@Z
591?myRegDeleteKey@CRegistry@@AAAJPAUHKEY__@@PBG@Z
592?myRegDeleteValue@CRegistry@@AAAJPAUHKEY__@@PBG@Z
593?myRegEnumKey@CRegistry@@AAAJPAUHKEY__@@KPAGK@Z
594?myRegEnumValue@CRegistry@@AAAJPAUHKEY__@@KPAGPAK22PAE2@Z
595?myRegOpenKeyEx@CRegistry@@AAAJPAUHKEY__@@PBGKKPAPAU2@@Z
596?myRegQueryInfoKey@CRegistry@@AAAJPAUHKEY__@@PAGPAK22222222PAU_FILETIME@@@Z
597?myRegQueryValueEx@CRegistry@@AAAJPAUHKEY__@@PBGPAK2PAE2@Z
598?myRegSetValueEx@CRegistry@@AAAJPAUHKEY__@@PBGKKPBEK@Z
599?ns_list@CObjectPathParser@@AAAHXZ
600?ns_list_rest@CObjectPathParser@@AAAHXZ
601?ns_or_class@CObjectPathParser@@AAAHXZ
602?ns_or_server@CObjectPathParser@@AAAHXZ
603?objref@CObjectPathParser@@AAAHXZ
604?objref_rest@CObjectPathParser@@AAAHXZ
605?optional_objref@CObjectPathParser@@AAAHXZ
606?propname@CObjectPathParser@@AAAHXZ
607?s_bInitted@CWbemProviderGlue@@0HA DATA
608?s_csFactoryMap@CWbemProviderGlue@@0VCCritSec@@A DATA
609?s_csProviderMap@CWbemProviderGlue@@0VCCritSec@@A DATA
610?s_dwMajorVersion@CWbemProviderGlue@@0KA DATA
611?s_dwPlatform@CRegistry@@0KA DATA
612?s_dwPlatform@CWbemProviderGlue@@0KA DATA
613?s_fPlatformSet@CRegistry@@0HA DATA
614?s_factorymap@CWbemProviderGlue@@0V?$map@PBXPAJU?$less@PBX@std@@V?$allocator@PAJ@2@@std@@A DATA
615?s_lObjects@CWbemProviderGlue@@0JA DATA
616?s_providersmap@CWbemProviderGlue@@0V?$map@VCHString@@PAXU?$less@VCHString@@@std@@V?$allocator@PAX@3@@std@@A DATA
617?s_strComputerName@Provider@@0VCHString@@A DATA
618?s_wstrCSDVersion@CWbemProviderGlue@@0PAGA DATA
619DoCmd
lib/libc/mingw/libarm32/framedynos.def created+616
......@@ -0,0 +1,616 @@
1;
2; Definition file of framedynos.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "framedynos.dll"
7EXPORTS
8??0CAutoEvent@@QAA@XZ
9??0CFrameworkQuery@@QAA@ABV0@@Z
10??0CFrameworkQuery@@QAA@XZ
11??0CFrameworkQueryEx@@QAA@ABV0@@Z
12??0CFrameworkQueryEx@@QAA@XZ
13??0CHPtrArray@@QAA@XZ
14??0CHString@@QAA@ABV0@@Z
15??0CHString@@QAA@GH@Z
16??0CHString@@QAA@PBD@Z
17??0CHString@@QAA@PBE@Z
18??0CHString@@QAA@PBG@Z
19??0CHString@@QAA@PBGH@Z
20??0CHString@@QAA@XZ
21??0CHStringArray@@QAA@XZ
22??0CInstance@@QAA@ABV0@@Z
23??0CInstance@@QAA@PAUIWbemClassObject@@PAVMethodContext@@@Z
24??0CObjectPathParser@@QAA@W4ObjectParserFlags@@@Z
25??0CRegistry@@QAA@ABV0@@Z
26??0CRegistry@@QAA@XZ
27??0CRegistrySearch@@QAA@ABV0@@Z
28??0CRegistrySearch@@QAA@XZ
29??0CThreadBase@@QAA@ABV0@@Z
30??0CThreadBase@@QAA@W4THREAD_SAFETY_MECHANISM@0@@Z
31??0CWbemGlueFactory@@QAA@ABV0@@Z
32??0CWbemGlueFactory@@QAA@PAJ@Z
33??0CWbemGlueFactory@@QAA@XZ
34??0CWbemProviderGlue@@QAA@ABV0@@Z
35??0CWbemProviderGlue@@QAA@PAJ@Z
36??0CWbemProviderGlue@@QAA@XZ
37??0CWinMsgEvent@@QAA@ABV0@@Z
38??0CWinMsgEvent@@QAA@XZ
39??0CreateMutexAsProcess@@QAA@PBG@Z
40??0KeyRef@@QAA@PBGPBUtagVARIANT@@@Z
41??0KeyRef@@QAA@XZ
42??0MethodContext@@QAA@ABV0@@Z
43??0MethodContext@@QAA@PAUIWbemContext@@PAVCWbemProviderGlue@@@Z
44??0ParsedObjectPath@@QAA@XZ
45??0Provider@@QAA@ABV0@@Z
46??0Provider@@QAA@PBG0@Z
47??0ProviderLog@@QAA@ABV0@@Z
48??0ProviderLog@@QAA@XZ
49??0WBEMTime@@QAA@ABJ@Z
50??0WBEMTime@@QAA@ABU_FILETIME@@@Z
51??0WBEMTime@@QAA@ABU_SYSTEMTIME@@@Z
52??0WBEMTime@@QAA@ABUtm@@@Z
53??0WBEMTime@@QAA@QAG@Z
54??0WBEMTime@@QAA@XZ
55??0WBEMTimeSpan@@QAA@ABJ@Z
56??0WBEMTimeSpan@@QAA@ABU_FILETIME@@@Z
57??0WBEMTimeSpan@@QAA@HHHHHHH@Z
58??0WBEMTimeSpan@@QAA@QAG@Z
59??0WBEMTimeSpan@@QAA@XZ
60??1CAutoEvent@@QAA@XZ
61??1CFrameworkQuery@@QAA@XZ
62??1CFrameworkQueryEx@@QAA@XZ
63??1CHPtrArray@@QAA@XZ
64??1CHString@@QAA@XZ
65??1CHStringArray@@QAA@XZ
66??1CInstance@@UAA@XZ
67??1CObjectPathParser@@QAA@XZ
68??1CRegistry@@QAA@XZ
69??1CRegistrySearch@@QAA@XZ
70??1CThreadBase@@UAA@XZ
71??1CWbemGlueFactory@@QAA@XZ
72??1CWbemProviderGlue@@QAA@XZ
73??1CWinMsgEvent@@QAA@XZ
74??1CreateMutexAsProcess@@QAA@XZ
75??1KeyRef@@QAA@XZ
76??1MethodContext@@UAA@XZ
77??1ParsedObjectPath@@QAA@XZ
78??1Provider@@UAA@XZ
79??1ProviderLog@@UAA@XZ
80??4CAutoEvent@@QAAAAV0@ABV0@@Z
81??4CFrameworkQuery@@QAAAAV0@ABV0@@Z
82??4CFrameworkQueryEx@@QAAAAV0@ABV0@@Z
83??4CHPtrArray@@QAAAAV0@ABV0@@Z
84??4CHString@@QAAABV0@ABV0@@Z
85??4CHString@@QAAABV0@D@Z
86??4CHString@@QAAABV0@G@Z
87??4CHString@@QAAABV0@PAV0@@Z
88??4CHString@@QAAABV0@PBD@Z
89??4CHString@@QAAABV0@PBE@Z
90??4CHString@@QAAABV0@PBG@Z
91??4CHStringArray@@QAAAAV0@ABV0@@Z
92??4CInstance@@QAAAAV0@ABV0@@Z
93??4CObjectPathParser@@QAAAAV0@ABV0@@Z
94??4CRegistry@@QAAAAV0@ABV0@@Z
95??4CRegistrySearch@@QAAAAV0@ABV0@@Z
96??4CThreadBase@@QAAAAV0@ABV0@@Z
97??4CWbemGlueFactory@@QAAAAV0@ABV0@@Z
98??4CWbemProviderGlue@@QAAAAV0@ABV0@@Z
99??4CWinMsgEvent@@QAAAAV0@ABV0@@Z
100??4CreateMutexAsProcess@@QAAAAV0@ABV0@@Z
101??4KeyRef@@QAAAAU0@ABU0@@Z
102??4MethodContext@@QAAAAV0@ABV0@@Z
103??4ParsedObjectPath@@QAAAAU0@ABU0@@Z
104??4Provider@@QAAAAV0@ABV0@@Z
105??4ProviderLog@@QAAAAV0@ABV0@@Z
106??4WBEMTime@@QAAAAV0@ABV0@@Z
107??4WBEMTime@@QAAABV0@ABJ@Z
108??4WBEMTime@@QAAABV0@ABU_FILETIME@@@Z
109??4WBEMTime@@QAAABV0@ABU_SYSTEMTIME@@@Z
110??4WBEMTime@@QAAABV0@ABUtm@@@Z
111??4WBEMTime@@QAAABV0@QAG@Z
112??4WBEMTimeSpan@@QAAAAV0@ABV0@@Z
113??4WBEMTimeSpan@@QAAABV0@ABJ@Z
114??4WBEMTimeSpan@@QAAABV0@ABU_FILETIME@@@Z
115??4WBEMTimeSpan@@QAAABV0@QAG@Z
116??8WBEMTime@@QBAHABV0@@Z
117??8WBEMTimeSpan@@QBAHABV0@@Z
118??9WBEMTime@@QBAHABV0@@Z
119??9WBEMTimeSpan@@QBAHABV0@@Z
120??ACHPtrArray@@QAAAAPAXH@Z
121??ACHPtrArray@@QBAPAXH@Z
122??ACHString@@QBAGH@Z
123??ACHStringArray@@QAAAAVCHString@@H@Z
124??ACHStringArray@@QBA?AVCHString@@H@Z
125??BCHString@@QBAPBGXZ
126??GWBEMTime@@QAA?AVWBEMTimeSpan@@ABV0@@Z
127??GWBEMTime@@QBA?AV0@ABVWBEMTimeSpan@@@Z
128??GWBEMTimeSpan@@QBA?AV0@ABV0@@Z
129??H@YA?AVCHString@@ABV0@0@Z
130??H@YA?AVCHString@@ABV0@G@Z
131??H@YA?AVCHString@@ABV0@PBG@Z
132??H@YA?AVCHString@@GABV0@@Z
133??H@YA?AVCHString@@PBGABV0@@Z
134??HWBEMTime@@QBA?AV0@ABVWBEMTimeSpan@@@Z
135??HWBEMTimeSpan@@QBA?AV0@ABV0@@Z
136??MWBEMTime@@QBAHABV0@@Z
137??MWBEMTimeSpan@@QBAHABV0@@Z
138??NWBEMTime@@QBAHABV0@@Z
139??NWBEMTimeSpan@@QBAHABV0@@Z
140??OWBEMTime@@QBAHABV0@@Z
141??OWBEMTimeSpan@@QBAHABV0@@Z
142??PWBEMTime@@QBAHABV0@@Z
143??PWBEMTimeSpan@@QBAHABV0@@Z
144??YCHString@@QAAABV0@ABV0@@Z
145??YCHString@@QAAABV0@D@Z
146??YCHString@@QAAABV0@G@Z
147??YCHString@@QAAABV0@PBG@Z
148??YWBEMTime@@QAAABV0@ABVWBEMTimeSpan@@@Z
149??YWBEMTimeSpan@@QAAABV0@ABV0@@Z
150??ZWBEMTime@@QAAABV0@ABVWBEMTimeSpan@@@Z
151??ZWBEMTimeSpan@@QAAABV0@ABV0@@Z
152??_7CFrameworkQueryEx@@6B@ DATA
153??_7CInstance@@6B@ DATA
154??_7CThreadBase@@6B@ DATA
155??_7CWbemGlueFactory@@6B@ DATA
156??_7CWbemProviderGlue@@6BIWbemProviderInit@@@ DATA
157??_7CWbemProviderGlue@@6BIWbemServices@@@ DATA
158??_7CWinMsgEvent@@6B@ DATA
159??_7MethodContext@@6B@ DATA
160??_7Provider@@6B@ DATA
161??_7ProviderLog@@6B@ DATA
162??_FCObjectPathParser@@QAAXXZ
163??_FCThreadBase@@QAAXXZ
164?Add@CHPtrArray@@QAAHPAX@Z
165?Add@CHStringArray@@QAAHPBG@Z
166?AddFlushPtr@CWbemProviderGlue@@AAAXPAX@Z
167?AddKeyRef@ParsedObjectPath@@QAAHPAUKeyRef@@@Z
168?AddKeyRef@ParsedObjectPath@@QAAHPBGPBUtagVARIANT@@@Z
169?AddKeyRefEx@ParsedObjectPath@@QAAHPBGPBUtagVARIANT@@@Z
170?AddNamespace@ParsedObjectPath@@QAAHPBG@Z
171?AddProviderToMap@CWbemProviderGlue@@CAPAVProvider@@PBG0PAV2@@Z
172?AddRef@CInstance@@QAAJXZ
173?AddRef@CThreadBase@@QAAJXZ
174?AddRef@CWbemGlueFactory@@UAAKXZ
175?AddRef@CWbemProviderGlue@@UAAKXZ
176?AddRef@MethodContext@@QAAJXZ
177?AddToFactoryMap@CWbemProviderGlue@@KAXPBVCWbemGlueFactory@@PAJ@Z
178?AllPropertiesAreRequired@CFrameworkQuery@@QAA_NXZ
179?AllocBeforeWrite@CHString@@IAAXH@Z
180?AllocBuffer@CHString@@IAAXH@Z
181?AllocCopy@CHString@@IBAXAAV1@HHH@Z
182?AllocSysString@CHString@@QBAPAGXZ
183?Append@CHPtrArray@@QAAHABV1@@Z
184?Append@CHStringArray@@QAAHABV1@@Z
185?AssignCopy@CHString@@IAAXHPBG@Z
186?BeginRead@CThreadBase@@QAAHK@Z
187?BeginWrite@CThreadBase@@QAAHK@Z
188?CancelAsyncCall@CWbemProviderGlue@@UAAJPAUIWbemObjectSink@@@Z
189?CancelAsyncRequest@CWbemProviderGlue@@UAAJJ@Z
190?CheckAndAddToList@CRegistrySearch@@AAAXPAVCRegistry@@VCHString@@1AAVCHPtrArray@@11H@Z
191?CheckFileSize@ProviderLog@@AAAXAAT_LARGE_INTEGER@@ABVCHString@@@Z
192?CheckImpersonationLevel@CWbemProviderGlue@@CAJXZ
193?Clear@WBEMTime@@QAAXXZ
194?Clear@WBEMTimeSpan@@QAAXXZ
195?ClearKeys@ParsedObjectPath@@QAAXXZ
196?Close@CRegistry@@QAAXXZ
197?CloseSubKey@CRegistry@@AAAXXZ
198?Collate@CHString@@QBAHPBG@Z
199?Commit@CInstance@@QAAJXZ
200?Commit@Provider@@IAAJPAVCInstance@@_N@Z
201?Compare@CHString@@QBAHPBG@Z
202?CompareNoCase@CHString@@QBAHPBG@Z
203?ConcatCopy@CHString@@IAAXHPBGH0@Z
204?ConcatInPlace@CHString@@IAAXHPBG@Z
205?Copy@CHPtrArray@@QAAXABV1@@Z
206?Copy@CHStringArray@@QAAXABV1@@Z
207?CopyBeforeWrite@CHString@@IAAXXZ
208?Create@CWbemGlueFactory@@SAPAV1@PAJ@Z
209?Create@CWbemGlueFactory@@SAPAV1@XZ
210?CreateClassEnum@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
211?CreateClassEnumAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
212?CreateInstance@CWbemGlueFactory@@UAAJPAUIUnknown@@ABU_GUID@@PAPAX@Z
213?CreateInstanceEnum@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
214?CreateInstanceEnum@Provider@@AAAJPAVMethodContext@@J@Z
215?CreateInstanceEnumAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
216?CreateMsgProvider@CWinMsgEvent@@CAXXZ
217?CreateMsgWindow@CWinMsgEvent@@CAPAUHWND__@@XZ
218?CreateNewInstance@Provider@@IAAPAVCInstance@@PAVMethodContext@@@Z
219?CreateOpen@CRegistry@@QAAJPAUHKEY__@@PBGPAGKKPAU_SECURITY_ATTRIBUTES@@PAK@Z
220?CtrlHandlerRoutine@CWinMsgEvent@@CAHK@Z
221?DecrementMapCount@CWbemProviderGlue@@KAJPAJ@Z
222?DecrementMapCount@CWbemProviderGlue@@KAJPBVCWbemGlueFactory@@@Z
223?DecrementObjectCount@CWbemProviderGlue@@SAJXZ
224?DeleteClass@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
225?DeleteClassAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
226?DeleteCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBG@Z
227?DeleteCurrentKeyValue@CRegistry@@QAAKPBG@Z
228?DeleteInstance@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
229?DeleteInstance@Provider@@AAAJPAUParsedObjectPath@@JPAVMethodContext@@@Z
230?DeleteInstance@Provider@@MAAJABVCInstance@@J@Z
231?DeleteInstanceAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
232?DeleteKey@CRegistry@@QAAJPAVCHString@@@Z
233?DeleteValue@CRegistry@@QAAJPBG@Z
234?Destroy@CWbemGlueFactory@@QAAXXZ
235?DestroyMsgWindow@CWinMsgEvent@@CAXXZ
236?ElementAt@CHPtrArray@@QAAAAPAXH@Z
237?ElementAt@CHStringArray@@QAAAAVCHString@@H@Z
238?Empty@CHString@@QAAXXZ
239?Empty@CObjectPathParser@@AAAXXZ
240?EndRead@CThreadBase@@QAAXXZ
241?EndWrite@CThreadBase@@QAAXXZ
242?EnumerateAndGetValues@CRegistry@@QAAJAAKAAPAGAAPAE@Z
243?EnumerateInstances@Provider@@MAAJPAVMethodContext@@J@Z
244?ExecMethod@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemClassObject@@PAPAU3@PAPAUIWbemCallResult@@@Z
245?ExecMethod@Provider@@AAAJPAUParsedObjectPath@@PAGJPAVCInstance@@2PAVMethodContext@@@Z
246?ExecMethod@Provider@@MAAJABVCInstance@@QAGPAV2@2J@Z
247?ExecMethodAsync@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemClassObject@@PAUIWbemObjectSink@@@Z
248?ExecNotificationQuery@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
249?ExecNotificationQueryAsync@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
250?ExecQuery@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAPAUIEnumWbemClassObject@@@Z
251?ExecQuery@Provider@@MAAJPAVMethodContext@@AAVCFrameworkQuery@@J@Z
252?ExecQueryAsync@CWbemProviderGlue@@UAAJQAG0JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
253?ExecuteQuery@Provider@@AAAJPAVMethodContext@@AAVCFrameworkQuery@@J@Z
254?FillInstance@CWbemProviderGlue@@SAJPAVCInstance@@PBG@Z
255?FillInstance@CWbemProviderGlue@@SAJPAVMethodContext@@PAVCInstance@@@Z
256?Find@CHString@@QBAHG@Z
257?Find@CHString@@QBAHPBG@Z
258?FindOneOf@CHString@@QBAHPBG@Z
259?Flush@Provider@@MAAXXZ
260?FlushAll@CWbemProviderGlue@@AAAXXZ
261?Format@CHString@@QAAXIZZ
262?Format@CHString@@QAAXPBGZZ
263?FormatMessageW@CHString@@QAAXIZZ
264?FormatMessageW@CHString@@QAAXPBGZZ
265?FormatV@CHString@@QAAXPBGPAD@Z
266?FrameworkLogin@CWbemProviderGlue@@SAXPBGPAVProvider@@0@Z
267?FrameworkLoginDLL@CWbemProviderGlue@@SAHPBG@Z
268?FrameworkLoginDLL@CWbemProviderGlue@@SAHPBGPAJ@Z
269?FrameworkLogoff@CWbemProviderGlue@@SAXPBG0@Z
270?FrameworkLogoffDLL@CWbemProviderGlue@@SAHPBG@Z
271?FrameworkLogoffDLL@CWbemProviderGlue@@SAHPBGPAJ@Z
272?Free@CObjectPathParser@@QAAXPAUParsedObjectPath@@@Z
273?FreeExtra@CHPtrArray@@QAAXXZ
274?FreeExtra@CHString@@QAAXXZ
275?FreeExtra@CHStringArray@@QAAXXZ
276?FreeSearchList@CRegistrySearch@@QAAHHAAVCHPtrArray@@@Z
277?GetAllDerivedInstances@CWbemProviderGlue@@SAJPBGPAV?$TRefPointerCollection@VCInstance@@@@PAVMethodContext@@0@Z
278?GetAllDerivedInstancesAsynch@CWbemProviderGlue@@SAJPBGPAVProvider@@P6AJ1PAVCInstance@@PAVMethodContext@@PAX@Z034@Z
279?GetAllInstances@CWbemProviderGlue@@SAJPBGPAV?$TRefPointerCollection@VCInstance@@@@0PAVMethodContext@@@Z
280?GetAllInstancesAsynch@CWbemProviderGlue@@SAJPBGPAVProvider@@P6AJ1PAVCInstance@@PAVMethodContext@@PAX@Z034@Z
281?GetAllocLength@CHString@@QBAHXZ
282?GetAt@CHPtrArray@@QBAPAXH@Z
283?GetAt@CHString@@QBAGH@Z
284?GetAt@CHStringArray@@QBA?AVCHString@@H@Z
285?GetBSTR@WBEMTime@@QBAPAGXZ
286?GetBSTR@WBEMTimeSpan@@QBAPAGXZ
287?GetBuffer@CHString@@QAAPAGH@Z
288?GetBufferSetLength@CHString@@QAAPAGH@Z
289?GetByte@CInstance@@QBA_NPBGAAE@Z
290?GetCHString@CInstance@@QBA_NPBGAAVCHString@@@Z
291?GetCSDVersion@CWbemProviderGlue@@SAPBGXZ
292?GetClassNameW@CRegistry@@QAAPAGXZ
293?GetClassObjectInterface@CInstance@@QAAPAUIWbemClassObject@@XZ
294?GetClassObjectInterface@Provider@@AAAPAUIWbemClassObject@@PAVMethodContext@@@Z
295?GetComputerNameW@CWbemProviderGlue@@CAXAAVCHString@@@Z
296?GetCurrentBinaryKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGPAEPAK@Z
297?GetCurrentBinaryKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
298?GetCurrentBinaryKeyValue@CRegistry@@QAAKPBGPAEPAK@Z
299?GetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAK@Z
300?GetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHString@@@Z
301?GetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHStringArray@@@Z
302?GetCurrentKeyValue@CRegistry@@QAAKPBGAAK@Z
303?GetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
304?GetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHStringArray@@@Z
305?GetCurrentRawKeyValue@CRegistry@@AAAKPAUHKEY__@@PBGPAXPAK3@Z
306?GetCurrentRawSubKeyValue@CRegistry@@AAAKPBGPAXPAK2@Z
307?GetCurrentSubKeyCount@CRegistry@@QAAKXZ
308?GetCurrentSubKeyName@CRegistry@@QAAKAAVCHString@@@Z
309?GetCurrentSubKeyPath@CRegistry@@QAAKAAVCHString@@@Z
310?GetCurrentSubKeyValue@CRegistry@@QAAKPBGAAK@Z
311?GetCurrentSubKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
312?GetCurrentSubKeyValue@CRegistry@@QAAKPBGPAXPAK@Z
313?GetDMTF@WBEMTime@@QBAPAGH@Z
314?GetDMTFNonNtfs@WBEMTime@@QBAPAGXZ
315?GetDOUBLE@CInstance@@QBA_NPBGAAN@Z
316?GetDWORD@CInstance@@QBA_NPBGAAK@Z
317?GetData@CHPtrArray@@QAAPAPAXXZ
318?GetData@CHPtrArray@@QBAPAPBXXZ
319?GetData@CHString@@IBAPAUCHStringData@@XZ
320?GetData@CHStringArray@@QAAPAVCHString@@XZ
321?GetData@CHStringArray@@QBAPBVCHString@@XZ
322?GetDateTime@CInstance@@QBA_NPBGAAVWBEMTime@@@Z
323?GetEmbeddedObject@CInstance@@QBA_NPBGPAPAV1@PAVMethodContext@@@Z
324?GetEmptyInstance@CWbemProviderGlue@@SAJPAVMethodContext@@PBGPAPAVCInstance@@1@Z
325?GetEmptyInstance@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@0@Z
326?GetFILETIME@WBEMTime@@QBAHPAU_FILETIME@@@Z
327?GetFILETIME@WBEMTimeSpan@@QBAHPAU_FILETIME@@@Z
328?GetIWBEMContext@MethodContext@@UAAPAUIWbemContext@@XZ
329?GetInstanceByPath@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@PAVMethodContext@@@Z
330?GetInstanceFromCIMOM@CWbemProviderGlue@@CAJPBG0PAVMethodContext@@PAPAVCInstance@@@Z
331?GetInstanceKeysByPath@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@PAVMethodContext@@@Z
332?GetInstancePropertiesByPath@CWbemProviderGlue@@SAJPBGPAPAVCInstance@@PAVMethodContext@@AAVCHStringArray@@@Z
333?GetInstancesByQuery@CWbemProviderGlue@@SAJPBGPAV?$TRefPointerCollection@VCInstance@@@@PAVMethodContext@@0@Z
334?GetInstancesByQueryAsynch@CWbemProviderGlue@@SAJPBGPAVProvider@@P6AJ1PAVCInstance@@PAVMethodContext@@PAX@Z034@Z
335?GetKeyString@ParsedObjectPath@@QAAPAGXZ
336?GetLength@CHString@@QBAHXZ
337?GetLocalComputerName@Provider@@IAAABVCHString@@XZ
338?GetLocalInstancePath@Provider@@IAA_NPBVCInstance@@AAVCHString@@@Z
339?GetLocalOffsetForDate@WBEMTime@@SAJABJ@Z
340?GetLocalOffsetForDate@WBEMTime@@SAJPBU_FILETIME@@@Z
341?GetLocalOffsetForDate@WBEMTime@@SAJPBU_SYSTEMTIME@@@Z
342?GetLocalOffsetForDate@WBEMTime@@SAJPBUtm@@@Z
343?GetLongestClassStringSize@CRegistry@@QAAKXZ
344?GetLongestSubKeySize@CRegistry@@QAAKXZ
345?GetLongestValueData@CRegistry@@QAAKXZ
346?GetLongestValueName@CRegistry@@QAAKXZ
347?GetMapCountPtr@CWbemProviderGlue@@KAPAJPBVCWbemGlueFactory@@@Z
348?GetMethodContext@CInstance@@QBAPAVMethodContext@@XZ
349?GetNamespace@CFrameworkQuery@@IAAABVCHString@@XZ
350?GetNamespace@Provider@@IAAABVCHString@@XZ
351?GetNamespaceConnection@CWbemProviderGlue@@SAPAUIWbemServices@@PBG@Z
352?GetNamespaceConnection@CWbemProviderGlue@@SAPAUIWbemServices@@PBGPAVMethodContext@@@Z
353?GetNamespacePart@ParsedObjectPath@@QAAPAGXZ
354?GetOSMajorVersion@CWbemProviderGlue@@SAKXZ
355?GetObject@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemClassObject@@PAPAUIWbemCallResult@@@Z
356?GetObject@Provider@@AAAJPAUParsedObjectPath@@PAVMethodContext@@J@Z
357?GetObject@Provider@@MAAJPAVCInstance@@J@Z
358?GetObject@Provider@@MAAJPAVCInstance@@JAAVCFrameworkQuery@@@Z
359?GetObjectAsync@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAUIWbemObjectSink@@@Z
360?GetParentNamespacePart@ParsedObjectPath@@QAAPAGXZ
361?GetPlatform@CWbemProviderGlue@@SAKXZ
362?GetPropertyBitMask@CFrameworkQueryEx@@QAAXABVCHPtrArray@@PAX@Z
363?GetProviderGlue@MethodContext@@AAAPAVCWbemProviderGlue@@XZ
364?GetProviderName@Provider@@IAAABVCHString@@XZ
365?GetQuery@CFrameworkQuery@@QAAABVCHString@@XZ
366?GetQueryClassName@CFrameworkQuery@@QAAPAGXZ
367?GetRelativePath@CObjectPathParser@@SAPAGPAG@Z
368?GetRequiredProperties@CFrameworkQuery@@QAAXAAVCHStringArray@@@Z
369?GetSYSTEMTIME@WBEMTime@@QBAHPAU_SYSTEMTIME@@@Z
370?GetSize@CHPtrArray@@QBAHXZ
371?GetSize@CHStringArray@@QBAHXZ
372?GetStatus@CInstance@@QBA_NPBGAA_NAAG@Z
373?GetStatusObject@CWbemProviderGlue@@CAPAUIWbemClassObject@@PAVMethodContext@@PBG@Z
374?GetStatusObject@MethodContext@@QAAPAUIWbemClassObject@@XZ
375?GetStringArray@CInstance@@QBA_NPBGAAPAUtagSAFEARRAY@@@Z
376?GetStructtm@WBEMTime@@QBAHPAUtm@@@Z
377?GetTime@WBEMTime@@QBA_KXZ
378?GetTime@WBEMTimeSpan@@QBA_KXZ
379?GetTimeSpan@CInstance@@QBA_NPBGAAVWBEMTimeSpan@@@Z
380?GetUpperBound@CHPtrArray@@QBAHXZ
381?GetUpperBound@CHStringArray@@QBAHXZ
382?GetValueCount@CRegistry@@QAAKXZ
383?GetValuesForProp@CFrameworkQuery@@QAAJPBGAAV?$vector@V_bstr_t@@V?$allocator@V_bstr_t@@@std@@@std@@@Z
384?GetValuesForProp@CFrameworkQuery@@QAAJPBGAAVCHStringArray@@@Z
385?GetValuesForProp@CFrameworkQueryEx@@QAAJPBGAAV?$vector@HV?$allocator@H@std@@@std@@@Z
386?GetValuesForProp@CFrameworkQueryEx@@QAAJPBGAAV?$vector@V_variant_t@@V?$allocator@V_variant_t@@@std@@@std@@@Z
387?GetVariant@CInstance@@QBA_NPBGAAUtagVARIANT@@@Z
388?GetWBEMINT16@CInstance@@QBA_NPBGAAF@Z
389?GetWBEMINT64@CInstance@@QBA_NPBGAAVCHString@@@Z
390?GetWBEMINT64@CInstance@@QBA_NPBGAA_J@Z
391?GetWBEMINT64@CInstance@@QBA_NPBGAA_K@Z
392?GetWCHAR@CInstance@@QBA_NPBGPAPAG@Z
393?GetWORD@CInstance@@QBA_NPBGAAG@Z
394?Getbool@CInstance@@QBA_NPBGAA_N@Z
395?GethKey@CRegistry@@QAAPAUHKEY__@@XZ
396?Gettime_t@WBEMTime@@QBAHPAJ@Z
397?Gettime_t@WBEMTimeSpan@@QBAHPAJ@Z
398?IncrementMapCount@CWbemProviderGlue@@KAJPAJ@Z
399?IncrementMapCount@CWbemProviderGlue@@KAJPBVCWbemGlueFactory@@@Z
400?IncrementObjectCount@CWbemProviderGlue@@SAXXZ
401?Init2@CFrameworkQuery@@QAAXPAUIWbemClassObject@@@Z
402?Init@CFrameworkQuery@@QAAJPAUParsedObjectPath@@PAUIWbemContext@@PBGAAVCHString@@@Z
403?Init@CFrameworkQuery@@QAAJQAG0JAAVCHString@@@Z
404?Init@CHString@@IAAXXZ
405?Init@CWbemProviderGlue@@CAXXZ
406?InitComputerName@Provider@@CAXXZ
407?InitEx@CFrameworkQueryEx@@UAAJQAG0JAAVCHString@@@Z
408?Initialize@CWbemProviderGlue@@UAAJPAGJ00PAUIWbemServices@@PAUIWbemContext@@PAUIWbemProviderInitSink@@@Z
409?InsertAt@CHPtrArray@@QAAXHPAV1@@Z
410?InsertAt@CHPtrArray@@QAAXHPAXH@Z
411?InsertAt@CHStringArray@@QAAXHPAV1@@Z
412?InsertAt@CHStringArray@@QAAXHPBGH@Z
413?InternalGetNamespaceConnection@CWbemProviderGlue@@AAAPAUIWbemServices@@PBG@Z
414?Is3TokenOR@CFrameworkQueryEx@@QAAHPBG0AAUtagVARIANT@@1@Z
415?IsClass@ParsedObjectPath@@QAAHXZ
416?IsDerivedFrom@CWbemProviderGlue@@SA_NPBG0PAVMethodContext@@0@Z
417?IsEmpty@CHString@@QBAHXZ
418?IsExtended@CFrameworkQueryEx@@UAA_NXZ
419?IsInList@CFrameworkQuery@@IAAKABVCHStringArray@@PBG@Z
420?IsInstance@ParsedObjectPath@@QAAHXZ
421?IsLocal@ParsedObjectPath@@QAAHPBG@Z
422?IsLoggingOn@ProviderLog@@QAA?AW4LogLevel@1@PAVCHString@@@Z
423?IsNTokenAnd@CFrameworkQueryEx@@QAAHAAVCHStringArray@@AAVCHPtrArray@@@Z
424?IsNull@CInstance@@QBA_NPBG@Z
425?IsObject@ParsedObjectPath@@QAAHXZ
426?IsOk@WBEMTime@@QBA_NXZ
427?IsOk@WBEMTimeSpan@@QBA_NXZ
428?IsPropertyRequired@CFrameworkQuery@@QAA_NPBG@Z
429?IsReference@CFrameworkQuery@@IAAHPBG@Z
430?IsRelative@ParsedObjectPath@@QAAHPBG0@Z
431?KeysOnly@CFrameworkQuery@@QAA_NXZ
432?Left@CHString@@QBA?AV1@H@Z
433?LoadStringW@CHString@@IAAHIPAGI@Z
434?LoadStringW@CHString@@QAAHI@Z
435?LocalLogMessage@ProviderLog@@QAAXPBG0HW4LogLevel@1@@Z
436?LocalLogMessage@ProviderLog@@QAAXPBGHW4LogLevel@1@0ZZ
437?LocateKeyByNameOrValueName@CRegistrySearch@@QAAHPAUHKEY__@@PBG1PAPBGKAAVCHString@@3@Z
438?Lock@CThreadBase@@AAAXXZ
439?LockBuffer@CHString@@QAAPAGXZ
440?LockFactoryMap@CWbemProviderGlue@@CAXXZ
441?LockProviderMap@CWbemProviderGlue@@CAXXZ
442?LockServer@CWbemGlueFactory@@UAAJH@Z
443?LogError@CInstance@@IBAXPBG00J@Z
444?MakeLocalPath@Provider@@IAA?AVCHString@@ABV2@@Z
445?MakeLower@CHString@@QAAXXZ
446?MakeReverse@CHString@@QAAXXZ
447?MakeUpper@CHString@@QAAXXZ
448?Mid@CHString@@QBA?AV1@H@Z
449?Mid@CHString@@QBA?AV1@HH@Z
450?MsgWndProc@CWinMsgEvent@@CAJPAUHWND__@@IIJ@Z
451?NextSubKey@CRegistry@@QAAKXZ
452?NextToken@CObjectPathParser@@AAAHXZ
453?NormalizePath@@YAKPBG00KAAVCHString@@@Z
454?NullOutUnsetProperties@CWbemProviderGlue@@AAAJPAUIWbemClassObject@@PAPAU2@ABUtagVARIANT@@@Z
455?OnFinalRelease@CThreadBase@@MAAXXZ
456?Open@CRegistry@@QAAJPAUHKEY__@@PBGK@Z
457?OpenAndEnumerateSubKeys@CRegistry@@QAAJPAUHKEY__@@PBGK@Z
458?OpenCurrentUser@CRegistry@@QAAKPBGK@Z
459?OpenLocalMachineKeyAndReadValue@CRegistry@@QAAJPBG0AAVCHString@@@Z
460?OpenNamespace@CWbemProviderGlue@@UAAJQAGJPAUIWbemContext@@PAPAUIWbemServices@@PAPAUIWbemCallResult@@@Z
461?OpenSubKey@CRegistry@@AAAKXZ
462?Parse@CObjectPathParser@@QAAHPBGPAPAUParsedObjectPath@@@Z
463?PreProcessPutInstanceParms@CWbemProviderGlue@@AAAJPAUIWbemClassObject@@PAPAU2@PAUIWbemContext@@@Z
464?PrepareToReOpen@CRegistry@@AAAXXZ
465?PutClass@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
466?PutClassAsync@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
467?PutInstance@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAPAUIWbemCallResult@@@Z
468?PutInstance@Provider@@AAAJPAUIWbemClassObject@@JPAVMethodContext@@@Z
469?PutInstance@Provider@@MAAJABVCInstance@@J@Z
470?PutInstanceAsync@CWbemProviderGlue@@UAAJPAUIWbemClassObject@@JPAUIWbemContext@@PAUIWbemObjectSink@@@Z
471?QueryInterface@CWbemGlueFactory@@UAAJABU_GUID@@PAPAX@Z
472?QueryInterface@CWbemProviderGlue@@UAAJABU_GUID@@PAPAX@Z
473?QueryObjectSink@CWbemProviderGlue@@UAAJJPAPAUIWbemObjectSink@@@Z
474?QueryPostProcess@MethodContext@@UAAXXZ
475?RegisterForMessage@CWinMsgEvent@@IAAXIH@Z
476?Release@CHString@@QAAXXZ
477?Release@CHString@@SAXPAUCHStringData@@@Z
478?Release@CInstance@@QAAJXZ
479?Release@CThreadBase@@QAAJXZ
480?Release@CWbemGlueFactory@@UAAKXZ
481?Release@CWbemProviderGlue@@UAAKXZ
482?Release@MethodContext@@QAAJXZ
483?ReleaseBuffer@CHString@@QAAXH@Z
484?RemoveAll@CHPtrArray@@QAAXXZ
485?RemoveAll@CHStringArray@@QAAXXZ
486?RemoveAt@CHPtrArray@@QAAXHH@Z
487?RemoveAt@CHStringArray@@QAAXHH@Z
488?RemoveFromFactoryMap@CWbemProviderGlue@@KAXPBVCWbemGlueFactory@@@Z
489?Reset@CFrameworkQuery@@AAAXXZ
490?ReverseFind@CHString@@QBAHG@Z
491?RewindSubKeys@CRegistry@@QAAXXZ
492?Right@CHString@@QBA?AV1@H@Z
493?SafeStrlen@CHString@@KAHPBG@Z
494?SearchAndBuildList@CRegistrySearch@@QAAHVCHString@@AAVCHPtrArray@@00HPAUHKEY__@@@Z
495?SearchMapForProvider@CWbemProviderGlue@@CAPAVProvider@@PBG0@Z
496?SetAt@CHPtrArray@@QAAXHPAX@Z
497?SetAt@CHString@@QAAXHG@Z
498?SetAt@CHStringArray@@QAAXHPBG@Z
499?SetAtGrow@CHPtrArray@@QAAXHPAX@Z
500?SetAtGrow@CHStringArray@@QAAXHPBG@Z
501?SetByte@CInstance@@QAA_NPBGE@Z
502?SetCHString@CInstance@@QAA_NPBG0@Z
503?SetCHString@CInstance@@QAA_NPBGABVCHString@@@Z
504?SetCHString@CInstance@@QAA_NPBGPBD@Z
505?SetCHStringResourceHandle@@YAXPAUHINSTANCE__@@@Z
506?SetCharSplat@CInstance@@QAA_NPBG0@Z
507?SetCharSplat@CInstance@@QAA_NPBGK@Z
508?SetCharSplat@CInstance@@QAA_NPBGPBD@Z
509?SetClassName@ParsedObjectPath@@QAAHPBG@Z
510?SetCreationClassName@Provider@@IAA_NPAVCInstance@@@Z
511?SetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAK@Z
512?SetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHString@@@Z
513?SetCurrentKeyValue@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHStringArray@@@Z
514?SetCurrentKeyValue@CRegistry@@QAAKPBGAAK@Z
515?SetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHString@@@Z
516?SetCurrentKeyValue@CRegistry@@QAAKPBGAAVCHStringArray@@@Z
517?SetCurrentKeyValueExpand@CRegistry@@QAAKPAUHKEY__@@PBGAAVCHString@@@Z
518?SetDMTF@WBEMTime@@QAAHQAG@Z
519?SetDOUBLE@CInstance@@QAA_NPBGN@Z
520?SetDWORD@CInstance@@QAA_NPBGK@Z
521?SetDateTime@CInstance@@QAA_NPBGABVWBEMTime@@@Z
522?SetDefaultValues@CRegistry@@AAAXXZ
523?SetEmbeddedObject@CInstance@@QAA_NPBGAAV1@@Z
524?SetKeyFromParsedObjectPath@Provider@@AAAHPAVCInstance@@PAUParsedObjectPath@@@Z
525?SetNull@CInstance@@QAA_NPBG@Z
526?SetPlatformID@CRegistry@@CAHXZ
527?SetSize@CHPtrArray@@QAAXHH@Z
528?SetSize@CHStringArray@@QAAXHH@Z
529?SetStatusObject@CWbemProviderGlue@@SA_NPAVMethodContext@@PBG1JPBUtagSAFEARRAY@@2@Z
530?SetStatusObject@MethodContext@@QAA_NPAUIWbemClassObject@@@Z
531?SetStringArray@CInstance@@QAA_NPBGABUtagSAFEARRAY@@@Z
532?SetTimeSpan@CInstance@@QAA_NPBGABVWBEMTimeSpan@@@Z
533?SetVariant@CInstance@@QAA_NPBGABUtagVARIANT@@@Z
534?SetWBEMINT16@CInstance@@QAA_NPBGABF@Z
535?SetWBEMINT64@CInstance@@QAA_NPBGABVCHString@@@Z
536?SetWBEMINT64@CInstance@@QAA_NPBG_J@Z
537?SetWBEMINT64@CInstance@@QAA_NPBG_K@Z
538?SetWCHARSplat@CInstance@@QAA_NPBG0@Z
539?SetWORD@CInstance@@QAA_NPBGG@Z
540?Setbool@CInstance@@QAA_NPBG_N@Z
541?Signal@CAutoEvent@@QAAHXZ
542?SpanExcluding@CHString@@QBA?AV1@PBG@Z
543?SpanIncluding@CHString@@QBA?AV1@PBG@Z
544?TrimLeft@CHString@@QAAXXZ
545?TrimRight@CHString@@QAAXXZ
546?UnInit@CWbemProviderGlue@@CAXXZ
547?UnRegisterAllMessages@CWinMsgEvent@@IAAXXZ
548?UnRegisterMessage@CWinMsgEvent@@IAA_NIH@Z
549?Unlock@CThreadBase@@AAAXXZ
550?UnlockBuffer@CHString@@QAAXXZ
551?UnlockFactoryMap@CWbemProviderGlue@@CAXXZ
552?UnlockProviderMap@CWbemProviderGlue@@CAXXZ
553?Unparse@CObjectPathParser@@SAHPAUParsedObjectPath@@PAPAG@Z
554?ValidateDeletionFlags@Provider@@MAAJJ@Z
555?ValidateEnumerationFlags@Provider@@MAAJJ@Z
556?ValidateFlags@Provider@@IAAJJW4FlagDefs@1@@Z
557?ValidateGetObjFlags@Provider@@MAAJJ@Z
558?ValidateIMOSPointer@Provider@@AAAHXZ
559?ValidateMethodFlags@Provider@@MAAJJ@Z
560?ValidatePutInstanceFlags@Provider@@MAAJJ@Z
561?ValidateQueryFlags@Provider@@MAAJJ@Z
562?Wait@CAutoEvent@@QAAKK@Z
563?WindowsDispatch@CWinMsgEvent@@CAXXZ
564?Zero@CObjectPathParser@@AAAXXZ
565?begin_parse@CObjectPathParser@@AAAHXZ
566?captainsLog@@3VProviderLog@@A DATA
567?dwThreadProc@CWinMsgEvent@@CAKPAX@Z
568?ident_becomes_class@CObjectPathParser@@AAAHXZ
569?ident_becomes_ns@CObjectPathParser@@AAAHXZ
570?initFailed@Provider@@SAHXZ
571?initFailed_@Provider@@0HA DATA
572?key_const@CObjectPathParser@@AAAHXZ
573?keyref@CObjectPathParser@@AAAHXZ
574?keyref_list@CObjectPathParser@@AAAHXZ
575?keyref_term@CObjectPathParser@@AAAHXZ
576?m_FlushPtrs@CWbemProviderGlue@@0V?$set@PAXU?$less@PAX@std@@V?$allocator@PAX@2@@std@@A DATA
577?m_csFlushPtrs@CWbemProviderGlue@@0VCCritSec@@A DATA
578?m_csStatusObject@CWbemProviderGlue@@0VCCritSec@@A DATA
579?m_pStatusObject@CWbemProviderGlue@@0PAUIWbemClassObject@@A DATA
580?mg_aeCreateWindow@CWinMsgEvent@@0VCAutoEvent@@A DATA
581?mg_csMapLock@CWinMsgEvent@@0VCCritSec@@A DATA
582?mg_csWindowLock@CWinMsgEvent@@0VCCritSec@@A DATA
583?mg_hDevNotify@CWinMsgEvent@@0PAXA DATA
584?mg_hThreadPumpHandle@CWinMsgEvent@@0PAXA DATA
585?mg_hWnd@CWinMsgEvent@@0PAUHWND__@@A DATA
586?mg_oSinkMap@CWinMsgEvent@@0V?$multimap@IPAVCWinMsgEvent@@U?$less@I@std@@V?$allocator@U?$pair@$$CBIPAVCWinMsgEvent@@@std@@@3@@std@@A DATA
587?myRegCreateKeyEx@CRegistry@@AAAJPAUHKEY__@@PBGKPAGKKQAU_SECURITY_ATTRIBUTES@@PAPAU2@PAK@Z
588?myRegDeleteKey@CRegistry@@AAAJPAUHKEY__@@PBG@Z
589?myRegDeleteValue@CRegistry@@AAAJPAUHKEY__@@PBG@Z
590?myRegEnumKey@CRegistry@@AAAJPAUHKEY__@@KPAGK@Z
591?myRegEnumValue@CRegistry@@AAAJPAUHKEY__@@KPAGPAK22PAE2@Z
592?myRegOpenKeyEx@CRegistry@@AAAJPAUHKEY__@@PBGKKPAPAU2@@Z
593?myRegQueryInfoKey@CRegistry@@AAAJPAUHKEY__@@PAGPAK22222222PAU_FILETIME@@@Z
594?myRegQueryValueEx@CRegistry@@AAAJPAUHKEY__@@PBGPAK2PAE2@Z
595?myRegSetValueEx@CRegistry@@AAAJPAUHKEY__@@PBGKKPBEK@Z
596?ns_list@CObjectPathParser@@AAAHXZ
597?ns_list_rest@CObjectPathParser@@AAAHXZ
598?ns_or_class@CObjectPathParser@@AAAHXZ
599?ns_or_server@CObjectPathParser@@AAAHXZ
600?objref@CObjectPathParser@@AAAHXZ
601?objref_rest@CObjectPathParser@@AAAHXZ
602?optional_objref@CObjectPathParser@@AAAHXZ
603?propname@CObjectPathParser@@AAAHXZ
604?s_bInitted@CWbemProviderGlue@@0HA DATA
605?s_csFactoryMap@CWbemProviderGlue@@0VCCritSec@@A DATA
606?s_csProviderMap@CWbemProviderGlue@@0VCCritSec@@A DATA
607?s_dwMajorVersion@CWbemProviderGlue@@0KA DATA
608?s_dwPlatform@CRegistry@@0KA DATA
609?s_dwPlatform@CWbemProviderGlue@@0KA DATA
610?s_fPlatformSet@CRegistry@@0HA DATA
611?s_factorymap@CWbemProviderGlue@@0V?$map@PBXPAJU?$less@PBX@std@@V?$allocator@U?$pair@QBXPAJ@std@@@2@@std@@A DATA
612?s_lObjects@CWbemProviderGlue@@0JA DATA
613?s_providersmap@CWbemProviderGlue@@0V?$map@VCHString@@PAXU?$less@VCHString@@@std@@V?$allocator@U?$pair@$$CBVCHString@@PAX@std@@@3@@std@@A DATA
614?s_strComputerName@Provider@@0VCHString@@A DATA
615?s_wstrCSDVersion@CWbemProviderGlue@@0PAGA DATA
616DoCmd
lib/libc/mingw/libarm32/fsutilext.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of FSUTILEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FSUTILEXT.dll"
7EXPORTS
8CheckSonyMSWorker
9DeviceInstIsRemovableWorker
10FindFirstVolumeMountPointWStub
11FindNextVolumeMountPointWStub
12FindVolumeMountPointCloseStub
13GetDeviceIDDiskFromDeviceIDVolumeWorker
14GetDeviceInstanceWorker
15GetRemovableDeviceInstRecursWorker
16GetWidgetWorker
17InvalidateFveWorker
18SendWithSenseParseWorker
19SetThreadUILanguageStub
20SystemParametersInfoWStub
21WaitForUnitAndReportProgressWorker
lib/libc/mingw/libarm32/fveapi.def created+128
......@@ -0,0 +1,128 @@
1;
2; Definition file of FVEAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FVEAPI.dll"
7EXPORTS
8InternalFveIsVolumeEncrypted
9FveAddAuthMethodInformation
10FveAddAuthMethodSid
11FveApplyGroupPolicy
12FveApplyNkpCertChanges
13FveAttemptAutoUnlock
14FveAuthElementFromPassPhraseW
15FveAuthElementFromPinW
16FveAuthElementFromRecoveryPasswordW
17FveAuthElementGetKeyFileNameW
18FveAuthElementReadExternalKeyW
19FveAuthElementToRecoveryPasswordW
20FveAuthElementWriteExternalKeyW
21FveBackupRecoveryInformationToAD
22FveBindDataVolume
23FveCanStandardUsersChangePassphraseByProxy
24FveCanStandardUsersChangePin
25FveCheckPassphrasePolicy
26FveCheckTpmCapability
27FveClearUserFlags
28FveCloseHandle
29FveCloseVolume
30FveCommitChanges
31FveConversionDecrypt
32FveConversionDecryptEx
33FveConversionEncrypt
34FveConversionEncryptEx
35FveConversionEncryptPendingReboot
36FveConversionEncryptPendingRebootEx
37FveConversionPause
38FveConversionResume
39FveConversionStop
40FveConversionStopEx
41FveDecrementClearKeyCounter
42FveDeleteAuthMethod
43FveDisableDeviceLockoutState
44FveDiscardChanges
45FveDraCertPresentInRegistry
46FveEnableRawAccess
47FveEnableRawAccessEx
48FveEnableRawAccessW
49FveEraseDrive
50FveFindFirstVolume
51FveFindNextVolume
52FveFlagsToProtectorType
53FveGenerateNkpSessionKeys
54FveGetAllowKeyExport
55FveGetAuthMethodGuids
56FveGetAuthMethodInformation
57FveGetAuthMethodSid
58FveGetAuthMethodSidInformation
59FveGetClearKeyCounter
60FveGetDataSet
61FveGetDescriptionW
62FveGetDeviceLockoutData
63FveGetFipsAllowDisabled
64FveGetFveMethod
65FveGetFveMethodEDrv
66FveGetIdentificationFieldW
67FveGetIdentity
68FveGetKeyPackage
69FveGetSecureBootBindingState
70FveGetStatus
71FveGetStatusW
72FveGetUserFlags
73FveGetVolumeNameW
74FveInitVolume
75FveInitVolumeEx
76FveInitializeDeviceEncryption
77FveInitializeDeviceEncryption2
78FveIsAnyDataVolumeBoundToOSVolume
79FveIsBoundDataVolume
80FveIsBoundDataVolumeToOSVolume
81FveIsDeviceLockable
82FveIsDeviceLockedOut
83FveIsHardwareReadyForConversion
84FveIsHybridVolume
85FveIsHybridVolumeW
86FveIsPassphraseCompatibleW
87FveIsRecoveryPasswordGroupValidW
88FveIsRecoveryPasswordValidW
89FveIsSchemaExtInstalled
90FveIsVolumeEncryptable
91FveKeyManagement
92FveLockDevice
93FveLockVolume
94FveLogRecoveryReason
95FveNeedsDiscoveryVolumeUpdate
96FveNotifyVolumeAfterFormat
97FveOpenVolumeByHandle
98FveOpenVolumeExW
99FveOpenVolumeW
100FveProtectorTypeToFlags
101FveQuery
102FveQueryDeviceEncryptionSupport
103FveRevertVolume
104FveServiceDiscoveryVolume
105FveSetAllowKeyExport
106FveSetDescriptionW
107FveSetFipsAllowDisabled
108FveSetFveMethod
109FveSetIdentificationFieldW
110FveSetUserFlags
111FveSysClearUserFlags
112FveSysCloseVolume
113FveSysGetUserFlags
114FveSysOpenVolumeW
115FveSysSetUserFlags
116FveUnbindAllDataVolumeFromOSVolume
117FveUnbindDataVolume
118FveUnlockVolume
119FveUnlockVolumeAuthMethodSid
120FveUnlockVolumeWithAccessMode
121FveUpdateBandIdBcd
122FveUpdateDeviceLockoutState
123FveUpdateDeviceLockoutStateEx
124FveUpdatePinW
125FveUpgradeVolume
126FveValidateDeviceLockoutState
127FveValidateExistingPassphraseW
128FveValidateExistingPinW
lib/libc/mingw/libarm32/fveapibase.def created+59
......@@ -0,0 +1,59 @@
1;
2; Definition file of FVEAPIBASE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FVEAPIBASE.dll"
7EXPORTS
8InternalFveIsVolumeEncrypted
9FveAuthElementFromPassPhraseW
10FveAuthElementFromPinW
11FveAuthElementFromRecoveryPasswordW
12FveAuthElementGetKeyFileNameW
13FveAuthElementReadExternalKeyW
14FveAuthElementToRecoveryPasswordW
15FveAuthElementWriteExternalKeyW
16FveClearUserFlags
17FveCloseHandle
18FveCloseVolume
19FveCommitChanges
20FveConversionDecrypt
21FveConversionDecryptEx
22FveConversionPause
23FveConversionResume
24FveConversionStop
25FveConversionStopEx
26FveDiscardChanges
27FveEnableRawAccess
28FveEraseDrive
29FveFindFirstVolume
30FveFindNextVolume
31FveGetAllowKeyExport
32FveGetAuthMethodGuids
33FveGetAuthMethodInformation
34FveGetDataSet
35FveGetFipsAllowDisabled
36FveGetFveMethod
37FveGetFveMethodEDrv
38FveGetIdentity
39FveGetKeyPackage
40FveGetStatus
41FveGetStatusW
42FveGetUserFlags
43FveGetVolumeNameW
44FveIsHardwareReadyForConversion
45FveIsRecoveryPasswordGroupValidW
46FveIsRecoveryPasswordValidW
47FveIsVolumeEncryptable
48FveLockVolume
49FveNotifyVolumeAfterFormat
50FveOpenVolumeByHandle
51FveOpenVolumeExW
52FveOpenVolumeW
53FveQuery
54FveRevertVolume
55FveSetAllowKeyExport
56FveSetFipsAllowDisabled
57FveSetFveMethod
58FveSetUserFlags
59FveUpgradeVolume
lib/libc/mingw/libarm32/fvecerts.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of FVECERTS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FVECERTS.dll"
7EXPORTS
8FveCertCanCertificateBeAdded
9FveCertCreateCertInfo
10FveCertCreateSelfSignedCertificate
11FveCertFilterForValidCertificates
12FveCertFindValidCertificates
13FveCertFreeCertInfo
14FveCertGetCertContextFromCert
15FveCertGetCertContextFromPfx
16FveCertGetCertHashFromCertContext
17FveCertGetPrivateKeyHandle
18FveCertGetPublicKeyHandle
19FveCertIsAlternateCert
20FveCertIsValidCertInfo
21FveCertSignData
22FveCertWritePfxFromCertContext
lib/libc/mingw/libarm32/fveskybackup.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of FVESKYBACKUP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FVESKYBACKUP.dll"
7EXPORTS
8FveBackupRecoveryPasswordToSkyDrive
lib/libc/mingw/libarm32/fveui.def created+48
......@@ -0,0 +1,48 @@
1;
2; Definition file of FVEUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FVEUI.dll"
7EXPORTS
8??0VolumeFveStatus@@IAA@XZ
9??0VolumeFveStatus@@QAA@K_KJW4_FVE_WIPING_STATE@@@Z
10??4BuiVolume@@QAAAAV0@ABV0@@Z
11??4VolumeFveStatus@@QAAAAV0@ABV0@@Z
12?FailedDryRun@VolumeFveStatus@@QBA_NXZ
13?GetExtendedFlags@VolumeFveStatus@@QBA_KXZ
14?GetLastConvertStatus@VolumeFveStatus@@QBAJXZ
15?GetStatusFlags@VolumeFveStatus@@QBAKXZ
16?HasExternalKey@VolumeFveStatus@@QBA_NXZ
17?HasPBKDF2RecoveryPassword@VolumeFveStatus@@QBA_NXZ
18?HasPassphraseProtector@VolumeFveStatus@@QBA_NXZ
19?HasPinProtector@VolumeFveStatus@@QBA_NXZ
20?HasRecoveryData@VolumeFveStatus@@QBA_NXZ
21?HasRecoveryPassword@VolumeFveStatus@@QBA_NXZ
22?HasSmartCardProtector@VolumeFveStatus@@QBA_NXZ
23?HasStartupKeyProtector@VolumeFveStatus@@QBA_NXZ
24?HasTpmProtector@VolumeFveStatus@@QBA_NXZ
25?IsConverting@VolumeFveStatus@@QBA_NXZ
26?IsCsvMetadataVolume@VolumeFveStatus@@QBA_NXZ
27?IsDEAutoProvisioned@VolumeFveStatus@@QBA_NXZ
28?IsDecrypted@VolumeFveStatus@@QBA_NXZ
29?IsDecrypting@VolumeFveStatus@@QBA_NXZ
30?IsDisabled@VolumeFveStatus@@QBA_NXZ
31?IsEDriveVolume@VolumeFveStatus@@QBA_NXZ
32?IsEncrypted@VolumeFveStatus@@QBA_NXZ
33?IsEncrypting@VolumeFveStatus@@QBA_NXZ
34?IsLocked@VolumeFveStatus@@QBA_NXZ
35?IsOn@VolumeFveStatus@@QBA_NXZ
36?IsOsVolume@VolumeFveStatus@@QBA_NXZ
37?IsPartiallyConverted@VolumeFveStatus@@QBA_NXZ
38?IsPaused@VolumeFveStatus@@QBA_NXZ
39?IsPreProvisioned@VolumeFveStatus@@QBA_NXZ
40?IsRoamingDevice@VolumeFveStatus@@QBA_NXZ
41?IsSecure@VolumeFveStatus@@QBA_NXZ
42?IsUnknownFveVersion@VolumeFveStatus@@QBA_NXZ
43?IsWiping@VolumeFveStatus@@QBA_NXZ
44?NO_DRIVE_LETTER@BuiVolume@@2IB
45?NeedsRestart@VolumeFveStatus@@QBA_NXZ
46FveuiEnumSmartCardCerts
47FveuiUserSelectCert
48FveuiUserSelectSmartCard
lib/libc/mingw/libarm32/fvewiz.def created+47
......@@ -0,0 +1,47 @@
1;
2; Definition file of FVEWIZ.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FVEWIZ.dll"
7EXPORTS
8??0VolumeFveStatus@@IAA@XZ
9??0VolumeFveStatus@@QAA@K_KJW4_FVE_WIPING_STATE@@@Z
10??4BuiVolume@@QAAAAV0@ABV0@@Z
11??4VolumeFveStatus@@QAAAAV0@ABV0@@Z
12?FailedDryRun@VolumeFveStatus@@QBA_NXZ
13?GetExtendedFlags@VolumeFveStatus@@QBA_KXZ
14?GetLastConvertStatus@VolumeFveStatus@@QBAJXZ
15?GetStatusFlags@VolumeFveStatus@@QBAKXZ
16?HasExternalKey@VolumeFveStatus@@QBA_NXZ
17?HasPBKDF2RecoveryPassword@VolumeFveStatus@@QBA_NXZ
18?HasPassphraseProtector@VolumeFveStatus@@QBA_NXZ
19?HasPinProtector@VolumeFveStatus@@QBA_NXZ
20?HasRecoveryData@VolumeFveStatus@@QBA_NXZ
21?HasRecoveryPassword@VolumeFveStatus@@QBA_NXZ
22?HasSmartCardProtector@VolumeFveStatus@@QBA_NXZ
23?HasStartupKeyProtector@VolumeFveStatus@@QBA_NXZ
24?HasTpmProtector@VolumeFveStatus@@QBA_NXZ
25?IsConverting@VolumeFveStatus@@QBA_NXZ
26?IsCsvMetadataVolume@VolumeFveStatus@@QBA_NXZ
27?IsDEAutoProvisioned@VolumeFveStatus@@QBA_NXZ
28?IsDecrypted@VolumeFveStatus@@QBA_NXZ
29?IsDecrypting@VolumeFveStatus@@QBA_NXZ
30?IsDisabled@VolumeFveStatus@@QBA_NXZ
31?IsEDriveVolume@VolumeFveStatus@@QBA_NXZ
32?IsEncrypted@VolumeFveStatus@@QBA_NXZ
33?IsEncrypting@VolumeFveStatus@@QBA_NXZ
34?IsLocked@VolumeFveStatus@@QBA_NXZ
35?IsOn@VolumeFveStatus@@QBA_NXZ
36?IsOsVolume@VolumeFveStatus@@QBA_NXZ
37?IsPartiallyConverted@VolumeFveStatus@@QBA_NXZ
38?IsPaused@VolumeFveStatus@@QBA_NXZ
39?IsPreProvisioned@VolumeFveStatus@@QBA_NXZ
40?IsRoamingDevice@VolumeFveStatus@@QBA_NXZ
41?IsSecure@VolumeFveStatus@@QBA_NXZ
42?IsUnknownFveVersion@VolumeFveStatus@@QBA_NXZ
43?IsWiping@VolumeFveStatus@@QBA_NXZ
44?NO_DRIVE_LETTER@BuiVolume@@2IB
45?NeedsRestart@VolumeFveStatus@@QBA_NXZ
46FveuiWizard
47FveuipClearFveWizOnStartup
lib/libc/mingw/libarm32/fwremotesvr.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of FwRemoteSvr.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "FwRemoteSvr.DLL"
7EXPORTS
8FwRpcAPIsInitialize
9FwRpcAPIsShutdown
lib/libc/mingw/libarm32/gameux.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of gameux.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "gameux.dll"
7EXPORTS
8GameUXShimW
lib/libc/mingw/libarm32/geofencemonitorservice.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of GeofenceMonitorService.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "GeofenceMonitorService.dll"
7EXPORTS
8GeofenceSettingsIsSimulator
9ServiceMain
lib/libc/mingw/libarm32/globcollationhost.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of globcollationhost.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "globcollationhost.dll"
7EXPORTS
8WGCGetCharacterGroupDisplayName
9WGCGetDefaultGroupingLetters
10WGCGetGroupingLetter
lib/libc/mingw/libarm32/globinputhost.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of globinputhost.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "globinputhost.dll"
7EXPORTS
8WGIEnsureLanguageProfileExists
9WGIGetCompatibleInputMethodsForLanguage
10WGIGetCurrentInputLanguage
11WGIGetDefaultInputMethodForLanguage
12WGIGetInputMethodDescription
13WGIGetInputMethodProperties
14WGIGetInputMethodTileName
15WGIIsImeInputMethod
16WGIIsImeScript
17WGIIsImmersiveInputMethod
18WGIIsTouchEnabledInputMethod
19WGITransformInputMethodsForLanguage
20WGITransformInputMethodsForLanguageId
21WGIUpdateGlobalSpellerKey
lib/libc/mingw/libarm32/gpapi.def created+60
......@@ -0,0 +1,60 @@
1;
2; Definition file of GPAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "GPAPI.dll"
7EXPORTS
8ord_107 @107
9AreThereVisibleLogoffScriptsInternalWorker
10ord_109 @109
11ord_110 @110
12AreThereVisibleShutdownScriptsInternalWorker
13EnterCriticalPolicySectionExStub
14ord_113 @113
15ord_114 @114
16ord_115 @115
17ord_116 @116
18EnterCriticalPolicySectionInternalWorker
19FreeGPOListInternalAWorker
20GenerateGPNotificationInternalWorker
21GetAppliedGPOListInternalAWorker
22GetAppliedGPOListInternalWWorker
23GetGPOListInternalAWorker
24GetGPOListInternalWWorker
25HasPolicyForegroundProcessingCompletedInternalWorker
26LeaveCriticalPolicySectionInternalWorker
27RefreshPolicyExInternalWorker
28RefreshPolicyInternalWorker
29RegisterGPNotificationInternalWorker
30RsopLoggingEnabledInternalWorker
31UnregisterGPNotificationInternalWorker
32AreThereVisibleLogoffScriptsInternal
33AreThereVisibleShutdownScriptsInternal
34EnterCriticalPolicySectionInternal
35ForceSyncFgPolicyInternal
36ForceSyncFgPolicyInternalWorker
37FreeGPOListInternalA
38FreeGPOListInternalW
39FreeGPOListInternalWWorker
40GenerateGPNotificationInternal
41GetAppliedGPOListInternalA
42GetAppliedGPOListInternalW
43GetGPOListInternalA
44GetGPOListInternalW
45GetNextFgPolicyRefreshInfoInternal
46GetNextFgPolicyRefreshInfoInternalWorker
47GetPreviousFgPolicyRefreshInfoInternal
48GetPreviousFgPolicyRefreshInfoInternalWorker
49HasPolicyForegroundProcessingCompletedInternal
50IsSyncForegroundPolicyRefreshWorker
51LeaveCriticalPolicySectionInternal
52RefreshPolicyExInternal
53RefreshPolicyInternal
54RegisterGPNotificationInternal
55RsopLoggingEnabledInternal
56UnregisterGPNotificationInternal
57WaitForMachinePolicyForegroundProcessingInternal
58WaitForMachinePolicyForegroundProcessingInternalWorker
59WaitForUserPolicyForegroundProcessingInternal
60WaitForUserPolicyForegroundProcessingInternalWorker
lib/libc/mingw/libarm32/gpprefcl.def created+70
......@@ -0,0 +1,70 @@
1;
2; Definition file of polprocl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "polprocl.dll"
7EXPORTS
8GenerateGroupPolicyApplications
9GenerateGroupPolicyDataSources
10GenerateGroupPolicyDevices
11GenerateGroupPolicyDrives
12GenerateGroupPolicyEnviron
13GenerateGroupPolicyFiles
14GenerateGroupPolicyFolderOptions
15GenerateGroupPolicyFolders
16GenerateGroupPolicyIniFile
17GenerateGroupPolicyInternet
18GenerateGroupPolicyLocUsAndGroups
19GenerateGroupPolicyNetShares
20GenerateGroupPolicyNetworkOptions
21GenerateGroupPolicyPowerOptions
22GenerateGroupPolicyPrinters
23GenerateGroupPolicyRegionOptions
24GenerateGroupPolicyRegistry
25GenerateGroupPolicySchedTasks
26GenerateGroupPolicyServices
27GenerateGroupPolicyShortcuts
28GenerateGroupPolicyStartMenu
29ProcessGroupPolicyApplications
30ProcessGroupPolicyDataSources
31ProcessGroupPolicyDevices
32ProcessGroupPolicyDrives
33ProcessGroupPolicyEnviron
34ProcessGroupPolicyExApplications
35ProcessGroupPolicyExDataSources
36ProcessGroupPolicyExDevices
37ProcessGroupPolicyExDrives
38ProcessGroupPolicyExEnviron
39ProcessGroupPolicyExFiles
40ProcessGroupPolicyExFolderOptions
41ProcessGroupPolicyExFolders
42ProcessGroupPolicyExIniFile
43ProcessGroupPolicyExInternet
44ProcessGroupPolicyExLocUsAndGroups
45ProcessGroupPolicyExNetShares
46ProcessGroupPolicyExNetworkOptions
47ProcessGroupPolicyExPowerOptions
48ProcessGroupPolicyExPrinters
49ProcessGroupPolicyExRegionOptions
50ProcessGroupPolicyExRegistry
51ProcessGroupPolicyExSchedTasks
52ProcessGroupPolicyExServices
53ProcessGroupPolicyExShortcuts
54ProcessGroupPolicyExStartMenu
55ProcessGroupPolicyFiles
56ProcessGroupPolicyFolderOptions
57ProcessGroupPolicyFolders
58ProcessGroupPolicyIniFile
59ProcessGroupPolicyInternet
60ProcessGroupPolicyLocUsAndGroups
61ProcessGroupPolicyNetShares
62ProcessGroupPolicyNetworkOptions
63ProcessGroupPolicyPowerOptions
64ProcessGroupPolicyPrinters
65ProcessGroupPolicyRegionOptions
66ProcessGroupPolicyRegistry
67ProcessGroupPolicySchedTasks
68ProcessGroupPolicyServices
69ProcessGroupPolicyShortcuts
70ProcessGroupPolicyStartMenu
lib/libc/mingw/libarm32/gpprnext.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of gpprnext.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "gpprnext.dll"
7EXPORTS
8PrinterGenerateGroupPolicy
9PrinterProcessGroupPolicy
10PrinterProcessGroupPolicyEx
lib/libc/mingw/libarm32/gpscript.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of GPSCRIPT.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "GPSCRIPT.DLL"
7EXPORTS
8GenerateScriptsGroupPolicy
9ProcessScriptsGroupPolicy
10ProcessScriptsGroupPolicyEx
11ScrRegGPOListToWbem
lib/libc/mingw/libarm32/gpsvc.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of GPSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "GPSVC.dll"
7EXPORTS
8ord_106 @106
9GroupPolicyClientServiceMain
10SvchostPushServiceGlobals
11GenerateRsopPolicy
12ProcessGroupPolicyCompletedExInternal
13ProcessGroupPolicyCompletedInternal
14RsopAccessCheckByTypeInternal
15RsopFileAccessCheckInternal
16RsopResetPolicySettingStatusInternal
17RsopSetPolicySettingStatusInternal
lib/libc/mingw/libarm32/gptext.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of GPTEXT.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "GPTEXT.DLL"
7EXPORTS
8ProcessConnectivityPlatformPolicy
9ProcessEQoSPolicy
10ProcessPSCHEDPolicy
11ProcessTCPIPPolicy
lib/libc/mingw/libarm32/hal.def created+77
......@@ -0,0 +1,77 @@
1;
2; Definition file of HAL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "HAL.dll"
7EXPORTS
8HalAcpiGetTableEx
9HalAllProcessorsStarted
10HalAllocateCrashDumpRegisters
11HalAllocateHardwareCounters
12HalBeginSystemInterruptUnspecified
13HalBugCheckSystem
14HalCalibratePerformanceCounter
15HalConvertDeviceIdtToIrql
16HalDisableInterrupt
17HalDmaAllocateCrashDumpRegistersEx
18HalDmaFreeCrashDumpRegistersEx
19HalEnableInterrupt
20HalEndSystemInterrupt
21HalEnumerateEnvironmentVariablesEx
22HalEnumerateProcessors
23HalFreeHardwareCounters
24HalGetBusDataByOffset
25HalGetEnvironmentVariable
26HalGetEnvironmentVariableEx
27HalGetInterruptTargetInformation
28HalGetMemoryCachingRequirements
29HalGetMessageRoutingInfo
30HalGetProcessorIdByNtNumber
31HalGetVectorInput
32HalInitSystem
33HalInitializeOnResume
34HalInitializeProcessor
35HalProcessorIdle
36HalQueryEnvironmentVariableInfoEx
37HalQueryMaximumProcessorCount
38HalQueryRealTimeClock
39HalRegisterDynamicProcessor
40HalRegisterErrataCallbacks
41HalReportResourceUsage
42HalRequestClockInterrupt
43HalRequestIpi
44HalRequestIpiSpecifyVector
45HalRequestSoftwareInterrupt
46HalReturnToFirmware
47HalSendSoftwareInterrupt
48HalSetBusDataByOffset
49HalSetEnvironmentVariable
50HalSetEnvironmentVariableEx
51HalSetProfileInterval
52HalSetRealTimeClock
53HalStartDynamicProcessor
54HalStartNextProcessor
55HalStartProfileInterrupt
56HalStopProfileInterrupt
57HalTranslateBusAddress
58KdComPortInUse DATA
59KdHvComPortInUse DATA
60KeFlushWriteBuffer
61KeGetCurrentIrql
62KeQueryPerformanceCounter
63KeStallExecutionProcessor
64KfLowerIrql
65KfRaiseIrql
66READ_PORT_BUFFER_UCHAR
67READ_PORT_BUFFER_ULONG
68READ_PORT_BUFFER_USHORT
69READ_PORT_UCHAR
70READ_PORT_ULONG
71READ_PORT_USHORT
72WRITE_PORT_BUFFER_UCHAR
73WRITE_PORT_BUFFER_ULONG
74WRITE_PORT_BUFFER_USHORT
75WRITE_PORT_UCHAR
76WRITE_PORT_ULONG
77WRITE_PORT_USHORT
lib/libc/mingw/libarm32/hidserv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of HIDSERV.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "HIDSERV.dll"
7EXPORTS
8InstallHidserv
9ServiceMain
lib/libc/mingw/libarm32/hnetcfg.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of HNetCfg.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "HNetCfg.dll"
7EXPORTS
8HNetDeleteRasConnection
9HNetFreeSharingServicesPage
10HNetGetSharingServicesPage
11HNetGetFirewallSettingsPage
12HNetSharedAccessSettingsDlg
13HNetSharingAndFirewallSettingsDlg
14RegisterClassObjects
15ReleaseSingletons
16RevokeClassObjects
17WinBomConfigureWindowsFirewall
lib/libc/mingw/libarm32/httpprxm.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of httpprxm.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "httpprxm.dll"
7EXPORTS
8SubServiceScmNotification
9SubServiceStart
10SubServiceStop
lib/libc/mingw/libarm32/httpprxp.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of httpprxp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "httpprxp.dll"
7EXPORTS
8ProxyHelperGetProxyEventInformation
9ProxyHelperProviderConnectToServer
10ProxyHelperProviderDisconnectFromServer
11ProxyHelperProviderFreeMemory
12ProxyHelperProviderRegisterForEventNotification
13ProxyHelperProviderSetProxyConfiguration
14ProxyHelperProviderSetProxyCredentials
15ProxyHelperProviderUnregisterEventNotification
lib/libc/mingw/libarm32/icfupgd.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of IcfUpgd.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "IcfUpgd.dll"
7EXPORTS
8MigrateSettingsW
lib/libc/mingw/libarm32/idndl.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of IdnDl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "IdnDl.dll"
7EXPORTS
8DownlevelGetLocaleScripts
9DownlevelGetStringScripts
10DownlevelVerifyScripts
lib/libc/mingw/libarm32/ieadvpack.def created+91
......@@ -0,0 +1,91 @@
1;
2; Definition file of IEADVPACK.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "IEADVPACK.dll"
7EXPORTS
8DelNodeRunDLL32
9DelNodeRunDLL32A
10DoInfInstall
11DoInfInstallA
12DoInfInstallW
13FileSaveRestore
14FileSaveRestoreA
15LaunchINFSectionA
16LaunchINFSectionEx
17LaunchINFSectionExA
18RegisterOCX
19RegisterOCXW
20AddDelBackupEntry
21AddDelBackupEntryA
22AddDelBackupEntryW
23AdvInstallFile
24AdvInstallFileA
25AdvInstallFileW
26CloseINFEngine
27DelNode
28DelNodeA
29DelNodeRunDLL32W
30DelNodeW
31ExecuteCab
32ExecuteCabA
33ExecuteCabW
34ExtractFiles
35ExtractFilesA
36ExtractFilesW
37FileSaveMarkNotExist
38FileSaveMarkNotExistA
39FileSaveMarkNotExistW
40FileSaveRestoreOnINF
41FileSaveRestoreOnINFA
42FileSaveRestoreOnINFW
43FileSaveRestoreW
44GetVersionFromFile
45GetVersionFromFileA
46GetVersionFromFileEx
47GetVersionFromFileExA
48GetVersionFromFileExW
49GetVersionFromFileW
50IsNTAdmin
51LaunchINFSection
52LaunchINFSectionExW
53LaunchINFSectionW
54NeedReboot
55NeedRebootInit
56OpenINFEngine
57OpenINFEngineA
58OpenINFEngineW
59RebootCheckOnInstall
60RebootCheckOnInstallA
61RebootCheckOnInstallW
62RegInstall
63RegInstallA
64RegInstallW
65RegRestoreAll
66RegRestoreAllA
67RegRestoreAllW
68RegSaveRestore
69RegSaveRestoreA
70RegSaveRestoreOnINF
71RegSaveRestoreOnINFA
72RegSaveRestoreOnINFW
73RegSaveRestoreW
74RunSetupCommand
75RunSetupCommandA
76RunSetupCommandW
77SetPerUserSecValues
78SetPerUserSecValuesA
79SetPerUserSecValuesW
80TranslateInfString
81TranslateInfStringA
82TranslateInfStringEx
83TranslateInfStringExA
84TranslateInfStringExW
85TranslateInfStringW
86UserInstStubWrapper
87UserInstStubWrapperA
88UserInstStubWrapperW
89UserUnInstStubWrapper
90UserUnInstStubWrapperA
91UserUnInstStubWrapperW
lib/libc/mingw/libarm32/iedkcs32.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of iedkcs32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iedkcs32.dll"
7EXPORTS
8CloseRASConnections
9ProcessGroupPolicyForActivities
10ProcessGroupPolicyForActivitiesEx
11ProcessGroupPolicyForZoneMap
12BrandCleanInstallStubs
13BrandICW
14BrandICW2
15BrandIE4
16BrandIEActiveSetup
17BrandInternetExplorer
18BrandIntra
19BrandMe
20Clear
21InternetInitializeAutoProxyDll
lib/libc/mingw/libarm32/ieframe.def created+142
......@@ -0,0 +1,142 @@
1;
2; Definition file of IEFRAME.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "IEFRAME.dll"
7EXPORTS
8ord_91 @91
9ord_92 @92
10ord_93 @93
11ord_94 @94
12ord_95 @95
13CreateExtensionGuidEnumerator
14ExportCookieFileByProcessW
15IECreateDirectory
16IECreateFile
17IEDeleteFile
18ord_101 @101
19ord_102 @102
20ord_103 @103
21IEFindFirstFile
22ord_105 @105
23IEGetFileAttributesEx
24IEInPrivateFilteringEnabled
25IEIsInPrivateBrowsing
26IELaunchManageAddOnsUI
27IEMoveFileEx
28IERemoveDirectory
29IETrackingProtectionEnabled
30ImportCookieFileByProcessW
31SetQueryNetSessionCount
32AddUrlToFavorites
33CORLockDownProvider
34DoAddToFavDlg
35DoAddToFavDlgW
36DoBlobDownload
37DoFileDownload
38DoFileDownloadEx
39DoOrganizeFavDlg
40DoOrganizeFavDlgW
41DoPrivacyDlg
42HlinkFindFrame
43HlinkFrameNavigate
44HlinkFrameNavigateNHL
45IEAssociateThreadWithTab
46ord_135 @135
47IECancelSaveFile
48ord_137 @137
49IEDisassociateThreadWithTab
50IEGetProtectedModeCookie
51IEGetWriteableFolderPath
52ord_141 @141
53ord_142 @142
54ord_143 @143
55IEGetWriteableHKCU
56IEIsProtectedModeProcess
57IEIsProtectedModeURL
58IELaunchURL
59IERefreshElevationPolicy
60IERegCreateKeyEx
61ord_150 @150
62ord_151 @151
63ord_152 @152
64ord_153 @153
65IERegSetValueEx
66IERegisterWritableRegistryKey
67IERegisterWritableRegistryValue
68IESaveFile
69ord_158 @158
70ord_159 @159
71ord_160 @160
72IESetProtectedModeCookie
73ord_162 @162
74SHAddSubscribeFavorite
75IESetProtectedModeCookieEx
76ord_165 @165
77ord_166 @166
78ord_167 @167
79ord_168 @168
80IEShowOpenFileDialog
81ord_170 @170
82IEShowSaveFileDialog
83ord_172 @172
84IEUnregisterWritableRegistry
85ImportPrivacySettings
86OpenURL
87SoftwareUpdateMessageBox
88TriggerFileDownload
89URLQualifyA
90URLQualifyW
91ord_199 @199
92ord_211 @211
93ord_212 @212
94ord_218 @218
95ord_222 @222
96ord_223 @223
97ord_224 @224
98ord_231 @231
99ord_232 @232
100ord_233 @233
101ord_234 @234
102ord_235 @235
103ord_236 @236
104ord_238 @238
105ord_240 @240
106ord_241 @241
107ord_242 @242
108ord_243 @243
109ord_244 @244
110ord_245 @245
111ord_246 @246
112ord_247 @247
113ord_251 @251
114ord_252 @252
115ord_253 @253
116ord_254 @254
117ord_255 @255
118ord_256 @256
119ord_257 @257
120ord_258 @258
121ord_259 @259
122ord_260 @260
123ord_261 @261
124ord_262 @262
125ord_263 @263
126ord_264 @264
127ord_265 @265
128ord_303 @303
129ord_315 @315
130ord_316 @316
131ord_317 @317
132ord_318 @318
133ord_319 @319
134ord_320 @320
135ord_321 @321
136ord_322 @322
137ord_324 @324
138ord_325 @325
139ord_326 @326
140ord_327 @327
141ord_328 @328
142ord_329 @329
lib/libc/mingw/libarm32/iertutil.def created+491
......@@ -0,0 +1,491 @@
1;
2; Definition file of iertutil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iertutil.dll"
7EXPORTS
8IERT_DelayLoadFailureHook
9CreateStringHashN
10GetIDNSettingsForIE
11IEGetFrameUtilExports
12IEGetProcessModule
13IEGetTabWindowExports
14IUriBuilderInternalCreateDomain
15ord_16 @16
16ord_17 @17
17ord_18 @18
18ord_19 @19
19ord_20 @20
20ord_21 @21
21ResetIDNLanguageData
22ResetIEExtensibility
23ord_24 @24
24ord_25 @25
25ord_26 @26
26ResetIERegistrySettings
27ord_28 @28
28ord_29 @29
29ord_30 @30
30ord_31 @31
31ord_32 @32
32ord_33 @33
33ord_34 @34
34ord_35 @35
35ord_36 @36
36ord_37 @37
37ord_38 @38
38ord_39 @39
39ord_40 @40
40ord_41 @41
41ord_42 @42
42ord_43 @43
43ord_44 @44
44ord_45 @45
45ord_46 @46
46UriFromHostAndScheme
47ord_48 @48
48ord_49 @49
49ord_50 @50
50ord_51 @51
51ord_52 @52
52ord_53 @53
53ord_54 @54
54ord_55 @55
55ord_56 @56
56ord_57 @57
57ord_58 @58
58ord_59 @59
59ord_60 @60
60ord_61 @61
61ord_62 @62
62ord_63 @63
63ord_64 @64
64ord_65 @65
65ord_66 @66
66ord_67 @67
67ord_68 @68
68ord_69 @69
69ord_70 @70
70ord_71 @71
71ord_72 @72
72ord_73 @73
73ord_74 @74
74ord_75 @75
75ord_76 @76
76ord_77 @77
77ord_78 @78
78ord_79 @79
79ord_80 @80
80ord_81 @81
81ord_82 @82
82ord_83 @83
83ord_84 @84
84ord_85 @85
85ord_86 @86
86ord_87 @87
87ord_88 @88
88ord_89 @89
89ord_90 @90
90ord_91 @91
91ord_92 @92
92ord_93 @93
93ord_94 @94
94ord_95 @95
95ord_96 @96
96ord_97 @97
97ord_98 @98
98ord_99 @99
99ord_100 @100
100ord_101 @101
101CreateIUriBuilder
102CreateUri
103CreateUriFromMultiByteString
104CreateUriPriv
105CreateUriWithFragment
106ord_110 @110
107ord_111 @111
108ord_112 @112
109FastMimeGetFileExtension
110FastMimeGetIsMimeFilterEnabled
111FastMimeLookupKnownType
112FastMimeSetIsMimeFilterEnabled
113GetIUriPriv
114GetIUriPriv2
115GetPortFromUrlScheme
116GetPropertyFromName
117GetPropertyName
118IEDllLoader
119ord_123 @123
120ord_124 @124
121ord_125 @125
122ord_126 @126
123ord_127 @127
124ord_128 @128
125ord_129 @129
126ord_130 @130
127ord_131 @131
128ord_132 @132
129ord_133 @133
130ord_134 @134
131ord_135 @135
132ord_136 @136
133ord_137 @137
134ord_138 @138
135ord_139 @139
136ord_140 @140
137ord_141 @141
138ord_142 @142
139ord_143 @143
140ImpersonateUser
141IntlPercentEncodeNormalize
142IsDWORDProperty
143IsStringProperty
144PrivateCoInternetCanonicalizeIUri
145PrivateCoInternetCombineIUri
146ord_150 @150
147ord_151 @151
148ord_152 @152
149ord_153 @153
150ord_154 @154
151ord_155 @155
152ord_156 @156
153ord_157 @157
154ord_158 @158
155ord_159 @159
156ord_160 @160
157ord_161 @161
158ord_162 @162
159ord_163 @163
160ord_164 @164
161ord_165 @165
162ord_166 @166
163ord_167 @167
164ord_168 @168
165ord_169 @169
166ord_170 @170
167ord_171 @171
168ord_172 @172
169ord_173 @173
170ord_174 @174
171ord_175 @175
172ord_176 @176
173ord_177 @177
174PrivateCoInternetParseIUri
175RevertImpersonate
176ord_200 @200
177ord_201 @201
178ord_202 @202
179ord_203 @203
180ord_204 @204
181ord_205 @205
182ord_206 @206
183ord_207 @207
184ord_208 @208
185ord_209 @209
186ord_210 @210
187ord_211 @211
188ord_220 @220
189ord_221 @221
190ord_222 @222
191ord_223 @223
192ord_224 @224
193ord_225 @225
194ord_230 @230
195ord_231 @231
196ord_232 @232
197ord_280 @280
198ord_281 @281
199ord_282 @282
200ord_300 @300
201ord_301 @301
202ord_302 @302
203ord_303 @303
204ord_311 @311
205ord_312 @312
206ord_314 @314
207ord_325 @325
208ord_326 @326
209ord_327 @327
210ord_328 @328
211ord_329 @329
212ord_330 @330
213ord_331 @331
214ord_332 @332
215ord_334 @334
216ord_335 @335
217ord_336 @336
218ord_337 @337
219ord_338 @338
220ord_340 @340
221ord_341 @341
222ord_342 @342
223ord_343 @343
224ord_345 @345
225ord_346 @346
226ord_347 @347
227ord_350 @350
228ord_351 @351
229ord_352 @352
230ord_353 @353
231ord_354 @354
232ord_355 @355
233ord_356 @356
234ord_357 @357
235ord_358 @358
236ord_359 @359
237ord_364 @364
238ord_365 @365
239ord_366 @366
240ord_367 @367
241ord_368 @368
242ord_369 @369
243ord_370 @370
244ord_371 @371
245ord_372 @372
246ord_375 @375
247ord_376 @376
248ord_377 @377
249ord_378 @378
250ord_379 @379
251ord_380 @380
252ord_381 @381
253ord_382 @382
254ord_384 @384
255ord_385 @385
256ord_386 @386
257ord_387 @387
258ord_388 @388
259ord_389 @389
260ord_390 @390
261ord_391 @391
262ord_392 @392
263ord_393 @393
264LCIECalculatePackedStringSize
265LCIEPackString
266LCIEUnpackString
267ord_397 @397
268ord_398 @398
269ord_399 @399
270ord_400 @400
271ord_401 @401
272ord_402 @402
273ord_403 @403
274ord_404 @404
275ord_405 @405
276ord_406 @406
277ord_410 @410
278ord_411 @411
279ord_412 @412
280ord_413 @413
281ord_414 @414
282ord_415 @415
283ord_416 @416
284ord_417 @417
285ord_420 @420
286ord_421 @421
287ord_422 @422
288ord_423 @423
289ord_424 @424
290ord_425 @425
291ord_430 @430
292ord_431 @431
293ord_432 @432
294ord_433 @433
295ord_434 @434
296ord_435 @435
297ord_436 @436
298ord_437 @437
299ord_438 @438
300ord_440 @440
301ord_441 @441
302ord_442 @442
303ord_443 @443
304ord_444 @444
305ord_445 @445
306ord_450 @450
307ord_451 @451
308ord_452 @452
309ord_453 @453
310ord_454 @454
311ord_455 @455
312ord_456 @456
313ord_457 @457
314ord_458 @458
315ord_459 @459
316ord_460 @460
317ord_461 @461
318ord_462 @462
319ord_463 @463
320ord_464 @464
321ord_465 @465
322ord_466 @466
323ord_467 @467
324ord_470 @470
325ord_471 @471
326ord_472 @472
327ord_473 @473
328ord_474 @474
329ord_475 @475
330ord_476 @476
331ord_477 @477
332ord_478 @478
333ord_480 @480
334ord_481 @481
335ord_482 @482
336ord_500 @500
337ord_501 @501
338ord_502 @502
339ord_503 @503
340ord_504 @504
341ord_505 @505
342ord_506 @506
343ord_507 @507
344ord_508 @508
345ord_509 @509
346ord_510 @510
347ord_511 @511
348ord_512 @512
349ord_514 @514
350ord_515 @515
351ord_516 @516
352ord_517 @517
353ord_518 @518
354ord_519 @519
355ord_520 @520
356ord_521 @521
357ord_525 @525
358ord_526 @526
359ord_527 @527
360ord_528 @528
361ord_529 @529
362ord_530 @530
363ord_531 @531
364ord_533 @533
365ord_534 @534
366ord_535 @535
367ord_536 @536
368ord_537 @537
369ord_538 @538
370ord_539 @539
371ord_540 @540
372ord_541 @541
373ord_550 @550
374ord_551 @551
375ord_552 @552
376ord_553 @553
377ord_554 @554
378ord_555 @555
379ord_556 @556
380ord_557 @557
381ord_558 @558
382ord_559 @559
383ord_560 @560
384ord_561 @561
385ord_562 @562
386ord_563 @563
387ord_564 @564
388ord_565 @565
389ord_566 @566
390ord_567 @567
391ord_568 @568
392ord_569 @569
393ord_570 @570
394ord_574 @574
395ord_575 @575
396ord_576 @576
397ord_577 @577
398ord_578 @578
399ord_579 @579
400ord_580 @580
401ord_581 @581
402ord_582 @582
403ord_583 @583
404ord_584 @584
405ord_590 @590
406ord_591 @591
407ord_592 @592
408ord_593 @593
409ord_594 @594
410ord_600 @600
411ord_601 @601
412ord_602 @602
413ord_603 @603
414ord_604 @604
415ord_605 @605
416ord_606 @606
417ord_607 @607
418ord_608 @608
419ord_609 @609
420ord_650 @650
421ord_651 @651
422ord_652 @652
423ord_653 @653
424ord_654 @654
425ord_655 @655
426ord_656 @656
427ord_657 @657
428ord_658 @658
429ord_659 @659
430ord_660 @660
431ord_661 @661
432ord_662 @662
433ord_663 @663
434ord_664 @664
435ord_665 @665
436ord_666 @666
437ord_667 @667
438ord_668 @668
439ord_669 @669
440ord_670 @670
441ord_671 @671
442ord_672 @672
443ord_673 @673
444ord_674 @674
445ord_675 @675
446ord_676 @676
447ord_677 @677
448ord_678 @678
449ord_679 @679
450ord_680 @680
451ord_681 @681
452ord_682 @682
453ord_683 @683
454ord_684 @684
455ord_685 @685
456ord_686 @686
457ord_687 @687
458ord_688 @688
459ord_689 @689
460ord_700 @700
461ord_701 @701
462ord_702 @702
463ord_703 @703
464ord_705 @705
465ord_706 @706
466ord_707 @707
467ord_750 @750
468ord_751 @751
469ord_752 @752
470ord_753 @753
471ord_754 @754
472ord_763 @763
473ord_764 @764
474ord_765 @765
475ord_771 @771
476ord_772 @772
477ord_774 @774
478ord_775 @775
479ord_776 @776
480ord_779 @779
481ord_780 @780
482ord_781 @781
483ord_782 @782
484ord_783 @783
485ord_790 @790
486ord_791 @791
487ord_792 @792
488ord_793 @793
489ord_794 @794
490ord_795 @795
491ord_796 @796
lib/libc/mingw/libarm32/iesetup.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of iesetup.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iesetup.dll"
7EXPORTS
8IEApplyCurrentHardening
9IEHardenAdmin
10IEHardenAdminNow
11IEHardenLMSettings
12IEHardenMachineNow
13IEHardenUser
14IEShowHardeningDialog
lib/libc/mingw/libarm32/iesysprep.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of iesysprep.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iesysprep.dll"
7EXPORTS
8Sysprep_Cleanup_IE
9Sysprep_Generalize_IE
10Sysprep_Specialize_IE
lib/libc/mingw/libarm32/ieui.def created+155
......@@ -0,0 +1,155 @@
1;
2; Definition file of IEUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "IEUI.dll"
7EXPORTS
8DUserCastHandle
9DUserDeleteGadget
10GetStdColorBrushF
11GetStdColorF
12GetStdColorPenF
13UtilDrawOutlineRect
14AddGadgetMessageHandler
15AddLayeredRef
16AdjustClipInsideRef
17AttachWndProcA
18AttachWndProcW
19AutoTrace
20BeginHideInputPaneAnimation
21BeginShowInputPaneAnimation
22BuildAnimation
23BuildDropTarget
24BuildInterpolation
25CacheDWriteRenderTarget
26ChangeCurrentAnimationScenario
27ClearPushedOpacitiesFromGadgetTree
28ClearTopmostVisual
29CreateAction
30CreateGadget
31CustomGadgetHitTestQuery
32DUserBuildGadget
33DUserCastClass
34DUserCastDirect
35DUserFindClass
36DUserFlushDeferredMessages
37DUserFlushMessages
38DUserGetAlphaPRID
39DUserGetGutsData
40DUserGetRectPRID
41DUserGetRotatePRID
42DUserGetScalePRID
43DUserInstanceOf
44DUserPostEvent
45DUserPostMethod
46DUserRegisterGuts
47DUserRegisterStub
48DUserRegisterSuper
49DUserSendEvent
50DUserSendMethod
51DUserStopAnimation
52DUserStopPVLAnimation
53DeleteHandle
54DestroyPendingDCVisuals
55DetachGadgetVisuals
56DetachWndProc
57DisableContainerHwnd
58DrawGadgetTree
59EndInputPaneAnimation
60EnsureAnimationsEnabled
61EnsureGadgetTransInitialized
62EnumGadgets
63FindGadgetFromPoint
64FindGadgetMessages
65FindGadgetTargetingInfo
66FindStdColor
67FireGadgetMessages
68ForwardGadgetMessage
69GadgetTransCompositionChanged
70GadgetTransSettingChanged
71GetActionTimeslice
72GetCachedDWriteRenderTarget
73GetDUserModule
74GetDebug
75GetFinalAnimatingPosition
76GetGadget
77GetGadgetAnimation
78GetGadgetBitmap
79GetGadgetBufferInfo
80GetGadgetCenterPoint
81GetGadgetFlags
82GetGadgetFocus
83GetGadgetLayerInfo
84GetGadgetMessageFilter
85GetGadgetProperty
86GetGadgetRect
87GetGadgetRgn
88GetGadgetRootInfo
89GetGadgetRotation
90GetGadgetScale
91GetGadgetSize
92GetGadgetStyle
93GetGadgetTicket
94GetGadgetVisual
95GetMessageExA
96GetMessageExW
97GetStdColorBrushI
98GetStdColorI
99GetStdColorName
100GetStdColorPenI
101GetStdPalette
102InitGadgetComponent
103InitGadgets
104InvalidateGadget
105InvalidateLayeredDescendants
106IsGadgetParentChainStyle
107IsInsideContext
108IsStartDelete
109LookupGadgetTicket
110MapGadgetPoints
111PeekMessageExA
112PeekMessageExW
113RegisterGadgetMessage
114RegisterGadgetMessageString
115RegisterGadgetProperty
116ReleaseDetachedObjects
117ReleaseLayeredRef
118ReleaseMouseCapture
119RemoveClippingImmunityFromVisual
120RemoveGadgetMessageHandler
121RemoveGadgetProperty
122ResetDUserDevice
123ScheduleGadgetTransitions
124SetActionTimeslice
125SetAtlasingHints
126SetGadgetBufferInfo
127SetGadgetCenterPoint
128SetGadgetFillF
129SetGadgetFillI
130SetGadgetFlags
131SetGadgetFocus
132SetGadgetFocusEx
133SetGadgetLayerInfo
134SetGadgetMessageFilter
135SetGadgetOrder
136SetGadgetParent
137SetGadgetProperty
138SetGadgetRect
139SetGadgetRootInfo
140SetGadgetRotation
141SetGadgetScale
142SetGadgetStyle
143SetHardwareDeviceUsage
144SetMinimumDCompVersion
145SetRestoreCachedLayeredRefFlag
146SetTransitionVisualProperties
147SetWindowResizeFlag
148UnregisterGadgetMessage
149UnregisterGadgetMessageString
150UnregisterGadgetProperty
151UtilBuildFont
152UtilDrawBlendRect
153UtilGetColor
154UtilSetBackground
155WaitMessageEx
lib/libc/mingw/libarm32/igddiag.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of igdDiag.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "igdDiag.DLL"
7EXPORTS
8DetectNAT
lib/libc/mingw/libarm32/ikeext.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of ikeext.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ikeext.dll"
7EXPORTS
8IkeServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/iphlpsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of iphlpsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iphlpsvc.dll"
7EXPORTS
8IphlpsvcSysprepGeneralize
9ServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/libarm32/ipsecsvc.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of IPSECSVC.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "IPSECSVC.DLL"
7EXPORTS
8SpdServiceMain
lib/libc/mingw/libarm32/iuilp.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of iuilp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iuilp.dll"
7EXPORTS
8GetDefaultLauncherLayout
9GetDefaultAppsList
10GetLayoutPolicyCheckerInstance
11GetLayoutPolicy
12CloseLayoutPolicyCheckerInstance
13GetAllDefaultApps
14GetCategoryForAppUserModelID
15GetUpgradeHighlightStatusForAppID
16GetWindows8UpgradeReplacementAppID
lib/libc/mingw/libarm32/jscript9.def created+100
......@@ -0,0 +1,100 @@
1;
2; Definition file of JSCRIPT9.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "JSCRIPT9.dll"
7EXPORTS
8JsAddRef
9JsBoolToBoolean
10JsBooleanToBool
11JsCallFunction
12JsCollectGarbage
13JsConstructObject
14JsConvertValueToBoolean
15JsConvertValueToNumber
16JsConvertValueToObject
17JsConvertValueToString
18JsCreateArray
19JsCreateContext
20JsCreateError
21JsCreateExternalObject
22JsCreateExternalType
23JsCreateFunction
24JsCreateObject
25JsCreateRangeError
26JsCreateReferenceError
27JsCreateRuntime
28JsCreateSyntaxError
29JsCreateTypeError
30JsCreateTypedExternalObject
31JsCreateURIError
32JsDefineProperty
33JsDeleteIndexedProperty
34JsDeleteProperty
35JsDisableRuntimeExecution
36JsDisposeRuntime
37JsDoubleToNumber
38JsEnableRuntimeExecution
39JsEnumerateHeap
40JsEquals
41JsGetAndClearException
42JsGetCurrentContext
43JsGetDefaultTypeDescription
44JsGetExtensionAllowed
45JsGetExternalData
46JsGetExternalType
47JsGetFalseValue
48JsGetGlobalObject
49JsGetIndexedProperty
50JsGetNullValue
51JsGetOwnPropertyDescriptor
52JsGetOwnPropertyNames
53JsGetProperty
54JsGetPropertyIdFromName
55JsGetPropertyNameFromId
56JsGetPrototype
57JsGetRuntime
58JsGetRuntimeMemoryLimit
59JsGetRuntimeMemoryUsage
60JsGetStringLength
61JsGetTrueValue
62JsGetUndefinedValue
63JsGetValueType
64JsHasException
65JsHasExternalData
66JsHasIndexedProperty
67JsHasProperty
68JsIdle
69JsIntToNumber
70JsIsEnumeratingHeap
71JsIsRuntimeExecutionDisabled
72JsNumberToDouble
73JsParseScript
74JsParseSerializedScript
75JsPointerToString
76JsPreventExtension
77JsRelease
78JsRunScript
79JsRunSerializedScript
80JsSerializeScript
81JsSetCurrentContext
82JsSetException
83JsSetExternalData
84JsSetIndexedProperty
85JsSetProperty
86JsSetPrototype
87JsSetRuntimeBeforeCollectCallback
88JsSetRuntimeMemoryAllocationCallback
89JsSetRuntimeMemoryLimit
90JsStartDebugging
91JsStartProfiling
92JsStopProfiling
93JsStrictEquals
94JsStringToPointer
95JsValueToVariant
96JsVarAddRef
97JsVarRelease
98JsVarToExtension
99JsVarToScriptDirect
100JsVariantToValue
lib/libc/mingw/libarm32/jscript9diag.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of JSCRIPT9DIAG.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "JSCRIPT9DIAG.dll"
7EXPORTS
8FreeDumpStreams
9GetDumpStreams
lib/libc/mingw/libarm32/kd.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of KD.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "KD.dll"
7EXPORTS
8KdD0Transition
9KdD3Transition
10KdDebuggerInitialize0
11KdDebuggerInitialize1
12KdReceivePacket
13KdRestore
14KdSave
15KdSendPacket
16KdSetHiberRange
lib/libc/mingw/libarm32/kdscli.def created+55
......@@ -0,0 +1,55 @@
1;
2; Definition file of KdsCli.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "KdsCli.dll"
7EXPORTS
8CreateRootKey
9DeleteAllCachedKeys
10FindAndReadSIDKeyInCache
11FindKeyForOfflineUsage
12FreeRootKey
13FreeRootKeyConfig
14FreeRootKeyMetaDataList
15FreeServerConfig
16GenerateDerivedKey
17GenerateEphemeralKeyPair
18GenerateKDFContext
19GenerateSIDPublicKeyBlob
20GenerateSecretAgreementPrivateKey
21GetAllRootKeys
22GetAllRootKeysMetaData
23GetAndLockCachedRPCBinding
24GetCachedMachineDomainInfo
25GetCurrentIntervalID
26GetCurrentL0ID
27GetCurrentTimeInULL
28GetDCInfo
29GetDefaultServerConfig
30GetFullDCName
31GetIntervalStartTime
32GetKDSSrvConfigPath
33GetKdsKeyCycleDuration
34GetKey
35GetLdapBinding
36GetMRKPath
37GetRootKey
38GetSIDKeyCacheFolder
39GetSIDKeyFileName
40GetServerConfig
41GetUserSidStr
42KdsCreateClientBinding
43KdsGetEpochLength
44KdsGetGmsaPasswordBasedOnKeyId
45KdsGetGmsaPasswordBasedOnTimestamp
46KdsGetKeyStartTime
47SIDKeyProtect
48SIDKeyProvAlloc
49SIDKeyProvFree
50SIDKeyUnprotect
51SetServerConfig
52TestServerConfig
53UnlockRpcCache
54ValidateSrvConfig
55WriteSIDKeyInCache
lib/libc/mingw/libarm32/kdusb.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of KDUSB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "KDUSB.dll"
7EXPORTS
8KdD0Transition
9KdD3Transition
10KdDebuggerInitialize0
11KdDebuggerInitialize1
12KdReceivePacket
13KdRestore
14KdSave
15KdSendPacket
16KdSetHiberRange
lib/libc/mingw/libarm32/keepaliveprovider.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of KEEPALIVEPROVIDER.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "KEEPALIVEPROVIDER.DLL"
7EXPORTS
8KAMSS_DeregisterProvider
9KAMSS_RegisterProvider
lib/libc/mingw/libarm32/kerberos.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of Kerberos.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Kerberos.dll"
7EXPORTS
8SpInitialize
9KerbDomainChangeCallback
10SpLsaModeInitialize
11SpUserModeInitialize
12KerbCreateTokenFromTicket
13KerbIsInitialized
14KerbKdcCallBack
15KerbMakeKdcCall
16Kerberos
17SpInstanceInit
lib/libc/mingw/libarm32/kernel.appcore.def created+126
......@@ -0,0 +1,126 @@
1;
2; Definition file of AppCore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "AppCore.dll"
7EXPORTS
8AcquireStateLock
9AppContainerDeriveSidFromMoniker
10AppContainerFreeMemory
11AppContainerLookupDisplayNameMrtReference
12AppContainerLookupMoniker
13AppContainerRegisterSid
14AppContainerUnregisterSid
15AppXFreeMemory
16AppXGetApplicationData
17AppXGetDevelopmentMode
18AppXGetOSMaxVersionTested
19AppXGetOSMinVersion
20AppXGetPackageCapabilities
21AppXGetPackageSid
22AppXGetPackageState
23AppXLookupDisplayName
24AppXLookupMoniker
25AppXSetPackageState
26CheckIfStateChangeNotificationExists
27ClosePackageInfo
28CloseState
29CloseStateAtom
30CloseStateChangeNotification
31CloseStateContainer
32CloseStateLock
33CommitStateAtom
34CreateStateAtom
35CreateStateChangeNotification
36CreateStateContainer
37CreateStateLock
38CreateStateSubcontainer
39DeleteStateAtomValue
40DeleteStateContainer
41DeleteStateContainerValue
42DuplicateStateContainerHandle
43EnumerateStateAtomValues
44EnumerateStateContainerItems
45FindPackagesByPackageFamily
46FormatApplicationUserModelId
47GetAppModelVersion
48GetApplicationUserModelId
49GetCurrentApplicationUserModelId
50GetCurrentPackageApplicationContext
51GetCurrentPackageApplicationResourcesContext
52GetCurrentPackageContext
53GetCurrentPackageFamilyName
54GetCurrentPackageFullName
55GetCurrentPackageId
56GetCurrentPackageInfo
57GetCurrentPackagePath
58GetCurrentPackageResourcesContext
59GetCurrentPackageSecurityContext
60GetHivePath
61GetPackageApplicationContext
62GetPackageApplicationIds
63GetPackageApplicationProperty
64GetPackageApplicationPropertyString
65GetPackageApplicationResourcesContext
66GetPackageContext
67GetPackageFamilyName
68GetPackageFullName
69GetPackageId
70GetPackageInfo
71GetPackageInstallTime
72GetPackageOSMaxVersionTested
73GetPackagePath
74GetPackagePathByFullName
75GetPackageProperty
76GetPackagePropertyString
77GetPackageResourcesContext
78GetPackageResourcesProperty
79GetPackageSecurityContext
80GetPackageSecurityProperty
81GetPackagesByPackageFamily
82GetRoamingLastObservedChangeTime
83GetSerializedAtomBytes
84GetStagedPackageOrigin
85GetStagedPackagePathByFullName
86GetStateContainerDepth
87GetStateFolder
88GetStateRootFolder
89GetStateSettingsFolder
90GetStateVersion
91GetSystemAppDataFolder
92GetSystemAppDataKey
93InvalidateAppModelVersionCache
94OpenPackageInfoByFullName
95OpenState
96OpenStateAtom
97OpenStateExplicit
98OverrideRoamingDataModificationTimesInRange
99PackageFamilyNameFromFullName
100PackageFamilyNameFromId
101PackageFullNameFromId
102PackageIdFromFullName
103PackageNameAndPublisherIdFromFamilyName
104ParseApplicationUserModelId
105PsmActivateApplicationByToken
106PsmAdjustActivationToken
107PsmCreateMatchToken
108PsmQueryBackgroundActivationType
109PsmRegisterApplicationProcess
110PublishStateChangeNotification
111QueryStateAtomValueInfo
112QueryStateContainerItemInfo
113ReadStateAtomValue
114ReadStateContainerValue
115RegisterStateChangeNotification
116RegisterStateLock
117ReleaseStateLock
118ResetState
119SetRoamingLastObservedChangeTime
120SetStateVersion
121SubscribeStateChangeNotification
122UnregisterStateChangeNotification
123UnregisterStateLock
124UnsubscribeStateChangeNotification
125WriteStateAtomValue
126WriteStateContainerValue
lib/libc/mingw/libarm32/kernelbase.def created+1909
......@@ -0,0 +1,1909 @@
1;
2; Definition file of KERNELBASE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "KERNELBASE.dll"
7EXPORTS
8PackageSidFromProductId
9AccessCheck
10AccessCheckAndAuditAlarmW
11AccessCheckByType
12AccessCheckByTypeAndAuditAlarmW
13AccessCheckByTypeResultList
14AccessCheckByTypeResultListAndAuditAlarmByHandleW
15AccessCheckByTypeResultListAndAuditAlarmW
16AcquireSRWLockExclusive
17AcquireSRWLockShared
18AcquireStateLock
19ActivateActCtx
20AddAccessAllowedAce
21AddAccessAllowedAceEx
22AddAccessAllowedObjectAce
23AddAccessDeniedAce
24AddAccessDeniedAceEx
25AddAccessDeniedObjectAce
26AddAce
27AddAuditAccessAce
28AddAuditAccessAceEx
29AddAuditAccessObjectAce
30AddConsoleAliasA
31AddConsoleAliasW
32AddDllDirectory
33AddExtensionProgId
34AddMandatoryAce
35AddPackageToFamilyXref
36AddRefActCtx
37AddResourceAttributeAce
38AddSIDToBoundaryDescriptor
39AddScopedPolicyIDAce
40AddVectoredContinueHandler
41AddVectoredExceptionHandler
42AdjustTokenGroups
43AdjustTokenPrivileges
44AllocConsole
45AllocateAndInitializeSid
46AllocateLocallyUniqueId
47AllocateUserPhysicalPages
48AllocateUserPhysicalPagesNuma
49AppContainerDeriveSidFromMoniker
50AppContainerFreeMemory
51AppContainerLookupDisplayNameMrtReference
52AppContainerLookupMoniker
53AppContainerRegisterSid
54AppContainerUnregisterSid
55AppPolicyGetClrCompat
56AppPolicyGetCreateFileAccess
57AppPolicyGetLifecycleManagement
58AppPolicyGetMediaFoundationCodecLoading
59AppPolicyGetProcessTerminationMethod
60AppPolicyGetShowDeveloperDiagnostic
61AppPolicyGetThreadInitializationType
62AppPolicyGetWindowingModel
63AppXFreeMemory
64AppXGetApplicationData
65AppXGetDevelopmentMode
66AppXGetOSMaxVersionTested
67AppXGetOSMinVersion
68AppXGetPackageCapabilities
69AppXGetPackageSid
70AppXGetPackageState
71AppXLookupDisplayName
72AppXLookupMoniker
73AppXPostSuccessExtension
74AppXPreCreationExtension
75AppXReleaseAppXContext
76AppXSetPackageState
77AppXUpdatePackageCapabilities
78ApplicationUserModelIdFromProductId
79AreAllAccessesGranted
80AreAnyAccessesGranted
81AreFileApisANSI
82AreThereVisibleLogoffScriptsInternal
83AreThereVisibleShutdownScriptsInternal
84AttachConsole
85BaseCheckAppcompatCache
86BaseCheckAppcompatCacheEx
87BaseCleanupAppcompatCacheSupport
88BaseDllFreeResourceId
89BaseDllMapResourceIdW
90BaseDumpAppcompatCache
91BaseFlushAppcompatCache
92BaseFormatObjectAttributes
93BaseFreeAppCompatDataForProcess
94BaseGetConsoleReference
95BaseGetNamedObjectDirectory
96BaseInitAppcompatCacheSupport
97BaseIsAppcompatInfrastructureDisabled
98BaseMarkFileForDelete
99BaseReadAppCompatDataForProcess
100BaseUpdateAppcompatCache
101BasepAdjustObjectAttributesForPrivateNamespace
102BasepCopyFileCallback
103BasepCopyFileExW
104BasepNotifyTrackingService
105Beep
106BemCopyReference
107BemCreateContractFrom
108BemCreateReference
109BemFreeContract
110BemFreeReference
111CLOSE_LOCAL_HANDLE_INTERNAL
112CallEnclave
113CallNamedPipeW
114CallbackMayRunLong
115CancelIo
116CancelIoEx
117CancelSynchronousIo
118CancelThreadpoolIo
119CancelWaitableTimer
120CeipIsOptedIn
121ChangeTimerQueueTimer
122CharLowerA
123CharLowerBuffA
124CharLowerBuffW
125CharLowerW
126CharNextA
127CharNextExA
128CharNextW
129CharPrevA
130CharPrevExA
131CharPrevW
132CharUpperA
133CharUpperBuffA
134CharUpperBuffW
135CharUpperW
136CheckAllowDecryptedRemoteDestinationPolicy
137CheckGroupPolicyEnabled
138CheckIfStateChangeNotificationExists
139CheckRemoteDebuggerPresent
140CheckTokenCapability
141CheckTokenMembership
142CheckTokenMembershipEx
143ChrCmpIA
144ChrCmpIW
145ClearCommBreak
146ClearCommError
147CloseHandle
148ClosePackageInfo
149ClosePrivateNamespace
150ClosePseudoConsole
151CloseState
152CloseStateAtom
153CloseStateChangeNotification
154CloseStateContainer
155CloseStateLock
156CloseThreadpool
157CloseThreadpoolCleanupGroup
158CloseThreadpoolCleanupGroupMembers
159CloseThreadpoolIo
160CloseThreadpoolTimer
161CloseThreadpoolWait
162CloseThreadpoolWork
163CommitStateAtom
164CompareFileTime
165CompareObjectHandles
166CompareStringA
167CompareStringEx
168CompareStringOrdinal
169CompareStringW
170ConnectNamedPipe
171ContinueDebugEvent
172ConvertAuxiliaryCounterToPerformanceCounter
173ConvertDefaultLocale
174ConvertFiberToThread
175ConvertPerformanceCounterToAuxiliaryCounter
176ConvertThreadToFiber
177ConvertThreadToFiberEx
178ConvertToAutoInheritPrivateObjectSecurity
179CopyContext
180CopyFile2
181CopyFileExW
182CopyFileW
183CopySid
184CouldMultiUserAppsBehaviorBePossibleForPackage
185CreateActCtxW
186CreateAppContainerToken
187CreateBoundaryDescriptorW
188CreateConsoleScreenBuffer
189CreateDirectoryA
190CreateDirectoryExW
191CreateDirectoryW
192CreateEnclave
193CreateEventA
194CreateEventExA
195CreateEventExW
196CreateEventW
197CreateFiber
198CreateFiberEx
199CreateFile2
200CreateFileA
201CreateFileMapping2
202CreateFileMappingFromApp
203CreateFileMappingNumaW
204CreateFileMappingW
205CreateFileW
206CreateHardLinkA
207CreateHardLinkW
208CreateIoCompletionPort
209CreateMemoryResourceNotification
210CreateMutexA
211CreateMutexExA
212CreateMutexExW
213CreateMutexW
214CreateNamedPipeW
215CreatePipe
216CreatePrivateNamespaceW
217CreatePrivateObjectSecurity
218CreatePrivateObjectSecurityEx
219CreatePrivateObjectSecurityWithMultipleInheritance
220CreateProcessA
221CreateProcessAsUserA
222CreateProcessAsUserW
223CreateProcessInternalA
224CreateProcessInternalW
225CreateProcessW
226CreatePseudoConsole
227CreatePseudoConsoleAsUser
228CreateRemoteThread
229CreateRemoteThreadEx
230CreateRestrictedToken
231CreateSemaphoreExW
232CreateSemaphoreW
233CreateStateAtom
234CreateStateChangeNotification
235CreateStateContainer
236CreateStateLock
237CreateStateSubcontainer
238CreateSymbolicLinkW
239CreateThread
240CreateThreadpool
241CreateThreadpoolCleanupGroup
242CreateThreadpoolIo
243CreateThreadpoolTimer
244CreateThreadpoolWait
245CreateThreadpoolWork
246CreateTimerQueue
247CreateTimerQueueTimer
248CreateWaitableTimerExW
249CreateWaitableTimerW
250CreateWellKnownSid
251CtrlRoutine
252CveEventWrite
253DeactivateActCtx
254DebugActiveProcess
255DebugActiveProcessStop
256DebugBreak
257DecodePointer
258DecodeRemotePointer
259DecodeSystemPointer
260DefineDosDeviceW
261DelayLoadFailureHook
262DelayLoadFailureHookLookup
263DeleteAce
264DeleteBoundaryDescriptor
265DeleteCriticalSection
266DeleteEnclave
267DeleteFiber
268DeleteFileA
269DeleteFileW
270DeleteProcThreadAttributeList
271DeleteStateAtomValue
272DeleteStateContainer
273DeleteStateContainerValue
274DeleteSynchronizationBarrier
275DeleteTimerQueueEx
276DeleteTimerQueueTimer
277DeleteVolumeMountPointW
278DeriveCapabilitySidsFromName
279DestroyPrivateObjectSecurity
280DeviceIoControl
281DisablePredefinedHandleTableInternal
282DisableThreadLibraryCalls
283DisassociateCurrentThreadFromCallback
284DiscardVirtualMemory
285DisconnectNamedPipe
286DnsHostnameToComputerNameExW
287DsBindWithSpnExW
288DsCrackNamesW
289DsFreeDomainControllerInfoW
290DsFreeNameResultW
291DsFreeNgcKey
292DsFreePasswordCredentials
293DsGetDomainControllerInfoW
294DsMakePasswordCredentialsW
295DsReadNgcKeyW
296DsUnBindW
297DsWriteNgcKeyW
298DuplicateHandle
299DuplicateStateContainerHandle
300DuplicateToken
301DuplicateTokenEx
302EmptyWorkingSet
303EncodePointer
304EncodeRemotePointer
305EncodeSystemPointer
306EnterCriticalPolicySectionInternal
307EnterCriticalSection
308EnterSynchronizationBarrier
309EnumCalendarInfoExEx
310EnumCalendarInfoExW
311EnumCalendarInfoW
312EnumDateFormatsExEx
313EnumDateFormatsExW
314EnumDateFormatsW
315EnumDeviceDrivers
316EnumDynamicTimeZoneInformation
317EnumLanguageGroupLocalesW
318EnumPageFilesA
319EnumPageFilesW
320EnumProcessModules
321EnumProcessModulesEx
322EnumProcesses
323EnumResourceLanguagesExA
324EnumResourceLanguagesExW
325EnumResourceNamesExA
326EnumResourceNamesExW
327EnumResourceNamesW
328EnumResourceTypesExA
329EnumResourceTypesExW
330EnumSystemCodePagesW
331EnumSystemFirmwareTables
332EnumSystemGeoID
333EnumSystemGeoNames
334EnumSystemLanguageGroupsW
335EnumSystemLocalesA
336EnumSystemLocalesEx
337EnumSystemLocalesW
338EnumTimeFormatsEx
339EnumTimeFormatsW
340EnumUILanguagesW
341EnumerateExtensionNames
342EnumerateStateAtomValues
343EnumerateStateContainerItems
344EqualDomainSid
345EqualPrefixSid
346EqualSid
347EscapeCommFunction
348EventActivityIdControl
349EventEnabled
350EventProviderEnabled
351EventRegister
352EventSetInformation
353EventUnregister
354EventWrite
355EventWriteEx
356EventWriteString
357EventWriteTransfer
358ExitProcess
359ExitThread
360ExpandEnvironmentStringsA
361ExpandEnvironmentStringsW
362ExpungeConsoleCommandHistoryA
363ExpungeConsoleCommandHistoryW
364ExtensionProgIdExists
365FatalAppExitA
366FatalAppExitW
367FileTimeToLocalFileTime
368FileTimeToSystemTime
369FillConsoleOutputAttribute
370FillConsoleOutputCharacterA
371FillConsoleOutputCharacterW
372FindActCtxSectionGuid
373FindActCtxSectionStringW
374FindClose
375FindCloseChangeNotification
376FindFirstChangeNotificationA
377FindFirstChangeNotificationW
378FindFirstFileA
379FindFirstFileExA
380FindFirstFileExW
381FindFirstFileNameW
382FindFirstFileW
383FindFirstFreeAce
384FindFirstStreamW
385FindFirstVolumeW
386FindNLSString
387FindNLSStringEx
388FindNextChangeNotification
389FindNextFileA
390FindNextFileNameW
391FindNextFileW
392FindNextStreamW
393FindNextVolumeW
394FindPackagesByPackageFamily
395FindResourceExW
396FindResourceW
397FindStringOrdinal
398FindVolumeClose
399FlsAlloc
400FlsFree
401FlsGetValue
402FlsSetValue
403FlushConsoleInputBuffer
404FlushFileBuffers
405FlushInstructionCache
406FlushProcessWriteBuffers
407FlushViewOfFile
408FoldStringW
409ForceSyncFgPolicyInternal
410FormatApplicationUserModelId
411FormatApplicationUserModelIdA
412FormatMessageA
413FormatMessageW
414FreeConsole
415FreeEnvironmentStringsA
416FreeEnvironmentStringsW
417FreeGPOListInternalA
418FreeGPOListInternalW
419FreeLibrary
420FreeLibraryAndExitThread
421FreeLibraryWhenCallbackReturns
422FreeResource
423FreeSid
424FreeUserPhysicalPages
425GenerateConsoleCtrlEvent
426GenerateGPNotificationInternal
427GetACP
428GetAcceptLanguagesA
429GetAcceptLanguagesW
430GetAce
431GetAclInformation
432GetAdjustObjectAttributesForPrivateNamespaceRoutine
433GetAlternatePackageRoots
434GetAppContainerAce
435GetAppContainerNamedObjectPath
436GetAppDataFolder
437GetAppModelVersion
438GetApplicationRecoveryCallback
439GetApplicationRestartSettings
440GetApplicationUserModelId
441GetApplicationUserModelIdFromToken
442GetAppliedGPOListInternalA
443GetAppliedGPOListInternalW
444GetCPFileNameFromRegistry
445GetCPHashNode
446GetCPInfo
447GetCPInfoExW
448GetCachedSigningLevel
449GetCalendar
450GetCalendarInfoEx
451GetCalendarInfoW
452GetCommConfig
453GetCommMask
454GetCommModemStatus
455GetCommPorts
456GetCommProperties
457GetCommState
458GetCommTimeouts
459GetCommandLineA
460GetCommandLineW
461GetCompressedFileSizeA
462GetCompressedFileSizeW
463GetComputerNameExA
464GetComputerNameExW
465GetConsoleAliasA
466GetConsoleAliasExesA
467GetConsoleAliasExesLengthA
468GetConsoleAliasExesLengthW
469GetConsoleAliasExesW
470GetConsoleAliasW
471GetConsoleAliasesA
472GetConsoleAliasesLengthA
473GetConsoleAliasesLengthW
474GetConsoleAliasesW
475GetConsoleCP
476GetConsoleCommandHistoryA
477GetConsoleCommandHistoryLengthA
478GetConsoleCommandHistoryLengthW
479GetConsoleCommandHistoryW
480GetConsoleCursorInfo
481GetConsoleDisplayMode
482GetConsoleFontSize
483GetConsoleHistoryInfo
484GetConsoleInputExeNameA
485GetConsoleInputExeNameW
486GetConsoleMode
487GetConsoleOriginalTitleA
488GetConsoleOriginalTitleW
489GetConsoleOutputCP
490GetConsoleProcessList
491GetConsoleScreenBufferInfo
492GetConsoleScreenBufferInfoEx
493GetConsoleSelectionInfo
494GetConsoleTitleA
495GetConsoleTitleW
496GetConsoleWindow
497GetCurrencyFormatEx
498GetCurrencyFormatW
499GetCurrentActCtx
500GetCurrentApplicationUserModelId
501GetCurrentConsoleFont
502GetCurrentConsoleFontEx
503GetCurrentDirectoryA
504GetCurrentDirectoryW
505GetCurrentPackageApplicationContext
506GetCurrentPackageApplicationResourcesContext
507GetCurrentPackageContext
508GetCurrentPackageFamilyName
509GetCurrentPackageFullName
510GetCurrentPackageId
511GetCurrentPackageInfo
512GetCurrentPackageInfo2
513GetCurrentPackagePath
514GetCurrentPackagePath2
515GetCurrentPackageResourcesContext
516GetCurrentPackageSecurityContext
517GetCurrentProcess
518GetCurrentProcessId
519GetCurrentProcessorNumber
520GetCurrentProcessorNumberEx
521GetCurrentTargetPlatformContext
522GetCurrentThread
523GetCurrentThreadId
524GetCurrentThreadStackLimits
525GetDateFormatA
526GetDateFormatEx
527GetDateFormatW
528GetDeviceDriverBaseNameA
529GetDeviceDriverBaseNameW
530GetDeviceDriverFileNameA
531GetDeviceDriverFileNameW
532GetDiskFreeSpaceA
533GetDiskFreeSpaceExA
534GetDiskFreeSpaceExW
535GetDiskFreeSpaceW
536GetDiskSpaceInformationA
537GetDiskSpaceInformationW
538GetDriveTypeA
539GetDriveTypeW
540GetDurationFormatEx
541GetDynamicTimeZoneInformation
542GetDynamicTimeZoneInformationEffectiveYears
543GetEffectivePackageStatusForUser
544GetEffectivePackageStatusForUserSid
545GetEightBitStringToUnicodeSizeRoutine
546GetEightBitStringToUnicodeStringRoutine
547GetEnvironmentStrings
548GetEnvironmentStringsA
549GetEnvironmentStringsW
550GetEnvironmentVariableA
551GetEnvironmentVariableW
552GetEraNameCountedString
553GetErrorMode
554GetExitCodeProcess
555GetExitCodeThread
556GetExtensionApplicationUserModelId
557GetExtensionProgIds
558GetExtensionProperty
559GetExtensionProperty2
560GetFallbackDisplayName
561GetFileAttributesA
562GetFileAttributesExA
563GetFileAttributesExW
564GetFileAttributesW
565GetFileInformationByHandle
566GetFileInformationByHandleEx
567GetFileMUIInfo
568GetFileMUIPath
569GetFileSecurityW
570GetFileSize
571GetFileSizeEx
572GetFileTime
573GetFileType
574GetFileVersionInfoA
575GetFileVersionInfoByHandle
576GetFileVersionInfoExA
577GetFileVersionInfoExW
578GetFileVersionInfoSizeA
579GetFileVersionInfoSizeExA
580GetFileVersionInfoSizeExW
581GetFileVersionInfoSizeW
582GetFileVersionInfoW
583GetFinalPathNameByHandleA
584GetFinalPathNameByHandleW
585GetFullPathNameA
586GetFullPathNameW
587GetGPOListInternalA
588GetGPOListInternalW
589GetGamingDeviceModelInformation
590GetGeoInfoEx
591GetGeoInfoW
592GetHandleInformation
593GetHivePath
594GetIntegratedDisplaySize
595GetIsEdpEnabled
596GetIsWdagEnabled
597GetKernelObjectSecurity
598GetLargePageMinimum
599GetLargestConsoleWindowSize
600GetLastError
601GetLengthSid
602GetLocalTime
603GetLocaleInfoA
604GetLocaleInfoEx
605GetLocaleInfoHelper
606GetLocaleInfoW
607GetLogicalDriveStringsW
608GetLogicalDrives
609GetLogicalProcessorInformation
610GetLogicalProcessorInformationEx
611GetLongPathNameA
612GetLongPathNameW
613GetMappedFileNameA
614GetMappedFileNameW
615GetMemoryErrorHandlingCapabilities
616GetModuleBaseNameA
617GetModuleBaseNameW
618GetModuleFileNameA
619GetModuleFileNameExA
620GetModuleFileNameExW
621GetModuleFileNameW
622GetModuleHandleA
623GetModuleHandleExA
624GetModuleHandleExW
625GetModuleHandleW
626GetModuleInformation
627GetNLSVersion
628GetNLSVersionEx
629GetNamedLocaleHashNode
630GetNamedPipeAttribute
631GetNamedPipeClientComputerNameW
632GetNamedPipeHandleStateW
633GetNamedPipeInfo
634GetNativeSystemInfo
635GetNextFgPolicyRefreshInfoInternal
636GetNumaHighestNodeNumber
637GetNumaNodeProcessorMaskEx
638GetNumaProximityNodeEx
639GetNumberFormatEx
640GetNumberFormatW
641GetNumberOfConsoleInputEvents
642GetNumberOfConsoleMouseButtons
643GetOEMCP
644GetOsManufacturingMode
645GetOsSafeBootMode
646GetOverlappedResult
647GetOverlappedResultEx
648GetPackageApplicationContext
649GetPackageApplicationIds
650GetPackageApplicationProperty
651GetPackageApplicationPropertyString
652GetPackageApplicationResourcesContext
653GetPackageContext
654GetPackageFamilyName
655GetPackageFamilyNameFromProgId
656GetPackageFamilyNameFromToken
657GetPackageFullName
658GetPackageFullNameFromToken
659GetPackageId
660GetPackageInfo
661GetPackageInfo2
662GetPackageInstallTime
663GetPackageOSMaxVersionTested
664GetPackagePath
665GetPackagePathByFullName
666GetPackagePathByFullName2
667GetPackagePathOnVolume
668GetPackageProperty
669GetPackagePropertyString
670GetPackageResourcesContext
671GetPackageResourcesProperty
672GetPackageSecurityContext
673GetPackageSecurityProperty
674GetPackageStatus
675GetPackageStatusForUser
676GetPackageStatusForUserSid
677GetPackageTargetPlatformProperty
678GetPackageVolumeSisPath
679GetPackagesByPackageFamily
680GetPerformanceInfo
681GetPersistedFileLocationW
682GetPersistedRegistryLocationW
683GetPersistedRegistryValueW
684GetPhysicallyInstalledSystemMemory
685GetPreviousFgPolicyRefreshInfoInternal
686GetPriorityClass
687GetPrivateObjectSecurity
688GetProcAddress
689GetProcAddressForCaller
690GetProcessDefaultCpuSets
691GetProcessGroupAffinity
692GetProcessHandleCount
693GetProcessHeap
694GetProcessHeaps
695GetProcessId
696GetProcessIdOfThread
697GetProcessImageFileNameA
698GetProcessImageFileNameW
699GetProcessInformation
700GetProcessMemoryInfo
701GetProcessMitigationPolicy
702GetProcessPreferredUILanguages
703GetProcessPriorityBoost
704GetProcessShutdownParameters
705GetProcessTimes
706GetProcessVersion
707GetProcessWorkingSetSizeEx
708GetProcessorSystemCycleTime
709GetProductInfo
710GetProtocolAumid
711GetProtocolProperty
712GetPtrCalData
713GetPtrCalDataArray
714GetPublisherCacheFolder
715GetPublisherRootFolder
716GetQueuedCompletionStatus
717GetQueuedCompletionStatusEx
718GetRegistryExtensionFlags
719GetRegistryValueWithFallbackW
720GetRoamingLastObservedChangeTime
721GetSecureSystemAppDataFolder
722GetSecurityDescriptorControl
723GetSecurityDescriptorDacl
724GetSecurityDescriptorGroup
725GetSecurityDescriptorLength
726GetSecurityDescriptorOwner
727GetSecurityDescriptorRMControl
728GetSecurityDescriptorSacl
729GetSerializedAtomBytes
730GetSharedLocalFolder
731GetShortPathNameW
732GetSidIdentifierAuthority
733GetSidLengthRequired
734GetSidSubAuthority
735GetSidSubAuthorityCount
736GetStagedPackageOrigin
737GetStagedPackagePathByFullName
738GetStagedPackagePathByFullName2
739GetStartupInfoW
740GetStateContainerDepth
741GetStateFolder
742GetStateRootFolder
743GetStateRootFolderBase
744GetStateSettingsFolder
745GetStateVersion
746GetStdHandle
747GetStringScripts
748GetStringTableEntry
749GetStringTypeA
750GetStringTypeExW
751GetStringTypeW
752GetSystemAppDataFolder
753GetSystemAppDataKey
754GetSystemCpuSetInformation
755GetSystemDefaultLCID
756GetSystemDefaultLangID
757GetSystemDefaultLocaleName
758GetSystemDefaultUILanguage
759GetSystemDirectoryA
760GetSystemDirectoryW
761GetSystemFileCacheSize
762GetSystemFirmwareTable
763GetSystemInfo
764GetSystemLeapSecondInformation
765GetSystemMetadataPath
766GetSystemMetadataPathForPackage
767GetSystemMetadataPathForPackageFamily
768GetSystemPreferredUILanguages
769GetSystemStateRootFolder
770GetSystemTime
771GetSystemTimeAdjustment
772GetSystemTimeAdjustmentPrecise
773GetSystemTimeAsFileTime
774GetSystemTimePreciseAsFileTime
775GetSystemTimes
776GetSystemWindowsDirectoryA
777GetSystemWindowsDirectoryW
778GetSystemWow64Directory2A
779GetSystemWow64Directory2W
780GetSystemWow64DirectoryA
781GetSystemWow64DirectoryW
782GetTargetPlatformContext
783GetTempFileNameA
784GetTempFileNameW
785GetTempPathA
786GetTempPathW
787GetThreadContext
788GetThreadDescription
789GetThreadErrorMode
790GetThreadGroupAffinity
791GetThreadIOPendingFlag
792GetThreadId
793GetThreadIdealProcessorEx
794GetThreadInformation
795GetThreadLocale
796GetThreadPreferredUILanguages
797GetThreadPriority
798GetThreadPriorityBoost
799GetThreadSelectedCpuSets
800GetThreadTimes
801GetThreadUILanguage
802GetTickCount
803GetTickCount64
804GetTimeFormatA
805GetTimeFormatEx
806GetTimeFormatW
807GetTimeZoneInformation
808GetTimeZoneInformationForYear
809GetTokenInformation
810GetTraceEnableFlags
811GetTraceEnableLevel
812GetTraceLoggerHandle
813GetUILanguageInfo
814GetUnicodeStringToEightBitSizeRoutine
815GetUnicodeStringToEightBitStringRoutine
816GetUserDefaultGeoName
817GetUserDefaultLCID
818GetUserDefaultLangID
819GetUserDefaultLocaleName
820GetUserDefaultUILanguage
821GetUserGeoID
822GetUserInfo
823GetUserInfoWord
824GetUserOverrideString
825GetUserOverrideWord
826GetUserPreferredUILanguages
827GetVersion
828GetVersionExA
829GetVersionExW
830GetVolumeInformationA
831GetVolumeInformationByHandleW
832GetVolumeInformationW
833GetVolumeNameForVolumeMountPointW
834GetVolumePathNameW
835GetVolumePathNamesForVolumeNameW
836GetWindowsAccountDomainSid
837GetWindowsDirectoryA
838GetWindowsDirectoryW
839GetWriteWatch
840GetWsChanges
841GetWsChangesEx
842GlobalAlloc
843GlobalFree
844GlobalMemoryStatusEx
845GuardCheckLongJumpTarget
846HasPolicyForegroundProcessingCompletedInternal
847HashData
848HeapAlloc
849HeapCompact
850HeapCreate
851HeapDestroy
852HeapFree
853HeapLock
854HeapQueryInformation
855HeapReAlloc
856HeapSetInformation
857HeapSize
858HeapSummary
859HeapUnlock
860HeapValidate
861HeapWalk
862IdnToAscii
863IdnToNameprepUnicode
864IdnToUnicode
865ImpersonateAnonymousToken
866ImpersonateLoggedOnUser
867ImpersonateNamedPipeClient
868ImpersonateSelf
869IncrementPackageStatusVersion
870InitOnceBeginInitialize
871InitOnceComplete
872InitOnceExecuteOnce
873InitOnceInitialize
874InitializeAcl
875InitializeConditionVariable
876InitializeContext
877InitializeContext2
878InitializeCriticalSection
879InitializeCriticalSectionAndSpinCount
880InitializeCriticalSectionEx
881InitializeEnclave
882InitializeProcThreadAttributeList
883InitializeProcessForWsWatch
884InitializeSListHead
885InitializeSRWLock
886InitializeSecurityDescriptor
887InitializeSid
888InitializeSynchronizationBarrier
889InstallELAMCertificateInfo
890InterlockedFlushSList
891InterlockedPopEntrySList
892InterlockedPushEntrySList
893InterlockedPushListSList
894InterlockedPushListSListEx
895InternalLcidToName
896Internal_EnumCalendarInfo
897Internal_EnumDateFormats
898Internal_EnumLanguageGroupLocales
899Internal_EnumSystemCodePages
900Internal_EnumSystemLanguageGroups
901Internal_EnumSystemLocales
902Internal_EnumTimeFormats
903Internal_EnumUILanguages
904InternetTimeFromSystemTimeA
905InternetTimeFromSystemTimeW
906InternetTimeToSystemTimeA
907InternetTimeToSystemTimeW
908InvalidateAppModelVersionCache
909IsApiSetImplemented
910IsCharAlphaA
911IsCharAlphaNumericA
912IsCharAlphaNumericW
913IsCharAlphaW
914IsCharBlankW
915IsCharCntrlW
916IsCharDigitW
917IsCharLowerA
918IsCharLowerW
919IsCharPunctW
920IsCharSpaceA
921IsCharSpaceW
922IsCharUpperA
923IsCharUpperW
924IsCharXDigitW
925IsDBCSLeadByte
926IsDBCSLeadByteEx
927IsDebuggerPresent
928IsDeveloperModeEnabled
929IsDeveloperModePolicyApplied
930IsEnclaveTypeSupported
931IsInternetESCEnabled
932IsNLSDefinedString
933IsNormalizedString
934IsOnDemandRegistrationSupportedForExtensionCategory
935IsProcessCritical
936IsProcessInJob
937IsProcessorFeaturePresent
938IsSideloadingEnabled
939IsSideloadingPolicyApplied
940IsSyncForegroundPolicyRefresh
941IsThreadAFiber
942IsThreadpoolTimerSet
943IsTimeZoneRedirectionEnabled
944IsTokenRestricted
945IsValidAcl
946IsValidCodePage
947IsValidLanguageGroup
948IsValidLocale
949IsValidLocaleName
950IsValidNLSVersion
951IsValidRelativeSecurityDescriptor
952IsValidSecurityDescriptor
953IsValidSid
954IsWellKnownSid
955IsWow64GuestMachineSupported
956IsWow64Process
957IsWow64Process2
958K32EmptyWorkingSet
959K32EnumDeviceDrivers
960K32EnumPageFilesA
961K32EnumPageFilesW
962K32EnumProcessModules
963K32EnumProcessModulesEx
964K32EnumProcesses
965K32GetDeviceDriverBaseNameA
966K32GetDeviceDriverBaseNameW
967K32GetDeviceDriverFileNameA
968K32GetDeviceDriverFileNameW
969K32GetMappedFileNameA
970K32GetMappedFileNameW
971K32GetModuleBaseNameA
972K32GetModuleBaseNameW
973K32GetModuleFileNameExA
974K32GetModuleFileNameExW
975K32GetModuleInformation
976K32GetPerformanceInfo
977K32GetProcessImageFileNameA
978K32GetProcessImageFileNameW
979K32GetProcessMemoryInfo
980K32GetWsChanges
981K32GetWsChangesEx
982K32InitializeProcessForWsWatch
983K32QueryWorkingSet
984K32QueryWorkingSetEx
985KernelBaseGetGlobalData
986KernelbasePostInit
987LCIDToLocaleName
988LCMapStringA
989LCMapStringEx
990LCMapStringW
991LeaveCriticalPolicySectionInternal
992LeaveCriticalSection
993LeaveCriticalSectionWhenCallbackReturns
994LoadAppInitDlls
995LoadEnclaveData
996LoadEnclaveImageA
997LoadEnclaveImageW
998LoadLibraryA
999LoadLibraryExA
1000LoadLibraryExW
1001LoadLibraryW
1002LoadPackagedLibrary
1003LoadResource
1004LoadStringA
1005LoadStringBaseExW
1006LoadStringByReference
1007LoadStringW
1008LocalAlloc
1009LocalFileTimeToFileTime
1010LocalFileTimeToLocalSystemTime
1011LocalFree
1012LocalLock
1013LocalReAlloc
1014LocalSystemTimeToLocalFileTime
1015LocalUnlock
1016LocaleNameToLCID
1017LockFile
1018LockFileEx
1019LockResource
1020MakeAbsoluteSD
1021MakeAbsoluteSD2
1022MakeSelfRelativeSD
1023MapGenericMask
1024MapPredefinedHandleInternal
1025MapUserPhysicalPages
1026MapViewOfFile
1027MapViewOfFile3
1028MapViewOfFile3FromApp
1029MapViewOfFileEx
1030MapViewOfFileExNuma
1031MapViewOfFileFromApp
1032MapViewOfFileNuma2
1033MoveFileExW
1034MoveFileWithProgressTransactedW
1035MoveFileWithProgressW
1036MulDiv
1037MultiByteToWideChar
1038NamedPipeEventEnum
1039NamedPipeEventSelect
1040NeedCurrentDirectoryForExePathA
1041NeedCurrentDirectoryForExePathW
1042NlsCheckPolicy
1043NlsDispatchAnsiEnumProc
1044NlsEventDataDescCreate
1045NlsGetACPFromLocale
1046NlsGetCacheUpdateCount
1047NlsIsUserDefaultLocale
1048NlsUpdateLocale
1049NlsUpdateSystemLocale
1050NlsValidateLocale
1051NlsWriteEtwEvent
1052NormalizeString
1053NotifyMountMgr
1054NotifyRedirectedStringChange
1055ObjectCloseAuditAlarmW
1056ObjectDeleteAuditAlarmW
1057ObjectOpenAuditAlarmW
1058ObjectPrivilegeAuditAlarmW
1059OfferVirtualMemory
1060OpenCommPort
1061OpenEventA
1062OpenEventW
1063OpenFileById
1064OpenFileMappingFromApp
1065OpenFileMappingW
1066OpenGlobalizationUserSettingsKey
1067OpenMutexW
1068OpenPackageInfoByFullName
1069OpenPackageInfoByFullNameForMachine
1070OpenPackageInfoByFullNameForUser
1071OpenPrivateNamespaceW
1072OpenProcess
1073OpenProcessToken
1074OpenRegKey
1075OpenSemaphoreW
1076OpenState
1077OpenStateAtom
1078OpenStateExplicit
1079OpenStateExplicitForUserSid
1080OpenStateExplicitForUserSidString
1081OpenThread
1082OpenThreadToken
1083OpenWaitableTimerW
1084OutputDebugStringA
1085OutputDebugStringW
1086OverrideRoamingDataModificationTimesInRange
1087PackageFamilyNameFromFullName
1088PackageFamilyNameFromFullNameA
1089PackageFamilyNameFromId
1090PackageFamilyNameFromIdA
1091PackageFamilyNameFromProductId
1092PackageFullNameFromId
1093PackageFullNameFromIdA
1094PackageFullNameFromProductId
1095PackageIdFromFullName
1096PackageIdFromFullNameA
1097PackageIdFromProductId
1098PackageNameAndPublisherIdFromFamilyName
1099PackageNameAndPublisherIdFromFamilyNameA
1100PackageRelativeApplicationIdFromProductId
1101PackageSidFromFamilyName
1102ParseApplicationUserModelId
1103ParseApplicationUserModelIdA
1104ParseURLA
1105ParseURLW
1106PathAddBackslashA
1107PathAddBackslashW
1108PathAddExtensionA
1109PathAddExtensionW
1110PathAllocCanonicalize
1111PathAllocCombine
1112PathAppendA
1113PathAppendW
1114PathCanonicalizeA
1115PathCanonicalizeW
1116PathCchAddBackslash
1117PathCchAddBackslashEx
1118PathCchAddExtension
1119PathCchAppend
1120PathCchAppendEx
1121PathCchCanonicalize
1122PathCchCanonicalizeEx
1123PathCchCombine
1124PathCchCombineEx
1125PathCchFindExtension
1126PathCchIsRoot
1127PathCchRemoveBackslash
1128PathCchRemoveBackslashEx
1129PathCchRemoveExtension
1130PathCchRemoveFileSpec
1131PathCchRenameExtension
1132PathCchSkipRoot
1133PathCchStripPrefix
1134PathCchStripToRoot
1135PathCleanupSpec
1136PathCombineA
1137PathCombineW
1138PathCommonPrefixA
1139PathCommonPrefixW
1140PathCreateFromUrlA
1141PathCreateFromUrlAlloc
1142PathCreateFromUrlW
1143PathFileExistsA
1144PathFileExistsW
1145PathFindExtensionA
1146PathFindExtensionW
1147PathFindFileNameA
1148PathFindFileNameW
1149PathFindNextComponentA
1150PathFindNextComponentW
1151PathGetArgsA
1152PathGetArgsW
1153PathGetCharTypeA
1154PathGetCharTypeW
1155PathGetDriveNumberA
1156PathGetDriveNumberW
1157PathIsExe
1158PathIsFileSpecA
1159PathIsFileSpecW
1160PathIsLFNFileSpecA
1161PathIsLFNFileSpecW
1162PathIsPrefixA
1163PathIsPrefixW
1164PathIsRelativeA
1165PathIsRelativeW
1166PathIsRootA
1167PathIsRootW
1168PathIsSameRootA
1169PathIsSameRootW
1170PathIsUNCA
1171PathIsUNCEx
1172PathIsUNCServerA
1173PathIsUNCServerShareA
1174PathIsUNCServerShareW
1175PathIsUNCServerW
1176PathIsUNCW
1177PathIsURLA
1178PathIsURLW
1179PathIsValidCharA
1180PathIsValidCharW
1181PathMatchSpecA
1182PathMatchSpecExA
1183PathMatchSpecExW
1184PathMatchSpecW
1185PathParseIconLocationA
1186PathParseIconLocationW
1187PathQuoteSpacesA
1188PathQuoteSpacesW
1189PathRelativePathToA
1190PathRelativePathToW
1191PathRemoveBackslashA
1192PathRemoveBackslashW
1193PathRemoveBlanksA
1194PathRemoveBlanksW
1195PathRemoveExtensionA
1196PathRemoveExtensionW
1197PathRemoveFileSpecA
1198PathRemoveFileSpecW
1199PathRenameExtensionA
1200PathRenameExtensionW
1201PathSearchAndQualifyA
1202PathSearchAndQualifyW
1203PathSkipRootA
1204PathSkipRootW
1205PathStripPathA
1206PathStripPathW
1207PathStripToRootA
1208PathStripToRootW
1209PathUnExpandEnvStringsA
1210PathUnExpandEnvStringsW
1211PathUnquoteSpacesA
1212PathUnquoteSpacesW
1213PcwAddQueryItem
1214PcwClearCounterSetSecurity
1215PcwCollectData
1216PcwCompleteNotification
1217PcwCreateNotifier
1218PcwCreateQuery
1219PcwDisconnectCounterSet
1220PcwEnumerateInstances
1221PcwIsNotifierAlive
1222PcwQueryCounterSetSecurity
1223PcwReadNotificationData
1224PcwRegisterCounterSet
1225PcwRemoveQueryItem
1226PcwSendNotification
1227PcwSendStatelessNotification
1228PcwSetCounterSetSecurity
1229PcwSetQueryItemUserData
1230PeekConsoleInputA
1231PeekConsoleInputW
1232PeekNamedPipe
1233PerfCreateInstance
1234PerfDecrementULongCounterValue
1235PerfDecrementULongLongCounterValue
1236PerfDeleteInstance
1237PerfIncrementULongCounterValue
1238PerfIncrementULongLongCounterValue
1239PerfQueryInstance
1240PerfSetCounterRefValue
1241PerfSetCounterSetInfo
1242PerfSetULongCounterValue
1243PerfSetULongLongCounterValue
1244PerfStartProvider
1245PerfStartProviderEx
1246PerfStopProvider
1247PoolPerAppKeyStateInternal
1248PostQueuedCompletionStatus
1249PrefetchVirtualMemory
1250PrivCopyFileExW
1251PrivilegeCheck
1252PrivilegedServiceAuditAlarmW
1253ProcessIdToSessionId
1254ProductIdFromPackageFamilyName
1255PsmCreateKey
1256PsmCreateKeyWithDynamicId
1257PsmEqualApplication
1258PsmEqualPackage
1259PsmGetApplicationNameFromKey
1260PsmGetDynamicIdFromKey
1261PsmGetKeyFromProcess
1262PsmGetKeyFromToken
1263PsmGetPackageFullNameFromKey
1264PsmIsChildKey
1265PsmIsDynamicKey
1266PsmIsValidKey
1267PssCaptureSnapshot
1268PssDuplicateSnapshot
1269PssFreeSnapshot
1270PssQuerySnapshot
1271PssWalkMarkerCreate
1272PssWalkMarkerFree
1273PssWalkMarkerGetPosition
1274PssWalkMarkerSeekToBeginning
1275PssWalkMarkerSetPosition
1276PssWalkSnapshot
1277PublishStateChangeNotification
1278PulseEvent
1279PurgeComm
1280QISearch
1281QueryActCtxSettingsW
1282QueryActCtxW
1283QueryAuxiliaryCounterFrequency
1284QueryDepthSList
1285QueryDosDeviceW
1286QueryFullProcessImageNameA
1287QueryFullProcessImageNameW
1288QueryGlobalizationUserSettingsStatus
1289QueryIdleProcessorCycleTime
1290QueryIdleProcessorCycleTimeEx
1291QueryInterruptTime
1292QueryInterruptTimePrecise
1293QueryMemoryResourceNotification
1294QueryOptionalDelayLoadedAPI
1295QueryPerformanceCounter
1296QueryPerformanceFrequency
1297QueryProcessAffinityUpdateMode
1298QueryProcessCycleTime
1299QueryProtectedPolicy
1300QuerySecurityAccessMask
1301QueryStateAtomValueInfo
1302QueryStateContainerCreatedNew
1303QueryStateContainerItemInfo
1304QueryThreadCycleTime
1305QueryThreadpoolStackInformation
1306QueryUnbiasedInterruptTime
1307QueryUnbiasedInterruptTimePrecise
1308QueryVirtualMemoryInformation
1309QueryWorkingSet
1310QueryWorkingSetEx
1311QueueUserAPC
1312QueueUserWorkItem
1313QuirkGetData
1314QuirkGetData2
1315QuirkIsEnabled
1316QuirkIsEnabled2
1317QuirkIsEnabled3
1318QuirkIsEnabledForPackage
1319QuirkIsEnabledForPackage2
1320QuirkIsEnabledForPackage3
1321QuirkIsEnabledForPackage4
1322QuirkIsEnabledForProcess
1323RaiseCustomSystemEventTrigger
1324RaiseException
1325RaiseFailFastException
1326ReOpenFile
1327ReadConsoleA
1328ReadConsoleInputA
1329ReadConsoleInputExA
1330ReadConsoleInputExW
1331ReadConsoleInputW
1332ReadConsoleOutputA
1333ReadConsoleOutputAttribute
1334ReadConsoleOutputCharacterA
1335ReadConsoleOutputCharacterW
1336ReadConsoleOutputW
1337ReadConsoleW
1338ReadDirectoryChangesExW
1339ReadDirectoryChangesW
1340ReadFile
1341ReadFileEx
1342ReadFileScatter
1343ReadProcessMemory
1344ReadStateAtomValue
1345ReadStateContainerValue
1346ReclaimVirtualMemory
1347RefreshPackageInfo
1348RefreshPolicyExInternal
1349RefreshPolicyInternal
1350RegCloseKey
1351RegCopyTreeW
1352RegCreateKeyExA
1353RegCreateKeyExInternalA
1354RegCreateKeyExInternalW
1355RegCreateKeyExW
1356RegDeleteKeyExA
1357RegDeleteKeyExInternalA
1358RegDeleteKeyExInternalW
1359RegDeleteKeyExW
1360RegDeleteKeyValueA
1361RegDeleteKeyValueW
1362RegDeleteTreeA
1363RegDeleteTreeW
1364RegDeleteValueA
1365RegDeleteValueW
1366RegDisablePredefinedCacheEx
1367RegEnumKeyExA
1368RegEnumKeyExW
1369RegEnumValueA
1370RegEnumValueW
1371RegFlushKey
1372RegGetKeySecurity
1373RegGetValueA
1374RegGetValueW
1375RegKrnGetAppKeyEventAddressInternal
1376RegKrnGetAppKeyLoaded
1377RegKrnGetClassesEnumTableAddressInternal
1378RegKrnGetHKEY_ClassesRootAddress
1379RegKrnGetTermsrvRegistryExtensionFlags
1380RegKrnResetAppKeyLoaded
1381RegKrnSetDllHasThreadStateGlobal
1382RegKrnSetTermsrvRegistryExtensionFlags
1383RegLoadAppKeyA
1384RegLoadAppKeyW
1385RegLoadKeyA
1386RegLoadKeyW
1387RegLoadMUIStringA
1388RegLoadMUIStringW
1389RegNotifyChangeKeyValue
1390RegOpenCurrentUser
1391RegOpenKeyExA
1392RegOpenKeyExInternalA
1393RegOpenKeyExInternalW
1394RegOpenKeyExW
1395RegOpenUserClassesRoot
1396RegQueryInfoKeyA
1397RegQueryInfoKeyW
1398RegQueryMultipleValuesA
1399RegQueryMultipleValuesW
1400RegQueryValueExA
1401RegQueryValueExW
1402RegRestoreKeyA
1403RegRestoreKeyW
1404RegSaveKeyExA
1405RegSaveKeyExW
1406RegSetKeySecurity
1407RegSetKeyValueA
1408RegSetKeyValueW
1409RegSetValueExA
1410RegSetValueExW
1411RegUnLoadKeyA
1412RegUnLoadKeyW
1413RegisterBadMemoryNotification
1414RegisterGPNotificationInternal
1415RegisterStateChangeNotification
1416RegisterStateLock
1417RegisterTraceGuidsW
1418RegisterWaitForSingleObjectEx
1419ReleaseActCtx
1420ReleaseMutex
1421ReleaseMutexWhenCallbackReturns
1422ReleaseSRWLockExclusive
1423ReleaseSRWLockShared
1424ReleaseSemaphore
1425ReleaseSemaphoreWhenCallbackReturns
1426ReleaseStateLock
1427RemapPredefinedHandleInternal
1428RemoveDirectoryA
1429RemoveDirectoryW
1430RemoveDllDirectory
1431RemoveExtensionProgIds
1432RemovePackageFromFamilyXref
1433RemovePackageStatus
1434RemovePackageStatusForUser
1435RemoveVectoredContinueHandler
1436RemoveVectoredExceptionHandler
1437ReplaceFileExInternal
1438ReplaceFileW
1439ResetEvent
1440ResetState
1441ResetWriteWatch
1442ResizePseudoConsole
1443ResolveDelayLoadedAPI
1444ResolveDelayLoadsFromDll
1445ResolveLocaleName
1446RestoreLastError
1447ResumeThread
1448RevertToSelf
1449RsopLoggingEnabledInternal
1450SHCoCreateInstance
1451SHCreateDirectoryExW
1452SHExpandEnvironmentStringsA
1453SHExpandEnvironmentStringsW
1454SHGetDesktopFolder
1455SHGetFileInfoW
1456SHGetFolderLocation
1457SHGetFolderPathA
1458SHGetFolderPathAndSubDirW
1459SHGetFolderPathW
1460SHGetInstanceExplorer
1461SHGetKnownFolderPath
1462SHGetSpecialFolderPathA
1463SHGetSpecialFolderPathW
1464SHLoadIndirectString
1465SHLoadIndirectStringInternal
1466SHRegCloseUSKey
1467SHRegCreateUSKeyA
1468SHRegCreateUSKeyW
1469SHRegDeleteEmptyUSKeyA
1470SHRegDeleteEmptyUSKeyW
1471SHRegDeleteUSValueA
1472SHRegDeleteUSValueW
1473SHRegEnumUSKeyA
1474SHRegEnumUSKeyW
1475SHRegEnumUSValueA
1476SHRegEnumUSValueW
1477SHRegGetBoolUSValueA
1478SHRegGetBoolUSValueW
1479SHRegGetUSValueA
1480SHRegGetUSValueW
1481SHRegOpenUSKeyA
1482SHRegOpenUSKeyW
1483SHRegQueryInfoUSKeyA
1484SHRegQueryInfoUSKeyW
1485SHRegQueryUSValueA
1486SHRegQueryUSValueW
1487SHRegSetUSValueA
1488SHRegSetUSValueW
1489SHRegWriteUSValueA
1490SHRegWriteUSValueW
1491SHSetKnownFolderPath
1492SHTruncateString
1493SaveAlternatePackageRootPath
1494SaveStateRootFolderPath
1495ScrollConsoleScreenBufferA
1496ScrollConsoleScreenBufferW
1497SearchPathA
1498SearchPathW
1499SetAclInformation
1500SetCachedSigningLevel
1501SetCalendarInfoW
1502SetClientDynamicTimeZoneInformation
1503SetClientTimeZoneInformation
1504SetCommBreak
1505SetCommConfig
1506SetCommMask
1507SetCommState
1508SetCommTimeouts
1509SetComputerNameA
1510SetComputerNameEx2W
1511SetComputerNameExA
1512SetComputerNameExW
1513SetComputerNameW
1514SetConsoleActiveScreenBuffer
1515SetConsoleCP
1516SetConsoleCtrlHandler
1517SetConsoleCursorInfo
1518SetConsoleCursorPosition
1519SetConsoleDisplayMode
1520SetConsoleHistoryInfo
1521SetConsoleInputExeNameA
1522SetConsoleInputExeNameW
1523SetConsoleMode
1524SetConsoleNumberOfCommandsA
1525SetConsoleNumberOfCommandsW
1526SetConsoleOutputCP
1527SetConsoleScreenBufferInfoEx
1528SetConsoleScreenBufferSize
1529SetConsoleTextAttribute
1530SetConsoleTitleA
1531SetConsoleTitleW
1532SetConsoleWindowInfo
1533SetCriticalSectionSpinCount
1534SetCurrentConsoleFontEx
1535SetCurrentDirectoryA
1536SetCurrentDirectoryW
1537SetDefaultDllDirectories
1538SetDynamicTimeZoneInformation
1539SetEndOfFile
1540SetEnvironmentStringsW
1541SetEnvironmentVariableA
1542SetEnvironmentVariableW
1543SetErrorMode
1544SetEvent
1545SetEventWhenCallbackReturns
1546SetExtensionProperty
1547SetFileApisToANSI
1548SetFileApisToOEM
1549SetFileAttributesA
1550SetFileAttributesW
1551SetFileInformationByHandle
1552SetFileIoOverlappedRange
1553SetFilePointer
1554SetFilePointerEx
1555SetFileSecurityW
1556SetFileTime
1557SetFileValidData
1558SetHandleCount
1559SetHandleInformation
1560SetIsDeveloperModeEnabled
1561SetIsSideloadingEnabled
1562SetKernelObjectSecurity
1563SetLastConsoleEventActive
1564SetLastError
1565SetLocalTime
1566SetLocaleInfoW
1567SetNamedPipeHandleState
1568SetPriorityClass
1569SetPrivateObjectSecurity
1570SetPrivateObjectSecurityEx
1571SetProcessAffinityUpdateMode
1572SetProcessDefaultCpuSets
1573SetProcessGroupAffinity
1574SetProcessInformation
1575SetProcessMitigationPolicy
1576SetProcessPreferredUILanguages
1577SetProcessPriorityBoost
1578SetProcessShutdownParameters
1579SetProcessValidCallTargets
1580SetProcessValidCallTargetsForMappedView
1581SetProcessWorkingSetSizeEx
1582SetProtectedPolicy
1583SetProtocolProperty
1584SetRoamingLastObservedChangeTime
1585SetSecurityAccessMask
1586SetSecurityDescriptorControl
1587SetSecurityDescriptorDacl
1588SetSecurityDescriptorGroup
1589SetSecurityDescriptorOwner
1590SetSecurityDescriptorRMControl
1591SetSecurityDescriptorSacl
1592SetStateVersion
1593SetStdHandle
1594SetStdHandleEx
1595SetSystemFileCacheSize
1596SetSystemTime
1597SetSystemTimeAdjustment
1598SetSystemTimeAdjustmentPrecise
1599SetThreadContext
1600SetThreadDescription
1601SetThreadErrorMode
1602SetThreadGroupAffinity
1603SetThreadIdealProcessor
1604SetThreadIdealProcessorEx
1605SetThreadInformation
1606SetThreadLocale
1607SetThreadPreferredUILanguages
1608SetThreadPriority
1609SetThreadPriorityBoost
1610SetThreadSelectedCpuSets
1611SetThreadStackGuarantee
1612SetThreadToken
1613SetThreadUILanguage
1614SetThreadpoolStackInformation
1615SetThreadpoolThreadMaximum
1616SetThreadpoolThreadMinimum
1617SetThreadpoolTimer
1618SetThreadpoolTimerEx
1619SetThreadpoolWait
1620SetThreadpoolWaitEx
1621SetTimeZoneInformation
1622SetTokenInformation
1623SetUnhandledExceptionFilter
1624SetUserGeoID
1625SetUserGeoName
1626SetWaitableTimer
1627SetWaitableTimerEx
1628SetupComm
1629SharedLocalIsEnabled
1630SignalObjectAndWait
1631SizeofResource
1632Sleep
1633SleepConditionVariableCS
1634SleepConditionVariableSRW
1635SleepEx
1636SpecialMBToWC
1637StartThreadpoolIo
1638StmAlignSize
1639StmAllocateFlat
1640StmCoalesceChunks
1641StmDeinitialize
1642StmInitialize
1643StmReduceSize
1644StmReserve
1645StmWrite
1646StrCSpnA
1647StrCSpnIA
1648StrCSpnIW
1649StrCSpnW
1650StrCatBuffA
1651StrCatBuffW
1652StrCatChainW
1653StrChrA
1654StrChrA_MB
1655StrChrIA
1656StrChrIW
1657StrChrNIW
1658StrChrNW
1659StrChrW
1660StrCmpCA
1661StrCmpCW
1662StrCmpICA
1663StrCmpICW
1664StrCmpIW
1665StrCmpLogicalW
1666StrCmpNA
1667StrCmpNCA
1668StrCmpNCW
1669StrCmpNIA
1670StrCmpNICA
1671StrCmpNICW
1672StrCmpNIW
1673StrCmpNW
1674StrCmpW
1675StrCpyNW
1676StrCpyNXA
1677StrCpyNXW
1678StrDupA
1679StrDupW
1680StrIsIntlEqualA
1681StrIsIntlEqualW
1682StrPBrkA
1683StrPBrkW
1684StrRChrA
1685StrRChrIA
1686StrRChrIW
1687StrRChrW
1688StrRStrIA
1689StrRStrIW
1690StrSpnA
1691StrSpnW
1692StrStrA
1693StrStrIA
1694StrStrIW
1695StrStrNIW
1696StrStrNW
1697StrStrW
1698StrToInt64ExA
1699StrToInt64ExW
1700StrToIntA
1701StrToIntExA
1702StrToIntExW
1703StrToIntW
1704StrTrimA
1705StrTrimW
1706SubmitThreadpoolWork
1707SubscribeEdpEnabledStateChange
1708SubscribeStateChangeNotification
1709SubscribeWdagEnabledStateChange
1710SuspendThread
1711SwitchToFiber
1712SwitchToThread
1713SystemTimeToFileTime
1714SystemTimeToTzSpecificLocalTime
1715SystemTimeToTzSpecificLocalTimeEx
1716TerminateEnclave
1717TerminateProcess
1718TerminateProcessOnMemoryExhaustion
1719TerminateThread
1720TlsAlloc
1721TlsFree
1722TlsGetValue
1723TlsSetValue
1724TraceEvent
1725TraceMessage
1726TraceMessageVa
1727TransactNamedPipe
1728TransmitCommChar
1729TryAcquireSRWLockExclusive
1730TryAcquireSRWLockShared
1731TryEnterCriticalSection
1732TrySubmitThreadpoolCallback
1733TzSpecificLocalTimeToSystemTime
1734TzSpecificLocalTimeToSystemTimeEx
1735UnhandledExceptionFilter
1736UnlockFile
1737UnlockFileEx
1738UnmapViewOfFile
1739UnmapViewOfFile2
1740UnmapViewOfFileEx
1741UnregisterBadMemoryNotification
1742UnregisterGPNotificationInternal
1743UnregisterStateChangeNotification
1744UnregisterStateLock
1745UnregisterTraceGuids
1746UnregisterWaitEx
1747UnsubscribeEdpEnabledStateChange
1748UnsubscribeStateChangeNotification
1749UnsubscribeWdagEnabledStateChange
1750UpdatePackageStatus
1751UpdatePackageStatusForUser
1752UpdatePackageStatusForUserSid
1753UpdateProcThreadAttribute
1754UrlApplySchemeA
1755UrlApplySchemeW
1756UrlCanonicalizeA
1757UrlCanonicalizeW
1758UrlCombineA
1759UrlCombineW
1760UrlCompareA
1761UrlCompareW
1762UrlCreateFromPathA
1763UrlCreateFromPathW
1764UrlEscapeA
1765UrlEscapeW
1766UrlFixupW
1767UrlGetLocationA
1768UrlGetLocationW
1769UrlGetPartA
1770UrlGetPartW
1771UrlHashA
1772UrlHashW
1773UrlIsA
1774UrlIsNoHistoryA
1775UrlIsNoHistoryW
1776UrlIsOpaqueA
1777UrlIsOpaqueW
1778UrlIsW
1779UrlUnescapeA
1780UrlUnescapeW
1781VerFindFileA
1782VerFindFileW
1783VerLanguageNameA
1784VerLanguageNameW
1785VerQueryValueA
1786VerQueryValueW
1787VerSetConditionMask
1788VerifyApplicationUserModelId
1789VerifyApplicationUserModelIdA
1790VerifyPackageFamilyName
1791VerifyPackageFamilyNameA
1792VerifyPackageFullName
1793VerifyPackageFullNameA
1794VerifyPackageId
1795VerifyPackageIdA
1796VerifyPackageRelativeApplicationId
1797VerifyPackageRelativeApplicationIdA
1798VerifyScripts
1799VirtualAlloc
1800VirtualAlloc2
1801VirtualAlloc2FromApp
1802VirtualAllocEx
1803VirtualAllocExNuma
1804VirtualAllocFromApp
1805VirtualFree
1806VirtualFreeEx
1807VirtualLock
1808VirtualProtect
1809VirtualProtectEx
1810VirtualProtectFromApp
1811VirtualQuery
1812VirtualQueryEx
1813VirtualUnlock
1814VirtualUnlockEx
1815WTSGetServiceSessionId
1816WTSIsServerContainer
1817WaitCommEvent
1818WaitForDebugEvent
1819WaitForDebugEventEx
1820WaitForMachinePolicyForegroundProcessingInternal
1821WaitForMultipleObjects
1822WaitForMultipleObjectsEx
1823WaitForSingleObject
1824WaitForSingleObjectEx
1825WaitForThreadpoolIoCallbacks
1826WaitForThreadpoolTimerCallbacks
1827WaitForThreadpoolWaitCallbacks
1828WaitForThreadpoolWorkCallbacks
1829WaitForUserPolicyForegroundProcessingInternal
1830WaitNamedPipeW
1831WaitOnAddress
1832WakeAllConditionVariable
1833WakeByAddressAll
1834WakeByAddressSingle
1835WakeConditionVariable
1836WerGetFlags
1837WerRegisterAdditionalProcess
1838WerRegisterAppLocalDump
1839WerRegisterCustomMetadata
1840WerRegisterExcludedMemoryBlock
1841WerRegisterFile
1842WerRegisterMemoryBlock
1843WerRegisterRuntimeExceptionModule
1844WerSetFlags
1845WerUnregisterAdditionalProcess
1846WerUnregisterAppLocalDump
1847WerUnregisterCustomMetadata
1848WerUnregisterExcludedMemoryBlock
1849WerUnregisterFile
1850WerUnregisterMemoryBlock
1851WerUnregisterRuntimeExceptionModule
1852WerpNotifyLoadStringResource
1853WerpNotifyUseStringResource
1854WideCharToMultiByte
1855Wow64DisableWow64FsRedirection
1856Wow64RevertWow64FsRedirection
1857Wow64SetThreadDefaultGuestMachine
1858WriteConsoleA
1859WriteConsoleInputA
1860WriteConsoleInputW
1861WriteConsoleOutputA
1862WriteConsoleOutputAttribute
1863WriteConsoleOutputCharacterA
1864WriteConsoleOutputCharacterW
1865WriteConsoleOutputW
1866WriteConsoleW
1867WriteFile
1868WriteFileEx
1869WriteFileGather
1870WriteProcessMemory
1871WriteStateAtomValue
1872WriteStateContainerValue
1873ZombifyActCtx
1874_AddMUIStringToCache
1875_GetMUIStringFromCache
1876_OpenMuiStringCache
1877__C_specific_handler
1878__chkstk
1879__dllonexit3
1880__jump_unwind
1881__wgetmainargs
1882_amsg_exit
1883_c_exit
1884_cexit
1885_exit
1886_initterm
1887_initterm_e
1888_invalid_parameter
1889_onexit
1890_purecall
1891_time64
1892atexit
1893exit
1894hgets
1895hwprintf
1896lstrcmp
1897lstrcmpA
1898lstrcmpW
1899lstrcmpi
1900lstrcmpiA
1901lstrcmpiW
1902lstrcpyn
1903lstrcpynA
1904lstrcpynW
1905lstrlen
1906lstrlenA
1907lstrlenW
1908time
1909wprintf
lib/libc/mingw/libarm32/keyboardfiltercore.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of KeyboardFilterCore.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "KeyboardFilterCore.DLL"
7EXPORTS
8HookMain
lib/libc/mingw/libarm32/keyiso.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of keyiso.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "keyiso.dll"
7EXPORTS
8KeyIsoServiceMain
9KeyIsoSetAuditingInterface
lib/libc/mingw/libarm32/l2gpstore.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of l2gpstore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "l2gpstore.dll"
7EXPORTS
8L2GPPolicyDataDelete
9L2GPPolicyDataDeleteAll
10L2GPPolicyDataRead
11L2GPPolicyDataWrite
12L2GPPolicyFreeMem
13L2GPPolicyStoreClose
14L2GPPolicyStoreOpen
lib/libc/mingw/libarm32/langcleanupsysprepaction.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of LangCleanupSysprepAction.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "LangCleanupSysprepAction.dll"
7EXPORTS
8Sysprep_Generalize_MUILangCleanup
lib/libc/mingw/libarm32/listsvc.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of HOMEGROUPLISTENER.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "HOMEGROUPLISTENER.dll"
7EXPORTS
8ListenerServiceMain
lib/libc/mingw/libarm32/livessp.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of LIVESSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "LIVESSP.dll"
7EXPORTS
8SpLsaModeInitialize
9SpUserModeInitialize
lib/libc/mingw/libarm32/lltdapi.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of LLTDAPI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "LLTDAPI.DLL"
7EXPORTS
8LLTDCreateEnumerator
9LLTDCreateMapFromXML
10LLTDCreateMapper
11LLTDCreateNode
lib/libc/mingw/libarm32/lltdsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of LLTDSVC.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "LLTDSVC.DLL"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/localspl.def created+121
......@@ -0,0 +1,121 @@
1;
2; Definition file of LocalSpl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "LocalSpl.dll"
7EXPORTS
8ord_400 @400
9LclIsSessionZero
10LclPromptUIPerSessionUser
11SplAddCSRPrinter
12SplDoesCSRPrinterDevnodeExist
13SplEnumJobNamedProperties
14SplGetDriverUpdateStatus
15SplGetJobExtra
16SplGetLocalDevMode
17SplIsDriverInstalled
18SplIsLocalDriverAvailable
19SplIsValidUserPropertyBag
20SplNotifyServerStatus
21SplReenumeratePorts
22SplSetCSRPrinterDevnode
23SplSetDriverUpdateStatus
24SplSetJobError
25SplSetJobExtra
26ClosePrintProcessor
27ControlPrintProcessor
28EnumPrintProcessorDatatypesW
29GetPrintProcessorCapabilities
30InitializePrintMonitor2
31InitializePrintProvidor
32LocalAddForm
33LocalDeleteForm
34LocalEnumForms
35LocalReadPrinter
36LocalSetForm
37OpenPrintProcessor
38PrintDocumentOnPrintProcessor
39SplAbortPrinter
40SplAddForm
41SplAddJob
42SplAddMonitor
43SplAddPort
44SplAddPortEx
45SplAddPrintProcessor
46SplAddPrinter
47SplAddPrinterDriverEx
48SplClosePrinter
49SplCloseSpooler
50SplConfigChange
51SplCopyFileEvent
52SplCopyNumberOfFiles
53SplCreatePrinterIC
54SplCreateSpooler
55SplDeleteForm
56SplDeleteJobNamedProperty
57SplDeleteMonitor
58SplDeletePort
59SplDeletePrintProcCacheData
60SplDeletePrintProcessor
61SplDeletePrinter
62SplDeletePrinterData
63SplDeletePrinterDataEx
64SplDeletePrinterDriverEx
65SplDeletePrinterIC
66SplDeletePrinterKey
67SplDeletePrinterWithJobs
68SplDeleteSpooler
69SplDriverEvent
70SplEndDocPrinter
71SplEndPagePrinter
72SplEnumForms
73SplEnumJobs
74SplEnumMonitors
75SplEnumPorts
76SplEnumPrintProcCacheData
77SplEnumPrintProcessorDatatypes
78SplEnumPrintProcessors
79SplEnumPrinterData
80SplEnumPrinterDataEx
81SplEnumPrinterDrivers
82SplEnumPrinterKey
83SplEnumPrinters
84SplGetDriverDir
85SplGetForm
86SplGetJob
87SplGetJobNamedPropertyValue
88SplGetPrintClassObject
89SplGetPrintClassObject_4CSR
90SplGetPrintProcCacheData
91SplGetPrintProcessorDirectory
92SplGetPrinter
93SplGetPrinterData
94SplGetPrinterDataEx
95SplGetPrinterDriver
96SplGetPrinterDriverDirectory
97SplGetPrinterDriverEx
98SplGetPrinterExtra
99SplGetPrinterExtraEx
100SplGetUserPropertyBag
101SplIsCompatibleDriver
102SplLoadLibraryTheCopyFileModule
103SplMonitorIsInstalled
104SplOpenPrinter
105SplPlayGdiScriptOnPrinterIC
106SplReportJobProcessingProgress
107SplResetPrinter
108SplScheduleJob
109SplSetForm
110SplSetJob
111SplSetJobNamedProperty
112SplSetPrintProcCacheData
113SplSetPrinter
114SplSetPrinterData
115SplSetPrinterDataEx
116SplSetPrinterExtra
117SplSetPrinterExtraEx
118SplStartDocPrinter
119SplStartPagePrinter
120SplWritePrinter
121SplXcvData
lib/libc/mingw/libarm32/lpk.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of lpk.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "lpk.dll"
7EXPORTS
8LpkDrawTextEx
9LpkEditControl DATA
10LpkExtTextOut
11LpkGetCharacterPlacement
12LpkGetTextExtentExPoint
13LpkInitialize
14LpkPSMTextOut
15LpkTabbedTextOut
16LpkUseGDIWidthCache
17ftsWordBreak
lib/libc/mingw/libarm32/lsasrv.def created+266
......@@ -0,0 +1,266 @@
1;
2; Definition file of LSASRV.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "LSASRV.dll"
7EXPORTS
8InitializeLsaExtension
9QueryLsaInterface
10LsaDbLookupSidChainRequest
11LsaIAddCredentialKeys
12LsaIAddNamesToLogonSession
13LsaIAdjustTokenObjectIntegrity
14LsaIAdtAuditingEnabledByCategory
15LsaIAdtAuditingEnabledBySubCategory
16LsaIAllocateHeap
17LsaIAllocateHeapZero
18LsaIAuditAccountLogon
19LsaIAuditAccountLogonEx
20LsaIAuditInitializeParametersAndWriteEvent
21LsaIAuditKdcEvent
22LsaIAuditKerberosLogon
23LsaIAuditLogonEx
24LsaIAuditLogonUsingExplicitCreds
25LsaIAuditNotifyPackageLoad
26LsaIAuditPasswordAccessEvent
27LsaIAuditReplay
28LsaIAuditSamEvent
29LsaICallPackage
30LsaICallPackageEx
31LsaICallPackagePassthrough
32LsaICancelNotification
33LsaIChangeSecretCipherKey
34LsaICheckProtectedUserByTokenInfo
35LsaIClearOldSyskey
36LsaICryptProtectData
37LsaICryptProtectDataEx
38LsaICryptUnprotectData
39LsaICryptUnprotectDataEx
40LsaIDereferenceCredHandle
41LsaIDeriveAndEncodeCredentialKeys
42LsaIDsNotifiedObjectChange
43LsaIEfsAcceptSmartcardCredentials
44LsaIEqualLogonProcessName
45LsaIEqualSupplementalTokenInfo
46LsaIEventWritePackageNoCredential
47LsaIEventWritePackageNotCacheLogonUser
48LsaIFilterNamespace
49LsaIFilterSids
50LsaIForestTrustFindMatch
51LsaIFreeForestTrustInfo
52LsaIFreeHeap
53LsaIFreeReturnBuffer
54LsaIFreeSupplementalTokenInfo
55LsaIFree_LSAI_PRIVATE_DATA
56LsaIFree_LSAI_SECRET_ENUM_BUFFER
57LsaIFree_LSAPR_ACCOUNT_ENUM_BUFFER
58LsaIFree_LSAPR_CR_CIPHER_VALUE
59LsaIFree_LSAPR_POLICY_DOMAIN_INFORMATION
60LsaIFree_LSAPR_POLICY_INFORMATION
61LsaIFree_LSAPR_PRIVILEGE_ENUM_BUFFER
62LsaIFree_LSAPR_PRIVILEGE_SET
63LsaIFree_LSAPR_REFERENCED_DOMAIN_LIST
64LsaIFree_LSAPR_SR_SECURITY_DESCRIPTOR
65LsaIFree_LSAPR_TRANSLATED_NAMES
66LsaIFree_LSAPR_TRANSLATED_SIDS
67LsaIFree_LSAPR_TRUSTED_DOMAIN_INFO
68LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER
69LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER_EX
70LsaIFree_LSAPR_TRUST_INFORMATION
71LsaIFree_LSAPR_UNICODE_STRING
72LsaIFree_LSAPR_UNICODE_STRING_BUFFER
73LsaIFree_LSAP_SITENAME_INFO
74LsaIFree_LSAP_SITE_INFO
75LsaIFree_LSAP_SUBNET_INFO
76LsaIFree_LSAP_UPN_SUFFIXES
77LsaIFree_LSA_FOREST_TRUST_COLLISION_INFORMATION
78LsaIFree_LSA_FOREST_TRUST_INFORMATION
79LsaIGetCallInfo
80LsaIGetForestTrustInformation
81LsaIGetLogonGuid
82LsaIGetNameFromLuid
83LsaIGetNbAndDnsDomainNames
84LsaIGetNego2Package
85LsaIGetSiteName
86LsaIGetSupplementalTokenInfo
87LsaIHealthCheck
88LsaIImpersonateClient
89LsaIInitializeNetlogonFuncPtrs
90LsaIIsDomainWithinForest
91LsaIIsDsPaused
92LsaIIsLastInteractiveLogonInfoEnabled
93LsaIIsLocalHost
94LsaIIsSuppressChannelBindingInfo
95LsaIIsTrustedDomainsEnabled
96LsaIKerberosRegisterTrustNotification
97LsaILookupWellKnownName
98LsaIModifyPerformanceCounter
99LsaINoConnectedUserPolicy
100LsaINoMoreWin2KDomain
101LsaINotifyChangeNotification
102LsaINotifyGCStatusChange
103LsaINotifyNetlogonParametersChangeW
104LsaINotifyNewPassword
105LsaINotifyPasswordChanged
106LsaIOpenPolicyTrusted
107LsaIQueryForestTrustInfo
108LsaIQueryInformationPolicyTrusted
109LsaIQueryPackageAttrInLogonSession
110LsaIQuerySiteInfo
111LsaIQuerySubnetInfo
112LsaIQueryUpnSuffixes
113LsaIReferenceCredHandle
114LsaIRegisterLogonSessionCallback
115LsaIRegisterNotification
116LsaIRegisterPolicyChangeNotificationCallback
117LsaIReplicateClientObject
118LsaIRetrieveCurrentUserSid
119LsaISafeMode
120LsaISamIndicatedDsStarted
121LsaISetClientDnsHostName
122LsaISetLogonGuidInLogonSession
123LsaISetLogonInfo
124LsaISetNewSyskey
125LsaISetPackageAttrInLogonSession
126LsaISetSupplementalTokenInfo
127LsaISetTokenDacl
128LsaISetUserFlags
129LsaISetupWasRun
130LsaITransformAuthorizationData
131LsaIUnregisterAllPolicyChangeNotificationCallback
132LsaIUnregisterLogonSessionCallback
133LsaIUnregisterPolicyChangeNotificationCallback
134LsaIUpdateForestTrustInformation
135LsaIUpdateKerbMaxTokenSize
136LsaIUpdateLogonSession
137LsaIValidateTargetInfo
138LsaIVerifyCachability
139LsaIWriteAuditEvent
140LsaIWriteKdcAuthenticationEvent
141LsapAdtAuditingEnabledByLogonId
142LsapAdtAuditingEnabledBySubCategory
143LsapAdtAuditingEnabledHint
144LsapAdtInitParametersArray
145LsapAdtWriteLog
146LsapAllocateLsaHeap
147LsapAllocatePrivateHeap
148LsapAuOpenSam
149LsapAuditFailed
150LsapBuildPrivilegeAuditString
151LsapCheckBootMode
152LsapCloseHandle
153LsapCompareDomainNames
154LsapCrServerGetSessionKey
155LsapCrServerGetSessionKeySafe
156LsapDbAcquireLockEx
157LsapDbApplyTransaction
158LsapDbBuildObjectCaches
159LsapDbCloseHandle
160LsapDbCloseObject
161LsapDbCopyUnicodeAttribute
162LsapDbCopyUnicodeAttributeNoAlloc
163LsapDbCreateObject
164LsapDbDeleteAttributesObject
165LsapDbDeleteObject
166LsapDbDereferenceHandle
167LsapDbDereferenceObject
168LsapDbEnumerateSids
169LsapDbEnumerateTrustedDomainsEx
170LsapDbExpAcquireReadLockTrustedDomainList
171LsapDbExpAcquireWriteLockTrustedDomainList
172LsapDbExpConvertReadLockTrustedDomainListToExclusive
173LsapDbExpConvertWriteLockTrustedDomainListToShared
174LsapDbExpIsCacheBuilding
175LsapDbExpIsCacheValid
176LsapDbExpIsLockedTrustedDomainList
177LsapDbExpMakeCacheBuilding
178LsapDbExpMakeCacheInvalid
179LsapDbExpMakeCacheValid
180LsapDbExpReleaseLockTrustedDomainList
181LsapDbFreeAttributes
182LsapDbFreeTrustedDomainsEx
183LsapDbGetDbObjectTypeName
184LsapDbGetDbPolicyHandle
185LsapDbGetSecretType
186LsapDbInitializeAttribute
187LsapDbIsStatusConnectionFailure
188LsapDbLookupAddListReferencedDomains
189LsapDbLookupCreateListReferencedDomains
190LsapDbLookupGetDomainInfo
191LsapDbLookupListReferencedDomains
192LsapDbLookupMergeDisjointReferencedDomains
193LsapDbLookupNameChainRequest
194LsapDbLookupNamesInPrimaryDomain
195LsapDbLookupSidsInPrimaryDomain
196LsapDbMakeGuidAttribute
197LsapDbMakeSidAttribute
198LsapDbMakeUnicodeAttribute
199LsapDbOpenObject
200LsapDbQueryInformationPolicy
201LsapDbReadAttribute
202LsapDbReadAttributesObject
203LsapDbReferenceObject
204LsapDbReleaseLockEx
205LsapDbSecretIsMachineAcc
206LsapDbSidToLogicalNameObject
207LsapDbSlowEnumerateTrustedDomains
208LsapDbUpdateCountCompUnmappedNames
209LsapDbVerifyHandle
210LsapDbVerifyInfoQueryTrustedDomain
211LsapDbVerifyInfoSetTrustedDomain
212LsapDbWriteAttributesObject
213LsapDomainRenameHandlerForLogonSessions
214LsapDsInitializeDsStateInfo
215LsapDsUnitializeDsStateInfo
216LsapDssetupInitializeGetPrimaryDomainInformationOpState
217LsapDuplicateSid
218LsapDuplicateString
219LsapFreeLsaHeap
220LsapFreePrivateHeap
221LsapFreeString
222LsapGetAccountDomainHandle
223LsapGetCapeNamesForCap
224LsapGetGlobalRestrictAnonymous
225LsapGetHourlyLogLevel
226LsapGetLogonSessionAccountInfoEx
227LsapGetLookupRestrictIsolatedNameLevel
228LsapGetPolicyHandle
229LsapGetWellKnownSid
230LsapInitLsa
231LsapInitializeLsaDb
232LsapIsBuiltinDomain
233LsapIsSamOpened
234LsapOpenSam
235LsapQueryClientInfo
236LsapRemoveTrailingDot
237LsapRpcCopySid
238LsapRpcCopyUnicodeString
239LsapRtlValidateControllerTrustedDomain
240LsapRtlValidateControllerTrustedDomainByHandle
241LsapSetErrorInfo
242LsapSidListSize
243LsapTraceEvent
244LsapTraceEventWithData
245LsapTruncateUnicodeString
246LsarClose
247LsarCreateSecret
248LsarDeleteObject
249LsarEnumerateTrustedDomainsEx
250LsarLookupSids
251LsarOpenPolicy
252LsarOpenSecret
253LsarQueryDomainInformationPolicy
254LsarQueryInformationPolicy
255LsarQuerySecret
256LsarQueryTrustedDomainInfoByName
257LsarRetrievePrivateData
258LsarSetInformationPolicy
259LsarSetSecret
260LsarSetTrustedDomainInfoByName
261LsarStorePrivateData
262ServiceInit
263_fgs__LSAPR_TRUSTED_ENUM_BUFFER
264_fgs__LSAPR_TRUSTED_ENUM_BUFFER_EX
265_fgs__LSAPR_TRUST_INFORMATION
266_fgu__LSAPR_TRUSTED_DOMAIN_INFO
lib/libc/mingw/libarm32/maintenanceui.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of MaintenanceUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MaintenanceUI.dll"
7EXPORTS
8StartMaintenance
9StopMaintenance
lib/libc/mingw/libarm32/mcxdriv.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of McxDriv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "McxDriv.dll"
7EXPORTS
8Mcx2Install
lib/libc/mingw/libarm32/mfasfsrcsnk.def created+26
......@@ -0,0 +1,26 @@
1;
2; Definition file of mfasfsrcsnk.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mfasfsrcsnk.dll"
7EXPORTS
8MFCreateASFContentInfo
9MFCreateASFIndexer
10MFCreateASFIndexerByteStream
11MFCreateASFMediaSink
12MFCreateASFMediaSinkActivate
13MFCreateASFMediaSinkActivateFromByteStream
14MFCreateASFMediaSinkActivateNoInit
15MFCreateASFMultiplexer
16MFCreateASFMutex
17MFCreateASFProfile
18MFCreateASFProfileFromPresentationDescriptor
19MFCreateASFSplitter
20MFCreateASFStreamConfig
21MFCreateASFStreamPrioritization
22MFCreateASFStreamSelector
23MFCreateASFStreamingMediaSink
24MFCreateASFStreamingMediaSinkActivate
25MFCreateASFStreamingMediaSinkActivateNoInit
26MFCreatePresentationDescriptorFromASFProfile
lib/libc/mingw/libarm32/mfcaptureengine.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of MFCaptureEngine.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MFCaptureEngine.DLL"
7EXPORTS
8MFCreateCaptureEngine
lib/libc/mingw/libarm32/mfnetcore.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of mfnetcore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mfnetcore.dll"
7EXPORTS
8MFCreateCredentialCache
9MFCreatePartialSeekableByteStream
10MFCreateProxyLocator
lib/libc/mingw/libarm32/mfnetsrc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of mfnetsrc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mfnetsrc.dll"
7EXPORTS
8MFCreateByteCacheFile
9MFCreateCacheManager
10MFCreateFileBlockMap
lib/libc/mingw/libarm32/mftranscode.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of MFTranscode.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MFTranscode.dll"
7EXPORTS
8GetTranscodeComponentCreator
9MFCreateSmartRemuxEngine
10MFCreateTranscodeEngine
11MFCreateTranscodeProfile
12MFCreateTranscodeSinkActivate
13MFCreateTranscodeTopology
14MFCreateTranscodeTopologyFromByteStream
15MFTranscodeGetAudioOutputAvailableTypes
lib/libc/mingw/libarm32/mibincodec.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of mibincodec.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mibincodec.dll"
7EXPORTS
8MI_Application_NewDeserializer_Binary
9MI_Application_NewSerializer_Binary
10SyncBmilReader_Create
11SyncBmilReader_Delete
12SyncBmilReader_ReadInstance
13SyncBmilWriter_Create
14SyncBmilWriter_Delete
15SyncBmilWriter_WriteInstance
lib/libc/mingw/libarm32/microsoft.management.infrastructure.native.unmanaged.def created+38
......@@ -0,0 +1,38 @@
1;
2; Definition file of Microsoft.Management.Infrastructure.Native.Unmanaged.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Microsoft.Management.Infrastructure.Native.Unmanaged.DLL"
7EXPORTS
8GetAddr_OperationCallbacks_ClassObjectNeededCallback
9GetAddr_OperationCallbacks_FreeIncludedFileBufferCallback
10GetAddr_OperationCallbacks_GetIncludedFileBufferCallback
11GetAddr_OperationCallbacks_NativeClassCallback
12GetAddr_OperationCallbacks_NativeIndicationCallback
13GetAddr_OperationCallbacks_NativeInstanceCallback
14GetAddr_OperationCallbacks_NativePromptUserCallback
15GetAddr_OperationCallbacks_NativeStreamedParameterResultCallback
16GetAddr_OperationCallbacks_NativeWriteErrorCallback
17GetAddr_OperationCallbacks_NativeWriteMessageCallback
18GetAddr_OperationCallbacks_NativeWriteProgressCallback
19GetAddr_SessionHandle_OnReleaseHandleCompleted
20MI_ApplicationWrapper_Initialize
21MI_ApplicationWrapper_ScheduleCleanupCallback
22MI_ApplicationWrapper_SetAppDomainIsUnloading
23MI_Helpers_GetCurrentSecurityToken
24MI_Helpers_IsClrShuttingDown
25MI_Helpers_SetClrIsNotShuttingDown
26MI_Helpers_SetClrIsShuttingDown
27MI_OperationWrapper_DecrementCount_AndDontWorryAboutLifetimeOfMiDotNetDll
28MI_OperationWrapper_DecrementCount_AndManageLifetimeOfMiDotNetDll
29MI_OperationWrapper_GetClass
30MI_OperationWrapper_GetIndication
31MI_OperationWrapper_GetInstance
32MI_OperationWrapper_Initialize
33MI_OperationWrapper_ScheduleDrainingWorkIfNeeded
34MI_OperationWrapper_SetupDrainingIfNeeded
35UnmanagedMI_GetMiClientFT_V1
36UnmanagedMI_GetMiEvaluatorFT_V1
37UnmanagedMI_GetMiMonitoringFT_V1
38UnmanagedMI_GetMiReactiveExtensionsFT_V1
lib/libc/mingw/libarm32/mimofcodec.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of mimofcodec.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mimofcodec.dll"
7EXPORTS
8MI_Application_NewDeserializer_Mof
9MI_Application_NewSerializer_Mof
10MI_MOFParser_Delete
11MI_MOFParser_Init
12MI_MOFParser_Lex
13MI_MOFParser_Parse
lib/libc/mingw/libarm32/mirrordrvcompat.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of MirrorDrvCompat.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MirrorDrvCompat.dll"
7EXPORTS
8MirrorDrvLoadedNotify
lib/libc/mingw/libarm32/miutils.def created+153
......@@ -0,0 +1,153 @@
1;
2; Definition file of miutils.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "miutils.dll"
7EXPORTS
8??0CAutoSetActivityId@@QAA@XZ
9??0CCritSec@@QAA@XZ
10??0DynamicSchema@@QAA@XZ
11??0IndicationSchema@@QAA@XZ
12??0StaticSchema@@QAA@XZ
13??0WMISchema@@QAA@XZ
14??0WMISchema@@QAA@_N@Z
15??1CAutoSetActivityId@@QAA@XZ
16??1CCritSec@@QAA@XZ
17??1WMISchema@@UAA@XZ
18??4CAutoSetActivityId@@QAAAAV0@ABV0@@Z
19??4CCritSec@@QAAAAV0@ABV0@@Z
20?CreateInstance@DynamicSchema@@UAAJPBGPAUIWbemClassObject@@KPBU_MI_PropertySet@@_NAAPAU_MI_Instance@@PAUIConversionContext@@@Z
21?CreateInstance@IndicationSchema@@UAAJPBGPAUIWbemClassObject@@KPBU_MI_PropertySet@@_NAAPAU_MI_Instance@@PAUIConversionContext@@@Z
22?CreateInstance@StaticSchema@@UAAJPBGPAUIWbemClassObject@@KPBU_MI_PropertySet@@_NAAPAU_MI_Instance@@PAUIConversionContext@@@Z
23?DeInitialize@WMISchema@@QAAJXZ
24?GetFlags@MiSchema@@UBAJXZ
25?GetMiClass@DynamicSchema@@UAAJPBG00PAPBU_MI_Class@@@Z
26?GetMiClass@IndicationSchema@@UAAJPBG00PAPBU_MI_Class@@@Z
27?GetMiClass@StaticSchema@@UAAJPBG00PAPBU_MI_Class@@@Z
28?GetNoneCachedWmiClass@WMISchema@@UAAJPBGPAUIWbemServices@@AAV?$CComPtr@UIWbemClassObject@@@ATL@@PAUIConversionContext@@@Z
29?GetWmiClass@WMISchema@@UAAJPBG0AAV?$CComPtr@UIWbemClassObject@@@ATL@@PAUIConversionContext@@@Z
30?GetWmiIWbemServices@WMISchema@@UAAJPBGAAV?$CComPtr@UIWbemServices@@@ATL@@@Z
31?Initialize@StaticSchema@@QAAJPBU_MI_Module@@@Z
32?SetFlags@MiSchema@@MAAJJ@Z
33CimErrorFromErrorCode
34CimError_Construct
35CimStatusCodeFromWindowsError
36CimTypeToType
37ClassCache_AddClass
38ClassCache_Delete
39ClassCache_GetClass
40ClassCache_New
41Class_New
42CompareInstance
43CompareValue
44Config_GetProtocolHandlerDetails
45Config_GetRegString
46CreateConversionContext
47DestinationOptions_Create
48DestinationOptions_Duplicate
49DestinationOptions_MigrateOptions
50FindClassDecl
51FindMethodDecl
52FindQualifierInWMIObject
53GetCorrelationId
54GetMethodParameters
55GetReferenceFromWMIObjectPath
56InstanceToWMIEvent
57InstanceToWMIExtendedStatus
58InstanceToWMIObject
59Instance_Clone
60Instance_Construct
61Instance_GetResourceURI
62Instance_InitDynamic
63Instance_IsDynamic
64Instance_MatchKeys
65Instance_New
66Instance_SetElementArray
67Instance_SetElementArrayItem
68Instance_SetResourceURI
69Instance_SetServerName
70IsLifeCycleIndicationQuery
71MI_Hash
72MiErrorCategoryFromWindowsError
73OSC_Batch_Destroy
74OSC_Batch_Get
75OSC_Batch_Strdup
76OSC_StringToMiValue
77OSC_Type_GetSize
78OperationOptions_CopyOptions
79OperationOptions_Create
80OperationOptions_MigrateOptions
81OptionsValueToContextValue
82Options_FindValue
83ParametersToWMIObject
84PropertySet_New
85PropertyToVariant
86PublishClientOperationInfo
87PublishDebugInfo
88PublishDebugMessage
89PublishProviderResult
90PublishProviderWriteError
91PublishProviderWriteMessage
92QualifierFlavorToWMI
93RCClass_AddClassQualifier
94RCClass_AddClassQualifierArray
95RCClass_AddClassQualifierArrayItem
96RCClass_AddElement
97RCClass_AddElementArray
98RCClass_AddElementArrayItem
99RCClass_AddElementQualifier
100RCClass_AddElementQualifierArray
101RCClass_AddElementQualifierArrayItem
102RCClass_AddMethod
103RCClass_AddMethodParameter
104RCClass_AddMethodParameterQualifier
105RCClass_AddMethodParameterQualifierArray
106RCClass_AddMethodParameterQualifierArrayItem
107RCClass_AddMethodQualifier
108RCClass_AddMethodQualifierArray
109RCClass_AddMethodQualifierArrayItem
110RCClass_New
111ResultFromHRESULT
112ResultToHRESULT
113RtlDeleteCachedFastLock
114RtlInitializeCachedFastLock
115RtlInterlockedCompareWait
116RtlInterlockedWakeAll
117RtlQueueAcquireCachedFastLockExclusive
118RtlQueueAcquireCachedFastLockShared
119RtlQueueAcquireFastLockExclusive
120RtlQueueAcquireFastLockShared
121RtlReleaseCachedFastLockExclusive
122RtlReleaseCachedFastLockShared
123RtlReleaseFastLockExclusive
124RtlReleaseFastLockShared
125RtlTryAcquireCachedFastLockShared
126RtlTryAcquireFastLockExclusive
127RtlTryAcquireFastLockShared
128RtlpInitFastLock
129SetCorrelationIdToWbemContext
130SetModifiedPropertyNamesToContext
131SetProperties
132SubscriptionDeliveryOptions_Create
133SubscriptionDeliveryOptions_MigrateOptions
134TypeToCimType
135ValueClear
136ValueToVariant
137VariantArrayToSafeArray
138VariantToValue
139WMIEventToCIMIndication
140WMIExtendedObjectToInstance
141WMIObjectToClass
142WMIObjectToInstance
143WMIQualifierFlavorToMI
144WriteWBEM_MC_CLIENT_REQUEST_FAILURE
145XMLDOM_Free
146XMLDOM_Parse
147XML_FormatError
148XML_Init
149XML_Next
150XML_PutError
151XML_RegisterNameSpace
152XML_SetText
153XML_StripWhitespace
lib/libc/mingw/libarm32/mmcbase.def created+138
......@@ -0,0 +1,138 @@
1;
2; Definition file of mmcbase.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mmcbase.DLL"
7EXPORTS
8??0?$CEventLock@UAppEvents@@@@QAA@XZ
9??0CEventBuffer@@QAA@ABV0@@Z
10??0CEventBuffer@@QAA@XZ
11??0CMMCStrongReferences@@AAA@XZ
12??0SC@mmcerror@@QAA@ABV01@@Z
13??0SC@mmcerror@@QAA@J@Z
14??1?$CEventLock@UAppEvents@@@@QAA@XZ
15??1CEventBuffer@@QAA@XZ
16??1SC@mmcerror@@QAA@XZ
17??4?$CEventLock@UAppEvents@@@@QAAAAV0@ABV0@@Z
18??4CEventBuffer@@QAAAAV0@ABV0@@Z
19??4CMMCStrongReferences@@QAAAAV0@ABV0@@Z
20??4SC@mmcerror@@QAAAAV01@ABV01@@Z
21??4SC@mmcerror@@QAAAAV01@J@Z
22??7SC@mmcerror@@QBAHXZ
23??8SC@mmcerror@@QBA_NABV01@@Z
24??8SC@mmcerror@@QBA_NJ@Z
25??9SC@mmcerror@@QBA_NABV01@@Z
26??9SC@mmcerror@@QBA_NJ@Z
27??BSC@mmcerror@@QBA_NXZ
28??_FSC@mmcerror@@QAAXXZ
29?AddItem@BookKeeping@@SAJAAVItemHandle@@@Z
30?AddRef@CMMCStrongReferences@@SAKXZ
31?AddSnapin@BookKeeping@@SAJPBGAAH@Z
32?AddSnapinInterface@BookKeeping@@SA_NPAUIUnknown@@PBGAAH@Z
33?CheckCallingThreadID@SC@mmcerror@@QAAXXZ
34?Clear@SC@mmcerror@@QAAXXZ
35?DumpWatsonTables@BookKeeping@@SAJPAXPBGH@Z
36?EnableDiagnosticMessageBox@BookKeeping@@SA_N_N@Z
37?ExceptionFilter@CMMCWatsonAPI@@SAJPAU_EXCEPTION_POINTERS@@H@Z
38?FatalError@SC@mmcerror@@QBAXXZ
39?FindAllSnapinUIThreads@BookKeeping@@SAJHPAPAKPAK@Z
40?FindAllSnapinUIThreads@BookKeeping@@SAJPAPAKPAK@Z
41?FindItem@BookKeeping@@SAPAVItemHandle@@PAX@Z
42?FindSnapin@BookKeeping@@SAABVSnapinBookkeepingInfo@@H@Z
43?FindSnapin@BookKeeping@@SAABVSnapinBookkeepingInfo@@PAUIUnknown@@@Z
44?FindSnapin@BookKeeping@@SAABVSnapinBookkeepingInfo@@PBG@Z
45?ForceException@CMMCWatsonAPI@@SAXH@Z
46?FormatErrorIds@@YAXIVSC@mmcerror@@IPAG@Z
47?FormatErrorShort@@YAXVSC@mmcerror@@IPAG@Z
48?FormatErrorString@@YAXPBGVSC@mmcerror@@IPAGH@Z
49?FromLastError@SC@mmcerror@@QAAAAV12@XZ
50?FromMMC@SC@mmcerror@@QAAAAV12@J@Z
51?FromWin32@SC@mmcerror@@QAAAAV12@J@Z
52?FxSnapinException@BookKeeping@@SA_NHPBG000HPAUHWND__@@@Z
53?GetCode@SC@mmcerror@@QBAJXZ
54?GetComObjectEventSource@@YAAAV?$CEventSource@VCComObjectObserver@@VCVoid@@V2@V2@V2@@@XZ
55?GetErrorMessage@SC@mmcerror@@QBAXIPAG@Z
56?GetEventBuffer@@YAAAVCEventBuffer@@XZ
57?GetFacility@SC@mmcerror@@ABA?AW4facility_type@12@XZ
58?GetFunctionName@SC@mmcerror@@QBAPBGXZ
59?GetHWnd@SC@mmcerror@@SAPAUHWND__@@XZ
60?GetHelpFile@SC@mmcerror@@SAPBGXZ
61?GetHelpID@SC@mmcerror@@QAAKXZ
62?GetHinst@SC@mmcerror@@SAPAUHINSTANCE__@@XZ
63?GetMainThreadID@SC@mmcerror@@SAKXZ
64?GetModalHWND@SC@mmcerror@@SAPAUHWND__@@XZ
65?GetNewSnapinInstanceId@BookKeeping@@SAHXZ
66?GetSingletonObject@CMMCStrongReferences@@CAAAV1@XZ
67?GetSnapinModuleName@BookKeeping@@SAPBGH@Z
68?GetSnapinName@BookKeeping@@SAPBGH@Z
69?GetSnapinName@SC@mmcerror@@QBAPBGXZ
70?GetStringModule@@YAPAUHINSTANCE__@@XZ
71?HrFromSc@@YAJABVSC@mmcerror@@@Z
72?InitInstance@BookKeeping@@SAJXZ
73?InterfaceFailure@BookKeeping@@SAXHPBG0@Z
74?InterfaceMethodActivationContextException@BookKeeping@@SAXHPBG0KPAU_EXCEPTION_POINTERS@@@Z
75?InterfaceMethodException@BookKeeping@@SAXHPBG0KPAU_EXCEPTION_POINTERS@@@Z
76?InterfaceNotFound@BookKeeping@@SAXHPBG@Z
77?InternalAddRef@CMMCStrongReferences@@AAAKXZ
78?InternalLastRefReleased@CMMCStrongReferences@@AAA_NXZ
79?InternalRelease@CMMCStrongReferences@@AAAKXZ
80?InvalidInterface@BookKeeping@@SAXHPBG0@Z
81?InvalidMMCInterface@BookKeeping@@SAXHPBG0@Z
82?InvalidMMCInterfaceRelease@BookKeeping@@SAXHPBG0@Z
83?IsError@SC@mmcerror@@QBA_NXZ
84?IsLocked@CEventBuffer@@QAA_NXZ
85?IsValid@ItemHandle@@SA_NPBV1@@Z
86?LKResult2HRESULT@BookKeeping@@SAJJ@Z
87?LastRefReleased@CMMCStrongReferences@@SA_NXZ
88?LoadStandardOverlays@@YAJPAU_IMAGELIST@@HPAH1@Z
89?Lock@CEventBuffer@@QAAXXZ
90?MMCErrorBox@@YAHII@Z
91?MMCErrorBox@@YAHIVSC@mmcerror@@I@Z
92?MMCErrorBox@@YAHPBGI@Z
93?MMCErrorBox@@YAHPBGVSC@mmcerror@@I@Z
94?MMCErrorBox@@YAHVSC@mmcerror@@I@Z
95?MMCInterfaceError@BookKeeping@@SAXHPBG0@Z
96?MMCInterfaceLeak@BookKeeping@@SAXHPBG@Z
97?MMCInterfaceMethodException@BookKeeping@@SAXHPBG0KPAU_EXCEPTION_POINTERS@@W4_SnapinError@1@@Z
98?MMCNullInterface@BookKeeping@@SAXHPBG0@Z
99?MMCUpdateRegistry@@YAJHPBVCObjectRegParams@@PBVCControlRegParams@@@Z
100?MMC_PickIconDlg@@YAHPAUHWND__@@PAGIPAH@Z
101?MakeSc@SC@mmcerror@@AAAXW4facility_type@12@J@Z
102?RegisterSnapinInterfaceErrorHandler@BookKeeping@@SAP6A_NAAVSnapinBookkeepingInfo@@W4_SnapinError@1@PBG222KPAU_EXCEPTION_POINTERS@@@ZP6A_N012222K3@Z@Z
103?RegisterThread@BookKeeping@@SAJHHKW4SnapinThreadFlags@1@@Z
104?Release@CMMCStrongReferences@@SAKXZ
105?ReleaseSnapinInterface@BookKeeping@@SAJPAUIUnknown@@H@Z
106?RemoveItem@BookKeeping@@SAJPAX@Z
107?SCODEFromSc@@YAJABVSC@mmcerror@@@Z
108?ScEmitOrPostpone@CEventBuffer@@QAA?AVSC@mmcerror@@PAUIDispatch@@JPAVCComVariant@ATL@@H@Z
109?ScFlushPostponed@CEventBuffer@@AAA?AVSC@mmcerror@@XZ
110?ScFromMMC@@YA?AVSC@mmcerror@@J@Z
111?ScGetConsoleEventDispatcher@CConsoleEventDispatcherProvider@@SA?AVSC@mmcerror@@AAPAVCConsoleEventDispatcher@@@Z
112?ScSetConsoleEventDispatcher@CConsoleEventDispatcherProvider@@SA?AVSC@mmcerror@@PAVCConsoleEventDispatcher@@@Z
113?SetFunctionName@SC@mmcerror@@QAAXPBG@Z
114?SetHWnd@SC@mmcerror@@SAXPAUHWND__@@@Z
115?SetHinst@SC@mmcerror@@SAXPAUHINSTANCE__@@@Z
116?SetMainThreadID@SC@mmcerror@@SAXK@Z
117?SetModalHWND@SC@mmcerror@@SAPAUHWND__@@PAU3@@Z
118?SetSnapinName@SC@mmcerror@@QAAXPBG@Z
119?Throw@SC@mmcerror@@QAAXJ@Z
120?Throw@SC@mmcerror@@QAAXXZ
121?ToHr@SC@mmcerror@@QBAJXZ
122?TraceAndClear@SC@mmcerror@@QAAXXZ
123?TraceError@@YAXPBGABVSC@mmcerror@@@Z
124?TraceSnapinError@@YAXPBGABVSC@mmcerror@@@Z
125?Trace_@SC@mmcerror@@QBAXXZ
126?Unlock@CEventBuffer@@QAAXXZ
127?UnregisterAllSnapinInstanceThreads@BookKeeping@@SAJH@Z
128?UnregisterThread@BookKeeping@@SAJHK@Z
129?s_CallDepth@SC@mmcerror@@0IA DATA
130?s_dwMainThreadID@SC@mmcerror@@0KA DATA
131?s_hInst@SC@mmcerror@@0PAUHINSTANCE__@@A DATA
132?s_hWnd@SC@mmcerror@@0PAUHWND__@@A DATA
133?s_hWndModal@SC@mmcerror@@0PAUHWND__@@A DATA
134?s_pDispatcher@CConsoleEventDispatcherProvider@@0PAVCConsoleEventDispatcher@@A DATA
135EnterModalLoop
136InsideModalLoop
137LeaveModalLoop
138ReportFxSnapinException
lib/libc/mingw/libarm32/mmci.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of MMCI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MMCI.DLL"
7EXPORTS
8MediaClassInstaller
9mmWOW64MediaClassInstallerA
lib/libc/mingw/libarm32/mmcico.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of mmcico.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mmcico.dll"
7EXPORTS
8MediaClassCoInstaller
lib/libc/mingw/libarm32/mmcndmgr.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of MMCNDMGR.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MMCNDMGR.DLL"
7EXPORTS
8CreateExecutivePlatform
lib/libc/mingw/libarm32/mmcss.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of MMCSS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MMCSS.dll"
7EXPORTS
8ServiceMain
9ToServiceMain
lib/libc/mingw/libarm32/montr_ci.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of Montr_CI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Montr_CI.dll"
7EXPORTS
8MonitorClassInstaller
lib/libc/mingw/libarm32/mprext.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of MPREXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MPREXT.dll"
7EXPORTS
8DoBroadcastSystemMessageWorker
9DoCommandLinePromptWorker
10DoPasswordDialogWorker
11DoProfileErrorDialogWorker
12ShowReconnectDialogEndWorker
13ShowReconnectDialogUIWorker
14ShowReconnectDialogWorker
15WNetConnectionDialog1WWorker
16WNetConnectionDialogWorker
17WNetDisconnectDialog1WWorker
18WNetDisconnectDialogWorker
lib/libc/mingw/libarm32/mprmsg.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of MPRMSG.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MPRMSG.dll"
7EXPORTS
8MprmsgGetErrorString
lib/libc/mingw/libarm32/mpssvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of MPSSVC.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MPSSVC.DLL"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/mrmcorer.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of MrmCoreR.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MrmCoreR.dll"
7EXPORTS
8GetInternalReferenceBlobForManifestValue
9GetMergedSystemPri
10GetStringValueForManifestField
11MergeResourcePackPri
12MergeSystemPriFiles
13ResourceManagerQueueGetCurrentDepth
14ResourceManagerQueueGetString
15ResourceManagerQueueGetStringDirect
16ResourceManagerQueueIsResourceReference
17ResourceManagerQueueReset
lib/libc/mingw/libarm32/mrt100.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of mrt100.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mrt100.dll"
7EXPORTS
8GetManagedRuntimeService
lib/libc/mingw/libarm32/msasn1.def created+159
......@@ -0,0 +1,159 @@
1;
2; Definition file of MSASN1.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSASN1.dll"
7EXPORTS
8ASN1BERDecBitString
9ASN1BERDecBitString2
10ASN1BERDecBool
11ASN1BERDecChar16String
12ASN1BERDecChar32String
13ASN1BERDecCharString
14ASN1BERDecCheck
15ASN1BERDecDouble
16ASN1BERDecEndOfContents
17ASN1BERDecEoid
18ASN1BERDecExplicitTag
19ASN1BERDecFlush
20ASN1BERDecGeneralizedTime
21ASN1BERDecLength
22ASN1BERDecMultibyteString
23ASN1BERDecNotEndOfContents
24ASN1BERDecNull
25ASN1BERDecObjectIdentifier
26ASN1BERDecObjectIdentifier2
27ASN1BERDecOctetString
28ASN1BERDecOctetString2
29ASN1BERDecOpenType
30ASN1BERDecOpenType2
31ASN1BERDecPeekTag
32ASN1BERDecS16Val
33ASN1BERDecS32Val
34ASN1BERDecS8Val
35ASN1BERDecSXVal
36ASN1BERDecSkip
37ASN1BERDecTag
38ASN1BERDecU16Val
39ASN1BERDecU32Val
40ASN1BERDecU8Val
41ASN1BERDecUTCTime
42ASN1BERDecUTF8String
43ASN1BERDecZeroChar16String
44ASN1BERDecZeroChar32String
45ASN1BERDecZeroCharString
46ASN1BERDecZeroMultibyteString
47ASN1BERDotVal2Eoid
48ASN1BEREncBitString
49ASN1BEREncBool
50ASN1BEREncChar16String
51ASN1BEREncChar32String
52ASN1BEREncCharString
53ASN1BEREncCheck
54ASN1BEREncDouble
55ASN1BEREncEndOfContents
56ASN1BEREncEoid
57ASN1BEREncExplicitTag
58ASN1BEREncFlush
59ASN1BEREncGeneralizedTime
60ASN1BEREncLength
61ASN1BEREncMultibyteString
62ASN1BEREncNull
63ASN1BEREncObjectIdentifier
64ASN1BEREncObjectIdentifier2
65ASN1BEREncOctetString
66ASN1BEREncOpenType
67ASN1BEREncRemoveZeroBits
68ASN1BEREncRemoveZeroBits2
69ASN1BEREncS32
70ASN1BEREncSX
71ASN1BEREncTag
72ASN1BEREncU32
73ASN1BEREncUTCTime
74ASN1BEREncUTF8String
75ASN1BEREncZeroMultibyteString
76ASN1BEREoid2DotVal
77ASN1BEREoid_free
78ASN1CEREncBeginBlk
79ASN1CEREncBitString
80ASN1CEREncChar16String
81ASN1CEREncChar32String
82ASN1CEREncCharString
83ASN1CEREncEndBlk
84ASN1CEREncFlushBlkElement
85ASN1CEREncGeneralizedTime
86ASN1CEREncMultibyteString
87ASN1CEREncNewBlkElement
88ASN1CEREncOctetString
89ASN1CEREncUTCTime
90ASN1CEREncZeroMultibyteString
91ASN1DEREncBeginBlk
92ASN1DEREncBitString
93ASN1DEREncChar16String
94ASN1DEREncChar32String
95ASN1DEREncCharString
96ASN1DEREncEndBlk
97ASN1DEREncFlushBlkElement
98ASN1DEREncGeneralizedTime
99ASN1DEREncMultibyteString
100ASN1DEREncNewBlkElement
101ASN1DEREncOctetString
102ASN1DEREncUTCTime
103ASN1DEREncUTF8String
104ASN1DEREncZeroMultibyteString
105ASN1DecAlloc
106ASN1DecRealloc
107ASN1DecSetError
108ASN1EncSetError
109ASN1Free
110ASN1_CloseDecoder
111ASN1_CloseEncoder
112ASN1_CloseEncoder2
113ASN1_CloseModule
114ASN1_CreateDecoder
115ASN1_CreateDecoderEx
116ASN1_CreateEncoder
117ASN1_CreateModule
118ASN1_Decode
119ASN1_Encode
120ASN1_FreeDecoded
121ASN1_FreeEncoded
122ASN1_GetDecoderOption
123ASN1_GetEncoderOption
124ASN1_SetDecoderOption
125ASN1_SetEncoderOption
126ASN1bitstring_cmp
127ASN1bitstring_free
128ASN1char16string_cmp
129ASN1char16string_free
130ASN1char32string_cmp
131ASN1char32string_free
132ASN1charstring_cmp
133ASN1charstring_free
134ASN1generalizedtime_cmp
135ASN1intx2int32
136ASN1intx2uint32
137ASN1intx_add
138ASN1intx_cmp
139ASN1intx_free
140ASN1intx_setuint32
141ASN1intx_sub
142ASN1intx_uoctets
143ASN1intxisuint32
144ASN1objectidentifier2_cmp
145ASN1objectidentifier_cmp
146ASN1objectidentifier_free
147ASN1octetstring_cmp
148ASN1octetstring_free
149ASN1open_cmp
150ASN1open_free
151ASN1uint32_uoctets
152ASN1utctime_cmp
153ASN1utf8string_free
154ASN1ztchar16string_cmp
155ASN1ztchar16string_free
156ASN1ztchar32string_cmp
157ASN1ztchar32string_free
158ASN1ztcharstring_cmp
159ASN1ztcharstring_free
lib/libc/mingw/libarm32/msauserext.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of MSAUSEREXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSAUSEREXT.dll"
7EXPORTS
8MsaUI_ClearThreadClientContext
9MsaUI_CloseClientContext
10MsaUI_CreateClientContext
11MsaUI_CredUIPromptForWindowsCredentials
12MsaUI_LaunchWebAuthFlow
13MsaUI_RunWizard
14MsaUI_SetThreadClientContext
15MsaUi_CreateClientContextFromWab
16MsaUser_FormatUserDisplayName
17MsaUser_GetPlatformQualifier
18MsaUser_IsChildAccount
19MsaUser_WinBioSetMSACredential
lib/libc/mingw/libarm32/msclmd.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of Msclmd.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Msclmd.dll"
7EXPORTS
8CardAcquireContext
lib/libc/mingw/libarm32/mscms.def deleted-113
......@@ -1,113 +0,0 @@
1;
2; Definition file of mscms.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mscms.dll"
7EXPORTS
8AssociateColorProfileWithDeviceA
9AssociateColorProfileWithDeviceW
10CheckBitmapBits
11CheckColors
12CloseColorProfile
13CloseDisplay
14ColorCplGetDefaultProfileScope
15ColorCplGetDefaultRenderingIntentScope
16ColorCplGetProfileProperties
17ColorCplHasSystemWideAssociationListChanged
18ColorCplInitialize
19ColorCplLoadAssociationList
20ColorCplMergeAssociationLists
21ColorCplOverwritePerUserAssociationList
22ColorCplReleaseProfileProperties
23ColorCplResetSystemWideAssociationListChangedWarning
24ColorCplSaveAssociationList
25ColorCplSetUsePerUserProfiles
26ColorCplUninitialize
27ConvertColorNameToIndex
28ConvertIndexToColorName
29CreateColorTransformA
30CreateColorTransformW
31CreateDeviceLinkProfile
32CreateMultiProfileTransform
33CreateProfileFromLogColorSpaceA
34CreateProfileFromLogColorSpaceW
35DccwCreateDisplayProfileAssociationList
36DccwGetDisplayProfileAssociationList
37DccwGetGamutSize
38DccwReleaseDisplayProfileAssociationList
39DccwSetDisplayProfileAssociationList
40DeleteColorTransform
41DeviceRenameEvent
42DisassociateColorProfileFromDeviceA
43DisassociateColorProfileFromDeviceW
44EnumColorProfilesA
45EnumColorProfilesW
46GenerateCopyFilePaths
47GetCMMInfo
48GetColorDirectoryA
49GetColorDirectoryW
50GetColorProfileElement
51GetColorProfileElementTag
52GetColorProfileFromHandle
53GetColorProfileHeader
54GetCountColorProfileElements
55GetNamedProfileInfo
56GetPS2ColorRenderingDictionary
57GetPS2ColorRenderingIntent
58GetPS2ColorSpaceArray
59GetStandardColorSpaceProfileA
60GetStandardColorSpaceProfileW
61InstallColorProfileA
62InstallColorProfileW
63InternalGetDeviceConfig
64InternalGetPS2CSAFromLCS
65InternalGetPS2ColorRenderingDictionary
66InternalGetPS2ColorSpaceArray
67InternalGetPS2PreviewCRD
68InternalRefreshCalibration
69InternalSetDeviceConfig
70InternalWcsAssociateColorProfileWithDevice
71IsColorProfileTagPresent
72IsColorProfileValid
73OpenColorProfileA
74OpenColorProfileW
75OpenDisplay
76RegisterCMMA
77RegisterCMMW
78SelectCMM
79SetColorProfileElement
80SetColorProfileElementReference
81SetColorProfileElementSize
82SetColorProfileHeader
83SetStandardColorSpaceProfileA
84SetStandardColorSpaceProfileW
85SpoolerCopyFileEvent
86TranslateBitmapBits
87TranslateColors
88UninstallColorProfileA
89UninstallColorProfileW
90UnregisterCMMA
91UnregisterCMMW
92WcsAssociateColorProfileWithDevice
93WcsCheckColors
94WcsCreateIccProfile
95WcsDisassociateColorProfileFromDevice
96WcsEnumColorProfiles
97WcsEnumColorProfilesSize
98WcsGetCalibrationManagementState
99WcsGetDefaultColorProfile
100WcsGetDefaultColorProfileSize
101WcsGetDefaultRenderingIntent
102WcsGetUsePerUserProfiles
103WcsGpCanInstallOrUninstallProfiles
104WcsOpenColorProfileA
105WcsOpenColorProfileW
106WcsSetCalibrationManagementState
107WcsSetDefaultColorProfile
108WcsSetDefaultRenderingIntent
109WcsSetUsePerUserProfiles
110WcsTranslateColors
111InternalGetPS2ColorRenderingDictionary2
112InternalGetPS2PreviewCRD2
113InternalGetPS2ColorSpaceArray2
lib/libc/mingw/libarm32/mscoree.def created+128
......@@ -0,0 +1,128 @@
1;
2; Definition file of mscoree.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mscoree.dll"
7EXPORTS
8InitErrors
9PostError
10InitSSAutoEnterThread
11UpdateError
12CloseCtrs
13LoadStringRC
14ReOpenMetaDataWithMemory
15ord_24 @24
16CollectCtrs
17CorDllMainWorker
18EEDllGetClassObjectFromClass
19GetPrivateContextsPerfCounters
20GetProcessExecutableHeap
21GetStartupFlags
22GetTargetForVTableEntry
23GetTokenForVTableEntry
24LogHelp_LogAssert
25LogHelp_NoGuiOnAssert
26LogHelp_TerminateOnAssert
27OpenCtrs
28SetTargetForVTableEntry
29CLRCreateInstance
30CallFunctionShim
31ClrCreateManagedInstance
32CoEEShutDownCOM
33CoInitializeCor
34CoInitializeEE
35CoUninitializeCor
36CoUninitializeEE
37CorBindToCurrentRuntime
38CorBindToRuntime
39CorBindToRuntimeByCfg
40CorBindToRuntimeByPath
41CorBindToRuntimeByPathEx
42CorBindToRuntimeEx
43CorBindToRuntimeHost
44CorExitProcess
45CorGetSvc
46CorIsLatestSvc
47CorMarkThreadInThreadPool
48CorTickleSvc
49CreateConfigStream
50CreateDebuggingInterfaceFromVersion
51CreateInterface
52EEDllRegisterServer
53EEDllUnregisterServer
54GetAssemblyMDImport
55GetCLRMetaHost
56GetCORRequiredVersion
57GetCORRootDirectory
58GetCORSystemDirectory
59GetCORVersion
60GetCompileInfo
61GetFileVersion
62GetHashFromAssemblyFile
63GetHashFromAssemblyFileW
64GetHashFromBlob
65GetHashFromFile
66GetHashFromFileW
67GetHashFromHandle
68GetHostConfigurationFile
69GetMetaDataInternalInterface
70GetMetaDataInternalInterfaceFromPublic
71GetMetaDataPublicInterfaceFromInternal
72GetPermissionRequests
73GetRealProcAddress
74GetRequestedRuntimeInfo
75GetRequestedRuntimeVersion
76GetRequestedRuntimeVersionForCLSID
77GetVersionFromProcess
78GetXMLElement
79GetXMLElementAttribute
80GetXMLObject
81IEE
82LoadLibraryShim
83LoadLibraryWithPolicyShim
84LoadStringRCEx
85LockClrVersion
86MetaDataGetDispenser
87ND_CopyObjDst
88ND_CopyObjSrc
89ND_RI2
90ND_RI4
91ND_RI8
92ND_RU1
93ND_WI2
94ND_WI4
95ND_WI8
96ND_WU1
97ReOpenMetaDataWithMemoryEx
98RunDll32ShimW
99RuntimeOSHandle
100RuntimeOpenImage
101RuntimeReleaseHandle
102StrongNameCompareAssemblies
103StrongNameErrorInfo
104StrongNameFreeBuffer
105StrongNameGetBlob
106StrongNameGetBlobFromImage
107StrongNameGetPublicKey
108StrongNameHashSize
109StrongNameKeyDelete
110StrongNameKeyGen
111StrongNameKeyGenEx
112StrongNameKeyInstall
113StrongNameSignatureGeneration
114StrongNameSignatureGenerationEx
115StrongNameSignatureSize
116StrongNameSignatureVerification
117StrongNameSignatureVerificationEx
118StrongNameSignatureVerificationFromImage
119StrongNameTokenFromAssembly
120StrongNameTokenFromAssemblyEx
121StrongNameTokenFromPublicKey
122TranslateSecurityAttributes
123_CorDllMain
124_CorExeMain
125_CorExeMain2
126_CorImageUnloading
127_CorValidateImage
128ord_142 @142
lib/libc/mingw/libarm32/msdart.def created+607
......@@ -0,0 +1,607 @@
1;
2; Definition file of MSDART.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSDART.DLL"
7EXPORTS
8??0CCritSec@@QAA@XZ
9??0CDoubleList@@QAA@XZ
10??0CEXAutoBackupFile@@QAA@PBG@Z
11??0CEXAutoBackupFile@@QAA@XZ
12??0CExFileOperation@@QAA@XZ
13??0CFakeLock@@QAA@XZ
14??0CLKRHashTable@@QAA@PBDP6A?BKPBX@ZP6AKK@ZP6A_NKK@ZP6AX1H@ZNKK_N6PAVCLKRhashAllocator@@@Z
15??0CLKRHashTableStats@@QAA@XZ
16??0CLKRHashTable_Iterator@@IAA@PAVCLKRHashTable@@F@Z
17??0CLKRHashTable_Iterator@@QAA@ABV0@@Z
18??0CLKRHashTable_Iterator@@QAA@XZ
19??0CLKRLinearHashTable@@AAA@PBDP6A?BKPBX@ZP6AKK@ZP6A_NKK@ZP6AX1H@ZNKPAVCLKRHashTable@@_N7PAVCLKRhashAllocator@@@Z
20??0CLKRLinearHashTable@@QAA@PBDP6A?BKPBX@ZP6AKK@ZP6A_NKK@ZP6AX1H@ZNKK_N6PAVCLKRhashAllocator@@@Z
21??0CLKRLinearHashTable_Iterator@@IAA@PAVCLKRLinearHashTable@@PAVCNodeClump@@KF@Z
22??0CLKRLinearHashTable_Iterator@@QAA@ABV0@@Z
23??0CLKRLinearHashTable_Iterator@@QAA@XZ
24??0CLKRhashDefaultAllocator@@QAA@XZ
25??0CLockedDoubleList@@QAA@XZ
26??0CLockedSingleList@@QAA@XZ
27??0CReaderWriterLock2@@QAA@XZ
28??0CReaderWriterLock3@@QAA@XZ
29??0CReaderWriterLock3AR@@QAA@XZ
30??0CReaderWriterLock@@QAA@XZ
31??0CSingleList@@QAA@XZ
32??0CSmallSpinLock@@QAA@XZ
33??0CSpinLock@@QAA@XZ
34??1CCritSec@@QAA@XZ
35??1CDoubleList@@QAA@XZ
36??1CEXAutoBackupFile@@QAA@XZ
37??1CExFileOperation@@QAA@XZ
38??1CFakeLock@@QAA@XZ
39??1CLKRHashTable@@QAA@XZ
40??1CLKRHashTable_Iterator@@QAA@XZ
41??1CLKRLinearHashTable@@QAA@XZ
42??1CLKRLinearHashTable_Iterator@@QAA@XZ
43??1CLockedDoubleList@@QAA@XZ
44??1CLockedSingleList@@QAA@XZ
45??1CReaderWriterLock2@@QAA@XZ
46??1CReaderWriterLock3@@QAA@XZ
47??1CReaderWriterLock3AR@@QAA@XZ
48??1CReaderWriterLock@@QAA@XZ
49??1CSingleList@@QAA@XZ
50??1CSmallSpinLock@@QAA@XZ
51??1CSpinLock@@QAA@XZ
52??4?$CLockBase@$00$00$02$00$02$01@@QAAAAV0@ABV0@@Z
53??4?$CLockBase@$01$00$00$00$02$01@@QAAAAV0@ABV0@@Z
54??4?$CLockBase@$02$00$00$00$00$00@@QAAAAV0@ABV0@@Z
55??4?$CLockBase@$03$00$00$01$02$02@@QAAAAV0@ABV0@@Z
56??4?$CLockBase@$04$01$01$00$02$01@@QAAAAV0@ABV0@@Z
57??4?$CLockBase@$05$01$01$00$02$01@@QAAAAV0@ABV0@@Z
58??4?$CLockBase@$06$01$00$00$02$01@@QAAAAV0@ABV0@@Z
59??4?$CLockBase@$07$01$00$00$02$01@@QAAAAV0@ABV0@@Z
60??4CCritSec@@QAAAAV0@ABV0@@Z
61??4CDoubleList@@QAAAAV0@ABV0@@Z
62??4CEXAutoBackupFile@@QAAAAV0@ABV0@@Z
63??4CExFileOperation@@QAAAAV0@ABV0@@Z
64??4CFakeLock@@QAAAAV0@ABV0@@Z
65??4CLKRHashTableStats@@QAAAAV0@ABV0@@Z
66??4CLKRHashTable_Iterator@@QAAAAV0@ABV0@@Z
67??4CLKRLinearHashTable_Iterator@@QAAAAV0@ABV0@@Z
68??4CLockedDoubleList@@QAAAAV0@ABV0@@Z
69??4CLockedSingleList@@QAAAAV0@ABV0@@Z
70??4CMdVersionInfo@@QAAAAV0@ABV0@@Z
71??4CReaderWriterLock2@@QAAAAV0@ABV0@@Z
72??4CReaderWriterLock3@@QAAAAV0@ABV0@@Z
73??4CReaderWriterLock3AR@@QAAAAV0@ABV0@@Z
74??4CReaderWriterLock@@QAAAAV0@ABV0@@Z
75??4CSingleList@@QAAAAV0@ABV0@@Z
76??4CSmallSpinLock@@QAAAAV0@ABV0@@Z
77??4CSpinLock@@QAAAAV0@ABV0@@Z
78??8CLKRHashTable_Iterator@@QBA_NABV0@@Z
79??8CLKRLinearHashTable_Iterator@@QBA_NABV0@@Z
80??9CLKRHashTable_Iterator@@QBA_NABV0@@Z
81??9CLKRLinearHashTable_Iterator@@QBA_NABV0@@Z
82??_7CLKRhashDefaultAllocator@@6B@ DATA
83?Alloc@CLKRhashDefaultAllocator@@UAAPAXIW4Type@CLKRhashAllocator@@@Z
84?Apply@CLKRHashTable@@QAAKP6A?AW4LK_ACTION@@PBXPAX@Z1W4LK_LOCKTYPE@@@Z
85?Apply@CLKRLinearHashTable@@QAAKP6A?AW4LK_ACTION@@PBXPAX@Z1W4LK_LOCKTYPE@@@Z
86?ApplyIf@CLKRHashTable@@QAAKP6A?AW4LK_PREDICATE@@PBXPAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
87?ApplyIf@CLKRLinearHashTable@@QAAKP6A?AW4LK_PREDICATE@@PBXPAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@@Z
88?BackupFile@CEXAutoBackupFile@@QAAJPBG@Z
89?Begin@CLKRHashTable@@QAA?AVCLKRHashTable_Iterator@@XZ
90?Begin@CLKRLinearHashTable@@QAA?AVCLKRLinearHashTable_Iterator@@XZ
91?BucketIndex@CLKRHashTableStats@@SAJJ@Z
92?BucketSize@CLKRHashTableStats@@SAJJ@Z
93?BucketSizes@CLKRHashTableStats@@SAPBJXZ
94?CheckTable@CLKRHashTable@@QBAHXZ
95?CheckTable@CLKRLinearHashTable@@QBAHXZ
96?ClassName@CCritSec@@SAPBGXZ
97?ClassName@CFakeLock@@SAPBGXZ
98?ClassName@CLKRHashTable@@SAPBGXZ
99?ClassName@CLKRLinearHashTable@@SAPBGXZ
100?ClassName@CLKRhashDefaultAllocator@@UAAPBGXZ
101?ClassName@CReaderWriterLock2@@SAPBGXZ
102?ClassName@CReaderWriterLock3@@SAPBGXZ
103?ClassName@CReaderWriterLock3AR@@SAPBGXZ
104?ClassName@CReaderWriterLock@@SAPBGXZ
105?ClassName@CSmallSpinLock@@SAPBGXZ
106?ClassName@CSpinLock@@SAPBGXZ
107?Clear@CLKRHashTable@@QAAXXZ
108?Clear@CLKRLinearHashTable@@QAAXXZ
109?ConvertExclusiveToShared@CCritSec@@QAAXXZ
110?ConvertExclusiveToShared@CFakeLock@@QAAXXZ
111?ConvertExclusiveToShared@CLKRHashTable@@QBAXXZ
112?ConvertExclusiveToShared@CLKRLinearHashTable@@QBAXXZ
113?ConvertExclusiveToShared@CReaderWriterLock2@@QAAXXZ
114?ConvertExclusiveToShared@CReaderWriterLock3@@QAAXXZ
115?ConvertExclusiveToShared@CReaderWriterLock3AR@@QAAXXZ
116?ConvertExclusiveToShared@CReaderWriterLock@@QAAXXZ
117?ConvertExclusiveToShared@CSmallSpinLock@@QAAXXZ
118?ConvertExclusiveToShared@CSpinLock@@QAAXXZ
119?ConvertSharedToExclusive@CCritSec@@QAAXXZ
120?ConvertSharedToExclusive@CFakeLock@@QAAXXZ
121?ConvertSharedToExclusive@CLKRHashTable@@QBAXXZ
122?ConvertSharedToExclusive@CLKRLinearHashTable@@QBAXXZ
123?ConvertSharedToExclusive@CReaderWriterLock2@@QAAXXZ
124?ConvertSharedToExclusive@CReaderWriterLock3@@QAAXXZ
125?ConvertSharedToExclusive@CReaderWriterLock3AR@@QAAXXZ
126?ConvertSharedToExclusive@CReaderWriterLock@@QAAXXZ
127?ConvertSharedToExclusive@CSmallSpinLock@@QAAXXZ
128?ConvertSharedToExclusive@CSpinLock@@QAAXXZ
129?CreateHolder@@YAJPAUIGPDispenser@@HIPAPAUIGPHolder@@@Z
130?DeleteIf@CLKRHashTable@@QAAKP6A?AW4LK_PREDICATE@@PBXPAX@Z1@Z
131?DeleteIf@CLKRLinearHashTable@@QAAKP6A?AW4LK_PREDICATE@@PBXPAX@Z1@Z
132?DeleteKey@CLKRHashTable@@QAA?AW4LK_RETCODE@@K@Z
133?DeleteKey@CLKRLinearHashTable@@QAA?AW4LK_RETCODE@@K@Z
134?DeleteRecord@CLKRHashTable@@QAA?AW4LK_RETCODE@@PBX@Z
135?DeleteRecord@CLKRLinearHashTable@@QAA?AW4LK_RETCODE@@PBX@Z
136?End@CLKRHashTable@@QAA?AVCLKRHashTable_Iterator@@XZ
137?End@CLKRLinearHashTable@@QAA?AVCLKRLinearHashTable_Iterator@@XZ
138?EqualRange@CLKRHashTable@@QAA_NKAAVCLKRHashTable_Iterator@@0@Z
139?EqualRange@CLKRLinearHashTable@@QAA_NKAAVCLKRLinearHashTable_Iterator@@0@Z
140?Erase@CLKRHashTable@@QAA_NAAVCLKRHashTable_Iterator@@0@Z
141?Erase@CLKRHashTable@@QAA_NAAVCLKRHashTable_Iterator@@@Z
142?Erase@CLKRLinearHashTable@@QAA_NAAVCLKRLinearHashTable_Iterator@@0@Z
143?Erase@CLKRLinearHashTable@@QAA_NAAVCLKRLinearHashTable_Iterator@@@Z
144?FOCopyFile@CExFileOperation@@QAAJPBG0H@Z
145?FOCopyFileDACLS@CExFileOperation@@QAAJPBG0@Z
146?FODeleteFile@CExFileOperation@@QAAJPBG@Z
147?FOMoveFile@CExFileOperation@@QAAJPBG0@Z
148?FOReplaceFile@CExFileOperation@@QAAJPBG0@Z
149?Find@CLKRHashTable@@QAA_NKAAVCLKRHashTable_Iterator@@@Z
150?Find@CLKRLinearHashTable@@QAA_NKAAVCLKRLinearHashTable_Iterator@@@Z
151?FindKey@CLKRHashTable@@QBA?AW4LK_RETCODE@@KPAPBX@Z
152?FindKey@CLKRLinearHashTable@@QBA?AW4LK_RETCODE@@KPAPBX@Z
153?FindRecord@CLKRHashTable@@QBA?AW4LK_RETCODE@@PBX@Z
154?FindRecord@CLKRLinearHashTable@@QBA?AW4LK_RETCODE@@PBX@Z
155?First@CDoubleList@@QBAQAVCListEntry@@XZ
156?First@CLockedDoubleList@@QAAQAVCListEntry@@XZ
157?Free@CLKRhashDefaultAllocator@@UAA_NPAXW4Type@CLKRhashAllocator@@@Z
158?GetBackupFile@CEXAutoBackupFile@@QAAHPAPAG@Z
159?GetBucketLockSpinCount@CLKRHashTable@@QBAGXZ
160?GetBucketLockSpinCount@CLKRLinearHashTable@@QBAGXZ
161?GetDefaultSpinAdjustmentFactor@CCritSec@@SANXZ
162?GetDefaultSpinAdjustmentFactor@CFakeLock@@SANXZ
163?GetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SANXZ
164?GetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SANXZ
165?GetDefaultSpinAdjustmentFactor@CReaderWriterLock3AR@@SANXZ
166?GetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SANXZ
167?GetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SANXZ
168?GetDefaultSpinAdjustmentFactor@CSpinLock@@SANXZ
169?GetDefaultSpinCount@CCritSec@@SAGXZ
170?GetDefaultSpinCount@CFakeLock@@SAGXZ
171?GetDefaultSpinCount@CReaderWriterLock2@@SAGXZ
172?GetDefaultSpinCount@CReaderWriterLock3@@SAGXZ
173?GetDefaultSpinCount@CReaderWriterLock3AR@@SAGXZ
174?GetDefaultSpinCount@CReaderWriterLock@@SAGXZ
175?GetDefaultSpinCount@CSmallSpinLock@@SAGXZ
176?GetDefaultSpinCount@CSpinLock@@SAGXZ
177?GetSpinCount@CCritSec@@QBAGXZ
178?GetSpinCount@CFakeLock@@QBAGXZ
179?GetSpinCount@CReaderWriterLock2@@QBAGXZ
180?GetSpinCount@CReaderWriterLock3@@QBAGXZ
181?GetSpinCount@CReaderWriterLock3AR@@QBAGXZ
182?GetSpinCount@CReaderWriterLock@@QBAGXZ
183?GetSpinCount@CSmallSpinLock@@QBAGXZ
184?GetSpinCount@CSpinLock@@QBAGXZ
185?GetStatistics@CLKRHashTable@@QBA?AVCLKRHashTableStats@@XZ
186?GetStatistics@CLKRLinearHashTable@@QBA?AVCLKRHashTableStats@@XZ
187?GetTableLockSpinCount@CLKRHashTable@@QBAGXZ
188?GetTableLockSpinCount@CLKRLinearHashTable@@QBAGXZ
189?GetVersionExW@CMdVersionInfo@@SAHPAU_OSVERSIONINFOW@@@Z
190?HeadNode@CDoubleList@@QBAQBVCListEntry@@XZ
191?HeadNode@CLockedDoubleList@@QBAQBVCListEntry@@XZ
192?Increment@CLKRHashTable_Iterator@@QAA_NXZ
193?Increment@CLKRLinearHashTable_Iterator@@QAA_NXZ
194?InitializeVersionInfo@CMdVersionInfo@@CAHXZ
195?Insert@CLKRHashTable@@QAA_NPBXAAVCLKRHashTable_Iterator@@_N@Z
196?Insert@CLKRLinearHashTable@@QAA_NPBXAAVCLKRLinearHashTable_Iterator@@_N@Z
197?InsertHead@CDoubleList@@QAAXQAVCListEntry@@@Z
198?InsertHead@CLockedDoubleList@@QAAXQAVCListEntry@@@Z
199?InsertRecord@CLKRHashTable@@QAA?AW4LK_RETCODE@@PBX_NPAPBX@Z
200?InsertRecord@CLKRLinearHashTable@@QAA?AW4LK_RETCODE@@PBX_NPAPBX@Z
201?InsertTail@CDoubleList@@QAAXQAVCListEntry@@@Z
202?InsertTail@CLockedDoubleList@@QAAXQAVCListEntry@@@Z
203?IsEmpty@CDoubleList@@QBA_NXZ
204?IsEmpty@CLockedDoubleList@@QBA_NXZ
205?IsEmpty@CLockedSingleList@@QBA_NXZ
206?IsEmpty@CSingleList@@QBA_NXZ
207?IsLocked@CLockedDoubleList@@QBA_NXZ
208?IsLocked@CLockedSingleList@@QBA_NXZ
209?IsMillnm@CMdVersionInfo@@SAHXZ
210?IsReadLocked@CCritSec@@QBA_NXZ
211?IsReadLocked@CFakeLock@@QBA_NXZ
212?IsReadLocked@CLKRHashTable@@QBA_NXZ
213?IsReadLocked@CLKRLinearHashTable@@QBA_NXZ
214?IsReadLocked@CReaderWriterLock2@@QBA_NXZ
215?IsReadLocked@CReaderWriterLock3@@QBA_NXZ
216?IsReadLocked@CReaderWriterLock3AR@@QBA_NXZ
217?IsReadLocked@CReaderWriterLock@@QBA_NXZ
218?IsReadLocked@CSmallSpinLock@@QBA_NXZ
219?IsReadLocked@CSpinLock@@QBA_NXZ
220?IsReadUnlocked@CCritSec@@QBA_NXZ
221?IsReadUnlocked@CFakeLock@@QBA_NXZ
222?IsReadUnlocked@CLKRHashTable@@QBA_NXZ
223?IsReadUnlocked@CLKRLinearHashTable@@QBA_NXZ
224?IsReadUnlocked@CReaderWriterLock2@@QBA_NXZ
225?IsReadUnlocked@CReaderWriterLock3@@QBA_NXZ
226?IsReadUnlocked@CReaderWriterLock3AR@@QBA_NXZ
227?IsReadUnlocked@CReaderWriterLock@@QBA_NXZ
228?IsReadUnlocked@CSmallSpinLock@@QBA_NXZ
229?IsReadUnlocked@CSpinLock@@QBA_NXZ
230?IsUnlocked@CLockedDoubleList@@QBA_NXZ
231?IsUnlocked@CLockedSingleList@@QBA_NXZ
232?IsUsable@CLKRHashTable@@QBA_NXZ
233?IsUsable@CLKRLinearHashTable@@QBA_NXZ
234?IsValid@CLKRHashTable@@QBA_NXZ
235?IsValid@CLKRHashTable_Iterator@@QBA_NXZ
236?IsValid@CLKRLinearHashTable@@QBA_NXZ
237?IsValid@CLKRLinearHashTable_Iterator@@QBA_NXZ
238?IsWin2k@CMdVersionInfo@@SAHXZ
239?IsWin2korLater@CMdVersionInfo@@SAHXZ
240?IsWin95@CMdVersionInfo@@SAHXZ
241?IsWin98@CMdVersionInfo@@SAHXZ
242?IsWin98orLater@CMdVersionInfo@@SAHXZ
243?IsWin9x@CMdVersionInfo@@SAHXZ
244?IsWinNT4@CMdVersionInfo@@SAHXZ
245?IsWinNT@CMdVersionInfo@@SAHXZ
246?IsWinNt4orLater@CMdVersionInfo@@SAHXZ
247?IsWriteLocked@CCritSec@@QBA_NXZ
248?IsWriteLocked@CFakeLock@@QBA_NXZ
249?IsWriteLocked@CLKRHashTable@@QBA_NXZ
250?IsWriteLocked@CLKRLinearHashTable@@QBA_NXZ
251?IsWriteLocked@CReaderWriterLock2@@QBA_NXZ
252?IsWriteLocked@CReaderWriterLock3@@QBA_NXZ
253?IsWriteLocked@CReaderWriterLock3AR@@QBA_NXZ
254?IsWriteLocked@CReaderWriterLock@@QBA_NXZ
255?IsWriteLocked@CSmallSpinLock@@QBA_NXZ
256?IsWriteLocked@CSpinLock@@QBA_NXZ
257?IsWriteUnlocked@CCritSec@@QBA_NXZ
258?IsWriteUnlocked@CFakeLock@@QBA_NXZ
259?IsWriteUnlocked@CLKRHashTable@@QBA_NXZ
260?IsWriteUnlocked@CLKRLinearHashTable@@QBA_NXZ
261?IsWriteUnlocked@CReaderWriterLock2@@QBA_NXZ
262?IsWriteUnlocked@CReaderWriterLock3@@QBA_NXZ
263?IsWriteUnlocked@CReaderWriterLock3AR@@QBA_NXZ
264?IsWriteUnlocked@CReaderWriterLock@@QBA_NXZ
265?IsWriteUnlocked@CSmallSpinLock@@QBA_NXZ
266?IsWriteUnlocked@CSpinLock@@QBA_NXZ
267?Key@CLKRHashTable_Iterator@@QBA?BKXZ
268?Key@CLKRLinearHashTable_Iterator@@QBA?BKXZ
269?Last@CDoubleList@@QBAQAVCListEntry@@XZ
270?Last@CLockedDoubleList@@QAAQAVCListEntry@@XZ
271?Lock@CLockedDoubleList@@QAAXXZ
272?Lock@CLockedSingleList@@QAAXXZ
273?LockType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
274?LockType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
275?LockType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_LOCKTYPE@@XZ
276?LockType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_LOCKTYPE@@XZ
277?LockType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
278?LockType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
279?LockType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
280?LockType@?$CLockBase@$07$01$00$00$02$01@@SA?AW4LOCK_LOCKTYPE@@XZ
281?MaxSize@CLKRHashTable@@QBAKXZ
282?MaxSize@CLKRLinearHashTable@@QBAKXZ
283?MpHeapCompact@@YAKPAX@Z
284?MultiKeys@CLKRHashTable@@QBA_NXZ
285?MultiKeys@CLKRLinearHashTable@@QBA_NXZ
286?MutexType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
287?MutexType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
288?MutexType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RW_MUTEX@@XZ
289?MutexType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RW_MUTEX@@XZ
290?MutexType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
291?MutexType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
292?MutexType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
293?MutexType@?$CLockBase@$07$01$00$00$02$01@@SA?AW4LOCK_RW_MUTEX@@XZ
294?NumSubTables@CLKRHashTable@@QBAHXZ
295?NumSubTables@CLKRHashTable@@SA?AW4LK_TABLESIZE@@AAK0_N@Z
296?NumSubTables@CLKRLinearHashTable@@QBAHXZ
297?NumSubTables@CLKRLinearHashTable@@SA?AW4LK_TABLESIZE@@AAK0_N@Z
298?PerLockSpin@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
299?PerLockSpin@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
300?PerLockSpin@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
301?PerLockSpin@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
302?PerLockSpin@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
303?PerLockSpin@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
304?PerLockSpin@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
305?PerLockSpin@?$CLockBase@$07$01$00$00$02$01@@SA?AW4LOCK_PERLOCK_SPIN@@XZ
306?Pop@CLockedSingleList@@QAAQAVCSingleListEntry@@XZ
307?Pop@CSingleList@@QAAQAVCSingleListEntry@@XZ
308?Push@CLockedSingleList@@QAAXQAVCSingleListEntry@@@Z
309?Push@CSingleList@@QAAXQAVCSingleListEntry@@@Z
310?QueueType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
311?QueueType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
312?QueueType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_QUEUE_TYPE@@XZ
313?QueueType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_QUEUE_TYPE@@XZ
314?QueueType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
315?QueueType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
316?QueueType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
317?QueueType@?$CLockBase@$07$01$00$00$02$01@@SA?AW4LOCK_QUEUE_TYPE@@XZ
318?ReadLock@CCritSec@@QAAXXZ
319?ReadLock@CFakeLock@@QAAXXZ
320?ReadLock@CLKRHashTable@@QBAXXZ
321?ReadLock@CLKRLinearHashTable@@QBAXXZ
322?ReadLock@CReaderWriterLock2@@QAAXXZ
323?ReadLock@CReaderWriterLock3@@QAAXXZ
324?ReadLock@CReaderWriterLock3AR@@QAAXXZ
325?ReadLock@CReaderWriterLock@@QAAXXZ
326?ReadLock@CSmallSpinLock@@QAAXXZ
327?ReadLock@CSpinLock@@QAAXXZ
328?ReadOrWriteLock@CCritSec@@QAA_NXZ
329?ReadOrWriteLock@CFakeLock@@QAA_NXZ
330?ReadOrWriteLock@CReaderWriterLock3@@QAA_NXZ
331?ReadOrWriteLock@CReaderWriterLock3AR@@QAA_NXZ
332?ReadOrWriteLock@CSpinLock@@QAA_NXZ
333?ReadOrWriteUnlock@CCritSec@@QAAX_N@Z
334?ReadOrWriteUnlock@CFakeLock@@QAAX_N@Z
335?ReadOrWriteUnlock@CReaderWriterLock3@@QAAX_N@Z
336?ReadOrWriteUnlock@CReaderWriterLock3AR@@QAAX_N@Z
337?ReadOrWriteUnlock@CSpinLock@@QAAX_N@Z
338?ReadUnlock@CCritSec@@QAAXXZ
339?ReadUnlock@CFakeLock@@QAAXXZ
340?ReadUnlock@CLKRHashTable@@QBAXXZ
341?ReadUnlock@CLKRLinearHashTable@@QBAXXZ
342?ReadUnlock@CReaderWriterLock2@@QAAXXZ
343?ReadUnlock@CReaderWriterLock3@@QAAXXZ
344?ReadUnlock@CReaderWriterLock3AR@@QAAXXZ
345?ReadUnlock@CReaderWriterLock@@QAAXXZ
346?ReadUnlock@CSmallSpinLock@@QAAXXZ
347?ReadUnlock@CSpinLock@@QAAXXZ
348?Record@CLKRHashTable_Iterator@@QBAPBXXZ
349?Record@CLKRLinearHashTable_Iterator@@QBAPBXXZ
350?Recursion@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
351?Recursion@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
352?Recursion@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_RECURSION@@XZ
353?Recursion@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_RECURSION@@XZ
354?Recursion@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
355?Recursion@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
356?Recursion@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
357?Recursion@?$CLockBase@$07$01$00$00$02$01@@SA?AW4LOCK_RECURSION@@XZ
358?ReleaseVersionInfo@CMdVersionInfo@@SAXXZ
359?RemoveEntry@CDoubleList@@SAXQAVCListEntry@@@Z
360?RemoveEntry@CLockedDoubleList@@QAAXQAVCListEntry@@@Z
361?RemoveHead@CDoubleList@@QAAQAVCListEntry@@XZ
362?RemoveHead@CLockedDoubleList@@QAAQAVCListEntry@@XZ
363?RemoveTail@CDoubleList@@QAAQAVCListEntry@@XZ
364?RemoveTail@CLockedDoubleList@@QAAQAVCListEntry@@XZ
365?RestoreFile@CEXAutoBackupFile@@QAAJXZ
366?SetBucketLockSpinCount@CLKRHashTable@@QAAXG@Z
367?SetBucketLockSpinCount@CLKRLinearHashTable@@QAAXG@Z
368?SetDefaultSpinAdjustmentFactor@CCritSec@@SAXN@Z
369?SetDefaultSpinAdjustmentFactor@CFakeLock@@SAXN@Z
370?SetDefaultSpinAdjustmentFactor@CReaderWriterLock2@@SAXN@Z
371?SetDefaultSpinAdjustmentFactor@CReaderWriterLock3@@SAXN@Z
372?SetDefaultSpinAdjustmentFactor@CReaderWriterLock3AR@@SAXN@Z
373?SetDefaultSpinAdjustmentFactor@CReaderWriterLock@@SAXN@Z
374?SetDefaultSpinAdjustmentFactor@CSmallSpinLock@@SAXN@Z
375?SetDefaultSpinAdjustmentFactor@CSpinLock@@SAXN@Z
376?SetDefaultSpinCount@CCritSec@@SAXG@Z
377?SetDefaultSpinCount@CFakeLock@@SAXG@Z
378?SetDefaultSpinCount@CReaderWriterLock2@@SAXG@Z
379?SetDefaultSpinCount@CReaderWriterLock3@@SAXG@Z
380?SetDefaultSpinCount@CReaderWriterLock3AR@@SAXG@Z
381?SetDefaultSpinCount@CReaderWriterLock@@SAXG@Z
382?SetDefaultSpinCount@CSmallSpinLock@@SAXG@Z
383?SetDefaultSpinCount@CSpinLock@@SAXG@Z
384?SetSpinCount@CCritSec@@QAA_NG@Z
385?SetSpinCount@CCritSec@@SAKPAPAVCCriticalSection@@K@Z
386?SetSpinCount@CFakeLock@@QAA_NG@Z
387?SetSpinCount@CReaderWriterLock2@@QAA_NG@Z
388?SetSpinCount@CReaderWriterLock3@@QAA_NG@Z
389?SetSpinCount@CReaderWriterLock3AR@@QAA_NG@Z
390?SetSpinCount@CReaderWriterLock@@QAA_NG@Z
391?SetSpinCount@CSmallSpinLock@@QAA_NG@Z
392?SetSpinCount@CSpinLock@@QAA_NG@Z
393?SetTableLockSpinCount@CLKRHashTable@@QAAXG@Z
394?SetTableLockSpinCount@CLKRLinearHashTable@@QAAXG@Z
395?Size@CLKRHashTable@@QBAKXZ
396?Size@CLKRLinearHashTable@@QBAKXZ
397?Swap@CSingleList@@QAAXAAV1@@Z
398?TryConvertSharedToExclusive@CReaderWriterLock3@@QAA_NXZ
399?TryConvertSharedToExclusive@CReaderWriterLock3AR@@QAA_NXZ
400?TryReadLock@CCritSec@@QAA_NXZ
401?TryReadLock@CFakeLock@@QAA_NXZ
402?TryReadLock@CReaderWriterLock2@@QAA_NXZ
403?TryReadLock@CReaderWriterLock3@@QAA_NXZ
404?TryReadLock@CReaderWriterLock3AR@@QAA_NXZ
405?TryReadLock@CReaderWriterLock@@QAA_NXZ
406?TryReadLock@CSmallSpinLock@@QAA_NXZ
407?TryReadLock@CSpinLock@@QAA_NXZ
408?TryReadOrWriteLock@CReaderWriterLock3@@QAA_NAA_N@Z
409?TryReadOrWriteLock@CReaderWriterLock3AR@@QAA_NAA_N@Z
410?TryWriteLock@CCritSec@@QAA_NXZ
411?TryWriteLock@CFakeLock@@QAA_NXZ
412?TryWriteLock@CReaderWriterLock2@@QAA_NXZ
413?TryWriteLock@CReaderWriterLock3@@QAA_NXZ
414?TryWriteLock@CReaderWriterLock3AR@@QAA_NXZ
415?TryWriteLock@CReaderWriterLock@@QAA_NXZ
416?TryWriteLock@CSmallSpinLock@@QAA_NXZ
417?TryWriteLock@CSpinLock@@QAA_NXZ
418?UndoBackup@CEXAutoBackupFile@@QAAJXZ
419?Unlock@CLockedDoubleList@@QAAXXZ
420?Unlock@CLockedSingleList@@QAAXXZ
421?ValidSignature@CLKRHashTable@@QBA_NXZ
422?ValidSignature@CLKRLinearHashTable@@QBA_NXZ
423?WaitType@?$CLockBase@$00$00$02$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
424?WaitType@?$CLockBase@$01$00$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
425?WaitType@?$CLockBase@$02$00$00$00$00$00@@SA?AW4LOCK_WAIT_TYPE@@XZ
426?WaitType@?$CLockBase@$03$00$00$01$02$02@@SA?AW4LOCK_WAIT_TYPE@@XZ
427?WaitType@?$CLockBase@$04$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
428?WaitType@?$CLockBase@$05$01$01$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
429?WaitType@?$CLockBase@$06$01$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
430?WaitType@?$CLockBase@$07$01$00$00$02$01@@SA?AW4LOCK_WAIT_TYPE@@XZ
431?WriteLock@CCritSec@@QAAXXZ
432?WriteLock@CFakeLock@@QAAXXZ
433?WriteLock@CLKRHashTable@@QAAXXZ
434?WriteLock@CLKRLinearHashTable@@QAAXXZ
435?WriteLock@CReaderWriterLock2@@QAAXXZ
436?WriteLock@CReaderWriterLock3@@QAAXXZ
437?WriteLock@CReaderWriterLock3AR@@QAAXXZ
438?WriteLock@CReaderWriterLock@@QAAXXZ
439?WriteLock@CSmallSpinLock@@QAAXXZ
440?WriteLock@CSpinLock@@QAAXXZ
441?WriteUnlock@CCritSec@@QAAXXZ
442?WriteUnlock@CFakeLock@@QAAXXZ
443?WriteUnlock@CLKRHashTable@@QBAXXZ
444?WriteUnlock@CLKRLinearHashTable@@QBAXXZ
445?WriteUnlock@CReaderWriterLock2@@QAAXXZ
446?WriteUnlock@CReaderWriterLock3@@QAAXXZ
447?WriteUnlock@CReaderWriterLock3AR@@QAAXXZ
448?WriteUnlock@CReaderWriterLock@@QAAXXZ
449?WriteUnlock@CSmallSpinLock@@QAAXXZ
450?WriteUnlock@CSpinLock@@QAAXXZ
451?_AddRef@CLKRLinearHashTable_Iterator@@IBAXH@Z
452?_AddRefRecord@CLKRLinearHashTable@@ABAXPBXH@Z
453?_AllocateNodeClump@CLKRLinearHashTable@@AAAQAVCNodeClump@@XZ
454?_AllocateSegment@CLKRLinearHashTable@@ABAQAVCSegment@@XZ
455?_AllocateSegmentDirectory@CLKRLinearHashTable@@AAAQAVCDirEntry@@I@Z
456?_AllocateSubTable@CLKRHashTable@@AAAQAVCLKRLinearHashTable@@PBDP6A?BKPBX@ZP6AKK@ZP6A_NKK@ZP6AX1H@ZNKPAV1@_N7@Z
457?_AllocateSubTableArray@CLKRHashTable@@AAAQAPAVCLKRLinearHashTable@@I@Z
458?_Apply@CLKRLinearHashTable@@AAAKP6A?AW4LK_ACTION@@PBXPAX@Z1W4LK_LOCKTYPE@@AAW4LK_PREDICATE@@@Z
459?_ApplyIf@CLKRLinearHashTable@@AAAKP6A?AW4LK_PREDICATE@@PBXPAX@ZP6A?AW4LK_ACTION@@01@Z1W4LK_LOCKTYPE@@AAW42@@Z
460?_Bucket@CLKRLinearHashTable@@ABAQAVCBucket@@K@Z
461?_BucketAddress@CLKRLinearHashTable@@ABAKK@Z
462?_BucketLock@CLKRLinearHashTable@@ABAXQAVCBucket@@W4LK_LOCKTYPE@@@Z
463?_BucketReadLock@CLKRLinearHashTable@@ABAXQAVCBucket@@@Z
464?_BucketReadUnlock@CLKRLinearHashTable@@ABAXQAVCBucket@@@Z
465?_BucketUnlock@CLKRLinearHashTable@@ABAXQAVCBucket@@W4LK_LOCKTYPE@@@Z
466?_BucketWriteLock@CLKRLinearHashTable@@ABAXQAVCBucket@@@Z
467?_BucketWriteUnlock@CLKRLinearHashTable@@ABAXQAVCBucket@@@Z
468?_CalcKeyHash@CLKRHashTable@@ABAKK@Z
469?_CalcKeyHash@CLKRLinearHashTable@@ABAKK@Z
470?_Clear@CLKRLinearHashTable@@AAAX_N@Z
471?_CmpExch@CReaderWriterLock2@@AAA_NJJ@Z
472?_CmpExch@CReaderWriterLock3@@AAA_NJJ@Z
473?_CmpExch@CReaderWriterLock3AR@@AAA_NJJ@Z
474?_CmpExch@CReaderWriterLock@@AAA_NJJ@Z
475?_Contract@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@XZ
476?_CurrentThreadId@CReaderWriterLock3@@CAJXZ
477?_CurrentThreadId@CReaderWriterLock3AR@@CAJXZ
478?_CurrentThreadId@CSmallSpinLock@@CAJXZ
479?_CurrentThreadId@CSpinLock@@CAJXZ
480?_DeleteIf@CLKRLinearHashTable@@AAAKP6A?AW4LK_PREDICATE@@PBXPAX@Z1AAW42@@Z
481?_DeleteKey@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@KK@Z
482?_DeleteNode@CLKRLinearHashTable@@AAA_NQAVCBucket@@AAPAVCNodeClump@@1AAH@Z
483?_DeleteRecord@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@PBXK@Z
484?_EqualKeys@CLKRLinearHashTable@@ABA_NKK@Z
485?_Erase@CLKRLinearHashTable@@AAA_NAAVCLKRLinearHashTable_Iterator@@K@Z
486?_Expand@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@XZ
487?_ExtractKey@CLKRHashTable@@ABA?BKPBX@Z
488?_ExtractKey@CLKRLinearHashTable@@ABA?BKPBX@Z
489?_FindBucket@CLKRLinearHashTable@@ABAQAVCBucket@@K_N@Z
490?_FindKey@CLKRLinearHashTable@@ABA?AW4LK_RETCODE@@KKPAPBXPAVCLKRLinearHashTable_Iterator@@@Z
491?_FindRecord@CLKRLinearHashTable@@ABA?AW4LK_RETCODE@@PBXK@Z
492?_FreeNodeClump@CLKRLinearHashTable@@AAA_NPAVCNodeClump@@@Z
493?_FreeSegment@CLKRLinearHashTable@@ABA_NPAVCSegment@@@Z
494?_FreeSegmentDirectory@CLKRLinearHashTable@@AAA_NXZ
495?_FreeSubTable@CLKRHashTable@@AAA_NPAVCLKRLinearHashTable@@@Z
496?_FreeSubTableArray@CLKRHashTable@@AAA_NPAPAVCLKRLinearHashTable@@@Z
497?_H0@CLKRLinearHashTable@@ABAKK@Z
498?_H0@CLKRLinearHashTable@@CAKKK@Z
499?_H1@CLKRLinearHashTable@@ABAKK@Z
500?_H1@CLKRLinearHashTable@@CAKKK@Z
501?_Increment@CLKRHashTable_Iterator@@IAA_N_N@Z
502?_Increment@CLKRLinearHashTable_Iterator@@IAA_N_N@Z
503?_Initialize@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@P6A?BKPBX@ZP6AKK@ZP6A_NKK@ZP6AX0H@ZPBDNK@Z
504?_InsertRecord@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@PBXK_NPAPBXPAVCLKRLinearHashTable_Iterator@@@Z
505?_InsertThisIntoGlobalList@CLKRHashTable@@AAAXXZ
506?_InsertThisIntoGlobalList@CLKRLinearHashTable@@AAAXXZ
507?_IsLocked@CSpinLock@@ABA_NXZ
508?_IsNodeCompact@CLKRLinearHashTable@@ABAHQAVCBucket@@@Z
509?_IsValidIterator@CLKRHashTable@@ABA_NABVCLKRHashTable_Iterator@@@Z
510?_IsValidIterator@CLKRLinearHashTable@@ABA_NABVCLKRLinearHashTable_Iterator@@@Z
511?_Lock@CSpinLock@@AAAXXZ
512?_LockSpin@CReaderWriterLock2@@AAAX_N@Z
513?_LockSpin@CReaderWriterLock3@@AAAXW4SPIN_TYPE@1@@Z
514?_LockSpin@CReaderWriterLock3AR@@AAAXW4SPIN_TYPE@1@@Z
515?_LockSpin@CReaderWriterLock@@AAAX_N@Z
516?_LockSpin@CSmallSpinLock@@AAAXXZ
517?_LockSpin@CSpinLock@@AAAXXZ
518?_MergeRecordSets@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@PAVCBucket@@PAVCNodeClump@@1@Z
519?_PredTrue@CLKRLinearHashTable@@CA?AW4LK_PREDICATE@@PBXPAX@Z
520?_ReadLockSpin@CReaderWriterLock2@@AAAXXZ
521?_ReadLockSpin@CReaderWriterLock3@@AAAXW4SPIN_TYPE@1@@Z
522?_ReadLockSpin@CReaderWriterLock3AR@@AAAXW4SPIN_TYPE@1@@Z
523?_ReadLockSpin@CReaderWriterLock@@AAAXXZ
524?_ReadOrWriteLock@CLKRLinearHashTable@@ABA_NXZ
525?_ReadOrWriteUnlock@CLKRLinearHashTable@@ABAX_N@Z
526?_RemoveThisFromGlobalList@CLKRHashTable@@AAAXXZ
527?_RemoveThisFromGlobalList@CLKRLinearHashTable@@AAAXXZ
528?_SegIndex@CLKRLinearHashTable@@ABAKK@Z
529?_Segment@CLKRLinearHashTable@@ABAAAPAVCSegment@@K@Z
530?_SetSegVars@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@W4LK_TABLESIZE@@K@Z
531?_SplitRecordSet@CLKRLinearHashTable@@AAA?AW4LK_RETCODE@@PAVCNodeClump@@0KKK0@Z
532?_SubTable@CLKRHashTable@@ABAPAVCLKRLinearHashTable@@K@Z
533?_SubTableIndex@CLKRHashTable@@ABAHPAVCLKRLinearHashTable@@@Z
534?_TableLock@CLKRLinearHashTable@@AAAXW4LK_LOCKTYPE@@@Z
535?_TableUnlock@CLKRLinearHashTable@@AAAXW4LK_LOCKTYPE@@@Z
536?_TryLock@CSmallSpinLock@@AAA_NXZ
537?_TryLock@CSpinLock@@AAA_NXZ
538?_TryReadLock@CReaderWriterLock2@@AAA_NXZ
539?_TryReadLock@CReaderWriterLock3@@AAA_NXZ
540?_TryReadLock@CReaderWriterLock3AR@@AAA_NXZ
541?_TryReadLock@CReaderWriterLock@@AAA_NXZ
542?_TryReadLockRecursive@CReaderWriterLock3@@AAA_NXZ
543?_TryReadLockRecursive@CReaderWriterLock3AR@@AAA_NXZ
544?_TryWriteLock2@CReaderWriterLock3@@AAA_NXZ
545?_TryWriteLock2@CReaderWriterLock3AR@@AAA_NXZ
546?_TryWriteLock@CReaderWriterLock2@@AAA_NJ@Z
547?_TryWriteLock@CReaderWriterLock3@@AAA_NJ@Z
548?_TryWriteLock@CReaderWriterLock3AR@@AAA_NJ@Z
549?_TryWriteLock@CReaderWriterLock@@AAA_NXZ
550?_Unlock@CSpinLock@@AAAXXZ
551?_WriteLockSpin@CReaderWriterLock2@@AAAXXZ
552?_WriteLockSpin@CReaderWriterLock3@@AAAXXZ
553?_WriteLockSpin@CReaderWriterLock3AR@@AAAXXZ
554?_WriteLockSpin@CReaderWriterLock@@AAAXXZ
555?_getFileSecurity@CExFileOperation@@AAAJPBG@Z
556?_setFileSecurity@CExFileOperation@@AAAJPBG@Z
557?fHaveBackup@CEXAutoBackupFile@@QAAHXZ
558?s_aBucketSizes@?1??BucketSizes@CLKRHashTableStats@@SAPBJXZ@4QBJB
559?sm_DefaultAllocator@CLKRHashTable@@0VCLKRhashDefaultAllocator@@A DATA
560?sm_dblDfltSpinAdjFctr@CCritSec@@1NA DATA
561?sm_dblDfltSpinAdjFctr@CFakeLock@@1NA DATA
562?sm_dblDfltSpinAdjFctr@CReaderWriterLock2@@1NA DATA
563?sm_dblDfltSpinAdjFctr@CReaderWriterLock3@@1NA DATA
564?sm_dblDfltSpinAdjFctr@CReaderWriterLock3AR@@1NA DATA
565?sm_dblDfltSpinAdjFctr@CReaderWriterLock@@1NA DATA
566?sm_dblDfltSpinAdjFctr@CSmallSpinLock@@1NA DATA
567?sm_dblDfltSpinAdjFctr@CSpinLock@@1NA DATA
568?sm_llGlobalList@CLKRHashTable@@0VCLockedDoubleList@@A DATA
569?sm_llGlobalList@CLKRLinearHashTable@@0VCLockedDoubleList@@A DATA
570?sm_lpOSVERSIONINFO@CMdVersionInfo@@0PAU_OSVERSIONINFOW@@A DATA
571?sm_pfnSetCriticalSectionSpinCount@CCriticalSection@@0P6AKPAU_RTL_CRITICAL_SECTION@@K@ZA DATA
572?sm_pfnTryEnterCriticalSection@CCriticalSection@@0P6AHPAU_RTL_CRITICAL_SECTION@@@ZA DATA
573?sm_wDefaultSpinCount@CCritSec@@1GA DATA
574?sm_wDefaultSpinCount@CFakeLock@@1GA DATA
575?sm_wDefaultSpinCount@CReaderWriterLock2@@1GA DATA
576?sm_wDefaultSpinCount@CReaderWriterLock3@@1GA DATA
577?sm_wDefaultSpinCount@CReaderWriterLock3AR@@1GA DATA
578?sm_wDefaultSpinCount@CReaderWriterLock@@1GA DATA
579?sm_wDefaultSpinCount@CSmallSpinLock@@1GA DATA
580?sm_wDefaultSpinCount@CSpinLock@@1GA DATA
581DllBidEntryPoint
582FXMemAttach
583FXMemDetach
584GetAllocCounters
585GetIUMS
586IrtlAssert
587IrtlTrace
588MPCSInitialize
589MPCSUninitialize
590MPDeleteCriticalSection
591MPInitializeCriticalSection
592MPInitializeCriticalSectionAndSpinCount
593MpGetHeapHandle
594MpHeapAlloc
595MpHeapCreate
596MpHeapDestroy
597MpHeapFree
598MpHeapReAlloc
599MpHeapSize
600MpHeapValidate
601SetIUMS
602SetMemHook
603UMSEnterCSWraper
604mpCalloc
605mpFree
606mpMalloc
607mpRealloc
lib/libc/mingw/libarm32/msdelta.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of msdelta.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msdelta.dll"
7EXPORTS
8ApplyDeltaA
9ApplyDeltaB
10ApplyDeltaProvidedB
11ApplyDeltaW
12CreateDeltaA
13CreateDeltaB
14CreateDeltaW
15DeltaFree
16DeltaNormalizeProvidedB
17GetDeltaInfoA
18GetDeltaInfoB
19GetDeltaInfoW
20GetDeltaSignatureA
21GetDeltaSignatureB
22GetDeltaSignatureW
lib/libc/mingw/libarm32/msfeeds.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of msfeeds.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msfeeds.dll"
7EXPORTS
8MsfeedsCreateInstance
lib/libc/mingw/libarm32/msftedit.def created+29
......@@ -0,0 +1,29 @@
1;
2; Definition file of MSFTEDIT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSFTEDIT.dll"
7EXPORTS
8IID_IRichEditOle
9IID_IRichEditOleCallback
10CreateTextServices
11IID_ITextServices
12IID_ITextHost
13IID_ITextHost2
14DisableOleinitCheck
15RichEditANSIWndProc
16RichEdit10ANSIWndProc
17SetCustomTextOutHandlerEx
18RichEditWndProc
19MathBuildUp
20MathBuildDown
21MathTranslate
22GetMathAlphanumericCode
23GetMathAlphanumeric
24IID_ITextDocument2
25IID_ITextServices2
26IID_IRicheditWindowlessAccessibility
27IID_IRicheditUiaOverrides
28ShutdownTextServices
29SetTextServicesDpiCalculationOverride
lib/libc/mingw/libarm32/mshtml.def created+42
......@@ -0,0 +1,42 @@
1;
2; Definition file of MSHTML.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSHTML.dll"
7EXPORTS
8ord_100 @100
9ord_101 @101
10ord_102 @102
11ord_103 @103
12ord_104 @104
13ord_105 @105
14ord_106 @106
15ord_107 @107
16ClearPhishingFilterData
17ConvertAndEscapePostData
18CreateCoreWebView
19CreateHTMLPropertyPage
20GetColorValueFromString
21GetWebPlatformObject
22IEIsXMLNSRegistered
23IERegisterXMLNS
24MatchExactGetIDsOfNames
25ord_120 @120
26ord_121 @121
27ord_122 @122
28ord_123 @123
29ord_124 @124
30ord_125 @125
31ord_126 @126
32ord_127 @127
33ord_128 @128
34ord_129 @129
35ord_130 @130
36PrintHTML
37ShowHTMLDialog
38ShowHTMLDialogEx
39ShowModalDialog
40ShowModelessHTMLDialog
41TravelLogCreateInstance
42TravelLogStgCreateInstance
lib/libc/mingw/libarm32/msicofire.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of msire.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msire.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/msidcrl40.def created+92
......@@ -0,0 +1,92 @@
1;
2; Definition file of msidcrl40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msidcrl40.dll"
7EXPORTS
8Initialize
9Uninitialize
10PassportFreeMemory
11CreateIdentityHandle
12SetCredential
13GetIdentityProperty
14SetIdentityProperty
15CloseIdentityHandle
16AuthIdentityToService
17PersistCredential
18RemovePersistedCredential
19EnumIdentitiesWithCachedCredentials
20NextIdentity
21CloseEnumIdentitiesHandle
22GetAuthState
23LogonIdentity
24HasPersistedCredential
25SetIdentityCallback
26InitializeEx
27GetWebAuthUrl
28LogonIdentityEx
29AuthIdentityToServiceEx
30GetAuthStateEx
31GetCertificate
32CancelPendingRequest
33VerifyCertificate
34GetIdentityPropertyByName
35SetExtendedProperty
36GetExtendedProperty
37GetServiceConfig
38SetIdcrlOptions
39GetWebAuthUrlEx
40EncryptWithSessionKey
41DecryptWithSessionKey
42SetUserExtendedProperty
43GetUserExtendedProperty
44SetChangeNotificationCallback
45RemoveChangeNotificationCallback
46GetExtendedError
47InitializeApp
48EnumerateCertificates
49GenerateCertToken
50GetDeviceId
51SetDeviceConsent
52GenerateDeviceToken
53CreateLinkedIdentityHandle
54IsDeviceIDAdmin
55EnumerateDeviceID
56GetAssertion
57VerifyAssertion
58OpenAuthenticatedBrowser
59LogonIdentityExWithUI
60GetResponseForHttpChallenge
61GetDeviceShortLivedToken
62GetHIPChallenge
63SetHIPSolution
64SetDefaultUserForTarget
65GetDefaultUserForTarget
66UICollectCredential
67AssociateDeviceToUser
68DisassociateDeviceFromUser
69EnumerateUserAssociatedDevices
70UpdateUserAssociatedDeviceProperties
71UIShowWaitDialog
72UIEndWaitDialog
73InitializeIDCRLTraceBuffer
74FlushIDCRLTraceBuffer
75IsMappedError
76GetAuthenticationStatus
77GetConfigDWORDValue
78ProvisionDeviceId
79GetDeviceIdEx
80RenewDeviceId
81DeProvisionDeviceId
82UnPackErrorBlob
83GetDefaultNoUISSOUser
84LogonIdentityExSSO
85StartTracing
86StopTracing
87GetRealmInfo
88CreateIdentityHandleEx
89AddUserToSsoGroup
90GetUsersFromSsoGroup
91RemoveUserFromSsoGroup
92SendOneTimeCode
lib/libc/mingw/libarm32/msiltcfg.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of msiltcfg.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msiltcfg.dll"
7EXPORTS
8MsiDecomposeDescriptorW
9MsiGetComponentPathW
10MsiGetProductInfoW
11MsiProvideComponentFromDescriptorW
12MsiQueryFeatureStateW
13MsiQueryFeatureStateFromDescriptorW
14MsiSetInternalUI
15MsiAdvertiseScriptW
16MsiQueryProductStateW
17MsiIsProductElevatedW
18MsiReinstallProductW
19MsiConfigureProductExW
20ShutdownMsi
21RestartMsi
lib/libc/mingw/libarm32/msiwer.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of msiwer.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msiwer.dll"
7EXPORTS
8OutOfProcessExceptionEventCallback
9OutOfProcessExceptionEventDebuggerLaunchCallback
10OutOfProcessExceptionEventSignatureCallback
lib/libc/mingw/libarm32/mskeyprotcli.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of mskeyprotcli.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mskeyprotcli.dll"
7EXPORTS
8GetKeyProtectionInterface
lib/libc/mingw/libarm32/mskeyprotect.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of mskeyprotect.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mskeyprotect.dll"
7EXPORTS
8GetKeyProtectionInterface
lib/libc/mingw/libarm32/msoeacct.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of MSOEACCT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSOEACCT.dll"
7EXPORTS
8ord_1 @1
9ord_2 @2
10ord_3 @3
11ord_4 @4
12ord_5 @5
13GetDllMajorVersion
14PropUtil_HrAddBinaryToSTRW
15PropUtil_HrAddDWORDToSTRW
16PropUtil_HrAddSZToSTRW
17HrCreateAccountManager
18ValidEmailAddress
lib/libc/mingw/libarm32/msoert2.def created+213
......@@ -0,0 +1,213 @@
1;
2; Definition file of MSOERT2.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSOERT2.dll"
7EXPORTS
8ord_1 @1
9CreateSystemHandleName
10ord_3 @3
11ord_4 @4
12ord_5 @5
13ord_6 @6
14ord_7 @7
15ord_8 @8
16CryptAllocFunc
17ord_10 @10
18ord_11 @11
19ord_12 @12
20CryptFreeFunc
21FInitializeRichEdit
22GetDllMajorVersion
23ord_16 @16
24ord_17 @17
25ord_18 @18
26GetHtmlCharset
27GetRichEdClassStringW
28ord_21 @21
29ord_22 @22
30GetStoreRootDirectoryFromRegistryEntry
31ord_24 @24
32ord_25 @25
33ord_26 @26
34ord_27 @27
35GetStoreRootDirectoryFromRegistryEntryW
36HrGetCertKeyUsage
37IUnknownList_CreateInstance
38IVoidPtrList_CreateInstance
39IsHttpUrlA
40IsHttpUrlW
41SetFontOnRichEd
42StrTokExA
43AppendTempFileList
44BrowseForFolder
45ord_38 @38
46ord_39 @39
47ord_40 @40
48ord_41 @41
49ord_42 @42
50ord_43 @43
51ord_44 @44
52ord_45 @45
53ord_46 @46
54BrowseForFolderW
55CchFileTimeToDateTimeSz
56ord_49 @49
57ord_50 @50
58CchFileTimeToDateTimeW
59ord_52 @52
60ord_53 @53
61ord_54 @54
62ord_55 @55
63ord_56 @56
64ord_57 @57
65ord_58 @58
66ord_59 @59
67ord_60 @60
68ord_61 @61
69ord_62 @62
70ord_63 @63
71ord_64 @64
72ord_65 @65
73CenterDialog
74ord_67 @67
75ord_68 @68
76ord_69 @69
77ord_70 @70
78ChConvertFromHex
79CleanupFileNameInPlaceA
80CleanupFileNameInPlaceW
81CleanupGlobalTempFiles
82CopyRegistry
83CrackNotificationPackage
84CreateDataObject
85CreateEnumFormatEtc
86CreateLogFile
87CreateNotify
88CreateStreamOnHFile
89CreateStreamOnHFileW
90CreateTempFile
91CreateTempFileStream
92CreateTempFileW
93DeleteTempFile
94DeleteTempFileOnShutdownEx
95FBuildTempPath
96FBuildTempPathW
97FIsEmptyA
98FIsEmptyW
99FIsHTMLFile
100FIsHTMLFileW
101FIsSpaceA
102FIsSpaceW
103FIsValidFileNameCharA
104FIsValidFileNameCharW
105FMissingCert
106FreeTempFileList
107GenerateUniqueFileName
108GenerateUniqueFileNameW
109GetExePath
110GetTopMostParent
111HrBSTRToLPSZ
112HrCheckTridentMenu
113HrCopyLockBytesToStream
114HrCopyStream
115HrCopyStreamCB
116HrCopyStreamCBEndOnCRLF
117HrCopyStreamToByte
118HrCreatePhonebookEntry
119HrCreateTridentMenu
120HrDecodeObject
121HrEditPhonebookEntryW
122HrFillRasCombo
123HrFindInetTimeZone
124HrGetBodyElement
125HrGetCertificateParam
126HrGetElementImpl
127HrGetMsgParam
128HrGetStreamPos
129HrGetStreamSize
130HrGetStyleSheet
131HrIStreamToBSTR
132HrIStreamWToBSTR
133HrIndexOfMonth
134HrIndexOfWeek
135HrIsStreamUnicode
136HrLPSZCPToBSTR
137HrLPSZToBSTR
138HrRewindStream
139HrSafeGetStreamSize
140HrSetDirtyFlagImpl
141HrStreamSeekBegin
142HrStreamSeekCur
143HrStreamSeekEnd
144HrStreamSeekSet
145HrStreamToByte
146IDrawText
147IsDigit
148IsPrint
149IsUpper
150IsValidFileIfFileUrlW
151MessageBoxInst
152MessageBoxInstW
153OpenFileStream
154OpenFileStreamShare
155ord_150 @150
156ord_151 @151
157ord_152 @152
158ord_153 @153
159ord_154 @154
160ord_155 @155
161ord_156 @156
162OpenFileStreamShareW
163ord_158 @158
164ord_159 @159
165ord_160 @160
166OpenFileStreamW
167OpenFileStreamWithFlagsW
168PVDecodeObject
169PVGetCertificateParam
170PVGetMsgParam
171PszAllocA
172PszAllocW
173PszDayFromIndex
174PszDupA
175PszDupW
176PszEscapeMenuStringA
177PszEscapeMenuStringW
178PszFromANSIStreamA
179PszMonthFromIndex
180PszScanToCharA
181PszScanToWhiteA
182PszSkipWhiteA
183PszSkipWhiteW
184PszToANSI
185PszToUnicode
186ReplaceChars
187ReplaceCharsW
188RicheditStreamIn
189RicheditStreamOut
190ShellUtil_GetSpecialFolderPath
191StrToUintA
192StrToUintW
193StrTokExW
194StreamSubStringMatchW
195StripCRLF
196SzGetCertificateEmailAddress
197UlStripWhitespace
198UlStripWhitespaceW
199UnlocStrEqNW
200UpdateRebarBandColors
201WriteStreamToFile
202WriteStreamToFileHandle
203WriteStreamToFileW
204_MSG
205ord_200 @200
206ord_201 @201
207fGetBrowserUrlEncoding
208strtrim
209strtrimW
210ord_210 @210
211ord_211 @211
212ord_214 @214
213ord_215 @215
lib/libc/mingw/libarm32/mspatchc.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of mspatchc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mspatchc.dll"
7EXPORTS
8CreatePatchFileA
9CreatePatchFileByHandles
10CreatePatchFileByHandlesEx
11CreatePatchFileExA
12CreatePatchFileExW
13CreatePatchFileW
14ExtractPatchHeaderToFileA
15ExtractPatchHeaderToFileByHandles
16ExtractPatchHeaderToFileW
17GetFilePatchSignatureA
18GetFilePatchSignatureByBuffer
19GetFilePatchSignatureByHandle
20GetFilePatchSignatureW
21NormalizeFileForPatchSignature
lib/libc/mingw/libarm32/msscntrs.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of pkmcntrs.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pkmcntrs.dll"
7EXPORTS
8Close
9Collect
10Open
lib/libc/mingw/libarm32/mssha.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of MSSHA.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSSHA.dll"
7EXPORTS
8MsShaInitialize
9MsShaUnInitialize
lib/libc/mingw/libarm32/msshooks.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of MSSHooks.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSSHooks.dll"
7EXPORTS
8LoadMSSearchHooks
lib/libc/mingw/libarm32/mssrch.def created+23
......@@ -0,0 +1,23 @@
1;
2; Definition file of MSSRCH.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSSRCH.DLL"
7EXPORTS
8??0CSearchServiceObj@@QAA@ABV0@@Z
9??0CSearchServiceObj@@QAA@XZ
10??1CSearchServiceObj@@QAA@XZ
11??4CSearchServiceObj@@QAAAAV0@ABV0@@Z
12??_7CSearchServiceObj@@6B@ DATA
13?Cleanup@CSearchServiceObj@@SAHXZ
14?DeleteFilterPool@CSearchServiceObj@@UAAJK@Z
15?GetFileChangeClientManagerInstance@@YA?AV?$shared_ptr@UIFileChangeClientManager@ChangeTracking@Windows@@@tr1@std@@XZ
16?Initialize@CSearchServiceObj@@UAAJXZ
17?LogonNotification@CSearchServiceObj@@UAAJXZ
18?SetServiceStatusObj@CSearchServiceObj@@UAAJPAUIDCOMServiceStatus@@@Z
19?Shutdown@CSearchServiceObj@@UAAJXZ
20?Start@CSearchServiceObj@@UAAJXZ
21?Stop@CSearchServiceObj@@UAAJH@Z
22GetCatalogManager
23MSSrch_SysPrep_Cleanup
lib/libc/mingw/libarm32/mstextprediction.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of apis.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "apis.dll"
7EXPORTS
8NIFTE_AbortTrainer
9NIFTE_CreateTrainer
10NIFTE_DestroyTrainer
11NIFTE_TextTrain
lib/libc/mingw/libarm32/msutb.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of MSUTB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSUTB.dll"
7EXPORTS
8ClosePopupTipbar
9GetChildTipbar
10GetPopupTipbar
11SetRegisterLangBand
lib/libc/mingw/libarm32/msvcirt.def created+415
......@@ -0,0 +1,415 @@
1;
2; Definition file of msvcirt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "msvcirt.dll"
7EXPORTS
8??0Iostream_init@@QAA@AAVios@@H@Z
9??0Iostream_init@@QAA@XZ
10??0exception@@QAA@ABQBD@Z
11??0exception@@QAA@ABV0@@Z
12??0exception@@QAA@XZ
13??0filebuf@@QAA@ABV0@@Z
14??0filebuf@@QAA@H@Z
15??0filebuf@@QAA@HPADH@Z
16??0filebuf@@QAA@XZ
17??0fstream@@QAA@ABV0@@Z
18??0fstream@@QAA@H@Z
19??0fstream@@QAA@HPADH@Z
20??0fstream@@QAA@PBDHH@Z
21??0fstream@@QAA@XZ
22??0ifstream@@QAA@ABV0@@Z
23??0ifstream@@QAA@H@Z
24??0ifstream@@QAA@HPADH@Z
25??0ifstream@@QAA@PBDHH@Z
26??0ifstream@@QAA@XZ
27??0ios@@IAA@ABV0@@Z
28??0ios@@IAA@XZ
29??0ios@@QAA@PAVstreambuf@@@Z
30??0iostream@@IAA@ABV0@@Z
31??0iostream@@IAA@XZ
32??0iostream@@QAA@PAVstreambuf@@@Z
33??0istream@@IAA@ABV0@@Z
34??0istream@@IAA@XZ
35??0istream@@QAA@PAVstreambuf@@@Z
36??0istream_withassign@@QAA@ABV0@@Z
37??0istream_withassign@@QAA@PAVstreambuf@@@Z
38??0istream_withassign@@QAA@XZ
39??0istrstream@@QAA@ABV0@@Z
40??0istrstream@@QAA@PAD@Z
41??0istrstream@@QAA@PADH@Z
42??0logic_error@@QAA@ABQBD@Z
43??0logic_error@@QAA@ABV0@@Z
44??0ofstream@@QAA@ABV0@@Z
45??0ofstream@@QAA@H@Z
46??0ofstream@@QAA@HPADH@Z
47??0ofstream@@QAA@PBDHH@Z
48??0ofstream@@QAA@XZ
49??0ostream@@IAA@ABV0@@Z
50??0ostream@@IAA@XZ
51??0ostream@@QAA@PAVstreambuf@@@Z
52??0ostream_withassign@@QAA@ABV0@@Z
53??0ostream_withassign@@QAA@PAVstreambuf@@@Z
54??0ostream_withassign@@QAA@XZ
55??0ostrstream@@QAA@ABV0@@Z
56??0ostrstream@@QAA@PADHH@Z
57??0ostrstream@@QAA@XZ
58??0stdiobuf@@QAA@ABV0@@Z
59??0stdiobuf@@QAA@PAU_iobuf@@@Z
60??0stdiostream@@QAA@ABV0@@Z
61??0stdiostream@@QAA@PAU_iobuf@@@Z
62??0streambuf@@IAA@PADH@Z
63??0streambuf@@IAA@XZ
64??0streambuf@@QAA@ABV0@@Z
65??0strstream@@QAA@ABV0@@Z
66??0strstream@@QAA@PADHH@Z
67??0strstream@@QAA@XZ
68??0strstreambuf@@QAA@ABV0@@Z
69??0strstreambuf@@QAA@H@Z
70??0strstreambuf@@QAA@P6APAXJ@ZP6AXPAX@Z@Z
71??0strstreambuf@@QAA@PADH0@Z
72??0strstreambuf@@QAA@PAEH0@Z
73??0strstreambuf@@QAA@XZ
74??1Iostream_init@@QAA@XZ
75??1exception@@UAA@XZ
76??1filebuf@@UAA@XZ
77??1fstream@@UAA@XZ
78??1ifstream@@UAA@XZ
79??1ios@@UAA@XZ
80??1iostream@@UAA@XZ
81??1istream@@UAA@XZ
82??1istream_withassign@@UAA@XZ
83??1istrstream@@UAA@XZ
84??1logic_error@@UAA@XZ
85??1ofstream@@UAA@XZ
86??1ostream@@UAA@XZ
87??1ostream_withassign@@UAA@XZ
88??1ostrstream@@UAA@XZ
89??1stdiobuf@@UAA@XZ
90??1stdiostream@@UAA@XZ
91??1streambuf@@UAA@XZ
92??1strstream@@UAA@XZ
93??1strstreambuf@@UAA@XZ
94??4Iostream_init@@QAAAAV0@ABV0@@Z
95??4exception@@QAAAAV0@ABV0@@Z
96??4filebuf@@QAAAAV0@ABV0@@Z
97??4fstream@@QAAAAV0@AAV0@@Z
98??4ifstream@@QAAAAV0@ABV0@@Z
99??4ios@@IAAAAV0@ABV0@@Z
100??4iostream@@IAAAAV0@AAV0@@Z
101??4iostream@@IAAAAV0@PAVstreambuf@@@Z
102??4istream@@IAAAAV0@ABV0@@Z
103??4istream@@IAAAAV0@PAVstreambuf@@@Z
104??4istream_withassign@@QAAAAV0@ABV0@@Z
105??4istream_withassign@@QAAAAVistream@@ABV1@@Z
106??4istream_withassign@@QAAAAVistream@@PAVstreambuf@@@Z
107??4istrstream@@QAAAAV0@ABV0@@Z
108??4logic_error@@QAAAAV0@ABV0@@Z
109??4ofstream@@QAAAAV0@ABV0@@Z
110??4ostream@@IAAAAV0@ABV0@@Z
111??4ostream@@IAAAAV0@PAVstreambuf@@@Z
112??4ostream_withassign@@QAAAAV0@ABV0@@Z
113??4ostream_withassign@@QAAAAVostream@@ABV1@@Z
114??4ostream_withassign@@QAAAAVostream@@PAVstreambuf@@@Z
115??4ostrstream@@QAAAAV0@ABV0@@Z
116??4stdiobuf@@QAAAAV0@ABV0@@Z
117??4stdiostream@@QAAAAV0@AAV0@@Z
118??4streambuf@@QAAAAV0@ABV0@@Z
119??4strstream@@QAAAAV0@AAV0@@Z
120??4strstreambuf@@QAAAAV0@ABV0@@Z
121??5istream@@QAAAAV0@AAC@Z
122??5istream@@QAAAAV0@AAD@Z
123??5istream@@QAAAAV0@AAE@Z
124??5istream@@QAAAAV0@AAF@Z
125??5istream@@QAAAAV0@AAG@Z
126??5istream@@QAAAAV0@AAH@Z
127??5istream@@QAAAAV0@AAI@Z
128??5istream@@QAAAAV0@AAJ@Z
129??5istream@@QAAAAV0@AAK@Z
130??5istream@@QAAAAV0@AAM@Z
131??5istream@@QAAAAV0@AAN@Z
132??5istream@@QAAAAV0@AAO@Z
133??5istream@@QAAAAV0@P6AAAV0@AAV0@@Z@Z
134??5istream@@QAAAAV0@P6AAAVios@@AAV1@@Z@Z
135??5istream@@QAAAAV0@PAC@Z
136??5istream@@QAAAAV0@PAD@Z
137??5istream@@QAAAAV0@PAE@Z
138??5istream@@QAAAAV0@PAVstreambuf@@@Z
139??6ostream@@QAAAAV0@C@Z
140??6ostream@@QAAAAV0@D@Z
141??6ostream@@QAAAAV0@E@Z
142??6ostream@@QAAAAV0@F@Z
143??6ostream@@QAAAAV0@G@Z
144??6ostream@@QAAAAV0@H@Z
145??6ostream@@QAAAAV0@I@Z
146??6ostream@@QAAAAV0@J@Z
147??6ostream@@QAAAAV0@K@Z
148??6ostream@@QAAAAV0@M@Z
149??6ostream@@QAAAAV0@N@Z
150??6ostream@@QAAAAV0@O@Z
151??6ostream@@QAAAAV0@P6AAAV0@AAV0@@Z@Z
152??6ostream@@QAAAAV0@P6AAAVios@@AAV1@@Z@Z
153??6ostream@@QAAAAV0@PAVstreambuf@@@Z
154??6ostream@@QAAAAV0@PBC@Z
155??6ostream@@QAAAAV0@PBD@Z
156??6ostream@@QAAAAV0@PBE@Z
157??6ostream@@QAAAAV0@PBX@Z
158??7ios@@QBAHXZ
159??Bios@@QBAPAXXZ
160??_7exception@@6B@ DATA
161??_7filebuf@@6B@ DATA
162??_7fstream@@6B@ DATA
163??_7ifstream@@6B@ DATA
164??_7ios@@6B@ DATA
165??_7iostream@@6B@ DATA
166??_7istream@@6B@ DATA
167??_7istream_withassign@@6B@ DATA
168??_7istrstream@@6B@ DATA
169??_7logic_error@@6B@ DATA
170??_7ofstream@@6B@ DATA
171??_7ostream@@6B@ DATA
172??_7ostream_withassign@@6B@ DATA
173??_7ostrstream@@6B@ DATA
174??_7stdiobuf@@6B@ DATA
175??_7stdiostream@@6B@ DATA
176??_7streambuf@@6B@ DATA
177??_7strstream@@6B@ DATA
178??_7strstreambuf@@6B@ DATA
179??_8fstream@@7Bistream@@@
180??_8fstream@@7Bostream@@@
181??_8ifstream@@7B@
182??_8iostream@@7Bistream@@@
183??_8iostream@@7Bostream@@@
184??_8istream@@7B@
185??_8istream_withassign@@7B@
186??_8istrstream@@7B@
187??_8ofstream@@7B@
188??_8ostream@@7B@
189??_8ostream_withassign@@7B@
190??_8ostrstream@@7B@
191??_8stdiostream@@7Bistream@@@
192??_8stdiostream@@7Bostream@@@
193??_8strstream@@7Bistream@@@
194??_8strstream@@7Bostream@@@
195??_Dfstream@@QAAXXZ
196??_Difstream@@QAAXXZ
197??_Diostream@@QAAXXZ
198??_Distream@@QAAXXZ
199??_Distream_withassign@@QAAXXZ
200??_Distrstream@@QAAXXZ
201??_Dofstream@@QAAXXZ
202??_Dostream@@QAAXXZ
203??_Dostream_withassign@@QAAXXZ
204??_Dostrstream@@QAAXXZ
205??_Dstdiostream@@QAAXXZ
206??_Dstrstream@@QAAXXZ
207?_init@strstreambuf@@AAAXPADH0@Z
208?adjustfield@ios@@2JB
209?allocate@streambuf@@IAAHXZ
210?attach@filebuf@@QAAPAV1@H@Z
211?attach@fstream@@QAAXH@Z
212?attach@ifstream@@QAAXH@Z
213?attach@ofstream@@QAAXH@Z
214?bad@ios@@QBAHXZ
215?base@streambuf@@IBAPADXZ
216?basefield@ios@@2JB
217?binary@filebuf@@2HB
218?bitalloc@ios@@SAJXZ
219?blen@streambuf@@IBAHXZ
220?cerr@@3Vostream_withassign@@A DATA
221?cin@@3Vistream_withassign@@A DATA
222?clear@ios@@QAAXH@Z
223?clog@@3Vostream_withassign@@A DATA
224?close@filebuf@@QAAPAV1@XZ
225?close@fstream@@QAAXXZ
226?close@ifstream@@QAAXXZ
227?close@ofstream@@QAAXXZ
228?clrlock@ios@@QAAXXZ
229?clrlock@streambuf@@QAAXXZ
230?cout@@3Vostream_withassign@@A DATA
231?dbp@streambuf@@QAAXXZ
232?dec@@YAAAVios@@AAV1@@Z
233?delbuf@ios@@QAAXH@Z
234?delbuf@ios@@QBAHXZ
235?doallocate@streambuf@@MAAHXZ
236?doallocate@strstreambuf@@MAAHXZ
237?eatwhite@istream@@QAAXXZ
238?eback@streambuf@@IBAPADXZ
239?ebuf@streambuf@@IBAPADXZ
240?egptr@streambuf@@IBAPADXZ
241?endl@@YAAAVostream@@AAV1@@Z
242?ends@@YAAAVostream@@AAV1@@Z
243?eof@ios@@QBAHXZ
244?epptr@streambuf@@IBAPADXZ
245?fLockcInit@ios@@0HA DATA
246?fail@ios@@QBAHXZ
247?fd@filebuf@@QBAHXZ
248?fd@fstream@@QBAHXZ
249?fd@ifstream@@QBAHXZ
250?fd@ofstream@@QBAHXZ
251?fill@ios@@QAADD@Z
252?fill@ios@@QBADXZ
253?flags@ios@@QAAJJ@Z
254?flags@ios@@QBAJXZ
255?floatfield@ios@@2JB
256?flush@@YAAAVostream@@AAV1@@Z
257?flush@ostream@@QAAAAV1@XZ
258?freeze@strstreambuf@@QAAXH@Z
259?gbump@streambuf@@IAAXH@Z
260?gcount@istream@@QBAHXZ
261?get@istream@@IAAAAV1@PADHH@Z
262?get@istream@@QAAAAV1@AAC@Z
263?get@istream@@QAAAAV1@AAD@Z
264?get@istream@@QAAAAV1@AAE@Z
265?get@istream@@QAAAAV1@AAVstreambuf@@D@Z
266?get@istream@@QAAAAV1@PACHD@Z
267?get@istream@@QAAAAV1@PADHD@Z
268?get@istream@@QAAAAV1@PAEHD@Z
269?get@istream@@QAAHXZ
270?getdouble@istream@@AAAHPADH@Z
271?getint@istream@@AAAHPAD@Z
272?getline@istream@@QAAAAV1@PACHD@Z
273?getline@istream@@QAAAAV1@PADHD@Z
274?getline@istream@@QAAAAV1@PAEHD@Z
275?good@ios@@QBAHXZ
276?gptr@streambuf@@IBAPADXZ
277?hex@@YAAAVios@@AAV1@@Z
278?ignore@istream@@QAAAAV1@HH@Z
279?in_avail@streambuf@@QBAHXZ
280?init@ios@@IAAXPAVstreambuf@@@Z
281?ipfx@istream@@QAAHH@Z
282?is_open@filebuf@@QBAHXZ
283?is_open@fstream@@QBAHXZ
284?is_open@ifstream@@QBAHXZ
285?is_open@ofstream@@QBAHXZ
286?isfx@istream@@QAAXXZ
287?iword@ios@@QBAAAJH@Z
288?lock@ios@@QAAXXZ
289?lock@streambuf@@QAAXXZ
290?lockbuf@ios@@QAAXXZ
291?lockc@ios@@KAXXZ
292?lockptr@ios@@IAAPAU_CRT_CRITICAL_SECTION@@XZ
293?lockptr@streambuf@@IAAPAU_CRT_CRITICAL_SECTION@@XZ
294?oct@@YAAAVios@@AAV1@@Z
295?open@filebuf@@QAAPAV1@PBDHH@Z
296?open@fstream@@QAAXPBDHH@Z
297?open@ifstream@@QAAXPBDHH@Z
298?open@ofstream@@QAAXPBDHH@Z
299?openprot@filebuf@@2HB
300?opfx@ostream@@QAAHXZ
301?osfx@ostream@@QAAXXZ
302?out_waiting@streambuf@@QBAHXZ
303?overflow@filebuf@@UAAHH@Z
304?overflow@stdiobuf@@UAAHH@Z
305?overflow@strstreambuf@@UAAHH@Z
306?pbackfail@stdiobuf@@UAAHH@Z
307?pbackfail@streambuf@@UAAHH@Z
308?pbase@streambuf@@IBAPADXZ
309?pbump@streambuf@@IAAXH@Z
310?pcount@ostrstream@@QBAHXZ
311?pcount@strstream@@QBAHXZ
312?peek@istream@@QAAHXZ
313?pptr@streambuf@@IBAPADXZ
314?precision@ios@@QAAHH@Z
315?precision@ios@@QBAHXZ
316?put@ostream@@QAAAAV1@C@Z
317?put@ostream@@QAAAAV1@D@Z
318?put@ostream@@QAAAAV1@E@Z
319?putback@istream@@QAAAAV1@D@Z
320?pword@ios@@QBAAAPAXH@Z
321?rdbuf@fstream@@QBAPAVfilebuf@@XZ
322?rdbuf@ifstream@@QBAPAVfilebuf@@XZ
323?rdbuf@ios@@QBAPAVstreambuf@@XZ
324?rdbuf@istrstream@@QBAPAVstrstreambuf@@XZ
325?rdbuf@ofstream@@QBAPAVfilebuf@@XZ
326?rdbuf@ostrstream@@QBAPAVstrstreambuf@@XZ
327?rdbuf@stdiostream@@QBAPAVstdiobuf@@XZ
328?rdbuf@strstream@@QBAPAVstrstreambuf@@XZ
329?rdstate@ios@@QBAHXZ
330?read@istream@@QAAAAV1@PACH@Z
331?read@istream@@QAAAAV1@PADH@Z
332?read@istream@@QAAAAV1@PAEH@Z
333?sbumpc@streambuf@@QAAHXZ
334?seekg@istream@@QAAAAV1@J@Z
335?seekg@istream@@QAAAAV1@JW4seek_dir@ios@@@Z
336?seekoff@filebuf@@UAAJJW4seek_dir@ios@@H@Z
337?seekoff@stdiobuf@@UAAJJW4seek_dir@ios@@H@Z
338?seekoff@streambuf@@UAAJJW4seek_dir@ios@@H@Z
339?seekoff@strstreambuf@@UAAJJW4seek_dir@ios@@H@Z
340?seekp@ostream@@QAAAAV1@J@Z
341?seekp@ostream@@QAAAAV1@JW4seek_dir@ios@@@Z
342?seekpos@streambuf@@UAAJJH@Z
343?setb@streambuf@@IAAXPAD0H@Z
344?setbuf@filebuf@@UAAPAVstreambuf@@PADH@Z
345?setbuf@fstream@@QAAPAVstreambuf@@PADH@Z
346?setbuf@ifstream@@QAAPAVstreambuf@@PADH@Z
347?setbuf@ofstream@@QAAPAVstreambuf@@PADH@Z
348?setbuf@streambuf@@UAAPAV1@PADH@Z
349?setbuf@strstreambuf@@UAAPAVstreambuf@@PADH@Z
350?setf@ios@@QAAJJ@Z
351?setf@ios@@QAAJJJ@Z
352?setg@streambuf@@IAAXPAD00@Z
353?setlock@ios@@QAAXXZ
354?setlock@streambuf@@QAAXXZ
355?setmode@filebuf@@QAAHH@Z
356?setmode@fstream@@QAAHH@Z
357?setmode@ifstream@@QAAHH@Z
358?setmode@ofstream@@QAAHH@Z
359?setp@streambuf@@IAAXPAD0@Z
360?setrwbuf@stdiobuf@@QAAHHH@Z
361?sgetc@streambuf@@QAAHXZ
362?sgetn@streambuf@@QAAHPADH@Z
363?sh_none@filebuf@@2HB
364?sh_read@filebuf@@2HB
365?sh_write@filebuf@@2HB
366?snextc@streambuf@@QAAHXZ
367?sputbackc@streambuf@@QAAHD@Z
368?sputc@streambuf@@QAAHH@Z
369?sputn@streambuf@@QAAHPBDH@Z
370?stdiofile@stdiobuf@@QAAPAU_iobuf@@XZ
371?stossc@streambuf@@QAAXXZ
372?str@istrstream@@QAAPADXZ
373?str@ostrstream@@QAAPADXZ
374?str@strstream@@QAAPADXZ
375?str@strstreambuf@@QAAPADXZ
376?sunk_with_stdio@ios@@0HA DATA
377?sync@filebuf@@UAAHXZ
378?sync@istream@@QAAHXZ
379?sync@stdiobuf@@UAAHXZ
380?sync@streambuf@@UAAHXZ
381?sync@strstreambuf@@UAAHXZ
382?sync_with_stdio@ios@@SAXXZ
383?tellg@istream@@QAAJXZ
384?tellp@ostream@@QAAJXZ
385?text@filebuf@@2HB
386?tie@ios@@QAAPAVostream@@PAV2@@Z
387?tie@ios@@QBAPAVostream@@XZ
388?unbuffered@streambuf@@IAAXH@Z
389?unbuffered@streambuf@@IBAHXZ
390?underflow@filebuf@@UAAHXZ
391?underflow@stdiobuf@@UAAHXZ
392?underflow@strstreambuf@@UAAHXZ
393?unlock@ios@@QAAXXZ
394?unlock@streambuf@@QAAXXZ
395?unlockbuf@ios@@QAAXXZ
396?unlockc@ios@@KAXXZ
397?unsetf@ios@@QAAJJ@Z
398?what@exception@@UBAPBDXZ
399?width@ios@@QAAHH@Z
400?width@ios@@QBAHXZ
401?write@ostream@@QAAAAV1@PBCH@Z
402?write@ostream@@QAAAAV1@PBDH@Z
403?write@ostream@@QAAAAV1@PBEH@Z
404?writepad@ostream@@AAAAAV1@PBD0@Z
405?ws@@YAAAVistream@@AAV1@@Z
406?x_curindex@ios@@0HA DATA
407?x_lockc@ios@@0U_CRT_CRITICAL_SECTION@@A DATA
408?x_maxbit@ios@@0JA DATA
409?x_statebuf@ios@@0PAJA DATA
410?xalloc@ios@@SAHXZ
411?xsgetn@streambuf@@UAAHPADH@Z
412?xsputn@streambuf@@UAAHPBDH@Z
413__dummy_export DATA
414_mtlock
415_mtunlock
lib/libc/mingw/libarm32/msxml6.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of MSXML6.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MSXML6.dll"
7EXPORTS
8DllSetProperty
lib/libc/mingw/libarm32/mtxex.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of mtxex.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mtxex.dll"
7EXPORTS
8GetObjectContext
9SafeRef
10MTSCreateActivity
lib/libc/mingw/libarm32/muifontsetup.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of muifontsetup.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "muifontsetup.dll"
7EXPORTS
8OnMachineUILanguageInit
9OnMachineUILanguageSwitch
lib/libc/mingw/libarm32/muilanguagecleanup.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of MUILanguageCleanup.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "MUILanguageCleanup.dll"
7EXPORTS
8OnMachineUILanguageClear
9OnMachineUILanguageInit
10OnMachineUILanguageSwitch
11OnUILanguageAdd
12OnUILanguageRemove
lib/libc/mingw/libarm32/mvbtrcarm.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of mvbtrc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "mvbtrc.dll"
7EXPORTS
8BluetoothEnableRadio
9IsBluetoothRadioEnabled
lib/libc/mingw/libarm32/napinsp.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of NAPINSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NAPINSP.dll"
7EXPORTS
8NSPStartup
lib/libc/mingw/libarm32/napipsec.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NapIpsec.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NapIpsec.dll"
7EXPORTS
8InitializeNapIpsecRp
9UninitializeNapIpsecRp
lib/libc/mingw/libarm32/ncaapi.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of NcaApi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NcaApi.dll"
7EXPORTS
8NcaEngineClose
9NcaEngineOpen
10NcaExecuteAndCaptureLogs
11NcaGetConfig
12NcaGetEvidenceCollectorResult
13NcaNetworkClose
14NcaNetworkOpen
15NcaStatusEventSubscribe
16NcaStatusEventUnsubscribe
17NcaToggleNamePreferenceState
lib/libc/mingw/libarm32/ncasvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NcaSvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NcaSvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/ncbservice.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of ncbservice.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ncbservice.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/ncdautosetup.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of NcdAutoSetup.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NcdAutoSetup.dll"
7EXPORTS
8NcdAutoSetup_Generalize
9SvchostPushServiceGlobals
10SvchostMain
lib/libc/mingw/libarm32/nci.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of NCI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NCI.dll"
7EXPORTS
8NciGetConnectionName
9NciSetConnectionName
10UpdateAdvancedParameter
lib/libc/mingw/libarm32/ncryptprov.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of ncryptprov.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ncryptprov.dll"
7EXPORTS
8GetKeyStorageInterface
9SKCacheFlush
10SetAuditingInterface
lib/libc/mingw/libarm32/ncryptsslp.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of ncryptsslp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ncryptsslp.dll"
7EXPORTS
8GetSChannelInterface
lib/libc/mingw/libarm32/ncsi.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of ncsi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ncsi.dll"
7EXPORTS
8NcsiAllocateAndGetConnectivityStatusSet
9NcsiDeregisterConnectivityStatusChange
10NcsiFreeConnectivityStatusSet
11NcsiIdentifyUserSpecificProxies
12NcsiNotifySessionChange
13NcsiPerformRefresh
14NcsiRegisterConnectivityStatusChange
15NcsiUpdateClientPresence
lib/libc/mingw/libarm32/ncuprov.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NcuProv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NcuProv.dll"
7EXPORTS
8SruInitializeProvider
9SruUninitializeProvider
lib/libc/mingw/libarm32/nduprov.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NduProv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NduProv.dll"
7EXPORTS
8SruInitializeProvider
9SruUninitializeProvider
lib/libc/mingw/libarm32/negoexts.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NEGOEXTS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NEGOEXTS.dll"
7EXPORTS
8SpLsaModeInitialize
9SpUserModeInitialize
lib/libc/mingw/libarm32/netbios.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of netbios.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "netbios.dll"
7EXPORTS
8Netbios
lib/libc/mingw/libarm32/netcfgx.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of netcfgx.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "netcfgx.dll"
7EXPORTS
8LanaCfgFromCommandArgs
9NetCfgDiagFromCommandArgs
10NetCfgDiagRepairRegistryBindings
11NetClassInstaller
12NetPropPageProvider
13OnMachineUILanguageInit
14OnMachineUILanguageSwitch
lib/libc/mingw/libarm32/netdiagfx.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of netdiagfx.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "netdiagfx.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
11HelperTraceEvent
12HelperTraceInitialize
13HelperTraceUninitialize
lib/libc/mingw/libarm32/netfxperf.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of netfxperf.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "netfxperf.dll"
7EXPORTS
8ClosePerformanceData
9CollectPerformanceData
10OpenPerformanceData
lib/libc/mingw/libarm32/netjoin.def created+43
......@@ -0,0 +1,43 @@
1;
2; Definition file of netjoin.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "netjoin.dll"
7EXPORTS
8NetCreateProvisioningPackage
9NetProvisionComputerAccount
10NetRequestOfflineDomainJoin
11NetRequestProvisioningPackageInstall
12NetSetuppCloseLog
13NetSetuppOpenLog
14NetpAnalyzeProvisioningPackage
15NetpAvoidNetlogonSpnSet
16NetpChangeMachineName
17NetpCheckOfflineLsaPolicyUpdate
18NetpCompleteOfflineDomainJoin
19NetpContinueProvisioningPackageInstall
20NetpControlServices
21NetpCrackNamesStatus2Win32Error
22NetpCreateComputerObjectInDs
23NetpDoDomainJoin
24NetpDomainJoinLicensingCheck
25NetpFreeLdapLsaDomainInfo
26NetpGetJoinInformation
27NetpGetListOfJoinableOUs
28NetpGetLsaPrimaryDomain
29NetpGetMachineAccountName
30NetpGetNewMachineName
31NetpIsSetupInProgress
32NetpLogPrintHelper
33NetpMachineValidToJoin
34NetpManageIPCConnect
35NetpManageMachineAccountWithSid
36NetpQueryService
37NetpSeparateUserAndDomain
38NetpSetComputerAccountPassword
39NetpStopService
40NetpStoreInitialDcRecord
41NetpUnJoinDomain
42NetpUpgradePreNT5JoinInfo
43NetpValidateName
lib/libc/mingw/libarm32/netlogon.def created+31
......@@ -0,0 +1,31 @@
1;
2; Definition file of NETLOGON.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NETLOGON.dll"
7EXPORTS
8DsrGetDcNameEx2
9I_NetLogonAddressToSiteName
10I_NetLogonAppendChangeLog
11I_NetLogonCloseChangeLog
12I_NetLogonFree
13I_NetLogonGetAuthDataEx
14I_NetLogonGetSerialNumber
15I_NetLogonLdapLookupEx
16I_NetLogonMixedDomain
17I_NetLogonNewChangeLog
18I_NetLogonReadChangeLog
19I_NetLogonSendToSamOnDc
20I_NetLogonSetServiceBits
21I_NetNotifyDelta
22I_NetNotifyDsChange
23I_NetNotifyMachineAccount
24I_NetNotifyNetlogonDllHandle
25I_NetNotifyNtdsDsaDeletion
26I_NetNotifyRole
27I_NetNotifyTrustedDomain
28InitSecurityInterfaceW
29NetIGetEncTypes
30NetILogonSamLogon
31NlNetlogonMain
lib/libc/mingw/libarm32/netman.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of netman.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "netman.dll"
7EXPORTS
8HrGetPnpDeviceStatus
9HrLanConnectionNameFromGuidOrPath
10HrPnpInstanceIdFromGuid
11HrQueryLanMediaState
12NetManDiagFromCommandArgs
13ServiceMain
14SvchostPushServiceGlobals
lib/libc/mingw/libarm32/netplwiz.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of NETPLWIZ.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NETPLWIZ.dll"
7EXPORTS
8ClearAutoLogon
9NetAccessWizard
10NetPlacesWizardDoModal
11SHDisconnectNetDrives
12UsersRunDllW
lib/libc/mingw/libarm32/netprofmsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of netprofm.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "netprofm.dll"
7EXPORTS
8SvchostPushServiceGlobals
9ServiceMain
lib/libc/mingw/libarm32/netprovisionsp.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NetProvisionSp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NetProvisionSp.dll"
7EXPORTS
8NetpCertProviderInitialize
9NetpPolProviderInitialize
lib/libc/mingw/libarm32/nlaapi.def created+35
......@@ -0,0 +1,35 @@
1;
2; Definition file of nlaapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nlaapi.dll"
7EXPORTS
8LANIdFreeCollection
9LANIdRetrieveCollection
10NSPStartup
11NlaAddToPluginRequests
12NlaAddToTypeSet
13NlaAnd
14NlaCloseQuery
15NlaComposeNetSignature
16NlaCreateFilter
17NlaCreatePluginRequests
18NlaCreateTypeSet
19NlaDecomposeNetSignature
20NlaDeleteDataSet
21NlaDeleteFilter
22NlaDeletePluginRequests
23NlaDeleteTypeSet
24NlaEqual
25NlaEqualNetSignatures
26NlaGetInternetCapability
27NlaGetIntranetCapability
28NlaNotEqual
29NlaOpenQuery
30NlaOr
31NlaQueryNetData
32NlaQueryNetDataEx
33NlaQueryNetSignatures
34NlaRefreshQuery
35NlaRegisterQuery
lib/libc/mingw/libarm32/nlasvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of nlasvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nlasvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/nlmsprep.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of nlmsprep.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nlmsprep.dll"
7EXPORTS
8NetworkListManager_Generalize
lib/libc/mingw/libarm32/nlsdl.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of Nlsdl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Nlsdl.dll"
7EXPORTS
8DownlevelGetParentLocaleLCID
9DownlevelGetParentLocaleName
10DownlevelLCIDToLocaleName
11DownlevelLocaleNameToLCID
lib/libc/mingw/libarm32/nrpsrv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of nrpsrv.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nrpsrv.DLL"
7EXPORTS
8NrpStartRpcServer
9NrpStopRpcServer
lib/libc/mingw/libarm32/nshwfp.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of NSHWFP.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NSHWFP.DLL"
7EXPORTS
8IdpConfigAddPolicy
9IdpConfigAllocateAndGetPolicy
10IdpConfigFreePolicy
11IdpConfigInitDefaultPolicy
12IdpConfigRemovePolicy
13InitHelperDll
14WfpCaptureExportedW
15WfpCaptureStop
lib/libc/mingw/libarm32/nsi.def created+33
......@@ -0,0 +1,33 @@
1;
2; Definition file of NSI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NSI.dll"
7EXPORTS
8NsiAllocateAndGetPersistentDataWithMaskTable
9NsiAllocateAndGetTable
10NsiCancelChangeNotification
11NsiDeregisterChangeNotification
12NsiDeregisterChangeNotificationEx
13NsiEnumerateObjectsAllParameters
14NsiEnumerateObjectsAllParametersEx
15NsiEnumerateObjectsAllPersistentParametersWithMask
16NsiFreePersistentDataWithMaskTable
17NsiFreeTable
18NsiGetAllParameters
19NsiGetAllParametersEx
20NsiGetAllPersistentParametersWithMask
21NsiGetObjectSecurity
22NsiGetParameter
23NsiGetParameterEx
24NsiRegisterChangeNotification
25NsiRegisterChangeNotificationEx
26NsiRequestChangeNotification
27NsiRequestChangeNotificationEx
28NsiSetAllParameters
29NsiSetAllParametersEx
30NsiSetAllPersistentParametersWithMask
31NsiSetObjectSecurity
32NsiSetParameter
33NsiSetParameterEx
lib/libc/mingw/libarm32/nsisvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of nsisvc.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nsisvc.DLL"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/ntmarta.def created+57
......@@ -0,0 +1,57 @@
1;
2; Definition file of NTMARTA.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NTMARTA.dll"
7EXPORTS
8AccProvHandleGrantAccessRights
9GetMartaExtensionInterface
10AccConvertAccessMaskToActrlAccess
11AccConvertAccessToSD
12AccConvertAccessToSecurityDescriptor
13AccConvertAclToAccess
14AccConvertSDToAccess
15AccFreeIndexArray
16AccGetAccessForTrustee
17AccGetExplicitEntries
18AccGetInheritanceSource
19AccLookupAccountName
20AccLookupAccountSid
21AccLookupAccountTrustee
22AccProvCancelOperation
23AccProvGetAccessInfoPerObjectType
24AccProvGetAllRights
25AccProvGetCapabilities
26AccProvGetOperationResults
27AccProvGetTrusteesAccess
28AccProvGrantAccessRights
29AccProvHandleGetAccessInfoPerObjectType
30AccProvHandleGetAllRights
31AccProvHandleGetTrusteesAccess
32AccProvHandleIsAccessAudited
33AccProvHandleIsObjectAccessible
34AccProvHandleRevokeAccessRights
35AccProvHandleRevokeAuditRights
36AccProvHandleSetAccessRights
37AccProvIsAccessAudited
38AccProvIsObjectAccessible
39AccProvRevokeAccessRights
40AccProvRevokeAuditRights
41AccProvSetAccessRights
42AccRewriteGetExplicitEntriesFromAcl
43AccRewriteGetHandleRights
44AccRewriteGetNamedRights
45AccRewriteSetEntriesInAcl
46AccRewriteSetHandleRights
47AccRewriteSetNamedRights
48AccSetEntriesInAList
49AccTreeResetNamedSecurityInfo
50EventGuidToName
51EventNameFree
52GetExplicitEntriesFromAclW
53GetNamedSecurityInfoW
54GetSecurityInfo
55SetEntriesInAclW
56SetNamedSecurityInfoW
57SetSecurityInfo
lib/libc/mingw/libarm32/ntoskrnl.def created+2437
......@@ -0,0 +1,2437 @@
1;
2; Definition file of ntoskrnl.exe
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ntoskrnl.exe"
7EXPORTS
8ord_1 @1
9ord_2 @2
10ord_3 @3
11AlpcGetHeaderSize
12AlpcGetMessageAttribute
13AlpcInitializeMessageAttribute
14BgkDisplayCharacter
15BgkGetConsoleState
16BgkGetCursorState
17BgkSetCursor
18CcAddDirtyPagesToExternalCache
19CcCanIWrite
20CcCoherencyFlushAndPurgeCache
21CcCopyRead
22CcCopyReadEx
23CcCopyWrite
24CcCopyWriteEx
25CcCopyWriteWontFlush
26CcDeductDirtyPagesFromExternalCache
27CcDeferWrite
28CcFastCopyRead
29CcFastCopyWrite
30CcFastMdlReadWait DATA
31CcFlushCache
32CcFlushCacheToLsn
33CcGetDirtyPages
34CcGetFileObjectFromBcb
35CcGetFileObjectFromSectionPtrs
36CcGetFileObjectFromSectionPtrsRef
37CcGetFlushedValidData
38CcGetLsnForFileObject
39CcInitializeCacheMap
40CcIsThereDirtyData
41CcIsThereDirtyDataEx
42CcIsThereDirtyLoggedPages
43CcMapData
44CcMdlRead
45CcMdlReadComplete
46CcMdlWriteAbort
47CcMdlWriteComplete
48CcPinMappedData
49CcPinRead
50CcPrepareMdlWrite
51CcPreparePinWrite
52CcPurgeCacheSection
53CcRegisterExternalCache
54CcRemapBcb
55CcRepinBcb
56CcScheduleReadAhead
57CcScheduleReadAheadEx
58CcSetAdditionalCacheAttributes
59CcSetAdditionalCacheAttributesEx
60CcSetBcbOwnerPointer
61CcSetDirtyPageThreshold
62CcSetDirtyPinnedData
63CcSetFileSizes
64CcSetFileSizesEx
65CcSetLogHandleForFile
66CcSetLogHandleForFileEx
67CcSetLoggedDataThreshold
68CcSetParallelFlushFile
69CcSetReadAheadGranularity
70CcSetReadAheadGranularityEx
71CcTestControl
72CcUninitializeCacheMap
73CcUnmapFileOffsetFromSystemCache
74CcUnpinData
75CcUnpinDataForThread
76CcUnpinRepinnedBcb
77CcUnregisterExternalCache
78CcWaitForCurrentLazyWriterActivity
79CcZeroData
80CcZeroDataOnDisk
81CmCallbackGetKeyObjectID
82CmCallbackGetKeyObjectIDEx
83CmCallbackReleaseKeyObjectIDEx
84CmGetBoundTransaction
85CmGetCallbackVersion
86CmKeyObjectType DATA
87CmRegisterCallback
88CmRegisterCallbackEx
89CmSetCallbackObjectContext
90CmUnRegisterCallback
91DbgBreakPoint
92DbgBreakPointWithStatus
93DbgCommandString
94DbgLoadImageSymbols
95DbgPrint
96DbgPrintEx
97DbgPrintReturnControlC
98DbgPrompt
99DbgQueryDebugFilterState
100DbgSetDebugFilterState
101DbgSetDebugPrintCallback
102DbgkLkmdRegisterCallback
103DbgkLkmdUnregisterCallback
104DbgkWerCaptureLiveKernelDump
105EmClientQueryRuleState
106EmClientRuleDeregisterNotification
107EmClientRuleEvaluate
108EmClientRuleRegisterNotification
109EmProviderDeregister
110EmProviderDeregisterEntry
111EmProviderRegister
112EmProviderRegisterEntry
113EmpProviderRegister
114EtwActivityIdControl
115EtwEnableTrace
116EtwEventEnabled
117EtwProviderEnabled
118EtwRegister
119EtwRegisterClassicProvider
120EtwSendTraceBuffer
121EtwUnregister
122EtwWrite
123EtwWriteEndScenario
124EtwWriteEx
125EtwWriteStartScenario
126EtwWriteString
127EtwWriteTransfer
128ExAcquireCacheAwarePushLockExclusive
129ExAcquireCacheAwarePushLockExclusiveEx
130ExAcquireCacheAwarePushLockSharedEx
131ExAcquireFastMutex
132ExAcquireFastMutexUnsafe
133ExAcquirePushLockExclusiveEx
134ExAcquirePushLockSharedEx
135ExAcquireResourceExclusiveLite
136ExAcquireResourceSharedLite
137ExAcquireRundownProtection
138ExAcquireRundownProtectionCacheAware
139ExAcquireRundownProtectionCacheAwareEx
140ExAcquireRundownProtectionEx
141ExAcquireSharedStarveExclusive
142ExAcquireSharedWaitForExclusive
143ExAcquireSpinLockExclusive
144ExAcquireSpinLockExclusiveAtDpcLevel
145ExAcquireSpinLockShared
146ExAcquireSpinLockSharedAtDpcLevel
147ExAllocateCacheAwarePushLock
148ExAllocateCacheAwareRundownProtection
149ExAllocatePool
150ExAllocatePoolWithQuota
151ExAllocatePoolWithQuotaTag
152ExAllocatePoolWithTag
153ExAllocatePoolWithTagPriority
154ExAllocateTimer
155ExBlockOnAddressPushLock
156ExBlockPushLock
157ExCancelTimer
158ExCompositionObjectType DATA
159ExConvertExclusiveToSharedLite
160ExCreateCallback
161ExDeleteLookasideListEx
162ExDeleteNPagedLookasideList
163ExDeletePagedLookasideList
164ExDeleteResourceLite
165ExDeleteTimer
166ExDesktopObjectType DATA
167ExDisableResourceBoostLite
168ExEnterCriticalRegionAndAcquireFastMutexUnsafe
169ExEnterCriticalRegionAndAcquireResourceExclusive
170ExEnterCriticalRegionAndAcquireResourceShared
171ExEnterCriticalRegionAndAcquireSharedWaitForExclusive
172ExEnterPriorityRegionAndAcquireResourceExclusive
173ExEnterPriorityRegionAndAcquireResourceShared
174ExEnumHandleTable
175ExEventObjectType DATA
176ExExtendZone
177ExFetchLicenseData
178ExFlushLookasideListEx
179ExFreeCacheAwarePushLock
180ExFreeCacheAwareRundownProtection
181ExFreePool
182ExFreePoolWithTag
183ExGetCurrentProcessorCounts
184ExGetCurrentProcessorCpuUsage
185ExGetExclusiveWaiterCount
186ExGetFirmwareEnvironmentVariable
187ExGetLicenseTamperState
188ExGetPreviousMode
189ExGetSharedWaiterCount
190ExInitializeLookasideListEx
191ExInitializeNPagedLookasideList
192ExInitializePagedLookasideList
193ExInitializePushLock
194ExInitializeResourceLite
195ExInitializeRundownProtection
196ExInitializeRundownProtectionCacheAware
197ExInitializeZone
198ExInterlockedAddLargeInteger
199ExInterlockedAddUlong
200ExInterlockedExtendZone
201ExInterlockedInsertHeadList
202ExInterlockedInsertTailList
203ExInterlockedPopEntryList
204ExInterlockedPushEntryList
205ExInterlockedRemoveHeadList
206ExIsProcessorFeaturePresent
207ExIsResourceAcquiredExclusiveLite
208ExIsResourceAcquiredSharedLite
209ExLocalTimeToSystemTime
210ExNotifyBootDeviceRemoval
211ExNotifyCallback
212ExQueryDepthSList
213ExQueryFastCacheAppOrigin
214ExQueryFastCacheDevLicense
215ExQueryPoolBlockSize
216ExQueryTimerResolution
217ExQueryWnfStateData
218ExQueueWorkItem
219ExRaiseAccessViolation
220ExRaiseDatatypeMisalignment
221ExRaiseException
222ExRaiseHardError
223ExRaiseStatus
224ExReInitializeRundownProtection
225ExReInitializeRundownProtectionCacheAware
226ExRealTimeIsUniversal
227ExRegisterBootDevice
228ExRegisterCallback
229ExRegisterExtension
230ExReinitializeResourceLite
231ExReleaseCacheAwarePushLockExclusive
232ExReleaseCacheAwarePushLockExclusiveEx
233ExReleaseCacheAwarePushLockSharedEx
234ExReleaseFastMutex
235ExReleaseFastMutexUnsafe
236ExReleaseFastMutexUnsafeAndLeaveCriticalRegion
237ExReleasePushLockEx
238ExReleasePushLockExclusiveEx
239ExReleasePushLockSharedEx
240ExReleaseResourceAndLeaveCriticalRegion
241ExReleaseResourceAndLeavePriorityRegion
242ExReleaseResourceForThreadLite
243ExReleaseResourceLite
244ExReleaseRundownProtection
245ExReleaseRundownProtectionCacheAware
246ExReleaseRundownProtectionCacheAwareEx
247ExReleaseRundownProtectionEx
248ExReleaseSpinLockExclusive
249ExReleaseSpinLockExclusiveFromDpcLevel
250ExReleaseSpinLockShared
251ExReleaseSpinLockSharedFromDpcLevel
252ExRundownCompleted
253ExRundownCompletedCacheAware
254ExSemaphoreObjectType DATA
255ExSetFirmwareEnvironmentVariable
256ExSetLicenseTamperState
257ExSetResourceOwnerPointer
258ExSetResourceOwnerPointerEx
259ExSetTimer
260ExSetTimerResolution
261ExSizeOfRundownProtectionCacheAware
262ExSubscribeWnfStateChange
263ExSystemExceptionFilter
264ExSystemTimeToLocalTime
265ExTimedWaitForUnblockPushLock
266ExTryAcquirePushLockExclusiveEx
267ExTryAcquirePushLockSharedEx
268ExTryConvertPushLockSharedToExclusiveEx
269ExTryConvertSharedSpinLockExclusive
270ExTryQueueWorkItem
271ExTryToAcquireFastMutex
272ExTryToAcquireResourceExclusiveLite
273ExUnblockOnAddressPushLockEx
274ExUnblockPushLockEx
275ExUnregisterCallback
276ExUnregisterExtension
277ExUnsubscribeWnfStateChange
278ExUuidCreate
279ExVerifySuite
280ExWaitForRundownProtectionRelease
281ExWaitForRundownProtectionReleaseCacheAware
282ExWaitForUnblockPushLock
283ExWindowStationObjectType DATA
284ExfAcquirePushLockExclusive
285ExfAcquirePushLockShared
286ExfReleasePushLock
287ExfReleasePushLockExclusive
288ExfReleasePushLockShared
289ExfTryAcquirePushLockShared
290ExfTryToWakePushLock
291ExfUnblockPushLock
292ExpInterlockedFlushSList
293ExpInterlockedPopEntrySList
294ExpInterlockedPushEntrySList
295FirstEntrySList
296FsRtlAcknowledgeEcp
297FsRtlAcquireEofLock
298FsRtlAcquireFileExclusive
299FsRtlAcquireHeaderMutex
300FsRtlAddBaseMcbEntry
301FsRtlAddBaseMcbEntryEx
302FsRtlAddLargeMcbEntry
303FsRtlAddMcbEntry
304FsRtlAddToTunnelCache
305FsRtlAllocateExtraCreateParameter
306FsRtlAllocateExtraCreateParameterFromLookasideList
307FsRtlAllocateExtraCreateParameterList
308FsRtlAllocateFileLock
309FsRtlAllocatePool
310FsRtlAllocatePoolWithQuota
311FsRtlAllocatePoolWithQuotaTag
312FsRtlAllocatePoolWithTag
313FsRtlAllocateResource
314FsRtlAreNamesEqual
315FsRtlAreThereCurrentOrInProgressFileLocks
316FsRtlAreThereWaitingFileLocks
317FsRtlAreVolumeStartupApplicationsComplete
318FsRtlBalanceReads
319FsRtlCancellableWaitForMultipleObjects
320FsRtlCancellableWaitForSingleObject
321FsRtlChangeBackingFileObject
322FsRtlCheckLockForOplockRequest
323FsRtlCheckLockForReadAccess
324FsRtlCheckLockForWriteAccess
325FsRtlCheckOplock
326FsRtlCheckOplockEx
327FsRtlCheckUpperOplock
328FsRtlCopyRead
329FsRtlCopyWrite
330FsRtlCreateSectionForDataScan
331FsRtlCurrentBatchOplock
332FsRtlCurrentOplock
333FsRtlCurrentOplockH
334FsRtlDeleteExtraCreateParameterLookasideList
335FsRtlDeleteKeyFromTunnelCache
336FsRtlDeleteTunnelCache
337FsRtlDeregisterUncProvider
338FsRtlDismountComplete
339FsRtlDissectDbcs
340FsRtlDissectName
341FsRtlDoesDbcsContainWildCards
342FsRtlDoesNameContainWildCards
343FsRtlFastCheckLockForRead
344FsRtlFastCheckLockForWrite
345FsRtlFastUnlockAll
346FsRtlFastUnlockAllByKey
347FsRtlFastUnlockSingle
348FsRtlFindExtraCreateParameter
349FsRtlFindInTunnelCache
350FsRtlFreeExtraCreateParameter
351FsRtlFreeExtraCreateParameterList
352FsRtlFreeFileLock
353FsRtlGetEcpListFromIrp
354FsRtlGetFileNameInformation
355FsRtlGetFileSize
356FsRtlGetIoAtEof
357FsRtlGetNextBaseMcbEntry
358FsRtlGetNextExtraCreateParameter
359FsRtlGetNextFileLock
360FsRtlGetNextLargeMcbEntry
361FsRtlGetNextMcbEntry
362FsRtlGetSectorSizeInformation
363FsRtlGetSupportedFeatures
364FsRtlGetVirtualDiskNestingLevel
365FsRtlHeatInit
366FsRtlHeatLogIo
367FsRtlHeatLogTierMove
368FsRtlHeatUninit
369FsRtlIncrementCcFastMdlReadWait
370FsRtlIncrementCcFastReadNoWait
371FsRtlIncrementCcFastReadNotPossible
372FsRtlIncrementCcFastReadResourceMiss
373FsRtlIncrementCcFastReadWait
374FsRtlInitExtraCreateParameterLookasideList
375FsRtlInitializeBaseMcb
376FsRtlInitializeBaseMcbEx
377FsRtlInitializeEofLock
378FsRtlInitializeExtraCreateParameter
379FsRtlInitializeExtraCreateParameterList
380FsRtlInitializeFileLock
381FsRtlInitializeLargeMcb
382FsRtlInitializeMcb
383FsRtlInitializeOplock
384FsRtlInitializeTunnelCache
385FsRtlInsertExtraCreateParameter
386FsRtlInsertPerFileContext
387FsRtlInsertPerFileObjectContext
388FsRtlInsertPerStreamContext
389FsRtlInsertReservedPerFileContext
390FsRtlInsertReservedPerStreamContext
391FsRtlIsDbcsInExpression
392FsRtlIsEcpAcknowledged
393FsRtlIsEcpFromUserMode
394FsRtlIsFatDbcsLegal
395FsRtlIsHpfsDbcsLegal
396FsRtlIsNameInExpression
397FsRtlIsNtstatusExpected
398FsRtlIsPagingFile
399FsRtlIsSystemPagingFile
400FsRtlIsTotalDeviceFailure
401FsRtlIssueDeviceIoControl
402FsRtlKernelFsControlFile
403FsRtlLegalAnsiCharacterArray DATA
404FsRtlLogCcFlushError
405FsRtlLookupBaseMcbEntry
406FsRtlLookupLargeMcbEntry
407FsRtlLookupLastBaseMcbEntry
408FsRtlLookupLastBaseMcbEntryAndIndex
409FsRtlLookupLastLargeMcbEntry
410FsRtlLookupLastLargeMcbEntryAndIndex
411FsRtlLookupLastMcbEntry
412FsRtlLookupMcbEntry
413FsRtlLookupPerFileContext
414FsRtlLookupPerFileObjectContext
415FsRtlLookupPerStreamContextInternal
416FsRtlLookupReservedPerFileContext
417FsRtlLookupReservedPerStreamContext
418FsRtlMdlRead
419FsRtlMdlReadComplete
420FsRtlMdlReadCompleteDev
421FsRtlMdlReadDev
422FsRtlMdlReadEx
423FsRtlMdlWriteComplete
424FsRtlMdlWriteCompleteDev
425FsRtlMupGetProviderIdFromName
426FsRtlMupGetProviderInfoFromFileObject
427FsRtlNormalizeNtstatus
428FsRtlNotifyChangeDirectory
429FsRtlNotifyCleanup
430FsRtlNotifyCleanupAll
431FsRtlNotifyFilterChangeDirectory
432FsRtlNotifyFilterReportChange
433FsRtlNotifyFullChangeDirectory
434FsRtlNotifyFullReportChange
435FsRtlNotifyInitializeSync
436FsRtlNotifyReportChange
437FsRtlNotifyUninitializeSync
438FsRtlNotifyVolumeEvent
439FsRtlNotifyVolumeEventEx
440FsRtlNumberOfRunsInBaseMcb
441FsRtlNumberOfRunsInLargeMcb
442FsRtlNumberOfRunsInMcb
443FsRtlOplockBreakH
444FsRtlOplockBreakToNone
445FsRtlOplockBreakToNoneEx
446FsRtlOplockFsctrl
447FsRtlOplockFsctrlEx
448FsRtlOplockIsFastIoPossible
449FsRtlOplockIsSharedRequest
450FsRtlOplockKeysEqual
451FsRtlPostPagingFileStackOverflow
452FsRtlPostStackOverflow
453FsRtlPrepareMdlWrite
454FsRtlPrepareMdlWriteDev
455FsRtlPrepareMdlWriteEx
456FsRtlPrepareToReuseEcp
457FsRtlPrivateLock
458FsRtlProcessFileLock
459FsRtlQueryCachedVdl
460FsRtlQueryKernelEaFile
461FsRtlQueryMaximumVirtualDiskNestingLevel
462FsRtlRegisterFileSystemFilterCallbacks
463FsRtlRegisterFltMgrCalls
464FsRtlRegisterMupCalls
465FsRtlRegisterUncProvider
466FsRtlRegisterUncProviderEx
467FsRtlReleaseEofLock
468FsRtlReleaseFile
469FsRtlReleaseFileNameInformation
470FsRtlReleaseHeaderMutex
471FsRtlRemoveBaseMcbEntry
472FsRtlRemoveDotsFromPath
473FsRtlRemoveExtraCreateParameter
474FsRtlRemoveLargeMcbEntry
475FsRtlRemoveMcbEntry
476FsRtlRemovePerFileContext
477FsRtlRemovePerFileObjectContext
478FsRtlRemovePerStreamContext
479FsRtlRemoveReservedPerFileContext
480FsRtlRemoveReservedPerStreamContext
481FsRtlResetBaseMcb
482FsRtlResetLargeMcb
483FsRtlSendModernAppTermination
484FsRtlSetEcpListIntoIrp
485FsRtlSetKernelEaFile
486FsRtlSplitBaseMcb
487FsRtlSplitLargeMcb
488FsRtlSyncVolumes
489FsRtlTeardownPerFileContexts
490FsRtlTeardownPerStreamContexts
491FsRtlTruncateBaseMcb
492FsRtlTruncateLargeMcb
493FsRtlTruncateMcb
494FsRtlTryToAcquireHeaderMutex
495FsRtlUninitializeBaseMcb
496FsRtlUninitializeFileLock
497FsRtlUninitializeLargeMcb
498FsRtlUninitializeMcb
499FsRtlUninitializeOplock
500FsRtlUpdateDiskCounters
501FsRtlUpperOplockFsctrl
502FsRtlValidateReparsePointBuffer
503HalDispatchTable DATA
504HalExamineMBR
505HalFlushIoBuffers
506HalPrivateDispatchTable DATA
507HeadlessDispatch
508HvlGetLpIndexFromApicId
509HvlQueryActiveHypervisorProcessorCount
510HvlQueryActiveProcessors
511HvlQueryConnection
512HvlQueryHypervisorProcessorNodeNumber
513HvlQueryNumaDistance
514HvlQueryProcessorTopology
515HvlQueryProcessorTopologyCount
516HvlQueryProcessorTopologyHighestId
517HvlRegisterInterruptCallback
518HvlRegisterWheaErrorNotification
519HvlUnregisterInterruptCallback
520HvlUnregisterWheaErrorNotification
521InbvAcquireDisplayOwnership
522InbvCheckDisplayOwnership
523InbvDisplayString
524InbvEnableBootDriver
525InbvEnableDisplayString
526InbvInstallDisplayStringFilter
527InbvIsBootDriverInstalled
528InbvNotifyDisplayOwnershipChange
529InbvNotifyDisplayOwnershipLost
530InbvResetDisplay
531InbvSetScrollRegion
532InbvSetTextColor
533InbvSolidColorFill
534InitSafeBootMode DATA
535InitializeSListHead
536InterlockedPushListSList
537IoAcquireCancelSpinLock
538IoAcquireRemoveLockEx
539IoAcquireVpbSpinLock
540IoAdapterObjectType DATA
541IoAdjustStackSizeForRedirection
542IoAllocateAdapterChannel
543IoAllocateController
544IoAllocateDriverObjectExtension
545IoAllocateErrorLogEntry
546IoAllocateIrp
547IoAllocateMdl
548IoAllocateMiniCompletionPacket
549IoAllocateSfioStreamIdentifier
550IoAllocateWorkItem
551IoApplyPriorityInfoThread
552IoAssignResources
553IoAttachDevice
554IoAttachDeviceByPointer
555IoAttachDeviceToDeviceStack
556IoAttachDeviceToDeviceStackSafe
557IoBoostThreadIo
558IoBuildAsynchronousFsdRequest
559IoBuildDeviceIoControlRequest
560IoBuildPartialMdl
561IoBuildSynchronousFsdRequest
562IoCallDriver
563IoCancelFileOpen
564IoCancelIrp
565IoCheckDesiredAccess
566IoCheckEaBufferValidity
567IoCheckFunctionAccess
568IoCheckQuerySetFileInformation
569IoCheckQuerySetVolumeInformation
570IoCheckQuotaBufferValidity
571IoCheckShareAccess
572IoCheckShareAccessEx
573IoClearActivityIdThread
574IoClearDependency
575IoClearIrpExtraCreateParameter
576IoCompleteRequest
577IoCompletionObjectType DATA
578IoConnectInterrupt
579IoConnectInterruptEx
580IoConvertFileHandleToKernelHandle
581IoCopyDeviceObjectHint
582IoCreateArcName
583IoCreateController
584IoCreateDevice
585IoCreateDisk
586IoCreateDriver
587IoCreateFile
588IoCreateFileEx
589IoCreateFileSpecifyDeviceObjectHint
590IoCreateNotificationEvent
591IoCreateStreamFileObject
592IoCreateStreamFileObjectEx
593IoCreateStreamFileObjectEx2
594IoCreateStreamFileObjectLite
595IoCreateSymbolicLink
596IoCreateSynchronizationEvent
597IoCreateSystemThread
598IoCreateUnprotectedSymbolicLink
599IoCsqInitialize
600IoCsqInitializeEx
601IoCsqInsertIrp
602IoCsqInsertIrpEx
603IoCsqRemoveIrp
604IoCsqRemoveNextIrp
605IoDecrementKeepAliveCount
606IoDeleteAllDependencyRelations
607IoDeleteController
608IoDeleteDevice
609IoDeleteDriver
610IoDeleteSymbolicLink
611IoDetachDevice
612IoDeviceHandlerObjectSize DATA
613IoDeviceHandlerObjectType DATA
614IoDeviceObjectType DATA
615IoDisconnectInterrupt
616IoDisconnectInterruptEx
617IoDriverObjectType DATA
618IoDuplicateDependency
619IoEnqueueIrp
620IoEnumerateDeviceObjectList
621IoEnumerateRegisteredFiltersList
622IoFastQueryNetworkAttributes
623IoFileObjectType DATA
624IoForwardAndCatchIrp
625IoForwardIrpSynchronously
626IoFreeController
627IoFreeErrorLogEntry
628IoFreeIrp
629IoFreeMdl
630IoFreeMiniCompletionPacket
631IoFreeSfioStreamIdentifier
632IoFreeWorkItem
633IoGetActivityIdIrp
634IoGetActivityIdThread
635IoGetAffinityInterrupt
636IoGetAttachedDevice
637IoGetAttachedDeviceReference
638IoGetBaseFileSystemDeviceObject
639IoGetBootDiskInformation
640IoGetBootDiskInformationLite
641IoGetConfigurationInformation
642IoGetContainerInformation
643IoGetCurrentProcess
644IoGetDeviceAttachmentBaseRef
645IoGetDeviceInterfaceAlias
646IoGetDeviceInterfacePropertyData
647IoGetDeviceInterfaces
648IoGetDeviceNumaNode
649IoGetDeviceObjectPointer
650IoGetDeviceProperty
651IoGetDevicePropertyData
652IoGetDeviceToVerify
653IoGetDiskDeviceObject
654IoGetDmaAdapter
655IoGetDriverObjectExtension
656IoGetFileObjectGenericMapping
657IoGetGenericIrpExtension
658IoGetInitialStack
659IoGetInitiatorProcess
660IoGetIoPriorityHint
661IoGetIrpExtraCreateParameter
662IoGetLowerDeviceObject
663IoGetOplockKeyContext
664IoGetOplockKeyContextEx
665IoGetPagingIoPriority
666IoGetRelatedDeviceObject
667IoGetRequestorProcess
668IoGetRequestorProcessId
669IoGetRequestorSessionId
670IoGetSfioStreamIdentifier
671IoGetStackLimits
672IoGetSymlinkSupportInformation
673IoGetTopLevelIrp
674IoGetTransactionParameterBlock
675IoIncrementKeepAliveCount
676IoInitializeIrp
677IoInitializeMiniCompletionPacket
678IoInitializeRemoveLockEx
679IoInitializeWorkItem
680IoInvalidateDeviceRelations
681IoInvalidateDeviceState
682IoIsActivityTracingEnabled
683IoIsFileObjectIgnoringSharing
684IoIsFileOriginRemote
685IoIsOperationSynchronous
686IoIsSystemThread
687IoIsValidIrpStatus
688IoIsWdmVersionAvailable
689IoMakeAssociatedIrp
690IoOpenDeviceInterfaceRegistryKey
691IoOpenDeviceRegistryKey
692IoPageRead
693IoPropagateActivityIdToThread
694IoPropagateIrpExtension
695IoQueryDeviceDescription
696IoQueryFileDosDeviceName
697IoQueryFileInformation
698IoQueryFullDriverPath
699IoQueryVolumeInformation
700IoQueueThreadIrp
701IoQueueWorkItem
702IoQueueWorkItemEx
703IoQueueWorkItemToNode
704IoRaiseHardError
705IoRaiseInformationalHardError
706IoReadDiskSignature
707IoReadOperationCount DATA
708IoReadPartitionTable
709IoReadPartitionTableEx
710IoReadTransferCount DATA
711IoRegisterBootDriverCallback
712IoRegisterBootDriverReinitialization
713IoRegisterContainerNotification
714IoRegisterDeviceInterface
715IoRegisterDriverReinitialization
716IoRegisterFileSystem
717IoRegisterFsRegistrationChange
718IoRegisterFsRegistrationChangeMountAware
719IoRegisterIoTracking
720IoRegisterLastChanceShutdownNotification
721IoRegisterPlugPlayNotification
722IoRegisterPriorityCallback
723IoRegisterShutdownNotification
724IoReleaseCancelSpinLock
725IoReleaseRemoveLockAndWaitEx
726IoReleaseRemoveLockEx
727IoReleaseVpbSpinLock
728IoRemoveShareAccess
729IoReplaceFileObjectName
730IoReplacePartitionUnit
731IoReportDetectedDevice
732IoReportHalResourceUsage
733IoReportInterruptActive
734IoReportInterruptInactive
735IoReportResourceForDetection
736IoReportResourceUsage
737IoReportRootDevice
738IoReportTargetDeviceChange
739IoReportTargetDeviceChangeAsynchronous
740IoRequestDeviceEject
741IoRequestDeviceEjectEx
742IoReserveDependency
743IoResolveDependency
744IoRetrievePriorityInfo
745IoReuseIrp
746IoSetActivityIdIrp
747IoSetActivityIdThread
748IoSetCompletionRoutineEx
749IoSetDependency
750IoSetDeviceInterfacePropertyData
751IoSetDeviceInterfaceState
752IoSetDevicePropertyData
753IoSetDeviceToVerify
754IoSetFileObjectIgnoreSharing
755IoSetFileOrigin
756IoSetGenericIrpExtension
757IoSetHardErrorOrVerifyDevice
758IoSetInformation
759IoSetIoCompletion
760IoSetIoCompletionEx
761IoSetIoPriorityHint
762IoSetIoPriorityHintIntoFileObject
763IoSetIoPriorityHintIntoThread
764IoSetIrpExtraCreateParameter
765IoSetMasterIrpStatus
766IoSetPartitionInformation
767IoSetPartitionInformationEx
768IoSetShareAccess
769IoSetShareAccessEx
770IoSetStartIoAttributes
771IoSetSystemPartition
772IoSetThreadHardErrorMode
773IoSetTopLevelIrp
774IoSizeofGenericIrpExtension
775IoSizeofWorkItem
776IoStartNextPacket
777IoStartNextPacketByKey
778IoStartPacket
779IoStatisticsLock DATA
780IoSynchronousCallDriver
781IoSynchronousInvalidateDeviceRelations
782IoSynchronousPageWrite
783IoTestDependency
784IoThreadToProcess
785IoTransferActivityId
786IoTranslateBusAddress
787IoTryQueueWorkItem
788IoUninitializeWorkItem
789IoUnregisterBootDriverCallback
790IoUnregisterContainerNotification
791IoUnregisterFileSystem
792IoUnregisterFsRegistrationChange
793IoUnregisterIoTracking
794IoUnregisterPlugPlayNotification
795IoUnregisterPlugPlayNotificationEx
796IoUnregisterPriorityCallback
797IoUnregisterShutdownNotification
798IoUpdateShareAccess
799IoValidateDeviceIoControlAccess
800IoVerifyPartitionTable
801IoVerifyVolume
802IoVolumeDeviceToDosName
803IoVolumeDeviceToGuid
804IoVolumeDeviceToGuidPath
805IoWMIAllocateInstanceIds
806IoWMIDeviceObjectToInstanceName
807IoWMIExecuteMethod
808IoWMIHandleToInstanceName
809IoWMIOpenBlock
810IoWMIQueryAllData
811IoWMIQueryAllDataMultiple
812IoWMIQuerySingleInstance
813IoWMIQuerySingleInstanceMultiple
814IoWMIRegistrationControl
815IoWMISetNotificationCallback
816IoWMISetSingleInstance
817IoWMISetSingleItem
818IoWMISuggestInstanceName
819IoWMIWriteEvent
820IoWithinStackLimits
821IoWriteErrorLogEntry
822IoWriteOperationCount DATA
823IoWritePartitionTable
824IoWritePartitionTableEx
825IoWriteTransferCount DATA
826IofCallDriver
827IofCompleteRequest
828KdAcquireDebuggerLock
829KdChangeOption
830KdDebuggerEnabled DATA
831KdDebuggerNotPresent DATA
832KdDeregisterPowerHandler
833KdDisableDebugger
834KdEnableDebugger
835KdEnteredDebugger DATA
836KdLogDbgPrint
837KdPollBreakIn
838KdPowerTransition
839KdRefreshDebuggerNotPresent
840KdRegisterPowerHandler
841KdReleaseDebuggerLock
842KdSystemDebugControl
843KeAcquireGuardedMutex
844KeAcquireGuardedMutexUnsafe
845KeAcquireInStackQueuedSpinLock
846KeAcquireInStackQueuedSpinLockAtDpcLevel
847KeAcquireInStackQueuedSpinLockForDpc
848KeAcquireInterruptSpinLock
849KeAcquireQueuedSpinLock
850KeAcquireSpinLockAtDpcLevel
851KeAcquireSpinLockForDpc
852KeAcquireSpinLockRaiseToDpc
853KeAcquireSpinLockRaiseToSynch
854KeAddGroupAffinityEx
855KeAddProcessorAffinityEx
856KeAddProcessorGroupAffinity
857KeAddSystemServiceTable
858KeAlertThread
859KeAllocateCalloutStack
860KeAllocateCalloutStackEx
861KeAndAffinityEx
862KeAndGroupAffinityEx
863KeAreAllApcsDisabled
864KeAreApcsDisabled
865KeAttachProcess
866KeBugCheck
867KeBugCheckEx
868KeCancelTimer
869KeCapturePersistentThreadState
870KeCheckProcessorAffinityEx
871KeCheckProcessorGroupAffinity
872KeClearEvent
873KeClockInterruptNotify
874KeClockTimerPowerChange
875KeComplementAffinityEx
876KeCopyAffinityEx
877KeCountSetBitsAffinityEx
878KeCountSetBitsGroupAffinity
879KeDelayExecutionThread
880KeDeregisterBugCheckCallback
881KeDeregisterBugCheckReasonCallback
882KeDeregisterNmiCallback
883KeDeregisterProcessorChangeCallback
884KeDetachProcess
885KeDispatchSecondaryInterrupt
886KeEnterCriticalRegion
887KeEnterGuardedRegion
888KeEnterKernelDebugger
889KeEnumerateNextProcessor
890KeExpandKernelStackAndCallout
891KeExpandKernelStackAndCalloutEx
892KeFindConfigurationEntry
893KeFindConfigurationNextEntry
894KeFindFirstSetLeftAffinityEx
895KeFindFirstSetLeftGroupAffinity
896KeFindFirstSetRightAffinityEx
897KeFindFirstSetRightGroupAffinity
898KeFirstGroupAffinityEx
899KeFlushEntireTb
900KeFlushIoBuffers
901KeFlushIoRectangle
902KeFlushQueuedDpcs
903KeFreeCalloutStack
904KeGenericCallDpc
905KeGetClockOwner
906KeGetClockTimerResolution
907KeGetCurrentNodeNumber
908KeGetCurrentProcessorNumberEx
909KeGetCurrentThread
910KeGetNextClockTickDuration
911KeGetProcessorIndexFromNumber
912KeGetProcessorNumberFromIndex
913KeGetRecommendedSharedDataAlignment
914KeHwPolicyLocateResource
915KeInitializeAffinityEx
916KeInitializeApc
917KeInitializeCrashDumpHeader
918KeInitializeDeviceQueue
919KeInitializeDpc
920KeInitializeEnumerationContext
921KeInitializeEnumerationContextFromGroup
922KeInitializeEvent
923KeInitializeGuardedMutex
924KeInitializeInterrupt
925KeInitializeMutant
926KeInitializeMutex
927KeInitializeQueue
928KeInitializeSecondaryInterruptServices
929KeInitializeSemaphore
930KeInitializeSpinLock
931KeInitializeThreadedDpc
932KeInitializeTimer
933KeInitializeTimerEx
934KeInsertByKeyDeviceQueue
935KeInsertDeviceQueue
936KeInsertHeadQueue
937KeInsertQueue
938KeInsertQueueApc
939KeInsertQueueDpc
940KeInterlockedClearProcessorAffinityEx
941KeInterlockedSetProcessorAffinityEx
942KeInvalidateAllCaches
943KeInvalidateRangeAllCaches
944KeIpiGenericCall
945KeIsAttachedProcess
946KeIsEmptyAffinityEx
947KeIsEqualAffinityEx
948KeIsExecutingDpc
949KeIsSingleGroupAffinityEx
950KeIsSubsetAffinityEx
951KeIsWaitListEmpty
952KeLeaveCriticalRegion
953KeLeaveGuardedRegion
954KeLoaderBlock DATA
955KeNumberProcessors DATA
956KeOrAffinityEx
957KeProcessorGroupAffinity
958KeProfileInterruptWithSource
959KePulseEvent
960KeQueryActiveGroupCount
961KeQueryActiveProcessorAffinity
962KeQueryActiveProcessorCount
963KeQueryActiveProcessorCountEx
964KeQueryActiveProcessors
965KeQueryDpcWatchdogInformation
966KeQueryEffectivePriorityThread
967KeQueryGroupAffinity
968KeQueryGroupAffinityEx
969KeQueryHardwareCounterConfiguration
970KeQueryHighestNodeNumber
971KeQueryInterruptTime
972KeQueryInterruptTimePrecise
973KeQueryLogicalProcessorRelationship
974KeQueryMaximumGroupCount
975KeQueryMaximumProcessorCount
976KeQueryMaximumProcessorCountEx
977KeQueryNodeActiveAffinity
978KeQueryNodeMaximumProcessorCount
979KeQueryPrcbAddress
980KeQueryPriorityThread
981KeQueryRuntimeThread
982KeQuerySystemTime
983KeQuerySystemTimePrecise
984KeQueryTickCount
985KeQueryTimeIncrement
986KeQueryTotalCycleTimeThread
987KeQueryUnbiasedInterruptTime
988KeRaiseUserException
989KeReadStateEvent
990KeReadStateMutant
991KeReadStateMutex
992KeReadStateQueue
993KeReadStateSemaphore
994KeReadStateTimer
995KeRegisterBugCheckCallback
996KeRegisterBugCheckReasonCallback
997KeRegisterNmiCallback
998KeRegisterProcessorChangeCallback
999KeReleaseGuardedMutex
1000KeReleaseGuardedMutexUnsafe
1001KeReleaseInStackQueuedSpinLock
1002KeReleaseInStackQueuedSpinLockForDpc
1003KeReleaseInStackQueuedSpinLockFromDpcLevel
1004KeReleaseInterruptSpinLock
1005KeReleaseMutant
1006KeReleaseMutex
1007KeReleaseQueuedSpinLock
1008KeReleaseSemaphore
1009KeReleaseSpinLock
1010KeReleaseSpinLockForDpc
1011KeReleaseSpinLockFromDpcLevel
1012KeRemoveByKeyDeviceQueue
1013KeRemoveByKeyDeviceQueueIfBusy
1014KeRemoveDeviceQueue
1015KeRemoveEntryDeviceQueue
1016KeRemoveGroupAffinityEx
1017KeRemoveProcessorAffinityEx
1018KeRemoveProcessorGroupAffinity
1019KeRemoveQueue
1020KeRemoveQueueDpc
1021KeRemoveQueueDpcEx
1022KeRemoveQueueEx
1023KeRemoveSystemServiceTable
1024KeResetEvent
1025KeRestoreExtendedProcessorState
1026KeRestoreFloatingPointState
1027KeRestoreProcessorState
1028KeRevertToUserAffinityThread
1029KeRevertToUserAffinityThreadEx
1030KeRevertToUserGroupAffinityThread
1031KeRundownQueue
1032KeSaveExtendedProcessorState
1033KeSaveFloatingPointState
1034KeSaveStateForHibernate
1035KeSetActualBasePriorityThread
1036KeSetAffinityThread
1037KeSetBasePriorityThread
1038KeSetCoalescableTimer
1039KeSetEvent
1040KeSetEventBoostPriority
1041KeSetHardwareCounterConfiguration
1042KeSetIdealProcessorThread
1043KeSetImportanceDpc
1044KeSetKernelStackSwapEnable
1045KeSetPriorityThread
1046KeSetProfileIrql
1047KeSetSystemAffinityThread
1048KeSetSystemAffinityThreadEx
1049KeSetSystemGroupAffinityThread
1050KeSetTargetProcessorDpc
1051KeSetTargetProcessorDpcEx
1052KeSetTimer
1053KeSetTimerEx
1054KeSignalCallDpcDone
1055KeSignalCallDpcSynchronize
1056KeStackAttachProcess
1057KeStallWhileFrozen
1058KeStartDynamicProcessor
1059KeSubtractAffinityEx
1060KeSweepIcacheRange
1061KeSweepLocalCaches
1062KeSynchronizeExecution
1063KeTestAlertThread
1064KeTestSpinLock
1065KeTickCount DATA
1066KeTryToAcquireGuardedMutex
1067KeTryToAcquireQueuedSpinLock
1068KeTryToAcquireSpinLockAtDpcLevel
1069KeUnstackDetachProcess
1070KeUserModeCallback
1071KeWaitForMultipleObjects
1072KeWaitForMutexObject
1073KeWaitForSingleObject
1074KiBugCheckData DATA
1075KiCheckForKernelApcDelivery
1076KiConnectHalInterrupt
1077KiDeliverApc
1078KiDispatchInterrupt
1079KiIpiServiceRoutine
1080KiReplayInterrupt
1081KitLogFeatureUsage
1082KseQueryDeviceData
1083KseQueryDeviceDataList
1084KseQueryDeviceFlags
1085KseRegisterShim
1086KseRegisterShimEx
1087KseSetDeviceFlags
1088KseUnregisterShim
1089LdrAccessResource
1090LdrEnumResources
1091LdrFindResourceDirectory_U
1092LdrFindResourceEx_U
1093LdrFindResource_U
1094LdrResFindResource
1095LdrResFindResourceDirectory
1096LdrResSearchResource
1097LpcPortObjectType DATA
1098LpcReplyWaitReplyPort
1099LpcRequestPort
1100LpcRequestWaitReplyPort
1101LpcRequestWaitReplyPortEx
1102LpcSendWaitReceivePort
1103LsaCallAuthenticationPackage
1104LsaDeregisterLogonProcess
1105LsaFreeReturnBuffer
1106LsaLogonUser
1107LsaLookupAuthenticationPackage
1108LsaRegisterLogonProcess
1109Mm64BitPhysicalAddress DATA
1110MmAddPhysicalMemory
1111MmAddVerifierThunks
1112MmAdjustWorkingSetSize
1113MmAdvanceMdl
1114MmAllocateContiguousMemory
1115MmAllocateContiguousMemorySpecifyCache
1116MmAllocateContiguousMemorySpecifyCacheNode
1117MmAllocateContiguousNodeMemory
1118MmAllocateMappingAddress
1119MmAllocateMdlForIoSpace
1120MmAllocateNodePagesForMdlEx
1121MmAllocateNonCachedMemory
1122MmAllocatePagesForMdl
1123MmAllocatePagesForMdlEx
1124MmAreMdlPagesCached
1125MmBadPointer DATA
1126MmBuildMdlForNonPagedPool
1127MmCanFileBeTruncated
1128MmCommitSessionMappedView
1129MmCopyMemory
1130MmCopyVirtualMemory
1131MmCreateMdl
1132MmCreateMirror
1133MmCreateSection
1134MmDisableModifiedWriteOfSection
1135MmDoesFileHaveUserWritableReferences
1136MmFlushImageSection
1137MmForceSectionClosed
1138MmFreeContiguousMemory
1139MmFreeContiguousMemorySpecifyCache
1140MmFreeMappingAddress
1141MmFreeNonCachedMemory
1142MmFreePagesFromMdl
1143MmGetCacheAttribute
1144MmGetMaximumFileSectionSize
1145MmGetPhysicalAddress
1146MmGetPhysicalMemoryRanges
1147MmGetSystemRoutineAddress
1148MmGetVirtualForPhysical
1149MmGrowKernelStack
1150MmHighestUserAddress DATA
1151MmIsAddressValid
1152MmIsDriverSuspectForVerifier
1153MmIsDriverVerifying
1154MmIsDriverVerifyingByAddress
1155MmIsIoSpaceActive
1156MmIsNonPagedSystemAddressValid
1157MmIsRecursiveIoFault
1158MmIsThisAnNtAsSystem
1159MmIsVerifierEnabled
1160MmLockPagableDataSection
1161MmLockPagableImageSection
1162MmLockPagableSectionByHandle
1163MmMapIoSpace
1164MmMapLockedPages
1165MmMapLockedPagesSpecifyCache
1166MmMapLockedPagesWithReservedMapping
1167MmMapMemoryDumpMdl
1168MmMapUserAddressesToPage
1169MmMapViewInSessionSpace
1170MmMapViewInSessionSpaceEx
1171MmMapViewInSystemSpace
1172MmMapViewInSystemSpaceEx
1173MmMapViewOfSection
1174MmMarkPhysicalMemoryAsBad
1175MmMarkPhysicalMemoryAsGood
1176MmMdlPageContentsState
1177MmMdlPagesAreZero
1178MmPageEntireDriver
1179MmPrefetchPages
1180MmPrefetchVirtualAddresses
1181MmProbeAndLockPages
1182MmProbeAndLockProcessPages
1183MmProbeAndLockSelectedPages
1184MmProtectMdlSystemAddress
1185MmQuerySystemSize
1186MmRemovePhysicalMemory
1187MmResetDriverPaging
1188MmRotatePhysicalView
1189MmSectionObjectType DATA
1190MmSecureVirtualMemory
1191MmSetAddressRangeModified
1192MmSizeOfMdl
1193MmSystemRangeStart DATA
1194MmTrimAllSystemPagableMemory
1195MmUnlockPagableImageSection
1196MmUnlockPages
1197MmUnmapIoSpace
1198MmUnmapLockedPages
1199MmUnmapReservedMapping
1200MmUnmapViewInSessionSpace
1201MmUnmapViewInSystemSpace
1202MmUnmapViewOfSection
1203MmUnsecureVirtualMemory
1204MmUserProbeAddress DATA
1205NlsAnsiCodePage DATA
1206NlsLeadByteInfo DATA
1207NlsMbCodePageTag DATA
1208NlsMbOemCodePageTag DATA
1209NlsOemCodePage DATA
1210NlsOemLeadByteInfo DATA
1211NtAdjustPrivilegesToken
1212NtAllocateLocallyUniqueId
1213NtAllocateUuids
1214NtAllocateVirtualMemory
1215NtBuildGUID
1216NtBuildLab
1217NtBuildNumber
1218NtClose
1219NtCommitComplete
1220NtCommitEnlistment
1221NtCommitTransaction
1222NtConnectPort
1223NtCreateEnlistment
1224NtCreateEvent
1225NtCreateFile
1226NtCreateResourceManager
1227NtCreateSection
1228NtCreateTransaction
1229NtCreateTransactionManager
1230NtDeleteAtom
1231NtDeleteFile
1232NtDeviceIoControlFile
1233NtDuplicateObject
1234NtDuplicateToken
1235NtEnumerateTransactionObject
1236NtFindAtom
1237NtFreeVirtualMemory
1238NtFreezeTransactions
1239NtFsControlFile
1240NtGetEnvironmentVariableEx
1241NtGetNotificationResourceManager
1242NtGlobalFlag DATA
1243NtLockFile
1244NtMakePermanentObject
1245NtMapViewOfSection
1246NtNotifyChangeDirectoryFile
1247NtOpenEnlistment
1248NtOpenFile
1249NtOpenProcess
1250NtOpenProcessToken
1251NtOpenProcessTokenEx
1252NtOpenResourceManager
1253NtOpenThread
1254NtOpenThreadToken
1255NtOpenThreadTokenEx
1256NtOpenTransaction
1257NtOpenTransactionManager
1258NtPrePrepareComplete
1259NtPrePrepareEnlistment
1260NtPrepareComplete
1261NtPrepareEnlistment
1262NtPropagationComplete
1263NtPropagationFailed
1264NtQueryDirectoryFile
1265NtQueryEaFile
1266NtQueryEnvironmentVariableInfoEx
1267NtQueryInformationAtom
1268NtQueryInformationEnlistment
1269NtQueryInformationFile
1270NtQueryInformationProcess
1271NtQueryInformationResourceManager
1272NtQueryInformationThread
1273NtQueryInformationToken
1274NtQueryInformationTransaction
1275NtQueryInformationTransactionManager
1276NtQueryQuotaInformationFile
1277NtQuerySecurityAttributesToken
1278NtQuerySecurityObject
1279NtQuerySystemInformation
1280NtQuerySystemInformationEx
1281NtQueryVolumeInformationFile
1282NtReadFile
1283NtReadOnlyEnlistment
1284NtRecoverEnlistment
1285NtRecoverResourceManager
1286NtRecoverTransactionManager
1287NtRequestPort
1288NtRequestWaitReplyPort
1289NtRollbackComplete
1290NtRollbackEnlistment
1291NtRollbackTransaction
1292NtSetCachedSigningLevel
1293NtSetEaFile
1294NtSetEvent
1295NtSetInformationEnlistment
1296NtSetInformationFile
1297NtSetInformationProcess
1298NtSetInformationResourceManager
1299NtSetInformationThread
1300NtSetInformationToken
1301NtSetInformationTransaction
1302NtSetInformationVirtualMemory
1303NtSetQuotaInformationFile
1304NtSetSecurityObject
1305NtSetVolumeInformationFile
1306NtShutdownSystem
1307NtThawTransactions
1308NtTraceControl
1309NtTraceEvent
1310NtUnlockFile
1311NtVdmControl
1312NtWaitForSingleObject
1313NtWriteFile
1314ObAssignSecurity
1315ObCheckCreateObjectAccess
1316ObCheckObjectAccess
1317ObCloseHandle
1318ObCreateObject
1319ObCreateObjectType
1320ObDeleteCapturedInsertInfo
1321ObDereferenceObject
1322ObDereferenceObjectDeferDelete
1323ObDereferenceObjectDeferDeleteWithTag
1324ObDereferenceSecurityDescriptor
1325ObDuplicateObject
1326ObFindHandleForObject
1327ObGetFilterVersion
1328ObGetObjectSecurity
1329ObGetObjectType
1330ObInsertObject
1331ObIsDosDeviceLocallyMapped
1332ObIsKernelHandle
1333ObLogSecurityDescriptor
1334ObMakeTemporaryObject
1335ObOpenObjectByName
1336ObOpenObjectByPointer
1337ObOpenObjectByPointerWithTag
1338ObQueryNameInfo
1339ObQueryNameString
1340ObQueryObjectAuditingByHandle
1341ObReferenceObjectByHandle
1342ObReferenceObjectByHandleWithTag
1343ObReferenceObjectByName
1344ObReferenceObjectByPointer
1345ObReferenceObjectByPointerWithTag
1346ObReferenceObjectSafe
1347ObReferenceObjectSafeWithTag
1348ObReferenceSecurityDescriptor
1349ObRegisterCallbacks
1350ObReleaseObjectSecurity
1351ObSetHandleAttributes
1352ObSetSecurityDescriptorInfo
1353ObSetSecurityObjectByPointer
1354ObUnRegisterCallbacks
1355ObWaitForMultipleObjects
1356ObWaitForSingleObject
1357ObfDereferenceObject
1358ObfDereferenceObjectWithTag
1359ObfReferenceObject
1360ObfReferenceObjectWithTag
1361POGOBuffer DATA
1362PcwAddInstance
1363PcwCloseInstance
1364PcwCreateInstance
1365PcwRegister
1366PcwUnregister
1367PfFileInfoNotify
1368PfxFindPrefix
1369PfxInitialize
1370PfxInsertPrefix
1371PfxRemovePrefix
1372PoCallDriver
1373PoCancelDeviceNotify
1374PoClearPowerRequest
1375PoCreatePowerRequest
1376PoDeletePowerRequest
1377PoDisableSleepStates
1378PoEndDeviceBusy
1379PoFxActivateComponent
1380PoFxCompleteDevicePowerNotRequired
1381PoFxCompleteIdleCondition
1382PoFxCompleteIdleState
1383PoFxIdleComponent
1384PoFxNotifySurprisePowerOn
1385PoFxPowerControl
1386PoFxPowerOnCrashdumpDevice
1387PoFxProcessorNotification
1388PoFxRegisterCoreDevice
1389PoFxRegisterCrashdumpDevice
1390PoFxRegisterDevice
1391PoFxRegisterPlugin
1392PoFxRegisterPluginEx
1393PoFxRegisterPrimaryDevice
1394PoFxReportDevicePoweredOn
1395PoFxSetComponentLatency
1396PoFxSetComponentResidency
1397PoFxSetComponentWake
1398PoFxSetDeviceIdleTimeout
1399PoFxStartDevicePowerManagement
1400PoFxUnregisterDevice
1401PoGetProcessorIdleAccounting
1402PoGetSystemWake
1403PoInitiateProcessorWake
1404PoLatencySensitivityHint
1405PoNotifyVSyncChange
1406PoQueryWatchdogTime
1407PoQueueShutdownWorkItem
1408PoReenableSleepStates
1409PoRegisterCoalescingCallback
1410PoRegisterDeviceForIdleDetection
1411PoRegisterDeviceNotify
1412PoRegisterPowerSettingCallback
1413PoRegisterSystemState
1414PoRequestPowerIrp
1415PoRequestShutdownEvent
1416PoSetDeviceBusyEx
1417PoSetFixedWakeSource
1418PoSetHiberRange
1419PoSetPowerRequest
1420PoSetPowerState
1421PoSetSystemState
1422PoSetSystemWake
1423PoSetUserPresent
1424PoShutdownBugCheck
1425PoStartDeviceBusy
1426PoStartNextPowerIrp
1427PoUnregisterCoalescingCallback
1428PoUnregisterPowerSettingCallback
1429PoUnregisterSystemState
1430PoUserShutdownCancelled
1431PoUserShutdownInitiated
1432ProbeForRead
1433ProbeForWrite
1434PsAcquireProcessExitSynchronization
1435PsAssignImpersonationToken
1436PsChargePoolQuota
1437PsChargeProcessNonPagedPoolQuota
1438PsChargeProcessPagedPoolQuota
1439PsChargeProcessPoolQuota
1440PsChargeProcessWakeCounter
1441PsCreateSystemThread
1442PsCreateSystemThreadEx
1443PsDereferenceImpersonationToken
1444PsDereferenceKernelStack
1445PsDereferencePrimaryToken
1446PsDisableImpersonation
1447PsEnterPriorityRegion
1448PsEstablishWin32Callouts
1449PsGetContextThread
1450PsGetCurrentProcess
1451PsGetCurrentProcessId
1452PsGetCurrentProcessSessionId
1453PsGetCurrentProcessWin32Process
1454PsGetCurrentThread
1455PsGetCurrentThreadId
1456PsGetCurrentThreadPreviousMode
1457PsGetCurrentThreadProcess
1458PsGetCurrentThreadProcessId
1459PsGetCurrentThreadStackBase
1460PsGetCurrentThreadStackLimit
1461PsGetCurrentThreadTeb
1462PsGetCurrentThreadWin32Thread
1463PsGetCurrentThreadWin32ThreadAndEnterCriticalRegion
1464PsGetJobLock
1465PsGetJobSessionId
1466PsGetJobUIRestrictionsClass
1467PsGetProcessCommonJob
1468PsGetProcessCreateTimeQuadPart
1469PsGetProcessDebugPort
1470PsGetProcessExitProcessCalled
1471PsGetProcessExitStatus
1472PsGetProcessExitTime
1473PsGetProcessId
1474PsGetProcessImageFileName
1475PsGetProcessInheritedFromUniqueProcessId
1476PsGetProcessJob
1477PsGetProcessPeb
1478PsGetProcessPriorityClass
1479PsGetProcessProtection
1480PsGetProcessSectionBaseAddress
1481PsGetProcessSecurityPort
1482PsGetProcessSessionId
1483PsGetProcessSessionIdEx
1484PsGetProcessSignatureLevel
1485PsGetProcessWin32Process
1486PsGetProcessWin32WindowStation
1487PsGetThreadExitStatus
1488PsGetThreadFreezeCount
1489PsGetThreadHardErrorsAreDisabled
1490PsGetThreadId
1491PsGetThreadProcess
1492PsGetThreadProcessId
1493PsGetThreadSessionId
1494PsGetThreadTeb
1495PsGetThreadWin32Thread
1496PsGetVersion
1497PsImpersonateClient
1498PsInitialSystemProcess DATA
1499PsIsCurrentThreadPrefetching
1500PsIsDiskCountersEnabled
1501PsIsProcessBeingDebugged
1502PsIsProtectedProcess
1503PsIsProtectedProcessLight
1504PsIsSystemProcess
1505PsIsSystemThread
1506PsIsThreadImpersonating
1507PsIsThreadTerminating
1508PsJobType DATA
1509PsLeavePriorityRegion
1510PsLookupProcessByProcessId
1511PsLookupProcessThreadByCid
1512PsLookupThreadByThreadId
1513PsProcessType DATA
1514PsQueryProcessAttributesByToken
1515PsQueryProcessExceptionFlags
1516PsQueryTotalCycleTimeProcess
1517PsReferenceImpersonationToken
1518PsReferenceKernelStack
1519PsReferencePrimaryToken
1520PsReferenceProcessFilePointer
1521PsReleaseProcessExitSynchronization
1522PsReleaseProcessWakeCounter
1523PsRemoveCreateThreadNotifyRoutine
1524PsRemoveLoadImageNotifyRoutine
1525PsRestoreImpersonation
1526PsResumeProcess
1527PsReturnPoolQuota
1528PsReturnProcessNonPagedPoolQuota
1529PsReturnProcessPagedPoolQuota
1530PsRevertThreadToSelf
1531PsRevertToSelf
1532PsSetContextThread
1533PsSetCreateProcessNotifyRoutine
1534PsSetCreateProcessNotifyRoutineEx
1535PsSetCreateThreadNotifyRoutine
1536PsSetCurrentThreadPrefetching
1537PsSetLegoNotifyRoutine
1538PsSetLoadImageNotifyRoutine
1539PsSetProcessPriorityByClass
1540PsSetProcessPriorityClass
1541PsSetProcessSecurityPort
1542PsSetProcessWin32Process
1543PsSetProcessWindowStation
1544PsSetThreadHardErrorsAreDisabled
1545PsSetThreadWin32Thread
1546PsSuspendProcess
1547PsTerminateSystemThread
1548PsThreadType DATA
1549PsUILanguageComitted DATA
1550PsUpdateDiskCounters
1551PsWrapApcWow64Thread
1552ReadTimeStampCounter
1553RtlAbsoluteToSelfRelativeSD
1554RtlAddAccessAllowedAce
1555RtlAddAccessAllowedAceEx
1556RtlAddAce
1557RtlAddAtomToAtomTable
1558RtlAddAtomToAtomTableEx
1559RtlAddRange
1560RtlAddResourceAttributeAce
1561RtlAllocateHeap
1562RtlAnsiCharToUnicodeChar
1563RtlAnsiStringToUnicodeSize
1564RtlAnsiStringToUnicodeString
1565RtlAppendAsciizToString
1566RtlAppendStringToString
1567RtlAppendUnicodeStringToString
1568RtlAppendUnicodeToString
1569RtlAreAllAccessesGranted
1570RtlAreAnyAccessesGranted
1571RtlAreBitsClear
1572RtlAreBitsSet
1573RtlAssert
1574RtlAvlInsertNodeEx
1575RtlAvlRemoveNode
1576RtlCaptureContext
1577RtlCaptureStackBackTrace
1578RtlCharToInteger
1579RtlCheckPortableOperatingSystem
1580RtlCheckRegistryKey
1581RtlCheckTokenCapability
1582RtlCheckTokenMembership
1583RtlCheckTokenMembershipEx
1584RtlClearAllBits
1585RtlClearBit
1586RtlClearBits
1587RtlCmDecodeMemIoResource
1588RtlCmEncodeMemIoResource
1589RtlCompareAltitudes
1590RtlCompareMemory
1591RtlCompareMemoryUlong
1592RtlCompareString
1593RtlCompareUnicodeString
1594RtlCompareUnicodeStrings
1595RtlCompressBuffer
1596RtlCompressChunks
1597RtlComputeCrc32
1598RtlContractHashTable
1599RtlConvertSidToUnicodeString
1600RtlCopyBitMap
1601RtlCopyLuid
1602RtlCopyLuidAndAttributesArray
1603RtlCopyMemory
1604RtlCopyRangeList
1605RtlCopySid
1606RtlCopySidAndAttributesArray
1607RtlCopyString
1608RtlCopyUnicodeString
1609RtlCrc32
1610RtlCrc64
1611RtlCreateAcl
1612RtlCreateAtomTable
1613RtlCreateAtomTableEx
1614RtlCreateHashTable
1615RtlCreateHashTableEx
1616RtlCreateHeap
1617RtlCreateRegistryKey
1618RtlCreateSecurityDescriptor
1619RtlCreateSystemVolumeInformationFolder
1620RtlCreateUnicodeString
1621RtlCreateUserThread
1622RtlCultureNameToLCID
1623RtlCustomCPToUnicodeN
1624RtlDecompressBuffer
1625RtlDecompressBufferEx
1626RtlDecompressChunks
1627RtlDecompressFragment
1628RtlDelete
1629RtlDeleteAce
1630RtlDeleteAtomFromAtomTable
1631RtlDeleteElementGenericTable
1632RtlDeleteElementGenericTableAvl
1633RtlDeleteElementGenericTableAvlEx
1634RtlDeleteHashTable
1635RtlDeleteNoSplay
1636RtlDeleteOwnersRanges
1637RtlDeleteRange
1638RtlDeleteRegistryValue
1639RtlDescribeChunk
1640RtlDestroyAtomTable
1641RtlDestroyHeap
1642RtlDowncaseUnicodeChar
1643RtlDowncaseUnicodeString
1644RtlDuplicateUnicodeString
1645RtlEmptyAtomTable
1646RtlEndEnumerationHashTable
1647RtlEndWeakEnumerationHashTable
1648RtlEnumerateEntryHashTable
1649RtlEnumerateGenericTable
1650RtlEnumerateGenericTableAvl
1651RtlEnumerateGenericTableLikeADirectory
1652RtlEnumerateGenericTableWithoutSplaying
1653RtlEnumerateGenericTableWithoutSplayingAvl
1654RtlEqualLuid
1655RtlEqualSid
1656RtlEqualString
1657RtlEqualUnicodeString
1658RtlEqualWnfChangeStamps
1659RtlEthernetAddressToStringA
1660RtlEthernetAddressToStringW
1661RtlEthernetStringToAddressA
1662RtlEthernetStringToAddressW
1663RtlExpandHashTable
1664RtlExtendedMagicDivide
1665RtlExtractBitMap
1666RtlFillMemory
1667RtlFillMemoryUlong
1668RtlFillMemoryUlonglong
1669RtlFindAceByType
1670RtlFindClearBits
1671RtlFindClearBitsAndSet
1672RtlFindClearRuns
1673RtlFindClosestEncodableLength
1674RtlFindFirstRunClear
1675RtlFindLastBackwardRunClear
1676RtlFindLeastSignificantBit
1677RtlFindLongestRunClear
1678RtlFindMessage
1679RtlFindMostSignificantBit
1680RtlFindNextForwardRunClear
1681RtlFindRange
1682RtlFindSetBits
1683RtlFindSetBitsAndClear
1684RtlFindUnicodePrefix
1685RtlFormatCurrentUserKeyPath
1686RtlFormatMessage
1687RtlFreeAnsiString
1688RtlFreeHeap
1689RtlFreeOemString
1690RtlFreeRangeList
1691RtlFreeUnicodeString
1692RtlGUIDFromString
1693RtlGenerate8dot3Name
1694RtlGenerateClass5Guid
1695RtlGetAce
1696RtlGetAppContainerNamedObjectPath
1697RtlGetAppContainerParent
1698RtlGetAppContainerSidType
1699RtlGetCallersAddress
1700RtlGetCompressionWorkSpaceSize
1701RtlGetDaclSecurityDescriptor
1702RtlGetDefaultCodePage
1703RtlGetElementGenericTable
1704RtlGetElementGenericTableAvl
1705RtlGetEnabledExtendedFeatures
1706RtlGetFirstRange
1707RtlGetGroupSecurityDescriptor
1708RtlGetIntegerAtom
1709RtlGetLastRange
1710RtlGetNextEntryHashTable
1711RtlGetNextRange
1712RtlGetNtGlobalFlags
1713RtlGetOwnerSecurityDescriptor
1714RtlGetProductInfo
1715RtlGetSaclSecurityDescriptor
1716RtlGetSetBootStatusData
1717RtlGetThreadLangIdByIndex
1718RtlGetVersion
1719RtlHashUnicodeString
1720RtlIdnToAscii
1721RtlIdnToNameprepUnicode
1722RtlIdnToUnicode
1723RtlImageDirectoryEntryToData
1724RtlImageNtHeader
1725RtlImageNtHeaderEx
1726RtlInitAnsiString
1727RtlInitAnsiStringEx
1728RtlInitCodePageTable
1729RtlInitEnumerationHashTable
1730RtlInitString
1731RtlInitUnicodeString
1732RtlInitUnicodeStringEx
1733RtlInitWeakEnumerationHashTable
1734RtlInitializeBitMap
1735RtlInitializeGenericTable
1736RtlInitializeGenericTableAvl
1737RtlInitializeRangeList
1738RtlInitializeSid
1739RtlInitializeUnicodePrefix
1740RtlInsertElementGenericTable
1741RtlInsertElementGenericTableAvl
1742RtlInsertElementGenericTableFull
1743RtlInsertElementGenericTableFullAvl
1744RtlInsertEntryHashTable
1745RtlInsertUnicodePrefix
1746RtlInt64ToUnicodeString
1747RtlIntegerToChar
1748RtlIntegerToUnicode
1749RtlIntegerToUnicodeString
1750RtlInterlockedClearBitRun
1751RtlInterlockedSetBitRun
1752RtlInterlockedSetClearRun
1753RtlInvertRangeList
1754RtlInvertRangeListEx
1755RtlIoDecodeMemIoResource
1756RtlIoEncodeMemIoResource
1757RtlIpv4AddressToStringA
1758RtlIpv4AddressToStringExA
1759RtlIpv4AddressToStringExW
1760RtlIpv4AddressToStringW
1761RtlIpv4StringToAddressA
1762RtlIpv4StringToAddressExA
1763RtlIpv4StringToAddressExW
1764RtlIpv4StringToAddressW
1765RtlIpv6AddressToStringA
1766RtlIpv6AddressToStringExA
1767RtlIpv6AddressToStringExW
1768RtlIpv6AddressToStringW
1769RtlIpv6StringToAddressA
1770RtlIpv6StringToAddressExA
1771RtlIpv6StringToAddressExW
1772RtlIpv6StringToAddressW
1773RtlIsGenericTableEmpty
1774RtlIsGenericTableEmptyAvl
1775RtlIsNameLegalDOS8Dot3
1776RtlIsNormalizedString
1777RtlIsNtDdiVersionAvailable
1778RtlIsRangeAvailable
1779RtlIsServicePackVersionInstalled
1780RtlIsUntrustedObject
1781RtlIsValidOemCharacter
1782RtlLCIDToCultureName
1783RtlLengthRequiredSid
1784RtlLengthSecurityDescriptor
1785RtlLengthSid
1786RtlLoadString
1787RtlLocalTimeToSystemTime
1788RtlLockBootStatusData
1789RtlLookupAtomInAtomTable
1790RtlLookupElementGenericTable
1791RtlLookupElementGenericTableAvl
1792RtlLookupElementGenericTableFull
1793RtlLookupElementGenericTableFullAvl
1794RtlLookupEntryHashTable
1795RtlLookupFirstMatchingElementGenericTableAvl
1796RtlLookupFunctionEntry
1797RtlMapGenericMask
1798RtlMapSecurityErrorToNtStatus
1799RtlMergeRangeLists
1800RtlMoveMemory
1801RtlMultiByteToUnicodeN
1802RtlMultiByteToUnicodeSize
1803RtlNextUnicodePrefix
1804RtlNormalizeString
1805RtlNtStatusToDosError
1806RtlNtStatusToDosErrorNoTeb
1807RtlNumberGenericTableElements
1808RtlNumberGenericTableElementsAvl
1809RtlNumberOfClearBits
1810RtlNumberOfClearBitsInRange
1811RtlNumberOfSetBits
1812RtlNumberOfSetBitsInRange
1813RtlNumberOfSetBitsUlongPtr
1814RtlOemStringToCountedUnicodeString
1815RtlOemStringToUnicodeSize
1816RtlOemStringToUnicodeString
1817RtlOemToUnicodeN
1818RtlOpenCurrentUser
1819RtlOwnerAcesPresent
1820RtlPcToFileHeader
1821RtlPinAtomInAtomTable
1822RtlPrefetchMemoryNonTemporal
1823RtlPrefixString
1824RtlPrefixUnicodeString
1825RtlQueryAtomInAtomTable
1826RtlQueryDynamicTimeZoneInformation
1827RtlQueryElevationFlags
1828RtlQueryInformationAcl
1829RtlQueryModuleInformation
1830RtlQueryPackageIdentity
1831RtlQueryRegistryValues
1832RtlQueryRegistryValuesEx
1833RtlQueryTimeZoneInformation
1834RtlQueryValidationRunlevel
1835RtlRaiseException
1836RtlRandom
1837RtlRandomEx
1838RtlRbInsertNodeEx
1839RtlRbRemoveNode
1840RtlRealPredecessor
1841RtlRealSuccessor
1842RtlRemoveEntryHashTable
1843RtlRemoveUnicodePrefix
1844RtlReplaceSidInSd
1845RtlReserveChunk
1846RtlRestoreContext
1847RtlRunOnceBeginInitialize
1848RtlRunOnceComplete
1849RtlRunOnceExecuteOnce
1850RtlRunOnceInitialize
1851RtlSecondsSince1970ToTime
1852RtlSecondsSince1980ToTime
1853RtlSelfRelativeToAbsoluteSD
1854RtlSelfRelativeToAbsoluteSD2
1855RtlSetAllBits
1856RtlSetBit
1857RtlSetBits
1858RtlSetControlSecurityDescriptor
1859RtlSetDaclSecurityDescriptor
1860RtlSetDynamicTimeZoneInformation
1861RtlSetGroupSecurityDescriptor
1862RtlSetOwnerSecurityDescriptor
1863RtlSetPortableOperatingSystem
1864RtlSetSaclSecurityDescriptor
1865RtlSetTimeZoneInformation
1866RtlSidHashInitialize
1867RtlSidHashLookup
1868RtlSizeHeap
1869RtlSplay
1870RtlStringFromGUID
1871RtlSubAuthorityCountSid
1872RtlSubAuthoritySid
1873RtlSubtreePredecessor
1874RtlSubtreeSuccessor
1875RtlSystemTimeToLocalTime
1876RtlTestBit
1877RtlTimeFieldsToTime
1878RtlTimeToElapsedTimeFields
1879RtlTimeToSecondsSince1970
1880RtlTimeToSecondsSince1980
1881RtlTimeToTimeFields
1882RtlTraceDatabaseAdd
1883RtlTraceDatabaseCreate
1884RtlTraceDatabaseDestroy
1885RtlTraceDatabaseEnumerate
1886RtlTraceDatabaseFind
1887RtlTraceDatabaseLock
1888RtlTraceDatabaseUnlock
1889RtlTraceDatabaseValidate
1890RtlUTF8ToUnicodeN
1891RtlUlongByteSwap
1892RtlUlonglongByteSwap
1893RtlUnicodeStringToAnsiSize
1894RtlUnicodeStringToAnsiString
1895RtlUnicodeStringToCountedOemString
1896RtlUnicodeStringToInteger
1897RtlUnicodeStringToOemSize
1898RtlUnicodeStringToOemString
1899RtlUnicodeToCustomCPN
1900RtlUnicodeToMultiByteN
1901RtlUnicodeToMultiByteSize
1902RtlUnicodeToOemN
1903RtlUnicodeToUTF8N
1904RtlUnlockBootStatusData
1905RtlUnwind
1906RtlUnwindEx
1907RtlUpcaseUnicodeChar
1908RtlUpcaseUnicodeString
1909RtlUpcaseUnicodeStringToAnsiString
1910RtlUpcaseUnicodeStringToCountedOemString
1911RtlUpcaseUnicodeStringToOemString
1912RtlUpcaseUnicodeToCustomCPN
1913RtlUpcaseUnicodeToMultiByteN
1914RtlUpcaseUnicodeToOemN
1915RtlUpperChar
1916RtlUpperString
1917RtlUshortByteSwap
1918RtlValidRelativeSecurityDescriptor
1919RtlValidSecurityDescriptor
1920RtlValidSid
1921RtlValidateUnicodeString
1922RtlVerifyVersionInfo
1923RtlVirtualUnwind
1924RtlVolumeDeviceToDosName
1925RtlWalkFrameChain
1926RtlWeaklyEnumerateEntryHashTable
1927RtlWriteRegistryValue
1928RtlZeroHeap
1929RtlZeroMemory
1930RtlxAnsiStringToUnicodeSize
1931RtlxOemStringToUnicodeSize
1932RtlxUnicodeStringToAnsiSize
1933RtlxUnicodeStringToOemSize
1934SeAccessCheck
1935SeAccessCheckEx
1936SeAccessCheckFromState
1937SeAccessCheckFromStateEx
1938SeAccessCheckWithHint
1939SeAdjustAccessStateForTrustLabel
1940SeAppendPrivileges
1941SeAssignSecurity
1942SeAssignSecurityEx
1943SeAuditHardLinkCreation
1944SeAuditHardLinkCreationWithTransaction
1945SeAuditTransactionStateChange
1946SeAuditingAnyFileEventsWithContext
1947SeAuditingAnyFileEventsWithContextEx
1948SeAuditingFileEvents
1949SeAuditingFileEventsWithContext
1950SeAuditingFileEventsWithContextEx
1951SeAuditingFileOrGlobalEvents
1952SeAuditingHardLinkEvents
1953SeAuditingHardLinkEventsWithContext
1954SeAuditingWithTokenForSubcategory
1955SeCaptureSecurityDescriptor
1956SeCaptureSubjectContext
1957SeCaptureSubjectContextEx
1958SeCloseObjectAuditAlarm
1959SeCloseObjectAuditAlarmForNonObObject
1960SeComputeAutoInheritByObjectType
1961SeCreateAccessState
1962SeCreateAccessStateEx
1963SeCreateClientSecurity
1964SeCreateClientSecurityEx
1965SeCreateClientSecurityFromSubjectContext
1966SeCreateClientSecurityFromSubjectContextEx
1967SeDeassignSecurity
1968SeDeleteAccessState
1969SeDeleteObjectAuditAlarm
1970SeDeleteObjectAuditAlarmWithTransaction
1971SeExamineSacl
1972SeExports DATA
1973SeFilterToken
1974SeFreePrivileges
1975SeGetCachedSigningLevel
1976SeGetLinkedToken
1977SeGetLogonSessionToken
1978SeImpersonateClient
1979SeImpersonateClientEx
1980SeIsParentOfChildAppContainer
1981SeLocateProcessImageName
1982SeLockSubjectContext
1983SeMarkLogonSessionForTerminationNotification
1984SeOpenObjectAuditAlarm
1985SeOpenObjectAuditAlarmForNonObObject
1986SeOpenObjectAuditAlarmWithTransaction
1987SeOpenObjectForDeleteAuditAlarm
1988SeOpenObjectForDeleteAuditAlarmWithTransaction
1989SePrivilegeCheck
1990SePrivilegeObjectAuditAlarm
1991SePublicDefaultDacl DATA
1992SeQueryAuthenticationIdToken
1993SeQueryInformationToken
1994SeQuerySecureBootPolicyValue
1995SeQuerySecurityAttributesToken
1996SeQuerySecurityDescriptorInfo
1997SeQuerySessionIdToken
1998SeRegisterImageVerificationCallback
1999SeRegisterLogonSessionTerminatedRoutine
2000SeReleaseSecurityDescriptor
2001SeReleaseSubjectContext
2002SeReportSecurityEvent
2003SeReportSecurityEventWithSubCategory
2004SeSecurityAttributePresent
2005SeSetAccessStateGenericMapping
2006SeSetAuditParameter
2007SeSetSecurityAttributesToken
2008SeSetSecurityDescriptorInfo
2009SeSetSecurityDescriptorInfoEx
2010SeShouldCheckForAccessRightsFromParent
2011SeSinglePrivilegeCheck
2012SeSrpAccessCheck
2013SeSystemDefaultDacl DATA
2014SeSystemDefaultSd DATA
2015SeTokenFromAccessInformation
2016SeTokenImpersonationLevel
2017SeTokenIsAdmin
2018SeTokenIsRestricted
2019SeTokenIsWriteRestricted
2020SeTokenObjectType DATA
2021SeTokenType
2022SeUnlockSubjectContext
2023SeUnregisterImageVerificationCallback
2024SeUnregisterLogonSessionTerminatedRoutine
2025SeValidSecurityDescriptor
2026TmCancelPropagationRequest
2027TmCommitComplete
2028TmCommitEnlistment
2029TmCommitTransaction
2030TmCreateEnlistment
2031TmCurrentTransaction
2032TmDereferenceEnlistmentKey
2033TmEnableCallbacks
2034TmEndPropagationRequest
2035TmEnlistmentObjectType DATA
2036TmFreezeTransactions
2037TmGetTransactionId
2038TmInitSystem
2039TmInitSystemPhase2
2040TmInitializeTransactionManager
2041TmIsKTMCommitCoordinator
2042TmIsTransactionActive
2043TmPrePrepareComplete
2044TmPrePrepareEnlistment
2045TmPrepareComplete
2046TmPrepareEnlistment
2047TmPropagationComplete
2048TmPropagationFailed
2049TmReadOnlyEnlistment
2050TmRecoverEnlistment
2051TmRecoverResourceManager
2052TmRecoverTransactionManager
2053TmReferenceEnlistmentKey
2054TmRenameTransactionManager
2055TmRequestOutcomeEnlistment
2056TmResourceManagerObjectType DATA
2057TmRollbackComplete
2058TmRollbackEnlistment
2059TmRollbackTransaction
2060TmSetCurrentTransaction
2061TmSinglePhaseReject
2062TmThawTransactions
2063TmTransactionManagerObjectType DATA
2064TmTransactionObjectType DATA
2065VerSetConditionMask
2066VfFailDeviceNode
2067VfFailDriver
2068VfFailSystemBIOS
2069VfInsertContext
2070VfIsVerificationEnabled
2071VfQueryDeviceContext
2072VfQueryDispatchTable
2073VfQueryDriverContext
2074VfQueryIrpContext
2075VfQueryThreadContext
2076VfRemoveContext
2077WheaAddErrorSource
2078WheaConfigureErrorSource
2079WheaGetErrorSource
2080WheaInitializeRecordHeader
2081WheaReportHwError
2082WmiGetClock
2083WmiQueryTraceInformation
2084WmiTraceMessage
2085WmiTraceMessageVa
2086XIPDispatch
2087ZwAccessCheckAndAuditAlarm
2088ZwAddBootEntry
2089ZwAddDriverEntry
2090ZwAdjustPrivilegesToken
2091ZwAlertThread
2092ZwAllocateLocallyUniqueId
2093ZwAllocateVirtualMemory
2094ZwAlpcAcceptConnectPort
2095ZwAlpcCancelMessage
2096ZwAlpcConnectPort
2097ZwAlpcConnectPortEx
2098ZwAlpcCreatePort
2099ZwAlpcCreatePortSection
2100ZwAlpcCreateResourceReserve
2101ZwAlpcCreateSectionView
2102ZwAlpcCreateSecurityContext
2103ZwAlpcDeletePortSection
2104ZwAlpcDeleteResourceReserve
2105ZwAlpcDeleteSectionView
2106ZwAlpcDeleteSecurityContext
2107ZwAlpcDisconnectPort
2108ZwAlpcQueryInformation
2109ZwAlpcSendWaitReceivePort
2110ZwAlpcSetInformation
2111ZwAssignProcessToJobObject
2112ZwAssociateWaitCompletionPacket
2113ZwCancelIoFile
2114ZwCancelIoFileEx
2115ZwCancelTimer
2116ZwClearEvent
2117ZwClose
2118ZwCloseObjectAuditAlarm
2119ZwCommitComplete
2120ZwCommitEnlistment
2121ZwCommitTransaction
2122ZwConnectPort
2123ZwCreateDirectoryObject
2124ZwCreateEnlistment
2125ZwCreateEvent
2126ZwCreateFile
2127ZwCreateIoCompletion
2128ZwCreateJobObject
2129ZwCreateKey
2130ZwCreateKeyTransacted
2131ZwCreateResourceManager
2132ZwCreateSection
2133ZwCreateSymbolicLinkObject
2134ZwCreateTimer
2135ZwCreateTransaction
2136ZwCreateTransactionManager
2137ZwCreateWaitCompletionPacket
2138ZwCreateWnfStateName
2139ZwDeleteBootEntry
2140ZwDeleteDriverEntry
2141ZwDeleteFile
2142ZwDeleteKey
2143ZwDeleteValueKey
2144ZwDeleteWnfStateData
2145ZwDeleteWnfStateName
2146ZwDeviceIoControlFile
2147ZwDisplayString
2148ZwDuplicateObject
2149ZwDuplicateToken
2150ZwEnumerateBootEntries
2151ZwEnumerateDriverEntries
2152ZwEnumerateKey
2153ZwEnumerateTransactionObject
2154ZwEnumerateValueKey
2155ZwFlushBuffersFile
2156ZwFlushBuffersFileEx
2157ZwFlushInstructionCache
2158ZwFlushKey
2159ZwFlushVirtualMemory
2160ZwFreeVirtualMemory
2161ZwFsControlFile
2162ZwGetNotificationResourceManager
2163ZwImpersonateAnonymousToken
2164ZwInitiatePowerAction
2165ZwIsProcessInJob
2166ZwLoadDriver
2167ZwLoadKey
2168ZwLoadKeyEx
2169ZwLockFile
2170ZwLockProductActivationKeys
2171ZwLockVirtualMemory
2172ZwMakeTemporaryObject
2173ZwMapViewOfSection
2174ZwModifyBootEntry
2175ZwModifyDriverEntry
2176ZwNotifyChangeKey
2177ZwNotifyChangeSession
2178ZwOpenDirectoryObject
2179ZwOpenEnlistment
2180ZwOpenEvent
2181ZwOpenFile
2182ZwOpenJobObject
2183ZwOpenKey
2184ZwOpenKeyEx
2185ZwOpenKeyTransacted
2186ZwOpenKeyTransactedEx
2187ZwOpenProcess
2188ZwOpenProcessToken
2189ZwOpenProcessTokenEx
2190ZwOpenResourceManager
2191ZwOpenSection
2192ZwOpenSession
2193ZwOpenSymbolicLinkObject
2194ZwOpenThread
2195ZwOpenThreadToken
2196ZwOpenThreadTokenEx
2197ZwOpenTimer
2198ZwOpenTransaction
2199ZwOpenTransactionManager
2200ZwPowerInformation
2201ZwPrePrepareComplete
2202ZwPrePrepareEnlistment
2203ZwPrepareComplete
2204ZwPrepareEnlistment
2205ZwPropagationComplete
2206ZwPropagationFailed
2207ZwProtectVirtualMemory
2208ZwPulseEvent
2209ZwQueryBootEntryOrder
2210ZwQueryBootOptions
2211ZwQueryDefaultLocale
2212ZwQueryDefaultUILanguage
2213ZwQueryDirectoryFile
2214ZwQueryDirectoryObject
2215ZwQueryDriverEntryOrder
2216ZwQueryEaFile
2217ZwQueryFullAttributesFile
2218ZwQueryInformationEnlistment
2219ZwQueryInformationFile
2220ZwQueryInformationJobObject
2221ZwQueryInformationProcess
2222ZwQueryInformationResourceManager
2223ZwQueryInformationThread
2224ZwQueryInformationToken
2225ZwQueryInformationTransaction
2226ZwQueryInformationTransactionManager
2227ZwQueryInstallUILanguage
2228ZwQueryKey
2229ZwQueryLicenseValue
2230ZwQueryObject
2231ZwQueryQuotaInformationFile
2232ZwQuerySection
2233ZwQuerySecurityAttributesToken
2234ZwQuerySecurityObject
2235ZwQuerySymbolicLinkObject
2236ZwQuerySystemEnvironmentValueEx
2237ZwQuerySystemInformation
2238ZwQuerySystemInformationEx
2239ZwQueryValueKey
2240ZwQueryVirtualMemory
2241ZwQueryVolumeInformationFile
2242ZwQueryWnfStateData
2243ZwQueryWnfStateNameInformation
2244ZwReadFile
2245ZwReadOnlyEnlistment
2246ZwRecoverEnlistment
2247ZwRecoverResourceManager
2248ZwRecoverTransactionManager
2249ZwRemoveIoCompletion
2250ZwRemoveIoCompletionEx
2251ZwRenameKey
2252ZwReplaceKey
2253ZwRequestPort
2254ZwRequestWaitReplyPort
2255ZwResetEvent
2256ZwRestoreKey
2257ZwRollbackComplete
2258ZwRollbackEnlistment
2259ZwRollbackTransaction
2260ZwSaveKey
2261ZwSaveKeyEx
2262ZwSecureConnectPort
2263ZwSetBootEntryOrder
2264ZwSetBootOptions
2265ZwSetCachedSigningLevel
2266ZwSetDefaultLocale
2267ZwSetDefaultUILanguage
2268ZwSetDriverEntryOrder
2269ZwSetEaFile
2270ZwSetEvent
2271ZwSetInformationEnlistment
2272ZwSetInformationFile
2273ZwSetInformationJobObject
2274ZwSetInformationKey
2275ZwSetInformationObject
2276ZwSetInformationProcess
2277ZwSetInformationResourceManager
2278ZwSetInformationThread
2279ZwSetInformationToken
2280ZwSetInformationTransaction
2281ZwSetInformationVirtualMemory
2282ZwSetQuotaInformationFile
2283ZwSetSecurityObject
2284ZwSetSystemEnvironmentValueEx
2285ZwSetSystemInformation
2286ZwSetSystemTime
2287ZwSetTimer
2288ZwSetTimerEx
2289ZwSetValueKey
2290ZwSetVolumeInformationFile
2291ZwTerminateJobObject
2292ZwTerminateProcess
2293ZwTraceEvent
2294ZwTranslateFilePath
2295ZwUnloadDriver
2296ZwUnloadKey
2297ZwUnloadKeyEx
2298ZwUnlockFile
2299ZwUnlockVirtualMemory
2300ZwUnmapViewOfSection
2301ZwUpdateWnfStateData
2302ZwWaitForMultipleObjects
2303ZwWaitForSingleObject
2304ZwWriteFile
2305ZwYieldExecution
2306__C_specific_handler
2307__chkstk
2308__jump_unwind
2309_i64toa_s
2310_i64tow_s
2311_itoa
2312_itoa_s
2313_itow
2314_itow_s
2315_ltoa_s
2316_ltow_s
2317_makepath_s
2318_purecall
2319_setjmp
2320_setjmpex
2321_snprintf
2322_snprintf_s
2323_snscanf_s
2324_snwprintf
2325_snwprintf_s
2326_snwscanf_s
2327_splitpath_s
2328_stricmp
2329_strlwr
2330strlwr == _strlwr
2331_strnicmp
2332_strnset
2333_strnset_s
2334_strrev
2335_strset
2336_strset_s
2337_strtoui64
2338_strupr
2339_swprintf
2340_ui64toa_s
2341_ui64tow_s
2342_ultoa_s
2343_ultow_s
2344_vsnprintf
2345_vsnprintf_s
2346_vsnwprintf
2347_vsnwprintf_s
2348_vswprintf
2349_wcsicmp
2350_wcslwr
2351wcslwr == _wcslwr
2352_wcsnicmp
2353_wcsnset
2354_wcsnset_s
2355_wcsrev
2356_wcsset_s
2357_wcsupr
2358_wmakepath_s
2359_wsplitpath_s
2360_wtoi
2361_wtol
2362atoi
2363atol
2364bsearch
2365bsearch_s
2366isdigit
2367islower
2368isprint
2369isspace
2370isupper
2371isxdigit
2372longjmp
2373mbstowcs
2374mbtowc
2375memchr
2376memcmp
2377memcpy
2378memcpy_s
2379memmove
2380memmove_s
2381memset
2382psMUITest DATA
2383qsort
2384rand
2385sprintf
2386sprintf_s
2387srand
2388sscanf_s
2389strcat
2390strcat_s
2391strchr
2392strcmp
2393strcpy
2394strcpy_s
2395strlen
2396strncat
2397strncat_s
2398strncmp
2399strncpy
2400strncpy_s
2401strnlen
2402strrchr
2403strspn
2404strstr
2405strtok_s
2406swprintf
2407swprintf_s
2408swscanf_s
2409tolower
2410toupper
2411towlower
2412towupper
2413vDbgPrintEx
2414vDbgPrintExWithPrefix
2415vsprintf
2416vsprintf_s
2417vswprintf_s
2418wcscat
2419wcscat_s
2420wcschr
2421wcscmp
2422wcscpy
2423wcscpy_s
2424wcscspn
2425wcslen
2426wcsncat
2427wcsncat_s
2428wcsncmp
2429wcsncpy
2430wcsncpy_s
2431wcsnlen
2432wcsrchr
2433wcsspn
2434wcsstr
2435wcstombs
2436wcstoul
2437wctomb
lib/libc/mingw/libarm32/ntprint.def created+66
......@@ -0,0 +1,66 @@
1;
2; Definition file of NTPRINT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NTPRINT.dll"
7EXPORTS
8ord_103 @103
9ord_104 @104
10ClassInstall32
11ord_106 @106
12ord_107 @107
13PSetupCheckForDriversInDriverStore
14PSetupDownloadAndInstallLegacyDriverW
15PSetupDriverStoreFindDriverPackageW
16PSetupElevateAndCallDriverStoreAddDriverPackage
17PSetupElevatedDriverStoreAddDriverPackageW
18PSetupElevatedInstallDownloadedLegacyDriverW
19PSetupElevatedInstallPrinterDriverFromTheWebW
20PSetupElevatedLegacyPrintDriverInstallW
21PSetupGetActualInstallSection
22PSetupGetCatalogNameFromInfW
23PSetupWebPnpGenerateDownLevelInfForInboxDriver
24ServerInstallW
25PSetupAssociateICMProfiles
26PSetupBuildDriverList
27PSetupBuildDriversFromPath
28PSetupCopyDriverPackageFiles
29PSetupCreateDrvSetupPage
30PSetupCreateMonitorInfo
31PSetupCreatePrinterDeviceInfoList
32PSetupDestroyDriverInfo3
33PSetupDestroyMonitorInfo
34PSetupDestroyPrinterDeviceInfoList
35PSetupDestroySelectedDriverInfo
36PSetupDisassociateICMProfiles
37PSetupDriverInfoFromDeviceID
38PSetupDriverInfoFromName
39PSetupDriverStoreAddDriverPackage
40PSetupEnumMonitor
41PSetupFindCompatibleDriverFromName
42PSetupFreeDrvField
43PSetupFreeMem
44PSetupGetDriverInfo3
45PSetupGetInfDriverStoreLocation
46PSetupGetLocalDataField
47PSetupGetPathToSearch
48PSetupGetSelectedDriverInfo
49PSetupInstallICMProfiles
50PSetupInstallInboxDriverSilently
51PSetupInstallMonitor
52PSetupInstallPrinterDriver
53PSetupIsCompatibleDriver
54PSetupIsDriverInstalled
55PSetupIsTheDriverFoundInInfInstalled
56PSetupParseInfAndCommitFileQueue
57PSetupPreSelectDriver
58PSetupProcessPrinterAdded
59PSetupSelectDeviceButtons
60PSetupSelectDriver
61PSetupSetCoreInboxDriverPath
62PSetupSetDriverPlatform
63PSetupSetNonInteractiveMode
64PSetupSetSelectDevTitleAndInstructions
65PSetupShowBlockedDriverUI
66PSetupThisPlatform
lib/libc/mingw/libarm32/ntshrui.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of ntshrui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ntshrui.dll"
7EXPORTS
8CanShareFolder
9GetLocalPathFromNetResource
10GetLocalPathFromNetResourceA
11GetLocalPathFromNetResourceW
12GetNetResourceFromLocalPath
13GetNetResourceFromLocalPathA
14GetNetResourceFromLocalPathW
15IsFolderPrivateForUser
16IsPathShared
17IsPathSharedA
18IsPathSharedW
19SetFolderPermissionsForSharing
20ShowShareFolderUI
lib/libc/mingw/libarm32/nvcameraisp.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of nvCameraISP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nvCameraISP.dll"
7EXPORTS
8CISP_InterfaceCreateInstance
lib/libc/mingw/libarm32/nvcameraispb.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of nvCameraISPb.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nvCameraISPb.dll"
7EXPORTS
8CISP_InterfaceCreateInstance
lib/libc/mingw/libarm32/nvd3dum.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NVD3DUM.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NVD3DUM.dll"
7EXPORTS
8OpenAdapter
9QueryOglResource
lib/libc/mingw/libarm32/nvencodeapi.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of nvEncodeAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "nvEncodeAPI.dll"
7EXPORTS
8NvEncodeAPICreateInstance
lib/libc/mingw/libarm32/odbctrac.def created+131
......@@ -0,0 +1,131 @@
1;
2; Definition file of ODBCTRAC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ODBCTRAC.dll"
7EXPORTS
8TraceSQLAllocConnect
9TraceSQLAllocEnv
10TraceSQLAllocStmt
11TraceSQLBindCol
12TraceSQLCancel
13TraceSQLColAttributes
14TraceSQLConnect
15TraceSQLDescribeCol
16TraceSQLDisconnect
17TraceSQLError
18TraceSQLExecDirect
19TraceSQLExecute
20TraceSQLFetch
21TraceSQLFreeConnect
22TraceSQLFreeEnv
23TraceSQLFreeStmt
24TraceSQLGetCursorName
25TraceSQLNumResultCols
26TraceSQLPrepare
27TraceSQLRowCount
28TraceSQLSetCursorName
29TraceSQLSetParam
30TraceSQLTransact
31TraceSQLAllocHandle
32TraceSQLBindParam
33TraceSQLCloseCursor
34TraceSQLColAttribute
35TraceSQLCopyDesc
36TraceSQLEndTran
37TraceSQLFetchScroll
38TraceSQLFreeHandle
39TraceSQLGetConnectAttr
40TraceSQLGetDescField
41TraceSQLGetDescRec
42TraceSQLGetDiagField
43TraceSQLGetDiagRec
44TraceSQLGetEnvAttr
45TraceSQLGetStmtAttr
46TraceSQLSetConnectAttr
47TraceSQLColumns
48TraceSQLDriverConnect
49TraceSQLGetConnectOption
50TraceSQLGetData
51TraceSQLGetFunctions
52TraceSQLGetInfo
53TraceSQLGetStmtOption
54TraceSQLGetTypeInfo
55TraceSQLParamData
56TraceSQLPutData
57TraceSQLSetConnectOption
58TraceSQLSetStmtOption
59TraceSQLSpecialColumns
60TraceSQLStatistics
61TraceSQLTables
62TraceSQLBrowseConnect
63TraceSQLColumnPrivileges
64TraceSQLDataSources
65TraceSQLDescribeParam
66TraceSQLExtendedFetch
67TraceSQLForeignKeys
68TraceSQLMoreResults
69TraceSQLNativeSql
70TraceSQLNumParams
71TraceSQLParamOptions
72TraceSQLPrimaryKeys
73TraceSQLProcedureColumns
74TraceSQLProcedures
75TraceSQLSetPos
76TraceSQLSetScrollOptions
77TraceSQLTablePrivileges
78TraceSQLDrivers
79TraceSQLBindParameter
80TraceSQLSetDescField
81TraceSQLSetDescRec
82TraceSQLSetEnvAttr
83TraceSQLSetStmtAttr
84TraceSQLAllocHandleStd
85TraceSQLBulkOperations
86TraceSQLCancelHandle
87TraceSQLCompleteAsync
88TraceSQLCompleteAsyncW
89TraceVSControl
90TraceSQLColAttributesW
91TraceSQLConnectW
92TraceSQLDescribeColW
93TraceSQLErrorW
94TraceSQLExecDirectW
95TraceSQLGetCursorNameW
96TraceSQLPrepareW
97TraceSQLSetCursorNameW
98TraceSQLColAttributeW
99TraceSQLGetConnectAttrW
100TraceSQLGetDescFieldW
101TraceSQLGetDescRecW
102TraceSQLGetDiagFieldW
103TraceSQLGetDiagRecW
104TraceSQLGetStmtAttrW
105TraceSQLSetConnectAttrW
106TraceSQLColumnsW
107TraceSQLDriverConnectW
108TraceSQLGetConnectOptionW
109TraceSQLGetInfoW
110TraceSQLGetTypeInfoW
111TraceSQLSetConnectOptionW
112TraceSQLSpecialColumnsW
113TraceSQLStatisticsW
114TraceSQLTablesW
115TraceSQLBrowseConnectW
116TraceSQLColumnPrivilegesW
117TraceSQLDataSourcesW
118TraceSQLForeignKeysW
119TraceSQLNativeSqlW
120TraceSQLPrimaryKeysW
121TraceSQLProcedureColumnsW
122TraceSQLProceduresW
123TraceSQLTablePrivilegesW
124TraceSQLDriversW
125TraceSQLSetDescFieldW
126TraceSQLSetStmtAttrW
127TraceSQLAllocHandleStdW
128TraceReturn
129TraceOpenLogFile
130TraceCloseLogFile
131TraceVersion
lib/libc/mingw/libarm32/oemlicense.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of oemlicense.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "oemlicense.dll"
7EXPORTS
8HrAddAppxLicense
9HrRemoveAppxLicense
10AddDemoAppLicense
11RemoveDemoAppLicense
lib/libc/mingw/libarm32/offreg.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of OFFREG.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "OFFREG.dll"
7EXPORTS
8ORCloseHive
9ORCloseKey
10ORCreateHive
11ORCreateKey
12ORDeleteKey
13ORDeleteValue
14OREnumKey
15OREnumValue
16ORGetKeySecurity
17ORGetValue
18ORGetVersion
19ORGetVirtualFlags
20OROpenHive
21OROpenHiveByHandle
22OROpenKey
23ORQueryInfoKey
24ORSaveHive
25ORSetKeySecurity
26ORSetValue
27ORSetVirtualFlags
lib/libc/mingw/libarm32/onex.def created+35
......@@ -0,0 +1,35 @@
1;
2; Definition file of OneX.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "OneX.DLL"
7EXPORTS
8OneXAddEapAttributes
9OneXAddTLV
10OneXCompareAuthParams
11OneXCopyAuthParams
12OneXCreateDefaultProfile
13OneXCreateDiscoveryProfiles
14OneXCreateSupplicantPort
15OneXDeInitialize
16OneXDestroySupplicantPort
17OneXForceAuthenticatedState
18OneXFreeAuthParams
19OneXFreeMemory
20OneXIndicatePacket
21OneXIndicateSessionChange
22OneXInitialize
23OneXQueryAuthParams
24OneXQueryPendingUIRequest
25OneXQueryState
26OneXQueryStatistics
27OneXReasonCodeToString
28OneXRestartReasonCodeToString
29OneXSetAuthParams
30OneXSetRuntimeState
31OneXStartAuthentication
32OneXStopAuthentication
33OneXUIResponse
34OneXUpdatePortProfile
35OneXUpdateProfilePostDiscovery
lib/libc/mingw/libarm32/onexui.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of OneXUI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "OneXUI.DLL"
7EXPORTS
8OneXGetUserFriendlyText
9OneXMapEAPHostInteractiveUIToOneXUIResponse
10OneXShowUI
11OneXShowUIFromEAPCreds
lib/libc/mingw/libarm32/oobefldr.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of OOBEFLDR.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "OOBEFLDR.dll"
7EXPORTS
8ShowWelcomeCenter
lib/libc/mingw/libarm32/osbaseln.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of osbaseln.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "osbaseln.dll"
7EXPORTS
8ord_1 @1
9CloseOsBaseline
10EnumOsBaselineComponentsA
11EnumOsBaselineComponentsW
12EnumOsOutOfDateComponentsA
13EnumOsOutOfDateComponentsW
14GetOsBaselineComponentInfoA
15GetOsBaselineComponentInfoW
16GetOsInstalledComponentInfoA
17GetOsInstalledComponentInfoW
18GetOsLatestBaselineServicePack
19OpenOsBaseline
20pGetOsBaselineCurrentVersion
21pGetOsCurrentBaselineServicePack
22pOpenOsBaselineByVersion
lib/libc/mingw/libarm32/osksupport.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of OskSupport.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "OskSupport.dll"
7EXPORTS
8InitializeOSKSupport
9UninitializeOSKSupport
lib/libc/mingw/libarm32/p2psvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of p2psvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "p2psvc.dll"
7EXPORTS
8GroupServiceMain
9SvchostPushServiceGlobals
10InitSecurityInterfaceW
lib/libc/mingw/libarm32/pautoenr.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of PAUTOENR.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PAUTOENR.dll"
7EXPORTS
8DimsProvEntry
9CertAutoEnrollment
10CertAutoRemove
lib/libc/mingw/libarm32/pcacli.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of pcacli.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pcacli.dll"
7EXPORTS
8PcaGetFileInfoFromPath
9PcaIsPcaDisabled
10PcaLinkChildProcessToParent
11PcaMonitorProcess
12PcaNotifyMsiInstall
13PcaNotifyStatusIcon
14PcaSendToService
lib/libc/mingw/libarm32/pcaui.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of pcaui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pcaui.dll"
7EXPORTS
8DisplayApphelpDialog
9PcaLaunchApplicationWithConsent
10PcaPersistSettingsAndLaunchApplication
11PcaShowDialog
lib/libc/mingw/libarm32/pcpksp.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of PCPKsp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PCPKsp.dll"
7EXPORTS
8GetAsymmetricEncryptionInterface
9GetKeyStorageInterface
10GetRngInterface
lib/libc/mingw/libarm32/pcptpm12.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of PCPTpm12.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PCPTpm12.dll"
7EXPORTS
8GetAsymmetricEncryptionInterface
9GetRngInterface
lib/libc/mingw/libarm32/pcwutl.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of pcwutl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pcwutl.dll"
7EXPORTS
8LaunchApplicationW
9GetAppInformationFromCOS
10GetLayerFromGenome
11GetMatchingInfo
12GetTempFile
13LogAeEvent
14LogPCWDebugEvent
15RetrieveFileAndProgramId
16SendPcwWerReport
17SendSQMForTSRun
lib/libc/mingw/libarm32/pdh.def deleted-136
......@@ -1,136 +0,0 @@
1;
2; Definition file of pdh.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pdh.dll"
7EXPORTS
8PdhAdd009CounterA
9PdhAdd009CounterW
10PdhAddCounterA
11PdhAddCounterW
12PdhAddEnglishCounterA
13PdhAddEnglishCounterW
14PdhAddRelogCounter
15PdhAddV1Counter
16PdhAddV2Counter
17PdhBindInputDataSourceA
18PdhBindInputDataSourceW
19PdhBrowseCountersA
20PdhBrowseCountersHA
21PdhBrowseCountersHW
22PdhBrowseCountersW
23PdhCalculateCounterFromRawValue
24PdhCloseLog
25PdhCloseQuery
26PdhCollectQueryData
27PdhCollectQueryDataEx
28PdhCollectQueryDataWithTime
29PdhComputeCounterStatistics
30PdhConnectMachineA
31PdhConnectMachineW
32PdhCreateSQLTablesA
33PdhCreateSQLTablesW
34PdhEnumLogSetNamesA
35PdhEnumLogSetNamesW
36PdhEnumMachinesA
37PdhEnumMachinesHA
38PdhEnumMachinesHW
39PdhEnumMachinesW
40PdhEnumObjectItemsA
41PdhEnumObjectItemsHA
42PdhEnumObjectItemsHW
43PdhEnumObjectItemsW
44PdhEnumObjectsA
45PdhEnumObjectsHA
46PdhEnumObjectsHW
47PdhEnumObjectsW
48PdhExpandCounterPathA
49PdhExpandCounterPathW
50PdhExpandWildCardPathA
51PdhExpandWildCardPathHA
52PdhExpandWildCardPathHW
53PdhExpandWildCardPathW
54PdhFormatFromRawValue
55PdhGetCounterInfoA
56PdhGetCounterInfoW
57PdhGetCounterTimeBase
58PdhGetDataSourceTimeRangeA
59PdhGetDataSourceTimeRangeH
60PdhGetDataSourceTimeRangeW
61PdhGetDefaultPerfCounterA
62PdhGetDefaultPerfCounterHA
63PdhGetDefaultPerfCounterHW
64PdhGetDefaultPerfCounterW
65PdhGetDefaultPerfObjectA
66PdhGetDefaultPerfObjectHA
67PdhGetDefaultPerfObjectHW
68PdhGetDefaultPerfObjectW
69PdhGetDllVersion
70PdhGetExplainText
71PdhGetFormattedCounterArrayA
72PdhGetFormattedCounterArrayW
73PdhGetFormattedCounterValue
74PdhGetLogFileSize
75PdhGetLogFileTypeA
76PdhGetLogFileTypeW
77PdhGetLogSetGUID
78PdhGetRawCounterArrayA
79PdhGetRawCounterArrayW
80PdhGetRawCounterValue
81PdhIsRealTimeQuery
82PdhListLogFileHeaderA
83PdhListLogFileHeaderW
84PdhLookupPerfIndexByNameA
85PdhLookupPerfIndexByNameW
86PdhLookupPerfNameByIndexA
87PdhLookupPerfNameByIndexW
88PdhMakeCounterPathA
89PdhMakeCounterPathW
90PdhOpenLogA
91PdhOpenLogW
92PdhOpenQuery
93PdhOpenQueryA
94PdhOpenQueryH
95PdhOpenQueryW
96PdhParseCounterPathA
97PdhParseCounterPathW
98PdhParseInstanceNameA
99PdhParseInstanceNameW
100PdhReadRawLogRecord
101PdhRelogA
102PdhRelogW
103PdhRemoveCounter
104PdhResetRelogCounterValues
105PdhSelectDataSourceA
106PdhSelectDataSourceW
107PdhSetCounterScaleFactor
108PdhSetCounterValue
109PdhSetDefaultRealTimeDataSource
110PdhSetLogSetRunID
111PdhSetQueryTimeRange
112PdhTranslate009CounterA
113PdhTranslate009CounterW
114PdhTranslateLocaleCounterA
115PdhTranslateLocaleCounterW
116PdhUpdateLogA
117PdhUpdateLogFileCatalog
118PdhUpdateLogW
119PdhValidatePathA
120PdhValidatePathExA
121PdhValidatePathExW
122PdhValidatePathW
123PdhVbAddCounter
124PdhVbCreateCounterPathList
125PdhVbGetCounterPathElements
126PdhVbGetCounterPathFromList
127PdhVbGetDoubleCounterValue
128PdhVbGetLogFileSize
129PdhVbGetOneCounterPath
130PdhVbIsGoodStatus
131PdhVbOpenLog
132PdhVbOpenQuery
133PdhVbUpdateLog
134PdhVerifySQLDBA
135PdhVerifySQLDBW
136PdhWriteRelogSample
lib/libc/mingw/libarm32/pdhui.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of pdhui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pdhui.dll"
7EXPORTS
8PdhUiBrowseCountersA
9PdhUiBrowseCountersExA
10PdhUiBrowseCountersExHA
11PdhUiBrowseCountersExHW
12PdhUiBrowseCountersExW
13PdhUiBrowseCountersHA
14PdhUiBrowseCountersHW
15PdhUiBrowseCountersW
16PdhUiSelectDataSourceA
17PdhUiSelectDataSourceW
lib/libc/mingw/libarm32/perftrack.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of perftrack.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "perftrack.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/pidgenx.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of pidgenx.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pidgenx.dll"
7EXPORTS
8ord_117 @117
9PidGenX
10PidGenX2
lib/libc/mingw/libarm32/pku2u.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of pku2u.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pku2u.dll"
7EXPORTS
8SpLsaModeInitialize
9SpUserModeInitialize
lib/libc/mingw/libarm32/pla.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of PLA.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PLA.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
10PlaDeleteReport
11PlaExpandTaskArguments
12PlaExtractCabinet
13PlaGetLegacyAlertActionsFlagsFromString
14PlaGetLegacyAlertActionsStringFromFlags
15PlaGetServerCapabilities
16PlaHost
17PlaServer
18PlaUpgrade
lib/libc/mingw/libarm32/playsndsrv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of PlaySndSrv.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PlaySndSrv.DLL"
7EXPORTS
8PlaySoundServerInitialize
9PlaySoundServerTerminate
lib/libc/mingw/libarm32/ploptin.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of ploptin.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ploptin.dll"
7EXPORTS
8IsApplicationEligibleForPrelaunch
lib/libc/mingw/libarm32/pnpclean.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of PNPCLEAN.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PNPCLEAN.dll"
7EXPORTS
8RunDLL_PnpClean
lib/libc/mingw/libarm32/pnpts.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of pnpts.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pnpts.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/pnpui.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of pnpui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pnpui.dll"
7EXPORTS
8InstallSecurityPrompt
9InstallSecurityPromptRunDllW
10SimplifiedDINotificationW
lib/libc/mingw/libarm32/pnrpauto.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of pnrpauto.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pnrpauto.dll"
7EXPORTS
8PnrpAutoSVCServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/pnrpnsp.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of PNRPNSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PNRPNSP.dll"
7EXPORTS
8NSPStartup
lib/libc/mingw/libarm32/pnrpsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of pnrpsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pnrpsvc.dll"
7EXPORTS
8IMServiceMain
9SVCServiceMain
10SvchostPushServiceGlobals
lib/libc/mingw/libarm32/polstore.def created+66
......@@ -0,0 +1,66 @@
1;
2; Definition file of POLSTORE.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "POLSTORE.DLL"
7EXPORTS
8GenerateIPSECPolicy
9ProcessIPSECPolicyEx
10WriteDirectoryPolicyToWMI
11IPSecAllocPolMem
12IPSecAllocPolStr
13IPSecAssignPolicy
14IPSecClearWMIStore
15IPSecClosePolicyStore
16IPSecCopyAuthMethod
17IPSecCopyFilterData
18IPSecCopyFilterSpec
19IPSecCopyISAKMPData
20IPSecCopyNFAData
21IPSecCopyNegPolData
22IPSecCopyPolicyData
23IPSecCreateFilterData
24IPSecCreateISAKMPData
25IPSecCreateNFAData
26IPSecCreateNegPolData
27IPSecCreatePolicyData
28IPSecDeleteFilterData
29IPSecDeleteISAKMPData
30IPSecDeleteNFAData
31IPSecDeleteNegPolData
32IPSecDeletePolicyData
33IPSecEnumFilterData
34IPSecEnumISAKMPData
35IPSecEnumNFAData
36IPSecEnumNegPolData
37IPSecEnumPolicyData
38IPSecExportPolicies
39IPSecFreeFilterData
40IPSecFreeFilterSpec
41IPSecFreeFilterSpecs
42IPSecFreeISAKMPData
43IPSecFreeMulFilterData
44IPSecFreeMulISAKMPData
45IPSecFreeMulNFAData
46IPSecFreeMulNegPolData
47IPSecFreeMulPolicyData
48IPSecFreeNFAData
49IPSecFreeNegPolData
50IPSecFreePolStr
51IPSecFreePolicyData
52IPSecGetAssignedPolicyData
53IPSecGetFilterData
54IPSecGetISAKMPData
55IPSecGetNegPolData
56IPSecImportPolicies
57IPSecIsDomainPolicyAssigned
58IPSecOpenPolicyStore
59IPSecSetFilterData
60IPSecSetISAKMPData
61IPSecSetNFAData
62IPSecSetNegPolData
63IPSecSetPolicyData
64IPSecUnassignPolicy
65RegCreateNFAData
66RegCreatePolicyData
lib/libc/mingw/libarm32/portabledeviceclassextension.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of PORTABLEDEVICECLASSEXTENSION.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PORTABLEDEVICECLASSEXTENSION.dll"
7EXPORTS
8Microsoft_WDF_UMDF_Version DATA
lib/libc/mingw/libarm32/pots.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of pots.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pots.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/powerwmiprovider.def created+991
......@@ -0,0 +1,991 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PowerWmiProvider.dll"
7EXPORTS
8GetProviderClassID
9MI_Main
10t100 DATA
11t101 DATA
12t102 DATA
13t103 DATA
14t104 DATA
15t105 DATA
16t106 DATA
17t107 DATA
18t108 DATA
19t109 DATA
20t110 DATA
21t111 DATA
22t112 DATA
23t113 DATA
24t114 DATA
25t115 DATA
26t116 DATA
27t117 DATA
28t118 DATA
29t119 DATA
30t120 DATA
31t121 DATA
32t122 DATA
33t123 DATA
34t124 DATA
35t125 DATA
36t126 DATA
37t127 DATA
38t128 DATA
39t129 DATA
40t130 DATA
41t131 DATA
42t132 DATA
43t133 DATA
44t134 DATA
45t135 DATA
46t136 DATA
47t137 DATA
48t138 DATA
49t139 DATA
50t140 DATA
51t141 DATA
52t142 DATA
53t143 DATA
54t144 DATA
55t145 DATA
56t146 DATA
57t147 DATA
58t148 DATA
59t149 DATA
60t150 DATA
61t151 DATA
62t152 DATA
63t152.m1
64t152.m2
65t152.m3
66t152.m4
67t153 DATA
68t153.m0
69t153.m1
70t153.m2
71t154 DATA
72t155 DATA
73t156 DATA
74t157 DATA
75t158 DATA
76t159 DATA
77t160 DATA
78t161 DATA
79t162 DATA
80t163 DATA
81t164 DATA
82t165 DATA
83t166 DATA
84t21 DATA
85t22 DATA
86t23 DATA
87t24 DATA
88t25 DATA
89t26 DATA
90t27 DATA
91t28 DATA
92t283 DATA
93t29 DATA
94t30 DATA
95t304 DATA
96t305 DATA
97t306 DATA
98t307 DATA
99t307.m1
100t307.m2
101t308 DATA
102t309 DATA
103t31 DATA
104t310 DATA
105t312 DATA
106t313 DATA
107t314 DATA
108t315 DATA
109t316 DATA
110t317 DATA
111t318 DATA
112t319 DATA
113t32 DATA
114t320 DATA
115t321 DATA
116t322 DATA
117t323 DATA
118t324 DATA
119t325 DATA
120t326 DATA
121t327 DATA
122t328 DATA
123t329 DATA
124t33 DATA
125t330 DATA
126t331 DATA
127t332 DATA
128t333 DATA
129t333.m1
130t333.m2
131t334 DATA
132t335 DATA
133t336 DATA
134t338 DATA
135t339 DATA
136t339.m1
137t339.m2
138t34 DATA
139t340 DATA
140t341 DATA
141t342 DATA
142t343 DATA
143t344 DATA
144t345 DATA
145t347 DATA
146t348 DATA
147t349 DATA
148t35 DATA
149t350 DATA
150t351 DATA
151t353 DATA
152t354 DATA
153t354.m1
154t354.m2
155t355 DATA
156t356 DATA
157t357 DATA
158t359 DATA
159t36 DATA
160t360 DATA
161t361 DATA
162t362 DATA
163t363 DATA
164t364 DATA
165t365 DATA
166t366 DATA
167t367 DATA
168t368 DATA
169t368.m1
170t368.m2
171t369 DATA
172t37 DATA
173t370 DATA
174t371 DATA
175t372 DATA
176t373 DATA
177t375 DATA
178t376 DATA
179t376.m1
180t376.m2
181t377 DATA
182t378 DATA
183t379 DATA
184t38 DATA
185t380 DATA
186t381 DATA
187t382 DATA
188t383 DATA
189t384 DATA
190t385 DATA
191t387 DATA
192t388 DATA
193t389 DATA
194t39 DATA
195t390 DATA
196t391 DATA
197t392 DATA
198t393 DATA
199t394 DATA
200t395 DATA
201t396 DATA
202t397 DATA
203t398 DATA
204t399 DATA
205t40 DATA
206t400 DATA
207t401 DATA
208t402 DATA
209t402.m1
210t402.m2
211t403 DATA
212t404 DATA
213t405 DATA
214t406 DATA
215t407 DATA
216t409 DATA
217t41 DATA
218t410 DATA
219t410.m1
220t410.m2
221t411 DATA
222t412 DATA
223t413 DATA
224t414 DATA
225t415 DATA
226t416 DATA
227t417 DATA
228t418 DATA
229t419 DATA
230t42 DATA
231t420 DATA
232t421 DATA
233t422 DATA
234t423 DATA
235t425 DATA
236t426 DATA
237t426.m1
238t426.m2
239t427 DATA
240t428 DATA
241t429 DATA
242t43 DATA
243t431 DATA
244t432 DATA
245t433 DATA
246t434 DATA
247t435 DATA
248t436 DATA
249t437 DATA
250t438 DATA
251t439 DATA
252t44 DATA
253t440 DATA
254t441 DATA
255t442 DATA
256t442.m1
257t442.m2
258t443 DATA
259t444 DATA
260t445 DATA
261t446 DATA
262t447 DATA
263t449 DATA
264t45 DATA
265t450 DATA
266t451 DATA
267t452 DATA
268t453 DATA
269t454 DATA
270t455 DATA
271t456 DATA
272t457 DATA
273t458 DATA
274t459 DATA
275t46 DATA
276t460 DATA
277t461 DATA
278t462 DATA
279t463 DATA
280t464 DATA
281t465 DATA
282t466 DATA
283t467 DATA
284t468 DATA
285t469 DATA
286t47 DATA
287t470 DATA
288t471 DATA
289t472 DATA
290t472.m1
291t472.m2
292t473 DATA
293t474 DATA
294t475 DATA
295t476 DATA
296t477 DATA
297t478 DATA
298t479 DATA
299t48 DATA
300t481 DATA
301t482 DATA
302t483 DATA
303t484 DATA
304t485 DATA
305t486 DATA
306t487 DATA
307t488 DATA
308t489 DATA
309t49 DATA
310t490 DATA
311t490.m1
312t490.m2
313t491 DATA
314t492 DATA
315t493 DATA
316t494 DATA
317t495 DATA
318t496 DATA
319t497 DATA
320t499 DATA
321t50 DATA
322t500 DATA
323t501 DATA
324t501.m31
325t501.m32
326t501.m33
327t501.m34
328t501.m35
329t501.m36
330t501.m37
331t501.m38
332t501.m39
333t501.m4
334t501.m40
335t501.m41
336t501.m42
337t501.m5
338t501.m6
339t502 DATA
340t503 DATA
341t504 DATA
342t504.m0
343t505 DATA
344t506 DATA
345t507 DATA
346t508 DATA
347t508.m0
348t509 DATA
349t51 DATA
350t510 DATA
351t510.m0
352t510.m1
353t511 DATA
354t512 DATA
355t512.m0
356t512.m1
357t513 DATA
358t514 DATA
359t514.m0
360t514.m1
361t515 DATA
362t516 DATA
363t517 DATA
364t517.m0
365t517.m1
366t518 DATA
367t519 DATA
368t52 DATA
369t520 DATA
370t521 DATA
371t522 DATA
372t522.m0
373t523 DATA
374t524 DATA
375t525 DATA
376t526 DATA
377t526.m0
378t527 DATA
379t528 DATA
380t528.m0
381t528.m1
382t529 DATA
383t53 DATA
384t530 DATA
385t531 DATA
386t532 DATA
387t533 DATA
388t534 DATA
389t535 DATA
390t536 DATA
391t537 DATA
392t538 DATA
393t539 DATA
394t54 DATA
395t540 DATA
396t541 DATA
397t542 DATA
398t543 DATA
399t543.m2
400t543.m21
401t543.m22
402t543.m23
403t543.m24
404t543.m25
405t543.m26
406t543.m27
407t544 DATA
408t545 DATA
409t545.m1
410t546 DATA
411t547 DATA
412t547.m2
413t547.m4
414t547.m5
415t548 DATA
416t549 DATA
417t55 DATA
418t550 DATA
419t550.m19
420t550.m2
421t550.m20
422t550.m21
423t550.m22
424t550.m23
425t550.m24
426t550.m25
427t551 DATA
428t552 DATA
429t552.m1
430t553 DATA
431t554 DATA
432t554.m2
433t554.m4
434t554.m5
435t555 DATA
436t556 DATA
437t557 DATA
438t557.m16
439t557.m17
440t557.m18
441t557.m19
442t557.m2
443t557.m3
444t558 DATA
445t559 DATA
446t559.m1
447t56 DATA
448t560 DATA
449t561 DATA
450t561.m2
451t561.m4
452t561.m5
453t562 DATA
454t563 DATA
455t564 DATA
456t564.m2
457t564.m21
458t564.m22
459t564.m23
460t564.m24
461t564.m25
462t564.m26
463t564.m27
464t565 DATA
465t566 DATA
466t566.m1
467t567 DATA
468t568 DATA
469t568.m2
470t568.m4
471t568.m5
472t569 DATA
473t57 DATA
474t570 DATA
475t571 DATA
476t571.m10
477t571.m11
478t571.m2
479t571.m3
480t571.m4
481t571.m5
482t571.m7
483t571.m8
484t571.m9
485t572 DATA
486t573 DATA
487t574 DATA
488t575 DATA
489t575.m2
490t575.m4
491t575.m5
492t576 DATA
493t577 DATA
494t578 DATA
495t578.m10
496t578.m11
497t578.m12
498t578.m13
499t578.m2
500t578.m24
501t578.m25
502t578.m26
503t578.m27
504t578.m28
505t578.m29
506t578.m30
507t578.m31
508t579 DATA
509t58 DATA
510t580 DATA
511t580.m1
512t581 DATA
513t582 DATA
514t582.m2
515t582.m4
516t582.m5
517t583 DATA
518t584 DATA
519t585 DATA
520t585.m19
521t585.m2
522t585.m20
523t585.m21
524t585.m22
525t585.m23
526t585.m24
527t585.m25
528t586 DATA
529t587 DATA
530t587.m1
531t588 DATA
532t589 DATA
533t589.m2
534t589.m4
535t589.m5
536t59 DATA
537t590 DATA
538t591 DATA
539t592 DATA
540t592.m2
541t592.m29
542t592.m30
543t592.m31
544t592.m32
545t592.m33
546t592.m34
547t592.m35
548t593 DATA
549t594 DATA
550t594.m1
551t595 DATA
552t596 DATA
553t596.m2
554t596.m4
555t596.m5
556t597 DATA
557t598 DATA
558t599 DATA
559t599.m2
560t599.m21
561t599.m22
562t599.m23
563t599.m24
564t599.m25
565t599.m26
566t599.m27
567t60 DATA
568t600 DATA
569t601 DATA
570t601.m1
571t602 DATA
572t603 DATA
573t603.m2
574t603.m4
575t603.m5
576t604 DATA
577t605 DATA
578t606 DATA
579t606.m12
580t606.m13
581t606.m2
582t606.m24
583t606.m25
584t606.m26
585t606.m27
586t606.m28
587t606.m29
588t606.m3
589t607 DATA
590t608 DATA
591t608.m1
592t609 DATA
593t61 DATA
594t610 DATA
595t610.m2
596t610.m4
597t610.m5
598t611 DATA
599t612 DATA
600t613 DATA
601t614 DATA
602t614.m10
603t614.m11
604t614.m2
605t614.m3
606t614.m4
607t614.m5
608t614.m7
609t614.m8
610t614.m9
611t615 DATA
612t616 DATA
613t617 DATA
614t618 DATA
615t618.m2
616t618.m4
617t618.m5
618t619 DATA
619t62 DATA
620t620 DATA
621t621 DATA
622t621.m19
623t621.m2
624t621.m20
625t621.m21
626t621.m22
627t621.m23
628t621.m24
629t621.m25
630t622 DATA
631t623 DATA
632t623.m1
633t624 DATA
634t625 DATA
635t625.m2
636t625.m4
637t625.m5
638t626 DATA
639t627 DATA
640t628 DATA
641t629 DATA
642t63 DATA
643t630 DATA
644t631 DATA
645t631.m0
646t632 DATA
647t633 DATA
648t634 DATA
649t635 DATA
650t635.m1
651t635.m2
652t635.m3
653t635.m4
654t635.m5
655t635.m6
656t636 DATA
657t637 DATA
658t638 DATA
659t638.m1
660t638.m2
661t638.m3
662t638.m4
663t638.m5
664t638.m6
665t638.m7
666t638.m8
667t638.m9
668t639 DATA
669t639.m1
670t639.m2
671t639.m3
672t639.m4
673t639.m5
674t639.m6
675t639.m7
676t639.m8
677t639.m9
678t64 DATA
679t640 DATA
680t640.m1
681t640.m2
682t640.m3
683t640.m4
684t640.m5
685t640.m6
686t641 DATA
687t641.m1
688t641.m2
689t641.m3
690t641.m4
691t641.m5
692t641.m6
693t641.m7
694t641.m8
695t641.m9
696t642 DATA
697t642.m1
698t642.m2
699t642.m3
700t642.m4
701t642.m5
702t643 DATA
703t643.m1
704t643.m2
705t643.m3
706t643.m4
707t643.m5
708t644 DATA
709t644.m1
710t644.m2
711t644.m3
712t644.m4
713t644.m5
714t645 DATA
715t645.m1
716t645.m2
717t645.m3
718t645.m4
719t645.m5
720t645.m6
721t645.m7
722t645.m8
723t645.m9
724t646 DATA
725t646.m1
726t646.m2
727t646.m3
728t646.m4
729t646.m5
730t646.m6
731t646.m7
732t646.m8
733t646.m9
734t647 DATA
735t647.m1
736t647.m2
737t647.m3
738t647.m4
739t647.m5
740t648 DATA
741t648.m1
742t648.m2
743t648.m3
744t648.m4
745t648.m5
746t65 DATA
747t650 DATA
748t650.m0
749t650.m1
750t650.m10
751t650.m11
752t650.m2
753t650.m3
754t650.m4
755t650.m5
756t650.m6
757t650.m7
758t650.m8
759t650.m9
760t651 DATA
761t651.m0
762t651.m1
763t651.m2
764t651.m3
765t651.m4
766t652 DATA
767t652.m0
768t652.m1
769t652.m2
770t652.m3
771t652.m4
772t653 DATA
773t653.m0
774t653.m1
775t653.m2
776t653.m3
777t653.m4
778t654 DATA
779t654.m0
780t654.m1
781t654.m2
782t654.m3
783t654.m4
784t655 DATA
785t655.m0
786t655.m1
787t655.m2
788t655.m3
789t655.m4
790t656 DATA
791t656.m0
792t656.m1
793t656.m2
794t656.m3
795t656.m4
796t657 DATA
797t657.m0
798t657.m1
799t657.m2
800t657.m3
801t657.m4
802t658 DATA
803t658.m0
804t658.m1
805t658.m2
806t658.m3
807t658.m4
808t659 DATA
809t659.m0
810t659.m1
811t659.m2
812t659.m3
813t659.m4
814t66 DATA
815t660 DATA
816t660.m0
817t660.m1
818t660.m2
819t660.m3
820t660.m4
821t661 DATA
822t661.m0
823t661.m1
824t661.m2
825t661.m3
826t661.m4
827t662 DATA
828t662.m0
829t662.m1
830t662.m2
831t662.m3
832t662.m4
833t663 DATA
834t663.m0
835t663.m1
836t663.m2
837t663.m3
838t663.m4
839t664 DATA
840t664.m0
841t664.m1
842t664.m2
843t664.m3
844t664.m4
845t665 DATA
846t665.m0
847t665.m1
848t665.m2
849t665.m3
850t665.m4
851t666 DATA
852t666.m0
853t666.m1
854t666.m2
855t666.m3
856t666.m4
857t667 DATA
858t667.m0
859t667.m1
860t667.m2
861t667.m3
862t667.m4
863t668 DATA
864t668.m0
865t668.m1
866t668.m2
867t668.m3
868t668.m4
869t669 DATA
870t669.m0
871t669.m1
872t669.m2
873t669.m3
874t669.m4
875t67 DATA
876t670 DATA
877t670.m0
878t670.m1
879t670.m2
880t670.m3
881t670.m4
882t671 DATA
883t671.m0
884t671.m1
885t671.m2
886t671.m3
887t671.m4
888t672 DATA
889t672.m0
890t672.m1
891t672.m2
892t672.m3
893t672.m4
894t673 DATA
895t673.m0
896t673.m1
897t673.m2
898t673.m3
899t673.m4
900t674 DATA
901t674.m0
902t674.m1
903t674.m2
904t674.m3
905t674.m4
906t675 DATA
907t675.m0
908t675.m1
909t675.m2
910t675.m3
911t675.m4
912t676 DATA
913t676.m0
914t676.m1
915t676.m2
916t676.m3
917t676.m4
918t677 DATA
919t677.m0
920t677.m1
921t677.m2
922t677.m3
923t677.m4
924t678 DATA
925t678.m0
926t678.m1
927t678.m2
928t678.m3
929t678.m4
930t679 DATA
931t679.m0
932t679.m1
933t679.m2
934t679.m3
935t679.m4
936t68 DATA
937t680 DATA
938t680.m0
939t680.m1
940t680.m2
941t680.m3
942t680.m4
943t681 DATA
944t681.m0
945t681.m1
946t681.m2
947t681.m3
948t681.m4
949t682 DATA
950t682.m0
951t682.m1
952t682.m2
953t682.m3
954t682.m4
955t683 DATA
956t683.m0
957t683.m1
958t683.m2
959t683.m3
960t683.m4
961t69 DATA
962t70 DATA
963t71 DATA
964t72 DATA
965t73 DATA
966t74 DATA
967t75 DATA
968t76 DATA
969t77 DATA
970t78 DATA
971t79 DATA
972t80 DATA
973t81 DATA
974t82 DATA
975t83 DATA
976t84 DATA
977t85 DATA
978t86 DATA
979t87 DATA
980t88 DATA
981t89 DATA
982t90 DATA
983t91 DATA
984t92 DATA
985t93 DATA
986t94 DATA
987t95 DATA
988t96 DATA
989t97 DATA
990t98 DATA
991t99 DATA
lib/libc/mingw/libarm32/printfilterpipelineprxy.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of PrintFilterPipelinePrxy.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PrintFilterPipelinePrxy.DLL"
7EXPORTS
8GetPrintProcessorCapabilities
9ClosePrintProcessor
10ControlPrintProcessor
11EnumPrintProcessorDatatypesW
12OpenPrintProcessor
13PrintDocumentOnPrintProcessor
lib/libc/mingw/libarm32/printui.def created+34
......@@ -0,0 +1,34 @@
1;
2; Definition file of PRINTUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PRINTUI.dll"
7EXPORTS
8ConstructPrinterFriendlyName
9PnPInterface
10PrintUIEntryW
11PrinterPropPageProvider
12ReleaseArgv
13StringToArgv
14ConnectToPrinterDlg
15DocumentPropertiesWrap
16LaunchPlatformHelp
17PrintNotifyTray_Exit
18PrintNotifyTray_Init
19PrintUIDownloadAndInstallLegacyDriver
20RegisterPrintNotify
21ShowErrorMessageHR
22ShowErrorMessageSC
23ShowHelpLinkDialog
24UnregisterPrintNotify
25bFolderEnumPrinters
26bFolderGetPrinter
27bFolderRefresh
28bPrinterSetup
29vDocumentDefaults
30vPrinterPropPages
31vQueueCreate
32vServerPropPages
33ord_32 @32
34PrintUIEntryDPIAwareW
lib/libc/mingw/libarm32/prnntfy.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of prnntfy.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "prnntfy.dll"
7EXPORTS
8AsyncUILoaderEntryW
9PrintNotifyTray_Exit
10PrintNotifyTray_Init
lib/libc/mingw/libarm32/procinst.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of procinst.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "procinst.dll"
7EXPORTS
8ProcessorClassInstall
lib/libc/mingw/libarm32/profext.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of PROFEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PROFEXT.dll"
7EXPORTS
8CreateAppContainerProfileWorker
9CreateDirectoryJunctionsForSystemWorker
10CreateDirectoryJunctionsForUserProfileWorker
11CreateGroupExWorker
12CreateLinkFileExWorker
13DeleteAppContainerProfileWorker
14DeleteGroupWorker
15DeleteLinkFileWorker
16DeriveAppContainerSidFromAppContainerNameWorker
17DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedNameWorker
18GetAppContainerFolderPathWorker
19GetAppContainerRegistryLocationWorker
20LookupAppContainerDisplayNameWorker
21ProcessGroupPolicyCompletedExWorker
22ProcessGroupPolicyCompletedWorker
23RsopAccessCheckByTypeWorker
24RsopFileAccessCheckWorker
25RsopResetPolicySettingStatusWorker
26RsopSetPolicySettingStatusWorker
27UpdateAppContainerProfileWorker
lib/libc/mingw/libarm32/profsvc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of PROFSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PROFSVC.dll"
7EXPORTS
8UserProfileServiceMain
9GetExclusionListFromRegistry
10GetUserChoiceForSlowLink
11GetUserPreferenceValue
lib/libc/mingw/libarm32/profsvcext.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of PROFSVCEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PROFSVCEXT.dll"
7EXPORTS
8CreateRoamingProviderInstance
9ConnectToRoamingVhdProfile
10InitializeSuspendFolderPolicyAndUploadTaskConfig
11RefreshSuspendFolderPolicyAndUploadTaskConfig
12StartRoamingClassFactories
13StopRoamingClassFactories
14WaitForNetworkForRoamingProfile
lib/libc/mingw/libarm32/provsvc.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of PROVIDER.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PROVIDER.dll"
7EXPORTS
8ProviderServiceMain
lib/libc/mingw/libarm32/proximitycommonpal.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of ProximityCommonPal.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ProximityCommonPal.dll"
7EXPORTS
8PAL_AppHasPackage
9PAL_FreeTransientObjectSecurityAttribute
10PAL_GetAppPlatformQualifier
11PAL_GetSupportedBrowseTypes
12PAL_HoldReferenceUntilAppExit
13PAL_QueryTransientObjectSecurityAttribute
14PAL_RegisterAppSuspendResumeCallback
15PAL_UnregisterAppSuspendResumeCallback
lib/libc/mingw/libarm32/proximityrtapipal.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of ProximityRtapiPal.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ProximityRtapiPal.dll"
7EXPORTS
8PAL_App2DeviceFindAllPeers
9PAL_CheckForApp2DeviceAlternateId
10PAL_CheckForBluetoothSupport
11PAL_GetCurrentProcessExplicitAppUserModelID
12PAL_ParseAppUserModelId
13PAL_SetCurrentProcessExplicitAppUserModelID
lib/libc/mingw/libarm32/proximityservice.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of ProximityService.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ProximityService.dll"
7EXPORTS
8InitProximityService
9SessionChangedEvent
10GetProximityClientCount
11CleanupProximityService
12ord_14 @14
13InitProximityServiceEx
lib/libc/mingw/libarm32/proximityservicepal.def created+34
......@@ -0,0 +1,34 @@
1;
2; Definition file of ProximityServicePAL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ProximityServicePAL.dll"
7EXPORTS
8PAL_AllowNetworkInterface
9PAL_BluetoothEnableDiscovery
10PAL_BluetoothFindDeviceClose
11PAL_BluetoothFindFirstDevice
12PAL_BluetoothFindFirstRadio
13PAL_BluetoothFindRadioClose
14PAL_BluetoothOpenFirewall
15PAL_ConvertAppIdToPackageName
16PAL_CreateForegroundNotifier
17PAL_CreateUnicastIpAddressEntry
18PAL_DeleteUnicastIpAddressEntry
19PAL_FWIndicateTupleInUse
20PAL_FWResetIndicatedTupleInUse
21PAL_GetCallingApplicationInfo
22PAL_GetConsoleSessionInfo
23PAL_HasWFDHardwareSupport
24PAL_IsInteractiveApplicationId
25PAL_IsMachineDomainJoined
26PAL_OpenProcessForQuery
27PAL_RegisterConnectedStandbyNotification
28PAL_RegisterConsoleDisplayStateNotifications
29PAL_ServiceFreeTransientObjectSecurityAttribute
30PAL_ServiceQueryTransientObjectSecurityAttribute
31PAL_UnregisterConnectedStandbyNotification
32PAL_UnregisterConsoleDisplayStateNotifications
33PAL_VerifyCallerIsElevated
34PAL_CoCreateInstanceInSession
lib/libc/mingw/libarm32/prvdmofcomp.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of prvdmofcomp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "prvdmofcomp.dll"
7EXPORTS
8??0MIFree@@QAA@PAX@Z
9??1MIFree@@QAA@XZ
10??4MIServer@@QAAAAV0@ABV0@@Z
11CompileSchemaToWMI
12CreateRegisterParameter
13GetProviderSchema
14GetProviderSchemaFile
lib/libc/mingw/libarm32/pshed.def created+30
......@@ -0,0 +1,30 @@
1;
2; Definition file of PSHED.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PSHED.dll"
7EXPORTS
8PshedAllocateMemory
9PshedArePluginsPresent
10PshedAttemptErrorRecovery
11PshedBugCheckSystem
12PshedClearErrorRecord
13PshedDisableErrorSource
14PshedEnableErrorSource
15PshedFinalizeErrorRecord
16PshedFreeMemory
17PshedGetAllErrorSources
18PshedGetBootErrorPacket
19PshedGetErrorSourceInfo
20PshedGetInjectionCapabilities
21PshedInitialize
22PshedInjectError
23PshedIsSystemWheaEnabled
24PshedMarkHiberPhase
25PshedReadErrorRecord
26PshedRegisterPlugin
27PshedRetrieveErrorInfo
28PshedSetErrorSourceInfo
29PshedSynchronizeExecution
30PshedWriteErrorRecord
lib/libc/mingw/libarm32/psmodulediscoveryprovider.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of PSModuleDiscoveryProvider.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PSModuleDiscoveryProvider.DLL"
7EXPORTS
8GetProviderClassID
9MI_Main
lib/libc/mingw/libarm32/puiapi.def created+55
......@@ -0,0 +1,55 @@
1;
2; Definition file of puiapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "puiapi.dll"
7EXPORTS
8PUIAPI_CreateInstance
9PUIAPI_GetErrorString
10PUIAPI_GetPrinter
11PUIAPI_IWaitNotify_CreateInstance
12PUIAPI_IWaitNotify_RegisterTimer
13PUIAPI_IWaitNotify_RegisterWaitObject
14PUIAPI_IWaitNotify_UnregisterCookie
15PUIAPI_ShowBrowseForPrinterDialog
16PUIAPI_ShowDetailsMessageBox
17PUIAPI_ShowDriverPackageRemovalUI
18STRAPI_ConvertCase
19STRAPI_CrackPrintUNCName
20STRAPI_FindAndReplace
21STRAPI_Format
22STRAPI_FormatMsg
23STRAPI_FormatMsgV
24STRAPI_FormatV
25STRAPI_GUID2String
26STRAPI_GetJobStatusString
27STRAPI_GetPrinterStatusString
28STRAPI_LoadString
29STRAPI_MultiCat
30STRAPI_String2GUID
31STRAPI_TrimString
32STRAPI_XMLSafeText
33STRBUF_AppendString
34STRBUF_Create
35STRBUF_CreateBSTR
36STRBUF_DeleteSubstring
37STRBUF_Destroy
38STRBUF_FindAndReplace
39STRBUF_Format
40STRBUF_InsertString
41STRBUF_MultiCat
42STRBUF_ToLower
43STRBUF_ToUpper
44STRBUF_TrimLeft
45STRBUF_TrimRight
46STRBUF_Truncate
47STRBUF_Update
48XMLAPI_GetAttributeDouble
49XMLAPI_GetAttributeLong
50XMLAPI_GetAttributeString
51XMLAPI_GetAttributeULongLong
52XMLAPI_SetAttributeDouble
53XMLAPI_SetAttributeLong
54XMLAPI_SetAttributeString
55XMLAPI_SetAttributeULongLong
lib/libc/mingw/libarm32/pwlauncher.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of pwlauncher.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pwlauncher.dll"
7EXPORTS
8ShowPortableWorkspaceLauncherConfigurationUX
lib/libc/mingw/libarm32/pwrshplugin.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of pwrshplugin.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "pwrshplugin.dll"
7EXPORTS
8GetCLRVersionForPSVersion
9PerformWSManPluginReportCompletion
10WSManPluginCommand
11WSManPluginConnect
12WSManPluginReceive
13WSManPluginReleaseCommandContext
14WSManPluginReleaseShellContext
15WSManPluginSend
16WSManPluginShell
17WSManPluginShutdown
18WSManPluginSignal
19WSManPluginStartup
lib/libc/mingw/libarm32/qmgr.def created+29
......@@ -0,0 +1,29 @@
1;
2; Definition file of qmgr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "qmgr.dll"
7EXPORTS
8??0CNestedImpersonation@@QAA@ABVTokenHandle@@@Z
9??0CNestedImpersonation@@QAA@XZ
10??0PROXY_SETTINGS_CONTAINER@@QAA@ABV?$GenericStringHandle@G@@ABVTokenHandle@@1PBUPROXY_SETTINGS@@@Z
11??4CPerfMon@@QAAAAV0@ABV0@@Z
12?BITSAlloc@@YAPAXI@Z
13?BITSFree@@YAXPAX@Z
14?BytesRemainingInCurrentRange@CRangeCollection@@QBA_KXZ
15?CalculateBytesTotal@CRangeCollection@@IAA_NXZ
16?CounterIdToPerfItem@CPerfMon@@ABAPAU_PERF_ITEM@1@PAU__COUNTER_ID@1@@Z
17?Find@CCredentialsContainer@@QBAJW4__MIDL_IBackgroundCopyJob2_0001@@W4__MIDL_IBackgroundCopyJob2_0002@@PAPAU__MIDL_IBackgroundCopyJob2_0005@@@Z
18?GetCounter32@CPerfMon@@QAAPAJPAU__COUNTER_ID@1@PAU__INSTANCE_ID@1@@Z
19?GetCounter64@CPerfMon@@QAAPA_JPAU__COUNTER_ID@1@PAU__INSTANCE_ID@1@@Z
20?GetNetworkRouteInfo@@YAKPBGPAUsockaddr_storage@@@Z
21?GetSubRanges@CRangeCollection@@QBAJ_K0KIPAPAV1@@Z
22?HostFromProxyDescription@@YA?AV?$auto_ptr@G@std@@PAG@Z
23?IsValidInstId@CPerfMon@@ABAHPAU__OBJECT_ORD@1@PAU__INSTANCE_ID@1@@Z
24?IsValidObjOrd@CPerfMon@@ABAHPAU__OBJECT_ORD@1@@Z
25?ObjectIdToPerfItem@CPerfMon@@ABAPAU_PERF_ITEM@1@PAU__OBJECT_ID@1@@Z
26?ObjectIdToPerfItemIndex@CPerfMon@@ABAHPAU__OBJECT_ID@1@@Z
27ServiceMain
28?s_EmptyString@?$GenericStringHandle@G@@0UStringData@1@A DATA
29BITSServiceMain
lib/libc/mingw/libarm32/qshvhost.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of QShvHost.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "QShvHost.dll"
7EXPORTS
8QuarCreateSession
9QuarDestroySession
10QuarFreeMemory
11QuarInitialize
12QuarSessionEvaluateClientMachineHealth
13QuarSessionGetFixupServerList
14QuarSessionGetId
15QuarSessionGetMachineInventory
16QuarSessionGetShvResultList
17QuarSessionGetSoHResponse
18QuarSessionSetNewQuarantineStatus
19QuarUninitialize
lib/libc/mingw/libarm32/racengn.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of RacEngn.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RacEngn.DLL"
7EXPORTS
8RacSysprepGeneralize
9RacSysprepSpecialize
lib/libc/mingw/libarm32/racpldlg.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of RESMON.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RESMON.dll"
7EXPORTS
8ShowPasswordDialog
lib/libc/mingw/libarm32/radardt.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of radardt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "radardt.dll"
7EXPORTS
8RdrSysprepSpecialize
9WdiDiagnosticModuleMain
10WdiGetDiagnosticModuleInterfaceVersion
11WdiHandleInstance
lib/libc/mingw/libarm32/radarrs.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of radarrs.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "radarrs.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/radcui.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of RADCUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RADCUI.dll"
7EXPORTS
8DUISubscribeWizardModal
9DUIRemoveSubscriptionDialogModal
lib/libc/mingw/libarm32/rascfg.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of rascfg.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rascfg.dll"
7EXPORTS
8ModemClassCoInstaller
lib/libc/mingw/libarm32/raschapext.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of RASCHAPEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RASCHAPEXT.dll"
7EXPORTS
8RasChapExt_FreeMemory
9RasChapExt_GetConfigForceNotDomainJoined
10RasChapExt_GetConfigIgnoreIASLogon
11RasChapExt_GetConfigKeepCredentialsOnFailure
12RasChapExt_GetUserCredentials
13RasChapExt_ShowHelp
lib/libc/mingw/libarm32/rascustom.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of RASCUSTOM.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RASCUSTOM.DLL"
7EXPORTS
8InitializeProtocolEngine
9SendMessageToProtocolEngine
10UninitializeProtocolEngine
11VpnBrokerPluginIsInstalled
12VpnBrokerRegisterForPluginInstallations
13VpnSmCommsPluginsNotifyLogOff
14VpnSmCommsPluginsRoamToBestCostInterface
lib/libc/mingw/libarm32/rasman.def created+192
......@@ -0,0 +1,192 @@
1;
2; Definition file of rasman.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rasman.dll"
7EXPORTS
8IsRasmanProcess
9RasActivateRoute
10RasActivateRouteEx
11RasAddConnectionPort
12RasAddNotification
13RasAddNotificationEx
14RasAllocInterfaceLuidIndex
15RasAllocateRoute
16RasApplyPostConnectActions
17RasAutoTriggerSaveCachedCreds
18RasBundleClearStatistics
19RasBundleClearStatisticsEx
20RasBundleGetPort
21RasBundleGetStatistics
22RasBundleGetStatisticsEx
23RasClearPortUserData
24RasCompressionGetInfo
25RasCompressionSetInfo
26RasConnectionEnum
27RasConnectionGetStatistics
28RasCreateConnection
29RasDeAllocateRoute
30RasDeleteIkev2PskPolicy
31RasDestroyConnection
32RasDeviceConnect
33RasDeviceEnum
34RasDeviceGetInfo
35RasDeviceSetInfo
36RasDeviceSetInfoSafe
37RasDoIke
38RasEnableIpSec
39RasEnumConnectionPorts
40RasEnumLanNets
41RasFindPrerequisiteEntry
42RasFreeBuffer
43RasFreeInterfaceLuidIndex
44RasGetAutoTriggerData
45RasGetBuffer
46RasGetCalledIdInfo
47RasGetCompartmentInfo
48RasGetConnectInfo
49RasGetConnectionParams
50RasGetConnectionUserData
51RasGetCustomScriptDll
52RasGetDevConfig
53RasGetDevConfigEx
54RasGetDeviceConfigInfo
55RasGetDeviceName
56RasGetDeviceNameW
57RasGetDialMachineEventContext
58RasGetDialParams
59RasGetEapUIData
60RasGetEapUserInfo
61RasGetFramingCapabilities
62RasGetHConnFromEntry
63RasGetHportFromConnection
64RasGetInfo
65RasGetInfoEx
66RasGetKey
67RasGetNdiswanDriverCaps
68RasGetNotificationEntry
69RasGetNumPortOpen
70RasGetPortDialParams
71RasGetPortUserData
72RasGetProtocolInfo
73RasGetTimeSinceLastActivity
74RasGetTriggerAuthData
75RasGetUnicodeDeviceName
76RasGetUserCredentials
77RasInitialize
78RasInitializeNoWait
79RasIsPulseDial
80RasIsTrustedCustomDll
81RasLinkGetStatistics
82RasPlumbIkev2PskPolicy
83RasPortBundle
84RasPortCancelReceive
85RasPortClearStatistics
86RasPortClose
87RasPortConnectComplete
88RasPortDisconnect
89RasPortEnum
90RasPortEnumProtocols
91RasPortFree
92RasPortGetBundle
93RasPortGetBundledPort
94RasPortGetFramingEx
95RasPortGetInfo
96RasPortGetProtocolCompression
97RasPortGetStatistics
98RasPortGetStatisticsEx
99RasPortListen
100RasPortOpen
101RasPortOpenEx
102RasPortReceive
103RasPortReceiveEx
104RasPortReserve
105RasPortRetrieveUserData
106RasPortSend
107RasPortSetFraming
108RasPortSetFramingEx
109RasPortSetInfo
110RasPortSetProtocolCompression
111RasPortStoreUserData
112RasProtocolCallback
113RasProtocolChangePassword
114RasProtocolEnum
115RasProtocolGetInfo
116RasProtocolRetry
117RasProtocolStart
118RasProtocolStarted
119RasProtocolStop
120RasProtocolUpdateConnection
121RasRPCBind
122RasRefConnection
123RasReferenceCustomCount
124RasReferenceRasman
125RasRegisterPnPEvent
126RasRegisterPnPHandler
127RasRegisterRedialCallback
128RasRemoveNotificationEx
129RasRequestNotification
130RasRpcConnect
131RasRpcConnectServer
132RasRpcDeleteEntry
133RasRpcDeviceEnum
134RasRpcDisconnect
135RasRpcDisconnectServer
136RasRpcEnumConnections
137RasRpcGetCountryInfo
138RasRpcGetDevConfig
139RasRpcGetErrorString
140RasRpcGetInstalledProtocols
141RasRpcGetInstalledProtocolsEx
142RasRpcGetSystemDirectory
143RasRpcGetUserPreferences
144RasRpcGetVersion
145RasRpcPortEnum
146RasRpcPortGetInfo
147RasRpcRemoteGetSystemDirectory
148RasRpcRemoteGetUserPreferences
149RasRpcRemoteRasDeleteEntry
150RasRpcRemoteSetUserPreferences
151RasRpcSetUserPreferences
152RasRpcUnloadDll
153RasSecurityDialogGetInfo
154RasSecurityDialogReceive
155RasSecurityDialogSend
156RasSendCreds
157RasSendNotification
158RasSendProtocolResultToRasman
159RasServerPortClose
160RasSetAddressDisable
161RasSetAdvConnectionParams
162RasSetCachedCredentials
163RasSetCalledIdInfo
164RasSetCommSettings
165RasSetConnectionParams
166RasSetConnectionUserData
167RasSetDevConfig
168RasSetDeviceConfigInfo
169RasSetDialMachineEventHandle
170RasSetDialParams
171RasSetEapInfo
172RasSetEapUIData
173RasSetEapUserInfo
174RasSetEncPassword
175RasSetIPAddresses
176RasSetKey
177RasSetNetworkInfo
178RasSetPortUserData
179RasSetRouterUsage
180RasSetTriggerAuthData
181RasSetTunnelEndPoints
182RasSetVpnClientConnectionType
183RasSetupSstpServerConfig
184RasSignalActionRequired
185RasSignalMonitorThreadExit
186RasSignalNewConnection
187RasStartProtocolRenegotiation
188RasStartRasAutoIfRequired
189RasUpdateAutoTriggerRegKeys
190RasUpdateDefaultRouteSettings
191RasUpdateQoSPolicies
192RasmanUninitialize
lib/libc/mingw/libarm32/rasmans.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of rasmans.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rasmans.dll"
7EXPORTS
8ServiceMain
9ServiceRequestInProcess
10SetEntryDialParams
11VpnProfileMatchingNrpt
12VpnProfileNrptHasExemptions
lib/libc/mingw/libarm32/rasppp.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of rasppp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rasppp.dll"
7EXPORTS
8InitializeProtocolEngine
9InitializeServerProtocolEngine
10PppStop
11RasCpEnumProtocolIds
12RasCpGetInfo
13SendMessageToProtocolEngine
14UninitializeProtocolEngine
15UninitializeServerProtocolEngine
lib/libc/mingw/libarm32/rastls.def created+28
......@@ -0,0 +1,28 @@
1;
2; Definition file of rastls.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rastls.dll"
7EXPORTS
8RasEapCreateConnectionProperties2
9RasEapCreateConnectionPropertiesXml
10RasEapCreateMethodConfiguration
11RasEapCreateUserProperties2
12RasEapCreateConnectionProperties
13RasEapCreateUserProperties
14RasEapFreeMemory
15RasEapGetConfigBlobAndUserBlob
16RasEapGetCredentials
17RasEapGetIdentity
18RasEapGetIdentityPageGuid
19RasEapGetInfo
20RasEapGetMethodProperties
21RasEapGetNextPageGuid
22RasEapInvokeConfigUI
23RasEapInvokeInteractiveUI
24RasEapQueryCredentialInputFields
25RasEapQueryInteractiveUIInputFields
26RasEapQueryUIBlobFromInteractiveUIInputFields
27RasEapQueryUserBlobFromCredentialInputFields
28RasEapUpdateServerConfig
lib/libc/mingw/libarm32/rastlsext.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of RASTLSEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RASTLSEXT.dll"
7EXPORTS
8RasTlsExt_FreeMemory
9RasTlsExt_GetConfigCacheOnlyCertValidation
10RasTlsExt_GetConfigForceNotDomainJoined
11RasTlsExt_GetPinUserBlob
12RasTlsExt_GetServerCertDetails
13RasTlsExt_PackUserBlob
14RasTlsExt_SelectCertificate
15RasTlsExt_ShowHelp
16RasTlsExt_UnpackUserBlob
17RasTlsExt_ValidateServer
lib/libc/mingw/libarm32/rdbui.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of rdbui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rdbui.dll"
7EXPORTS
8RDBMgmtLaunchPropertiesW
lib/libc/mingw/libarm32/rdpcore.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of RDPCORE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RDPCORE.dll"
7EXPORTS
8RDPAPI_CreateInstance
lib/libc/mingw/libarm32/rdpendp.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of RdpEndpoint.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RdpEndpoint.dll"
7EXPORTS
8GetTSAudioEndpointEnumeratorForSession
lib/libc/mingw/libarm32/rdsappxhelper.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of RDSAppXHelper.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RDSAppXHelper.dll"
7EXPORTS
8DestroyAppXHelper
9GetInstanceOfAppXPackageManager
10InitializeAppXHelper
lib/libc/mingw/libarm32/rdsdwmdr.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of rdsdwmdr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rdsdwmdr.dll"
7EXPORTS
8DwmIndirectCreate
9DwmIndirectOutput
10DwmIndirectSetDebugFlag
lib/libc/mingw/libarm32/rdvidcrl.def created+32
......@@ -0,0 +1,32 @@
1;
2; Definition file of rdvidcrl.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rdvidcrl.dll"
7EXPORTS
8Initialize
9Uninitialize
10PassportFreeMemory
11CreateIdentityHandle
12SetCredential
13GetIdentityProperty
14SetIdentityProperty
15CloseIdentityHandle
16AuthIdentityToService
17GetAuthState
18LogonIdentity
19InitializeEx
20LogonIdentityEx
21AuthIdentityToServiceEx
22GetAuthStateEx
23CancelPendingRequest
24GetIdentityPropertyByName
25SetIdcrlOptions
26GetExtendedError
27GetAuthenticationStatus
28GetRealmInfo
29CreateIdentityHandleEx
30GetToken
31CreateIdentityHandle2
32GetRealmInfo2
lib/libc/mingw/libarm32/rdvvmtransport.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of rdvvmtransport.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rdvvmtransport.dll"
7EXPORTS
8RdvTransport_CreateInstance
9RdvTransport_GetInstance
10RdvTransport_TerminateInstance
lib/libc/mingw/libarm32/reagent.def created+63
......@@ -0,0 +1,63 @@
1;
2; Definition file of ReAgent.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ReAgent.dll"
7EXPORTS
8WinRE_Specialize
9WinReClearOemImagePath
10WinReRestoreConfigAfterPBR
11WinReServiceBootUxFiles
12WinReServicePbrFiles
13winreCollectAuxiliaryData
14WinRECheckGuid
15WinREUseNewPBRImage
16WinRE_Generalize
17WinReAddLogFile
18WinReClearBootApp
19WinReClearError
20WinReCompleteRecovery
21WinReConfigureTask
22WinReCopyLogFilesToRamdisk
23WinReCopySetupFiles
24WinReCreateLogInstance
25WinReCreateLogInstanceEx
26WinReDeleteLogFiles
27WinReGetConfig
28WinReGetCustomization
29WinReGetError
30WinReGetGroupPolicies
31WinReGetLogDirPath
32WinReGetLogFile
33WinReGetWIMInfo
34WinReInstall
35WinReInstallOnTargetOS
36WinReIsInstallMedia
37WinReIsWimBootEnabled
38WinReIsWinPE
39WinReOobeInstall
40WinReOpenLogInstance
41WinRePostBCDRepair
42WinRePostRecovery
43WinReRepair
44WinReRestoreLogFiles
45WinReSetBootApp
46WinReSetConfig
47WinReSetCustomization
48WinReSetError
49WinReSetRecoveryAction
50WinReSetRecoveryActionEx
51WinReSetTriggerFile
52WinReSetupBackupWinRE
53WinReSetupCheckWinRE
54WinReSetupInstall
55WinReSetupMigrateDrivers
56WinReSetupRestoreWinRE
57WinReSetupRestoreWinREEx
58WinReSetupSetImage
59WinReUnInstall
60WinReUpdateLogInstance
61WinReValidateRecoveryWim
62winreFindInstallMedia
63winreGetBinaryArch
lib/libc/mingw/libarm32/reinfo.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of ReInfo.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ReInfo.dll"
7EXPORTS
8WinReGetConfig
lib/libc/mingw/libarm32/reseteng.def created+49
......@@ -0,0 +1,49 @@
1;
2; Definition file of ResetEng.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ResetEng.dll"
7EXPORTS
8RjvApplyData
9RjvApplyDataEntryPoint
10RjvBasicReset
11RjvBasicResetChecks
12RjvCheckBattery
13RjvCheckBitLocker
14RjvCheckDiskSpace
15RjvCheckOsHealth
16RjvCheckRecoveryImage
17RjvCheckWinRE
18RjvCleanup
19RjvCommitReset
20RjvDelayedCleanup
21RjvDelayedCleanupEntryPoint
22RjvFactoryReset
23RjvFactoryResetChecks
24RjvFinalize
25RjvGenerateBMRConfigData
26RjvGetVolumeInfo
27RjvInitializeEngine
28RjvLoadState
29RjvLogFailureEntryPoint
30RjvLogSuccessEntryPoint
31RjvOfflineCleanup
32RjvPBCDClearRollBackEntry
33RjvPBCDSetRollBackEntry
34RjvPDeleteFilesFromVolume
35RjvPEraseVolume
36RjvPostApplyDataEntryPoint
37RjvPreApplyDataEntryPoint
38RjvPrepareForReset
39RjvReInitializeEngine
40RjvRollBack
41RjvSaveState
42RjvSendFailureReport
43RjvStageBasicReset
44RjvSysResetErrBasicEntryPoint
45RjvSysResetErrFactoryEntryPoint
46RjvTestFunction
47RjvUndoPrepareForReset
48RjvUninitializeEngine
49RjvVerifySystemDiskInfo
lib/libc/mingw/libarm32/rgb9rast.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of rgbrast.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rgbrast.dll"
7EXPORTS
8??0PrimProcessor@@QAA@XZ
9??1PrimProcessor@@QAA@XZ
10??4PrimProcessor@@QAAAAV0@ABV0@@Z
11?AllocSpans@PrimProcessor@@QAAJPAIPAPAUtagD3DI_RASTSPAN@@@Z
12?AppendPrim@PrimProcessor@@AAAJXZ
13?Begin@PrimProcessor@@QAAXXZ
14?BeginPrimSet@PrimProcessor@@QAAXW4_D3DPRIMITIVETYPE@@W4_RAST_VERTEX_TYPE@@@Z
15?ClrFlags@PrimProcessor@@QAAXI@Z
16?End@PrimProcessor@@QAAJXZ
17?FillPointSpan@PrimProcessor@@AAAXPAU_D3DTLVERTEX@@PAUtagD3DI_RASTSPAN@@@Z
18?Flush@PrimProcessor@@AAAJXZ
19?FlushPartial@PrimProcessor@@AAAJXZ
20?FreeSpans@PrimProcessor@@QAAXI@Z
21?GetFlags@PrimProcessor@@QAAIXZ
22?Initialize@PrimProcessor@@QAAJXZ
23?Line@PrimProcessor@@QAAJPAU_D3DTLVERTEX@@00@Z
24?LineSetup@PrimProcessor@@AAAHPAU_D3DTLVERTEX@@0@Z
25?NormalizeLineRHW@PrimProcessor@@AAAXPAU_D3DTLVERTEX@@0@Z
26?NormalizePointRHW@PrimProcessor@@AAAXPAU_D3DTLVERTEX@@@Z
27?NormalizeTriRHW@PrimProcessor@@AAAXPAU_D3DTLVERTEX@@00@Z
28?Point@PrimProcessor@@QAAJPAU_D3DTLVERTEX@@0@Z
29?PointDiamondCheck@PrimProcessor@@AAAHHHHH@Z
30?ResetBuffer@PrimProcessor@@AAAXXZ
31?SetCtx@PrimProcessor@@QAAXPAUtagD3DI_RASTCTX@@@Z
32?SetFlags@PrimProcessor@@QAAXI@Z
33?SetTriFunctions@PrimProcessor@@AAAXXZ
34?StateChanged@PrimProcessor@@QAAXXZ
35?Tri@PrimProcessor@@QAAJPAU_D3DTLVERTEX@@00@Z
36?TriSetup@PrimProcessor@@AAAHPAU_D3DTLVERTEX@@00@Z
37D3D9GetSWInfo
lib/libc/mingw/libarm32/rometadata.def deleted-8
......@@ -1,8 +0,0 @@
1;
2; Definition file of RoMetadata.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RoMetadata.dll"
7EXPORTS
8MetaDataGetDispenser
lib/libc/mingw/libarm32/rpchttp.def created+25
......@@ -0,0 +1,25 @@
1;
2; Definition file of rpchttp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "rpchttp.dll"
7EXPORTS
8CompareHttpTransportCredentials
9ConvertToUnicodeHttpTransportCredentials
10DuplicateHttpTransportCredentials
11FreeHttpTransportCredentials
12HTTP2GetRpcConnectionTransport
13HTTP2ProcessComplexTReceive
14HTTP2ProcessComplexTSend
15HTTP2ProcessRuntimePostedEvent
16HTTP2TestHook
17HttpParseNetworkOptions
18HttpSendIdentifyResponse
19I_RpcGetRpcProxy
20I_RpcTransFreeHttpCredentials
21I_RpcTransGetHttpCredentials
22WS_HTTP2_CONNECTION__Initialize
23WS_HTTP2_INITIAL_CONNECTION__new
24I_RpcProxyNewConnection
25I_RpcReplyToClientWithStatus
lib/libc/mingw/libarm32/rpcrtremote.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of RpcRtRemote.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RpcRtRemote.dll"
7EXPORTS
8DllGetContractDescription
9I_RpcExtInitializeExtensionPoint
lib/libc/mingw/libarm32/rshx32.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of RSHX32.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RSHX32.dll"
7EXPORTS
8EditFSSecurity
lib/libc/mingw/libarm32/rtworkq.def created+38
......@@ -0,0 +1,38 @@
1;
2; Definition file of RTWorkQ.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "RTWorkQ.DLL"
7EXPORTS
8RtwqAddPeriodicCallback
9RtwqAllocateSerialWorkQueue
10RtwqAllocateWorkQueue
11RtwqBeginRegisterWorkQueueWithMMCSS
12RtwqBeginUnregisterWorkQueueWithMMCSS
13RtwqCancelWorkItem
14RtwqCreateAsyncResult
15RtwqEndRegisterWorkQueueWithMMCSS
16RtwqEndUnregisterWorkQueueWithMMCSS
17RtwqGetWorkQueueMMCSSClass
18RtwqGetWorkQueueMMCSSPriority
19RtwqGetWorkQueueMMCSSTaskId
20RtwqInvokeCallback
21RtwqJoinWorkQueue
22RtwqLockPlatform
23RtwqLockSharedWorkQueue
24RtwqLockWorkQueue
25RtwqPutWaitingWorkItem
26RtwqPutWorkItem
27RtwqRegisterPlatformEvents
28RtwqRegisterPlatformWithMMCSS
29RtwqRemovePeriodicCallback
30RtwqScheduleWorkItem
31RtwqSetLongRunning
32RtwqShutdown
33RtwqStartup
34RtwqUnjoinWorkQueue
35RtwqUnlockPlatform
36RtwqUnlockWorkQueue
37RtwqUnregisterPlatformEvents
38RtwqUnregisterPlatformFromMMCSS
lib/libc/mingw/libarm32/samlib.def created+77
......@@ -0,0 +1,77 @@
1;
2; Definition file of SAMLIB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SAMLIB.dll"
7EXPORTS
8OnMachineUILanguageInit
9SamAddMemberToAlias
10SamAddMemberToGroup
11SamAddMultipleMembersToAlias
12SamChangePasswordUser
13SamChangePasswordUser2
14SamCloseHandle
15SamConnect
16SamConnectWithCreds
17SamCreateAliasInDomain
18SamCreateGroupInDomain
19SamCreateUser2InDomain
20SamCreateUserInDomain
21SamDeleteAlias
22SamDeleteGroup
23SamDeleteUser
24SamEnumerateAliasesInDomain
25SamEnumerateDomainsInSamServer
26SamEnumerateGroupsInDomain
27SamEnumerateUsersInDomain
28SamEnumerateUsersInDomain2
29SamFreeMemory
30SamGetAliasMembership
31SamGetCompatibilityMode
32SamGetDisplayEnumerationIndex
33SamGetGroupsForUser
34SamGetMembersInAlias
35SamGetMembersInGroup
36SamLookupDomainInSamServer
37SamLookupIdsInDomain
38SamLookupNamesInDomain
39SamLookupNamesInDomain2
40SamOpenAlias
41SamOpenDomain
42SamOpenGroup
43SamOpenUser
44SamPerformGenericOperation
45SamQueryDisplayInformation
46SamQueryInformationAlias
47SamQueryInformationDomain
48SamQueryInformationGroup
49SamQueryInformationUser
50SamQueryLocalizableAccountsInDomain
51SamQuerySecurityObject
52SamRegisterObjectChangeNotification
53SamRemoveMemberFromAlias
54SamRemoveMemberFromForeignDomain
55SamRemoveMemberFromGroup
56SamRemoveMultipleMembersFromAlias
57SamRidToSid
58SamSetInformationAlias
59SamSetInformationDomain
60SamSetInformationGroup
61SamSetInformationUser
62SamSetMemberAttributesOfGroup
63SamSetSecurityObject
64SamShutdownSamServer
65SamTestPrivateFunctionsDomain
66SamTestPrivateFunctionsUser
67SamUnregisterObjectChangeNotification
68SamValidatePassword
69SamiChangeKeys
70SamiChangePasswordUser
71SamiChangePasswordUser2
72SamiEncryptPasswords
73SamiLmChangePasswordUser
74SamiSetBootKeyInformation
75SamiSetDSRMPassword
76SamiSetDSRMPasswordOWF
77SamiSyncDSRMPasswordFromAccount
lib/libc/mingw/libarm32/samsrv.def created+328
......@@ -0,0 +1,328 @@
1;
2; Definition file of SAMSRV.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SAMSRV.dll"
7EXPORTS
8RtlDeleteElementGenericTable2
9RtlInitializeGenericTable2
10RtlInsertElementGenericTable2
11RtlLookupElementGenericTable2
12SAM_MIDL_user_allocate
13SAM_MIDL_user_free
14SamDsExtAlloc
15SamDsExtFree
16SamIAccountRestrictions
17SamIAddDSNameToAlias
18SamIChangePasswordForeignUser
19SamIClaimIsValid
20SamIConnect
21SamIConvertSecurityAttributesToClaimsBlob
22SamICopyCurrentDomainAccountSettings
23SamICreateKrbTgt
24SamIDecodeClaimsBlob
25SamIDecodeClaimsBlobIntoClaimsSet
26SamIDecodeClaimsBlobToAuthz
27SamIDemote
28SamIDemoteUndo
29SamIDoFSMORoleChange
30SamIFreeAuthzSecurityAttributesInfo
31SamIFreeClaimsBlob
32SamIFreeDecodedClaimsSet
33SamIFreeLookupNamesInfo
34SamIFreeLookupSidsInfo
35SamIFreeOidList
36SamIFreeRealmList
37SamIFreeSecurityAttributesInfo
38SamIFreeSidAndAttributesList
39SamIFreeSidArray
40SamIFreeVoid
41SamIFree_SAMPR_DISPLAY_INFO_BUFFER
42SamIFree_SAMPR_DOMAIN_INFO_BUFFER
43SamIFree_SAMPR_ENUMERATION_BUFFER
44SamIFree_SAMPR_GET_GROUPS_BUFFER
45SamIFree_SAMPR_RETURNED_USTRING_ARRAY
46SamIFree_SAMPR_ULONG_ARRAY
47SamIFree_SAMPR_USER_INFO_BUFFER
48SamIFree_UserInternal6Information
49SamIGetAliasMembership
50SamIGetConfigurationOidList
51SamIGetDefaultAdministratorName
52SamIGetResourceGroupMembershipsTransitive
53SamIGetUserLogonInformation
54SamIGetUserLogonInformation2
55SamIGetUserLogonInformation3
56SamIGetUserLogonInformationEx
57SamIHandleObjectUpdate
58SamIImpersonateNullSession
59SamIInitialize
60SamIIsDownlevelDcUpgrade
61SamIIsExtendedSidMode
62SamIIsRebootAfterPromotion
63SamIIsSetupInProgress
64SamILoadDownlevelDatabase
65SamILookupNamesBySid
66SamILookupNamesInDomain
67SamILookupSidsByName
68SamILoopbackConnect
69SamIMixedDomain
70SamIMixedDomain2
71SamINT4UpgradeInProgress
72SamINetLogonPing
73SamINotifyRoleChange
74SamIOpenUserByAlternateId
75SamIPromote
76SamIPromoteUndo
77SamIPurgeSecrets
78SamIQueryAccountSecretsCachability
79SamIQueryCapabilities
80SamIQueryRealmList
81SamIQueryServerRole
82SamIQueryServerRole2
83SamIRemoveDSNameFromAlias
84SamIReplaceDownlevelDatabase
85SamIReplicateAccountData
86SamIResetBadPwdCountOnPdc
87SamIRetrieveMultiplePrimaryCredentials
88SamIRetrievePrimaryCredentials
89SamIRevertNullSession
90SamIScorePassword
91SamISetAuditingInformation
92SamISetMachinePassword
93SamISetPasswordForeignUser2
94SamISetPasswordForeignUser3
95SamISetPasswordInfoOnDc
96SamIStorePrimaryCredentials
97SamITransformClaims
98SamIUPNFromUserHandle
99SamIUnLoadDownlevelDatabase
100SamIUninitialize
101SamIUpdateLogonStatistics
102SamIValidateAccountName
103SamIValidateNewAccountName
104SampAccountControlToFlags
105SampAcquireReadLock
106SampAcquireSamLockExclusive
107SampAcquireWriteLock
108SampAddAccountToGroupMembers
109SampAddAccountsAndApplyMemberships
110SampAddDeltaTime
111SampAddNonLocalDomainRelativeMemberships
112SampAddSameDomainMemberToGlobalOrUniversalGroup
113SampAddUserToGroup
114SampAlInvalidateAliasInformation
115SampAllocateNextCurrentRidFromIndex
116SampApplyDomainUpdatesForAllDomains
117SampAssignPrimaryGroup
118SampAuditAccountEnableDisableChange
119SampAuditAccountNameChange
120SampAuditAnyEvent
121SampAuditGroupTypeChange
122SampAuditSidHistory
123SampBuildDsNameFromSid
124SampBuildSamProtection
125SampCalculateLmAndNtOwfPasswords
126SampChangeAliasAccountName
127SampChangeGroupAccountName
128SampChangeUserAccountName
129SampCheckForAccountLockout
130SampCheckGroupTypeBits
131SampCheckSidType
132SampCommitBufferedWrites
133SampCompareDisplayStrings
134SampComputePasswordExpired
135SampConnect
136SampConvertUiListToApiList
137SampCreateAccountContext2
138SampCreateAliasInDomain
139SampCreateContextEx
140SampCreateDefaultUPN
141SampCreateFullSid
142SampCreateGroupInDomain
143SampCreateUserInDomain
144SampCurrentThreadOwnsLock
145SampDeReferenceContext
146SampDecrementActiveThreads
147SampDecryptCredentialData
148SampDeleteContext
149SampDeleteDsDirsToDeleteKey
150SampDeleteKeyForPostBootPromote
151SampDeltaChangeNotify
152SampDsChangePasswordUser
153SampDsConvertReadAttrBlock
154SampDsGetPrimaryDomainStart
155SampDsInitializeSingleDomain
156SampDsIsRunning
157SampDsMakeAttrBlock
158SampDsSetBuiltinDomainPolicy
159SampDsSetDomainPolicy
160SampDsSetPasswordUser
161SampDsUpdateContextAttributes
162SampDuplicateGroupInfo
163SampDuplicateMachineInfo
164SampDuplicateOemGroupInfo
165SampDuplicateOemUserInfo
166SampDuplicateUnicodeString
167SampDuplicateUserInfo
168SampEncryptCredentialData
169SampExamineSid
170SampExtendDefinedDomains
171SampFlagsToAccountControl
172SampFreeGroupInfo
173SampFreeMachineInfo
174SampFreeOemGroupInfo
175SampFreeOemUserInfo
176SampFreeUnicodeString
177SampFreeUserInfo
178SampGenerateRandomPassword
179SampGetAccessAttribute
180SampGetAccountDomainInfo
181SampGetBehaviorVersion
182SampGetCurrentOwnerAndPrimaryGroup
183SampGetDisableOutboundRSO
184SampGetDisableRSOOnPDCForward
185SampGetDisableResetBadPwdCountForward
186SampGetDisableSingleObjectRepl
187SampGetDnsDomainNameFromIndex
188SampGetDomainContextFromIndex
189SampGetDomainObjectFromAccountContext
190SampGetDomainObjectFromIndex
191SampGetDomainServerRoleFromIndex
192SampGetDomainSidFromAccountContext
193SampGetDomainSidFromIndex
194SampGetDomainSidListForSam
195SampGetDomainUpgradeTasks
196SampGetDownLevelDomainControllersPresent
197SampGetExtendedAttribute
198SampGetExternalNameFromIndex
199SampGetFixedAttributes
200SampGetHasNeverTime
201SampGetIgnoreGCFailures
202SampGetLogLevel
203SampGetNT4UpgradeInProgress
204SampGetNewAccountSecurityNt4
205SampGetNextUnmodifiedRidFromIndex
206SampGetNoGcLogonEnforceKerberosIpCheck
207SampGetNoGcLogonEnforceNTLMCheck
208SampGetObjectSD
209SampGetObjectTypeNameFromIndex
210SampGetPasswordMustChangeWithUF_UAC
211SampGetReverseMembershipTransitive
212SampGetSamSubsystemName
213SampGetSerialNumberDomain2
214SampGetServerObjectName
215SampGetSidArrayAttribute
216SampGetSidAttribute
217SampGetSuccessAccountAuditingEnabled
218SampGetUlongArrayAttribute
219SampGetUnicodeStringAttribute
220SampGetUserAccountControlComputed
221SampGetUserAccountSettings
222SampGetWillNeverTime
223SampImpersonateClient
224SampIncreaseBadPwdCountLoopback
225SampIncrementActiveThreads
226SampIncrementNetlogonChangeLogSerialNumber
227SampInvalidateDomainCache
228SampIsAccountBuiltIn
229SampIsAuditingEnabled
230SampIsBuiltinDomain
231SampIsDomainHosted
232SampIsServiceRunning
233SampIsSetupInProgress
234SampLogPrint
235SampLookupContext
236SampMarkPerAttributeInvalidFromWhichFields
237SampNeedUserAccountSettingsDuringQuery
238SampNetLogonNotificationRequired
239SampNotifyAuditChange
240SampNotifyReplicatedInChange
241SampPasswordChangeNotify
242SampPasswordChangeNotifyWorker
243SampPositionOfHighestBit
244SampQueryCapabilities
245SampQueryInformationUserInternal
246SampReadExtendedAttributes
247SampRecordSystemSchemaVerisonInRegistry
248SampReferenceContext
249SampRegObjToDsObj
250SampReleaseReadLock
251SampReleaseSamLockExclusive
252SampReleaseWriteLock
253SampRemoveAccountFromGroupMembers
254SampRemoveSameDomainMemberFromGlobalOrUniversalGroup
255SampRemoveUserFromGroup
256SampRenameKrbtgtAccount
257SampReplaceUserLogonHours
258SampReplaceUserV1aFixed
259SampRetrieveGroupV1Fixed
260SampRetrieveMultipleCredentials
261SampRetrieveUserPasswords
262SampRetrieveUserV1aFixed
263SampRevertToSelf
264SampRtlWellKnownPrivilegeCheck
265SampSetAccessAttribute
266SampSetAdminPassword
267SampSetAttributeAccess
268SampSetComputerObjectDsName
269SampSetDSRMPasswordWorker
270SampSetExtendedAttributeAccess
271SampSetFixedAttributes
272SampSetGlobalDsSids
273SampSetPassword
274SampSetPasswordInfoOnPdcByHandle
275SampSetPasswordInfoOnPdcByIndex
276SampSetSerialNumberDomain2
277SampSetTransactionDomain
278SampSetTransactionWithinDomain
279SampSetUnicodeStringAttribute
280SampSetUserAccountControl
281SampSplitSid
282SampStoreObjectAttributes
283SampStringFromGuid
284SampTraceEvent
285SampUpdateAccountDisabledFlag
286SampUpdateComputedUserAccountControlBits
287SampUpdateMixedModeAndFindDomain
288SampUpdatePerformanceCounters
289SampUpgradeUserParmsActual
290SampUsingDsData
291SampValidateDomainCacheCallback
292SampValidateDomainControllerCreation
293SampValidatePwdSettingAttempt
294SampValidateRegAttributes
295SampWriteEventLog
296SampWriteGroupType
297SamrAddMemberToAlias
298SamrAddMemberToGroup
299SamrCloseHandle
300SamrCreateUser2InDomain
301SamrCreateUserInDomain
302SamrDeleteAlias
303SamrDeleteGroup
304SamrDeleteUser
305SamrEnumerateUsersInDomain
306SamrEnumerateUsersInDomain2
307SamrGetAliasMembership
308SamrGetGroupsForUser
309SamrLookupIdsInDomain
310SamrLookupNamesInDomain
311SamrLookupNamesInDomain2
312SamrOpenAlias
313SamrOpenDomain
314SamrOpenGroup
315SamrOpenUser
316SamrQueryDisplayInformation
317SamrQueryInformationDomain
318SamrQueryInformationUser
319SamrQueryInformationUser2
320SamrQuerySecurityObject
321SamrRemoveMemberFromAlias
322SamrRemoveMemberFromGroup
323SamrRidToSid
324SamrSetInformationAlias
325SamrSetInformationGroup
326SamrSetInformationUser
327SamrSetSecurityObject
328SamrValidatePassword
lib/libc/mingw/libarm32/sbeio.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of sbeio.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sbeio.dll"
7EXPORTS
8DVRCreateDVRFileSink
9DVRCreateDVRFileSource
lib/libc/mingw/libarm32/scansetting.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of ScanSetting.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ScanSetting.DLL"
7EXPORTS
8GetDefaultProfileScan
9GetImageDialog
10ProfilesDialog
11ProgDlgTakeFgIfShowing
lib/libc/mingw/libarm32/scardsvr.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SCardSvr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SCardSvr.dll"
7EXPORTS
8CalaisMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/sccls.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SCCLS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SCCLS.dll"
7EXPORTS
8ScClassInstaller
lib/libc/mingw/libarm32/scdeviceenum.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of ScDeviceEnum.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ScDeviceEnum.dll"
7EXPORTS
8ScDeviceEnumServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/scecli.def created+77
......@@ -0,0 +1,77 @@
1;
2; Definition file of SCECLI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SCECLI.dll"
7EXPORTS
8ConvertSecurityDescriptorToText
9DeltaNotify
10InitializeChangeNotify
11SceConfigureConvertedFileSecurity
12SceGenerateGroupPolicy
13SceNotifyPolicyDelta
14SceOpenPolicy
15SceProcessSecurityPolicyGPO
16SceProcessSecurityPolicyGPOEx
17SceSysPrep
18SceAddToNameList
19SceAddToNameStatusList
20SceAddToObjectList
21SceAnalyzeSystem
22SceAppendSecurityProfileInfo
23SceBrowseDatabaseTable
24SceCloseProfile
25SceCommitTransaction
26SceCompareNameList
27SceCompareSecurityDescriptors
28SceConfigureSystem
29SceCopyBaseProfile
30SceCreateDirectory
31SceDcPromoCreateGPOsInSysvol
32SceDcPromoCreateGPOsInSysvolEx
33SceDcPromoteSecurity
34SceDcPromoteSecurityEx
35SceEnforceSecurityPolicyPropagation
36SceEnumerateServices
37SceFreeMemory
38SceFreeProfileMemory
39SceGenerateRollback
40SceGetAnalysisAreaSummary
41SceGetAreas
42SceGetDatabaseSetting
43SceGetDbTime
44SceGetObjectChildren
45SceGetObjectSecurity
46SceGetScpProfileDescription
47SceGetSecurityProfileInfo
48SceGetServerProductType
49SceGetTimeStamp
50SceIsSystemDatabase
51SceLookupPrivRightName
52SceOpenProfile
53SceRegisterRegValues
54SceRollbackTransaction
55SceSetDatabaseSetting
56SceSetupBackupSecurity
57SceSetupConfigureServices
58SceSetupGenerateTemplate
59SceSetupMoveSecurityFile
60SceSetupRootSecurity
61SceSetupSystemByInfName
62SceSetupUnwindSecurityFile
63SceSetupUpdateSecurityFile
64SceSetupUpdateSecurityKey
65SceSetupUpdateSecurityService
66SceStartTransaction
67SceSvcConvertSDToText
68SceSvcConvertTextToSD
69SceSvcFree
70SceSvcGetInformationTemplate
71SceSvcQueryInfo
72SceSvcSetInfo
73SceSvcSetInformationTemplate
74SceSvcUpdateInfo
75SceUpdateObjectInfo
76SceUpdateSecurityProfile
77SceWriteSecurityProfileInfo
lib/libc/mingw/libarm32/scext.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SCEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SCEXT.dll"
7EXPORTS
8ScExtInitialize
lib/libc/mingw/libarm32/scksp.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SCKsp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SCKsp.dll"
7EXPORTS
8GetKeyStorageInterface
lib/libc/mingw/libarm32/scrptadm.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SCRPTADM.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SCRPTADM.DLL"
7EXPORTS
8CreateParserObject
lib/libc/mingw/libarm32/sdiagschd.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of sdiagschd.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sdiagschd.dll"
7EXPORTS
8EnableScheduledDiagnostics
9GetScheduledDiagnosticsExecutionLevel
lib/libc/mingw/libarm32/sechost.def created+187
......@@ -0,0 +1,187 @@
1;
2; Definition file of SECHOST.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SECHOST.dll"
7EXPORTS
8I_ScSetServiceBitsA
9I_ScSetServiceBitsW
10AuditComputeEffectivePolicyBySid
11AuditEnumerateCategories
12AuditEnumeratePerUserPolicy
13AuditEnumerateSubCategories
14AuditFree
15AuditLookupCategoryNameW
16AuditLookupSubCategoryNameW
17AuditQueryGlobalSaclW
18AuditQueryPerUserPolicy
19AuditQuerySecurity
20AuditQuerySystemPolicy
21AuditSetGlobalSaclW
22AuditSetPerUserPolicy
23AuditSetSecurity
24AuditSetSystemPolicy
25ChangeServiceConfig2A
26ChangeServiceConfig2W
27ChangeServiceConfigA
28ChangeServiceConfigW
29CloseServiceHandle
30CloseTrace
31ControlService
32ControlServiceExA
33ControlServiceExW
34ControlTraceA
35ControlTraceW
36ConvertSecurityDescriptorToStringSecurityDescriptorW
37ConvertSidToStringSidW
38ConvertStringSecurityDescriptorToSecurityDescriptorW
39ConvertStringSidToSidW
40CreateServiceA
41CreateServiceW
42CredBackupCredentials
43CredDeleteA
44CredDeleteW
45CredEncryptAndMarshalBinaryBlob
46CredEnumerateA
47CredEnumerateW
48CredFindBestCredentialA
49CredFindBestCredentialW
50CredFree
51CredGetSessionTypes
52CredGetTargetInfoA
53CredGetTargetInfoW
54CredIsMarshaledCredentialW
55CredIsProtectedA
56CredIsProtectedW
57CredMarshalCredentialA
58CredMarshalCredentialW
59CredParseUserNameWithType
60CredProfileLoaded
61CredProfileLoadedEx
62CredProfileUnloaded
63CredProtectA
64CredProtectW
65CredReadA
66CredReadByTokenHandle
67CredReadDomainCredentialsA
68CredReadDomainCredentialsW
69CredReadW
70CredRestoreCredentials
71CredUnmarshalCredentialA
72CredUnmarshalCredentialW
73CredUnprotectA
74CredUnprotectW
75CredWriteA
76CredWriteDomainCredentialsA
77CredWriteDomainCredentialsW
78CredWriteW
79CredpConvertCredential
80CredpConvertOneCredentialSize
81CredpConvertTargetInfo
82CredpDecodeCredential
83CredpEncodeCredential
84CredpEncodeSecret
85DeleteService
86EnableTraceEx2
87EnumDependentServicesW
88EnumServicesStatusExW
89EnumerateIdentityProviders
90EnumerateTraceGuidsEx
91EtwQueryRealtimeConsumer
92EventAccessControl
93EventAccessQuery
94EventAccessRemove
95GetDefaultIdentityProvider
96GetIdentityProviderInfoByGUID
97GetIdentityProviderInfoByName
98I_QueryTagInformation
99I_ScBroadcastServiceControlMessage
100I_ScIsSecurityProcess
101I_ScPnPGetServiceName
102I_ScQueryServiceConfig
103I_ScRegisterDeviceNotification
104I_ScRegisterPreshutdownRestart
105I_ScRpcBindA
106I_ScRpcBindW
107I_ScSendPnPMessage
108I_ScSendTSMessage
109I_ScUnregisterDeviceNotification
110I_ScValidatePnPService
111LocalGetConditionForString
112LocalGetReferencedTokenTypesForCondition
113LocalGetStringForCondition
114LookupAccountNameLocalA
115LookupAccountNameLocalW
116LookupAccountSidLocalA
117LookupAccountSidLocalW
118LsaAddAccountRights
119LsaClose
120LsaCreateSecret
121LsaEnumerateAccountRights
122LsaEnumerateAccountsWithUserRight
123LsaFreeMemory
124LsaICLookupNames
125LsaICLookupNamesWithCreds
126LsaICLookupSids
127LsaICLookupSidsWithCreds
128LsaLookupClose
129LsaLookupFreeMemory
130LsaLookupGetDomainInfo
131LsaLookupManageSidNameMapping
132LsaLookupNames2
133LsaLookupOpenLocalPolicy
134LsaLookupSids
135LsaLookupSids2
136LsaLookupTranslateNames
137LsaLookupTranslateSids
138LsaOpenPolicy
139LsaOpenSecret
140LsaQueryInformationPolicy
141LsaQuerySecret
142LsaRemoveAccountRights
143LsaRetrievePrivateData
144LsaSetInformationPolicy
145LsaSetSecret
146LsaStorePrivateData
147NotifyServiceStatusChange
148NotifyServiceStatusChangeA
149NotifyServiceStatusChangeW
150OpenSCManagerA
151OpenSCManagerW
152OpenServiceA
153OpenServiceW
154OpenTraceW
155ProcessTrace
156QueryAllTracesA
157QueryAllTracesW
158QueryServiceConfig2A
159QueryServiceConfig2W
160QueryServiceConfigA
161QueryServiceConfigW
162QueryServiceDynamicInformation
163QueryServiceObjectSecurity
164QueryServiceStatus
165QueryServiceStatusEx
166RegisterServiceCtrlHandlerA
167RegisterServiceCtrlHandlerExA
168RegisterServiceCtrlHandlerExW
169RegisterServiceCtrlHandlerW
170RegisterTraceGuidsA
171ReleaseIdentityProviderEnumContext
172RemoveTraceCallback
173SetServiceObjectSecurity
174SetServiceStatus
175SetTraceCallback
176StartServiceA
177StartServiceCtrlDispatcherA
178StartServiceCtrlDispatcherW
179StartServiceW
180StartTraceA
181StartTraceW
182StopTraceW
183SubscribeServiceChangeNotifications
184TraceQueryInformation
185TraceSetInformation
186UnsubscribeServiceChangeNotifications
187WaitServiceState
lib/libc/mingw/libarm32/secproc.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of iwb.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iwb.dll"
7EXPORTS
8SPAttest
9SPBindLicense
10SPCheckEnvironmentSecurity
11SPCommit
12SPCreateDecryptor
13SPCreateEnablingPrincipal
14SPCreateEncryptor
15SPCreatePCE
16SPCreateSecurityProcessor
17SPDecrypt
18SPDecryptFinal
19SPDecryptUpdate
20SPEnableAndEncrypt
21SPEnablePublishingLicense
22SPEncrypt
23SPEncryptFinal
24SPEncryptUpdate
25SPGetBoundRightKey
26SPGetCurrentTime
27SPGetInfo
28SPGetLicenseAttribute
29SPGetLicenseAttributeCount
30SPGetLicenseObject
31SPGetLicenseObjectCount
32SPGetProcAddress
33SPIsActivated
34SPLoadLibrary
35SPRegisterRevocationList
36SPSign
37SPCloseHandle
lib/libc/mingw/libarm32/secproc_isv.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of iwb.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "iwb.dll"
7EXPORTS
8SPAttest
9SPBindLicense
10SPCheckEnvironmentSecurity
11SPCommit
12SPCreateDecryptor
13SPCreateEnablingPrincipal
14SPCreateEncryptor
15SPCreatePCE
16SPCreateSecurityProcessor
17SPDecrypt
18SPDecryptFinal
19SPDecryptUpdate
20SPEnableAndEncrypt
21SPEnablePublishingLicense
22SPEncrypt
23SPEncryptFinal
24SPEncryptUpdate
25SPGetBoundRightKey
26SPGetCurrentTime
27SPGetInfo
28SPGetLicenseAttribute
29SPGetLicenseAttributeCount
30SPGetLicenseObject
31SPGetLicenseObjectCount
32SPGetProcAddress
33SPIsActivated
34SPLoadLibrary
35SPRegisterRevocationList
36SPSign
37SPCloseHandle
lib/libc/mingw/libarm32/secproc_ssp.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of sb.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sb.dll"
7EXPORTS
8SPAttest
9SPBindLicense
10SPCheckEnvironmentSecurity
11SPCommit
12SPCreateDecryptor
13SPCreateEnablingPrincipal
14SPCreateEncryptor
15SPCreatePCE
16SPCreateSecurityProcessor
17SPDecrypt
18SPDecryptFinal
19SPDecryptUpdate
20SPEnableAndEncrypt
21SPEnablePublishingLicense
22SPEncrypt
23SPEncryptFinal
24SPEncryptUpdate
25SPGetBoundRightKey
26SPGetCurrentTime
27SPGetInfo
28SPGetLicenseAttribute
29SPGetLicenseAttributeCount
30SPGetLicenseObject
31SPGetLicenseObjectCount
32SPGetProcAddress
33SPIsActivated
34SPLoadLibrary
35SPRegisterRevocationList
36SPSign
37SPCloseHandle
lib/libc/mingw/libarm32/secproc_ssp_isv.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of sb.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sb.dll"
7EXPORTS
8SPAttest
9SPBindLicense
10SPCheckEnvironmentSecurity
11SPCommit
12SPCreateDecryptor
13SPCreateEnablingPrincipal
14SPCreateEncryptor
15SPCreatePCE
16SPCreateSecurityProcessor
17SPDecrypt
18SPDecryptFinal
19SPDecryptUpdate
20SPEnableAndEncrypt
21SPEnablePublishingLicense
22SPEncrypt
23SPEncryptFinal
24SPEncryptUpdate
25SPGetBoundRightKey
26SPGetCurrentTime
27SPGetInfo
28SPGetLicenseAttribute
29SPGetLicenseAttributeCount
30SPGetLicenseObject
31SPGetLicenseObjectCount
32SPGetProcAddress
33SPIsActivated
34SPLoadLibrary
35SPRegisterRevocationList
36SPSign
37SPCloseHandle
lib/libc/mingw/libarm32/sensorsapi.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of SensorsApi.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SensorsApi.DLL"
7EXPORTS
8SensorPermissionsHandler
9SensorPermissionsHandlerA
10SensorPermissionsHandlerW
lib/libc/mingw/libarm32/sensorsclassextension.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SensorDriverClassExtension.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SensorDriverClassExtension.dll"
7EXPORTS
8Microsoft_WDF_UMDF_Version DATA
lib/libc/mingw/libarm32/sensrsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SensrSvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SensrSvc.dll"
7EXPORTS
8ServiceCtrlHandler
9ServiceMain
lib/libc/mingw/libarm32/sessenv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SessEnv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SessEnv.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/setbcdlocale.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of setbcdlocale.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "setbcdlocale.dll"
7EXPORTS
8OnMachineUILanguageSwitch
lib/libc/mingw/libarm32/settingsyncpolicy.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of SETTINGSYNCPOLICY.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SETTINGSYNCPOLICY.dll"
7EXPORTS
8SettingSync_IsAllowedByGroupPolicy
9SettingSync_IsSyncAllowedOnCurrentNetwork
10SettingSync_IsCollectionAllowedToSync
11SettingSync_ShouldInlineBlobsOnFindChanges
12SettingSync_IsCollectionPermittedToUploadOrDownload
13SettingSync_CreateDirectory
14SettingSync_IsAppDataBackupRestoreEnabled
lib/libc/mingw/libarm32/sfc_os.def created+25
......@@ -0,0 +1,25 @@
1;
2; Definition file of sfc_os.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sfc_os.dll"
7EXPORTS
8BeginFileMapEnumeration
9CloseFileMapEnumeration
10GetNextFileMapContent
11SRSetRestorePointA
12SRSetRestorePointW
13SfcClose
14SfcConnectToServer
15SfcFileException
16SfcGetNextProtectedFile
17SfcInitProt
18SfcInitiateScan
19SfcInstallProtectedFiles
20SfcIsFileProtected
21SfcIsKeyProtected
22SfcTerminateWatcherThread
23SfpDeleteCatalog
24SfpInstallCatalog
25SfpVerifyFile
lib/libc/mingw/libarm32/shimeng.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of ShimEng.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ShimEng.dll"
7EXPORTS
8SE_DllLoaded
9SE_DllUnloaded
10SE_DynamicShim
11SE_GetHookAPIs
12SE_GetMaxShimCount
13SE_GetProcAddressIgnoreIncExc
14SE_GetShimCount
15SE_InstallAfterInit
16SE_InstallBeforeInit
17SE_IsShimDll
18SE_ProcessDying
lib/libc/mingw/libarm32/shsetup.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of shsetup.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "shsetup.dll"
7EXPORTS
8SHUnattendedSetup
9SHUnattendedSetupA
10SHUnattendedSetupW
11Sysprep_Cleanup_Shell
12Sysprep_Generalize_Shell
13Sysprep_Specialize_Shell
lib/libc/mingw/libarm32/shwebsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SHWEBSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SHWEBSVC.dll"
7EXPORTS
8AddNetPlaceRunDll
9PublishRunDll
lib/libc/mingw/libarm32/simauth.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of Simauth.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Simauth.dll"
7EXPORTS
8EapPeerFreeErrorMemory
9EapPeerFreeMemory
10EapPeerGetInfo
lib/libc/mingw/libarm32/simcfg.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of SimPeerConfigDll.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SimPeerConfigDll.dll"
7EXPORTS
8EapPeerGetIdentityPageGuid
9InternalFunction01
10InternalFunction02
11EapPeerConfigBlob2Xml
12EapPeerConfigXml2Blob
13EapPeerCredentialsXml2Blob
14EapPeerFreeErrorMemory
15EapPeerFreeMemory
16EapPeerGetConfigBlobAndUserBlob
17EapPeerInvokeConfigUI
18EapPeerInvokeIdentityUI
19EapPeerInvokeInteractiveUI
lib/libc/mingw/libarm32/slpts.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of slpts.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "slpts.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/slr100.def created+123
......@@ -0,0 +1,123 @@
1;
2; Definition file of slr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "slr.dll"
7EXPORTS
8RhpResolveInterfaceMethod
9GetRuntimeException
10ProcessFinalizers
11RhCanUnloadModule
12RhCollect
13RhExceptionHandling_FailedAllocation
14RhExceptionHandling_ThrowClasslibArithmeticException
15RhExceptionHandling_ThrowClasslibDivideByZeroException
16RhExceptionHandling_ThrowClasslibIndexOutOfRangeException
17RhExceptionHandling_ThrowClasslibOverflowException
18RhExceptionHandling_ThrowInter
19RhExceptionHandling_ThrowIntra
20RhGcStress_Initialize
21RhHandleAlloc
22RhHandleFree
23RhHandleGet
24RhHandleSet
25RhMemberwiseClone
26RhNewArray
27RhNewObject
28RhSuppressFinalize
29RhTypeCast_AreTypesEquivalent
30RhTypeCast_CheckArrayStore
31RhTypeCast_CheckCastArray
32RhTypeCast_CheckCastClass
33RhTypeCast_CheckCastInterface
34RhTypeCast_CheckUnbox
35RhTypeCast_CheckVectorElemAddr
36RhTypeCast_IsInstanceOfArray
37RhTypeCast_IsInstanceOfClass
38RhTypeCast_IsInstanceOfInterface
39RhWaitForPendingFinalizers
40RhpCheckedAssignRefR1
41RhpCheckedLockCmpXchg
42RhpCheckedXchg
43RhpCollect
44RhpCopyObjectContents
45RhpDbl2IntOvf
46RhpDbl2Lng
47RhpDbl2LngOvf
48RhpDbl2ULng
49RhpDbl2ULngOvf
50RhpDblRemRev
51RhpEHJumpByref
52RhpEHJumpByrefGCStress
53RhpEHJumpObject
54RhpEHJumpObjectGCStress
55RhpEHJumpScalar
56RhpEHJumpScalarGCStress
57RhpFlt2IntOvf
58RhpFlt2LngOvf
59RhpFltRemRev
60RhpGcPoll
61RhpGcPollStress
62RhpGetClasslibFunction
63RhpGetEHInfo
64RhpGetNextFinalizableObject
65RhpGetThread
66RhpHandleAlloc
67RhpHandleFree
68RhpHandleGet
69RhpHandleSet
70RhpHijackForGcStress
71RhpIDiv
72RhpIMod
73RhpInitialVSDTarget
74RhpInitializeGcStress
75RhpLDiv
76RhpLMod
77RhpLMul
78RhpLMulOvf
79RhpLng2Dbl
80RhpLoopHijack
81RhpNewArray
82RhpNewArrayAlign8
83RhpNewFast
84RhpNewFastAlign8
85RhpNewFastMisalign
86RhpNewFinalizable
87RhpNewFinalizableAlign8
88RhpRegisterModule
89RhpReversePInvoke
90RhpReversePInvokeBadTransition
91RhpReversePInvokeReturn
92RhpShutdown
93RhpSignalFinalizationComplete
94RhpSuppressFinalize
95RhpSuppressGcStress
96RhpTrapThreads DATA
97RhpUDiv
98RhpULDiv
99RhpULMod
100RhpULMul
101RhpULMulOvf
102RhpULng2Dbl
103RhpUMod
104RhpUnsuppressGcStress
105RhpWaitForFinalizerRequest
106RhpWaitForGC
107RhpWaitForPendingFinalizers
108RhpWaitForSuspend
109t101 DATA
110t12 DATA
111t2 DATA
112t2.m1
113t26 DATA
114t3 DATA
115t3.m1
116t30 DATA
117t33 DATA
118t36 DATA
119t42 DATA
120t48 DATA
121t63 DATA
122t64 DATA
123t71 DATA
lib/libc/mingw/libarm32/smartcardsimulator.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of SmartCardSimulator.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SmartCardSimulator.dll"
7EXPORTS
8VGidsSimulatorCreate
9VGidsSimulatorDestroy
10VGidsSimulatorReadProperties
11VGidsSimulatorWriteProperties
12VTransportClose
13VTransportDeinitialize
14VTransportInitialize
15VTransportOpen
16VTransportReceive
17VTransportTransmit
18Microsoft_WDF_UMDF_Version DATA
lib/libc/mingw/libarm32/smbwmiv2.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SMBWMIV2.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SMBWMIV2.DLL"
7EXPORTS
8GetProviderClassID
9MI_Main
lib/libc/mingw/libarm32/smiengine.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of SmiEngine.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SmiEngine.dll"
7EXPORTS
8ConstructHiveLocation
9CreateSettingsEnginePriv
10ConstructRegLocation
11CreateLalInstance
12CreateWcmEngineCore
13DeleteCompilerObject
14GetCompilerObject
15GetItemFromCoreObject
16SetLalCreator
lib/libc/mingw/libarm32/smsrouter.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of smsrouter.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "smsrouter.DLL"
7EXPORTS
8InitSmsRouter
9SmsRouterNotify
10UnInitSmsRouter
lib/libc/mingw/libarm32/spbcd.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of sysbcd.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sysbcd.dll"
7EXPORTS
8Sysprep_Generalize_Bcd
9Sysprep_Specialize_Bcd
lib/libc/mingw/libarm32/spfileq.def created+25
......@@ -0,0 +1,25 @@
1;
2; Definition file of SPFILEQ.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SPFILEQ.dll"
7EXPORTS
8SpFileQueueClose
9SpFileQueueCommit
10SpFileQueueCopy
11SpFileQueueDelete
12SpFileQueueFileInUse
13SpFileQueueGetFlags
14SpFileQueueGetQueueCount
15SpFileQueueNodeGetSecurityDescriptor
16SpFileQueueNodeGetSourceFilename
17SpFileQueueNodeGetSourcePath
18SpFileQueueNodeGetSourceRootPath
19SpFileQueueNodeGetStyleFlags
20SpFileQueueNodeGetTargetDirectory
21SpFileQueueNodeGetTargetFilename
22SpFileQueueNodeRemove
23SpFileQueueOpen
24SpFileQueueRename
25SpFileQueueSetFlags
lib/libc/mingw/libarm32/spinf.def created+56
......@@ -0,0 +1,56 @@
1;
2; Definition file of SPINF.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SPINF.dll"
7EXPORTS
8SpInfDetermineInfStyle
9SpInfDoesInfContainString
10SpInfEnumInfSections
11SpInfFileFullPathFromLineContext
12SpInfFindFirstLine
13SpInfFindNextMatchLine
14SpInfFindValueInSectionList
15SpInfFreeInfFile
16SpInfGetBestInstallSection
17SpInfGetBestModelsSection
18SpInfGetDirIdHandler
19SpInfGetDriverVer
20SpInfGetField
21SpInfGetIndirectString
22SpInfGetInfInformation
23SpInfGetInfLineNumber
24SpInfGetInfSections
25SpInfGetInfStyle
26SpInfGetLanguageId
27SpInfGetLineByIndex
28SpInfGetLineCount
29SpInfGetLineCountFromSection
30SpInfGetLineFieldCount
31SpInfGetLineTextWithKey
32SpInfGetLogToken
33SpInfGetNextInf
34SpInfGetOriginalInfName
35SpInfGetPathFromDirId
36SpInfGetPrevInf
37SpInfGetStringField
38SpInfGetStringsSection
39SpInfGetTargetPath
40SpInfGetVersionDatum
41SpInfGetVersionNode
42SpInfIsIndirectString
43SpInfLineFromContext
44SpInfLineIsSearchable
45SpInfLoadInfFile
46SpInfLocateLine
47SpInfLocateSection
48SpInfLockInf
49SpInfQueryInfFileInformation
50SpInfQueryInfVersionInformation
51SpInfSectionNameFromLineContext
52SpInfSetDirIdHandler
53SpInfSetDirectoryId
54SpInfSourcePathFromHandle
55SpInfUnlockInf
56SpInfVersionNodeFromInfInformation
lib/libc/mingw/libarm32/spmpm.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of spmpm.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "spmpm.dll"
7EXPORTS
8Sysprep_Generalize_MountPointManager
lib/libc/mingw/libarm32/spnet.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of sysnet.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sysnet.dll"
7EXPORTS
8Sysprep_Clean_Net
9Sysprep_Generalize_Net
lib/libc/mingw/libarm32/spopk.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of sysopk.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sysopk.dll"
7EXPORTS
8Sysprep_Clean_Opk
9Sysprep_Clean_Validate_Opk
10Sysprep_Generalize_Opk
11Sysprep_Specialize_Opk
lib/libc/mingw/libarm32/sppc.def created+73
......@@ -0,0 +1,73 @@
1;
2; Definition file of sppc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sppc.dll"
7EXPORTS
8SLCallServer
9SLpAuthenticateGenuineTicketResponse
10SLpBeginGenuineTicketTransaction
11SLpClearActivationInProgress
12SLpDepositDownlevelGenuineTicket
13SLpDepositTokenActivationResponse
14SLpGenerateTokenActivationChallenge
15SLpGetGenuineBlob
16SLpGetGenuineLocal
17SLpGetLicenseAcquisitionInfo
18SLpGetMSPidInformation
19SLpGetMachineUGUID
20SLpGetTokenActivationGrantInfo
21SLpIAActivateProduct
22SLpProcessVMPipeMessage
23SLpSetActivationInProgress
24SLpTriggerServiceWorker
25SLpVLActivateProduct
26SLClose
27SLConsumeRight
28SLDepositMigrationBlob
29SLDepositOfflineConfirmationId
30SLDepositOfflineConfirmationIdEx
31SLDepositStoreToken
32SLFireEvent
33SLGatherMigrationBlob
34SLGatherMigrationBlobEx
35SLGenerateOfflineInstallationId
36SLGenerateOfflineInstallationIdEx
37SLGetActiveLicenseInfo
38SLGetApplicationInformation
39SLGetApplicationPolicy
40SLGetAuthenticationResult
41SLGetEncryptedPIDEx
42SLGetGenuineInformation
43SLGetInstalledProductKeyIds
44SLGetLicense
45SLGetLicenseFileId
46SLGetLicenseInformation
47SLGetLicensingStatusInformation
48SLGetPKeyId
49SLGetPKeyInformation
50SLGetPolicyInformation
51SLGetPolicyInformationDWORD
52SLGetProductSkuInformation
53SLGetSLIDList
54SLGetServiceInformation
55SLInstallLicense
56SLInstallProofOfPurchase
57SLInstallProofOfPurchaseEx
58SLIsGenuineLocalEx
59SLLoadApplicationPolicies
60SLOpen
61SLPersistApplicationPolicies
62SLPersistRTSPayloadOverride
63SLReArm
64SLRegisterEvent
65SLRegisterPlugin
66SLSetAuthenticationData
67SLSetCurrentProductKey
68SLSetGenuineInformation
69SLUninstallLicense
70SLUninstallProofOfPurchase
71SLUnloadApplicationPolicies
72SLUnregisterEvent
73SLUnregisterPlugin
lib/libc/mingw/libarm32/sppcext.def created+26
......@@ -0,0 +1,26 @@
1;
2; Definition file of sppcext.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sppcext.dll"
7EXPORTS
8SLAcquireGenuineTicketForAppId
9SLAcquireGenuineTicket
10SLActivateProduct
11SLDepositTokenActivationResponse
12SLFreeTokenActivationCertificates
13SLFreeTokenActivationGrants
14SLGenerateTokenActivationChallenge
15SLGetGenuineInformationEx
16SLGetPackageProductKey
17SLGetPackageProperties
18SLGetPackageToken
19SLGetReferralInformation
20SLGetServerStatus
21SLGetTokenActivationCertificates
22SLGetTokenActivationGrants
23SLInitialize
24SLInstallPackage
25SLSignTokenActivationChallenge
26SLUninstallPackage
lib/libc/mingw/libarm32/sppcommdlg.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of sppcommdlg.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sppcommdlg.dll"
7EXPORTS
8SLUXActivationWizard
lib/libc/mingw/libarm32/sppnp.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of syspnp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "syspnp.dll"
7EXPORTS
8Sysprep_Generalize_Pnp
9Sysprep_Generalize_Pnp_Drivers
10Sysprep_Respecialize_Pnp
11Sysprep_Specialize_Pnp
lib/libc/mingw/libarm32/sppobjs.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of sppobjs.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sppobjs.dll"
7EXPORTS
8SppPluginCanUnloadNow
9SppPluginCreateInstance
10SppPluginInitialize
11SppPluginShutdown
12SppPluginVersion
lib/libc/mingw/libarm32/sppwinob.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of sppwinob.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sppwinob.dll"
7EXPORTS
8SppPluginCanUnloadNow
9SppPluginCreateInstance
10SppPluginInitialize
11SppPluginShutdown
12SppPluginVersion
lib/libc/mingw/libarm32/spwinsat.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of sysoobe.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sysoobe.dll"
7EXPORTS
8Sysprep_Clean_WinSAT
lib/libc/mingw/libarm32/sqlcecompact40.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SQLCECOMPACT40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SQLCECOMPACT40.dll"
7EXPORTS
8SeRebuild
lib/libc/mingw/libarm32/sqlcese40.def created+65
......@@ -0,0 +1,65 @@
1;
2; Definition file of SQLCESE40.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SQLCESE40.dll"
7EXPORTS
8EnableStorePlayback
9EnableStoreTracing
10InitSerialization
11SuspendStoreOperation
12EnableCedbFailpoint
13SqlCeAddDatabaseProps
14SqlCeAddSyncPartner
15SqlCeAttachCustomTrackingData
16SqlCeBeginSyncSession
17SqlCeBeginTransaction
18SqlCeChangeDatabaseLCID
19SqlCeCloseHandle
20SqlCeCreateDatabase
21SqlCeCreateSession
22SqlCeDeleteDatabase
23SqlCeDeleteRecord
24SqlCeEndSyncSession
25SqlCeEndTransaction
26SqlCeEnumDBVolumes
27SqlCeFindFirstDatabase
28SqlCeFindNextChangedRecord
29SqlCeFindNextDatabase
30SqlCeFlushDBVol
31SqlCeFreeNotification
32SqlCeGetChangedRecordCnt
33SqlCeGetChangedRecords
34SqlCeGetCustomTrackingData
35SqlCeGetDBInformationByHandle
36SqlCeGetDatabaseProps
37SqlCeGetDatabaseSession
38SqlCeGetPropChangeInfo
39SqlCeGetRecordChangeInfo
40SqlCeMarkRecord
41SqlCeMountDBVol
42SqlCeOidGetInfo
43SqlCeOnServerLoad
44SqlCeOpenDatabase
45SqlCeOpenDatabaseEx
46SqlCeOpenStream
47SqlCePurgeTrackingData
48SqlCePurgeTrackingGenerations
49SqlCeReadRecordProps
50SqlCeRemoveDatabaseProps
51SqlCeRemoveDatabaseTracking
52SqlCeRemoveSyncPartner
53SqlCeSeekDatabase
54SqlCeSetDatabaseInfo
55SqlCeSetSessionOption
56SqlCeStreamRead
57SqlCeStreamSaveChanges
58SqlCeStreamSeek
59SqlCeStreamSetSize
60SqlCeStreamWrite
61SqlCeTrackDatabase
62SqlCeTrackProperty
63SqlCeUninitialize
64SqlCeUnmountDBVol
65SqlCeWriteRecordProps
lib/libc/mingw/libarm32/sqmapi.def created+70
......@@ -0,0 +1,70 @@
1;
2; Definition file of sqmapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sqmapi.dll"
7EXPORTS
8SqmCheckEscalationAddToStreamDWord64
9SqmCheckEscalationAddToStreamDWord
10SqmCheckEscalationAddToStreamString
11SqmCheckEscalationSetDWord64
12SqmCheckEscalationSetDWord
13SqmCheckEscalationSetString
14SqmGetEscalationRuleStatus
15SqmGetInstrumentationProperty
16SqmLoadEscalationManifest
17SqmSetEscalationInfo
18SqmUnloadEscalationManifest
19SqmAddToAverage
20SqmAddToStream
21SqmAddToStreamDWord
22SqmAddToStreamDWord64
23SqmAddToStreamString
24SqmAddToStreamV
25SqmCleanup
26SqmClearFlags
27SqmCreateNewId
28SqmEndSession
29SqmEndSessionEx
30SqmFlushSession
31SqmGetEnabled
32SqmGetFlags
33SqmGetLastUploadTime
34SqmGetMachineId
35SqmGetSession
36SqmGetSessionStartTime
37SqmGetUserId
38SqmIncrement
39SqmIsNamespaceEnabled
40SqmIsWindowsOptedIn
41SqmReadSharedMachineId
42SqmReadSharedUserId
43SqmSet
44SqmSetAppId
45SqmSetAppVersion
46SqmSetBits
47SqmSetBool
48SqmSetCurrentTimeAsUploadTime
49SqmSetDWord64
50SqmSetEnabled
51SqmSetFlags
52SqmSetIfMax
53SqmSetIfMin
54SqmSetMachineId
55SqmSetString
56SqmSetUserId
57SqmStartSession
58SqmStartUpload
59SqmStartUploadEx
60SqmSysprepCleanup
61SqmSysprepGeneralize
62SqmSysprepSpecialize
63SqmTimerAccumulate
64SqmTimerAddToAverage
65SqmTimerRecord
66SqmTimerStart
67SqmUnattendedSetup
68SqmWaitForUploadComplete
69SqmWriteSharedMachineId
70SqmWriteSharedUserId
lib/libc/mingw/libarm32/srchadmin.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SRCHADMIN.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SRCHADMIN.dll"
7EXPORTS
8ProcessGroupPolicy
9CPlApplet
lib/libc/mingw/libarm32/srclient.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of SRCLIENT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SRCLIENT.dll"
7EXPORTS
8SysprepCleanup
9SysprepGeneralize
10DisableSR
11DisableSRInternal
12EnableSR
13EnableSREx
14EnableSRInternal
15SRNewSystemId
16SRRemoveRestorePoint
17SRSetRestorePointA
18SRSetRestorePointInternal
19SRSetRestorePointW
20SetSRStateAfterSetup
lib/libc/mingw/libarm32/srumapi.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of SrumAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SrumAPI.dll"
7EXPORTS
8SruFreeRecordSet
9SruQueryStats
10SruRegisterRealTimeStats
11SruUnregisterRealTimeStats
12SruUpdateStats
lib/libc/mingw/libarm32/srumsvc.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of SrumSvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SrumSvc.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/sscore.def created+49
......@@ -0,0 +1,49 @@
1;
2; Definition file of sscore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sscore.dll"
7EXPORTS
8SsCoreAliasAdd
9SsCoreAliasAddEx
10SsCoreAliasDel
11SsCoreAliasDelEx
12SsCoreCloseInstance
13SsCoreDeregisterNetnameForMultichannel
14SsCoreFileDel
15SsCoreFileDelForInstance
16SsCoreFileEnum
17SsCoreFileEnumForInstance
18SsCoreFileNotifyClose
19SsCoreFileNotifyCloseForInstance
20SsCoreFreeBuffer
21SsCoreInitialize
22SsCoreInitializeEx
23SsCoreInvalidationRequest
24SsCoreLockVolumes
25SsCoreMarkAsClusterSvc
26SsCoreNodeSetInfo
27SsCoreOpenInstance
28SsCoreRegisterNetnameForMultichannel
29SsCoreServerTransportSetInfo
30SsCoreSessionDel
31SsCoreSessionDelForInstance
32SsCoreSessionEnlist
33SsCoreSessionEnum
34SsCoreSessionEnumForInstance
35SsCoreShareAdd
36SsCoreShareAddEx
37SsCoreShareAddForInstance
38SsCoreShareCleanup
39SsCoreShareDel
40SsCoreShareDelForInstance
41SsCoreShareGetInfo
42SsCoreShareGetInfoForInstance
43SsCoreShareSetInfo
44SsCoreShareSetInfoForInstance
45SsCoreShareShutdownForScope
46SsCoreStartInstance
47SsCoreStopInstance
48SsCoreUninitialize
49SsCoreUnlockVolumes
lib/libc/mingw/libarm32/sscoreext.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of sscoreext.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sscoreext.dll"
7EXPORTS
8SsCoreExtMiApplicationClose
9SsCoreExtMiApplicationInitialize
10SsCoreExtMiApplicationNewOperationOptions
11SsCoreExtMiApplicationNewParameterSet
12SsCoreExtMiApplicationNewSession
13SsCoreExtMiInstanceAddElement
14SsCoreExtMiInstanceDelete
15SsCoreExtMiOperationClose
16SsCoreExtMiOperationGetInstance
17SsCoreExtMiOperationOptionsDelete
18SsCoreExtMiOperationOptionsSetResourceUriPrefix
19SsCoreExtMiSessionClose
20SsCoreExtMiSessionInvoke
lib/libc/mingw/libarm32/ssdpapi.def created+36
......@@ -0,0 +1,36 @@
1;
2; Definition file of SSDPAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SSDPAPI.dll"
7EXPORTS
8BeginRegisterPropChangeNotificationEx
9CleanupCache
10DHSetICSInterfaces
11DHSetICSOff
12DeregisterNotification
13DeregisterService
14DisableFirewallRule
15EnableFirewallRule
16EndRegisterPropChangeNotificationEx
17FindServices
18FindServicesCallback
19FindServicesCallbackEx
20FindServicesCancel
21FindServicesClose
22FindServicesEx
23FindServicesOnNetworkCallbackEx
24FreeSsdpMessage
25FreeSsdpMessageEx
26GetFirstService
27GetFirstServiceEx
28GetNextService
29GetNextServiceEx
30RegisterAliveNotificationOnNetworkEx
31RegisterNotification
32RegisterNotificationEx
33RegisterService
34RegisterServiceEx
35SsdpCleanup
36SsdpStartup
lib/libc/mingw/libarm32/ssdpsrv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of ssdpsrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ssdpsrv.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/sspisrv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SspiSrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SspiSrv.dll"
7EXPORTS
8SspiSrvClientCallback
9SspiSrvInitialize
lib/libc/mingw/libarm32/ssshim.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of ssshim.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ssshim.dll"
7EXPORTS
8SssBindServicingStack
9SssGetServicingStackFilePath
10SssGetServicingStackFilePathLength
11SssPreloadDownlevelDependencies
12SssReleaseServicingStack
lib/libc/mingw/libarm32/sstpsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of sstpsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sstpsvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/sti.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of STI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "STI.dll"
7EXPORTS
8??0BUFFER@@QAA@I@Z
9??0BUFFER_CHAIN@@QAA@XZ
10??0BUFFER_CHAIN_ITEM@@QAA@I@Z
11??1BUFFER@@QAA@XZ
12??1BUFFER_CHAIN@@QAA@XZ
13??1BUFFER_CHAIN_ITEM@@QAA@XZ
14??_FBUFFER@@QAAXXZ
15??_FBUFFER_CHAIN_ITEM@@QAAXXZ
16?QueryPtr@BUFFER@@QBAPAXXZ
17?QuerySize@BUFFER@@QBAIXZ
18?QueryUsed@BUFFER_CHAIN_ITEM@@QBAKXZ
19?SetUsed@BUFFER_CHAIN_ITEM@@QAAXK@Z
20GetProxyDllInfo
21MigrateRegisteredSTIAppsForWIAEvents
22SelectDeviceDialog2
23StiCreateInstance
24StiCreateInstanceW
lib/libc/mingw/libarm32/sti_ci.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of sti_ci.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sti_ci.dll"
7EXPORTS
8AddDevice
9CreateWiaDeviceList
10DestroyWiaDeviceList
11DisableWiaDevice
12EnableWiaDevice
13GetWiaDeviceProperty
14InstallWiaDevice
15InstallWiaService
16SetWiaDeviceProperty
17UninstallWiaDevice
18WiaAddDevice
19WiaCreatePortList
20WiaDestroyPortList
21?WiaDeviceEnum@@YAHXZ
22WiaRemoveDevice
23ClassInstall
24CoinstallerEntry
lib/libc/mingw/libarm32/storagewmi.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of STORAGEWMI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "STORAGEWMI.DLL"
7EXPORTS
8GetProviderClassID
9MI_Main
lib/libc/mingw/libarm32/storagewmi_passthru.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of storagewmi_passthru.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "storagewmi_passthru.dll"
7EXPORTS
8CreatePassThrough
lib/libc/mingw/libarm32/storprop.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of PROPPAGE.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PROPPAGE.DLL"
7EXPORTS
8AtaPropPageProvider
9CdromDisableDigitalPlayback
10CdromEnableDigitalPlayback
11CdromIsDigitalPlaybackEnabled
12CdromKnownGoodDigitalPlayback
13CdromSetDefaultDvdRegion
14DiskClassInstaller
15DiskPropPageProvider
16DvdClassInstaller
17DvdLauncher
18DvdPropPageProvider
19HdcCoInstaller
lib/libc/mingw/libarm32/storsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of StorSvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "StorSvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/subscriptionmgr.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of SubscriptionMgr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SubscriptionMgr.dll"
7EXPORTS
8SubscriptionManagerDeinit
9SubscriptionManagerInit
10SubscriptionManagerNotify
11SubscriptionManagerQueryParameter
12SubscriptionManagerSetParameter
13g_hMobileOperatorNotificationMutex DATA
lib/libc/mingw/libarm32/svsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SVSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SVSVC.dll"
7EXPORTS
8ServiceCtrlHandler
9ServiceMain
lib/libc/mingw/libarm32/sxshared.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of SXSHARED.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SXSHARED.dll"
7EXPORTS
8GetLastFailureAsHRESULT
9HRESULTFromNTSTATUS
10SxTracerDebuggerBreak
11SxTracerGetThreadContextDebug
12SxTracerGetThreadContextRetail
13SxTracerShouldTrackFailure
14Win32FromHRESULT
15Win32FromNTSTATUS
lib/libc/mingw/libarm32/sxssrv.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SXSSRV.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SXSSRV.dll"
7EXPORTS
8ServerDllInitialization
lib/libc/mingw/libarm32/sxsstore.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SxsStore.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SxsStore.DLL"
7EXPORTS
8SxsStoreFinalize
9SxsStoreInitialize
lib/libc/mingw/libarm32/sysclass.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of sysclass.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sysclass.dll"
7EXPORTS
8StorageCoInstaller
lib/libc/mingw/libarm32/sysmain.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of sysmain.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "sysmain.dll"
7EXPORTS
8PfSvWsSwapAssessmentTask
9AgGlLoad
10AgPdLoad
11AgTwLoad
12CloseReadyBoostPerfData
13CollectReadyBoostPerfData
14GetProviderClassID
15MI_Main
16OpenReadyBoostPerfData
17PfSvSysprepCleanup
18PfSvUnattendCallback
19SysMtServiceMain
lib/libc/mingw/libarm32/sysntfy.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SYSNTFY.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SYSNTFY.dll"
7EXPORTS
8SysNotifyStartServer
9SysNotifyStopServer
lib/libc/mingw/libarm32/syssetup.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of SYSSETUP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SYSSETUP.dll"
7EXPORTS
8AsrAddSifEntryA
9AsrAddSifEntryW
10AsrCreateStateFileA
11AsrCreateStateFileW
12AsrFreeContext
13AsrRestorePlugPlayRegistryData
14GetAnswerFileSetting
15SetupChangeFontSize
16SetupInfObjectInstallActionW
17SetupSetDisplay
18WaitForSamService
lib/libc/mingw/libarm32/systemeventsbrokerclient.def created+30
......@@ -0,0 +1,30 @@
1;
2; Definition file of SystemEventsBrokerClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SystemEventsBrokerClient.dll"
7EXPORTS
8SebCreateBackgroundDownloadEvent
9SebCreateDeviceServicingEvent
10SebCreateDeviceUseEvent
11SebCreateDisplayOnEvent
12SebCreateInfrastructureConditionEvent
13SebCreateLocationEvent
14SebCreateLockScreenAppAddedEvent
15SebCreateLockScreenAppRemovedEvent
16SebCreateNetOperatorHotSpotAuthEvent
17SebCreateOEMPreInstallEvent
18SebCreateSessionConnectedEvent
19SebCreateSessionStartEvent
20SebCreateUnconstrainedBackgroundDownloadEvent
21SebCreateUserPresentEvent
22SebDeleteEvent
23SebEnumerateEvents
24SebQueryEventData
25SebRegisterPrivateEvent
26SebRegisterWellKnownEvent
27SebRegisterWellKnownFilteredEvent
28SebSignalBackgroundDownloadEvent
29SebSignalDeviceEvent
30SebSignalOEMPreInstallEvent
lib/libc/mingw/libarm32/systemeventsbrokerserver.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SystemEventsBrokerServer.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SystemEventsBrokerServer.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/systemsettings.deviceencryptionhandlers.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of SystemSettings.DeviceEncryptionHandlers.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SystemSettings.DeviceEncryptionHandlers.dll"
7EXPORTS
8GetActualDeviceEncryptionUIState
9GetSetting
lib/libc/mingw/libarm32/systemsettings.handlers.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SystemSettings.Handlers.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SystemSettings.Handlers.dll"
7EXPORTS
8GetSetting
lib/libc/mingw/libarm32/systemsettingsadminflowui.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of SystemSettingsAdminFlowUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SystemSettingsAdminFlowUI.dll"
7EXPORTS
8InitializeXamlCustomResourceLoader
9InitializeXamlRuntime
10UninitializeXamlCustomResourceLoader
11UninitializeXamlRuntime
12AddDomainUserPage_CreateInstance
13CorpDeviceConfirmationPage_CreateInstance
14CorpDeviceManagementPage_CreateInstance
15DeviceEncryptionPage_CreateInstance
16EditUserPage_CreateInstance
17JoinDomainPage_CreateInstance
18LeaveDomainPage_CreateInstance
19LockdownAppPage_CreateInstance
20LockdownUserPage_CreateInstance
21RemoveUserPage_CreateInstance
22RenamePCPage_CreateInstance
23SetDateTimePage_CreateInstance
24UnblockSimPinPage_CreateInstance
lib/libc/mingw/libarm32/systemsettingsdatabase.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of SystemSettingsDatabase.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "SystemSettingsDatabase.dll"
7EXPORTS
8GetSettingsDatabase
lib/libc/mingw/libarm32/tabbtn.def created+232
......@@ -0,0 +1,232 @@
1;
2; Definition file of TabBtn.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TabBtn.dll"
7EXPORTS
8??0?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAA@ABV01@@Z
9??0?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAA@XZ
10??0?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAA@ABV01@@Z
11??0?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAA@XZ
12??0?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAA@ABV01@@Z
13??0?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAA@XZ
14??0?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAA@ABV01@@Z
15??0?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAA@XZ
16??0?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAA@XZ
17??0CActions@@QAA@ABV0@@Z
18??0CActions@@QAA@XZ
19??0CButtonAction@@QAA@W4BUTTONACTION_TYPE@@@Z
20??0CButtonConfig@@QAA@ABV0@@Z
21??0CButtonConfig@@QAA@XZ
22??0CButtonMonitor@@QAA@ABV0@@Z
23??0CButtonMonitor@@QAA@XZ
24??0CButtonSetting@@QAA@ABV0@@Z
25??0CButtonSetting@@QAA@XZ
26??0CButtonSettings@@QAA@ABV0@@Z
27??0CButtonSettings@@QAA@XZ
28??0CFunctionNotification@@QAA@XZ
29??0CHidButton@@QAA@PAUHWND__@@II@Z
30??0COrientation@@QAA@XZ
31??1?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAA@XZ
32??1?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAA@XZ
33??1?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAA@XZ
34??1?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAA@XZ
35??1?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAA@XZ
36??1CActions@@QAA@XZ
37??1CButtonAction@@QAA@XZ
38??1CButtonConfig@@QAA@XZ
39??1CButtonMonitor@@QAA@XZ
40??1CButtonSetting@@QAA@XZ
41??1CButtonSettings@@QAA@XZ
42??1CFunctionNotification@@QAA@XZ
43??1CHidButton@@QAA@XZ
44??1COrientation@@QAA@XZ
45??4?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAAAV01@ABV01@@Z
46??4?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAAAV01@ABV01@@Z
47??4?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAAAV01@ABV01@@Z
48??4?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAAAV01@ABV01@@Z
49??4?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAAAV01@ABV01@@Z
50??4CActions@@QAAAAV0@ABV0@@Z
51??4CButtonAction@@QAAAAV0@ABV0@@Z
52??4CButtonConfig@@QAAAAV0@ABV0@@Z
53??4CButtonMonitor@@QAAAAV0@ABV0@@Z
54??4CButtonSetting@@QAAAAV0@ABV0@@Z
55??4CButtonSettings@@QAAAAV0@ABV0@@Z
56??4CFunctionNotification@@QAAAAV0@ABV0@@Z
57??4CHidButton@@QAAAAV0@ABV0@@Z
58??4COrientation@@QAAAAV0@ABV0@@Z
59??A?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAAAPAUACTION@@H@Z
60??A?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QBAABQAUACTION@@H@Z
61??A?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAAAPAVCButtonAction@@H@Z
62??A?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QBAABQAVCButtonAction@@H@Z
63??A?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAAAPAVCButtonSetting@@H@Z
64??A?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QBAABQAVCButtonSetting@@H@Z
65??A?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAAAPAVCOrientation@@H@Z
66??A?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QBAABQAVCOrientation@@H@Z
67?Add@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAHABQAUACTION@@@Z
68?Add@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAHABQAVCButtonAction@@@Z
69?Add@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAHABQAVCButtonSetting@@@Z
70?Add@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAHABQAVCOrientation@@@Z
71?Add@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAHABKABQAVCButtonImages@@@Z
72?CanRepeat@CButtonAction@@QBAHXZ
73?Clone@CButtonAction@@QBAJPAPAV1@@Z
74?CreateExtendedActionObject@CButtonMonitor@@SAJPAPAUIUnknown@@@Z
75?CreateTrayWindow@CFunctionNotification@@AAAJXZ
76?DispatchHidBtnEvents@CHidButton@@QAAJPAUHRAWINPUT__@@@Z
77?DoBuiltInAction@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
78?DoButtonAction@CButtonMonitor@@AAAJPAVCButtonAction@@KHH@Z
79?ExecuteObject@CButtonMonitor@@AAAJPBG0@Z
80?Find@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QBAHABQAUACTION@@@Z
81?Find@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QBAHABQAVCButtonAction@@@Z
82?Find@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QBAHABQAVCButtonSetting@@@Z
83?Find@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QBAHABQAVCOrientation@@@Z
84?FindActionById@CActions@@QAAPAUACTION@@K@Z
85?FindDeviceByHandle@CHidButton@@QAAPAU_hidbtndev@@PAX@Z
86?FindKey@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QBAHABK@Z
87?FindUsage@CHidButton@@AAAHPAU_USAGE_AND_PAGE@@KGG@Z
88?FindVal@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QBAHABQAVCButtonImages@@@Z
89?FreeData@CButtonAction@@QAAXXZ
90?GetActionAt@CActions@@QAAPAUACTION@@H@Z
91?GetActionFromOrientation@CButtonSetting@@QAAJKPAPAVCButtonAction@@00@Z
92?GetAllowedActions@CButtonSetting@@QAAPBGXZ
93?GetButtonActionType@CButtonAction@@QBA?BW4BUTTONACTION_TYPE@@XZ
94?GetButtonConfig@CButtonMonitor@@QAAPAVCButtonConfig@@XZ
95?GetButtonCount@CButtonSettings@@QBAHXZ
96?GetButtonFromId@CButtonSettings@@QAAJKPAPAVCButtonSetting@@@Z
97?GetButtonIdFromIndex@CButtonSettings@@QAAKK@Z
98?GetButtonIds@CButtonSettings@@QBAJPAKH@Z
99?GetButtonName@CButtonSetting@@QAAPBGXZ
100?GetButtonName@CButtonSettings@@QBAPBGH@Z
101?GetCount@CActions@@QAAHXZ
102?GetCurrentDisplayOrientation@CButtonConfig@@QAAKXZ
103?GetData@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QBAPAPAUACTION@@XZ
104?GetData@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QBAPAPAVCButtonAction@@XZ
105?GetData@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QBAPAPAVCButtonSetting@@XZ
106?GetData@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QBAPAPAVCOrientation@@XZ
107?GetData@CButtonAction@@QBAQAEXZ
108?GetDataDWORD@CButtonAction@@QBA?BKXZ
109?GetDefSeq@COrientation@@QAAKXZ
110?GetDescription@COrientation@@QAAPBGXZ
111?GetDetailImage@CButtonSettings@@QAAPAUHBITMAP__@@KK@Z
112?GetDisallowedActions@CButtonSetting@@QAAPBGXZ
113?GetDisplayOrientationName@CButtonConfig@@QAAPBGK@Z
114?GetFlags@CButtonSetting@@QAAKXZ
115?GetFnKeyButtonId@CButtonSettings@@QAAKXZ
116?GetHidBtnUsages@CHidButton@@AAAHPAU_hidbtndev@@PAUtagRAWINPUT@@GGPAU_USAGE_AND_PAGE@@PAK@Z
117?GetId@CButtonAction@@QBAKXZ
118?GetId@CButtonSetting@@QAAKXZ
119?GetKeyAt@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QBAAAKH@Z
120?GetKeyName@COrientation@@QAAPBGXZ
121?GetLocationImage@CButtonSettings@@QAAPAUHBITMAP__@@KK@Z
122?GetMode@COrientation@@QAAKXZ
123?GetOrientSeq@CButtonConfig@@QBAKI@Z
124?GetOrientSeqCount@CButtonConfig@@QBAKXZ
125?GetOrientationMode@CButtonAction@@QBAKXZ
126?GetRegType@CButtonAction@@QBAKXZ
127?GetSize@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QBAHXZ
128?GetSize@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QBAHXZ
129?GetSize@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QBAHXZ
130?GetSize@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QBAHXZ
131?GetSize@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QBAHXZ
132?GetSize@CButtonAction@@QBAKXZ
133?GetValueAt@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QBAAAPAVCButtonImages@@H@Z
134HandleTabletButtonMessages
135?Hide@CFunctionNotification@@QAAJXZ
136?InSession0@CButtonMonitor@@AAAHXZ
137?Init@CActions@@QAAJXZ
138?Init@CButtonConfig@@QAAJH@Z
139?Init@CButtonMonitor@@QAAJPAUHWND__@@@Z
140?Init@COrientation@@QAAJPAUHKEY__@@@Z
141InitializeTabletButtons
142?InternalSetAtIndex@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAXHABQAUACTION@@@Z
143?InternalSetAtIndex@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAXHABQAVCButtonAction@@@Z
144?InternalSetAtIndex@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAXHABQAVCButtonSetting@@@Z
145?InternalSetAtIndex@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAXHABQAVCOrientation@@@Z
146?InternalSetAtIndex@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAXHABKABQAVCButtonImages@@@Z
147?IsActionRepeatable@CButtonAction@@SAHK@Z
148?IsActionUnsupported@CButtonMonitor@@SAHK@Z
149?IsSameAction@CButtonAction@@QBAHPBV1@@Z
150?LoadImageDLL@CButtonSettings@@AAAHXZ
151?LoadSettings@CButtonConfig@@QAAJXZ
152?Lookup@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QBAPAVCButtonImages@@ABK@Z
153?MakeAllUserActionsEqual@CButtonSetting@@QAAJK@Z
154?NotifyFnMode@CButtonMonitor@@AAAJH@Z
155?OnActionAppCommand@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
156?OnActionContextMenu@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
157?OnActionDisplayOff@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
158?OnActionLaunchApp@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
159?OnActionMouseWheel@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
160?OnActionSendKey@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
161?OnActionSetOrientation@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
162?OnActionUnknown@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
163?OnActionWindowsFlip3d@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
164?OnActionWindowsFlip@CButtonMonitor@@AAAJPAVCButtonAction@@HH@Z
165?OnButtonDown@CButtonMonitor@@AAAXIJ@Z
166?OnButtonUp@CButtonMonitor@@AAAXIJ@Z
167?OnDisplayChange@CButtonMonitor@@AAAXIJ@Z
168?OnFnKeyTimer@CButtonMonitor@@AAAXXZ
169?OnHoldTimer@CButtonMonitor@@AAAXXZ
170?OnInput@CButtonMonitor@@AAAXIJ@Z
171?OnMessage@CButtonMonitor@@QAAXIIJ@Z
172?OnRepeatTimer@CButtonMonitor@@AAAXXZ
173?OnSettingChange@CButtonMonitor@@AAAXIJ@Z
174?OnTimer@CButtonMonitor@@AAAXIJ@Z
175?ProcessAction@CButtonMonitor@@AAAJKH@Z
176?ProcessEvent@CButtonMonitor@@AAAJKH@Z
177?RegReadActions@CButtonConfig@@QAAXPAUHKEY__@@PAVCButtonSetting@@H@Z
178?RegReadAndAllocate@CButtonConfig@@SAJPAUHKEY__@@PBGPAKPAPAE2@Z
179?RegReadButtonSetting@CButtonConfig@@QAAJPAUHKEY__@@HH@Z
180?RegReadButtonsSettings@CButtonConfig@@QAAJXZ
181?RegReadDisplayOrientations@CButtonConfig@@QAAJXZ
182?RegReadOrientationSeq@CButtonConfig@@QAAJXZ
183?RegisterButtonDevices@CButtonMonitor@@QAAJXZ
184?RegisterForPopups@CButtonMonitor@@AAAJXZ
185?RegisterHidBtnDevice@CHidButton@@QAAPAU_hidbtndev@@PAXPAK@Z
186?ReleaseDownButtons@CButtonMonitor@@AAAJXZ
187?ReleaseRepeatOrHoldButton@CButtonMonitor@@AAAJXZ
188?Remove@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAHABQAUACTION@@@Z
189?Remove@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAHABQAVCButtonAction@@@Z
190?Remove@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAHABQAVCButtonSetting@@@Z
191?Remove@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAHABQAVCOrientation@@@Z
192?Remove@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAHABK@Z
193?RemoveAll@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAXXZ
194?RemoveAll@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAXXZ
195?RemoveAll@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAXXZ
196?RemoveAll@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAXXZ
197?RemoveAll@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAXXZ
198?RemoveAt@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAHH@Z
199?RemoveAt@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAHH@Z
200?RemoveAt@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAHH@Z
201?RemoveAt@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAHH@Z
202?RemoveAt@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAHH@Z
203?ResetDeprecatedAction@CButtonConfig@@AAAXPAVCButtonAction@@@Z
204?ReverseLookup@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QBAKABQAVCButtonImages@@@Z
205?SaveSettings@CButtonConfig@@QAAJXZ
206?SendAppCommand@CButtonMonitor@@AAAJG@Z
207?SendModKeys@CButtonMonitor@@CAXEH@Z
208?SendVKey@CButtonMonitor@@CAXEEH@Z
209?Set@CButtonAction@@QAAJPBV1@@Z
210?SetAt@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAHABKABQAVCButtonImages@@@Z
211?SetAtIndex@?$CSimpleArray@PAUACTION@@V?$CSimpleArrayEqualHelper@PAUACTION@@@ATL@@@ATL@@QAAHHABQAUACTION@@@Z
212?SetAtIndex@?$CSimpleArray@PAVCButtonAction@@V?$CSimpleArrayEqualHelper@PAVCButtonAction@@@ATL@@@ATL@@QAAHHABQAVCButtonAction@@@Z
213?SetAtIndex@?$CSimpleArray@PAVCButtonSetting@@V?$CSimpleArrayEqualHelper@PAVCButtonSetting@@@ATL@@@ATL@@QAAHHABQAVCButtonSetting@@@Z
214?SetAtIndex@?$CSimpleArray@PAVCOrientation@@V?$CSimpleArrayEqualHelper@PAVCOrientation@@@ATL@@@ATL@@QAAHHABQAVCOrientation@@@Z
215?SetAtIndex@?$CSimpleMap@KPAVCButtonImages@@V?$CSimpleMapEqualHelper@KPAVCButtonImages@@@ATL@@@ATL@@QAAHHABKABQAVCButtonImages@@@Z
216?SetData@CButtonAction@@QAAJQAEK@Z
217?SetDataDWORD@CButtonAction@@QAAJK@Z
218?SetDisplayOrientation@CButtonMonitor@@AAAJH@Z
219?SetDisplayPower@CButtonMonitor@@AAAXH@Z
220?SetId@CButtonAction@@QAAXK@Z
221?ShouldButtonShowUI@CButtonSettings@@QBAHH@Z
222?ShouldSendEscapeForBack@CButtonMonitor@@AAAHXZ
223?Show@CFunctionNotification@@QAAJXZ
224?ShowWindowSwitchWindow@CButtonMonitor@@CAJXZ
225UninitializeTabletButtons
226?UnregisterButtonDevices@CButtonMonitor@@QAAJXZ
227?UnregisterHidBtnDevice@CHidButton@@QAAHPAU_hidbtndev@@PAK@Z
228?UpdateButtonRates@CButtonConfig@@QAAJXZ
229?UpdateCurrentDisplayOrientation@CButtonConfig@@QAAXXZ
230?WinEventProc@CButtonMonitor@@SAXPAUHWINEVENTHOOK__@@KPAUHWND__@@JJKK@Z
231?WindowProc@CFunctionNotification@@SAJPAUHWND__@@IIJ@Z
232?sm_dwPopupCount@CButtonMonitor@@2KA DATA
lib/libc/mingw/libarm32/tabsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of TabSvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TabSvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/tapisrv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of tapisrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "tapisrv.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/tapisysprep.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of tapisysprep.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "tapisysprep.dll"
7EXPORTS
8TapiSysPrepClean
lib/libc/mingw/libarm32/taskcomp.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of taskcomp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "taskcomp.dll"
7EXPORTS
8DeleteTaskNotification
9InitializeAdapter
10IsRegistering
11RegisterTaskNotification
12SetSdNotification
13ShutdownAdapter
14UpdateJobStatus
lib/libc/mingw/libarm32/tcpipsetup.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of TcpipSetup.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TcpipSetup.dll"
7EXPORTS
8DllRegisterNetSetupPlugin
lib/libc/mingw/libarm32/tcpmib.def created+42
......@@ -0,0 +1,42 @@
1;
2; Definition file of TCPMIB.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TCPMIB.dll"
7EXPORTS
8??0CTcpMib@@QAA@ABV0@@Z
9??0CTcpMib@@QAA@XZ
10??0CTcpMibABC@@QAA@ABV0@@Z
11??0CTcpMibABC@@QAA@XZ
12??1CTcpMib@@UAA@XZ
13??1CTcpMibABC@@UAA@XZ
14??4CTcpMib@@QAAAAV0@ABV0@@Z
15??4CTcpMibABC@@QAAAAV0@ABV0@@Z
16??_7CTcpMib@@6B@ DATA
17??_7CTcpMibABC@@6B@ DATA
18?GetDeviceDescription@CTcpMib@@UAAKPBD0KPAGK@Z
19?GetDeviceId@CTcpMib@@UAAJPBGKPAGKPAK@Z
20?GetDeviceIdFromIni@CTcpMib@@AAAJPBGKPAGKPAK@Z
21?GetDeviceIdFromMib@CTcpMib@@AAAJPBGKPAGKPAK@Z
22?GetNextRequestId@CTcpMib@@UAAKPAK@Z
23?GetPortList@CTcpMib@@UAAJPBGPAEKPAK@Z
24?GetPortListFromIni@CTcpMib@@AAAJPBGPAEKPAK@Z
25?GetPortListFromMib@CTcpMib@@AAAJPBGPAEKPAK@Z
26?GetStatusFromVBL@CTcpMib@@CAKPAXPAUsmiVALUE@@11@Z
27?InitSnmp@CTcpMib@@UAAKXZ
28?IsValid@CTcpMib@@QBAHXZ
29?MapAsynchToPortStatus@CTcpMib@@CAHKPAU_PORT_INFO_3W@@@Z
30?RFC1157ToString@CTcpMib@@UAAHPAUSnmpVarBind@@PAGKPAK@Z
31?RegisterDeviceStatusCallback@CTcpMib@@UAAKP6AKHPBD0KKK@ZPAPAX@Z
32?RequestDeviceStatus@CTcpMib@@UAAKPAXKPBG1K@Z
33?SnmpCallback@CTcpMib@@CAKPAXPAUHWND__@@IIJ0@Z
34?SnmpGet@CTcpMib@@QAAKPBD0PAUSnmpVarBindList@@@Z
35?SnmpGet@CTcpMib@@UAAKPBD00PAUSnmpVarBindList@@@Z
36?SnmpGet@CTcpMib@@UAAKPBD0PAUAsnObjectIdentifier@@PAUSnmpVarBindList@@@Z
37?SnmpGetNext@CTcpMib@@QAAKPBD0PAUSnmpVarBindList@@@Z
38?SnmpGetNext@CTcpMib@@UAAKPBD0PAUAsnObjectIdentifier@@PAUSnmpVarBindList@@@Z
39?SupportsPortMonMib@CTcpMib@@AAAJPBGPAH@Z
40?SupportsPrinterMib@CTcpMib@@UAAHPBD0KPAH@Z
41?UnInitSnmp@CTcpMib@@UAAXXZ
42GetTcpMibPtr
lib/libc/mingw/libarm32/tcpmonui.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of TCPMonUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TCPMonUI.dll"
7EXPORTS
8??0CPortABC@@QAA@ABV0@@Z
9??0CPortABC@@QAA@XZ
10??0CTcpMibABC@@QAA@ABV0@@Z
11??0CTcpMibABC@@QAA@XZ
12??1CPortABC@@UAA@XZ
13??1CTcpMibABC@@UAA@XZ
14??4CPortABC@@QAAAAV0@ABV0@@Z
15??4CTcpMibABC@@QAAAAV0@ABV0@@Z
16??_7CPortABC@@6B@ DATA
17??_7CTcpMibABC@@6B@ DATA
18InitializePrintMonitorUI2
19?Read@CPortABC@@UAAKQAXPAEKPAK@Z
20InitializePrintMonitorUI
21LocalAddPortUI
22LocalConfigurePortUI
lib/libc/mingw/libarm32/termsrv.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of TermSrv.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TermSrv.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/tetheringieprovider.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of TetheringIeProvider.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TetheringIeProvider.dll"
7EXPORTS
8VsIeProviderGetFunctionTable
lib/libc/mingw/libarm32/tetheringmgr.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of TetheringMgr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TetheringMgr.dll"
7EXPORTS
8TetheringManagerDeinit
9TetheringManagerInit
10TetheringManagerNotify
11TetheringManagerQueryParameter
12TetheringManagerSetParameter
lib/libc/mingw/libarm32/tetheringstation.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of TetheringStation.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TetheringStation.dll"
7EXPORTS
8TetheringStationConnect
9TetheringStationDeinitialize
10TetheringStationDisconnect
11TetheringStationEnumerate
12TetheringStationFreeMemory
13TetheringStationInitialize
14TetheringStationRegisterForNotification
15TetheringStationUnregisterForNotification
lib/libc/mingw/libarm32/themecpl.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of THEMECPL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "THEMECPL.dll"
7EXPORTS
8OpenThemeActionW
lib/libc/mingw/libarm32/themeservice.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of THEMESERVICE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "THEMESERVICE.dll"
7EXPORTS
8ThemeServiceMain
lib/libc/mingw/libarm32/timebrokerclient.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of TimeBrokerClient.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TimeBrokerClient.dll"
7EXPORTS
8TbCreateCEvent
9TbCreateEvent
10TbDeleteCEvent
11TbDeleteEvent
12TbEnumerateCEvents
13TbEnumerateEvents
14TbQueryCEventData
15TbQueryEventData
16TbUpdateCEvent
17TbUpdateEvent
lib/libc/mingw/libarm32/timebrokerserver.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of TimeBrokerServer.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TimeBrokerServer.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/timedatemuicallback.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of TIMEDATEMUICALLBACK.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TIMEDATEMUICALLBACK.dll"
7EXPORTS
8OnMachineUILanguageSwitch
lib/libc/mingw/libarm32/tlscsp.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of tlscsp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "tlscsp.dll"
7EXPORTS
8TLSCspInit
9TLSCspShutdown
10TLSGetTSCertificate
11TLSFreeTSCertificate
12LsCsp_GetServerData
13LsCsp_EncryptHwid
14LsCsp_DecryptEnvelopedData
15LsCsp_StoreSecret
16LsCsp_RetrieveSecret
17TLSCspStartInstallCertificateThread
lib/libc/mingw/libarm32/tpmcompc.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of tpmcc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "tpmcc.dll"
7EXPORTS
8CHOOSER2_PickTargetComputer
lib/libc/mingw/libarm32/tpmvsc.def created+35
......@@ -0,0 +1,35 @@
1;
2; Definition file of tpmvsc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "tpmvsc.dll"
7EXPORTS
8TpmVCardCreate
9TpmVCardCreateInProc
10TpmVCardDestroy
11TpmVCardDestroyInProc
12VCardAuthenticatePin
13VCardChangePin
14VCardClose
15VCardCreateKey
16VCardDeauthenticate
17VCardDecrypt
18VCardDeinitialize
19VCardDeleteKey
20VCardEncrypt
21VCardExportRsaPubKey
22VCardGetChallenge
23VCardGetKeyType
24VCardGetPinLength
25VCardGetRemainingRetryCount
26VCardGetTransportKeyAlg
27VCardImportRsaKey
28VCardImportSymKey
29VCardInitialize
30VCardInvalidateChallenge
31VCardOpen
32VCardResetPin
33VCardSetResponse
34VCardSignHash
35VCardUnblockPin
lib/libc/mingw/libarm32/tquery.def created+92
......@@ -0,0 +1,92 @@
1;
2; Definition file of TQUERY.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TQUERY.DLL"
7EXPORTS
8??0CDriveInfo@@QAA@PBGK@Z
9??0CFullPath@@QAA@PBG@Z
10??0CFullPropSpec@@QAA@ABV0@@Z
11??0CMemSerStream@@QAA@PAEK@Z
12??0CPidLookupTable@@QAA@XZ
13??0CUnNormalizer@@QAA@XZ
14??0CiStorage@@QAA@PBGKPAUICiCAdviseStatus@@KH@Z
15??0XAct@@QAA@XZ
16??1CMemSerStream@@UAA@XZ
17??1CPhysStorage@@UAA@XZ
18??1CPidLookupTable@@QAA@XZ
19??1CiStorage@@UAA@XZ
20?CoTaskAllocator@@3VCCoTaskAllocator@@A DATA
21?ContainsDrive@CDriveInfo@@SAHPBG@Z
22CreatePropMapperStorage
23CreateSecurityStoreStorage
24?EnumerateProperty@CPidLookupTable@@QAAKAAVCFullPropSpec@@AAI@Z
25ExceptInitialize
26?GetBlob@CMemDeSerStream@@UAAXPAEK@Z
27?GetByte@CMemDeSerStream@@UAAEXZ
28?GetChar@CMemDeSerStream@@UAAXPADK@Z
29?GetDiskSpace@CDriveInfo@@QAAXAA_J0@Z
30?GetDouble@CMemDeSerStream@@UAANXZ
31?GetDrive@CDriveInfo@@SAXPBGPAG@Z
32?GetFloat@CMemDeSerStream@@UAAMXZ
33?GetGUID@CMemDeSerStream@@UAAXAAU_GUID@@@Z
34?GetLong@CMemDeSerStream@@UAAJXZ
35?GetSectorSize@CDriveInfo@@QAAKXZ
36?GetString@CMemDeSerStream@@UAAPADXZ
37?GetULong@CMemDeSerStream@@UAAKXZ
38?GetUShort@CMemDeSerStream@@UAAGXZ
39?GetWChar@CMemDeSerStream@@UAAXPAGK@Z
40?GetWString@CMemDeSerStream@@UAAPAGXZ
41?Init@CPidLookupTable@@QAAHPAVPRcovStorageObj@@@Z
42?IsSameDrive@CDriveInfo@@QAAHPBG@Z
43?IsWriteProtected@CDriveInfo@@QAAHXZ
44?MakePath@CFullPath@@QAAXPBG@Z
45?PeekULong@CMemDeSerStream@@UAAKXZ
46?PutBlob@CMemSerStream@@UAAXPBEK@Z
47?PutByte@CMemSerStream@@UAAXE@Z
48?PutChar@CMemSerStream@@UAAXPBDK@Z
49?PutDouble@CMemSerStream@@UAAXN@Z
50?PutFloat@CMemSerStream@@UAAXM@Z
51?PutGUID@CMemSerStream@@UAAXABU_GUID@@@Z
52?PutLong@CMemSerStream@@UAAXJ@Z
53?PutString@CMemSerStream@@UAAXPBD@Z
54?PutULong@CMemSerStream@@UAAXK@Z
55?PutUShort@CMemSerStream@@UAAXG@Z
56?PutWChar@CMemSerStream@@UAAXPBGK@Z
57?PutWString@CMemSerStream@@UAAXPBG@Z
58?QueryPidLookupTable@CiStorage@@QAAPAVPRcovStorageObj@@K@Z
59?Read@CCiFile@@QAAXXZ
60?ResetType@CAllocStorageVariant@@IAAXAAVPMemoryAllocator@@@Z
61?SetLPWSTR@CStorageVariant@@QAAXPBGI@Z
62?SetProperty@CFullPropSpec@@QAAHPBG@Z
63?SetProperty@CFullPropSpec@@QAAXK@Z
64?SkipBlob@CMemDeSerStream@@UAAXK@Z
65?SkipByte@CMemDeSerStream@@UAAXXZ
66?SkipChar@CMemDeSerStream@@UAAXK@Z
67?SkipDouble@CMemDeSerStream@@UAAXXZ
68?SkipFloat@CMemDeSerStream@@UAAXXZ
69?SkipGUID@CMemDeSerStream@@UAAXXZ
70?SkipLong@CMemDeSerStream@@UAAXXZ
71?SkipULong@CMemDeSerStream@@UAAXXZ
72?SkipUShort@CMemDeSerStream@@UAAXXZ
73?SkipWChar@CMemDeSerStream@@UAAXK@Z
74?UnNormalizeKey@CUnNormalizer@@QAAXABVCKeyBuf@@AAUtagPROPVARIANT@@PAGK@Z
75UseLowFragmentationHeap
76?ciDelete@@YAXPAX@Z
77?ciNew@@YAPAXI@Z
78?ciNewNoThrow@@YAPAXI@Z
79AccessDebugTracer
80AccessRetailTracer
81CIState
82ExternPropagateEventToOpenQueries
83ForceMasterMerge
84PerfmonClose
85PerfmonCollect
86PerfmonIDXClose
87PerfmonIDXCollect
88PerfmonIDXOpen
89PerfmonOpen
90RetailTracerDisable
91RetailTracerEnable
92RetailTracerReleaseAll
lib/libc/mingw/libarm32/trkwks.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of trkwks.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "trkwks.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/tsgqec.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of tsgQec.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "tsgQec.dll"
7EXPORTS
8InitializeQec
9UninitializeQec
lib/libc/mingw/libarm32/tspkg.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of TSPKG.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TSPKG.dll"
7EXPORTS
8SpLsaModeInitialize
9SpUserModeInitialize
lib/libc/mingw/libarm32/tspnprdrcoinstaller.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of TsPnPRdrCoInstaller.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TsPnPRdrCoInstaller.dll"
7EXPORTS
8TsPnPRdrCoInstaller
lib/libc/mingw/libarm32/tsusbgdcoinstaller.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of TsUsbGDCoInstaller.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TsUsbGDCoInstaller.dll"
7EXPORTS
8TsUsbGDCoInstaller
lib/libc/mingw/libarm32/tsusbredirectiongrouppolicyextension.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of TsUsbRedirectionGroupPolicyExtension.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TsUsbRedirectionGroupPolicyExtension.dll"
7EXPORTS
8ExecuteProcessGroupPolicyEx
9ExecuteProcessGroupPolicyExWithError
10ProcessGroupPolicyEx
lib/libc/mingw/libarm32/tsworkspace.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of tsworkspace.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "tsworkspace.dll"
7EXPORTS
8RADCUISupportCreateSubscriptionClient
9RADCUISupportCreateDiscoveryStrategy
10RADCProcessGroupPolicyEx
11TaskUpdateWorkspaces2
12TaskUpdateWorkspaces
13TaskUpdateWorkspacesIfNeeded
14WorkspaceSilentSetupW
15WorkspaceStatusNotify2
16WorkspaceStatusNotify
lib/libc/mingw/libarm32/ttlsauth.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of TtlsAuth.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TtlsAuth.dll"
7EXPORTS
8EapPeerFreeErrorMemory
9EapPeerFreeMemory
10EapPeerGetInfo
lib/libc/mingw/libarm32/ttlscfg.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of TtlsCfg.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TtlsCfg.dll"
7EXPORTS
8EapPeerCreateMethodConfiguration
9EapPeerGetIdentityPageGuid
10EapPeerGetMethodProperties
11EapPeerGetNextPageGuid
12EapPeerConfigBlob2Xml
13EapPeerConfigXml2Blob
14EapPeerCredentialsXml2Blob
15EapPeerFreeErrorMemory
16EapPeerFreeMemory
17EapPeerGetConfigBlobAndUserBlob
18EapPeerInvokeConfigUI
19EapPeerInvokeIdentityUI
20EapPeerInvokeInteractiveUI
21EapPeerQueryCredentialInputFields
22EapPeerQueryInteractiveUIInputFields
23EapPeerQueryUIBlobFromInteractiveUIInputFields
24EapPeerQueryUserBlobFromCredentialInputFields
lib/libc/mingw/libarm32/ttlsext.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of TTLSEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "TTLSEXT.dll"
7EXPORTS
8TtlsExt_FreeMemoryExt
9TtlsExt_GetConfigCacheOnlyCertValidation
10TtlsExt_GetConfigForceNotDomainJoined
11TtlsExt_GetContextData
12TtlsExt_GetUserCredentials
13TtlsExt_InvokeServerAuthentication
14TtlsExt_ShowHelp
lib/libc/mingw/libarm32/twinapi.appcore.def created+71
......@@ -0,0 +1,71 @@
1;
2; Definition file of twinapi.appcore.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "twinapi.appcore.dll"
7EXPORTS
8ord_1 @1
9ord_2 @2
10ord_3 @3
11ord_4 @4
12ord_5 @5
13ord_6 @6
14ord_7 @7
15ord_8 @8
16ord_9 @9
17ord_10 @10
18ord_11 @11
19ord_12 @12
20BiChangeApplicationStateForPackageName
21BiChangeApplicationStateForPsmKey
22BiChangeSessionState
23BiGetActiveBackgroundTasksEvent
24BiIsApplicationTerminateSensitive
25BiNotifyNewSession
26BiPtActivateDeferredWorkItem
27BiPtActivateInBackground
28BiPtActivateWorkItem
29BiPtAssociateActivationProxy
30BiPtAssociateApplicationExtensionClass
31BiPtCancelWorkItem
32BiPtCreateEventForPackageName
33BiPtDeleteEvent
34BiPtDisassociateWorkItem
35BiPtEnumerateBrokeredEvents
36BiPtEnumerateWorkItemsForPackageName
37BiPtFreeMemory
38BiPtQueryBrokeredEvent
39BiPtQuerySystemStateBroadcastChannels
40BiPtQueryWorkItem
41BiPtSignalEvent
42BiPtSignalMultipleEvents
43BiResetActiveSessionForPackage
44BiSetActiveSessionForPackage
45BiUpdateLockScreenApplications
46PsmApplyTaskCompletion
47PsmBlockAppStateChangeCompletion
48PsmDisconnect
49PsmIsProcessInApplication
50PsmQueryApplicationInformation
51PsmQueryApplicationInterferenceCount
52PsmQueryApplicationList
53PsmQueryApplicationProperties
54PsmQueryApplicationResourceUsage
55PsmQueryCurrentAppState
56PsmQueryMaxMemoryUsage
57PsmQueryProcessList
58PsmQueryTaskCompletionInformation
59PsmRegisterAppStateChangeNotification
60PsmRegisterApplicationNotification
61PsmRegisterDynamicProcess
62PsmRegisterKeyNotification
63PsmSetApplicationPriority
64PsmSetApplicationProperties
65PsmSetApplicationState
66PsmShutdownApplication
67PsmUnblockAppStateChangeCompletion
68PsmUnregisterAppStateChangeNotification
69PsmWaitForAppResume
70RegisterAppStateChangeNotification
71UnregisterAppStateChangeNotification
lib/libc/mingw/libarm32/ubpm.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of UBPM.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UBPM.dll"
7EXPORTS
8UbpmAcquireJobBackgroundMode
9UbpmApiBufferFree
10UbpmCloseTriggerConsumer
11UbpmInitialize
12UbpmOpenTriggerConsumer
13UbpmReleaseJobBackgroundMode
14UbpmSessionStateChanged
15UbpmTerminate
16UbpmTriggerConsumerConfigure
17UbpmTriggerConsumerControl
18UbpmTriggerConsumerControlNotifications
19UbpmTriggerConsumerQueryStatus
20UbpmTriggerConsumerRegister
21UbpmTriggerConsumerSetStatePublishingSecurity
22UbpmTriggerConsumerUnregister
lib/libc/mingw/libarm32/udhisapi.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of udhisapi.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "udhisapi.DLL"
7EXPORTS
8GetExtensionVersion
9HttpExtensionProc
10TerminateExtension
lib/libc/mingw/libarm32/uexfat.def created+42
......@@ -0,0 +1,42 @@
1;
2; Definition file of UEXFAT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UEXFAT.dll"
7EXPORTS
8??0CLUSTER_CHAIN@@QAA@XZ
9??0EXFATDIR@@QAA@XZ
10??0EXFAT_DIRENT@@QAA@XZ
11??0EXFAT_SA@@QAA@XZ
12??0EXFAT_VOL@@QAA@XZ
13??1CLUSTER_CHAIN@@UAA@XZ
14??1EXFATDIR@@UAA@XZ
15??1EXFAT_DIRENT@@UAA@XZ
16??1EXFAT_SA@@UAA@XZ
17??1EXFAT_VOL@@UAA@XZ
18?AllocChain@FAT@@QAAKPAVEXFATBITMAP@@KPAK@Z
19Chkdsk
20ChkdskEx
21Format
22FormatEx
23?FreeChain@FAT@@QAAXPAVEXFATBITMAP@@K@Z
24GetFilesystemInformation
25?Initialize@CLUSTER_CHAIN@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@PAVEXFAT_SA@@PBVFAT@@KKE@Z
26?Initialize@EXFATDIR@@QAAEPAVHMEM@@PAVLOG_IO_DP_DRIVE@@PAVEXFAT_SA@@PBVFAT@@K_KE@Z
27?Initialize@EXFAT_DIRENT@@QAAEPAVEXFAT_SA@@PAXPAVEXFATDIR@@K@Z
28?Initialize@EXFAT_SA@@QAAEPAVLOG_IO_DP_DRIVE@@PAVMESSAGE@@@Z
29?Initialize@EXFAT_VOL@@QAA?AW4FORMAT_ERROR_CODE@@PBVWSTRING@@PAVMESSAGE@@EEW4_MEDIA_TYPE@@EE@Z
30?QueryAllocatedClusters@FAT@@QBAKXZ
31?QueryFileSize@EXFAT_DIRENT@@QAA_JXZ
32?QueryLengthOfChain@FAT@@QBAKKPAK@Z
33?QueryNthCluster@FAT@@QBAKKK@Z
34?QueryStartingCluster@EXFAT_DIRENT@@QAAKXZ
35?Read@CLUSTER_CHAIN@@UAAEXZ
36?ReadAndRecordBadSectors@CLUSTER_CHAIN@@QAAEPAVEXFATSECRUNBITMAP@@@Z
37Recover
38?SetFileSize@EXFAT_DIRENT@@QAAE_J@Z
39?SetStartingCluster@EXFAT_DIRENT@@QAAEK@Z
40?VerifyAndFixPhase2@EXFAT_DIRENT@@QAAEPAVEXFATBITMAP@@0PAVWSTRING@@EEEW4FIX_LEVEL@@PAEPAVMESSAGE@@@Z
41?Write@CLUSTER_CHAIN@@UAAEXZ
42?WriteAndSkipBadSectors@CLUSTER_CHAIN@@QAAEXZ
lib/libc/mingw/libarm32/ufat.def created+63
......@@ -0,0 +1,63 @@
1;
2; Definition file of UFAT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UFAT.dll"
7EXPORTS
8??0CLUSTER_CHAIN@@QAA@XZ
9??0EA_HEADER@@QAA@XZ
10??0EA_SET@@QAA@XZ
11??0FAT_DIRENT@@QAA@XZ
12??0FAT_SA@@QAA@XZ
13??0FILEDIR@@QAA@XZ
14??0REAL_FAT_SA@@QAA@XZ
15??0ROOTDIR@@QAA@XZ
16??1CLUSTER_CHAIN@@UAA@XZ
17??1EA_HEADER@@UAA@XZ
18??1EA_SET@@UAA@XZ
19??1FAT_DIRENT@@UAA@XZ
20??1FAT_SA@@UAA@XZ
21??1FILEDIR@@UAA@XZ
22??1REAL_FAT_SA@@UAA@XZ
23??1ROOTDIR@@UAA@XZ
24?AllocChain@FAT@@QAAKKPAK@Z
25?FreeChain@FAT@@QAAXK@Z
26?GetEa@EA_SET@@QAAPAU_EA@@KPAJPAE@Z
27?Index12@FAT@@ABAKK@Z
28?InitFATChkDirty@REAL_FAT_SA@@QAAEPAVLOG_IO_DP_DRIVE@@PAVMESSAGE@@@Z
29?Initialize@CLUSTER_CHAIN@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@PAVFAT_SA@@PBVFAT@@KK@Z
30?Initialize@EA_HEADER@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@PAVFAT_SA@@PBVFAT@@KK@Z
31?Initialize@EA_SET@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@PAVFAT_SA@@PBVFAT@@KK@Z
32?Initialize@FAT_DIRENT@@QAAEPAX@Z
33?Initialize@FAT_DIRENT@@QAAEPAXE@Z
34?Initialize@FILEDIR@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@PAVFAT_SA@@PBVFAT@@K@Z
35?Initialize@REAL_FAT_SA@@UAAEPAVLOG_IO_DP_DRIVE@@PAVMESSAGE@@E@Z
36?Initialize@ROOTDIR@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@KJ@Z
37?IsValidCreationTime@FAT_DIRENT@@QBAEXZ
38?IsValidLastAccessTime@FAT_DIRENT@@QBAEXZ
39?IsValidLastWriteTime@FAT_DIRENT@@QBAEXZ
40?QueryAllocatedClusters@FAT@@QBAKXZ
41?QueryCensusAndRelocate@FAT_SA@@QAAEPAU_CENSUS_REPORT@@PAVINTSTACK@@PAE@Z
42?QueryCreationTime@FAT_DIRENT@@QBAEPAT_LARGE_INTEGER@@@Z
43?QueryEaSetClusterNumber@EA_HEADER@@QBAGG@Z
44?QueryFileStartingCluster@FAT_SA@@QAAKPBVWSTRING@@PAVHMEM@@PAPAVFATDIR@@PAEPAVFAT_DIRENT@@@Z
45?QueryFreeSectors@REAL_FAT_SA@@QBAKXZ
46?QueryLastAccessTime@FAT_DIRENT@@QBAEPAT_LARGE_INTEGER@@@Z
47?QueryLastWriteTime@FAT_DIRENT@@QBAEPAT_LARGE_INTEGER@@@Z
48?QueryLengthOfChain@FAT@@QBAKKPAK@Z
49?QueryLongName@FATDIR@@QAAEJPAVWSTRING@@@Z
50?QueryName@FAT_DIRENT@@QBAEPAVWSTRING@@@Z
51?QueryNthCluster@FAT@@QBAKKK@Z
52?Read@CLUSTER_CHAIN@@UAAEXZ
53?Read@EA_SET@@UAAEXZ
54?Read@REAL_FAT_SA@@UAAEPAVMESSAGE@@@Z
55?SearchForDirEntry@FATDIR@@QAAPAXPBVWSTRING@@@Z
56?Set12@FAT@@AAAXKK@Z
57?Write@CLUSTER_CHAIN@@UAAEXZ
58Chkdsk
59ChkdskEx
60Format
61FormatEx
62GetFilesystemInformation
63Recover
lib/libc/mingw/libarm32/uiautomationcore.def deleted-102
......@@ -1,102 +0,0 @@
1;
2; Definition file of UIAutomationCore.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UIAutomationCore.DLL"
7EXPORTS
8DockPattern_SetDockPosition
9ExpandCollapsePattern_Collapse
10ExpandCollapsePattern_Expand
11GridPattern_GetItem
12InvokePattern_Invoke
13ItemContainerPattern_FindItemByProperty
14LegacyIAccessiblePattern_DoDefaultAction
15LegacyIAccessiblePattern_GetIAccessible
16LegacyIAccessiblePattern_Select
17LegacyIAccessiblePattern_SetValue
18MultipleViewPattern_GetViewName
19MultipleViewPattern_SetCurrentView
20RangeValuePattern_SetValue
21ScrollItemPattern_ScrollIntoView
22ScrollPattern_Scroll
23ScrollPattern_SetScrollPercent
24SelectionItemPattern_AddToSelection
25SelectionItemPattern_RemoveFromSelection
26SelectionItemPattern_Select
27SynchronizedInputPattern_Cancel
28SynchronizedInputPattern_StartListening
29TextPattern_GetSelection
30TextPattern_GetVisibleRanges
31TextPattern_RangeFromChild
32TextPattern_RangeFromPoint
33TextPattern_get_DocumentRange
34TextPattern_get_SupportedTextSelection
35TextRange_AddToSelection
36TextRange_Clone
37TextRange_Compare
38TextRange_CompareEndpoints
39TextRange_ExpandToEnclosingUnit
40TextRange_FindAttribute
41TextRange_FindText
42TextRange_GetAttributeValue
43TextRange_GetBoundingRectangles
44TextRange_GetChildren
45TextRange_GetEnclosingElement
46TextRange_GetText
47TextRange_Move
48TextRange_MoveEndpointByRange
49TextRange_MoveEndpointByUnit
50TextRange_RemoveFromSelection
51TextRange_ScrollIntoView
52TextRange_Select
53TogglePattern_Toggle
54TransformPattern_Move
55TransformPattern_Resize
56TransformPattern_Rotate
57UiaAddEvent
58UiaClientsAreListening
59UiaDisconnectAllProviders
60UiaDisconnectProvider
61UiaEventAddWindow
62UiaEventRemoveWindow
63UiaFind
64UiaGetErrorDescription
65UiaGetPatternProvider
66UiaGetPropertyValue
67UiaGetReservedMixedAttributeValue
68UiaGetReservedNotSupportedValue
69UiaGetRootNode
70UiaGetRuntimeId
71UiaGetUpdatedCache
72UiaHPatternObjectFromVariant
73UiaHTextRangeFromVariant
74UiaHUiaNodeFromVariant
75UiaHasServerSideProvider
76UiaHostProviderFromHwnd
77UiaIAccessibleFromProvider
78UiaLookupId
79UiaNavigate
80UiaNodeFromFocus
81UiaNodeFromHandle
82UiaNodeFromPoint
83UiaNodeFromProvider
84UiaNodeRelease
85UiaPatternRelease
86UiaProviderForNonClient
87UiaProviderFromIAccessible
88UiaRaiseAsyncContentLoadedEvent
89UiaRaiseAutomationEvent
90UiaRaiseAutomationPropertyChangedEvent
91UiaRaiseStructureChangedEvent
92UiaRaiseTextEditTextChangedEvent
93UiaRegisterProviderCallback
94UiaRemoveEvent
95UiaReturnRawElementProvider
96UiaSetFocus
97UiaTextRangeRelease
98ValuePattern_SetValue
99VirtualizedItemPattern_Realize
100WindowPattern_Close
101WindowPattern_SetWindowVisualState
102WindowPattern_WaitForInputIdle
lib/libc/mingw/libarm32/uireng.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of uireng.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "uireng.dll"
7EXPORTS
8UirGetScreenComment
9UirInitializeEngine
10UirPauseRecordingSession
11UirResumeRecordingSession
12UirStartRecordingSession
13UirStopRecordingSession
14UirUninitializeEngine
15UirUpdateRecordingSession
lib/libc/mingw/libarm32/umpnpmgr.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of umpnpmgr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "umpnpmgr.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/umpo.def created+24
......@@ -0,0 +1,24 @@
1;
2; Definition file of umpo.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "umpo.dll"
7EXPORTS
8PtrUmpoOnAcPower DATA
9PtrUmpoProviderHandle DATA
10UmpoAllocate
11UmpoAlpcSendPowerMessage
12UmpoFree
13UmpoGetActiveScheme
14UmpoInternalCloseUserPowerKey
15UmpoInternalConvertGuidToString
16UmpoInternalDataAccessorToString
17UmpoInternalGetActiveSchemeGuid
18UmpoInternalOpenGUIDSubKey
19UmpoInternalOpenUserPowerKey
20UmpoMain
21UmpoNotificationHandler
22UmpoNotifyKernelAllPowerPolicyChanged
23UmpoNotifyKernelPowerPolicyChanged
24UmpoWriteToUserPowerKey
lib/libc/mingw/libarm32/umpoext.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of umpoext.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "umpoext.dll"
7EXPORTS
8ExtensionInit
lib/libc/mingw/libarm32/umrdp.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of UMRDP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UMRDP.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/unattend.def created+78
......@@ -0,0 +1,78 @@
1;
2; Definition file of UNATTEND.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UNATTEND.DLL"
7EXPORTS
8UnattendAddResults
9UnattendCleanup
10UnattendCtxAddOrModifyNodeText
11UnattendCtxBeginModify
12UnattendCtxCancelModify
13UnattendCtxCleanup
14UnattendCtxCommitModify
15UnattendCtxCompareNodes
16UnattendCtxDeserialize
17UnattendCtxDeserializeBuffer
18UnattendCtxDeserializeFile
19UnattendCtxDeserializeString
20UnattendCtxDeserializeWithResults
21UnattendCtxEnumGet
22UnattendCtxEnumOrderedSubNodes
23UnattendCtxGetCount
24UnattendCtxGetCountByNode
25UnattendCtxGetEnumValue
26UnattendCtxGetEnumValueByNode
27UnattendCtxGetExpandedString
28UnattendCtxGetExpandedStringByNode
29UnattendCtxGetFlag
30UnattendCtxGetFlagByNode
31UnattendCtxGetLong
32UnattendCtxGetLongByNode
33UnattendCtxGetNodeAttr
34UnattendCtxGetNodeChild
35UnattendCtxGetNodeValue
36UnattendCtxGetRootNode
37UnattendCtxGetShowUI
38UnattendCtxGetShowUIFromNode
39UnattendCtxGetString
40UnattendCtxGetStringByNode
41UnattendCtxGetUlong
42UnattendCtxGetUlongByNode
43UnattendCtxOpenNode
44UnattendCtxOpenNodeByNode
45UnattendCtxPrettyPrint
46UnattendCtxRemoveAttr
47UnattendCtxRemoveNode
48UnattendCtxReplaceMatchedNodesWithText
49UnattendCtxReplaceNode
50UnattendCtxSerialize
51UnattendCtxSerializeSettingsStream
52UnattendCtxSerializeToBuffer
53UnattendCtxSerializeToBufferFromNode
54UnattendCtxSerializeToStream
55UnattendCtxSerializeToStreamFromNode
56UnattendCtxSetNodeName
57UnattendCtxSetString
58UnattendCtxSetStringByNode
59UnattendCtxSpliceTrees
60UnattendDeserializeWithResults
61UnattendEnumFree
62UnattendFindAnswerFile
63UnattendFindAnswerFileSkipPantherFolder
64UnattendFindAnswerFileWithResults
65UnattendFindFileFromCmdLine
66UnattendFormatPath
67UnattendFreeNode
68UnattendFreeResults
69UnattendFreeSetting
70UnattendGetCount
71UnattendGetFirstFailingSetting
72UnattendGetFlag
73UnattendGetImplicitContext
74UnattendGetString
75UnattendIsNodeValid
76UnattendIsPassUnusedInCtx
77UnattendMarkPassUsedInCtx
78UnattendUsedPassesExistInCtx
lib/libc/mingw/libarm32/untfs.def created+169
......@@ -0,0 +1,169 @@
1;
2; Definition file of UNTFS.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UNTFS.dll"
7EXPORTS
8??0NTFS_ATTRIBUTE@@QAA@XZ
9??0NTFS_ATTRIBUTE_DEFINITION_TABLE@@QAA@XZ
10??0NTFS_ATTRIBUTE_LIST@@QAA@XZ
11??0NTFS_ATTRIBUTE_RECORD@@QAA@XZ
12??0NTFS_BAD_CLUSTER_FILE@@QAA@XZ
13??0NTFS_BITMAP@@QAA@XZ
14??0NTFS_BITMAP_FILE@@QAA@XZ
15??0NTFS_BOOT_FILE@@QAA@XZ
16??0NTFS_CLUSTER_RUN@@QAA@XZ
17??0NTFS_EXTENT_LIST@@QAA@XZ
18??0NTFS_FILE_RECORD_SEGMENT@@QAA@XZ
19??0NTFS_FRS_STRUCTURE@@QAA@XZ
20??0NTFS_INDEX_TREE@@QAA@XZ
21??0NTFS_LOG_FILE@@QAA@XZ
22??0NTFS_MFT_FILE@@QAA@XZ
23??0NTFS_MFT_INFO@@QAA@XZ
24??0NTFS_REFLECTED_MASTER_FILE_TABLE@@QAA@XZ
25??0NTFS_SA@@QAA@XZ
26??0NTFS_UPCASE_FILE@@QAA@XZ
27??0NTFS_UPCASE_TABLE@@QAA@XZ
28??0NTFS_VOLUME_FILE@@QAA@XZ
29??1NTFS_ATTRIBUTE@@UAA@XZ
30??1NTFS_ATTRIBUTE_DEFINITION_TABLE@@UAA@XZ
31??1NTFS_ATTRIBUTE_LIST@@UAA@XZ
32??1NTFS_ATTRIBUTE_RECORD@@UAA@XZ
33??1NTFS_BAD_CLUSTER_FILE@@UAA@XZ
34??1NTFS_BITMAP@@UAA@XZ
35??1NTFS_BITMAP_FILE@@UAA@XZ
36??1NTFS_BOOT_FILE@@UAA@XZ
37??1NTFS_CLUSTER_RUN@@UAA@XZ
38??1NTFS_EXTENT_LIST@@UAA@XZ
39??1NTFS_FILE_RECORD_SEGMENT@@UAA@XZ
40??1NTFS_FRS_STRUCTURE@@UAA@XZ
41??1NTFS_INDEX_TREE@@UAA@XZ
42??1NTFS_LOG_FILE@@UAA@XZ
43??1NTFS_MFT_FILE@@UAA@XZ
44??1NTFS_MFT_INFO@@UAA@XZ
45??1NTFS_REFLECTED_MASTER_FILE_TABLE@@UAA@XZ
46??1NTFS_SA@@UAA@XZ
47??1NTFS_UPCASE_FILE@@UAA@XZ
48??1NTFS_UPCASE_TABLE@@UAA@XZ
49??1NTFS_VOLUME_FILE@@UAA@XZ
50?AddExtent@NTFS_EXTENT_LIST@@QAAEVBIG_INT@@00@Z
51?AddFileNameAttribute@NTFS_FILE_RECORD_SEGMENT@@QAAEPAU_FILE_NAME@@@Z
52?AddSecurityDescriptor@NTFS_FILE_RECORD_SEGMENT@@QAAEW4_CANNED_SECURITY_TYPE@@PAVNTFS_BITMAP@@@Z
53?AddSecurityDescriptorData@NTFS_FILE_RECORD_SEGMENT@@QAAEPAVNTFS_ATTRIBUTE@@PAXPAPAU_SECURITY_ENTRY@@KW4_CANNED_SECURITY_TYPE@@PAVNTFS_BITMAP@@E@Z
54?AllocateFileRecordSegment@NTFS_MASTER_FILE_TABLE@@QAAEPAVBIG_INT@@E@Z
55?CompareDupInfo@NTFS_MFT_INFO@@SAEPAXPAU_FILE_NAME@@@Z
56?CompareFileName@NTFS_MFT_INFO@@SAEPAXKPAU_FILE_NAME@@PAG@Z
57?ComputeDupInfoSignature@NTFS_MFT_INFO@@CAXPAU_DUPLICATED_INFORMATION@@QAE@Z
58?ComputeFileNameSignature@NTFS_MFT_INFO@@CAXKPAU_FILE_NAME@@QAE@Z
59?CopyIterator@NTFS_INDEX_TREE@@QAAEPAV1@@Z
60?Create@NTFS_FILE_RECORD_SEGMENT@@QAAEPBU_STANDARD_INFORMATION@@G@Z
61?CreateDataAttribute@NTFS_LOG_FILE@@QAAEVBIG_INT@@KPAVNTFS_BITMAP@@@Z
62?CreateElementaryStructures@NTFS_SA@@QAAEPAVNTFS_BITMAP@@KKKKPBVNUMBER_SET@@EEEKPAVMESSAGE@@PAUBIOS_PARAMETER_BLOCK@@PBVWSTRING@@@Z
63?Extend@NTFS_MASTER_FILE_TABLE@@QAAEK@Z
64?Flush@NTFS_FILE_RECORD_SEGMENT@@QAAEPAVNTFS_BITMAP@@PAVNTFS_INDEX_TREE@@E@Z
65?Flush@NTFS_MFT_FILE@@QAAEXZ
66?GetNext@NTFS_INDEX_TREE@@QAAPBU_INDEX_ENTRY@@PAKPAEE@Z
67?GetNextAttributeListEntry@NTFS_ATTRIBUTE_LIST@@QBAPBU_ATTRIBUTE_LIST_ENTRY@@PBU2@@Z
68?GetNextAttributeRecord@NTFS_FRS_STRUCTURE@@QAAPAXPBXPAVMESSAGE@@PAE@Z
69?GetRootFrsIndex@NTFS_SA@@SAEPAVNTFS_MFT_FILE@@PAVNTFS_FILE_RECORD_SEGMENT@@PAVNTFS_INDEX_TREE@@@Z
70?Initialize@NTFS_ATTRIBUTE@@QAAEPAVLOG_IO_DP_DRIVE@@KPBVNTFS_EXTENT_LIST@@VBIG_INT@@2KPBVWSTRING@@G@Z
71?Initialize@NTFS_ATTRIBUTE@@QAAEPAVLOG_IO_DP_DRIVE@@KPBXKKPBVWSTRING@@G@Z
72?Initialize@NTFS_ATTRIBUTE_DEFINITION_TABLE@@QAAEPAVNTFS_MASTER_FILE_TABLE@@E@Z
73?Initialize@NTFS_ATTRIBUTE_RECORD@@QAAEPAVIO_DP_DRIVE@@PAX@Z
74?Initialize@NTFS_BAD_CLUSTER_FILE@@QAAEPAVNTFS_MASTER_FILE_TABLE@@@Z
75?Initialize@NTFS_BITMAP@@QAAEVBIG_INT@@EPAVLOG_IO_DP_DRIVE@@KE@Z
76?Initialize@NTFS_BITMAP_FILE@@QAAEPAVNTFS_MASTER_FILE_TABLE@@@Z
77?Initialize@NTFS_BOOT_FILE@@QAAEPAVNTFS_MASTER_FILE_TABLE@@@Z
78?Initialize@NTFS_CLUSTER_RUN@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@VBIG_INT@@KK@Z
79?Initialize@NTFS_EXTENT_LIST@@QAAEVBIG_INT@@0@Z
80?Initialize@NTFS_FILE_RECORD_SEGMENT@@QAAEPAVNTFS_FRS_STRUCTURE@@PAVNTFS_MASTER_FILE_TABLE@@@Z
81?Initialize@NTFS_FILE_RECORD_SEGMENT@@QAAEVBIG_INT@@KPAVNTFS_MASTER_FILE_TABLE@@@Z
82?Initialize@NTFS_FILE_RECORD_SEGMENT@@QAAEVBIG_INT@@PAVNTFS_MASTER_FILE_TABLE@@@Z
83?Initialize@NTFS_FILE_RECORD_SEGMENT@@QAAEVBIG_INT@@PAVNTFS_MFT_FILE@@@Z
84?Initialize@NTFS_FILE_RECORD_SEGMENT@@QAAEXZ
85?Initialize@NTFS_FRS_STRUCTURE@@QAAEPAU_FILE_RECORD_SEGMENT_HEADER@@PAVNTFS_ATTRIBUTE@@VBIG_INT@@KK2KPAVNTFS_UPCASE_TABLE@@@Z
86?Initialize@NTFS_FRS_STRUCTURE@@QAAEPAVMEM@@PAVLOG_IO_DP_DRIVE@@VBIG_INT@@K2KPAVNTFS_UPCASE_TABLE@@K@Z
87?Initialize@NTFS_FRS_STRUCTURE@@QAAEPAVMEM@@PAVNTFS_ATTRIBUTE@@VBIG_INT@@K2KPAVNTFS_UPCASE_TABLE@@@Z
88?Initialize@NTFS_FRS_STRUCTURE@@QAAEPAVMEM@@PAVNTFS_ATTRIBUTE@@VBIG_INT@@KK2KPAVNTFS_UPCASE_TABLE@@@Z
89?Initialize@NTFS_INDEX_TREE@@QAAEKPAVLOG_IO_DP_DRIVE@@KPAVNTFS_BITMAP@@PAVNTFS_UPCASE_TABLE@@KKKPBVWSTRING@@@Z
90?Initialize@NTFS_INDEX_TREE@@QAAEPAVLOG_IO_DP_DRIVE@@KPAVNTFS_BITMAP@@PAVNTFS_UPCASE_TABLE@@KPAVNTFS_FILE_RECORD_SEGMENT@@PBVWSTRING@@@Z
91?Initialize@NTFS_LOG_FILE@@QAAEPAVNTFS_MASTER_FILE_TABLE@@@Z
92?Initialize@NTFS_MFT_FILE@@QAAEPAVLOG_IO_DP_DRIVE@@VBIG_INT@@KK1PAVNTFS_BITMAP@@PAVNTFS_UPCASE_TABLE@@PAVNTFS_ATTRIBUTE@@@Z
93?Initialize@NTFS_MFT_INFO@@QAAEVBIG_INT@@PAVNTFS_UPCASE_TABLE@@EE_K@Z
94?Initialize@NTFS_MFT_INFO@@QAAEXZ
95?Initialize@NTFS_REFLECTED_MASTER_FILE_TABLE@@QAAEPAVNTFS_MASTER_FILE_TABLE@@@Z
96?Initialize@NTFS_SA@@QAAEPAVLOG_IO_DP_DRIVE@@PAVMESSAGE@@VBIG_INT@@2@Z
97?Initialize@NTFS_UPCASE_FILE@@QAAEPAVNTFS_MASTER_FILE_TABLE@@@Z
98?Initialize@NTFS_UPCASE_TABLE@@QAAEPAVNTFS_ATTRIBUTE@@PA_K@Z
99?Initialize@NTFS_VOLUME_FILE@@QAAEPAVLOG_IO_DP_DRIVE@@PAVNTFS_MASTER_FILE_TABLE@@PAVNTFS_FILE_RECORD_SEGMENT@@PAVNTFS_INDEX_TREE@@PAU_VOLUME_INFORMATION@@PAVWSTRING@@W4FIX_LEVEL@@@Z
100?InsertEntry@NTFS_INDEX_TREE@@QAAEKPAXU_MFT_SEGMENT_REFERENCE@@E@Z
101?InsertIntoFile@NTFS_ATTRIBUTE@@UAAEPAVNTFS_FILE_RECORD_SEGMENT@@PAVNTFS_BITMAP@@@Z
102?IsAllocated@NTFS_BITMAP@@QBAEVBIG_INT@@0@Z
103?IsAttributePresent@NTFS_FILE_RECORD_SEGMENT@@QAAEKPBVWSTRING@@E@Z
104?IsDosName@NTFS_SA@@SAEPBU_FILE_NAME@@@Z
105?IsFree@NTFS_BITMAP@@QBAEVBIG_INT@@0@Z
106?IsNtfsName@NTFS_SA@@SAEPBU_FILE_NAME@@@Z
107?MakeNonresident@NTFS_ATTRIBUTE@@UAAEPAVNTFS_BITMAP@@@Z
108?NtfsUpcaseCompare@@YAJPBGK0KPBVNTFS_UPCASE_TABLE@@E@Z
109?Prefetch@NTFS_ATTRIBUTE@@QAAEVBIG_INT@@K@Z
110?Prefetch@NTFS_FRS_STRUCTURE@@QAAEVBIG_INT@@0@Z
111?QueryAttribute@NTFS_FILE_RECORD_SEGMENT@@QAAEPAVNTFS_ATTRIBUTE@@PAEKPBVWSTRING@@@Z
112?QueryAttributeByOrdinal@NTFS_FILE_RECORD_SEGMENT@@QAAEPAVNTFS_ATTRIBUTE@@PAEKK@Z
113?QueryAttributeList@NTFS_FRS_STRUCTURE@@QAAEPAVNTFS_ATTRIBUTE_LIST@@@Z
114?QueryAttributeListAttribute@NTFS_FILE_RECORD_SEGMENT@@QAAEPAVNTFS_ATTRIBUTE@@PAE@Z
115?QueryClusterFactor@NTFS_SA@@QBAEXZ
116?QueryDefaultClustersPerIndexBuffer@NTFS_SA@@SAKPBVDP_DRIVE@@K@Z
117?QueryDuplicatedInformation@NTFS_FILE_RECORD_SEGMENT@@QAAEPAU_DUPLICATED_INFORMATION@@@Z
118?QueryEntry@NTFS_INDEX_TREE@@QAAEKPAXKPAPAU_INDEX_ENTRY@@PAPAVNTFS_INDEX_BUFFER@@PAE@Z
119?QueryExtent@NTFS_EXTENT_LIST@@QBAEKPAVBIG_INT@@00@Z
120?QueryExtentList@NTFS_ATTRIBUTE_RECORD@@QBAEPAVNTFS_EXTENT_LIST@@@Z
121?QueryFileReference@NTFS_INDEX_TREE@@QAAEKPAXKPAU_MFT_SEGMENT_REFERENCE@@PAE@Z
122?QueryFileSizes@NTFS_FILE_RECORD_SEGMENT@@QAAEPAVBIG_INT@@0PAE@Z
123?QueryFlags@NTFS_MFT_INFO@@SAEPAXG@Z
124?QueryFrsFromPath@NTFS_SA@@QAAEPBVWSTRING@@PAVNTFS_MASTER_FILE_TABLE@@PAVNTFS_BITMAP@@PAVNTFS_FILE_RECORD_SEGMENT@@PAE4@Z
125?QueryLcnFromVcn@NTFS_EXTENT_LIST@@QBAEVBIG_INT@@PAV2@1@Z
126?QueryName@NTFS_ATTRIBUTE_RECORD@@QBAEPAVWSTRING@@@Z
127?QueryNextEntry@NTFS_ATTRIBUTE_LIST@@QBAEPAU_ATTR_LIST_CURR_ENTRY@@PAKPAVBIG_INT@@PAU_MFT_SEGMENT_REFERENCE@@PAGPAVWSTRING@@@Z
128?QueryNumberOfExtents@NTFS_EXTENT_LIST@@QBAKXZ
129?QuerySectorsInElementaryStructures@NTFS_SA@@SAKPAVDP_DRIVE@@KKKK@Z
130?QuerySegmentReference@NTFS_MFT_INFO@@SA?AU_MFT_SEGMENT_REFERENCE@@PAX@Z
131?QueryVolumeFlagsAndLabel@NTFS_SA@@QAAGPAE00PAVWSTRING@@@Z
132?Read@NTFS_ATTRIBUTE@@QAAEPAXVBIG_INT@@KPAK@Z
133?Read@NTFS_FRS_STRUCTURE@@QAAEVBIG_INT@@@Z
134?Read@NTFS_FRS_STRUCTURE@@UAAEXZ
135?Read@NTFS_MFT_FILE@@UAAEXZ
136?Read@NTFS_SA@@QAAEPAVMESSAGE@@@Z
137?Read@NTFS_SA@@UAAEXZ
138?ReadAgain@NTFS_FRS_STRUCTURE@@QAAEVBIG_INT@@@Z
139?ReadAt@NTFS_FRS_STRUCTURE@@QAAEVBIG_INT@@@Z
140?ReadList@NTFS_ATTRIBUTE_LIST@@QAAEXZ
141?ReadNext@NTFS_FRS_STRUCTURE@@QAAEVBIG_INT@@@Z
142?Relocate@NTFS_CLUSTER_RUN@@QAAXVBIG_INT@@@Z
143?ResetIterator@NTFS_INDEX_TREE@@QAAEE@Z
144?ResetIterator@NTFS_INDEX_TREE@@QAAEPBU_INDEX_ENTRY@@E@Z
145?Resize@NTFS_ATTRIBUTE@@UAAEVBIG_INT@@PAVNTFS_BITMAP@@@Z
146?SafeQueryAttribute@NTFS_FRS_STRUCTURE@@QAAEKPAVNTFS_ATTRIBUTE@@0PAVWSTRING@@@Z
147?Save@NTFS_INDEX_TREE@@QAAEPAVNTFS_FILE_RECORD_SEGMENT@@@Z
148SetOriginalVolumeName
149?SetSparse@NTFS_ATTRIBUTE@@UAAEVBIG_INT@@PAVNTFS_BITMAP@@E@Z
150?SetVolumeFlag@NTFS_SA@@QAAEGPAE@Z
151SetWriteViewCacheVolumeName
152?TakeCensus@NTFS_SA@@QAAEPAVNTFS_MASTER_FILE_TABLE@@KPAUNTFS_CENSUS_INFO@@@Z
153?Write@NTFS_ATTRIBUTE@@UAAEPBXVBIG_INT@@KPAKPAVNTFS_BITMAP@@@Z
154?Write@NTFS_BITMAP@@QAAEPAVNTFS_ATTRIBUTE@@PAV1@@Z
155?Write@NTFS_FILE_RECORD_SEGMENT@@UAAEXZ
156?Write@NTFS_FRS_STRUCTURE@@QAAEXZ
157?WriteModified@NTFS_BITMAP@@QAAEPAVNTFS_ATTRIBUTE@@PAV1@@Z
158?WriteRemainingBootCode@NTFS_SA@@QAAEXZ
159Chkdsk
160ChkdskEx
161CreateFormatCorruptionRecordContext
162DeleteFormatCorruptionRecordContext
163Extend
164Format
165FormatCorruptionRecordA
166FormatCorruptionRecordW
167FormatEx
168GetFilesystemInformation
169Recover
lib/libc/mingw/libarm32/upnphost.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of upnphost.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "upnphost.dll"
7EXPORTS
8SvchostPushServiceGlobals
9ServiceMain
lib/libc/mingw/libarm32/usbceip.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of usbceip.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "usbceip.dll"
7EXPORTS
8UsbCeip_Execute
lib/libc/mingw/libarm32/usbperf.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of USBPERF.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "USBPERF.dll"
7EXPORTS
8CloseUsbPerformanceData
9CollectUsbPerformanceData
10OpenUsbPerformanceData
lib/libc/mingw/libarm32/usbui.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of usbui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "usbui.dll"
7EXPORTS
8CPlApplet
9USBControllerBandwidthPage
10USBControllerPropPageProvider
11USBDevicePropPageProvider
12USBErrorHandler
13USBHubPowerPage
14USBHubPropPageProvider
15UsbControlPanelApplet
lib/libc/mingw/libarm32/userinitext.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of USERINITEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "USERINITEXT.dll"
7EXPORTS
8CreateExplorerSessionKey
9DisplayMessageAndExitWindows
10ImmWorker
11IsSubDesktopSession
12IsTSAppCompatOn
13LoadRemoteFontsAndInitMiscWorker
14PerformXForestLogonCheck
15ProcesRemoteSessionInitialCommand
16ProcessTermSrvIniFiles
17SetShellDesktopSwitchEvent
18SetupHotKeyForKeyboardLayout
19UserinitExt
lib/libc/mingw/libarm32/userlanguageprofilecallback.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of UserLanguageProfileCallback.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UserLanguageProfileCallback.dll"
7EXPORTS
8OnUserProfileChanged
lib/libc/mingw/libarm32/uudf.def created+25
......@@ -0,0 +1,25 @@
1;
2; Definition file of UUDF.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UUDF.dll"
7EXPORTS
8??0METADATA_PARTITION@@QAA@XZ
9??0UDF_LVOL@@QAA@XZ
10??0UDF_SA@@QAA@XZ
11??0UDF_VOL@@QAA@XZ
12??1METADATA_PARTITION@@UAA@XZ
13??1UDF_LVOL@@UAA@XZ
14??1UDF_SA@@UAA@XZ
15??1UDF_VOL@@UAA@XZ
16?CreateOnDisk@UDF_LVOL@@QAAEPAVUDF_SA@@PAVMESSAGE@@PAVVDS@@PAUEXTENTAD@@K3@Z
17?Initialize@UDF_SA@@QAAEPAVLOG_IO_DP_DRIVE@@PAVMESSAGE@@G@Z
18?Initialize@UDF_VOL@@QAA?AW4FORMAT_ERROR_CODE@@PBVWSTRING@@PAVMESSAGE@@EGEEE@Z
19?ReadFromDisk@UDF_LVOL@@QAAEPAVUDF_SA@@PAVMESSAGE@@PAVVDS@@@Z
20Chkdsk
21ChkdskEx
22Format
23FormatEx
24GetFilesystemInformation
25Recover
lib/libc/mingw/libarm32/uxinit.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of UXINIT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "UXINIT.dll"
7EXPORTS
8ThemeWatchForStart
9ord_2 @2
10ThemeUserLogoff
11ThemeUserLogon
12ThemeUserStartShell
13ThemeUserTSReconnect
14ThemesOnCreateSession
15ThemesOnTerminateSession
16ThemesOnLogon
17ThemesOnLogoff
18ThemesOnReconnect
19ThemesOnDisconnect
20ThemesOnEarlyCreateSession
lib/libc/mingw/libarm32/van.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of van.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "van.dll"
7EXPORTS
8HideVAN
9ShowVAN
10ShutdownVAN
11VanUIManager_CreateInstance
12RunVANW
lib/libc/mingw/libarm32/vaultcli.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of VAULTCLI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "VAULTCLI.dll"
7EXPORTS
8ord_101 @101
9ord_102 @102
10ord_103 @103
11ord_104 @104
12ord_105 @105
13ord_106 @106
14VaultAddItem
15VaultCloseVault
16VaultCreateItemType
17VaultDeleteItemType
18VaultEnumerateItemTypes
19VaultEnumerateItems
20VaultEnumerateVaults
21VaultFindItems
22VaultFree
23VaultGetInformation
24VaultGetItem
25VaultGetItemType
26VaultOpenVault
27VaultRemoveItem
lib/libc/mingw/libarm32/vaultsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of vaultsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "vaultsvc.dll"
7EXPORTS
8ServiceMain
9VaultSvcStopCallback
lib/libc/mingw/libarm32/vdsutil.def created+249
......@@ -0,0 +1,249 @@
1;
2; Definition file of vdsutil.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "vdsutil.dll"
7EXPORTS
8??0?$CVdsHandleImpl@$0PPPPPPPP@@@QAA@XZ
9??0CGlobalResource@@QAA@XZ
10??0CPrvEnumObject@@QAA@XZ
11??0CRtlList@@QAA@P6AXPAVCRtlEntry@@@Z@Z
12??0CRtlMap@@QAA@KP6AXPAVCRtlEntry@@@Z1@Z
13??0CRtlSharedLock@@QAA@XZ
14??0CVdsAsyncObjectBase@@QAA@XZ
15??0CVdsCallTracer@@QAA@KPBD@Z
16??0CVdsCriticalSection@@QAA@PAU_RTL_CRITICAL_SECTION@@@Z
17??0CVdsPnPNotificationBase@@QAA@XZ
18??0CVdsTraceSettings@@QAA@XZ
19??0CVdsUnlockIt@@QAA@AAJ@Z
20??0CVdsWmiVariantObjectArrayEnum@@QAA@XZ
21??1?$CVdsHandleImpl@$0PPPPPPPP@@@QAA@XZ
22??1CGlobalResource@@QAA@XZ
23??1CPrvEnumObject@@QAA@XZ
24??1CRtlList@@QAA@XZ
25??1CRtlMap@@UAA@XZ
26??1CRtlSharedLock@@QAA@XZ
27??1CVdsAsyncObjectBase@@QAA@XZ
28??1CVdsCallTracer@@QAA@XZ
29??1CVdsCriticalSection@@QAA@XZ
30??1CVdsPnPNotificationBase@@QAA@XZ
31??1CVdsUnlockIt@@QAA@XZ
32??1CVdsWmiVariantObjectArrayEnum@@QAA@XZ
33??4?$CVdsHandleImpl@$0PPPPPPPP@@@QAAPAXPAX@Z
34??4CRtlList@@QAAAAV0@AAV0@@Z
35??8?$CVdsHandleImpl@$0PPPPPPPP@@@QBA_NPAX@Z
36??B?$CVdsHandleImpl@$0PPPPPPPP@@@QAAPAXXZ
37??_FCRtlList@@QAAXXZ
38??_FCRtlMap@@QAAXXZ
39?AcquireRead@CRtlSharedLock@@AAAXXZ
40?AcquireRundownProtection@@YAEPAU_RUNDOWN_REF@@@Z
41?AcquireWrite@CRtlSharedLock@@AAAXXZ
42?AddEventSource@@YAKPAGPAUHINSTANCE__@@@Z
43?AllocateAndGetVolumePathName@@YAJPBGPAPAG@Z
44?AllowCancel@CVdsAsyncObjectBase@@QAAXXZ
45?Append@CPrvEnumObject@@QAAJPAUIUnknown@@@Z
46?AssignTempVolumeName@@YAJPAGQAG@Z
47?Attach@CVdsWmiVariantObjectArrayEnum@@QAAJPAUtagVARIANT@@@Z
48?BacksBootVolume@@YAHPAG@Z
49?Begin@CRtlList@@QAA?AVCRtlListIter@@XZ
50?Begin@CRtlMap@@QAA?AVCRtlMapIter@@XZ
51?BootBackedByWim@@YAHPAG@Z
52?Cancel@CVdsAsyncObjectBase@@UAAJXZ
53?Clear@CPrvEnumObject@@QAAXXZ
54?Clone@CPrvEnumObject@@UAAJPAPAUIEnumVdsObject@@@Z
55?CoFreeStringArray@@YAXPAPAGJ@Z
56?CreateDeviceInfoSet@@YAKPAGPAPAXPAU_SP_DEVINFO_DATA@@@Z
57?CreateListenThread@CVdsPnPNotificationBase@@AAAKXZ
58?CurrentThreadIsWriter@CRtlSharedLock@@QAAHXZ
59?DeleteBcdObjects@@YAJPAU_VDS_PARTITION_IDENTITY@@@Z
60?DeleteNetworkShare@@YAHPAG@Z
61?Detach@CVdsWmiVariantObjectArrayEnum@@QAAJXZ
62?DisallowCancel@CVdsAsyncObjectBase@@QAAXXZ
63?Downgrade@CRtlSharedLock@@AAAXXZ
64?End@CRtlList@@QAA?AVCRtlListIter@@XZ
65?Find@CRtlMap@@QAAHAAVCRtlEntry@@PAV2@@Z
66?FindPtr@CRtlMap@@QAAHAAVCRtlEntry@@PAPAV2@@Z
67?GarbageCollectDriveLetters@@YAXXZ
68?GetBootDiskNumber@@YAJPAKPAPAK@Z
69?GetBootFromDiskNumber@@YAJPAK@Z
70?GetBootVolumeHandle@@YAJPAPAX@Z
71?GetDefaultAlignment@@YAJPAK_KW4_VDS_PARTITION_STYLE@@KKPAE@Z
72?GetDeviceAndMediaType@@YAKPAGPAXPAK2@Z
73?GetDeviceId@@YAKPAXPAU_SP_DEVINFO_DATA@@PAPAG@Z
74?GetDeviceLocation@@YAKPAXPAU_VDS_DISK_PROP@@@Z
75?GetDeviceLocationEx@@YAKPAXKPAU_VDS_DISK_PROP2@@@Z
76?GetDeviceLocationPath@@YAKW4_VDS_STORAGE_BUS_TYPE@@KU_SCSI_ADDRESS@@PAPAG@Z
77?GetDeviceManufacturerInfo@@YAKPAXPAPAG111@Z
78?GetDeviceName@@YAKPAXHKPAG@Z
79?GetDeviceNumber@@YAKPAXPAU_STORAGE_DEVICE_NUMBER@@@Z
80?GetDeviceRegistryProperty@@YAKKKPAPAEK@Z
81?GetDeviceRegistryProperty@@YAKPAXPAU_SP_DEVINFO_DATA@@KPAPAEK@Z
82?GetDiskFlags@@YAKPAXPAE11@Z
83?GetDiskIdentifiers@@YAJPBG0PAPAGPAG@Z
84?GetDiskLayout@@YAKPAXPAPAU_DRIVE_LAYOUT_INFORMATION_EX@@@Z
85?GetDiskOfflineReason@@YAKPAXPAW4_VDS_DISK_OFFLINE_REASON@@@Z
86?GetDiskRedundancyCount@@YAJPAXPAK@Z
87?GetEntry@CRtlListIter@@QAAPAVCRtlEntry@@XZ
88?GetEntryPointer@CRtlListIter@@QAAPAXXZ
89?GetFMIFSEnableCompressionRoutine@@YAP6AEPAGG@ZXZ
90?GetFMIFSFormatEx2Routine@@YAP6AXPAGW4_FMIFS_MEDIA_TYPE@@0PAUFMIFS_FORMATEX2_PARAM@@P6AEW4_FMIFS_PACKET_TYPE@@KPAX@Z@ZXZ
91?GetFMIFSGetDefaultFilesystemRoutine@@YAP6AEPAUFMIFS_DEF_FS_PARAM@@PAUFMIFS_DEF_FS_OUT@@PAK@ZXZ
92?GetFMIFSQueryDeviceInfo@@YAP6AEPAGPAU_FMIFS_DEVICE_INFORMATION@@K@ZXZ
93?GetFMIFSQueryDeviceInfoByHandle@@YAP6AEPAXPAU_FMIFS_DEVICE_INFORMATION@@K@ZXZ
94?GetFileSystemRecognitionName@@YAJPAXPAPAG@Z
95?GetInterfaceDetailData@@YAKPAXPAU_SP_DEVICE_INTERFACE_DATA@@PAPAU_SP_DEVICE_INTERFACE_DETAIL_DATA_W@@@Z
96?GetIsRemovable@@YAKPAXPAH@Z
97?GetMediaGeometry@@YAKPAXKPAPAU_DISK_GEOMETRY_EX@@@Z
98?GetMediaGeometry@@YAKPAXPAU_VDS_DISK_PROP@@@Z
99?GetMediaGeometryEx@@YAKPAXPAU_VDS_DISK_PROP2@@@Z
100?GetNode@CRtlListIter@@QAAPAVCRtlListEntry@@XZ
101?GetOutputType@CVdsAsyncObjectBase@@QAA?AW4_VDS_ASYNC_OUTPUT_TYPE@@XZ
102?GetPartitionInformation@@YAKPAXPAU_PARTITION_INFORMATION_EX@@@Z
103?GetRegistryValue@@YAKPAUHKEY__@@PAG1PAPAXAAK@Z
104?GetStorageAccessAlignmentProperty@@YAKPAXPAU_STORAGE_ACCESS_ALIGNMENT_DESCRIPTOR@@@Z
105?GetSystemVolumeHandle@@YAJPAPAX@Z
106?GetVolumeDiskExtentInfo@@YAKPAXPAPAU_VOLUME_DISK_EXTENTS@@@Z
107?GetVolumeGuidPathnames@@YAJPAGPAKPAPAPAG@Z
108?GetVolumeName@@YAJPAGK0@Z
109?GetVolumePath@@YAJPAU_MOUNTMGR_MOUNT_POINT@@PAU_MOUNTMGR_MOUNT_POINTS@@PAPAG@Z
110?GetVolumeSize@@YAKPAGPA_K@Z
111?GetVolumeUniqueId@@YAKPAU_VDS_VOLUME_PROP2@@@Z
112?GetWindowHandle@CVdsPnPNotificationBase@@QAAPAUHWND__@@XZ
113?GuidToString@@YAJPAU_GUID@@PAGK@Z
114?Initialize@CGlobalResource@@QAAJXZ
115?Initialize@CVdsAsyncObjectBase@@SAKXZ
116?Initialize@CVdsPnPNotificationBase@@QAAKXZ
117?InitializeRundownProtection@@YAXPAU_RUNDOWN_REF@@@Z
118?InitializeSecurityDescriptor@@YAKKPAXPAPAU_ACL@@PAPAX22@Z
119?Insert@CRtlList@@QAAHAAVCRtlListIter@@AAVCRtlEntry@@@Z
120?Insert@CRtlMap@@QAAHAAVCRtlEntry@@0@Z
121?InsertHead@CRtlList@@QAAHAAVCRtlEntry@@@Z
122?InsertHeadPointer@CRtlList@@QAAHPAX@Z
123?InsertPointer@CRtlList@@QAAHAAVCRtlListIter@@PAX@Z
124?InsertTail@CRtlList@@QAAHAAVCRtlEntry@@@Z
125?InsertTailPointer@CRtlList@@QAAHPAX@Z
126?InsertUnique@CRtlMap@@QAAHAAVCRtlEntry@@0@Z
127?InvalidateDiskCache@@YAJPAG@Z
128?IoctlMountmgrQueryPointsDevicePath@@YAJPAGPAPAU_MOUNTMGR_MOUNT_POINTS@@@Z
129?IsCancelRequested@CVdsAsyncObjectBase@@QAAHXZ
130?IsClientSKU@@YAHXZ
131?IsDeviceFullyInstalled@@YAHPAG@Z
132?IsDiskClustered@@YAKPAXPAE111@Z
133?IsDiskCurrentStateReadOnly@@YAKPAXPAE@Z
134?IsDiskReadOnly@@YAKPAXPAE@Z
135?IsDone@CRtlListIter@@QAAHXZ
136?IsDriveLetter@@YAHPAG@Z
137?IsEfiFirmware@@YAHXZ
138?IsFinished@CVdsAsyncObjectBase@@QAAHXZ
139?IsLocalComputer@@YAJPAG@Z
140?IsLoggingEnabledW@@YAEXZ
141?IsMediaPresent@@YAHPAX@Z
142?IsNoAutoMount@@YAHXZ
143?IsRamDrive@@YAEPAG@Z
144?IsRunningOnAMD64@@YAHXZ
145?IsWinPE@@YAHXZ
146?LockDismountVolume@@YAKPAXHE@Z
147?LockVolume@@YAKPAXE@Z
148?LogError@@YAXPAGKKPAXKK0PAD@Z
149?LogEvent@@YAXPAGKGKPAXKQAPAG@Z
150?LogInfo@@YAXPAGKKPAXK0PAD@Z
151?LogWarning@@YAXPAGKKPAXKK0PAD@Z
152?MirrorBcdObjects@@YAJPAU_VDS_PARTITION_IDENTITY@@0@Z
153?MountVolume@@YAKPAG@Z
154?Next@CPrvEnumObject@@UAAJKPAPAUIUnknown@@PAK@Z
155?Next@CRtlListIter@@QAAAAV1@XZ
156?Next@CRtlMapIter@@QAAAAV1@XZ
157?Next@CVdsWmiVariantObjectArrayEnum@@QAAJPAPAUIWbemClassObject@@@Z
158?NotificationThread@CVdsPnPNotificationBase@@AAAKPAX@Z
159?NotificationThreadEntry@CVdsPnPNotificationBase@@CAKPAX@Z
160?OpenDevice@@YAKPAGKPAPAX@Z
161?Prev@CRtlListIter@@QAAAAV1@XZ
162?QueryObjects@@YAJPAUIUnknown@@PAPAUIEnumVdsObject@@@Z
163?QueryObjects@@YAJPAUIUnknown@@PAPAUIEnumVdsObject@@AAU_RTL_CRITICAL_SECTION@@@Z
164?QueryStatus@CVdsAsyncObjectBase@@UAAJPAJPAK@Z
165?QueryVolPersistentState@@YAHPAGPAU_FILE_FS_PERSISTENT_VOLUME_INFORMATION@@@Z
166?ReInitializeRundownProtection@@YAXPAU_RUNDOWN_REF@@@Z
167?Register@CVdsPnPNotificationBase@@QAAKPAU_NotificationListeningRequest@@K@Z
168?RegisterHandle@CVdsPnPNotificationBase@@QAAKPAXPAPAX@Z
169?RegisterProvider@@YAJU_GUID@@0PAGW4_VDS_PROVIDER_TYPE@@110@Z
170?Release@CRtlSharedLock@@AAAXXZ
171?ReleaseRundownProtection@@YAXPAU_RUNDOWN_REF@@@Z
172?Remove@CRtlList@@QAAXAAVCRtlListIter@@@Z
173?Remove@CRtlMap@@QAAHAAVCRtlEntry@@@Z
174?RemoveAll@CRtlList@@QAAXXZ
175?RemoveAll@CRtlMap@@QAAXH@Z
176?RemoveEventSource@@YAKPAG@Z
177?RemoveTempVolumeName@@YAXPAG0@Z
178?Reset@CPrvEnumObject@@UAAJXZ
179?Reset@CVdsWmiVariantObjectArrayEnum@@QAAJXZ
180?RundownCompleted@@YAXPAU_RUNDOWN_REF@@@Z
181?SetCompletionStatus@CVdsAsyncObjectBase@@QAAXJK@Z
182?SetDiskLayout@@YAKPAXPAU_DRIVE_LAYOUT_INFORMATION_EX@@@Z
183?SetOutput@CVdsAsyncObjectBase@@QAAXU_VDS_ASYNC_OUTPUT@@@Z
184?SetOutputType@CVdsAsyncObjectBase@@QAAXW4_VDS_ASYNC_OUTPUT_TYPE@@@Z
185?SetPositionToLast@CPrvEnumObject@@QAAXXZ
186?Signal@CVdsAsyncObjectBase@@QAAXXZ
187?Skip@CPrvEnumObject@@UAAJK@Z
188?StartReferenceHistory@@YAKXZ
189?StopReferenceHistory@@YAXXZ
190?UnInitializeGlobalResouce@@YAJXZ
191?Uninitialize@CVdsAsyncObjectBase@@SAXXZ
192?Uninitialize@CVdsPnPNotificationBase@@QAAXXZ
193?Unregister@CVdsPnPNotificationBase@@QAAXPAU_NotificationListeningRequest@@@Z
194?UnregisterHandle@CVdsPnPNotificationBase@@QAAXPAX@Z
195?UnregisterProvider@@YAJU_GUID@@@Z
196?Upgrade@CRtlSharedLock@@AAAXXZ
197?VdsAllocateEmptyString@@YAPAGXZ
198?VdsAllocateString@@YAJPAGPAPAG@Z
199?VdsAssert@@YAXPBDI0@Z
200?VdsBinaryToAscii@@YAPAEPAEKPAK@Z
201?VdsDoesDiskHaveArcPath@@YAKKPAE@Z
202?VdsHeapAlloc@@YAPAXPAXKK@Z
203?VdsHeapFree@@YAHPAXK0@Z
204?VdsInitializeCriticalSection@@YAKPAU_RTL_CRITICAL_SECTION@@@Z
205?VdsIscsiCacheSessionDevices@@YAJPAUIEnumWbemClassObject@@PAPAU_VDSISCSI_SESSION_DEVICES_CACHE@@@Z
206?VdsIscsiCheckEqualIpAddress@@YAHU_VDS_IPADDRESS@@0@Z
207?VdsIscsiGetIpAddressFromInstance@@YAJPAUIWbemClassObject@@PAGPAU_VDS_IPADDRESS@@@Z
208?VdsIscsiIpAddressToIpsecId@@YAJPAU_VDS_IPADDRESS@@PAEPAKPAPAE@Z
209?VdsIscsiIpAddressToString@@YAJPAU_VDS_IPADDRESS@@KPAG@Z
210?VdsIscsiIpsecIdToIpAddress@@YAJEKPAEPAU_VDS_IPADDRESS@@@Z
211?VdsIscsiIsIscsiLun@@YAJPAUIWbemClassObject@@PAU_VDSISCSI_SESSION_DEVICES_CACHE@@PAH@Z
212?VdsIscsiSetIpAddressInInstance@@YAJPAUIWbemServices@@PAUIWbemClassObject@@PAGPAU_VDS_IPADDRESS@@@Z
213?VdsParseDeviceID@@YAPAEPAU_STORAGE_DEVICE_ID_DESCRIPTOR@@PAG@Z
214?VdsRegKeyGetDWord@@YAKPBG0PAK@Z
215?VdsTrace@@YAXKPADZZ
216?VdsTraceEx@@YAXKKPADZZ
217?VdsTraceExHelper@@YAXKKPAD0@Z
218?VdsTraceExW@@YAXKKPAGZZ
219?VdsTraceExWHelper@@YAXKKPAGPAD@Z
220?VdsTraceW@@YAXKPAGZZ
221?VdsWmiCallMethod@@YAJPAUIWbemServices@@PAUIWbemClassObject@@PAG1PAPAU2@@Z
222?VdsWmiConnectToNamespace@@YAJPAGPAPAUIWbemLocator@@PAPAUIWbemServices@@@Z
223?VdsWmiCopyFromVariantByteArray@@YAJPAUIWbemClassObject@@PAGJPAE@Z
224?VdsWmiCopyToVariantByteArray@@YAJPAUIWbemClassObject@@PAGJPAE@Z
225?VdsWmiCreateClassInstance@@YAJPAUIWbemServices@@PAGPAPAUIWbemClassObject@@@Z
226?VdsWmiCreateVariantArray@@YAJGJPAUtagVARIANT@@@Z
227?VdsWmiFindInstanceOfClass@@YAJPAUIWbemServices@@PAG1PAPAUIWbemClassObject@@@Z
228?VdsWmiGetBoolFromInstance@@YAJPAUIWbemClassObject@@PAGPAH@Z
229?VdsWmiGetByteFromInstance@@YAJPAUIWbemClassObject@@PAGPAE@Z
230?VdsWmiGetByteInVariantByteArray@@YAJPAUIWbemClassObject@@PAGJPAE@Z
231?VdsWmiGetMethodArgumentObject@@YAJPAUIWbemServices@@PAG1PAPAUIWbemClassObject@@@Z
232?VdsWmiGetObjectFromInstance@@YAJPAUIWbemClassObject@@PAGPAPAU1@@Z
233?VdsWmiGetObjectInVariantObjectArray@@YAJPAUIWbemClassObject@@PAGJPAPAU1@@Z
234?VdsWmiGetUlongFromInstance@@YAJPAUIWbemClassObject@@PAGPAK@Z
235?VdsWmiGetUlonglongFromInstance@@YAJPAUIWbemClassObject@@PAGPA_K@Z
236?VdsWmiSetBoolInInstance@@YAJPAUIWbemClassObject@@PAGH@Z
237?VdsWmiSetByteInInstance@@YAJPAUIWbemClassObject@@PAGE@Z
238?VdsWmiSetObjectInInstance@@YAJPAUIWbemClassObject@@PAG0@Z
239?VdsWmiSetStringInInstance@@YAJPAUIWbemClassObject@@PAG1@Z
240?VdsWmiSetUlongInInstance@@YAJPAUIWbemClassObject@@PAGK@Z
241?VdsWmiSetUlonglongInInstance@@YAJPAUIWbemClassObject@@PAG_K@Z
242?WaitForRundownProtectionRelease@@YAXPAU_RUNDOWN_REF@@@Z
243?WaitImpl@CVdsAsyncObjectBase@@QAAJPAJ@Z
244?WindowProcEntry@CVdsPnPNotificationBase@@CAJPAUHWND__@@IIJ@Z
245?WriteBootCode@@YAKPAX@Z
246?ZeroAsyncOut@CVdsAsyncObjectBase@@QAAXXZ
247?m_ExtraLogging@CVdsTraceSettings@@QAAHXZ
248?m_NoDebuggerLogging@CVdsTraceSettings@@QAAHXZ
249VdsDisableCOMFatalExceptionHandling
lib/libc/mingw/libarm32/verifier.def created+33
......@@ -0,0 +1,33 @@
1;
2; Definition file of VERIFIER.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "VERIFIER.dll"
7EXPORTS
8AVrfAPILookupCallback
9VerifierAddFreeMemoryCallback
10VerifierCheckPageHeapAllocation
11VerifierCreateRpcPageHeap
12VerifierDeleteFreeMemoryCallback
13VerifierDestroyRpcPageHeap
14VerifierDisableFaultInjectionExclusionRange
15VerifierDisableFaultInjectionTargetRange
16VerifierEnableFaultInjectionExclusionRange
17VerifierEnableFaultInjectionTargetRange
18VerifierEnumerateResource
19VerifierForceNormalHeap
20VerifierGetInfoForException
21VerifierGetMemoryForDump
22VerifierGetPropertyValueByName
23VerifierGetProviderHelper
24VerifierIsAddressInAnyPageHeap
25VerifierIsCurrentThreadHoldingLocks
26VerifierIsDllEntryActive
27VerifierIsPerUserSettingsEnabled
28VerifierQueryRuntimeFlags
29VerifierRedirectStopFunctions
30VerifierSetFaultInjectionProbability
31VerifierSetFlags
32VerifierSetRuntimeFlags
33VerifierStopMessage
lib/libc/mingw/libarm32/vpnike.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of VPNIKE.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "VPNIKE.DLL"
7EXPORTS
8InitializeProtocolEngine
9InitializeServerProtocolEngine
10SendMessageToProtocolEngine
11UninitializeProtocolEngine
12UninitializeServerProtocolEngine
lib/libc/mingw/libarm32/vpnikeapi.def created+31
......@@ -0,0 +1,31 @@
1;
2; Definition file of VPNIKEAPI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "VPNIKEAPI.DLL"
7EXPORTS
8CancelProcessEapAuthPacket
9CloseTunnel
10CreateTunnel
11FreeConfigurationPayloadBuffer
12FreeEapAuthAttributes
13FreeEapAuthPacket
14FreeIDPayloadBuffer
15FreeTrafficSelectors
16GetConfigurationPayloadRequest
17GetIDPayload
18GetNewTunnelID
19GetServerEapAuthRequestPacket
20GetTrafficSelectorsRequest
21NewRasIncomingCall
22ProcessAdditionalAddressNotification
23ProcessConfigurationPayloadReply
24ProcessConfigurationPayloadRequest
25ProcessEapAuthPacket
26ProcessTrafficSelectorsReply
27ProcessTrafficSelectorsRequest
28QueryEapAuthAttributes
29RemoveTrafficSelectors
30TunnelAuthDone
31UpdateTunnel
lib/libc/mingw/libarm32/vsstrace.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of VssTrace.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "VssTrace.DLL"
7EXPORTS
8VssTraceInitialize
9VssTraceUninitialize
10VssTraceMessage
11VssTraceBinary
12VssIsTracingEnabled
13VssIsTracingEnabledPerThread
14VssIsTracingEnabledOnModule
15VssIsTracingEnabledOnFunction
16VssSetTracingContextPerThread
17VssGetTracingContextPerThread
18VssGetTracingSequenceNumber
19VssGetTracingModuleInfo
20AssertFail
21VssSetDebugReport
22VssIsKernelDebuggerAttached
lib/libc/mingw/libarm32/wbiosrvc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of wbiosrvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wbiosrvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
10WbioEasPolicyBiometricLogonsAllowed
11WbioEasPolicyCheckProtectionAndRemoveCredentials
lib/libc/mingw/libarm32/wcl.def created+1417
......@@ -0,0 +1,1417 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Wcl.dll"
7EXPORTS
8CreateCommandLine
9FailFast
10GetRuntimeException
11t10 DATA
12t100 DATA
13t100.m0
14t101 DATA
15t101.m0
16t101.m1
17t102 DATA
18t103.m19
19t104 DATA
20t105 DATA
21t106 DATA
22t107 DATA
23t107.m0
24t108 DATA
25t109 DATA
26t109.m0
27t109.m1
28t109.m2
29t109.m3
30t109.m4
31t11 DATA
32t11.m0
33t11.m1
34t110 DATA
35t110.m0
36t110.m1
37t110.m2
38t111 DATA
39t111.m0
40t111.m1
41t111.m2
42t111.m3
43t111.m4
44t111.m5
45t111.m6
46t111.m7
47t112 DATA
48t112.m0
49t112.m1
50t112.m2
51t113 DATA
52t113.m0
53t113.m1
54t113.m2
55t114 DATA
56t115 DATA
57t116 DATA
58t117.m0
59t118 DATA
60t119 DATA
61t12 DATA
62t12.m0
63t12.m1
64t12.m10
65t12.m11
66t12.m12
67t12.m13
68t12.m14
69t12.m15
70t12.m2
71t12.m3
72t12.m4
73t12.m5
74t12.m6
75t12.m7
76t12.m8
77t12.m9
78t120 DATA
79t121 DATA
80t122 DATA
81t123 DATA
82t123.m0
83t123.m1
84t124 DATA
85t125 DATA
86t126 DATA
87t127 DATA
88t128 DATA
89t128.m0
90t129 DATA
91t13 DATA
92t13.m0
93t13.m1
94t13.m2
95t13.m3
96t13.m4
97t13.m5
98t130 DATA
99t131 DATA
100t131.m0
101t132 DATA
102t132.m0
103t133 DATA
104t133.m0
105t134 DATA
106t134.m0
107t135 DATA
108t135.m0
109t136 DATA
110t136.m0
111t137 DATA
112t137.m0
113t138 DATA
114t138.m0
115t139 DATA
116t139.m0
117t14 DATA
118t14.m0
119t14.m1
120t14.m10
121t14.m11
122t14.m12
123t14.m13
124t14.m14
125t14.m15
126t14.m16
127t14.m17
128t14.m18
129t14.m19
130t14.m2
131t14.m20
132t14.m21
133t14.m22
134t14.m23
135t14.m24
136t14.m25
137t14.m26
138t14.m27
139t14.m28
140t14.m29
141t14.m3
142t14.m30
143t14.m31
144t14.m32
145t14.m33
146t14.m34
147t14.m4
148t14.m5
149t14.m6
150t14.m7
151t14.m8
152t14.m9
153t140 DATA
154t140.m0
155t141 DATA
156t141.m0
157t142 DATA
158t142.m0
159t142.m1
160t143.m0
161t143.m1
162t143.m15
163t143.m16
164t143.m17
165t143.m19
166t143.m2
167t143.m21
168t143.m3
169t143.m4
170t143.m5
171t143.m8
172t143.m9
173t144 DATA
174t145.m0
175t145.m1
176t146.m0
177t146.m1
178t146.m2
179t146.m3
180t146.m4
181t147 DATA
182t147.m0
183t148 DATA
184t148.m0
185t148.m1
186t148.m2
187t148.m3
188t148.m4
189t148.m5
190t148.m6
191t148.m7
192t148.m8
193t148.m9
194t149 DATA
195t149.m0
196t15 DATA
197t15.m0
198t15.m1
199t15.m2
200t15.m3
201t15.m4
202t15.m5
203t15.m6
204t15.m7
205t15.m8
206t150 DATA
207t150.m0
208t151 DATA
209t151.m0
210t151.m1
211t152.m0
212t152.m1
213t152.m2
214t152.m3
215t152.m4
216t152.m5
217t153 DATA
218t154 DATA
219t154.m0
220t154.m1
221t155 DATA
222t155.m0
223t155.m1
224t155.m2
225t155.m3
226t155.m4
227t155.m5
228t156 DATA
229t156.m0
230t156.m1
231t156.m2
232t156.m3
233t156.m4
234t156.m5
235t157 DATA
236t157.m0
237t157.m1
238t157.m2
239t157.m3
240t157.m4
241t157.m5
242t158 DATA
243t159 DATA
244t159.m0
245t159.m1
246t16 DATA
247t16.m0
248t16.m1
249t16.m2
250t16.m3
251t16.m4
252t16.m5
253t16.m7
254t16.m8
255t160.m0
256t160.m1
257t160.m10
258t160.m11
259t160.m12
260t160.m13
261t160.m14
262t160.m15
263t160.m2
264t160.m3
265t160.m4
266t160.m5
267t160.m6
268t160.m7
269t160.m8
270t160.m9
271t161 DATA
272t161.m0
273t162 DATA
274t163 DATA
275t163.m0
276t164 DATA
277t165 DATA
278t166 DATA
279t166.m0
280t167 DATA
281t167.m0
282t168 DATA
283t168.m0
284t168.m1
285t169 DATA
286t169.m0
287t169.m1
288t17 DATA
289t17.m0
290t17.m1
291t17.m2
292t170 DATA
293t170.m0
294t171 DATA
295t171.m0
296t171.m1
297t171.m2
298t171.m3
299t171.m4
300t171.m5
301t172 DATA
302t172.m0
303t177 DATA
304t177.m0
305t178 DATA
306t178.m0
307t179 DATA
308t179.m0
309t18 DATA
310t18.m0
311t18.m1
312t18.m10
313t18.m11
314t18.m12
315t18.m13
316t18.m14
317t18.m15
318t18.m16
319t18.m17
320t18.m2
321t18.m3
322t18.m4
323t18.m5
324t18.m6
325t18.m7
326t18.m8
327t18.m9
328t180 DATA
329t180.m0
330t181 DATA
331t181.m0
332t182 DATA
333t182.m0
334t183 DATA
335t183.m0
336t185 DATA
337t185.m0
338t186 DATA
339t186.m0
340t187 DATA
341t187.m0
342t188 DATA
343t188.m0
344t188.m1
345t189 DATA
346t190 DATA
347t190.m0
348t191 DATA
349t191.m0
350t192.m0
351t193 DATA
352t193.m0
353t194 DATA
354t195 DATA
355t195.m0
356t196 DATA
357t197 DATA
358t198 DATA
359t199 DATA
360t199.m0
361t2 DATA
362t2.m0
363t2.m1
364t2.m2
365t2.m3
366t20.m0
367t200 DATA
368t201 DATA
369t201.m0
370t201.m1
371t201.m2
372t201.m3
373t201.m4
374t201.m5
375t202 DATA
376t203 DATA
377t204 DATA
378t204.m0
379t205 DATA
380t205.m0
381t206 DATA
382t206.m0
383t207 DATA
384t207.m0
385t208 DATA
386t208.m0
387t209 DATA
388t21.m0
389t21.m1
390t21.m2
391t21.m3
392t210 DATA
393t211 DATA
394t212 DATA
395t212.m0
396t213 DATA
397t213.m0
398t214 DATA
399t214.m0
400t215 DATA
401t215.m0
402t216 DATA
403t216.m0
404t216.m1
405t217 DATA
406t218 DATA
407t219 DATA
408t219.m0
409t219.m1
410t219.m2
411t22.m0
412t22.m1
413t220 DATA
414t220.m0
415t220.m1
416t220.m2
417t220.m3
418t220.m4
419t220.m5
420t221 DATA
421t222 DATA
422t222.m0
423t223 DATA
424t223.m0
425t224 DATA
426t224.m0
427t224.m1
428t224.m10
429t224.m11
430t224.m2
431t224.m4
432t224.m5
433t224.m6
434t224.m7
435t224.m8
436t224.m9
437t225 DATA
438t226.m0
439t226.m1
440t226.m2
441t226.m3
442t227 DATA
443t227.m0
444t228 DATA
445t228.m0
446t228.m1
447t228.m10
448t228.m11
449t228.m12
450t228.m13
451t228.m14
452t228.m15
453t228.m16
454t228.m17
455t228.m18
456t228.m19
457t228.m2
458t228.m20
459t228.m21
460t228.m22
461t228.m23
462t228.m24
463t228.m25
464t228.m26
465t228.m27
466t228.m28
467t228.m29
468t228.m3
469t228.m30
470t228.m31
471t228.m32
472t228.m33
473t228.m34
474t228.m35
475t228.m36
476t228.m37
477t228.m38
478t228.m39
479t228.m4
480t228.m5
481t228.m6
482t228.m7
483t228.m8
484t228.m9
485t228static_gcdata DATA
486t23 DATA
487t23.m0
488t23.m1
489t230 DATA
490t231 DATA
491t232 DATA
492t233 DATA
493t234 DATA
494t235 DATA
495t236 DATA
496t237 DATA
497t238 DATA
498t238.m0
499t238.m1
500t239 DATA
501t239.m0
502t239.m1
503t239.m2
504t239.m3
505t239.m4
506t239.m5
507t239.m6
508t239.m7
509t24 DATA
510t240 DATA
511t240.m0
512t240.m1
513t240.m2
514t240.m3
515t240.m4
516t240.m5
517t240.m6
518t240.m7
519t241 DATA
520t241.m0
521t241.m1
522t241.m2
523t241.m3
524t241.m4
525t241.m5
526t241.m6
527t241.m7
528t241.m8
529t242 DATA
530t243 DATA
531t244 DATA
532t245.m0
533t245.m1
534t245.m2
535t245.m3
536t245.m4
537t246 DATA
538t247 DATA
539t248 DATA
540t249 DATA
541t249.m0
542t249.m1
543t249.m2
544t249.m3
545t249.m4
546t249.m5
547t25 DATA
548t250 DATA
549t250.m0
550t250.m1
551t251 DATA
552t251.m0
553t251.m1
554t252 DATA
555t253 DATA
556t254 DATA
557t255 DATA
558t256 DATA
559t257 DATA
560t258 DATA
561t259 DATA
562t26 DATA
563t26.m0
564t26.m1
565t26.m2
566t26.m3
567t26.m4
568t26.m5
569t260 DATA
570t260.m0
571t260.m1
572t260.m2
573t260.m3
574t261 DATA
575t262 DATA
576t262.m0
577t262.m1
578t263 DATA
579t263.m0
580t263.m1
581t263.m2
582t263.m3
583t263.m4
584t263.m5
585t263.m6
586t264 DATA
587t264.m0
588t264.m1
589t264.m2
590t264.m3
591t265 DATA
592t265.m0
593t265.m1
594t265.m2
595t265.m3
596t265.m4
597t265.m5
598t265.m6
599t266 DATA
600t267.m0
601t267.m1
602t267.m2
603t267.m3
604t267.m4
605t267.m5
606t267.m6
607t267.m7
608t267.m8
609t268 DATA
610t269 DATA
611t27 DATA
612t270 DATA
613t271 DATA
614t272 DATA
615t272.m0
616t272.m1
617t272.m2
618t272.m3
619t272.m4
620t272.m5
621t273.m0
622t273.m1
623t273.m2
624t273.m3
625t273.m4
626t273.m5
627t274 DATA
628t274.m0
629t274.m1
630t275 DATA
631t275.m0
632t276 DATA
633t276.m0
634t277 DATA
635t277.m0
636t278 DATA
637t278.m0
638t279 DATA
639t279.m0
640t28 DATA
641t280 DATA
642t280.m0
643t281 DATA
644t281.m0
645t282 DATA
646t282.m0
647t283 DATA
648t283.m0
649t283.m1
650t284 DATA
651t285 DATA
652t286 DATA
653t287 DATA
654t288 DATA
655t289 DATA
656t29 DATA
657t290 DATA
658t290.m0
659t290.m1
660t290.m10
661t290.m11
662t290.m12
663t290.m13
664t290.m14
665t290.m15
666t290.m16
667t290.m17
668t290.m18
669t290.m19
670t290.m2
671t290.m20
672t290.m21
673t290.m22
674t290.m23
675t290.m3
676t290.m4
677t290.m5
678t290.m6
679t290.m7
680t290.m8
681t290.m9
682t291 DATA
683t291.m0
684t291.m1
685t291.m2
686t292 DATA
687t293 DATA
688t294 DATA
689t294.m0
690t295 DATA
691t295.m0
692t295.m1
693t295.m2
694t295.m3
695t295.m4
696t295.m5
697t295.m6
698t295.m7
699t296 DATA
700t297 DATA
701t297.m0
702t297.m1
703t297.m2
704t297.m3
705t297.m4
706t297.m5
707t297.m6
708t298 DATA
709t298.m0
710t298.m1
711t298.m2
712t298.m3
713t298.m4
714t298.m5
715t299 DATA
716t3 DATA
717t30 DATA
718t300 DATA
719t300.m0
720t300.m1
721t300.m2
722t300.m3
723t300.m4
724t300.m5
725t300.m6
726t300.m7
727t301 DATA
728t301.m0
729t301.m1
730t301.m2
731t301.m3
732t301.m4
733t301.m5
734t301.m6
735t302 DATA
736t302.m0
737t303 DATA
738t303.m0
739t303.m1
740t304 DATA
741t304.m0
742t305 DATA
743t305.m0
744t305.m1
745t305.m3
746t306 DATA
747t306.m0
748t307 DATA
749t307.m0
750t307.m1
751t308 DATA
752t308.m0
753t308.m1
754t308.m2
755t309 DATA
756t309.m0
757t309.m1
758t309.m2
759t309.m3
760t309.m4
761t31 DATA
762t310 DATA
763t311 DATA
764t311.m0
765t311.m1
766t311.m2
767t311.m3
768t311.m4
769t311.m5
770t311.m6
771t311.m7
772t312 DATA
773t313 DATA
774t313.m0
775t313.m1
776t313.m2
777t313.m3
778t314 DATA
779t315 DATA
780t316 DATA
781t317 DATA
782t318 DATA
783t318.m0
784t318.m1
785t319 DATA
786t319.m0
787t32 DATA
788t32.m0
789t32.m1
790t32.m10
791t32.m11
792t32.m12
793t32.m13
794t32.m14
795t32.m15
796t32.m16
797t32.m17
798t32.m18
799t32.m19
800t32.m2
801t32.m3
802t32.m4
803t32.m5
804t32.m6
805t32.m7
806t32.m8
807t32.m9
808t320 DATA
809t320.m0
810t320.m1
811t321 DATA
812t321.m0
813t322 DATA
814t322.m0
815t323 DATA
816t323.m0
817t324 DATA
818t324.m0
819t325 DATA
820t325.m0
821t325.m1
822t326 DATA
823t326.m0
824t327 DATA
825t327.m0
826t328 DATA
827t328.m0
828t328.m1
829t328.m2
830t328.m3
831t329 DATA
832t329.m0
833t33 DATA
834t330 DATA
835t330.m0
836t330.m2
837t330.m3
838t330.m4
839t330.m5
840t331 DATA
841t332 DATA
842t332.m1
843t332.m2
844t332.m3
845t332.m4
846t333 DATA
847t334 DATA
848t335 DATA
849t335.m0
850t335.m1
851t336 DATA
852t337 DATA
853t337.m0
854t337.m1
855t337.m2
856t337.m3
857t337.m4
858t337.m5
859t337.m6
860t337.m7
861t338 DATA
862t339 DATA
863t34 DATA
864t340 DATA
865t341 DATA
866t342 DATA
867t343 DATA
868t344 DATA
869t345 DATA
870t349 DATA
871t35 DATA
872t35.m10
873t35.m11
874t35.m28
875t35.m29
876t35.m30
877t35.m4
878t350 DATA
879t351 DATA
880t352 DATA
881t354 DATA
882t354.m1
883t355 DATA
884t356 DATA
885t357 DATA
886t359 DATA
887t359.m3
888t35static_data DATA
889t36 DATA
890t36.m0
891t36.m1
892t36.m7
893t36.m8
894t36.m9
895t360 DATA
896t360.m1
897t361 DATA
898t361.m1
899t362 DATA
900t362.m1
901t363 DATA
902t363.m1
903t363.m2
904t369 DATA
905t37 DATA
906t370 DATA
907t371 DATA
908t372 DATA
909t373 DATA
910t374 DATA
911t375 DATA
912t376 DATA
913t377 DATA
914t378 DATA
915t379 DATA
916t38 DATA
917t380 DATA
918t381 DATA
919t382 DATA
920t383 DATA
921t39 DATA
922t4 DATA
923t4.m0
924t4.m1
925t4.m10
926t4.m11
927t4.m12
928t4.m13
929t4.m14
930t4.m2
931t4.m3
932t4.m4
933t4.m6
934t4.m7
935t4.m9
936t40 DATA
937t40.m0
938t40.m1
939t40.m2
940t41 DATA
941t41.m0
942t416 DATA
943t417 DATA
944t418 DATA
945t419 DATA
946t42 DATA
947t42.m0
948t42.m1
949t42.m2
950t42.m3
951t42.m4
952t42.m5
953t42.m6
954t420 DATA
955t421 DATA
956t422 DATA
957t423 DATA
958t424 DATA
959t425 DATA
960t426 DATA
961t427 DATA
962t428 DATA
963t429 DATA
964t43 DATA
965t43.m0
966t43.m1
967t43.m2
968t43.m3
969t43.m4
970t43.m5
971t43.m6
972t43.m7
973t430 DATA
974t431 DATA
975t432 DATA
976t433 DATA
977t434 DATA
978t435 DATA
979t436 DATA
980t437 DATA
981t438 DATA
982t44 DATA
983t44.m0
984t44.m1
985t44.m2
986t44.m3
987t44.m4
988t442 DATA
989t442.m1
990t442.m2
991t443 DATA
992t443.m1
993t443.m2
994t444 DATA
995t445 DATA
996t446 DATA
997t45 DATA
998t450 DATA
999t451 DATA
1000t454 DATA
1001t456 DATA
1002t457 DATA
1003t458 DATA
1004t459 DATA
1005t459.m1
1006t459.m2
1007t46 DATA
1008t460 DATA
1009t461 DATA
1010t464 DATA
1011t465 DATA
1012t466 DATA
1013t466.m1
1014t466.m2
1015t466.m3
1016t467 DATA
1017t468 DATA
1018t469 DATA
1019t47 DATA
1020t474 DATA
1021t475 DATA
1022t476 DATA
1023t476.m6
1024t476.m7
1025t477 DATA
1026t478 DATA
1027t478.m2
1028t478.m3
1029t479 DATA
1030t48 DATA
1031t480 DATA
1032t480.m5
1033t480.m6
1034t481 DATA
1035t482 DATA
1036t482.m1
1037t483 DATA
1038t483.m1
1039t484 DATA
1040t484.m1
1041t485 DATA
1042t485.m1
1043t487 DATA
1044t488 DATA
1045t489 DATA
1046t49 DATA
1047t490 DATA
1048t491 DATA
1049t492 DATA
1050t493 DATA
1051t494 DATA
1052t495 DATA
1053t496 DATA
1054t498 DATA
1055t499 DATA
1056t5 DATA
1057t5.m0
1058t50 DATA
1059t500 DATA
1060t501 DATA
1061t502 DATA
1062t502.m1
1063t503 DATA
1064t503.m1
1065t503.m2
1066t503.m3
1067t504 DATA
1068t505 DATA
1069t505.m1
1070t506 DATA
1071t507 DATA
1072t508 DATA
1073t51 DATA
1074t52.m0
1075t52.m1
1076t52.m2
1077t52.m3
1078t52.m4
1079t52.m5
1080t52.m6
1081t52.m7
1082t52.m8
1083t53 DATA
1084t53.m0
1085t53.m1
1086t53.m10
1087t53.m11
1088t53.m12
1089t53.m13
1090t53.m14
1091t53.m2
1092t53.m3
1093t53.m4
1094t53.m5
1095t53.m6
1096t53.m7
1097t53.m8
1098t53.m9
1099t54 DATA
1100t54.m0
1101t54.m1
1102t54.m2
1103t54.m3
1104t54.m4
1105t54.m5
1106t55 DATA
1107t55.m0
1108t55.m1
1109t55.m10
1110t55.m11
1111t55.m12
1112t55.m13
1113t55.m14
1114t55.m15
1115t55.m16
1116t55.m17
1117t55.m18
1118t55.m19
1119t55.m2
1120t55.m20
1121t55.m21
1122t55.m22
1123t55.m23
1124t55.m24
1125t55.m25
1126t55.m26
1127t55.m27
1128t55.m28
1129t55.m29
1130t55.m3
1131t55.m30
1132t55.m31
1133t55.m32
1134t55.m33
1135t55.m34
1136t55.m35
1137t55.m36
1138t55.m37
1139t55.m38
1140t55.m39
1141t55.m4
1142t55.m40
1143t55.m41
1144t55.m42
1145t55.m43
1146t55.m44
1147t55.m45
1148t55.m46
1149t55.m47
1150t55.m48
1151t55.m49
1152t55.m5
1153t55.m50
1154t55.m51
1155t55.m52
1156t55.m53
1157t55.m54
1158t55.m55
1159t55.m56
1160t55.m57
1161t55.m58
1162t55.m59
1163t55.m6
1164t55.m60
1165t55.m61
1166t55.m62
1167t55.m63
1168t55.m64
1169t55.m65
1170t55.m66
1171t55.m67
1172t55.m68
1173t55.m69
1174t55.m7
1175t55.m70
1176t55.m71
1177t55.m72
1178t55.m73
1179t55.m74
1180t55.m75
1181t55.m8
1182t55.m9
1183t55.m99
1184t56 DATA
1185t56.m10
1186t56.m11
1187t56.m37
1188t56.m38
1189t56.m4
1190t56static_data DATA
1191t57 DATA
1192t57.m0
1193t57.m1
1194t57.m10
1195t57.m11
1196t57.m12
1197t57.m13
1198t57.m14
1199t57.m15
1200t57.m2
1201t57.m3
1202t57.m4
1203t57.m5
1204t57.m6
1205t57.m7
1206t57.m8
1207t57.m9
1208t58 DATA
1209t58.m0
1210t58.m1
1211t58.m2
1212t58.m3
1213t58.m4
1214t58.m5
1215t59 DATA
1216t59.m0
1217t59.m1
1218t59.m10
1219t59.m11
1220t59.m12
1221t59.m13
1222t59.m14
1223t59.m15
1224t59.m16
1225t59.m17
1226t59.m18
1227t59.m19
1228t59.m2
1229t59.m20
1230t59.m21
1231t59.m22
1232t59.m23
1233t59.m24
1234t59.m25
1235t59.m26
1236t59.m27
1237t59.m28
1238t59.m29
1239t59.m3
1240t59.m30
1241t59.m31
1242t59.m32
1243t59.m33
1244t59.m34
1245t59.m35
1246t59.m36
1247t59.m4
1248t59.m5
1249t59.m6
1250t59.m7
1251t59.m8
1252t59.m9
1253t6 DATA
1254t6.m0
1255t60 DATA
1256t60.m0
1257t60.m1
1258t60.m10
1259t60.m11
1260t60.m12
1261t60.m13
1262t60.m2
1263t60.m3
1264t60.m4
1265t60.m5
1266t60.m6
1267t60.m7
1268t60.m8
1269t60.m9
1270t61 DATA
1271t61.m0
1272t61.m1
1273t61.m2
1274t61.m3
1275t61.m4
1276t61.m5
1277t61.m6
1278t62 DATA
1279t63 DATA
1280t64 DATA
1281t64.m0
1282t64.m1
1283t64.m4
1284t64.m5
1285t64.m6
1286t64.m7
1287t64.m8
1288t65 DATA
1289t65.m0
1290t65.m1
1291t65.m10
1292t65.m11
1293t65.m12
1294t65.m13
1295t65.m14
1296t65.m15
1297t65.m16
1298t65.m17
1299t65.m18
1300t65.m19
1301t65.m2
1302t65.m20
1303t65.m3
1304t65.m4
1305t65.m5
1306t65.m6
1307t65.m7
1308t65.m8
1309t65.m9
1310t66 DATA
1311t66.m0
1312t66.m1
1313t66.m2
1314t66.m3
1315t66.m4
1316t66.m5
1317t66.m6
1318t66.m7
1319t67 DATA
1320t68 DATA
1321t68.m0
1322t68.m1
1323t68.m2
1324t68.m3
1325t68.m4
1326t68.m5
1327t68.m6
1328t68.m7
1329t68.m8
1330t69 DATA
1331t7 DATA
1332t7.m0
1333t7.m1
1334t7.m2
1335t7.m3
1336t7.m4
1337t7.m5
1338t7.m6
1339t7.m7
1340t7.m8
1341t70.m0
1342t70.m1
1343t70.m11
1344t70.m12
1345t70.m13
1346t70.m14
1347t70.m15
1348t70.m16
1349t70.m2
1350t70.m3
1351t70.m4
1352t70.m5
1353t70.m7
1354t70.m8
1355t70.m9
1356t71 DATA
1357t72 DATA
1358t72.m0
1359t72.m1
1360t73 DATA
1361t73.m0
1362t73.m1
1363t73.m2
1364t74 DATA
1365t74.m0
1366t74.m1
1367t75 DATA
1368t75.m0
1369t75.m1
1370t75.m2
1371t75.m3
1372t75.m4
1373t75.m5
1374t76 DATA
1375t76.m0
1376t76.m1
1377t76.m2
1378t76.m3
1379t77 DATA
1380t77.m0
1381t77.m1
1382t78 DATA
1383t79 DATA
1384t8 DATA
1385t8.m0
1386t8.m1
1387t8.m11
1388t8.m2
1389t8.m3
1390t8.m4
1391t8.m7
1392t80 DATA
1393t81 DATA
1394t82 DATA
1395t83 DATA
1396t84 DATA
1397t85 DATA
1398t86 DATA
1399t87 DATA
1400t88 DATA
1401t89 DATA
1402t9 DATA
1403t9.m0
1404t90 DATA
1405t91 DATA
1406t91.m0
1407t92 DATA
1408t93 DATA
1409t93.m0
1410t93.m1
1411t94 DATA
1412t94.m0
1413t94.m1
1414t95 DATA
1415t96 DATA
1416t97 DATA
1417t98 DATA
lib/libc/mingw/libarm32/wcletw.def created+168
......@@ -0,0 +1,168 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wclEtw.dll"
7EXPORTS
8t10 DATA
9t11 DATA
10t12 DATA
11t14 DATA
12t14.m0
13t14.m1
14t15 DATA
15t16 DATA
16t17 DATA
17t17.m0
18t17.m1
19t17.m2
20t17.m3
21t18 DATA
22t19 DATA
23t2 DATA
24t2.m0
25t2.m1
26t2.m10
27t2.m11
28t2.m12
29t2.m13
30t2.m14
31t2.m15
32t2.m16
33t2.m2
34t2.m3
35t2.m4
36t2.m5
37t2.m6
38t2.m7
39t2.m8
40t2.m9
41t20 DATA
42t21 DATA
43t21.m0
44t21.m1
45t21.m2
46t22 DATA
47t23 DATA
48t24 DATA
49t24.m0
50t24.m1
51t25 DATA
52t25.m0
53t25.m2
54t25.m3
55t25.m4
56t26 DATA
57t26.m0
58t26.m1
59t26.m2
60t26.m3
61t27 DATA
62t27.m0
63t27.m1
64t27.m2
65t28 DATA
66t29 DATA
67t3 DATA
68t3.m0
69t3.m5
70t3.m6
71t3.m8
72t30 DATA
73t30.m0
74t31 DATA
75t32 DATA
76t33 DATA
77t34 DATA
78t35 DATA
79t35.m1
80t35.m2
81t35.m3
82t35.m4
83t35.m5
84t36 DATA
85t36.m2
86t37 DATA
87t38 DATA
88t4 DATA
89t40 DATA
90t41 DATA
91t42 DATA
92t43 DATA
93t44 DATA
94t45 DATA
95t46 DATA
96t47 DATA
97t48 DATA
98t48.m1
99t49 DATA
100t5 DATA
101t5.m0
102t5.m1
103t5.m10
104t5.m11
105t5.m12
106t5.m13
107t5.m14
108t5.m15
109t5.m16
110t5.m17
111t5.m18
112t5.m19
113t5.m2
114t5.m20
115t5.m21
116t5.m22
117t5.m3
118t5.m4
119t5.m5
120t5.m6
121t5.m7
122t5.m8
123t5.m9
124t50 DATA
125t51 DATA
126t52 DATA
127t53 DATA
128t54 DATA
129t55 DATA
130t56 DATA
131t57 DATA
132t58 DATA
133t59 DATA
134t6 DATA
135t60 DATA
136t61 DATA
137t62 DATA
138t63 DATA
139t64 DATA
140t65 DATA
141t66 DATA
142t67 DATA
143t68 DATA
144t7 DATA
145t7.m0
146t7.m1
147t7.m2
148t7.m3
149t76 DATA
150t77 DATA
151t78 DATA
152t79 DATA
153t8 DATA
154t80 DATA
155t81 DATA
156t82 DATA
157t83 DATA
158t84 DATA
159t87 DATA
160t88 DATA
161t89 DATA
162t9 DATA
163t90 DATA
164t91 DATA
165t92 DATA
166t93 DATA
167t94 DATA
168t95 DATA
lib/libc/mingw/libarm32/wclpowrprof.def created+160
......@@ -0,0 +1,160 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WclPowrProf.dll"
7EXPORTS
8t10 DATA
9t11 DATA
10t11.m0
11t11.m1
12t11.m2
13t11.m3
14t12 DATA
15t12.m0
16t12.m1
17t12.m10
18t12.m11
19t12.m12
20t12.m2
21t12.m3
22t12.m4
23t12.m5
24t12.m6
25t12.m7
26t12.m8
27t12.m9
28t13 DATA
29t13.m0
30t13.m1
31t13.m10
32t13.m11
33t13.m12
34t13.m13
35t13.m2
36t13.m3
37t13.m4
38t13.m5
39t13.m6
40t13.m7
41t13.m8
42t13.m9
43t14 DATA
44t15 DATA
45t15.m0
46t15.m1
47t16 DATA
48t16.m0
49t16.m1
50t16.m2
51t16.m3
52t17 DATA
53t17.m0
54t17.m1
55t17.m2
56t17.m3
57t17.m4
58t17.m5
59t17.m6
60t17.m7
61t17.m8
62t18 DATA
63t18.m0
64t18.m1
65t18.m10
66t18.m11
67t18.m12
68t18.m13
69t18.m14
70t18.m15
71t18.m2
72t18.m3
73t18.m4
74t18.m5
75t18.m6
76t18.m7
77t18.m8
78t18.m9
79t19 DATA
80t19.m0
81t19.m1
82t19.m2
83t19.m3
84t19.m4
85t19.m5
86t20.m0
87t20.m1
88t20.m2
89t20.m3
90t20.m4
91t20.m5
92t20.m6
93t20.m7
94t20.m8
95t20.m9
96t22 DATA
97t23 DATA
98t24 DATA
99t25 DATA
100t26 DATA
101t27 DATA
102t28 DATA
103t29 DATA
104t3 DATA
105t3.m0
106t3.m1
107t3.m10
108t3.m11
109t3.m12
110t3.m13
111t3.m14
112t3.m15
113t3.m16
114t3.m2
115t3.m3
116t3.m4
117t3.m5
118t3.m6
119t3.m7
120t3.m8
121t3.m9
122t30 DATA
123t31 DATA
124t32 DATA
125t33 DATA
126t4 DATA
127t4.m0
128t4.m1
129t4.m2
130t4.m3
131t43 DATA
132t44 DATA
133t45 DATA
134t46 DATA
135t5 DATA
136t50 DATA
137t51 DATA
138t52 DATA
139t53 DATA
140t54 DATA
141t55 DATA
142t56 DATA
143t57 DATA
144t58 DATA
145t59 DATA
146t6 DATA
147t60 DATA
148t61 DATA
149t63 DATA
150t7 DATA
151t7.m0
152t7.m1
153t7.m2
154t7.m3
155t7.m4
156t7.m5
157t7.m6
158t7.m7
159t8 DATA
160t9 DATA
lib/libc/mingw/libarm32/wclsqm.def created+53
......@@ -0,0 +1,53 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wclSqm.dll"
7EXPORTS
8t10 DATA
9t11 DATA
10t11.m2
11t11.m3
12t12 DATA
13t13 DATA
14t14 DATA
15t15 DATA
16t16 DATA
17t19 DATA
18t2 DATA
19t2.m0
20t2.m1
21t2.m2
22t2.m3
23t2.m4
24t2.m5
25t20 DATA
26t21 DATA
27t22 DATA
28t23 DATA
29t25 DATA
30t3.m0
31t5 DATA
32t6 DATA
33t7 DATA
34t7.m0
35t7.m1
36t7.m10
37t7.m11
38t7.m12
39t7.m13
40t7.m14
41t7.m15
42t7.m16
43t7.m17
44t7.m2
45t7.m3
46t7.m4
47t7.m5
48t7.m6
49t7.m7
50t7.m8
51t7.m9
52t8 DATA
53t9 DATA
lib/libc/mingw/libarm32/wclunicode.def created+27
......@@ -0,0 +1,27 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wclUnicode.dll"
7EXPORTS
8t2.m0
9t2.m1
10t2.m10
11t2.m11
12t2.m12
13t2.m2
14t2.m3
15t2.m4
16t2.m5
17t2.m6
18t2.m7
19t2.m8
20t2.m9
21t3.m0
22t3.m1
23t3.m2
24t3.m3
25t3.m4
26t3.m5
27t4 DATA
lib/libc/mingw/libarm32/wclwdi.def created+26
......@@ -0,0 +1,26 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wclWdi.dll"
7EXPORTS
8t10 DATA
9t11 DATA
10t12 DATA
11t16 DATA
12t17 DATA
13t2 DATA
14t2.m7
15t2.m8
16t3 DATA
17t3.m0
18t3.m1
19t4 DATA
20t4.m0
21t4.m1
22t4.m2
23t5 DATA
24t7 DATA
25t8 DATA
26t9 DATA
lib/libc/mingw/libarm32/wcmcsp.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of Wcmcsp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Wcmcsp.dll"
7EXPORTS
8EthernetCspDeInit
9EthernetCspInit
10WlanCspDeInit
11WlanCspInit
12WwanCspDeInit
13WwanCspInit
lib/libc/mingw/libarm32/wcmsvc.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of Wcmsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Wcmsvc.dll"
7EXPORTS
8CdeCancelOnDemandRequest
9CdeCloseOnDemandRequestHandle
10CdeOpenOnDemandRequestHandle
11CdeOpenOnDemandRequestHandleByWwanProfileName
12CdeQueryOnDemandRequestStateInfo
13CdeQueryParameter
14CdeSetParameter
15CdeStartOnDemandRequest
16SvchostPushServiceGlobals
17WcmSvcMain
18CdeGetEntireProfileList
19CdeGetProfileList
20CdeGetProfileListForInterface
lib/libc/mingw/libarm32/wcncsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of wcncsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wcncsvc.dll"
7EXPORTS
8SvchostPushServiceGlobals
9WcnServiceMain
lib/libc/mingw/libarm32/wcneapauthproxy.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WcnEapAuthProxy.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WcnEapAuthProxy.dll"
7EXPORTS
8WcnEapPluginGetInfo
lib/libc/mingw/libarm32/wcneappeerproxy.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of WcnEapPeerProxy.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WcnEapPeerProxy.dll"
7EXPORTS
8EapPeerFreeErrorMemory
9EapPeerFreeMemory
10EapPeerGetInfo
11EapPeerGetMethodProperties
lib/libc/mingw/libarm32/wdc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of PMONT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "PMONT.dll"
7EXPORTS
8WdcParseLegacyFile
9WdcRunTaskAsInteractiveUser
lib/libc/mingw/libarm32/wdi.def created+58
......@@ -0,0 +1,58 @@
1;
2; Definition file of wdi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wdi.dll"
7EXPORTS
8ServiceMain
9WdipLaunchRunDLLUserHost
10WdiAddFileToInstance
11WdiAddParameter
12WdiCancel
13WdiCloseInstance
14WdiCreateInstance
15WdiDeleteQueuedResolution
16WdiDiagnose
17WdiGetClientActivityId
18WdiGetClientLCID
19WdiGetDiagnosticModuleId
20WdiGetEvent
21WdiGetInstanceFilePath
22WdiGetInstanceId
23WdiGetLoggerSnapshotPath
24WdiGetParameterByIndex
25WdiGetParameterByName
26WdiGetParameterCount
27WdiGetParameterData
28WdiGetParameterDataLength
29WdiGetParameterDiagnosticModuleId
30WdiGetParameterFlags
31WdiGetParameterName
32WdiGetProgress
33WdiGetQueuedResolutionAudience
34WdiGetQueuedResolutionExpirationDate
35WdiGetQueuedResolutionId
36WdiGetQueuedResolutionName
37WdiGetQueuedResolutionPriority
38WdiGetResult
39WdiGetScenarioIcon
40WdiGetScenarioInfo
41WdiGetScenarioInstanceCreatedDate
42WdiGetScenarioInstanceFilePath
43WdiGetScenarioInstanceId
44WdiGetScenarioInstances
45WdiGetScenarioSourceName
46WdiGetScenarioTypeName
47WdiImpersonateClient
48WdiIsQueuedResolutionAdmin
49WdiLaunchQueuedResolution
50WdiOpenInstance
51WdiQueueCurrentResolution
52WdiResolve
53WdiRevertToSelf
54WdiSetFeedback
55WdiSetProblemDetectionResult
56WdiSetProgress
57WdiSetResolution
58WdipLaunchLocalHost
lib/libc/mingw/libarm32/wdiasqmmodule.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of WDIASqmModule.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WDIASqmModule.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
lib/libc/mingw/libarm32/wdscore.def created+168
......@@ -0,0 +1,168 @@
1;
2; Definition file of WDSCORE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WDSCORE.dll"
7EXPORTS
8??0?$CDynamicArray@EPAE@@QAA@I@Z
9??0?$CDynamicArray@EPAUSKey@@@@QAA@I@Z
10??0?$CDynamicArray@EPAUSValue@@@@QAA@I@Z
11??0?$CDynamicArray@GPAG@@QAA@I@Z
12??0?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAA@I@Z
13??0?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAA@I@Z
14??0?$CDynamicArray@_KPA_K@@QAA@I@Z
15??1?$CDynamicArray@EPAE@@QAA@XZ
16??1?$CDynamicArray@EPAUSKey@@@@QAA@XZ
17??1?$CDynamicArray@EPAUSValue@@@@QAA@XZ
18??1?$CDynamicArray@GPAG@@QAA@XZ
19??1?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAA@XZ
20??1?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAA@XZ
21??1?$CDynamicArray@_KPA_K@@QAA@XZ
22??4?$CDynamicArray@EPAE@@QAAAAV0@ABV0@@Z
23??4?$CDynamicArray@EPAUSKey@@@@QAAAAV0@ABV0@@Z
24??4?$CDynamicArray@EPAUSValue@@@@QAAAAV0@ABV0@@Z
25??4?$CDynamicArray@GPAG@@QAAAAV0@ABV0@@Z
26??4?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAAAAV0@ABV0@@Z
27??4?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAAAAV0@ABV0@@Z
28??4?$CDynamicArray@_KPA_K@@QAAAAV0@ABV0@@Z
29??A?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAAAAPAUSEnumBinContext@@I@Z
30??A?$CDynamicArray@_KPA_K@@QAAAA_KI@Z
31??B?$CDynamicArray@EPAUSKey@@@@QBAPAUSKey@@XZ
32??B?$CDynamicArray@EPAUSValue@@@@QBAPAUSValue@@XZ
33??B?$CDynamicArray@GPAG@@QBAPAGXZ
34??C?$CDynamicArray@EPAUSKey@@@@QBAPAUSKey@@XZ
35??C?$CDynamicArray@EPAUSValue@@@@QBAPAUSValue@@XZ
36??_F?$CDynamicArray@EPAE@@QAAXXZ
37??_F?$CDynamicArray@EPAUSKey@@@@QAAXXZ
38??_F?$CDynamicArray@EPAUSValue@@@@QAAXXZ
39??_F?$CDynamicArray@GPAG@@QAAXXZ
40??_F?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAAXXZ
41??_F?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAAXXZ
42??_F?$CDynamicArray@_KPA_K@@QAAXXZ
43?Add@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAAHAAPAUSEnumBinContext@@@Z
44?Add@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAAHAAUSKeeperEntry@CBlackboardFactory@@@Z
45?Add@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAAHAAUSKeeperEntry@CBlackboardFactory@@AAI@Z
46?Add@?$CDynamicArray@_KPA_K@@QAAHAA_K@Z
47?ElementAt@?$CDynamicArray@GPAG@@QAAAAGI@Z
48?ElementAt@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAAAAUSKeeperEntry@CBlackboardFactory@@I@Z
49?GetBuffer@?$CDynamicArray@EPAE@@QAAPAEI@Z
50?GetBuffer@?$CDynamicArray@EPAUSValue@@@@QAAPAUSValue@@I@Z
51?GetBuffer@?$CDynamicArray@GPAG@@QAAPAGI@Z
52?GetSize@?$CDynamicArray@EPAE@@QBAIXZ
53?GetSize@?$CDynamicArray@GPAG@@QBAIXZ
54?GetSize@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QBAIXZ
55?GetSize@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QBAIXZ
56?GetSize@?$CDynamicArray@_KPA_K@@QBAIXZ
57?Init@?$CDynamicArray@EPAE@@IAAXI@Z
58?Init@?$CDynamicArray@EPAUSKey@@@@IAAXI@Z
59?Init@?$CDynamicArray@EPAUSValue@@@@IAAXI@Z
60?Init@?$CDynamicArray@GPAG@@IAAXI@Z
61?Init@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@IAAXI@Z
62?Init@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@IAAXI@Z
63?Init@?$CDynamicArray@_KPA_K@@IAAXI@Z
64?RemoveAll@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAAXXZ
65?RemoveAll@?$CDynamicArray@_KPA_K@@QAAXXZ
66?RemoveItemFromTail@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAAXXZ
67?SetSize@?$CDynamicArray@EPAE@@QAAHK@Z
68?SetSize@?$CDynamicArray@EPAUSKey@@@@QAAHK@Z
69?SetSize@?$CDynamicArray@EPAUSValue@@@@QAAHK@Z
70?SetSize@?$CDynamicArray@GPAG@@QAAHK@Z
71?SetSize@?$CDynamicArray@PAUSEnumBinContext@@PAPAU1@@@QAAHK@Z
72?SetSize@?$CDynamicArray@USKeeperEntry@CBlackboardFactory@@PAU12@@@QAAHK@Z
73?SetSize@?$CDynamicArray@_KPA_K@@QAAHK@Z
74WdsGetPointer
75g_Kernel32 DATA
76g_bEnableDiagnosticMode DATA
77ConstructPartialMsgIfA
78ConstructPartialMsgIfW
79ConstructPartialMsgVA
80ConstructPartialMsgVW
81CurrentIP
82EndMajorTask
83EndMinorTask
84GetMajorTask
85GetMajorTaskA
86GetMinorTask
87GetMinorTaskA
88StartMajorTask
89StartMinorTask
90WdsAbortBlackboardItemEnum
91WdsAddModule
92WdsAddUsmtLogStack
93WdsAllocCollection
94WdsCollectionAddValue
95WdsCollectionGetValue
96WdsCopyBlackboardItems
97WdsCopyBlackboardItemsEx
98WdsCreateBlackboard
99WdsDeleteBlackboardValue
100WdsDeleteEvent
101WdsDestroyBlackboard
102WdsDuplicateData
103WdsEnableDiagnosticMode
104WdsEnableExit
105WdsEnableExitEx
106WdsEnumFirstBlackboardItem
107WdsEnumFirstCollectionValue
108WdsEnumNextBlackboardItem
109WdsEnumNextCollectionValue
110WdsExecuteWorkQueue
111WdsExecuteWorkQueue2
112WdsExecuteWorkQueueEx
113WdsExitImmediately
114WdsExitImmediatelyEx
115WdsFreeCollection
116WdsFreeData
117WdsGenericSetupLogInit
118WdsGetAssertFlags
119WdsGetBlackboardBinaryData
120WdsGetBlackboardStringA
121WdsGetBlackboardStringW
122WdsGetBlackboardUintPtr
123WdsGetBlackboardValue
124WdsGetCurrentExecutionGroup
125WdsGetSetupLog
126WdsGetTempDir
127WdsInitialize
128WdsInitializeCallbackArray
129WdsInitializeDataBinary
130WdsInitializeDataStringA
131WdsInitializeDataStringW
132WdsInitializeDataUInt32
133WdsInitializeDataUInt64
134WdsIsDiagnosticModeEnabled
135WdsIterateOfflineQueue
136WdsIterateQueue
137WdsLockBlackboardValue
138WdsLockExecutionGroup
139WdsLogCreate
140WdsLogDestroy
141WdsLogRegStockProviders
142WdsLogRegisterProvider
143WdsLogStructuredException
144WdsLogUnRegStockProviders
145WdsLogUnRegisterProvider
146WdsPackCollection
147WdsPublish
148WdsPublishEx
149WdsPublishImmediateAsync
150WdsPublishImmediateEx
151WdsPublishOffline
152WdsSeqAlloc
153WdsSeqFree
154WdsSetAssertFlags
155WdsSetBlackboardValue
156WdsSetNextExecutionGroup
157WdsSetUILanguage
158WdsSetupLogDestroy
159WdsSetupLogInit
160WdsSetupLogMessageA
161WdsSetupLogMessageW
162WdsSubscribeEx
163WdsTerminate
164WdsUnlockExecutionGroup
165WdsUnpackCollection
166WdsUnsubscribe
167WdsUnsubscribeEx
168WdsValidBlackboard
lib/libc/mingw/libarm32/webio.def created+51
......@@ -0,0 +1,51 @@
1;
2; Definition file of webio.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "webio.dll"
7EXPORTS
8ord_1 @1
9WebPalCanScavengeDnsCache
10WebPalCancelTwTimer
11ord_4 @4
12ord_5 @5
13WebPalCreateDnsCacheCtx
14WebPalCreateSocketCtx
15ord_8 @8
16ord_9 @9
17ord_10 @10
18ord_11 @11
19WebPalFreeDnsCacheCtx
20WebPalFreeSocketCtx
21ord_14 @14
22ord_15 @15
23WebPalInitializeTwTimer
24ord_17 @17
25ord_18 @18
26ord_19 @19
27ord_20 @20
28ord_21 @21
29ord_22 @22
30ord_23 @23
31ord_24 @24
32ord_25 @25
33ord_26 @26
34ord_27 @27
35ord_28 @28
36ord_29 @29
37WebPalIsImplemented
38ord_31 @31
39ord_32 @32
40ord_33 @33
41WebPalOverrideConnectResult
42ord_35 @35
43ord_36 @36
44ord_37 @37
45ord_38 @38
46ord_39 @39
47ord_40 @40
48ord_41 @41
49ord_42 @42
50WebPalSetTwTimer
51WebPalTerminateTwTimer
lib/libc/mingw/libarm32/webservices.def deleted-200
......@@ -1,200 +0,0 @@
1;
2; Definition file of webservices.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "webservices.dll"
7EXPORTS
8WsAbandonCall
9WsAbandonMessage
10WsAbortChannel
11WsAbortListener
12WsAbortServiceHost
13WsAbortServiceProxy
14WsAcceptChannel
15WsAddCustomHeader
16WsAddErrorString
17WsAddMappedHeader
18WsAddressMessage
19WsAlloc
20WsAsyncExecute
21WsCall
22WsCheckMustUnderstandHeaders
23WsCloseChannel
24WsCloseListener
25WsCloseServiceHost
26WsCloseServiceProxy
27WsCombineUrl
28WsCopyError
29WsCopyNode
30WsCreateChannel
31WsCreateChannelForListener
32WsCreateError
33WsCreateFaultFromError
34WsCreateHeap
35WsCreateListener
36WsCreateMessage
37WsCreateMessageForChannel
38WsCreateMetadata
39WsCreateReader
40WsCreateServiceEndpointFromTemplate
41WsCreateServiceHost
42WsCreateServiceProxy
43WsCreateServiceProxyFromTemplate
44WsCreateWriter
45WsCreateXmlBuffer
46WsCreateXmlSecurityToken
47WsDateTimeToFileTime
48WsDecodeUrl
49WsEncodeUrl
50WsEndReaderCanonicalization
51WsEndWriterCanonicalization
52WsFileTimeToDateTime
53WsFillBody
54WsFillReader
55WsFindAttribute
56WsFlushBody
57WsFlushWriter
58WsFreeChannel
59WsFreeError
60WsFreeHeap
61WsFreeListener
62WsFreeMessage
63WsFreeMetadata
64WsFreeReader
65WsFreeSecurityToken
66WsFreeServiceHost
67WsFreeServiceProxy
68WsFreeWriter
69WsGetChannelProperty
70WsGetCustomHeader
71WsGetDictionary
72WsGetErrorProperty
73WsGetErrorString
74WsGetFaultErrorDetail
75WsGetFaultErrorProperty
76WsGetHeader
77WsGetHeaderAttributes
78WsGetHeapProperty
79WsGetListenerProperty
80WsGetMappedHeader
81WsGetMessageProperty
82WsGetMetadataEndpoints
83WsGetMetadataProperty
84WsGetMissingMetadataDocumentAddress
85WsGetNamespaceFromPrefix
86WsGetOperationContextProperty
87WsGetPolicyAlternativeCount
88WsGetPolicyProperty
89WsGetPrefixFromNamespace
90WsGetReaderNode
91WsGetReaderPosition
92WsGetReaderProperty
93WsGetSecurityContextProperty
94WsGetSecurityTokenProperty
95WsGetServiceHostProperty
96WsGetServiceProxyProperty
97WsGetWriterPosition
98WsGetWriterProperty
99WsGetXmlAttribute
100WsInitializeMessage
101WsMarkHeaderAsUnderstood
102WsMatchPolicyAlternative
103WsMoveReader
104WsMoveWriter
105WsOpenChannel
106WsOpenListener
107WsOpenServiceHost
108WsOpenServiceProxy
109WsPullBytes
110WsPushBytes
111WsReadArray
112WsReadAttribute
113WsReadBody
114WsReadBytes
115WsReadChars
116WsReadCharsUtf8
117WsReadElement
118WsReadEndAttribute
119WsReadEndElement
120WsReadEndpointAddressExtension
121WsReadEnvelopeEnd
122WsReadEnvelopeStart
123WsReadMessageEnd
124WsReadMessageStart
125WsReadMetadata
126WsReadNode
127WsReadQualifiedName
128WsReadStartAttribute
129WsReadStartElement
130WsReadToStartElement
131WsReadType
132WsReadValue
133WsReadXmlBuffer
134WsReadXmlBufferFromBytes
135WsReceiveMessage
136WsRegisterOperationForCancel
137WsRemoveCustomHeader
138WsRemoveHeader
139WsRemoveMappedHeader
140WsRemoveNode
141WsRequestReply
142WsRequestSecurityToken
143WsResetChannel
144WsResetError
145WsResetHeap
146WsResetListener
147WsResetMessage
148WsResetMetadata
149WsResetServiceHost
150WsResetServiceProxy
151WsRevokeSecurityContext
152WsSendFaultMessageForError
153WsSendMessage
154WsSendReplyMessage
155WsSetChannelProperty
156WsSetErrorProperty
157WsSetFaultErrorDetail
158WsSetFaultErrorProperty
159WsSetHeader
160WsSetInput
161WsSetInputToBuffer
162WsSetListenerProperty
163WsSetMessageProperty
164WsSetOutput
165WsSetOutputToBuffer
166WsSetReaderPosition
167WsSetWriterPosition
168WsShutdownSessionChannel
169WsSkipNode
170WsStartReaderCanonicalization
171WsStartWriterCanonicalization
172WsTrimXmlWhitespace
173WsVerifyXmlNCName
174WsWriteArray
175WsWriteAttribute
176WsWriteBody
177WsWriteBytes
178WsWriteChars
179WsWriteCharsUtf8
180WsWriteElement
181WsWriteEndAttribute
182WsWriteEndCData
183WsWriteEndElement
184WsWriteEndStartElement
185WsWriteEnvelopeEnd
186WsWriteEnvelopeStart
187WsWriteMessageEnd
188WsWriteMessageStart
189WsWriteNode
190WsWriteQualifiedName
191WsWriteStartAttribute
192WsWriteStartCData
193WsWriteStartElement
194WsWriteText
195WsWriteType
196WsWriteValue
197WsWriteXmlBuffer
198WsWriteXmlBufferToBytes
199WsWriteXmlnsAttribute
200WsXmlStringEquals
lib/libc/mingw/libarm32/wecsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of collsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "collsvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/wer.def deleted-129
......@@ -1,129 +0,0 @@
1;
2; Definition file of wer.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wer.dll"
7EXPORTS
8WerSysprepCleanup
9WerSysprepGeneralize
10WerSysprepSpecialize
11WerUnattendedSetup
12WerpAddAppCompatData
13WerpAddMemoryBlock
14WerpAddRegisteredDataToReport
15WerpArchiveReport
16WerpCancelResponseDownload
17WerpCancelUpload
18WerpCloseStore
19WerpCreateMachineStore
20WerpCreateUserStore
21WerpDeleteReport
22WerpDestroyWerString
23WerpDownloadResponse
24WerpDownloadResponseTemplate
25WerpEnumerateStoreNext
26WerpEnumerateStoreStart
27WerpExtractReportFiles
28WerpFlushImageCache
29WerpForceDeferredCollection
30WerpFreeUnmappedVaRanges
31WerpGetBucketId
32WerpGetDynamicParameter
33WerpGetEventType
34WerpGetExtendedDiagData
35WerpGetFileByIndex
36WerpGetFilePathByIndex
37WerpGetLegacyBucketId
38WerpGetLoadedModuleByIndex
39WerpGetNumFiles
40WerpGetNumLoadedModules
41WerpGetNumSigParams
42WerpGetReportFinalConsent
43WerpGetReportFlags
44WerpGetReportInformation
45WerpGetReportSettings
46WerpGetReportTime
47WerpGetReportType
48WerpGetResponseId
49WerpGetResponseUrl
50WerpGetSigParamByIndex
51WerpGetStorePath
52WerpGetStoreType
53WerpGetTextFromReport
54WerpGetUIParamByIndex
55WerpGetUploadTime
56WerpGetWerStringData
57WerpGetWow64Process
58WerpHashApplicationParameters
59WerpInitializeImageCache
60WerpIsOnBattery
61WerpIsTransportAvailable
62WerpLoadReport
63WerpLoadReportFromBuffer
64WerpOpenMachineArchive
65WerpOpenMachineQueue
66WerpOpenUserArchive
67WerpPromptUser
68WerpPruneStore
69WerpReportCancel
70WerpReportSprintfParameter
71WerpReserveMachineQueueReportDir
72WerpResetTransientImageCacheStatistics
73WerpRestartApplication
74WerpSetDynamicParameter
75WerpSetEventName
76WerpSetReportApplicationIdentity
77WerpSetReportFlags
78WerpSetReportInformation
79WerpSetReportNamespaceParameter
80WerpSetReportTime
81WerpSetReportUploadContextToken
82WerpShowUpsellUI
83WerpStitchedMinidumpVmPostReadCallback
84WerpStitchedMinidumpVmPreReadCallback
85WerpStitchedMinidumpVmQueryCallback
86WerpSubmitReportFromStore
87WerpSvcReportFromMachineQueue
88WerpTraceAuxMemDumpStatistics
89WerpTraceDuration
90WerpTraceImageCacheStatistics
91WerpTraceSnapshotStatistics
92WerpTraceStitchedDumpWriterStatistics
93WerpTraceUnmappedVaRangesStatistics
94WerpUnmapProcessViews
95WerpUpdateReportResponse
96WerpValidateReportKey
97WerpWalkGatherBlocks
98WerAddExcludedApplication
99WerRemoveExcludedApplication
100WerReportAddDump
101WerReportAddFile
102WerReportCloseHandle
103WerReportCreate
104WerReportSetParameter
105WerReportSetUIOption
106WerReportSubmit
107WerpAddFile
108WerpAddFileBuffer
109WerpAddFileCallback
110WerpAuxmdDumpProcessImages
111WerpAuxmdDumpRegisteredBlocks
112WerpAuxmdFree
113WerpAuxmdFreeCopyBuffer
114WerpAuxmdHashVaRanges
115WerpAuxmdInitialize
116WerpAuxmdMapFile
117WerpCreateIntegratorReportId
118WerpDownloadResponseOnly
119WerpFreeString
120WerpGetIntegratorReportId
121WerpGetReportConsent
122WerpGetStoreLocation
123WerpIsDisabled
124WerpLaunchResponse
125WerpOpenUserQueue
126WerpSetAuxiliaryArchivePath
127WerpSetCallBack
128WerpSetDefaultUserConsent
129WerpSetIntegratorReportId
lib/libc/mingw/libarm32/werconcpl.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of WERCONCPL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WERCONCPL.dll"
7EXPORTS
8LaunchErcAppW
9ShowCEIPDialogW
10WerpIsResponseApplicable
lib/libc/mingw/libarm32/wercplsupport.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of wercplsupport.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wercplsupport.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
10WerComGetAdminStores
11WerComGetUserStores
lib/libc/mingw/libarm32/werdiagcontroller.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of WerDiagController.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WerDiagController.dll"
7EXPORTS
8QueryOriginalBucket
9StartAppRecorder
10StartFDR
lib/libc/mingw/libarm32/wersvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of NULL.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NULL.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/werui.def created+18
......@@ -0,0 +1,18 @@
1;
2; Definition file of werui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "werui.dll"
7EXPORTS
8WerUICreate
9WerUIDelete
10WerUIGetUserSelection
11WerUIPromptForSecondLevel
12WerUIPromptUser
13WerUIShowUpsell
14WerUIStart
15WerUITerminate
16WerUIUpdateStateProgress
17WerUIUpdateUIForState
18WerUIWaitForUserAction
lib/libc/mingw/libarm32/wevtfwd.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of WEVTFWD.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WEVTFWD.DLL"
7EXPORTS
8WSManPluginShutdown
9WSManPluginStartup
10WSManProvPullEvents
11WSManProvSubscribe
12WSManProvUnsubscribe
lib/libc/mingw/libarm32/wevtsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of wevtsvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wevtsvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/wfdprov.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of Wfdprov.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Wfdprov.dll"
7EXPORTS
8WFDProvConfigureAndProvisionDevice
9WFDProvDeinitialize
10WFDProvGetInfo
11WFDProvInitialize
lib/libc/mingw/libarm32/whealogr.def created+117
......@@ -0,0 +1,117 @@
1;
2; Definition file of
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Whealogr.dll"
7EXPORTS
8WdiDiagnosticModuleMain
9WdiGetDiagnosticModuleInterfaceVersion
10WdiHandleInstance
11t10 DATA
12t11 DATA
13t12 DATA
14t13 DATA
15t14 DATA
16t15 DATA
17t16 DATA
18t17 DATA
19t18 DATA
20t19 DATA
21t2 DATA
22t2.m1
23t20 DATA
24t21 DATA
25t22 DATA
26t23 DATA
27t24 DATA
28t25 DATA
29t26 DATA
30t27 DATA
31t28 DATA
32t3 DATA
33t30 DATA
34t31 DATA
35t32 DATA
36t33 DATA
37t34 DATA
38t36 DATA
39t37 DATA
40t38 DATA
41t39 DATA
42t4 DATA
43t40 DATA
44t41 DATA
45t42 DATA
46t43 DATA
47t44 DATA
48t45 DATA
49t46 DATA
50t47 DATA
51t48 DATA
52t49 DATA
53t5 DATA
54t50 DATA
55t51 DATA
56t52 DATA
57t53 DATA
58t54 DATA
59t55 DATA
60t56 DATA
61t57 DATA
62t58 DATA
63t59 DATA
64t6 DATA
65t60 DATA
66t61 DATA
67t62 DATA
68t63 DATA
69t64 DATA
70t65 DATA
71t66 DATA
72t67 DATA
73t68 DATA
74t69 DATA
75t7 DATA
76t71 DATA
77t72 DATA
78t72.m0
79t72.m1
80t72.m2
81t72.m3
82t72.m4
83t72.m5
84t72.m6
85t73 DATA
86t74 DATA
87t74.m1
88t75 DATA
89t75.m1
90t76 DATA
91t76.m1
92t77 DATA
93t77.m1
94t78 DATA
95t78.m1
96t79 DATA
97t79.m1
98t8 DATA
99t80 DATA
100t80.m10
101t81 DATA
102t81.m0
103t82 DATA
104t82.m9
105t83 DATA
106t84 DATA
107t85 DATA
108t86 DATA
109t87 DATA
110t88 DATA
111t89 DATA
112t9 DATA
113t90 DATA
114t91 DATA
115t92 DATA
116t93 DATA
117t93.m3
lib/libc/mingw/libarm32/wiaservc.def created+62
......@@ -0,0 +1,62 @@
1;
2; Definition file of wiaservc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wiaservc.dll"
7EXPORTS
8ServiceMain
9wiasCreateChildAppItem
10wiasCreateDrvItem
11wiasCreateLogInstance
12wiasCreatePropContext
13wiasDebugError
14wiasDebugTrace
15wiasDownSampleBuffer
16wiasFormatArgs
17wiasFreePropContext
18wiasGetChangedValueFloat
19wiasGetChangedValueGuid
20wiasGetChangedValueLong
21wiasGetChangedValueStr
22wiasGetChildrenContexts
23wiasGetContextFromName
24wiasGetDrvItem
25wiasGetImageInformation
26wiasGetItemType
27wiasGetPropertyAttributes
28wiasGetRootItem
29wiasIsPropChanged
30wiasParseEndorserString
31wiasPrintDebugHResult
32wiasQueueEvent
33wiasReadMultiple
34wiasReadPropBin
35wiasReadPropFloat
36wiasReadPropGuid
37wiasReadPropLong
38wiasReadPropStr
39wiasSendEndOfPage
40wiasSetItemPropAttribs
41wiasSetItemPropNames
42wiasSetPropChanged
43wiasSetPropertyAttributes
44wiasSetValidFlag
45wiasSetValidListFloat
46wiasSetValidListGuid
47wiasSetValidListLong
48wiasSetValidListStr
49wiasSetValidRangeFloat
50wiasSetValidRangeLong
51wiasUpdateScanRect
52wiasUpdateValidFormat
53wiasValidateItemProperties
54wiasWriteBufToFile
55wiasWriteMultiple
56wiasWritePageBufToFile
57wiasWritePageBufToStream
58wiasWritePropBin
59wiasWritePropFloat
60wiasWritePropGuid
61wiasWritePropLong
62wiasWritePropStr
lib/libc/mingw/libarm32/wiatrace.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of wiatrace.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wiatrace.dll"
7EXPORTS
8WIATRACE_DecrementIndentLevel
9WIATRACE_GetIndentLevel
10WIATRACE_GetTraceSettings
11WIATRACE_IncrementIndentLevel
12WIATRACE_Init
13WIATRACE_OutputString
14WIATRACE_SetTraceSettings
15WIATRACE_Term
lib/libc/mingw/libarm32/wifidisplay.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of WiFiDisplay.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WiFiDisplay.dll"
7EXPORTS
8CloseMiracastSession
9CreateDAFProviderMiracastHelper
10CreateWiFiDisplayEtwProvider
11IsMiracastSupportedByWlan
12MiracastFreeMemory
13MiracastIeDecode
14MiracastIeEncode
15OpenMiracastSession
16VsIeProviderGetFunctionTable
lib/libc/mingw/libarm32/winbici.def created+62
......@@ -0,0 +1,62 @@
1;
2; Definition file of winbici.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "winbici.dll"
7EXPORTS
8AbortExperience
9AddDwordToDatapointValueList
10AddStringToDatapointValueList
11AddToStream
12ContinueExperience
13CreateBase64StringFromTransactionContext
14CreateDatapointValueList
15CreateTransactionContext
16CreateTransactionContextFromBase64String
17DestroyDatapointValueList
18DestroyTransactionContext
19DestroyTransactionId
20EndExperience
21GetApplicationId
22GetExperienceId
23GetIsMsftInternal
24GetNextTransactionContext
25GetTransactionContextExperienceId
26GetTransactionContextIsEqual
27GetTransactionContextMarket
28GetTransactionContextScenarioId
29GetTransactionContextTransactionId
30GetUserAnid
31Increment
32MakeSnapshotAndAttemptUpload
33PauseExperience
34RecordDependentApiQos
35RecordIncomingApiQos
36RecordInternalApiQos
37RecordScenarioQos
38RegisterNoOptDatapoint
39ResetSettings
40Set
41SetApplicationEnvironment
42SetDataExpiration
43SetDataPath
44SetDefaultSnapshotInterval
45SetDependentQosSnapshotInterval
46SetRetryFileCountLimit
47SetRetryInterval
48SetRetryThrottleIntervalSeconds
49SetSnapshotThrottleIntervalSeconds
50SetStorageFileCountLimit
51SetStorageSizeLimitBytes
52SetStorageTemporaryFileCountLimit
53SetStorageTimeLimitHours
54SetString
55SetUploadUrl
56SetUploadsEnabled
57SetUserAnid
58SetUserBetaState
59SetUserCid
60SetUserId
61StartExperience
62UploadPendingFiles
lib/libc/mingw/libarm32/winbrand.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of WINBRAND.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WINBRAND.dll"
7EXPORTS
8BrandingFormatString
9BrandingLoadBitmap
10BrandingLoadCursor
11BrandingLoadIcon
12BrandingLoadImage
13BrandingLoadString
14EulaFreeBuffer
15GetEULAFile
16GetEULAInCurrentUILanguage
17GetHinstanceByNameSpace
18GetInstalledEULAPath
19InstallEULA
lib/libc/mingw/libarm32/windows.globalization.fontgroups.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of windows.globalization.fontgroups.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "windows.globalization.fontgroups.dll"
7EXPORTS
8GetPreferredFont
lib/libc/mingw/libarm32/windows.networking.connectivity.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of Windows.Networking.Connectivity.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Windows.Networking.Connectivity.dll"
7EXPORTS
8SetHostNameMediaStreamingMode
lib/libc/mingw/libarm32/windows.networking.hostname.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of Windows.Networking.HostName.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Windows.Networking.HostName.dll"
7EXPORTS
8CreateEndpointPairFromSockAddrs
9CreateHostNameFromSockAddr
10CreateHostNameFromString
11CreateNetworkAdapterFromGuid
12GetAllHostNames
13GetSortedEndpointPairs
lib/libc/mingw/libarm32/windows.networking.networkoperators.hotspotauthentication.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of module.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "module.dll"
7EXPORTS
8CleanupHotspotProfiles
9RegisterHotspotProfile
lib/libc/mingw/libarm32/windows.networking.proximity.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of dll.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "dll.dll"
7EXPORTS
8ProximityConnect
lib/libc/mingw/libarm32/windows.networking.vpn.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of Windows.Networking.Vpn.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Windows.Networking.Vpn.dll"
7EXPORTS
8VpnClientPluginGetSecurity
9VpnClientPluginInstall
10VpnClientPluginManifestFind
11VpnClientPluginUninstall
12VpnPluginEnumerate
13VpnPluginListFree
lib/libc/mingw/libarm32/windows.storage.applicationdata.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of Windows.Storage.ApplicationData.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Windows.Storage.ApplicationData.dll"
7EXPORTS
8CleanupTemporaryState
lib/libc/mingw/libarm32/windows.ui.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of Windows.UI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Windows.UI.dll"
7EXPORTS
8ord_1500 @1500
9ord_1600 @1600
10CreateControlInput
lib/libc/mingw/libarm32/windows.ui.xaml.def created+15
......@@ -0,0 +1,15 @@
1;
2; Definition file of windows.ui.xaml.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "windows.ui.xaml.dll"
7EXPORTS
8CreateString
9CreateXamlUIPresenter
10DeleteString
11FreeBinaryGenericXaml
12GenerateBinaryGenericXaml
13GetDependencyObjectAddress
14GetStringLen
15GetStringRawBuffer
lib/libc/mingw/libarm32/windowscodecsext.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WindowsCodecsExt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WindowsCodecsExt.dll"
7EXPORTS
8IWICColorTransform_Initialize_Proxy
9WICCreateColorTransform_Proxy
lib/libc/mingw/libarm32/winethc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of winetHC.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "winetHC.DLL"
7EXPORTS
8ForceProxyDetectionOnNextRun
9SetAutoDetectProxyFlagForUser
lib/libc/mingw/libarm32/wininitext.def created+14
......@@ -0,0 +1,14 @@
1;
2; Definition file of WININITEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WININITEXT.dll"
7EXPORTS
8GetLoggedOnUserCount
9PrimaryTerminalAndHookWorker
10StartLoadingFontsWorker
11UIStartupWorker
12UnregisterSession0ViewerWindowHookDll
13WaitForWinstationShutdown
14WinStationSystemShutdownStartedWorker
lib/libc/mingw/libarm32/winipsec.def created+79
......@@ -0,0 +1,79 @@
1;
2; Definition file of WINIPSEC.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WINIPSEC.DLL"
7EXPORTS
8SPDApiBufferAllocate
9SPDApiBufferFree
10AddTransportFilter
11DeleteTransportFilter
12EnumTransportFilters
13SetTransportFilter
14GetTransportFilter
15AddQMPolicy
16DeleteQMPolicy
17EnumQMPolicies
18SetQMPolicy
19GetQMPolicy
20AddMMPolicy
21DeleteMMPolicy
22EnumMMPolicies
23SetMMPolicy
24GetMMPolicy
25AddMMFilter
26DeleteMMFilter
27EnumMMFilters
28SetMMFilter
29GetMMFilter
30MatchMMFilter
31MatchTransportFilter
32GetQMPolicyByID
33GetMMPolicyByID
34AddMMAuthMethods
35DeleteMMAuthMethods
36EnumMMAuthMethods
37SetMMAuthMethods
38GetMMAuthMethods
39InitiateIKENegotiation
40QueryIKENegotiationStatus
41CloseIKENegotiationHandle
42EnumMMSAs
43QueryIKEStatistics
44DeleteMMSAs
45RegisterIKENotifyClient
46QueryIKENotifyData
47CloseIKENotifyHandle
48QueryIPSecStatistics
49EnumQMSAs
50AddTunnelFilter
51DeleteTunnelFilter
52EnumTunnelFilters
53SetTunnelFilter
54GetTunnelFilter
55MatchTunnelFilter
56OpenMMFilterHandle
57CloseMMFilterHandle
58OpenTransportFilterHandle
59CloseTransportFilterHandle
60OpenTunnelFilterHandle
61CloseTunnelFilterHandle
62EnumIPSecInterfaces
63AddSAs
64DeleteQMSAs
65GetConfigurationVariables
66SetConfigurationVariables
67QuerySpdPolicyState
68OpenMMFilterHandleEx
69AddMMFilterEx
70EnumMMFiltersEx
71SetMMFilterEx
72GetMMFilterEx
73MatchMMFilterEx
74OpenTransportFilterHandleEx
75AddTransportFilterEx
76EnumTransportFiltersEx
77SetTransportFilterEx
78GetTransportFilterEx
79MatchTransportFilterEx
lib/libc/mingw/libarm32/winlangdb.def created+28
......@@ -0,0 +1,28 @@
1;
2; Definition file of WinLangdb.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WinLangdb.dll"
7EXPORTS
8Bcp47GetEnglishName
9Bcp47GetLocalizedName
10Bcp47GetLocalizedScript
11Bcp47GetNativeName
12Bcp47GetSerializedUserLanguageProfile
13EnsureLanguageProfileExists
14GetCompatibleInputMethodsForLanguage
15GetDefaultInputMethodForLanguage
16GetInputMethodDescription
17GetInputMethodProperties
18GetInputMethodTileName
19GetLanguageNames
20IsImeInputMethod
21IsImmersiveInputMethod
22IsTouchEnabledInputMethod
23IsoScriptGetLocalizedName
24LanguagesDatabaseGetChildLanguages
25LanguagesDatabaseHasChildren
26SetUserLanguages
27TransformInputMethodsForLanguage
28TransformInputMethodsForLanguageId
lib/libc/mingw/libarm32/winlogonext.def created+21
......@@ -0,0 +1,21 @@
1;
2; Definition file of WINLOGONEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WINLOGONEXT.dll"
7EXPORTS
8CanRunSetupWorker
9EnableDisableElevationForSessionWorker
10ExecuteSetupWorker
11InitWinLogonExt
12IsMiniNTModeWorker
13IsSetupCleanInstallWorker
14IsThisSetupWorker
15NotifyInteractiveSessionLogoff
16PrepareSetupExecutionWorker
17SetSetupShutdownActionWorker
18SetupCreateSplashScreenWorker
19SetupDestroySplashScreenWorker
20ShouldSetupExecuteWorker
21WinLogonExt
lib/libc/mingw/libarm32/winmde.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of winmde.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "winmde.dll"
7EXPORTS
8MFCreateNetVRoot
9MFCreateWinMDEOpCenter
lib/libc/mingw/libarm32/winmmbase.def created+158
......@@ -0,0 +1,158 @@
1;
2; Definition file of WINMMBASE.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WINMMBASE.dll"
7EXPORTS
8CloseDriver
9DefDriverProc
10DriverCallback
11DrvGetModuleHandle
12GetDriverModuleHandle
13OpenDriver
14SendDriverMessage
15auxGetDevCapsA
16auxGetDevCapsW
17auxGetNumDevs
18auxGetVolume
19auxOutMessage
20auxSetVolume
21joyConfigChanged
22joyGetDevCapsA
23joyGetDevCapsW
24joyGetNumDevs
25joyGetPos
26joyGetPosEx
27joyGetThreshold
28joyReleaseCapture
29joySetCapture
30joySetThreshold
31midiConnect
32midiDisconnect
33midiInAddBuffer
34midiInClose
35midiInGetDevCapsA
36midiInGetDevCapsW
37midiInGetErrorTextA
38midiInGetErrorTextW
39midiInGetID
40midiInGetNumDevs
41midiInMessage
42midiInOpen
43midiInPrepareHeader
44midiInReset
45midiInStart
46midiInStop
47midiInUnprepareHeader
48midiOutCacheDrumPatches
49midiOutCachePatches
50midiOutClose
51midiOutGetDevCapsA
52midiOutGetDevCapsW
53midiOutGetErrorTextA
54midiOutGetErrorTextW
55midiOutGetID
56midiOutGetNumDevs
57midiOutGetVolume
58midiOutLongMsg
59midiOutMessage
60midiOutOpen
61midiOutPrepareHeader
62midiOutReset
63midiOutSetVolume
64midiOutShortMsg
65midiOutUnprepareHeader
66midiStreamClose
67midiStreamOpen
68midiStreamOut
69midiStreamPause
70midiStreamPosition
71midiStreamProperty
72midiStreamRestart
73midiStreamStop
74mixerClose
75mixerGetControlDetailsA
76mixerGetControlDetailsW
77mixerGetDevCapsA
78mixerGetDevCapsW
79mixerGetID
80mixerGetLineControlsA
81mixerGetLineControlsW
82mixerGetLineInfoA
83mixerGetLineInfoW
84mixerGetNumDevs
85mixerMessage
86mixerOpen
87mixerSetControlDetails
88mmDrvInstall
89mmGetCurrentTask
90mmTaskBlock
91mmTaskCreate
92mmTaskSignal
93mmTaskYield
94mmioAdvance
95mmioAscend
96mmioClose
97mmioCreateChunk
98mmioDescend
99mmioFlush
100mmioGetInfo
101mmioInstallIOProcA
102mmioInstallIOProcW
103mmioOpenA
104mmioOpenW
105mmioRead
106mmioRenameA
107mmioRenameW
108mmioSeek
109mmioSendMessage
110mmioSetBuffer
111mmioSetInfo
112mmioStringToFOURCCA
113mmioStringToFOURCCW
114mmioWrite
115sndOpenSound
116waveInAddBuffer
117waveInClose
118waveInGetDevCapsA
119waveInGetDevCapsW
120waveInGetErrorTextA
121waveInGetErrorTextW
122waveInGetID
123waveInGetNumDevs
124waveInGetPosition
125waveInMessage
126waveInOpen
127waveInPrepareHeader
128waveInReset
129waveInStart
130waveInStop
131waveInUnprepareHeader
132waveOutBreakLoop
133waveOutClose
134waveOutGetDevCapsA
135waveOutGetDevCapsW
136waveOutGetErrorTextA
137waveOutGetErrorTextW
138waveOutGetID
139waveOutGetNumDevs
140waveOutGetPitch
141waveOutGetPlaybackRate
142waveOutGetPosition
143waveOutGetVolume
144waveOutMessage
145waveOutOpen
146waveOutPause
147waveOutPrepareHeader
148waveOutReset
149waveOutRestart
150waveOutSetPitch
151waveOutSetPlaybackRate
152waveOutSetVolume
153waveOutUnprepareHeader
154waveOutWrite
155winmmbaseFreeMMEHandles
156winmmbaseGetWOWHandle
157winmmbaseHandle32FromHandle16
158winmmbaseSetWOWHandle
lib/libc/mingw/libarm32/winnsi.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of WINNSI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WINNSI.DLL"
7EXPORTS
8NsiConnectToServer
9NsiDisconnectFromServer
10NsiRpcDeregisterChangeNotification
11NsiRpcDeregisterChangeNotificationEx
12NsiRpcEnumerateObjectsAllParameters
13NsiRpcGetAllParameters
14NsiRpcGetAllParametersEx
15NsiRpcGetParameter
16NsiRpcGetParameterEx
17NsiRpcRegisterChangeNotification
18NsiRpcRegisterChangeNotificationEx
19NsiRpcSetAllParameters
20NsiRpcSetAllParametersEx
21NsiRpcSetParameter
22NsiRpcSetParameterEx
lib/libc/mingw/libarm32/winrscmd.def created+38
......@@ -0,0 +1,38 @@
1;
2; Definition file of winrscmd.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "winrscmd.dll"
7EXPORTS
8??0?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@XZ
9??0?$SafeMap_Iterator@VKey@Locale@@K@@QAA@AAV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@_N@Z
10??0?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@ABV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@_N@Z
11??1?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@XZ
12??1?$SafeMap_Iterator@VKey@Locale@@K@@QAA@XZ
13??1?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@XZ
14??1CWSManCriticalSectionWithConditionVar@@QAA@XZ
15??_7?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@6B@ DATA
16?Acquire@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UBAXXZ
17?Acquire@?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAAXXZ
18?Acquired@?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA_NXZ
19?AsReference@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAAAAV1@XZ
20?Data@?$SafeMap_Iterator@VKey@Locale@@K@@IBAAAV?$STLMap@VKey@Locale@@K@@XZ
21?DeInitialize@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UAA_NAAVIRequestContext@@@Z
22?GetInitError@CWSManCriticalSection@@QBAKXZ
23?GetMap@?$SafeMap_Iterator@VKey@Locale@@K@@QBAAAV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@XZ
24?GetMap@?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QBAABV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@XZ
25?Initialize@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UAA_NAAVIRequestContext@@@Z
26?IsValid@?$SafeMap_Iterator@VKey@Locale@@K@@QBA_NXZ
27?Release@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UBAXXZ
28?Reset@?$SafeMap_Iterator@VKey@Locale@@K@@QAAXXZ
29?SkipOrphans@?$SafeMap_Iterator@VKey@Locale@@K@@IAAXXZ
30WSManPluginCommand
31WSManPluginReceive
32WSManPluginReleaseCommandContext
33WSManPluginReleaseShellContext
34WSManPluginSend
35WSManPluginShell
36WSManPluginShutdown
37WSManPluginSignal
38WSManPluginStartup
lib/libc/mingw/libarm32/winsetupui.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WinSetupUI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WinSetupUI.dll"
7EXPORTS
8CreateWinSetupUI
lib/libc/mingw/libarm32/winshfhc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of winshfhc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "winshfhc.dll"
7EXPORTS
8ord_101 @101
9MRTComponent_Generalize
lib/libc/mingw/libarm32/winsku.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WINSKU.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WINSKU.dll"
7EXPORTS
8SkuFreeBuffer
9SkuGetEditionEulaFilePath
lib/libc/mingw/libarm32/winsrpc.def created+38
......@@ -0,0 +1,38 @@
1;
2; Definition file of winsrpc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "winsrpc.dll"
7EXPORTS
8WinsABind
9WinsAllocMem
10WinsBackup
11WinsCheckAccess
12WinsDelDbRecs
13WinsDeleteWins
14WinsDoScavenging
15WinsDoScavengingNew
16WinsDoStaticInit
17WinsFreeMem
18WinsGetBrowserNames
19WinsGetDbRecs
20WinsGetDbRecsByName
21WinsGetNameAndAdd
22WinsPullRange
23WinsRecordAction
24WinsResetCounters
25WinsRestore
26WinsRestoreEx
27WinsSetFlags
28WinsSetPriorityClass
29WinsStatus
30WinsStatusNew
31WinsStatusWHdl
32WinsSyncUp
33WinsTerm
34WinsTombstoneDbRecs
35WinsTrigger
36WinsUBind
37WinsUnbind
38WinsWorkerThdUpd
lib/libc/mingw/libarm32/wintypes.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of WinTypes.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WinTypes.dll"
7EXPORTS
8RoCreateNonAgilePropertySet
9RoGetBufferMarshaler
10RoGetMetaDataFile
11RoParseTypeName
12RoResolveNamespace
lib/libc/mingw/libarm32/witnesswmiv2provider.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of WitnessWmiv2Provider.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WitnessWmiv2Provider.dll"
7EXPORTS
8GetProviderClassID
9MI_Main
10WitnessWmiInitialize
11WitnessWmiTerminate
lib/libc/mingw/libarm32/wlangpui.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WLSNP.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WLSNP.DLL"
7EXPORTS
8GetAdPolicyAsXML
9GetWmiPolicyAsXML
lib/libc/mingw/libarm32/wlanhlp.def created+117
......@@ -0,0 +1,117 @@
1;
2; Definition file of wlanhlp.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wlanhlp.dll"
7EXPORTS
8WFDGetSessionEndpointPairsInt
9QueryNetconStatus
10QueryNetconVirtualCharacteristic
11WFDAcceptConnectRequestAndOpenSessionInt
12WFDAcceptGroupRequestAndOpenSessionInt
13WFDCancelConnectorPairWithOOB
14WFDCancelListenerPairWithOOB
15WFDCancelOpenSessionInt
16WFDCloseHandleInt
17WFDCloseLegacySessionInt
18WFDCloseOOBPairingSession
19WFDCloseSessionInt
20WFDConfigureFirewallForSessionInt
21WFDDeclineConnectRequestInt
22WFDDeclineGroupRequestInt
23WFDDiscoverDevicesInt
24WFDFlushVisibleDeviceListInt
25WFDForceDisconnectInt
26WFDForceDisconnectLegacyPeerInt
27WFDFreeMemoryInt
28WFDGetDefaultGroupProfileInt
29WFDGetOOBBlob
30WFDGetProfileKeyInfoInt
31WFDGetVisibleDevicesInt
32WFDIsInterfaceWiFiDirect
33WFDIsWiFiDirectRunningOnWiFiAdapter
34WFDLowPrivCancelOpenSessionInt
35WFDLowPrivCloseHandleInt
36WFDLowPrivCloseSessionInt
37WFDLowPrivConfigureFirewallForSessionInt
38WFDLowPrivGetSessionEndpointPairsInt
39WFDLowPrivIsWfdSupportedInt
40WFDLowPrivOpenHandleInt
41WFDLowPrivRegisterNotificationInt
42WFDLowPrivStartOpenSessionByInterfaceIdInt
43WFDOpenHandleInt
44WFDOpenLegacySessionInt
45WFDPairCancelByDeviceAddressInt
46WFDPairCancelInt
47WFDPairEnumerateCeremoniesInt
48WFDPairSelectCeremonyInt
49WFDPairWithDeviceAndOpenSessionExInt
50WFDPairWithDeviceAndOpenSessionInt
51WFDParseOOBBlob
52WFDParseProfileXmlInt
53WFDQueryPropertyInt
54WFDRegisterNotificationInt
55WFDSetAdditionalIEsInt
56WFDSetPropertyInt
57WFDSetSecondaryDeviceTypeListInt
58WFDStartConnectorPairWithOOB
59WFDStartListenerPairWithOOB
60WFDStartOpenSessionInt
61WFDStartUsingGroupInt
62WFDStopDiscoverDevicesInt
63WFDStopUsingGroupInt
64WlanCancelPlap
65WlanConnectWithInput
66WlanDeinitPlapParams
67WlanDoPlap
68WlanDoesBssMatchSecurity
69WlanEnumAllInterfaces
70WlanGenerateProfileXmlBasicSettings
71WlanGetMFPNegotiated
72WlanGetProfileEapUserDataInfo
73WlanGetProfileIndex
74WlanGetProfileKeyInfo
75WlanGetProfileMetadata
76WlanGetProfileSsidList
77WlanGetRadioInformation
78WlanGetStoredRadioState
79WlanHostedNetworkFreeWCNSettings
80WlanHostedNetworkHlpQueryEverUsed
81WlanHostedNetworkQueryWCNSettings
82WlanHostedNetworkSetWCNSettings
83WlanInitPlapParams
84WlanInternalScan
85WlanIsNetworkSuppressed
86WlanIsUIRequestPending
87WlanLowPrivCloseHandle
88WlanLowPrivEnumInterfaces
89WlanLowPrivFreeMemory
90WlanLowPrivOpenHandle
91WlanLowPrivQueryInterface
92WlanLowPrivSetInterface
93WlanNotifyVsIeProviderInt
94WlanParseProfileXmlBasicSettings
95WlanPrivateGetAvailableNetworkList
96WlanQueryCreateAllUserProfileRestricted
97WlanQueryPlapCredentials
98WlanQueryPreConnectInput
99WlanQueryVirtualInterfaceType
100WlanRefreshConnections
101WlanRemoveUIForwardingNetworkList
102WlanSendUIResponse
103WlanSetAllUserProfileRestricted
104WlanSetProfileMetadata
105WlanSetUIForwardingNetworkList
106WlanStartAP
107WlanStopAP
108WlanStoreRadioStateOnEnteringAirPlaneMode
109WlanTryUpgradeCurrentConnectionAuthCipher
110WlanUpdateProfileWithAuthCipher
111WlanWcmGetInterface
112WlanWcmGetProfileList
113WlanWcmSetInterface
114WlanWfdGOSetWCNSettings
115WlanWfdGetPeerInfo
116WlanWfdStartGO
117WlanWfdStopGO
lib/libc/mingw/libarm32/wlaninst.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of wlaninst.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wlaninst.dll"
7EXPORTS
8WlanDeviceClassCoInstaller
lib/libc/mingw/libarm32/wlanmm.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WlanMM.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WlanMM.dll"
7EXPORTS
8StartDiagnosticsW
lib/libc/mingw/libarm32/wlanmsm.def created+10
......@@ -0,0 +1,10 @@
1;
2; Definition file of WLANMSM.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WLANMSM.DLL"
7EXPORTS
8Dot11MsmDeInit
9Dot11MsmInit
10InitializeDll
lib/libc/mingw/libarm32/wlansec.def created+37
......@@ -0,0 +1,37 @@
1;
2; Definition file of WLANSEC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WLANSEC.dll"
7EXPORTS
8MSMSecConnectionHealthCheck
9MSMSecCreateDiscoveryProfiles
10MSMSecDeinitialize
11MSMSecDeinitializeAdapter
12MSMSecFreeIntfState
13MSMSecFreeMemory
14MSMSecFreePeerState
15MSMSecFreeProfile
16MSMSecInitialize
17MSMSecInitializeAdapter
18MSMSecIsUIRequestPending
19MSMSecPerformCapabilityMatch
20MSMSecPerformPostAssociateSecurity
21MSMSecPerformPreAssociateSecurity
22MSMSecProcessSessionChange
23MSMSecQueryAPPeerPSKIndex
24MSMSecQueryIntfState
25MSMSecQueryPeerState
26MSMSecRecvIndication
27MSMSecRecvPacket
28MSMSecRedoSecurity
29MSMSecRemoveAPPeerKey
30MSMSecSendPktCompletion
31MSMSecSetAPPeerKey
32MSMSecSetAPSecondaryPSK
33MSMSecSetRuntimeState
34MSMSecSetWcnOneXEnable
35MSMSecStopPostAssociateSecurity
36MSMSecStopSecurity
37MSMSecUIResponse
lib/libc/mingw/libarm32/wlansvc.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of Wlansvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "Wlansvc.dll"
7EXPORTS
8SvchostPushServiceGlobals
9WLNotifyOnLogoff
10WLNotifyOnLogon
11WlanSvcMain
lib/libc/mingw/libarm32/wlansvcpal.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of wlansvcpal.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wlansvcpal.dll"
7EXPORTS
8WlanSvcPAL_GetFunctionTable
lib/libc/mingw/libarm32/wlgpclnt.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of wlgpclnt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wlgpclnt.dll"
7EXPORTS
8GenerateWLANPolicy
9ProcessWLANPolicyEx
10WLGPADeInit
11WLGPAInit
lib/libc/mingw/libarm32/wlidcli.def created+98
......@@ -0,0 +1,98 @@
1;
2; Definition file of wlidcli.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wlidcli.dll"
7EXPORTS
8Initialize
9Uninitialize
10PassportFreeMemory
11CreateIdentityHandle
12SetCredential
13GetIdentityProperty
14SetIdentityProperty
15CloseIdentityHandle
16AuthIdentityToService
17PersistCredential
18RemovePersistedCredential
19EnumIdentitiesWithCachedCredentials
20NextIdentity
21CloseEnumIdentitiesHandle
22GetAuthState
23LogonIdentity
24HasPersistedCredential
25SetIdentityCallback
26InitializeEx
27GetWebAuthUrl
28LogonIdentityEx
29AuthIdentityToServiceEx
30GetAuthStateEx
31GetCertificate
32CancelPendingRequest
33VerifyCertificate
34GetIdentityPropertyByName
35SetExtendedProperty
36GetExtendedProperty
37GetServiceConfig
38SetIdcrlOptions
39GetWebAuthUrlEx
40EncryptWithSessionKey
41DecryptWithSessionKey
42SetUserExtendedProperty
43GetUserExtendedProperty
44SetChangeNotificationCallback
45RemoveChangeNotificationCallback
46GetExtendedError
47InitializeApp
48EnumerateCertificates
49GenerateCertToken
50GetDeviceId
51SetDeviceConsent
52GenerateDeviceToken
53CreateLinkedIdentityHandle
54IsDeviceIDAdmin
55EnumerateDeviceID
56GetAssertion
57VerifyAssertion
58OpenAuthenticatedBrowser
59LogonIdentityExWithUI
60GetResponseForHttpChallenge
61GetDeviceShortLivedToken
62GetHIPChallenge
63SetHIPSolution
64SetDefaultUserForTarget
65GetDefaultUserForTarget
66UICollectCredential
67AssociateDeviceToUser
68DisassociateDeviceFromUser
69EnumerateUserAssociatedDevices
70UpdateUserAssociatedDeviceProperties
71UIShowWaitDialog
72UIEndWaitDialog
73InitializeIDCRLTraceBuffer
74FlushIDCRLTraceBuffer
75IsMappedError
76GetAuthenticationStatus
77GetConfigDWORDValue
78ProvisionDeviceId
79GetDeviceIdEx
80RenewDeviceId
81DeProvisionDeviceId
82UnPackErrorBlob
83GetDefaultNoUISSOUser
84LogonIdentityExSSO
85StartTracing
86StopTracing
87GetRealmInfo
88CreateIdentityHandleEx
89AddUserToSsoGroup
90GetUsersFromSsoGroup
91RemoveUserFromSsoGroup
92SendOneTimeCode
93EncryptWithSessionKeyEx
94DecryptWithSessionKeyEx
95GetErrorMessage
96SendWatsonReport
97IDCRL_GetSpecifiedProtectionKey
98IDCRL_GetLatestProtectionKey
lib/libc/mingw/libarm32/wlidnsp.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WLIDNSP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WLIDNSP.dll"
7EXPORTS
8NSPCleanup
9NSPStartup
lib/libc/mingw/libarm32/wlidsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WLIDSVC.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WLIDSVC.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/wmiclnt.def created+36
......@@ -0,0 +1,36 @@
1;
2; Definition file of WMICLNT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WMICLNT.dll"
7EXPORTS
8WmiCloseBlock
9WmiDevInstToInstanceNameA
10WmiDevInstToInstanceNameW
11WmiEnumerateGuids
12WmiExecuteMethodA
13WmiExecuteMethodW
14WmiFileHandleToInstanceNameA
15WmiFileHandleToInstanceNameW
16WmiFreeBuffer
17WmiMofEnumerateResourcesA
18WmiMofEnumerateResourcesW
19WmiNotificationRegistrationA
20WmiNotificationRegistrationW
21WmiOpenBlock
22WmiQueryAllDataA
23WmiQueryAllDataMultipleA
24WmiQueryAllDataMultipleW
25WmiQueryAllDataW
26WmiQueryGuidInformation
27WmiQuerySingleInstanceA
28WmiQuerySingleInstanceMultipleA
29WmiQuerySingleInstanceMultipleW
30WmiQuerySingleInstanceW
31WmiReceiveNotificationsA
32WmiReceiveNotificationsW
33WmiSetSingleInstanceA
34WmiSetSingleInstanceW
35WmiSetSingleItemA
36WmiSetSingleItemW
lib/libc/mingw/libarm32/wmidcom.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of wmidcom.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wmidcom.dll"
7EXPORTS
8??0CCritSec@@QAA@XZ
9??1CCritSec@@QAA@XZ
10??4CAutoSetActivityId@@QAAAAV0@ABV0@@Z
11??4CCritSec@@QAAAAV0@ABV0@@Z
12MI_Application_InitializeV1
lib/libc/mingw/libarm32/wmitomi.def created+19
......@@ -0,0 +1,19 @@
1;
2; Definition file of wmitomi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wmitomi.dll"
7EXPORTS
8??0CCritSec@@QAA@XZ
9??0MIServer@@QAA@XZ
10??1CCritSec@@QAA@XZ
11??4CAutoSetActivityId@@QAAAAV0@ABV0@@Z
12??4CCritSec@@QAAAAV0@ABV0@@Z
13??4MIServer@@QAAAAV0@ABV0@@Z
14?SetAdapter@AdapterContextBase@@QAAJPAUIUnknown@@@Z
15Adapter_CreateAdapterObject
16Adapter_DllCanUnloadNow
17Adapter_DllGetClassObject
18Adapter_RegisterDLL
19Adapter_UnRegisterDLL
lib/libc/mingw/libarm32/wmpdui.def created+151
......@@ -0,0 +1,151 @@
1;
2; Definition file of wmpdui.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wmpdui.dll"
7EXPORTS
8DUserCastHandle
9DUserDeleteGadget
10GetStdColorBrushF
11GetStdColorF
12GetStdColorPenF
13UtilDrawOutlineRect
14AddGadgetMessageHandler
15AddLayeredRef
16AdjustClipInsideRef
17AttachWndProcA
18AttachWndProcW
19AutoTrace
20BuildAnimation
21BuildDropTarget
22BuildInterpolation
23CacheDWriteRenderTarget
24ChangeCurrentAnimationScenario
25ClearPushedOpacitiesFromGadgetTree
26ClearTopmostVisual
27CreateAction
28CreateGadget
29CustomGadgetHitTestQuery
30DUserBuildGadget
31DUserCastClass
32DUserCastDirect
33DUserFindClass
34DUserFlushDeferredMessages
35DUserFlushMessages
36DUserGetAlphaPRID
37DUserGetGutsData
38DUserGetRectPRID
39DUserGetRotatePRID
40DUserGetScalePRID
41DUserInstanceOf
42DUserPostEvent
43DUserPostMethod
44DUserRegisterGuts
45DUserRegisterStub
46DUserRegisterSuper
47DUserSendEvent
48DUserSendMethod
49DUserStopAnimation
50DUserStopPVLAnimation
51DeleteHandle
52DestroyPendingDCVisuals
53DetachGadgetVisuals
54DetachWndProc
55DisableContainerHwnd
56DrawGadgetTree
57EnsureAnimationsEnabled
58EnsureGadgetTransInitialized
59EnumGadgets
60FindGadgetFromPoint
61FindGadgetMessages
62FindStdColor
63FireGadgetMessages
64ForwardGadgetMessage
65GadgetTransCompositionChanged
66GadgetTransSettingChanged
67GetActionTimeslice
68GetCachedDWriteRenderTarget
69GetDUserModule
70GetDebug
71GetFinalAnimatingPosition
72GetGadget
73GetGadgetAnimation
74GetGadgetBitmap
75GetGadgetBufferInfo
76GetGadgetCenterPoint
77GetGadgetFlags
78GetGadgetFocus
79GetGadgetLayerInfo
80GetGadgetMessageFilter
81GetGadgetProperty
82GetGadgetRect
83GetGadgetRgn
84GetGadgetRootInfo
85GetGadgetRotation
86GetGadgetScale
87GetGadgetSize
88GetGadgetStyle
89GetGadgetTicket
90GetGadgetVisual
91GetMessageExA
92GetMessageExW
93GetStdColorBrushI
94GetStdColorI
95GetStdColorName
96GetStdColorPenI
97GetStdPalette
98InitGadgetComponent
99InitGadgets
100InvalidateGadget
101InvalidateLayeredDescendants
102IsGadgetParentChainStyle
103IsInsideContext
104IsStartDelete
105LookupGadgetTicket
106MapGadgetPoints
107PeekMessageExA
108PeekMessageExW
109RegisterGadgetMessage
110RegisterGadgetMessageString
111RegisterGadgetProperty
112ReleaseDetachedObjects
113ReleaseLayeredRef
114ReleaseMouseCapture
115RemoveClippingImmunityFromVisual
116RemoveGadgetMessageHandler
117RemoveGadgetProperty
118ResetDUserDevice
119ScheduleGadgetTransitions
120SetActionTimeslice
121SetAtlasingHints
122SetGadgetBufferInfo
123SetGadgetCenterPoint
124SetGadgetFillF
125SetGadgetFillI
126SetGadgetFlags
127SetGadgetFocus
128SetGadgetFocusEx
129SetGadgetLayerInfo
130SetGadgetMessageFilter
131SetGadgetOrder
132SetGadgetParent
133SetGadgetProperty
134SetGadgetRect
135SetGadgetRootInfo
136SetGadgetRotation
137SetGadgetScale
138SetGadgetStyle
139SetHardwareDeviceUsage
140SetMinimumDCompVersion
141SetRestoreCachedLayeredRefFlag
142SetTransitionVisualProperties
143SetWindowResizeFlag
144UnregisterGadgetMessage
145UnregisterGadgetMessageString
146UnregisterGadgetProperty
147UtilBuildFont
148UtilDrawBlendRect
149UtilGetColor
150UtilSetBackground
151WaitMessageEx
lib/libc/mingw/libarm32/wmsgapi.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of WMsgAPI.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WMsgAPI.dll"
7EXPORTS
8WmsgBroadcastMessage
9WmsgBroadcastNotifyMessage
10WmsgPostMessage
11WmsgPostNotifyMessage
12WmsgSendMessage
13WmsgSendPSPMessage
lib/libc/mingw/libarm32/workfoldersgpext.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WorkFoldersGPExt.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WorkFoldersGPExt.dll"
7EXPORTS
8ProcessGroupPolicy
lib/libc/mingw/libarm32/workfolderssvc.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of workfolderssvc.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "workfolderssvc.DLL"
7EXPORTS
8ServiceMain
9ClientInitEcsLib
10ClientUnInitEcsLib
11CreateSyncClientCoreInstance
12CreateSyncServiceCoreInstance
13SyncChangeBatchEnumCreateInstance
lib/libc/mingw/libarm32/wpdbusenum.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WpdBusEnum.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WpdBusEnum.DLL"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/wpdshext.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WPDSHEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WPDSHEXT.dll"
7EXPORTS
8CDefFolderMenu_MergeMenu
lib/libc/mingw/libarm32/wpnsruprov.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of wpnsruprov.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wpnsruprov.dll"
7EXPORTS
8SruInitializeProvider
9SruUninitializeProvider
lib/libc/mingw/libarm32/wsdchngr.def created+12
......@@ -0,0 +1,12 @@
1;
2; Definition file of WSDChngr.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSDChngr.dll"
7EXPORTS
8WSDCHNGRChallengeDeviceClass
9WSDCHNGRInitialize
10WSDCHNGRRegisterDeviceToChallenge
11WSDCHNGRRemoveDevice
12WSDCHNGRShutdown
lib/libc/mingw/libarm32/wsecedit.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WSECEDIT.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSECEDIT.DLL"
7EXPORTS
8InvokeCAPEACLEditor
9TranslateAceMasksAndCondition
lib/libc/mingw/libarm32/wshext.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of WSHEXT.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSHEXT.dll"
7EXPORTS
8CreateIndirectData
9GetSignedDataMsg
10IsFileSupportedName
11PutSignedDataMsg
12RemoveSignedDataMsg
13VerifyIndirectData
lib/libc/mingw/libarm32/wship6.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of WSHIP6.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSHIP6.dll"
7EXPORTS
8WSHAddressToString
9WSHEnumProtocols
10WSHGetProviderGuid
11WSHGetSockaddrType
12WSHGetSocketInformation
13WSHGetWSAProtocolInfo
14WSHGetWildcardSockaddr
15WSHGetWinsockMapping
16WSHIoctl
17WSHJoinLeaf
18WSHNotify
19WSHOpenSocket
20WSHOpenSocket2
21WSHSetSocketInformation
22WSHStringToAddress
lib/libc/mingw/libarm32/wshnetbs.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of wshnetbs.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wshnetbs.dll"
7EXPORTS
8WSHEnumProtocols
9WSHGetProviderGuid
10WSHGetSockaddrType
11WSHGetSocketInformation
12WSHGetWildcardSockaddr
13WSHGetWinsockMapping
14WSHNotify
15WSHOpenSocket
16WSHSetSocketInformation
lib/libc/mingw/libarm32/wshqos.def created+22
......@@ -0,0 +1,22 @@
1;
2; Definition file of WSHTCPIP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSHTCPIP.dll"
7EXPORTS
8WSHAddressToString
9WSHEnumProtocols
10WSHGetProviderGuid
11WSHGetSockaddrType
12WSHGetSocketInformation
13WSHGetWSAProtocolInfo
14WSHGetWildcardSockaddr
15WSHGetWinsockMapping
16WSHIoctl
17WSHJoinLeaf
18WSHNotify
19WSHOpenSocket
20WSHOpenSocket2
21WSHSetSocketInformation
22WSHStringToAddress
lib/libc/mingw/libarm32/wshrm.def created+23
......@@ -0,0 +1,23 @@
1;
2; Definition file of WSHRM.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSHRM.dll"
7EXPORTS
8WSHAddressToString
9WSHEnumProtocols
10WSHGetBroadcastSockaddr
11WSHGetProviderGuid
12WSHGetSockaddrType
13WSHGetSocketInformation
14WSHGetWSAProtocolInfo
15WSHGetWildcardSockaddr
16WSHGetWinsockMapping
17WSHIoctl
18WSHJoinLeaf
19WSHNotify
20WSHOpenSocket
21WSHOpenSocket2
22WSHSetSocketInformation
23WSHStringToAddress
lib/libc/mingw/libarm32/wshtcpip.def created+23
......@@ -0,0 +1,23 @@
1;
2; Definition file of WSHTCPIP.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSHTCPIP.dll"
7EXPORTS
8WSHAddressToString
9WSHEnumProtocols
10WSHGetBroadcastSockaddr
11WSHGetProviderGuid
12WSHGetSockaddrType
13WSHGetSocketInformation
14WSHGetWSAProtocolInfo
15WSHGetWildcardSockaddr
16WSHGetWinsockMapping
17WSHIoctl
18WSHJoinLeaf
19WSHNotify
20WSHOpenSocket
21WSHOpenSocket2
22WSHSetSocketInformation
23WSHStringToAddress
lib/libc/mingw/libarm32/wsmagent.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of wsmagent.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wsmagent.DLL"
7EXPORTS
8??1CWSManCriticalSectionWithConditionVar@@QAA@XZ
9?GetInitError@CWSManCriticalSection@@QBAKXZ
10GetProviderClassID
11MI_Main
lib/libc/mingw/libarm32/wsmwmipl.def created+46
......@@ -0,0 +1,46 @@
1;
2; Definition file of WsmWmiPl.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WsmWmiPl.DLL"
7EXPORTS
8??0?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@XZ
9??0?$SafeMap_Iterator@VKey@Locale@@K@@QAA@AAV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@_N@Z
10??0?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@ABV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@_N@Z
11??1?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@XZ
12??1?$SafeMap_Iterator@VKey@Locale@@K@@QAA@XZ
13??1?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA@XZ
14??1CWSManCriticalSectionWithConditionVar@@QAA@XZ
15??_7?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@6B@ DATA
16?Acquire@?$SafeMap@VKey@CWmiPtrCache@@VMapping@2@V?$SafeMap_Iterator@VKey@CWmiPtrCache@@VMapping@2@@@@@UBAXXZ
17?Acquire@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UBAXXZ
18?Acquire@?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAAXXZ
19?Acquired@?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAA_NXZ
20?AsReference@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QAAAAV1@XZ
21?Data@?$SafeMap_Iterator@VKey@Locale@@K@@IBAAAV?$STLMap@VKey@Locale@@K@@XZ
22?DeInitialize@?$SafeMap@VKey@CWmiPtrCache@@VMapping@2@V?$SafeMap_Iterator@VKey@CWmiPtrCache@@VMapping@2@@@@@UAA_NAAVIRequestContext@@@Z
23?DeInitialize@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UAA_NAAVIRequestContext@@@Z
24?GetInitError@CWSManCriticalSection@@QBAKXZ
25?GetMap@?$SafeMap_Iterator@VKey@Locale@@K@@QBAAAV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@XZ
26?GetMap@?$SafeMap_Lock@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@QBAABV?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@XZ
27?Initialize@?$SafeMap@VKey@CWmiPtrCache@@VMapping@2@V?$SafeMap_Iterator@VKey@CWmiPtrCache@@VMapping@2@@@@@UAA_NAAVIRequestContext@@@Z
28?Initialize@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UAA_NAAVIRequestContext@@@Z
29?IsValid@?$SafeMap_Iterator@VKey@CWmiPtrCache@@VMapping@2@@@QBA_NXZ
30?IsValid@?$SafeMap_Iterator@VKey@Locale@@K@@QBA_NXZ
31?Release@?$SafeMap@VKey@CWmiPtrCache@@VMapping@2@V?$SafeMap_Iterator@VKey@CWmiPtrCache@@VMapping@2@@@@@UBAXXZ
32?Release@?$SafeMap@VKey@Locale@@KV?$SafeMap_Iterator@VKey@Locale@@K@@@@UBAXXZ
33?Reset@?$SafeMap_Iterator@VKey@Locale@@K@@QAAXXZ
34?SkipOrphans@?$SafeMap_Iterator@VKey@Locale@@K@@IAAXXZ
35WSManPluginShutdown
36WSManPluginStartup
37WSManProvCreate
38WSManProvDelete
39WSManProvEnumerate
40WSManProvGet
41WSManProvIdentify
42WSManProvInvoke
43WSManProvPullEvents
44WSManProvPut
45WSManProvSubscribe
46WSManProvUnsubscribe
lib/libc/mingw/libarm32/wsservice.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WsService.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WsService.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/wssync.def created+34
......@@ -0,0 +1,34 @@
1;
2; Definition file of WSSync.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WSSync.dll"
7EXPORTS
8WSAcquireLicense
9WSAcquireWindowsUpgradeLicense
10WSCallActivateAppxLOBSKU
11WSCreateAcquireLicenseChallenge
12WSEvaluatePackageRemediationState
13WSFulfillProduct
14WSGetAddonKeyInstalledFlag
15WSGetBase64EncodedActiveLicenseData
16WSGetDebuggingHeader
17WSGetLOBEnabledSKUFlag
18WSGetLastSyncTime
19WSGetLocalHardwareId
20WSGetWindowsUpgradeToken
21WSIsWindowsUpgradeLicensed
22WSLicenseFree
23WSLicenseGetDeviceList
24WSLicenseGetMachineID
25WSLicenseGetMyAppsList
26WSLicenseGetOemLicenseList
27WSLicenseInitialize
28WSLicenseParseReceiptResponse
29WSLicenseRemoveDevice
30WSParseLicenseResponse
31WSSetDebuggingHeader
32WSSyncLicenses
33WSSyncMachineLicenses
34g_bPrint DATA
lib/libc/mingw/libarm32/wuaext.def created+11
......@@ -0,0 +1,11 @@
1;
2; Definition file of wuaext.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wuaext.dll"
7EXPORTS
8IsWuAppDisabledByPolicy
9GetAutoUpdateNotification
10AutoUpdateNotificationSkipped
11GetDaysWaitedForAutoUpdateNotification
lib/libc/mingw/libarm32/wuaueng.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of wuaueng.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wuaueng.dll"
7EXPORTS
8GetAUOptionsEx
9GeneralizeForImaging
10ord_3 @3
11WUCheckForUpdatesAtShutdown
12WUAutoUpdateAtShutdown
13GetEngineStatusInfo
14RegisterServiceVersion
15ServiceHandler
16ServiceMain
17WUServiceMain
lib/libc/mingw/libarm32/wudfcoinstaller.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WUDFCoinstaller.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WUDFCoinstaller.dll"
7EXPORTS
8CoDeviceInstall
lib/libc/mingw/libarm32/wudfplatform.def created+20
......@@ -0,0 +1,20 @@
1;
2; Definition file of WUDFPlatform.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WUDFPlatform.dll"
7EXPORTS
8GetPlatformObject
9ClearPlatformTestingCallbacks
10GetAndInitializePlatformObject
11InitializePlatformLibrary
12PlatformUnhandledExceptionFilter
13SetPlatformTestingCallbacks
14ShutdownPlatformLibrary
15WdfGetLpcInterface
16WudfDebugBreakPoint
17WudfIsAnyDebuggerPresent
18WudfIsKernelDebuggerPresent
19WudfIsUserDebuggerPresent
20WudfWaitForDebugger
lib/libc/mingw/libarm32/wudfsvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WUDFSvc.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WUDFSvc.dll"
7EXPORTS
8ServiceMain
9SvchostPushServiceGlobals
lib/libc/mingw/libarm32/wudfx.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WUDFx.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WUDFx.DLL"
7EXPORTS
8Microsoft_WDF_UMDF_Version DATA
lib/libc/mingw/libarm32/wudfx02000.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WUDFx02000.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WUDFx02000.DLL"
7EXPORTS
8FxFrameworkEntryUm
9Microsoft_WDF_UMDF_Version DATA
lib/libc/mingw/libarm32/wudriver.def created+17
......@@ -0,0 +1,17 @@
1;
2; Definition file of WUDriver.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WUDriver.dll"
7EXPORTS
8CancelCDMOperation
9CloseCDMContext
10DetFilesDownloaded
11DownloadIsInternetAvailable
12DownloadUpdatedFiles
13FindMatchingDriver
14LogDriverNotFound
15OpenCDMContext
16OpenCDMContextEx
17QueryDetectionFiles
lib/libc/mingw/libarm32/wusettingsprovider.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WUSettingsProvider.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WUSettingsProvider.dll"
7EXPORTS
8GetSetting
lib/libc/mingw/libarm32/wwaninst.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of wwaninst.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wwaninst.dll"
7EXPORTS
8WwanDeviceClassCoInstaller
lib/libc/mingw/libarm32/wwanmm.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of WWanMM.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WWanMM.dll"
7EXPORTS
8StartDiagnosticsW
lib/libc/mingw/libarm32/wwanprotdim.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of NDIS_60_WMI.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "NDIS_60_WMI.DLL"
7EXPORTS
8DimInitialize
lib/libc/mingw/libarm32/wwansvc.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of WWANSVC.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "WWANSVC.DLL"
7EXPORTS
8SvchostPushServiceGlobals
9WwanSvcMain
lib/libc/mingw/libarm32/wwapi.def created+50
......@@ -0,0 +1,50 @@
1;
2; Definition file of wwapi.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "wwapi.dll"
7EXPORTS
8Wwan2CloseDeviceServiceCommandSession
9Wwan2CloseDeviceServiceDataSession
10Wwan2CloseHandle
11Wwan2EnumerateDeviceServices
12Wwan2OpenDeviceServiceCommandSession
13Wwan2OpenDeviceServiceDataSession
14Wwan2OpenHandle
15Wwan2QueryDeviceServiceSupportedCommands
16Wwan2QueryInterfaces
17Wwan2RegisterNotification
18Wwan2SendDeviceServiceCommand
19Wwan2SubscribePowerStateEvents
20Wwan2WriteDeviceServiceData
21WwanAllocateMemory
22WwanAuthChallenge
23WwanCloseHandle
24WwanConnect
25WwanConnectAdditionalPdpContext
26WwanConnectByActivityId
27WwanConvertToInterfaceObject
28WwanDeleteProfile
29WwanDisconnect
30WwanEnumerateInterfaces
31WwanFreeMemory
32WwanGetProfile
33WwanGetProfileHomeProviderName
34WwanGetProfileIndex
35WwanGetProfileIstream
36WwanGetProfileList
37WwanGetProfileMetaData
38WwanOpenHandle
39WwanQueryInterface
40WwanRegister
41WwanRegisterNotification
42WwanScan
43WwanSetInterface
44WwanSetProfile
45WwanSetProfileMetaData
46WwanSetSmsConfiguration
47WwanSmsDelete
48WwanSmsRead
49WwanSmsSend
50WwanUssdRequest
lib/libc/mingw/libarm32/xmllite.def deleted-13
......@@ -1,13 +0,0 @@
1;
2; Definition file of XmlLite.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "XmlLite.dll"
7EXPORTS
8CreateXmlReader
9CreateXmlReaderInputWithEncodingCodePage
10CreateXmlReaderInputWithEncodingName
11CreateXmlWriter
12CreateXmlWriterOutputWithEncodingCodePage
13CreateXmlWriterOutputWithEncodingName
lib/libc/mingw/libarm32/xpsprint.def created+13
......@@ -0,0 +1,13 @@
1;
2; Definition file of XPSPRINT.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "XPSPRINT.DLL"
7EXPORTS
8ord_3 @3
9ord_5 @5
10ord_7 @7
11ord_9 @9
12StartXpsPrintJob
13StartXpsPrintJob1
lib/libc/mingw/libarm32/xpsrasterservice.def created+9
......@@ -0,0 +1,9 @@
1;
2; Definition file of XpsRasterService.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "XpsRasterService.DLL"
7EXPORTS
8ord_1 @1
9DrvPopulateFilterServices
lib/libc/mingw/libarm32/xpssvcs.def created+16
......@@ -0,0 +1,16 @@
1;
2; Definition file of XpsSvcs.DLL
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "XpsSvcs.DLL"
7EXPORTS
8DDLogHelper
9CreateContainerConsumer
10CreateContainerProducer
11CreateReachPackageReceiver
12CreateReachPackageSender
13CreateSeekableBuffer
14CreateStreamReceiverOnFileHandle
15CreateStreamSenderOnFileHandle
16CreateStreamSenderOnIStream
lib/libc/mingw/libarm32/xwizards.def created+26
......@@ -0,0 +1,26 @@
1;
2; Definition file of xwizards.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "xwizards.dll"
7EXPORTS
8ProcessXMLFileA
9ProcessXMLFileW
10ResetRegistrationA
11ResetRegistrationW
12RunPropertySheetA
13RunPropertySheetW
14RunWizardA
15RunWizardW
16XWProcessXMLFile
17XWRegisterHost
18XWRegisterPageWithPage
19XWRegisterPageWithTask
20XWRegisterTaskWithHost
21XWUnregisterHost
22XWUnregisterHostTaskLink
23XWUnregisterPage
24XWUnregisterPagesLink
25XWUnregisterTask
26XWUnregisterTaskPageLink
lib/libc/mingw/libarm32/zipfldr.def created+8
......@@ -0,0 +1,8 @@
1;
2; Definition file of ZIPFLDR.dll
3; Automatic generated by gendef
4; written by Kai Tietz 2008-2014
5;
6LIBRARY "ZIPFLDR.dll"
7EXPORTS
8RouteTheCall
lib/libc/mingw/libsrc/uuid.c+10
......@@ -14,6 +14,7 @@
1414#define INITGUID
1515#include <basetyps.h>
1616
17#include <credentialprovider.h>
1718#include <textstor.h>
1819#include <shobjidl.h>
1920#include <propkey.h>
......@@ -24,7 +25,16 @@
2425#include <oledb.h>
2526#include <uiautomation.h>
2627#include <urlmon.h>
28
2729#include <d2d1_1.h>
30#include <d2d1_2.h>
31#include <d2d1_3.h>
32#include <d2d1effectauthor.h>
33#include <d2d1effects.h>
34#include <d2d1effects_1.h>
35#include <d2d1effects_2.h>
36#include <d2d1svg.h>
37
2838#include <d3d11_1.h>
2939#include <directmanipulation.h>
3040#include <netlistmgr.h>
lib/libc/mingw/math/abs64.c deleted-6
......@@ -1,6 +0,0 @@
1#include <intrin.h>
2#include <stdlib.h>
3
4__MINGW_EXTENSION __int64 __cdecl _abs64(__int64 x) {
5 return llabs(x);
6}
lib/libc/mingw/math/fp_consts.h+6-10
......@@ -12,23 +12,19 @@ initial significand bit of 1. A SNaN has has an exponent of all 1
1212values and initial significand bit of 0 (with one or more other
1313significand bits of 1). An Inf has significand of 0 and
1414exponent of all 1 values. A denormal value has all exponent bits of 0.
15
16The following does _not_ follow those rules, but uses values
17equal to those exported from MS C++ runtime lib, msvcprt.dll
18for float and double. MSVC however, does not have long doubles.
1915*/
2016
2117
2218#define __DOUBLE_INF_REP { 0, 0, 0, 0x7ff0 }
23#define __DOUBLE_QNAN_REP { 0, 0, 0, 0xfff8 } /* { 0, 0, 0, 0x7ff8 } */
24#define __DOUBLE_SNAN_REP { 0, 0, 0, 0xfff0 } /* { 1, 0, 0, 0x7ff0 } */
19#define __DOUBLE_QNAN_REP { 0, 0, 0, 0x7ff8 }
20#define __DOUBLE_SNAN_REP { 0, 0, 0, 0x7ff0 }
2521#define __DOUBLE_DENORM_REP {1, 0, 0, 0}
2622
2723#define D_NAN_MASK 0x7ff0000000000000LL /* this will mask NaN's and Inf's */
2824
2925#define __FLOAT_INF_REP { 0, 0x7f80 }
30#define __FLOAT_QNAN_REP { 0, 0xffc0 } /* { 0, 0x7fc0 } */
31#define __FLOAT_SNAN_REP { 0, 0xff80 } /* { 1, 0x7f80 } */
26#define __FLOAT_QNAN_REP { 0, 0x7fc0 }
27#define __FLOAT_SNAN_REP { 0, 0x7f80 }
3228#define __FLOAT_DENORM_REP {1,0}
3329
3430#define F_NAN_MASK 0x7f800000
......@@ -38,8 +34,8 @@ for float and double. MSVC however, does not have long doubles.
3834 Padded to 96 bits
3935 */
4036#define __LONG_DOUBLE_INF_REP { 0, 0, 0, 0x8000, 0x7fff, 0 }
41#define __LONG_DOUBLE_QNAN_REP { 0, 0, 0, 0xc000, 0xffff, 0 }
42#define __LONG_DOUBLE_SNAN_REP { 0, 0, 0, 0x8000, 0xffff, 0 }
37#define __LONG_DOUBLE_QNAN_REP { 0, 0, 0, 0xc000, 0x7fff, 0 }
38#define __LONG_DOUBLE_SNAN_REP { 0, 0, 0, 0x8000, 0x7fff, 0 }
4339#define __LONG_DOUBLE_DENORM_REP {1, 0, 0, 0, 0, 0}
4440
4541union _ieee_rep
lib/libc/mingw/math/lrint.c+7-1
......@@ -5,10 +5,16 @@
55 */
66#include <math.h>
77
8#if defined(_AMD64_) || defined(__x86_64__)
9#include <xmmintrin.h>
10#endif
11
812long lrint (double x)
913{
1014 long retval = 0L;
11#if defined(_AMD64_) || defined(__x86_64__) || defined(_X86_) || defined(__i386__)
15#if defined(_AMD64_) || defined(__x86_64__)
16 retval = _mm_cvtsd_si32(_mm_load_sd(&x));
17#elif defined(_X86_) || defined(__i386__)
1218 __asm__ __volatile__ ("fistpl %0" : "=m" (retval) : "t" (x) : "st");
1319#elif defined(__arm__) || defined(_ARM_)
1420 float temp;
lib/libc/mingw/math/lrintf.c+7-1
......@@ -5,10 +5,16 @@
55 */
66#include <math.h>
77
8#if defined(_AMD64_) || defined(__x86_64__)
9#include <xmmintrin.h>
10#endif
11
812long lrintf (float x)
913{
1014 long retval = 0l;
11#if defined(_AMD64_) || defined(__x86_64__) || defined(_X86_) || defined(__i386__)
15#if defined(_AMD64_) || defined(__x86_64__)
16 retval = _mm_cvtss_si32(_mm_load_ss(&x));
17#elif defined(_X86_) || defined(__i386__)
1218 __asm__ __volatile__ ("fistpl %0" : "=m" (retval) : "t" (x) : "st");
1319#elif defined(__arm__) || defined(_ARM_)
1420 __asm__ __volatile__ (
lib/libc/mingw/math/powi.def.h+33-12
......@@ -68,6 +68,22 @@
6868#include <math.h>
6969#include <errno.h>
7070
71static __FLT_TYPE do_powi_iter(__FLT_TYPE d, int y)
72{
73 unsigned int u = (unsigned int) y;
74 __FLT_TYPE rslt = ((u & 1) != 0) ? d : __FLT_CST(1.0);
75 u >>= 1;
76 do
77 {
78 d *= d;
79 if ((u & 1) != 0)
80 rslt *= d;
81 u >>= 1;
82 }
83 while (u > 0);
84 return rslt;
85}
86
7187__FLT_TYPE __cdecl
7288__FLT_ABI(__powi) (__FLT_TYPE x, int y);
7389
......@@ -76,6 +92,7 @@ __FLT_ABI(__powi) (__FLT_TYPE x, int y)
7692{
7793 int x_class = fpclassify (x);
7894 int odd_y = y & 1;
95 int recip = 0;
7996 __FLT_TYPE d, rslt;
8097
8198 if (y == 0 || x == __FLT_CST(1.0))
......@@ -125,7 +142,8 @@ __FLT_ABI(__powi) (__FLT_TYPE x, int y)
125142
126143 if (y < 0)
127144 {
128 d = __FLT_CST(1.0) / d;
145 /* By default, do the reciprocal of the result. */
146 recip = 1;
129147 y = -y;
130148 }
131149
......@@ -135,18 +153,21 @@ __FLT_ABI(__powi) (__FLT_TYPE x, int y)
135153 rslt = d;
136154 else
137155 {
138 unsigned int u = (unsigned int) y;
139 rslt = ((u & 1) != 0) ? d : __FLT_CST(1.0);
140 u >>= 1;
141 do
142 {
143 d *= d;
144 if ((u & 1) != 0)
145 rslt *= d;
146 u >>= 1;
147 }
148 while (u > 0);
156 rslt = do_powi_iter(d, y);
157 if (recip && fpclassify(rslt) == FP_INFINITE && d > __FLT_CST(1.0))
158 {
159 /* Uncommon case - we had overflow, but we're going to calculate
160 the reciprocal. If this happened, redo the calculation by doing
161 the reciprocal upfront instead. Instead of trying to calculate
162 whether this will happen, we prefer keeping the default case
163 cheap. */
164 d = __FLT_CST(1.0) / d;
165 recip = 0;
166 rslt = do_powi_iter(d, y);
167 }
149168 }
169 if (recip)
170 rslt = __FLT_CST(1.0) / rslt;
150171 if (signbit (x) && odd_y)
151172 rslt = -rslt;
152173 return rslt;
lib/libc/mingw/misc/__initenv.c created+12
......@@ -0,0 +1,12 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#include <internal.h>
8
9static char ** local__initenv;
10static wchar_t ** local__winitenv;
11char *** __MINGW_IMP_SYMBOL(__initenv) = &local__initenv;
12wchar_t *** __MINGW_IMP_SYMBOL(__winitenv) = &local__winitenv;
lib/libc/mingw/misc/basename.c deleted-135
......@@ -1,135 +0,0 @@
1/* basename.c
2 *
3 * $Id: basename.c,v 1.2 2007/03/08 23:15:58 keithmarshall Exp $
4 *
5 * Provides an implementation of the "basename" function, conforming
6 * to SUSv3, with extensions to accommodate Win32 drive designators,
7 * and suitable for use on native Microsoft(R) Win32 platforms.
8 *
9 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
10 *
11 * This is free software. You may redistribute and/or modify it as you
12 * see fit, without restriction of copyright.
13 *
14 * This software is provided "as is", in the hope that it may be useful,
15 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
16 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
17 * time will the author accept any form of liability for any damages,
18 * however caused, resulting from the use of this software.
19 *
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <libgen.h>
26#include <locale.h>
27
28#ifndef __cdecl
29#define __cdecl
30#endif
31
32char * __cdecl
33basename (char *path)
34{
35 static char *retfail = NULL;
36 size_t len;
37 /* to handle path names for files in multibyte character locales,
38 * we need to set up LC_CTYPE to match the host file system locale
39 */
40 char *locale = setlocale (LC_CTYPE, NULL);
41
42 if (locale != NULL)
43 locale = strdup (locale);
44 setlocale (LC_CTYPE, "");
45
46 if (path && *path)
47 {
48 /* allocate sufficient local storage space,
49 * in which to create a wide character reference copy of path
50 */
51 wchar_t refcopy[1 + (len = mbstowcs (NULL, path, 0))];
52 /* create the wide character reference copy of path,
53 * and step over the drive designator, if present ...
54 */
55 wchar_t *refpath = refcopy;
56
57 if ((len = mbstowcs( refpath, path, len)) > 1 && refpath[1] == L':')
58 {
59 /* FIXME: maybe should confirm *refpath is a valid drive designator */
60 refpath += 2;
61 }
62 /* ensure that our wide character reference path is NUL terminated */
63 refcopy[len] = L'\0';
64 /* check again, just to ensure we still have a non-empty path name ... */
65 if (*refpath)
66 {
67 /* and, when we do, process it in the wide character domain ...
68 * scanning from left to right, to the char after the final dir separator. */
69 wchar_t *refname;
70
71 for (refname = refpath; *refpath; ++refpath)
72 {
73 if (*refpath == L'/' || *refpath == L'\\')
74 {
75 /* we found a dir separator ...
76 * step over it, and any others which immediately follow it. */
77 while (*refpath == L'/' || *refpath == L'\\')
78 ++refpath;
79 /* if we didn't reach the end of the path string ... */
80 if (*refpath)
81 /* then we have a new candidate for the base name. */
82 refname = refpath;
83 /* otherwise ...
84 * strip off any trailing dir separators which we found. */
85 else
86 while (refpath > refname
87 && (*--refpath == L'/' || *refpath == L'\\') )
88 *refpath = L'\0';
89 }
90 }
91 /* in the wide character domain ...
92 * refname now points at the resolved base name ... */
93 if (*refname)
94 {
95 /* if it's not empty,
96 * then we transform the full normalised path back into
97 * the multibyte character domain, and skip over the dirname,
98 * to return the resolved basename. */
99 if ((len = wcstombs( path, refcopy, len)) != (size_t)(-1))
100 path[len] = '\0';
101 *refname = L'\0';
102 if ((len = wcstombs( NULL, refcopy, 0 )) != (size_t)(-1))
103 path += len;
104 }
105 else
106 {
107 /* the basename is empty, so return the default value of "/",
108 * transforming from wide char to multibyte char domain, and
109 * returning it in our own buffer. */
110 retfail = realloc (retfail, len = 1 + wcstombs (NULL, L"/", 0));
111 wcstombs (path = retfail, L"/", len);
112 }
113 /* restore the caller's locale, clean up, and return the result */
114 setlocale (LC_CTYPE, locale);
115 free (locale);
116 return path;
117 }
118 /* or we had an empty residual path name, after the drive designator,
119 * in which case we simply fall through ... */
120 }
121 /* and, if we get to here ...
122 * the path name is either NULL, or it decomposes to an empty string;
123 * in either case, we return the default value of "." in our own buffer,
124 * reloading it with the correct value, transformed from the wide char
125 * to the multibyte char domain, just in case the caller trashed it
126 * after a previous call.
127 */
128 retfail = realloc (retfail, len = 1 + wcstombs( NULL, L".", 0));
129 wcstombs (retfail, L".", len);
130
131 /* restore the caller's locale, clean up, and return the result. */
132 setlocale (LC_CTYPE, locale);
133 free (locale);
134 return retfail;
135}
lib/libc/mingw/misc/delayimp.c-1
......@@ -47,7 +47,6 @@ static unsigned IndexFromPImgThunkData(PCImgThunkData pitdCur,PCImgThunkData pit
4747 return (unsigned) (pitdCur - pitdBase);
4848}
4949
50#define __ImageBase __MINGW_LSYMBOL(_image_base__)
5150extern IMAGE_DOS_HEADER __ImageBase;
5251
5352#define PtrFromRVA(RVA) (((PBYTE)&__ImageBase) + (RVA))
lib/libc/mingw/misc/dirname.c+265-171
......@@ -1,183 +1,277 @@
1/* dirname.c
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#ifndef WIN32_LEAN_AND_MEAN
7#define WIN32_LEAN_AND_MEAN
8#endif
9#include <stdlib.h>
10#include <libgen.h>
11#include <windows.h>
12
13/* A 'directory separator' is a byte that equals 0x2F ('solidus' or more
14 * commonly 'forward slash') or 0x5C ('reverse solidus' or more commonly
15 * 'backward slash'). The byte 0x5C may look different from a backward slash
16 * in some locales; for example, it looks the same as a Yen sign in Japanese
17 * locales and a Won sign in Korean locales. Despite its appearance, it still
18 * functions as a directory separator.
219 *
3 * $Id: dirname.c,v 1.2 2007/03/08 23:15:58 keithmarshall Exp $
20 * A 'path' comprises an optional DOS drive letter with a colon, and then an
21 * arbitrary number of possibily empty components, separated by non-empty
22 * sequences of directory separators (in other words, consecutive directory
23 * separators are treated as a single one). A path that comprises an empty
24 * component denotes the current working directory.
425 *
5 * Provides an implementation of the "dirname" function, conforming
6 * to SUSv3, with extensions to accommodate Win32 drive designators,
7 * and suitable for use on native Microsoft(R) Win32 platforms.
26 * An 'absolute path' comprises at least two components, the first of which
27 * is empty.
828 *
9 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
29 * A 'relative path' is a path that is not an absolute path. In other words,
30 * it either comprises an empty component, or begins with a non-empty
31 * component.
1032 *
11 * This is free software. You may redistribute and/or modify it as you
12 * see fit, without restriction of copyright.
33 * POSIX doesn't have a concept about DOS drives. A path that does not have a
34 * drive letter starts from the same drive as the current working directory.
1335 *
14 * This software is provided "as is", in the hope that it may be useful,
15 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
16 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
17 * time will the author accept any form of liability for any damages,
18 * however caused, resulting from the use of this software.
36 * For example:
37 * (Examples without drive letters match POSIX.)
1938 *
39 * Argument dirname() returns basename() returns
40 * -------- ----------------- ------------------
41 * `` or NULL `.` `.`
42 * `usr` `.` `usr`
43 * `usr\` `.` `usr`
44 * `\` `\` `\`
45 * `\usr` `\` `usr`
46 * `\usr\lib` `\usr` `lib`
47 * `\home\\dwc\\test` `\home\\dwc` `test`
48 * `\\host\usr` `\\host\.` `usr`
49 * `\\host\usr\lib` `\\host\usr` `lib`
50 * `\\host\\usr` `\\host\\` `usr`
51 * `\\host\\usr\lib` `\\host\\usr` `lib`
52 * `C:` `C:.` `.`
53 * `C:usr` `C:.` `usr`
54 * `C:usr\` `C:.` `usr`
55 * `C:\` `C:\` `\`
56 * `C:\\` `C:\` `\`
57 * `C:\\\` `C:\` `\`
58 * `C:\usr` `C:\` `usr`
59 * `C:\usr\lib` `C:\usr` `lib`
60 * `C:\\usr\\lib\\` `C:\\usr` `lib`
61 * `C:\home\\dwc\\test` `C:\home\\dwc` `test`
2062 */
2163
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <libgen.h>
26#include <locale.h>
64struct path_info
65 {
66 /* This points to end of the UNC prefix and drive letter, if any. */
67 char* prefix_end;
2768
28#ifndef __cdecl /* If compiling on any non-Win32 platform ... */
29#define __cdecl /* this may not be defined. */
30#endif
69 /* These point to the directory separator in front of the last non-empty
70 * component. */
71 char* base_sep_begin;
72 char* base_sep_end;
3173
32char * __cdecl
33dirname(char *path)
34{
35 static char *retfail = NULL;
36 size_t len;
37 /* to handle path names for files in multibyte character locales,
38 * we need to set up LC_CTYPE to match the host file system locale. */
39 char *locale = setlocale (LC_CTYPE, NULL);
40
41 if (locale != NULL)
42 locale = strdup (locale);
43 setlocale (LC_CTYPE, "");
44
45 if (path && *path)
46 {
47 /* allocate sufficient local storage space,
48 * in which to create a wide character reference copy of path. */
49 wchar_t refcopy[1 + (len = mbstowcs (NULL, path, 0))];
50 /* create the wide character reference copy of path */
51 wchar_t *refpath = refcopy;
52
53 len = mbstowcs (refpath, path, len);
54 refcopy[len] = L'\0';
55 /* SUSv3 identifies a special case, where path is exactly equal to "//";
56 * (we will also accept "\\" in the Win32 context, but not "/\" or "\/",
57 * and neither will we consider paths with an initial drive designator).
58 * For this special case, SUSv3 allows the implementation to choose to
59 * return "/" or "//", (or "\" or "\\", since this is Win32); we will
60 * simply return the path unchanged, (i.e. "//" or "\\"). */
61 if (len > 1 && (refpath[0] == L'/' || refpath[0] == L'\\'))
62 {
63 if (refpath[1] == refpath[0] && refpath[2] == L'\0')
64 {
65 setlocale (LC_CTYPE, locale);
66 free (locale);
67 return path;
68 }
69 }
70 /* For all other cases ...
71 * step over the drive designator, if present ... */
72 else if (len > 1 && refpath[1] == L':')
73 {
74 /* FIXME: maybe should confirm *refpath is a valid drive designator. */
75 refpath += 2;
76 }
77 /* check again, just to ensure we still have a non-empty path name ... */
78 if (*refpath)
79 {
80# undef basename
81# define basename __the_basename /* avoid shadowing. */
82 /* reproduce the scanning logic of the "basename" function
83 * to locate the basename component of the current path string,
84 * (but also remember where the dirname component starts). */
85 wchar_t *refname, *basename;
86 for (refname = basename = refpath; *refpath; ++refpath)
87 {
88 if (*refpath == L'/' || *refpath == L'\\')
89 {
90 /* we found a dir separator ...
91 * step over it, and any others which immediately follow it. */
92 while (*refpath == L'/' || *refpath == L'\\')
93 ++refpath;
94 /* if we didn't reach the end of the path string ... */
95 if (*refpath)
96 /* then we have a new candidate for the base name. */
97 basename = refpath;
98 else
99 /* we struck an early termination of the path string,
100 * with trailing dir separators following the base name,
101 * so break out of the for loop, to avoid overrun. */
102 break;
103 }
104 }
105 /* now check,
106 * to confirm that we have distinct dirname and basename components. */
107 if (basename > refname)
108 {
109 /* and, when we do ...
110 * backtrack over all trailing separators on the dirname component,
111 * (but preserve exactly two initial dirname separators, if identical),
112 * and add a NUL terminator in their place. */
113 do --basename;
114 while (basename > refname && (*basename == L'/' || *basename == L'\\'));
115 if (basename == refname && (refname[0] == L'/' || refname[0] == L'\\')
116 && refname[1] == refname[0] && refname[2] != L'/' && refname[2] != L'\\')
117 ++basename;
118 *++basename = L'\0';
119 /* if the resultant dirname begins with EXACTLY two dir separators,
120 * AND both are identical, then we preserve them. */
121 refpath = refcopy;
122 while ((*refpath == L'/' || *refpath == L'\\'))
123 ++refpath;
124 if ((refpath - refcopy) > 2 || refcopy[1] != refcopy[0])
125 refpath = refcopy;
126 /* and finally ...
127 * we remove any residual, redundantly duplicated separators from the dirname,
128 * reterminate, and return it. */
129 refname = refpath;
130 while (*refpath)
131 {
132 if ((*refname++ = *refpath) == L'/' || *refpath++ == L'\\')
133 {
134 while (*refpath == L'/' || *refpath == L'\\')
135 ++refpath;
136 }
137 }
138 *refname = L'\0';
139 /* finally ...
140 * transform the resolved dirname back into the multibyte char domain,
141 * restore the caller's locale, and return the resultant dirname. */
142 if ((len = wcstombs( path, refcopy, len )) != (size_t)(-1))
143 path[len] = '\0';
144 }
145 else
146 {
147 /* either there were no dirname separators in the path name,
148 * or there was nothing else ... */
149 if (*refname == L'/' || *refname == L'\\')
150 {
151 /* it was all separators, so return one. */
152 ++refname;
153 }
154 else
155 {
156 /* there were no separators, so return '.'. */
157 *refname++ = L'.';
158 }
159 /* add a NUL terminator, in either case,
160 * then transform to the multibyte char domain,
161 * using our own buffer. */
162 *refname = L'\0';
163 retfail = realloc (retfail, len = 1 + wcstombs (NULL, refcopy, 0));
164 wcstombs (path = retfail, refcopy, len);
165 }
166 /* restore caller's locale, clean up, and return the resolved dirname. */
167 setlocale (LC_CTYPE, locale);
168 free (locale);
169 return path;
74 /* This points to the last directory separator sequence if no other
75 * non-separator characters follow it. */
76 char* term_sep_begin;
77
78 /* This points to the end of the string. */
79 char* path_end;
80 };
81
82#define IS_DIR_SEP(c) ((c) == '/' || (c) == '\\')
83
84static
85void
86do_get_path_info(struct path_info* info, char* path)
87 {
88 char* pos = path;
89 int unc_ncoms = 0;
90 DWORD cp;
91 int dbcs_tb, prev_dir_sep, dir_sep;
92
93 /* Get the code page for paths in the same way as `fopen()`. */
94 cp = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
95
96 /* Set the structure to 'no data'. */
97 info->prefix_end = NULL;
98 info->base_sep_begin = NULL;
99 info->base_sep_end = NULL;
100 info->term_sep_begin = NULL;
101
102 if(IS_DIR_SEP(pos[0]) && IS_DIR_SEP(pos[1])) {
103 /* The path is UNC. */
104 pos += 2;
105
106 /* Seek to the end of the share/device name. */
107 dbcs_tb = 0;
108 prev_dir_sep = 0;
109
110 while(*pos != 0) {
111 dir_sep = 0;
112
113 if(dbcs_tb)
114 dbcs_tb = 0;
115 else if(IsDBCSLeadByteEx(cp, *pos))
116 dbcs_tb = 1;
117 else
118 dir_sep = IS_DIR_SEP(*pos);
119
120 /* If a separator has been encountered and the previous character
121 * was not, mark this as the end of the current component. */
122 if(dir_sep && !prev_dir_sep) {
123 unc_ncoms ++;
124
125 /* The first component is the host name, and the second is the
126 * share name. So we stop at the end of the second component. */
127 if(unc_ncoms == 2)
128 break;
170129 }
171# undef basename
130
131 prev_dir_sep = dir_sep;
132 pos ++;
133 }
134
135 /* The UNC prefix terminates here. The terminating directory separator
136 * is not part of the prefix, and initiates a new absolute path. */
137 info->prefix_end = pos;
138 }
139 else if((pos[0] >= 'A' && pos[0] <= 'Z' && pos[1] == ':')
140 || (pos[0] >= 'a' && pos[0] <= 'z' && pos[1] == ':')) {
141 /* The path contains a DOS drive letter in the beginning. */
142 pos += 2;
143
144 /* The DOS drive prefix terminates here. Unlike UNC paths, the remaing
145 * part can be relative. For example, `C:foo` denotes `foo` in the
146 * working directory of drive `C:`. */
147 info->prefix_end = pos;
148 }
149
150 /* The remaining part of the path is almost the same as POSIX. */
151 dbcs_tb = 0;
152 prev_dir_sep = 0;
153
154 while(*pos != 0) {
155 dir_sep = 0;
156
157 if(dbcs_tb)
158 dbcs_tb = 0;
159 else if(IsDBCSLeadByteEx(cp, *pos))
160 dbcs_tb = 1;
161 else
162 dir_sep = IS_DIR_SEP(*pos);
163
164 /* If a separator has been encountered and the previous character
165 * was not, mark this as the beginning of the terminating separator
166 * sequence. */
167 if(dir_sep && !prev_dir_sep)
168 info->term_sep_begin = pos;
169
170 /* If a non-separator character has been encountered and a previous
171 * terminating separator sequence exists, start a new component. */
172 if(!dir_sep && prev_dir_sep) {
173 info->base_sep_begin = info->term_sep_begin;
174 info->base_sep_end = pos;
175 info->term_sep_begin = NULL;
176 }
177
178 prev_dir_sep = dir_sep;
179 pos ++;
180 }
181
182 /* Store the end of the path for convenience. */
183 info->path_end = pos;
184 }
185
186char*
187dirname(char* path)
188 {
189 struct path_info info;
190 char* upath;
191 const char* top;
192 static char* static_path_copy;
193
194 if(path == NULL || path[0] == 0)
195 return (char*) ".";
196
197 do_get_path_info(&info, path);
198 upath = info.prefix_end ? info.prefix_end : path;
199 top = (IS_DIR_SEP(path[0]) || IS_DIR_SEP(upath[0])) ? "\\" : ".";
200
201 /* If a non-terminating directory separator exists, it terminates the
202 * dirname. Truncate the path there. */
203 if(info.base_sep_begin) {
204 info.base_sep_begin[0] = 0;
205
206 /* If the unprefixed path has not been truncated to empty, it is now
207 * the dirname, so return it. */
208 if(upath[0])
209 return path;
172210 }
173 /* path is NULL, or an empty string; default return value is "." ...
174 * return this in our own buffer, regenerated by wide char transform,
175 * in case the caller trashed it after a previous call.
176 */
177 retfail = realloc (retfail, len = 1 + wcstombs (NULL, L".", 0));
178 wcstombs (retfail, L".", len);
179 /* restore caller's locale, clean up, and return the default dirname. */
180 setlocale (LC_CTYPE, locale);
181 free (locale);
182 return retfail;
183}
211
212 /* The dirname is empty. In principle we return `<prefix>.` if the
213 * path is relative and `<prefix>\` if it is absolute. This can be
214 * optimized if there is no prefix. */
215 if(upath == path)
216 return (char*) top;
217
218 /* When there is a prefix, we must append a character to the prefix.
219 * If there is enough room in the original path, we just reuse its
220 * storage. */
221 if(upath != info.path_end) {
222 upath[0] = *top;
223 upath[1] = 0;
224 return path;
225 }
226
227 /* This is only the last resort. If there is no room, we have to copy
228 * the prefix elsewhere. */
229 upath = realloc(static_path_copy, info.prefix_end - path + 2);
230 if(!upath)
231 return (char*) top;
232
233 static_path_copy = upath;
234 memcpy(upath, path, info.prefix_end - path);
235 upath += info.prefix_end - path;
236 upath[0] = *top;
237 upath[1] = 0;
238 return static_path_copy;
239 }
240
241char*
242basename(char* path)
243 {
244 struct path_info info;
245 char* upath;
246
247 if(path == NULL || path[0] == 0)
248 return (char*) ".";
249
250 do_get_path_info(&info, path);
251 upath = info.prefix_end ? info.prefix_end : path;
252
253 /* If the path is non-UNC and empty, then it's relative. POSIX says '.'
254 * shall be returned. */
255 if(IS_DIR_SEP(path[0]) == 0 && upath[0] == 0)
256 return (char*) ".";
257
258 /* If a terminating separator sequence exists, it is not part of the
259 * name and shall be truncated. */
260 if(info.term_sep_begin)
261 info.term_sep_begin[0] = 0;
262
263 /* If some other separator sequence has been found, the basename
264 * immediately follows it. */
265 if(info.base_sep_end)
266 return info.base_sep_end;
267
268 /* If removal of the terminating separator sequence has caused the
269 * unprefixed path to become empty, it must have comprised only
270 * separators. POSIX says `/` shall be returned, but on Windows, we
271 * return `\` instead. */
272 if(upath[0] == 0)
273 return (char*) "\\";
274
275 /* Return the unprefixed path. */
276 return upath;
277 }
lib/libc/mingw/misc/imaxabs.c+7-1
......@@ -16,7 +16,13 @@
1616#include <inttypes.h>
1717
1818intmax_t
19__cdecl
1920imaxabs (intmax_t _j)
2021 { return _j >= 0 ? _j : -_j; }
22intmax_t (__cdecl *__MINGW_IMP_SYMBOL(imaxabs))(intmax_t) = imaxabs;
2123
22long long __attribute__ ((alias ("imaxabs"))) llabs (long long);
24long long __attribute__ ((alias ("imaxabs"))) __cdecl llabs (long long);
25long long (__cdecl *__MINGW_IMP_SYMBOL(llabs))(long long) = llabs;
26
27__int64 __attribute__ ((alias ("imaxabs"))) __cdecl _abs64 (__int64);
28__int64 (__cdecl *__MINGW_IMP_SYMBOL(_abs64))(__int64) = _abs64;
lib/libc/mingw/misc/imaxdiv.c+4
......@@ -19,6 +19,7 @@
1919#include <stdlib.h>
2020
2121imaxdiv_t
22__cdecl
2223imaxdiv(intmax_t numer, intmax_t denom)
2324{
2425 imaxdiv_t result;
......@@ -26,6 +27,9 @@ imaxdiv(intmax_t numer, intmax_t denom)
2627 result.rem = numer % denom;
2728 return result;
2829}
30imaxdiv_t (__cdecl *__MINGW_IMP_SYMBOL(imaxdiv))(intmax_t, intmax_t) = imaxdiv;
2931
3032lldiv_t __attribute__ ((alias ("imaxdiv")))
33__cdecl
3134lldiv (long long, long long);
35lldiv_t (__cdecl *__MINGW_IMP_SYMBOL(lldiv))(long long, long long) = lldiv;
lib/libc/mingw/misc/mkstemp.c+1-1
......@@ -49,7 +49,7 @@ int __cdecl mkstemp (char *template_name)
4949 }
5050 fd = _sopen(template_name,
5151 _O_RDWR | _O_CREAT | _O_EXCL | _O_BINARY,
52 _SH_DENYRW, _S_IREAD | _S_IWRITE);
52 _SH_DENYNO, _S_IREAD | _S_IWRITE);
5353 if (fd != -1) return fd;
5454 if (fd == -1 && errno != EEXIST) return -1;
5555 }
lib/libc/mingw/misc/strtoimax.c+9
......@@ -31,6 +31,7 @@
3131#define valid(n, b) ((n) >= 0 && (n) < (b))
3232
3333intmax_t
34__cdecl
3435strtoimax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base)
3536 {
3637 register uintmax_t accum; /* accumulates converted value */
......@@ -109,6 +110,14 @@ strtoimax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base)
109110 else
110111 return (intmax_t)(minus ? -accum : accum);
111112 }
113intmax_t (__cdecl *__MINGW_IMP_SYMBOL(strtoimax))(const char* __restrict__, char ** __restrict__, int) = strtoimax;
112114
113115long long __attribute__ ((alias ("strtoimax")))
116__cdecl
114117strtoll (const char* __restrict__ nptr, char ** __restrict__ endptr, int base);
118long long (__cdecl *__MINGW_IMP_SYMBOL(strtoll))(const char* __restrict__, char ** __restrict__, int) = strtoll;
119
120__int64 __attribute__ ((alias ("strtoimax")))
121__cdecl
122_strtoi64 (const char* __restrict__ nptr, char ** __restrict__ endptr, int base);
123__int64 (__cdecl *__MINGW_IMP_SYMBOL(_strtoi64))(const char* __restrict__, char ** __restrict__, int) = _strtoi64;
lib/libc/mingw/misc/strtoumax.c+9
......@@ -31,6 +31,7 @@
3131#define valid(n, b) ((n) >= 0 && (n) < (b))
3232
3333uintmax_t
34__cdecl
3435strtoumax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base)
3536 {
3637 register uintmax_t accum; /* accumulates converted value */
......@@ -107,6 +108,14 @@ strtoumax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base)
107108 else
108109 return minus ? -accum : accum; /* (yes!) */
109110 }
111uintmax_t (__cdecl *__MINGW_IMP_SYMBOL(strtoumax))(const char* __restrict__, char ** __restrict__, int) = strtoumax;
110112
111113unsigned long long __attribute__ ((alias ("strtoumax")))
114__cdecl
112115strtoull (const char* __restrict__ nptr, char ** __restrict__ endptr, int base);
116unsigned long long (__cdecl *__MINGW_IMP_SYMBOL(strtoull))(const char* __restrict__, char ** __restrict__, int) = strtoull;
117
118unsigned __int64 __attribute__ ((alias ("strtoumax")))
119__cdecl
120_strtoui64 (const char* __restrict__ nptr, char ** __restrict__ endptr, int base);
121unsigned __int64 (__cdecl *__MINGW_IMP_SYMBOL(_strtoui64))(const char* __restrict__, char ** __restrict__, int) = _strtoui64;
lib/libc/mingw/misc/uchar_c16rtomb.c deleted-32
......@@ -1,32 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6/* ISO C1x Unicode utilities
7 * Based on ISO/IEC SC22/WG14 9899 TR 19769 (SC22 N1326)
8 *
9 * THIS SOFTWARE IS NOT COPYRIGHTED
10 *
11 * This source code is offered for use in the public domain. You may
12 * use, modify or distribute it freely.
13 *
14 * This code is distributed in the hope that it will be useful but
15 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
16 * DISCLAIMED. This includes but is not limited to warranties of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 *
19 * Date: 2011-09-27
20 */
21
22#include <errno.h>
23#include <uchar.h>
24
25size_t c16rtomb (char *__restrict__ s,
26 char16_t c16,
27 mbstate_t *__restrict__ state)
28{
29/* wchar_t should compatible to char16_t on Windows */
30 return wcrtomb(s, c16, state);
31}
32
lib/libc/mingw/misc/uchar_c32rtomb.c deleted-59
......@@ -1,59 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6/* ISO C1x Unicode utilities
7 * Based on ISO/IEC SC22/WG14 9899 TR 19769 (SC22 N1326)
8 *
9 * THIS SOFTWARE IS NOT COPYRIGHTED
10 *
11 * This source code is offered for use in the public domain. You may
12 * use, modify or distribute it freely.
13 *
14 * This code is distributed in the hope that it will be useful but
15 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
16 * DISCLAIMED. This includes but is not limited to warranties of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 *
19 * Date: 2011-09-27
20 */
21
22#include <errno.h>
23#include <uchar.h>
24
25size_t c32rtomb (char *__restrict__ s,
26 char32_t c32,
27 mbstate_t *__restrict__ __UNUSED_PARAM(ps))
28{
29 if (c32 <= 0x7F) /* 7 bits needs 1 byte */
30 {
31 *s = (char)c32 & 0x7F;
32 return 1;
33 }
34 else if (c32 <= 0x7FF) /* 11 bits needs 2 bytes */
35 {
36 s[1] = 0x80 | (char)(c32 & 0x3F);
37 s[0] = 0xC0 | (char)(c32 >> 6);
38 return 2;
39 }
40 else if (c32 <= 0xFFFF) /* 16 bits needs 3 bytes */
41 {
42 s[2] = 0x80 | (char)(c32 & 0x3F);
43 s[1] = 0x80 | (char)((c32 >> 6) & 0x3F);
44 s[0] = 0xE0 | (char)(c32 >> 12);
45 return 3;
46 }
47 else if (c32 <= 0x1FFFFF) /* 21 bits needs 4 bytes */
48 {
49 s[3] = 0x80 | (char)(c32 & 0x3F);
50 s[2] = 0x80 | (char)((c32 >> 6) & 0x3F);
51 s[1] = 0x80 | (char)((c32 >> 12) & 0x3F);
52 s[0] = 0xF0 | (char)(c32 >> 18);
53 return 4;
54 }
55
56 errno = EILSEQ;
57 return (size_t)-1;
58}
59
lib/libc/mingw/misc/uchar_mbrtoc16.c deleted-33
......@@ -1,33 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6/* ISO C1x Unicode utilities
7 * Based on ISO/IEC SC22/WG14 9899 TR 19769 (SC22 N1326)
8 *
9 * THIS SOFTWARE IS NOT COPYRIGHTED
10 *
11 * This source code is offered for use in the public domain. You may
12 * use, modify or distribute it freely.
13 *
14 * This code is distributed in the hope that it will be useful but
15 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
16 * DISCLAIMED. This includes but is not limited to warranties of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 *
19 * Date: 2011-09-27
20 */
21
22#include <errno.h>
23#include <uchar.h>
24
25size_t mbrtoc16 (char16_t *__restrict__ pc16,
26 const char *__restrict__ s,
27 size_t n,
28 mbstate_t *__restrict__ state)
29{
30/* wchar_t should compatible to char16_t on Windows */
31 return mbrtowc((wchar_t *)pc16, s, n, state);
32}
33
lib/libc/mingw/misc/uchar_mbrtoc32.c deleted-72
......@@ -1,72 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6/* ISO C1x Unicode utilities
7 * Based on ISO/IEC SC22/WG14 9899 TR 19769 (SC22 N1326)
8 *
9 * THIS SOFTWARE IS NOT COPYRIGHTED
10 *
11 * This source code is offered for use in the public domain. You may
12 * use, modify or distribute it freely.
13 *
14 * This code is distributed in the hope that it will be useful but
15 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
16 * DISCLAIMED. This includes but is not limited to warranties of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 *
19 * Date: 2011-09-27
20 */
21
22#include <errno.h>
23#include <uchar.h>
24
25size_t mbrtoc32 (char32_t *__restrict__ pc32,
26 const char *__restrict__ s,
27 size_t n,
28 mbstate_t *__restrict__ __UNUSED_PARAM(ps))
29{
30 if (*s == 0)
31 {
32 *pc32 = 0;
33 return 0;
34 }
35
36 /* ASCII character - high bit unset */
37 if ((*s & 0x80) == 0)
38 {
39 *pc32 = *s;
40 return 1;
41 }
42
43 /* Multibyte chars */
44 if ((*s & 0xE0) == 0xC0) /* 110xxxxx needs 2 bytes */
45 {
46 if (n < 2)
47 return (size_t)-2;
48
49 *pc32 = ((s[0] & 31) << 6) | (s[1] & 63);
50 return 2;
51 }
52 else if ((*s & 0xf0) == 0xE0) /* 1110xxxx needs 3 bytes */
53 {
54 if (n < 3)
55 return (size_t)-2;
56
57 *pc32 = ((s[0] & 15) << 12) | ((s[1] & 63) << 6) | (s[2] & 63);
58 return 3;
59 }
60 else if ((*s & 0xF8) == 0xF0) /* 11110xxx needs 4 bytes */
61 {
62 if (n < 4)
63 return (size_t)-2;
64
65 *pc32 = ((s[0] & 7) << 18) | ((s[1] & 63) << 12) | ((s[2] & 63) << 6) | (s[4] & 63);
66 return 4;
67 }
68
69 errno = EILSEQ;
70 return (size_t)-1;
71}
72
lib/libc/mingw/secapi/rand_s.c+6
......@@ -16,6 +16,12 @@ static errno_t __cdecl init_rand_s(unsigned int*);
1616
1717errno_t (__cdecl *__MINGW_IMP_SYMBOL(rand_s))(unsigned int*) = init_rand_s;
1818
19errno_t __cdecl
20rand_s(unsigned int *val)
21{
22 return __MINGW_IMP_SYMBOL(rand_s)(val);
23}
24
1925static errno_t __cdecl init_rand_s(unsigned int *val)
2026{
2127 int (__cdecl *func)(unsigned int*);
lib/libc/mingw/secapi/strerror_s.c+3-1
......@@ -19,8 +19,10 @@ _stub (char *buffer, size_t numberOfElements, int errnum)
1919 f = (errno_t __cdecl (*)(char *, size_t, int))
2020 GetProcAddress (__mingw_get_msvcrt_handle (), "strerror_s");
2121 if (!f)
22 {
2223 f = _int_strerror_s;
23 __MINGW_IMP_SYMBOL(strerror_s) = f;
24 }
25 __MINGW_IMP_SYMBOL(strerror_s) = f;
2426 }
2527 return (*f)(buffer, numberOfElements, errnum);
2628}
lib/libc/mingw/stdio/_vscprintf.c+1-1
......@@ -15,7 +15,7 @@ static int __cdecl emu_vscprintf(const char * __restrict__ format, va_list argli
1515{
1616 char *buffer, *new_buffer;
1717 size_t size;
18 int ret;
18 int ret = -1;
1919
2020 /* if format is a null pointer, _vscprintf() returns -1 and sets errno to EINVAL */
2121 if (!format) {
lib/libc/mingw/stdio/atoll.c+5-2
......@@ -6,5 +6,8 @@
66#define __CRT__NO_INLINE
77#include <stdlib.h>
88
9long long atoll (const char * _c)
10 { return _atoi64 (_c); }
9long long __cdecl atoll(const char * nptr) { return strtoll(nptr, NULL, 10); }
10long long (__cdecl *__MINGW_IMP_SYMBOL(atoll))(const char *) = atoll;
11
12__int64 __attribute__((alias("atoll"))) __cdecl _atoi64(const char * nptr);
13__int64 (__cdecl *__MINGW_IMP_SYMBOL(_atoi64))(const char *) = _atoi64;
lib/libc/mingw/stdio/mingw_asprintf.c deleted-32
......@@ -1,32 +0,0 @@
1#define _GNU_SOURCE
2#define __CRT__NO_INLINE
3
4#include <stdio.h>
5#include <stdlib.h>
6#include <stdarg.h>
7
8int __mingw_asprintf(char ** __restrict__ ret,
9 const char * __restrict__ format,
10 ...) {
11 va_list ap;
12 int len;
13 va_start(ap,format);
14 /* Get Length */
15 len = __mingw_vsnprintf(NULL,0,format,ap);
16 if (len < 0) goto _end;
17 /* +1 for \0 terminator. */
18 *ret = malloc(len + 1);
19 /* Check malloc fail*/
20 if (!*ret) {
21 len = -1;
22 goto _end;
23 }
24 /* Write String */
25 __mingw_vsnprintf(*ret,len+1,format,ap);
26 /* Terminate explicitly */
27 (*ret)[len] = '\0';
28 _end:
29 va_end(ap);
30 return len;
31}
32
lib/libc/mingw/stdio/mingw_fprintf.c deleted-58
......@@ -1,58 +0,0 @@
1/* fprintf.c
2 *
3 * $Id: fprintf.c,v 1.1 2008/08/11 22:41:55 keithmarshall Exp $
4 *
5 * Provides an implementation of the "fprintf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, whence it may replace the Microsoft
9 * function of the same name.
10 *
11 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
12 *
13 * This implementation of "fprintf" will normally be invoked by calling
14 * "__mingw_fprintf()" in preference to a direct reference to "fprintf()"
15 * itself; this leaves the MSVCRT implementation as the default, which
16 * will be deployed when user code invokes "fprint()". Users who then
17 * wish to use this implementation may either call "__mingw_fprintf()"
18 * directly, or may use conditional preprocessor defines, to redirect
19 * references to "fprintf()" to "__mingw_fprintf()".
20 *
21 * Compiling this module with "-D INSTALL_AS_DEFAULT" will change this
22 * recommended convention, such that references to "fprintf()" in user
23 * code will ALWAYS be redirected to "__mingw_fprintf()"; if this option
24 * is adopted, then users wishing to use the MSVCRT implementation of
25 * "fprintf()" will be forced to use a "back-door" mechanism to do so.
26 * Such a "back-door" mechanism is provided with MinGW, allowing the
27 * MSVCRT implementation to be called as "__msvcrt_fprintf()"; however,
28 * since users may not expect this behaviour, a standard libmingwex.a
29 * installation does not employ this option.
30 *
31 *
32 * This is free software. You may redistribute and/or modify it as you
33 * see fit, without restriction of copyright.
34 *
35 * This software is provided "as is", in the hope that it may be useful,
36 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
37 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
38 * time will the author accept any form of liability for any damages,
39 * however caused, resulting from the use of this software.
40 *
41 */
42#include <stdio.h>
43#include <stdarg.h>
44
45#include "mingw_pformat.h"
46
47int __cdecl __fprintf (FILE *, const APICHAR *, ...) __MINGW_NOTHROW;
48
49int __cdecl __fprintf(FILE *stream, const APICHAR *fmt, ...)
50{
51 register int retval;
52 va_list argv; va_start( argv, fmt );
53 _lock_file( stream );
54 retval = __pformat( PFORMAT_TO_FILE | PFORMAT_NOLIMIT, stream, 0, fmt, argv );
55 _unlock_file( stream );
56 va_end( argv );
57 return retval;
58}
lib/libc/mingw/stdio/mingw_fprintfw.c deleted-9
......@@ -1,9 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7
8#include "mingw_fprintf.c"
9
lib/libc/mingw/stdio/mingw_fscanf.c deleted-21
......@@ -1,21 +0,0 @@
1#include <stdarg.h>
2#include <stdio.h>
3#include <stdlib.h>
4
5extern int __mingw_vfscanf (FILE *stream, const char *format, va_list argp);
6
7int __mingw_fscanf (FILE *stream, const char *format, ...);
8
9int
10__mingw_fscanf (FILE *stream, const char *format, ...)
11{
12 va_list argp;
13 int r;
14
15 va_start (argp, format);
16 r = __mingw_vfscanf (stream, format, argp);
17 va_end (argp);
18
19 return r;
20}
21
lib/libc/mingw/stdio/mingw_fwscanf.c deleted-21
......@@ -1,21 +0,0 @@
1#include <stdarg.h>
2#include <stdio.h>
3#include <stdlib.h>
4
5extern int __mingw_vfwscanf (FILE *stream, const wchar_t *format, va_list argp);
6
7int __mingw_fwscanf (FILE *stream, const wchar_t *format, ...);
8
9int
10__mingw_fwscanf (FILE *stream, const wchar_t *format, ...)
11{
12 va_list argp;
13 int r;
14
15 va_start (argp, format);
16 r = __mingw_vfwscanf (stream, format, argp);
17 va_end (argp);
18
19 return r;
20}
21
lib/libc/mingw/stdio/mingw_lock.c deleted-102
......@@ -1,102 +0,0 @@
1#define _CRTIMP
2#include <stdio.h>
3#include <synchapi.h>
4#include "internal.h"
5
6/***
7 * Copy of MS functions _lock_file, _unlock_file which are missing from
8 * msvcrt.dll and msvcr80.dll. They are needed to atomic/lock stdio
9 * functions (printf, fprintf, vprintf, vfprintf). We need exactly the same
10 * lock that MS uses in msvcrt.dll because we can mix mingw-w64 code with
11 * original MS functions (puts, fputs for example).
12***/
13
14
15_CRTIMP void __cdecl _lock(int locknum);
16_CRTIMP void __cdecl _unlock(int locknum);
17#define _STREAM_LOCKS 16
18#define _IOLOCKED 0x8000
19
20
21/***
22* _lock_file - Lock a FILE
23*
24*Purpose:
25* Assert the lock for a stdio-level file
26*
27*Entry:
28* pf = __piob[] entry (pointer to a FILE or _FILEX)
29*
30*Exit:
31*
32*Exceptions:
33*
34*******************************************************************************/
35
36void __cdecl _lock_file( FILE *pf )
37{
38 /*
39 * The way the FILE (pointed to by pf) is locked depends on whether
40 * it is part of _iob[] or not
41 */
42 if ( (pf >= __acrt_iob_func(0)) && (pf <= __acrt_iob_func(_IOB_ENTRIES-1)) )
43 {
44 /*
45 * FILE lies in _iob[] so the lock lies in _locktable[].
46 */
47 _lock( _STREAM_LOCKS + (int)(pf - __acrt_iob_func(0)) );
48 /* We set _IOLOCKED to indicate we locked the stream */
49 pf->_flag |= _IOLOCKED;
50 }
51 else
52 /*
53 * Not part of _iob[]. Therefore, *pf is a _FILEX and the
54 * lock field of the struct is an initialized critical
55 * section.
56 */
57 EnterCriticalSection( &(((_FILEX *)pf)->lock) );
58}
59
60void *__MINGW_IMP_SYMBOL(_lock_file) = _lock_file;
61
62
63/***
64* _unlock_file - Unlock a FILE
65*
66*Purpose:
67* Release the lock for a stdio-level file
68*
69*Entry:
70* pf = __piob[] entry (pointer to a FILE or _FILEX)
71*
72*Exit:
73*
74*Exceptions:
75*
76*******************************************************************************/
77
78void __cdecl _unlock_file( FILE *pf )
79{
80 /*
81 * The way the FILE (pointed to by pf) is unlocked depends on whether
82 * it is part of _iob[] or not
83 */
84 if ( (pf >= __acrt_iob_func(0)) && (pf <= __acrt_iob_func(_IOB_ENTRIES-1)) )
85 {
86 /*
87 * FILE lies in _iob[] so the lock lies in _locktable[].
88 * We reset _IOLOCKED to indicate we unlock the stream.
89 */
90 pf->_flag &= ~_IOLOCKED;
91 _unlock( _STREAM_LOCKS + (int)(pf - __acrt_iob_func(0)) );
92 }
93 else
94 /*
95 * Not part of _iob[]. Therefore, *pf is a _FILEX and the
96 * lock field of the struct is an initialized critical
97 * section.
98 */
99 LeaveCriticalSection( &(((_FILEX *)pf)->lock) );
100}
101
102void *__MINGW_IMP_SYMBOL(_unlock_file) = _unlock_file;
lib/libc/mingw/stdio/mingw_pformat.c deleted-3298
......@@ -1,3298 +0,0 @@
1/* pformat.c
2 *
3 * $Id: pformat.c,v 1.9 2011/01/07 22:57:00 keithmarshall Exp $
4 *
5 * Provides a core implementation of the formatting capabilities
6 * common to the entire `printf()' family of functions; it conforms
7 * generally to C99 and SUSv3/POSIX specifications, with extensions
8 * to support Microsoft's non-standard format specifications.
9 *
10 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
11 *
12 * This is free software. You may redistribute and/or modify it as you
13 * see fit, without restriction of copyright.
14 *
15 * This software is provided "as is", in the hope that it may be useful,
16 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
17 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
18 * time will the author accept any form of liability for any damages,
19 * however caused, resulting from the use of this software.
20 *
21 * The elements of this implementation which deal with the formatting
22 * of floating point numbers, (i.e. the `%e', `%E', `%f', `%F', `%g'
23 * and `%G' format specifiers, but excluding the hexadecimal floating
24 * point `%a' and `%A' specifiers), make use of the `__gdtoa' function
25 * written by David M. Gay, and are modelled on his sample code, which
26 * has been deployed under its accompanying terms of use:--
27 *
28 ******************************************************************
29 * Copyright (C) 1997, 1999, 2001 Lucent Technologies
30 * All Rights Reserved
31 *
32 * Permission to use, copy, modify, and distribute this software and
33 * its documentation for any purpose and without fee is hereby
34 * granted, provided that the above copyright notice appear in all
35 * copies and that both that the copyright notice and this
36 * permission notice and warranty disclaimer appear in supporting
37 * documentation, and that the name of Lucent or any of its entities
38 * not be used in advertising or publicity pertaining to
39 * distribution of the software without specific, written prior
40 * permission.
41 *
42 * LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
43 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
44 * IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
45 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
46 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
47 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
48 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
49 * THIS SOFTWARE.
50 ******************************************************************
51 *
52 */
53
54#define __LARGE_MBSTATE_T
55
56#ifdef HAVE_CONFIG_H
57#include "config.h"
58#endif
59
60#include <stdio.h>
61#include <stdarg.h>
62#include <stddef.h>
63#include <stdint.h>
64#include <stdlib.h>
65#include <string.h>
66#include <limits.h>
67#include <locale.h>
68#include <wchar.h>
69
70#ifdef __ENABLE_DFP
71#ifndef __STDC_WANT_DEC_FP__
72#define __STDC_WANT_DEC_FP__ 1
73#endif
74
75#include "../math/DFP/dfp_internal.h"
76#endif /* __ENABLE_DFP */
77
78#include <math.h>
79
80/* FIXME: The following belongs in values.h, but current MinGW
81 * has nothing useful there! OTOH, values.h is not a standard
82 * header, and its use may be considered obsolete; perhaps it
83 * is better to just keep these definitions here.
84 */
85
86#include <pshpack1.h>
87/* workaround gcc bug */
88#if defined(__GNUC__) && !defined(__clang__)
89#define ATTRIB_GCC_STRUCT __attribute__((gcc_struct))
90#else
91#define ATTRIB_GCC_STRUCT
92#endif
93typedef struct ATTRIB_GCC_STRUCT __tI128 {
94 int64_t digits[2];
95} __tI128;
96
97typedef struct ATTRIB_GCC_STRUCT __tI128_2 {
98 uint32_t digits32[4];
99} __tI128_2;
100
101typedef union ATTRIB_GCC_STRUCT __uI128 {
102 __tI128 t128;
103 __tI128_2 t128_2;
104} __uI128;
105#include <poppack.h>
106
107#ifndef _VALUES_H
108/*
109 * values.h
110 *
111 */
112#define _VALUES_H
113
114#include <limits.h>
115
116#define _TYPEBITS(type) (sizeof(type) * CHAR_BIT)
117
118#if defined(__ENABLE_PRINTF128) || defined(__ENABLE_DFP)
119#define LLONGBITS _TYPEBITS(__tI128)
120#else
121#define LLONGBITS _TYPEBITS(long long)
122#endif
123
124#endif /* !defined _VALUES_H -- end of file */
125
126#include "mingw_pformat.h"
127
128/* Bit-map constants, defining the internal format control
129 * states, which propagate through the flags.
130 */
131#define PFORMAT_GROUPED 0x00001000
132#define PFORMAT_HASHED 0x00000800
133#define PFORMAT_LJUSTIFY 0x00000400
134#define PFORMAT_ZEROFILL 0x00000200
135
136#define PFORMAT_JUSTIFY (PFORMAT_LJUSTIFY | PFORMAT_ZEROFILL)
137#define PFORMAT_IGNORE -1
138
139#define PFORMAT_SIGNED 0x000001C0
140#define PFORMAT_POSITIVE 0x00000100
141#define PFORMAT_NEGATIVE 0x00000080
142#define PFORMAT_ADDSPACE 0x00000040
143
144#define PFORMAT_XCASE 0x00000020
145
146#define PFORMAT_LDOUBLE 0x00000004
147
148#ifdef __ENABLE_DFP
149#define PFORMAT_DECIM32 0x00020000
150#define PFORMAT_DECIM64 0x00040000
151#define PFORMAT_DECIM128 0x00080000
152#endif
153
154/* `%o' format digit extraction mask, and shift count...
155 * (These are constant, and do not propagate through the flags).
156 */
157#define PFORMAT_OMASK 0x00000007
158#define PFORMAT_OSHIFT 0x00000003
159
160/* `%x' and `%X' format digit extraction mask, and shift count...
161 * (These are constant, and do not propagate through the flags).
162 */
163#define PFORMAT_XMASK 0x0000000F
164#define PFORMAT_XSHIFT 0x00000004
165
166/* The radix point character, used in floating point formats, is
167 * localised on the basis of the active LC_NUMERIC locale category.
168 * It is stored locally, as a `wchar_t' entity, which is converted
169 * to a (possibly multibyte) character on output. Initialisation
170 * of the stored `wchar_t' entity, together with a record of its
171 * effective multibyte character length, is required each time
172 * `__pformat()' is entered, (static storage would not be thread
173 * safe), but this initialisation is deferred until it is actually
174 * needed; on entry, the effective character length is first set to
175 * the following value, (and the `wchar_t' entity is zeroed), to
176 * indicate that a call of `localeconv()' is needed, to complete
177 * the initialisation.
178 */
179#define PFORMAT_RPINIT -3
180
181/* The floating point format handlers return the following value
182 * for the radix point position index, when the argument value is
183 * infinite, or not a number.
184 */
185#define PFORMAT_INFNAN -32768
186
187typedef union
188{
189 /* A data type agnostic representation,
190 * for printf arguments of any integral data type...
191 */
192 signed long __pformat_long_t;
193 signed long long __pformat_llong_t;
194 unsigned long __pformat_ulong_t;
195 unsigned long long __pformat_ullong_t;
196 unsigned short __pformat_ushort_t;
197 unsigned char __pformat_uchar_t;
198 signed short __pformat_short_t;
199 signed char __pformat_char_t;
200 void * __pformat_ptr_t;
201 __uI128 __pformat_u128_t;
202} __pformat_intarg_t;
203
204typedef enum
205{
206 /* Format interpreter state indices...
207 * (used to identify the active phase of format string parsing).
208 */
209 PFORMAT_INIT = 0,
210 PFORMAT_SET_WIDTH,
211 PFORMAT_GET_PRECISION,
212 PFORMAT_SET_PRECISION,
213 PFORMAT_END
214} __pformat_state_t;
215
216typedef enum
217{
218 /* Argument length classification indices...
219 * (used for arguments representing integer data types).
220 */
221 PFORMAT_LENGTH_INT = 0,
222 PFORMAT_LENGTH_SHORT,
223 PFORMAT_LENGTH_LONG,
224 PFORMAT_LENGTH_LLONG,
225 PFORMAT_LENGTH_LLONG128,
226 PFORMAT_LENGTH_CHAR
227} __pformat_length_t;
228/*
229 * And a macro to map any arbitrary data type to an appropriate
230 * matching index, selected from those above; the compiler should
231 * collapse this to a simple assignment.
232 */
233
234#ifdef __GNUC__
235/* provides for some deadcode elimination via compile time eval */
236#define __pformat_arg_length(x) \
237__builtin_choose_expr ( \
238 __builtin_types_compatible_p (typeof (x), __tI128), \
239 PFORMAT_LENGTH_LLONG128, \
240 __builtin_choose_expr ( \
241 __builtin_types_compatible_p (typeof (x), long long), \
242 PFORMAT_LENGTH_LLONG, \
243 __builtin_choose_expr ( \
244 __builtin_types_compatible_p (typeof (x), long), \
245 PFORMAT_LENGTH_LONG, \
246 __builtin_choose_expr ( \
247 __builtin_types_compatible_p (typeof (x), short), \
248 PFORMAT_LENGTH_SHORT, \
249 __builtin_choose_expr ( \
250 __builtin_types_compatible_p (typeof (x), char), \
251 PFORMAT_LENGTH_CHAR, \
252 __builtin_choose_expr ( \
253 __builtin_types_compatible_p (typeof (x), __uI128), \
254 PFORMAT_LENGTH_LLONG128, \
255 __builtin_choose_expr ( \
256 __builtin_types_compatible_p (typeof (x), unsigned long), \
257 PFORMAT_LENGTH_LONG, \
258 __builtin_choose_expr ( \
259 __builtin_types_compatible_p (typeof (x), unsigned long long), \
260 PFORMAT_LENGTH_LLONG, \
261 __builtin_choose_expr ( \
262 __builtin_types_compatible_p (typeof (x), unsigned short), \
263 PFORMAT_LENGTH_SHORT, \
264 __builtin_choose_expr ( \
265 __builtin_types_compatible_p (typeof (x), unsigned char), \
266 PFORMAT_LENGTH_CHAR, \
267 PFORMAT_LENGTH_INT))))))))))
268
269#else
270#define __pformat_arg_length( type ) \
271 sizeof( type ) == sizeof( __tI128 ) ? PFORMAT_LENGTH_LLONG128 : \
272 sizeof( type ) == sizeof( long long ) ? PFORMAT_LENGTH_LLONG : \
273 sizeof( type ) == sizeof( long ) ? PFORMAT_LENGTH_LONG : \
274 sizeof( type ) == sizeof( short ) ? PFORMAT_LENGTH_SHORT : \
275 sizeof( type ) == sizeof( char ) ? PFORMAT_LENGTH_CHAR : \
276 /* should never need this default */ PFORMAT_LENGTH_INT
277#endif
278
279typedef struct
280{
281 /* Formatting and output control data...
282 * An instance of this control block is created, (on the stack),
283 * for each call to `__pformat()', and is passed by reference to
284 * each of the output handlers, as required.
285 */
286 void * dest;
287 int flags;
288 int width;
289 int precision;
290 int rplen;
291 wchar_t rpchr;
292 int thousands_chr_len;
293 wchar_t thousands_chr;
294 int count;
295 int quota;
296 int expmin;
297} __pformat_t;
298
299#if defined(__ENABLE_PRINTF128) || defined(__ENABLE_DFP)
300/* trim leading, leave at least n characters */
301static char * __bigint_trim_leading_zeroes(char *in, int n){
302 char *src = in;
303 int len = strlen(in);
304 while( len > n && *++src == '0') len--;
305
306 /* we want to null terminator too */
307 memmove(in, src, strlen(src) + 1);
308 return in;
309}
310
311/* LSB first */
312static
313void __bigint_to_string(const uint32_t *digits, const uint32_t digitlen, char *buff, const uint32_t bufflen){
314 int64_t digitsize = sizeof(*digits) * 8;
315 int64_t shiftpos = digitlen * digitsize - 1;
316 memset(buff, 0, bufflen);
317
318 while(shiftpos >= 0) {
319 /* increment */
320 for(uint32_t i = 0; i < bufflen - 1; i++){
321 buff[i] += (buff[i] > 4) ? 3 : 0;
322 }
323
324 /* shift left */
325 for(uint32_t i = 0; i < bufflen - 1; i++)
326 buff[i] <<= 1;
327
328 /* shift in */
329 buff[bufflen - 2] |= digits[shiftpos / digitsize] & (0x1 << (shiftpos % digitsize)) ? 1 : 0;
330
331 /* overflow check */
332 for(uint32_t i = bufflen - 1; i > 0; i--){
333 buff[i - 1] |= (buff[i] > 0xf);
334 buff[i] &= 0x0f;
335 }
336 shiftpos--;
337 }
338
339 for(uint32_t i = 0; i < bufflen - 1; i++){
340 buff[i] += '0';
341 }
342 buff[bufflen - 1] = '\0';
343}
344
345#if defined(__ENABLE_PRINTF128)
346/* LSB first, hex version */
347static
348void __bigint_to_stringx(const uint32_t *digits, const uint32_t digitlen, char *buff, const uint32_t bufflen, int upper){
349 int32_t stride = sizeof(*digits) * 2;
350 uint32_t lastpos = 0;
351
352 for(uint32_t i = 0; i < digitlen * stride; i++){
353 int32_t buffpos = bufflen - i - 2;
354 buff[buffpos] = (digits[ i / stride ] & (0xf << 4 * (i % stride))) >> ( 4 * (i % stride));
355 buff[buffpos] += (buff[buffpos] > 9) ? ((upper) ? 0x7 : 0x27) : 0;
356 buff[buffpos] += '0';
357 lastpos = buffpos;
358 if(buffpos == 0) break; /* sanity check */
359 }
360 memset(buff, '0', lastpos);
361 buff[bufflen - 1] = '\0';
362}
363
364/* LSB first, octet version */
365static
366void __bigint_to_stringo(const uint32_t *digits, const uint32_t digitlen, char *buff, const uint32_t bufflen){
367 const uint32_t digitsize = sizeof(*digits) * 8;
368 const uint64_t bits = digitsize * digitlen;
369 uint32_t pos = bufflen - 2;
370 uint32_t reg = 0;
371 for(uint32_t i = 0; i <= bits; i++){
372 reg |= (digits[ i / digitsize] & (0x1 << (i % digitsize))) ? 1 << (i % 3) : 0;
373 if( (i && ( i + 1) % 3 == 0) || (i + 1) == bits){ /* make sure all is committed after last bit */
374 buff[pos] = '0' + reg;
375 reg = 0;
376 if(!pos) break; /* sanity check */
377 pos--;
378 }
379 }
380 if(pos < bufflen - 1)
381 memset(buff,'0', pos + 1);
382 buff[bufflen - 1] = '\0';
383}
384#endif /* defined(__ENABLE_PRINTF128) */
385#endif /* defined(__ENABLE_PRINTF128) || defined(__ENABLE_DFP) */
386
387static
388void __pformat_putc( int c, __pformat_t *stream )
389{
390 /* Place a single character into the `__pformat()' output queue,
391 * provided any specified output quota has not been exceeded.
392 */
393 if( (stream->flags & PFORMAT_NOLIMIT) || (stream->quota > stream->count) )
394 {
395 /* Either there was no quota specified,
396 * or the active quota has not yet been reached.
397 */
398 if( stream->flags & PFORMAT_TO_FILE )
399 /*
400 * This is single character output to a FILE stream...
401 */
402 __fputc(c, (FILE *)(stream->dest));
403
404 else
405 /* Whereas, this is to an internal memory buffer...
406 */
407 ((APICHAR *)(stream->dest))[stream->count] = c;
408 }
409 ++stream->count;
410}
411
412static
413void __pformat_putchars( const char *s, int count, __pformat_t *stream )
414{
415#ifndef __BUILD_WIDEAPI
416 /* Handler for `%c' and (indirectly) `%s' conversion specifications.
417 *
418 * Transfer characters from the string buffer at `s', character by
419 * character, up to the number of characters specified by `count', or
420 * if `precision' has been explicitly set to a value less than `count',
421 * stopping after the number of characters specified for `precision',
422 * to the `__pformat()' output stream.
423 *
424 * Characters to be emitted are passed through `__pformat_putc()', to
425 * ensure that any specified output quota is honoured.
426 */
427 if( (stream->precision >= 0) && (count > stream->precision) )
428 /*
429 * Ensure that the maximum number of characters transferred doesn't
430 * exceed any explicitly set `precision' specification.
431 */
432 count = stream->precision;
433
434 /* Establish the width of any field padding required...
435 */
436 if( stream->width > count )
437 /*
438 * as the number of spaces equivalent to the number of characters
439 * by which those to be emitted is fewer than the field width...
440 */
441 stream->width -= count;
442
443 else
444 /* ignoring any width specification which is insufficient.
445 */
446 stream->width = PFORMAT_IGNORE;
447
448 if( (stream->width > 0) && ((stream->flags & PFORMAT_LJUSTIFY) == 0) )
449 /*
450 * When not doing flush left justification, (i.e. the `-' flag
451 * is not set), any residual unreserved field width must appear
452 * as blank padding, to the left of the output string.
453 */
454 while( stream->width-- )
455 __pformat_putc( '\x20', stream );
456
457 /* Emit the data...
458 */
459 while( count-- )
460 /*
461 * copying the requisite number of characters from the input.
462 */
463 __pformat_putc( *s++, stream );
464
465 /* If we still haven't consumed the entire specified field width,
466 * we must be doing flush left justification; any residual width
467 * must be filled with blanks, to the right of the output value.
468 */
469 while( stream->width-- > 0 )
470 __pformat_putc( '\x20', stream );
471
472#else /* __BUILD_WIDEAPI */
473
474 int len;
475
476 if( (stream->precision >= 0) && (count > stream->precision) )
477 count = stream->precision;
478
479 if( (stream->flags & PFORMAT_TO_FILE) && (stream->flags & PFORMAT_NOLIMIT) )
480 {
481 int __cdecl __ms_fwprintf(FILE *, const wchar_t *, ...);
482
483 if( stream->width > count )
484 {
485 if( (stream->flags & PFORMAT_LJUSTIFY) == 0 )
486 len = __ms_fwprintf( (FILE *)(stream->dest), L"%*.*S", stream->width, count, s );
487 else
488 len = __ms_fwprintf( (FILE *)(stream->dest), L"%-*.*S", stream->width, count, s );
489 }
490 else
491 {
492 len = __ms_fwprintf( (FILE *)(stream->dest), L"%.*S", count, s );
493 }
494 if( len > 0 )
495 stream->count += len;
496 stream->width = PFORMAT_IGNORE;
497 return;
498 }
499
500 if( stream->width > count )
501 stream->width -= count;
502 else
503 stream->width = PFORMAT_IGNORE;
504
505 if( (stream->width > 0) && ((stream->flags & PFORMAT_LJUSTIFY) == 0) )
506 while( stream->width-- )
507 __pformat_putc( '\x20', stream );
508
509 {
510 /* mbrtowc */
511 size_t l;
512 wchar_t w[12], *p;
513 while( count > 0 )
514 {
515 mbstate_t ps;
516 memset(&ps, 0, sizeof(ps) );
517 --count;
518 p = &w[0];
519 l = mbrtowc (p, s, strlen (s), &ps);
520 if (!l)
521 break;
522 if ((ssize_t)l < 0)
523 {
524 l = 1;
525 w[0] = (wchar_t) *s;
526 }
527 s += l;
528 __pformat_putc((int)w[0], stream);
529 }
530 }
531
532 while( stream->width-- > 0 )
533 __pformat_putc( '\x20', stream );
534
535#endif /* __BUILD_WIDEAPI */
536}
537
538static
539void __pformat_puts( const char *s, __pformat_t *stream )
540{
541 /* Handler for `%s' conversion specifications.
542 *
543 * Transfer a NUL terminated character string, character by character,
544 * stopping when the end of the string is encountered, or if `precision'
545 * has been explicitly set, when the specified number of characters has
546 * been emitted, if that is less than the length of the input string,
547 * to the `__pformat()' output stream.
548 *
549 * This is implemented as a trivial call to `__pformat_putchars()',
550 * passing the length of the input string as the character count,
551 * (after first verifying that the input pointer is not NULL).
552 */
553 if( s == NULL ) s = "(null)";
554
555 if( stream->precision >= 0 )
556 __pformat_putchars( s, strnlen( s, stream->precision ), stream );
557 else
558 __pformat_putchars( s, strlen( s ), stream );
559}
560
561static
562void __pformat_wputchars( const wchar_t *s, int count, __pformat_t *stream )
563{
564#ifndef __BUILD_WIDEAPI
565 /* Handler for `%C'(`%lc') and `%S'(`%ls') conversion specifications;
566 * (this is a wide character variant of `__pformat_putchars()').
567 *
568 * Each multibyte character sequence to be emitted is passed, byte
569 * by byte, through `__pformat_putc()', to ensure that any specified
570 * output quota is honoured.
571 */
572 char buf[16];
573 mbstate_t state;
574 int len = wcrtomb(buf, L'\0', &state);
575
576 if( (stream->precision >= 0) && (count > stream->precision) )
577 /*
578 * Ensure that the maximum number of characters transferred doesn't
579 * exceed any explicitly set `precision' specification.
580 */
581 count = stream->precision;
582
583 /* Establish the width of any field padding required...
584 */
585 if( stream->width > count )
586 /*
587 * as the number of spaces equivalent to the number of characters
588 * by which those to be emitted is fewer than the field width...
589 */
590 stream->width -= count;
591
592 else
593 /* ignoring any width specification which is insufficient.
594 */
595 stream->width = PFORMAT_IGNORE;
596
597 if( (stream->width > 0) && ((stream->flags & PFORMAT_LJUSTIFY) == 0) )
598 /*
599 * When not doing flush left justification, (i.e. the `-' flag
600 * is not set), any residual unreserved field width must appear
601 * as blank padding, to the left of the output string.
602 */
603 while( stream->width-- )
604 __pformat_putc( '\x20', stream );
605
606 /* Emit the data, converting each character from the wide
607 * to the multibyte domain as we go...
608 */
609 while( (count-- > 0) && ((len = wcrtomb( buf, *s++, &state )) > 0) )
610 {
611 char *p = buf;
612 while( len-- > 0 )
613 __pformat_putc( *p++, stream );
614 }
615
616 /* If we still haven't consumed the entire specified field width,
617 * we must be doing flush left justification; any residual width
618 * must be filled with blanks, to the right of the output value.
619 */
620 while( stream->width-- > 0 )
621 __pformat_putc( '\x20', stream );
622
623#else /* __BUILD_WIDEAPI */
624
625 int len;
626
627 if( (stream->precision >= 0) && (count > stream->precision) )
628 count = stream->precision;
629
630 if( (stream->flags & PFORMAT_TO_FILE) && (stream->flags & PFORMAT_NOLIMIT) )
631 {
632 int __cdecl __ms_fwprintf(FILE *, const wchar_t *, ...);
633
634 if( stream->width > count )
635 {
636 if( (stream->flags & PFORMAT_LJUSTIFY) == 0 )
637 len = __ms_fwprintf( (FILE *)(stream->dest), L"%*.*s", stream->width, count, s );
638 else
639 len = __ms_fwprintf( (FILE *)(stream->dest), L"%-*.*s", stream->width, count, s );
640 }
641 else
642 {
643 len = __ms_fwprintf( (FILE *)(stream->dest), L"%.*s", count, s );
644 }
645 if( len > 0 )
646 stream->count += len;
647 stream->width = PFORMAT_IGNORE;
648 return;
649 }
650
651 if( stream->width > count )
652 stream->width -= count;
653 else
654 stream->width = PFORMAT_IGNORE;
655
656 if( (stream->width > 0) && ((stream->flags & PFORMAT_LJUSTIFY) == 0) )
657 while( stream->width-- )
658 __pformat_putc( '\x20', stream );
659
660 len = count;
661 while(len-- > 0 && *s != 0)
662 {
663 __pformat_putc(*s++, stream);
664 }
665
666 while( stream->width-- > 0 )
667 __pformat_putc( '\x20', stream );
668
669#endif /* __BUILD_WIDEAPI */
670}
671
672static
673void __pformat_wcputs( const wchar_t *s, __pformat_t *stream )
674{
675 /* Handler for `%S' (`%ls') conversion specifications.
676 *
677 * Transfer a NUL terminated wide character string, character by
678 * character, converting to its equivalent multibyte representation
679 * on output, and stopping when the end of the string is encountered,
680 * or if `precision' has been explicitly set, when the specified number
681 * of characters has been emitted, if that is less than the length of
682 * the input string, to the `__pformat()' output stream.
683 *
684 * This is implemented as a trivial call to `__pformat_wputchars()',
685 * passing the length of the input string as the character count,
686 * (after first verifying that the input pointer is not NULL).
687 */
688 if( s == NULL ) s = L"(null)";
689
690 if( stream->precision >= 0 )
691 __pformat_wputchars( s, wcsnlen( s, stream->precision ), stream );
692 else
693 __pformat_wputchars( s, wcslen( s ), stream );
694}
695
696static
697int __pformat_int_bufsiz( int bias, int size, __pformat_t *stream )
698{
699 /* Helper to establish the size of the internal buffer, which
700 * is required to queue the ASCII decomposition of an integral
701 * data value, prior to transfer to the output stream.
702 */
703 size = ((size - 1 + LLONGBITS) / size) + bias;
704 size += (stream->precision > 0) ? stream->precision : 0;
705 if ((stream->flags & PFORMAT_GROUPED) != 0 && stream->thousands_chr != 0)
706 size += (size / 3);
707 return (size > stream->width) ? size : stream->width;
708}
709
710static
711void __pformat_int( __pformat_intarg_t value, __pformat_t *stream )
712{
713 /* Handler for `%d', `%i' and `%u' conversion specifications.
714 *
715 * Transfer the ASCII representation of an integer value parameter,
716 * formatted as a decimal number, to the `__pformat()' output queue;
717 * output will be truncated, if any specified quota is exceeded.
718 */
719 int32_t bufflen = __pformat_int_bufsiz(1, PFORMAT_OSHIFT, stream);
720#ifdef __ENABLE_PRINTF128
721 char *tmp_buff = NULL;
722#endif
723 char *buf = NULL;
724 char *p;
725 int precision;
726
727 buf = alloca(bufflen);
728 p = buf;
729 if( stream->flags & PFORMAT_NEGATIVE )
730#ifdef __ENABLE_PRINTF128
731 {
732 /* The input value might be negative, (i.e. it is a signed value)...
733 */
734 if( value.__pformat_u128_t.t128.digits[1] < 0) {
735 /*
736 * It IS negative, but we want to encode it as unsigned,
737 * displayed with a leading minus sign, so convert it...
738 */
739 /* two's complement */
740 value.__pformat_u128_t.t128.digits[0] = ~value.__pformat_u128_t.t128.digits[0];
741 value.__pformat_u128_t.t128.digits[1] = ~value.__pformat_u128_t.t128.digits[1];
742 value.__pformat_u128_t.t128.digits[0] += 1;
743 value.__pformat_u128_t.t128.digits[1] += (!value.__pformat_u128_t.t128.digits[0]) ? 1 : 0;
744 } else
745 /* It is unequivocally a POSITIVE value, so turn off the
746 * request to prefix it with a minus sign...
747 */
748 stream->flags &= ~PFORMAT_NEGATIVE;
749 }
750
751 tmp_buff = alloca(bufflen);
752 /* Encode the input value for display...
753 */
754 __bigint_to_string(value.__pformat_u128_t.t128_2.digits32,
755 4, tmp_buff, bufflen);
756 __bigint_trim_leading_zeroes(tmp_buff,1);
757
758 memset(p,0,bufflen);
759 for(int32_t i = strlen(tmp_buff) - 1; i >= 0; i--){
760 if ( i && (stream->flags & PFORMAT_GROUPED) != 0 && stream->thousands_chr != 0
761 && (i % 4) == 3)
762 {
763 *p++ = ',';
764 }
765 *p++ = tmp_buff[i];
766 if( i > bufflen - 1) break; /* sanity chec */
767 if( tmp_buff[i] == '\0' ) break; /* end */
768 }
769#else
770 {
771 /* The input value might be negative, (i.e. it is a signed value)...
772 */
773 if( value.__pformat_llong_t < 0LL )
774 /*
775 * It IS negative, but we want to encode it as unsigned,
776 * displayed with a leading minus sign, so convert it...
777 */
778 value.__pformat_llong_t = -value.__pformat_llong_t;
779
780 else
781 /* It is unequivocally a POSITIVE value, so turn off the
782 * request to prefix it with a minus sign...
783 */
784 stream->flags &= ~PFORMAT_NEGATIVE;
785 }
786while( value.__pformat_ullong_t )
787 {
788 /* decomposing it into its constituent decimal digits,
789 * in order from least significant to most significant, using
790 * the local buffer as a LIFO queue in which to store them.
791 */
792 if (p != buf && (stream->flags & PFORMAT_GROUPED) != 0 && stream->thousands_chr != 0
793 && ((p - buf) % 4) == 3)
794 {
795 *p++ = ',';
796 }
797 *p++ = '0' + (unsigned char)(value.__pformat_ullong_t % 10LL);
798 value.__pformat_ullong_t /= 10LL;
799 }
800#endif
801
802 if( (stream->precision > 0)
803 && ((precision = stream->precision - (p - buf)) > 0) )
804 /*
805 * We have not yet queued sufficient digits to fill the field width
806 * specified for minimum `precision'; pad with zeros to achieve this.
807 */
808 while( precision-- > 0 )
809 *p++ = '0';
810
811 if( (p == buf) && (stream->precision != 0) )
812 /*
813 * Input value was zero; make sure we print at least one digit,
814 * unless the precision is also explicitly zero.
815 */
816 *p++ = '0';
817
818 if( (stream->width > 0) && ((stream->width -= p - buf) > 0) )
819 {
820 /* We have now queued sufficient characters to display the input value,
821 * at the desired precision, but this will not fill the output field...
822 */
823 if( stream->flags & PFORMAT_SIGNED )
824 /*
825 * We will fill one additional space with a sign...
826 */
827 stream->width--;
828
829 if( (stream->precision < 0)
830 && ((stream->flags & PFORMAT_JUSTIFY) == PFORMAT_ZEROFILL) )
831 /*
832 * and the `0' flag is in effect, so we pad the remaining spaces,
833 * to the left of the displayed value, with zeros.
834 */
835 while( stream->width-- > 0 )
836 *p++ = '0';
837
838 else if( (stream->flags & PFORMAT_LJUSTIFY) == 0 )
839 /*
840 * the `0' flag is not in effect, and neither is the `-' flag,
841 * so we pad to the left of the displayed value with spaces, so that
842 * the value appears right justified within the output field.
843 */
844 while( stream->width-- > 0 )
845 __pformat_putc( '\x20', stream );
846 }
847
848 if( stream->flags & PFORMAT_NEGATIVE )
849 /*
850 * A negative value needs a sign...
851 */
852 *p++ = '-';
853
854 else if( stream->flags & PFORMAT_POSITIVE )
855 /*
856 * A positive value may have an optionally displayed sign...
857 */
858 *p++ = '+';
859
860 else if( stream->flags & PFORMAT_ADDSPACE )
861 /*
862 * Space was reserved for displaying a sign, but none was emitted...
863 */
864 *p++ = '\x20';
865
866 while( p > buf )
867 /*
868 * Emit the accumulated constituent digits,
869 * in order from most significant to least significant...
870 */
871 __pformat_putc( *--p, stream );
872
873 while( stream->width-- > 0 )
874 /*
875 * The specified output field has not yet been completely filled;
876 * the `-' flag must be in effect, resulting in a displayed value which
877 * appears left justified within the output field; we must pad the field
878 * to the right of the displayed value, by emitting additional spaces,
879 * until we reach the rightmost field boundary.
880 */
881 __pformat_putc( '\x20', stream );
882}
883
884static
885void __pformat_xint( int fmt, __pformat_intarg_t value, __pformat_t *stream )
886{
887 /* Handler for `%o', `%p', `%x' and `%X' conversions.
888 *
889 * These can be implemented using a simple `mask and shift' strategy;
890 * set up the mask and shift values appropriate to the conversion format,
891 * and allocate a suitably sized local buffer, in which to queue encoded
892 * digits of the formatted value, in preparation for output.
893 */
894 int width;
895 int shift = (fmt == 'o') ? PFORMAT_OSHIFT : PFORMAT_XSHIFT;
896 int bufflen = __pformat_int_bufsiz(2, shift, stream);
897 char *buf = NULL;
898#ifdef __ENABLE_PRINTF128
899 char *tmp_buf = NULL;
900#endif
901 char *p;
902 buf = alloca(bufflen);
903 p = buf;
904#ifdef __ENABLE_PRINTF128
905 tmp_buf = alloca(bufflen);
906 if(fmt == 'o'){
907 __bigint_to_stringo(value.__pformat_u128_t.t128_2.digits32,4,tmp_buf,bufflen);
908 } else {
909 __bigint_to_stringx(value.__pformat_u128_t.t128_2.digits32,4,tmp_buf,bufflen, !(fmt & PFORMAT_XCASE));
910 }
911 __bigint_trim_leading_zeroes(tmp_buf,0);
912
913 memset(buf,0,bufflen);
914 for(int32_t i = strlen(tmp_buf); i >= 0; i--)
915 *p++ = tmp_buf[i];
916#else
917 int mask = (fmt == 'o') ? PFORMAT_OMASK : PFORMAT_XMASK;
918 while( value.__pformat_ullong_t )
919 {
920 /* Encode the specified non-zero input value as a sequence of digits,
921 * in the appropriate `base' encoding and in reverse digit order, each
922 * encoded in its printable ASCII form, with no leading zeros, using
923 * the local buffer as a LIFO queue in which to store them.
924 */
925 char *q;
926 if( (*(q = p++) = '0' + (value.__pformat_ullong_t & mask)) > '9' )
927 *q = (*q + 'A' - '9' - 1) | (fmt & PFORMAT_XCASE);
928 value.__pformat_ullong_t >>= shift;
929 }
930#endif
931
932 if( p == buf )
933 /*
934 * Nothing was queued; input value must be zero, which should never be
935 * emitted in the `alternative' PFORMAT_HASHED style.
936 */
937 stream->flags &= ~PFORMAT_HASHED;
938
939 if( ((width = stream->precision) > 0) && ((width -= p - buf) > 0) )
940 /*
941 * We have not yet queued sufficient digits to fill the field width
942 * specified for minimum `precision'; pad with zeros to achieve this.
943 */
944 while( width-- > 0 )
945 *p++ = '0';
946
947 else if( (fmt == 'o') && (stream->flags & PFORMAT_HASHED) )
948 /*
949 * The field width specified for minimum `precision' has already
950 * been filled, but the `alternative' PFORMAT_HASHED style for octal
951 * output requires at least one initial zero; that will not have
952 * been queued, so add it now.
953 */
954 *p++ = '0';
955
956 if( (p == buf) && (stream->precision != 0) )
957 /*
958 * Still nothing queued for output, but the `precision' has not been
959 * explicitly specified as zero, (which is necessary if no output for
960 * an input value of zero is desired); queue exactly one zero digit.
961 */
962 *p++ = '0';
963
964 if( stream->width > (width = p - buf) )
965 /*
966 * Specified field width exceeds the minimum required...
967 * Adjust so that we retain only the additional padding width.
968 */
969 stream->width -= width;
970
971 else
972 /* Ignore any width specification which is insufficient.
973 */
974 stream->width = PFORMAT_IGNORE;
975
976 if( ((width = stream->width) > 0)
977 && (fmt != 'o') && (stream->flags & PFORMAT_HASHED) )
978 /*
979 * For `%#x' or `%#X' formats, (which have the `#' flag set),
980 * further reduce the padding width to accommodate the radix
981 * indicating prefix.
982 */
983 width -= 2;
984
985 if( (width > 0) && (stream->precision < 0)
986 && ((stream->flags & PFORMAT_JUSTIFY) == PFORMAT_ZEROFILL) )
987 /*
988 * When the `0' flag is set, and not overridden by the `-' flag,
989 * or by a specified precision, add sufficient leading zeros to
990 * consume the remaining field width.
991 */
992 while( width-- > 0 )
993 *p++ = '0';
994
995 if( (fmt != 'o') && (stream->flags & PFORMAT_HASHED) )
996 {
997 /* For formats other than octal, the PFORMAT_HASHED output style
998 * requires the addition of a two character radix indicator, as a
999 * prefix to the actual encoded numeric value.
1000 */
1001 *p++ = fmt;
1002 *p++ = '0';
1003 }
1004
1005 if( (width > 0) && ((stream->flags & PFORMAT_LJUSTIFY) == 0) )
1006 /*
1007 * When not doing flush left justification, (i.e. the `-' flag
1008 * is not set), any residual unreserved field width must appear
1009 * as blank padding, to the left of the output value.
1010 */
1011 while( width-- > 0 )
1012 __pformat_putc( '\x20', stream );
1013
1014 while( p > buf )
1015 /*
1016 * Move the queued output from the local buffer to the ultimate
1017 * destination, in LIFO order.
1018 */
1019 __pformat_putc( *--p, stream );
1020
1021 /* If we still haven't consumed the entire specified field width,
1022 * we must be doing flush left justification; any residual width
1023 * must be filled with blanks, to the right of the output value.
1024 */
1025 while( width-- > 0 )
1026 __pformat_putc( '\x20', stream );
1027}
1028
1029typedef union
1030{
1031 /* A multifaceted representation of an IEEE extended precision,
1032 * (80-bit), floating point number, facilitating access to its
1033 * component parts.
1034 */
1035 double __pformat_fpreg_double_t;
1036 long double __pformat_fpreg_ldouble_t;
1037 struct
1038 { unsigned long long __pformat_fpreg_mantissa;
1039 signed short __pformat_fpreg_exponent;
1040 };
1041 unsigned short __pformat_fpreg_bitmap[5];
1042 unsigned long __pformat_fpreg_bits;
1043} __pformat_fpreg_t;
1044
1045#ifdef _WIN32
1046/* TODO: make this unconditional in final release...
1047 * (see note at head of associated `#else' block.
1048 */
1049#include "../gdtoa/gdtoa.h"
1050
1051static __pformat_fpreg_t init_fpreg_ldouble( long double val )
1052{
1053 __pformat_fpreg_t x;
1054 x.__pformat_fpreg_ldouble_t = val;
1055
1056 if( sizeof( double ) == sizeof( long double ) )
1057 {
1058 /* Here, __pformat_fpreg_t expects to be initialized with a 80 bit long
1059 * double, but this platform doesn't have long doubles that differ from
1060 * regular 64 bit doubles. Therefore manually convert the 64 bit float
1061 * value to an 80 bit float value.
1062 */
1063 int exp = (x.__pformat_fpreg_mantissa >> 52) & 0x7ff;
1064 unsigned long long mant = x.__pformat_fpreg_mantissa & 0x000fffffffffffffULL;
1065 int topbit = exp ? 1 : 0;
1066 int signbit = x.__pformat_fpreg_mantissa >> 63;
1067
1068 if (exp == 0x7ff)
1069 exp = 0x7fff;
1070 else if (exp != 0)
1071 exp = exp - 1023 + 16383;
1072 else if (mant != 0) {
1073 /* Denormal when stored as a 64 bit double, but becomes a normal when
1074 * converted to 80 bit long double form. */
1075 exp = 1 - 1023 + 16383;
1076 while (!(mant & 0x0010000000000000ULL)) {
1077 /* Normalize the mantissa. */
1078 mant <<= 1;
1079 exp--;
1080 }
1081 topbit = 1; /* The top bit, which is implicit in the 64 bit form. */
1082 }
1083 x.__pformat_fpreg_mantissa = (mant << 11) | ((unsigned long long)topbit << 63);
1084 x.__pformat_fpreg_exponent = exp | (signbit << 15);
1085 }
1086
1087 return x;
1088}
1089
1090static
1091char *__pformat_cvt( int mode, long double val, int nd, int *dp, int *sign )
1092{
1093 /* Helper function, derived from David M. Gay's `g_xfmt()', calling
1094 * his `__gdtoa()' function in a manner to provide extended precision
1095 * replacements for `ecvt()' and `fcvt()'.
1096 */
1097 int k; unsigned int e = 0; char *ep;
1098 static FPI fpi = { 64, 1-16383-64+1, 32766-16383-64+1, FPI_Round_near, 0, 14 /* Int_max */ };
1099 __pformat_fpreg_t x = init_fpreg_ldouble( val );
1100
1101 k = __fpclassifyl( val );
1102
1103 /* Classify the argument into an appropriate `__gdtoa()' category...
1104 */
1105 if( k & FP_NAN )
1106 /*
1107 * identifying infinities or not-a-number...
1108 */
1109 k = (k & FP_NORMAL) ? STRTOG_Infinite : STRTOG_NaN;
1110
1111 else if( k & FP_NORMAL )
1112 {
1113 /* normal and near-zero `denormals'...
1114 */
1115 if( k & FP_ZERO )
1116 {
1117 /* with appropriate exponent adjustment for a `denormal'...
1118 */
1119 k = STRTOG_Denormal;
1120 e = 1 - 0x3FFF - 63;
1121 }
1122 else
1123 {
1124 /* or with `normal' exponent adjustment...
1125 */
1126 k = STRTOG_Normal;
1127 e = (x.__pformat_fpreg_exponent & 0x7FFF) - 0x3FFF - 63;
1128 }
1129 }
1130
1131 else
1132 /* or, if none of the above, it's a zero, (positive or negative).
1133 */
1134 k = STRTOG_Zero;
1135
1136 /* Check for negative values, always treating NaN as unsigned...
1137 * (return value is zero for positive/unsigned; non-zero for negative).
1138 */
1139 *sign = (k == STRTOG_NaN) ? 0 : x.__pformat_fpreg_exponent & 0x8000;
1140
1141 /* Finally, get the raw digit string, and radix point position index.
1142 */
1143 return __gdtoa( &fpi, e, &x.__pformat_fpreg_bits, &k, mode, nd, dp, &ep );
1144}
1145
1146static
1147char *__pformat_ecvt( long double x, int precision, int *dp, int *sign )
1148{
1149 /* A convenience wrapper for the above...
1150 * it emulates `ecvt()', but takes a `long double' argument.
1151 */
1152 return __pformat_cvt( 2, x, precision, dp, sign );
1153}
1154
1155static
1156char *__pformat_fcvt( long double x, int precision, int *dp, int *sign )
1157{
1158 /* A convenience wrapper for the above...
1159 * it emulates `fcvt()', but takes a `long double' argument.
1160 */
1161 return __pformat_cvt( 3, x, precision, dp, sign );
1162}
1163
1164/* The following are required, to clean up the `__gdtoa()' memory pool,
1165 * after processing the data returned by the above.
1166 */
1167#define __pformat_ecvt_release( value ) __freedtoa( value )
1168#define __pformat_fcvt_release( value ) __freedtoa( value )
1169
1170#else
1171/*
1172 * TODO: remove this before final release; it is included here as a
1173 * convenience for testing, without requiring a working `__gdtoa()'.
1174 */
1175static
1176char *__pformat_ecvt( long double x, int precision, int *dp, int *sign )
1177{
1178 /* Define in terms of `ecvt()'...
1179 */
1180 char *retval = ecvt( (double)(x), precision, dp, sign );
1181 if( isinf( x ) || isnan( x ) )
1182 {
1183 /* emulating `__gdtoa()' reporting for infinities and NaN.
1184 */
1185 *dp = PFORMAT_INFNAN;
1186 if( *retval == '-' )
1187 {
1188 /* Need to force the `sign' flag, (particularly for NaN).
1189 */
1190 ++retval; *sign = 1;
1191 }
1192 }
1193 return retval;
1194}
1195
1196static
1197char *__pformat_fcvt( long double x, int precision, int *dp, int *sign )
1198{
1199 /* Define in terms of `fcvt()'...
1200 */
1201 char *retval = fcvt( (double)(x), precision, dp, sign );
1202 if( isinf( x ) || isnan( x ) )
1203 {
1204 /* emulating `__gdtoa()' reporting for infinities and NaN.
1205 */
1206 *dp = PFORMAT_INFNAN;
1207 if( *retval == '-' )
1208 {
1209 /* Need to force the `sign' flag, (particularly for NaN).
1210 */
1211 ++retval; *sign = 1;
1212 }
1213 }
1214 return retval;
1215}
1216
1217/* No memory pool clean up needed, for these emulated cases...
1218 */
1219#define __pformat_ecvt_release( value ) /* nothing to be done */
1220#define __pformat_fcvt_release( value ) /* nothing to be done */
1221
1222/* TODO: end of conditional to be removed. */
1223#endif
1224
1225static
1226void __pformat_emit_radix_point( __pformat_t *stream )
1227{
1228 /* Helper to place a localised representation of the radix point
1229 * character at the ultimate destination, when formatting fixed or
1230 * floating point numbers.
1231 */
1232 if( stream->rplen == PFORMAT_RPINIT )
1233 {
1234 /* Radix point initialisation not yet completed;
1235 * establish a multibyte to `wchar_t' converter...
1236 */
1237 int len; wchar_t rpchr; mbstate_t state;
1238
1239 /* Initialise the conversion state...
1240 */
1241 memset( &state, 0, sizeof( state ) );
1242
1243 /* Fetch and convert the localised radix point representation...
1244 */
1245 if( (len = mbrtowc( &rpchr, localeconv()->decimal_point, 16, &state )) > 0 )
1246 /*
1247 * and store it, if valid.
1248 */
1249 stream->rpchr = rpchr;
1250
1251 /* In any case, store the reported effective multibyte length,
1252 * (or the error flag), marking initialisation as `done'.
1253 */
1254 stream->rplen = len;
1255 }
1256
1257 if( stream->rpchr != (wchar_t)(0) )
1258 {
1259 /* We have a localised radix point mark;
1260 * establish a converter to make it a multibyte character...
1261 */
1262#ifdef __BUILD_WIDEAPI
1263 __pformat_putc (stream->rpchr, stream);
1264#else
1265 int len; char buf[len = stream->rplen]; mbstate_t state;
1266
1267 /* Initialise the conversion state...
1268 */
1269 memset( &state, 0, sizeof( state ) );
1270
1271 /* Convert the `wchar_t' representation to multibyte...
1272 */
1273 if( (len = wcrtomb( buf, stream->rpchr, &state )) > 0 )
1274 {
1275 /* and copy to the output destination, when valid...
1276 */
1277 char *p = buf;
1278 while( len-- > 0 )
1279 __pformat_putc( *p++, stream );
1280 }
1281
1282 else
1283 /* otherwise fall back to plain ASCII '.'...
1284 */
1285 __pformat_putc( '.', stream );
1286#endif
1287 }
1288 else
1289 /* No localisation: just use ASCII '.'...
1290 */
1291 __pformat_putc( '.', stream );
1292}
1293
1294static
1295void __pformat_emit_numeric_value( int c, __pformat_t *stream )
1296{
1297 /* Convenience helper to transfer numeric data from an internal
1298 * formatting buffer to the ultimate destination...
1299 */
1300 if( c == '.' )
1301 /*
1302 * converting this internal representation of the the radix
1303 * point to the appropriately localised representation...
1304 */
1305 __pformat_emit_radix_point( stream );
1306 else if (c == ',')
1307 {
1308 wchar_t wcs;
1309 if ((wcs = stream->thousands_chr) != 0)
1310 __pformat_wputchars (&wcs, 1, stream);
1311 }
1312 else
1313 /* and passing all other characters through, unmodified.
1314 */
1315 __pformat_putc( c, stream );
1316}
1317
1318static
1319void __pformat_emit_inf_or_nan( int sign, char *value, __pformat_t *stream )
1320{
1321 /* Helper to emit INF or NAN where a floating point value
1322 * resolves to one of these special states.
1323 */
1324 int i;
1325 char buf[4];
1326 char *p = buf;
1327
1328 /* We use the string formatting helper to display INF/NAN,
1329 * but we don't want truncation if the precision set for the
1330 * original floating point output request was insufficient;
1331 * ignore it!
1332 */
1333 stream->precision = PFORMAT_IGNORE;
1334
1335 if( sign )
1336 /*
1337 * Negative infinity: emit the sign...
1338 */
1339 *p++ = '-';
1340
1341 else if( stream->flags & PFORMAT_POSITIVE )
1342 /*
1343 * Not negative infinity, but '+' flag is in effect;
1344 * thus, we emit a positive sign...
1345 */
1346 *p++ = '+';
1347
1348 else if( stream->flags & PFORMAT_ADDSPACE )
1349 /*
1350 * No sign required, but space was reserved for it...
1351 */
1352 *p++ = '\x20';
1353
1354 /* Copy the appropriate status indicator, up to a maximum of
1355 * three characters, transforming to the case corresponding to
1356 * the format specification...
1357 */
1358 for( i = 3; i > 0; --i )
1359 *p++ = (*value++ & ~PFORMAT_XCASE) | (stream->flags & PFORMAT_XCASE);
1360
1361 /* and emit the result.
1362 */
1363 __pformat_putchars( buf, p - buf, stream );
1364}
1365
1366static
1367void __pformat_emit_float( int sign, char *value, int len, __pformat_t *stream )
1368{
1369 /* Helper to emit a fixed point representation of numeric data,
1370 * as encoded by a prior call to `ecvt()' or `fcvt()'; (this does
1371 * NOT include the exponent, for floating point format).
1372 */
1373 if( len > 0 )
1374 {
1375 /* The magnitude of `x' is greater than or equal to 1.0...
1376 * reserve space in the output field, for the required number of
1377 * decimal digits to be placed before the decimal point...
1378 */
1379 if( stream->width >= len)
1380 /*
1381 * adjusting as appropriate, when width is sufficient...
1382 */
1383 stream->width -= len;
1384
1385 else
1386 /* or simply ignoring the width specification, if not.
1387 */
1388 stream->width = PFORMAT_IGNORE;
1389 }
1390
1391 else if( stream->width > 0 )
1392 /*
1393 * The magnitude of `x' is less than 1.0...
1394 * reserve space for exactly one zero before the decimal point.
1395 */
1396 stream->width--;
1397
1398 /* Reserve additional space for the digits which will follow the
1399 * decimal point...
1400 */
1401 if( (stream->width >= 0) && (stream->width > stream->precision) )
1402 /*
1403 * adjusting appropriately, when sufficient width remains...
1404 * (note that we must check both of these conditions, because
1405 * precision may be more negative than width, as a result of
1406 * adjustment to provide extra padding when trailing zeros
1407 * are to be discarded from "%g" format conversion with a
1408 * specified field width, but if width itself is negative,
1409 * then there is explicitly to be no padding anyway).
1410 */
1411 stream->width -= stream->precision;
1412
1413 else
1414 /* or again, ignoring the width specification, if not.
1415 */
1416 stream->width = PFORMAT_IGNORE;
1417
1418 /* Reserve space in the output field, for display of the decimal point,
1419 * unless the precision is explicity zero, with the `#' flag not set.
1420 */
1421 if ((stream->width > 0)
1422 && ((stream->precision > 0) || (stream->flags & PFORMAT_HASHED)))
1423 stream->width--;
1424
1425 if (len > 0 && (stream->flags & PFORMAT_GROUPED) != 0 && stream->thousands_chr != 0)
1426 {
1427 int cths = ((len + 2) / 3) - 1;
1428 while (cths > 0 && stream->width > 0)
1429 {
1430 --cths; stream->width--;
1431 }
1432 }
1433
1434 /* Reserve space in the output field, for display of the sign of the
1435 * formatted value, if required; (i.e. if the value is negative, or if
1436 * either the `space' or `+' formatting flags are set).
1437 */
1438 if( (stream->width > 0) && (sign || (stream->flags & PFORMAT_SIGNED)) )
1439 stream->width--;
1440
1441 /* Emit any padding space, as required to correctly right justify
1442 * the output within the alloted field width.
1443 */
1444 if( (stream->width > 0) && ((stream->flags & PFORMAT_JUSTIFY) == 0) )
1445 while( stream->width-- > 0 )
1446 __pformat_putc( '\x20', stream );
1447
1448 /* Emit the sign indicator, as appropriate...
1449 */
1450 if( sign )
1451 /*
1452 * mandatory, for negative values...
1453 */
1454 __pformat_putc( '-', stream );
1455
1456 else if( stream->flags & PFORMAT_POSITIVE )
1457 /*
1458 * optional, for positive values...
1459 */
1460 __pformat_putc( '+', stream );
1461
1462 else if( stream->flags & PFORMAT_ADDSPACE )
1463 /*
1464 * or just fill reserved space, when the space flag is in effect.
1465 */
1466 __pformat_putc( '\x20', stream );
1467
1468 /* If the `0' flag is in effect, and not overridden by the `-' flag,
1469 * then zero padding, to fill out the field, goes here...
1470 */
1471 if( (stream->width > 0)
1472 && ((stream->flags & PFORMAT_JUSTIFY) == PFORMAT_ZEROFILL) )
1473 while( stream->width-- > 0 )
1474 __pformat_putc( '0', stream );
1475
1476 /* Emit the digits of the encoded numeric value...
1477 */
1478 if( len > 0 )
1479 {
1480 /*
1481 * ...beginning with those which precede the radix point,
1482 * and appending any necessary significant trailing zeros.
1483 */
1484 do {
1485 __pformat_putc( *value ? *value++ : '0', stream);
1486 --len;
1487 if (len != 0 && (stream->flags & PFORMAT_GROUPED) != 0 && stream->thousands_chr != 0
1488 && (len % 3) == 0)
1489 __pformat_wputchars (&stream->thousands_chr, 1, stream);
1490 }
1491 while (len > 0);
1492 }
1493 else
1494 /* The magnitude of the encoded value is less than 1.0, so no
1495 * digits precede the radix point; we emit a mandatory initial
1496 * zero, followed immediately by the radix point.
1497 */
1498 __pformat_putc( '0', stream );
1499
1500 /* Unless the encoded value is integral, AND the radix point
1501 * is not expressly demanded by the `#' flag, we must insert
1502 * the appropriately localised radix point mark here...
1503 */
1504 if( (stream->precision > 0) || (stream->flags & PFORMAT_HASHED) )
1505 __pformat_emit_radix_point( stream );
1506
1507 /* When the radix point offset, `len', is negative, this implies
1508 * that additional zeros must appear, following the radix point,
1509 * and preceding the first significant digit...
1510 */
1511 if( len < 0 )
1512 {
1513 /* To accommodate these, we adjust the precision, (reducing it
1514 * by adding a negative value), and then we emit as many zeros
1515 * as are required.
1516 */
1517 stream->precision += len;
1518 do __pformat_putc( '0', stream );
1519 while( ++len < 0 );
1520 }
1521
1522 /* Now we emit any remaining significant digits, or trailing zeros,
1523 * until the required precision has been achieved.
1524 */
1525 while( stream->precision-- > 0 )
1526 __pformat_putc( *value ? *value++ : '0', stream );
1527}
1528
1529static
1530void __pformat_emit_efloat( int sign, char *value, int e, __pformat_t *stream )
1531{
1532 /* Helper to emit a floating point representation of numeric data,
1533 * as encoded by a prior call to `ecvt()' or `fcvt()'; (this DOES
1534 * include the following exponent).
1535 */
1536 int exp_width = 1;
1537 __pformat_intarg_t exponent; exponent.__pformat_llong_t = e -= 1;
1538
1539 /* Determine how many digit positions are required for the exponent.
1540 */
1541 while( (e /= 10) != 0 )
1542 exp_width++;
1543
1544 /* Ensure that this is at least as many as the standard requirement.
1545 * The C99 standard requires the expenent to contain at least two
1546 * digits, unless specified explicitly otherwise.
1547 */
1548 if (stream->expmin == -1)
1549 stream->expmin = 2;
1550 if( exp_width < stream->expmin )
1551 exp_width = stream->expmin;
1552
1553 /* Adjust the residual field width allocation, to allow for the
1554 * number of exponent digits to be emitted, together with a sign
1555 * and exponent separator...
1556 */
1557 if( stream->width > (exp_width += 2) )
1558 stream->width -= exp_width;
1559
1560 else
1561 /* ignoring the field width specification, if insufficient.
1562 */
1563 stream->width = PFORMAT_IGNORE;
1564
1565 /* Emit the significand, as a fixed point value with one digit
1566 * preceding the radix point.
1567 */
1568 __pformat_emit_float( sign, value, 1, stream );
1569
1570 /* Reset precision, to ensure the mandatory minimum number of
1571 * exponent digits will be emitted, and set the flags to ensure
1572 * the sign is displayed.
1573 */
1574 stream->precision = stream->expmin;
1575 stream->flags |= PFORMAT_SIGNED;
1576
1577 /* Emit the exponent separator.
1578 */
1579 __pformat_putc( ('E' | (stream->flags & PFORMAT_XCASE)), stream );
1580
1581 /* Readjust the field width setting, such that it again allows
1582 * for the digits of the exponent, (which had been discounted when
1583 * computing any left side padding requirement), so that they are
1584 * correctly included in the computation of any right side padding
1585 * requirement, (but here we exclude the exponent separator, which
1586 * has been emitted, and so counted already).
1587 */
1588 stream->width += exp_width - 1;
1589
1590 /* And finally, emit the exponent itself, as a signed integer,
1591 * with any padding required to achieve flush left justification,
1592 * (which will be added automatically, by `__pformat_int()').
1593 */
1594 __pformat_int( exponent, stream );
1595}
1596
1597static
1598void __pformat_float( long double x, __pformat_t *stream )
1599{
1600 /* Handler for `%f' and `%F' format specifiers.
1601 *
1602 * This wraps calls to `__pformat_cvt()', `__pformat_emit_float()'
1603 * and `__pformat_emit_inf_or_nan()', as appropriate, to achieve
1604 * output in fixed point format.
1605 */
1606 int sign, intlen; char *value;
1607
1608 /* Establish the precision for the displayed value, defaulting to six
1609 * digits following the decimal point, if not explicitly specified.
1610 */
1611 if( stream->precision < 0 )
1612 stream->precision = 6;
1613
1614 /* Encode the input value as ASCII, for display...
1615 */
1616 value = __pformat_fcvt( x, stream->precision, &intlen, &sign );
1617
1618 if( intlen == PFORMAT_INFNAN )
1619 /*
1620 * handle cases of `infinity' or `not-a-number'...
1621 */
1622 __pformat_emit_inf_or_nan( sign, value, stream );
1623
1624 else
1625 { /* or otherwise, emit the formatted result.
1626 */
1627 __pformat_emit_float( sign, value, intlen, stream );
1628
1629 /* and, if there is any residual field width as yet unfilled,
1630 * then we must be doing flush left justification, so pad out to
1631 * the right hand field boundary.
1632 */
1633 while( stream->width-- > 0 )
1634 __pformat_putc( '\x20', stream );
1635 }
1636
1637 /* Clean up `__pformat_fcvt()' memory allocation for `value'...
1638 */
1639 __pformat_fcvt_release( value );
1640}
1641
1642#ifdef __ENABLE_DFP
1643
1644typedef struct decimal128_decode {
1645 int64_t significand[2];
1646 int32_t exponent;
1647 int sig_neg;
1648 int exp_neg;
1649} decimal128_decode;
1650
1651static uint32_t dec128_decode(decimal128_decode *result, const _Decimal128 deci){
1652 int64_t significand2;
1653 int64_t significand1;
1654 int32_t exp_part;
1655 int8_t sig_sign;
1656 ud128 in;
1657 in.d = deci;
1658
1659 if(in.t0.bits == 0x3){ /*case 11 */
1660 /* should not enter here */
1661 sig_sign = in.t2.sign;
1662 exp_part = in.t2.exponent;
1663 significand1 = in.t2.mantissaL;
1664 significand2 = (in.t2.mantissaH | (0x1ULL << 49));
1665 } else {
1666 sig_sign = in.t1.sign;
1667 exp_part = in.t1.exponent;
1668 significand1 = in.t1.mantissaL;
1669 significand2 = in.t1.mantissaH;
1670 }
1671 exp_part -= 6176; /* exp bias */
1672
1673 result->significand[0] = significand1;
1674 result->significand[1] = significand2; /* higher */
1675 result->exponent = exp_part;
1676 result->exp_neg = (exp_part < 0 )? 1 : 0;
1677 result->sig_neg = sig_sign;
1678
1679 return 0;
1680}
1681
1682static
1683void __pformat_efloat_decimal(_Decimal128 x, __pformat_t *stream ){
1684 decimal128_decode in;
1685 char str_exp[8];
1686 char str_sig[40];
1687 int floatclass = __fpclassifyd128(x);
1688
1689 /* precision control */
1690 int32_t prec = ( (stream->precision < 0) || (stream->precision > 38) ) ?
1691 6 : stream->precision;
1692 int32_t max_prec;
1693 int32_t exp_strlen;
1694
1695 dec128_decode(&in,x);
1696
1697 if((floatclass & FP_INFINITE) == FP_INFINITE){
1698 stream->precision = 3;
1699 if(stream->flags & PFORMAT_SIGNED)
1700 __pformat_putc( in.sig_neg ? '-' : '+', stream );
1701 __pformat_puts( (stream->flags & PFORMAT_XCASE) ? "inf" : "INF", stream);
1702 return;
1703 } else if(floatclass & FP_NAN){
1704 stream->precision = 3;
1705 if(stream->flags & PFORMAT_SIGNED)
1706 __pformat_putc( in.sig_neg ? '-' : '+', stream );
1707 __pformat_puts( (stream->flags & PFORMAT_XCASE) ? "nan" : "NAN", stream);
1708 return;
1709 }
1710
1711 /* Stringify significand */
1712 __bigint_to_string(
1713 (uint32_t[4]){in.significand[0] & 0x0ffffffff, in.significand[0] >> 32, in.significand[1] & 0x0ffffffff, in.significand[1] >> 32 },
1714 4, str_sig, sizeof(str_sig));
1715 __bigint_trim_leading_zeroes(str_sig,1);
1716 max_prec = strlen(str_sig+1);
1717
1718 /* Try to canonize exponent */
1719 in.exponent += max_prec;
1720 in.exp_neg = (in.exponent < 0 ) ? 1 : 0;
1721
1722 /* stringify exponent */
1723 __bigint_to_string(
1724 (uint32_t[1]) { in.exp_neg ? -in.exponent : in.exponent},
1725 1, str_exp, sizeof(str_exp));
1726 exp_strlen = strlen(__bigint_trim_leading_zeroes(str_exp,3));
1727
1728 /* account for dot, +-e */
1729 for(int32_t spacers = 0; spacers < stream->width - max_prec - exp_strlen - 4; spacers++)
1730 __pformat_putc( ' ', stream );
1731
1732 /* optional sign */
1733 if (in.sig_neg || (stream->flags & PFORMAT_SIGNED)) {
1734 __pformat_putc( in.sig_neg ? '-' : '+', stream );
1735 } else if( stream->width - max_prec - exp_strlen - 4 > 0 ) {
1736 __pformat_putc( ' ', stream );
1737 }
1738 stream->width = 0;
1739 /* s.sss form */
1740 __pformat_putc(str_sig[0], stream);
1741 if(prec) {
1742 /* str_sig[prec+1] = '\0';*/
1743 __pformat_emit_radix_point(stream);
1744 __pformat_putchars(str_sig+1, prec, stream);
1745
1746 /* Pad with 0s */
1747 for(int i = max_prec; i < prec; i++)
1748 __pformat_putc('0', stream);
1749 }
1750
1751 stream->precision = exp_strlen; /* force puts to emit */
1752
1753 __pformat_putc( ('E' | (stream->flags & PFORMAT_XCASE)), stream );
1754 __pformat_putc( in.exp_neg ? '-' : '+', stream );
1755
1756 for(int32_t trailing = 0; trailing < 3 - exp_strlen; trailing++)
1757 __pformat_putc('0', stream);
1758 __pformat_putchars(str_exp, exp_strlen,stream);
1759}
1760
1761static
1762void __pformat_float_decimal(_Decimal128 x, __pformat_t *stream ){
1763 decimal128_decode in;
1764 char str_exp[8];
1765 char str_sig[40];
1766 int floatclass = __fpclassifyd128(x);
1767
1768 /* precision control */
1769 int prec = ( (stream->precision < 0) || (stream->precision > 38) ) ?
1770 6 : stream->precision;
1771 int max_prec;
1772
1773 dec128_decode(&in,x);
1774
1775 if((floatclass & FP_INFINITE) == FP_INFINITE){
1776 stream->precision = 3;
1777 if(stream->flags & PFORMAT_SIGNED)
1778 __pformat_putc( in.sig_neg ? '-' : '+', stream );
1779 __pformat_puts( (stream->flags & PFORMAT_XCASE) ? "inf" : "INF", stream);
1780 return;
1781 } else if(floatclass & FP_NAN){
1782 stream->precision = 3;
1783 if(stream->flags & PFORMAT_SIGNED)
1784 __pformat_putc( in.sig_neg ? '-' : '+', stream );
1785 __pformat_puts( (stream->flags & PFORMAT_XCASE) ? "nan" : "NAN", stream);
1786 return;
1787 }
1788
1789 /* Stringify significand */
1790 __bigint_to_string(
1791 (uint32_t[4]){in.significand[0] & 0x0ffffffff, in.significand[0] >> 32, in.significand[1] & 0x0ffffffff, in.significand[1] >> 32 },
1792 4, str_sig, sizeof(str_sig));
1793 __bigint_trim_leading_zeroes(str_sig,0);
1794 max_prec = strlen(str_sig);
1795
1796 /* stringify exponent */
1797 __bigint_to_string(
1798 (uint32_t[1]) { in.exp_neg ? -in.exponent : in.exponent},
1799 1, str_exp, sizeof(str_exp));
1800 __bigint_trim_leading_zeroes(str_exp,0);
1801
1802 int32_t decimal_place = max_prec + in.exponent;
1803 int32_t sig_written = 0;
1804
1805 /*account for . +- */
1806 for(int32_t spacers = 0; spacers < stream->width - decimal_place - prec - 2; spacers++)
1807 __pformat_putc( ' ', stream );
1808
1809 if (in.sig_neg || (stream->flags & PFORMAT_SIGNED)) {
1810 __pformat_putc( in.sig_neg ? '-' : '+', stream );
1811 } else if(stream->width - decimal_place - prec - 1 > 0){
1812 __pformat_putc( ' ', stream );
1813 }
1814
1815 if(decimal_place <= 0){ /* easy mode */
1816 __pformat_putc( '0', stream );
1817 points:
1818 __pformat_emit_radix_point(stream);
1819 for(int32_t written = 0; written < prec; written++){
1820 if(decimal_place < 0){ /* leading 0s */
1821 decimal_place++;
1822 __pformat_putc( '0', stream );
1823 /* significand */
1824 } else if ( sig_written < max_prec ){
1825 __pformat_putc( str_sig[sig_written], stream );
1826 sig_written++;
1827 } else { /* trailing 0s */
1828 __pformat_putc( '0', stream );
1829 }
1830 }
1831 } else { /* hard mode */
1832 for(; sig_written < decimal_place; sig_written++){
1833 __pformat_putc( str_sig[sig_written], stream );
1834 if(sig_written == max_prec - 1) break;
1835 }
1836 decimal_place -= sig_written;
1837 for(; decimal_place > 0; decimal_place--)
1838 __pformat_putc( '0', stream );
1839 goto points;
1840 }
1841
1842 return;
1843}
1844
1845static
1846void __pformat_gfloat_decimal(_Decimal128 x, __pformat_t *stream ){
1847 int prec = ( (stream->precision < 0)) ?
1848 6 : stream->precision;
1849 decimal128_decode in;
1850 dec128_decode(&in,x);
1851 if(in.exponent > prec) __pformat_efloat_decimal(x,stream);
1852 else __pformat_float_decimal(x,stream);
1853}
1854
1855#endif /* __ENABLE_DFP */
1856
1857static
1858void __pformat_efloat( long double x, __pformat_t *stream )
1859{
1860 /* Handler for `%e' and `%E' format specifiers.
1861 *
1862 * This wraps calls to `__pformat_cvt()', `__pformat_emit_efloat()'
1863 * and `__pformat_emit_inf_or_nan()', as appropriate, to achieve
1864 * output in floating point format.
1865 */
1866 int sign, intlen; char *value;
1867
1868 /* Establish the precision for the displayed value, defaulting to six
1869 * digits following the decimal point, if not explicitly specified.
1870 */
1871 if( stream->precision < 0 )
1872 stream->precision = 6;
1873
1874 /* Encode the input value as ASCII, for display...
1875 */
1876 value = __pformat_ecvt( x, stream->precision + 1, &intlen, &sign );
1877
1878 if( intlen == PFORMAT_INFNAN )
1879 /*
1880 * handle cases of `infinity' or `not-a-number'...
1881 */
1882 __pformat_emit_inf_or_nan( sign, value, stream );
1883
1884 else
1885 /* or otherwise, emit the formatted result.
1886 */
1887 __pformat_emit_efloat( sign, value, intlen, stream );
1888
1889 /* Clean up `__pformat_ecvt()' memory allocation for `value'...
1890 */
1891 __pformat_ecvt_release( value );
1892}
1893
1894static
1895void __pformat_gfloat( long double x, __pformat_t *stream )
1896{
1897 /* Handler for `%g' and `%G' format specifiers.
1898 *
1899 * This wraps calls to `__pformat_cvt()', `__pformat_emit_float()',
1900 * `__pformat_emit_efloat()' and `__pformat_emit_inf_or_nan()', as
1901 * appropriate, to achieve output in the more suitable of either
1902 * fixed or floating point format.
1903 */
1904 int sign, intlen; char *value;
1905
1906 /* Establish the precision for the displayed value, defaulting to
1907 * six significant digits, if not explicitly specified...
1908 */
1909 if( stream->precision < 0 )
1910 stream->precision = 6;
1911
1912 /* or to a minimum of one digit, otherwise...
1913 */
1914 else if( stream->precision == 0 )
1915 stream->precision = 1;
1916
1917 /* Encode the input value as ASCII, for display.
1918 */
1919 value = __pformat_ecvt( x, stream->precision, &intlen, &sign );
1920
1921 if( intlen == PFORMAT_INFNAN )
1922 /*
1923 * Handle cases of `infinity' or `not-a-number'.
1924 */
1925 __pformat_emit_inf_or_nan( sign, value, stream );
1926
1927 else if( (-4 < intlen) && (intlen <= stream->precision) )
1928 {
1929 /* Value lies in the acceptable range for fixed point output,
1930 * (i.e. the exponent is no less than minus four, and the number
1931 * of significant digits which precede the radix point is fewer
1932 * than the least number which would overflow the field width,
1933 * specified or implied by the established precision).
1934 */
1935 if( (stream->flags & PFORMAT_HASHED) == PFORMAT_HASHED )
1936 /*
1937 * The `#' flag is in effect...
1938 * Adjust precision to retain the specified number of significant
1939 * digits, with the proper number preceding the radix point, and
1940 * the balance following it...
1941 */
1942 stream->precision -= intlen;
1943
1944 else
1945 /* The `#' flag is not in effect...
1946 * Here we adjust the precision to accommodate all digits which
1947 * precede the radix point, but we truncate any balance following
1948 * it, to suppress output of non-significant trailing zeros...
1949 */
1950 if( ((stream->precision = strlen( value ) - intlen) < 0)
1951 /*
1952 * This may require a compensating adjustment to the field
1953 * width, to accommodate significant trailing zeros, which
1954 * precede the radix point...
1955 */
1956 && (stream->width > 0) )
1957 stream->width += stream->precision;
1958
1959 /* Now, we format the result as any other fixed point value.
1960 */
1961 __pformat_emit_float( sign, value, intlen, stream );
1962
1963 /* If there is any residual field width as yet unfilled, then
1964 * we must be doing flush left justification, so pad out to the
1965 * right hand field boundary.
1966 */
1967 while( stream->width-- > 0 )
1968 __pformat_putc( '\x20', stream );
1969 }
1970
1971 else
1972 { /* Value lies outside the acceptable range for fixed point;
1973 * one significant digit will precede the radix point, so we
1974 * decrement the precision to retain only the appropriate number
1975 * of additional digits following it, when we emit the result
1976 * in floating point format.
1977 */
1978 if( (stream->flags & PFORMAT_HASHED) == PFORMAT_HASHED )
1979 /*
1980 * The `#' flag is in effect...
1981 * Adjust precision to emit the specified number of significant
1982 * digits, with one preceding the radix point, and the balance
1983 * following it, retaining any non-significant trailing zeros
1984 * which are required to exactly match the requested precision...
1985 */
1986 stream->precision--;
1987
1988 else
1989 /* The `#' flag is not in effect...
1990 * Adjust precision to emit only significant digits, with one
1991 * preceding the radix point, and any others following it, but
1992 * suppressing non-significant trailing zeros...
1993 */
1994 stream->precision = strlen( value ) - 1;
1995
1996 /* Now, we format the result as any other floating point value.
1997 */
1998 __pformat_emit_efloat( sign, value, intlen, stream );
1999 }
2000
2001 /* Clean up `__pformat_ecvt()' memory allocation for `value'.
2002 */
2003 __pformat_ecvt_release( value );
2004}
2005
2006static
2007void __pformat_emit_xfloat( __pformat_fpreg_t value, __pformat_t *stream )
2008{
2009 /* Helper for emitting floating point data, originating as
2010 * either `double' or `long double' type, as a hexadecimal
2011 * representation of the argument value.
2012 */
2013 char buf[18 + 6], *p = buf;
2014 __pformat_intarg_t exponent; short exp_width = 2;
2015
2016 if (value.__pformat_fpreg_mantissa != 0 ||
2017 value.__pformat_fpreg_exponent != 0)
2018 {
2019 /* Reduce the exponent since the leading digit emited will start at
2020 * the 4th bit from the highest order bit instead, the later being
2021 * the leading digit of the floating point. Don't do this adjustment
2022 * if the value is an actual zero.
2023 */
2024 value.__pformat_fpreg_exponent -= 3;
2025 }
2026
2027 /* The mantissa field of the argument value representation can
2028 * accommodate at most 16 hexadecimal digits, of which one will
2029 * be placed before the radix point, leaving at most 15 digits
2030 * to satisfy any requested precision; thus...
2031 */
2032 if( (stream->precision >= 0) && (stream->precision < 15) )
2033 {
2034 /* When the user specifies a precision within this range,
2035 * we want to adjust the mantissa, to retain just the number
2036 * of digits required, rounding up when the high bit of the
2037 * leftmost discarded digit is set; (mask of 0x08 accounts
2038 * for exactly one digit discarded, shifting 4 bits per
2039 * digit, with up to 14 additional digits, to consume the
2040 * full availability of 15 precision digits).
2041 */
2042
2043 /* We then shift the mantissa one bit position back to the
2044 * right, to guard against possible overflow when the rounding
2045 * adjustment is added.
2046 */
2047 value.__pformat_fpreg_mantissa >>= 1;
2048
2049 /* We now add the rounding adjustment, noting that to keep the
2050 * 0x08 mask aligned with the shifted mantissa, we also need to
2051 * shift it right by one bit initially, changing its starting
2052 * value to 0x04...
2053 */
2054 value.__pformat_fpreg_mantissa += 0x04LL << (4 * (14 - stream->precision));
2055 if( (value.__pformat_fpreg_mantissa & (LLONG_MAX + 1ULL)) == 0ULL )
2056 /*
2057 * When the rounding adjustment would not have overflowed,
2058 * then we shift back to the left again, to fill the vacated
2059 * bit we reserved to accommodate the carry.
2060 */
2061 value.__pformat_fpreg_mantissa <<= 1;
2062
2063 else
2064 {
2065 /* Otherwise the rounding adjustment would have overflowed,
2066 * so the carry has already filled the vacated bit; the effect
2067 * of this is equivalent to an increment of the exponent. We will
2068 * discard a whole digit to match glibc's behavior.
2069 */
2070 value.__pformat_fpreg_exponent += 4;
2071 value.__pformat_fpreg_mantissa >>= 3;
2072 }
2073
2074 /* We now complete the rounding to the required precision, by
2075 * shifting the unwanted digits out, from the right hand end of
2076 * the mantissa.
2077 */
2078 value.__pformat_fpreg_mantissa >>= 4 * (15 - stream->precision);
2079 }
2080
2081 /* Don't print anything if mantissa is zero unless we have to satisfy
2082 * desired precision.
2083 */
2084 if( value.__pformat_fpreg_mantissa || stream->precision > 0 )
2085 {
2086 /* Encode the significant digits of the mantissa in hexadecimal
2087 * ASCII notation, ready for transfer to the output stream...
2088 */
2089 for( int i=stream->precision >= 15 || stream->precision < 0 ? 16 : stream->precision + 1; i>0; --i )
2090 {
2091 /* taking the rightmost digit in each pass...
2092 */
2093 unsigned c = value.__pformat_fpreg_mantissa & 0xF;
2094 if( i == 1 )
2095 {
2096 /* inserting the radix point, when we reach the last,
2097 * (i.e. the most significant digit), unless we found no
2098 * less significant digits, with no mandatory radix point
2099 * inclusion, and no additional required precision...
2100 */
2101 if( (p > buf)
2102 || (stream->flags & PFORMAT_HASHED) || (stream->precision > 0) )
2103 {
2104 /*
2105 * Internally, we represent the radix point as an ASCII '.';
2106 * we will replace it with any locale specific alternative,
2107 * at the time of transfer to the ultimate destination.
2108 */
2109 *p++ = '.';
2110 }
2111 }
2112
2113 else if( stream->precision > 0 )
2114 /*
2115 * we have not yet fulfilled the desired precision,
2116 * and we have not yet found the most significant digit,
2117 * so account for the current digit, within the field
2118 * width required to meet the specified precision.
2119 */
2120 stream->precision--;
2121
2122 if( (c > 0) || (p > buf) || (stream->precision >= 0) )
2123 {
2124 /*
2125 * Ignoring insignificant trailing zeros, (unless required to
2126 * satisfy specified precision), store the current encoded digit
2127 * into the pending output buffer, in LIFO order, and using the
2128 * appropriate case for digits in the `A'..`F' range.
2129 */
2130 *p++ = c > 9 ? (c - 10 + 'A') | (stream->flags & PFORMAT_XCASE) : c + '0';
2131 }
2132 /* Shift out the current digit, (4-bit logical shift right),
2133 * to align the next more significant digit to be extracted,
2134 * and encoded in the next pass.
2135 */
2136 value.__pformat_fpreg_mantissa >>= 4;
2137 }
2138 }
2139
2140 if( p == buf )
2141 {
2142 /* Nothing has been queued for output...
2143 * We need at least one zero, and possibly a radix point.
2144 */
2145 if( (stream->precision > 0) || (stream->flags & PFORMAT_HASHED) )
2146 *p++ = '.';
2147
2148 *p++ = '0';
2149 }
2150
2151 if( stream->width > 0 )
2152 {
2153 /* Adjust the user specified field width, to account for the
2154 * number of digits minimally required, to display the encoded
2155 * value, at the requested precision.
2156 *
2157 * FIXME: this uses the minimum number of digits possible for
2158 * representation of the binary exponent, in strict conformance
2159 * with C99 and POSIX specifications. Although there appears to
2160 * be no Microsoft precedent for doing otherwise, we may wish to
2161 * relate this to the `_get_output_format()' result, to maintain
2162 * consistency with `%e', `%f' and `%g' styles.
2163 */
2164 int min_width = p - buf;
2165 int exponent2 = value.__pformat_fpreg_exponent;
2166
2167 /* If we have not yet queued sufficient digits to fulfil the
2168 * requested precision, then we must adjust the minimum width
2169 * specification, to accommodate the additional digits which
2170 * are required to do so.
2171 */
2172 if( stream->precision > 0 )
2173 min_width += stream->precision;
2174
2175 /* Adjust the minimum width requirement, to accomodate the
2176 * sign, radix indicator and at least one exponent digit...
2177 */
2178 min_width += stream->flags & PFORMAT_SIGNED ? 6 : 5;
2179 while( (exponent2 = exponent2 / 10) != 0 )
2180 {
2181 /* and increase as required, if additional exponent digits
2182 * are needed, also saving the exponent field width adjustment,
2183 * for later use when that is emitted.
2184 */
2185 min_width++;
2186 exp_width++;
2187 }
2188
2189 if( stream->width > min_width )
2190 {
2191 /* When specified field width exceeds the minimum required,
2192 * adjust to retain only the excess...
2193 */
2194 stream->width -= min_width;
2195
2196 /* and then emit any required left side padding spaces.
2197 */
2198 if( (stream->flags & PFORMAT_JUSTIFY) == 0 )
2199 while( stream->width-- > 0 )
2200 __pformat_putc( '\x20', stream );
2201 }
2202
2203 else
2204 /* Specified field width is insufficient; just ignore it!
2205 */
2206 stream->width = PFORMAT_IGNORE;
2207 }
2208
2209 /* Emit the sign of the encoded value, as required...
2210 */
2211 if( stream->flags & PFORMAT_NEGATIVE )
2212 /*
2213 * this is mandatory, to indicate a negative value...
2214 */
2215 __pformat_putc( '-', stream );
2216
2217 else if( stream->flags & PFORMAT_POSITIVE )
2218 /*
2219 * but this is optional, for a positive value...
2220 */
2221 __pformat_putc( '+', stream );
2222
2223 else if( stream->flags & PFORMAT_ADDSPACE )
2224 /*
2225 * with this optional alternative.
2226 */
2227 __pformat_putc( '\x20', stream );
2228
2229 /* Prefix a `0x' or `0X' radix indicator to the encoded value,
2230 * with case appropriate to the format specification.
2231 */
2232 __pformat_putc( '0', stream );
2233 __pformat_putc( 'X' | (stream->flags & PFORMAT_XCASE), stream );
2234
2235 /* If the `0' flag is in effect...
2236 * Zero padding, to fill out the field, goes here...
2237 */
2238 if( (stream->width > 0) && (stream->flags & PFORMAT_ZEROFILL) )
2239 while( stream->width-- > 0 )
2240 __pformat_putc( '0', stream );
2241
2242 /* Next, we emit the encoded value, without its exponent...
2243 */
2244 while( p > buf )
2245 __pformat_emit_numeric_value( *--p, stream );
2246
2247 /* followed by any additional zeros needed to satisfy the
2248 * precision specification...
2249 */
2250 while( stream->precision-- > 0 )
2251 __pformat_putc( '0', stream );
2252
2253 /* then the exponent prefix, (C99 and POSIX specify `p'),
2254 * in the case appropriate to the format specification...
2255 */
2256 __pformat_putc( 'P' | (stream->flags & PFORMAT_XCASE), stream );
2257
2258 /* and finally, the decimal representation of the binary exponent,
2259 * as a signed value with mandatory sign displayed, in a field width
2260 * adjusted to accommodate it, LEFT justified, with any additional
2261 * right side padding remaining from the original field width.
2262 */
2263 stream->width += exp_width;
2264 stream->flags |= PFORMAT_SIGNED;
2265 /* sign extend */
2266 exponent.__pformat_u128_t.t128.digits[1] = (value.__pformat_fpreg_exponent < 0) ? -1 : 0;
2267 exponent.__pformat_u128_t.t128.digits[0] = value.__pformat_fpreg_exponent;
2268 __pformat_int( exponent, stream );
2269}
2270
2271static
2272void __pformat_xldouble( long double x, __pformat_t *stream )
2273{
2274 /* Handler for `%La' and `%LA' format specifiers, (with argument
2275 * value specified as `long double' type).
2276 */
2277 unsigned sign_bit = 0;
2278 __pformat_fpreg_t z = init_fpreg_ldouble( x );
2279
2280 /* First check for NaN; it is emitted unsigned...
2281 */
2282 if( isnan( x ) )
2283 __pformat_emit_inf_or_nan( sign_bit, "NaN", stream );
2284
2285 else
2286 { /* Capture the sign bit up-front, so we can show it correctly
2287 * even when the argument value is zero or infinite.
2288 */
2289 if( (sign_bit = (z.__pformat_fpreg_exponent & 0x8000)) != 0 )
2290 stream->flags |= PFORMAT_NEGATIVE;
2291
2292 /* Check for infinity, (positive or negative)...
2293 */
2294 if( isinf( x ) )
2295 /*
2296 * displaying the appropriately signed indicator,
2297 * when appropriate.
2298 */
2299 __pformat_emit_inf_or_nan( sign_bit, "Inf", stream );
2300
2301 else
2302 { /* The argument value is a representable number...
2303 * extract the effective value of the biased exponent...
2304 */
2305 z.__pformat_fpreg_exponent &= 0x7FFF;
2306 if( z.__pformat_fpreg_exponent == 0 )
2307 {
2308 /* A biased exponent value of zero means either a
2309 * true zero value, if the mantissa field also has
2310 * a zero value, otherwise...
2311 */
2312 if( z.__pformat_fpreg_mantissa != 0 )
2313 {
2314 /* ...this mantissa represents a subnormal value.
2315 */
2316 z.__pformat_fpreg_exponent = 1 - 0x3FFF;
2317 }
2318 }
2319 else
2320 /* This argument represents a non-zero normal number;
2321 * eliminate the bias from the exponent...
2322 */
2323 z.__pformat_fpreg_exponent -= 0x3FFF;
2324
2325 /* Finally, hand the adjusted representation off to the
2326 * generalised hexadecimal floating point format handler...
2327 */
2328 __pformat_emit_xfloat( z, stream );
2329 }
2330 }
2331}
2332
2333static
2334void __pformat_xdouble( double x, __pformat_t *stream )
2335{
2336 /* Handler for `%la' and `%lA' format specifiers, (with argument
2337 * value specified as `double' type).
2338 */
2339 unsigned sign_bit = 0;
2340 __pformat_fpreg_t z = init_fpreg_ldouble( (long double)x );
2341
2342 /* First check for NaN; it is emitted unsigned...
2343 */
2344 if( isnan( x ) )
2345 __pformat_emit_inf_or_nan( sign_bit, "NaN", stream );
2346
2347 else
2348 { /* Capture the sign bit up-front, so we can show it correctly
2349 * even when the argument value is zero or infinite.
2350 */
2351 if( (sign_bit = (z.__pformat_fpreg_exponent & 0x8000)) != 0 )
2352 stream->flags |= PFORMAT_NEGATIVE;
2353
2354 /* Check for infinity, (positive or negative)...
2355 */
2356 if( isinf( x ) )
2357 /*
2358 * displaying the appropriately signed indicator,
2359 * when appropriate.
2360 */
2361 __pformat_emit_inf_or_nan( sign_bit, "Inf", stream );
2362
2363 else
2364 { /* The argument value is a representable number...
2365 * extract the effective value of the biased exponent...
2366 */
2367 z.__pformat_fpreg_exponent &= 0x7FFF;
2368
2369 /* If the double value was a denormalized number, it might have been renormalized by
2370 * the conversion to long double. We will redenormalize it.
2371 */
2372 if( z.__pformat_fpreg_exponent != 0 && z.__pformat_fpreg_exponent <= (0x3FFF - 0x3FF) )
2373 {
2374 int shifted = (0x3FFF - 0x3FF) - z.__pformat_fpreg_exponent + 1;
2375 z.__pformat_fpreg_mantissa >>= shifted;
2376 z.__pformat_fpreg_exponent += shifted;
2377 }
2378
2379 if( z.__pformat_fpreg_exponent == 0 )
2380 {
2381 /* A biased exponent value of zero means either a
2382 * true zero value, if the mantissa field also has
2383 * a zero value, otherwise...
2384 */
2385 if( z.__pformat_fpreg_mantissa != 0 )
2386 {
2387 /* ...this mantissa represents a subnormal value.
2388 */
2389 z.__pformat_fpreg_exponent = 1 - 0x3FF + 3;
2390 }
2391 }
2392 else
2393 /* This argument represents a non-zero normal number;
2394 * eliminate the bias from the exponent...
2395 */
2396 z.__pformat_fpreg_exponent -= 0x3FFF - 3;
2397
2398 /* Shift the mantissa so the leading 4 bits digit is 0 or 1.
2399 * The exponent was also adjusted by 3 previously.
2400 */
2401 z.__pformat_fpreg_mantissa >>= 3;
2402
2403 /* Finally, hand the adjusted representation off to the
2404 * generalised hexadecimal floating point format handler...
2405 */
2406 __pformat_emit_xfloat( z, stream );
2407 }
2408 }
2409}
2410
2411int
2412__pformat (int flags, void *dest, int max, const APICHAR *fmt, va_list argv)
2413{
2414 int c;
2415 int saved_errno = errno;
2416
2417 __pformat_t stream =
2418 {
2419 /* Create and initialise a format control block
2420 * for this output request.
2421 */
2422 dest, /* output goes to here */
2423 flags &= PFORMAT_TO_FILE | PFORMAT_NOLIMIT, /* only these valid initially */
2424 PFORMAT_IGNORE, /* no field width yet */
2425 PFORMAT_IGNORE, /* nor any precision spec */
2426 PFORMAT_RPINIT, /* radix point uninitialised */
2427 (wchar_t)(0), /* leave it unspecified */
2428 0,
2429 (wchar_t)(0), /* leave it unspecified */
2430 0, /* zero output char count */
2431 max, /* establish output limit */
2432 -1 /* exponent chars preferred;
2433 -1 means to be determined. */
2434 };
2435
2436#ifdef __BUILD_WIDEAPI
2437 const APICHAR *literal_string_start = NULL;
2438#endif
2439
2440 format_scan: while( (c = *fmt++) != 0 )
2441 {
2442 /* Format string parsing loop...
2443 * The entry point is labelled, so that we can return to the start state
2444 * from within the inner `conversion specification' interpretation loop,
2445 * as soon as a conversion specification has been resolved.
2446 */
2447 if( c == '%' )
2448 {
2449 /* Initiate parsing of a `conversion specification'...
2450 */
2451 __pformat_intarg_t argval;
2452 __pformat_state_t state = PFORMAT_INIT;
2453 __pformat_length_t length = PFORMAT_LENGTH_INT;
2454
2455 /* Save the current format scan position, so that we can backtrack
2456 * in the event of encountering an invalid format specification...
2457 */
2458 const APICHAR *backtrack = fmt;
2459
2460 /* Restart capture for dynamic field width and precision specs...
2461 */
2462 int *width_spec = &stream.width;
2463
2464 #ifdef __BUILD_WIDEAPI
2465 if (literal_string_start)
2466 {
2467 stream.width = stream.precision = PFORMAT_IGNORE;
2468 __pformat_wputchars( literal_string_start, fmt - literal_string_start - 1, &stream );
2469 literal_string_start = NULL;
2470 }
2471 #endif
2472
2473 /* Reset initial state for flags, width and precision specs...
2474 */
2475 stream.flags = flags;
2476 stream.width = stream.precision = PFORMAT_IGNORE;
2477
2478 while( *fmt )
2479 {
2480 switch( c = *fmt++ )
2481 {
2482 /* Data type specifiers...
2483 * All are terminal, so exit the conversion spec parsing loop
2484 * with a `goto format_scan', thus resuming at the outer level
2485 * in the regular format string parser.
2486 */
2487 case '%':
2488 /*
2489 * Not strictly a data type specifier...
2490 * it simply converts as a literal `%' character.
2491 *
2492 * FIXME: should we require this to IMMEDIATELY follow the
2493 * initial `%' of the "conversion spec"? (glibc `printf()'
2494 * on GNU/Linux does NOT appear to require this, but POSIX
2495 * and SUSv3 do seem to demand it).
2496 */
2497 #ifndef __BUILD_WIDEAPI
2498 __pformat_putc( c, &stream );
2499 #else
2500 stream.width = stream.precision = PFORMAT_IGNORE;
2501 __pformat_wputchars( L"%", 1, &stream );
2502 #endif
2503 goto format_scan;
2504
2505 case 'C':
2506 /*
2507 * Equivalent to `%lc'; set `length' accordingly,
2508 * and simply fall through.
2509 */
2510 length = PFORMAT_LENGTH_LONG;
2511
2512 case 'c':
2513 /*
2514 * Single, (or single multibyte), character output...
2515 *
2516 * We handle these by copying the argument into our local
2517 * `argval' buffer, and then we pass the address of that to
2518 * either `__pformat_putchars()' or `__pformat_wputchars()',
2519 * as appropriate, effectively formatting it as a string of
2520 * the appropriate type, with a length of one.
2521 *
2522 * A side effect of this method of handling character data
2523 * is that, if the user sets a precision of zero, then no
2524 * character is actually emitted; we don't want that, so we
2525 * forcibly override any user specified precision.
2526 */
2527 stream.precision = PFORMAT_IGNORE;
2528
2529 /* Now we invoke the appropriate format handler...
2530 */
2531 if( (length == PFORMAT_LENGTH_LONG)
2532 || (length == PFORMAT_LENGTH_LLONG) )
2533 {
2534 /* considering any `long' type modifier as a reference to
2535 * `wchar_t' data, (which is promoted to an `int' argument)...
2536 */
2537 wchar_t iargval = (wchar_t)(va_arg( argv, int ));
2538 __pformat_wputchars( &iargval, 1, &stream );
2539 }
2540 else
2541 { /* while anything else is simply taken as `char', (which
2542 * is also promoted to an `int' argument)...
2543 */
2544 argval.__pformat_uchar_t = (unsigned char)(va_arg( argv, int ));
2545 __pformat_putchars( (char *)(&argval), 1, &stream );
2546 }
2547 goto format_scan;
2548
2549 case 'S':
2550 /*
2551 * Equivalent to `%ls'; set `length' accordingly,
2552 * and simply fall through.
2553 */
2554 length = PFORMAT_LENGTH_LONG;
2555
2556 case 's':
2557 if( (length == PFORMAT_LENGTH_LONG)
2558 || (length == PFORMAT_LENGTH_LLONG))
2559 {
2560 /* considering any `long' type modifier as a reference to
2561 * a `wchar_t' string...
2562 */
2563 __pformat_wcputs( va_arg( argv, wchar_t * ), &stream );
2564 }
2565 else
2566 /* This is normal string output;
2567 * we simply invoke the appropriate handler...
2568 */
2569 __pformat_puts( va_arg( argv, char * ), &stream );
2570 goto format_scan;
2571 case 'm': /* strerror (errno) */
2572 __pformat_puts (strerror (saved_errno), &stream);
2573 goto format_scan;
2574
2575 case 'o':
2576 case 'u':
2577 case 'x':
2578 case 'X':
2579 /*
2580 * Unsigned integer values; octal, decimal or hexadecimal format...
2581 */
2582 stream.flags &= ~PFORMAT_POSITIVE;
2583#if __ENABLE_PRINTF128
2584 argval.__pformat_u128_t.t128.digits[1] = 0LL; /* no sign extend needed */
2585 if( length == PFORMAT_LENGTH_LLONG128 )
2586 argval.__pformat_u128_t.t128 = va_arg( argv, __tI128 );
2587 else
2588#endif
2589 if( length == PFORMAT_LENGTH_LLONG ) {
2590 /*
2591 * with an `unsigned long long' argument, which we
2592 * process `as is'...
2593 */
2594 argval.__pformat_ullong_t = va_arg( argv, unsigned long long );
2595
2596 } else if( length == PFORMAT_LENGTH_LONG ) {
2597 /*
2598 * or with an `unsigned long', which we promote to
2599 * `unsigned long long'...
2600 */
2601 argval.__pformat_ullong_t = va_arg( argv, unsigned long );
2602
2603 } else
2604 { /* or for any other size, which will have been promoted
2605 * to `unsigned int', we select only the appropriately sized
2606 * least significant segment, and again promote to the same
2607 * size as `unsigned long long'...
2608 */
2609 argval.__pformat_ullong_t = va_arg( argv, unsigned int );
2610 if( length == PFORMAT_LENGTH_SHORT )
2611 /*
2612 * from `unsigned short'...
2613 */
2614 argval.__pformat_ullong_t = argval.__pformat_ushort_t;
2615
2616 else if( length == PFORMAT_LENGTH_CHAR )
2617 /*
2618 * or even from `unsigned char'...
2619 */
2620 argval.__pformat_ullong_t = argval.__pformat_uchar_t;
2621 }
2622
2623 /* so we can pass any size of argument to either of two
2624 * common format handlers...
2625 */
2626 if( c == 'u' )
2627 /*
2628 * depending on whether output is to be encoded in
2629 * decimal format...
2630 */
2631 __pformat_int( argval, &stream );
2632
2633 else
2634 /* or in octal or hexadecimal format...
2635 */
2636 __pformat_xint( c, argval, &stream );
2637
2638 goto format_scan;
2639
2640 case 'd':
2641 case 'i':
2642 /*
2643 * Signed integer values; decimal format...
2644 * This is similar to `u', but must process `argval' as signed,
2645 * and be prepared to handle negative numbers.
2646 */
2647 stream.flags |= PFORMAT_NEGATIVE;
2648#if __ENABLE_PRINTF128
2649 if( length == PFORMAT_LENGTH_LLONG128 ) {
2650 argval.__pformat_u128_t.t128 = va_arg( argv, __tI128 );
2651 goto skip_sign; /* skip sign extend */
2652 } else
2653#endif
2654 if( length == PFORMAT_LENGTH_LLONG ){
2655 /*
2656 * The argument is a `long long' type...
2657 */
2658 argval.__pformat_u128_t.t128.digits[0] = va_arg( argv, long long );
2659 } else if( length == PFORMAT_LENGTH_LONG ) {
2660 /*
2661 * or here, a `long' type...
2662 */
2663 argval.__pformat_u128_t.t128.digits[0] = va_arg( argv, long );
2664 } else
2665 { /* otherwise, it's an `int' type...
2666 */
2667 argval.__pformat_u128_t.t128.digits[0] = va_arg( argv, int );
2668 if( length == PFORMAT_LENGTH_SHORT )
2669 /*
2670 * but it was promoted from a `short' type...
2671 */
2672 argval.__pformat_u128_t.t128.digits[0] = argval.__pformat_short_t;
2673 else if( length == PFORMAT_LENGTH_CHAR )
2674 /*
2675 * or even from a `char' type...
2676 */
2677 argval.__pformat_u128_t.t128.digits[0] = argval.__pformat_char_t;
2678 }
2679
2680 /* In any case, all share a common handler...
2681 */
2682 argval.__pformat_u128_t.t128.digits[1] = (argval.__pformat_llong_t < 0) ? -1LL : 0LL;
2683#if __ENABLE_PRINTF128
2684 skip_sign:
2685#endif
2686 __pformat_int( argval, &stream );
2687 goto format_scan;
2688
2689 case 'p':
2690 /*
2691 * Pointer argument; format as hexadecimal, subject to...
2692 */
2693 if( (state == PFORMAT_INIT) && (stream.flags == flags) )
2694 {
2695 /* Here, the user didn't specify any particular
2696 * formatting attributes. We must choose a default
2697 * which will be compatible with Microsoft's (broken)
2698 * scanf() implementation, (i.e. matching the default
2699 * used by MSVCRT's printf(), which appears to resemble
2700 * "%0.8X" for 32-bit pointers); in particular, we MUST
2701 * NOT adopt a GNU-like format resembling "%#x", because
2702 * Microsoft's scanf() will choke on the "0x" prefix.
2703 */
2704 stream.flags |= PFORMAT_ZEROFILL;
2705 stream.precision = 2 * sizeof( uintptr_t );
2706 }
2707 argval.__pformat_u128_t.t128.digits[0] = va_arg( argv, uintptr_t );
2708 argval.__pformat_u128_t.t128.digits[1] = 0;
2709 __pformat_xint( 'x', argval, &stream );
2710 goto format_scan;
2711
2712 case 'e':
2713 /*
2714 * Floating point format, with lower case exponent indicator
2715 * and lower case `inf' or `nan' representation when required;
2716 * select lower case mode, and simply fall through...
2717 */
2718 stream.flags |= PFORMAT_XCASE;
2719
2720 case 'E':
2721 /*
2722 * Floating point format, with upper case exponent indicator
2723 * and upper case `INF' or `NAN' representation when required,
2724 * (or lower case for all of these, on fall through from above);
2725 * select lower case mode, and simply fall through...
2726 */
2727#ifdef __ENABLE_DFP
2728 if( stream.flags & PFORMAT_DECIM32 )
2729 /* Is a 32bit decimal float */
2730 __pformat_efloat_decimal((_Decimal128)va_arg( argv, _Decimal32 ), &stream );
2731 else if( stream.flags & PFORMAT_DECIM64 )
2732 /*
2733 * Is a 64bit decimal float
2734 */
2735 __pformat_efloat_decimal((_Decimal128)va_arg( argv, _Decimal64 ), &stream );
2736 else if( stream.flags & PFORMAT_DECIM128 )
2737 /*
2738 * Is a 128bit decimal float
2739 */
2740 __pformat_efloat_decimal(va_arg( argv, _Decimal128 ), &stream );
2741 else
2742#endif /* __ENABLE_DFP */
2743 if( stream.flags & PFORMAT_LDOUBLE )
2744 /*
2745 * for a `long double' argument...
2746 */
2747 __pformat_efloat( va_arg( argv, long double ), &stream );
2748
2749 else
2750 /* or just a `double', which we promote to `long double',
2751 * so the two may share a common format handler.
2752 */
2753 __pformat_efloat( (long double)(va_arg( argv, double )), &stream );
2754
2755 goto format_scan;
2756
2757 case 'f':
2758 /*
2759 * Fixed point format, using lower case for `inf' and
2760 * `nan', when appropriate; select lower case mode, and
2761 * simply fall through...
2762 */
2763 stream.flags |= PFORMAT_XCASE;
2764
2765 case 'F':
2766 /*
2767 * Fixed case format using upper case, or lower case on
2768 * fall through from above, for `INF' and `NAN'...
2769 */
2770#ifdef __ENABLE_DFP
2771 if( stream.flags & PFORMAT_DECIM32 )
2772 /* Is a 32bit decimal float */
2773 __pformat_float_decimal((_Decimal128)va_arg( argv, _Decimal32 ), &stream );
2774 else if( stream.flags & PFORMAT_DECIM64 )
2775 /*
2776 * Is a 64bit decimal float
2777 */
2778 __pformat_float_decimal((_Decimal128)va_arg( argv, _Decimal64 ), &stream );
2779 else if( stream.flags & PFORMAT_DECIM128 )
2780 /*
2781 * Is a 128bit decimal float
2782 */
2783 __pformat_float_decimal(va_arg( argv, _Decimal128 ), &stream );
2784 else
2785#endif /* __ENABLE_DFP */
2786 if( stream.flags & PFORMAT_LDOUBLE )
2787 /*
2788 * for a `long double' argument...
2789 */
2790 __pformat_float( va_arg( argv, long double ), &stream );
2791
2792 else
2793 /* or just a `double', which we promote to `long double',
2794 * so the two may share a common format handler.
2795 */
2796 __pformat_float( (long double)(va_arg( argv, double )), &stream );
2797
2798 goto format_scan;
2799
2800 case 'g':
2801 /*
2802 * Generalised floating point format, with lower case
2803 * exponent indicator when required; select lower case
2804 * mode, and simply fall through...
2805 */
2806 stream.flags |= PFORMAT_XCASE;
2807
2808 case 'G':
2809 /*
2810 * Generalised floating point format, with upper case,
2811 * or on fall through from above, with lower case exponent
2812 * indicator when required...
2813 */
2814#ifdef __ENABLE_DFP
2815 if( stream.flags & PFORMAT_DECIM32 )
2816 /* Is a 32bit decimal float */
2817 __pformat_gfloat_decimal((_Decimal128)va_arg( argv, _Decimal32 ), &stream );
2818 else if( stream.flags & PFORMAT_DECIM64 )
2819 /*
2820 * Is a 64bit decimal float
2821 */
2822 __pformat_gfloat_decimal((_Decimal128)va_arg( argv, _Decimal64 ), &stream );
2823 else if( stream.flags & PFORMAT_DECIM128 )
2824 /*
2825 * Is a 128bit decimal float
2826 */
2827 __pformat_gfloat_decimal(va_arg( argv, _Decimal128 ), &stream );
2828 else
2829#endif /* __ENABLE_DFP */
2830 if( stream.flags & PFORMAT_LDOUBLE )
2831 /*
2832 * for a `long double' argument...
2833 */
2834 __pformat_gfloat( va_arg( argv, long double ), &stream );
2835
2836 else
2837 /* or just a `double', which we promote to `long double',
2838 * so the two may share a common format handler.
2839 */
2840 __pformat_gfloat( (long double)(va_arg( argv, double )), &stream );
2841
2842 goto format_scan;
2843
2844 case 'a':
2845 /*
2846 * Hexadecimal floating point format, with lower case radix
2847 * and exponent indicators; select the lower case mode, and
2848 * fall through...
2849 */
2850 stream.flags |= PFORMAT_XCASE;
2851
2852 case 'A':
2853 /*
2854 * Hexadecimal floating point format; handles radix and
2855 * exponent indicators in either upper or lower case...
2856 */
2857 if( sizeof( double ) != sizeof( long double ) && stream.flags & PFORMAT_LDOUBLE )
2858 /*
2859 * with a `long double' argument...
2860 */
2861 __pformat_xldouble( va_arg( argv, long double ), &stream );
2862
2863 else
2864 /* or just a `double'.
2865 */
2866 __pformat_xdouble( va_arg( argv, double ), &stream );
2867
2868 goto format_scan;
2869
2870 case 'n':
2871 /*
2872 * Save current output character count...
2873 */
2874 if( length == PFORMAT_LENGTH_CHAR )
2875 /*
2876 * to a signed `char' destination...
2877 */
2878 *va_arg( argv, char * ) = stream.count;
2879
2880 else if( length == PFORMAT_LENGTH_SHORT )
2881 /*
2882 * or to a signed `short'...
2883 */
2884 *va_arg( argv, short * ) = stream.count;
2885
2886 else if( length == PFORMAT_LENGTH_LONG )
2887 /*
2888 * or to a signed `long'...
2889 */
2890 *va_arg( argv, long * ) = stream.count;
2891
2892 else if( length == PFORMAT_LENGTH_LLONG )
2893 /*
2894 * or to a signed `long long'...
2895 */
2896 *va_arg( argv, long long * ) = stream.count;
2897
2898 else
2899 /*
2900 * or, by default, to a signed `int'.
2901 */
2902 *va_arg( argv, int * ) = stream.count;
2903
2904 goto format_scan;
2905
2906 /* Argument length modifiers...
2907 * These are non-terminal; each sets the format parser
2908 * into the PFORMAT_END state, and ends with a `break'.
2909 */
2910 case 'h':
2911 /*
2912 * Interpret the argument as explicitly of a `short'
2913 * or `char' data type, truncated from the standard
2914 * length defined for integer promotion.
2915 */
2916 if( *fmt == 'h' )
2917 {
2918 /* Modifier is `hh'; data type is `char' sized...
2919 * Skip the second `h', and set length accordingly.
2920 */
2921 ++fmt;
2922 length = PFORMAT_LENGTH_CHAR;
2923 }
2924
2925 else
2926 /* Modifier is `h'; data type is `short' sized...
2927 */
2928 length = PFORMAT_LENGTH_SHORT;
2929
2930 state = PFORMAT_END;
2931 break;
2932
2933 case 'j':
2934 /*
2935 * Interpret the argument as being of the same size as
2936 * a `intmax_t' entity...
2937 */
2938 length = __pformat_arg_length( intmax_t );
2939 state = PFORMAT_END;
2940 break;
2941
2942# ifdef _WIN32
2943
2944 case 'I':
2945 /*
2946 * The MSVCRT implementation of the printf() family of
2947 * functions explicitly uses...
2948 */
2949#ifdef __ENABLE_PRINTF128
2950 if( (fmt[0] == '1') && (fmt[1] == '2') && (fmt[2] == '8')){
2951 length = PFORMAT_LENGTH_LLONG128;
2952 fmt += 3;
2953 } else
2954#endif
2955 if( (fmt[0] == '6') && (fmt[1] == '4') )
2956 {
2957 /* I64' instead of `ll',
2958 * when referring to `long long' integer types...
2959 */
2960 length = PFORMAT_LENGTH_LLONG;
2961 fmt += 2;
2962 } else
2963 if( (fmt[0] == '3') && (fmt[1] == '2') )
2964 {
2965 /* and `I32' instead of `l',
2966 * when referring to `long' integer types...
2967 */
2968 length = PFORMAT_LENGTH_LONG;
2969 fmt += 2;
2970 }
2971
2972 else
2973 /* or unqualified `I' instead of `t' or `z',
2974 * when referring to `ptrdiff_t' or `size_t' entities;
2975 * (we will choose to map it to `ptrdiff_t').
2976 */
2977 length = __pformat_arg_length( ptrdiff_t );
2978
2979 state = PFORMAT_END;
2980 break;
2981
2982# endif
2983
2984#ifdef __ENABLE_DFP
2985 case 'H':
2986 stream.flags |= PFORMAT_DECIM32;
2987 state = PFORMAT_END;
2988 break;
2989
2990 case 'D':
2991 /*
2992 * Interpret the argument as explicitly of a
2993 * `_Decimal64' or `_Decimal128' data type.
2994 */
2995 if( *fmt == 'D' )
2996 {
2997 /* Modifier is `DD'; data type is `_Decimal128' sized...
2998 * Skip the second `D', and set length accordingly.
2999 */
3000 ++fmt;
3001 stream.flags |= PFORMAT_DECIM128;
3002 }
3003
3004 else
3005 /* Modifier is `D'; data type is `_Decimal64' sized...
3006 */
3007 stream.flags |= PFORMAT_DECIM64;
3008
3009 state = PFORMAT_END;
3010 break;
3011#endif /* __ENABLE_DFP */
3012 case 'l':
3013 /*
3014 * Interpret the argument as explicitly of a
3015 * `long' or `long long' data type.
3016 */
3017 if( *fmt == 'l' )
3018 {
3019 /* Modifier is `ll'; data type is `long long' sized...
3020 * Skip the second `l', and set length accordingly.
3021 */
3022 ++fmt;
3023 length = PFORMAT_LENGTH_LLONG;
3024 }
3025
3026 else
3027 /* Modifier is `l'; data type is `long' sized...
3028 */
3029 length = PFORMAT_LENGTH_LONG;
3030
3031 state = PFORMAT_END;
3032 break;
3033
3034 case 'L':
3035 /*
3036 * Identify the appropriate argument as a `long double',
3037 * when associated with `%a', `%A', `%e', `%E', `%f', `%F',
3038 * `%g' or `%G' format specifications.
3039 */
3040 stream.flags |= PFORMAT_LDOUBLE;
3041 state = PFORMAT_END;
3042 break;
3043
3044 case 't':
3045 /*
3046 * Interpret the argument as being of the same size as
3047 * a `ptrdiff_t' entity...
3048 */
3049 length = __pformat_arg_length( ptrdiff_t );
3050 state = PFORMAT_END;
3051 break;
3052
3053 case 'z':
3054 /*
3055 * Interpret the argument as being of the same size as
3056 * a `size_t' entity...
3057 */
3058 length = __pformat_arg_length( size_t );
3059 state = PFORMAT_END;
3060 break;
3061
3062 /* Precision indicator...
3063 * May appear once only; it must precede any modifier
3064 * for argument length, or any data type specifier.
3065 */
3066 case '.':
3067 if( state < PFORMAT_GET_PRECISION )
3068 {
3069 /* We haven't seen a precision specification yet,
3070 * so initialise it to zero, (in case no digits follow),
3071 * and accept any following digits as the precision.
3072 */
3073 stream.precision = 0;
3074 width_spec = &stream.precision;
3075 state = PFORMAT_GET_PRECISION;
3076 }
3077
3078 else
3079 /* We've already seen a precision specification,
3080 * so this is just junk; proceed to end game.
3081 */
3082 state = PFORMAT_END;
3083
3084 /* Either way, we must not fall through here.
3085 */
3086 break;
3087
3088 /* Variable field width, or precision specification,
3089 * derived from the argument list...
3090 */
3091 case '*':
3092 /*
3093 * When this appears...
3094 */
3095 if( width_spec
3096 && ((state == PFORMAT_INIT) || (state == PFORMAT_GET_PRECISION)) )
3097 {
3098 /* in proper context; assign to field width
3099 * or precision, as appropriate.
3100 */
3101 if( (*width_spec = va_arg( argv, int )) < 0 )
3102 {
3103 /* Assigned value was negative...
3104 */
3105 if( state == PFORMAT_INIT )
3106 {
3107 /* For field width, this is equivalent to
3108 * a positive value with the `-' flag...
3109 */
3110 stream.flags |= PFORMAT_LJUSTIFY;
3111 stream.width = -stream.width;
3112 }
3113
3114 else
3115 /* while as a precision specification,
3116 * it should simply be ignored.
3117 */
3118 stream.precision = PFORMAT_IGNORE;
3119 }
3120 }
3121
3122 else
3123 /* out of context; give up on width and precision
3124 * specifications for this conversion.
3125 */
3126 state = PFORMAT_END;
3127
3128 /* Mark as processed...
3129 * we must not see `*' again, in this context.
3130 */
3131 width_spec = NULL;
3132 break;
3133
3134 /* Formatting flags...
3135 * Must appear while in the PFORMAT_INIT state,
3136 * and are non-terminal, so again, end with `break'.
3137 */
3138 case '#':
3139 /*
3140 * Select alternate PFORMAT_HASHED output style.
3141 */
3142 if( state == PFORMAT_INIT )
3143 stream.flags |= PFORMAT_HASHED;
3144 break;
3145
3146 case '+':
3147 /*
3148 * Print a leading sign with numeric output,
3149 * for both positive and negative values.
3150 */
3151 if( state == PFORMAT_INIT )
3152 stream.flags |= PFORMAT_POSITIVE;
3153 break;
3154
3155 case '-':
3156 /*
3157 * Select left justification of displayed output
3158 * data, within the output field width, instead of
3159 * the default flush right justification.
3160 */
3161 if( state == PFORMAT_INIT )
3162 stream.flags |= PFORMAT_LJUSTIFY;
3163 break;
3164
3165 case '\'':
3166 /*
3167 * This is an XSI extension to the POSIX standard,
3168 * which we do not support, at present.
3169 */
3170 if (state == PFORMAT_INIT)
3171 {
3172 stream.flags |= PFORMAT_GROUPED; /* $$$$ */
3173 int len; wchar_t rpchr; mbstate_t cstate;
3174 memset (&cstate, 0, sizeof(state));
3175 if ((len = mbrtowc( &rpchr, localeconv()->thousands_sep, 16, &cstate)) > 0)
3176 stream.thousands_chr = rpchr;
3177 stream.thousands_chr_len = len;
3178 }
3179 break;
3180
3181 case '\x20':
3182 /*
3183 * Reserve a single space, within the output field,
3184 * for display of the sign of signed data; this will
3185 * be occupied by the minus sign, if the data value
3186 * is negative, or by a plus sign if the data value
3187 * is positive AND the `+' flag is also present, or
3188 * by a space otherwise. (Technically, this flag
3189 * is redundant, if the `+' flag is present).
3190 */
3191 if( state == PFORMAT_INIT )
3192 stream.flags |= PFORMAT_ADDSPACE;
3193 break;
3194
3195 case '0':
3196 /*
3197 * May represent a flag, to activate the `pad with zeros'
3198 * option, or it may simply be a digit in a width or in a
3199 * precision specification...
3200 */
3201 if( state == PFORMAT_INIT )
3202 {
3203 /* This is the flag usage...
3204 */
3205 stream.flags |= PFORMAT_ZEROFILL;
3206 break;
3207 }
3208
3209 default:
3210 /*
3211 * If we didn't match anything above, then we will check
3212 * for digits, which we may accumulate to generate field
3213 * width or precision specifications...
3214 */
3215 if( (state < PFORMAT_END) && ('9' >= c) && (c >= '0') )
3216 {
3217 if( state == PFORMAT_INIT )
3218 /*
3219 * Initial digits explicitly relate to field width...
3220 */
3221 state = PFORMAT_SET_WIDTH;
3222
3223 else if( state == PFORMAT_GET_PRECISION )
3224 /*
3225 * while those following a precision indicator
3226 * explicitly relate to precision.
3227 */
3228 state = PFORMAT_SET_PRECISION;
3229
3230 if( width_spec )
3231 {
3232 /* We are accepting a width or precision specification...
3233 */
3234 if( *width_spec < 0 )
3235 /*
3236 * and accumulation hasn't started yet; we simply
3237 * initialise the accumulator with the current digit
3238 * value, converting from ASCII to decimal.
3239 */
3240 *width_spec = c - '0';
3241
3242 else
3243 /* Accumulation has already started; we perform a
3244 * `leftwise decimal digit shift' on the accumulator,
3245 * (i.e. multiply it by ten), then add the decimal
3246 * equivalent value of the current digit.
3247 */
3248 *width_spec = *width_spec * 10 + c - '0';
3249 }
3250 }
3251
3252 else
3253 {
3254 /* We found a digit out of context, or some other character
3255 * with no designated meaning; reject this format specification,
3256 * backtrack, and emit it as literal text...
3257 */
3258 fmt = backtrack;
3259 #ifndef __BUILD_WIDEAPI
3260 __pformat_putc( '%', &stream );
3261 #else
3262 stream.width = stream.precision = PFORMAT_IGNORE;
3263 __pformat_wputchars( L"%", 1, &stream );
3264 #endif
3265 goto format_scan;
3266 }
3267 }
3268 }
3269 }
3270
3271 else
3272 /* We just parsed a character which is not included within any format
3273 * specification; we simply emit it as a literal.
3274 */
3275 #ifndef __BUILD_WIDEAPI
3276 __pformat_putc( c, &stream );
3277 #else
3278 if (literal_string_start == NULL)
3279 literal_string_start = fmt - 1;
3280 #endif
3281 }
3282
3283 /* When we have fully dispatched the format string, the return value is the
3284 * total number of bytes we transferred to the output destination.
3285 */
3286#ifdef __BUILD_WIDEAPI
3287 if (literal_string_start)
3288 {
3289 stream.width = stream.precision = PFORMAT_IGNORE;
3290 __pformat_wputchars( literal_string_start, fmt - literal_string_start - 1, &stream );
3291 }
3292#endif
3293
3294 return stream.count;
3295}
3296
3297/* $RCSfile: pformat.c,v $Revision: 1.9 $: end of file */
3298
lib/libc/mingw/stdio/mingw_pformat.h deleted-99
......@@ -1,99 +0,0 @@
1#ifndef PFORMAT_H
2/*
3 * pformat.h
4 *
5 * $Id: pformat.h,v 1.1 2008/07/28 23:24:20 keithmarshall Exp $
6 *
7 * A private header, defining the `pformat' API; it is to be included
8 * in each compilation unit implementing any of the `printf' family of
9 * functions, but serves no useful purpose elsewhere.
10 *
11 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
12 *
13 * This is free software. You may redistribute and/or modify it as you
14 * see fit, without restriction of copyright.
15 *
16 * This software is provided "as is", in the hope that it may be useful,
17 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
18 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
19 * time will the author accept any form of liability for any damages,
20 * however caused, resulting from the use of this software.
21 */
22#define PFORMAT_H
23
24/* The following macros reproduce definitions from _mingw.h,
25 * so that compilation will not choke, if using any compiler
26 * other than the MinGW implementation of GCC.
27 */
28#ifndef __cdecl
29# ifdef __GNUC__
30# define __cdecl __attribute__((__cdecl__))
31# else
32# define __cdecl
33# endif
34#endif
35
36#ifndef __MINGW_GNUC_PREREQ
37# if defined __GNUC__ && defined __GNUC_MINOR__
38# define __MINGW_GNUC_PREREQ( major, minor )\
39 (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
40# else
41# define __MINGW_GNUC_PREREQ( major, minor )
42# endif
43#endif
44
45#ifndef __MINGW_NOTHROW
46# if __MINGW_GNUC_PREREQ( 3, 3 )
47# define __MINGW_NOTHROW __attribute__((__nothrow__))
48# else
49# define __MINGW_NOTHROW
50# endif
51#endif
52
53#ifdef __BUILD_WIDEAPI
54#define APICHAR wchar_t
55#else
56#define APICHAR char
57#endif
58
59/* The following are the declarations specific to the `pformat' API...
60 */
61#define PFORMAT_TO_FILE 0x2000
62#define PFORMAT_NOLIMIT 0x4000
63
64#if defined(__MINGW32__) || defined(__MINGW64__)
65 /*
66 * Map MinGW specific function names, for use in place of the generic
67 * implementation defined equivalent function names.
68 */
69#ifdef __BUILD_WIDEAPI
70# define __pformat __mingw_wpformat
71#define __fputc(X,STR) fputwc((wchar_t) (X), (STR))
72
73# define __printf __mingw_wprintf
74# define __fprintf __mingw_fwprintf
75# define __sprintf __mingw_swprintf
76# define __snprintf __mingw_snwprintf
77
78# define __vprintf __mingw_vwprintf
79# define __vfprintf __mingw_vfwprintf
80# define __vsprintf __mingw_vswprintf
81# define __vsnprintf __mingw_vsnwprintf
82#else
83# define __pformat __mingw_pformat
84#define __fputc(X,STR) fputc((X), (STR))
85
86# define __printf __mingw_printf
87# define __fprintf __mingw_fprintf
88# define __sprintf __mingw_sprintf
89# define __snprintf __mingw_snprintf
90
91# define __vprintf __mingw_vprintf
92# define __vfprintf __mingw_vfprintf
93# define __vsprintf __mingw_vsprintf
94# define __vsnprintf __mingw_vsnprintf
95#endif /* __BUILD_WIDEAPI */
96#endif
97
98int __cdecl __pformat(int, void *, int, const APICHAR *, va_list) __MINGW_NOTHROW;
99#endif /* !defined PFORMAT_H */
lib/libc/mingw/stdio/mingw_pformatw.c deleted-9
......@@ -1,9 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7
8#include "mingw_pformat.c"
9
lib/libc/mingw/stdio/mingw_printf.c deleted-59
......@@ -1,59 +0,0 @@
1/* printf.c
2 *
3 * $Id: printf.c,v 1.1 2008/08/11 22:41:55 keithmarshall Exp $
4 *
5 * Provides an implementation of the "printf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, whence it may replace the Microsoft
9 * function of the same name.
10 *
11 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
12 *
13 * This implementation of "printf" will normally be invoked by calling
14 * "__mingw_printf()" in preference to a direct reference to "printf()"
15 * itself; this leaves the MSVCRT implementation as the default, which
16 * will be deployed when user code invokes "print()". Users who then
17 * wish to use this implementation may either call "__mingw_printf()"
18 * directly, or may use conditional preprocessor defines, to redirect
19 * references to "printf()" to "__mingw_printf()".
20 *
21 * Compiling this module with "-D INSTALL_AS_DEFAULT" will change this
22 * recommended convention, such that references to "printf()" in user
23 * code will ALWAYS be redirected to "__mingw_printf()"; if this option
24 * is adopted, then users wishing to use the MSVCRT implementation of
25 * "printf()" will be forced to use a "back-door" mechanism to do so.
26 * Such a "back-door" mechanism is provided with MinGW, allowing the
27 * MSVCRT implementation to be called as "__msvcrt_printf()"; however,
28 * since users may not expect this behaviour, a standard libmingwex.a
29 * installation does not employ this option.
30 *
31 *
32 * This is free software. You may redistribute and/or modify it as you
33 * see fit, without restriction of copyright.
34 *
35 * This software is provided "as is", in the hope that it may be useful,
36 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
37 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
38 * time will the author accept any form of liability for any damages,
39 * however caused, resulting from the use of this software.
40 *
41 */
42#include <stdio.h>
43#include <stdarg.h>
44
45#include "mingw_pformat.h"
46
47int __cdecl __printf(const APICHAR *, ...) __MINGW_NOTHROW;
48
49int __cdecl __printf(const APICHAR *fmt, ...)
50{
51 register int retval;
52 va_list argv; va_start( argv, fmt );
53 _lock_file( stdout );
54 retval = __pformat( PFORMAT_TO_FILE | PFORMAT_NOLIMIT, stdout, 0, fmt, argv );
55 _unlock_file( stdout );
56 va_end( argv );
57 return retval;
58}
59
lib/libc/mingw/stdio/mingw_printfw.c deleted-9
......@@ -1,9 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7
8#include "mingw_printf.c"
9
lib/libc/mingw/stdio/mingw_scanf.c deleted-28
......@@ -1,28 +0,0 @@
1#include <stdarg.h>
2#include <stdio.h>
3#include <stdlib.h>
4
5extern int __mingw_vfscanf (FILE *stream, const char *format, va_list argp);
6
7int __mingw_scanf (const char *format, ...);
8int __mingw_vscanf (const char *format, va_list argp);
9
10int
11__mingw_scanf (const char *format, ...)
12{
13 va_list argp;
14 int r;
15
16 va_start (argp, format);
17 r = __mingw_vfscanf (stdin, format, argp);
18 va_end (argp);
19
20 return r;
21}
22
23int
24__mingw_vscanf (const char *format, va_list argp)
25{
26 return __mingw_vfscanf (stdin, format, argp);
27}
28
lib/libc/mingw/stdio/mingw_snprintf.c deleted-40
......@@ -1,40 +0,0 @@
1/* snprintf.c
2 *
3 * $Id: snprintf.c,v 1.3 2008/07/28 23:24:20 keithmarshall Exp $
4 *
5 * Provides an implementation of the "snprintf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, replacing the redirection through
9 * libmoldnames.a, to the MSVCRT standard "_snprintf" function; (the
10 * standard MSVCRT function remains available, and may be invoked
11 * directly, using this fully qualified form of its name).
12 *
13 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
14 *
15 * This is free software. You may redistribute and/or modify it as you
16 * see fit, without restriction of copyright.
17 *
18 * This software is provided "as is", in the hope that it may be useful,
19 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
20 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
21 * time will the author accept any form of liability for any damages,
22 * however caused, resulting from the use of this software.
23 *
24 */
25
26#include <stdio.h>
27#include <stdarg.h>
28
29#include "mingw_pformat.h"
30
31int __cdecl __snprintf (APICHAR *, size_t, const APICHAR *fmt, ...) __MINGW_NOTHROW;
32int __cdecl __vsnprintf (APICHAR *, size_t, const APICHAR *fmt, va_list) __MINGW_NOTHROW;
33
34int __cdecl __snprintf(APICHAR *buf, size_t length, const APICHAR *fmt, ...)
35{
36 va_list argv; va_start( argv, fmt );
37 register int retval = __vsnprintf( buf, length, fmt, argv );
38 va_end( argv );
39 return retval;
40}
lib/libc/mingw/stdio/mingw_snprintfw.c deleted-9
......@@ -1,9 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7
8#include "mingw_snprintf.c"
9
lib/libc/mingw/stdio/mingw_sprintf.c deleted-56
......@@ -1,56 +0,0 @@
1/* sprintf.c
2 *
3 * $Id: sprintf.c,v 1.1 2008/08/11 22:41:55 keithmarshall Exp $
4 *
5 * Provides an implementation of the "sprintf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, whence it may replace the Microsoft
9 * function of the same name.
10 *
11 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
12 *
13 * This implementation of "sprintf" will normally be invoked by calling
14 * "__mingw_sprintf()" in preference to a direct reference to "sprintf()"
15 * itself; this leaves the MSVCRT implementation as the default, which
16 * will be deployed when user code invokes "sprint()". Users who then
17 * wish to use this implementation may either call "__mingw_sprintf()"
18 * directly, or may use conditional preprocessor defines, to redirect
19 * references to "sprintf()" to "__mingw_sprintf()".
20 *
21 * Compiling this module with "-D INSTALL_AS_DEFAULT" will change this
22 * recommended convention, such that references to "sprintf()" in user
23 * code will ALWAYS be redirected to "__mingw_sprintf()"; if this option
24 * is adopted, then users wishing to use the MSVCRT implementation of
25 * "sprintf()" will be forced to use a "back-door" mechanism to do so.
26 * Such a "back-door" mechanism is provided with MinGW, allowing the
27 * MSVCRT implementation to be called as "__msvcrt_sprintf()"; however,
28 * since users may not expect this behaviour, a standard libmingwex.a
29 * installation does not employ this option.
30 *
31 *
32 * This is free software. You may redistribute and/or modify it as you
33 * see fit, without restriction of copyright.
34 *
35 * This software is provided "as is", in the hope that it may be useful,
36 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
37 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
38 * time will the author accept any form of liability for any damages,
39 * however caused, resulting from the use of this software.
40 *
41 */
42#include <stdio.h>
43#include <stdarg.h>
44
45#include "mingw_pformat.h"
46
47int __cdecl __sprintf (APICHAR *, const APICHAR *, ...) __MINGW_NOTHROW;
48
49int __cdecl __sprintf(APICHAR *buf, const APICHAR *fmt, ...)
50{
51 register int retval;
52 va_list argv; va_start( argv, fmt );
53 buf[retval = __pformat( PFORMAT_NOLIMIT, buf, 0, fmt, argv )] = '\0';
54 va_end( argv );
55 return retval;
56}
lib/libc/mingw/stdio/mingw_sprintfw.c deleted-10
......@@ -1,10 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7#define _CRT_NON_CONFORMING_SWPRINTFS 1
8
9#include "mingw_sprintf.c"
10
lib/libc/mingw/stdio/mingw_sscanf.c deleted-20
......@@ -1,20 +0,0 @@
1#include <stdarg.h>
2#include <stdlib.h>
3
4extern int __mingw_vsscanf (const char *buf, const char *format, va_list argp);
5
6int __mingw_sscanf (const char *buf, const char *format, ...);
7
8int
9__mingw_sscanf (const char *buf, const char *format, ...)
10{
11 va_list argp;
12 int r;
13
14 va_start (argp, format);
15 r = __mingw_vsscanf (buf, format, argp);
16 va_end (argp);
17
18 return r;
19}
20
lib/libc/mingw/stdio/mingw_swscanf.c deleted-20
......@@ -1,20 +0,0 @@
1#include <stdarg.h>
2#include <stdlib.h>
3
4extern int __mingw_vswscanf (const wchar_t *buf, const wchar_t *format, va_list argp);
5
6int __mingw_swscanf (const wchar_t *buf, const wchar_t *format, ...);
7
8int
9__mingw_swscanf (const wchar_t *buf, const wchar_t *format, ...)
10{
11 va_list argp;
12 int r;
13
14 va_start (argp, format);
15 r = __mingw_vswscanf (buf, format, argp);
16 va_end (argp);
17
18 return r;
19}
20
lib/libc/mingw/stdio/mingw_vasprintf.c deleted-25
......@@ -1,25 +0,0 @@
1#define _GNU_SOURCE
2#define __CRT__NO_INLINE
3
4#include <stdio.h>
5#include <stdlib.h>
6#include <stdarg.h>
7
8int __mingw_vasprintf(char ** __restrict__ ret,
9 const char * __restrict__ format,
10 va_list ap) {
11 int len;
12 /* Get Length */
13 len = __mingw_vsnprintf(NULL,0,format,ap);
14 if (len < 0) return -1;
15 /* +1 for \0 terminator. */
16 *ret = malloc(len + 1);
17 /* Check malloc fail*/
18 if (!*ret) return -1;
19 /* Write String */
20 __mingw_vsnprintf(*ret,len+1,format,ap);
21 /* Terminate explicitly */
22 (*ret)[len] = '\0';
23 return len;
24}
25
lib/libc/mingw/stdio/mingw_vfprintf.c deleted-58
......@@ -1,58 +0,0 @@
1/* vfprintf.c
2 *
3 * $Id: vfprintf.c,v 1.1 2008/08/11 22:41:55 keithmarshall Exp $
4 *
5 * Provides an implementation of the "vfprintf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, whence it may replace the Microsoft
9 * function of the same name.
10 *
11 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
12 *
13 * This implementation of "vfprintf" will normally be invoked by calling
14 * "__mingw_vfprintf()" in preference to a direct reference to "vfprintf()"
15 * itself; this leaves the MSVCRT implementation as the default, which
16 * will be deployed when user code invokes "vfprint()". Users who then
17 * wish to use this implementation may either call "__mingw_vfprintf()"
18 * directly, or may use conditional preprocessor defines, to redirect
19 * references to "vfprintf()" to "__mingw_vfprintf()".
20 *
21 * Compiling this module with "-D INSTALL_AS_DEFAULT" will change this
22 * recommended convention, such that references to "vfprintf()" in user
23 * code will ALWAYS be redirected to "__mingw_vfprintf()"; if this option
24 * is adopted, then users wishing to use the MSVCRT implementation of
25 * "vfprintf()" will be forced to use a "back-door" mechanism to do so.
26 * Such a "back-door" mechanism is provided with MinGW, allowing the
27 * MSVCRT implementation to be called as "__msvcrt_vfprintf()"; however,
28 * since users may not expect this behaviour, a standard libmingwex.a
29 * installation does not employ this option.
30 *
31 *
32 * This is free software. You may redistribute and/or modify it as you
33 * see fit, without restriction of copyright.
34 *
35 * This software is provided "as is", in the hope that it may be useful,
36 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
37 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
38 * time will the author accept any form of liability for any damages,
39 * however caused, resulting from the use of this software.
40 *
41 */
42#include <stdio.h>
43#include <stdarg.h>
44
45#include "mingw_pformat.h"
46
47int __cdecl __vfprintf (FILE *, const APICHAR *, va_list) __MINGW_NOTHROW;
48
49int __cdecl __vfprintf(FILE *stream, const APICHAR *fmt, va_list argv)
50{
51 register int retval;
52
53 _lock_file( stream );
54 retval = __pformat( PFORMAT_TO_FILE | PFORMAT_NOLIMIT, stream, 0, fmt, argv );
55 _unlock_file( stream );
56
57 return retval;
58}
lib/libc/mingw/stdio/mingw_vfprintfw.c deleted-9
......@@ -1,9 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7
8#include "mingw_vfprintf.c"
9
lib/libc/mingw/stdio/mingw_vfscanf.c deleted-1632
......@@ -1,1632 +0,0 @@
1/*
2 This Software is provided under the Zope Public License (ZPL) Version 2.1.
3
4 Copyright (c) 2011 by the mingw-w64 project
5
6 See the AUTHORS file for the list of contributors to the mingw-w64 project.
7
8 This license has been certified as open source. It has also been designated
9 as GPL compatible by the Free Software Foundation (FSF).
10
11 Redistribution and use in source and binary forms, with or without
12 modification, are permitted provided that the following conditions are met:
13
14 1. Redistributions in source code must retain the accompanying copyright
15 notice, this list of conditions, and the following disclaimer.
16 2. Redistributions in binary form must reproduce the accompanying
17 copyright notice, this list of conditions, and the following disclaimer
18 in the documentation and/or other materials provided with the
19 distribution.
20 3. Names of the copyright holders must not be used to endorse or promote
21 products derived from this software without prior written permission
22 from the copyright holders.
23 4. The right to distribute this software or to use it for any purpose does
24 not give you the right to use Servicemarks (sm) or Trademarks (tm) of
25 the copyright holders. Use of them is covered by separate agreement
26 with the copyright holders.
27 5. If any files are modified, you must cause the modified files to carry
28 prominent notices stating that you changed the files and the date of
29 any change.
30
31 Disclaimer
32
33 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
34 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
36 EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
37 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
38 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
39 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
40 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
41 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
42 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43*/
44
45#define __LARGE_MBSTATE_T
46
47#include <limits.h>
48#include <stddef.h>
49#include <stdarg.h>
50#include <stdio.h>
51#include <stdint.h>
52#include <stdlib.h>
53#include <string.h>
54#include <wchar.h>
55#include <ctype.h>
56#include <wctype.h>
57#include <locale.h>
58#include <errno.h>
59
60/* Helper flags for conversion. */
61#define IS_C 0x0001
62#define IS_S 0x0002
63#define IS_L 0x0004
64#define IS_LL 0x0008
65#define IS_SIGNED_NUM 0x0010
66#define IS_POINTER 0x0020
67#define IS_HEX_FLOAT 0x0040
68#define IS_SUPPRESSED 0x0080
69#define USE_GROUP 0x0100
70#define USE_GNU_ALLOC 0x0200
71#define USE_POSIX_ALLOC 0x0400
72
73#define IS_ALLOC_USED (USE_GNU_ALLOC | USE_POSIX_ALLOC)
74
75/* internal stream structure with back-buffer. */
76typedef struct _IFP
77{
78 __extension__ union {
79 void *fp;
80 const char *str;
81 };
82 int bch[1024];
83 int is_string : 1;
84 int back_top;
85 int seen_eof : 1;
86} _IFP;
87
88static void *
89get_va_nth (va_list argp, unsigned int n)
90{
91 va_list ap;
92 if (!n) abort ();
93 va_copy (ap, argp);
94 while (--n > 0)
95 (void) va_arg(ap, void *);
96 return va_arg (ap, void *);
97}
98
99static void
100optimize_alloc (char **p, char *end, size_t alloc_sz)
101{
102 size_t need_sz;
103 char *h;
104
105 if (!p || !*p)
106 return;
107
108 need_sz = end - *p;
109 if (need_sz == alloc_sz)
110 return;
111
112 if ((h = (char *) realloc (*p, need_sz)) != NULL)
113 *p = h;
114}
115
116static void
117back_ch (int c, _IFP *s, size_t *rin, int not_eof)
118{
119 if (!not_eof && c == EOF)
120 return;
121 if (s->is_string == 0)
122 {
123 FILE *fp = s->fp;
124 ungetc (c, fp);
125 rin[0] -= 1;
126 return;
127 }
128 rin[0] -= 1;
129 s->bch[s->back_top] = c;
130 s->back_top += 1;
131}
132
133static int
134in_ch (_IFP *s, size_t *rin)
135{
136 int r;
137 if (s->back_top)
138 {
139 s->back_top -= 1;
140 r = s->bch[s->back_top];
141 rin[0] += 1;
142 }
143 else if (s->seen_eof)
144 {
145 return EOF;
146 }
147 else if (s->is_string)
148 {
149 const char *ps = s->str;
150 r = ((int) *ps) & 0xff;
151 ps++;
152 if (r != 0)
153 {
154 rin[0] += 1;
155 s->str = ps;
156 return r;
157 }
158 s->seen_eof = 1;
159 return EOF;
160 }
161 else
162 {
163 FILE *fp = (FILE *) s->fp;
164 r = getc (fp);
165 if (r != EOF)
166 rin[0] += 1;
167 else s->seen_eof = 1;
168 }
169 return r;
170}
171
172static int
173match_string (_IFP *s, size_t *rin, int *c, const char *str)
174{
175 int ch = *c;
176
177 if (*str == 0)
178 return 1;
179
180 if (*str != (char) tolower (ch))
181 return 0;
182 ++str;
183 while (*str != 0)
184 {
185 if ((ch = in_ch (s, rin)) == EOF)
186 {
187 c[0] = ch;
188 return 0;
189 }
190
191 if (*str != (char) tolower (ch))
192 {
193 c[0] = ch;
194 return 0;
195 }
196 ++str;
197 }
198 c[0] = ch;
199 return 1;
200}
201
202struct gcollect
203{
204 size_t count;
205 struct gcollect *next;
206 char **ptrs[32];
207};
208
209static void
210release_ptrs (struct gcollect **pt, char **wbuf)
211{
212 struct gcollect *pf;
213 size_t cnt;
214
215 if (wbuf)
216 {
217 free (*wbuf);
218 *wbuf = NULL;
219 }
220 if (!pt || (pf = *pt) == NULL)
221 return;
222 while (pf != NULL)
223 {
224 struct gcollect *pf_sv = pf;
225 for (cnt = 0; cnt < pf->count; ++cnt)
226 {
227 free (*pf->ptrs[cnt]);
228 *pf->ptrs[cnt] = NULL;
229 }
230 pf = pf->next;
231 free (pf_sv);
232 }
233 *pt = NULL;
234}
235
236static int
237cleanup_return (int rval, struct gcollect **pfree, char **strp, char **wbuf)
238{
239 if (rval == EOF)
240 release_ptrs (pfree, wbuf);
241 else
242 {
243 if (pfree)
244 {
245 struct gcollect *pf = *pfree, *pf_sv;
246 while (pf != NULL)
247 {
248 pf_sv = pf;
249 pf = pf->next;
250 free (pf_sv);
251 }
252 *pfree = NULL;
253 }
254 if (strp != NULL)
255 {
256 free (*strp);
257 *strp = NULL;
258 }
259 if (wbuf)
260 {
261 free (*wbuf);
262 *wbuf = NULL;
263 }
264 }
265 return rval;
266}
267
268static struct gcollect *
269resize_gcollect (struct gcollect *pf)
270{
271 struct gcollect *np;
272 if (pf && pf->count < 32)
273 return pf;
274 np = malloc (sizeof (struct gcollect));
275 np->count = 0;
276 np->next = pf;
277 return np;
278}
279
280static char *
281resize_wbuf (size_t wpsz, size_t *wbuf_max_sz, char *old)
282{
283 char *wbuf;
284 size_t nsz;
285 if (*wbuf_max_sz != wpsz)
286 return old;
287 nsz = (256 > (2 * wbuf_max_sz[0]) ? 256 : (2 * wbuf_max_sz[0]));
288 if (!old)
289 wbuf = (char *) malloc (nsz);
290 else
291 wbuf = (char *) realloc (old, nsz);
292 if (!wbuf)
293 {
294 if (old)
295 free (old);
296 }
297 else
298 *wbuf_max_sz = nsz;
299 return wbuf;
300}
301
302static int
303__mingw_sformat (_IFP *s, const char *format, va_list argp)
304{
305 const char *f = format;
306 struct gcollect *gcollect = NULL;
307 size_t read_in = 0, wbuf_max_sz = 0, cnt;
308 ssize_t str_sz = 0;
309 char *str = NULL, **pstr = NULL, *wbuf = NULL;
310 wchar_t *wstr = NULL;
311 int rval = 0, c = 0, ignore_ws = 0;
312 va_list arg;
313 unsigned char fc;
314 unsigned int npos;
315 int width, flags, base = 0, errno_sv;
316 size_t wbuf_cur_sz, read_in_sv, new_sz, n;
317 char seen_dot, seen_exp, is_neg, not_in;
318 char *tmp_wbuf_ptr, buf[MB_LEN_MAX];
319 const char *lc_decimal_point, *lc_thousands_sep;
320 mbstate_t state, cstate;
321 union {
322 unsigned long long ull;
323 unsigned long ul;
324 long long ll;
325 long l;
326 } cv_val;
327
328 arg = argp;
329
330 if (!s || s->fp == NULL || !format)
331 {
332 errno = EINVAL;
333 return EOF;
334 }
335
336 memset (&state, 0, sizeof (state));
337
338 lc_decimal_point = localeconv()->decimal_point;
339 lc_thousands_sep = localeconv()->thousands_sep;
340 if (lc_thousands_sep != NULL && *lc_thousands_sep == 0)
341 lc_thousands_sep = NULL;
342
343 while (*f != 0)
344 {
345 if (!isascii ((unsigned char) *f))
346 {
347 int len;
348
349 if ((len = mbrlen (f, strlen (f), &state)) > 0)
350 {
351 do
352 {
353 if ((c = in_ch (s, &read_in)) == EOF || c != (unsigned char) *f++)
354 {
355 back_ch (c, s, &read_in, 1);
356 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
357 }
358 }
359 while (--len > 0);
360
361 continue;
362 }
363 }
364
365 fc = *f++;
366 if (fc != '%')
367 {
368 if (isspace (fc))
369 ignore_ws = 1;
370 else
371 {
372 if ((c = in_ch (s, &read_in)) == EOF)
373 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
374
375 if (ignore_ws)
376 {
377 ignore_ws = 0;
378 if (isspace (c))
379 {
380 do
381 {
382 if ((c = in_ch (s, &read_in)) == EOF)
383 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
384 }
385 while (isspace (c));
386 }
387 }
388
389 if (c != fc)
390 {
391 back_ch (c, s, &read_in, 0);
392 return cleanup_return (rval, &gcollect, pstr, &wbuf);
393 }
394 }
395
396 continue;
397 }
398
399 width = flags = 0;
400 npos = 0;
401 wbuf_cur_sz = 0;
402
403 if (isdigit ((unsigned char) *f))
404 {
405 const char *svf = f;
406 npos = (unsigned char) *f++ - '0';
407 while (isdigit ((unsigned char) *f))
408 npos = npos * 10 + ((unsigned char) *f++ - '0');
409 if (*f != '$')
410 {
411 npos = 0;
412 f = svf;
413 }
414 else
415 f++;
416 }
417
418 do
419 {
420 if (*f == '*')
421 flags |= IS_SUPPRESSED;
422 else if (*f == '\'')
423 {
424 if (lc_thousands_sep)
425 flags |= USE_GROUP;
426 }
427 else if (*f == 'I')
428 {
429 /* we don't support locale's digits (i18N), but ignore it for now silently. */
430 ;
431#ifdef _WIN32
432 if (f[1] == '6' && f[2] == '4')
433 {
434 flags |= IS_LL | IS_L;
435 f += 2;
436 }
437 else if (f[1] == '3' && f[2] == '2')
438 {
439 flags |= IS_L;
440 f += 2;
441 }
442 else
443 {
444#ifdef _WIN64
445 flags |= IS_LL | IS_L;
446#else
447 flags |= IS_L;
448#endif
449 }
450#endif
451 }
452 else
453 break;
454 ++f;
455 }
456 while (1);
457
458 while (isdigit ((unsigned char) *f))
459 width = width * 10 + ((unsigned char) *f++ - '0');
460
461 if (!width)
462 width = -1;
463
464 switch (*f)
465 {
466 case 'h':
467 ++f;
468 flags |= (*f == 'h' ? IS_C : IS_S);
469 if (*f == 'h')
470 ++f;
471 break;
472 case 'l':
473 ++f;
474 flags |= (*f == 'l' ? IS_LL : 0) | IS_L;
475 if (*f == 'l')
476 ++f;
477 break;
478 case 'q': case 'L':
479 ++f;
480 flags |= IS_LL | IS_L;
481 break;
482 case 'a':
483 if (f[1] != 's' && f[1] != 'S' && f[1] != '[')
484 break;
485 ++f;
486 flags |= USE_GNU_ALLOC;
487 break;
488 case 'm':
489 flags |= USE_POSIX_ALLOC;
490 ++f;
491 if (*f == 'l')
492 {
493 flags |= IS_L;
494 f++;
495 }
496 break;
497 case 'z':
498#ifdef _WIN64
499 flags |= IS_LL | IS_L;
500#else
501 flags |= IS_L;
502#endif
503 ++f;
504 break;
505 case 'j':
506 if (sizeof (uintmax_t) > sizeof (unsigned long))
507 flags |= IS_LL;
508 else if (sizeof (uintmax_t) > sizeof (unsigned int))
509 flags |= IS_L;
510 ++f;
511 break;
512 case 't':
513#ifdef _WIN64
514 flags |= IS_LL;
515#else
516 flags |= IS_L;
517#endif
518 ++f;
519 break;
520 case 0:
521 return cleanup_return (rval, &gcollect, pstr, &wbuf);
522 default:
523 break;
524 }
525
526 if (*f == 0)
527 return cleanup_return (rval, &gcollect, pstr, &wbuf);
528
529 fc = *f++;
530 if (ignore_ws || (fc != '[' && fc != 'c' && fc != 'C' && fc != 'n'))
531 {
532 errno_sv = errno;
533 errno = 0;
534 do
535 {
536 if ((c == EOF || (c = in_ch (s, &read_in)) == EOF)
537 && errno == EINTR)
538 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
539 }
540 while (isspace (c));
541
542 ignore_ws = 0;
543 errno = errno_sv;
544 back_ch (c, s, &read_in, 0);
545 }
546
547 switch (fc)
548 {
549 case 'c':
550 if ((flags & IS_L) != 0)
551 fc = 'C';
552 break;
553 case 's':
554 if ((flags & IS_L) != 0)
555 fc = 'S';
556 break;
557 }
558
559 switch (fc)
560 {
561 case '%':
562 if ((c = in_ch (s, &read_in)) == EOF)
563 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
564 if (c != fc)
565 {
566 back_ch (c, s, &read_in, 1);
567 return cleanup_return (rval, &gcollect, pstr, &wbuf);
568 }
569 break;
570
571 case 'n':
572 if ((flags & IS_SUPPRESSED) == 0)
573 {
574 if ((flags & IS_LL) != 0)
575 *(npos != 0 ? (long long *) get_va_nth (argp, npos) : va_arg (arg, long long *)) = read_in;
576 else if ((flags & IS_L) != 0)
577 *(npos != 0 ? (long *) get_va_nth (argp, npos) : va_arg (arg, long *)) = read_in;
578 else if ((flags & IS_S) != 0)
579 *(npos != 0 ? (short *) get_va_nth (argp, npos) : va_arg (arg, short *)) = read_in;
580 else if ((flags & IS_C) != 0)
581 *(npos != 0 ? (char *) get_va_nth (argp, npos) : va_arg (arg, char *)) = read_in;
582 else
583 *(npos != 0 ? (int *) get_va_nth (argp, npos) : va_arg (arg, int *)) = read_in;
584 }
585 break;
586
587 case 'c':
588 if (width == -1)
589 width = 1;
590
591 if ((flags & IS_SUPPRESSED) == 0)
592 {
593 if ((flags & IS_ALLOC_USED) != 0)
594 {
595 if (npos != 0)
596 pstr = (char **) get_va_nth (argp, npos);
597 else
598 pstr = va_arg (arg, char **);
599
600 if (!pstr)
601 return cleanup_return (rval, &gcollect, pstr, &wbuf);
602
603 str_sz = (width > 1024 ? 1024 : width);
604 if ((str = *pstr = (char *) malloc (str_sz)) == NULL)
605 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
606
607 gcollect = resize_gcollect (gcollect);
608 gcollect->ptrs[gcollect->count++] = pstr;
609 }
610 else
611 {
612 if (npos != 0)
613 str = (char *) get_va_nth (argp, npos);
614 else
615 str = va_arg (arg, char *);
616 if (!str)
617 return cleanup_return (rval, &gcollect, pstr, &wbuf);
618 }
619 }
620
621 if ((c = in_ch (s, &read_in)) == EOF)
622 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
623
624 if ((flags & IS_SUPPRESSED) == 0)
625 {
626 do
627 {
628 if ((flags & IS_ALLOC_USED) != 0 && str == (*pstr + str_sz))
629 {
630 new_sz = str_sz + (str_sz >= width ? width - 1 : str_sz);
631 while ((str = (char *) realloc (*pstr, new_sz)) == NULL
632 && new_sz > (size_t) (str_sz + 1))
633 new_sz = str_sz + 1;
634 if (!str)
635 {
636 release_ptrs (&gcollect, &wbuf);
637 return EOF;
638 }
639 *pstr = str;
640 str += str_sz;
641 str_sz = new_sz;
642 }
643 *str++ = c;
644 }
645 while (--width > 0 && (c = in_ch (s, &read_in)) != EOF);
646 }
647 else
648 while (--width > 0 && (c = in_ch (s, &read_in)) != EOF);
649
650 if ((flags & IS_SUPPRESSED) == 0)
651 {
652 optimize_alloc (pstr, str, str_sz);
653 pstr = NULL;
654 ++rval;
655 }
656
657 break;
658
659 case 'C':
660 if (width == -1)
661 width = 1;
662
663 if ((flags & IS_SUPPRESSED) == 0)
664 {
665 if ((flags & IS_ALLOC_USED) != 0)
666 {
667 if (npos != 0)
668 pstr = (char **) get_va_nth (argp, npos);
669 else
670 pstr = va_arg (arg, char **);
671
672 if (!pstr)
673 return cleanup_return (rval, &gcollect, pstr, &wbuf);
674 str_sz = (width > 1024 ? 1024 : width);
675 *pstr = (char *) malloc (str_sz * sizeof (wchar_t));
676 if ((wstr = (wchar_t *) *pstr) == NULL)
677 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
678 gcollect = resize_gcollect (gcollect);
679 gcollect->ptrs[gcollect->count++] = pstr;
680 }
681 else
682 {
683 if (npos != 0)
684 wstr = (wchar_t *) get_va_nth (argp, npos);
685 else
686 wstr = va_arg (arg, wchar_t *);
687 if (!wstr)
688 return cleanup_return (rval, &gcollect, pstr, &wbuf);
689 }
690 }
691
692 if ((c = in_ch (s, &read_in)) == EOF)
693 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
694
695 memset (&cstate, 0, sizeof (cstate));
696
697 do
698 {
699 buf[0] = c;
700
701 if ((flags & IS_SUPPRESSED) == 0 && (flags & IS_ALLOC_USED) != 0
702 && wstr == ((wchar_t *) *pstr + str_sz))
703 {
704 new_sz = str_sz + (str_sz > width ? width - 1 : str_sz);
705
706 while ((wstr = (wchar_t *) realloc (*pstr, new_sz * sizeof (wchar_t))) == NULL
707 && new_sz > (size_t) (str_sz + 1))
708 new_sz = str_sz + 1;
709 if (!wstr)
710 {
711 release_ptrs (&gcollect, &wbuf);
712 return EOF;
713 }
714 *pstr = (char *) wstr;
715 wstr += str_sz;
716 str_sz = new_sz;
717 }
718
719 while (1)
720 {
721 n = mbrtowc ((flags & IS_SUPPRESSED) == 0 ? wstr : NULL, buf, 1, &cstate);
722
723 if (n == (size_t) -2)
724 {
725 if ((c = in_ch (s, &read_in)) == EOF)
726 {
727 errno = EILSEQ;
728 return cleanup_return (rval, &gcollect, pstr, &wbuf);
729 }
730
731 buf[0] = c;
732 continue;
733 }
734
735 if (n != 1)
736 {
737 errno = EILSEQ;
738 return cleanup_return (rval, &gcollect, pstr, &wbuf);
739 }
740 break;
741 }
742
743 ++wstr;
744 }
745 while (--width > 0 && (c = in_ch (s, &read_in)) != EOF);
746
747 if ((flags & IS_SUPPRESSED) == 0)
748 {
749 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t));
750 pstr = NULL;
751 ++rval;
752 }
753 break;
754
755 case 's':
756 if ((flags & IS_SUPPRESSED) == 0)
757 {
758 if ((flags & IS_ALLOC_USED) != 0)
759 {
760 if (npos != 0)
761 pstr = (char **) get_va_nth (argp, npos);
762 else
763 pstr = va_arg (arg, char **);
764
765 if (!pstr)
766 return cleanup_return (rval, &gcollect, pstr, &wbuf);
767
768 str_sz = 100;
769 if ((str = *pstr = (char *) malloc (100)) == NULL)
770 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
771 gcollect = resize_gcollect (gcollect);
772 gcollect->ptrs[gcollect->count++] = pstr;
773 }
774 else
775 {
776 if (npos != 0)
777 str = (char *) get_va_nth (argp, npos);
778 else
779 str = va_arg (arg, char *);
780 if (!str)
781 return cleanup_return (rval, &gcollect, pstr, &wbuf);
782 }
783 }
784
785 if ((c = in_ch (s, &read_in)) == EOF)
786 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
787
788 do
789 {
790 if (isspace (c))
791 {
792 back_ch (c, s, &read_in, 1);
793 break;
794 }
795
796 if ((flags & IS_SUPPRESSED) == 0)
797 {
798 *str++ = c;
799 if ((flags & IS_ALLOC_USED) != 0 && str == (*pstr + str_sz))
800 {
801 new_sz = str_sz * 2;
802
803 while ((str = (char *) realloc (*pstr, new_sz)) == NULL
804 && new_sz > (size_t) (str_sz + 1))
805 new_sz = str_sz + 1;
806 if (!str)
807 {
808 if ((flags & USE_POSIX_ALLOC) == 0)
809 {
810 (*pstr)[str_sz - 1] = 0;
811 pstr = NULL;
812 ++rval;
813 }
814 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
815 }
816 *pstr = str;
817 str += str_sz;
818 str_sz = new_sz;
819 }
820 }
821 }
822 while ((width <= 0 || --width > 0) && (c = in_ch (s, &read_in)) != EOF);
823
824 if ((flags & IS_SUPPRESSED) == 0)
825 {
826 *str++ = 0;
827 optimize_alloc (pstr, str, str_sz);
828 pstr = NULL;
829 ++rval;
830 }
831 break;
832
833 case 'S':
834 if ((flags & IS_SUPPRESSED) == 0)
835 {
836 if ((flags & IS_ALLOC_USED) != 0)
837 {
838 if (npos != 0)
839 pstr = (char **) get_va_nth (argp, npos);
840 else
841 pstr = va_arg (arg, char **);
842
843 if (!pstr)
844 return cleanup_return (rval, &gcollect, pstr, &wbuf);
845
846 str_sz = 100;
847 *pstr = (char *) malloc (100 * sizeof (wchar_t));
848 if ((wstr = (wchar_t *) *pstr) == NULL)
849 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
850 gcollect = resize_gcollect (gcollect);
851 gcollect->ptrs[gcollect->count++] = pstr;
852 }
853 else
854 {
855 if (npos != 0)
856 wstr = (wchar_t *) get_va_nth (argp, npos);
857 else
858 wstr = va_arg (arg, wchar_t *);
859 if (!wstr)
860 return cleanup_return (rval, &gcollect, pstr, &wbuf);
861 }
862 }
863
864 if ((c = in_ch (s, &read_in)) == EOF)
865 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
866
867 memset (&cstate, 0, sizeof (cstate));
868
869 do
870 {
871 if (isspace (c))
872 {
873 back_ch (c, s, &read_in, 1);
874 break;
875 }
876
877 buf[0] = c;
878
879 while (1)
880 {
881 n = mbrtowc ((flags & IS_SUPPRESSED) == 0 ? wstr : NULL, buf, 1, &cstate);
882
883 if (n == (size_t) -2)
884 {
885 if ((c = in_ch (s, &read_in)) == EOF)
886 {
887 errno = EILSEQ;
888 return cleanup_return (rval, &gcollect, pstr, &wbuf);
889 }
890
891 buf[0] = c;
892 continue;
893 }
894
895 if (n != 1)
896 {
897 errno = EILSEQ;
898 return cleanup_return (rval, &gcollect, pstr, &wbuf);
899 }
900
901 ++wstr;
902 break;
903 }
904
905 if ((flags & IS_SUPPRESSED) == 0 && (flags & IS_ALLOC_USED) != 0
906 && wstr == ((wchar_t *) *pstr + str_sz))
907 {
908 new_sz = str_sz * 2;
909 while ((wstr = (wchar_t *) realloc (*pstr, new_sz * sizeof (wchar_t))) == NULL
910 && new_sz > (size_t) (str_sz + 1))
911 new_sz = str_sz + 1;
912 if (!wstr)
913 {
914 if ((flags & USE_POSIX_ALLOC) == 0)
915 {
916 ((wchar_t *) (*pstr))[str_sz - 1] = 0;
917 pstr = NULL;
918 ++rval;
919 }
920 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
921 }
922 *pstr = (char *) wstr;
923 wstr += str_sz;
924 str_sz = new_sz;
925 }
926 }
927 while ((width <= 0 || --width > 0) && (c = in_ch (s, &read_in)) != EOF);
928
929 if ((flags & IS_SUPPRESSED) == 0)
930 {
931 *wstr++ = 0;
932 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t));
933 pstr = NULL;
934 ++rval;
935 }
936 break;
937
938 case 'd': case 'i':
939 case 'o': case 'p':
940 case 'u':
941 case 'x': case 'X':
942 switch (fc)
943 {
944 case 'd':
945 flags |= IS_SIGNED_NUM;
946 base = 10;
947 break;
948 case 'i':
949 flags |= IS_SIGNED_NUM;
950 base = 0;
951 break;
952 case 'o':
953 base = 8;
954 break;
955 case 'p':
956 base = 16;
957 flags &= ~(IS_S | IS_LL | IS_L);
958 #ifdef _WIN64
959 flags |= IS_LL;
960 #endif
961 flags |= IS_L | IS_POINTER;
962 break;
963 case 'u':
964 base = 10;
965 break;
966 case 'x': case 'X':
967 base = 16;
968 break;
969 }
970
971 if ((c = in_ch (s, &read_in)) == EOF)
972 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
973 if (c == '+' || c == '-')
974 {
975 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
976 wbuf[wbuf_cur_sz++] = c;
977 if (width > 0)
978 --width;
979 c = in_ch (s, &read_in);
980 }
981 if (width != 0 && c == '0')
982 {
983 if (width > 0)
984 --width;
985
986 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
987 wbuf[wbuf_cur_sz++] = c;
988 c = in_ch (s, &read_in);
989
990 if (width != 0 && tolower (c) == 'x')
991 {
992 if (!base)
993 base = 16;
994 if (base == 16)
995 {
996 if (width > 0)
997 --width;
998 c = in_ch (s, &read_in);
999 }
1000 }
1001 else if (!base)
1002 base = 8;
1003 }
1004
1005 if (!base)
1006 base = 10;
1007
1008 while (c != EOF && width != 0)
1009 {
1010 if (base == 16)
1011 {
1012 if (!isxdigit (c))
1013 break;
1014 }
1015 else if (!isdigit (c) || (int) (c - '0') >= base)
1016 {
1017 const char *p = lc_thousands_sep;
1018 int remain;
1019
1020 if (base != 10 || (flags & USE_GROUP) == 0)
1021 break;
1022 remain = width > 0 ? width : INT_MAX;
1023 while ((unsigned char) *p == c && remain >= 0)
1024 {
1025 /* As our conversion routines aren't supporting thousands
1026 separators, we are filtering them here. */
1027
1028 ++p;
1029 if (*p == 0 || !remain || (c = in_ch (s, &read_in)) == EOF)
1030 break;
1031 --remain;
1032 }
1033
1034 if (*p != 0)
1035 {
1036 if (p > lc_thousands_sep)
1037 {
1038 back_ch (c, s, &read_in, 0);
1039 while (--p > lc_thousands_sep)
1040 back_ch ((unsigned char) *p, s, &read_in, 1);
1041 c = (unsigned char) *p;
1042 }
1043 break;
1044 }
1045
1046 if (width > 0)
1047 width = remain;
1048 --wbuf_cur_sz;
1049 }
1050 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1051 wbuf[wbuf_cur_sz++] = c;
1052 if (width > 0)
1053 --width;
1054
1055 c = in_ch (s, &read_in);
1056 }
1057
1058 if (!wbuf_cur_sz || (wbuf_cur_sz == 1 && (wbuf[0] == '+' || wbuf[0] == '-')))
1059 {
1060 if (!wbuf_cur_sz && (flags & IS_POINTER) != 0
1061 && match_string (s, &read_in, &c, "(nil)"))
1062 {
1063 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1064 wbuf[wbuf_cur_sz++] = '0';
1065 }
1066 else
1067 {
1068 back_ch (c, s, &read_in, 0);
1069 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1070 }
1071 }
1072 else
1073 back_ch (c, s, &read_in, 0);
1074
1075 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1076 wbuf[wbuf_cur_sz++] = 0;
1077
1078 if ((flags & IS_LL))
1079 {
1080 if (flags & IS_SIGNED_NUM)
1081 cv_val.ll = strtoll (wbuf, &tmp_wbuf_ptr, base/*, flags & USE_GROUP*/);
1082 else
1083 cv_val.ull = strtoull (wbuf, &tmp_wbuf_ptr, base);
1084 }
1085 else
1086 {
1087 if (flags & IS_SIGNED_NUM)
1088 cv_val.l = strtol (wbuf, &tmp_wbuf_ptr, base/*, flags & USE_GROUP*/);
1089 else
1090 cv_val.ul = strtoul (wbuf, &tmp_wbuf_ptr, base);
1091 }
1092 if (wbuf == tmp_wbuf_ptr)
1093 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1094
1095 if ((flags & IS_SUPPRESSED) == 0)
1096 {
1097 if ((flags & IS_SIGNED_NUM) != 0)
1098 {
1099 if ((flags & IS_LL) != 0)
1100 *(npos != 0 ? (long long *) get_va_nth (argp, npos) : va_arg (arg, long long *)) = cv_val.ll;
1101 else if ((flags & IS_L) != 0)
1102 *(npos != 0 ? (long *) get_va_nth (argp, npos) : va_arg (arg, long *)) = cv_val.l;
1103 else if ((flags & IS_S) != 0)
1104 *(npos != 0 ? (short *) get_va_nth (argp, npos) : va_arg (arg, short *)) = (short) cv_val.l;
1105 else if ((flags & IS_C) != 0)
1106 *(npos != 0 ? (signed char *) get_va_nth (argp, npos) : va_arg (arg, signed char *)) = (signed char) cv_val.ul;
1107 else
1108 *(npos != 0 ? (int *) get_va_nth (argp, npos) : va_arg (arg, int *)) = (int) cv_val.l;
1109 }
1110 else
1111 {
1112 if ((flags & IS_LL) != 0)
1113 *(npos != 0 ? (unsigned long long *) get_va_nth (argp, npos) : va_arg (arg, unsigned long long *)) = cv_val.ull;
1114 else if ((flags & IS_L) != 0)
1115 *(npos != 0 ? (unsigned long *) get_va_nth (argp, npos) : va_arg (arg, unsigned long *)) = cv_val.ul;
1116 else if ((flags & IS_S) != 0)
1117 *(npos != 0 ? (unsigned short *) get_va_nth (argp, npos) : va_arg (arg, unsigned short *))
1118 = (unsigned short) cv_val.ul;
1119 else if ((flags & IS_C) != 0)
1120 *(npos != 0 ? (unsigned char *) get_va_nth (argp, npos) : va_arg (arg, unsigned char *)) = (unsigned char) cv_val.ul;
1121 else
1122 *(npos != 0 ? (unsigned int *) get_va_nth (argp, npos) : va_arg (arg, unsigned int *)) = (unsigned int) cv_val.ul;
1123 }
1124 ++rval;
1125 }
1126 break;
1127
1128 case 'e': case 'E':
1129 case 'f': case 'F':
1130 case 'g': case 'G':
1131 case 'a': case 'A':
1132 if (width > 0)
1133 --width;
1134 if ((c = in_ch (s, &read_in)) == EOF)
1135 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
1136
1137 seen_dot = seen_exp = 0;
1138 is_neg = (c == '-' ? 1 : 0);
1139
1140 if (c == '-' || c == '+')
1141 {
1142 if (width == 0 || (c = in_ch (s, &read_in)) == EOF)
1143 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1144 if (width > 0)
1145 --width;
1146 }
1147
1148 if (tolower (c) == 'n')
1149 {
1150 const char *match_txt = "nan";
1151
1152 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1153 wbuf[wbuf_cur_sz++] = c;
1154
1155 ++match_txt;
1156 do
1157 {
1158 if (width == 0 || (c = in_ch (s, &read_in)) == EOF || tolower (c) != match_txt[0])
1159 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1160
1161 if (width > 0)
1162 --width;
1163
1164 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1165 wbuf[wbuf_cur_sz++] = c;
1166 ++match_txt;
1167 }
1168 while (*match_txt != 0);
1169 }
1170 else if (tolower (c) == 'i')
1171 {
1172 const char *match_txt = "inf";
1173
1174 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1175 wbuf[wbuf_cur_sz++] = c;
1176
1177 ++match_txt;
1178 do
1179 {
1180 if (width == 0 || (c = in_ch (s, &read_in)) == EOF || tolower (c) != match_txt[0])
1181 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1182 if (width > 0)
1183 --width;
1184
1185 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1186 wbuf[wbuf_cur_sz++] = c;
1187 ++match_txt;
1188 }
1189 while (*match_txt != 0);
1190
1191 if (width != 0 && (c = in_ch (s, &read_in)) != EOF && tolower (c) == 'i')
1192 {
1193 match_txt = "inity";
1194
1195 if (width > 0)
1196 --width;
1197
1198 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1199 wbuf[wbuf_cur_sz++] = c;
1200 ++match_txt;
1201
1202 do
1203 {
1204 if (width == 0 || (c = in_ch (s, &read_in)) == EOF || tolower (c) != match_txt[0])
1205 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1206 if (width > 0)
1207 --width;
1208
1209 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1210 wbuf[wbuf_cur_sz++] = c;
1211 ++match_txt;
1212 }
1213 while (*match_txt != 0);
1214 }
1215 else if (width != 0 && c != EOF)
1216 back_ch (c, s, &read_in, 0);
1217 }
1218 else
1219 {
1220 not_in = 'e';
1221 if (width != 0 && c == '0')
1222 {
1223 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1224 wbuf[wbuf_cur_sz++] = c;
1225
1226 c = in_ch (s, &read_in);
1227 if (width > 0)
1228 --width;
1229 if (width != 0 && tolower (c) == 'x')
1230 {
1231 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1232 wbuf[wbuf_cur_sz++] = c;
1233
1234 flags |= IS_HEX_FLOAT;
1235 not_in = 'p';
1236
1237 flags &= ~USE_GROUP;
1238 c = in_ch (s, &read_in);
1239 if (width > 0)
1240 --width;
1241 }
1242 }
1243
1244 while (1)
1245 {
1246 if (isdigit (c) || (!seen_exp && (flags & IS_HEX_FLOAT) != 0 && isxdigit (c))
1247 || (seen_exp && wbuf[wbuf_cur_sz - 1] == not_in && (c == '-' || c == '+')))
1248 {
1249 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1250 wbuf[wbuf_cur_sz++] = c;
1251 }
1252 else if (wbuf_cur_sz > 0 && !seen_exp && (char) tolower (c) == not_in)
1253 {
1254 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1255 wbuf[wbuf_cur_sz++] = not_in;
1256 seen_exp = seen_dot = 1;
1257 }
1258 else
1259 {
1260 const char *p = lc_decimal_point;
1261 int remain = width > 0 ? width : INT_MAX;
1262
1263 if (! seen_dot)
1264 {
1265 while ((unsigned char) *p == c && remain >= 0)
1266 {
1267 ++p;
1268 if (*p == 0 || !remain || (c = in_ch (s, &read_in)) == EOF)
1269 break;
1270 --remain;
1271 }
1272 }
1273
1274 if (*p == 0)
1275 {
1276 for (p = lc_decimal_point; *p != 0; ++p)
1277 {
1278 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1279 wbuf[wbuf_cur_sz++] = (unsigned char) *p;
1280 }
1281 if (width > 0)
1282 width = remain;
1283 seen_dot = 1;
1284 }
1285 else
1286 {
1287 const char *pp = lc_thousands_sep;
1288
1289 if (!seen_dot && (flags & USE_GROUP) != 0)
1290 {
1291 while ((pp - lc_thousands_sep) < (p - lc_decimal_point)
1292 && *pp == lc_decimal_point[(pp - lc_thousands_sep)])
1293 ++pp;
1294 if ((pp - lc_thousands_sep) == (p - lc_decimal_point))
1295 {
1296 while ((unsigned char) *pp == c && remain >= 0)
1297 {
1298 ++pp;
1299 if (*pp == 0 || !remain || (c = in_ch (s, &read_in)) == EOF)
1300 break;
1301 --remain;
1302 }
1303 }
1304 }
1305
1306 if (pp != NULL && *pp == 0)
1307 {
1308 /* As our conversion routines aren't supporting thousands
1309 separators, we are filtering them here. */
1310 if (width > 0)
1311 width = remain;
1312 }
1313 else
1314 {
1315 back_ch (c, s, &read_in, 0);
1316 break;
1317 }
1318 }
1319 }
1320
1321 if (width == 0 || (c = in_ch (s, &read_in)) == EOF)
1322 break;
1323
1324 if (width > 0)
1325 --width;
1326 }
1327
1328 if (!wbuf_cur_sz || ((flags & IS_HEX_FLOAT) != 0 && wbuf_cur_sz == 2))
1329 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1330 }
1331
1332 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1333 wbuf[wbuf_cur_sz++] = 0;
1334
1335 if ((flags & IS_LL) != 0)
1336 {
1337 long double ld;
1338 ld = __mingw_strtold (wbuf, &tmp_wbuf_ptr/*, flags & USE_GROUP*/);
1339 if ((flags & IS_SUPPRESSED) == 0 && tmp_wbuf_ptr != wbuf)
1340 *(npos != 0 ? (long double *) get_va_nth (argp, npos) : va_arg (arg, long double *)) = is_neg ? -ld : ld;
1341 }
1342 else if ((flags & IS_L) != 0)
1343 {
1344 double d;
1345 d = (double) __mingw_strtold (wbuf, &tmp_wbuf_ptr/*, flags & USE_GROUP*/);
1346 if ((flags & IS_SUPPRESSED) == 0 && tmp_wbuf_ptr != wbuf)
1347 *(npos != 0 ? (double *) get_va_nth (argp, npos) : va_arg (arg, double *)) = is_neg ? -d : d;
1348 }
1349 else
1350 {
1351 float d = __mingw_strtof (wbuf, &tmp_wbuf_ptr/*, flags & USE_GROUP*/);
1352 if ((flags & IS_SUPPRESSED) == 0 && tmp_wbuf_ptr != wbuf)
1353 *(npos != 0 ? (float *) get_va_nth (argp, npos) : va_arg (arg, float *)) = is_neg ? -d : d;
1354 }
1355
1356 if (wbuf == tmp_wbuf_ptr)
1357 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1358
1359 if ((flags & IS_SUPPRESSED) == 0)
1360 ++rval;
1361 break;
1362
1363 case '[':
1364 if ((flags & IS_L) != 0)
1365 {
1366 if ((flags & IS_SUPPRESSED) == 0)
1367 {
1368 if ((flags & IS_ALLOC_USED) != 0)
1369 {
1370 if (npos != 0)
1371 pstr = (char **) get_va_nth (argp, npos);
1372 else
1373 pstr = va_arg (arg, char **);
1374
1375 if (!pstr)
1376 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1377
1378 str_sz = 100;
1379 *pstr = (char *) malloc (100 * sizeof (wchar_t));
1380
1381 if ((wstr = (wchar_t *) *pstr) == NULL)
1382 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
1383 gcollect = resize_gcollect (gcollect);
1384 gcollect->ptrs[gcollect->count++] = pstr;
1385 }
1386 else
1387 {
1388 if (npos != 0)
1389 wstr = (wchar_t *) get_va_nth (argp, npos);
1390 else
1391 wstr = va_arg (arg, wchar_t *);
1392 if (!wstr)
1393 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1394 }
1395 }
1396 }
1397 else if ((flags & IS_SUPPRESSED) == 0)
1398 {
1399 if ((flags & IS_ALLOC_USED) != 0)
1400 {
1401 if (npos != 0)
1402 pstr = (char **) get_va_nth (argp, npos);
1403 else
1404 pstr = va_arg (arg, char **);
1405
1406 if (!pstr)
1407 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1408
1409 str_sz = 100;
1410 if ((str = *pstr = (char *) malloc (100)) == NULL)
1411 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
1412
1413 gcollect = resize_gcollect (gcollect);
1414 gcollect->ptrs[gcollect->count++] = pstr;
1415 }
1416 else
1417 {
1418 if (npos != 0)
1419 str = (char *) get_va_nth (argp, npos);
1420 else
1421 str = va_arg (arg, char *);
1422 if (!str)
1423 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1424 }
1425 }
1426
1427 not_in = (*f == '^' ? 1 : 0);
1428 if (*f == '^')
1429 f++;
1430
1431 if (width < 0)
1432 width = INT_MAX;
1433
1434 if (wbuf_max_sz < 256)
1435 {
1436 wbuf_max_sz = 256;
1437 if (wbuf)
1438 free (wbuf);
1439 wbuf = (char *) malloc (wbuf_max_sz);
1440 }
1441 memset (wbuf, 0, 256);
1442
1443 fc = *f;
1444 if (fc == ']' || fc == '-')
1445 {
1446 wbuf[fc] = 1;
1447 ++f;
1448 }
1449
1450 while ((fc = *f++) != 0 && fc != ']')
1451 {
1452 if (fc == '-' && *f != 0 && *f != ']' && (unsigned char) f[-2] <= (unsigned char) *f)
1453 {
1454 for (fc = (unsigned char) f[-2]; fc < (unsigned char) *f; ++fc)
1455 wbuf[fc] = 1;
1456 }
1457 else
1458 wbuf[fc] = 1;
1459 }
1460
1461 if (!fc)
1462 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1463
1464 if ((flags & IS_L) != 0)
1465 {
1466 read_in_sv = read_in;
1467 cnt = 0;
1468
1469 if ((c = in_ch (s, &read_in)) == EOF)
1470 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
1471
1472 memset (&cstate, 0, sizeof (cstate));
1473
1474 do
1475 {
1476 if (wbuf[c] == not_in)
1477 {
1478 back_ch (c, s, &read_in, 1);
1479 break;
1480 }
1481
1482 if ((flags & IS_SUPPRESSED) == 0)
1483 {
1484 buf[0] = c;
1485 n = mbrtowc (wstr, buf, 1, &cstate);
1486
1487 if (n == (size_t) -2)
1488 {
1489 ++cnt;
1490 continue;
1491 }
1492 cnt = 0;
1493
1494 ++wstr;
1495 if ((flags & IS_ALLOC_USED) != 0 && wstr == ((wchar_t *) *pstr + str_sz))
1496 {
1497 new_sz = str_sz * 2;
1498 while ((wstr = (wchar_t *) realloc (*pstr, new_sz * sizeof (wchar_t))) == NULL
1499 && new_sz > (size_t) (str_sz + 1))
1500 new_sz = str_sz + 1;
1501 if (!wstr)
1502 {
1503 if ((flags & USE_POSIX_ALLOC) == 0)
1504 {
1505 ((wchar_t *) (*pstr))[str_sz - 1] = 0;
1506 pstr = NULL;
1507 ++rval;
1508 }
1509 else
1510 rval = EOF;
1511 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1512 }
1513 *pstr = (char *) wstr;
1514 wstr += str_sz;
1515 str_sz = new_sz;
1516 }
1517 }
1518
1519 if (--width <= 0)
1520 break;
1521 }
1522 while ((c = in_ch (s, &read_in)) != EOF);
1523
1524 if (cnt != 0)
1525 {
1526 errno = EILSEQ;
1527 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1528 }
1529
1530 if (read_in_sv == read_in)
1531 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1532
1533
1534 if ((flags & IS_SUPPRESSED) == 0)
1535 {
1536 *wstr++ = 0;
1537 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t));
1538 pstr = NULL;
1539 ++rval;
1540 }
1541 }
1542 else
1543 {
1544 read_in_sv = read_in;
1545
1546 if ((c = in_ch (s, &read_in)) == EOF)
1547 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
1548
1549 do
1550 {
1551 if (wbuf[c] == not_in)
1552 {
1553 back_ch (c, s, &read_in, 1);
1554 break;
1555 }
1556
1557 if ((flags & IS_SUPPRESSED) == 0)
1558 {
1559 *str++ = c;
1560 if ((flags & IS_ALLOC_USED) != 0 && str == (*pstr + str_sz))
1561 {
1562 new_sz = str_sz * 2;
1563
1564 while ((str = (char *) realloc (*pstr, new_sz)) == NULL
1565 && new_sz > (size_t) (str_sz + 1))
1566 new_sz = str_sz + 1;
1567 if (!str)
1568 {
1569 if ((flags & USE_POSIX_ALLOC) == 0)
1570 {
1571 (*pstr)[str_sz - 1] = 0;
1572 pstr = NULL;
1573 ++rval;
1574 }
1575 else
1576 rval = EOF;
1577 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1578 }
1579 *pstr = str;
1580 str += str_sz;
1581 str_sz = new_sz;
1582 }
1583 }
1584 }
1585 while (--width > 0 && (c = in_ch (s, &read_in)) != EOF);
1586
1587 if (read_in_sv == read_in)
1588 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1589
1590 if ((flags & IS_SUPPRESSED) == 0)
1591 {
1592 *str++ = 0;
1593 optimize_alloc (pstr, str, str_sz);
1594 pstr = NULL;
1595 ++rval;
1596 }
1597 }
1598 break;
1599
1600 default:
1601 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1602 }
1603 }
1604
1605 if (ignore_ws)
1606 {
1607 while (isspace ((c = in_ch (s, &read_in))));
1608 back_ch (c, s, &read_in, 0);
1609 }
1610
1611 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1612}
1613
1614int
1615__mingw_vfscanf (FILE *s, const char *format, va_list argp)
1616{
1617 _IFP ifp;
1618 memset (&ifp, 0, sizeof (_IFP));
1619 ifp.fp = s;
1620 return __mingw_sformat (&ifp, format, argp);
1621}
1622
1623int
1624__mingw_vsscanf (const char *s, const char *format, va_list argp)
1625{
1626 _IFP ifp;
1627 memset (&ifp, 0, sizeof (_IFP));
1628 ifp.str = s;
1629 ifp.is_string = 1;
1630 return __mingw_sformat (&ifp, format, argp);
1631}
1632
lib/libc/mingw/stdio/mingw_vprintf.c deleted-58
......@@ -1,58 +0,0 @@
1/* vprintf.c
2 *
3 * $Id: vprintf.c,v 1.1 2008/08/11 22:41:55 keithmarshall Exp $
4 *
5 * Provides an implementation of the "vprintf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, whence it may replace the Microsoft
9 * function of the same name.
10 *
11 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
12 *
13 * This implementation of "vprintf" will normally be invoked by calling
14 * "__mingw_vprintf()" in preference to a direct reference to "vprintf()"
15 * itself; this leaves the MSVCRT implementation as the default, which
16 * will be deployed when user code invokes "vprint()". Users who then
17 * wish to use this implementation may either call "__mingw_vprintf()"
18 * directly, or may use conditional preprocessor defines, to redirect
19 * references to "vprintf()" to "__mingw_vprintf()".
20 *
21 * Compiling this module with "-D INSTALL_AS_DEFAULT" will change this
22 * recommended convention, such that references to "vprintf()" in user
23 * code will ALWAYS be redirected to "__mingw_vprintf()"; if this option
24 * is adopted, then users wishing to use the MSVCRT implementation of
25 * "vprintf()" will be forced to use a "back-door" mechanism to do so.
26 * Such a "back-door" mechanism is provided with MinGW, allowing the
27 * MSVCRT implementation to be called as "__msvcrt_vprintf()"; however,
28 * since users may not expect this behaviour, a standard libmingwex.a
29 * installation does not employ this option.
30 *
31 *
32 * This is free software. You may redistribute and/or modify it as you
33 * see fit, without restriction of copyright.
34 *
35 * This software is provided "as is", in the hope that it may be useful,
36 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
37 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
38 * time will the author accept any form of liability for any damages,
39 * however caused, resulting from the use of this software.
40 *
41 */
42#include <stdio.h>
43#include <stdarg.h>
44
45#include "mingw_pformat.h"
46
47int __cdecl __vprintf (const APICHAR *, va_list) __MINGW_NOTHROW;
48
49int __cdecl __vprintf(const APICHAR *fmt, va_list argv)
50{
51 register int retval;
52
53 _lock_file( stdout );
54 retval = __pformat( PFORMAT_TO_FILE | PFORMAT_NOLIMIT, stdout, 0, fmt, argv );
55 _unlock_file( stdout );
56
57 return retval;
58}
lib/libc/mingw/stdio/mingw_vprintfw.c deleted-9
......@@ -1,9 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7
8#include "mingw_vprintf.c"
9
lib/libc/mingw/stdio/mingw_vsnprintf.c deleted-52
......@@ -1,52 +0,0 @@
1/* vsnprintf.c
2 *
3 * $Id: vsnprintf.c,v 1.3 2008/07/28 23:24:20 keithmarshall Exp $
4 *
5 * Provides an implementation of the "vsnprintf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, replacing the redirection through
9 * libmoldnames.a, to the MSVCRT standard "_vsnprintf" function; (the
10 * standard MSVCRT function remains available, and may be invoked
11 * directly, using this fully qualified form of its name).
12 *
13 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
14 *
15 * This is free software. You may redistribute and/or modify it as you
16 * see fit, without restriction of copyright.
17 *
18 * This software is provided "as is", in the hope that it may be useful,
19 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
20 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
21 * time will the author accept any form of liability for any damages,
22 * however caused, resulting from the use of this software.
23 *
24 */
25
26#include <stdio.h>
27#include <stdarg.h>
28
29#include "mingw_pformat.h"
30
31int __cdecl __vsnprintf (APICHAR *, size_t, const APICHAR *fmt, va_list) __MINGW_NOTHROW;
32int __cdecl __vsnprintf(APICHAR *buf, size_t length, const APICHAR *fmt, va_list argv )
33{
34 register int retval;
35
36 if( length == (size_t)(0) )
37 /*
38 * No buffer; simply compute and return the size required,
39 * without actually emitting any data.
40 */
41 return __pformat( 0, buf, 0, fmt, argv);
42
43 /* If we get to here, then we have a buffer...
44 * Emit data up to the limit of buffer length less one,
45 * then add the requisite NUL terminator.
46 */
47 retval = __pformat( 0, buf, --length, fmt, argv );
48 buf[retval < (int) length ? retval : (int)length] = '\0';
49
50 return retval;
51}
52
lib/libc/mingw/stdio/mingw_vsnprintfw.c deleted-9
......@@ -1,9 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7
8#include "mingw_vsnprintf.c"
9
lib/libc/mingw/stdio/mingw_vsprintf.c deleted-54
......@@ -1,54 +0,0 @@
1/* vsprintf.c
2 *
3 * $Id: vsprintf.c,v 1.1 2008/08/11 22:41:55 keithmarshall Exp $
4 *
5 * Provides an implementation of the "vsprintf" function, conforming
6 * generally to C99 and SUSv3/POSIX specifications, with extensions
7 * to support Microsoft's non-standard format specifications. This
8 * is included in libmingwex.a, whence it may replace the Microsoft
9 * function of the same name.
10 *
11 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
12 *
13 * This implementation of "vsprintf" will normally be invoked by calling
14 * "__mingw_vsprintf()" in preference to a direct reference to "vsprintf()"
15 * itself; this leaves the MSVCRT implementation as the default, which
16 * will be deployed when user code invokes "vsprint()". Users who then
17 * wish to use this implementation may either call "__mingw_vsprintf()"
18 * directly, or may use conditional preprocessor defines, to redirect
19 * references to "vsprintf()" to "__mingw_vsprintf()".
20 *
21 * Compiling this module with "-D INSTALL_AS_DEFAULT" will change this
22 * recommended convention, such that references to "vsprintf()" in user
23 * code will ALWAYS be redirected to "__mingw_vsprintf()"; if this option
24 * is adopted, then users wishing to use the MSVCRT implementation of
25 * "vsprintf()" will be forced to use a "back-door" mechanism to do so.
26 * Such a "back-door" mechanism is provided with MinGW, allowing the
27 * MSVCRT implementation to be called as "__msvcrt_vsprintf()"; however,
28 * since users may not expect this behaviour, a standard libmingwex.a
29 * installation does not employ this option.
30 *
31 *
32 * This is free software. You may redistribute and/or modify it as you
33 * see fit, without restriction of copyright.
34 *
35 * This software is provided "as is", in the hope that it may be useful,
36 * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of
37 * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no
38 * time will the author accept any form of liability for any damages,
39 * however caused, resulting from the use of this software.
40 *
41 */
42#include <stdio.h>
43#include <stdarg.h>
44
45#include "mingw_pformat.h"
46
47int __cdecl __vsprintf (APICHAR *, const APICHAR *, va_list) __MINGW_NOTHROW;
48
49int __cdecl __vsprintf(APICHAR *buf, const APICHAR *fmt, va_list argv)
50{
51 register int retval;
52 buf[retval = __pformat( PFORMAT_NOLIMIT, buf, 0, fmt, argv )] = '\0';
53 return retval;
54}
lib/libc/mingw/stdio/mingw_vsprintfw.c deleted-10
......@@ -1,10 +0,0 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#define __BUILD_WIDEAPI 1
7#define _CRT_NON_CONFORMING_SWPRINTFS 1
8
9#include "mingw_vsprintf.c"
10
lib/libc/mingw/stdio/mingw_wscanf.c deleted-28
......@@ -1,28 +0,0 @@
1#include <stdarg.h>
2#include <stdio.h>
3#include <stdlib.h>
4
5extern int __mingw_vfwscanf (FILE *stream, const wchar_t *format, va_list argp);
6
7int __mingw_wscanf (const wchar_t *format, ...);
8int __mingw_vwscanf (const wchar_t *format, va_list argp);
9
10int
11__mingw_wscanf (const wchar_t *format, ...)
12{
13 va_list argp;
14 int r;
15
16 va_start (argp, format);
17 r = __mingw_vfwscanf (stdin, format, argp);
18 va_end (argp);
19
20 return r;
21}
22
23int
24__mingw_vwscanf (const wchar_t *format, va_list argp)
25{
26 return __mingw_vfwscanf (stdin, format, argp);
27}
28
lib/libc/mingw/stdio/mingw_wvfscanf.c deleted-1631
......@@ -1,1631 +0,0 @@
1/*
2 This Software is provided under the Zope Public License (ZPL) Version 2.1.
3
4 Copyright (c) 2011 by the mingw-w64 project
5
6 See the AUTHORS file for the list of contributors to the mingw-w64 project.
7
8 This license has been certified as open source. It has also been designated
9 as GPL compatible by the Free Software Foundation (FSF).
10
11 Redistribution and use in source and binary forms, with or without
12 modification, are permitted provided that the following conditions are met:
13
14 1. Redistributions in source code must retain the accompanying copyright
15 notice, this list of conditions, and the following disclaimer.
16 2. Redistributions in binary form must reproduce the accompanying
17 copyright notice, this list of conditions, and the following disclaimer
18 in the documentation and/or other materials provided with the
19 distribution.
20 3. Names of the copyright holders must not be used to endorse or promote
21 products derived from this software without prior written permission
22 from the copyright holders.
23 4. The right to distribute this software or to use it for any purpose does
24 not give you the right to use Servicemarks (sm) or Trademarks (tm) of
25 the copyright holders. Use of them is covered by separate agreement
26 with the copyright holders.
27 5. If any files are modified, you must cause the modified files to carry
28 prominent notices stating that you changed the files and the date of
29 any change.
30
31 Disclaimer
32
33 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
34 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
36 EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
37 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
38 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
39 OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
40 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
41 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
42 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43*/
44
45#define __LARGE_MBSTATE_T
46
47#include <limits.h>
48#include <stddef.h>
49#include <stdarg.h>
50#include <stdio.h>
51#include <stdint.h>
52#include <stdlib.h>
53#include <string.h>
54#include <wchar.h>
55#include <ctype.h>
56#include <wctype.h>
57#include <locale.h>
58#include <errno.h>
59
60#ifndef CP_UTF8
61#define CP_UTF8 65001
62#endif
63
64#ifndef MB_ERR_INVALID_CHARS
65#define MB_ERR_INVALID_CHARS 0x00000008
66#endif
67
68/* Helper flags for conversion. */
69#define IS_C 0x0001
70#define IS_S 0x0002
71#define IS_L 0x0004
72#define IS_LL 0x0008
73#define IS_SIGNED_NUM 0x0010
74#define IS_POINTER 0x0020
75#define IS_HEX_FLOAT 0x0040
76#define IS_SUPPRESSED 0x0080
77#define USE_GROUP 0x0100
78#define USE_GNU_ALLOC 0x0200
79#define USE_POSIX_ALLOC 0x0400
80
81#define IS_ALLOC_USED (USE_GNU_ALLOC | USE_POSIX_ALLOC)
82
83/* internal stream structure with back-buffer. */
84typedef struct _IFP
85{
86 __extension__ union {
87 void *fp;
88 const wchar_t *str;
89 };
90 int bch[1024];
91 int is_string : 1;
92 int back_top;
93 int seen_eof : 1;
94} _IFP;
95
96static void *
97get_va_nth (va_list argp, unsigned int n)
98{
99 va_list ap;
100 if (!n)
101 abort ();
102 va_copy (ap, argp);
103 while (--n > 0)
104 (void) va_arg(ap, void *);
105 return va_arg (ap, void *);
106}
107
108static void
109optimize_alloc (char **p, char *end, size_t alloc_sz)
110{
111 size_t need_sz;
112 char *h;
113
114 if (!p || !*p)
115 return;
116
117 need_sz = end - *p;
118 if (need_sz == alloc_sz)
119 return;
120
121 if ((h = (char *) realloc (*p, need_sz)) != NULL)
122 *p = h;
123}
124
125static void
126back_ch (int c, _IFP *s, size_t *rin, int not_eof)
127{
128 if (!not_eof && c == WEOF)
129 return;
130 if (s->is_string == 0)
131 {
132 FILE *fp = s->fp;
133 ungetwc (c, fp);
134 rin[0] -= 1;
135 return;
136 }
137 rin[0] -= 1;
138 s->bch[s->back_top] = c;
139 s->back_top += 1;
140}
141
142static int
143in_ch (_IFP *s, size_t *rin)
144{
145 int r;
146 if (s->back_top)
147 {
148 s->back_top -= 1;
149 r = s->bch[s->back_top];
150 rin[0] += 1;
151 }
152 else if (s->seen_eof)
153 {
154 return WEOF;
155 }
156 else if (s->is_string)
157 {
158 const wchar_t *ps = s->str;
159 r = ((int) *ps) & 0xffff;
160 ps++;
161 if (r != 0)
162 {
163 rin[0] += 1;
164 s->str = ps;
165 return r;
166 }
167 s->seen_eof = 1;
168 return WEOF;
169 }
170 else
171 {
172 FILE *fp = (FILE *) s->fp;
173 r = getwc (fp);
174 if (r != WEOF)
175 rin[0] += 1;
176 else s->seen_eof = 1;
177 }
178 return r;
179}
180
181static int
182match_string (_IFP *s, size_t *rin, wint_t *c, const wchar_t *str)
183{
184 int ch = *c;
185
186 if (*str == 0)
187 return 1;
188
189 if (*str != (wchar_t) towlower (ch))
190 return 0;
191 ++str;
192 while (*str != 0)
193 {
194 if ((ch = in_ch (s, rin)) == WEOF)
195 {
196 c[0] = ch;
197 return 0;
198 }
199
200 if (*str != (wchar_t) towlower (ch))
201 {
202 c[0] = ch;
203 return 0;
204 }
205 ++str;
206 }
207 c[0] = ch;
208 return 1;
209}
210
211struct gcollect
212{
213 size_t count;
214 struct gcollect *next;
215 char **ptrs[32];
216};
217
218static void
219release_ptrs (struct gcollect **pt, wchar_t **wbuf)
220{
221 struct gcollect *pf;
222 size_t cnt;
223
224 if (wbuf)
225 {
226 free (*wbuf);
227 *wbuf = NULL;
228 }
229 if (!pt || (pf = *pt) == NULL)
230 return;
231 while (pf != NULL)
232 {
233 struct gcollect *pf_sv = pf;
234 for (cnt = 0; cnt < pf->count; ++cnt)
235 {
236 free (*pf->ptrs[cnt]);
237 *pf->ptrs[cnt] = NULL;
238 }
239 pf = pf->next;
240 free (pf_sv);
241 }
242 *pt = NULL;
243}
244
245static int
246cleanup_return (int rval, struct gcollect **pfree, char **strp, wchar_t **wbuf)
247{
248 if (rval == EOF)
249 release_ptrs (pfree, wbuf);
250 else
251 {
252 if (pfree)
253 {
254 struct gcollect *pf = *pfree, *pf_sv;
255 while (pf != NULL)
256 {
257 pf_sv = pf;
258 pf = pf->next;
259 free (pf_sv);
260 }
261 *pfree = NULL;
262 }
263 if (strp != NULL)
264 {
265 free (*strp);
266 *strp = NULL;
267 }
268 if (wbuf)
269 {
270 free (*wbuf);
271 *wbuf = NULL;
272 }
273 }
274 return rval;
275}
276
277static struct gcollect *
278resize_gcollect (struct gcollect *pf)
279{
280 struct gcollect *np;
281 if (pf && pf->count < 32)
282 return pf;
283 np = malloc (sizeof (struct gcollect));
284 np->count = 0;
285 np->next = pf;
286 return np;
287}
288
289static wchar_t *
290resize_wbuf (size_t wpsz, size_t *wbuf_max_sz, wchar_t *old)
291{
292 wchar_t *wbuf;
293 size_t nsz;
294 if (*wbuf_max_sz != wpsz)
295 return old;
296 nsz = (256 > (2 * wbuf_max_sz[0]) ? 256 : (2 * wbuf_max_sz[0]));
297 if (!old)
298 wbuf = (wchar_t *) malloc (nsz * sizeof (wchar_t));
299 else
300 wbuf = (wchar_t *) realloc (old, nsz * sizeof (wchar_t));
301 if (!wbuf)
302 {
303 if (old)
304 free (old);
305 }
306 else
307 *wbuf_max_sz = nsz;
308 return wbuf;
309}
310
311static int
312__mingw_swformat (_IFP *s, const wchar_t *format, va_list argp)
313{
314 const wchar_t *f = format;
315 struct gcollect *gcollect = NULL;
316 size_t read_in = 0, wbuf_max_sz = 0;
317 ssize_t str_sz = 0;
318 char *str = NULL, **pstr = NULL;;
319 wchar_t *wstr = NULL, *wbuf = NULL;
320 wint_t c = 0, rval = 0;
321 int ignore_ws = 0;
322 va_list arg;
323 size_t wbuf_cur_sz, str_len, read_in_sv, new_sz, n;
324 unsigned int fc, npos;
325 int width, flags, base = 0, errno_sv, clen;
326 char seen_dot, seen_exp, is_neg, *nstr, buf[MB_LEN_MAX];
327 wchar_t wc, not_in, *tmp_wbuf_ptr, *temp_wbuf_end, *wbuf_iter;
328 wint_t lc_decimal_point, lc_thousands_sep;
329 mbstate_t state;
330 union {
331 unsigned long long ull;
332 unsigned long ul;
333 long long ll;
334 long l;
335 } cv_val;
336
337 arg = argp;
338
339 if (!s || s->fp == NULL || !format)
340 {
341 errno = EINVAL;
342 return EOF;
343 }
344
345 memset (&state, 0, sizeof(state));
346 clen = mbrtowc( &wc, localeconv()->decimal_point, 16, &state);
347 lc_decimal_point = (clen > 0 ? wc : '.');
348 memset( &state, 0, sizeof( state ) );
349 clen = mbrtowc( &wc, localeconv()->thousands_sep, 16, &state);
350 lc_thousands_sep = (clen > 0 ? wc : 0);
351
352 while (*f != 0)
353 {
354 fc = *f++;
355 if (fc != '%')
356 {
357 if (iswspace (fc))
358 ignore_ws = 1;
359 else
360 {
361 if ((c = in_ch (s, &read_in)) == WEOF)
362 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
363
364 if (ignore_ws)
365 {
366 ignore_ws = 0;
367 if (iswspace (c))
368 {
369 do
370 {
371 if ((c = in_ch (s, &read_in)) == WEOF)
372 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
373 }
374 while (iswspace (c));
375 }
376 }
377
378 if (c != fc)
379 {
380 back_ch (c, s, &read_in, 0);
381 return cleanup_return (rval, &gcollect, pstr, &wbuf);
382 }
383 }
384
385 continue;
386 }
387
388 width = flags = 0;
389 npos = 0;
390 wbuf_cur_sz = 0;
391
392 if (iswdigit ((unsigned int) *f))
393 {
394 const wchar_t *svf = f;
395 npos = (unsigned int) *f++ - '0';
396 while (iswdigit ((unsigned int) *f))
397 npos = npos * 10 + ((unsigned int) *f++ - '0');
398 if (*f != '$')
399 {
400 npos = 0;
401 f = svf;
402 }
403 else
404 f++;
405 }
406
407 do
408 {
409 if (*f == '*')
410 flags |= IS_SUPPRESSED;
411 else if (*f == '\'')
412 {
413 if (lc_thousands_sep)
414 flags |= USE_GROUP;
415 }
416 else if (*f == 'I')
417 {
418 /* we don't support locale's digits (i18N), but ignore it for now silently. */
419 ;
420#ifdef _WIN32
421 if (f[1] == '6' && f[2] == '4')
422 {
423 flags |= IS_LL | IS_L;
424 f += 2;
425 }
426 else if (f[1] == '3' && f[2] == '2')
427 {
428 flags |= IS_L;
429 f += 2;
430 }
431 else
432 {
433#ifdef _WIN64
434 flags |= IS_LL | IS_L;
435#else
436 flags |= IS_L;
437#endif
438 }
439#endif
440 }
441 else
442 break;
443 ++f;
444 }
445 while (1);
446
447 while (iswdigit ((unsigned char) *f))
448 width = width * 10 + ((unsigned char) *f++ - '0');
449
450 if (!width)
451 width = -1;
452
453 switch (*f)
454 {
455 case 'h':
456 ++f;
457 flags |= (*f == 'h' ? IS_C : IS_S);
458 if (*f == 'h')
459 ++f;
460 break;
461 case 'l':
462 ++f;
463 flags |= (*f == 'l' ? IS_LL : 0) | IS_L;
464 if (*f == 'l')
465 ++f;
466 break;
467 case 'q': case 'L':
468 ++f;
469 flags |= IS_LL | IS_L;
470 break;
471 case 'a':
472 if (f[1] != 's' && f[1] != 'S' && f[1] != '[')
473 break;
474 ++f;
475 flags |= USE_GNU_ALLOC;
476 break;
477 case 'm':
478 flags |= USE_POSIX_ALLOC;
479 ++f;
480 if (*f == 'l')
481 {
482 flags |= IS_L;
483 ++f;
484 }
485 break;
486 case 'z':
487#ifdef _WIN64
488 flags |= IS_LL | IS_L;
489#else
490 flags |= IS_L;
491#endif
492 ++f;
493 break;
494 case 'j':
495 if (sizeof (uintmax_t) > sizeof (unsigned long))
496 flags |= IS_LL;
497 else if (sizeof (uintmax_t) > sizeof (unsigned int))
498 flags |= IS_L;
499 ++f;
500 break;
501 case 't':
502#ifdef _WIN64
503 flags |= IS_LL;
504#else
505 flags |= IS_L;
506#endif
507 ++f;
508 break;
509 case 0:
510 return cleanup_return (rval, &gcollect, pstr, &wbuf);
511 default:
512 break;
513 }
514
515 if (*f == 0)
516 return cleanup_return (rval, &gcollect, pstr, &wbuf);
517
518 fc = *f++;
519 if (ignore_ws || (fc != '[' && fc != 'c' && fc != 'C' && fc != 'n'))
520 {
521 errno_sv = errno;
522 errno = 0;
523 do
524 {
525 if ((c == WEOF || (c = in_ch (s, &read_in)) == WEOF) && errno == EINTR)
526 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
527 }
528 while (iswspace (c));
529
530 ignore_ws = 0;
531 errno = errno_sv;
532 back_ch (c, s, &read_in, 0);
533 }
534
535 switch (fc)
536 {
537 case 'c':
538 if ((flags & IS_L) != 0)
539 fc = 'C';
540 break;
541 case 's':
542 if ((flags & IS_L) != 0)
543 fc = 'S';
544 break;
545 }
546
547 switch (fc)
548 {
549 case '%':
550 if ((c = in_ch (s, &read_in)) == WEOF)
551 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
552 if (c != fc)
553 {
554 back_ch (c, s, &read_in, 1);
555 return cleanup_return (rval, &gcollect, pstr, &wbuf);
556 }
557 break;
558
559 case 'n':
560 if ((flags & IS_SUPPRESSED) == 0)
561 {
562 if ((flags & IS_LL) != 0)
563 *(npos != 0 ? (long long *) get_va_nth (argp, npos) : va_arg (arg, long long *)) = read_in;
564 else if ((flags & IS_L) != 0)
565 *(npos != 0 ? (long *) get_va_nth (argp, npos) : va_arg (arg, long *)) = read_in;
566 else if ((flags & IS_S) != 0)
567 *(npos != 0 ? (short *) get_va_nth (argp, npos) : va_arg (arg, short *)) = read_in;
568 else if ((flags & IS_C) != 0)
569 *(npos != 0 ? (char *) get_va_nth (argp, npos) : va_arg (arg, char *)) = read_in;
570 else
571 *(npos != 0 ? (int *) get_va_nth (argp, npos) : va_arg (arg, int *)) = read_in;
572 }
573 break;
574
575 case 'c':
576 if (width == -1)
577 width = 1;
578
579 if ((flags & IS_SUPPRESSED) == 0)
580 {
581 if ((flags & IS_ALLOC_USED) != 0)
582 {
583 if (npos != 0)
584 pstr = (char **) get_va_nth (argp, npos);
585 else
586 pstr = va_arg (arg, char **);
587
588 if (!pstr)
589 return cleanup_return (rval, &gcollect, pstr, &wbuf);
590 str_sz = 100;
591 if ((str = *pstr = (char *) malloc (100)) == NULL)
592 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
593 gcollect = resize_gcollect (gcollect);
594 gcollect->ptrs[gcollect->count++] = pstr;
595 }
596 else
597 {
598 if (npos != 0)
599 str = (char *) get_va_nth (argp, npos);
600 else
601 str = va_arg (arg, char *);
602 if (!str)
603 return cleanup_return (rval, &gcollect, pstr, &wbuf);
604 }
605 }
606 if ((c = in_ch (s, &read_in)) == WEOF)
607 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
608
609 memset (&state, 0, sizeof (state));
610
611 do
612 {
613 if ((flags & IS_SUPPRESSED) == 0 && (flags & USE_POSIX_ALLOC) != 0
614 && (str + MB_CUR_MAX) >= (*pstr + str_sz))
615 {
616 new_sz = str_sz * 2;
617 str_len = (str - *pstr);
618 while ((nstr = (char *) realloc (*pstr, new_sz)) == NULL
619 && new_sz > (str_len + MB_CUR_MAX))
620 new_sz = str_len + MB_CUR_MAX;
621 if (!nstr)
622 {
623 release_ptrs (&gcollect, &wbuf);
624 return EOF;
625 }
626 *pstr = nstr;
627 str = nstr + str_len;
628 str_sz = new_sz;
629 }
630
631 n = wcrtomb ((flags & IS_SUPPRESSED) == 0 ? str : NULL, c, &state);
632 if (n == (size_t) -1LL)
633 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
634 str += n;
635 }
636 while (--width > 0 && (c = in_ch (s, &read_in)) != WEOF);
637
638 if ((flags & IS_SUPPRESSED) == 0)
639 {
640 optimize_alloc (pstr, str, str_sz);
641 pstr = NULL;
642 ++rval;
643 }
644
645 break;
646
647 case 'C':
648 if (width == -1)
649 width = 1;
650
651 if ((flags & IS_SUPPRESSED) == 0)
652 {
653 if ((flags & IS_ALLOC_USED) != 0)
654 {
655 if (npos != 0)
656 pstr = (char **) get_va_nth (argp, npos);
657 else
658 pstr = va_arg (arg, char **);
659
660 if (!pstr)
661 return cleanup_return (rval, &gcollect, pstr, &wbuf);
662 str_sz = (width > 1024 ? 1024 : width);
663 *pstr = (char *) malloc (str_sz * sizeof (wchar_t));
664 if ((wstr = (wchar_t *) *pstr) == NULL)
665 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
666
667 if ((wstr = (wchar_t *) *pstr) != NULL)
668 {
669 gcollect = resize_gcollect (gcollect);
670 gcollect->ptrs[gcollect->count++] = pstr;
671 }
672 }
673 else
674 {
675 if (npos != 0)
676 wstr = (wchar_t *) get_va_nth (argp, npos);
677 else
678 wstr = va_arg (arg, wchar_t *);
679 if (!wstr)
680 return cleanup_return (rval, &gcollect, pstr, &wbuf);
681 }
682 }
683
684 if ((c = in_ch (s, &read_in)) == WEOF)
685 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
686
687 if ((flags & IS_SUPPRESSED) == 0)
688 {
689 do
690 {
691 if ((flags & IS_ALLOC_USED) != 0
692 && wstr == ((wchar_t *) *pstr + str_sz))
693 {
694 new_sz = str_sz + (str_sz > width ? width - 1 : str_sz);
695 while ((wstr = (wchar_t *) realloc (*pstr,
696 new_sz * sizeof (wchar_t))) == NULL
697 && new_sz > (size_t) (str_sz + 1))
698 new_sz = str_sz + 1;
699 if (!wstr)
700 {
701 release_ptrs (&gcollect, &wbuf);
702 return EOF;
703 }
704 *pstr = (char *) wstr;
705 wstr += str_sz;
706 str_sz = new_sz;
707 }
708 *wstr++ = c;
709 }
710 while (--width > 0 && (c = in_ch (s, &read_in)) != WEOF);
711 }
712 else
713 {
714 while (--width > 0 && (c = in_ch (s, &read_in)) != WEOF);
715 }
716
717 if ((flags & IS_SUPPRESSED) == 0)
718 {
719 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t));
720 pstr = NULL;
721 ++rval;
722 }
723 break;
724
725 case 's':
726 if ((flags & IS_SUPPRESSED) == 0)
727 {
728 if ((flags & IS_ALLOC_USED) != 0)
729 {
730 if (npos != 0)
731 pstr = (char **) get_va_nth (argp, npos);
732 else
733 pstr = va_arg (arg, char **);
734
735 if (!pstr)
736 return cleanup_return (rval, &gcollect, pstr, &wbuf);
737 str_sz = 100;
738 if ((str = *pstr = (char *) malloc (100)) == NULL)
739 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
740 gcollect = resize_gcollect (gcollect);
741 gcollect->ptrs[gcollect->count++] = pstr;
742 }
743 else
744 {
745 if (npos != 0)
746 str = (char *) get_va_nth (argp, npos);
747 else
748 str = va_arg (arg, char *);
749 if (!str)
750 return cleanup_return (rval, &gcollect, pstr, &wbuf);
751 }
752 }
753
754 if ((c = in_ch (s, &read_in)) == WEOF)
755 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
756
757 memset (&state, 0, sizeof (state));
758
759 do
760 {
761 if (iswspace (c))
762 {
763 back_ch (c, s, &read_in, 1);
764 break;
765 }
766
767 {
768 if ((flags & IS_SUPPRESSED) == 0 && (flags & IS_ALLOC_USED) != 0
769 && (str + MB_CUR_MAX) >= (*pstr + str_sz))
770 {
771 new_sz = str_sz * 2;
772 str_len = (str - *pstr);
773
774 while ((nstr = (char *) realloc (*pstr, new_sz)) == NULL
775 && new_sz > (str_len + MB_CUR_MAX))
776 new_sz = str_len + MB_CUR_MAX;
777 if (!nstr)
778 {
779 if ((flags & USE_POSIX_ALLOC) == 0)
780 {
781 (*pstr)[str_len] = 0;
782 pstr = NULL;
783 ++rval;
784 }
785 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
786 }
787 *pstr = nstr;
788 str = nstr + str_len;
789 str_sz = new_sz;
790 }
791
792 n = wcrtomb ((flags & IS_SUPPRESSED) == 0 ? str : NULL, c,
793 &state);
794 if (n == (size_t) -1LL)
795 {
796 errno = EILSEQ;
797 return cleanup_return (rval, &gcollect, pstr, &wbuf);
798 }
799
800 str += n;
801 }
802 }
803 while ((width <= 0 || --width > 0) && (c = in_ch (s, &read_in)) != WEOF);
804
805 if ((flags & IS_SUPPRESSED) == 0)
806 {
807 n = wcrtomb (buf, 0, &state);
808 if (n > 0 && (flags & IS_ALLOC_USED) != 0
809 && (str + n) >= (*pstr + str_sz))
810 {
811 str_len = (str - *pstr);
812
813 if ((nstr = (char *) realloc (*pstr, str_len + n + 1)) == NULL)
814 {
815 if ((flags & USE_POSIX_ALLOC) == 0)
816 {
817 (*pstr)[str_len] = 0;
818 pstr = NULL;
819 ++rval;
820 }
821 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
822 }
823 *pstr = nstr;
824 str = nstr + str_len;
825 str_sz = str_len + n + 1;
826 }
827
828 if (n)
829 {
830 memcpy (str, buf, n);
831 str += n;
832 }
833 *str++ = 0;
834
835 optimize_alloc (pstr, str, str_sz);
836 pstr = NULL;
837 ++rval;
838 }
839 break;
840
841 case 'S':
842 if ((flags & IS_SUPPRESSED) == 0)
843 {
844 if ((flags & IS_ALLOC_USED) != 0)
845 {
846 if (npos != 0)
847 pstr = (char **) get_va_nth (argp, npos);
848 else
849 pstr = va_arg (arg, char **);
850
851 if (!pstr)
852 return cleanup_return (rval, &gcollect, pstr, &wbuf);
853 str_sz = 100;
854 *pstr = (char *) malloc (100 * sizeof (wchar_t));
855 if ((wstr = (wchar_t *) *pstr) == NULL)
856 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
857 gcollect = resize_gcollect (gcollect);
858 gcollect->ptrs[gcollect->count++] = pstr;
859 }
860 else
861 {
862 if (npos != 0)
863 wstr = (wchar_t *) get_va_nth (argp, npos);
864 else
865 wstr = va_arg (arg, wchar_t *);
866 if (!wstr)
867 return cleanup_return (rval, &gcollect, pstr, &wbuf);
868 }
869 }
870 if ((c = in_ch (s, &read_in)) == WEOF)
871 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
872
873 do
874 {
875 if (iswspace (c))
876 {
877 back_ch (c, s, &read_in, 1);
878 break;
879 }
880
881 if ((flags & IS_SUPPRESSED) == 0)
882 {
883 *wstr++ = c;
884 if ((flags & IS_ALLOC_USED) != 0 && wstr == ((wchar_t *) *pstr + str_sz))
885 {
886 new_sz = str_sz * 2;
887
888 while ((wstr = (wchar_t *) realloc (*pstr,
889 new_sz * sizeof (wchar_t))) == NULL
890 && new_sz > (size_t) (str_sz + 1))
891 new_sz = str_sz + 1;
892 if (!wstr)
893 {
894 if ((flags & USE_POSIX_ALLOC) == 0)
895 {
896 ((wchar_t *) (*pstr))[str_sz - 1] = 0;
897 pstr = NULL;
898 ++rval;
899 }
900 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
901 }
902 *pstr = (char *) wstr;
903 wstr += str_sz;
904 str_sz = new_sz;
905 }
906 }
907 }
908 while ((width <= 0 || --width > 0) && (c = in_ch (s, &read_in)) != WEOF);
909
910 if ((flags & IS_SUPPRESSED) == 0)
911 {
912 *wstr++ = 0;
913
914 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t));
915 pstr = NULL;
916 ++rval;
917 }
918 break;
919
920 case 'd': case 'i':
921 case 'o': case 'p':
922 case 'u':
923 case 'x': case 'X':
924 switch (fc)
925 {
926 case 'd':
927 flags |= IS_SIGNED_NUM;
928 base = 10;
929 break;
930 case 'i':
931 flags |= IS_SIGNED_NUM;
932 base = 0;
933 break;
934 case 'o':
935 base = 8;
936 break;
937 case 'p':
938 base = 16;
939 flags &= ~(IS_S | IS_LL | IS_L);
940 #ifdef _WIN64
941 flags |= IS_LL;
942 #endif
943 flags |= IS_L | IS_POINTER;
944 break;
945 case 'u':
946 base = 10;
947 break;
948 case 'x': case 'X':
949 base = 16;
950 break;
951 }
952
953 if ((c = in_ch (s, &read_in)) == WEOF)
954 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
955
956 if (c == '+' || c == '-')
957 {
958 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
959 wbuf[wbuf_cur_sz++] = c;
960
961 if (width > 0)
962 --width;
963 c = in_ch (s, &read_in);
964 }
965
966 if (width != 0 && c == '0')
967 {
968 if (width > 0)
969 --width;
970
971 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
972 wbuf[wbuf_cur_sz++] = c;
973
974 c = in_ch (s, &read_in);
975
976 if (width != 0 && towlower (c) == 'x')
977 {
978 if (!base)
979 base = 16;
980 if (base == 16)
981 {
982 if (width > 0)
983 --width;
984 c = in_ch (s, &read_in);
985 }
986 }
987 else if (!base)
988 base = 8;
989 }
990
991 if (!base)
992 base = 10;
993
994 while (c != WEOF && width != 0)
995 {
996 if (base == 16)
997 {
998 if (!iswxdigit (c))
999 break;
1000 }
1001 else if (!iswdigit (c) || (int) (c - '0') >= base)
1002 {
1003 if (base != 10 || (flags & USE_GROUP) == 0 || c != lc_thousands_sep)
1004 break;
1005 }
1006 if (c != lc_thousands_sep)
1007 {
1008 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1009 wbuf[wbuf_cur_sz++] = c;
1010 }
1011
1012 if (width > 0)
1013 --width;
1014
1015 c = in_ch (s, &read_in);
1016 }
1017
1018 if (!wbuf_cur_sz || (wbuf_cur_sz == 1 && (wbuf[0] == '+' || wbuf[0] == '-')))
1019 {
1020 if (!wbuf_cur_sz && (flags & IS_POINTER) != 0
1021 && match_string (s, &read_in, &c, L"(nil)"))
1022 {
1023 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1024 wbuf[wbuf_cur_sz++] = '0';
1025 }
1026 else
1027 {
1028 back_ch (c, s, &read_in, 0);
1029 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1030 }
1031 }
1032 else
1033 back_ch (c, s, &read_in, 0);
1034
1035 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1036 wbuf[wbuf_cur_sz++] = 0;
1037
1038 if ((flags & IS_LL) != 0)
1039 {
1040 if ((flags & IS_SIGNED_NUM) != 0)
1041 cv_val.ll = wcstoll (wbuf, &tmp_wbuf_ptr, base/*, flags & USE_GROUP*/);
1042 else
1043 cv_val.ull = wcstoull (wbuf, &tmp_wbuf_ptr, base/*, flags & USE_GROUP*/);
1044 }
1045 else
1046 {
1047 if ((flags & IS_SIGNED_NUM) != 0)
1048 cv_val.l = wcstol (wbuf, &tmp_wbuf_ptr, base/*, flags & USE_GROUP*/);
1049 else
1050 cv_val.ul = wcstoul (wbuf, &tmp_wbuf_ptr, base/*, flags & USE_GROUP*/);
1051 }
1052 if (wbuf == tmp_wbuf_ptr)
1053 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1054
1055 if ((flags & IS_SUPPRESSED) == 0)
1056 {
1057 if ((flags & IS_SIGNED_NUM) != 0)
1058 {
1059 if ((flags & IS_LL) != 0)
1060 *(npos != 0 ? (long long *) get_va_nth (argp, npos) : va_arg (arg, long long *)) = cv_val.ll;
1061 else if ((flags & IS_L) != 0)
1062 *(npos != 0 ? (long *) get_va_nth (argp, npos) : va_arg (arg, long *)) = cv_val.l;
1063 else if ((flags & IS_S) != 0)
1064 *(npos != 0 ? (short *) get_va_nth (argp, npos) : va_arg (arg, short *)) = (short) cv_val.l;
1065 else if ((flags & IS_C) != 0)
1066 *(npos != 0 ? (signed char *) get_va_nth (argp, npos) : va_arg (arg, signed char *)) = (signed char) cv_val.ul;
1067 else
1068 *(npos != 0 ? (int *) get_va_nth (argp, npos) : va_arg (arg, int *)) = (int) cv_val.l;
1069 }
1070 else
1071 {
1072 if ((flags & IS_LL) != 0)
1073 *(npos != 0 ? (unsigned long long *) get_va_nth (argp, npos) : va_arg (arg, unsigned long long *)) = cv_val.ull;
1074 else if ((flags & IS_L) != 0)
1075 *(npos != 0 ? (unsigned long *) get_va_nth (argp, npos) : va_arg (arg, unsigned long *)) = cv_val.ul;
1076 else if ((flags & IS_S) != 0)
1077 *(npos != 0 ? (unsigned short *) get_va_nth (argp, npos) : va_arg (arg, unsigned short *))
1078 = (unsigned short) cv_val.ul;
1079 else if ((flags & IS_C) != 0)
1080 *(npos != 0 ? (unsigned char *) get_va_nth (argp, npos) : va_arg (arg, unsigned char *)) = (unsigned char) cv_val.ul;
1081 else
1082 *(npos != 0 ? (unsigned int *) get_va_nth (argp, npos) : va_arg (arg, unsigned int *)) = (unsigned int) cv_val.ul;
1083 }
1084 ++rval;
1085 }
1086 break;
1087
1088 case 'e': case 'E':
1089 case 'f': case 'F':
1090 case 'g': case 'G':
1091 case 'a': case 'A':
1092 if (width > 0)
1093 --width;
1094 if ((c = in_ch (s, &read_in)) == WEOF)
1095 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
1096
1097 seen_dot = seen_exp = 0;
1098 is_neg = (c == '-' ? 1 : 0);
1099
1100 if (c == '-' || c == '+')
1101 {
1102 if (width == 0 || (c = in_ch (s, &read_in)) == WEOF)
1103 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1104 if (width > 0)
1105 --width;
1106 }
1107
1108 if (towlower (c) == 'n')
1109 {
1110 const wchar_t *match_txt = L"nan";
1111
1112 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1113 wbuf[wbuf_cur_sz++] = c;
1114
1115 ++match_txt;
1116 do
1117 {
1118 if (width == 0 || (c = in_ch (s, &read_in)) == WEOF
1119 || towlower (c) != match_txt[0])
1120 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1121 if (width > 0)
1122 --width;
1123
1124 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1125 wbuf[wbuf_cur_sz++] = c;
1126 ++match_txt;
1127 }
1128 while (*match_txt != 0);
1129 }
1130 else if (towlower (c) == 'i')
1131 {
1132 const wchar_t *match_txt = L"inf";
1133
1134 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1135 wbuf[wbuf_cur_sz++] = c;
1136
1137 ++match_txt;
1138 do
1139 {
1140 if (width == 0 || (c = in_ch (s, &read_in)) == WEOF
1141 || towlower (c) != match_txt[0])
1142 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1143 if (width > 0)
1144 --width;
1145
1146 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1147 wbuf[wbuf_cur_sz++] = c;
1148 ++match_txt;
1149 }
1150 while (*match_txt != 0);
1151
1152 if (width != 0 && (c = in_ch (s, &read_in)) != WEOF && towlower (c) == 'i')
1153 {
1154 match_txt = L"inity";
1155 if (width > 0)
1156 --width;
1157
1158 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1159 wbuf[wbuf_cur_sz++] = c;
1160
1161 ++match_txt;
1162 do
1163 {
1164 if (width == 0 || (c = in_ch (s, &read_in)) == WEOF
1165 || towlower (c) != match_txt[0])
1166 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1167 if (width > 0)
1168 --width;
1169 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1170 wbuf[wbuf_cur_sz++] = c;
1171 ++match_txt;
1172 }
1173 while (*match_txt != 0);
1174 }
1175 else if (width != 0 && c != WEOF)
1176 back_ch (c, s, &read_in, 0);
1177 }
1178 else
1179 {
1180 not_in = 'e';
1181 if (width != 0 && c == '0')
1182 {
1183 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1184 wbuf[wbuf_cur_sz++] = c;
1185
1186 c = in_ch (s, &read_in);
1187 if (width > 0)
1188 --width;
1189 if (width != 0 && towlower (c) == 'x')
1190 {
1191 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1192 wbuf[wbuf_cur_sz++] = c;
1193 flags |= IS_HEX_FLOAT;
1194 not_in = 'p';
1195
1196 flags &= ~USE_GROUP;
1197 c = in_ch (s, &read_in);
1198 if (width > 0)
1199 --width;
1200 }
1201 }
1202
1203 while (1)
1204 {
1205 if (iswdigit (c))
1206 {
1207 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1208 wbuf[wbuf_cur_sz++] = c;
1209 }
1210 else if (!seen_exp && (flags & IS_HEX_FLOAT) != 0 && iswxdigit (c))
1211 {
1212 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1213 wbuf[wbuf_cur_sz++] = c;
1214 }
1215 else if (seen_exp && wbuf[wbuf_cur_sz - 1] == not_in
1216 && (c == '-' || c == '+'))
1217 {
1218 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1219 wbuf[wbuf_cur_sz++] = c;
1220 }
1221 else if (wbuf_cur_sz > 0 && !seen_exp
1222 && (wchar_t) towlower (c) == not_in)
1223 {
1224 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1225 wbuf[wbuf_cur_sz++] = not_in;
1226
1227 seen_exp = seen_dot = 1;
1228 }
1229 else
1230 {
1231 if (!seen_dot && c == lc_decimal_point)
1232 {
1233 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1234 wbuf[wbuf_cur_sz++] = c;
1235
1236 seen_dot = 1;
1237 }
1238 else if ((flags & USE_GROUP) != 0 && !seen_dot && c == lc_thousands_sep)
1239 {
1240 /* As our conversion routines aren't supporting thousands
1241 separators, we are filtering them here. */
1242 }
1243 else
1244 {
1245 back_ch (c, s, &read_in, 0);
1246 break;
1247 }
1248 }
1249
1250 if (width == 0 || (c = in_ch (s, &read_in)) == WEOF)
1251 break;
1252
1253 if (width > 0)
1254 --width;
1255 }
1256
1257 if (wbuf_cur_sz == 0 || ((flags & IS_HEX_FLOAT) != 0 && wbuf_cur_sz == 2))
1258 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1259 }
1260
1261 wbuf = resize_wbuf (wbuf_cur_sz, &wbuf_max_sz, wbuf);
1262 wbuf[wbuf_cur_sz++] = 0;
1263
1264 if ((flags & IS_LL) != 0)
1265 {
1266 long double d = __mingw_wcstold (wbuf, &tmp_wbuf_ptr/*, flags & USE_GROUP*/);
1267 if ((flags & IS_SUPPRESSED) == 0 && tmp_wbuf_ptr != wbuf)
1268 *(npos != 0 ? (long double *) get_va_nth (argp, npos) : va_arg (arg, long double *)) = is_neg ? -d : d;
1269 }
1270 else if ((flags & IS_L) != 0)
1271 {
1272 double d = __mingw_wcstod (wbuf, &tmp_wbuf_ptr/*, flags & USE_GROUP*/);
1273 if ((flags & IS_SUPPRESSED) == 0 && tmp_wbuf_ptr != wbuf)
1274 *(npos != 0 ? (double *) get_va_nth (argp, npos) : va_arg (arg, double *)) = is_neg ? -d : d;
1275 }
1276 else
1277 {
1278 float d = __mingw_wcstof (wbuf, &tmp_wbuf_ptr/*, flags & USE_GROUP*/);
1279 if ((flags & IS_SUPPRESSED) == 0 && tmp_wbuf_ptr != wbuf)
1280 *(npos != 0 ? (float *) get_va_nth (argp, npos) : va_arg (arg, float *)) = is_neg ? -d : d;
1281 }
1282
1283 if (wbuf == tmp_wbuf_ptr)
1284 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1285
1286 if ((flags & IS_SUPPRESSED) == 0)
1287 ++rval;
1288 break;
1289
1290 case '[':
1291 if ((flags & IS_L) != 0)
1292 {
1293 if ((flags & IS_SUPPRESSED) == 0)
1294 {
1295 if ((flags & IS_ALLOC_USED) != 0)
1296 {
1297 if (npos != 0)
1298 pstr = (char **) get_va_nth (argp, npos);
1299 else
1300 pstr = va_arg (arg, char **);
1301
1302 if (!pstr)
1303 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1304 str_sz = 100;
1305 *pstr = (char *) malloc (100 * sizeof (wchar_t));
1306 if ((wstr = (wchar_t *) *pstr) == NULL)
1307 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
1308
1309 gcollect = resize_gcollect (gcollect);
1310 gcollect->ptrs[gcollect->count++] = pstr;
1311 }
1312 else
1313 {
1314 if (npos != 0)
1315 wstr = (wchar_t *) get_va_nth (argp, npos);
1316 else
1317 wstr = va_arg (arg, wchar_t *);
1318 if (!wstr)
1319 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1320 }
1321 }
1322
1323 }
1324 else if ((flags & IS_SUPPRESSED) == 0)
1325 {
1326 if ((flags & IS_ALLOC_USED) != 0)
1327 {
1328 if (npos != 0)
1329 pstr = (char **) get_va_nth (argp, npos);
1330 else
1331 pstr = va_arg (arg, char **);
1332
1333 if (!pstr)
1334 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1335 str_sz = 100;
1336 if ((str = *pstr = (char *) malloc (100)) == NULL)
1337 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
1338 gcollect = resize_gcollect (gcollect);
1339 gcollect->ptrs[gcollect->count++] = pstr;
1340 }
1341 else
1342 {
1343 if (npos != 0)
1344 str = (char *) get_va_nth (argp, npos);
1345 else
1346 str = va_arg (arg, char *);
1347 if (!str)
1348 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1349 }
1350 }
1351
1352 not_in = (*f == '^' ? 1 : 0);
1353 if (*f == '^')
1354 f++;
1355
1356 if (width < 0)
1357 width = INT_MAX;
1358
1359 tmp_wbuf_ptr = (wchar_t *) f;
1360
1361 if (*f == L']')
1362 ++f;
1363
1364 while ((fc = *f++) != 0 && fc != L']');
1365
1366 if (fc == 0)
1367 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1368 temp_wbuf_end = (wchar_t *) f - 1;
1369
1370 if ((flags & IS_L) != 0)
1371 {
1372 read_in_sv = read_in;
1373
1374 if ((c = in_ch (s, &read_in)) == WEOF)
1375 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
1376
1377 do
1378 {
1379 int ended = 0;
1380 for (wbuf_iter = tmp_wbuf_ptr; wbuf_iter < temp_wbuf_end;)
1381 {
1382 if (wbuf_iter[0] == '-' && wbuf_iter[1] != 0
1383 && (wbuf_iter + 1) != temp_wbuf_end
1384 && wbuf_iter != tmp_wbuf_ptr
1385 && (unsigned int) wbuf_iter[-1] <= (unsigned int) wbuf_iter[1])
1386 {
1387 for (wc = wbuf_iter[-1] + 1; wc <= wbuf_iter[1] && (wint_t) wc != c; ++wc);
1388
1389 if (wc <= wbuf_iter[1] && !not_in)
1390 break;
1391 if (wc <= wbuf_iter[1] && not_in)
1392 {
1393 back_ch (c, s, &read_in, 0);
1394 ended = 1;
1395 break;
1396 }
1397
1398 wbuf_iter += 2;
1399 }
1400 else
1401 {
1402 if ((wint_t) *wbuf_iter == c && !not_in)
1403 break;
1404 if ((wint_t) *wbuf_iter == c && not_in)
1405 {
1406 back_ch (c, s, &read_in, 0);
1407 ended = 1;
1408 break;
1409 }
1410
1411 ++wbuf_iter;
1412 }
1413 }
1414 if (ended)
1415 break;
1416
1417 if (wbuf_iter == temp_wbuf_end && !not_in)
1418 {
1419 back_ch (c, s, &read_in, 0);
1420 break;
1421 }
1422
1423 if ((flags & IS_SUPPRESSED) == 0)
1424 {
1425 *wstr++ = c;
1426
1427 if ((flags & IS_ALLOC_USED) != 0
1428 && wstr == ((wchar_t *) *pstr + str_sz))
1429 {
1430 new_sz = str_sz * 2;
1431 while ((wstr = (wchar_t *) realloc (*pstr,
1432 new_sz * sizeof (wchar_t))) == NULL
1433 && new_sz > (size_t) (str_sz + 1))
1434 new_sz = str_sz + 1;
1435 if (!wstr)
1436 {
1437 if ((flags & USE_POSIX_ALLOC) == 0)
1438 {
1439 ((wchar_t *) (*pstr))[str_sz - 1] = 0;
1440 pstr = NULL;
1441 ++rval;
1442 }
1443 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
1444 }
1445 *pstr = (char *) wstr;
1446 wstr += str_sz;
1447 str_sz = new_sz;
1448 }
1449 }
1450 }
1451 while (--width > 0 && (c = in_ch (s, &read_in)) != WEOF);
1452
1453 if (read_in_sv == read_in)
1454 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1455
1456 if ((flags & IS_SUPPRESSED) == 0)
1457 {
1458 *wstr++ = 0;
1459
1460 optimize_alloc (pstr, (char *) wstr, str_sz * sizeof (wchar_t));
1461 pstr = NULL;
1462 ++rval;
1463 }
1464 }
1465 else
1466 {
1467 read_in_sv = read_in;
1468
1469 if ((c = in_ch (s, &read_in)) == WEOF)
1470 return cleanup_return ((!rval ? EOF : rval), &gcollect, pstr, &wbuf);
1471
1472 memset (&state, 0, sizeof (state));
1473
1474 do
1475 {
1476 int ended = 0;
1477 wbuf_iter = tmp_wbuf_ptr;
1478 while (wbuf_iter < temp_wbuf_end)
1479 {
1480 if (wbuf_iter[0] == '-' && wbuf_iter[1] != 0
1481 && (wbuf_iter + 1) != temp_wbuf_end
1482 && wbuf_iter != tmp_wbuf_ptr
1483 && (unsigned int) wbuf_iter[-1] <= (unsigned int) wbuf_iter[1])
1484 {
1485 for (wc = wbuf_iter[-1] + 1; wc <= wbuf_iter[1] && (wint_t) wc != c; ++wc);
1486
1487 if (wc <= wbuf_iter[1] && !not_in)
1488 break;
1489 if (wc <= wbuf_iter[1] && not_in)
1490 {
1491 back_ch (c, s, &read_in, 0);
1492 ended = 1;
1493 break;
1494 }
1495
1496 wbuf_iter += 2;
1497 }
1498 else
1499 {
1500 if ((wint_t) *wbuf_iter == c && !not_in)
1501 break;
1502 if ((wint_t) *wbuf_iter == c && not_in)
1503 {
1504 back_ch (c, s, &read_in, 0);
1505 ended = 1;
1506 break;
1507 }
1508
1509 ++wbuf_iter;
1510 }
1511 }
1512
1513 if (ended)
1514 break;
1515 if (wbuf_iter == temp_wbuf_end && !not_in)
1516 {
1517 back_ch (c, s, &read_in, 0);
1518 break;
1519 }
1520
1521 if ((flags & IS_SUPPRESSED) == 0)
1522 {
1523 if ((flags & IS_ALLOC_USED) != 0
1524 && (str + MB_CUR_MAX) >= (*pstr + str_sz))
1525 {
1526 new_sz = str_sz * 2;
1527 str_len = (str - *pstr);
1528
1529 while ((nstr = (char *) realloc (*pstr, new_sz)) == NULL
1530 && new_sz > (str_len + MB_CUR_MAX))
1531 new_sz = str_len + MB_CUR_MAX;
1532 if (!nstr)
1533 {
1534 if ((flags & USE_POSIX_ALLOC) == 0)
1535 {
1536 ((*pstr))[str_len] = 0;
1537 pstr = NULL;
1538 ++rval;
1539 }
1540 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
1541 }
1542 *pstr = nstr;
1543 str = nstr + str_len;
1544 str_sz = new_sz;
1545 }
1546 }
1547
1548 n = wcrtomb ((flags & IS_SUPPRESSED) == 0 ? str : NULL, c, &state);
1549 if (n == (size_t) -1LL)
1550 {
1551 errno = EILSEQ;
1552 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1553 }
1554
1555 str += n;
1556 }
1557 while (--width > 0 && (c = in_ch (s, &read_in)) != WEOF);
1558
1559 if (read_in_sv == read_in)
1560 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1561
1562 if ((flags & IS_SUPPRESSED) == 0)
1563 {
1564 n = wcrtomb (buf, 0, &state);
1565 if (n > 0 && (flags & IS_ALLOC_USED) != 0
1566 && (str + n) >= (*pstr + str_sz))
1567 {
1568 str_len = (str - *pstr);
1569
1570 if ((nstr = (char *) realloc (*pstr, str_len + n + 1)) == NULL)
1571 {
1572 if ((flags & USE_POSIX_ALLOC) == 0)
1573 {
1574 (*pstr)[str_len] = 0;
1575 pstr = NULL;
1576 ++rval;
1577 }
1578 return cleanup_return (((flags & USE_POSIX_ALLOC) != 0 ? EOF : rval), &gcollect, pstr, &wbuf);
1579 }
1580 *pstr = nstr;
1581 str = nstr + str_len;
1582 str_sz = str_len + n + 1;
1583 }
1584
1585 if (n)
1586 {
1587 memcpy (str, buf, n);
1588 str += n;
1589 }
1590 *str++ = 0;
1591
1592 optimize_alloc (pstr, str, str_sz);
1593 pstr = NULL;
1594 ++rval;
1595 }
1596 }
1597 break;
1598
1599 default:
1600 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1601 }
1602 }
1603
1604 if (ignore_ws)
1605 {
1606 while (iswspace ((c = in_ch (s, &read_in))));
1607 back_ch (c, s, &read_in, 0);
1608 }
1609
1610 return cleanup_return (rval, &gcollect, pstr, &wbuf);
1611}
1612
1613int
1614__mingw_vfwscanf (FILE *s, const wchar_t *format, va_list argp)
1615{
1616 _IFP ifp;
1617 memset (&ifp, 0, sizeof (_IFP));
1618 ifp.fp = s;
1619 return __mingw_swformat (&ifp, format, argp);
1620}
1621
1622int
1623__mingw_vswscanf (const wchar_t *s, const wchar_t *format, va_list argp)
1624{
1625 _IFP ifp;
1626 memset (&ifp, 0, sizeof (_IFP));
1627 ifp.str = s;
1628 ifp.is_string = 1;
1629 return __mingw_swformat (&ifp, format, argp);
1630}
1631
lib/libc/mingw/stdio/ucrt__snwprintf.c created+41
......@@ -0,0 +1,41 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7// For ucrt, this function normally is an inline function in stdio.h.
8// libmingwex doesn't use the ucrt version of headers, and wassert.c can
9// end up requiring a concrete version of it.
10
11#ifdef __GNUC__
12#pragma GCC diagnostic push
13#pragma GCC diagnostic ignored "-Winline"
14#endif
15
16#undef __MSVCRT_VERSION__
17#define _UCRT
18
19#define _snwprintf real__snwprintf
20
21#include <stdarg.h>
22#include <stdio.h>
23
24#undef _snwprintf
25
26int __cdecl _snwprintf(wchar_t * restrict _Dest, size_t _Count, const wchar_t * restrict _Format, ...);
27
28int __cdecl _snwprintf(wchar_t * restrict _Dest, size_t _Count, const wchar_t * restrict _Format, ...)
29{
30 va_list ap;
31 int ret;
32 va_start(ap, _Format);
33 ret = vsnwprintf(_Dest, _Count, _Format, ap);
34 va_end(ap);
35 return ret;
36}
37
38int __cdecl (*__MINGW_IMP_SYMBOL(_snwprintf))(wchar_t *restrict, size_t, const wchar_t *restrict, ...) = _snwprintf;
39#ifdef __GNUC__
40#pragma GCC diagnostic pop
41#endif
lib/libc/mingw/stdio/ucrt__vscprintf.c created+15
......@@ -0,0 +1,15 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl _vscprintf(const char * __restrict__ _Format, va_list _ArgList)
12{
13 return __stdio_common_vsprintf(_CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, NULL, 0, _Format, NULL, _ArgList);
14}
15int __cdecl (*__MINGW_IMP_SYMBOL(_vscprintf))(const char *__restrict__, va_list) = _vscprintf;
lib/libc/mingw/stdio/ucrt__vsnprintf.c created+15
......@@ -0,0 +1,15 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl _vsnprintf(char * __restrict__ _Dest,size_t _Count,const char * __restrict__ _Format,va_list _Args) __MINGW_ATTRIB_DEPRECATED_SEC_WARN
12{
13 return __stdio_common_vsprintf(_CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION, _Dest, _Count, _Format, NULL, _Args);
14}
15int __cdecl (*__MINGW_IMP_SYMBOL(_vsnprintf))(char *__restrict__, size_t, const char *__restrict__, va_list) = _vsnprintf;
lib/libc/mingw/stdio/ucrt__vsnwprintf.c created+15
......@@ -0,0 +1,15 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl _vsnwprintf(wchar_t * __restrict__ _Dest,size_t _Count,const wchar_t * __restrict__ _Format,va_list _Args) __MINGW_ATTRIB_DEPRECATED_SEC_WARN
12{
13 return __stdio_common_vswprintf(_CRT_INTERNAL_LOCAL_PRINTF_OPTIONS | _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION, _Dest, _Count, _Format, NULL, _Args);
14}
15int __cdecl (*__MINGW_IMP_SYMBOL(_vsnwprintf))(wchar_t *__restrict__, size_t, const wchar_t *__restrict__, va_list) = _vsnwprintf;
lib/libc/mingw/stdio/ucrt_fprintf.c created+20
......@@ -0,0 +1,20 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl fprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,...)
12{
13 __builtin_va_list ap;
14 int ret;
15 __builtin_va_start(ap, _Format);
16 ret = __stdio_common_vfprintf(0, _File, _Format, NULL, ap);
17 __builtin_va_end(ap);
18 return ret;
19}
20int __cdecl (*__MINGW_IMP_SYMBOL(fprintf))(FILE *__restrict__, const char *__restrict__, ...) = fprintf;
lib/libc/mingw/stdio/ucrt_fscanf.c created+19
......@@ -0,0 +1,19 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl fscanf(FILE * __restrict__ _File,const char * __restrict__ _Format,...) {
12 __builtin_va_list __ap;
13 int __ret;
14 __builtin_va_start(__ap, _Format);
15 __ret = __stdio_common_vfscanf(0, _File, _Format, NULL, __ap);
16 __builtin_va_end(__ap);
17 return __ret;
18}
19int __cdecl (*__MINGW_IMP_SYMBOL(fscanf))(FILE *__restrict__, const char *__restrict__, ...) = fscanf;
lib/libc/mingw/stdio/ucrt_fwprintf.c created+41
......@@ -0,0 +1,41 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7// For ucrt, this function normally is an inline function in stdio.h.
8// libmingwex doesn't use the ucrt version of headers, and wassert.c can
9// end up requiring a concrete version of it.
10
11#ifdef __GNUC__
12#pragma GCC diagnostic push
13#pragma GCC diagnostic ignored "-Winline"
14#endif
15
16#undef __MSVCRT_VERSION__
17#define _UCRT
18
19#define fwprintf real_fwprintf
20
21#include <stdarg.h>
22#include <stdio.h>
23
24#undef fwprintf
25
26int __cdecl fwprintf(FILE *ptr, const wchar_t *fmt, ...);
27
28int __cdecl fwprintf(FILE *ptr, const wchar_t *fmt, ...)
29{
30 va_list ap;
31 int ret;
32 va_start(ap, fmt);
33 ret = vfwprintf(ptr, fmt, ap);
34 va_end(ap);
35 return ret;
36}
37
38int __cdecl (*__MINGW_IMP_SYMBOL(fwprintf))(FILE *, const wchar_t *, ...) = fwprintf;
39#ifdef __GNUC__
40#pragma GCC diagnostic pop
41#endif
lib/libc/mingw/stdio/ucrt_printf.c created+20
......@@ -0,0 +1,20 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl printf(const char * __restrict__ _Format,...)
12{
13 __builtin_va_list ap;
14 int ret;
15 __builtin_va_start(ap, _Format);
16 ret = __stdio_common_vfprintf(0, stdout, _Format, NULL, ap);
17 __builtin_va_end(ap);
18 return ret;
19}
20int __cdecl (*__MINGW_IMP_SYMBOL(printf))(const char *__restrict__, ...) = printf;
lib/libc/mingw/stdio/ucrt_scanf.c created+19
......@@ -0,0 +1,19 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl scanf(const char * __restrict__ _Format,...) {
12 __builtin_va_list __ap;
13 int __ret;
14 __builtin_va_start(__ap, _Format);
15 __ret = __stdio_common_vfscanf(0, stdin, _Format, NULL, __ap);
16 __builtin_va_end(__ap);
17 return __ret;
18}
19int __cdecl (*__MINGW_IMP_SYMBOL(scanf))(const char *__restrict__, ...) = scanf;
lib/libc/mingw/stdio/ucrt_snprintf.c created+20
......@@ -0,0 +1,20 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl snprintf (char * __restrict__ __stream, size_t __n, const char * __restrict__ __format, ...)
12{
13 __builtin_va_list ap;
14 int ret;
15 __builtin_va_start(ap, __format);
16 ret = __stdio_common_vsprintf(_CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, __stream, __n, __format, NULL, ap);
17 __builtin_va_end(ap);
18 return ret;
19}
20int __cdecl (*__MINGW_IMP_SYMBOL(snprintf))(char *__restrict__, size_t, const char *__restrict__, ...) = snprintf;
lib/libc/mingw/stdio/ucrt_sprintf.c created+20
......@@ -0,0 +1,20 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl sprintf(char * __restrict__ _Dest,const char * __restrict__ _Format,...) __MINGW_ATTRIB_DEPRECATED_SEC_WARN
12{
13 __builtin_va_list ap;
14 int ret;
15 __builtin_va_start(ap, _Format);
16 ret = __stdio_common_vsprintf(_CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, _Dest, (size_t)-1, _Format, NULL, ap);
17 __builtin_va_end(ap);
18 return ret;
19}
20int __cdecl (*__MINGW_IMP_SYMBOL(sprintf))(char *__restrict__, const char *__restrict__, ...) = sprintf;
lib/libc/mingw/stdio/ucrt_sscanf.c created+20
......@@ -0,0 +1,20 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl sscanf(const char * __restrict__ _Src,const char * __restrict__ _Format,...) {
12 __builtin_va_list __ap;
13 int __ret;
14 __builtin_va_start(__ap, _Format);
15 __ret = __stdio_common_vsscanf(0, _Src, (size_t)-1, _Format, NULL, __ap);
16 __builtin_va_end(__ap);
17 return __ret;
18}
19
20int __cdecl (*__MINGW_IMP_SYMBOL(sscanf))(const char *__restrict__, const char *__restrict__, ...) = sscanf;
lib/libc/mingw/stdio/ucrt_vfprintf.c created+15
......@@ -0,0 +1,15 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vfprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,va_list _ArgList)
12{
13 return __stdio_common_vfprintf(0, _File, _Format, NULL, _ArgList);
14}
15int __cdecl (*__MINGW_IMP_SYMBOL(vfprintf))(FILE *__restrict__, const char *__restrict__, va_list) = vfprintf;
lib/libc/mingw/stdio/ucrt_vfscanf.c created+14
......@@ -0,0 +1,14 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vfscanf (FILE *__stream, const char *__format, __builtin_va_list __local_argv) {
12 return __stdio_common_vfscanf(0, __stream, __format, NULL, __local_argv);
13}
14int __cdecl (*__MINGW_IMP_SYMBOL(vfscanf))(FILE *, const char *, __builtin_va_list) = vfscanf;
lib/libc/mingw/stdio/ucrt_vprintf.c created+15
......@@ -0,0 +1,15 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vprintf(const char * __restrict__ _Format,va_list _ArgList)
12{
13 return __stdio_common_vfprintf(0, stdout, _Format, NULL, _ArgList);
14}
15int __cdecl (*__MINGW_IMP_SYMBOL(vprintf))(const char *__restrict__, va_list) = vprintf;
lib/libc/mingw/stdio/ucrt_vscanf.c created+14
......@@ -0,0 +1,14 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vscanf(const char *__format, __builtin_va_list __local_argv) {
12 return __stdio_common_vfscanf(0, stdin, __format, NULL, __local_argv);
13}
14int __cdecl (*__MINGW_IMP_SYMBOL(vscanf))(const char *, __builtin_va_list) = vscanf;
lib/libc/mingw/stdio/ucrt_vsnprintf.c created+15
......@@ -0,0 +1,15 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vsnprintf (char * __restrict__ __stream, size_t __n, const char * __restrict__ __format, va_list __local_argv)
12{
13 return __stdio_common_vsprintf(_CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, __stream, __n, __format, NULL, __local_argv);
14}
15int __cdecl (*__MINGW_IMP_SYMBOL(vsnprintf))(char *__restrict__, size_t, const char *__restrict__, va_list) = vsnprintf;
lib/libc/mingw/stdio/ucrt_vsprintf.c created+15
......@@ -0,0 +1,15 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vsprintf(char * __restrict__ _Dest,const char * __restrict__ _Format,va_list _Args) __MINGW_ATTRIB_DEPRECATED_SEC_WARN
12{
13 return __stdio_common_vsprintf(_CRT_INTERNAL_PRINTF_STANDARD_SNPRINTF_BEHAVIOR, _Dest, (size_t)-1, _Format, NULL, _Args);
14}
15int __cdecl (*__MINGW_IMP_SYMBOL(vsprintf))(char *__restrict__, const char *__restrict__, va_list) = vsprintf;
lib/libc/mingw/stdio/ucrt_vsscanf.c created+14
......@@ -0,0 +1,14 @@
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7#undef __MSVCRT_VERSION__
8#define _UCRT
9#include <stdio.h>
10
11int __cdecl vsscanf (const char * __restrict__ __source, const char * __restrict__ __format, __builtin_va_list __local_argv) {
12 return __stdio_common_vsscanf(0, __source, (size_t)-1, __format, NULL, __local_argv);
13}
14int __cdecl (*__MINGW_IMP_SYMBOL(vsscanf))(const char *__restrict, const char *__restrict__, __builtin_va_list) = vsscanf;
src/mingw.zig-7
......@@ -513,14 +513,12 @@ fn findDef(
513513}
514514
515515const mingw32_lib_deps = [_][]const u8{
516 "crt0_c.c",
517516 "dll_argv.c",
518517 "gccmain.c",
519518 "natstart.c",
520519 "pseudo-reloc-list.c",
521520 "wildcard.c",
522521 "charmax.c",
523 "crt0_w.c",
524522 "dllargv.c",
525523 "_newmode.c",
526524 "tlssup.c",
......@@ -692,7 +690,6 @@ const mingwex_generic_src = [_][]const u8{
692690 "gdtoa" ++ path.sep_str ++ "strtopx.c",
693691 "gdtoa" ++ path.sep_str ++ "sum.c",
694692 "gdtoa" ++ path.sep_str ++ "ulp.c",
695 "math" ++ path.sep_str ++ "abs64.c",
696693 "math" ++ path.sep_str ++ "cbrt.c",
697694 "math" ++ path.sep_str ++ "cbrtf.c",
698695 "math" ++ path.sep_str ++ "cbrtl.c",
......@@ -832,10 +829,6 @@ const mingwex_generic_src = [_][]const u8{
832829 "misc" ++ path.sep_str ++ "tfind.c",
833830 "misc" ++ path.sep_str ++ "tsearch.c",
834831 "misc" ++ path.sep_str ++ "twalk.c",
835 "misc" ++ path.sep_str ++ "uchar_c16rtomb.c",
836 "misc" ++ path.sep_str ++ "uchar_c32rtomb.c",
837 "misc" ++ path.sep_str ++ "uchar_mbrtoc16.c",
838 "misc" ++ path.sep_str ++ "uchar_mbrtoc32.c",
839832 "misc" ++ path.sep_str ++ "wcrtomb.c",
840833 "misc" ++ path.sep_str ++ "wcsnlen.c",
841834 "misc" ++ path.sep_str ++ "wcstof.c",