| author | |
| committer | |
| log | c26bace6066fde8c0b6ca0ad8559ddb273a85e04 |
| tree | f87448c60d15e412713f9f624f461c35ff07c6f2 |
| parent | 491b460e0a5637d42cc60e9d69a666cac2591ae3 |
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.zig1768 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) |
| 80 | 80 | return ret; |
| 81 | 81 | } |
| 82 | 82 | |
| 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 | ||
| 83 | 104 | __real__ x = (__real__ z - __imag__ z) * (__real__ z + __imag__ z) - __FLT_CST(1.0); |
| 84 | 105 | __imag__ x = __FLT_CST(2.0) * __real__ z * __imag__ z; |
| 85 | 106 | |
| 86 | 107 | x = __FLT_ABI(csqrt) (x); |
| 87 | 108 | |
| 88 | if (__real__ z < __FLT_CST(0.0)) | |
| 109 | if (signbit (__real__ z)) | |
| 89 | 110 | x = -x; |
| 90 | 111 | |
| 91 | 112 | __real__ x += __real__ z; |
| ... | ... | @@ -93,7 +114,7 @@ __FLT_ABI(cacosh) (__FLT_TYPE __complex__ z) |
| 93 | 114 | |
| 94 | 115 | ret = __FLT_ABI(clog) (x); |
| 95 | 116 | |
| 96 | if (__real__ ret < __FLT_CST(0.0)) | |
| 117 | if (signbit (__real__ ret)) | |
| 97 | 118 | ret = -ret; |
| 98 | 119 | |
| 99 | 120 | return ret; |
lib/libc/mingw/complex/casinh.def.h+63-6| ... | ... | @@ -47,6 +47,7 @@ __FLT_ABI(casinh) (__FLT_TYPE __complex__ z) |
| 47 | 47 | { |
| 48 | 48 | __complex__ __FLT_TYPE ret; |
| 49 | 49 | __complex__ __FLT_TYPE x; |
| 50 | __FLT_TYPE arz, aiz; | |
| 50 | 51 | int r_class = fpclassify (__real__ z); |
| 51 | 52 | int i_class = fpclassify (__imag__ z); |
| 52 | 53 | |
| ... | ... | @@ -87,13 +88,69 @@ __FLT_ABI(casinh) (__FLT_TYPE __complex__ z) |
| 87 | 88 | if (r_class == FP_ZERO && i_class == FP_ZERO) |
| 88 | 89 | return z; |
| 89 | 90 | |
| 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)) */ | |
| 92 | 92 | |
| 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); | |
| 94 | 96 | |
| 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); | |
| 97 | 154 | |
| 98 | return __FLT_ABI(clog) (x); | |
| 155 | return ret; | |
| 99 | 156 | } |
lib/libc/mingw/complex/catanh.def.h+31-6| ... | ... | @@ -75,17 +75,42 @@ __FLT_ABI(catanh) (__FLT_TYPE __complex__ z) |
| 75 | 75 | if (r_class == FP_ZERO && i_class == FP_ZERO) |
| 76 | 76 | return z; |
| 77 | 77 | |
| 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) */ | |
| 78 | 85 | i2 = __imag__ z * __imag__ z; |
| 79 | 86 | |
| 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; | |
| 82 | 104 | |
| 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; | |
| 85 | 107 | |
| 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 | } | |
| 87 | 110 | |
| 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; | |
| 89 | 114 | |
| 90 | 115 | __imag__ ret = __FLT_CST(0.5) * __FLT_ABI(atan2) (__FLT_CST(2.0) * __imag__ z, d); |
| 91 | 116 |
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 | ||
| 9 | extern HINSTANCE __mingw_winmain_hInstance; | |
| 10 | extern LPSTR __mingw_winmain_lpCmdLine; | |
| 11 | extern DWORD __mingw_winmain_nShowCmd; | |
| 12 | ||
| 13 | /*ARGSUSED*/ | |
| 14 | int 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. */ | |
| 10 | int WINAPI wWinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPWSTR lpCmdLine,int nShowCmd); | |
| 11 | ||
| 12 | extern HINSTANCE __mingw_winmain_hInstance; | |
| 13 | extern LPWSTR __mingw_winmain_lpCmdLine; | |
| 14 | extern DWORD __mingw_winmain_nShowCmd; | |
| 15 | ||
| 16 | int wmain (int, wchar_t **, wchar_t **); | |
| 17 | ||
| 18 | /*ARGSUSED*/ | |
| 19 | int 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 @@ |
| 13 | 13 | #include <signal.h> |
| 14 | 14 | #include <stdio.h> |
| 15 | 15 | |
| 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. */ | |
| 23 | extern IMAGE_DOS_HEADER __ImageBase; | |
| 24 | #endif | |
| 25 | ||
| 26 | 16 | #pragma pack(push,1) |
| 27 | 17 | typedef struct _UNWIND_INFO { |
| 28 | 18 | BYTE VersionAndFlags; |
lib/libc/mingw/crt/crtdll.c+1| ... | ... | @@ -142,6 +142,7 @@ WINBOOL WINAPI DllMainCRTStartup (HANDLE, DWORD, LPVOID); |
| 142 | 142 | int __mingw_init_ehandler (void); |
| 143 | 143 | #endif |
| 144 | 144 | |
| 145 | __attribute__((used)) /* required due to bug in gcc / ld */ | |
| 145 | 146 | WINBOOL WINAPI |
| 146 | 147 | DllMainCRTStartup (HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved) |
| 147 | 148 | { |
lib/libc/mingw/crt/crtexe.c+24-106| ... | ... | @@ -35,16 +35,9 @@ extern char *** __MINGW_IMP_SYMBOL(__initenv); |
| 35 | 35 | #define __initenv (* __MINGW_IMP_SYMBOL(__initenv)) |
| 36 | 36 | #endif |
| 37 | 37 | |
| 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. */ | |
| 43 | 38 | extern IMAGE_DOS_HEADER __ImageBase; |
| 44 | 39 | |
| 45 | 40 | extern void _fpreset (void); |
| 46 | #define SPACECHAR _T(' ') | |
| 47 | #define DQUOTECHAR _T('\"') | |
| 48 | 41 | |
| 49 | 42 | int *__cdecl __p__commode(void); |
| 50 | 43 | |
| ... | ... | @@ -68,19 +61,10 @@ extern const PIMAGE_TLS_CALLBACK __dyn_tls_init_callback; |
| 68 | 61 | |
| 69 | 62 | extern int __mingw_app_type; |
| 70 | 63 | |
| 71 | HINSTANCE __mingw_winmain_hInstance; | |
| 72 | _TCHAR *__mingw_winmain_lpCmdLine; | |
| 73 | DWORD __mingw_winmain_nShowCmd = SW_SHOWDEFAULT; | |
| 74 | ||
| 75 | 64 | static int argc; |
| 76 | 65 | extern void __main(void); |
| 77 | #ifdef WPRFLAG | |
| 78 | static wchar_t **argv; | |
| 79 | static wchar_t **envp; | |
| 80 | #else | |
| 81 | static char **argv; | |
| 82 | static char **envp; | |
| 83 | #endif | |
| 66 | static _TCHAR **argv; | |
| 67 | static _TCHAR **envp; | |
| 84 | 68 | |
| 85 | 69 | static int argret; |
| 86 | 70 | static int mainret=0; |
| ... | ... | @@ -91,11 +75,7 @@ extern LPTOP_LEVEL_EXCEPTION_FILTER __mingw_oldexcpt_handler; |
| 91 | 75 | |
| 92 | 76 | extern void _pei386_runtime_relocator (void); |
| 93 | 77 | long CALLBACK _gnu_exception_handler (EXCEPTION_POINTERS * exception_data); |
| 94 | #ifdef WPRFLAG | |
| 95 | static void duplicate_ppstrings (int ac, wchar_t ***av); | |
| 96 | #else | |
| 97 | static void duplicate_ppstrings (int ac, char ***av); | |
| 98 | #endif | |
| 78 | static void duplicate_ppstrings (int ac, _TCHAR ***av); | |
| 99 | 79 | |
| 100 | 80 | static int __cdecl pre_c_init (void); |
| 101 | 81 | static void __cdecl pre_cpp_init (void); |
| ... | ... | @@ -134,7 +114,7 @@ pre_c_init (void) |
| 134 | 114 | * __p__fmode() = _fmode; |
| 135 | 115 | * __p__commode() = _commode; |
| 136 | 116 | |
| 137 | #ifdef WPRFLAG | |
| 117 | #ifdef _UNICODE | |
| 138 | 118 | _wsetargv(); |
| 139 | 119 | #else |
| 140 | 120 | _setargv(); |
| ... | ... | @@ -155,7 +135,7 @@ pre_cpp_init (void) |
| 155 | 135 | { |
| 156 | 136 | startinfo.newmode = _newmode; |
| 157 | 137 | |
| 158 | #ifdef WPRFLAG | |
| 138 | #ifdef _UNICODE | |
| 159 | 139 | argret = __wgetmainargs(&argc,&argv,&envp,_dowildcard,&startinfo); |
| 160 | 140 | #else |
| 161 | 141 | argret = __getmainargs(&argc,&argv,&envp,_dowildcard,&startinfo); |
| ... | ... | @@ -166,6 +146,7 @@ static int __tmainCRTStartup (void); |
| 166 | 146 | |
| 167 | 147 | int WinMainCRTStartup (void); |
| 168 | 148 | |
| 149 | __attribute__((used)) /* required due to bug in gcc / ld */ | |
| 169 | 150 | int WinMainCRTStartup (void) |
| 170 | 151 | { |
| 171 | 152 | int ret = 255; |
| ... | ... | @@ -177,7 +158,11 @@ int WinMainCRTStartup (void) |
| 177 | 158 | #ifdef SEH_INLINE_ASM |
| 178 | 159 | asm ("\tnop\n" |
| 179 | 160 | "\t.l_endw: nop\n" |
| 161 | #ifdef __arm__ | |
| 162 | "\t.seh_handler __C_specific_handler, %except\n" | |
| 163 | #else | |
| 180 | 164 | "\t.seh_handler __C_specific_handler, @except\n" |
| 165 | #endif | |
| 181 | 166 | "\t.seh_handlerdata\n" |
| 182 | 167 | "\t.long 1\n" |
| 183 | 168 | "\t.rva .l_startw, .l_endw, _gnu_exception_handler ,.l_endw\n" |
| ... | ... | @@ -192,6 +177,7 @@ int mainCRTStartup (void); |
| 192 | 177 | int __mingw_init_ehandler (void); |
| 193 | 178 | #endif |
| 194 | 179 | |
| 180 | __attribute__((used)) /* required due to bug in gcc / ld */ | |
| 195 | 181 | int mainCRTStartup (void) |
| 196 | 182 | { |
| 197 | 183 | int ret = 255; |
| ... | ... | @@ -203,7 +189,11 @@ int mainCRTStartup (void) |
| 203 | 189 | #ifdef SEH_INLINE_ASM |
| 204 | 190 | asm ("\tnop\n" |
| 205 | 191 | "\t.l_end: nop\n" |
| 192 | #ifdef __arm__ | |
| 193 | "\t.seh_handler __C_specific_handler, %except\n" | |
| 194 | #else | |
| 206 | 195 | "\t.seh_handler __C_specific_handler, @except\n" |
| 196 | #endif | |
| 207 | 197 | "\t.seh_handlerdata\n" |
| 208 | 198 | "\t.long 1\n" |
| 209 | 199 | "\t.rva .l_start, .l_end, _gnu_exception_handler ,.l_end\n" |
| ... | ... | @@ -221,14 +211,6 @@ __attribute__((force_align_arg_pointer)) |
| 221 | 211 | __declspec(noinline) int |
| 222 | 212 | __tmainCRTStartup (void) |
| 223 | 213 | { |
| 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 | { | |
| 232 | 214 | void *lock_free = NULL; |
| 233 | 215 | void *fiberid = ((PNT_TIB)NtCurrentTeb())->StackBase; |
| 234 | 216 | int nested = FALSE; |
| ... | ... | @@ -275,57 +257,20 @@ __tmainCRTStartup (void) |
| 275 | 257 | |
| 276 | 258 | _fpreset (); |
| 277 | 259 | |
| 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 | } | |
| 312 | 260 | duplicate_ppstrings (argc, &argv); |
| 313 | __main (); | |
| 314 | #ifdef WPRFLAG | |
| 261 | __main (); /* C++ initialization. */ | |
| 262 | #ifdef _UNICODE | |
| 315 | 263 | __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); | |
| 319 | 264 | #else |
| 320 | 265 | __initenv = envp; |
| 321 | mainret = main (argc, argv, envp); | |
| 322 | 266 | #endif |
| 267 | mainret = _tmain (argc, argv, envp); | |
| 323 | 268 | if (!managedapp) |
| 324 | 269 | exit (mainret); |
| 325 | 270 | |
| 326 | 271 | if (has_cctor == 0) |
| 327 | 272 | _cexit (); |
| 328 | } | |
| 273 | ||
| 329 | 274 | return mainret; |
| 330 | 275 | } |
| 331 | 276 | |
| ... | ... | @@ -370,49 +315,22 @@ check_managed_app (void) |
| 370 | 315 | return 0; |
| 371 | 316 | } |
| 372 | 317 | |
| 373 | #ifdef WPRFLAG | |
| 374 | static 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 | } | |
| 382 | static 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 | |
| 399 | static void duplicate_ppstrings (int ac, char ***av) | |
| 318 | static void duplicate_ppstrings (int ac, _TCHAR ***av) | |
| 400 | 319 | { |
| 401 | 	char **avl; | |
| 320 | 	_TCHAR **avl; | |
| 402 | 321 | 	int i; |
| 403 | 	char **n = (char **) malloc (sizeof (char *) * (ac + 1)); | |
| 322 | 	_TCHAR **n = (_TCHAR **) malloc (sizeof (_TCHAR *) * (ac + 1)); | |
| 404 | 323 | 	 |
| 405 | 324 | 	avl=*av; |
| 406 | 325 | 	for (i=0; i < ac; i++) |
| 407 | 326 | 	 { |
| 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); | |
| 410 | 329 | 		memcpy (n[i], avl[i], l); |
| 411 | 330 | 	 } |
| 412 | 331 | 	n[i] = NULL; |
| 413 | 332 | 	*av = n; |
| 414 | 333 | } |
| 415 | #endif | |
| 416 | 334 | |
| 417 | 335 | int __cdecl atexit (_PVFV func) |
| 418 | 336 | { |
lib/libc/mingw/crt/dll_argv.c+1-2| ... | ... | @@ -12,11 +12,10 @@ |
| 12 | 12 | |
| 13 | 13 | extern int _dowildcard; |
| 14 | 14 | |
| 15 | #ifdef WPRFLAG | |
| 16 | 15 | int __CRTDECL |
| 16 | #ifdef _UNICODE | |
| 17 | 17 | __wsetargv (void) |
| 18 | 18 | #else |
| 19 | int __CRTDECL | |
| 20 | 19 | __setargv (void) |
| 21 | 20 | #endif |
| 22 | 21 | { |
lib/libc/mingw/crt/dllargv.c+1-2| ... | ... | @@ -10,11 +10,10 @@ |
| 10 | 10 | |
| 11 | 11 | #include <internal.h> |
| 12 | 12 | |
| 13 | #ifdef WPRFLAG | |
| 14 | 13 | int __CRTDECL |
| 14 | #ifdef _UNICODE | |
| 15 | 15 | _wsetargv (void) |
| 16 | 16 | #else |
| 17 | int __CRTDECL | |
| 18 | 17 | _setargv (void) |
| 19 | 18 | #endif |
| 20 | 19 | { |
lib/libc/mingw/crt/pesect.c-9| ... | ... | @@ -7,16 +7,7 @@ |
| 7 | 7 | #include <windows.h> |
| 8 | 8 | #include <string.h> |
| 9 | 9 | |
| 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. */ | |
| 18 | 10 | extern IMAGE_DOS_HEADER __ImageBase; |
| 19 | #endif | |
| 20 | 11 | |
| 21 | 12 | WINBOOL _ValidateImageBase (PBYTE); |
| 22 | 13 |
lib/libc/mingw/crt/pseudo-reloc.c+2-5| ... | ... | @@ -48,7 +48,7 @@ |
| 48 | 48 | |
| 49 | 49 | extern char __RUNTIME_PSEUDO_RELOC_LIST__; |
| 50 | 50 | extern char __RUNTIME_PSEUDO_RELOC_LIST_END__; |
| 51 | extern IMAGE_DOS_HEADER __MINGW_LSYMBOL(_image_base__); | |
| 51 | extern IMAGE_DOS_HEADER __ImageBase; | |
| 52 | 52 | |
| 53 | 53 | void _pei386_runtime_relocator (void); |
| 54 | 54 | |
| ... | ... | @@ -480,6 +480,7 @@ do_pseudo_reloc (void * start, void * end, void * base) |
| 480 | 480 | } |
| 481 | 481 | } |
| 482 | 482 | |
| 483 | __attribute__((used)) /* required due to bug in gcc / ld */ | |
| 483 | 484 | void |
| 484 | 485 | _pei386_runtime_relocator (void) |
| 485 | 486 | { |
| ... | ... | @@ -499,11 +500,7 @@ _pei386_runtime_relocator (void) |
| 499 | 500 | |
| 500 | 501 | do_pseudo_reloc (&__RUNTIME_PSEUDO_RELOC_LIST__, |
| 501 | 502 | 		 &__RUNTIME_PSEUDO_RELOC_LIST_END__, |
| 502 | #ifdef __GNUC__ | |
| 503 | 		 &__MINGW_LSYMBOL(_image_base__) | |
| 504 | #else | |
| 505 | 503 | 		 &__ImageBase |
| 506 | #endif | |
| 507 | 504 | 		 ); |
| 508 | 505 | #ifdef __MINGW64_VERSION_MAJOR |
| 509 | 506 | 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) { |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | static 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); | |
| 63 | 64 | } |
| 64 | *ptr = NULL; | |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | int __mingw_cxa_thread_atexit(dtor_fn dtor, void *obj, void *dso) { |
| 68 | 68 | if (!inited) |
| 69 | 69 | return 1; |
| 70 | 70 | 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 | } | |
| 71 | 79 | dtor_obj *handler = (dtor_obj *) calloc(1, sizeof(*handler)); |
| 72 | 80 | if (!handler) |
| 73 | 81 | return 1; |
| 74 | 82 | handler->dtor = dtor; |
| 75 | 83 | 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; | |
| 78 | 86 | return 0; |
| 79 | 87 | } |
| 80 | 88 | |
| 81 | 89 | static void WINAPI tls_atexit_callback(HANDLE __UNUSED_PARAM(hDllHandle), DWORD dwReason, LPVOID __UNUSED_PARAM(lpReserved)) { |
| 82 | 90 | 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); | |
| 86 | 95 | TlsFree(tls_dtors_slot); |
| 87 | 96 | run_dtor_list(&global_dtors); |
| 88 | 97 | } |
| 89 | 98 | } |
| 90 | 99 | |
| 91 | 100 | static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUSED_PARAM(lpReserved)) { |
| 92 | dtor_obj * p; | |
| 101 | dtor_obj **p; | |
| 93 | 102 | switch (dwReason) { |
| 94 | 103 | case DLL_PROCESS_ATTACH: |
| 95 | 104 | if (inited == 0) { |
| ... | ... | @@ -134,9 +143,10 @@ static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUS |
| 134 | 143 | * linked CRT (which still runs TLS destructors for the main thread). |
| 135 | 144 | */ |
| 136 | 145 | 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); | |
| 140 | 150 | /* For DLLs, run dtors when detached. For EXEs, run dtors via the |
| 141 | 151 | * thread local atexit callback, to make sure they don't run when |
| 142 | 152 | * exiting the process with _exit or ExitProcess. */ |
| ... | ... | @@ -151,9 +161,10 @@ static void WINAPI tls_callback(HANDLE hDllHandle, DWORD dwReason, LPVOID __UNUS |
| 151 | 161 | case DLL_THREAD_ATTACH: |
| 152 | 162 | break; |
| 153 | 163 | 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); | |
| 157 | 168 | break; |
| 158 | 169 | } |
| 159 | 170 | } |
lib/libc/mingw/crt/tlssup.c+1| ... | ... | @@ -44,6 +44,7 @@ _CRTALLOC(".tls$ZZZ") char *_tls_end = NULL; |
| 44 | 44 | _CRTALLOC(".CRT$XLA") PIMAGE_TLS_CALLBACK __xl_a = 0; |
| 45 | 45 | _CRTALLOC(".CRT$XLZ") PIMAGE_TLS_CALLBACK __xl_z = 0; |
| 46 | 46 | |
| 47 | __attribute__((used)) | |
| 47 | 48 | const IMAGE_TLS_DIRECTORY _tls_used = { |
| 48 | 49 | (ULONG_PTR) &_tls_start, (ULONG_PTR) &_tls_end, |
| 49 | 50 | (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). | |
| 36 | int __cdecl __getmainargs(int * _Argc, char *** _Argv, char ***_Env, int _DoWildCard, _startupinfo *_StartInfo); | |
| 37 | int __cdecl __wgetmainargs(int * _Argc, wchar_t *** _Argv, wchar_t ***_Env, int _DoWildCard, _startupinfo *_StartInfo); | |
| 38 | void __cdecl __MINGW_ATTRIB_NORETURN _amsg_exit(int ret); | |
| 39 | unsigned int __cdecl _get_output_format(void); | |
| 40 | ||
| 41 | int __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 | ||
| 58 | extern char __mingw_module_is_dll; | |
| 59 | ||
| 60 | ||
| 61 | // Wrappers with legacy msvcrt.dll style API, based on the new ucrtbase.dll functions. | |
| 62 | int __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 | ||
| 74 | int __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 | ||
| 93 | int __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 | ||
| 103 | int __cdecl (*__MINGW_IMP_SYMBOL(at_quick_exit))(void (__cdecl *)(void)) = at_quick_exit; | |
| 104 | ||
| 105 | void __cdecl __MINGW_ATTRIB_NORETURN _amsg_exit(int ret) { | |
| 106 | fprintf(stderr, "runtime error %d\n", ret); | |
| 107 | _exit(255); | |
| 108 | } | |
| 109 | ||
| 110 | unsigned 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". | |
| 119 | typedef void __cdecl (*_tzset_func)(void); | |
| 120 | extern _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. | |
| 124 | static char initial_tzname0[] = "PST"; | |
| 125 | static char initial_tzname1[] = "PDT"; | |
| 126 | static char *initial_tznames[] = { initial_tzname0, initial_tzname1 }; | |
| 127 | static long initial_timezone = 28800; | |
| 128 | static int initial_daylight = 1; | |
| 129 | char** __MINGW_IMP_SYMBOL(tzname) = initial_tznames; | |
| 130 | long * __MINGW_IMP_SYMBOL(timezone) = &initial_timezone; | |
| 131 | int * __MINGW_IMP_SYMBOL(daylight) = &initial_daylight; | |
| 132 | ||
| 133 | void __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 | ||
| 143 | void __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). | |
| 150 | int __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. | |
| 161 | int __cdecl (*__MINGW_IMP_SYMBOL(__getmainargs))(int *, char ***, char ***, int, _startupinfo *) = __getmainargs; | |
| 162 | int __cdecl (*__MINGW_IMP_SYMBOL(__wgetmainargs))(int *, wchar_t ***, wchar_t ***, int, _startupinfo *) = __wgetmainargs; | |
| 163 | void __cdecl (*__MINGW_IMP_SYMBOL(_amsg_exit))(int) = _amsg_exit; | |
| 164 | unsigned int __cdecl (*__MINGW_IMP_SYMBOL(_get_output_format))(void) = _get_output_format; | |
| 165 | void __cdecl (*__MINGW_IMP_SYMBOL(tzset))(void) = tzset; | |
| 166 | int __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 @@ |
| 10 | 10 | #ifndef _UNICODE |
| 11 | 11 | #define _UNICODE |
| 12 | 12 | #endif |
| 13 | #define WPRFLAG 1 | |
| 14 | 13 | |
| 15 | 14 | #include "dll_argv.c" |
| 16 | 15 |
lib/libc/mingw/crt/udllargc.c-1| ... | ... | @@ -10,7 +10,6 @@ |
| 10 | 10 | #ifndef _UNICODE |
| 11 | 11 | #define _UNICODE |
| 12 | 12 | #endif |
| 13 | #define WPRFLAG 1 | |
| 14 | 13 | |
| 15 | 14 | #include "dllargv.c" |
| 16 | 15 |
lib/libc/mingw/def-include/msvcrt-common.def.in+7-8| ... | ... | @@ -12,7 +12,11 @@ wcscmpi == _wcsicmp |
| 12 | 12 | strcasecmp == _stricmp |
| 13 | 13 | strncasecmp == _strnicmp |
| 14 | 14 | |
| 15 | #ifdef UCRTBASE | |
| 16 | ; access is provided as an alias for __mingw_access | |
| 17 | #else | |
| 15 | 18 | ADD_UNDERSCORE(access) |
| 19 | #endif | |
| 16 | 20 | ADD_UNDERSCORE(chdir) |
| 17 | 21 | ADD_UNDERSCORE(chmod) |
| 18 | 22 | ADD_UNDERSCORE(chsize) |
| ... | ... | @@ -139,15 +143,10 @@ ADD_UNDERSCORE(hypot) |
| 139 | 143 | ;logb |
| 140 | 144 | ADD_UNDERSCORE(nextafter) |
| 141 | 145 | |
| 142 | longjmp | |
| 143 | ||
| 144 | 146 | #ifndef UCRTBASE |
| 145 | _daylight DATA | |
| 146 | _timezone DATA | |
| 147 | _tzname DATA | |
| 148 | ADD_UNDERSCORE(daylight) | |
| 149 | ADD_UNDERSCORE(timezone) | |
| 150 | ADD_UNDERSCORE(tzname) | |
| 147 | daylight DATA == _daylight | |
| 148 | timezone DATA == _timezone | |
| 149 | tzname DATA == _tzname | |
| 151 | 150 | |
| 152 | 151 | ADD_UNDERSCORE(vsnprintf_s) |
| 153 | 152 | #endif |
lib/libc/mingw/gdtoa/arithchk.c+10-11| ... | ... | @@ -42,7 +42,7 @@ VAX		= { "VAX", 4 }, |
| 42 | 42 | CRAY		= { "CRAY", 5}; |
| 43 | 43 | |
| 44 | 44 | static Akind * |
| 45 | Lcheck() | |
| 45 | Lcheck(void) | |
| 46 | 46 | { |
| 47 | 47 | 	union { |
| 48 | 48 | 		double d; |
| ... | ... | @@ -69,7 +69,7 @@ Lcheck() |
| 69 | 69 | 	} |
| 70 | 70 | |
| 71 | 71 | static Akind * |
| 72 | icheck() | |
| 72 | icheck(void) | |
| 73 | 73 | { |
| 74 | 74 | 	union { |
| 75 | 75 | 		double d; |
| ... | ... | @@ -95,10 +95,8 @@ icheck() |
| 95 | 95 | 	return 0; |
| 96 | 96 | 	} |
| 97 | 97 | |
| 98 | char *emptyfmt = "";	/* avoid possible warning message with printf("") */ | |
| 99 | ||
| 100 | 98 | static Akind * |
| 101 | ccheck() | |
| 99 | ccheck(int ac, char **av) | |
| 102 | 100 | { |
| 103 | 101 | 	union { |
| 104 | 102 | 		double d; |
| ... | ... | @@ -107,10 +105,11 @@ ccheck() |
| 107 | 105 | 	long Cray1; |
| 108 | 106 | |
| 109 | 107 | 	/* 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) | |
| 112 | 111 | 		Cray1 = 1000000*Cray1 + 693716; |
| 113 | 	if (printf(emptyfmt, Cray1) >= 0) | |
| 112 | 	if (av || ac >= 0) | |
| 114 | 113 | 		Cray1 = 1000000*Cray1 + 115456; |
| 115 | 114 | 	u.d = 1e13; |
| 116 | 115 | 	if (u.L == Cray1) |
| ... | ... | @@ -119,7 +118,7 @@ ccheck() |
| 119 | 118 | 	} |
| 120 | 119 | |
| 121 | 120 | static int |
| 122 | fzcheck() | |
| 121 | fzcheck(void) | |
| 123 | 122 | { |
| 124 | 123 | 	double a, b; |
| 125 | 124 | 	int i; |
| ... | ... | @@ -138,7 +137,7 @@ fzcheck() |
| 138 | 137 | 	} |
| 139 | 138 | |
| 140 | 139 | int |
| 141 | main() | |
| 140 | main(int argc, char **argv) | |
| 142 | 141 | { |
| 143 | 142 | 	Akind *a = 0; |
| 144 | 143 | 	int Ldef = 0; |
| ... | ... | @@ -161,7 +160,7 @@ main() |
| 161 | 160 | 		a = icheck(); |
| 162 | 161 | 		} |
| 163 | 162 | 	else if (sizeof(double) == sizeof(long)) |
| 164 | 		a = ccheck(); | |
| 163 | 		a = ccheck(argc, argv); | |
| 165 | 164 | 	if (a) { |
| 166 | 165 | 		fprintf(f, "#define %s\n#define Arith_Kind_ASL %d\n", |
| 167 | 166 | 			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 |
| 117 | 117 | 	ULong x; |
| 118 | 118 | #endif |
| 119 | 119 | 	Bigint *b, *b1, *delta, *mlo, *mhi, *S; |
| 120 | 	union _dbl_union d, d2, eps; | |
| 120 | 	union _dbl_union d, d2, eps, eps1; | |
| 121 | 121 | 	double ds; |
| 122 | 122 | 	char *s, *s0; |
| 123 | 123 | #ifdef SET_INEXACT |
| ... | ... | @@ -282,7 +282,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv |
| 282 | 282 | 			break; |
| 283 | 283 | 		case 2: |
| 284 | 284 | 			leftright = 0; |
| 285 | 			/* no break */ | |
| 285 | 			/* fallthrough */ | |
| 286 | 286 | 		case 4: |
| 287 | 287 | 			if (ndigits <= 0) |
| 288 | 288 | 				ndigits = 1; |
| ... | ... | @@ -290,7 +290,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv |
| 290 | 290 | 			break; |
| 291 | 291 | 		case 3: |
| 292 | 292 | 			leftright = 0; |
| 293 | 			/* no break */ | |
| 293 | 			/* fallthrough */ | |
| 294 | 294 | 		case 5: |
| 295 | 295 | 			i = ndigits + k + 1; |
| 296 | 296 | 			ilim = i; |
| ... | ... | @@ -363,12 +363,28 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv |
| 363 | 363 | 			 * generating digits needed. |
| 364 | 364 | 			 */ |
| 365 | 365 | 			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 | 			} | |
| 366 | 382 | 			for(i = 0;;) { |
| 367 | 383 | 				L = dval(&d); |
| 368 | 384 | 				dval(&d) -= L; |
| 369 | 385 | 				*s++ = '0' + (int)L; |
| 370 | 386 | 				if (dval(&d) < dval(&eps)) |
| 371 | 					goto ret1; | |
| 387 | 					goto retc; | |
| 372 | 388 | 				if (1. - dval(&d) < dval(&eps)) |
| 373 | 389 | 					goto bump_up; |
| 374 | 390 | 				if (++i >= ilim) |
| ... | ... | @@ -389,11 +405,8 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv |
| 389 | 405 | 				if (i == ilim) { |
| 390 | 406 | 					if (dval(&d) > 0.5 + dval(&eps)) |
| 391 | 407 | 						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; | |
| 397 | 410 | 					break; |
| 398 | 411 | 				} |
| 399 | 412 | 			} |
| ... | ... | @@ -439,7 +452,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv |
| 439 | 452 | #ifdef Honor_FLT_ROUNDS |
| 440 | 453 | 				if (mode > 1) |
| 441 | 454 | 				 switch(Rounding) { |
| 442 | 				 case 0: goto ret1; | |
| 455 | 				 case 0: goto retc; | |
| 443 | 456 | 				 case 2: goto bump_up; |
| 444 | 457 | 				 } |
| 445 | 458 | #endif |
| ... | ... | @@ -462,7 +475,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv |
| 462 | 475 | 				break; |
| 463 | 476 | 			} |
| 464 | 477 | 		} |
| 465 | 		goto ret1; | |
| 478 | 		goto retc; | |
| 466 | 479 | 	} |
| 467 | 480 | |
| 468 | 481 | 	m2 = b2; |
| ... | ... | @@ -650,7 +663,7 @@ char *__dtoa (double d0, int mode, int ndigits, int *decpt, int *sign, char **rv |
| 650 | 663 | 			} |
| 651 | 664 | 			if (j2 > 0) { |
| 652 | 665 | #ifdef Honor_FLT_ROUNDS |
| 653 | 				if (!Rounding) | |
| 666 | 				if (!Rounding && mode > 1) | |
| 654 | 667 | 					goto accept_dig; |
| 655 | 668 | #endif |
| 656 | 669 | 				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 |
| 729 | 742 | 			Bfree(mlo); |
| 730 | 743 | 		Bfree(mhi); |
| 731 | 744 | 	} |
| 745 | retc: | |
| 746 | 	while(s > s0 && s[-1] == '0') | |
| 747 | 		--s; | |
| 748 | 	/* fallthrough */ | |
| 732 | 749 | ret1: |
| 733 | 750 | #ifdef SET_INEXACT |
| 734 | 751 | 	if (inexact) { |
lib/libc/mingw/gdtoa/g__fmt.c+56| ... | ... | @@ -35,6 +35,30 @@ THIS SOFTWARE. |
| 35 | 35 | #include "locale.h" |
| 36 | 36 | #endif |
| 37 | 37 | |
| 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 | ||
| 38 | 62 | char *__g__fmt (char *b, char *s, char *se, int decpt, ULong sign, size_t blen) |
| 39 | 63 | { |
| 40 | 64 | 	int i, j, k; |
| ... | ... | @@ -140,3 +164,35 @@ char *__g__fmt (char *b, char *s, char *se, int decpt, ULong sign, size_t blen) |
| 140 | 164 | 	__freedtoa(s0); |
| 141 | 165 | 	return b; |
| 142 | 166 | } |
| 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) |
| 45 | 45 | |
| 46 | 46 | 	if (ndig < 0) |
| 47 | 47 | 		ndig = 0; |
| 48 | 	if ((int) bufsize < ndig + 10) | |
| 48 | 	if (bufsize < (size_t)(ndig + 10)) | |
| 49 | 49 | 		return 0; |
| 50 | 50 | |
| 51 | 51 | 	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) |
| 45 | 45 | |
| 46 | 46 | 	if (ndig < 0) |
| 47 | 47 | 		ndig = 0; |
| 48 | 	if ((int) bufsize < ndig + 10) | |
| 48 | 	if (bufsize < (size_t)(ndig + 10)) | |
| 49 | 49 | 		return 0; |
| 50 | 50 | |
| 51 | 51 | 	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) |
| 69 | 69 | |
| 70 | 70 | 	if (ndig < 0) |
| 71 | 71 | 		ndig = 0; |
| 72 | 	if ((int) bufsize < ndig + 10) | |
| 72 | 	if (bufsize < (size_t)(ndig + 10)) | |
| 73 | 73 | 		return 0; |
| 74 | 74 | |
| 75 | 75 | 	L = (UShort *)V; |
| ... | ... | @@ -103,14 +103,14 @@ char *__g_xfmt (char *buf, void *V, int ndig, size_t bufsize) |
| 103 | 103 | 	if (ex != 0) { |
| 104 | 104 | 		if (ex == 0x7fff) { |
| 105 | 105 | 			/* Infinity or NaN */ |
| 106 | 			if (bits[0] | bits[1]) | |
| 107 | 				b = strcp(buf, "NaN"); | |
| 108 | 			else { | |
| 106 | 			if (!bits[0] && bits[1]== 0x80000000) { | |
| 109 | 107 | 				b = buf; |
| 110 | 108 | 				if (sign) |
| 111 | 109 | 					*b++ = '-'; |
| 112 | 110 | 				b = strcp(b, "Infinity"); |
| 113 | 111 | 			} |
| 112 | 			else | |
| 113 | 				b = strcp(buf, "NaN"); | |
| 114 | 114 | 			return b; |
| 115 | 115 | 		} |
| 116 | 116 | 		i = STRTOG_Normal; |
lib/libc/mingw/gdtoa/gd_qnan.h-9| ... | ... | @@ -1,12 +1,3 @@ |
| 1 | 1 | #define f_QNAN 0x7fc00000 |
| 2 | 2 | #define d_QNAN0 0x0 |
| 3 | 3 | #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) |
| 103 | 103 | *	 calculation. |
| 104 | 104 | */ |
| 105 | 105 | |
| 106 | char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, | |
| 106 | char *__gdtoa (const FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, | |
| 107 | 107 | 							 int *decpt, char **rve) |
| 108 | 108 | { |
| 109 | 109 | /*	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, |
| 270 | 270 | 			break; |
| 271 | 271 | 		case 2: |
| 272 | 272 | 			leftright = 0; |
| 273 | 			/* no break */ | |
| 273 | 			/* fallthrough */ | |
| 274 | 274 | 		case 4: |
| 275 | 275 | 			if (ndigits <= 0) |
| 276 | 276 | 				ndigits = 1; |
| ... | ... | @@ -278,7 +278,7 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, |
| 278 | 278 | 			break; |
| 279 | 279 | 		case 3: |
| 280 | 280 | 			leftright = 0; |
| 281 | 			/* no break */ | |
| 281 | 			/* fallthrough */ | |
| 282 | 282 | 		case 5: |
| 283 | 283 | 			i = ndigits + k + 1; |
| 284 | 284 | 			ilim = i; |
| ... | ... | @@ -288,7 +288,9 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, |
| 288 | 288 | 	} |
| 289 | 289 | 	s = s0 = rv_alloc(i); |
| 290 | 290 | |
| 291 | 	if ( (rdir = fpi->rounding - 1) !=0) { | |
| 291 | 	if (mode <= 1) | |
| 292 | 		rdir = 0; | |
| 293 | 	else if ( (rdir = fpi->rounding - 1) !=0) { | |
| 292 | 294 | 		if (rdir < 0) |
| 293 | 295 | 			rdir = 2; |
| 294 | 296 | 		if (kind & STRTOG_Neg) |
| ... | ... | @@ -393,7 +395,7 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, |
| 393 | 395 | 					else if (dval(&d) < ds - dval(&eps)) { |
| 394 | 396 | 						if (dval(&d)) |
| 395 | 397 | 							inex = STRTOG_Inexlo; |
| 396 | 						goto clear_trailing0; | |
| 398 | 						goto ret1; | |
| 397 | 399 | 					} |
| 398 | 400 | 					break; |
| 399 | 401 | 				} |
| ... | ... | @@ -456,12 +458,8 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, |
| 456 | 458 | 						} |
| 457 | 459 | 					++*s++; |
| 458 | 460 | 				} |
| 459 | 				else { | |
| 461 | 				else | |
| 460 | 462 | 					inex = STRTOG_Inexlo; |
| 461 | clear_trailing0: | |
| 462 | 					while(*--s == '0'){} | |
| 463 | 					++s; | |
| 464 | 				} | |
| 465 | 463 | 				break; |
| 466 | 464 | 			} |
| 467 | 465 | 		} |
| ... | ... | @@ -712,8 +710,6 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, |
| 712 | 710 | chopzeros: |
| 713 | 711 | 		if (b->wds > 1 || b->x[0]) |
| 714 | 712 | 			inex = STRTOG_Inexlo; |
| 715 | 		while(*--s == '0'){} | |
| 716 | 		++s; | |
| 717 | 713 | 	} |
| 718 | 714 | ret: |
| 719 | 715 | 	Bfree(S); |
| ... | ... | @@ -723,6 +719,8 @@ char *__gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, |
| 723 | 719 | 		Bfree(mhi); |
| 724 | 720 | 	} |
| 725 | 721 | ret1: |
| 722 | 	while(s > s0 && s[-1] == '0') | |
| 723 | 		--s; | |
| 726 | 724 | 	Bfree(b); |
| 727 | 725 | 	*s = 0; |
| 728 | 726 | 	*decpt = k + 1; |
lib/libc/mingw/gdtoa/gdtoa.h+1-1| ... | ... | @@ -99,7 +99,7 @@ extern "C" { |
| 99 | 99 | |
| 100 | 100 | extern char* __dtoa (double d, int mode, int ndigits, int *decpt, |
| 101 | 101 | 		 int *sign, char **rve); |
| 102 | extern char* __gdtoa (FPI *fpi, int be, ULong *bits, int *kindp, | |
| 102 | extern char* __gdtoa (const FPI *fpi, int be, ULong *bits, int *kindp, | |
| 103 | 103 | 		 int mode, int ndigits, int *decpt, char **rve); |
| 104 | 104 | extern void __freedtoa (char *); |
| 105 | 105 |
lib/libc/mingw/gdtoa/gdtoaimp.h+18-4| ... | ... | @@ -200,6 +200,12 @@ extern void *MALLOC (size_t); |
| 200 | 200 | #define MALLOC malloc |
| 201 | 201 | #endif |
| 202 | 202 | |
| 203 | #ifdef REALLOC | |
| 204 | extern void *REALLOC (void*, size_t); | |
| 205 | #else | |
| 206 | #define REALLOC realloc | |
| 207 | #endif | |
| 208 | ||
| 203 | 209 | #undef IEEE_Arith |
| 204 | 210 | #undef Avoid_Underflow |
| 205 | 211 | #ifdef IEEE_MC68k |
| ... | ... | @@ -457,10 +463,13 @@ extern double rnd_prod(double, double), rnd_quot(double, double); |
| 457 | 463 | #define ALL_ON 0xffff |
| 458 | 464 | #endif |
| 459 | 465 | |
| 460 | #ifndef MULTIPLE_THREADS | |
| 466 | #ifdef MULTIPLE_THREADS /*{{*/ | |
| 467 | extern void ACQUIRE_DTOA_LOCK (unsigned int); | |
| 468 | extern void FREE_DTOA_LOCK (unsigned int); | |
| 469 | #else /*}{*/ | |
| 461 | 470 | #define ACQUIRE_DTOA_LOCK(n)	/*nothing*/ |
| 462 | 471 | #define FREE_DTOA_LOCK(n)	/*nothing*/ |
| 463 | #endif | |
| 472 | #endif /*}}*/ | |
| 464 | 473 | |
| 465 | 474 | #define Kmax 9 |
| 466 | 475 | |
| ... | ... | @@ -501,12 +510,15 @@ __hi0bits_D2A (ULong y) |
| 501 | 510 | |
| 502 | 511 | #define Balloc __Balloc_D2A |
| 503 | 512 | #define Bfree __Bfree_D2A |
| 513 | #define InfName __InfName_D2A | |
| 514 | #define NanName __NanName_D2A | |
| 504 | 515 | #define ULtoQ __ULtoQ_D2A |
| 505 | 516 | #define ULtof __ULtof_D2A |
| 506 | 517 | #define ULtod __ULtod_D2A |
| 507 | 518 | #define ULtodd __ULtodd_D2A |
| 508 | 519 | #define ULtox __ULtox_D2A |
| 509 | 520 | #define ULtoxL __ULtoxL_D2A |
| 521 | #define add_nanbits __add_nanbits_D2A | |
| 510 | 522 | #define any_on __any_on_D2A |
| 511 | 523 | #define b2d __b2d_D2A |
| 512 | 524 | #define bigtens __bigtens_D2A |
| ... | ... | @@ -548,9 +560,11 @@ __hi0bits_D2A (ULong y) |
| 548 | 560 | |
| 549 | 561 | #define hexdig_init_D2A __mingw_hexdig_init_D2A |
| 550 | 562 | |
| 563 | extern char *add_nanbits (char*, size_t, ULong*, int); | |
| 551 | 564 | extern char *dtoa_result; |
| 552 | 565 | extern const double bigtens[], tens[], tinytens[]; |
| 553 | 566 | extern unsigned char hexdig[]; |
| 567 | extern const char *InfName[6], *NanName[3]; | |
| 554 | 568 | |
| 555 | 569 | extern Bigint *Balloc (int); |
| 556 | 570 | extern void Bfree (Bigint*); |
| ... | ... | @@ -567,9 +581,9 @@ extern void copybits (ULong*, int, Bigint*); |
| 567 | 581 | extern Bigint *d2b (double, int*, int*); |
| 568 | 582 | extern void decrement (Bigint*); |
| 569 | 583 | extern Bigint *diff (Bigint*, Bigint*); |
| 570 | extern int gethex (const char**, FPI*, Long*, Bigint**, int); | |
| 584 | extern int gethex (const char**, const FPI*, Long*, Bigint**, int); | |
| 571 | 585 | extern void hexdig_init_D2A(void); |
| 572 | extern int hexnan (const char**, FPI*, ULong*); | |
| 586 | extern int hexnan (const char**, const FPI*, ULong*); | |
| 573 | 587 | extern int hi0bits_D2A (ULong); |
| 574 | 588 | extern Bigint *i2b (int); |
| 575 | 589 | extern Bigint *increment (Bigint*); |
lib/libc/mingw/gdtoa/gethex.c+17-8| ... | ... | @@ -35,7 +35,7 @@ THIS SOFTWARE. |
| 35 | 35 | #include "locale.h" |
| 36 | 36 | #endif |
| 37 | 37 | |
| 38 | int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign) | |
| 38 | int gethex (const char **sp, const FPI *fpi, Long *expo, Bigint **bp, int sign) | |
| 39 | 39 | { |
| 40 | 40 | 	Bigint *b; |
| 41 | 41 | 	const unsigned char *decpt, *s0, *s, *s1; |
| ... | ... | @@ -62,8 +62,7 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign) |
| 62 | 62 | #endif |
| 63 | 63 | #endif |
| 64 | 64 | |
| 65 | 	if (!hexdig['0']) | |
| 66 | 		hexdig_init_D2A(); | |
| 65 | 	/**** if (!hexdig['0']) hexdig_init_D2A(); ****/ | |
| 67 | 66 | 	*bp = 0; |
| 68 | 67 | 	havedig = 0; |
| 69 | 68 | 	s0 = *(const unsigned char **)sp + 2; |
| ... | ... | @@ -125,7 +124,7 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign) |
| 125 | 124 | 		switch(*++s) { |
| 126 | 125 | 		 case '-': |
| 127 | 126 | 			esign = 1; |
| 128 | 			/* no break */ | |
| 127 | 			/* fallthrough */ | |
| 129 | 128 | 		 case '+': |
| 130 | 129 | 			s++; |
| 131 | 130 | 		} |
| ... | ... | @@ -177,7 +176,6 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign) |
| 177 | 176 | 		 case FPI_Round_down: |
| 178 | 177 | 			if (sign) |
| 179 | 178 | 				goto ovfl1; |
| 180 | 			goto ret_big; | |
| 181 | 179 | 		} |
| 182 | 180 | ret_big: |
| 183 | 181 | 		nbits = fpi->nbits; |
| ... | ... | @@ -190,8 +188,8 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign) |
| 190 | 188 | 		for(j = 0; j < n0; ++j) |
| 191 | 189 | 			b->x[j] = ALL_ON; |
| 192 | 190 | 		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; | |
| 195 | 193 | 		return STRTOG_Normal | STRTOG_Inexlo; |
| 196 | 194 | 	} |
| 197 | 195 | 	n = s1 - s0 - 1; |
| ... | ... | @@ -253,6 +251,17 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign) |
| 253 | 251 | 		Bfree(b); |
| 254 | 252 | ovfl1: |
| 255 | 253 | 		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 | 		} | |
| 256 | 265 | 		return STRTOG_Infinite | STRTOG_Overflow | STRTOG_Inexhi; |
| 257 | 266 | 	} |
| 258 | 267 | 	irv = STRTOG_Normal; |
| ... | ... | @@ -262,7 +271,7 @@ int gethex (const char **sp, FPI *fpi, Long *expo, Bigint **bp, int sign) |
| 262 | 271 | 		if (n >= nbits) { |
| 263 | 272 | 			switch (fpi->rounding) { |
| 264 | 273 | 			 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))) | |
| 266 | 275 | 					goto one_bit; |
| 267 | 276 | 				break; |
| 268 | 277 | 			 case FPI_Round_up: |
lib/libc/mingw/gdtoa/hd_init.c+23-1| ... | ... | @@ -31,6 +31,7 @@ THIS SOFTWARE. |
| 31 | 31 | |
| 32 | 32 | #include "gdtoaimp.h" |
| 33 | 33 | |
| 34 | #if 0 | |
| 34 | 35 | unsigned char hexdig[256]; |
| 35 | 36 | |
| 36 | 37 | static 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) |
| 40 | 41 | 		h[j] = i + inc; |
| 41 | 42 | } |
| 42 | 43 | |
| 43 | void 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. */ | |
| 44 | 46 | { |
| 45 | 47 | #define USC (unsigned char *) |
| 46 | 48 | 	htinit(hexdig, USC "0123456789", 0x10); |
| 47 | 49 | 	htinit(hexdig, USC "abcdef", 0x10 + 10); |
| 48 | 50 | 	htinit(hexdig, USC "ABCDEF", 0x10 + 10); |
| 49 | 51 | } |
| 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) |
| 44 | 44 | 	} while(++x < x1); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | int hexnan (const char **sp, FPI *fpi, ULong *x0) | |
| 47 | int hexnan (const char **sp, const FPI *fpi, ULong *x0) | |
| 48 | 48 | { |
| 49 | 49 | 	ULong c, h, *x, *x1, *xe; |
| 50 | 50 | 	const char *s; |
| 51 | 51 | 	int havedig, hd0, i, nbits; |
| 52 | 52 | |
| 53 | 	if (!hexdig['0']) | |
| 54 | 		hexdig_init_D2A(); | |
| 53 | 	/**** if (!hexdig['0']) hexdig_init_D2A(); ****/ | |
| 55 | 54 | 	nbits = fpi->nbits; |
| 56 | 55 | 	x = x0 + (nbits >> kshift); |
| 57 | 56 | 	if (nbits & kmask) |
| ... | ... | @@ -61,8 +60,11 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0) |
| 61 | 60 | 	havedig = hd0 = i = 0; |
| 62 | 61 | 	s = *sp; |
| 63 | 62 | 	/* 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; | |
| 65 | 66 | 		++s; |
| 67 | 	} | |
| 66 | 68 | 	if (s[1] == '0' && (s[2] == 'x' || s[2] == 'X') |
| 67 | 69 | 	 && *(const unsigned char*)(s+3) > ' ') |
| 68 | 70 | 		s += 2; |
| ... | ... | @@ -81,8 +83,11 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0) |
| 81 | 83 | 					x1 = x; |
| 82 | 84 | 					i = 0; |
| 83 | 85 | 				} |
| 84 | 				while(*(const unsigned char*)(s+1) <= ' ') | |
| 86 | 				while((c = *(const unsigned char*)(s+1)) <= ' ') { | |
| 87 | 					if (!c) | |
| 88 | 						goto retnan; | |
| 85 | 89 | 					++s; |
| 90 | 				} | |
| 86 | 91 | 				if (s[1] == '0' && (s[2] == 'x' || s[2] == 'X') |
| 87 | 92 | 				 && *(const unsigned char*)(s+3) > ' ') |
| 88 | 93 | 					s += 2; |
| ... | ... | @@ -96,10 +101,11 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0) |
| 96 | 101 | 			do { |
| 97 | 102 | 				if (/*(*/ c == ')') { |
| 98 | 103 | 					*sp = s + 1; |
| 99 | 					break; | |
| 104 | 					goto break2; | |
| 100 | 105 | 				} |
| 101 | 106 | 			} while((c = *++s)); |
| 102 | 107 | #endif |
| 108 | retnan: | |
| 103 | 109 | 			return STRTOG_NaN; |
| 104 | 110 | 		} |
| 105 | 111 | 		havedig++; |
| ... | ... | @@ -111,6 +117,9 @@ int hexnan (const char **sp, FPI *fpi, ULong *x0) |
| 111 | 117 | 		} |
| 112 | 118 | 		*x = (*x << 4) | (h & 0xf); |
| 113 | 119 | 	} |
| 120 | #ifndef GDTOA_NON_PEDANTIC_NANCHECK | |
| 121 | break2: | |
| 122 | #endif | |
| 114 | 123 | 	if (!havedig) |
| 115 | 124 | 		return STRTOG_NaN; |
| 116 | 125 | 	if (x < x1 && i < 8) |
lib/libc/mingw/gdtoa/misc.c+2-2| ... | ... | @@ -69,7 +69,7 @@ static void dtoa_lock_cleanup (void) |
| 69 | 69 | 	} |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | static void dtoa_lock (int n) | |
| 72 | static void dtoa_lock (unsigned int n) | |
| 73 | 73 | { |
| 74 | 74 | 	if (2 == dtoa_CS_init) { |
| 75 | 75 | 		EnterCriticalSection (&dtoa_CritSec[n]); |
| ... | ... | @@ -96,7 +96,7 @@ static void dtoa_lock (int n) |
| 96 | 96 | 		EnterCriticalSection(&dtoa_CritSec[n]); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | static void dtoa_unlock (int n) | |
| 99 | static void dtoa_unlock (unsigned int n) | |
| 100 | 100 | { |
| 101 | 101 | 	if (2 == dtoa_CS_init) |
| 102 | 102 | 		LeaveCriticalSection (&dtoa_CritSec[n]); |
lib/libc/mingw/gdtoa/qnan.c+28-21| ... | ... | @@ -51,15 +51,27 @@ SOFTWARE. |
| 51 | 51 | |
| 52 | 52 | typedef unsigned Long Ulong; |
| 53 | 53 | |
| 54 | #ifdef NO_LONG_LONG | |
| 55 | #undef Gen_ld_QNAN | |
| 56 | #endif | |
| 57 | ||
| 54 | 58 | #undef HAVE_IEEE |
| 55 | 59 | #ifdef IEEE_8087 |
| 56 | 60 | #define _0 1 |
| 57 | 61 | #define _1 0 |
| 62 | #ifdef Gen_ld_QNAN | |
| 63 | #define _3 3 | |
| 64 | static int perm[4] = { 0, 1, 2, 3 }; | |
| 65 | #endif | |
| 58 | 66 | #define HAVE_IEEE |
| 59 | 67 | #endif |
| 60 | 68 | #ifdef IEEE_MC68k |
| 61 | 69 | #define _0 0 |
| 62 | 70 | #define _1 1 |
| 71 | #ifdef Gen_ld_QNAN | |
| 72 | #define _3 0 | |
| 73 | static int perm[4] = { 3, 2, 1, 0 }; | |
| 74 | #endif | |
| 63 | 75 | #define HAVE_IEEE |
| 64 | 76 | #endif |
| 65 | 77 | |
| ... | ... | @@ -75,40 +87,35 @@ main(void) |
| 75 | 87 | 		double d; |
| 76 | 88 | 		Ulong L[4]; |
| 77 | 89 | #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]; | |
| 80 | 91 | 		long double D; |
| 81 | 92 | #endif |
| 82 | 93 | 		} U; |
| 83 | 94 | 	U a, b, c; |
| 95 | #ifdef Gen_ld_QNAN | |
| 84 | 96 | 	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 | |
| 88 | 98 | |
| 89 | 99 | 	a.L[0] = b.L[0] = 0x7f800000; |
| 90 | 100 | 	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)); | |
| 92 | 102 | 	a.L[_0] = b.L[_0] = 0x7ff00000; |
| 93 | 103 | 	a.L[_1] = b.L[_1] = 0; |
| 94 | 104 | 	c.d = a.d - b.d;	/* quiet NaN */ |
| 105 | 	c.L[_0] &= 0x7fffffff; | |
| 95 | 106 | 	printf("#define d_QNAN0 0x%lx\n", UL c.L[0]); |
| 96 | 107 | 	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 | 		} | |
| 112 | 119 | #endif |
| 113 | 120 | #endif /* HAVE_IEEE */ |
| 114 | 121 | 	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) |
| 270 | 270 | { |
| 271 | 271 | 	int abe, abits, asub; |
| 272 | 272 | 	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; | |
| 275 | 275 | 	int sudden_underflow; |
| 276 | 276 | 	const char *s, *s0, *s1; |
| 277 | 277 | 	double adj0, tol; |
| ... | ... | @@ -309,11 +309,11 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits) |
| 309 | 309 | 	for(s = s00;;s++) switch(*s) { |
| 310 | 310 | 		case '-': |
| 311 | 311 | 			sign = 1; |
| 312 | 			/* no break */ | |
| 312 | 			/* fallthrough */ | |
| 313 | 313 | 		case '+': |
| 314 | 314 | 			if (*++s) |
| 315 | 315 | 				goto break2; |
| 316 | 			/* no break */ | |
| 316 | 			/* fallthrough */ | |
| 317 | 317 | 		case 0: |
| 318 | 318 | 			sign = 0; |
| 319 | 319 | 			irv = STRTOG_NoNumber; |
| ... | ... | @@ -411,8 +411,10 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits) |
| 411 | 411 | 		switch(c = *++s) { |
| 412 | 412 | 			case '-': |
| 413 | 413 | 				esign = 1; |
| 414 | 				/* fallthrough */ | |
| 414 | 415 | 			case '+': |
| 415 | 416 | 				c = *++s; |
| 417 | 				/* fallthrough */ | |
| 416 | 418 | 		} |
| 417 | 419 | 		if (c >= '0' && c <= '9') { |
| 418 | 420 | 			while(c == '0') |
| ... | ... | @@ -494,7 +496,7 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits) |
| 494 | 496 | |
| 495 | 497 | 	if (!nd0) |
| 496 | 498 | 		nd0 = nd; |
| 497 | 	k = nd < DBL_DIG + 1 ? nd : DBL_DIG + 1; | |
| 499 | 	k = nd < DBL_DIG + 2 ? nd : DBL_DIG + 2; | |
| 498 | 500 | 	dval(&rv) = y; |
| 499 | 501 | 	if (k > 9) |
| 500 | 502 | 		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) |
| 921 | 923 | 	Bfree(bd0); |
| 922 | 924 | 	Bfree(delta); |
| 923 | 925 | 	if (rve > fpi->emax) { |
| 926 | huge: | |
| 927 | 		Bfree(rvb); | |
| 928 | 		rvb = 0; | |
| 929 | 		SET_ERRNO(ERANGE); | |
| 924 | 930 | 		switch(fpi->rounding & 3) { |
| 925 | 		 case FPI_Round_near: | |
| 926 | 			goto huge; | |
| 927 | 931 | 		 case FPI_Round_up: |
| 928 | 932 | 			if (!sign) |
| 929 | 				goto huge; | |
| 933 | 				goto ret_inf; | |
| 930 | 934 | 			break; |
| 931 | 935 | 		 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; | |
| 934 | 949 | 		} |
| 935 | 950 | 		/* Round to largest representable magnitude */ |
| 936 | 		Bfree(rvb); | |
| 937 | 		rvb = 0; | |
| 938 | 951 | 		irv = STRTOG_Normal | STRTOG_Inexlo; |
| 939 | 952 | 		*expo = fpi->emax; |
| 940 | 953 | 		b = bits; |
| ... | ... | @@ -943,13 +956,6 @@ int __strtodg (const char *s00, char **se, FPI *fpi, Long *expo, ULong *bits) |
| 943 | 956 | 			*b++ = -1; |
| 944 | 957 | 		if ((j = fpi->nbits & 0x1f)) |
| 945 | 958 | 			*--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; | |
| 953 | 959 | 	} |
| 954 | 960 | ret: |
| 955 | 961 | 	if (denorm) { |
lib/libc/mingw/gdtoa/strtodnrp.c+1-1| ... | ... | @@ -39,7 +39,7 @@ THIS SOFTWARE. |
| 39 | 39 | |
| 40 | 40 | double __strtod (const char *s, char **sp) |
| 41 | 41 | { |
| 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*/ }; | |
| 43 | 43 | 	ULong bits[2]; |
| 44 | 44 | 	Long expo; |
| 45 | 45 | 	int k; |
lib/libc/mingw/gdtoa/strtof.c+2-1| ... | ... | @@ -33,7 +33,7 @@ THIS SOFTWARE. |
| 33 | 33 | |
| 34 | 34 | float __strtof (const char *s, char **sp) |
| 35 | 35 | { |
| 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*/ }; | |
| 37 | 37 | 	ULong bits[1]; |
| 38 | 38 | 	Long expo; |
| 39 | 39 | 	int k; |
| ... | ... | @@ -46,6 +46,7 @@ float __strtof (const char *s, char **sp) |
| 46 | 46 | |
| 47 | 47 | 	k = __strtodg(s, sp, fpi, &expo, bits); |
| 48 | 48 | 	switch(k & STRTOG_Retmask) { |
| 49 | 	 default: /* unused */ | |
| 49 | 50 | 	 case STRTOG_NoNumber: |
| 50 | 51 | 	 case STRTOG_Zero: |
| 51 | 52 | 		u.L[0] = 0; |
lib/libc/mingw/gdtoa/strtopx.c+8-6| ... | ... | @@ -31,6 +31,8 @@ THIS SOFTWARE. |
| 31 | 31 | |
| 32 | 32 | #include "gdtoaimp.h" |
| 33 | 33 | |
| 34 | extern UShort NanDflt_ldus_D2A[5]; | |
| 35 | ||
| 34 | 36 | #undef _0 |
| 35 | 37 | #undef _1 |
| 36 | 38 | |
| ... | ... | @@ -63,7 +65,7 @@ typedef union lD { |
| 63 | 65 | static int __strtopx (const char *s, char **sp, lD *V) |
| 64 | 66 | { |
| 65 | 67 | 	static FPI fpi0 = { 64, 1-16383-64+1, 32766 - 16383 - 64 + 1, 1, SI, |
| 66 | 			 Int_max }; | |
| 68 | 			 Int_max /*unused*/ }; | |
| 67 | 69 | 	ULong bits[2]; |
| 68 | 70 | 	Long expo; |
| 69 | 71 | 	int k; |
| ... | ... | @@ -103,11 +105,11 @@ static int __strtopx (const char *s, char **sp, lD *V) |
| 103 | 105 | 		break; |
| 104 | 106 | |
| 105 | 107 | 	 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]; | |
| 111 | 113 | 	} |
| 112 | 114 | 	if (k & STRTOG_Neg) |
| 113 | 115 | 		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 @@ |
| 65 | 65 | #if defined(_MSC_VER) |
| 66 | 66 | #define _CRTALLOC(x) __declspec(allocate(x)) |
| 67 | 67 | #elif defined(__GNUC__) |
| 68 | #define _CRTALLOC(x) __attribute__ ((section (x) )) | |
| 68 | #define _CRTALLOC(x) __attribute__ ((section (x), used)) | |
| 69 | 69 | #else |
| 70 | 70 | #error Your compiler is not supported. |
| 71 | 71 | #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 | ; | |
| 7 | LIBRARY ACLEDIT.dll | |
| 8 | EXPORTS | |
| 9 | EditAuditInfo | |
| 10 | EditOwnerInfo | |
| 11 | EditPermissionInfo | |
| 12 | DllMain | |
| 13 | FMExtensionProcW | |
| 14 | SedDiscretionaryAclEditor | |
| 15 | SedSystemAclEditor | |
| 16 | SedTakeOwnership |
lib/libc/mingw/lib-common/advapi32.def.in+11| ... | ... | @@ -441,12 +441,15 @@ LsaAddAccountRights |
| 441 | 441 | LsaAddPrivilegesToAccount |
| 442 | 442 | LsaClearAuditLog |
| 443 | 443 | LsaClose |
| 444 | LsaConfigureAutoLogonCredentials | |
| 444 | 445 | LsaCreateAccount |
| 445 | 446 | LsaCreateSecret |
| 446 | 447 | LsaCreateTrustedDomain |
| 447 | 448 | LsaCreateTrustedDomainEx |
| 448 | 449 | LsaDelete |
| 449 | 450 | LsaDeleteTrustedDomain |
| 451 | LsaDisableUserArso | |
| 452 | LsaEnableUserArso | |
| 450 | 453 | LsaEnumerateAccountRights |
| 451 | 454 | LsaEnumerateAccounts |
| 452 | 455 | LsaEnumerateAccountsWithUserRight |
| ... | ... | @@ -456,6 +459,7 @@ LsaEnumerateTrustedDomains |
| 456 | 459 | LsaEnumerateTrustedDomainsEx |
| 457 | 460 | LsaFreeMemory |
| 458 | 461 | LsaGetAppliedCAPIDs |
| 462 | LsaGetDeviceRegistrationInfo | |
| 459 | 463 | LsaGetQuotasForAccount |
| 460 | 464 | LsaGetRemoteUserName |
| 461 | 465 | LsaGetSystemAccessAccount |
| ... | ... | @@ -464,6 +468,9 @@ LsaICLookupNames |
| 464 | 468 | LsaICLookupNamesWithCreds |
| 465 | 469 | LsaICLookupSids |
| 466 | 470 | LsaICLookupSidsWithCreds |
| 471 | LsaInvokeTrustScanner | |
| 472 | LsaIsUserArsoAllowed | |
| 473 | LsaIsUserArsoEnabled | |
| 467 | 474 | LsaLookupNames |
| 468 | 475 | LsaLookupNames2 |
| 469 | 476 | LsaLookupPrivilegeDisplayName |
| ... | ... | @@ -479,9 +486,11 @@ LsaOpenPolicySce |
| 479 | 486 | LsaOpenSecret |
| 480 | 487 | LsaOpenTrustedDomain |
| 481 | 488 | LsaOpenTrustedDomainByName |
| 489 | LsaProfileDeleted | |
| 482 | 490 | LsaQueryCAPs |
| 483 | 491 | LsaQueryDomainInformationPolicy |
| 484 | 492 | LsaQueryForestTrustInformation |
| 493 | LsaQueryForestTrustInformation2 | |
| 485 | 494 | LsaQueryInfoTrustedDomain |
| 486 | 495 | LsaQueryInformationPolicy |
| 487 | 496 | LsaQuerySecret |
| ... | ... | @@ -494,6 +503,7 @@ LsaRetrievePrivateData |
| 494 | 503 | LsaSetCAPs |
| 495 | 504 | LsaSetDomainInformationPolicy |
| 496 | 505 | LsaSetForestTrustInformation |
| 506 | LsaSetForestTrustInformation2 | |
| 497 | 507 | LsaSetInformationPolicy |
| 498 | 508 | LsaSetInformationTrustedDomain |
| 499 | 509 | LsaSetQuotasForAccount |
| ... | ... | @@ -503,6 +513,7 @@ LsaSetSystemAccessAccount |
| 503 | 513 | LsaSetTrustedDomainInfoByName |
| 504 | 514 | LsaSetTrustedDomainInformation |
| 505 | 515 | LsaStorePrivateData |
| 516 | LsaValidateProcUniqueLuid | |
| 506 | 517 | MD4Final |
| 507 | 518 | MD4Init |
| 508 | 519 | MD4Update |
lib/libc/mingw/lib-common/advpack.def-5| ... | ... | @@ -21,10 +21,8 @@ AdvInstallFileW |
| 21 | 21 | CloseINFEngine |
| 22 | 22 | DelNode |
| 23 | 23 | DelNodeA |
| 24 | DelNodeRunDLL32 | |
| 25 | 24 | DelNodeRunDLL32W |
| 26 | 25 | DelNodeW |
| 27 | DoInfInstall | |
| 28 | 26 | ExecuteCab |
| 29 | 27 | ExecuteCabA |
| 30 | 28 | ExecuteCabW |
| ... | ... | @@ -34,7 +32,6 @@ ExtractFilesW |
| 34 | 32 | FileSaveMarkNotExist |
| 35 | 33 | FileSaveMarkNotExistA |
| 36 | 34 | FileSaveMarkNotExistW |
| 37 | FileSaveRestore | |
| 38 | 35 | FileSaveRestoreOnINF |
| 39 | 36 | FileSaveRestoreOnINFA |
| 40 | 37 | FileSaveRestoreOnINFW |
| ... | ... | @@ -47,7 +44,6 @@ GetVersionFromFileExW |
| 47 | 44 | GetVersionFromFileW |
| 48 | 45 | IsNTAdmin |
| 49 | 46 | LaunchINFSection |
| 50 | LaunchINFSectionEx | |
| 51 | 47 | LaunchINFSectionExW |
| 52 | 48 | LaunchINFSectionW |
| 53 | 49 | NeedReboot |
| ... | ... | @@ -70,7 +66,6 @@ RegSaveRestoreOnINF |
| 70 | 66 | RegSaveRestoreOnINFA |
| 71 | 67 | RegSaveRestoreOnINFW |
| 72 | 68 | RegSaveRestoreW |
| 73 | RegisterOCX | |
| 74 | 69 | RunSetupCommand |
| 75 | 70 | RunSetupCommandA |
| 76 | 71 | RunSetupCommandW |
lib/libc/mingw/lib-common/api-ms-win-appmodel-runtime-l1-1-1.def deleted-19| ... | ... | @@ -1,19 +0,0 @@ |
| 1 | LIBRARY api-ms-win-appmodel-runtime-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | FormatApplicationUserModelId | |
| 6 | GetCurrentApplicationUserModelId | |
| 7 | GetCurrentPackageFamilyName | |
| 8 | GetCurrentPackageId | |
| 9 | PackageFamilyNameFromFullName | |
| 10 | PackageFamilyNameFromId | |
| 11 | PackageFullNameFromId | |
| 12 | PackageIdFromFullName | |
| 13 | PackageNameAndPublisherIdFromFamilyName | |
| 14 | ParseApplicationUserModelId | |
| 15 | VerifyApplicationUserModelId | |
| 16 | VerifyPackageFamilyName | |
| 17 | VerifyPackageFullName | |
| 18 | VerifyPackageId | |
| 19 | VerifyPackageRelativeApplicationId |
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-1.def deleted-23| ... | ... | @@ -1,23 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-comm-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ClearCommBreak | |
| 6 | ClearCommError | |
| 7 | EscapeCommFunction | |
| 8 | GetCommConfig | |
| 9 | GetCommMask | |
| 10 | GetCommModemStatus | |
| 11 | GetCommProperties | |
| 12 | GetCommState | |
| 13 | GetCommTimeouts | |
| 14 | OpenCommPort | |
| 15 | PurgeComm | |
| 16 | SetCommBreak | |
| 17 | SetCommConfig | |
| 18 | SetCommMask | |
| 19 | SetCommState | |
| 20 | SetCommTimeouts | |
| 21 | SetupComm | |
| 22 | TransmitCommChar | |
| 23 | WaitCommEvent |
lib/libc/mingw/lib-common/api-ms-win-core-comm-l1-1-2.def deleted-24| ... | ... | @@ -1,24 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-comm-l1-1-2 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ClearCommBreak | |
| 6 | ClearCommError | |
| 7 | EscapeCommFunction | |
| 8 | GetCommConfig | |
| 9 | GetCommMask | |
| 10 | GetCommModemStatus | |
| 11 | GetCommPorts | |
| 12 | GetCommProperties | |
| 13 | GetCommState | |
| 14 | GetCommTimeouts | |
| 15 | OpenCommPort | |
| 16 | PurgeComm | |
| 17 | SetCommBreak | |
| 18 | SetCommConfig | |
| 19 | SetCommMask | |
| 20 | SetCommState | |
| 21 | SetCommTimeouts | |
| 22 | SetupComm | |
| 23 | TransmitCommChar | |
| 24 | WaitCommEvent |
lib/libc/mingw/lib-common/api-ms-win-core-errorhandling-l1-1-3.def deleted-17| ... | ... | @@ -1,17 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-errorhandling-l1-1-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AddVectoredExceptionHandler | |
| 6 | FatalAppExitA | |
| 7 | FatalAppExitW | |
| 8 | GetLastError | |
| 9 | GetThreadErrorMode | |
| 10 | RaiseException | |
| 11 | RaiseFailFastException | |
| 12 | RemoveVectoredExceptionHandler | |
| 13 | SetErrorMode | |
| 14 | SetLastError | |
| 15 | SetThreadErrorMode | |
| 16 | SetUnhandledExceptionFilter | |
| 17 | UnhandledExceptionFilter |
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-0.def deleted-9| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-featurestaging-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetFeatureEnabledState | |
| 6 | RecordFeatureError | |
| 7 | RecordFeatureUsage | |
| 8 | SubscribeFeatureStateChangeNotification | |
| 9 | UnsubscribeFeatureStateChangeNotification |
lib/libc/mingw/lib-common/api-ms-win-core-featurestaging-l1-1-1.def deleted-10| ... | ... | @@ -1,10 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-featurestaging-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetFeatureEnabledState | |
| 6 | GetFeatureVariant | |
| 7 | RecordFeatureError | |
| 8 | RecordFeatureUsage | |
| 9 | SubscribeFeatureStateChangeNotification | |
| 10 | UnsubscribeFeatureStateChangeNotification |
lib/libc/mingw/lib-common/api-ms-win-core-file-fromapp-l1-1-0.def deleted-15| ... | ... | @@ -1,15 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-file-fromapp-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CopyFileFromAppW | |
| 6 | CreateDirectoryFromAppW | |
| 7 | CreateFile2FromAppW | |
| 8 | CreateFileFromAppW | |
| 9 | DeleteFileFromAppW | |
| 10 | FindFirstFileExFromAppW | |
| 11 | GetFileAttributesExFromAppW | |
| 12 | MoveFileFromAppW | |
| 13 | RemoveDirectoryFromAppW | |
| 14 | ReplaceFileFromAppW | |
| 15 | SetFileAttributesFromAppW |
lib/libc/mingw/lib-common/api-ms-win-core-handle-l1-1-0.def deleted-9| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-handle-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CloseHandle | |
| 6 | CompareObjectHandles | |
| 7 | DuplicateHandle | |
| 8 | GetHandleInformation | |
| 9 | SetHandleInformation |
lib/libc/mingw/lib-common/api-ms-win-core-libraryloader-l2-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-libraryloader-l2-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | LoadPackagedLibrary | |
| 6 | QueryOptionalDelayLoadedAPI |
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-3.def deleted-35| ... | ... | @@ -1,35 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp | |
| 6 | CreateFileMappingW | |
| 7 | DiscardVirtualMemory | |
| 8 | FlushViewOfFile | |
| 9 | GetLargePageMinimum | |
| 10 | GetProcessWorkingSetSizeEx | |
| 11 | GetWriteWatch | |
| 12 | MapViewOfFile | |
| 13 | MapViewOfFileEx | |
| 14 | MapViewOfFileFromApp | |
| 15 | OfferVirtualMemory | |
| 16 | OpenFileMappingFromApp | |
| 17 | OpenFileMappingW | |
| 18 | ReadProcessMemory | |
| 19 | ReclaimVirtualMemory | |
| 20 | ResetWriteWatch | |
| 21 | SetProcessValidCallTargets | |
| 22 | SetProcessWorkingSetSizeEx | |
| 23 | UnmapViewOfFile | |
| 24 | UnmapViewOfFileEx | |
| 25 | VirtualAlloc | |
| 26 | VirtualAllocFromApp | |
| 27 | VirtualFree | |
| 28 | VirtualFreeEx | |
| 29 | VirtualLock | |
| 30 | VirtualProtect | |
| 31 | VirtualProtectFromApp | |
| 32 | VirtualQuery | |
| 33 | VirtualQueryEx | |
| 34 | VirtualUnlock | |
| 35 | WriteProcessMemory |
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-5.def deleted-37| ... | ... | @@ -1,37 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-5 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp | |
| 6 | CreateFileMappingW | |
| 7 | DiscardVirtualMemory | |
| 8 | FlushViewOfFile | |
| 9 | GetLargePageMinimum | |
| 10 | GetProcessWorkingSetSizeEx | |
| 11 | GetWriteWatch | |
| 12 | MapViewOfFile | |
| 13 | MapViewOfFileEx | |
| 14 | MapViewOfFileFromApp | |
| 15 | OfferVirtualMemory | |
| 16 | OpenFileMappingFromApp | |
| 17 | OpenFileMappingW | |
| 18 | ReadProcessMemory | |
| 19 | ReclaimVirtualMemory | |
| 20 | ResetWriteWatch | |
| 21 | SetProcessValidCallTargets | |
| 22 | SetProcessWorkingSetSizeEx | |
| 23 | UnmapViewOfFile | |
| 24 | UnmapViewOfFile2 | |
| 25 | UnmapViewOfFileEx | |
| 26 | VirtualAlloc | |
| 27 | VirtualAllocFromApp | |
| 28 | VirtualFree | |
| 29 | VirtualFreeEx | |
| 30 | VirtualLock | |
| 31 | VirtualProtect | |
| 32 | VirtualProtectFromApp | |
| 33 | VirtualQuery | |
| 34 | VirtualQueryEx | |
| 35 | VirtualUnlock | |
| 36 | VirtualUnlockEx | |
| 37 | WriteProcessMemory |
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-6.def deleted-39| ... | ... | @@ -1,39 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-6 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp | |
| 6 | CreateFileMappingW | |
| 7 | DiscardVirtualMemory | |
| 8 | FlushViewOfFile | |
| 9 | GetLargePageMinimum | |
| 10 | GetProcessWorkingSetSizeEx | |
| 11 | GetWriteWatch | |
| 12 | MapViewOfFile | |
| 13 | MapViewOfFile3FromApp | |
| 14 | MapViewOfFileEx | |
| 15 | MapViewOfFileFromApp | |
| 16 | OfferVirtualMemory | |
| 17 | OpenFileMappingFromApp | |
| 18 | OpenFileMappingW | |
| 19 | ReadProcessMemory | |
| 20 | ReclaimVirtualMemory | |
| 21 | ResetWriteWatch | |
| 22 | SetProcessValidCallTargets | |
| 23 | SetProcessWorkingSetSizeEx | |
| 24 | UnmapViewOfFile | |
| 25 | UnmapViewOfFile2 | |
| 26 | UnmapViewOfFileEx | |
| 27 | VirtualAlloc | |
| 28 | VirtualAlloc2FromApp | |
| 29 | VirtualAllocFromApp | |
| 30 | VirtualFree | |
| 31 | VirtualFreeEx | |
| 32 | VirtualLock | |
| 33 | VirtualProtect | |
| 34 | VirtualProtectFromApp | |
| 35 | VirtualQuery | |
| 36 | VirtualQueryEx | |
| 37 | VirtualUnlock | |
| 38 | VirtualUnlockEx | |
| 39 | WriteProcessMemory |
lib/libc/mingw/lib-common/api-ms-win-core-memory-l1-1-7.def deleted-40| ... | ... | @@ -1,40 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-7 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp | |
| 6 | CreateFileMappingW | |
| 7 | DiscardVirtualMemory | |
| 8 | FlushViewOfFile | |
| 9 | GetLargePageMinimum | |
| 10 | GetProcessWorkingSetSizeEx | |
| 11 | GetWriteWatch | |
| 12 | MapViewOfFile | |
| 13 | MapViewOfFile3FromApp | |
| 14 | MapViewOfFileEx | |
| 15 | MapViewOfFileFromApp | |
| 16 | OfferVirtualMemory | |
| 17 | OpenFileMappingFromApp | |
| 18 | OpenFileMappingW | |
| 19 | ReadProcessMemory | |
| 20 | ReclaimVirtualMemory | |
| 21 | ResetWriteWatch | |
| 22 | SetProcessValidCallTargets | |
| 23 | SetProcessValidCallTargetsForMappedView | |
| 24 | SetProcessWorkingSetSizeEx | |
| 25 | UnmapViewOfFile | |
| 26 | UnmapViewOfFile2 | |
| 27 | UnmapViewOfFileEx | |
| 28 | VirtualAlloc | |
| 29 | VirtualAlloc2FromApp | |
| 30 | VirtualAllocFromApp | |
| 31 | VirtualFree | |
| 32 | VirtualFreeEx | |
| 33 | VirtualLock | |
| 34 | VirtualProtect | |
| 35 | VirtualProtectFromApp | |
| 36 | VirtualQuery | |
| 37 | VirtualQueryEx | |
| 38 | VirtualUnlock | |
| 39 | VirtualUnlockEx | |
| 40 | WriteProcessMemory |
lib/libc/mingw/lib-common/api-ms-win-core-path-l1-1-0.def deleted-26| ... | ... | @@ -1,26 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-path-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | PathAllocCanonicalize | |
| 6 | PathAllocCombine | |
| 7 | PathCchAddBackslash | |
| 8 | PathCchAddBackslashEx | |
| 9 | PathCchAddExtension | |
| 10 | PathCchAppend | |
| 11 | PathCchAppendEx | |
| 12 | PathCchCanonicalize | |
| 13 | PathCchCanonicalizeEx | |
| 14 | PathCchCombine | |
| 15 | PathCchCombineEx | |
| 16 | PathCchFindExtension | |
| 17 | PathCchIsRoot | |
| 18 | PathCchRemoveBackslash | |
| 19 | PathCchRemoveBackslashEx | |
| 20 | PathCchRemoveExtension | |
| 21 | PathCchRemoveFileSpec | |
| 22 | PathCchRenameExtension | |
| 23 | PathCchSkipRoot | |
| 24 | PathCchStripPrefix | |
| 25 | PathCchStripToRoot | |
| 26 | PathIsUNCEx |
lib/libc/mingw/lib-common/api-ms-win-core-psm-appnotify-l1-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-psm-appnotify-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RegisterAppStateChangeNotification | |
| 6 | UnregisterAppStateChangeNotification |
lib/libc/mingw/lib-common/api-ms-win-core-realtime-l1-1-1.def deleted-9| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-realtime-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | QueryInterruptTime | |
| 6 | QueryInterruptTimePrecise | |
| 7 | QueryThreadCycleTime | |
| 8 | QueryUnbiasedInterruptTime | |
| 9 | QueryUnbiasedInterruptTimePrecise |
lib/libc/mingw/lib-common/api-ms-win-core-realtime-l1-1-2.def deleted-12| ... | ... | @@ -1,12 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-realtime-l1-1-2 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ConvertAuxiliaryCounterToPerformanceCounter | |
| 6 | ConvertPerformanceCounterToAuxiliaryCounter | |
| 7 | QueryAuxiliaryCounterFrequency | |
| 8 | QueryInterruptTime | |
| 9 | QueryInterruptTimePrecise | |
| 10 | QueryThreadCycleTime | |
| 11 | QueryUnbiasedInterruptTime | |
| 12 | QueryUnbiasedInterruptTimePrecise |
lib/libc/mingw/lib-common/api-ms-win-core-slapi-l1-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-slapi-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | SLQueryLicenseValueFromApp | |
| 6 | SLQueryLicenseValueFromApp2 |
lib/libc/mingw/lib-common/api-ms-win-core-synch-l1-2-0.def deleted-59| ... | ... | @@ -1,59 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-synch-l1-2-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AcquireSRWLockExclusive | |
| 6 | AcquireSRWLockShared | |
| 7 | CancelWaitableTimer | |
| 8 | CreateEventA | |
| 9 | CreateEventExA | |
| 10 | CreateEventExW | |
| 11 | CreateEventW | |
| 12 | CreateMutexA | |
| 13 | CreateMutexExA | |
| 14 | CreateMutexExW | |
| 15 | CreateMutexW | |
| 16 | CreateSemaphoreExW | |
| 17 | CreateWaitableTimerExW | |
| 18 | DeleteCriticalSection | |
| 19 | EnterCriticalSection | |
| 20 | InitializeConditionVariable | |
| 21 | InitializeCriticalSection | |
| 22 | InitializeCriticalSectionAndSpinCount | |
| 23 | InitializeCriticalSectionEx | |
| 24 | InitializeSRWLock | |
| 25 | InitOnceBeginInitialize | |
| 26 | InitOnceComplete | |
| 27 | InitOnceExecuteOnce | |
| 28 | InitOnceInitialize | |
| 29 | LeaveCriticalSection | |
| 30 | OpenEventA | |
| 31 | OpenEventW | |
| 32 | OpenMutexW | |
| 33 | OpenSemaphoreW | |
| 34 | OpenWaitableTimerW | |
| 35 | ReleaseMutex | |
| 36 | ReleaseSemaphore | |
| 37 | ReleaseSRWLockExclusive | |
| 38 | ReleaseSRWLockShared | |
| 39 | ResetEvent | |
| 40 | SetCriticalSectionSpinCount | |
| 41 | SetEvent | |
| 42 | SetWaitableTimer | |
| 43 | SetWaitableTimerEx | |
| 44 | SignalObjectAndWait | |
| 45 | Sleep | |
| 46 | SleepConditionVariableCS | |
| 47 | SleepConditionVariableSRW | |
| 48 | SleepEx | |
| 49 | TryAcquireSRWLockExclusive | |
| 50 | TryAcquireSRWLockShared | |
| 51 | TryEnterCriticalSection | |
| 52 | WaitForMultipleObjectsEx | |
| 53 | WaitForSingleObject | |
| 54 | WaitForSingleObjectEx | |
| 55 | WaitOnAddress | |
| 56 | WakeAllConditionVariable | |
| 57 | WakeByAddressAll | |
| 58 | WakeByAddressSingle | |
| 59 | WakeConditionVariable |
lib/libc/mingw/lib-common/api-ms-win-core-sysinfo-l1-2-0.def deleted-31| ... | ... | @@ -1,31 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-sysinfo-l1-2-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | EnumSystemFirmwareTables | |
| 6 | GetComputerNameExA | |
| 7 | GetComputerNameExW | |
| 8 | GetLocalTime | |
| 9 | GetLogicalProcessorInformation | |
| 10 | GetLogicalProcessorInformationEx | |
| 11 | GetNativeSystemInfo | |
| 12 | GetProductInfo | |
| 13 | GetSystemDirectoryA | |
| 14 | GetSystemDirectoryW | |
| 15 | GetSystemFirmwareTable | |
| 16 | GetSystemInfo | |
| 17 | GetSystemTime | |
| 18 | GetSystemTimeAdjustment | |
| 19 | GetSystemTimeAsFileTime | |
| 20 | GetSystemTimePreciseAsFileTime | |
| 21 | GetTickCount | |
| 22 | GetTickCount64 | |
| 23 | GetVersion | |
| 24 | GetVersionExA | |
| 25 | GetVersionExW | |
| 26 | GetWindowsDirectoryA | |
| 27 | GetWindowsDirectoryW | |
| 28 | GlobalMemoryStatusEx | |
| 29 | SetLocalTime | |
| 30 | SetSystemTime | |
| 31 | VerSetConditionMask |
lib/libc/mingw/lib-common/api-ms-win-core-sysinfo-l1-2-3.def deleted-33| ... | ... | @@ -1,33 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-sysinfo-l1-2-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | EnumSystemFirmwareTables | |
| 6 | GetComputerNameExA | |
| 7 | GetComputerNameExW | |
| 8 | GetIntegratedDisplaySize | |
| 9 | GetLocalTime | |
| 10 | GetLogicalProcessorInformation | |
| 11 | GetLogicalProcessorInformationEx | |
| 12 | GetNativeSystemInfo | |
| 13 | GetPhysicallyInstalledSystemMemory | |
| 14 | GetProductInfo | |
| 15 | GetSystemDirectoryA | |
| 16 | GetSystemDirectoryW | |
| 17 | GetSystemFirmwareTable | |
| 18 | GetSystemInfo | |
| 19 | GetSystemTime | |
| 20 | GetSystemTimeAdjustment | |
| 21 | GetSystemTimeAsFileTime | |
| 22 | GetSystemTimePreciseAsFileTime | |
| 23 | GetTickCount | |
| 24 | GetTickCount64 | |
| 25 | GetVersion | |
| 26 | GetVersionExA | |
| 27 | GetVersionExW | |
| 28 | GetWindowsDirectoryA | |
| 29 | GetWindowsDirectoryW | |
| 30 | GlobalMemoryStatusEx | |
| 31 | SetLocalTime | |
| 32 | SetSystemTime | |
| 33 | VerSetConditionMask |
lib/libc/mingw/lib-common/api-ms-win-core-winrt-error-l1-1-0.def deleted-15| ... | ... | @@ -1,15 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-error-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetRestrictedErrorInfo | |
| 6 | RoCaptureErrorContext | |
| 7 | RoFailFastWithErrorContext | |
| 8 | RoGetErrorReportingFlags | |
| 9 | RoOriginateError | |
| 10 | RoOriginateErrorW | |
| 11 | RoResolveRestrictedErrorInfoReference | |
| 12 | RoSetErrorReportingFlags | |
| 13 | RoTransformError | |
| 14 | RoTransformErrorW | |
| 15 | SetRestrictedErrorInfo |
lib/libc/mingw/lib-common/api-ms-win-core-winrt-error-l1-1-1.def deleted-22| ... | ... | @@ -1,22 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-error-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetRestrictedErrorInfo | |
| 6 | IsErrorPropagationEnabled | |
| 7 | RoCaptureErrorContext | |
| 8 | RoClearError | |
| 9 | RoFailFastWithErrorContext | |
| 10 | RoGetErrorReportingFlags | |
| 11 | RoGetMatchingRestrictedErrorInfo | |
| 12 | RoInspectCapturedStackBackTrace | |
| 13 | RoInspectThreadErrorInfo | |
| 14 | RoOriginateError | |
| 15 | RoOriginateErrorW | |
| 16 | RoOriginateLanguageException | |
| 17 | RoReportFailedDelegate | |
| 18 | RoReportUnhandledError | |
| 19 | RoSetErrorReportingFlags | |
| 20 | RoTransformError | |
| 21 | RoTransformErrorW | |
| 22 | SetRestrictedErrorInfo |
lib/libc/mingw/lib-common/api-ms-win-core-winrt-l1-1-0.def deleted-13| ... | ... | @@ -1,13 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoActivateInstance | |
| 6 | RoGetActivationFactory | |
| 7 | RoGetApartmentIdentifier | |
| 8 | RoInitialize | |
| 9 | RoRegisterActivationFactories | |
| 10 | RoRegisterForApartmentShutdown | |
| 11 | RoRevokeActivationFactories | |
| 12 | RoUninitialize | |
| 13 | RoUnregisterForApartmentShutdown |
lib/libc/mingw/lib-common/api-ms-win-core-winrt-registration-l1-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-registration-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoGetActivatableClassRegistration | |
| 6 | RoGetServerActivatableClasses |
lib/libc/mingw/lib-common/api-ms-win-core-winrt-robuffer-l1-1-0.def deleted-5| ... | ... | @@ -1,5 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-robuffer-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoGetBufferMarshaler |
lib/libc/mingw/lib-common/api-ms-win-core-winrt-roparameterizediid-l1-1-0.def deleted-7| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-roparameterizediid-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoFreeParameterizedTypeExtra | |
| 6 | RoGetParameterizedTypeInstanceIID | |
| 7 | RoParameterizedTypeExtraGetTypeSignature |
lib/libc/mingw/lib-common/api-ms-win-core-winrt-string-l1-1-0.def deleted-31| ... | ... | @@ -1,31 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-string-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | HSTRING_UserFree | |
| 6 | HSTRING_UserFree64 | |
| 7 | HSTRING_UserMarshal | |
| 8 | HSTRING_UserMarshal64 | |
| 9 | HSTRING_UserSize | |
| 10 | HSTRING_UserSize64 | |
| 11 | HSTRING_UserUnmarshal | |
| 12 | HSTRING_UserUnmarshal64 | |
| 13 | WindowsCompareStringOrdinal | |
| 14 | WindowsConcatString | |
| 15 | WindowsCreateString | |
| 16 | WindowsCreateStringReference | |
| 17 | WindowsDeleteString | |
| 18 | WindowsDeleteStringBuffer | |
| 19 | WindowsDuplicateString | |
| 20 | WindowsGetStringLen | |
| 21 | WindowsGetStringRawBuffer | |
| 22 | WindowsInspectString | |
| 23 | WindowsIsStringEmpty | |
| 24 | WindowsPreallocateStringBuffer | |
| 25 | WindowsPromoteStringBuffer | |
| 26 | WindowsReplaceString | |
| 27 | WindowsStringHasEmbeddedNull | |
| 28 | WindowsSubstring | |
| 29 | WindowsSubstringWithSpecifiedLength | |
| 30 | WindowsTrimStringEnd | |
| 31 | WindowsTrimStringStart |
lib/libc/mingw/lib-common/api-ms-win-core-wow64-l1-1-1.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-wow64-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | IsWow64Process | |
| 6 | IsWow64Process2 |
lib/libc/mingw/lib-common/api-ms-win-devices-config-l1-1-1.def deleted-17| ... | ... | @@ -1,17 +0,0 @@ |
| 1 | LIBRARY api-ms-win-devices-config-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CM_Get_Device_ID_List_SizeW | |
| 6 | CM_Get_Device_ID_ListW | |
| 7 | CM_Get_Device_IDW | |
| 8 | CM_Get_Device_Interface_List_SizeW | |
| 9 | CM_Get_Device_Interface_ListW | |
| 10 | CM_Get_Device_Interface_PropertyW | |
| 11 | CM_Get_DevNode_PropertyW | |
| 12 | CM_Get_DevNode_Status | |
| 13 | CM_Get_Parent | |
| 14 | CM_Locate_DevNodeW | |
| 15 | CM_MapCrToWin32Err | |
| 16 | CM_Register_Notification | |
| 17 | CM_Unregister_Notification |
lib/libc/mingw/lib-common/api-ms-win-gaming-deviceinformation-l1-1-0.def deleted-5| ... | ... | @@ -1,5 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-deviceinformation-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetGamingDeviceModelInformation |
lib/libc/mingw/lib-common/api-ms-win-gaming-expandedresources-l1-1-0.def deleted-7| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-expandedresources-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetExpandedResourceExclusiveCpuCount | |
| 6 | HasExpandedResources | |
| 7 | ReleaseExclusiveCpuSets |
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-0.def deleted-11| ... | ... | @@ -1,11 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ProcessPendingGameUI | |
| 6 | ShowChangeFriendRelationshipUI | |
| 7 | ShowGameInviteUI | |
| 8 | ShowPlayerPickerUI | |
| 9 | ShowProfileCardUI | |
| 10 | ShowTitleAchievementsUI | |
| 11 | TryCancelPendingGameUI |
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-2.def deleted-20| ... | ... | @@ -1,20 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-2 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CheckGamingPrivilegeSilently | |
| 6 | CheckGamingPrivilegeSilentlyForUser | |
| 7 | CheckGamingPrivilegeWithUI | |
| 8 | CheckGamingPrivilegeWithUIForUser | |
| 9 | ProcessPendingGameUI | |
| 10 | ShowChangeFriendRelationshipUI | |
| 11 | ShowChangeFriendRelationshipUIForUser | |
| 12 | ShowGameInviteUI | |
| 13 | ShowGameInviteUIForUser | |
| 14 | ShowPlayerPickerUI | |
| 15 | ShowPlayerPickerUIForUser | |
| 16 | ShowProfileCardUI | |
| 17 | ShowProfileCardUIForUser | |
| 18 | ShowTitleAchievementsUI | |
| 19 | ShowTitleAchievementsUIForUser | |
| 20 | TryCancelPendingGameUI |
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-3.def deleted-22| ... | ... | @@ -1,22 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CheckGamingPrivilegeSilently | |
| 6 | CheckGamingPrivilegeSilentlyForUser | |
| 7 | CheckGamingPrivilegeWithUI | |
| 8 | CheckGamingPrivilegeWithUIForUser | |
| 9 | ProcessPendingGameUI | |
| 10 | ShowChangeFriendRelationshipUI | |
| 11 | ShowChangeFriendRelationshipUIForUser | |
| 12 | ShowGameInviteUI | |
| 13 | ShowGameInviteUIForUser | |
| 14 | ShowGameInviteUIWithContext | |
| 15 | ShowGameInviteUIWithContextForUser | |
| 16 | ShowPlayerPickerUI | |
| 17 | ShowPlayerPickerUIForUser | |
| 18 | ShowProfileCardUI | |
| 19 | ShowProfileCardUIForUser | |
| 20 | ShowTitleAchievementsUI | |
| 21 | ShowTitleAchievementsUIForUser | |
| 22 | TryCancelPendingGameUI |
lib/libc/mingw/lib-common/api-ms-win-gaming-tcui-l1-1-4.def deleted-30| ... | ... | @@ -1,30 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-4 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CheckGamingPrivilegeSilently | |
| 6 | CheckGamingPrivilegeSilentlyForUser | |
| 7 | CheckGamingPrivilegeWithUI | |
| 8 | CheckGamingPrivilegeWithUIForUser | |
| 9 | ProcessPendingGameUI | |
| 10 | ShowChangeFriendRelationshipUI | |
| 11 | ShowChangeFriendRelationshipUIForUser | |
| 12 | ShowCustomizeUserProfileUI | |
| 13 | ShowCustomizeUserProfileUIForUser | |
| 14 | ShowFindFriendsUI | |
| 15 | ShowFindFriendsUIForUser | |
| 16 | ShowGameInfoUI | |
| 17 | ShowGameInfoUIForUser | |
| 18 | ShowGameInviteUI | |
| 19 | ShowGameInviteUIForUser | |
| 20 | ShowGameInviteUIWithContext | |
| 21 | ShowGameInviteUIWithContextForUser | |
| 22 | ShowPlayerPickerUI | |
| 23 | ShowPlayerPickerUIForUser | |
| 24 | ShowProfileCardUI | |
| 25 | ShowProfileCardUIForUser | |
| 26 | ShowTitleAchievementsUI | |
| 27 | ShowTitleAchievementsUIForUser | |
| 28 | ShowUserSettingsUI | |
| 29 | ShowUserSettingsUIForUser | |
| 30 | TryCancelPendingGameUI |
lib/libc/mingw/lib-common/api-ms-win-security-isolatedcontainer-l1-1-0.def deleted-5| ... | ... | @@ -1,5 +0,0 @@ |
| 1 | LIBRARY api-ms-win-security-isolatedcontainer-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | IsProcessInIsolatedContainer |
lib/libc/mingw/lib-common/api-ms-win-shcore-stream-winrt-l1-1-0.def deleted-7| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | LIBRARY api-ms-win-shcore-stream-winrt-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateRandomAccessStreamOnFile | |
| 6 | CreateRandomAccessStreamOverStream | |
| 7 | CreateStreamOverRandomAccessStream |
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 | ; | |
| 7 | LIBRARY APPMGMTS.dll | |
| 8 | EXPORTS | |
| 9 | CsSetOptions | |
| 10 | CsCreateClassStore | |
| 11 | CsEnumApps | |
| 12 | CsGetAppCategories | |
| 13 | CsGetClassAccess | |
| 14 | CsGetClassStore | |
| 15 | CsGetClassStorePath | |
| 16 | CsRegisterAppCategory | |
| 17 | CsServerGetClassStore | |
| 18 | CsUnregisterAppCategory | |
| 19 | GenerateGroupPolicy | |
| 20 | IID_IClassAdmin | |
| 21 | ProcessGroupPolicyObjectsEx | |
| 22 | ReleaseAppCategoryInfoList | |
| 23 | ReleasePackageDetail | |
| 24 | ReleasePackageInfo | |
| 25 | ServiceMain |
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 | ; | |
| 7 | LIBRARY SNAPIN.DLL | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | GenerateScript |
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 | ; | |
| 7 | LIBRARY ASYCFILT.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | FilterCreateInstance |
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 | ; | |
| 6 | LIBRARY "ATL.DLL" | |
| 7 | EXPORTS | |
| 8 | AtlAdvise | |
| 9 | AtlUnadvise | |
| 10 | AtlFreeMarshalStream | |
| 11 | AtlMarshalPtrInProc | |
| 12 | AtlUnmarshalPtr | |
| 13 | AtlModuleGetClassObject | |
| 14 | AtlModuleInit | |
| 15 | AtlModuleRegisterClassObjects | |
| 16 | AtlModuleRegisterServer | |
| 17 | AtlModuleRegisterTypeLib | |
| 18 | AtlModuleRevokeClassObjects | |
| 19 | AtlModuleTerm | |
| 20 | AtlModuleUnregisterServer | |
| 21 | AtlModuleUpdateRegistryFromResourceD | |
| 22 | AtlWaitWithMessageLoop | |
| 23 | AtlSetErrorInfo | |
| 24 | AtlCreateTargetDC | |
| 25 | AtlHiMetricToPixel | |
| 26 | AtlPixelToHiMetric | |
| 27 | AtlDevModeW2A | |
| 28 | AtlComPtrAssign | |
| 29 | AtlComQIPtrAssign | |
| 30 | AtlInternalQueryInterface | |
| 31 | AtlGetVersion | |
| 32 | AtlAxDialogBoxW | |
| 33 | AtlAxDialogBoxA | |
| 34 | AtlAxCreateDialogW | |
| 35 | AtlAxCreateDialogA | |
| 36 | AtlAxCreateControl | |
| 37 | AtlAxCreateControlEx | |
| 38 | AtlAxAttachControl | |
| 39 | AtlAxWinInit | |
| 40 | AtlModuleAddCreateWndData | |
| 41 | AtlModuleExtractCreateWndData | |
| 42 | AtlModuleRegisterWndClassInfoW | |
| 43 | AtlModuleRegisterWndClassInfoA | |
| 44 | AtlAxGetControl | |
| 45 | AtlAxGetHost | |
| 46 | AtlRegisterClassCategoriesHelper | |
| 47 | AtlIPersistStreamInit_Load | |
| 48 | AtlIPersistStreamInit_Save | |
| 49 | AtlIPersistPropertyBag_Load | |
| 50 | AtlIPersistPropertyBag_Save | |
| 51 | AtlGetObjectSourceInterface | |
| 52 | AtlModuleUnRegisterTypeLib | |
| 53 | AtlModuleLoadTypeLib | |
| 54 | AtlModuleUnregisterServerEx | |
| 55 | AtlModuleAddTermFunc | |
| 56 | AtlSetErrorInfo2 | |
| 57 | AtlIPersistStreamInit_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 | ; | |
| 7 | LIBRARY AUDIOSRV.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY AVICAP32.dll | |
| 8 | EXPORTS | |
| 9 | AppCleanup | |
| 10 | capCreateCaptureWindowA | |
| 11 | capCreateCaptureWindowW | |
| 12 | capGetDriverDescriptionA | |
| 13 | capGetDriverDescriptionW | |
| 14 | videoThunk32 |
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 | ; | |
| 7 | LIBRARY AVIFIL32.dll | |
| 8 | EXPORTS | |
| 9 | AVIBuildFilter | |
| 10 | AVIBuildFilterA | |
| 11 | AVIBuildFilterW | |
| 12 | AVIClearClipboard | |
| 13 | AVIFileAddRef | |
| 14 | AVIFileCreateStream | |
| 15 | AVIFileCreateStreamA | |
| 16 | AVIFileCreateStreamW | |
| 17 | AVIFileEndRecord | |
| 18 | AVIFileExit | |
| 19 | AVIFileGetStream | |
| 20 | AVIFileInfo | |
| 21 | AVIFileInfoA | |
| 22 | AVIFileInfoW | |
| 23 | AVIFileInit | |
| 24 | AVIFileOpen | |
| 25 | AVIFileOpenA | |
| 26 | AVIFileOpenW | |
| 27 | AVIFileReadData | |
| 28 | AVIFileRelease | |
| 29 | AVIFileWriteData | |
| 30 | AVIGetFromClipboard | |
| 31 | AVIMakeCompressedStream | |
| 32 | AVIMakeFileFromStreams | |
| 33 | AVIMakeStreamFromClipboard | |
| 34 | AVIPutFileOnClipboard | |
| 35 | AVISave | |
| 36 | AVISaveA | |
| 37 | AVISaveOptions | |
| 38 | AVISaveOptionsFree | |
| 39 | AVISaveV | |
| 40 | AVISaveVA | |
| 41 | AVISaveVW | |
| 42 | AVISaveW | |
| 43 | AVIStreamAddRef | |
| 44 | AVIStreamBeginStreaming | |
| 45 | AVIStreamCreate | |
| 46 | AVIStreamEndStreaming | |
| 47 | AVIStreamFindSample | |
| 48 | AVIStreamGetFrame | |
| 49 | AVIStreamGetFrameClose | |
| 50 | AVIStreamGetFrameOpen | |
| 51 | AVIStreamInfo | |
| 52 | AVIStreamInfoA | |
| 53 | AVIStreamInfoW | |
| 54 | AVIStreamLength | |
| 55 | AVIStreamOpenFromFile | |
| 56 | AVIStreamOpenFromFileA | |
| 57 | AVIStreamOpenFromFileW | |
| 58 | AVIStreamRead | |
| 59 | AVIStreamReadData | |
| 60 | AVIStreamReadFormat | |
| 61 | AVIStreamRelease | |
| 62 | AVIStreamSampleToTime | |
| 63 | AVIStreamSetFormat | |
| 64 | AVIStreamStart | |
| 65 | AVIStreamTimeToSample | |
| 66 | AVIStreamWrite | |
| 67 | AVIStreamWriteData | |
| 68 | CreateEditableStream | |
| 69 | DllCanUnloadNow | |
| 70 | DllGetClassObject | |
| 71 | EditStreamClone | |
| 72 | EditStreamCopy | |
| 73 | EditStreamCut | |
| 74 | EditStreamPaste | |
| 75 | EditStreamSetInfo | |
| 76 | EditStreamSetInfoA | |
| 77 | EditStreamSetInfoW | |
| 78 | EditStreamSetName | |
| 79 | EditStreamSetNameA | |
| 80 | EditStreamSetNameW | |
| 81 | IID_IAVIEditStream | |
| 82 | IID_IAVIFile | |
| 83 | IID_IAVIStream | |
| 84 | IID_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 | ; | |
| 6 | LIBRARY "AVRT.dll" | |
| 7 | EXPORTS | |
| 8 | AvQuerySystemResponsiveness | |
| 9 | AvRevertMmThreadCharacteristics | |
| 10 | AvRtCreateThreadOrderingGroup | |
| 11 | AvRtCreateThreadOrderingGroupExA | |
| 12 | AvRtCreateThreadOrderingGroupExW | |
| 13 | AvRtDeleteThreadOrderingGroup | |
| 14 | AvRtJoinThreadOrderingGroup | |
| 15 | AvRtLeaveThreadOrderingGroup | |
| 16 | AvRtWaitOnThreadOrderingGroup | |
| 17 | AvSetMmMaxThreadCharacteristicsA | |
| 18 | AvSetMmMaxThreadCharacteristicsW | |
| 19 | AvSetMmThreadCharacteristicsA | |
| 20 | AvSetMmThreadCharacteristicsW | |
| 21 | AvSetMmThreadPriority |
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 | ; | |
| 7 | LIBRARY azroles.DLL | |
| 8 | EXPORTS | |
| 9 | AzAddPropertyItem | |
| 10 | AzApplicationClose | |
| 11 | AzApplicationCreate | |
| 12 | AzApplicationDelete | |
| 13 | AzApplicationEnum | |
| 14 | AzApplicationOpen | |
| 15 | AzAuthorizationStoreDelete | |
| 16 | AzCloseHandle | |
| 17 | AzContextAccessCheck | |
| 18 | AzContextGetAssignedScopesPage | |
| 19 | AzContextGetRoles | |
| 20 | AzFreeMemory | |
| 21 | AzGetProperty | |
| 22 | AzGroupCreate | |
| 23 | AzGroupDelete | |
| 24 | AzGroupEnum | |
| 25 | AzGroupOpen | |
| 26 | AzInitialize | |
| 27 | AzInitializeContextFromName | |
| 28 | AzInitializeContextFromToken | |
| 29 | AzOperationCreate | |
| 30 | AzOperationDelete | |
| 31 | AzOperationEnum | |
| 32 | AzOperationOpen | |
| 33 | AzRemovePropertyItem | |
| 34 | AzRoleCreate | |
| 35 | AzRoleDelete | |
| 36 | AzRoleEnum | |
| 37 | AzRoleOpen | |
| 38 | AzScopeCreate | |
| 39 | AzScopeDelete | |
| 40 | AzScopeEnum | |
| 41 | AzScopeOpen | |
| 42 | AzSetProperty | |
| 43 | AzSubmit | |
| 44 | AzTaskCreate | |
| 45 | AzTaskDelete | |
| 46 | AzTaskEnum | |
| 47 | AzTaskOpen | |
| 48 | AzUpdateCache | |
| 49 | DllCanUnloadNow | |
| 50 | DllGetClassObject | |
| 51 | DllRegisterServer | |
| 52 | DllUnregisterServer |
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 | ; | |
| 6 | LIBRARY "BASESRV.dll" | |
| 7 | EXPORTS | |
| 8 | BaseGetProcessCrtlRoutine | |
| 9 | BaseSetProcessCreateNotify | |
| 10 | BaseSrvNlsLogon | |
| 11 | BaseSrvNlsUpdateRegistryCache | |
| 12 | BaseSrvRegisterSxS | |
| 13 | ServerDllInitialization |
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 | ; | |
| 6 | LIBRARY "BOOTVID.dll" | |
| 7 | EXPORTS | |
| 8 | VidBitBlt | |
| 9 | VidBitBltEx | |
| 10 | VidBufferToScreenBlt | |
| 11 | VidCleanUp | |
| 12 | VidDisplayString | |
| 13 | VidDisplayStringXY | |
| 14 | VidInitialize | |
| 15 | VidResetDisplay | |
| 16 | VidScreenToBufferBlt | |
| 17 | VidSetScrollRegion | |
| 18 | VidSetTextColor | |
| 19 | VidSolidColorFill |
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 | ; | |
| 6 | LIBRARY "browcli.dll" | |
| 7 | EXPORTS | |
| 8 | I_BrowserDebugCall | |
| 9 | I_BrowserDebugTrace | |
| 10 | I_BrowserQueryEmulatedDomains | |
| 11 | I_BrowserQueryOtherDomains | |
| 12 | I_BrowserQueryStatistics | |
| 13 | I_BrowserResetNetlogonState | |
| 14 | I_BrowserResetStatistics | |
| 15 | I_BrowserServerEnum | |
| 16 | I_BrowserSetNetlogonState | |
| 17 | NetBrowserStatisticsGet | |
| 18 | NetServerEnum | |
| 19 | NetServerEnumEx |
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 | ; | |
| 7 | LIBRARY browser.dll | |
| 8 | EXPORTS | |
| 9 | I_BrowserServerEnumForXactsrv | |
| 10 | ServiceMain | |
| 11 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY MSPORTS.DLL | |
| 8 | EXPORTS | |
| 9 | BluetoothClassInstaller |
lib/libc/mingw/lib-common/cabinet.def+17-16| ... | ... | @@ -5,28 +5,29 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "Cabinet.dll" |
| 7 | 7 | EXPORTS |
| 8 | GetDllVersion | |
| 9 | Extract | |
| 8 | CloseCompressor | |
| 9 | CloseDecompressor | |
| 10 | Compress | |
| 11 | CreateCompressor | |
| 12 | CreateDecompressor | |
| 13 | Decompress | |
| 10 | 14 | DeleteExtractedFiles |
| 11 | FCICreate | |
| 15 | DllGetVersion | |
| 16 | Extract | |
| 12 | 17 | FCIAddFile |
| 13 | FCIFlushFolder | |
| 14 | FCIFlushCabinet | |
| 18 | FCICreate | |
| 15 | 19 | FCIDestroy |
| 16 | FDICreate | |
| 17 | FDIIsCabinet | |
| 20 | FCIFlushCabinet | |
| 21 | FCIFlushFolder | |
| 18 | 22 | FDICopy |
| 23 | FDICreate | |
| 19 | 24 | FDIDestroy |
| 25 | FDIIsCabinet | |
| 20 | 26 | FDITruncateCabinet |
| 21 | CreateCompressor | |
| 22 | SetCompressorInformation | |
| 27 | GetDllVersion | |
| 23 | 28 | QueryCompressorInformation |
| 24 | Compress | |
| 25 | ResetCompressor | |
| 26 | CloseCompressor | |
| 27 | CreateDecompressor | |
| 28 | SetDecompressorInformation | |
| 29 | 29 | QueryDecompressorInformation |
| 30 | Decompress | |
| 30 | ResetCompressor | |
| 31 | 31 | ResetDecompressor |
| 32 | CloseDecompressor | |
| 32 | SetCompressorInformation | |
| 33 | SetDecompressorInformation |
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 | ; | |
| 7 | LIBRARY CABVIEW.dll | |
| 8 | EXPORTS | |
| 9 | Uninstall | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 6 | LIBRARY "CfgBkEnd.DLL" | |
| 7 | EXPORTS | |
| 8 | CLSID_CfgComp | |
| 9 | IID_ICfgComp | |
| 10 | IID_ISettingsComp | |
| 11 | IID_ISettingsComp2 |
lib/libc/mingw/lib-common/chakrart.def created+124| ... | ... | @@ -0,0 +1,124 @@ |
| 1 | LIBRARY chakra | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | JsAddRef | |
| 6 | JsBoolToBoolean | |
| 7 | JsBooleanToBool | |
| 8 | JsCallFunction | |
| 9 | JsCollectGarbage | |
| 10 | JsConstructObject | |
| 11 | JsConvertValueToBoolean | |
| 12 | JsConvertValueToNumber | |
| 13 | JsConvertValueToObject | |
| 14 | JsConvertValueToString | |
| 15 | JsCreateArray | |
| 16 | JsCreateArrayBuffer | |
| 17 | JsCreateContext | |
| 18 | JsCreateDataView | |
| 19 | JsCreateError | |
| 20 | JsCreateExternalArrayBuffer | |
| 21 | JsCreateExternalObject | |
| 22 | JsCreateFunction | |
| 23 | JsCreateNamedFunction | |
| 24 | JsCreateObject | |
| 25 | JsCreateRangeError | |
| 26 | JsCreateReferenceError | |
| 27 | JsCreateRuntime | |
| 28 | JsCreateSymbol | |
| 29 | JsCreateSyntaxError | |
| 30 | JsCreateThreadService | |
| 31 | JsCreateTypeError | |
| 32 | JsCreateTypedArray | |
| 33 | JsCreateURIError | |
| 34 | JsDefineProperty | |
| 35 | JsDeleteIndexedProperty | |
| 36 | JsDeleteProperty | |
| 37 | JsDisableRuntimeExecution | |
| 38 | JsDisposeRuntime | |
| 39 | JsDoubleToNumber | |
| 40 | JsEnableRuntimeExecution | |
| 41 | JsEnumerateHeap | |
| 42 | JsEquals | |
| 43 | JsGetAndClearException | |
| 44 | JsGetArrayBufferStorage | |
| 45 | JsGetContextData | |
| 46 | JsGetContextOfObject | |
| 47 | JsGetCurrentContext | |
| 48 | JsGetDataViewStorage | |
| 49 | JsGetExtensionAllowed | |
| 50 | JsGetExternalData | |
| 51 | JsGetFalseValue | |
| 52 | JsGetGlobalObject | |
| 53 | JsGetIndexedPropertiesExternalData | |
| 54 | JsGetIndexedProperty | |
| 55 | JsGetNullValue | |
| 56 | JsGetOwnPropertyDescriptor | |
| 57 | JsGetOwnPropertyNames | |
| 58 | JsGetOwnPropertySymbols | |
| 59 | JsGetProperty | |
| 60 | JsGetPropertyIdFromName | |
| 61 | JsGetPropertyIdFromSymbol | |
| 62 | JsGetPropertyIdType | |
| 63 | JsGetPropertyNameFromId | |
| 64 | JsGetPrototype | |
| 65 | JsGetRuntime | |
| 66 | JsGetRuntimeMemoryLimit | |
| 67 | JsGetRuntimeMemoryUsage | |
| 68 | JsGetStringLength | |
| 69 | JsGetSymbolFromPropertyId | |
| 70 | JsGetTrueValue | |
| 71 | JsGetTypedArrayInfo | |
| 72 | JsGetTypedArrayStorage | |
| 73 | JsGetUndefinedValue | |
| 74 | JsGetValueType | |
| 75 | JsHasException | |
| 76 | JsHasExternalData | |
| 77 | JsHasIndexedPropertiesExternalData | |
| 78 | JsHasIndexedProperty | |
| 79 | JsHasProperty | |
| 80 | JsIdle | |
| 81 | JsInspectableToObject | |
| 82 | JsInstanceOf | |
| 83 | JsIntToNumber | |
| 84 | JsIsEnumeratingHeap | |
| 85 | JsIsRuntimeExecutionDisabled | |
| 86 | JsNumberToDouble | |
| 87 | JsNumberToInt | |
| 88 | JsObjectToInspectable | |
| 89 | JsParseScript | |
| 90 | JsParseScriptWithAttributes | |
| 91 | JsParseSerializedScript | |
| 92 | JsParseSerializedScriptWithCallback | |
| 93 | JsPointerToString | |
| 94 | JsPreventExtension | |
| 95 | JsProjectWinRTNamespace | |
| 96 | JsRelease | |
| 97 | JsRunScript | |
| 98 | JsRunSerializedScript | |
| 99 | JsRunSerializedScriptWithCallback | |
| 100 | JsSerializeScript | |
| 101 | JsSetContextData | |
| 102 | JsSetCurrentContext | |
| 103 | JsSetException | |
| 104 | JsSetExternalData | |
| 105 | JsSetIndexedPropertiesToExternalData | |
| 106 | JsSetIndexedProperty | |
| 107 | JsSetObjectBeforeCollectCallback | |
| 108 | JsSetProjectionEnqueueCallback | |
| 109 | JsSetPromiseContinuationCallback | |
| 110 | JsSetProperty | |
| 111 | JsSetPrototype | |
| 112 | JsSetRuntimeBeforeCollectCallback | |
| 113 | JsSetRuntimeMemoryAllocationCallback | |
| 114 | JsSetRuntimeMemoryLimit | |
| 115 | JsStartDebugging | |
| 116 | JsStartProfiling | |
| 117 | JsStopProfiling | |
| 118 | JsStrictEquals | |
| 119 | JsStringToPointer | |
| 120 | JsValueToVariant | |
| 121 | JsVarAddRef | |
| 122 | JsVarRelease | |
| 123 | JsVarToExtension | |
| 124 | JsVariantToValue |
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 | ; | |
| 7 | LIBRARY clb.dll | |
| 8 | EXPORTS | |
| 9 | ClbAddData | |
| 10 | ClbSetColumnWidths | |
| 11 | ClbStyleW | |
| 12 | ClbWndProc | |
| 13 | CustomControlInfoW |
lib/libc/mingw/lib-common/clbcatq.def.in created+63| ... | ... | @@ -0,0 +1,63 @@ |
| 1 | #include "func.def.in" | |
| 2 | ||
| 3 | LIBRARY CLBCatQ.DLL | |
| 4 | EXPORTS | |
| 5 | ActivatorUpdateForIsRouterChanges | |
| 6 | ; void __cdecl ClearList(class CStructArray * __ptr64) | |
| 7 | F_X64(?ClearList@@YAXPEAVCStructArray@@@Z) | |
| 8 | CoRegCleanup | |
| 9 | ; long __cdecl CreateComponentLibraryTS(unsigned short const * __ptr64,long,struct IComponentRecords * __ptr64 * __ptr64) | |
| 10 | F_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) | |
| 12 | F_X64(?DataConvert@@YAJGGKPEAKPEAX1KK0EEK@Z) | |
| 13 | DeleteAllActivatorsForClsid | |
| 14 | ; void __cdecl DestroyStgDatabase(class StgDatabase * __ptr64) | |
| 15 | F_X64(?DestroyStgDatabase@@YAXPEAVStgDatabase@@@Z) | |
| 16 | DowngradeAPL | |
| 17 | ; long __cdecl GetDataConversion(struct IDataConvert * __ptr64 * __ptr64) | |
| 18 | F_X64(?GetDataConversion@@YAJPEAPEAUIDataConvert@@@Z) | |
| 19 | ; class CGetDataConversion * __ptr64 __cdecl GetDataConvertObject(void) | |
| 20 | F_X64(?GetDataConvertObject@@YAPEAVCGetDataConversion@@XZ) | |
| 21 | GetGlobalBabyJITEnabled | |
| 22 | ; long __cdecl GetPropValue(unsigned short,long * __ptr64,void * __ptr64,int,int * __ptr64,struct tagDBPROP & __ptr64) | |
| 23 | F_X64(?GetPropValue@@YAJGPEAJPEAXHPEAHAEAUtagDBPROP@@@Z) | |
| 24 | ; long __cdecl GetStgDatabase(class StgDatabase * __ptr64 * __ptr64) | |
| 25 | F_X64(?GetStgDatabase@@YAJPEAPEAVStgDatabase@@@Z) | |
| 26 | ; void __cdecl InitErrors(unsigned long * __ptr64) | |
| 27 | F_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) | |
| 29 | F_X64(?OpenComponentLibrarySharedTS@@YAJPEBG0KPEAU_SECURITY_ATTRIBUTES@@JPEAPEAUIComponentRecords@@@Z) | |
| 30 | ; long __cdecl OpenComponentLibraryTS(unsigned short const * __ptr64,long,struct IComponentRecords * __ptr64 * __ptr64) | |
| 31 | F_X64(?OpenComponentLibraryTS@@YAJPEBGJPEAPEAUIComponentRecords@@@Z) | |
| 32 | ; long __cdecl PostError(long,...) | |
| 33 | F_X64(?PostError@@YAJJZZ) | |
| 34 | ; void __cdecl ShutDownDataConversion(void) | |
| 35 | F_X64(?ShutDownDataConversion@@YAXXZ) | |
| 36 | UpdateFromAppChange | |
| 37 | UpdateFromComponentChange | |
| 38 | CLSIDFromStringByBitness | |
| 39 | CheckMemoryGates | |
| 40 | ComPlusEnablePartitions | |
| 41 | ComPlusEnableRemoteAccess | |
| 42 | ComPlusMigrate | |
| 43 | ComPlusPartitionsEnabled | |
| 44 | ComPlusRemoteAccessEnabled | |
| 45 | CreateComponentLibraryEx | |
| 46 | DllCanUnloadNow | |
| 47 | DllGetClassObject | |
| 48 | DllRegisterServer | |
| 49 | DllUnregisterServer | |
| 50 | GetCatalogObject | |
| 51 | GetCatalogObject2 | |
| 52 | GetComputerObject | |
| 53 | GetSimpleTableDispenser | |
| 54 | InprocServer32FromString | |
| 55 | OpenComponentLibraryEx | |
| 56 | OpenComponentLibraryOnMemEx | |
| 57 | OpenComponentLibraryOnStreamEx | |
| 58 | OpenComponentLibrarySharedEx | |
| 59 | ServerGetApplicationType | |
| 60 | SetSetupOpen | |
| 61 | SetSetupSave | |
| 62 | SetupOpen | |
| 63 | SetupSave |
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 | ; | |
| 7 | LIBRARY CLICONFG.DLL | |
| 8 | EXPORTS | |
| 9 | CPlApplet | |
| 10 | ClientConfigureAddEdit | |
| 11 | OnInitDialogMain |
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 | ; | |
| 7 | LIBRARY CUFAT.dll | |
| 8 | EXPORTS | |
| 9 | IsConversionAvailable | |
| 10 | ConvertFAT |
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 | ; | |
| 7 | LIBRARY colbact.DLL | |
| 8 | EXPORTS | |
| 9 | DllGetClassObject | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | GetClassInfoForCurrentUser | |
| 13 | GetDefaultPartitionForCurrentUser | |
| 14 | GetDefaultPartitionForSid | |
| 15 | PartitionAccessCheck |
lib/libc/mingw/lib-common/comctl32.def+25| ... | ... | @@ -24,6 +24,7 @@ CreateToolbarEx |
| 24 | 24 | DestroyPropertySheetPage |
| 25 | 25 | DllGetVersion |
| 26 | 26 | DllInstall |
| 27 | DrawShadowText | |
| 27 | 28 | DrawStatusText |
| 28 | 29 | DrawStatusTextW |
| 29 | 30 | FlatSB_EnableScrollBar |
| ... | ... | @@ -38,13 +39,16 @@ FlatSB_SetScrollProp |
| 38 | 39 | FlatSB_SetScrollRange |
| 39 | 40 | FlatSB_ShowScrollBar |
| 40 | 41 | GetMUILanguage |
| 42 | HIMAGELIST_QueryInterface | |
| 41 | 43 | ImageList_Add |
| 42 | 44 | ImageList_AddIcon |
| 43 | 45 | ImageList_AddMasked |
| 44 | 46 | ImageList_BeginDrag |
| 47 | ImageList_CoCreateInstance | |
| 45 | 48 | ImageList_Copy |
| 46 | 49 | ImageList_Create |
| 47 | 50 | ImageList_Destroy |
| 51 | ImageList_DestroyShared | |
| 48 | 52 | ImageList_DragEnter |
| 49 | 53 | ImageList_DragLeave |
| 50 | 54 | ImageList_DragMove |
| ... | ... | @@ -67,9 +71,11 @@ ImageList_LoadImageA |
| 67 | 71 | ImageList_LoadImageW |
| 68 | 72 | ImageList_Merge |
| 69 | 73 | ImageList_Read |
| 74 | ImageList_ReadEx | |
| 70 | 75 | ImageList_Remove |
| 71 | 76 | ImageList_Replace |
| 72 | 77 | ImageList_ReplaceIcon |
| 78 | ImageList_Resize | |
| 73 | 79 | ImageList_SetBkColor |
| 74 | 80 | ImageList_SetDragCursorImage |
| 75 | 81 | ImageList_SetFilter |
| ... | ... | @@ -78,6 +84,7 @@ ImageList_SetIconSize |
| 78 | 84 | ImageList_SetImageCount |
| 79 | 85 | ImageList_SetOverlayImage |
| 80 | 86 | ImageList_Write |
| 87 | ImageList_WriteEx | |
| 81 | 88 | InitCommonControlsEx |
| 82 | 89 | InitMUILanguage |
| 83 | 90 | InitializeFlatSB |
| ... | ... | @@ -89,6 +96,17 @@ RegisterClassNameW |
| 89 | 96 | UninitializeFlatSB |
| 90 | 97 | _TrackMouseEvent |
| 91 | 98 | FreeMRUList |
| 99 | DrawSizeBox | |
| 100 | DrawScrollBar | |
| 101 | SizeBoxHwnd | |
| 102 | ScrollBar_MouseMove | |
| 103 | ScrollBar_Menu | |
| 104 | HandleScrollCmd | |
| 105 | DetachScrollBars | |
| 106 | AttachScrollBars | |
| 107 | CCSetScrollInfo | |
| 108 | CCGetScrollInfo | |
| 109 | CCEnableScrollBar | |
| 92 | 110 | Str_SetPtrW |
| 93 | 111 | DSA_Create |
| 94 | 112 | DSA_Destroy |
| ... | ... | @@ -111,14 +129,21 @@ DPA_DeleteAllPtrs |
| 111 | 129 | DPA_Sort |
| 112 | 130 | DPA_Search |
| 113 | 131 | DPA_CreateEx |
| 132 | DSA_Clone | |
| 133 | DSA_Sort | |
| 134 | DPA_GetSize | |
| 135 | DSA_GetSize | |
| 136 | LoadIconWithScaleDown | |
| 114 | 137 | DPA_EnumCallback |
| 115 | 138 | DPA_DestroyCallback |
| 116 | 139 | DSA_EnumCallback |
| 117 | 140 | DSA_DestroyCallback |
| 141 | QuerySystemGestureStatus | |
| 118 | 142 | CreateMRUListW |
| 119 | 143 | AddMRUStringW |
| 120 | 144 | EnumMRUListW |
| 121 | 145 | SetWindowSubclass |
| 146 | GetWindowSubclass | |
| 122 | 147 | RemoveWindowSubclass |
| 123 | 148 | DefSubclassProc |
| 124 | 149 | TaskDialog |
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 | ; | |
| 6 | LIBRARY "computecore.dll" | |
| 7 | EXPORTS | |
| 8 | HcsEnumerateVmWorkerProcesses | |
| 9 | HcsFindVmWorkerProcesses | |
| 10 | HcsGetWorkerProcessJob | |
| 11 | HcsStartVmWorkerProcess | |
| 12 | HcsAddResourceToOperation | |
| 13 | HcsCancelOperation | |
| 14 | HcsCloseComputeSystem | |
| 15 | HcsCloseOperation | |
| 16 | HcsCloseProcess | |
| 17 | HcsCrashComputeSystem | |
| 18 | HcsCreateComputeSystem | |
| 19 | HcsCreateComputeSystemInNamespace | |
| 20 | HcsCreateEmptyGuestStateFile | |
| 21 | HcsCreateEmptyRuntimeStateFile | |
| 22 | HcsCreateOperation | |
| 23 | HcsCreateOperationWithNotifications | |
| 24 | HcsCreateProcess | |
| 25 | HcsEnumerateComputeSystems | |
| 26 | HcsEnumerateComputeSystemsInNamespace | |
| 27 | HcsGetComputeSystemFromOperation | |
| 28 | HcsGetComputeSystemProperties | |
| 29 | HcsGetOperationContext | |
| 30 | HcsGetOperationId | |
| 31 | HcsGetOperationProperties | |
| 32 | HcsGetOperationResult | |
| 33 | HcsGetOperationResultAndProcessInfo | |
| 34 | HcsGetOperationType | |
| 35 | HcsGetProcessFromOperation | |
| 36 | HcsGetProcessInfo | |
| 37 | HcsGetProcessProperties | |
| 38 | HcsGetProcessorCompatibilityFromSavedState | |
| 39 | HcsGetServiceProperties | |
| 40 | HcsGrantVmAccess | |
| 41 | HcsGrantVmGroupAccess | |
| 42 | HcsModifyComputeSystem | |
| 43 | HcsModifyProcess | |
| 44 | HcsModifyServiceSettings | |
| 45 | HcsOpenComputeSystem | |
| 46 | HcsOpenComputeSystemInNamespace | |
| 47 | HcsOpenProcess | |
| 48 | HcsPauseComputeSystem | |
| 49 | HcsResumeComputeSystem | |
| 50 | HcsRevokeVmAccess | |
| 51 | HcsRevokeVmGroupAccess | |
| 52 | HcsSaveComputeSystem | |
| 53 | HcsSetComputeSystemCallback | |
| 54 | HcsSetOperationCallback | |
| 55 | HcsSetOperationContext | |
| 56 | HcsSetProcessCallback | |
| 57 | HcsShutDownComputeSystem | |
| 58 | HcsSignalProcess | |
| 59 | HcsStartComputeSystem | |
| 60 | HcsSubmitWerReport | |
| 61 | HcsSystemControl | |
| 62 | HcsTerminateComputeSystem | |
| 63 | HcsTerminateProcess | |
| 64 | HcsWaitForComputeSystemExit | |
| 65 | HcsWaitForOperationResult | |
| 66 | HcsWaitForOperationResultAndProcessInfo | |
| 67 | HcsWaitForProcessExit |
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 | ; | |
| 6 | LIBRARY "computenetwork.dll" | |
| 7 | EXPORTS | |
| 8 | HcnCloseGuestNetworkService | |
| 9 | HcnCloseSdnRoute | |
| 10 | HcnCreateGuestNetworkService | |
| 11 | HcnCreateSdnRoute | |
| 12 | HcnDeleteGuestNetworkService | |
| 13 | HcnDeleteSdnRoute | |
| 14 | HcnEnumerateGuestNetworkServices | |
| 15 | HcnEnumerateSdnRoutes | |
| 16 | HcnModifyGuestNetworkService | |
| 17 | HcnModifySdnRoute | |
| 18 | HcnOpenGuestNetworkService | |
| 19 | HcnOpenSdnRoute | |
| 20 | HcnQueryGuestNetworkServiceProperties | |
| 21 | HcnQuerySdnRouteProperties | |
| 22 | HcnRegisterGuestNetworkServiceCallback | |
| 23 | HcnRegisterNetworkCallback | |
| 24 | HcnUnregisterGuestNetworkServiceCallback | |
| 25 | HcnUnregisterNetworkCallback | |
| 26 | HcnCloseEndpoint | |
| 27 | HcnCloseLoadBalancer | |
| 28 | HcnCloseNamespace | |
| 29 | HcnCloseNetwork | |
| 30 | HcnCreateEndpoint | |
| 31 | HcnCreateLoadBalancer | |
| 32 | HcnCreateNamespace | |
| 33 | HcnCreateNetwork | |
| 34 | HcnDeleteEndpoint | |
| 35 | HcnDeleteLoadBalancer | |
| 36 | HcnDeleteNamespace | |
| 37 | HcnDeleteNetwork | |
| 38 | HcnEnumerateEndpoints | |
| 39 | HcnEnumerateGuestNetworkPortReservations | |
| 40 | HcnEnumerateLoadBalancers | |
| 41 | HcnEnumerateNamespaces | |
| 42 | HcnEnumerateNetworks | |
| 43 | HcnFreeGuestNetworkPortReservations | |
| 44 | HcnModifyEndpoint | |
| 45 | HcnModifyLoadBalancer | |
| 46 | HcnModifyNamespace | |
| 47 | HcnModifyNetwork | |
| 48 | HcnOpenEndpoint | |
| 49 | HcnOpenLoadBalancer | |
| 50 | HcnOpenNamespace | |
| 51 | HcnOpenNetwork | |
| 52 | HcnQueryEndpointAddresses | |
| 53 | HcnQueryEndpointProperties | |
| 54 | HcnQueryEndpointStats | |
| 55 | HcnQueryLoadBalancerProperties | |
| 56 | HcnQueryNamespaceProperties | |
| 57 | HcnQueryNetworkProperties | |
| 58 | HcnRegisterServiceCallback | |
| 59 | HcnReleaseGuestNetworkServicePortReservationHandle | |
| 60 | HcnReserveGuestNetworkServicePort | |
| 61 | HcnReserveGuestNetworkServicePortRange | |
| 62 | HcnUnregisterServiceCallback |
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 | ; | |
| 6 | LIBRARY "computestorage.dll" | |
| 7 | EXPORTS | |
| 8 | HcsAttachLayerStorageFilter | |
| 9 | HcsDestroyLayer | |
| 10 | HcsDetachLayerStorageFilter | |
| 11 | HcsExportLayer | |
| 12 | HcsExportLegacyWritableLayer | |
| 13 | HcsFormatWritableLayerVhd | |
| 14 | HcsGetLayerVhdMountPath | |
| 15 | HcsImportLayer | |
| 16 | HcsInitializeLegacyWritableLayer | |
| 17 | HcsInitializeWritableLayer | |
| 18 | HcsSetupBaseOSLayer | |
| 19 | HcsSetupBaseOSVolume |
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 | ; | |
| 7 | LIBRARY ComSnap.DLL | |
| 8 | EXPORTS | |
| 9 | InstallDsExtension | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY ComUID.DLL | |
| 8 | EXPORTS | |
| 9 | CreateDCOMSecurityUIPage | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 6 | LIBRARY "connect.dll" | |
| 7 | EXPORTS | |
| 8 | AddConnectionOptionListEntries | |
| 9 | CreateVPNConnection | |
| 10 | GetInternetConnected | |
| 11 | GetNetworkConnected | |
| 12 | GetVPNConnected | |
| 13 | HrIsInternetConnected | |
| 14 | HrIsInternetConnectedGUID | |
| 15 | IsInternetConnected | |
| 16 | IsInternetConnectedGUID | |
| 17 | IsUniqueConnectionName | |
| 18 | RegisterPageWithPage | |
| 19 | UnregisterPage | |
| 20 | UnregisterPagesLink |
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 | ; | |
| 7 | LIBRARY Console.dll | |
| 8 | EXPORTS | |
| 9 | CPlApplet |
lib/libc/mingw/lib-common/coremessaging.def created+33| ... | ... | @@ -0,0 +1,33 @@ |
| 1 | LIBRARY coremessaging | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CoreUICallComputeMaximumMessageSize | |
| 6 | CoreUICallCreateConversationHost | |
| 7 | CoreUICallCreateEndpointHost | |
| 8 | CoreUICallCreateEndpointHostWithSendPriority | |
| 9 | CoreUICallGetAddressOfParameterInBuffer | |
| 10 | CoreUICallReceive | |
| 11 | CoreUICallSend | |
| 12 | CoreUICallSendVaList | |
| 13 | CoreUIConfigureTestHost | |
| 14 | CoreUIConfigureUserIntegration | |
| 15 | CoreUICreate | |
| 16 | CoreUICreateAnonymousStream | |
| 17 | CoreUICreateClientWindowIDManager | |
| 18 | CoreUICreateEx | |
| 19 | CoreUICreateSystemWindowIDManager | |
| 20 | CoreUIInitializeTestService | |
| 21 | CoreUIOpenExisting | |
| 22 | CoreUIRouteToTestRegistrar | |
| 23 | CoreUIUninitializeTestService | |
| 24 | CreateDispatcherQueueController | |
| 25 | CreateDispatcherQueueForCurrentThread | |
| 26 | GetDispatcherQueueForCurrentThread | |
| 27 | MsgBlobCreateShared | |
| 28 | MsgBlobCreateStack | |
| 29 | MsgBufferShare | |
| 30 | MsgRelease | |
| 31 | MsgStringCreateShared | |
| 32 | MsgStringCreateStack | |
| 33 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "CRYPTBASE.dll" | |
| 7 | EXPORTS | |
| 8 | SystemFunction001 | |
| 9 | SystemFunction002 | |
| 10 | SystemFunction003 | |
| 11 | SystemFunction004 | |
| 12 | SystemFunction005 | |
| 13 | SystemFunction028 | |
| 14 | SystemFunction029 | |
| 15 | SystemFunction034 | |
| 16 | SystemFunction036 | |
| 17 | SystemFunction040 | |
| 18 | SystemFunction041 |
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 | ; | |
| 7 | LIBRARY CRYPTDLG.dll | |
| 8 | EXPORTS | |
| 9 | CertConfigureTrustA | |
| 10 | CertConfigureTrustW | |
| 11 | CertTrustCertPolicy | |
| 12 | CertTrustCleanup | |
| 13 | CertTrustFinalPolicy | |
| 14 | CertTrustInit | |
| 15 | DecodeAttrSequence | |
| 16 | DecodeRecipientID | |
| 17 | EncodeAttrSequence | |
| 18 | EncodeRecipientID | |
| 19 | FormatPKIXEmailProtection | |
| 20 | FormatVerisignExtension | |
| 21 | CertModifyCertificatesToTrust | |
| 22 | CertSelectCertificateA | |
| 23 | CertSelectCertificateW | |
| 24 | CertViewPropertiesA | |
| 25 | CertViewPropertiesW | |
| 26 | DllRegisterServer | |
| 27 | DllUnregisterServer | |
| 28 | GetFriendlyNameOfCertA | |
| 29 | GetFriendlyNameOfCertW |
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 | ; | |
| 6 | LIBRARY "cryptdll.dll" | |
| 7 | EXPORTS | |
| 8 | CDBuildIntegrityVect | |
| 9 | CDBuildVect | |
| 10 | CDFindCommonCSystem | |
| 11 | CDFindCommonCSystemWithKey | |
| 12 | CDGenerateRandomBits | |
| 13 | CDGetIntegrityVect | |
| 14 | CDLocateCSystem | |
| 15 | CDLocateCheckSum | |
| 16 | CDLocateRng | |
| 17 | CDRegisterCSystem | |
| 18 | CDRegisterCheckSum | |
| 19 | CDRegisterRng | |
| 20 | HMACwithSHA | |
| 21 | KRBFXCF2 | |
| 22 | MD5Final | |
| 23 | MD5Init | |
| 24 | MD5Update | |
| 25 | PBKDF2 | |
| 26 | aesCTSDecryptMsg | |
| 27 | aesCTSEncryptMsg |
lib/libc/mingw/lib-common/cryptext.def created+33| ... | ... | @@ -0,0 +1,33 @@ |
| 1 | LIBRARY "CRYPTEXT.dll" | |
| 2 | EXPORTS | |
| 3 | I_InvokeCommand | |
| 4 | CryptExtAddCER | |
| 5 | CryptExtAddCERMachineOnlyAndHwndW | |
| 6 | CryptExtAddCERW | |
| 7 | CryptExtAddCRL | |
| 8 | CryptExtAddCRLW | |
| 9 | CryptExtAddCTL | |
| 10 | CryptExtAddCTLW | |
| 11 | CryptExtAddP7R | |
| 12 | CryptExtAddP7RW | |
| 13 | CryptExtAddPFX | |
| 14 | CryptExtAddPFXMachineOnlyAndHwndW | |
| 15 | CryptExtAddPFXW | |
| 16 | CryptExtAddSPC | |
| 17 | CryptExtAddSPCW | |
| 18 | CryptExtOpenCAT | |
| 19 | CryptExtOpenCATW | |
| 20 | CryptExtOpenCER | |
| 21 | CryptExtOpenCERW | |
| 22 | CryptExtOpenCRL | |
| 23 | CryptExtOpenCRLW | |
| 24 | CryptExtOpenCTL | |
| 25 | CryptExtOpenCTLW | |
| 26 | CryptExtOpenP10 | |
| 27 | CryptExtOpenP10W | |
| 28 | CryptExtOpenP7R | |
| 29 | CryptExtOpenP7RW | |
| 30 | CryptExtOpenPKCS7 | |
| 31 | CryptExtOpenPKCS7W | |
| 32 | CryptExtOpenSTR | |
| 33 | CryptExtOpenSTRW |
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 | ; | |
| 6 | LIBRARY "CRYPTSP.dll" | |
| 7 | EXPORTS | |
| 8 | CheckSignatureInFile | |
| 9 | CryptAcquireContextA | |
| 10 | CryptAcquireContextW | |
| 11 | CryptContextAddRef | |
| 12 | CryptCreateHash | |
| 13 | CryptDecrypt | |
| 14 | CryptDeriveKey | |
| 15 | CryptDestroyHash | |
| 16 | CryptDestroyKey | |
| 17 | CryptDuplicateHash | |
| 18 | CryptDuplicateKey | |
| 19 | CryptEncrypt | |
| 20 | CryptEnumProviderTypesA | |
| 21 | CryptEnumProviderTypesW | |
| 22 | CryptEnumProvidersA | |
| 23 | CryptEnumProvidersW | |
| 24 | CryptExportKey | |
| 25 | CryptGenKey | |
| 26 | CryptGenRandom | |
| 27 | CryptGetDefaultProviderA | |
| 28 | CryptGetDefaultProviderW | |
| 29 | CryptGetHashParam | |
| 30 | CryptGetKeyParam | |
| 31 | CryptGetProvParam | |
| 32 | CryptGetUserKey | |
| 33 | CryptHashData | |
| 34 | CryptHashSessionKey | |
| 35 | CryptImportKey | |
| 36 | CryptReleaseContext | |
| 37 | CryptSetHashParam | |
| 38 | CryptSetKeyParam | |
| 39 | CryptSetProvParam | |
| 40 | CryptSetProviderA | |
| 41 | CryptSetProviderExA | |
| 42 | CryptSetProviderExW | |
| 43 | CryptSetProviderW | |
| 44 | CryptSignHashA | |
| 45 | CryptSignHashW | |
| 46 | CryptVerifySignatureA | |
| 47 | CryptVerifySignatureW | |
| 48 | SystemFunction006 | |
| 49 | SystemFunction007 | |
| 50 | SystemFunction008 | |
| 51 | SystemFunction009 | |
| 52 | SystemFunction010 | |
| 53 | SystemFunction011 | |
| 54 | SystemFunction012 | |
| 55 | SystemFunction013 | |
| 56 | SystemFunction014 | |
| 57 | SystemFunction015 | |
| 58 | SystemFunction016 | |
| 59 | SystemFunction018 | |
| 60 | SystemFunction020 | |
| 61 | SystemFunction021 | |
| 62 | SystemFunction022 | |
| 63 | SystemFunction023 | |
| 64 | SystemFunction024 | |
| 65 | SystemFunction025 | |
| 66 | SystemFunction026 | |
| 67 | SystemFunction027 | |
| 68 | SystemFunction030 | |
| 69 | SystemFunction031 | |
| 70 | SystemFunction032 | |
| 71 | SystemFunction033 | |
| 72 | SystemFunction035 |
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 | ; | |
| 6 | LIBRARY "CRYPTSVC.dll" | |
| 7 | EXPORTS | |
| 8 | CryptServiceMain | |
| 9 | SvchostPushServiceGlobals |
lib/libc/mingw/lib-common/d2d1.def+7-6| ... | ... | @@ -5,15 +5,16 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "d2d1.dll" |
| 7 | 7 | EXPORTS |
| 8 | D2D1CreateFactory | |
| 9 | D2D1MakeRotateMatrix | |
| 10 | D2D1MakeSkewMatrix | |
| 11 | D2D1IsMatrixInvertible | |
| 12 | D2D1InvertMatrix | |
| 8 | D2D1ComputeMaximumScaleFactor | |
| 13 | 9 | D2D1ConvertColorSpace |
| 14 | 10 | D2D1CreateDevice |
| 15 | 11 | D2D1CreateDeviceContext |
| 12 | D2D1CreateFactory | |
| 13 | D2D1GetGradientMeshInteriorPointsFromCoonsPatch | |
| 14 | D2D1InvertMatrix | |
| 15 | D2D1IsMatrixInvertible | |
| 16 | D2D1MakeRotateMatrix | |
| 17 | D2D1MakeSkewMatrix | |
| 16 | 18 | D2D1SinCos |
| 17 | 19 | D2D1Tan |
| 18 | 20 | D2D1Vec3Length |
| 19 | D2D1ComputeMaximumScaleFactor |
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 | ; | |
| 6 | LIBRARY "DAVHLPR.dll" | |
| 7 | EXPORTS | |
| 8 | DavAddConnection | |
| 9 | DavCheckAndConvertHttpUrlToUncName | |
| 10 | DavDeleteConnection | |
| 11 | DavFlushFile | |
| 12 | DavGetExtendedError | |
| 13 | DavGetHTTPFromUNCPath | |
| 14 | DavGetServerPortAndPhysicalName | |
| 15 | DavGetUNCFromHTTPPath | |
| 16 | DavRemoveDummyShareFromFileName | |
| 17 | DavRemoveDummyShareFromFileNameEx | |
| 18 | UtfUrlStrToWideStr | |
| 19 | WideStrToUtfUrlStr |
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 | ; | |
| 6 | LIBRARY "dbgeng.dll" | |
| 7 | EXPORTS | |
| 8 | DebugConnect | |
| 9 | DebugConnectWide | |
| 10 | DebugCreate | |
| 11 | DebugCreateEx |
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 | ; | |
| 6 | LIBRARY "DBnetlib.dll" | |
| 7 | EXPORTS | |
| 8 | ConnectionObjectSize | |
| 9 | ConnectionRead | |
| 10 | ConnectionWrite | |
| 11 | ConnectionTransact | |
| 12 | ConnectionWriteOOB | |
| 13 | ConnectionMode | |
| 14 | ConnectionStatus | |
| 15 | ConnectionOpen | |
| 16 | ConnectionClose | |
| 17 | ConnectionCheckForData | |
| 18 | ConnectionError | |
| 19 | ConnectionVer | |
| 20 | ConnectionSqlVer | |
| 21 | ConnectionServerEnum | |
| 22 | ConnectionServerEnumW | |
| 23 | ConnectionOpenW | |
| 24 | ConnectionErrorW | |
| 25 | ConnectionOption | |
| 26 | ConnectionGetSvrUser | |
| 27 | InitEnumServers | |
| 28 | GetNextEnumeration | |
| 29 | CloseEnumServers | |
| 30 | InitSSPIPackage | |
| 31 | TermSSPIPackage | |
| 32 | InitSession | |
| 33 | TermSession | |
| 34 | GenClientContext | |
| 35 | ConnectionFlushCache | |
| 36 | InitSessionEx | |
| 37 | TermSessionEx | |
| 38 | GenClientContextEx |
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 | ; | |
| 7 | LIBRARY DBnmpntw.dll | |
| 8 | EXPORTS | |
| 9 | ConnectionObjectSize | |
| 10 | ConnectionRead | |
| 11 | ConnectionWrite | |
| 12 | ConnectionClose | |
| 13 | ConnectionError | |
| 14 | ConnectionVer | |
| 15 | ConnectionTransact | |
| 16 | ConnectionWriteOOB | |
| 17 | ConnectionMode | |
| 18 | ConnectionStatus | |
| 19 | ConnectionOpen | |
| 20 | ConnectionServerEnum | |
| 21 | ConnectionCheckForData | |
| 22 | ConnectionOpenW | |
| 23 | ConnectionErrorW | |
| 24 | ConnectionServerEnumW |
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 | ; | |
| 6 | LIBRARY "DEVMGR.DLL" | |
| 7 | EXPORTS | |
| 8 | DeviceProperties_RunDLLA | |
| 9 | DeviceProperties_RunDLLW | |
| 10 | DevicePropertiesA | |
| 11 | DevicePropertiesW | |
| 12 | DeviceManager_ExecuteA | |
| 13 | DeviceManager_ExecuteW | |
| 14 | DeviceProblemTextA | |
| 15 | DeviceProblemTextW | |
| 16 | DeviceProblemWizardA | |
| 17 | DeviceProblemWizardW | |
| 18 | DeviceAdvancedPropertiesA | |
| 19 | DeviceAdvancedPropertiesW | |
| 20 | DeviceCreateHardwarePage | |
| 21 | DeviceCreateHardwarePageEx | |
| 22 | DevicePropertiesExA | |
| 23 | DevicePropertiesExW | |
| 24 | DeviceProblenWizard_RunDLLA | |
| 25 | DeviceProblenWizard_RunDLLW | |
| 26 | DeviceCreateHardwarePageCustom |
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 | ; | |
| 6 | LIBRARY "DEVOBJ.dll" | |
| 7 | EXPORTS | |
| 8 | DevObjBuildClassInfoList | |
| 9 | DevObjChangeState | |
| 10 | DevObjClassGuidsFromName | |
| 11 | DevObjClassNameFromGuid | |
| 12 | DevObjCreateDevRegKey | |
| 13 | DevObjCreateDeviceInfo | |
| 14 | DevObjCreateDeviceInfoList | |
| 15 | DevObjCreateDeviceInterface | |
| 16 | DevObjCreateDeviceInterfaceRegKey | |
| 17 | DevObjDeleteAllInterfacesForDevice | |
| 18 | DevObjDeleteDevRegKey | |
| 19 | DevObjDeleteDevice | |
| 20 | DevObjDeleteDeviceInfo | |
| 21 | DevObjDeleteDeviceInterfaceData | |
| 22 | DevObjDeleteDeviceInterfaceRegKey | |
| 23 | DevObjDestroyDeviceInfoList | |
| 24 | DevObjEnumDeviceInfo | |
| 25 | DevObjEnumDeviceInterfaces | |
| 26 | DevObjGetClassDescription | |
| 27 | DevObjGetClassDevs | |
| 28 | DevObjGetClassProperty | |
| 29 | DevObjGetClassPropertyKeys | |
| 30 | DevObjGetClassRegistryProperty | |
| 31 | DevObjGetDeviceInfoDetail | |
| 32 | DevObjGetDeviceInfoListClass | |
| 33 | DevObjGetDeviceInfoListDetail | |
| 34 | DevObjGetDeviceInstanceId | |
| 35 | DevObjGetDeviceInterfaceAlias | |
| 36 | DevObjGetDeviceInterfaceDetail | |
| 37 | DevObjGetDeviceInterfaceProperty | |
| 38 | DevObjGetDeviceInterfacePropertyKeys | |
| 39 | DevObjGetDeviceProperty | |
| 40 | DevObjGetDevicePropertyKeys | |
| 41 | DevObjGetDeviceRegistryProperty | |
| 42 | DevObjLocateDevice | |
| 43 | DevObjOpenClassRegKey | |
| 44 | DevObjOpenDevRegKey | |
| 45 | DevObjOpenDeviceInfo | |
| 46 | DevObjOpenDeviceInterface | |
| 47 | DevObjOpenDeviceInterfaceRegKey | |
| 48 | DevObjRegisterDeviceInfo | |
| 49 | DevObjRemoveDeviceInterface | |
| 50 | DevObjRestartDevices | |
| 51 | DevObjSetClassProperty | |
| 52 | DevObjSetClassRegistryProperty | |
| 53 | DevObjSetDeviceInfoDetail | |
| 54 | DevObjSetDeviceInterfaceDefault | |
| 55 | DevObjSetDeviceInterfaceProperty | |
| 56 | DevObjSetDeviceProperty | |
| 57 | DevObjSetDeviceRegistryProperty | |
| 58 | DevObjUninstallDevice |
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 | ; | |
| 6 | LIBRARY "DEVRTL.dll" | |
| 7 | EXPORTS | |
| 8 | DevRtlCloseTextLogSection | |
| 9 | DevRtlCreateTextLogSectionA | |
| 10 | DevRtlCreateTextLogSectionW | |
| 11 | DevRtlGetThreadLogToken | |
| 12 | DevRtlSetThreadLogToken | |
| 13 | DevRtlWriteTextLog | |
| 14 | DevRtlWriteTextLogError | |
| 15 | NdxTableAddObject | |
| 16 | NdxTableAddObjectToList | |
| 17 | NdxTableClose | |
| 18 | NdxTableFirstObject | |
| 19 | NdxTableFirstObjectInList | |
| 20 | NdxTableGetObjectName | |
| 21 | NdxTableGetObjectType | |
| 22 | NdxTableGetObjectTypeCount | |
| 23 | NdxTableGetObjectTypeName | |
| 24 | NdxTableGetPropertyTypeClass | |
| 25 | NdxTableGetPropertyTypeCount | |
| 26 | NdxTableGetPropertyTypeName | |
| 27 | NdxTableGetPropertyValue | |
| 28 | NdxTableNextObject | |
| 29 | NdxTableObjectFromName | |
| 30 | NdxTableObjectFromPointer | |
| 31 | NdxTableOpen | |
| 32 | NdxTableRemoveObject | |
| 33 | NdxTableRemoveObjectFromList | |
| 34 | NdxTableSetObjectPointer | |
| 35 | NdxTableSetPropertyValue | |
| 36 | NdxTableSetTypeDefinition |
lib/libc/mingw/lib-common/dhcpcsvc.def+2| ... | ... | @@ -15,6 +15,7 @@ DhcpDeRegisterOptions |
| 15 | 15 | DhcpDeRegisterParamChange |
| 16 | 16 | DhcpDelPersistentRequestParams |
| 17 | 17 | DhcpEnableDhcp |
| 18 | DhcpEnableDhcpAdvanced | |
| 18 | 19 | DhcpEnableTracing |
| 19 | 20 | DhcpEnumClasses |
| 20 | 21 | DhcpEnumInterfaces |
| ... | ... | @@ -35,6 +36,7 @@ DhcpGlobalServiceSyncEvent DATA |
| 35 | 36 | DhcpGlobalTerminateEvent DATA |
| 36 | 37 | DhcpHandlePnPEvent |
| 37 | 38 | DhcpIsEnabled |
| 39 | DhcpIsMeteredDetected | |
| 38 | 40 | DhcpLeaseIpAddress |
| 39 | 41 | DhcpLeaseIpAddressEx |
| 40 | 42 | DhcpNotifyConfigChange |
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 | ; | |
| 6 | LIBRARY "dhcpcsvc6.DLL" | |
| 7 | EXPORTS | |
| 8 | Dhcpv6AcquireParameters | |
| 9 | Dhcpv6CApiCleanup | |
| 10 | Dhcpv6CApiInitialize | |
| 11 | Dhcpv6CancelOperation | |
| 12 | Dhcpv6EnableDhcp | |
| 13 | Dhcpv6EnableTracing | |
| 14 | Dhcpv6FreeLeaseInfo | |
| 15 | Dhcpv6FreeLeaseInfoArray | |
| 16 | Dhcpv6GetTraceArray | |
| 17 | Dhcpv6GetUserClasses | |
| 18 | Dhcpv6IsEnabled | |
| 19 | Dhcpv6Main | |
| 20 | Dhcpv6QueryLeaseInfo | |
| 21 | Dhcpv6QueryLeaseInfoArray | |
| 22 | Dhcpv6ReleaseParameters | |
| 23 | Dhcpv6ReleasePrefix | |
| 24 | Dhcpv6ReleasePrefixEx | |
| 25 | Dhcpv6RenewPrefix | |
| 26 | Dhcpv6RenewPrefixEx | |
| 27 | Dhcpv6RequestParams | |
| 28 | Dhcpv6RequestPrefix | |
| 29 | Dhcpv6RequestPrefixEx | |
| 30 | Dhcpv6SetUserClass |
lib/libc/mingw/lib-common/diagnosticdataquery.def created+39| ... | ... | @@ -0,0 +1,39 @@ |
| 1 | LIBRARY "DiagnosticDataQuery.dll" | |
| 2 | EXPORTS | |
| 3 | DdqCancelDiagnosticRecordOperation | |
| 4 | DdqCloseSession | |
| 5 | DdqCreateSession | |
| 6 | DdqExtractDiagnosticReport | |
| 7 | DdqFreeDiagnosticRecordLocaleTags | |
| 8 | DdqFreeDiagnosticRecordPage | |
| 9 | DdqFreeDiagnosticRecordProducerCategories | |
| 10 | DdqFreeDiagnosticRecordProducers | |
| 11 | DdqFreeDiagnosticReport | |
| 12 | DdqGetDiagnosticDataAccessLevelAllowed | |
| 13 | DdqGetDiagnosticRecordAtIndex | |
| 14 | DdqGetDiagnosticRecordBinaryDistribution | |
| 15 | DdqGetDiagnosticRecordCategoryAtIndex | |
| 16 | DdqGetDiagnosticRecordCategoryCount | |
| 17 | DdqGetDiagnosticRecordCount | |
| 18 | DdqGetDiagnosticRecordLocaleTagAtIndex | |
| 19 | DdqGetDiagnosticRecordLocaleTagCount | |
| 20 | DdqGetDiagnosticRecordLocaleTags | |
| 21 | DdqGetDiagnosticRecordPage | |
| 22 | DdqGetDiagnosticRecordPayload | |
| 23 | DdqGetDiagnosticRecordProducerAtIndex | |
| 24 | DdqGetDiagnosticRecordProducerCategories | |
| 25 | DdqGetDiagnosticRecordProducerCount | |
| 26 | DdqGetDiagnosticRecordProducers | |
| 27 | DdqGetDiagnosticRecordStats | |
| 28 | DdqGetDiagnosticRecordSummary | |
| 29 | DdqGetDiagnosticRecordTagDistribution | |
| 30 | DdqGetDiagnosticReport | |
| 31 | DdqGetDiagnosticReportAtIndex | |
| 32 | DdqGetDiagnosticReportCount | |
| 33 | DdqGetDiagnosticReportStoreReportCount | |
| 34 | DdqGetSessionAccessLevel | |
| 35 | DdqGetTranscriptConfiguration | |
| 36 | DdqIsDiagnosticRecordSampledIn | |
| 37 | DdqSetTranscriptConfiguration | |
| 38 | UtcSendTraceLogging | |
| 39 | UtcSendTraceLogging2 |
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 | ; | |
| 7 | LIBRARY dimsroam.dll | |
| 8 | EXPORTS | |
| 9 | DimsRoamEntry |
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 | ; | |
| 7 | LIBRARY DINPUT.dll | |
| 8 | EXPORTS | |
| 9 | DirectInputCreateA | |
| 10 | DirectInputCreateEx | |
| 11 | DirectInputCreateW | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer |
lib/libc/mingw/lib-common/dinput8.def+1| ... | ... | @@ -11,3 +11,4 @@ DllCanUnloadNow |
| 11 | 11 | DllGetClassObject |
| 12 | 12 | DllRegisterServer |
| 13 | 13 | DllUnregisterServer |
| 14 | GetdfDIJoystick |
lib/libc/mingw/lib-common/directml.def created+6| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | LIBRARY directml | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | DMLCreateDevice | |
| 6 | DMLCreateDevice1 |
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 | ; | |
| 7 | LIBRARY DISKCOPY.dll | |
| 8 | EXPORTS | |
| 9 | DiskCopyRunDll | |
| 10 | DiskCopyRunDllW | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject |
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 | ; | |
| 6 | LIBRARY "DismApi.DLL" | |
| 7 | EXPORTS | |
| 8 | DismAddCapability | |
| 9 | DismAddDriver | |
| 10 | DismAddPackage | |
| 11 | DismApplyUnattend | |
| 12 | DismCheckImageHealth | |
| 13 | DismCleanupMountpoints | |
| 14 | DismCloseSession | |
| 15 | DismCommitImage | |
| 16 | DismDelete | |
| 17 | DismDisableFeature | |
| 18 | DismEnableFeature | |
| 19 | DismGetCapabilities | |
| 20 | DismGetCapabilityInfo | |
| 21 | DismGetDriverInfo | |
| 22 | DismGetDrivers | |
| 23 | DismGetFeatureInfo | |
| 24 | DismGetFeatureParent | |
| 25 | DismGetFeatures | |
| 26 | DismGetImageInfo | |
| 27 | DismGetLastErrorMessage | |
| 28 | DismGetMountedImageInfo | |
| 29 | DismGetPackageInfo | |
| 30 | DismGetPackageInfoEx | |
| 31 | DismGetPackages | |
| 32 | DismGetReservedStorageState | |
| 33 | DismInitialize | |
| 34 | DismMountImage | |
| 35 | DismOpenSession | |
| 36 | DismRemountImage | |
| 37 | DismRemoveCapability | |
| 38 | DismRemoveDriver | |
| 39 | DismRemovePackage | |
| 40 | DismRestoreImageHealth | |
| 41 | DismSetReservedStorageState | |
| 42 | DismShutdown | |
| 43 | DismUnmountImage | |
| 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 @@ |
| 1 | LIBRARY "dmutil.dll" | |
| 2 | EXPORTS | |
| 3 | CoDisableDynamicVolumes | |
| 4 | GetSystemVolume | |
| 5 | AddEntryBootFileGpt | |
| 6 | AddEntryBootFileMbr | |
| 7 | DisplayError | |
| 8 | DisplayErrorRgszw | |
| 9 | DmCommonNtOpenFile | |
| 10 | DynamicSupport | |
| 11 | FTrace | |
| 12 | FTraceValist | |
| 13 | FreeRgszw | |
| 14 | GetErrorData | |
| 15 | GetInstallDirectoryPath | |
| 16 | IsPersonalSKU | |
| 17 | LowAcquirePrivilege | |
| 18 | LowGetPartitionInfo | |
| 19 | LowNtAddBootEntry | |
| 20 | LowNtReadFile | |
| 21 | LowNtReadOnlyAttributeOff | |
| 22 | LowNtWriteFile | |
| 23 | RgszwDupRgszw | |
| 24 | RgszwFromArgs | |
| 25 | RgszwFromValist | |
| 26 | SafeLoadVdsService | |
| 27 | ShowMessage | |
| 28 | ShowMessageValist | |
| 29 | SzwDupSzw | |
| 30 | SzwFromSza | |
| 31 | TranslateError |
lib/libc/mingw/lib-common/dnsapi.def+1| ... | ... | @@ -28,6 +28,7 @@ DnsAsyncRegisterTerm |
| 28 | 28 | DnsCancelQuery |
| 29 | 29 | DnsCheckNrptRuleIntegrity |
| 30 | 30 | DnsCheckNrptRules |
| 31 | DnsCleanupTcpConnections | |
| 31 | 32 | DnsConnectionDeletePolicyEntries |
| 32 | 33 | DnsConnectionDeletePolicyEntriesPrivate |
| 33 | 34 | DnsConnectionDeleteProxyInfo |
lib/libc/mingw/lib-common/dnsperf.def created+7| ... | ... | @@ -0,0 +1,7 @@ |
| 1 | LIBRARY dnsperf | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CloseDnsPerformanceData | |
| 6 | CollectDnsPerformanceData | |
| 7 | OpenDnsPerformanceData |
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 | ; | |
| 6 | LIBRARY "dnsrslvr.dll" | |
| 7 | EXPORTS | |
| 8 | LoadGPExtension | |
| 9 | Reg_DoRegisterAdapter | |
| 10 | ServiceMain | |
| 11 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "drprov.dll" | |
| 7 | EXPORTS | |
| 8 | NPAddConnection | |
| 9 | NPAddConnection3 | |
| 10 | NPCancelConnection | |
| 11 | NPCloseEnum | |
| 12 | NPEnumResource | |
| 13 | NPGetCaps | |
| 14 | NPGetConnection | |
| 15 | NPGetResourceInformation | |
| 16 | NPGetResourceParent | |
| 17 | NPGetUniversalName | |
| 18 | NPOpenEnum | |
| 19 | NPGetConnectionPerformance |
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 | ; | |
| 7 | LIBRARY DSAUTH.dll | |
| 8 | EXPORTS | |
| 9 | DhcpAddServerDS | |
| 10 | DhcpDeleteServerDS | |
| 11 | DhcpDsAddServer | |
| 12 | DhcpDsCleanupDS | |
| 13 | DhcpDsDelServer | |
| 14 | DhcpDsEnumServers | |
| 15 | DhcpDsGetAttribs | |
| 16 | DhcpDsGetLists | |
| 17 | DhcpDsGetRoot | |
| 18 | DhcpDsInitDS | |
| 19 | DhcpDsSetLists | |
| 20 | DhcpDsValidateService | |
| 21 | DhcpEnumServersDS | |
| 22 | StoreBeginSearch | |
| 23 | StoreCleanupHandle | |
| 24 | StoreCollectAttributes | |
| 25 | StoreCreateObjectVA | |
| 26 | StoreDeleteObject | |
| 27 | StoreEndSearch | |
| 28 | StoreGetHandle | |
| 29 | StoreInitHandle | |
| 30 | StoreSearchGetNext | |
| 31 | StoreSetSearchOneLevel | |
| 32 | StoreSetSearchSubTree |
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 | ; | |
| 7 | LIBRARY DSKQUOTA.dll | |
| 8 | EXPORTS | |
| 9 | ProcessGroupPolicy | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
lib/libc/mingw/lib-common/dsparse.def created+22| ... | ... | @@ -0,0 +1,22 @@ |
| 1 | LIBRARY "dsparse.dll" | |
| 2 | EXPORTS | |
| 3 | DsCrackSpn2A | |
| 4 | DsCrackSpn2W | |
| 5 | DsCrackSpn3W | |
| 6 | DsCrackSpn4W | |
| 7 | DsCrackSpnA | |
| 8 | DsCrackSpnW | |
| 9 | DsCrackUnquotedMangledRdnA | |
| 10 | DsCrackUnquotedMangledRdnW | |
| 11 | DsGetRdnW | |
| 12 | DsIsMangledDnA | |
| 13 | DsIsMangledDnW | |
| 14 | DsIsMangledRdnValueA | |
| 15 | DsIsMangledRdnValueW | |
| 16 | DsMakeSpn2W | |
| 17 | DsMakeSpnA | |
| 18 | DsMakeSpnW | |
| 19 | DsQuoteRdnValueA | |
| 20 | DsQuoteRdnValueW | |
| 21 | DsUnquoteRdnValueA | |
| 22 | DsUnquoteRdnValueW |
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 | ; | |
| 7 | LIBRARY dsquery.dll | |
| 8 | EXPORTS | |
| 9 | OpenSavedDsQuery | |
| 10 | OpenSavedDsQueryW | |
| 11 | OpenQueryWindow | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllInstall | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY DSSENH.dll | |
| 8 | EXPORTS | |
| 9 | CPAcquireContext | |
| 10 | CPCreateHash | |
| 11 | CPDecrypt | |
| 12 | CPDeriveKey | |
| 13 | CPDestroyHash | |
| 14 | CPDestroyKey | |
| 15 | CPDuplicateHash | |
| 16 | CPDuplicateKey | |
| 17 | CPEncrypt | |
| 18 | CPExportKey | |
| 19 | CPGenKey | |
| 20 | CPGenRandom | |
| 21 | CPGetHashParam | |
| 22 | CPGetKeyParam | |
| 23 | CPGetProvParam | |
| 24 | CPGetUserKey | |
| 25 | CPHashData | |
| 26 | CPHashSessionKey | |
| 27 | CPImportKey | |
| 28 | CPReleaseContext | |
| 29 | CPSetHashParam | |
| 30 | CPSetKeyParam | |
| 31 | CPSetProvParam | |
| 32 | CPSignHash | |
| 33 | CPVerifySignature | |
| 34 | DllRegisterServer | |
| 35 | DllUnregisterServer |
lib/libc/mingw/lib-common/duser.def created+157| ... | ... | @@ -0,0 +1,157 @@ |
| 1 | LIBRARY "DUser.dll" | |
| 2 | EXPORTS | |
| 3 | DUserCastHandle | |
| 4 | DUserDeleteGadget | |
| 5 | GetStdColorBrushF | |
| 6 | GetStdColorF | |
| 7 | GetStdColorPenF | |
| 8 | UtilDrawOutlineRect | |
| 9 | AddGadgetMessageHandler | |
| 10 | AddLayeredRef | |
| 11 | AdjustClipInsideRef | |
| 12 | AttachWndProcA | |
| 13 | AttachWndProcW | |
| 14 | AutoTrace | |
| 15 | BeginTransition | |
| 16 | BeginHideInputPaneAnimation | |
| 17 | BeginShowInputPaneAnimation | |
| 18 | BuildAnimation | |
| 19 | BuildDropTarget | |
| 20 | BuildInterpolation | |
| 21 | CacheDWriteRenderTarget | |
| 22 | ChangeCurrentAnimationScenario | |
| 23 | ClearPushedOpacitiesFromGadgetTree | |
| 24 | ClearTopmostVisual | |
| 25 | CreateAction | |
| 26 | CreateGadget | |
| 27 | CreateTransition | |
| 28 | CustomGadgetHitTestQuery | |
| 29 | DUserBuildGadget | |
| 30 | DUserCastClass | |
| 31 | DUserCastDirect | |
| 32 | DUserFindClass | |
| 33 | DUserFlushDeferredMessages | |
| 34 | DUserFlushMessages | |
| 35 | DUserGetAlphaPRID | |
| 36 | DUserGetGutsData | |
| 37 | DUserGetRectPRID | |
| 38 | DUserGetRotatePRID | |
| 39 | DUserGetScalePRID | |
| 40 | DUserInstanceOf | |
| 41 | DUserPostEvent | |
| 42 | DUserPostMethod | |
| 43 | DUserRegisterGuts | |
| 44 | DUserRegisterStub | |
| 45 | DUserRegisterSuper | |
| 46 | DUserSendEvent | |
| 47 | DUserSendMethod | |
| 48 | DUserStopAnimation | |
| 49 | DUserStopPVLAnimation | |
| 50 | DeleteHandle | |
| 51 | DestroyPendingDCVisuals | |
| 52 | DetachGadgetVisuals | |
| 53 | DetachWndProc | |
| 54 | DisableContainerHwnd | |
| 55 | DrawGadgetTree | |
| 56 | EndInputPaneAnimation | |
| 57 | EndTransition | |
| 58 | EnsureAnimationsEnabled | |
| 59 | EnsureGadgetTransInitialized | |
| 60 | EnumGadgets | |
| 61 | FindGadgetFromPoint | |
| 62 | FindGadgetMessages | |
| 63 | FindGadgetTargetingInfo | |
| 64 | FindStdColor | |
| 65 | FireGadgetMessages | |
| 66 | ForwardGadgetMessage | |
| 67 | GadgetTransCompositionChanged | |
| 68 | GadgetTransSettingChanged | |
| 69 | GetActionTimeslice | |
| 70 | GetCachedDWriteRenderTarget | |
| 71 | GetDUserModule | |
| 72 | GetDebug | |
| 73 | GetFinalAnimatingPosition | |
| 74 | GetGadget | |
| 75 | GetGadgetAnimation | |
| 76 | GetGadgetBitmap | |
| 77 | GetGadgetBufferInfo | |
| 78 | GetGadgetCenterPoint | |
| 79 | GetGadgetFlags | |
| 80 | GetGadgetFocus | |
| 81 | GetGadgetLayerInfo | |
| 82 | GetGadgetMessageFilter | |
| 83 | GetGadgetProperty | |
| 84 | GetGadgetRect | |
| 85 | GetGadgetRgn | |
| 86 | GetGadgetRootInfo | |
| 87 | GetGadgetRotation | |
| 88 | GetGadgetScale | |
| 89 | GetGadgetSize | |
| 90 | GetGadgetStyle | |
| 91 | GetGadgetTicket | |
| 92 | GetGadgetVisual | |
| 93 | GetMessageExA | |
| 94 | GetMessageExW | |
| 95 | GetStdColorBrushI | |
| 96 | GetStdColorI | |
| 97 | GetStdColorName | |
| 98 | GetStdColorPenI | |
| 99 | GetStdPalette | |
| 100 | GetTransitionInterface | |
| 101 | InitGadgetComponent | |
| 102 | InitGadgets | |
| 103 | InvalidateGadget | |
| 104 | InvalidateLayeredDescendants | |
| 105 | IsGadgetParentChainStyle | |
| 106 | IsInsideContext | |
| 107 | IsStartDelete | |
| 108 | LookupGadgetTicket | |
| 109 | MapGadgetPoints | |
| 110 | PeekMessageExA | |
| 111 | PeekMessageExW | |
| 112 | PlayTransition | |
| 113 | PrintTransition | |
| 114 | RegisterGadgetMessage | |
| 115 | RegisterGadgetMessageString | |
| 116 | RegisterGadgetProperty | |
| 117 | ReleaseDetachedObjects | |
| 118 | ReleaseLayeredRef | |
| 119 | ReleaseMouseCapture | |
| 120 | RemoveClippingImmunityFromVisual | |
| 121 | RemoveGadgetMessageHandler | |
| 122 | RemoveGadgetProperty | |
| 123 | ResetDUserDevice | |
| 124 | ScheduleGadgetTransitions | |
| 125 | SetActionTimeslice | |
| 126 | SetAtlasingHints | |
| 127 | SetGadgetBufferInfo | |
| 128 | SetGadgetCenterPoint | |
| 129 | SetGadgetFillF | |
| 130 | SetGadgetFillI | |
| 131 | SetGadgetFlags | |
| 132 | SetGadgetFocus | |
| 133 | SetGadgetFocusEx | |
| 134 | SetGadgetLayerInfo | |
| 135 | SetGadgetMessageFilter | |
| 136 | SetGadgetOrder | |
| 137 | SetGadgetParent | |
| 138 | SetGadgetProperty | |
| 139 | SetGadgetRect | |
| 140 | SetGadgetRootInfo | |
| 141 | SetGadgetRotation | |
| 142 | SetGadgetScale | |
| 143 | SetGadgetStyle | |
| 144 | SetHardwareDeviceUsage | |
| 145 | SetMinimumDCompVersion | |
| 146 | SetRestoreCachedLayeredRefFlag | |
| 147 | SetTransitionVisualProperties | |
| 148 | SetWindowResizeFlag | |
| 149 | UninitGadgetComponent | |
| 150 | UnregisterGadgetMessage | |
| 151 | UnregisterGadgetMessageString | |
| 152 | UnregisterGadgetProperty | |
| 153 | UtilBuildFont | |
| 154 | UtilDrawBlendRect | |
| 155 | UtilGetColor | |
| 156 | UtilSetBackground | |
| 157 | WaitMessageEx |
lib/libc/mingw/lib-common/dxcore.def created+5| ... | ... | @@ -0,0 +1,5 @@ |
| 1 | LIBRARY dxcore | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | DXCoreCreateAdapterFactory |
lib/libc/mingw/lib-common/dxgi.def-1| ... | ... | @@ -48,7 +48,6 @@ D3DKMTSetContextSchedulingPriority |
| 48 | 48 | D3DKMTSetDisplayMode |
| 49 | 49 | D3DKMTSetGammaRamp |
| 50 | 50 | D3DKMTSetVidPnSourceOwner |
| 51 | D3DKMTWaitForSynchronizationObject | |
| 52 | 51 | D3DKMTWaitForVerticalBlankEvent |
| 53 | 52 | DXGID3D10CreateDevice |
| 54 | 53 | DXGID3D10CreateLayeredDevice |
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 | ; | |
| 6 | LIBRARY "GenericUI.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow | |
| 9 | DllGetClassObject | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | EapPeerFreeErrorMemory | |
| 13 | EapPeerFreeMemory | |
| 14 | EapPeerInvokeIdentityUI |
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 | ; | |
| 6 | LIBRARY "eapphost.dll" | |
| 7 | EXPORTS | |
| 8 | OnSessionChange | |
| 9 | InitializeEapHost | |
| 10 | StopServiceOnLowPower | |
| 11 | UninitializeEapHost |
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 | ; | |
| 6 | LIBRARY "EFSADU.dll" | |
| 7 | EXPORTS | |
| 8 | AddUserToObjectW | |
| 9 | BackCurrentEfsCert | |
| 10 | EfsDetail | |
| 11 | EfsUIUtilCheckScardStatus | |
| 12 | EfsUIUtilCreateSelfSignedCertificate | |
| 13 | EfsUIUtilEncryptMyDocuments | |
| 14 | EfsUIUtilEnrollEfsCertificate | |
| 15 | EfsUIUtilEnrollEfsCertificateEx | |
| 16 | EfsUIUtilInstallDra | |
| 17 | EfsUIUtilKeyBackup | |
| 18 | EfsUIUtilPromptForPin | |
| 19 | EfsUIUtilPromptForPinDialog | |
| 20 | EfsUIUtilSelectCard | |
| 21 | EfsUIUtilShowBalloonAndWait |
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 | ; | |
| 6 | LIBRARY "ESENT.dll" | |
| 7 | EXPORTS | |
| 8 | DebugExtensionInitialize | |
| 9 | DebugExtensionNotify | |
| 10 | DebugExtensionUninitialize | |
| 11 | JetAddColumn | |
| 12 | JetAddColumnA | |
| 13 | JetAddColumnW | |
| 14 | JetAttachDatabase | |
| 15 | JetAttachDatabase2 | |
| 16 | JetAttachDatabase2A | |
| 17 | JetAttachDatabase2W | |
| 18 | JetAttachDatabase3 | |
| 19 | JetAttachDatabase3A | |
| 20 | JetAttachDatabase3W | |
| 21 | JetAttachDatabaseA | |
| 22 | JetAttachDatabaseW | |
| 23 | JetAttachDatabaseWithStreaming | |
| 24 | JetAttachDatabaseWithStreamingA | |
| 25 | JetAttachDatabaseWithStreamingW | |
| 26 | JetBackup | |
| 27 | JetBackupA | |
| 28 | JetBackupInstance | |
| 29 | JetBackupInstanceA | |
| 30 | JetBackupInstanceW | |
| 31 | JetBackupW | |
| 32 | JetBeginDatabaseIncrementalReseed | |
| 33 | JetBeginDatabaseIncrementalReseedA | |
| 34 | JetBeginDatabaseIncrementalReseedW | |
| 35 | JetBeginExternalBackup | |
| 36 | JetBeginExternalBackupInstance | |
| 37 | JetBeginSession | |
| 38 | JetBeginSessionA | |
| 39 | JetBeginSessionW | |
| 40 | JetBeginSurrogateBackup | |
| 41 | JetBeginTransaction | |
| 42 | JetBeginTransaction2 | |
| 43 | JetBeginTransaction3 | |
| 44 | JetCloseDatabase | |
| 45 | JetCloseFile | |
| 46 | JetCloseFileInstance | |
| 47 | JetCloseTable | |
| 48 | JetCommitTransaction | |
| 49 | JetCommitTransaction2 | |
| 50 | JetCompact | |
| 51 | JetCompactA | |
| 52 | JetCompactW | |
| 53 | JetComputeStats | |
| 54 | JetConfigureProcessForCrashDump | |
| 55 | JetConsumeLogData | |
| 56 | JetConvertDDL | |
| 57 | JetConvertDDLA | |
| 58 | JetConvertDDLW | |
| 59 | JetCreateDatabase | |
| 60 | JetCreateDatabase2 | |
| 61 | JetCreateDatabase2A | |
| 62 | JetCreateDatabase2W | |
| 63 | JetCreateDatabase3 | |
| 64 | JetCreateDatabase3A | |
| 65 | JetCreateDatabase3W | |
| 66 | JetCreateDatabaseA | |
| 67 | JetCreateDatabaseW | |
| 68 | JetCreateDatabaseWithStreaming | |
| 69 | JetCreateDatabaseWithStreamingA | |
| 70 | JetCreateDatabaseWithStreamingW | |
| 71 | JetCreateEncryptionKey | |
| 72 | JetCreateIndex | |
| 73 | JetCreateIndex2 | |
| 74 | JetCreateIndex2A | |
| 75 | JetCreateIndex2W | |
| 76 | JetCreateIndex3A | |
| 77 | JetCreateIndex3W | |
| 78 | JetCreateIndex4A | |
| 79 | JetCreateIndex4W | |
| 80 | JetCreateIndexA | |
| 81 | JetCreateIndexW | |
| 82 | JetCreateInstance | |
| 83 | JetCreateInstance2 | |
| 84 | JetCreateInstance2A | |
| 85 | JetCreateInstance2W | |
| 86 | JetCreateInstanceA | |
| 87 | JetCreateInstanceW | |
| 88 | JetCreateTable | |
| 89 | JetCreateTableA | |
| 90 | JetCreateTableColumnIndex | |
| 91 | JetCreateTableColumnIndex2 | |
| 92 | JetCreateTableColumnIndex2A | |
| 93 | JetCreateTableColumnIndex2W | |
| 94 | JetCreateTableColumnIndex3A | |
| 95 | JetCreateTableColumnIndex3W | |
| 96 | JetCreateTableColumnIndex4A | |
| 97 | JetCreateTableColumnIndex4W | |
| 98 | JetCreateTableColumnIndex5A | |
| 99 | JetCreateTableColumnIndex5W | |
| 100 | JetCreateTableColumnIndexA | |
| 101 | JetCreateTableColumnIndexW | |
| 102 | JetCreateTableW | |
| 103 | JetDBUtilities | |
| 104 | JetDBUtilitiesA | |
| 105 | JetDBUtilitiesW | |
| 106 | JetDatabaseScan | |
| 107 | JetDefragment | |
| 108 | JetDefragment2 | |
| 109 | JetDefragment2A | |
| 110 | JetDefragment2W | |
| 111 | JetDefragment3 | |
| 112 | JetDefragment3A | |
| 113 | JetDefragment3W | |
| 114 | JetDefragmentA | |
| 115 | JetDefragmentW | |
| 116 | JetDelete | |
| 117 | JetDeleteColumn | |
| 118 | JetDeleteColumn2 | |
| 119 | JetDeleteColumn2A | |
| 120 | JetDeleteColumn2W | |
| 121 | JetDeleteColumnA | |
| 122 | JetDeleteColumnW | |
| 123 | JetDeleteIndex | |
| 124 | JetDeleteIndexA | |
| 125 | JetDeleteIndexW | |
| 126 | JetDeleteTable | |
| 127 | JetDeleteTableA | |
| 128 | JetDeleteTableW | |
| 129 | JetDetachDatabase | |
| 130 | JetDetachDatabase2 | |
| 131 | JetDetachDatabase2A | |
| 132 | JetDetachDatabase2W | |
| 133 | JetDetachDatabaseA | |
| 134 | JetDetachDatabaseW | |
| 135 | JetDupCursor | |
| 136 | JetDupSession | |
| 137 | JetEnableMultiInstance | |
| 138 | JetEnableMultiInstanceA | |
| 139 | JetEnableMultiInstanceW | |
| 140 | JetEndDatabaseIncrementalReseed | |
| 141 | JetEndDatabaseIncrementalReseedA | |
| 142 | JetEndDatabaseIncrementalReseedW | |
| 143 | JetEndExternalBackup | |
| 144 | JetEndExternalBackupInstance | |
| 145 | JetEndExternalBackupInstance2 | |
| 146 | JetEndSession | |
| 147 | JetEndSurrogateBackup | |
| 148 | JetEnumerateColumns | |
| 149 | JetEscrowUpdate | |
| 150 | JetExternalRestore | |
| 151 | JetExternalRestore2 | |
| 152 | JetExternalRestore2A | |
| 153 | JetExternalRestore2W | |
| 154 | JetExternalRestoreA | |
| 155 | JetExternalRestoreW | |
| 156 | JetFreeBuffer | |
| 157 | JetGetAttachInfo | |
| 158 | JetGetAttachInfoA | |
| 159 | JetGetAttachInfoInstance | |
| 160 | JetGetAttachInfoInstanceA | |
| 161 | JetGetAttachInfoInstanceW | |
| 162 | JetGetAttachInfoW | |
| 163 | JetGetBookmark | |
| 164 | JetGetColumnInfo | |
| 165 | JetGetColumnInfoA | |
| 166 | JetGetColumnInfoW | |
| 167 | JetGetCounter | |
| 168 | JetGetCurrentIndex | |
| 169 | JetGetCurrentIndexA | |
| 170 | JetGetCurrentIndexW | |
| 171 | JetGetCursorInfo | |
| 172 | JetGetDatabaseFileInfo | |
| 173 | JetGetDatabaseFileInfoA | |
| 174 | JetGetDatabaseFileInfoW | |
| 175 | JetGetDatabaseInfo | |
| 176 | JetGetDatabaseInfoA | |
| 177 | JetGetDatabaseInfoW | |
| 178 | JetGetDatabasePages | |
| 179 | JetGetErrorInfoW | |
| 180 | JetGetIndexInfo | |
| 181 | JetGetIndexInfoA | |
| 182 | JetGetIndexInfoW | |
| 183 | JetGetInstanceInfo | |
| 184 | JetGetInstanceInfoA | |
| 185 | JetGetInstanceInfoW | |
| 186 | JetGetInstanceMiscInfo | |
| 187 | JetGetLS | |
| 188 | JetGetLock | |
| 189 | JetGetLogFileInfo | |
| 190 | JetGetLogFileInfoA | |
| 191 | JetGetLogFileInfoW | |
| 192 | JetGetLogInfo | |
| 193 | JetGetLogInfoA | |
| 194 | JetGetLogInfoInstance | |
| 195 | JetGetLogInfoInstance2 | |
| 196 | JetGetLogInfoInstance2A | |
| 197 | JetGetLogInfoInstance2W | |
| 198 | JetGetLogInfoInstanceA | |
| 199 | JetGetLogInfoInstanceW | |
| 200 | JetGetLogInfoW | |
| 201 | JetGetMaxDatabaseSize | |
| 202 | JetGetObjectInfo | |
| 203 | JetGetObjectInfoA | |
| 204 | JetGetObjectInfoW | |
| 205 | JetGetPageInfo | |
| 206 | JetGetPageInfo2 | |
| 207 | JetGetRecordPosition | |
| 208 | JetGetRecordSize | |
| 209 | JetGetRecordSize2 | |
| 210 | JetGetResourceParam | |
| 211 | JetGetSecondaryIndexBookmark | |
| 212 | JetGetSessionInfo | |
| 213 | JetGetSessionParameter | |
| 214 | JetGetSystemParameter | |
| 215 | JetGetSystemParameterA | |
| 216 | JetGetSystemParameterW | |
| 217 | JetGetTableColumnInfo | |
| 218 | JetGetTableColumnInfoA | |
| 219 | JetGetTableColumnInfoW | |
| 220 | JetGetTableIndexInfo | |
| 221 | JetGetTableIndexInfoA | |
| 222 | JetGetTableIndexInfoW | |
| 223 | JetGetTableInfo | |
| 224 | JetGetTableInfoA | |
| 225 | JetGetTableInfoW | |
| 226 | JetGetThreadStats | |
| 227 | JetGetTruncateLogInfoInstance | |
| 228 | JetGetTruncateLogInfoInstanceA | |
| 229 | JetGetTruncateLogInfoInstanceW | |
| 230 | JetGetVersion | |
| 231 | JetGotoBookmark | |
| 232 | JetGotoPosition | |
| 233 | JetGotoSecondaryIndexBookmark | |
| 234 | JetGrowDatabase | |
| 235 | JetIdle | |
| 236 | JetIndexRecordCount | |
| 237 | JetIndexRecordCount2 | |
| 238 | JetInit | |
| 239 | JetInit2 | |
| 240 | JetInit3 | |
| 241 | JetInit3A | |
| 242 | JetInit3W | |
| 243 | JetInit4 | |
| 244 | JetInit4A | |
| 245 | JetInit4W | |
| 246 | JetIntersectIndexes | |
| 247 | JetMakeKey | |
| 248 | JetMove | |
| 249 | JetOSSnapshotAbort | |
| 250 | JetOSSnapshotEnd | |
| 251 | JetOSSnapshotFreeze | |
| 252 | JetOSSnapshotFreezeA | |
| 253 | JetOSSnapshotFreezeW | |
| 254 | JetOSSnapshotGetFreezeInfo | |
| 255 | JetOSSnapshotGetFreezeInfoA | |
| 256 | JetOSSnapshotGetFreezeInfoW | |
| 257 | JetOSSnapshotPrepare | |
| 258 | JetOSSnapshotPrepareInstance | |
| 259 | JetOSSnapshotThaw | |
| 260 | JetOSSnapshotTruncateLog | |
| 261 | JetOSSnapshotTruncateLogInstance | |
| 262 | JetOnlinePatchDatabasePage | |
| 263 | JetOpenDatabase | |
| 264 | JetOpenDatabaseA | |
| 265 | JetOpenDatabaseW | |
| 266 | JetOpenFile | |
| 267 | JetOpenFileA | |
| 268 | JetOpenFileInstance | |
| 269 | JetOpenFileInstanceA | |
| 270 | JetOpenFileInstanceW | |
| 271 | JetOpenFileSectionInstance | |
| 272 | JetOpenFileSectionInstanceA | |
| 273 | JetOpenFileSectionInstanceW | |
| 274 | JetOpenFileW | |
| 275 | JetOpenTable | |
| 276 | JetOpenTableA | |
| 277 | JetOpenTableW | |
| 278 | JetOpenTempTable | |
| 279 | JetOpenTempTable2 | |
| 280 | JetOpenTempTable3 | |
| 281 | JetOpenTemporaryTable | |
| 282 | JetOpenTemporaryTable2 | |
| 283 | JetPatchDatabasePages | |
| 284 | JetPatchDatabasePagesA | |
| 285 | JetPatchDatabasePagesW | |
| 286 | JetPrepareToCommitTransaction | |
| 287 | JetPrepareUpdate | |
| 288 | JetPrereadColumnsByReference | |
| 289 | JetPrereadIndexRange | |
| 290 | JetPrereadIndexRanges | |
| 291 | JetPrereadKeys | |
| 292 | JetPrereadTablesW | |
| 293 | JetReadFile | |
| 294 | JetReadFileInstance | |
| 295 | JetRegisterCallback | |
| 296 | JetRemoveLogfileA | |
| 297 | JetRemoveLogfileW | |
| 298 | JetRenameColumn | |
| 299 | JetRenameColumnA | |
| 300 | JetRenameColumnW | |
| 301 | JetRenameTable | |
| 302 | JetRenameTableA | |
| 303 | JetRenameTableW | |
| 304 | JetResetCounter | |
| 305 | JetResetSessionContext | |
| 306 | JetResetTableSequential | |
| 307 | JetResizeDatabase | |
| 308 | JetRestore | |
| 309 | JetRestore2 | |
| 310 | JetRestore2A | |
| 311 | JetRestore2W | |
| 312 | JetRestoreA | |
| 313 | JetRestoreInstance | |
| 314 | JetRestoreInstanceA | |
| 315 | JetRestoreInstanceW | |
| 316 | JetRestoreW | |
| 317 | JetRetrieveColumn | |
| 318 | JetRetrieveColumnByReference | |
| 319 | JetRetrieveColumnFromRecordStream | |
| 320 | JetRetrieveColumns | |
| 321 | JetRetrieveKey | |
| 322 | JetRetrieveTaggedColumnList | |
| 323 | JetRollback | |
| 324 | JetSeek | |
| 325 | JetSetColumn | |
| 326 | JetSetColumnDefaultValue | |
| 327 | JetSetColumnDefaultValueA | |
| 328 | JetSetColumnDefaultValueW | |
| 329 | JetSetColumns | |
| 330 | JetSetCurrentIndex | |
| 331 | JetSetCurrentIndex2 | |
| 332 | JetSetCurrentIndex2A | |
| 333 | JetSetCurrentIndex2W | |
| 334 | JetSetCurrentIndex3 | |
| 335 | JetSetCurrentIndex3A | |
| 336 | JetSetCurrentIndex3W | |
| 337 | JetSetCurrentIndex4 | |
| 338 | JetSetCurrentIndex4A | |
| 339 | JetSetCurrentIndex4W | |
| 340 | JetSetCurrentIndexA | |
| 341 | JetSetCurrentIndexW | |
| 342 | JetSetCursorFilter | |
| 343 | JetSetDatabaseSize | |
| 344 | JetSetDatabaseSizeA | |
| 345 | JetSetDatabaseSizeW | |
| 346 | JetSetIndexRange | |
| 347 | JetSetLS | |
| 348 | JetSetMaxDatabaseSize | |
| 349 | JetSetResourceParam | |
| 350 | JetSetSessionContext | |
| 351 | JetSetSessionParameter | |
| 352 | JetSetSystemParameter | |
| 353 | JetSetSystemParameterA | |
| 354 | JetSetSystemParameterW | |
| 355 | JetSetTableInfo | |
| 356 | JetSetTableInfoA | |
| 357 | JetSetTableInfoW | |
| 358 | JetSetTableSequential | |
| 359 | JetSnapshotStart | |
| 360 | JetSnapshotStartA | |
| 361 | JetSnapshotStartW | |
| 362 | JetSnapshotStop | |
| 363 | JetStopBackup | |
| 364 | JetStopBackupInstance | |
| 365 | JetStopService | |
| 366 | JetStopServiceInstance | |
| 367 | JetStopServiceInstance2 | |
| 368 | JetStreamRecords | |
| 369 | JetTerm | |
| 370 | JetTerm2 | |
| 371 | JetTestHook | |
| 372 | JetTracing | |
| 373 | JetTruncateLog | |
| 374 | JetTruncateLogInstance | |
| 375 | JetUnregisterCallback | |
| 376 | JetUpdate | |
| 377 | JetUpdate2 | |
| 378 | JetUpgradeDatabase | |
| 379 | JetUpgradeDatabaseA | |
| 380 | JetUpgradeDatabaseW | |
| 381 | ese |
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 | ; | |
| 7 | LIBRARY ESENTPRF.dll | |
| 8 | EXPORTS | |
| 9 | ClosePerformanceData | |
| 10 | CollectPerformanceData | |
| 11 | OpenPerformanceData |
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 | ; | |
| 6 | LIBRARY "fdeploy.dll" | |
| 7 | EXPORTS | |
| 8 | ProcessWmiPolicy | |
| 9 | GenerateGroupPolicy | |
| 10 | ProcessGroupPolicyEx |
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 | ; | |
| 6 | LIBRARY "FeClient.dll" | |
| 7 | EXPORTS | |
| 8 | EfsUtilGetCurrentKey | |
| 9 | EdpContainerizeFile | |
| 10 | EdpCredentialCreate | |
| 11 | EdpCredentialDelete | |
| 12 | EdpCredentialExists | |
| 13 | EdpCredentialQuery | |
| 14 | EdpDecontainerizeFile | |
| 15 | EdpDplPolicyEnabledForUser | |
| 16 | EdpDplUpgradePinInfo | |
| 17 | EdpDplUpgradeVerifyUser | |
| 18 | EdpDplUserCredentialsSet | |
| 19 | EdpDplUserUnlockComplete | |
| 20 | EdpDplUserUnlockStart | |
| 21 | EdpFree | |
| 22 | EdpGetContainerIdentity | |
| 23 | EdpGetCredServiceState | |
| 24 | EdpQueryCredServiceInfo | |
| 25 | EdpQueryDplEnforcedPolicyOwnerIds | |
| 26 | EdpQueryRevokedPolicyOwnerIds | |
| 27 | EdpRmsClearKeys | |
| 28 | EdpSetCredServiceInfo | |
| 29 | EfsClientCloseFileRaw | |
| 30 | EfsClientDecryptFile | |
| 31 | EfsClientDuplicateEncryptionInfo | |
| 32 | EfsClientEncryptFileEx | |
| 33 | EfsClientFileEncryptionStatus | |
| 34 | EfsClientFreeProtectorList | |
| 35 | EfsClientGetEncryptedFileVersion | |
| 36 | EfsClientOpenFileRaw | |
| 37 | EfsClientQueryProtectors | |
| 38 | EfsClientReadFileRaw | |
| 39 | EfsClientWriteFileRaw | |
| 40 | EfsClientWriteFileWithHeaderRaw | |
| 41 | FeClientInitialize | |
| 42 | GetLockSessionUnwrappedKey | |
| 43 | GetLockSessionWrappedKey |
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 | ; | |
| 6 | LIBRARY "FILEMGMT.DLL" | |
| 7 | EXPORTS | |
| 8 | CacheSettingsDlg | |
| 9 | CacheSettingsDlg2 |
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 | ; | |
| 6 | LIBRARY "FMIFS.dll" | |
| 7 | EXPORTS | |
| 8 | GetFirstCorruptionInfo | |
| 9 | Chkdsk | |
| 10 | ChkdskEx | |
| 11 | ComputeFmMediaType | |
| 12 | DiskCopy | |
| 13 | EnableVolumeCompression | |
| 14 | EnableVolumeIntegrity | |
| 15 | Extend | |
| 16 | Format | |
| 17 | FormatEx | |
| 18 | FormatEx2 | |
| 19 | FreeCorruptionInfo | |
| 20 | GetCorruptionInfoClose | |
| 21 | GetDefaultFileSystem | |
| 22 | GetNextCorruptionInfo | |
| 23 | QueryAvailableFileSystemFormat | |
| 24 | QueryCorruptionState | |
| 25 | QueryCorruptionStateByHandle | |
| 26 | QueryDeviceInformation | |
| 27 | QueryDeviceInformationByHandle | |
| 28 | QueryFileSystemName | |
| 29 | QueryIsDiskCheckScheduledForNextBoot | |
| 30 | QueryLatestFileSystemVersion | |
| 31 | QuerySupportedMedia | |
| 32 | SetLabel |
lib/libc/mingw/lib-common/gamemode.def created+7| ... | ... | @@ -0,0 +1,7 @@ |
| 1 | LIBRARY gamemode.dll | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetExpandedResourceExclusiveCpuCount | |
| 6 | HasExpandedResources | |
| 7 | ReleaseExclusiveCpuSets |
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 | ; | |
| 7 | LIBRARY GetUName.dll | |
| 8 | EXPORTS | |
| 9 | GetUName |
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 | ; | |
| 6 | LIBRARY "HBAAPI.dll" | |
| 7 | EXPORTS | |
| 8 | HBA_CloseAdapter | |
| 9 | HBA_FreeLibrary | |
| 10 | HBA_GetAdapterAttributes | |
| 11 | HBA_GetAdapterName | |
| 12 | HBA_GetAdapterPortAttributes | |
| 13 | HBA_GetBindingCapability | |
| 14 | HBA_GetBindingSupport | |
| 15 | HBA_GetDiscoveredPortAttributes | |
| 16 | HBA_GetEventBuffer | |
| 17 | HBA_GetFC4Statistics | |
| 18 | HBA_GetFCPStatistics | |
| 19 | HBA_GetFcpPersistentBinding | |
| 20 | HBA_GetFcpTargetMapping | |
| 21 | HBA_GetFcpTargetMappingV2 | |
| 22 | HBA_GetNumberOfAdapters | |
| 23 | HBA_GetPersistentBindingV2 | |
| 24 | HBA_GetPortAttributesByWWN | |
| 25 | HBA_GetPortStatistics | |
| 26 | HBA_GetRNIDMgmtInfo | |
| 27 | HBA_GetVendorLibraryAttributes | |
| 28 | HBA_GetVersion | |
| 29 | HBA_GetWrapperLibraryAttributes | |
| 30 | HBA_LoadLibrary | |
| 31 | HBA_OpenAdapter | |
| 32 | HBA_OpenAdapterByWWN | |
| 33 | HBA_RefreshAdapterConfiguration | |
| 34 | HBA_RefreshInformation | |
| 35 | HBA_RegisterForAdapterAddEvents | |
| 36 | HBA_RegisterForAdapterEvents | |
| 37 | HBA_RegisterForAdapterPortEvents | |
| 38 | HBA_RegisterForAdapterPortStatEvents | |
| 39 | HBA_RegisterForLinkEvents | |
| 40 | HBA_RegisterForTargetEvents | |
| 41 | HBA_RegisterLibrary | |
| 42 | HBA_RegisterLibraryV2 | |
| 43 | HBA_RemoveAllPersistentBindings | |
| 44 | HBA_RemoveCallback | |
| 45 | HBA_RemovePersistentBinding | |
| 46 | HBA_ResetStatistics | |
| 47 | HBA_ScsiInquiryV2 | |
| 48 | HBA_ScsiReadCapacityV2 | |
| 49 | HBA_ScsiReportLUNsV2 | |
| 50 | HBA_SendCTPassThru | |
| 51 | HBA_SendCTPassThruV2 | |
| 52 | HBA_SendLIRR | |
| 53 | HBA_SendRLS | |
| 54 | HBA_SendRNID | |
| 55 | HBA_SendRNIDV2 | |
| 56 | HBA_SendRPL | |
| 57 | HBA_SendRPS | |
| 58 | HBA_SendReadCapacity | |
| 59 | HBA_SendReportLUNs | |
| 60 | HBA_SendSRL | |
| 61 | HBA_SendScsiInquiry | |
| 62 | HBA_SetBindingSupport | |
| 63 | HBA_SetPersistentBindingV2 | |
| 64 | HBA_SetRNIDMgmtInfo | |
| 65 | HbaGetAdapterNameByDeviceInstanceId | |
| 66 | SMHBA_GetAdapterAttributes | |
| 67 | SMHBA_GetAdapterPortAttributes | |
| 68 | SMHBA_GetBindingCapability | |
| 69 | SMHBA_GetBindingSupport | |
| 70 | SMHBA_GetDiscoveredPortAttributes | |
| 71 | SMHBA_GetFCPhyAttributes | |
| 72 | SMHBA_GetLUNStatistics | |
| 73 | SMHBA_GetNumberOfPorts | |
| 74 | SMHBA_GetPersistentBinding | |
| 75 | SMHBA_GetPhyStatistics | |
| 76 | SMHBA_GetPortAttributesByWWN | |
| 77 | SMHBA_GetPortType | |
| 78 | SMHBA_GetProtocolStatistics | |
| 79 | SMHBA_GetSASPhyAttributes | |
| 80 | SMHBA_GetTargetMapping | |
| 81 | SMHBA_GetVendorLibraryAttributes | |
| 82 | SMHBA_GetVersion | |
| 83 | SMHBA_GetWrapperLibraryAttributes | |
| 84 | SMHBA_RegisterForAdapterAddEvents | |
| 85 | SMHBA_RegisterForAdapterEvents | |
| 86 | SMHBA_RegisterForAdapterPhyStatEvents | |
| 87 | SMHBA_RegisterForAdapterPortEvents | |
| 88 | SMHBA_RegisterForAdapterPortStatEvents | |
| 89 | SMHBA_RegisterForTargetEvents | |
| 90 | SMHBA_RegisterLibrary | |
| 91 | SMHBA_RemoveAllPersistentBindings | |
| 92 | SMHBA_RemovePersistentBinding | |
| 93 | SMHBA_ScsiInquiry | |
| 94 | SMHBA_ScsiReadCapacity | |
| 95 | SMHBA_ScsiReportLuns | |
| 96 | SMHBA_SendECHO | |
| 97 | SMHBA_SendSMPPassThru | |
| 98 | SMHBA_SendTEST | |
| 99 | SMHBA_SetBindingSupport | |
| 100 | SMHBA_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 | ; | |
| 6 | LIBRARY "hotplug.DLL" | |
| 7 | EXPORTS | |
| 8 | CPlApplet | |
| 9 | HotPlugChildWithInvalidIdW | |
| 10 | HotPlugDriverBlockedW | |
| 11 | HotPlugEjectDevice | |
| 12 | HotPlugEjectDeviceEx | |
| 13 | HotPlugEjectVetoedW | |
| 14 | HotPlugHibernateVetoedW | |
| 15 | HotPlugRemovalVetoedW | |
| 16 | HotPlugSafeRemovalDriveNotificationW | |
| 17 | HotPlugSafeRemovalNotificationW | |
| 18 | HotPlugStandbyVetoedW | |
| 19 | HotPlugWarmEjectVetoedW |
lib/libc/mingw/lib-common/hrtfapo.def created+9| ... | ... | @@ -0,0 +1,9 @@ |
| 1 | LIBRARY hrtfapo | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateHrtfApo | |
| 6 | CreateHrtfApoWithDatasetType | |
| 7 | CreateHrtfEngineFactory | |
| 8 | GetHrtfEngineMinFrameCount | |
| 9 | IsHrtfApoAvailable |
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 | ||
| 4 | LIBRARY "hhctrl.ocx" | |
| 5 | EXPORTS | |
| 6 | LoadHHA | |
| 7 | DllCanUnloadNow | |
| 8 | AuthorMsg | |
| 9 | DllGetClassObject | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | doWinMain | |
| 13 | HtmlHelpA | |
| 14 | HtmlHelpW | |
| 15 | HhWindowThread |
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 | ; | |
| 7 | LIBRARY htUI.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | HTUI_ColorAdjustment | |
| 11 | HTUI_ColorAdjustmentA | |
| 12 | HTUI_ColorAdjustmentW | |
| 13 | HTUI_DeviceColorAdjustment | |
| 14 | HTUI_DeviceColorAdjustmentA | |
| 15 | HTUI_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 | ; | |
| 6 | LIBRARY "iashlpr.dll" | |
| 7 | EXPORTS | |
| 8 | AllocateAttributes | |
| 9 | ConfigureIas | |
| 10 | DoRequest | |
| 11 | DoRequestAsync | |
| 12 | FreeAttributes | |
| 13 | GetOptionIas | |
| 14 | InitializeIas | |
| 15 | MemAllocIas | |
| 16 | MemFreeIas | |
| 17 | MemReallocIas | |
| 18 | SetOptionIas | |
| 19 | ShutdownIas |
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 | ; | |
| 7 | LIBRARY iassam.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | IASParmsFreeUserParms | |
| 14 | IASParmsQueryRasUser0 | |
| 15 | IASParmsQueryUserProperty | |
| 16 | IASParmsSetRasUser0 | |
| 17 | IASParmsSetUserProperty |
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 | ; | |
| 6 | LIBRARY "iassvcs.dll" | |
| 7 | EXPORTS | |
| 8 | IASAdler32 | |
| 9 | IASAllocateUniqueID | |
| 10 | IASGetDictionary | |
| 11 | IASGetHostByName | |
| 12 | IASGetLocalDictionary | |
| 13 | IASGetProductLimits | |
| 14 | IASGlobalLock | |
| 15 | IASGlobalUnlock | |
| 16 | IASInitialize | |
| 17 | IASRadiusCrypt | |
| 18 | IASRegisterComponent | |
| 19 | IASReportEvent | |
| 20 | IASReportLicenseViolation | |
| 21 | IASReportSecurityEvent | |
| 22 | IASRequestThread | |
| 23 | IASSetMaxNumberOfThreads | |
| 24 | IASSetMaxThreadIdle | |
| 25 | IASShutdown | |
| 26 | IASUninitialize | |
| 27 | IASVariantChangeType |
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 | ; | |
| 7 | LIBRARY icmp.dll | |
| 8 | EXPORTS | |
| 9 | IcmpCloseHandle | |
| 10 | IcmpCreateFile | |
| 11 | IcmpParseReplies | |
| 12 | IcmpSendEcho | |
| 13 | IcmpSendEcho2 | |
| 14 | do_echo_rep | |
| 15 | do_echo_req | |
| 16 | register_icmp |
lib/libc/mingw/lib-common/icu.def created+973| ... | ... | @@ -0,0 +1,973 @@ |
| 1 | LIBRARY icu | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | UCNV_FROM_U_CALLBACK_ESCAPE | |
| 6 | UCNV_FROM_U_CALLBACK_SKIP | |
| 7 | UCNV_FROM_U_CALLBACK_STOP | |
| 8 | UCNV_FROM_U_CALLBACK_SUBSTITUTE | |
| 9 | UCNV_TO_U_CALLBACK_ESCAPE | |
| 10 | UCNV_TO_U_CALLBACK_SKIP | |
| 11 | UCNV_TO_U_CALLBACK_STOP | |
| 12 | UCNV_TO_U_CALLBACK_SUBSTITUTE | |
| 13 | u_UCharsToChars | |
| 14 | u_austrcpy | |
| 15 | u_austrncpy | |
| 16 | u_catclose | |
| 17 | u_catgets | |
| 18 | u_catopen | |
| 19 | u_charAge | |
| 20 | u_charDigitValue | |
| 21 | u_charDirection | |
| 22 | u_charFromName | |
| 23 | u_charMirror | |
| 24 | u_charName | |
| 25 | u_charType | |
| 26 | u_charsToUChars | |
| 27 | u_cleanup | |
| 28 | u_countChar32 | |
| 29 | u_digit | |
| 30 | u_enumCharNames | |
| 31 | u_enumCharTypes | |
| 32 | u_errorName | |
| 33 | u_foldCase | |
| 34 | u_forDigit | |
| 35 | u_formatMessage | |
| 36 | u_formatMessageWithError | |
| 37 | u_getBidiPairedBracket | |
| 38 | u_getCombiningClass | |
| 39 | u_getDataVersion | |
| 40 | u_getFC_NFKC_Closure | |
| 41 | u_getIntPropertyMaxValue | |
| 42 | u_getIntPropertyMinValue | |
| 43 | u_getIntPropertyValue | |
| 44 | u_getNumericValue | |
| 45 | u_getPropertyEnum | |
| 46 | u_getPropertyName | |
| 47 | u_getPropertyValueEnum | |
| 48 | u_getPropertyValueName | |
| 49 | u_getUnicodeVersion | |
| 50 | u_getVersion | |
| 51 | u_hasBinaryProperty | |
| 52 | u_init | |
| 53 | u_isIDIgnorable | |
| 54 | u_isIDPart | |
| 55 | u_isIDStart | |
| 56 | u_isISOControl | |
| 57 | u_isJavaIDPart | |
| 58 | u_isJavaIDStart | |
| 59 | u_isJavaSpaceChar | |
| 60 | u_isMirrored | |
| 61 | u_isUAlphabetic | |
| 62 | u_isULowercase | |
| 63 | u_isUUppercase | |
| 64 | u_isUWhiteSpace | |
| 65 | u_isWhitespace | |
| 66 | u_isalnum | |
| 67 | u_isalpha | |
| 68 | u_isbase | |
| 69 | u_isblank | |
| 70 | u_iscntrl | |
| 71 | u_isdefined | |
| 72 | u_isdigit | |
| 73 | u_isgraph | |
| 74 | u_islower | |
| 75 | u_isprint | |
| 76 | u_ispunct | |
| 77 | u_isspace | |
| 78 | u_istitle | |
| 79 | u_isupper | |
| 80 | u_isxdigit | |
| 81 | u_memcasecmp | |
| 82 | u_memchr | |
| 83 | u_memchr32 | |
| 84 | u_memcmp | |
| 85 | u_memcmpCodePointOrder | |
| 86 | u_memcpy | |
| 87 | u_memmove | |
| 88 | u_memrchr | |
| 89 | u_memrchr32 | |
| 90 | u_memset | |
| 91 | u_parseMessage | |
| 92 | u_parseMessageWithError | |
| 93 | u_setMemoryFunctions | |
| 94 | u_shapeArabic | |
| 95 | u_strCaseCompare | |
| 96 | u_strCompare | |
| 97 | u_strCompareIter | |
| 98 | u_strFindFirst | |
| 99 | u_strFindLast | |
| 100 | u_strFoldCase | |
| 101 | u_strFromJavaModifiedUTF8WithSub | |
| 102 | u_strFromUTF32 | |
| 103 | u_strFromUTF32WithSub | |
| 104 | u_strFromUTF8 | |
| 105 | u_strFromUTF8Lenient | |
| 106 | u_strFromUTF8WithSub | |
| 107 | u_strFromWCS | |
| 108 | u_strHasMoreChar32Than | |
| 109 | u_strToJavaModifiedUTF8 | |
| 110 | u_strToLower | |
| 111 | u_strToTitle | |
| 112 | u_strToUTF32 | |
| 113 | u_strToUTF32WithSub | |
| 114 | u_strToUTF8 | |
| 115 | u_strToUTF8WithSub | |
| 116 | u_strToUpper | |
| 117 | u_strToWCS | |
| 118 | u_strcasecmp | |
| 119 | u_strcat | |
| 120 | u_strchr | |
| 121 | u_strchr32 | |
| 122 | u_strcmp | |
| 123 | u_strcmpCodePointOrder | |
| 124 | u_strcpy | |
| 125 | u_strcspn | |
| 126 | u_strlen | |
| 127 | u_strncasecmp | |
| 128 | u_strncat | |
| 129 | u_strncmp | |
| 130 | u_strncmpCodePointOrder | |
| 131 | u_strncpy | |
| 132 | u_strpbrk | |
| 133 | u_strrchr | |
| 134 | u_strrchr32 | |
| 135 | u_strrstr | |
| 136 | u_strspn | |
| 137 | u_strstr | |
| 138 | u_strtok_r | |
| 139 | u_tolower | |
| 140 | u_totitle | |
| 141 | u_toupper | |
| 142 | u_uastrcpy | |
| 143 | u_uastrncpy | |
| 144 | u_unescape | |
| 145 | u_unescapeAt | |
| 146 | u_versionFromString | |
| 147 | u_versionFromUString | |
| 148 | u_versionToString | |
| 149 | u_vformatMessage | |
| 150 | u_vformatMessageWithError | |
| 151 | u_vparseMessage | |
| 152 | u_vparseMessageWithError | |
| 153 | ubidi_close | |
| 154 | ubidi_countParagraphs | |
| 155 | ubidi_countRuns | |
| 156 | ubidi_getBaseDirection | |
| 157 | ubidi_getClassCallback | |
| 158 | ubidi_getCustomizedClass | |
| 159 | ubidi_getDirection | |
| 160 | ubidi_getLength | |
| 161 | ubidi_getLevelAt | |
| 162 | ubidi_getLevels | |
| 163 | ubidi_getLogicalIndex | |
| 164 | ubidi_getLogicalMap | |
| 165 | ubidi_getLogicalRun | |
| 166 | ubidi_getParaLevel | |
| 167 | ubidi_getParagraph | |
| 168 | ubidi_getParagraphByIndex | |
| 169 | ubidi_getProcessedLength | |
| 170 | ubidi_getReorderingMode | |
| 171 | ubidi_getReorderingOptions | |
| 172 | ubidi_getResultLength | |
| 173 | ubidi_getText | |
| 174 | ubidi_getVisualIndex | |
| 175 | ubidi_getVisualMap | |
| 176 | ubidi_getVisualRun | |
| 177 | ubidi_invertMap | |
| 178 | ubidi_isInverse | |
| 179 | ubidi_isOrderParagraphsLTR | |
| 180 | ubidi_open | |
| 181 | ubidi_openSized | |
| 182 | ubidi_orderParagraphsLTR | |
| 183 | ubidi_reorderLogical | |
| 184 | ubidi_reorderVisual | |
| 185 | ubidi_setClassCallback | |
| 186 | ubidi_setContext | |
| 187 | ubidi_setInverse | |
| 188 | ubidi_setLine | |
| 189 | ubidi_setPara | |
| 190 | ubidi_setReorderingMode | |
| 191 | ubidi_setReorderingOptions | |
| 192 | ubidi_writeReordered | |
| 193 | ubidi_writeReverse | |
| 194 | ubiditransform_close | |
| 195 | ubiditransform_open | |
| 196 | ubiditransform_transform | |
| 197 | ublock_getCode | |
| 198 | ubrk_close | |
| 199 | ubrk_countAvailable | |
| 200 | ubrk_current | |
| 201 | ubrk_first | |
| 202 | ubrk_following | |
| 203 | ubrk_getAvailable | |
| 204 | ubrk_getBinaryRules | |
| 205 | ubrk_getLocaleByType | |
| 206 | ubrk_getRuleStatus | |
| 207 | ubrk_getRuleStatusVec | |
| 208 | ubrk_isBoundary | |
| 209 | ubrk_last | |
| 210 | ubrk_next | |
| 211 | ubrk_open | |
| 212 | ubrk_openBinaryRules | |
| 213 | ubrk_openRules | |
| 214 | ubrk_preceding | |
| 215 | ubrk_previous | |
| 216 | ubrk_refreshUText | |
| 217 | ubrk_safeClone | |
| 218 | ubrk_setText | |
| 219 | ubrk_setUText | |
| 220 | ucal_add | |
| 221 | ucal_clear | |
| 222 | ucal_clearField | |
| 223 | ucal_clone | |
| 224 | ucal_close | |
| 225 | ucal_countAvailable | |
| 226 | ucal_equivalentTo | |
| 227 | ucal_get | |
| 228 | ucal_getAttribute | |
| 229 | ucal_getAvailable | |
| 230 | ucal_getCanonicalTimeZoneID | |
| 231 | ucal_getDSTSavings | |
| 232 | ucal_getDayOfWeekType | |
| 233 | ucal_getDefaultTimeZone | |
| 234 | ucal_getFieldDifference | |
| 235 | ucal_getGregorianChange | |
| 236 | ucal_getKeywordValuesForLocale | |
| 237 | ucal_getLimit | |
| 238 | ucal_getLocaleByType | |
| 239 | ucal_getMillis | |
| 240 | ucal_getNow | |
| 241 | ucal_getTZDataVersion | |
| 242 | ucal_getTimeZoneDisplayName | |
| 243 | ucal_getTimeZoneID | |
| 244 | ucal_getTimeZoneIDForWindowsID | |
| 245 | ucal_getTimeZoneTransitionDate | |
| 246 | ucal_getType | |
| 247 | ucal_getWeekendTransition | |
| 248 | ucal_getWindowsTimeZoneID | |
| 249 | ucal_inDaylightTime | |
| 250 | ucal_isSet | |
| 251 | ucal_isWeekend | |
| 252 | ucal_open | |
| 253 | ucal_openCountryTimeZones | |
| 254 | ucal_openTimeZoneIDEnumeration | |
| 255 | ucal_openTimeZones | |
| 256 | ucal_roll | |
| 257 | ucal_set | |
| 258 | ucal_setAttribute | |
| 259 | ucal_setDate | |
| 260 | ucal_setDateTime | |
| 261 | ucal_setDefaultTimeZone | |
| 262 | ucal_setGregorianChange | |
| 263 | ucal_setMillis | |
| 264 | ucal_setTimeZone | |
| 265 | ucasemap_close | |
| 266 | ucasemap_getBreakIterator | |
| 267 | ucasemap_getLocale | |
| 268 | ucasemap_getOptions | |
| 269 | ucasemap_open | |
| 270 | ucasemap_setBreakIterator | |
| 271 | ucasemap_setLocale | |
| 272 | ucasemap_setOptions | |
| 273 | ucasemap_toTitle | |
| 274 | ucasemap_utf8FoldCase | |
| 275 | ucasemap_utf8ToLower | |
| 276 | ucasemap_utf8ToTitle | |
| 277 | ucasemap_utf8ToUpper | |
| 278 | ucnv_cbFromUWriteBytes | |
| 279 | ucnv_cbFromUWriteSub | |
| 280 | ucnv_cbFromUWriteUChars | |
| 281 | ucnv_cbToUWriteSub | |
| 282 | ucnv_cbToUWriteUChars | |
| 283 | ucnv_close | |
| 284 | ucnv_compareNames | |
| 285 | ucnv_convert | |
| 286 | ucnv_convertEx | |
| 287 | ucnv_countAliases | |
| 288 | ucnv_countAvailable | |
| 289 | ucnv_countStandards | |
| 290 | ucnv_detectUnicodeSignature | |
| 291 | ucnv_fixFileSeparator | |
| 292 | ucnv_flushCache | |
| 293 | ucnv_fromAlgorithmic | |
| 294 | ucnv_fromUChars | |
| 295 | ucnv_fromUCountPending | |
| 296 | ucnv_fromUnicode | |
| 297 | ucnv_getAlias | |
| 298 | ucnv_getAliases | |
| 299 | ucnv_getAvailableName | |
| 300 | ucnv_getCCSID | |
| 301 | ucnv_getCanonicalName | |
| 302 | ucnv_getDefaultName | |
| 303 | ucnv_getDisplayName | |
| 304 | ucnv_getFromUCallBack | |
| 305 | ucnv_getInvalidChars | |
| 306 | ucnv_getInvalidUChars | |
| 307 | ucnv_getMaxCharSize | |
| 308 | ucnv_getMinCharSize | |
| 309 | ucnv_getName | |
| 310 | ucnv_getNextUChar | |
| 311 | ucnv_getPlatform | |
| 312 | ucnv_getStandard | |
| 313 | ucnv_getStandardName | |
| 314 | ucnv_getStarters | |
| 315 | ucnv_getSubstChars | |
| 316 | ucnv_getToUCallBack | |
| 317 | ucnv_getType | |
| 318 | ucnv_getUnicodeSet | |
| 319 | ucnv_isAmbiguous | |
| 320 | ucnv_isFixedWidth | |
| 321 | ucnv_open | |
| 322 | ucnv_openAllNames | |
| 323 | ucnv_openCCSID | |
| 324 | ucnv_openPackage | |
| 325 | ucnv_openStandardNames | |
| 326 | ucnv_openU | |
| 327 | ucnv_reset | |
| 328 | ucnv_resetFromUnicode | |
| 329 | ucnv_resetToUnicode | |
| 330 | ucnv_safeClone | |
| 331 | ucnv_setDefaultName | |
| 332 | ucnv_setFallback | |
| 333 | ucnv_setFromUCallBack | |
| 334 | ucnv_setSubstChars | |
| 335 | ucnv_setSubstString | |
| 336 | ucnv_setToUCallBack | |
| 337 | ucnv_toAlgorithmic | |
| 338 | ucnv_toUChars | |
| 339 | ucnv_toUCountPending | |
| 340 | ucnv_toUnicode | |
| 341 | ucnv_usesFallback | |
| 342 | ucnvsel_close | |
| 343 | ucnvsel_open | |
| 344 | ucnvsel_openFromSerialized | |
| 345 | ucnvsel_selectForString | |
| 346 | ucnvsel_selectForUTF8 | |
| 347 | ucnvsel_serialize | |
| 348 | ucol_cloneBinary | |
| 349 | ucol_close | |
| 350 | ucol_closeElements | |
| 351 | ucol_countAvailable | |
| 352 | ucol_equal | |
| 353 | ucol_getAttribute | |
| 354 | ucol_getAvailable | |
| 355 | ucol_getBound | |
| 356 | ucol_getContractionsAndExpansions | |
| 357 | ucol_getDisplayName | |
| 358 | ucol_getEquivalentReorderCodes | |
| 359 | ucol_getFunctionalEquivalent | |
| 360 | ucol_getKeywordValues | |
| 361 | ucol_getKeywordValuesForLocale | |
| 362 | ucol_getKeywords | |
| 363 | ucol_getLocaleByType | |
| 364 | ucol_getMaxExpansion | |
| 365 | ucol_getMaxVariable | |
| 366 | ucol_getOffset | |
| 367 | ucol_getReorderCodes | |
| 368 | ucol_getRules | |
| 369 | ucol_getRulesEx | |
| 370 | ucol_getSortKey | |
| 371 | ucol_getStrength | |
| 372 | ucol_getTailoredSet | |
| 373 | ucol_getUCAVersion | |
| 374 | ucol_getVariableTop | |
| 375 | ucol_getVersion | |
| 376 | ucol_greater | |
| 377 | ucol_greaterOrEqual | |
| 378 | ucol_keyHashCode | |
| 379 | ucol_mergeSortkeys | |
| 380 | ucol_next | |
| 381 | ucol_nextSortKeyPart | |
| 382 | ucol_open | |
| 383 | ucol_openAvailableLocales | |
| 384 | ucol_openBinary | |
| 385 | ucol_openElements | |
| 386 | ucol_openRules | |
| 387 | ucol_previous | |
| 388 | ucol_primaryOrder | |
| 389 | ucol_reset | |
| 390 | ucol_safeClone | |
| 391 | ucol_secondaryOrder | |
| 392 | ucol_setAttribute | |
| 393 | ucol_setMaxVariable | |
| 394 | ucol_setOffset | |
| 395 | ucol_setReorderCodes | |
| 396 | ucol_setStrength | |
| 397 | ucol_setText | |
| 398 | ucol_strcoll | |
| 399 | ucol_strcollIter | |
| 400 | ucol_strcollUTF8 | |
| 401 | ucol_tertiaryOrder | |
| 402 | ucsdet_close | |
| 403 | ucsdet_detect | |
| 404 | ucsdet_detectAll | |
| 405 | ucsdet_enableInputFilter | |
| 406 | ucsdet_getAllDetectableCharsets | |
| 407 | ucsdet_getConfidence | |
| 408 | ucsdet_getLanguage | |
| 409 | ucsdet_getName | |
| 410 | ucsdet_getUChars | |
| 411 | ucsdet_isInputFilterEnabled | |
| 412 | ucsdet_open | |
| 413 | ucsdet_setDeclaredEncoding | |
| 414 | ucsdet_setText | |
| 415 | ucurr_countCurrencies | |
| 416 | ucurr_forLocale | |
| 417 | ucurr_forLocaleAndDate | |
| 418 | ucurr_getDefaultFractionDigits | |
| 419 | ucurr_getDefaultFractionDigitsForUsage | |
| 420 | ucurr_getKeywordValuesForLocale | |
| 421 | ucurr_getName | |
| 422 | ucurr_getNumericCode | |
| 423 | ucurr_getPluralName | |
| 424 | ucurr_getRoundingIncrement | |
| 425 | ucurr_getRoundingIncrementForUsage | |
| 426 | ucurr_isAvailable | |
| 427 | ucurr_openISOCurrencies | |
| 428 | ucurr_register | |
| 429 | ucurr_unregister | |
| 430 | udat_adoptNumberFormat | |
| 431 | udat_adoptNumberFormatForFields | |
| 432 | udat_applyPattern | |
| 433 | udat_clone | |
| 434 | udat_close | |
| 435 | udat_countAvailable | |
| 436 | udat_countSymbols | |
| 437 | udat_format | |
| 438 | udat_formatCalendar | |
| 439 | udat_formatCalendarForFields | |
| 440 | udat_formatForFields | |
| 441 | udat_get2DigitYearStart | |
| 442 | udat_getAvailable | |
| 443 | udat_getBooleanAttribute | |
| 444 | udat_getCalendar | |
| 445 | udat_getContext | |
| 446 | udat_getLocaleByType | |
| 447 | udat_getNumberFormat | |
| 448 | udat_getNumberFormatForField | |
| 449 | udat_getSymbols | |
| 450 | udat_isLenient | |
| 451 | udat_open | |
| 452 | udat_parse | |
| 453 | udat_parseCalendar | |
| 454 | udat_set2DigitYearStart | |
| 455 | udat_setBooleanAttribute | |
| 456 | udat_setCalendar | |
| 457 | udat_setContext | |
| 458 | udat_setLenient | |
| 459 | udat_setNumberFormat | |
| 460 | udat_setSymbols | |
| 461 | udat_toCalendarDateField | |
| 462 | udat_toPattern | |
| 463 | udatpg_addPattern | |
| 464 | udatpg_clone | |
| 465 | udatpg_close | |
| 466 | udatpg_getAppendItemFormat | |
| 467 | udatpg_getAppendItemName | |
| 468 | udatpg_getBaseSkeleton | |
| 469 | udatpg_getBestPattern | |
| 470 | udatpg_getBestPatternWithOptions | |
| 471 | udatpg_getDateTimeFormat | |
| 472 | udatpg_getDecimal | |
| 473 | udatpg_getFieldDisplayName | |
| 474 | udatpg_getPatternForSkeleton | |
| 475 | udatpg_getSkeleton | |
| 476 | udatpg_open | |
| 477 | udatpg_openBaseSkeletons | |
| 478 | udatpg_openEmpty | |
| 479 | udatpg_openSkeletons | |
| 480 | udatpg_replaceFieldTypes | |
| 481 | udatpg_replaceFieldTypesWithOptions | |
| 482 | udatpg_setAppendItemFormat | |
| 483 | udatpg_setAppendItemName | |
| 484 | udatpg_setDateTimeFormat | |
| 485 | udatpg_setDecimal | |
| 486 | udtitvfmt_close | |
| 487 | udtitvfmt_format | |
| 488 | udtitvfmt_open | |
| 489 | uenum_close | |
| 490 | uenum_count | |
| 491 | uenum_next | |
| 492 | uenum_openCharStringsEnumeration | |
| 493 | uenum_openUCharStringsEnumeration | |
| 494 | uenum_reset | |
| 495 | uenum_unext | |
| 496 | ufieldpositer_close | |
| 497 | ufieldpositer_next | |
| 498 | ufieldpositer_open | |
| 499 | ufmt_close | |
| 500 | ufmt_getArrayItemByIndex | |
| 501 | ufmt_getArrayLength | |
| 502 | ufmt_getDate | |
| 503 | ufmt_getDecNumChars | |
| 504 | ufmt_getDouble | |
| 505 | ufmt_getInt64 | |
| 506 | ufmt_getLong | |
| 507 | ufmt_getObject | |
| 508 | ufmt_getType | |
| 509 | ufmt_getUChars | |
| 510 | ufmt_isNumeric | |
| 511 | ufmt_open | |
| 512 | ugender_getInstance | |
| 513 | ugender_getListGender | |
| 514 | uidna_close | |
| 515 | uidna_labelToASCII | |
| 516 | uidna_labelToASCII_UTF8 | |
| 517 | uidna_labelToUnicode | |
| 518 | uidna_labelToUnicodeUTF8 | |
| 519 | uidna_nameToASCII | |
| 520 | uidna_nameToASCII_UTF8 | |
| 521 | uidna_nameToUnicode | |
| 522 | uidna_nameToUnicodeUTF8 | |
| 523 | uidna_openUTS46 | |
| 524 | uiter_current32 | |
| 525 | uiter_getState | |
| 526 | uiter_next32 | |
| 527 | uiter_previous32 | |
| 528 | uiter_setState | |
| 529 | uiter_setString | |
| 530 | uiter_setUTF16BE | |
| 531 | uiter_setUTF8 | |
| 532 | uldn_close | |
| 533 | uldn_getContext | |
| 534 | uldn_getDialectHandling | |
| 535 | uldn_getLocale | |
| 536 | uldn_keyDisplayName | |
| 537 | uldn_keyValueDisplayName | |
| 538 | uldn_languageDisplayName | |
| 539 | uldn_localeDisplayName | |
| 540 | uldn_open | |
| 541 | uldn_openForContext | |
| 542 | uldn_regionDisplayName | |
| 543 | uldn_scriptCodeDisplayName | |
| 544 | uldn_scriptDisplayName | |
| 545 | uldn_variantDisplayName | |
| 546 | ulistfmt_close | |
| 547 | ulistfmt_format | |
| 548 | ulistfmt_open | |
| 549 | uloc_acceptLanguage | |
| 550 | uloc_acceptLanguageFromHTTP | |
| 551 | uloc_addLikelySubtags | |
| 552 | uloc_canonicalize | |
| 553 | uloc_countAvailable | |
| 554 | uloc_forLanguageTag | |
| 555 | uloc_getAvailable | |
| 556 | uloc_getBaseName | |
| 557 | uloc_getCharacterOrientation | |
| 558 | uloc_getCountry | |
| 559 | uloc_getDefault | |
| 560 | uloc_getDisplayCountry | |
| 561 | uloc_getDisplayKeyword | |
| 562 | uloc_getDisplayKeywordValue | |
| 563 | uloc_getDisplayLanguage | |
| 564 | uloc_getDisplayName | |
| 565 | uloc_getDisplayScript | |
| 566 | uloc_getDisplayVariant | |
| 567 | uloc_getISO3Country | |
| 568 | uloc_getISO3Language | |
| 569 | uloc_getISOCountries | |
| 570 | uloc_getISOLanguages | |
| 571 | uloc_getKeywordValue | |
| 572 | uloc_getLCID | |
| 573 | uloc_getLanguage | |
| 574 | uloc_getLineOrientation | |
| 575 | uloc_getLocaleForLCID | |
| 576 | uloc_getName | |
| 577 | uloc_getParent | |
| 578 | uloc_getScript | |
| 579 | uloc_getVariant | |
| 580 | uloc_isRightToLeft | |
| 581 | uloc_minimizeSubtags | |
| 582 | uloc_openKeywords | |
| 583 | uloc_setDefault | |
| 584 | uloc_setKeywordValue | |
| 585 | uloc_toLanguageTag | |
| 586 | uloc_toLegacyKey | |
| 587 | uloc_toLegacyType | |
| 588 | uloc_toUnicodeLocaleKey | |
| 589 | uloc_toUnicodeLocaleType | |
| 590 | ulocdata_close | |
| 591 | ulocdata_getCLDRVersion | |
| 592 | ulocdata_getDelimiter | |
| 593 | ulocdata_getExemplarSet | |
| 594 | ulocdata_getLocaleDisplayPattern | |
| 595 | ulocdata_getLocaleSeparator | |
| 596 | ulocdata_getMeasurementSystem | |
| 597 | ulocdata_getNoSubstitute | |
| 598 | ulocdata_getPaperSize | |
| 599 | ulocdata_open | |
| 600 | ulocdata_setNoSubstitute | |
| 601 | umsg_applyPattern | |
| 602 | umsg_autoQuoteApostrophe | |
| 603 | umsg_clone | |
| 604 | umsg_close | |
| 605 | umsg_format | |
| 606 | umsg_getLocale | |
| 607 | umsg_open | |
| 608 | umsg_parse | |
| 609 | umsg_setLocale | |
| 610 | umsg_toPattern | |
| 611 | umsg_vformat | |
| 612 | umsg_vparse | |
| 613 | unorm2_append | |
| 614 | unorm2_close | |
| 615 | unorm2_composePair | |
| 616 | unorm2_getCombiningClass | |
| 617 | unorm2_getDecomposition | |
| 618 | unorm2_getInstance | |
| 619 | unorm2_getNFCInstance | |
| 620 | unorm2_getNFDInstance | |
| 621 | unorm2_getNFKCCasefoldInstance | |
| 622 | unorm2_getNFKCInstance | |
| 623 | unorm2_getNFKDInstance | |
| 624 | unorm2_getRawDecomposition | |
| 625 | unorm2_hasBoundaryAfter | |
| 626 | unorm2_hasBoundaryBefore | |
| 627 | unorm2_isInert | |
| 628 | unorm2_isNormalized | |
| 629 | unorm2_normalize | |
| 630 | unorm2_normalizeSecondAndAppend | |
| 631 | unorm2_openFiltered | |
| 632 | unorm2_quickCheck | |
| 633 | unorm2_spanQuickCheckYes | |
| 634 | unorm_compare | |
| 635 | unum_applyPattern | |
| 636 | unum_clone | |
| 637 | unum_close | |
| 638 | unum_countAvailable | |
| 639 | unum_format | |
| 640 | unum_formatDecimal | |
| 641 | unum_formatDouble | |
| 642 | unum_formatDoubleCurrency | |
| 643 | unum_formatDoubleForFields | |
| 644 | unum_formatInt64 | |
| 645 | unum_formatUFormattable | |
| 646 | unum_getAttribute | |
| 647 | unum_getAvailable | |
| 648 | unum_getContext | |
| 649 | unum_getDoubleAttribute | |
| 650 | unum_getLocaleByType | |
| 651 | unum_getSymbol | |
| 652 | unum_getTextAttribute | |
| 653 | unum_open | |
| 654 | unum_parse | |
| 655 | unum_parseDecimal | |
| 656 | unum_parseDouble | |
| 657 | unum_parseDoubleCurrency | |
| 658 | unum_parseInt64 | |
| 659 | unum_parseToUFormattable | |
| 660 | unum_setAttribute | |
| 661 | unum_setContext | |
| 662 | unum_setDoubleAttribute | |
| 663 | unum_setSymbol | |
| 664 | unum_setTextAttribute | |
| 665 | unum_toPattern | |
| 666 | unumf_close | |
| 667 | unumf_closeResult | |
| 668 | unumf_formatDecimal | |
| 669 | unumf_formatDouble | |
| 670 | unumf_formatInt | |
| 671 | unumf_openForSkeletonAndLocale | |
| 672 | unumf_openResult | |
| 673 | unumf_resultGetAllFieldPositions | |
| 674 | unumf_resultNextFieldPosition | |
| 675 | unumf_resultToString | |
| 676 | unumsys_close | |
| 677 | unumsys_getDescription | |
| 678 | unumsys_getName | |
| 679 | unumsys_getRadix | |
| 680 | unumsys_isAlgorithmic | |
| 681 | unumsys_open | |
| 682 | unumsys_openAvailableNames | |
| 683 | unumsys_openByName | |
| 684 | uplrules_close | |
| 685 | uplrules_getKeywords | |
| 686 | uplrules_open | |
| 687 | uplrules_openForType | |
| 688 | uplrules_select | |
| 689 | uregex_appendReplacement | |
| 690 | uregex_appendReplacementUText | |
| 691 | uregex_appendTail | |
| 692 | uregex_appendTailUText | |
| 693 | uregex_clone | |
| 694 | uregex_close | |
| 695 | uregex_end | |
| 696 | uregex_end64 | |
| 697 | uregex_find | |
| 698 | uregex_find64 | |
| 699 | uregex_findNext | |
| 700 | uregex_flags | |
| 701 | uregex_getFindProgressCallback | |
| 702 | uregex_getMatchCallback | |
| 703 | uregex_getStackLimit | |
| 704 | uregex_getText | |
| 705 | uregex_getTimeLimit | |
| 706 | uregex_getUText | |
| 707 | uregex_group | |
| 708 | uregex_groupCount | |
| 709 | uregex_groupNumberFromCName | |
| 710 | uregex_groupNumberFromName | |
| 711 | uregex_groupUText | |
| 712 | uregex_hasAnchoringBounds | |
| 713 | uregex_hasTransparentBounds | |
| 714 | uregex_hitEnd | |
| 715 | uregex_lookingAt | |
| 716 | uregex_lookingAt64 | |
| 717 | uregex_matches | |
| 718 | uregex_matches64 | |
| 719 | uregex_open | |
| 720 | uregex_openC | |
| 721 | uregex_openUText | |
| 722 | uregex_pattern | |
| 723 | uregex_patternUText | |
| 724 | uregex_refreshUText | |
| 725 | uregex_regionEnd | |
| 726 | uregex_regionEnd64 | |
| 727 | uregex_regionStart | |
| 728 | uregex_regionStart64 | |
| 729 | uregex_replaceAll | |
| 730 | uregex_replaceAllUText | |
| 731 | uregex_replaceFirst | |
| 732 | uregex_replaceFirstUText | |
| 733 | uregex_requireEnd | |
| 734 | uregex_reset | |
| 735 | uregex_reset64 | |
| 736 | uregex_setFindProgressCallback | |
| 737 | uregex_setMatchCallback | |
| 738 | uregex_setRegion | |
| 739 | uregex_setRegion64 | |
| 740 | uregex_setRegionAndStart | |
| 741 | uregex_setStackLimit | |
| 742 | uregex_setText | |
| 743 | uregex_setTimeLimit | |
| 744 | uregex_setUText | |
| 745 | uregex_split | |
| 746 | uregex_splitUText | |
| 747 | uregex_start | |
| 748 | uregex_start64 | |
| 749 | uregex_useAnchoringBounds | |
| 750 | uregex_useTransparentBounds | |
| 751 | uregion_areEqual | |
| 752 | uregion_contains | |
| 753 | uregion_getAvailable | |
| 754 | uregion_getContainedRegions | |
| 755 | uregion_getContainedRegionsOfType | |
| 756 | uregion_getContainingRegion | |
| 757 | uregion_getContainingRegionOfType | |
| 758 | uregion_getNumericCode | |
| 759 | uregion_getPreferredValues | |
| 760 | uregion_getRegionCode | |
| 761 | uregion_getRegionFromCode | |
| 762 | uregion_getRegionFromNumericCode | |
| 763 | uregion_getType | |
| 764 | ureldatefmt_close | |
| 765 | ureldatefmt_combineDateAndTime | |
| 766 | ureldatefmt_format | |
| 767 | ureldatefmt_formatNumeric | |
| 768 | ureldatefmt_open | |
| 769 | ures_close | |
| 770 | ures_getBinary | |
| 771 | ures_getByIndex | |
| 772 | ures_getByKey | |
| 773 | ures_getInt | |
| 774 | ures_getIntVector | |
| 775 | ures_getKey | |
| 776 | ures_getLocaleByType | |
| 777 | ures_getNextResource | |
| 778 | ures_getNextString | |
| 779 | ures_getSize | |
| 780 | ures_getString | |
| 781 | ures_getStringByIndex | |
| 782 | ures_getStringByKey | |
| 783 | ures_getType | |
| 784 | ures_getUInt | |
| 785 | ures_getUTF8String | |
| 786 | ures_getUTF8StringByIndex | |
| 787 | ures_getUTF8StringByKey | |
| 788 | ures_getVersion | |
| 789 | ures_hasNext | |
| 790 | ures_open | |
| 791 | ures_openAvailableLocales | |
| 792 | ures_openDirect | |
| 793 | ures_openU | |
| 794 | ures_resetIterator | |
| 795 | uscript_breaksBetweenLetters | |
| 796 | uscript_getCode | |
| 797 | uscript_getName | |
| 798 | uscript_getSampleString | |
| 799 | uscript_getScript | |
| 800 | uscript_getScriptExtensions | |
| 801 | uscript_getShortName | |
| 802 | uscript_getUsage | |
| 803 | uscript_hasScript | |
| 804 | uscript_isCased | |
| 805 | uscript_isRightToLeft | |
| 806 | usearch_close | |
| 807 | usearch_first | |
| 808 | usearch_following | |
| 809 | usearch_getAttribute | |
| 810 | usearch_getBreakIterator | |
| 811 | usearch_getCollator | |
| 812 | usearch_getMatchedLength | |
| 813 | usearch_getMatchedStart | |
| 814 | usearch_getMatchedText | |
| 815 | usearch_getOffset | |
| 816 | usearch_getPattern | |
| 817 | usearch_getText | |
| 818 | usearch_last | |
| 819 | usearch_next | |
| 820 | usearch_open | |
| 821 | usearch_openFromCollator | |
| 822 | usearch_preceding | |
| 823 | usearch_previous | |
| 824 | usearch_reset | |
| 825 | usearch_setAttribute | |
| 826 | usearch_setBreakIterator | |
| 827 | usearch_setCollator | |
| 828 | usearch_setOffset | |
| 829 | usearch_setPattern | |
| 830 | usearch_setText | |
| 831 | uset_add | |
| 832 | uset_addAll | |
| 833 | uset_addAllCodePoints | |
| 834 | uset_addRange | |
| 835 | uset_addString | |
| 836 | uset_applyIntPropertyValue | |
| 837 | uset_applyPattern | |
| 838 | uset_applyPropertyAlias | |
| 839 | uset_charAt | |
| 840 | uset_clear | |
| 841 | uset_clone | |
| 842 | uset_cloneAsThawed | |
| 843 | uset_close | |
| 844 | uset_closeOver | |
| 845 | uset_compact | |
| 846 | uset_complement | |
| 847 | uset_complementAll | |
| 848 | uset_contains | |
| 849 | uset_containsAll | |
| 850 | uset_containsAllCodePoints | |
| 851 | uset_containsNone | |
| 852 | uset_containsRange | |
| 853 | uset_containsSome | |
| 854 | uset_containsString | |
| 855 | uset_equals | |
| 856 | uset_freeze | |
| 857 | uset_getItem | |
| 858 | uset_getItemCount | |
| 859 | uset_getSerializedRange | |
| 860 | uset_getSerializedRangeCount | |
| 861 | uset_getSerializedSet | |
| 862 | uset_indexOf | |
| 863 | uset_isEmpty | |
| 864 | uset_isFrozen | |
| 865 | uset_open | |
| 866 | uset_openEmpty | |
| 867 | uset_openPattern | |
| 868 | uset_openPatternOptions | |
| 869 | uset_remove | |
| 870 | uset_removeAll | |
| 871 | uset_removeAllStrings | |
| 872 | uset_removeRange | |
| 873 | uset_removeString | |
| 874 | uset_resemblesPattern | |
| 875 | uset_retain | |
| 876 | uset_retainAll | |
| 877 | uset_serialize | |
| 878 | uset_serializedContains | |
| 879 | uset_set | |
| 880 | uset_setSerializedToOne | |
| 881 | uset_size | |
| 882 | uset_span | |
| 883 | uset_spanBack | |
| 884 | uset_spanBackUTF8 | |
| 885 | uset_spanUTF8 | |
| 886 | uset_toPattern | |
| 887 | uspoof_areConfusable | |
| 888 | uspoof_areConfusableUTF8 | |
| 889 | uspoof_check | |
| 890 | uspoof_check2 | |
| 891 | uspoof_check2UTF8 | |
| 892 | uspoof_checkUTF8 | |
| 893 | uspoof_clone | |
| 894 | uspoof_close | |
| 895 | uspoof_closeCheckResult | |
| 896 | uspoof_getAllowedChars | |
| 897 | uspoof_getAllowedLocales | |
| 898 | uspoof_getCheckResultChecks | |
| 899 | uspoof_getCheckResultNumerics | |
| 900 | uspoof_getCheckResultRestrictionLevel | |
| 901 | uspoof_getChecks | |
| 902 | uspoof_getInclusionSet | |
| 903 | uspoof_getRecommendedSet | |
| 904 | uspoof_getRestrictionLevel | |
| 905 | uspoof_getSkeleton | |
| 906 | uspoof_getSkeletonUTF8 | |
| 907 | uspoof_open | |
| 908 | uspoof_openCheckResult | |
| 909 | uspoof_openFromSerialized | |
| 910 | uspoof_openFromSource | |
| 911 | uspoof_serialize | |
| 912 | uspoof_setAllowedChars | |
| 913 | uspoof_setAllowedLocales | |
| 914 | uspoof_setChecks | |
| 915 | uspoof_setRestrictionLevel | |
| 916 | usprep_close | |
| 917 | usprep_open | |
| 918 | usprep_openByType | |
| 919 | usprep_prepare | |
| 920 | utext_char32At | |
| 921 | utext_clone | |
| 922 | utext_close | |
| 923 | utext_copy | |
| 924 | utext_current32 | |
| 925 | utext_equals | |
| 926 | utext_extract | |
| 927 | utext_freeze | |
| 928 | utext_getNativeIndex | |
| 929 | utext_getPreviousNativeIndex | |
| 930 | utext_hasMetaData | |
| 931 | utext_isLengthExpensive | |
| 932 | utext_isWritable | |
| 933 | utext_moveIndex32 | |
| 934 | utext_nativeLength | |
| 935 | utext_next32 | |
| 936 | utext_next32From | |
| 937 | utext_openUChars | |
| 938 | utext_openUTF8 | |
| 939 | utext_previous32 | |
| 940 | utext_previous32From | |
| 941 | utext_replace | |
| 942 | utext_setNativeIndex | |
| 943 | utext_setup | |
| 944 | utf8_appendCharSafeBody | |
| 945 | utf8_back1SafeBody | |
| 946 | utf8_nextCharSafeBody | |
| 947 | utf8_prevCharSafeBody | |
| 948 | utmscale_fromInt64 | |
| 949 | utmscale_getTimeScaleValue | |
| 950 | utmscale_toInt64 | |
| 951 | utrace_format | |
| 952 | utrace_functionName | |
| 953 | utrace_getFunctions | |
| 954 | utrace_getLevel | |
| 955 | utrace_setFunctions | |
| 956 | utrace_setLevel | |
| 957 | utrace_vformat | |
| 958 | utrans_clone | |
| 959 | utrans_close | |
| 960 | utrans_countAvailableIDs | |
| 961 | utrans_getSourceSet | |
| 962 | utrans_getUnicodeID | |
| 963 | utrans_openIDs | |
| 964 | utrans_openInverse | |
| 965 | utrans_openU | |
| 966 | utrans_register | |
| 967 | utrans_setFilter | |
| 968 | utrans_toRules | |
| 969 | utrans_trans | |
| 970 | utrans_transIncremental | |
| 971 | utrans_transIncrementalUChars | |
| 972 | utrans_transUChars | |
| 973 | utrans_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 | ; | |
| 7 | LIBRARY IERNONCE.dll | |
| 8 | EXPORTS | |
| 9 | InitCallback | |
| 10 | RunOnceExProcess |
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 | ; | |
| 6 | LIBRARY "imagehlp.dll" | |
| 7 | EXPORTS | |
| 8 | RemoveRelocations | |
| 9 | BindImage | |
| 10 | BindImageEx | |
| 11 | CheckSumMappedFile | |
| 12 | EnumerateLoadedModules | |
| 13 | EnumerateLoadedModules64 | |
| 14 | EnumerateLoadedModulesEx | |
| 15 | EnumerateLoadedModulesExW | |
| 16 | EnumerateLoadedModulesW64 | |
| 17 | FindDebugInfoFile | |
| 18 | FindDebugInfoFileEx | |
| 19 | FindExecutableImage | |
| 20 | FindExecutableImageEx | |
| 21 | FindFileInPath | |
| 22 | FindFileInSearchPath | |
| 23 | GetImageConfigInformation | |
| 24 | GetImageUnusedHeaderBytes | |
| 25 | GetSymLoadError | |
| 26 | GetTimestampForLoadedLibrary | |
| 27 | ImageAddCertificate | |
| 28 | ImageDirectoryEntryToData | |
| 29 | ImageDirectoryEntryToDataEx | |
| 30 | ImageEnumerateCertificates | |
| 31 | ImageGetCertificateData | |
| 32 | ImageGetCertificateHeader | |
| 33 | ImageGetDigestStream | |
| 34 | ImageLoad | |
| 35 | ImageNtHeader | |
| 36 | ImageRemoveCertificate | |
| 37 | ImageRvaToSection | |
| 38 | ImageRvaToVa | |
| 39 | ImageUnload | |
| 40 | ImagehlpApiVersion | |
| 41 | ImagehlpApiVersionEx | |
| 42 | MakeSureDirectoryPathExists | |
| 43 | MapAndLoad | |
| 44 | MapDebugInformation | |
| 45 | MapFileAndCheckSumA | |
| 46 | MapFileAndCheckSumW | |
| 47 | ReBaseImage | |
| 48 | ReBaseImage64 | |
| 49 | RemoveInvalidModuleList | |
| 50 | RemovePrivateCvSymbolic | |
| 51 | RemovePrivateCvSymbolicEx | |
| 52 | ReportSymbolLoadSummary | |
| 53 | SearchTreeForFile | |
| 54 | SetCheckUserInterruptShared | |
| 55 | SetImageConfigInformation | |
| 56 | SetSymLoadError | |
| 57 | SplitSymbols | |
| 58 | StackWalk | |
| 59 | StackWalk64 | |
| 60 | StackWalkEx | |
| 61 | SymAddrIncludeInlineTrace | |
| 62 | SymCleanup | |
| 63 | SymCompareInlineTrace | |
| 64 | SymEnumSym | |
| 65 | SymEnumSymbols | |
| 66 | SymEnumSymbolsEx | |
| 67 | SymEnumSymbolsExW | |
| 68 | SymEnumSymbolsForAddr | |
| 69 | SymEnumTypes | |
| 70 | SymEnumTypesByName | |
| 71 | SymEnumTypesByNameW | |
| 72 | SymEnumTypesW | |
| 73 | SymEnumerateModules | |
| 74 | SymEnumerateModules64 | |
| 75 | SymEnumerateSymbols | |
| 76 | SymEnumerateSymbols64 | |
| 77 | SymEnumerateSymbolsW | |
| 78 | SymEnumerateSymbolsW64 | |
| 79 | SymFindFileInPath | |
| 80 | SymFindFileInPathW | |
| 81 | SymFromAddr | |
| 82 | SymFromInlineContext | |
| 83 | SymFromInlineContextW | |
| 84 | SymFromName | |
| 85 | SymFunctionTableAccess | |
| 86 | SymFunctionTableAccess64 | |
| 87 | SymFunctionTableAccess64AccessRoutines | |
| 88 | SymGetLineFromAddr | |
| 89 | SymGetLineFromAddr64 | |
| 90 | SymGetLineFromInlineContext | |
| 91 | SymGetLineFromInlineContextW | |
| 92 | SymGetLineFromName | |
| 93 | SymGetLineFromName64 | |
| 94 | SymGetLineNext | |
| 95 | SymGetLineNext64 | |
| 96 | SymGetLinePrev | |
| 97 | SymGetLinePrev64 | |
| 98 | SymGetModuleBase | |
| 99 | SymGetModuleBase64 | |
| 100 | SymGetModuleInfo | |
| 101 | SymGetModuleInfo64 | |
| 102 | SymGetModuleInfoW | |
| 103 | SymGetModuleInfoW64 | |
| 104 | SymGetOptions | |
| 105 | SymGetSearchPath | |
| 106 | SymGetSourceFileFromTokenW | |
| 107 | SymGetSourceFileTokenW | |
| 108 | SymGetSourceVarFromTokenW | |
| 109 | SymGetSymFromAddr | |
| 110 | SymGetSymFromAddr64 | |
| 111 | SymGetSymFromName | |
| 112 | SymGetSymFromName64 | |
| 113 | SymGetSymNext | |
| 114 | SymGetSymNext64 | |
| 115 | SymGetSymPrev | |
| 116 | SymGetSymPrev64 | |
| 117 | SymGetSymbolFile | |
| 118 | SymGetSymbolFileW | |
| 119 | SymGetTypeFromName | |
| 120 | SymGetTypeFromNameW | |
| 121 | SymGetTypeInfo | |
| 122 | SymGetTypeInfoEx | |
| 123 | SymInitialize | |
| 124 | SymLoadModule | |
| 125 | SymLoadModule64 | |
| 126 | SymMatchFileName | |
| 127 | SymMatchFileNameW | |
| 128 | SymMatchString | |
| 129 | SymMatchStringA | |
| 130 | SymMatchStringW | |
| 131 | SymQueryInlineTrace | |
| 132 | SymRegisterCallback | |
| 133 | SymRegisterCallback64 | |
| 134 | SymRegisterFunctionEntryCallback | |
| 135 | SymRegisterFunctionEntryCallback64 | |
| 136 | SymSetContext | |
| 137 | SymSetOptions | |
| 138 | SymSetScopeFromAddr | |
| 139 | SymSetScopeFromIndex | |
| 140 | SymSetScopeFromInlineContext | |
| 141 | SymSetSearchPath | |
| 142 | SymSrvGetFileIndexString | |
| 143 | SymSrvGetFileIndexStringW | |
| 144 | SymSrvGetFileIndexes | |
| 145 | SymSrvGetFileIndexesW | |
| 146 | SymUnDName | |
| 147 | SymUnDName64 | |
| 148 | SymUnloadModule | |
| 149 | SymUnloadModule64 | |
| 150 | TouchFileTimes | |
| 151 | UnDecorateSymbolName | |
| 152 | UnMapAndLoad | |
| 153 | UnmapDebugInformation | |
| 154 | UpdateDebugInfoFile | |
| 155 | UpdateDebugInfoFileEx |
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 | ; | |
| 6 | LIBRARY "ImgUtil.dll" | |
| 7 | EXPORTS | |
| 8 | ComputeInvCMAP | |
| 9 | CreateDDrawSurfaceOnDIB | |
| 10 | CreateMIMEMap | |
| 11 | DecodeImage | |
| 12 | DecodeImageEx | |
| 13 | DitherTo8 | |
| 14 | GetMaxMIMEIDBytes | |
| 15 | IdentifyMIMEType | |
| 16 | SniffStream |
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 | ; | |
| 6 | LIBRARY "INETCOMM.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | RichMimeEdit_CreateInstance | |
| 10 | CreateCommunityTransport | |
| 11 | CreateIMAPTransport | |
| 12 | CreateIMAPTransport2 | |
| 13 | CreateNNTPTransport | |
| 14 | CreatePOP3Transport | |
| 15 | CreateRASTransport | |
| 16 | CreateRangeList | |
| 17 | CreateSMTPTransport | |
| 18 | EssContentHintDecodeEx | |
| 19 | EssContentHintEncodeEx | |
| 20 | EssKeyExchPreferenceDecodeEx | |
| 21 | EssKeyExchPreferenceEncodeEx | |
| 22 | EssMLHistoryDecodeEx | |
| 23 | EssMLHistoryEncodeEx | |
| 24 | EssReceiptDecodeEx | |
| 25 | EssReceiptEncodeEx | |
| 26 | EssReceiptRequestDecodeEx | |
| 27 | EssReceiptRequestEncodeEx | |
| 28 | EssSecurityLabelDecodeEx | |
| 29 | EssSecurityLabelEncodeEx | |
| 30 | EssSignCertificateDecodeEx | |
| 31 | EssSignCertificateEncodeEx | |
| 32 | GetDllMajorVersion | |
| 33 | HrAthGetFileName | |
| 34 | HrAthGetFileNameW | |
| 35 | HrAttachDataFromBodyPart | |
| 36 | HrAttachDataFromFile | |
| 37 | HrCreateDisplayNameWithSizeForFile | |
| 38 | HrDoAttachmentVerb | |
| 39 | HrFreeAttachData | |
| 40 | HrGetAttachIcon | |
| 41 | HrGetAttachIconByFile | |
| 42 | HrGetDisplayNameWithSizeForFile | |
| 43 | HrGetLastOpenFileDirectory | |
| 44 | HrGetLastOpenFileDirectoryW | |
| 45 | HrSaveAttachToFile | |
| 46 | HrSaveAttachmentAs | |
| 47 | MimeEditCreateMimeDocument | |
| 48 | MimeEditDocumentFromStream | |
| 49 | MimeEditGetBackgroundImageUrl | |
| 50 | MimeEditIsSafeToRun | |
| 51 | MimeEditViewSource | |
| 52 | MimeGetAddressFormatW | |
| 53 | MimeOleAlgNameFromSMimeCap | |
| 54 | MimeOleAlgStrengthFromSMimeCap | |
| 55 | MimeOleClearDirtyTree | |
| 56 | MimeOleConvertEnrichedToHTML | |
| 57 | MimeOleCreateBody | |
| 58 | MimeOleCreateByteStream | |
| 59 | MimeOleCreateHashTable | |
| 60 | MimeOleCreateHeaderTable | |
| 61 | MimeOleCreateMessage | |
| 62 | MimeOleCreateMessageParts | |
| 63 | MimeOleCreatePropertySet | |
| 64 | MimeOleCreateSecurity | |
| 65 | MimeOleCreateVirtualStream | |
| 66 | MimeOleDecodeHeader | |
| 67 | MimeOleEncodeHeader | |
| 68 | MimeOleFileTimeToInetDate | |
| 69 | MimeOleFindCharset | |
| 70 | MimeOleGenerateCID | |
| 71 | MimeOleGenerateFileName | |
| 72 | MimeOleGenerateMID | |
| 73 | MimeOleGetAllocator | |
| 74 | MimeOleGetBodyPropA | |
| 75 | MimeOleGetBodyPropW | |
| 76 | MimeOleGetCertsFromThumbprints | |
| 77 | MimeOleGetCharsetInfo | |
| 78 | MimeOleGetCodePageCharset | |
| 79 | MimeOleGetCodePageInfo | |
| 80 | MimeOleGetContentTypeExt | |
| 81 | MimeOleGetDefaultCharset | |
| 82 | MimeOleGetExtContentType | |
| 83 | MimeOleGetFileExtension | |
| 84 | MimeOleGetFileInfo | |
| 85 | MimeOleGetFileInfoW | |
| 86 | MimeOleGetInternat | |
| 87 | MimeOleGetPropA | |
| 88 | MimeOleGetPropW | |
| 89 | MimeOleGetPropertySchema | |
| 90 | MimeOleGetRelatedSection | |
| 91 | MimeOleInetDateToFileTime | |
| 92 | MimeOleObjectFromMoniker | |
| 93 | MimeOleOpenFileStream | |
| 94 | MimeOleParseMhtmlUrl | |
| 95 | MimeOleParseRfc822Address | |
| 96 | MimeOleParseRfc822AddressW | |
| 97 | MimeOleSMimeCapAddCert | |
| 98 | MimeOleSMimeCapAddSMimeCap | |
| 99 | MimeOleSMimeCapGetEncAlg | |
| 100 | MimeOleSMimeCapGetHashAlg | |
| 101 | MimeOleSMimeCapInit | |
| 102 | MimeOleSMimeCapRelease | |
| 103 | MimeOleSMimeCapsFromDlg | |
| 104 | MimeOleSMimeCapsFull | |
| 105 | MimeOleSMimeCapsToDlg | |
| 106 | MimeOleSetBodyPropA | |
| 107 | MimeOleSetBodyPropW | |
| 108 | MimeOleSetCompatMode | |
| 109 | MimeOleSetDefaultCharset | |
| 110 | MimeOleSetPropA | |
| 111 | MimeOleSetPropW | |
| 112 | MimeOleStripHeaders | |
| 113 | MimeOleUnEscapeStringInPlace | |
| 114 | MimeOleUnEscapeStringInPlaceW | |
| 115 | ord_702 @702 | |
| 116 | ord_703 @703 | |
| 117 | ord_704 @704 | |
| 118 | ord_705 @705 | |
| 119 | ord_706 @706 | |
| 120 | ord_707 @707 | |
| 121 | ord_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 | ; | |
| 7 | LIBRARY inetmib1.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionInit | |
| 10 | SnmpExtensionInitEx | |
| 11 | SnmpExtensionQuery | |
| 12 | SnmpExtensionTrap |
lib/libc/mingw/lib-common/inkobjcore.def created+34| ... | ... | @@ -0,0 +1,34 @@ |
| 1 | LIBRARY inkobjcore | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AddStroke | |
| 6 | AddStrokeWithId | |
| 7 | AddWordsToWordList | |
| 8 | AdviseInkChange | |
| 9 | CreateContext | |
| 10 | CreateRecognizer | |
| 11 | DestroyContext | |
| 12 | DestroyRecognizer | |
| 13 | DestroyWordList | |
| 14 | EndInkInput | |
| 15 | GetAllRecognizers | |
| 16 | GetBestResultString | |
| 17 | GetLatticePtr | |
| 18 | GetLeftSeparator | |
| 19 | GetRecoAttributes | |
| 20 | GetResultPropertyList | |
| 21 | GetRightSeparator | |
| 22 | GetUnicodeRanges | |
| 23 | IsStringSupported | |
| 24 | LoadCachedAttributes | |
| 25 | MakeWordList | |
| 26 | Process | |
| 27 | SetConstraint | |
| 28 | SetEnabledUnicodeRanges | |
| 29 | SetFactoid | |
| 30 | SetFlags | |
| 31 | SetGuide | |
| 32 | SetStrokeGroupId | |
| 33 | SetTextContext | |
| 34 | SetWordList |
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 | ; | |
| 6 | LIBRARY "Input.dll" | |
| 7 | EXPORTS | |
| 8 | CPlApplet | |
| 9 | ord_102 @102 | |
| 10 | ord_103 @103 | |
| 11 | InstallLayoutOrTip | |
| 12 | SaveDefaultUserInputSettings | |
| 13 | SaveSystemAcctInputSettings | |
| 14 | SetDefaultLayoutOrTip | |
| 15 | EnumLayoutOrTipForSetup | |
| 16 | InstallLayoutOrTipUserReg | |
| 17 | EnumEnabledLayoutOrTip | |
| 18 | QueryLayoutOrTipString | |
| 19 | QueryLayoutOrTipStringUserReg | |
| 20 | GetDefaultLayout | |
| 21 | GetLayoutDescription | |
| 22 | ord_115 @115 | |
| 23 | ord_116 @116 | |
| 24 | InstallLayoutOrTipPrivate | |
| 25 | EnumEnabledLayoutOrTipPrivate | |
| 26 | ActivateInputProfile | |
| 27 | InputDll_DownlevelInitialize | |
| 28 | InputDll_DownlevelSetUILanguage | |
| 29 | InputDll_DownlevelUninitialize | |
| 30 | InputDll_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 | ; | |
| 7 | LIBRARY inseng.dll | |
| 8 | EXPORTS | |
| 9 | CheckForVersionConflict | |
| 10 | CheckTrust | |
| 11 | CheckTrustEx | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllInstall | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer | |
| 17 | DownloadFile | |
| 18 | GetICifFileFromFile | |
| 19 | GetICifRWFileFromFile | |
| 20 | PurgeDownloadDirectory |
lib/libc/mingw/lib-common/iphlpapi.def+1| ... | ... | @@ -210,6 +210,7 @@ InternalCreateIpForwardEntry |
| 210 | 210 | InternalCreateIpForwardEntry2 |
| 211 | 211 | InternalCreateIpNetEntry |
| 212 | 212 | InternalCreateIpNetEntry2 |
| 213 | InternalCreateOrRefIpForwardEntry2 | |
| 213 | 214 | InternalCreateUnicastIpAddressEntry |
| 214 | 215 | InternalDeleteAnycastIpAddressEntry |
| 215 | 216 | InternalDeleteIpForwardEntry |
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 | ; | |
| 6 | LIBRARY "IPNATHLP.dll" | |
| 7 | EXPORTS | |
| 8 | NhAcceptStreamSocket | |
| 9 | NhAcquireFixedLengthBuffer | |
| 10 | NhAcquireVariableLengthBuffer | |
| 11 | NhCreateDatagramSocket | |
| 12 | NhCreateStreamSocket | |
| 13 | NhDeleteSocket | |
| 14 | NhInitializeBufferManagement | |
| 15 | NhReadDatagramSocket | |
| 16 | NhReadStreamSocket | |
| 17 | NhReleaseBuffer | |
| 18 | NhWriteDatagramSocket | |
| 19 | NhWriteStreamSocket | |
| 20 | RegisterProtocol | |
| 21 | SvchostPushServiceGlobals | |
| 22 | NatAcquirePortReservation | |
| 23 | NatCancelDynamicRedirect | |
| 24 | NatCancelRedirect | |
| 25 | NatCreateDynamicFullRedirect | |
| 26 | NatCreateDynamicRedirect | |
| 27 | NatCreateDynamicRedirectEx | |
| 28 | NatCreateRedirect | |
| 29 | NatCreateRedirectEx | |
| 30 | NatInitializePortReservation | |
| 31 | NatInitializeTranslator | |
| 32 | NatLookupAndQueryInformationSessionMapping | |
| 33 | NatQueryInformationRedirect | |
| 34 | NatQueryInformationRedirectHandle | |
| 35 | NatReleasePortReservation | |
| 36 | NatShutdownPortReservation | |
| 37 | NatShutdownTranslator | |
| 38 | NhInitializeTraceManagement | |
| 39 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "JSProxy.dll" | |
| 7 | EXPORTS | |
| 8 | InternetInitializeAutoProxyDll | |
| 9 | InternetDeInitializeAutoProxyDll | |
| 10 | InternetGetProxyInfo | |
| 11 | InternetInitializeAutoProxyDllEx | |
| 12 | InternetDeInitializeAutoProxyDllEx | |
| 13 | InternetGetProxyInfoEx |
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 | ; | |
| 6 | LIBRARY "kdcom.dll" | |
| 7 | EXPORTS | |
| 8 | KdD0Transition | |
| 9 | KdD3Transition | |
| 10 | KdDebuggerInitialize0 | |
| 11 | KdDebuggerInitialize1 | |
| 12 | KdReceivePacket | |
| 13 | KdRestore | |
| 14 | KdSave | |
| 15 | KdSendPacket | |
| 16 | KdSetHiberRange |
lib/libc/mingw/lib-common/kernel32.def.in+45-7| ... | ... | @@ -6,6 +6,7 @@ AcquireSRWLockExclusive |
| 6 | 6 | AcquireSRWLockShared |
| 7 | 7 | ActivateActCtx |
| 8 | 8 | ActivateActCtxWorker |
| 9 | ActivatePackageVirtualizationContext | |
| 9 | 10 | AddAtomA |
| 10 | 11 | AddAtomW |
| 11 | 12 | AddConsoleAliasA |
| ... | ... | @@ -38,6 +39,7 @@ AppXGetOSMaxVersionTested |
| 38 | 39 | ApplicationRecoveryFinished |
| 39 | 40 | ApplicationRecoveryInProgress |
| 40 | 41 | AreFileApisANSI |
| 42 | AreShortNamesEnabled | |
| 41 | 43 | AssignProcessToJobObject |
| 42 | 44 | AttachConsole |
| 43 | 45 | BackupRead |
| ... | ... | @@ -116,6 +118,12 @@ BuildCommDCBA |
| 116 | 118 | BuildCommDCBAndTimeoutsA |
| 117 | 119 | BuildCommDCBAndTimeoutsW |
| 118 | 120 | BuildCommDCBW |
| 121 | BuildIoRingCancelRequest | |
| 122 | BuildIoRingFlushFile | |
| 123 | BuildIoRingReadFile | |
| 124 | BuildIoRingRegisterBuffers | |
| 125 | BuildIoRingRegisterFileHandles | |
| 126 | BuildIoRingWriteFile | |
| 119 | 127 | CallNamedPipeA |
| 120 | 128 | CallNamedPipeW |
| 121 | 129 | CallbackMayRunLong |
| ... | ... | @@ -143,6 +151,7 @@ ClearCommBreak |
| 143 | 151 | ClearCommError |
| 144 | 152 | CloseConsoleHandle |
| 145 | 153 | CloseHandle |
| 154 | CloseIoRing | |
| 146 | 155 | ClosePackageInfo |
| 147 | 156 | ClosePrivateNamespace |
| 148 | 157 | CloseProfileUserMapping |
| ... | ... | @@ -219,6 +228,7 @@ CreateHardLinkTransactedA |
| 219 | 228 | CreateHardLinkTransactedW |
| 220 | 229 | CreateHardLinkW |
| 221 | 230 | CreateIoCompletionPort |
| 231 | CreateIoRing | |
| 222 | 232 | CreateJobObjectA |
| 223 | 233 | CreateJobObjectW |
| 224 | 234 | CreateJobSet |
| ... | ... | @@ -232,12 +242,14 @@ CreateMutexW |
| 232 | 242 | CreateNamedPipeA |
| 233 | 243 | CreateNamedPipeW |
| 234 | 244 | CreateNlsSecurityDescriptor |
| 245 | CreatePackageVirtualizationContext | |
| 235 | 246 | CreatePipe |
| 236 | 247 | CreatePrivateNamespaceA |
| 237 | 248 | CreatePrivateNamespaceW |
| 238 | 249 | CreateProcessA |
| 239 | CreateProcessAsUserA | |
| 240 | CreateProcessAsUserW | |
| 250 | ; MSDN says these are exported from ADVAPI32.DLL. | |
| 251 | ; CreateProcessAsUserA | |
| 252 | ; CreateProcessAsUserW | |
| 241 | 253 | CreateProcessInternalA |
| 242 | 254 | CreateProcessInternalW |
| 243 | 255 | CreateProcessW |
| ... | ... | @@ -272,6 +284,7 @@ CreateWaitableTimerW |
| 272 | 284 | CtrlRoutine |
| 273 | 285 | DeactivateActCtx |
| 274 | 286 | DeactivateActCtxWorker |
| 287 | DeactivatePackageVirtualizationContext | |
| 275 | 288 | DebugActiveProcess |
| 276 | 289 | DebugActiveProcessStop |
| 277 | 290 | DebugBreak |
| ... | ... | @@ -315,6 +328,8 @@ DosPathToSessionPathW |
| 315 | 328 | DuplicateConsoleHandle |
| 316 | 329 | DuplicateEncryptionInfoFileExt |
| 317 | 330 | DuplicateHandle |
| 331 | DuplicatePackageVirtualizationContext | |
| 332 | EnableProcessOptionalXStateFeatures | |
| 318 | 333 | EnableThreadProfiling |
| 319 | 334 | EncodePointer |
| 320 | 335 | EncodeSystemPointer |
| ... | ... | @@ -323,7 +338,6 @@ EndUpdateResourceW |
| 323 | 338 | EnterCriticalSection |
| 324 | 339 | F_X64(EnterUmsSchedulingMode) |
| 325 | 340 | EnterSynchronizationBarrier |
| 326 | EnterUmsSchedulingMode | |
| 327 | 341 | EnumCalendarInfoA |
| 328 | 342 | EnumCalendarInfoExA |
| 329 | 343 | EnumCalendarInfoExEx |
| ... | ... | @@ -554,6 +568,7 @@ GetCurrentPackageFullName |
| 554 | 568 | GetCurrentPackageId |
| 555 | 569 | GetCurrentPackageInfo |
| 556 | 570 | GetCurrentPackagePath |
| 571 | GetCurrentPackageVirtualizationContext | |
| 557 | 572 | GetCurrentProcess |
| 558 | 573 | GetCurrentProcessId |
| 559 | 574 | GetCurrentProcessorNumber |
| ... | ... | @@ -630,6 +645,7 @@ GetGeoInfoA |
| 630 | 645 | GetGeoInfoW |
| 631 | 646 | GetGeoInfoEx |
| 632 | 647 | GetHandleInformation |
| 648 | GetIoRingInfo | |
| 633 | 649 | GetLargePageMinimum |
| 634 | 650 | GetLargestConsoleWindowSize |
| 635 | 651 | GetLastError |
| ... | ... | @@ -647,6 +663,7 @@ GetLongPathNameA |
| 647 | 663 | GetLongPathNameTransactedA |
| 648 | 664 | GetLongPathNameTransactedW |
| 649 | 665 | GetLongPathNameW |
| 666 | GetMachineTypeAttributes | |
| 650 | 667 | GetMailslotInfo |
| 651 | 668 | GetMaximumProcessorCount |
| 652 | 669 | GetMaximumProcessorGroupCount |
| ... | ... | @@ -678,6 +695,7 @@ GetNumaAvailableMemoryNodeEx |
| 678 | 695 | GetNumaHighestNodeNumber |
| 679 | 696 | GetNumaNodeNumberFromHandle |
| 680 | 697 | GetNumaNodeProcessorMask |
| 698 | GetNumaNodeProcessorMask2 | |
| 681 | 699 | GetNumaNodeProcessorMaskEx |
| 682 | 700 | GetNumaProcessorNode |
| 683 | 701 | GetNumaProcessorNodeEx |
| ... | ... | @@ -714,9 +732,9 @@ GetPrivateProfileStructA |
| 714 | 732 | GetPrivateProfileStructW |
| 715 | 733 | GetProcAddress |
| 716 | 734 | GetProcessAffinityMask |
| 735 | GetProcessDefaultCpuSetMasks | |
| 717 | 736 | GetProcessDefaultCpuSets |
| 718 | 737 | GetProcessDEPPolicy |
| 719 | GetProcessDefaultCpuSets | |
| 720 | 738 | GetProcessGroupAffinity |
| 721 | 739 | GetProcessHandleCount |
| 722 | 740 | GetProcessHeap |
| ... | ... | @@ -733,6 +751,7 @@ GetProcessTimes |
| 733 | 751 | GetProcessVersion |
| 734 | 752 | GetProcessWorkingSetSize |
| 735 | 753 | GetProcessWorkingSetSizeEx |
| 754 | GetProcessesInVirtualizationContext | |
| 736 | 755 | GetProcessorSystemCycleTime |
| 737 | 756 | GetProductInfo |
| 738 | 757 | GetProfileIntA |
| ... | ... | @@ -786,8 +805,11 @@ GetTempFileNameA |
| 786 | 805 | GetTempFileNameW |
| 787 | 806 | GetTempPathA |
| 788 | 807 | GetTempPathW |
| 808 | GetTempPath2A | |
| 809 | GetTempPath2W | |
| 789 | 810 | GetThreadContext |
| 790 | 811 | GetThreadDescription |
| 812 | GetThreadEnabledXStateFeatures | |
| 791 | 813 | GetThreadErrorMode |
| 792 | 814 | GetThreadGroupAffinity |
| 793 | 815 | GetThreadIOPendingFlag |
| ... | ... | @@ -798,6 +820,7 @@ GetThreadLocale |
| 798 | 820 | GetThreadPreferredUILanguages |
| 799 | 821 | GetThreadPriority |
| 800 | 822 | GetThreadPriorityBoost |
| 823 | GetThreadSelectedCpuSetMasks | |
| 801 | 824 | GetThreadSelectedCpuSets |
| 802 | 825 | GetThreadSelectorEntry |
| 803 | 826 | GetThreadTimes |
| ... | ... | @@ -925,6 +948,7 @@ IsDBCSLeadByte |
| 925 | 948 | IsDBCSLeadByteEx |
| 926 | 949 | IsDebuggerPresent |
| 927 | 950 | IsEnclaveTypeSupported |
| 951 | IsIoRingOpSupported | |
| 928 | 952 | IsNLSDefinedString |
| 929 | 953 | IsNativeVhdBoot |
| 930 | 954 | IsNormalizedString |
| ... | ... | @@ -935,6 +959,7 @@ IsSystemResumeAutomatic |
| 935 | 959 | IsThreadAFiber |
| 936 | 960 | IsThreadpoolTimerSet |
| 937 | 961 | IsTimeZoneRedirectionEnabled |
| 962 | IsUserCetAvailableInEnvironment | |
| 938 | 963 | IsValidCalDateTime |
| 939 | 964 | IsValidCodePage |
| 940 | 965 | IsValidLanguageGroup |
| ... | ... | @@ -1081,7 +1106,8 @@ OpenSemaphoreW |
| 1081 | 1106 | OpenState |
| 1082 | 1107 | OpenStateExplicit |
| 1083 | 1108 | OpenThread |
| 1084 | ;OpenThreadToken | |
| 1109 | ; MSDN says this is exported from ADVAPI32.DLL. | |
| 1110 | ; OpenThreadToken | |
| 1085 | 1111 | OpenWaitableTimerA |
| 1086 | 1112 | OpenWaitableTimerW |
| 1087 | 1113 | OutputDebugStringA |
| ... | ... | @@ -1095,6 +1121,7 @@ ParseApplicationUserModelId |
| 1095 | 1121 | PeekConsoleInputA |
| 1096 | 1122 | PeekConsoleInputW |
| 1097 | 1123 | PeekNamedPipe |
| 1124 | PopIoRingCompletion | |
| 1098 | 1125 | PostQueuedCompletionStatus |
| 1099 | 1126 | PowerClearRequest |
| 1100 | 1127 | PowerCreateRequest |
| ... | ... | @@ -1136,6 +1163,7 @@ QueryIdleProcessorCycleTime |
| 1136 | 1163 | QueryIdleProcessorCycleTimeEx |
| 1137 | 1164 | QueryInformationJobObject |
| 1138 | 1165 | QueryIoRateControlInformationJobObject |
| 1166 | QueryIoRingCapabilities | |
| 1139 | 1167 | QueryMemoryResourceNotification |
| 1140 | 1168 | QueryPerformanceCounter |
| 1141 | 1169 | QueryPerformanceFrequency |
| ... | ... | @@ -1148,6 +1176,7 @@ QueryThreadpoolStackInformation |
| 1148 | 1176 | F_X64(QueryUmsThreadInformation) |
| 1149 | 1177 | QueryUnbiasedInterruptTime |
| 1150 | 1178 | QueueUserAPC |
| 1179 | QueueUserAPC2 | |
| 1151 | 1180 | QueueUserWorkItem |
| 1152 | 1181 | QuirkGetData2Worker |
| 1153 | 1182 | QuirkGetDataWorker |
| ... | ... | @@ -1182,7 +1211,6 @@ ReadFileEx |
| 1182 | 1211 | ReadFileScatter |
| 1183 | 1212 | ReadProcessMemory |
| 1184 | 1213 | ReadThreadProfilingData |
| 1185 | ReclaimVirtualMemory | |
| 1186 | 1214 | ; |
| 1187 | 1215 | ; MSDN says these functions are exported |
| 1188 | 1216 | ; from advapi32.dll. Commented out for |
| ... | ... | @@ -1251,6 +1279,7 @@ ReleaseActCtx |
| 1251 | 1279 | ReleaseActCtxWorker |
| 1252 | 1280 | ReleaseMutex |
| 1253 | 1281 | ReleaseMutexWhenCallbackReturns |
| 1282 | ReleasePackageVirtualizationContext | |
| 1254 | 1283 | ReleaseSRWLockExclusive |
| 1255 | 1284 | ReleaseSRWLockShared |
| 1256 | 1285 | ReleaseSemaphore |
| ... | ... | @@ -1287,6 +1316,7 @@ RtlCopyMemory |
| 1287 | 1316 | RtlDeleteFunctionTable |
| 1288 | 1317 | RtlFillMemory |
| 1289 | 1318 | RtlInstallFunctionTableCallback |
| 1319 | RtlIsEcCode | |
| 1290 | 1320 | RtlLookupFunctionEntry |
| 1291 | 1321 | RtlMoveMemory |
| 1292 | 1322 | RtlPcToFileHeader |
| ... | ... | @@ -1295,6 +1325,7 @@ RtlRestoreContext |
| 1295 | 1325 | RtlUnwind |
| 1296 | 1326 | RtlUnwindEx |
| 1297 | 1327 | RtlVirtualUnwind |
| 1328 | RtlVirtualUnwind2 | |
| 1298 | 1329 | RtlZeroMemory |
| 1299 | 1330 | ScrollConsoleScreenBufferA |
| 1300 | 1331 | ScrollConsoleScreenBufferW |
| ... | ... | @@ -1390,6 +1421,7 @@ SetHandleCount |
| 1390 | 1421 | SetHandleInformation |
| 1391 | 1422 | SetInformationJobObject |
| 1392 | 1423 | SetIoRateControlInformationJobObject |
| 1424 | SetIoRingCompletionEvent | |
| 1393 | 1425 | SetLastConsoleEventActive |
| 1394 | 1426 | SetLastError |
| 1395 | 1427 | SetLocalPrimaryComputerNameA |
| ... | ... | @@ -1405,7 +1437,10 @@ SetPriorityClass |
| 1405 | 1437 | SetProcessAffinityMask |
| 1406 | 1438 | SetProcessAffinityUpdateMode |
| 1407 | 1439 | SetProcessDEPPolicy |
| 1440 | SetProcessDefaultCpuSetMasks | |
| 1408 | 1441 | SetProcessDefaultCpuSets |
| 1442 | SetProcessDynamicEHContinuationTargets | |
| 1443 | SetProcessDynamicEnforcedCetCompatibleRanges | |
| 1409 | 1444 | SetProcessInformation |
| 1410 | 1445 | SetProcessMitigationPolicy |
| 1411 | 1446 | SetProcessPreferredUILanguages |
| ... | ... | @@ -1437,9 +1472,11 @@ SetThreadLocale |
| 1437 | 1472 | SetThreadPreferredUILanguages |
| 1438 | 1473 | SetThreadPriority |
| 1439 | 1474 | SetThreadPriorityBoost |
| 1475 | SetThreadSelectedCpuSetMasks | |
| 1440 | 1476 | SetThreadSelectedCpuSets |
| 1441 | 1477 | SetThreadStackGuarantee |
| 1442 | SetThreadToken | |
| 1478 | ; MSDN says this is exported from ADVAPI32.DLL. | |
| 1479 | ; SetThreadToken | |
| 1443 | 1480 | SetThreadUILanguage |
| 1444 | 1481 | SetThreadpoolStackInformation |
| 1445 | 1482 | SetThreadpoolThreadMaximum |
| ... | ... | @@ -1474,6 +1511,7 @@ SleepEx |
| 1474 | 1511 | SortCloseHandle |
| 1475 | 1512 | SortGetHandle |
| 1476 | 1513 | StartThreadpoolIo |
| 1514 | SubmitIoRing | |
| 1477 | 1515 | SubmitThreadpoolWork |
| 1478 | 1516 | SuspendThread |
| 1479 | 1517 | SwitchToFiber |
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 | ; | |
| 7 | LIBRARY KEYMGR.dll | |
| 8 | EXPORTS | |
| 9 | CPlApplet | |
| 10 | DllMain | |
| 11 | KRShowKeyMgr | |
| 12 | PRShowRestoreFromMsginaW | |
| 13 | PRShowRestoreWizardExW | |
| 14 | PRShowRestoreWizardW | |
| 15 | PRShowSaveFromMsginaW | |
| 16 | PRShowSaveWizardExW |
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 | ; | |
| 6 | LIBRARY "ks.sys" | |
| 7 | EXPORTS | |
| 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 | |
| 28 | DllInitialize | |
| 29 | KoCreateInstance | |
| 30 | KoDeviceInitialize | |
| 31 | KoDriverInitialize | |
| 32 | KoRelease | |
| 33 | KsAcquireCachedMdl | |
| 34 | KsAcquireControl | |
| 35 | KsAcquireDevice | |
| 36 | KsAcquireDeviceSecurityLock | |
| 37 | KsAcquireResetValue | |
| 38 | KsAddDevice | |
| 39 | KsAddEvent | |
| 40 | KsAddIrpToCancelableQueue | |
| 41 | KsAddItemToObjectBag | |
| 42 | KsAddObjectCreateItemToDeviceHeader | |
| 43 | KsAddObjectCreateItemToObjectHeader | |
| 44 | KsAllocateDefaultClock | |
| 45 | KsAllocateDefaultClockEx | |
| 46 | KsAllocateDeviceHeader | |
| 47 | KsAllocateExtraData | |
| 48 | KsAllocateObjectBag | |
| 49 | KsAllocateObjectCreateItem | |
| 50 | KsAllocateObjectHeader | |
| 51 | KsCacheMedium | |
| 52 | KsCancelIo | |
| 53 | KsCancelRoutine | |
| 54 | KsCompletePendingRequest | |
| 55 | KsCopyObjectBagItems | |
| 56 | KsCreateAllocator | |
| 57 | KsCreateBusEnumObject | |
| 58 | KsCreateClock | |
| 59 | KsCreateDefaultAllocator | |
| 60 | KsCreateDefaultAllocatorEx | |
| 61 | KsCreateDefaultClock | |
| 62 | KsCreateDefaultSecurity | |
| 63 | KsCreateDevice | |
| 64 | KsCreateFilterFactory | |
| 65 | KsCreatePin | |
| 66 | KsCreateTopologyNode | |
| 67 | KsDecrementCountedWorker | |
| 68 | KsDefaultAddEventHandler | |
| 69 | KsDefaultDeviceIoCompletion | |
| 70 | KsDefaultDispatchPnp | |
| 71 | KsDefaultDispatchPower | |
| 72 | KsDefaultForwardIrp | |
| 73 | KsDereferenceBusObject | |
| 74 | KsDereferenceSoftwareBusObject | |
| 75 | KsDeviceGetBusData | |
| 76 | KsDeviceRegisterAdapterObject | |
| 77 | KsDeviceRegisterThermalDispatch | |
| 78 | KsDeviceSetBusData | |
| 79 | KsDisableEvent | |
| 80 | KsDiscardEvent | |
| 81 | KsDispatchFastIoDeviceControlFailure | |
| 82 | KsDispatchFastReadFailure | |
| 83 | KsDispatchInvalidDeviceRequest | |
| 84 | KsDispatchIrp | |
| 85 | KsDispatchQuerySecurity | |
| 86 | KsDispatchSetSecurity | |
| 87 | KsDispatchSpecificMethod | |
| 88 | KsDispatchSpecificProperty | |
| 89 | KsEnableEvent | |
| 90 | KsEnableEventWithAllocator | |
| 91 | KsFastMethodHandler | |
| 92 | KsFastPropertyHandler | |
| 93 | KsFilterAcquireProcessingMutex | |
| 94 | KsFilterAddTopologyConnections | |
| 95 | KsFilterAttemptProcessing | |
| 96 | KsFilterCreateNode | |
| 97 | KsFilterCreatePinFactory | |
| 98 | KsFilterFactoryAddCreateItem | |
| 99 | KsFilterFactoryGetSymbolicLink | |
| 100 | KsFilterFactorySetDeviceClassesState | |
| 101 | KsFilterFactoryUpdateCacheData | |
| 102 | KsFilterGetAndGate | |
| 103 | KsFilterGetChildPinCount | |
| 104 | KsFilterGetFirstChildPin | |
| 105 | KsFilterRegisterPowerCallbacks | |
| 106 | KsFilterReleaseProcessingMutex | |
| 107 | KsForwardAndCatchIrp | |
| 108 | KsForwardIrp | |
| 109 | KsFreeDefaultClock | |
| 110 | KsFreeDeviceHeader | |
| 111 | KsFreeEventList | |
| 112 | KsFreeObjectBag | |
| 113 | KsFreeObjectCreateItem | |
| 114 | KsFreeObjectCreateItemsByContext | |
| 115 | KsFreeObjectHeader | |
| 116 | KsGenerateDataEvent | |
| 117 | KsGenerateEvent | |
| 118 | KsGenerateEventList | |
| 119 | KsGenerateEvents | |
| 120 | KsGenerateThermalEvent | |
| 121 | KsGetBusEnumIdentifier | |
| 122 | KsGetBusEnumParentFDOFromChildPDO | |
| 123 | KsGetBusEnumPnpDeviceObject | |
| 124 | KsGetDefaultClockState | |
| 125 | KsGetDefaultClockTime | |
| 126 | KsGetDevice | |
| 127 | KsGetDeviceForDeviceObject | |
| 128 | KsGetFilterFromIrp | |
| 129 | KsGetFirstChild | |
| 130 | KsGetImageNameAndResourceId | |
| 131 | KsGetNextSibling | |
| 132 | KsGetNodeIdFromIrp | |
| 133 | KsGetObjectFromFileObject | |
| 134 | KsGetObjectTypeFromFileObject | |
| 135 | KsGetObjectTypeFromIrp | |
| 136 | KsGetOuterUnknown | |
| 137 | KsGetParent | |
| 138 | KsGetPinFromIrp | |
| 139 | KsHandleSizedListQuery | |
| 140 | KsIncrementCountedWorker | |
| 141 | KsInitializeDevice | |
| 142 | KsInitializeDeviceProfile | |
| 143 | KsInitializeDriver | |
| 144 | KsInstallBusEnumInterface | |
| 145 | KsIsBusEnumChildDevice | |
| 146 | KsIsCurrentProcessFrameServer | |
| 147 | KsLoadResource | |
| 148 | KsMapModuleName | |
| 149 | KsMergeAutomationTables | |
| 150 | KsMethodHandler | |
| 151 | KsMethodHandlerWithAllocator | |
| 152 | KsMoveIrpsOnCancelableQueue | |
| 153 | KsNullDriverUnload | |
| 154 | KsPersistDeviceProfile | |
| 155 | KsPinAcquireProcessingMutex | |
| 156 | KsPinAttachAndGate | |
| 157 | KsPinAttachOrGate | |
| 158 | KsPinAttemptProcessing | |
| 159 | KsPinDataIntersection | |
| 160 | KsPinGetAndGate | |
| 161 | KsPinGetAvailableByteCount | |
| 162 | KsPinGetConnectedFilterInterface | |
| 163 | KsPinGetConnectedPinDeviceObject | |
| 164 | KsPinGetConnectedPinFileObject | |
| 165 | KsPinGetConnectedPinInterface | |
| 166 | KsPinGetCopyRelationships | |
| 167 | KsPinGetFirstCloneStreamPointer | |
| 168 | KsPinGetLeadingEdgeStreamPointer | |
| 169 | KsPinGetNextSiblingPin | |
| 170 | KsPinGetParentFilter | |
| 171 | KsPinGetReferenceClockInterface | |
| 172 | KsPinGetTrailingEdgeStreamPointer | |
| 173 | KsPinPropertyHandler | |
| 174 | KsPinRegisterFrameReturnCallback | |
| 175 | KsPinRegisterHandshakeCallback | |
| 176 | KsPinRegisterIrpCompletionCallback | |
| 177 | KsPinRegisterPowerCallbacks | |
| 178 | KsPinReleaseProcessingMutex | |
| 179 | KsPinSetPinClockTime | |
| 180 | KsPinSubmitFrame | |
| 181 | KsPinSubmitFrameMdl | |
| 182 | KsProbeStreamIrp | |
| 183 | KsProcessPinUpdate | |
| 184 | KsPropertyHandler | |
| 185 | KsPropertyHandlerWithAllocator | |
| 186 | KsPublishDeviceProfile | |
| 187 | KsQueryDevicePnpObject | |
| 188 | KsQueryInformationFile | |
| 189 | KsQueryObjectAccessMask | |
| 190 | KsQueryObjectCreateItem | |
| 191 | KsQueueWorkItem | |
| 192 | KsReadFile | |
| 193 | KsRecalculateStackDepth | |
| 194 | KsReferenceBusObject | |
| 195 | KsReferenceSoftwareBusObject | |
| 196 | KsRegisterAggregatedClientUnknown | |
| 197 | KsRegisterCountedWorker | |
| 198 | KsRegisterFilterWithNoKSPins | |
| 199 | KsRegisterWorker | |
| 200 | KsReleaseCachedMdl | |
| 201 | KsReleaseControl | |
| 202 | KsReleaseDevice | |
| 203 | KsReleaseDeviceSecurityLock | |
| 204 | KsReleaseIrpOnCancelableQueue | |
| 205 | KsRemoveBusEnumInterface | |
| 206 | KsRemoveIrpFromCancelableQueue | |
| 207 | KsRemoveItemFromObjectBag | |
| 208 | KsRemoveSpecificIrpFromCancelableQueue | |
| 209 | KsServiceBusEnumCreateRequest | |
| 210 | KsServiceBusEnumPnpRequest | |
| 211 | KsSetDefaultClockState | |
| 212 | KsSetDefaultClockTime | |
| 213 | KsSetDevicePnpAndBaseObject | |
| 214 | KsSetInformationFile | |
| 215 | KsSetMajorFunctionHandler | |
| 216 | KsSetPowerDispatch | |
| 217 | KsSetTargetDeviceObject | |
| 218 | KsSetTargetState | |
| 219 | KsStreamIo | |
| 220 | KsStreamPointerAdvance | |
| 221 | KsStreamPointerAdvanceOffsets | |
| 222 | KsStreamPointerAdvanceOffsetsAndUnlock | |
| 223 | KsStreamPointerCancelTimeout | |
| 224 | KsStreamPointerClone | |
| 225 | KsStreamPointerDelete | |
| 226 | KsStreamPointerGetIrp | |
| 227 | KsStreamPointerGetMdl | |
| 228 | KsStreamPointerGetNextClone | |
| 229 | KsStreamPointerLock | |
| 230 | KsStreamPointerScheduleTimeout | |
| 231 | KsStreamPointerSetStatusCode | |
| 232 | KsStreamPointerUnlock | |
| 233 | KsSynchronousIoControlDevice | |
| 234 | KsTerminateDevice | |
| 235 | KsTopologyPropertyHandler | |
| 236 | KsUnregisterWorker | |
| 237 | KsUnserializeObjectPropertiesFromRegistry | |
| 238 | KsUpdateCameraStreamingConsent | |
| 239 | KsValidateAllocatorCreateRequest | |
| 240 | KsValidateAllocatorFramingEx | |
| 241 | KsValidateClockCreateRequest | |
| 242 | KsValidateConnectRequest | |
| 243 | KsValidateTopologyNodeCreateRequest | |
| 244 | KsWriteFile | |
| 245 | KsiDefaultClockAddMarkEvent | |
| 246 | KsiPropertyDefaultClockGetCorrelatedPhysicalTime | |
| 247 | KsiPropertyDefaultClockGetCorrelatedTime | |
| 248 | KsiPropertyDefaultClockGetFunctionTable | |
| 249 | KsiPropertyDefaultClockGetPhysicalTime | |
| 250 | KsiPropertyDefaultClockGetResolution | |
| 251 | KsiPropertyDefaultClockGetState | |
| 252 | KsiPropertyDefaultClockGetTime | |
| 253 | KsiQueryObjectCreateItemsPresent | |
| 254 | _KsEdit |
lib/libc/mingw/lib-common/ksecdd.def created+108| ... | ... | @@ -0,0 +1,108 @@ |
| 1 | LIBRARY "ksecdd.sys" | |
| 2 | EXPORTS | |
| 3 | SystemPrng | |
| 4 | AcceptSecurityContext | |
| 5 | AcquireCredentialsHandleW | |
| 6 | AddCredentialsW | |
| 7 | ApplyControlToken | |
| 8 | BCryptCloseAlgorithmProvider | |
| 9 | BCryptCreateHash | |
| 10 | BCryptDecrypt | |
| 11 | BCryptDeriveKey | |
| 12 | BCryptDeriveKeyCapi | |
| 13 | BCryptDeriveKeyPBKDF2 | |
| 14 | BCryptDestroyHash | |
| 15 | BCryptDestroyKey | |
| 16 | BCryptDestroySecret | |
| 17 | BCryptDuplicateHash | |
| 18 | BCryptDuplicateKey | |
| 19 | BCryptEncrypt | |
| 20 | BCryptEnumAlgorithms | |
| 21 | BCryptEnumProviders | |
| 22 | BCryptExportKey | |
| 23 | BCryptFinalizeKeyPair | |
| 24 | BCryptFinishHash | |
| 25 | BCryptFreeBuffer | |
| 26 | BCryptGenRandom | |
| 27 | BCryptGenerateKeyPair | |
| 28 | BCryptGenerateSymmetricKey | |
| 29 | BCryptGetFipsAlgorithmMode | |
| 30 | BCryptGetProperty | |
| 31 | BCryptHashData | |
| 32 | BCryptImportKey | |
| 33 | BCryptImportKeyPair | |
| 34 | BCryptKeyDerivation | |
| 35 | BCryptOpenAlgorithmProvider | |
| 36 | BCryptRegisterConfigChangeNotify | |
| 37 | BCryptResolveProviders | |
| 38 | BCryptSecretAgreement | |
| 39 | BCryptSetProperty | |
| 40 | BCryptSignHash | |
| 41 | BCryptUnregisterConfigChangeNotify | |
| 42 | BCryptVerifySignature | |
| 43 | CompleteAuthToken | |
| 44 | CredMarshalTargetInfo | |
| 45 | DeleteSecurityContext | |
| 46 | EnumerateSecurityPackagesW | |
| 47 | ExportSecurityContext | |
| 48 | FreeContextBuffer | |
| 49 | FreeCredentialsHandle | |
| 50 | GetSecurityUserInfo | |
| 51 | ImpersonateSecurityContext | |
| 52 | ImportSecurityContextW | |
| 53 | InitSecurityInterfaceW | |
| 54 | InitializeSecurityContextW | |
| 55 | KSecRegisterSecurityProvider | |
| 56 | KSecValidateBuffer | |
| 57 | LsaEnumerateLogonSessions | |
| 58 | LsaGetLogonSessionData | |
| 59 | MakeSignature | |
| 60 | MapSecurityError | |
| 61 | QueryContextAttributesW | |
| 62 | QueryCredentialsAttributesW | |
| 63 | QuerySecurityContextToken | |
| 64 | QuerySecurityPackageInfoW | |
| 65 | RevertSecurityContext | |
| 66 | SealMessage | |
| 67 | SecLookupAccountName | |
| 68 | SecLookupAccountSid | |
| 69 | SecLookupWellKnownSid | |
| 70 | SecMakeSPN | |
| 71 | SecMakeSPNEx | |
| 72 | SecMakeSPNEx2 | |
| 73 | SecSetPagingMode | |
| 74 | SetCredentialsAttributesW | |
| 75 | SslDecryptPacket | |
| 76 | SslEncryptPacket | |
| 77 | SslExportKey | |
| 78 | SslFreeObject | |
| 79 | SslGetExtensions | |
| 80 | SslGetServerIdentity | |
| 81 | SslImportKey | |
| 82 | SslLookupCipherSuiteInfo | |
| 83 | SslOpenProvider | |
| 84 | SspiAcceptSecurityContextAsync | |
| 85 | SspiAcquireCredentialsHandleAsyncW | |
| 86 | SspiCompareAuthIdentities | |
| 87 | SspiCopyAuthIdentity | |
| 88 | SspiCreateAsyncContext | |
| 89 | SspiDeleteSecurityContextAsync | |
| 90 | SspiEncodeAuthIdentityAsStrings | |
| 91 | SspiEncodeStringsAsAuthIdentity | |
| 92 | SspiFreeAsyncContext | |
| 93 | SspiFreeAuthIdentity | |
| 94 | SspiFreeCredentialsHandleAsync | |
| 95 | SspiGetAsyncCallStatus | |
| 96 | SspiInitializeSecurityContextAsyncW | |
| 97 | SspiLocalFree | |
| 98 | SspiMarshalAuthIdentity | |
| 99 | SspiReinitAsyncContext | |
| 100 | SspiSetAsyncNotifyCallback | |
| 101 | SspiUnmarshalAuthIdentity | |
| 102 | SspiValidateAuthIdentity | |
| 103 | SspiZeroAuthIdentity | |
| 104 | TokenBindingGetHighestSupportedVersion | |
| 105 | TokenBindingGetKeyTypesServer | |
| 106 | TokenBindingVerifyMessage | |
| 107 | UnsealMessage | |
| 108 | VerifySignature |
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 | ; | |
| 7 | LIBRARY LINKINFO.dll | |
| 8 | EXPORTS | |
| 9 | CompareLinkInfoReferents | |
| 10 | CompareLinkInfoVolumes | |
| 11 | CreateLinkInfo | |
| 12 | CreateLinkInfoA | |
| 13 | CreateLinkInfoW | |
| 14 | DestroyLinkInfo | |
| 15 | DisconnectLinkInfo | |
| 16 | GetCanonicalPathInfo | |
| 17 | GetCanonicalPathInfoA | |
| 18 | GetCanonicalPathInfoW | |
| 19 | GetLinkInfoData | |
| 20 | IsValidLinkInfo | |
| 21 | ResolveLinkInfo | |
| 22 | ResolveLinkInfoA | |
| 23 | ResolveLinkInfoW |
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 | ; | |
| 7 | LIBRARY LogHours.dll | |
| 8 | EXPORTS | |
| 9 | LogonScheduleDialog | |
| 10 | ConnectionScheduleDialog | |
| 11 | DialinHoursDialog | |
| 12 | DirSyncScheduleDialog | |
| 13 | LogonScheduleDialogEx | |
| 14 | DialinHoursDialogEx | |
| 15 | ReplicationScheduleDialog | |
| 16 | ReplicationScheduleDialogEx | |
| 17 | ConnectionScheduleDialogEx | |
| 18 | DirSyncScheduleDialogEx |
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 | ; | |
| 6 | LIBRARY "MAPI32.dll" | |
| 7 | EXPORTS | |
| 8 | ord_8 @8 | |
| 9 | MAPILogonEx | |
| 10 | MAPIAllocateBuffer | |
| 11 | MAPIAllocateMore | |
| 12 | MAPIFreeBuffer | |
| 13 | MAPIAdminProfiles | |
| 14 | MAPIInitialize | |
| 15 | MAPIUninitialize | |
| 16 | PRProviderInit | |
| 17 | LAUNCHWIZARD | |
| 18 | LaunchWizard | |
| 19 | MAPIOpenFormMgr | |
| 20 | MAPIOpenLocalFormContainer | |
| 21 | ScInitMapiUtil | |
| 22 | DeinitMapiUtil | |
| 23 | ScGenerateMuid | |
| 24 | HrAllocAdviseSink | |
| 25 | WrapProgress | |
| 26 | HrThisThreadAdviseSink | |
| 27 | ScBinFromHexBounded | |
| 28 | FBinFromHex | |
| 29 | HexFromBin | |
| 30 | BuildDisplayTable | |
| 31 | SwapPlong | |
| 32 | SwapPword | |
| 33 | MAPIInitIdle | |
| 34 | MAPIDeinitIdle | |
| 35 | InstallFilterHook | |
| 36 | FtgRegisterIdleRoutine | |
| 37 | EnableIdleRoutine | |
| 38 | DeregisterIdleRoutine | |
| 39 | ChangeIdleRoutine | |
| 40 | MAPIGetDefaultMalloc | |
| 41 | CreateIProp | |
| 42 | CreateTable | |
| 43 | MNLS_lstrlenW | |
| 44 | MNLS_lstrcmpW | |
| 45 | MNLS_lstrcpyW | |
| 46 | MNLS_CompareStringW | |
| 47 | MNLS_MultiByteToWideChar | |
| 48 | MNLS_WideCharToMultiByte | |
| 49 | MNLS_IsBadStringPtrW | |
| 50 | FEqualNames | |
| 51 | WrapStoreEntryID | |
| 52 | IsBadBoundedStringPtr | |
| 53 | HrQueryAllRows | |
| 54 | PropCopyMore | |
| 55 | UlPropSize | |
| 56 | FPropContainsProp | |
| 57 | FPropCompareProp | |
| 58 | LPropCompareProp | |
| 59 | HrAddColumns | |
| 60 | HrAddColumnsEx | |
| 61 | FtAddFt | |
| 62 | FtAdcFt | |
| 63 | FtSubFt | |
| 64 | FtMulDw | |
| 65 | FtMulDwDw | |
| 66 | FtNegFt | |
| 67 | FtDivFtBogus | |
| 68 | UlAddRef | |
| 69 | UlRelease | |
| 70 | SzFindCh | |
| 71 | SzFindLastCh | |
| 72 | SzFindSz | |
| 73 | UFromSz | |
| 74 | HrGetOneProp | |
| 75 | HrSetOneProp | |
| 76 | FPropExists | |
| 77 | PpropFindProp | |
| 78 | FreePadrlist | |
| 79 | FreeProws | |
| 80 | HrSzFromEntryID | |
| 81 | HrEntryIDFromSz | |
| 82 | HrComposeEID | |
| 83 | HrDecomposeEID | |
| 84 | HrComposeMsgID | |
| 85 | HrDecomposeMsgID | |
| 86 | OpenStreamOnFile | |
| 87 | OpenTnefStream | |
| 88 | OpenTnefStreamEx | |
| 89 | GetTnefStreamCodepage | |
| 90 | UlFromSzHex | |
| 91 | UNKOBJ_ScAllocate | |
| 92 | UNKOBJ_ScAllocateMore | |
| 93 | UNKOBJ_Free | |
| 94 | UNKOBJ_FreeRows | |
| 95 | UNKOBJ_ScCOAllocate | |
| 96 | UNKOBJ_ScCOReallocate | |
| 97 | UNKOBJ_COFree | |
| 98 | UNKOBJ_ScSzFromIdsAlloc | |
| 99 | ScCountNotifications | |
| 100 | ScCopyNotifications | |
| 101 | ScRelocNotifications | |
| 102 | ScCountProps | |
| 103 | ScCopyProps | |
| 104 | ScRelocProps | |
| 105 | LpValFindProp | |
| 106 | ScDupPropset | |
| 107 | FBadRglpszA | |
| 108 | FBadRglpszW | |
| 109 | FBadRowSet | |
| 110 | FBadRglpNameID | |
| 111 | FBadPropTag | |
| 112 | FBadRow | |
| 113 | FBadProp | |
| 114 | FBadColumnSet | |
| 115 | RTFSync | |
| 116 | WrapCompressedRTFStream | |
| 117 | __ValidateParameters | |
| 118 | __CPPValidateParameters | |
| 119 | FBadSortOrderSet | |
| 120 | FBadEntryList | |
| 121 | FBadRestriction | |
| 122 | ScUNCFromLocalPath | |
| 123 | ScLocalPathFromUNC | |
| 124 | HrIStorageFromStream | |
| 125 | HrValidateIPMSubtree | |
| 126 | OpenIMsgSession | |
| 127 | CloseIMsgSession | |
| 128 | OpenIMsgOnIStg | |
| 129 | SetAttribIMsgOnIStg | |
| 130 | GetAttribIMsgOnIStg | |
| 131 | MapStorageSCode | |
| 132 | ScMAPIXFromCMC | |
| 133 | ScMAPIXFromSMAPI | |
| 134 | EncodeID | |
| 135 | FDecodeID | |
| 136 | CchOfEncoding | |
| 137 | CbOfEncoded | |
| 138 | MAPISendDocuments | |
| 139 | MAPILogon | |
| 140 | MAPILogoff | |
| 141 | MAPISendMail | |
| 142 | MAPISaveMail | |
| 143 | MAPIReadMail | |
| 144 | MAPIFindNext | |
| 145 | MAPIDeleteMail | |
| 146 | MAPIAddress | |
| 147 | MAPIDetails | |
| 148 | MAPIResolveName | |
| 149 | BMAPISendMail | |
| 150 | BMAPISaveMail | |
| 151 | BMAPIReadMail | |
| 152 | BMAPIGetReadMail | |
| 153 | BMAPIFindNext | |
| 154 | BMAPIAddress | |
| 155 | BMAPIGetAddress | |
| 156 | BMAPIDetails | |
| 157 | BMAPIResolveName | |
| 158 | cmc_act_on | |
| 159 | cmc_free | |
| 160 | cmc_list | |
| 161 | cmc_logoff | |
| 162 | cmc_logon | |
| 163 | cmc_look_up | |
| 164 | cmc_query_configuration | |
| 165 | cmc_read | |
| 166 | cmc_send | |
| 167 | cmc_send_documents | |
| 168 | HrDispatchNotifications | |
| 169 | HrValidateParametersV | |
| 170 | HrValidateParametersValist | |
| 171 | ScCreateConversationIndex | |
| 172 | HrGetOmiProvidersFlags | |
| 173 | HrSetOmiProvidersFlagsInvalid | |
| 174 | GetOutlookVersion | |
| 175 | FixMAPI | |
| 176 | FGetComponentPath | |
| 177 | MAPISendMailW |
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 | ; | |
| 7 | LIBRARY MCICDA.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc |
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 | ; | |
| 7 | LIBRARY MCISEQ.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc |
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 | ; | |
| 7 | LIBRARY MCIWAVE.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc |
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 | ; | |
| 7 | LIBRARY MDMINST.dll | |
| 8 | EXPORTS | |
| 9 | ClassInstall32 |
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 | ; | |
| 7 | LIBRARY mf3216.dll | |
| 8 | EXPORTS | |
| 9 | ConvertEmfToWmf | |
| 10 | Mf3216DllInitialize |
lib/libc/mingw/lib-common/mfplat.def-2| ... | ... | @@ -233,7 +233,6 @@ MFTRegisterLocalByCLSID |
| 233 | 233 | MFTUnregister |
| 234 | 234 | MFTUnregisterLocal |
| 235 | 235 | MFTUnregisterLocalByCLSID |
| 236 | MFTraceError | |
| 237 | 236 | MFTraceFuncEnter |
| 238 | 237 | MFUnblockThread |
| 239 | 238 | MFUnjoinWorkQueue |
| ... | ... | @@ -245,6 +244,5 @@ MFUnwrapMediaType |
| 245 | 244 | MFValidateMediaTypeSize |
| 246 | 245 | MFWrapMediaType |
| 247 | 246 | MFWrapSocket |
| 248 | MFllMulDiv | |
| 249 | 247 | PropVariantFromStream |
| 250 | 248 | PropVariantToStream |
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 | ; | |
| 6 | LIBRARY "MFSENSORGROUP.dll" | |
| 7 | EXPORTS | |
| 8 | MFCheckProcessCapabilities | |
| 9 | MFCleanupVirtualCameraEntries | |
| 10 | MFCloneSensorProfile | |
| 11 | MFCreatePackageFamilyNameTag | |
| 12 | MFCreatePassthroughTranslatedMediaType | |
| 13 | MFCreateRelativePanelWatcher | |
| 14 | MFCreateSensorActivityMonitor | |
| 15 | MFCreateSensorDeviceBlobByObject | |
| 16 | MFCreateSensorGroup | |
| 17 | MFCreateSensorGroupById | |
| 18 | MFCreateSensorGroupCollection | |
| 19 | MFCreateSensorGroupIdManager | |
| 20 | MFCreateSensorProfile | |
| 21 | MFCreateSensorProfileCollection | |
| 22 | MFCreateSensorProfileWithFlags | |
| 23 | MFCreateSensorStream | |
| 24 | MFCreateTranslatedMediaType | |
| 25 | MFCreateTranslatedMediaType2 | |
| 26 | MFDeleteSensorGroupById | |
| 27 | MFGetDeviceFromFSUniqueId | |
| 28 | MFGetDeviceFromSGHash | |
| 29 | MFGetSGCH | |
| 30 | MFGetSensorDeviceProperty | |
| 31 | MFGetSensorDeviceRegistryProperty | |
| 32 | MFGetSensorGroupAttributesFromId | |
| 33 | MFGetSensorGroupPropertyName | |
| 34 | MFGetSensorOrientation | |
| 35 | MFInitializeSensorGroupStore | |
| 36 | MFIsSensorGroupName | |
| 37 | MFIsStreamAvailableToAppPackage | |
| 38 | MFLoadSensorGroupFromRegistry | |
| 39 | MFLoadSensorProfiles | |
| 40 | MFPublishSensorProfiles | |
| 41 | MFSensorProfileParseFilterSetString | |
| 42 | MFValidateSensorProfile | |
| 43 | MFWriteSensorGroupDataToRegistry |
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 | ; | |
| 6 | LIBRARY "mi.dll" | |
| 7 | EXPORTS | |
| 8 | MI_Application_InitializeV1 | |
| 9 | mi_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 | ; | |
| 7 | LIBRARY MIDIMAP.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc | |
| 10 | modMessage | |
| 11 | modmCallback |
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 | ; | |
| 7 | LIBRARY MLANG.dll | |
| 8 | EXPORTS | |
| 9 | IsConvertINetStringAvailable | |
| 10 | ConvertINetString | |
| 11 | ConvertINetUnicodeToMultiByte | |
| 12 | ConvertINetMultiByteToUnicode | |
| 13 | ConvertINetReset | |
| 14 | DllCanUnloadNow | |
| 15 | DllGetClassObject | |
| 16 | DllRegisterServer | |
| 17 | DllUnregisterServer | |
| 18 | GetGlobalFontLinkObject | |
| 19 | LcidToRfc1766A | |
| 20 | LcidToRfc1766W | |
| 21 | Rfc1766ToLcidA | |
| 22 | Rfc1766ToLcidW |
lib/libc/mingw/lib-common/mmdevapi.def+30| ... | ... | @@ -1,3 +1,33 @@ |
| 1 | 1 | LIBRARY "mmdevapi.dll" |
| 2 | 2 | EXPORTS |
| 3 | AETraceOutputDebugString | |
| 3 | 4 | ActivateAudioInterfaceAsync |
| 5 | CleanupDeviceAPI | |
| 6 | FlushDeviceTopologyCache | |
| 7 | GenerateMediaEvent | |
| 8 | GetCategoryPath | |
| 9 | GetClassFromEndpointId | |
| 10 | GetEndpointGuidFromEndpointId | |
| 11 | GetEndpointIdFromDeviceInterfaceId | |
| 12 | GetNeverSetAsDefaultProperty | |
| 13 | GetSessionIdFromEndpointId | |
| 14 | InitializeDeviceAPI | |
| 15 | MMDeviceCreateRegistryPropertyStore | |
| 16 | MMDeviceGetDeviceEnumerator | |
| 17 | MMDeviceGetEndpointManager | |
| 18 | MMDeviceGetPolicyConfig | |
| 19 | RegisterForMediaCallback | |
| 20 | UnregisterMediaCallback | |
| 21 | mmdDevFindMmDevProperty | |
| 22 | mmdDevGetDeviceIdFromPnpInterface | |
| 23 | mmdDevGetEndpointFormFactorFromMMDeviceId | |
| 24 | mmdDevGetInstanceIdFromInterfaceId | |
| 25 | mmdDevGetInstanceIdFromMMDeviceId | |
| 26 | mmdDevGetInterfaceClassGuid | |
| 27 | mmdDevGetInterfaceDataFlow | |
| 28 | mmdDevGetInterfaceIdFromMMDevice | |
| 29 | mmdDevGetInterfaceIdFromMMDeviceId | |
| 30 | mmdDevGetInterfacePropertyStore | |
| 31 | mmdDevGetMMDeviceFromInterfaceId | |
| 32 | mmdDevGetMMDeviceIdFromInterfaceId | |
| 33 | mmdDevGetRelatedInterfaceId |
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 | ; | |
| 7 | LIBRARY modemui.dll | |
| 8 | EXPORTS | |
| 9 | drvCommConfigDialogW | |
| 10 | drvCommConfigDialogA | |
| 11 | drvSetDefaultCommConfigW | |
| 12 | drvSetDefaultCommConfigA | |
| 13 | drvGetDefaultCommConfigW | |
| 14 | drvGetDefaultCommConfigA | |
| 15 | UnimodemDevConfigDialog | |
| 16 | CountryRunOnce | |
| 17 | UnimodemGetDefaultCommConfig | |
| 18 | UnimodemGetExtendedCaps | |
| 19 | InvokeControlPanel | |
| 20 | ModemCplDlgProc | |
| 21 | ModemPropPagesProvider | |
| 22 | QueryModemForCountrySettings |
lib/libc/mingw/lib-common/mpr.def+4| ... | ... | @@ -24,6 +24,8 @@ WNetAddConnection2A |
| 24 | 24 | WNetAddConnection2W |
| 25 | 25 | WNetAddConnection3A |
| 26 | 26 | WNetAddConnection3W |
| 27 | WNetAddConnection4A | |
| 28 | WNetAddConnection4W | |
| 27 | 29 | WNetAddConnectionA |
| 28 | 30 | WNetAddConnectionW |
| 29 | 31 | WNetCancelConnection2A |
| ... | ... | @@ -92,3 +94,5 @@ WNetSetLastErrorW |
| 92 | 94 | WNetSupportGlobalEnum |
| 93 | 95 | WNetUseConnectionA |
| 94 | 96 | WNetUseConnectionW |
| 97 | WNetUseConnection4A | |
| 98 | WNetUseConnection4W |
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 | ; | |
| 7 | LIBRARY MSAFD.dll | |
| 8 | EXPORTS | |
| 9 | WSPStartup |
lib/libc/mingw/lib-common/msajapi.def created+562| ... | ... | @@ -0,0 +1,562 @@ |
| 1 | LIBRARY msajapi | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AllJoynAcceptBusConnection | |
| 6 | AllJoynCloseBusHandle | |
| 7 | AllJoynConnectToBus | |
| 8 | AllJoynCreateBus | |
| 9 | AllJoynEnumEvents | |
| 10 | AllJoynEventSelect | |
| 11 | AllJoynEventWrite | |
| 12 | AllJoynEventsRegister | |
| 13 | AllJoynEventsUnregister | |
| 14 | AllJoynGetConfigurationDWORD | |
| 15 | AllJoynReceiveFromBus | |
| 16 | AllJoynSendToBus | |
| 17 | AllJoynSetDebugLevel | |
| 18 | GetHResultFromQStatus | |
| 19 | QCC_StatusText | |
| 20 | RouterNodeCleanup | |
| 21 | RouterNodeInitialize | |
| 22 | RouterNodeIsIdle | |
| 23 | RouterNodeRun | |
| 24 | alljoyn_aboutdata_create | |
| 25 | alljoyn_aboutdata_create_empty | |
| 26 | alljoyn_aboutdata_create_full | |
| 27 | alljoyn_aboutdata_createfrommsgarg | |
| 28 | alljoyn_aboutdata_createfromxml | |
| 29 | alljoyn_aboutdata_destroy | |
| 30 | alljoyn_aboutdata_getaboutdata | |
| 31 | alljoyn_aboutdata_getajsoftwareversion | |
| 32 | alljoyn_aboutdata_getannouncedaboutdata | |
| 33 | alljoyn_aboutdata_getappid | |
| 34 | alljoyn_aboutdata_getappname | |
| 35 | alljoyn_aboutdata_getdateofmanufacture | |
| 36 | alljoyn_aboutdata_getdefaultlanguage | |
| 37 | alljoyn_aboutdata_getdescription | |
| 38 | alljoyn_aboutdata_getdeviceid | |
| 39 | alljoyn_aboutdata_getdevicename | |
| 40 | alljoyn_aboutdata_getfield | |
| 41 | alljoyn_aboutdata_getfields | |
| 42 | alljoyn_aboutdata_getfieldsignature | |
| 43 | alljoyn_aboutdata_gethardwareversion | |
| 44 | alljoyn_aboutdata_getmanufacturer | |
| 45 | alljoyn_aboutdata_getmodelnumber | |
| 46 | alljoyn_aboutdata_getsoftwareversion | |
| 47 | alljoyn_aboutdata_getsupportedlanguages | |
| 48 | alljoyn_aboutdata_getsupporturl | |
| 49 | alljoyn_aboutdata_isfieldannounced | |
| 50 | alljoyn_aboutdata_isfieldlocalized | |
| 51 | alljoyn_aboutdata_isfieldrequired | |
| 52 | alljoyn_aboutdata_isvalid | |
| 53 | alljoyn_aboutdata_setappid | |
| 54 | alljoyn_aboutdata_setappid_fromstring | |
| 55 | alljoyn_aboutdata_setappname | |
| 56 | alljoyn_aboutdata_setdateofmanufacture | |
| 57 | alljoyn_aboutdata_setdefaultlanguage | |
| 58 | alljoyn_aboutdata_setdescription | |
| 59 | alljoyn_aboutdata_setdeviceid | |
| 60 | alljoyn_aboutdata_setdevicename | |
| 61 | alljoyn_aboutdata_setfield | |
| 62 | alljoyn_aboutdata_sethardwareversion | |
| 63 | alljoyn_aboutdata_setmanufacturer | |
| 64 | alljoyn_aboutdata_setmodelnumber | |
| 65 | alljoyn_aboutdata_setsoftwareversion | |
| 66 | alljoyn_aboutdata_setsupportedlanguage | |
| 67 | alljoyn_aboutdata_setsupporturl | |
| 68 | alljoyn_aboutdatalistener_create | |
| 69 | alljoyn_aboutdatalistener_destroy | |
| 70 | alljoyn_abouticon_clear | |
| 71 | alljoyn_abouticon_create | |
| 72 | alljoyn_abouticon_destroy | |
| 73 | alljoyn_abouticon_getcontent | |
| 74 | alljoyn_abouticon_geturl | |
| 75 | alljoyn_abouticon_setcontent | |
| 76 | alljoyn_abouticon_setcontent_frommsgarg | |
| 77 | alljoyn_abouticon_seturl | |
| 78 | alljoyn_abouticonobj_create | |
| 79 | alljoyn_abouticonobj_destroy | |
| 80 | alljoyn_abouticonproxy_create | |
| 81 | alljoyn_abouticonproxy_destroy | |
| 82 | alljoyn_abouticonproxy_geticon | |
| 83 | alljoyn_abouticonproxy_getversion | |
| 84 | alljoyn_aboutlistener_create | |
| 85 | alljoyn_aboutlistener_destroy | |
| 86 | alljoyn_aboutobj_announce | |
| 87 | alljoyn_aboutobj_announce_using_datalistener | |
| 88 | alljoyn_aboutobj_create | |
| 89 | alljoyn_aboutobj_destroy | |
| 90 | alljoyn_aboutobj_unannounce | |
| 91 | alljoyn_aboutobjectdescription_clear | |
| 92 | alljoyn_aboutobjectdescription_create | |
| 93 | alljoyn_aboutobjectdescription_create_full | |
| 94 | alljoyn_aboutobjectdescription_createfrommsgarg | |
| 95 | alljoyn_aboutobjectdescription_destroy | |
| 96 | alljoyn_aboutobjectdescription_getinterfacepaths | |
| 97 | alljoyn_aboutobjectdescription_getinterfaces | |
| 98 | alljoyn_aboutobjectdescription_getmsgarg | |
| 99 | alljoyn_aboutobjectdescription_getpaths | |
| 100 | alljoyn_aboutobjectdescription_hasinterface | |
| 101 | alljoyn_aboutobjectdescription_hasinterfaceatpath | |
| 102 | alljoyn_aboutobjectdescription_haspath | |
| 103 | alljoyn_aboutproxy_create | |
| 104 | alljoyn_aboutproxy_destroy | |
| 105 | alljoyn_aboutproxy_getaboutdata | |
| 106 | alljoyn_aboutproxy_getobjectdescription | |
| 107 | alljoyn_aboutproxy_getversion | |
| 108 | alljoyn_applicationstatelistener_create | |
| 109 | alljoyn_applicationstatelistener_destroy | |
| 110 | alljoyn_authlistener_create | |
| 111 | alljoyn_authlistener_destroy | |
| 112 | alljoyn_authlistener_requestcredentialsresponse | |
| 113 | alljoyn_authlistener_setsharedsecret | |
| 114 | alljoyn_authlistener_verifycredentialsresponse | |
| 115 | alljoyn_authlistenerasync_create | |
| 116 | alljoyn_authlistenerasync_destroy | |
| 117 | alljoyn_autopinger_adddestination | |
| 118 | alljoyn_autopinger_addpinggroup | |
| 119 | alljoyn_autopinger_create | |
| 120 | alljoyn_autopinger_destroy | |
| 121 | alljoyn_autopinger_pause | |
| 122 | alljoyn_autopinger_removedestination | |
| 123 | alljoyn_autopinger_removepinggroup | |
| 124 | alljoyn_autopinger_resume | |
| 125 | alljoyn_autopinger_setpinginterval | |
| 126 | alljoyn_busattachment_addlogonentry | |
| 127 | alljoyn_busattachment_addmatch | |
| 128 | alljoyn_busattachment_advertisename | |
| 129 | alljoyn_busattachment_bindsessionport | |
| 130 | alljoyn_busattachment_canceladvertisename | |
| 131 | alljoyn_busattachment_cancelfindadvertisedname | |
| 132 | alljoyn_busattachment_cancelfindadvertisednamebytransport | |
| 133 | alljoyn_busattachment_cancelwhoimplements_interface | |
| 134 | alljoyn_busattachment_cancelwhoimplements_interfaces | |
| 135 | alljoyn_busattachment_clearkeys | |
| 136 | alljoyn_busattachment_clearkeystore | |
| 137 | alljoyn_busattachment_connect | |
| 138 | alljoyn_busattachment_create | |
| 139 | alljoyn_busattachment_create_concurrency | |
| 140 | alljoyn_busattachment_createinterface | |
| 141 | alljoyn_busattachment_createinterface_secure | |
| 142 | alljoyn_busattachment_createinterfacesfromxml | |
| 143 | alljoyn_busattachment_deletedefaultkeystore | |
| 144 | alljoyn_busattachment_deleteinterface | |
| 145 | alljoyn_busattachment_destroy | |
| 146 | alljoyn_busattachment_disconnect | |
| 147 | alljoyn_busattachment_enableconcurrentcallbacks | |
| 148 | alljoyn_busattachment_enablepeersecurity | |
| 149 | alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener | |
| 150 | alljoyn_busattachment_findadvertisedname | |
| 151 | alljoyn_busattachment_findadvertisednamebytransport | |
| 152 | alljoyn_busattachment_getalljoyndebugobj | |
| 153 | alljoyn_busattachment_getalljoynproxyobj | |
| 154 | alljoyn_busattachment_getconcurrency | |
| 155 | alljoyn_busattachment_getconnectspec | |
| 156 | alljoyn_busattachment_getdbusproxyobj | |
| 157 | alljoyn_busattachment_getglobalguidstring | |
| 158 | alljoyn_busattachment_getinterface | |
| 159 | alljoyn_busattachment_getinterfaces | |
| 160 | alljoyn_busattachment_getkeyexpiration | |
| 161 | alljoyn_busattachment_getpeerguid | |
| 162 | alljoyn_busattachment_getpermissionconfigurator | |
| 163 | alljoyn_busattachment_gettimestamp | |
| 164 | alljoyn_busattachment_getuniquename | |
| 165 | alljoyn_busattachment_isconnected | |
| 166 | alljoyn_busattachment_ispeersecurityenabled | |
| 167 | alljoyn_busattachment_isstarted | |
| 168 | alljoyn_busattachment_isstopping | |
| 169 | alljoyn_busattachment_join | |
| 170 | alljoyn_busattachment_joinsession | |
| 171 | alljoyn_busattachment_joinsessionasync | |
| 172 | alljoyn_busattachment_leavesession | |
| 173 | alljoyn_busattachment_namehasowner | |
| 174 | alljoyn_busattachment_ping | |
| 175 | alljoyn_busattachment_registeraboutlistener | |
| 176 | alljoyn_busattachment_registerapplicationstatelistener | |
| 177 | alljoyn_busattachment_registerbuslistener | |
| 178 | alljoyn_busattachment_registerbusobject | |
| 179 | alljoyn_busattachment_registerbusobject_secure | |
| 180 | alljoyn_busattachment_registerkeystorelistener | |
| 181 | alljoyn_busattachment_registersignalhandler | |
| 182 | alljoyn_busattachment_registersignalhandlerwithrule | |
| 183 | alljoyn_busattachment_releasename | |
| 184 | alljoyn_busattachment_reloadkeystore | |
| 185 | alljoyn_busattachment_removematch | |
| 186 | alljoyn_busattachment_removesessionmember | |
| 187 | alljoyn_busattachment_requestname | |
| 188 | alljoyn_busattachment_secureconnection | |
| 189 | alljoyn_busattachment_secureconnectionasync | |
| 190 | alljoyn_busattachment_setdaemondebug | |
| 191 | alljoyn_busattachment_setkeyexpiration | |
| 192 | alljoyn_busattachment_setlinktimeout | |
| 193 | alljoyn_busattachment_setlinktimeoutasync | |
| 194 | alljoyn_busattachment_setsessionlistener | |
| 195 | alljoyn_busattachment_start | |
| 196 | alljoyn_busattachment_stop | |
| 197 | alljoyn_busattachment_unbindsessionport | |
| 198 | alljoyn_busattachment_unregisteraboutlistener | |
| 199 | alljoyn_busattachment_unregisterallaboutlisteners | |
| 200 | alljoyn_busattachment_unregisterallhandlers | |
| 201 | alljoyn_busattachment_unregisterapplicationstatelistener | |
| 202 | alljoyn_busattachment_unregisterbuslistener | |
| 203 | alljoyn_busattachment_unregisterbusobject | |
| 204 | alljoyn_busattachment_unregistersignalhandler | |
| 205 | alljoyn_busattachment_unregistersignalhandlerwithrule | |
| 206 | alljoyn_busattachment_whoimplements_interface | |
| 207 | alljoyn_busattachment_whoimplements_interfaces | |
| 208 | alljoyn_buslistener_create | |
| 209 | alljoyn_buslistener_destroy | |
| 210 | alljoyn_busobject_addinterface | |
| 211 | alljoyn_busobject_addinterface_announced | |
| 212 | alljoyn_busobject_addmethodhandler | |
| 213 | alljoyn_busobject_addmethodhandlers | |
| 214 | alljoyn_busobject_cancelsessionlessmessage | |
| 215 | alljoyn_busobject_cancelsessionlessmessage_serial | |
| 216 | alljoyn_busobject_create | |
| 217 | alljoyn_busobject_destroy | |
| 218 | alljoyn_busobject_emitpropertieschanged | |
| 219 | alljoyn_busobject_emitpropertychanged | |
| 220 | alljoyn_busobject_getannouncedinterfacenames | |
| 221 | alljoyn_busobject_getbusattachment | |
| 222 | alljoyn_busobject_getname | |
| 223 | alljoyn_busobject_getpath | |
| 224 | alljoyn_busobject_issecure | |
| 225 | alljoyn_busobject_methodreply_args | |
| 226 | alljoyn_busobject_methodreply_err | |
| 227 | alljoyn_busobject_methodreply_status | |
| 228 | alljoyn_busobject_setannounceflag | |
| 229 | alljoyn_busobject_signal | |
| 230 | alljoyn_credentials_clear | |
| 231 | alljoyn_credentials_create | |
| 232 | alljoyn_credentials_destroy | |
| 233 | alljoyn_credentials_getcertchain | |
| 234 | alljoyn_credentials_getexpiration | |
| 235 | alljoyn_credentials_getlogonentry | |
| 236 | alljoyn_credentials_getpassword | |
| 237 | alljoyn_credentials_getprivateKey | |
| 238 | alljoyn_credentials_getusername | |
| 239 | alljoyn_credentials_isset | |
| 240 | alljoyn_credentials_setcertchain | |
| 241 | alljoyn_credentials_setexpiration | |
| 242 | alljoyn_credentials_setlogonentry | |
| 243 | alljoyn_credentials_setpassword | |
| 244 | alljoyn_credentials_setprivatekey | |
| 245 | alljoyn_credentials_setusername | |
| 246 | alljoyn_getbuildinfo | |
| 247 | alljoyn_getnumericversion | |
| 248 | alljoyn_getversion | |
| 249 | alljoyn_init | |
| 250 | alljoyn_interfacedescription_activate | |
| 251 | alljoyn_interfacedescription_addannotation | |
| 252 | alljoyn_interfacedescription_addargannotation | |
| 253 | alljoyn_interfacedescription_addmember | |
| 254 | alljoyn_interfacedescription_addmemberannotation | |
| 255 | alljoyn_interfacedescription_addmethod | |
| 256 | alljoyn_interfacedescription_addproperty | |
| 257 | alljoyn_interfacedescription_addpropertyannotation | |
| 258 | alljoyn_interfacedescription_addsignal | |
| 259 | alljoyn_interfacedescription_eql | |
| 260 | alljoyn_interfacedescription_getannotation | |
| 261 | alljoyn_interfacedescription_getannotationatindex | |
| 262 | alljoyn_interfacedescription_getannotationscount | |
| 263 | alljoyn_interfacedescription_getargdescriptionforlanguage | |
| 264 | alljoyn_interfacedescription_getdescriptionforlanguage | |
| 265 | alljoyn_interfacedescription_getdescriptionlanguages | |
| 266 | alljoyn_interfacedescription_getdescriptionlanguages2 | |
| 267 | alljoyn_interfacedescription_getdescriptiontranslationcallback | |
| 268 | alljoyn_interfacedescription_getmember | |
| 269 | alljoyn_interfacedescription_getmemberannotation | |
| 270 | alljoyn_interfacedescription_getmemberargannotation | |
| 271 | alljoyn_interfacedescription_getmemberdescriptionforlanguage | |
| 272 | alljoyn_interfacedescription_getmembers | |
| 273 | alljoyn_interfacedescription_getmethod | |
| 274 | alljoyn_interfacedescription_getname | |
| 275 | alljoyn_interfacedescription_getproperties | |
| 276 | alljoyn_interfacedescription_getproperty | |
| 277 | alljoyn_interfacedescription_getpropertyannotation | |
| 278 | alljoyn_interfacedescription_getpropertydescriptionforlanguage | |
| 279 | alljoyn_interfacedescription_getsecuritypolicy | |
| 280 | alljoyn_interfacedescription_getsignal | |
| 281 | alljoyn_interfacedescription_hasdescription | |
| 282 | alljoyn_interfacedescription_hasmember | |
| 283 | alljoyn_interfacedescription_hasproperties | |
| 284 | alljoyn_interfacedescription_hasproperty | |
| 285 | alljoyn_interfacedescription_introspect | |
| 286 | alljoyn_interfacedescription_issecure | |
| 287 | alljoyn_interfacedescription_member_eql | |
| 288 | alljoyn_interfacedescription_member_getannotation | |
| 289 | alljoyn_interfacedescription_member_getannotationatindex | |
| 290 | alljoyn_interfacedescription_member_getannotationscount | |
| 291 | alljoyn_interfacedescription_member_getargannotation | |
| 292 | alljoyn_interfacedescription_member_getargannotationatindex | |
| 293 | alljoyn_interfacedescription_member_getargannotationscount | |
| 294 | alljoyn_interfacedescription_property_eql | |
| 295 | alljoyn_interfacedescription_property_getannotation | |
| 296 | alljoyn_interfacedescription_property_getannotationatindex | |
| 297 | alljoyn_interfacedescription_property_getannotationscount | |
| 298 | alljoyn_interfacedescription_setargdescription | |
| 299 | alljoyn_interfacedescription_setargdescriptionforlanguage | |
| 300 | alljoyn_interfacedescription_setdescription | |
| 301 | alljoyn_interfacedescription_setdescriptionforlanguage | |
| 302 | alljoyn_interfacedescription_setdescriptionlanguage | |
| 303 | alljoyn_interfacedescription_setdescriptiontranslationcallback | |
| 304 | alljoyn_interfacedescription_setmemberdescription | |
| 305 | alljoyn_interfacedescription_setmemberdescriptionforlanguage | |
| 306 | alljoyn_interfacedescription_setpropertydescription | |
| 307 | alljoyn_interfacedescription_setpropertydescriptionforlanguage | |
| 308 | alljoyn_keystorelistener_create | |
| 309 | alljoyn_keystorelistener_destroy | |
| 310 | alljoyn_keystorelistener_getkeys | |
| 311 | alljoyn_keystorelistener_putkeys | |
| 312 | alljoyn_keystorelistener_with_synchronization_create | |
| 313 | alljoyn_message_create | |
| 314 | alljoyn_message_description | |
| 315 | alljoyn_message_destroy | |
| 316 | alljoyn_message_eql | |
| 317 | alljoyn_message_getarg | |
| 318 | alljoyn_message_getargs | |
| 319 | alljoyn_message_getauthmechanism | |
| 320 | alljoyn_message_getcallserial | |
| 321 | alljoyn_message_getcompressiontoken | |
| 322 | alljoyn_message_getdestination | |
| 323 | alljoyn_message_geterrorname | |
| 324 | alljoyn_message_getflags | |
| 325 | alljoyn_message_getinterface | |
| 326 | alljoyn_message_getmembername | |
| 327 | alljoyn_message_getobjectpath | |
| 328 | alljoyn_message_getreceiveendpointname | |
| 329 | alljoyn_message_getreplyserial | |
| 330 | alljoyn_message_getsender | |
| 331 | alljoyn_message_getsessionid | |
| 332 | alljoyn_message_getsignature | |
| 333 | alljoyn_message_gettimestamp | |
| 334 | alljoyn_message_gettype | |
| 335 | alljoyn_message_isbroadcastsignal | |
| 336 | alljoyn_message_isencrypted | |
| 337 | alljoyn_message_isexpired | |
| 338 | alljoyn_message_isglobalbroadcast | |
| 339 | alljoyn_message_issessionless | |
| 340 | alljoyn_message_isunreliable | |
| 341 | alljoyn_message_parseargs | |
| 342 | alljoyn_message_setendianess | |
| 343 | alljoyn_message_tostring | |
| 344 | alljoyn_msgarg_array_create | |
| 345 | alljoyn_msgarg_array_element | |
| 346 | alljoyn_msgarg_array_get | |
| 347 | alljoyn_msgarg_array_set | |
| 348 | alljoyn_msgarg_array_set_offset | |
| 349 | alljoyn_msgarg_array_signature | |
| 350 | alljoyn_msgarg_array_tostring | |
| 351 | alljoyn_msgarg_clear | |
| 352 | alljoyn_msgarg_clone | |
| 353 | alljoyn_msgarg_copy | |
| 354 | alljoyn_msgarg_create | |
| 355 | alljoyn_msgarg_create_and_set | |
| 356 | alljoyn_msgarg_destroy | |
| 357 | alljoyn_msgarg_equal | |
| 358 | alljoyn_msgarg_get | |
| 359 | alljoyn_msgarg_get_array_element | |
| 360 | alljoyn_msgarg_get_array_elementsignature | |
| 361 | alljoyn_msgarg_get_array_numberofelements | |
| 362 | alljoyn_msgarg_get_bool | |
| 363 | alljoyn_msgarg_get_bool_array | |
| 364 | alljoyn_msgarg_get_double | |
| 365 | alljoyn_msgarg_get_double_array | |
| 366 | alljoyn_msgarg_get_int16 | |
| 367 | alljoyn_msgarg_get_int16_array | |
| 368 | alljoyn_msgarg_get_int32 | |
| 369 | alljoyn_msgarg_get_int32_array | |
| 370 | alljoyn_msgarg_get_int64 | |
| 371 | alljoyn_msgarg_get_int64_array | |
| 372 | alljoyn_msgarg_get_objectpath | |
| 373 | alljoyn_msgarg_get_signature | |
| 374 | alljoyn_msgarg_get_string | |
| 375 | alljoyn_msgarg_get_uint16 | |
| 376 | alljoyn_msgarg_get_uint16_array | |
| 377 | alljoyn_msgarg_get_uint32 | |
| 378 | alljoyn_msgarg_get_uint32_array | |
| 379 | alljoyn_msgarg_get_uint64 | |
| 380 | alljoyn_msgarg_get_uint64_array | |
| 381 | alljoyn_msgarg_get_uint8 | |
| 382 | alljoyn_msgarg_get_uint8_array | |
| 383 | alljoyn_msgarg_get_variant | |
| 384 | alljoyn_msgarg_get_variant_array | |
| 385 | alljoyn_msgarg_getdictelement | |
| 386 | alljoyn_msgarg_getkey | |
| 387 | alljoyn_msgarg_getmember | |
| 388 | alljoyn_msgarg_getnummembers | |
| 389 | alljoyn_msgarg_gettype | |
| 390 | alljoyn_msgarg_getvalue | |
| 391 | alljoyn_msgarg_hassignature | |
| 392 | alljoyn_msgarg_set | |
| 393 | alljoyn_msgarg_set_and_stabilize | |
| 394 | alljoyn_msgarg_set_bool | |
| 395 | alljoyn_msgarg_set_bool_array | |
| 396 | alljoyn_msgarg_set_double | |
| 397 | alljoyn_msgarg_set_double_array | |
| 398 | alljoyn_msgarg_set_int16 | |
| 399 | alljoyn_msgarg_set_int16_array | |
| 400 | alljoyn_msgarg_set_int32 | |
| 401 | alljoyn_msgarg_set_int32_array | |
| 402 | alljoyn_msgarg_set_int64 | |
| 403 | alljoyn_msgarg_set_int64_array | |
| 404 | alljoyn_msgarg_set_objectpath | |
| 405 | alljoyn_msgarg_set_objectpath_array | |
| 406 | alljoyn_msgarg_set_signature | |
| 407 | alljoyn_msgarg_set_signature_array | |
| 408 | alljoyn_msgarg_set_string | |
| 409 | alljoyn_msgarg_set_string_array | |
| 410 | alljoyn_msgarg_set_uint16 | |
| 411 | alljoyn_msgarg_set_uint16_array | |
| 412 | alljoyn_msgarg_set_uint32 | |
| 413 | alljoyn_msgarg_set_uint32_array | |
| 414 | alljoyn_msgarg_set_uint64 | |
| 415 | alljoyn_msgarg_set_uint64_array | |
| 416 | alljoyn_msgarg_set_uint8 | |
| 417 | alljoyn_msgarg_set_uint8_array | |
| 418 | alljoyn_msgarg_setdictentry | |
| 419 | alljoyn_msgarg_setstruct | |
| 420 | alljoyn_msgarg_signature | |
| 421 | alljoyn_msgarg_stabilize | |
| 422 | alljoyn_msgarg_tostring | |
| 423 | alljoyn_observer_create | |
| 424 | alljoyn_observer_destroy | |
| 425 | alljoyn_observer_get | |
| 426 | alljoyn_observer_getfirst | |
| 427 | alljoyn_observer_getnext | |
| 428 | alljoyn_observer_registerlistener | |
| 429 | alljoyn_observer_unregisteralllisteners | |
| 430 | alljoyn_observer_unregisterlistener | |
| 431 | alljoyn_observerlistener_create | |
| 432 | alljoyn_observerlistener_destroy | |
| 433 | alljoyn_passwordmanager_setcredentials | |
| 434 | alljoyn_permissionconfigurationlistener_create | |
| 435 | alljoyn_permissionconfigurationlistener_destroy | |
| 436 | alljoyn_permissionconfigurator_certificatechain_destroy | |
| 437 | alljoyn_permissionconfigurator_certificateid_cleanup | |
| 438 | alljoyn_permissionconfigurator_certificateidarray_cleanup | |
| 439 | alljoyn_permissionconfigurator_claim | |
| 440 | alljoyn_permissionconfigurator_endmanagement | |
| 441 | alljoyn_permissionconfigurator_getapplicationstate | |
| 442 | alljoyn_permissionconfigurator_getclaimcapabilities | |
| 443 | alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo | |
| 444 | alljoyn_permissionconfigurator_getdefaultclaimcapabilities | |
| 445 | alljoyn_permissionconfigurator_getdefaultpolicy | |
| 446 | alljoyn_permissionconfigurator_getidentity | |
| 447 | alljoyn_permissionconfigurator_getidentitycertificateid | |
| 448 | alljoyn_permissionconfigurator_getmanifests | |
| 449 | alljoyn_permissionconfigurator_getmanifesttemplate | |
| 450 | alljoyn_permissionconfigurator_getmembershipsummaries | |
| 451 | alljoyn_permissionconfigurator_getpolicy | |
| 452 | alljoyn_permissionconfigurator_getpublickey | |
| 453 | alljoyn_permissionconfigurator_installmanifests | |
| 454 | alljoyn_permissionconfigurator_installmembership | |
| 455 | alljoyn_permissionconfigurator_manifestarray_cleanup | |
| 456 | alljoyn_permissionconfigurator_manifesttemplate_destroy | |
| 457 | alljoyn_permissionconfigurator_policy_destroy | |
| 458 | alljoyn_permissionconfigurator_publickey_destroy | |
| 459 | alljoyn_permissionconfigurator_removemembership | |
| 460 | alljoyn_permissionconfigurator_reset | |
| 461 | alljoyn_permissionconfigurator_resetpolicy | |
| 462 | alljoyn_permissionconfigurator_setapplicationstate | |
| 463 | alljoyn_permissionconfigurator_setclaimcapabilities | |
| 464 | alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo | |
| 465 | alljoyn_permissionconfigurator_setmanifestfromxml | |
| 466 | alljoyn_permissionconfigurator_setmanifesttemplatefromxml | |
| 467 | alljoyn_permissionconfigurator_startmanagement | |
| 468 | alljoyn_permissionconfigurator_updateidentity | |
| 469 | alljoyn_permissionconfigurator_updatepolicy | |
| 470 | alljoyn_pinglistener_create | |
| 471 | alljoyn_pinglistener_destroy | |
| 472 | alljoyn_proxybusobject_addchild | |
| 473 | alljoyn_proxybusobject_addinterface | |
| 474 | alljoyn_proxybusobject_addinterface_by_name | |
| 475 | alljoyn_proxybusobject_copy | |
| 476 | alljoyn_proxybusobject_create | |
| 477 | alljoyn_proxybusobject_create_secure | |
| 478 | alljoyn_proxybusobject_destroy | |
| 479 | alljoyn_proxybusobject_enablepropertycaching | |
| 480 | alljoyn_proxybusobject_getallproperties | |
| 481 | alljoyn_proxybusobject_getallpropertiesasync | |
| 482 | alljoyn_proxybusobject_getchild | |
| 483 | alljoyn_proxybusobject_getchildren | |
| 484 | alljoyn_proxybusobject_getinterface | |
| 485 | alljoyn_proxybusobject_getinterfaces | |
| 486 | alljoyn_proxybusobject_getpath | |
| 487 | alljoyn_proxybusobject_getproperty | |
| 488 | alljoyn_proxybusobject_getpropertyasync | |
| 489 | alljoyn_proxybusobject_getservicename | |
| 490 | alljoyn_proxybusobject_getsessionid | |
| 491 | alljoyn_proxybusobject_getuniquename | |
| 492 | alljoyn_proxybusobject_implementsinterface | |
| 493 | alljoyn_proxybusobject_introspectremoteobject | |
| 494 | alljoyn_proxybusobject_introspectremoteobjectasync | |
| 495 | alljoyn_proxybusobject_issecure | |
| 496 | alljoyn_proxybusobject_isvalid | |
| 497 | alljoyn_proxybusobject_methodcall | |
| 498 | alljoyn_proxybusobject_methodcall_member | |
| 499 | alljoyn_proxybusobject_methodcall_member_noreply | |
| 500 | alljoyn_proxybusobject_methodcall_noreply | |
| 501 | alljoyn_proxybusobject_methodcallasync | |
| 502 | alljoyn_proxybusobject_methodcallasync_member | |
| 503 | alljoyn_proxybusobject_parsexml | |
| 504 | alljoyn_proxybusobject_ref_create | |
| 505 | alljoyn_proxybusobject_ref_decref | |
| 506 | alljoyn_proxybusobject_ref_get | |
| 507 | alljoyn_proxybusobject_ref_incref | |
| 508 | alljoyn_proxybusobject_registerpropertieschangedlistener | |
| 509 | alljoyn_proxybusobject_removechild | |
| 510 | alljoyn_proxybusobject_secureconnection | |
| 511 | alljoyn_proxybusobject_secureconnectionasync | |
| 512 | alljoyn_proxybusobject_setproperty | |
| 513 | alljoyn_proxybusobject_setpropertyasync | |
| 514 | alljoyn_proxybusobject_unregisterpropertieschangedlistener | |
| 515 | alljoyn_routerinit | |
| 516 | alljoyn_routerinitwithconfig | |
| 517 | alljoyn_routershutdown | |
| 518 | alljoyn_securityapplicationproxy_claim | |
| 519 | alljoyn_securityapplicationproxy_computemanifestdigest | |
| 520 | alljoyn_securityapplicationproxy_create | |
| 521 | alljoyn_securityapplicationproxy_destroy | |
| 522 | alljoyn_securityapplicationproxy_digest_destroy | |
| 523 | alljoyn_securityapplicationproxy_eccpublickey_destroy | |
| 524 | alljoyn_securityapplicationproxy_endmanagement | |
| 525 | alljoyn_securityapplicationproxy_getapplicationstate | |
| 526 | alljoyn_securityapplicationproxy_getclaimcapabilities | |
| 527 | alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo | |
| 528 | alljoyn_securityapplicationproxy_getdefaultpolicy | |
| 529 | alljoyn_securityapplicationproxy_geteccpublickey | |
| 530 | alljoyn_securityapplicationproxy_getmanifesttemplate | |
| 531 | alljoyn_securityapplicationproxy_getpermissionmanagementsessionport | |
| 532 | alljoyn_securityapplicationproxy_getpolicy | |
| 533 | alljoyn_securityapplicationproxy_installmembership | |
| 534 | alljoyn_securityapplicationproxy_manifest_destroy | |
| 535 | alljoyn_securityapplicationproxy_manifesttemplate_destroy | |
| 536 | alljoyn_securityapplicationproxy_policy_destroy | |
| 537 | alljoyn_securityapplicationproxy_reset | |
| 538 | alljoyn_securityapplicationproxy_resetpolicy | |
| 539 | alljoyn_securityapplicationproxy_setmanifestsignature | |
| 540 | alljoyn_securityapplicationproxy_signmanifest | |
| 541 | alljoyn_securityapplicationproxy_startmanagement | |
| 542 | alljoyn_securityapplicationproxy_updateidentity | |
| 543 | alljoyn_securityapplicationproxy_updatepolicy | |
| 544 | alljoyn_sessionlistener_create | |
| 545 | alljoyn_sessionlistener_destroy | |
| 546 | alljoyn_sessionopts_cmp | |
| 547 | alljoyn_sessionopts_create | |
| 548 | alljoyn_sessionopts_destroy | |
| 549 | alljoyn_sessionopts_get_multipoint | |
| 550 | alljoyn_sessionopts_get_proximity | |
| 551 | alljoyn_sessionopts_get_traffic | |
| 552 | alljoyn_sessionopts_get_transports | |
| 553 | alljoyn_sessionopts_iscompatible | |
| 554 | alljoyn_sessionopts_set_multipoint | |
| 555 | alljoyn_sessionopts_set_proximity | |
| 556 | alljoyn_sessionopts_set_traffic | |
| 557 | alljoyn_sessionopts_set_transports | |
| 558 | alljoyn_sessionportlistener_create | |
| 559 | alljoyn_sessionportlistener_destroy | |
| 560 | alljoyn_shutdown | |
| 561 | alljoyn_unity_deferred_callbacks_process | |
| 562 | alljoyn_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 | ; | |
| 7 | LIBRARY MSCAT32.dll | |
| 8 | EXPORTS | |
| 9 | CryptCATVerifyMember | |
| 10 | CatalogCompactHashDatabase | |
| 11 | CryptCATAdminAcquireContext | |
| 12 | CryptCATAdminAddCatalog | |
| 13 | CryptCATAdminCalcHashFromFileHandle | |
| 14 | CryptCATAdminEnumCatalogFromHash | |
| 15 | CryptCATAdminReleaseCatalogContext | |
| 16 | CryptCATAdminReleaseContext | |
| 17 | CryptCATCDFClose | |
| 18 | CryptCATCDFEnumAttributes | |
| 19 | CryptCATCDFEnumAttributesWithCDFTag | |
| 20 | CryptCATCDFEnumCatAttributes | |
| 21 | CryptCATCDFEnumMembers | |
| 22 | CryptCATCDFEnumMembersByCDFTag | |
| 23 | CryptCATCDFEnumMembersByCDFTagEx | |
| 24 | CryptCATCDFOpen | |
| 25 | CryptCATCatalogInfoFromContext | |
| 26 | CryptCATClose | |
| 27 | CryptCATEnumerateAttr | |
| 28 | CryptCATEnumerateCatAttr | |
| 29 | CryptCATEnumerateMember | |
| 30 | CryptCATGetAttrInfo | |
| 31 | CryptCATGetCatAttrInfo | |
| 32 | CryptCATGetMemberInfo | |
| 33 | CryptCATHandleFromStore | |
| 34 | CryptCATOpen | |
| 35 | CryptCATPersistStore | |
| 36 | CryptCATPutAttrInfo | |
| 37 | CryptCATPutCatAttrInfo | |
| 38 | CryptCATPutMemberInfo | |
| 39 | CryptCATStoreFromHandle | |
| 40 | DllRegisterServer | |
| 41 | DllUnregisterServer | |
| 42 | IsCatalogFile | |
| 43 | MsCatConstructHashTag | |
| 44 | MsCatFreeHashTag |
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 | ; | |
| 6 | LIBRARY "mscms.dll" | |
| 7 | EXPORTS | |
| 8 | AssociateColorProfileWithDeviceA | |
| 9 | AssociateColorProfileWithDeviceW | |
| 10 | CheckBitmapBits | |
| 11 | CheckColors | |
| 12 | CloseColorProfile | |
| 13 | CloseDisplay | |
| 14 | ColorCplGetDefaultProfileScope | |
| 15 | ColorCplGetDefaultRenderingIntentScope | |
| 16 | ColorCplGetProfileProperties | |
| 17 | ColorCplHasSystemWideAssociationListChanged | |
| 18 | ColorCplInitialize | |
| 19 | ColorCplLoadAssociationList | |
| 20 | ColorCplMergeAssociationLists | |
| 21 | ColorCplOverwritePerUserAssociationList | |
| 22 | ColorCplReleaseProfileProperties | |
| 23 | ColorCplResetSystemWideAssociationListChangedWarning | |
| 24 | ColorCplSaveAssociationList | |
| 25 | ColorCplSetUsePerUserProfiles | |
| 26 | ColorCplUninitialize | |
| 27 | ConvertColorNameToIndex | |
| 28 | ConvertIndexToColorName | |
| 29 | CreateColorTransformA | |
| 30 | CreateColorTransformW | |
| 31 | CreateDeviceLinkProfile | |
| 32 | CreateMultiProfileTransform | |
| 33 | CreateProfileFromLogColorSpaceA | |
| 34 | CreateProfileFromLogColorSpaceW | |
| 35 | DccwCreateDisplayProfileAssociationList | |
| 36 | DccwGetDisplayProfileAssociationList | |
| 37 | DccwGetGamutSize | |
| 38 | DccwReleaseDisplayProfileAssociationList | |
| 39 | DccwSetDisplayProfileAssociationList | |
| 40 | DeleteColorTransform | |
| 41 | DeviceRenameEvent | |
| 42 | DisassociateColorProfileFromDeviceA | |
| 43 | DisassociateColorProfileFromDeviceW | |
| 44 | ; DllCanUnloadNow | |
| 45 | ; DllGetClassObject | |
| 46 | EnumColorProfilesA | |
| 47 | EnumColorProfilesW | |
| 48 | GenerateCopyFilePaths | |
| 49 | GetCMMInfo | |
| 50 | GetColorDirectoryA | |
| 51 | GetColorDirectoryW | |
| 52 | GetColorProfileElement | |
| 53 | GetColorProfileElementTag | |
| 54 | GetColorProfileFromHandle | |
| 55 | GetColorProfileHeader | |
| 56 | GetCountColorProfileElements | |
| 57 | GetNamedProfileInfo | |
| 58 | GetPS2ColorRenderingDictionary | |
| 59 | GetPS2ColorRenderingIntent | |
| 60 | GetPS2ColorSpaceArray | |
| 61 | GetStandardColorSpaceProfileA | |
| 62 | GetStandardColorSpaceProfileW | |
| 63 | InstallColorProfileA | |
| 64 | InstallColorProfileW | |
| 65 | InternalGetDeviceConfig | |
| 66 | InternalGetPS2CSAFromLCS | |
| 67 | InternalGetPS2ColorRenderingDictionary | |
| 68 | InternalGetPS2ColorSpaceArray | |
| 69 | InternalGetPS2PreviewCRD | |
| 70 | InternalRefreshCalibration | |
| 71 | InternalSetDeviceConfig | |
| 72 | InternalWcsAssociateColorProfileWithDevice | |
| 73 | InternalWcsDisassociateColorProfileWithDevice | |
| 74 | IsColorProfileTagPresent | |
| 75 | IsColorProfileValid | |
| 76 | OpenColorProfileA | |
| 77 | OpenColorProfileW | |
| 78 | OpenDisplay | |
| 79 | RegisterCMMA | |
| 80 | RegisterCMMW | |
| 81 | SelectCMM | |
| 82 | SetColorProfileElement | |
| 83 | SetColorProfileElementReference | |
| 84 | SetColorProfileElementSize | |
| 85 | SetColorProfileHeader | |
| 86 | SetStandardColorSpaceProfileA | |
| 87 | SetStandardColorSpaceProfileW | |
| 88 | SpoolerCopyFileEvent | |
| 89 | TranslateBitmapBits | |
| 90 | TranslateColors | |
| 91 | UninstallColorProfileA | |
| 92 | UninstallColorProfileW | |
| 93 | UnregisterCMMA | |
| 94 | UnregisterCMMW | |
| 95 | WcsAssociateColorProfileWithDevice | |
| 96 | WcsCheckColors | |
| 97 | WcsCreateIccProfile | |
| 98 | WcsDisassociateColorProfileFromDevice | |
| 99 | WcsEnumColorProfiles | |
| 100 | WcsEnumColorProfilesSize | |
| 101 | WcsGetCalibrationManagementState | |
| 102 | WcsGetDefaultColorProfile | |
| 103 | WcsGetDefaultColorProfileSize | |
| 104 | WcsGetDefaultRenderingIntent | |
| 105 | WcsGetUsePerUserProfiles | |
| 106 | WcsGpCanInstallOrUninstallProfiles | |
| 107 | WcsGpCanModifyDeviceAssociationList | |
| 108 | WcsOpenColorProfileA | |
| 109 | WcsOpenColorProfileW | |
| 110 | WcsSetCalibrationManagementState | |
| 111 | WcsSetDefaultColorProfile | |
| 112 | WcsSetDefaultRenderingIntent | |
| 113 | WcsSetUsePerUserProfiles | |
| 114 | WcsTranslateColors | |
| 115 | InternalGetPS2ColorRenderingDictionary2 | |
| 116 | InternalGetPS2PreviewCRD2 | |
| 117 | InternalGetPS2ColorSpaceArray2 | |
| 118 | InternalSetDeviceGammaRamp | |
| 119 | InternalSetDeviceTemperature | |
| 120 | InternalGetAppliedGammaRamp | |
| 121 | InternalGetDeviceGammaCapability | |
| 122 | InternalGetAppliedGDIGammaRamp | |
| 123 | InternalSetDeviceGDIGammaRamp | |
| 124 | ColorAdapterGetSystemModifyWhitePointCaps | |
| 125 | ColorAdapterGetDisplayCurrentStateID | |
| 126 | ColorAdapterUpdateDisplayGamma | |
| 127 | ColorAdapterUpdateDeviceProfile | |
| 128 | ColorAdapterGetDisplayTransformData | |
| 129 | ColorAdapterGetDisplayTargetWhitePoint | |
| 130 | ColorAdapterGetDisplayProfile | |
| 131 | ColorAdapterGetCurrentProfileCalibration | |
| 132 | ColorAdapterRegisterOEMColorService | |
| 133 | ColorAdapterUnregisterOEMColorService | |
| 134 | ColorProfileAddDisplayAssociation | |
| 135 | ColorProfileRemoveDisplayAssociation | |
| 136 | ColorProfileSetDisplayDefaultAssociation | |
| 137 | ColorProfileGetDisplayList | |
| 138 | ColorProfileGetDisplayDefault | |
| 139 | ColorProfileGetDisplayUserScope |
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 | ; | |
| 6 | LIBRARY "MSCTF.dll" | |
| 7 | EXPORTS | |
| 8 | TF_GetLangDescriptionFromHKL | |
| 9 | TF_GetLangIcon | |
| 10 | TF_GetMlngHKL | |
| 11 | TF_GetMlngIconIndex | |
| 12 | TF_GetThreadFlags | |
| 13 | TF_InatExtractIcon | |
| 14 | TF_InitMlngInfo | |
| 15 | TF_IsInMarshaling | |
| 16 | TF_MlngInfoCount | |
| 17 | TF_GetLangIconFromHKL | |
| 18 | TF_RunInputCPL | |
| 19 | CtfImeAssociateFocus | |
| 20 | CtfImeConfigure | |
| 21 | CtfImeConversionList | |
| 22 | CtfImeCreateInputContext | |
| 23 | CtfImeCreateThreadMgr | |
| 24 | CtfImeDestroy | |
| 25 | CtfImeDestroyInputContext | |
| 26 | CtfImeDestroyThreadMgr | |
| 27 | CtfImeDispatchDefImeMessage | |
| 28 | CtfImeEnumRegisterWord | |
| 29 | CtfImeEscape | |
| 30 | CtfImeEscapeEx | |
| 31 | CtfImeGetGuidAtom | |
| 32 | CtfImeGetRegisterWordStyle | |
| 33 | CtfImeInquire | |
| 34 | CtfImeInquireExW | |
| 35 | CtfImeIsGuidMapEnable | |
| 36 | CtfImeIsIME | |
| 37 | CtfImeProcessCicHotkey | |
| 38 | CtfImeProcessKey | |
| 39 | CtfImeRegisterWord | |
| 40 | CtfImeSelect | |
| 41 | CtfImeSelectEx | |
| 42 | CtfImeSetActiveContext | |
| 43 | CtfImeSetCompositionString | |
| 44 | CtfImeSetFocus | |
| 45 | CtfImeToAsciiEx | |
| 46 | CtfImeUnregisterWord | |
| 47 | CtfNotifyIME | |
| 48 | DllCanUnloadNow | |
| 49 | DllGetClassObject | |
| 50 | DllRegisterServer | |
| 51 | DllUnregisterServer | |
| 52 | SetInputScope | |
| 53 | SetInputScopeXML | |
| 54 | SetInputScopes | |
| 55 | SetInputScopes2 | |
| 56 | TF_AttachThreadInput | |
| 57 | TF_CUASAppFix | |
| 58 | TF_CanUninitialize | |
| 59 | TF_CheckThreadInputIdle | |
| 60 | TF_CleanUpPrivateMessages | |
| 61 | TF_ClearLangBarAddIns | |
| 62 | TF_CreateCategoryMgr | |
| 63 | TF_CreateCicLoadMutex | |
| 64 | TF_CreateCicLoadWinStaMutex | |
| 65 | TF_CreateDisplayAttributeMgr | |
| 66 | TF_CreateInputProcessorProfiles | |
| 67 | TF_CreateLangBarItemMgr | |
| 68 | TF_CreateLangBarMgr | |
| 69 | TF_CreateThreadMgr | |
| 70 | TF_DllDetachInOther | |
| 71 | TF_GetAppCompatFlags | |
| 72 | TF_GetCompatibleKeyboardLayout | |
| 73 | TF_GetGlobalCompartment | |
| 74 | TF_GetInitSystemFlags | |
| 75 | TF_GetInputScope | |
| 76 | TF_GetShowFloatingStatus | |
| 77 | TF_GetThreadMgr | |
| 78 | TF_InitSystem | |
| 79 | TF_InvalidAssemblyListCache | |
| 80 | TF_InvalidAssemblyListCacheIfExist | |
| 81 | TF_IsCtfmonRunning | |
| 82 | TF_IsFullScreenWindowActivated | |
| 83 | TF_IsThreadWithFlags | |
| 84 | TF_MapCompatibleHKL | |
| 85 | TF_MapCompatibleKeyboardTip | |
| 86 | TF_Notify | |
| 87 | TF_PostAllThreadMsg | |
| 88 | TF_RegisterLangBarAddIn | |
| 89 | TF_SendLangBandMsg | |
| 90 | TF_SetDefaultRemoteKeyboardLayout | |
| 91 | TF_SetShowFloatingStatus | |
| 92 | TF_SetThreadFlags | |
| 93 | TF_UninitSystem | |
| 94 | TF_UnregisterLangBarAddIn | |
| 95 | TF_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 | ; | |
| 7 | LIBRARY msdadiag.dll | |
| 8 | EXPORTS | |
| 9 | DllBidEntryPoint |
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 | ; | |
| 7 | LIBRARY msimtf.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | MsimtfIsGuidMapEnable | |
| 14 | MsimtfIsWindowFiltered |
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 | ; | |
| 7 | LIBRARY msisip.dll | |
| 8 | EXPORTS | |
| 9 | MsiSIPIsMyTypeOfFile | |
| 10 | MsiSIPGetSignedDataMsg | |
| 11 | MsiSIPPutSignedDataMsg | |
| 12 | MsiSIPRemoveSignedDataMsg | |
| 13 | MsiSIPCreateIndirectData | |
| 14 | MsiSIPVerifyIndirectData | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY msls31.dll | |
| 8 | EXPORTS | |
| 9 | LsCreateContext | |
| 10 | LsDestroyContext | |
| 11 | LsCreateLine | |
| 12 | LsModifyLineHeight | |
| 13 | LsDestroyLine | |
| 14 | LsCreateSubline | |
| 15 | LsFetchAppendToCurrentSubline | |
| 16 | LsAppendRunToCurrentSubline | |
| 17 | LsResetRMInCurrentSubline | |
| 18 | LsFinishCurrentSubline | |
| 19 | LsTruncateSubline | |
| 20 | LsFindPrevBreakSubline | |
| 21 | LsFindNextBreakSubline | |
| 22 | LsForceBreakSubline | |
| 23 | LsSetBreakSubline | |
| 24 | LsDestroySubline | |
| 25 | LsMatchPresSubline | |
| 26 | LsExpandSubline | |
| 27 | LsGetSpecialEffectsSubline | |
| 28 | LsdnFinishRegular | |
| 29 | LsdnFinishRegularAddAdvancePen | |
| 30 | LsdnFinishDelete | |
| 31 | LsdnFinishByPen | |
| 32 | LsdnFinishBySubline | |
| 33 | LsdnFinishDeleteAll | |
| 34 | LsdnFinishByOneChar | |
| 35 | LsdnQueryObjDimRange | |
| 36 | LsdnResetObjDim | |
| 37 | LsdnQueryPenNode | |
| 38 | LsdnResetPenNode | |
| 39 | LsdnSetRigidDup | |
| 40 | LsdnGetDup | |
| 41 | LsdnSetAbsBaseLine | |
| 42 | LsdnResolvePrevTab | |
| 43 | LsdnGetCurTabInfo | |
| 44 | LsdnSkipCurTab | |
| 45 | LsdnDistribute | |
| 46 | LsdnSubmitSublines | |
| 47 | LsDisplayLine | |
| 48 | LsDisplaySubline | |
| 49 | LsQueryLineCpPpoint | |
| 50 | LsQueryLinePointPcp | |
| 51 | LsQueryLineDup | |
| 52 | LsQueryFLineEmpty | |
| 53 | LsQueryPointPcpSubline | |
| 54 | LsQueryCpPpointSubline | |
| 55 | LsSetDoc | |
| 56 | LsSetModWidthPairs | |
| 57 | LsSetCompression | |
| 58 | LsSetExpansion | |
| 59 | LsSetBreaking | |
| 60 | LssbGetObjDimSubline | |
| 61 | LssbGetDupSubline | |
| 62 | LssbFDonePresSubline | |
| 63 | LssbGetPlsrunsFromSubline | |
| 64 | LssbGetNumberDnodesInSubline | |
| 65 | LssbGetVisibleDcpInSubline | |
| 66 | LsPointXYFromPointUV | |
| 67 | LsPointUV2FromPointUV1 | |
| 68 | LsGetWarichuLsimethods | |
| 69 | LsGetRubyLsimethods | |
| 70 | LsGetTatenakayokoLsimethods | |
| 71 | LsSqueezeSubline | |
| 72 | LsCompressSubline | |
| 73 | LsGetHihLsimethods | |
| 74 | LsQueryTextCellDetails | |
| 75 | LsFetchAppendToCurrentSublineResume | |
| 76 | LsdnGetFormatDepth | |
| 77 | LssbFDoneDisplay | |
| 78 | LsGetReverseLsimethods | |
| 79 | LsEnumLine | |
| 80 | LsGetMinDurBreaks | |
| 81 | LsGetLineDur | |
| 82 | LsEnumSubline | |
| 83 | LsdnModifyParaEnding | |
| 84 | LssbGetDurTrailInSubline | |
| 85 | LssbGetDurTrailWithPensInSubline | |
| 86 | LssbFIsSublineEmpty | |
| 87 | LsLwMultDivR |
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 | ; | |
| 6 | LIBRARY "mspatcha.dll" | |
| 7 | EXPORTS | |
| 8 | ApplyPatchToFileA | |
| 9 | ApplyPatchToFileByBuffers | |
| 10 | ApplyPatchToFileByHandles | |
| 11 | ApplyPatchToFileByHandlesEx | |
| 12 | ApplyPatchToFileExA | |
| 13 | ApplyPatchToFileExW | |
| 14 | ApplyPatchToFileW | |
| 15 | GetFilePatchSignatureA | |
| 16 | GetFilePatchSignatureByBuffer | |
| 17 | GetFilePatchSignatureByHandle | |
| 18 | GetFilePatchSignatureW | |
| 19 | NormalizeFileForPatchSignature | |
| 20 | TestApplyPatchToFileA | |
| 21 | TestApplyPatchToFileByBuffers | |
| 22 | TestApplyPatchToFileByHandles | |
| 23 | TestApplyPatchToFileW |
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 | ; | |
| 6 | LIBRARY "MSRATING.dll" | |
| 7 | EXPORTS | |
| 8 | ChangeSupervisorPassword | |
| 9 | ClickedOnPRF | |
| 10 | ClickedOnRAT | |
| 11 | RatingAccessDeniedDialog | |
| 12 | RatingAccessDeniedDialog2 | |
| 13 | RatingAccessDeniedDialog2W | |
| 14 | RatingAccessDeniedDialogW | |
| 15 | RatingAddPropertyPages | |
| 16 | RatingAddToApprovedSites | |
| 17 | RatingCheckUserAccess | |
| 18 | RatingCheckUserAccessW | |
| 19 | RatingClickedOnPRFInternal | |
| 20 | RatingClickedOnRATInternal | |
| 21 | RatingCustomAddRatingHelper | |
| 22 | RatingCustomAddRatingSystem | |
| 23 | RatingCustomCrackData | |
| 24 | RatingCustomDeleteCrackedData | |
| 25 | RatingCustomInit | |
| 26 | RatingCustomRemoveRatingHelper | |
| 27 | RatingCustomSetDefaultBureau | |
| 28 | RatingCustomSetUserOptions | |
| 29 | RatingEnable | |
| 30 | RatingEnableW | |
| 31 | RatingEnabledQuery | |
| 32 | RatingFreeDetails | |
| 33 | RatingInit | |
| 34 | RatingObtainCancel | |
| 35 | RatingObtainQuery | |
| 36 | RatingObtainQueryW | |
| 37 | RatingSetupUI | |
| 38 | RatingSetupUIW | |
| 39 | VerifySupervisorPassword |
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 | ; | |
| 6 | LIBRARY "MSSIGN32.dll" | |
| 7 | EXPORTS | |
| 8 | FreeCryptProvFromCert | |
| 9 | FreeCryptProvFromCertEx | |
| 10 | GetCryptProvFromCert | |
| 11 | GetCryptProvFromCertEx | |
| 12 | PvkFreeCryptProv | |
| 13 | PvkGetCryptProv | |
| 14 | PvkPrivateKeyAcquireContext | |
| 15 | PvkPrivateKeyAcquireContextA | |
| 16 | PvkPrivateKeyAcquireContextFromMemory | |
| 17 | PvkPrivateKeyAcquireContextFromMemoryA | |
| 18 | PvkPrivateKeyLoad | |
| 19 | PvkPrivateKeyLoadA | |
| 20 | PvkPrivateKeyLoadFromMemory | |
| 21 | PvkPrivateKeyLoadFromMemoryA | |
| 22 | PvkPrivateKeyReleaseContext | |
| 23 | PvkPrivateKeyReleaseContextA | |
| 24 | PvkPrivateKeySave | |
| 25 | PvkPrivateKeySaveA | |
| 26 | PvkPrivateKeySaveToMemory | |
| 27 | PvkPrivateKeySaveToMemoryA | |
| 28 | SignError | |
| 29 | SignerAddTimeStampResponse | |
| 30 | SignerAddTimeStampResponseEx | |
| 31 | SignerCreateTimeStampRequest | |
| 32 | SignerFreeSignerContext | |
| 33 | SignerSign | |
| 34 | SignerSignEx | |
| 35 | SignerSignEx2 | |
| 36 | SignerTimeStamp | |
| 37 | SignerTimeStampEx | |
| 38 | SignerTimeStampEx2 | |
| 39 | SignerTimeStampEx3 | |
| 40 | SpcGetCertFromKey |
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 | ; | |
| 7 | LIBRARY MSSIP32.dll | |
| 8 | EXPORTS | |
| 9 | CryptSIPGetInfo | |
| 10 | CryptSIPGetRegWorkingFlags | |
| 11 | CryptSIPCreateIndirectData | |
| 12 | CryptSIPGetSignedDataMsg | |
| 13 | CryptSIPPutSignedDataMsg | |
| 14 | CryptSIPRemoveSignedDataMsg | |
| 15 | CryptSIPVerifyIndirectData | |
| 16 | DllRegisterServer | |
| 17 | DllUnregisterServer |
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 | ; | |
| 6 | LIBRARY "msv1_0.dll" | |
| 7 | EXPORTS | |
| 8 | SpInitialize | |
| 9 | MsvIsLocalhostAliases | |
| 10 | SpLsaModeInitialize | |
| 11 | SpUserModeInitialize | |
| 12 | LsaApCallPackage | |
| 13 | LsaApCallPackagePassthrough | |
| 14 | LsaApCallPackageUntrusted | |
| 15 | LsaApInitializePackage | |
| 16 | LsaApLogonTerminated | |
| 17 | LsaApLogonUserEx2 | |
| 18 | Msv1_0ExportSubAuthenticationRoutine | |
| 19 | Msv1_0SubAuthenticationPresent | |
| 20 | MsvGetLogonAttemptCount | |
| 21 | MsvSamLogoff | |
| 22 | MsvSamValidate | |
| 23 | MsvValidateTarget | |
| 24 | SpInstanceInit |
lib/libc/mingw/lib-common/msvcrt.def.in+19-4| ... | ... | @@ -350,6 +350,8 @@ __wgetmainargs |
| 350 | 350 | F_X86_ANY(__winitenv DATA) |
| 351 | 351 | F_I386(_abnormal_termination) |
| 352 | 352 | F_NON_I386(_abs64) |
| 353 | F_NON_I386(llabs == _abs64) | |
| 354 | F_NON_I386(imaxabs == _abs64) | |
| 353 | 355 | _access |
| 354 | 356 | ; _access_s Replaced by emu |
| 355 | 357 | _acmdln DATA |
| ... | ... | @@ -387,7 +389,9 @@ _atodbl_l |
| 387 | 389 | _atof_l |
| 388 | 390 | _atoflt_l |
| 389 | 391 | _atoi64 |
| 392 | atoll == _atoi64 | |
| 390 | 393 | _atoi64_l |
| 394 | _atoll_l == _atoi64_l | |
| 391 | 395 | _atoi_l |
| 392 | 396 | _atol_l |
| 393 | 397 | _atoldbl |
| ... | ... | @@ -459,7 +463,7 @@ _cwscanf_l |
| 459 | 463 | _cwscanf_s |
| 460 | 464 | _cwscanf_s_l |
| 461 | 465 | F_X86_ANY(_dstbias DATA) |
| 462 | F_ARM_ANY(_daylight DATA) | |
| 466 | _daylight DATA | |
| 463 | 467 | _difftime32 F_I386(== difftime) |
| 464 | 468 | _difftime64 |
| 465 | 469 | _dup |
| ... | ... | @@ -560,7 +564,7 @@ _fwscanf_s_l |
| 560 | 564 | _gcvt |
| 561 | 565 | _gcvt_s |
| 562 | 566 | F_ARM_ANY(_get_current_locale) |
| 563 | F_ARM_ANY(_get_doserrno) | |
| 567 | _get_doserrno | |
| 564 | 568 | F_ARM_ANY(_get_environ) |
| 565 | 569 | F_ARM_ANY(_get_errno) |
| 566 | 570 | F_ARM_ANY(_get_fileinfo) |
| ... | ... | @@ -939,8 +943,8 @@ _scwprintf_p_l |
| 939 | 943 | _searchenv |
| 940 | 944 | _searchenv_s |
| 941 | 945 | F_I386(_seh_longjmp_unwind) |
| 942 | F_ARM_ANY(_set_controlfp) | |
| 943 | F_ARM_ANY(_set_doserrno) | |
| 946 | _set_controlfp | |
| 947 | _set_doserrno | |
| 944 | 948 | F_ARM_ANY(_set_errno) |
| 945 | 949 | _set_error_mode |
| 946 | 950 | F_ARM_ANY(_set_fileinfo) |
| ... | ... | @@ -1034,10 +1038,18 @@ _strtime |
| 1034 | 1038 | ; _strtime_s replaced by emu |
| 1035 | 1039 | _strtod_l |
| 1036 | 1040 | _strtoi64 |
| 1041 | strtoll == _strtoi64 | |
| 1042 | strtoimax == _strtoi64 | |
| 1037 | 1043 | _strtoi64_l |
| 1044 | _strtoll_l == _strtoi64_l | |
| 1045 | _strtoimax_l == _strtoi64_l | |
| 1038 | 1046 | _strtol_l |
| 1039 | 1047 | _strtoui64 |
| 1048 | strtoull == _strtoui64 | |
| 1049 | strtoumax == _strtoui64 | |
| 1040 | 1050 | _strtoui64_l |
| 1051 | _strtoull_l == _strtoui64_l | |
| 1052 | _strtoumax_l == _strtoui64_l | |
| 1041 | 1053 | _strtoul_l |
| 1042 | 1054 | _strupr |
| 1043 | 1055 | _strupr_l |
| ... | ... | @@ -1061,12 +1073,14 @@ F_ARM_ANY(_tempnam_dbg) |
| 1061 | 1073 | F_I386(_time32 == time) |
| 1062 | 1074 | F_ARM_ANY(_time32) |
| 1063 | 1075 | _time64 |
| 1076 | _timezone DATA | |
| 1064 | 1077 | _tolower |
| 1065 | 1078 | _tolower_l |
| 1066 | 1079 | _toupper |
| 1067 | 1080 | _toupper_l |
| 1068 | 1081 | _towlower_l |
| 1069 | 1082 | _towupper_l |
| 1083 | _tzname DATA | |
| 1070 | 1084 | _tzset |
| 1071 | 1085 | _ui64toa |
| 1072 | 1086 | _ui64toa_s |
| ... | ... | @@ -1435,6 +1449,7 @@ F_NON_I386(log10f F_X86_ANY(DATA)) |
| 1435 | 1449 | F_ARM_ANY(log10l == log10) |
| 1436 | 1450 | F_NON_I386(logf F_X86_ANY(DATA)) |
| 1437 | 1451 | F_ARM_ANY(logl == log) |
| 1452 | longjmp | |
| 1438 | 1453 | malloc |
| 1439 | 1454 | mblen |
| 1440 | 1455 | F_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 | ; | |
| 7 | LIBRARY MSVFW32.dll | |
| 8 | EXPORTS | |
| 9 | VideoForWindowsVersion | |
| 10 | DrawDibBegin | |
| 11 | DrawDibChangePalette | |
| 12 | DrawDibClose | |
| 13 | DrawDibDraw | |
| 14 | DrawDibEnd | |
| 15 | DrawDibGetBuffer | |
| 16 | DrawDibGetPalette | |
| 17 | DrawDibOpen | |
| 18 | DrawDibProfileDisplay | |
| 19 | DrawDibRealize | |
| 20 | DrawDibSetPalette | |
| 21 | DrawDibStart | |
| 22 | DrawDibStop | |
| 23 | DrawDibTime | |
| 24 | GetOpenFileNamePreview | |
| 25 | GetOpenFileNamePreviewA | |
| 26 | GetOpenFileNamePreviewW | |
| 27 | GetSaveFileNamePreviewA | |
| 28 | GetSaveFileNamePreviewW | |
| 29 | ICClose | |
| 30 | ICCompress | |
| 31 | ICCompressorChoose | |
| 32 | ICCompressorFree | |
| 33 | ICDecompress | |
| 34 | ICDraw | |
| 35 | ICDrawBegin | |
| 36 | ICGetDisplayFormat | |
| 37 | ICGetInfo | |
| 38 | ICImageCompress | |
| 39 | ICImageDecompress | |
| 40 | ICInfo | |
| 41 | ICInstall | |
| 42 | ICLocate | |
| 43 | ICMThunk32 | |
| 44 | ICOpen | |
| 45 | ICOpenFunction | |
| 46 | ICRemove | |
| 47 | ICSendMessage | |
| 48 | ICSeqCompressFrame | |
| 49 | ICSeqCompressFrameEnd | |
| 50 | ICSeqCompressFrameStart | |
| 51 | MCIWndCreate | |
| 52 | MCIWndCreateA | |
| 53 | MCIWndCreateW | |
| 54 | MCIWndRegisterClass | |
| 55 | StretchDIB |
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 | ; | |
| 7 | LIBRARY MSYUV.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc |
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 | ; | |
| 7 | LIBRARY mydocs.dll | |
| 8 | EXPORTS | |
| 9 | PerUserInit | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllInstall | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY NCObjAPI.DLL | |
| 8 | EXPORTS | |
| 9 | WmiCommitObject | |
| 10 | WmiAddObjectProp | |
| 11 | WmiCreateObject | |
| 12 | WmiCreateObjectWithFormat | |
| 13 | WmiCreateObjectWithProps | |
| 14 | WmiDestroyObject | |
| 15 | WmiEventSourceConnect | |
| 16 | WmiEventSourceDisconnect | |
| 17 | WmiIsObjectActive | |
| 18 | WmiSetAndCommitObject |
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 | ; | |
| 7 | LIBRARY NDdeApi.dll | |
| 8 | EXPORTS | |
| 9 | NDdeShareAddA | |
| 10 | NDdeShareDelA | |
| 11 | NDdeShareEnumA | |
| 12 | NDdeShareGetInfoA | |
| 13 | NDdeShareSetInfoA | |
| 14 | NDdeGetErrorStringA | |
| 15 | NDdeIsValidShareNameA | |
| 16 | NDdeIsValidAppTopicListA | |
| 17 | NDdeSpecialCommandA | |
| 18 | NDdeGetShareSecurityA | |
| 19 | NDdeSetShareSecurityA | |
| 20 | NDdeGetTrustedShareA | |
| 21 | NDdeSetTrustedShareA | |
| 22 | NDdeTrustedShareEnumA | |
| 23 | NDdeShareAddW | |
| 24 | NDdeShareDelW | |
| 25 | NDdeShareEnumW | |
| 26 | NDdeShareGetInfoW | |
| 27 | NDdeShareSetInfoW | |
| 28 | NDdeGetErrorStringW | |
| 29 | NDdeIsValidShareNameW | |
| 30 | NDdeIsValidAppTopicListW | |
| 31 | NDdeSpecialCommandW | |
| 32 | NDdeGetShareSecurityW | |
| 33 | NDdeSetShareSecurityW | |
| 34 | NDdeGetTrustedShareW | |
| 35 | NDdeSetTrustedShareW | |
| 36 | NDdeTrustedShareEnumW |
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 | ; | |
| 6 | LIBRARY "NDIS.SYS" | |
| 7 | EXPORTS | |
| 8 | EthFilterDprIndicateReceive | |
| 9 | EthFilterDprIndicateReceiveComplete | |
| 10 | NDIS_BUFFER_TO_SPAN_PAGES | |
| 11 | NdisAcquireRWLockRead | |
| 12 | NdisAcquireRWLockWrite | |
| 13 | NdisAcquireReadWriteLock | |
| 14 | NdisAcquireSpinLock | |
| 15 | NdisActiveGroupCount | |
| 16 | NdisAdjustBufferLength | |
| 17 | NdisAdjustNetBufferCurrentMdl | |
| 18 | NdisAdvanceNetBufferDataStart | |
| 19 | NdisAdvanceNetBufferListDataStart | |
| 20 | NdisAllocateBuffer | |
| 21 | NdisAllocateBufferPool | |
| 22 | NdisAllocateCloneNetBufferList | |
| 23 | NdisAllocateCloneOidRequest | |
| 24 | NdisAllocateFragmentNetBufferList | |
| 25 | NdisAllocateGenericObject | |
| 26 | NdisAllocateIoWorkItem | |
| 27 | NdisAllocateMdl | |
| 28 | NdisAllocateMemory | |
| 29 | NdisAllocateMemoryWithTag | |
| 30 | NdisAllocateMemoryWithTagPriority | |
| 31 | NdisAllocateNetBuffer | |
| 32 | NdisAllocateNetBufferAndNetBufferList | |
| 33 | NdisAllocateNetBufferList | |
| 34 | NdisAllocateNetBufferListContext | |
| 35 | NdisAllocateNetBufferListPool | |
| 36 | NdisAllocateNetBufferMdlAndData | |
| 37 | NdisAllocateNetBufferPool | |
| 38 | NdisAllocateOidRequest | |
| 39 | NdisAllocatePacket | |
| 40 | NdisAllocatePacketPool | |
| 41 | NdisAllocatePacketPoolEx | |
| 42 | NdisAllocateRWLock | |
| 43 | NdisAllocateReassembledNetBufferList | |
| 44 | NdisAllocateRefCount | |
| 45 | NdisAllocateSharedMemory | |
| 46 | NdisAllocateSpinLock | |
| 47 | NdisAllocateTimerObject | |
| 48 | NdisAnsiStringToUnicodeString | |
| 49 | NdisBufferLength | |
| 50 | NdisBufferVirtualAddress | |
| 51 | NdisBuildScatterGatherList | |
| 52 | NdisCancelDirectOidRequest | |
| 53 | NdisCancelOidRequest | |
| 54 | NdisCancelSendNetBufferLists | |
| 55 | NdisCancelSendPackets | |
| 56 | NdisCancelTimer | |
| 57 | NdisCancelTimerObject | |
| 58 | NdisClAddParty | |
| 59 | NdisClCloseAddressFamily | |
| 60 | NdisClCloseCall | |
| 61 | NdisClDeregisterSap | |
| 62 | NdisClDropParty | |
| 63 | NdisClGetProtocolVcContextFromTapiCallId | |
| 64 | NdisClIncomingCallComplete | |
| 65 | NdisClMakeCall | |
| 66 | NdisClModifyCallQoS | |
| 67 | NdisClNotifyCloseAddressFamilyComplete | |
| 68 | NdisClOpenAddressFamily | |
| 69 | NdisClOpenAddressFamilyEx | |
| 70 | NdisClRegisterSap | |
| 71 | NdisCloseAdapter | |
| 72 | NdisCloseAdapterEx | |
| 73 | NdisCloseConfiguration | |
| 74 | NdisCloseFile | |
| 75 | NdisCloseNDKAdapter | |
| 76 | NdisCmActivateVc | |
| 77 | NdisCmAddPartyComplete | |
| 78 | NdisCmCloseAddressFamilyComplete | |
| 79 | NdisCmCloseCallComplete | |
| 80 | NdisCmDeactivateVc | |
| 81 | NdisCmDeregisterSapComplete | |
| 82 | NdisCmDispatchCallConnected | |
| 83 | NdisCmDispatchIncomingCall | |
| 84 | NdisCmDispatchIncomingCallQoSChange | |
| 85 | NdisCmDispatchIncomingCloseCall | |
| 86 | NdisCmDispatchIncomingDropParty | |
| 87 | NdisCmDropPartyComplete | |
| 88 | NdisCmMakeCallComplete | |
| 89 | NdisCmModifyCallQoSComplete | |
| 90 | NdisCmNotifyCloseAddressFamily | |
| 91 | NdisCmOpenAddressFamilyComplete | |
| 92 | NdisCmRegisterAddressFamily | |
| 93 | NdisCmRegisterAddressFamilyEx | |
| 94 | NdisCmRegisterSapComplete | |
| 95 | NdisCoAssignInstanceName | |
| 96 | NdisCoCreateVc | |
| 97 | NdisCoDeleteVc | |
| 98 | NdisCoGetTapiCallId | |
| 99 | NdisCoOidRequest | |
| 100 | NdisCoOidRequestComplete | |
| 101 | NdisCoRequest | |
| 102 | NdisCoRequestComplete | |
| 103 | NdisCoSendNetBufferLists | |
| 104 | NdisCoSendPackets | |
| 105 | NdisCompareAnsiString | |
| 106 | NdisCompareUnicodeString | |
| 107 | NdisCompleteBindAdapter | |
| 108 | NdisCompleteBindAdapterEx | |
| 109 | NdisCompleteDmaTransfer | |
| 110 | NdisCompleteNetPnPEvent | |
| 111 | NdisCompletePnPEvent | |
| 112 | NdisCompleteUnbindAdapter | |
| 113 | NdisCompleteUnbindAdapterEx | |
| 114 | NdisConvertNdisStatusToNtStatus | |
| 115 | NdisConvertNtStatusToNdisStatus | |
| 116 | NdisCopyBuffer | |
| 117 | NdisCopyFromNetBufferToNetBuffer | |
| 118 | NdisCopyFromPacketToPacket | |
| 119 | NdisCopyFromPacketToPacketSafe | |
| 120 | NdisCopyReceiveNetBufferListInfo | |
| 121 | NdisCopySendNetBufferListInfo | |
| 122 | NdisCurrentGroupAndProcessor | |
| 123 | NdisCurrentProcessorIndex | |
| 124 | NdisDereferenceWithTag | |
| 125 | NdisDeregisterDeviceEx | |
| 126 | NdisDeregisterProtocol | |
| 127 | NdisDeregisterProtocolDriver | |
| 128 | NdisDeregisterTdiCallBack | |
| 129 | NdisDirectOidRequest | |
| 130 | NdisDllInitialize | |
| 131 | NdisDprAcquireReadWriteLock | |
| 132 | NdisDprAcquireSpinLock | |
| 133 | NdisDprAllocatePacket | |
| 134 | NdisDprAllocatePacketNonInterlocked | |
| 135 | NdisDprFreePacket | |
| 136 | NdisDprFreePacketNonInterlocked | |
| 137 | NdisDprReleaseReadWriteLock | |
| 138 | NdisDprReleaseSpinLock | |
| 139 | NdisEnumerateFilterModules | |
| 140 | NdisEqualString | |
| 141 | NdisFCancelDirectOidRequest | |
| 142 | NdisFCancelOidRequest | |
| 143 | NdisFCancelSendNetBufferLists | |
| 144 | NdisFDeregisterFilterDriver | |
| 145 | NdisFDevicePnPEventNotify | |
| 146 | NdisFDirectOidRequest | |
| 147 | NdisFDirectOidRequestComplete | |
| 148 | NdisFGetOptionalSwitchHandlers | |
| 149 | NdisFIndicateReceiveNetBufferLists | |
| 150 | NdisFIndicateStatus | |
| 151 | NdisFNetPnPEvent | |
| 152 | NdisFOidRequest | |
| 153 | NdisFOidRequestComplete | |
| 154 | NdisFPauseComplete | |
| 155 | NdisFRegisterFilterDriver | |
| 156 | NdisFRestartComplete | |
| 157 | NdisFRestartFilter | |
| 158 | NdisFRetryAttach | |
| 159 | NdisFReturnNetBufferLists | |
| 160 | NdisFSendNetBufferLists | |
| 161 | NdisFSendNetBufferListsComplete | |
| 162 | NdisFSetAttributes | |
| 163 | NdisFSynchronousOidRequest | |
| 164 | NdisFreeBuffer | |
| 165 | NdisFreeBufferPool | |
| 166 | NdisFreeCloneNetBufferList | |
| 167 | NdisFreeCloneOidRequest | |
| 168 | NdisFreeFragmentNetBufferList | |
| 169 | NdisFreeGenericObject | |
| 170 | NdisFreeIoWorkItem | |
| 171 | NdisFreeMdl | |
| 172 | NdisFreeMemory | |
| 173 | NdisFreeMemoryWithTag | |
| 174 | NdisFreeMemoryWithTagPriority | |
| 175 | NdisFreeNetBuffer | |
| 176 | NdisFreeNetBufferList | |
| 177 | NdisFreeNetBufferListContext | |
| 178 | NdisFreeNetBufferListPool | |
| 179 | NdisFreeNetBufferPool | |
| 180 | NdisFreeOidRequest | |
| 181 | NdisFreePacket | |
| 182 | NdisFreePacketPool | |
| 183 | NdisFreeRWLock | |
| 184 | NdisFreeReassembledNetBufferList | |
| 185 | NdisFreeRefCount | |
| 186 | NdisFreeScatterGatherList | |
| 187 | NdisFreeSharedMemory | |
| 188 | NdisFreeSpinLock | |
| 189 | NdisFreeTimerObject | |
| 190 | NdisGeneratePartialCancelId | |
| 191 | NdisGetAndReferenceCompartmentJobObject | |
| 192 | NdisGetBufferPhysicalArraySize | |
| 193 | NdisGetCurrentProcessorCounts | |
| 194 | NdisGetCurrentProcessorCpuUsage | |
| 195 | NdisGetCurrentSystemTime | |
| 196 | NdisGetDataBuffer | |
| 197 | NdisGetDeviceReservedExtension | |
| 198 | NdisGetDriverHandle | |
| 199 | NdisGetFirstBufferFromPacket | |
| 200 | NdisGetFirstBufferFromPacketSafe | |
| 201 | NdisGetHypervisorInfo | |
| 202 | NdisGetJobObjectCompartmentId | |
| 203 | NdisGetNetBufferListProtocolId | |
| 204 | NdisGetPacketCancelId | |
| 205 | NdisGetPacketFromNetBufferList | |
| 206 | NdisGetPoolFromNetBuffer | |
| 207 | NdisGetPoolFromNetBufferList | |
| 208 | NdisGetPoolFromPacket | |
| 209 | NdisGetProcessObjectCompartmentId | |
| 210 | NdisGetProcessorInformation | |
| 211 | NdisGetProcessorInformationEx | |
| 212 | NdisGetReceivedPacket | |
| 213 | NdisGetRefCount | |
| 214 | NdisGetRoutineAddress | |
| 215 | NdisGetRssProcessorInformation | |
| 216 | NdisGetSessionCompartmentId | |
| 217 | NdisGetSessionToCompartmentMappingEpochAndZero | |
| 218 | NdisGetSharedDataAlignment | |
| 219 | NdisGetSystemUpTime | |
| 220 | NdisGetSystemUpTimeEx | |
| 221 | NdisGetThreadObjectCompartmentId | |
| 222 | NdisGetThreadObjectCompartmentScope | |
| 223 | NdisGetVersion | |
| 224 | NdisGroupActiveProcessorCount | |
| 225 | NdisGroupActiveProcessorMask | |
| 226 | NdisGroupMaxProcessorCount | |
| 227 | NdisIMAssociateMiniport | |
| 228 | NdisIMCancelInitializeDeviceInstance | |
| 229 | NdisIMCopySendCompletePerPacketInfo | |
| 230 | NdisIMCopySendPerPacketInfo | |
| 231 | NdisIMDeInitializeDeviceInstance | |
| 232 | NdisIMDeregisterLayeredMiniport | |
| 233 | NdisIMGetBindingContext | |
| 234 | NdisIMGetCurrentPacketStack | |
| 235 | NdisIMGetDeviceContext | |
| 236 | NdisIMInitializeDeviceInstance | |
| 237 | NdisIMInitializeDeviceInstanceEx | |
| 238 | NdisIMNotifyPnPEvent | |
| 239 | NdisIMQueueMiniportCallback | |
| 240 | NdisIMRegisterLayeredMiniport | |
| 241 | NdisIMRevertBack | |
| 242 | NdisIMSwitchToMiniport | |
| 243 | NdisIMVBusDeviceAdd | |
| 244 | NdisIMVBusDeviceRemove | |
| 245 | NdisIfAddIfStackEntry | |
| 246 | NdisIfAllocateNetLuidIndex | |
| 247 | NdisIfAllocateNetLuidIndexEx | |
| 248 | NdisIfDeleteIfStackEntry | |
| 249 | NdisIfDeregisterInterface | |
| 250 | NdisIfDeregisterProvider | |
| 251 | NdisIfFreeNetLuidIndex | |
| 252 | NdisIfGetInterfaceIndexFromNetLuid | |
| 253 | NdisIfGetNetLuidFromInterfaceIndex | |
| 254 | NdisIfQueryBindingIfIndex | |
| 255 | NdisIfRegisterInterface | |
| 256 | NdisIfRegisterProvider | |
| 257 | NdisImmediateReadPciSlotInformation | |
| 258 | NdisImmediateReadPortUchar | |
| 259 | NdisImmediateReadPortUlong | |
| 260 | NdisImmediateReadPortUshort | |
| 261 | NdisImmediateReadSharedMemory | |
| 262 | NdisImmediateWritePciSlotInformation | |
| 263 | NdisImmediateWritePortUchar | |
| 264 | NdisImmediateWritePortUlong | |
| 265 | NdisImmediateWritePortUshort | |
| 266 | NdisImmediateWriteSharedMemory | |
| 267 | NdisInitAnsiString | |
| 268 | NdisInitUnicodeString | |
| 269 | NdisInitializeEvent | |
| 270 | NdisInitializeReadWriteLock | |
| 271 | NdisInitializeString | |
| 272 | NdisInitializeTimer | |
| 273 | NdisInitializeWrapper | |
| 274 | NdisInitiateOffload | |
| 275 | NdisInterlockedAddLargeInterger | |
| 276 | NdisInterlockedAddUlong | |
| 277 | NdisInterlockedDecrement | |
| 278 | NdisInterlockedIncrement | |
| 279 | NdisInterlockedInsertHeadList | |
| 280 | NdisInterlockedInsertTailList | |
| 281 | NdisInterlockedPopEntryList | |
| 282 | NdisInterlockedPushEntryList | |
| 283 | NdisInterlockedRemoveHeadList | |
| 284 | NdisInvalidateOffload | |
| 285 | NdisIsStatusIndicationCloneable | |
| 286 | NdisLWMDeregisterMiniportDriver | |
| 287 | NdisLWMInitializeNetworkInterface | |
| 288 | NdisLWMRegisterMiniportDriver | |
| 289 | NdisLWMStartNetworkInterface | |
| 290 | NdisLWMUninitializeNetworkInterface | |
| 291 | NdisMAllocateMapRegisters | |
| 292 | NdisMAllocateNetBufferSGList | |
| 293 | NdisMAllocatePort | |
| 294 | NdisMAllocateSharedMemory | |
| 295 | NdisMAllocateSharedMemoryAsync | |
| 296 | NdisMAllocateSharedMemoryAsyncEx | |
| 297 | NdisMCancelTimer | |
| 298 | NdisMCloseLog | |
| 299 | NdisMCmActivateVc | |
| 300 | NdisMCmCreateVc | |
| 301 | NdisMCmDeactivateVc | |
| 302 | NdisMCmDeleteVc | |
| 303 | NdisMCmOidRequest | |
| 304 | NdisMCmRegisterAddressFamily | |
| 305 | NdisMCmRegisterAddressFamilyEx | |
| 306 | NdisMCmRequest | |
| 307 | NdisMCoActivateVcComplete | |
| 308 | NdisMCoDeactivateVcComplete | |
| 309 | NdisMCoIndicateReceiveNetBufferLists | |
| 310 | NdisMCoIndicateReceivePacket | |
| 311 | NdisMCoIndicateStatus | |
| 312 | NdisMCoIndicateStatusEx | |
| 313 | NdisMCoOidRequestComplete | |
| 314 | NdisMCoReceiveComplete | |
| 315 | NdisMCoRequestComplete | |
| 316 | NdisMCoSendComplete | |
| 317 | NdisMCoSendNetBufferListsComplete | |
| 318 | NdisMCompleteBufferPhysicalMapping | |
| 319 | NdisMConfigMSIXTableEntry | |
| 320 | NdisMCreateLog | |
| 321 | NdisMDeregisterAdapterShutdownHandler | |
| 322 | NdisMDeregisterDevice | |
| 323 | NdisMDeregisterDmaChannel | |
| 324 | NdisMDeregisterInterrupt | |
| 325 | NdisMDeregisterInterruptEx | |
| 326 | NdisMDeregisterIoPortRange | |
| 327 | NdisMDeregisterMiniportDriver | |
| 328 | NdisMDeregisterScatterGatherDma | |
| 329 | NdisMDeregisterWdiMiniportDriver | |
| 330 | NdisMDirectOidRequestComplete | |
| 331 | NdisMEnableVirtualization | |
| 332 | NdisMFlushLog | |
| 333 | NdisMFreeMapRegisters | |
| 334 | NdisMFreeNetBufferSGList | |
| 335 | NdisMFreePort | |
| 336 | NdisMFreeSharedMemory | |
| 337 | NdisMGetBusData | |
| 338 | NdisMGetDeviceProperty | |
| 339 | NdisMGetDmaAlignment | |
| 340 | NdisMGetMiniportInitAttributes | |
| 341 | NdisMGetOffloadHandlers | |
| 342 | NdisMGetVirtualDeviceLocation | |
| 343 | NdisMGetVirtualFunctionBusData | |
| 344 | NdisMGetVirtualFunctionLocation | |
| 345 | NdisMIdleNotificationComplete | |
| 346 | NdisMIdleNotificationCompleteEx | |
| 347 | NdisMIdleNotificationConfirm | |
| 348 | NdisMIndicateReceiveNetBufferLists | |
| 349 | NdisMIndicateStatus | |
| 350 | NdisMIndicateStatusComplete | |
| 351 | NdisMIndicateStatusEx | |
| 352 | NdisMInitializeScatterGatherDma | |
| 353 | NdisMInitializeTimer | |
| 354 | NdisMInitiateOffloadComplete | |
| 355 | NdisMInvalidateConfigBlock | |
| 356 | NdisMInvalidateOffloadComplete | |
| 357 | NdisMMapIoSpace | |
| 358 | NdisMNetPnPEvent | |
| 359 | NdisMOffloadEventIndicate | |
| 360 | NdisMOidRequestComplete | |
| 361 | NdisMPauseComplete | |
| 362 | NdisMPciAssignResources | |
| 363 | NdisMPromoteMiniport | |
| 364 | NdisMQueryAdapterInstanceName | |
| 365 | NdisMQueryAdapterResources | |
| 366 | NdisMQueryInformationComplete | |
| 367 | NdisMQueryOffloadStateComplete | |
| 368 | NdisMQueryProbedBars | |
| 369 | NdisMQueueDpc | |
| 370 | NdisMQueueDpcEx | |
| 371 | NdisMReadConfigBlock | |
| 372 | NdisMReadDmaCounter | |
| 373 | NdisMReenumerateFailedAdapter | |
| 374 | NdisMRegisterAdapterShutdownHandler | |
| 375 | NdisMRegisterDevice | |
| 376 | NdisMRegisterDmaChannel | |
| 377 | NdisMRegisterInterrupt | |
| 378 | NdisMRegisterInterruptEx | |
| 379 | NdisMRegisterIoPortRange | |
| 380 | NdisMRegisterMiniport | |
| 381 | NdisMRegisterMiniportDriver | |
| 382 | NdisMRegisterScatterGatherDma | |
| 383 | NdisMRegisterUnloadHandler | |
| 384 | NdisMRegisterWdiMiniportDriver | |
| 385 | NdisMRemoveMiniport | |
| 386 | NdisMRequestDpc | |
| 387 | NdisMResetComplete | |
| 388 | NdisMResetMiniport | |
| 389 | NdisMRestartComplete | |
| 390 | NdisMSendComplete | |
| 391 | NdisMSendNetBufferListsComplete | |
| 392 | NdisMSendResourcesAvailable | |
| 393 | NdisMSetAttributes | |
| 394 | NdisMSetAttributesEx | |
| 395 | NdisMSetBusData | |
| 396 | NdisMSetInformationComplete | |
| 397 | NdisMSetInterfaceCompartment | |
| 398 | NdisMSetMiniportAttributes | |
| 399 | NdisMSetMiniportSecondary | |
| 400 | NdisMSetPeriodicTimer | |
| 401 | NdisMSetTimer | |
| 402 | NdisMSetVirtualFunctionBusData | |
| 403 | NdisMSleep | |
| 404 | NdisMStartBufferPhysicalMapping | |
| 405 | NdisMSynchronizeWithInterrupt | |
| 406 | NdisMSynchronizeWithInterruptEx | |
| 407 | NdisMTerminateOffloadComplete | |
| 408 | NdisMTransferDataComplete | |
| 409 | NdisMTriggerPDDrainNotification | |
| 410 | NdisMUnmapIoSpace | |
| 411 | NdisMUpdateOffloadComplete | |
| 412 | NdisMWanIndicateReceive | |
| 413 | NdisMWanIndicateReceiveComplete | |
| 414 | NdisMWanSendComplete | |
| 415 | NdisMWriteConfigBlock | |
| 416 | NdisMWriteLogData | |
| 417 | NdisMapFile | |
| 418 | NdisMatchPdoWithPacket | |
| 419 | NdisMaxGroupCount | |
| 420 | NdisNblTrackerDeregisterComponent | |
| 421 | NdisNblTrackerQueryNblCurrentOwner | |
| 422 | NdisNblTrackerRecordEvent | |
| 423 | NdisNblTrackerRegisterComponent | |
| 424 | NdisNblTrackerTransferOwnership | |
| 425 | NdisOffloadTcpDisconnect | |
| 426 | NdisOffloadTcpForward | |
| 427 | NdisOffloadTcpReceive | |
| 428 | NdisOffloadTcpReceiveReturn | |
| 429 | NdisOffloadTcpSend | |
| 430 | NdisOidRequest | |
| 431 | NdisOpenAdapter | |
| 432 | NdisOpenAdapterEx | |
| 433 | NdisOpenConfiguration | |
| 434 | NdisOpenConfigurationEx | |
| 435 | NdisOpenConfigurationKeyByIndex | |
| 436 | NdisOpenConfigurationKeyByName | |
| 437 | NdisOpenFile | |
| 438 | NdisOpenNDKAdapter | |
| 439 | NdisOpenProtocolConfiguration | |
| 440 | NdisOverrideBusNumber | |
| 441 | NdisPDStartup | |
| 442 | NdisPacketPoolUsage | |
| 443 | NdisPacketSize | |
| 444 | NdisProcessorIndexToNumber | |
| 445 | NdisProcessorNumberToIndex | |
| 446 | NdisQueryAdapterInstanceName | |
| 447 | NdisQueryBindInstanceName | |
| 448 | NdisQueryBuffer | |
| 449 | NdisQueryBufferOffset | |
| 450 | NdisQueryBufferSafe | |
| 451 | NdisQueryDiagnosticSetting | |
| 452 | NdisQueryMapRegisterCount | |
| 453 | NdisQueryNetBufferPhysicalCount | |
| 454 | NdisQueryOffloadState | |
| 455 | NdisQueryPendingIOCount | |
| 456 | NdisQueueIoWorkItem | |
| 457 | NdisReEnumerateProtocolBindings | |
| 458 | NdisReadConfiguration | |
| 459 | NdisReadEisaSlotInformation | |
| 460 | NdisReadEisaSlotInformationEx | |
| 461 | NdisReadMcaPosInformation | |
| 462 | NdisReadNetworkAddress | |
| 463 | NdisReadPciSlotInformation | |
| 464 | NdisReadPcmciaAttributeMemory | |
| 465 | NdisReferenceWithTag | |
| 466 | NdisRegisterDeviceEx | |
| 467 | NdisRegisterProtocol | |
| 468 | NdisRegisterProtocolDriver | |
| 469 | NdisRegisterTdiCallBack | |
| 470 | NdisReleaseNicActive | |
| 471 | NdisReleaseRWLock | |
| 472 | NdisReleaseReadWriteLock | |
| 473 | NdisReleaseSpinLock | |
| 474 | NdisRequest | |
| 475 | NdisRequestEx | |
| 476 | NdisReset | |
| 477 | NdisResetEvent | |
| 478 | NdisRetreatNetBufferDataStart | |
| 479 | NdisRetreatNetBufferListDataStart | |
| 480 | NdisReturnNetBufferLists | |
| 481 | NdisReturnPackets | |
| 482 | NdisScheduleWorkItem | |
| 483 | NdisSend | |
| 484 | NdisSendNetBufferLists | |
| 485 | NdisSendPackets | |
| 486 | NdisSetAoAcOptions | |
| 487 | NdisSetCoalescableTimerObject | |
| 488 | NdisSetEvent | |
| 489 | NdisSetOptionalHandlers | |
| 490 | NdisSetPacketCancelId | |
| 491 | NdisSetPacketPoolProtocolId | |
| 492 | NdisSetPacketStatus | |
| 493 | NdisSetPeriodicTimer | |
| 494 | NdisSetProtocolFilter | |
| 495 | NdisSetSessionCompartmentId | |
| 496 | NdisSetThreadObjectCompartmentId | |
| 497 | NdisSetThreadObjectCompartmentScope | |
| 498 | NdisSetTimer | |
| 499 | NdisSetTimerEx | |
| 500 | NdisSetTimerObject | |
| 501 | NdisSetupDmaTransfer | |
| 502 | NdisSynchronousOidRequest | |
| 503 | NdisSystemActiveProcessorCount | |
| 504 | NdisSystemProcessorCount | |
| 505 | NdisTerminateOffload | |
| 506 | NdisTerminateWrapper | |
| 507 | NdisTestRWLockHeldByCurrentProcessorRead | |
| 508 | NdisTestRWLockHeldByCurrentProcessorWrite | |
| 509 | NdisTransferData | |
| 510 | NdisTryAcquireNicActive | |
| 511 | NdisTryAcquireRWLockRead | |
| 512 | NdisTryAcquireRWLockWrite | |
| 513 | NdisTryPromoteRWLockFromReadToWrite | |
| 514 | NdisUnbindAdapter | |
| 515 | NdisUnchainBufferAtBack | |
| 516 | NdisUnchainBufferAtFront | |
| 517 | NdisUnicodeStringToAnsiString | |
| 518 | NdisUnmapFile | |
| 519 | NdisUpcaseUnicodeString | |
| 520 | NdisUpdateOffload | |
| 521 | NdisUpdateSharedMemory | |
| 522 | NdisWaitEvent | |
| 523 | NdisWdfAsyncPowerReferenceCompleteNotification | |
| 524 | NdisWdfChangeSingleInstance | |
| 525 | NdisWdfCloseIrpHandler | |
| 526 | NdisWdfCreateIrpHandler | |
| 527 | NdisWdfDeregisterCx | |
| 528 | NdisWdfDeviceControlIrpHandler | |
| 529 | NdisWdfDeviceInternalControlIrpHandler | |
| 530 | NdisWdfExecuteMethod | |
| 531 | NdisWdfGenerateFdoNameIndex | |
| 532 | NdisWdfGetAdapterContextFromAdapterHandle | |
| 533 | NdisWdfGetGuidToOidMap | |
| 534 | NdisWdfMiniportDataPathPause | |
| 535 | NdisWdfMiniportDataPathStart | |
| 536 | NdisWdfMiniportDereference | |
| 537 | NdisWdfMiniportSetPower | |
| 538 | NdisWdfMiniportStarted | |
| 539 | NdisWdfMiniportTryReference | |
| 540 | NdisWdfPnPAddDevice | |
| 541 | NdisWdfPnpPowerEventHandler | |
| 542 | NdisWdfQueryAllData | |
| 543 | NdisWdfQuerySingleInstance | |
| 544 | NdisWdfReadConfiguration | |
| 545 | NdisWdfRegisterCx | |
| 546 | NdisWdfRegisterMiniportDriver | |
| 547 | NdisWriteConfiguration | |
| 548 | NdisWriteErrorLogEntry | |
| 549 | NdisWriteEventLogEntry | |
| 550 | NdisWritePciSlotInformation | |
| 551 | NdisWritePcmciaAttributeMemory | |
| 552 | NetDmaAllocateChannel | |
| 553 | NetDmaChainCopyPhysicalToVirtual | |
| 554 | NetDmaChainCopyVirtualToVirtual | |
| 555 | NetDmaDeregisterClient | |
| 556 | NetDmaDeregisterProvider | |
| 557 | NetDmaEnumerateDmaProviders | |
| 558 | NetDmaFlushPendingDescriptors | |
| 559 | NetDmaFreeChannel | |
| 560 | NetDmaGetMaxPendingDescriptors | |
| 561 | NetDmaGetVersion | |
| 562 | NetDmaInterruptDpc | |
| 563 | NetDmaIsDmaCopyComplete | |
| 564 | NetDmaIsr | |
| 565 | NetDmaNullTransfer | |
| 566 | NetDmaPnPEventNotify | |
| 567 | NetDmaPrefetchNextDescriptor | |
| 568 | NetDmaProviderStart | |
| 569 | NetDmaProviderStop | |
| 570 | NetDmaRegisterClient | |
| 571 | NetDmaRegisterProvider | |
| 572 | NetDmaSetMaxPendingDescriptors | |
| 573 | TrFilterDprIndicateReceive | |
| 574 | TrFilterDprIndicateReceiveComplete |
lib/libc/mingw/lib-common/netapi32.def-9| ... | ... | @@ -70,10 +70,6 @@ I_NetDfsDeleteExitPoint |
| 70 | 70 | I_NetDfsDeleteLocalPartition |
| 71 | 71 | I_NetDfsFixLocalVolume |
| 72 | 72 | I_NetDfsGetFtServers |
| 73 | I_NetDatabaseDeltas | |
| 74 | I_NetDatabaseRedo | |
| 75 | I_NetDatabaseSync | |
| 76 | I_NetDatabaseSync2 | |
| 77 | 73 | I_NetDfsGetVersion |
| 78 | 74 | I_NetDfsIsThisADomainName |
| 79 | 75 | I_NetDfsManagerReportSiteInfo |
| ... | ... | @@ -100,11 +96,6 @@ I_NetNameValidate |
| 100 | 96 | I_NetPathCanonicalize |
| 101 | 97 | I_NetPathCompare |
| 102 | 98 | I_NetPathType |
| 103 | I_NetLogonSamLogonEx | |
| 104 | I_NetLogonSamLogonWithFlags | |
| 105 | I_NetLogonSendToSam | |
| 106 | I_NetLogonUasLogoff | |
| 107 | I_NetLogonUasLogon | |
| 108 | 99 | I_NetServerAuthenticate |
| 109 | 100 | I_NetServerAuthenticate2 |
| 110 | 101 | I_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 | ; | |
| 7 | LIBRARY NETID.DLL | |
| 8 | EXPORTS | |
| 9 | CreateNetIDPropertyPage | |
| 10 | ShowDcNotFoundErrorDialog |
lib/libc/mingw/lib-common/netio.def created+531| ... | ... | @@ -0,0 +1,531 @@ |
| 1 | LIBRARY "NETIO.SYS" | |
| 2 | EXPORTS | |
| 3 | AgileVPNDispatchTableInit | |
| 4 | AgileVPNFindCompartmentIdFromTunnelId | |
| 5 | AgileVPNFindTunnelInfoFromInterfaceIndex | |
| 6 | CancelMibChangeNotify2 | |
| 7 | CloseCompartment | |
| 8 | ConvertCompartmentGuidToId | |
| 9 | ConvertCompartmentIdToGuid | |
| 10 | ConvertInterfaceAliasToLuid | |
| 11 | ConvertInterfaceGuidToLuid | |
| 12 | ConvertInterfaceIndexToLuid | |
| 13 | ConvertInterfaceLuidToAlias | |
| 14 | ConvertInterfaceLuidToGuid | |
| 15 | ConvertInterfaceLuidToIndex | |
| 16 | ConvertInterfaceLuidToNameA | |
| 17 | ConvertInterfaceLuidToNameW | |
| 18 | ConvertInterfaceNameToLuidA | |
| 19 | ConvertInterfaceNameToLuidW | |
| 20 | ConvertInterfacePhysicalAddressToLuid | |
| 21 | ConvertIpv4MaskToLength | |
| 22 | ConvertLengthToIpv4Mask | |
| 23 | ConvertStringToInterfacePhysicalAddress | |
| 24 | CreateAnycastIpAddressEntry | |
| 25 | CreateCompartment | |
| 26 | CreateIpForwardEntry2 | |
| 27 | CreateIpNetEntry2 | |
| 28 | CreateSortedAddressPairs | |
| 29 | CreateUnicastIpAddressEntry | |
| 30 | DeleteAnycastIpAddressEntry | |
| 31 | DeleteCompartment | |
| 32 | DeleteIpForwardEntry2 | |
| 33 | DeleteIpNetEntry2 | |
| 34 | DeleteUnicastIpAddressEntry | |
| 35 | FeAcquireClassifyHandle | |
| 36 | FeAcquireWritableLayerDataPointer | |
| 37 | FeApplyModifiedLayerData | |
| 38 | FeCompleteClassify | |
| 39 | FeCopyIncomingValues | |
| 40 | FeGetWfpGlobalPtr | |
| 41 | FePendClassify | |
| 42 | FeReleaseCalloutContextList | |
| 43 | FeReleaseClassifyHandle | |
| 44 | FlushIpNetTable2 | |
| 45 | FlushIpPathTable | |
| 46 | FreeDnsSettings | |
| 47 | FreeInterfaceDnsSettings | |
| 48 | FreeMibTable | |
| 49 | FsbAllocate | |
| 50 | FsbAllocateAtDpcLevel | |
| 51 | FsbCreatePool | |
| 52 | FsbDestroyPool | |
| 53 | FsbFree | |
| 54 | FwpmEventProviderCreate0 | |
| 55 | FwpmEventProviderDestroy0 | |
| 56 | FwpmEventProviderFireNetEvent0 | |
| 57 | FwpmEventProviderIsNetEventTypeEnabled0 | |
| 58 | FwppAdvanceStreamDataPastOffset | |
| 59 | FwppCopyStreamDataToBuffer | |
| 60 | FwppLogVpnEvent | |
| 61 | FwppStreamContinue | |
| 62 | FwppStreamDeleteDpcQueue | |
| 63 | FwppStreamInject | |
| 64 | FwppTruncateStreamDataAfterOffset | |
| 65 | GetAnycastIpAddressEntry | |
| 66 | GetAnycastIpAddressTable | |
| 67 | GetBestInterface | |
| 68 | GetBestInterfaceEx | |
| 69 | GetBestRoute2 | |
| 70 | GetDefaultCompartmentId | |
| 71 | GetDnsSettings | |
| 72 | GetIfEntry2 | |
| 73 | GetIfEntry2Ex | |
| 74 | GetIfStackTable | |
| 75 | GetIfTable2 | |
| 76 | GetIfTable2Ex | |
| 77 | GetInterfaceCompartmentId | |
| 78 | GetInterfaceDnsSettings | |
| 79 | GetInvertedIfStackTable | |
| 80 | GetIpForwardEntry2 | |
| 81 | GetIpForwardTable2 | |
| 82 | GetIpInterfaceEntry | |
| 83 | GetIpInterfaceTable | |
| 84 | GetIpNetEntry2 | |
| 85 | GetIpNetTable2 | |
| 86 | GetIpNetworkConnectionBandwidthEstimates | |
| 87 | GetIpPathEntry | |
| 88 | GetIpPathTable | |
| 89 | GetMulticastIpAddressEntry | |
| 90 | GetMulticastIpAddressTable | |
| 91 | GetTeredoPort | |
| 92 | GetUnicastIpAddressEntry | |
| 93 | GetUnicastIpAddressTable | |
| 94 | HfAllocateHandle32 | |
| 95 | HfCreateFactory | |
| 96 | HfDestroyFactory | |
| 97 | HfFreeHandle32 | |
| 98 | HfGetPointerFromHandle32 | |
| 99 | HfResumeHandle32 | |
| 100 | HfSuspendHandle32 | |
| 101 | IPsecGwDispatchTableInit | |
| 102 | IPsecGwGetTunnelInfoFromIPInformation | |
| 103 | IPsecGwIsUdpEspPacket | |
| 104 | IPsecGwProcessSecureNbl | |
| 105 | IPsecGwSetCallbackDispatch | |
| 106 | IPsecGwTransformClearTextPacket | |
| 107 | InitializeCompartmentEntry | |
| 108 | InitializeIpForwardEntry | |
| 109 | InitializeIpInterfaceEntry | |
| 110 | InitializeUnicastIpAddressEntry | |
| 111 | InternalCleanupPersistentStore | |
| 112 | InternalCreateAnycastIpAddressEntry | |
| 113 | InternalCreateIpForwardEntry2 | |
| 114 | InternalCreateIpNetEntry2 | |
| 115 | InternalCreateUnicastIpAddressEntry | |
| 116 | InternalDeleteAnycastIpAddressEntry | |
| 117 | InternalDeleteIpForwardEntry2 | |
| 118 | InternalDeleteIpNetEntry2 | |
| 119 | InternalDeleteUnicastIpAddressEntry | |
| 120 | InternalFindInterfaceByAddress | |
| 121 | InternalGetAnycastIpAddressEntry | |
| 122 | InternalGetAnycastIpAddressTable | |
| 123 | InternalGetForwardIpTable2 | |
| 124 | InternalGetIfEntry2 | |
| 125 | InternalGetIfTable2 | |
| 126 | InternalGetIpForwardEntry2 | |
| 127 | InternalGetIpInterfaceEntry | |
| 128 | InternalGetIpInterfaceTable | |
| 129 | InternalGetIpNetEntry2 | |
| 130 | InternalGetIpNetTable2 | |
| 131 | InternalGetMulticastIpAddressEntry | |
| 132 | InternalGetMulticastIpAddressTable | |
| 133 | InternalGetUnicastIpAddressEntry | |
| 134 | InternalGetUnicastIpAddressTable | |
| 135 | InternalSetIpForwardEntry2 | |
| 136 | InternalSetIpInterfaceEntry | |
| 137 | InternalSetIpNetEntry2 | |
| 138 | InternalSetTeredoPort | |
| 139 | InternalSetUnicastIpAddressEntry | |
| 140 | IoctlKfdAbortTransaction | |
| 141 | IoctlKfdAddCache | |
| 142 | IoctlKfdAddIndex | |
| 143 | IoctlKfdBatchUpdate | |
| 144 | IoctlKfdBeginEnumFilters | |
| 145 | IoctlKfdCommitTransaction | |
| 146 | IoctlKfdDeleteCache | |
| 147 | IoctlKfdDeleteIndex | |
| 148 | IoctlKfdEndEnumFilters | |
| 149 | IoctlKfdMoveFilter | |
| 150 | IoctlKfdQueryEnumFilters | |
| 151 | IoctlKfdQueryLayerStatistics | |
| 152 | IoctlKfdResetState | |
| 153 | IoctlKfdSetBfeEngineSd | |
| 154 | KfdAddCalloutEntry | |
| 155 | KfdAleAcquireEndpointContextFromFlow | |
| 156 | KfdAleAcquireFlowHandleForFlow | |
| 157 | KfdAleGetTableFromHandle | |
| 158 | KfdAleInitializeFlowHandles | |
| 159 | KfdAleInitializeFlowTable | |
| 160 | KfdAleNotifyFlowDeletion | |
| 161 | KfdAleReleaseFlowHandleForFlow | |
| 162 | KfdAleRemoveFlowContextTable | |
| 163 | KfdAleUninitializeFlowHandles | |
| 164 | KfdAleUpdateEndpointContextStatus | |
| 165 | KfdAuditEvent | |
| 166 | KfdBfeEngineAccessCheck | |
| 167 | KfdCheckAcceptBypass | |
| 168 | KfdCheckAndCacheAcceptBypass | |
| 169 | KfdCheckAndCacheConnectBypass | |
| 170 | KfdCheckClassifyNeededAndUpdateEpoch | |
| 171 | KfdCheckConnectBypass | |
| 172 | KfdCheckOffloadFastLayers | |
| 173 | KfdClassify | |
| 174 | KfdClassify2 | |
| 175 | KfdDeRefCallout | |
| 176 | KfdDeleteCalloutEntry | |
| 177 | KfdDerefFilterContext | |
| 178 | KfdDeregisterLayerChangeCallback2 | |
| 179 | KfdDeregisterLayerEventNotify | |
| 180 | KfdDiagnoseEvent | |
| 181 | KfdDirectClassify | |
| 182 | KfdEnumLayer | |
| 183 | KfdFindFilterById | |
| 184 | KfdFreeEnumHandle | |
| 185 | KfdGetLayerActionFromEnumTemplate | |
| 186 | KfdGetLayerCacheEpoch | |
| 187 | KfdGetLayerPreclassifyEpoch | |
| 188 | KfdGetNextFilter | |
| 189 | KfdGetOffloadEpoch | |
| 190 | KfdGetRefCallout | |
| 191 | KfdIsActiveCallout | |
| 192 | KfdIsDiagnoseEventEnabled | |
| 193 | KfdIsLayerEmpty | |
| 194 | KfdIsLsoOffloadPossibleV4 | |
| 195 | KfdIsLsoOffloadPossibleV6 | |
| 196 | KfdIsTfoIncompatibleFilterPresent | |
| 197 | KfdIsV4InTransportFastEmpty | |
| 198 | KfdIsV4OutTransportFastEmpty | |
| 199 | KfdIsV6InTransportFastEmpty | |
| 200 | KfdIsV6OutTransportFastEmpty | |
| 201 | KfdNotifyFlowDeletion | |
| 202 | KfdPreClassify | |
| 203 | KfdQueryLayerStats | |
| 204 | KfdQueueLruCleanupWorkItem | |
| 205 | KfdRegisterLayerChangeCallback2 | |
| 206 | KfdRegisterLayerEventNotify | |
| 207 | KfdRegisterLayerEventNotifyEx | |
| 208 | KfdRegisterRscIncompatCalloutNotify | |
| 209 | KfdRegisterUsoIncompatCalloutNotify | |
| 210 | KfdReleaseCachedFilters | |
| 211 | KfdReleaseFilterContext | |
| 212 | KfdReleaseTerminatingFilters | |
| 213 | KfdSetWfpPerProcContextPtr | |
| 214 | KfdToggleFilterActivation | |
| 215 | MatchCondition | |
| 216 | MdpAllocate | |
| 217 | MdpAllocateAtDpcLevel | |
| 218 | MdpCreatePool | |
| 219 | MdpDestroyPool | |
| 220 | MdpFree | |
| 221 | NetioAdvanceNetBufferList | |
| 222 | NetioAdvanceToLocationInNetBuffer | |
| 223 | NetioAllocateAndInitializeStackBlock | |
| 224 | NetioAllocateAndReferenceCloneNetBufferList | |
| 225 | NetioAllocateAndReferenceCloneNetBufferListEx | |
| 226 | NetioAllocateAndReferenceCopyNetBufferListEx | |
| 227 | NetioAllocateAndReferenceFragmentNetBufferList | |
| 228 | NetioAllocateAndReferenceNetBufferAndNetBufferList | |
| 229 | NetioAllocateAndReferenceNetBufferList | |
| 230 | NetioAllocateAndReferenceNetBufferListNetBufferMdlAndData | |
| 231 | NetioAllocateAndReferenceReassembledNetBufferList | |
| 232 | NetioAllocateAndReferenceVacantNetBufferList | |
| 233 | NetioAllocateAndReferenceVacantNetBufferListEx | |
| 234 | NetioAllocateMdl | |
| 235 | NetioAllocateNetBuffer | |
| 236 | NetioAllocateNetBufferListNetBufferMdlAndDataPool | |
| 237 | NetioAllocateNetBufferMdlAndData | |
| 238 | NetioAllocateNetBufferMdlAndDataPool | |
| 239 | NetioAllocateOpaquePerProcessorContext | |
| 240 | NetioAssociateQoSFlowWithNbl | |
| 241 | NetioCleanupNetBufferListInformation | |
| 242 | NetioCloseKey | |
| 243 | NetioCompleteCloneNetBufferListChain | |
| 244 | NetioCompleteCopyNetBufferListChain | |
| 245 | NetioCompleteNetBufferAndNetBufferListChain | |
| 246 | NetioCompleteNetBufferListChain | |
| 247 | NetioCopyNetBufferListInformation | |
| 248 | NetioCreateForwardFlow | |
| 249 | NetioCreateKey | |
| 250 | NetioCreateQoSFlow | |
| 251 | NetioCreatevSwitchForwardFlow | |
| 252 | NetioDeleteQoSFlow | |
| 253 | NetioDereferenceNetBufferList | |
| 254 | NetioDereferenceNetBufferListChain | |
| 255 | NetioExpandNetBuffer | |
| 256 | NetioExtendNetBuffer | |
| 257 | NetioFlowAssociateContext | |
| 258 | NetioFlowRemoveContext | |
| 259 | NetioFlowRetrieveContext | |
| 260 | NetioFreeCloneNetBufferList | |
| 261 | NetioFreeCopyNetBufferList | |
| 262 | NetioFreeMdl | |
| 263 | NetioFreeNetBuffer | |
| 264 | NetioFreeNetBufferAndNetBufferList | |
| 265 | NetioFreeNetBufferList | |
| 266 | NetioFreeNetBufferListNetBufferMdlAndDataPool | |
| 267 | NetioFreeNetBufferMdlAndDataPool | |
| 268 | NetioFreeOpaquePerProcessorContext | |
| 269 | NetioFreeStackBlock | |
| 270 | NetioGetStatsForQoSFlow | |
| 271 | NetioGetSuperTriageBlock | |
| 272 | NetioInitNetworkRegistry | |
| 273 | NetioInitializeFlowsManager | |
| 274 | NetioInitializeMdl | |
| 275 | NetioInitializeNetBufferListAndFirstNetBufferContext | |
| 276 | NetioInitializeNetBufferListContext | |
| 277 | NetioInitializeNetBufferListContextPrimitive | |
| 278 | NetioInitializeNetBufferListLibrary | |
| 279 | NetioInitializeWorkQueue | |
| 280 | NetioInsertWorkQueue | |
| 281 | NetioLookupForwardFlow | |
| 282 | NetioLookupvSwitchForwardFlow | |
| 283 | NetioNcmActiveReferenceRequest | |
| 284 | NetioNcmCleanupState | |
| 285 | NetioNcmFastActiveReferenceRequest | |
| 286 | NetioNcmFastCheckAreAoAcPatternsSupported | |
| 287 | NetioNcmFastCheckIsAoAcCapable | |
| 288 | NetioNcmFastCheckIsMobileCore | |
| 289 | NetioNcmGetAllNotificationChannelContextParameters | |
| 290 | NetioNcmHandlePatternEviction | |
| 291 | NetioNcmInitializeState | |
| 292 | NetioNcmIsOwningProcessRtcApp | |
| 293 | NetioNcmNotificationChannelContextRequest | |
| 294 | NetioNcmNotifyRedirectOnInterface | |
| 295 | NetioNcmPatternCoalescingRequired | |
| 296 | NetioNcmQueryRtcPortHint | |
| 297 | NetioNcmQueryRtcPortRange | |
| 298 | NetioNcmSignalNcContextWorkQueueRoutine | |
| 299 | NetioNcmStoreBaseSupportedSlots | |
| 300 | NetioNcmStoreRtcPortHint | |
| 301 | NetioNcmStoreRtcPortRange | |
| 302 | NetioNcmTlObjectRequest | |
| 303 | NetioNcmTrackIsLegitimateWake | |
| 304 | NetioNrtAssociateContext | |
| 305 | NetioNrtDereferenceRecord | |
| 306 | NetioNrtDisassociateContext | |
| 307 | NetioNrtDispatch | |
| 308 | NetioNrtFindAndReferenceRecordByHandle | |
| 309 | NetioNrtFindAndReferenceRecordById | |
| 310 | NetioNrtFindOrCreateRecord | |
| 311 | NetioNrtGetIfIndex | |
| 312 | NetioNrtIsIpInRecord | |
| 313 | NetioNrtIsPktTaggingEnabled | |
| 314 | NetioNrtIsProxyInRecord | |
| 315 | NetioNrtIsTrackerDevice | |
| 316 | NetioNrtJoinRecords | |
| 317 | NetioNrtReferenceRecord | |
| 318 | NetioNrtStart | |
| 319 | NetioNrtStop | |
| 320 | NetioNrtWppLogRecord | |
| 321 | NetioOpenKey | |
| 322 | NetioPdcActivateNetwork | |
| 323 | NetioPdcDeactivateNetwork | |
| 324 | NetioPhClampMssOnIpPkt | |
| 325 | NetioPhClampMssOnTcpPkt | |
| 326 | NetioPhClampMssOnTcpSyn | |
| 327 | NetioPhFindTcpOption | |
| 328 | NetioPhGetIpUlProtocol | |
| 329 | NetioPhIsIcmpErrorForIcmpMessage | |
| 330 | NetioPhSkipIpv6ExtHdr | |
| 331 | NetioPhSkipToTransHdr | |
| 332 | NetioPhUpdateTcpChecksum | |
| 333 | NetioQueryNetBufferListTrafficClass | |
| 334 | NetioQueryValueKey | |
| 335 | NetioReferenceNetBufferList | |
| 336 | NetioReferenceNetBufferListChain | |
| 337 | NetioRefreshFlow | |
| 338 | NetioRegSyncDefaultChangeHandler | |
| 339 | NetioRegSyncInterface | |
| 340 | NetioRegSyncQueryAndUpdateKeyValue | |
| 341 | NetioRegisterProcessorAddCallback | |
| 342 | NetioReleaseFlow | |
| 343 | NetioRetreatNetBuffer | |
| 344 | NetioRetreatNetBufferList | |
| 345 | NetioSetTriageBlock | |
| 346 | NetioShutdownWorkQueue | |
| 347 | NetioStackBlockProcessorAddHandler | |
| 348 | NetioUnInitializeFlowsManager | |
| 349 | NetioUnInitializeNetBufferListLibrary | |
| 350 | NetioUnRegisterProcessorAddCallback | |
| 351 | NetioUpdateNetBufferListContext | |
| 352 | NetioValidateNetBuffer | |
| 353 | NetioValidateNetBufferList | |
| 354 | NetioWriteKey | |
| 355 | NmrClientAttachProvider | |
| 356 | NmrClientDetachProviderComplete | |
| 357 | NmrDeregisterClient | |
| 358 | NmrDeregisterProvider | |
| 359 | NmrProviderDetachClientComplete | |
| 360 | NmrRegisterClient | |
| 361 | NmrRegisterProvider | |
| 362 | NmrWaitForClientDeregisterComplete | |
| 363 | NmrWaitForProviderDeregisterComplete | |
| 364 | NotifyCompartmentChange | |
| 365 | NotifyIpInterfaceChange | |
| 366 | NotifyRouteChange2 | |
| 367 | NotifyStableUnicastIpAddressTable | |
| 368 | NotifyTeredoPortChange | |
| 369 | NotifyUnicastIpAddressChange | |
| 370 | NsiAllocateAndGetTable | |
| 371 | NsiClearPersistentSetting | |
| 372 | NsiDeregisterChangeNotification | |
| 373 | NsiDeregisterChangeNotificationEx | |
| 374 | NsiDeregisterLegacyHandler | |
| 375 | NsiEnumerateObjectsAllParameters | |
| 376 | NsiEnumerateObjectsAllParametersEx | |
| 377 | NsiEnumerateObjectsAllPersistentParametersWithMask | |
| 378 | NsiFreeTable | |
| 379 | NsiGetAllParameters | |
| 380 | NsiGetAllParametersEx | |
| 381 | NsiGetAllPersistentParametersWithMask | |
| 382 | NsiGetModuleHandle | |
| 383 | NsiGetObjectSecurity | |
| 384 | NsiGetParameter | |
| 385 | NsiGetParameterEx | |
| 386 | NsiReferenceDefaultObjectSecurity | |
| 387 | NsiRegisterChangeNotification | |
| 388 | NsiRegisterChangeNotificationEx | |
| 389 | NsiRegisterLegacyHandler | |
| 390 | NsiResetPersistentSetting | |
| 391 | NsiSetAllParameters | |
| 392 | NsiSetAllParametersEx | |
| 393 | NsiSetAllPersistentParametersWithMask | |
| 394 | NsiSetObjectSecurity | |
| 395 | NsiSetParameter | |
| 396 | NsiSetParameterEx | |
| 397 | OpenCompartment | |
| 398 | PtCheckTable | |
| 399 | PtCreateTable | |
| 400 | PtDeleteEntry | |
| 401 | PtDestroyTable | |
| 402 | PtEnumOverTable | |
| 403 | PtGetData | |
| 404 | PtGetExactMatch | |
| 405 | PtGetKey | |
| 406 | PtGetLongestMatch | |
| 407 | PtGetNextShorterMatch | |
| 408 | PtGetNumNodes | |
| 409 | PtInsertEntry | |
| 410 | PtSetData | |
| 411 | ResolveIpNetEntry2 | |
| 412 | RtlAllocateDummyMdlChain | |
| 413 | RtlCleanupTimerWheel | |
| 414 | RtlCleanupTimerWheelEntry | |
| 415 | RtlCleanupToeplitzHash | |
| 416 | RtlCompute37Hash | |
| 417 | RtlComputeToeplitzHash | |
| 418 | RtlCopyBufferToMdl | |
| 419 | RtlCopyMdlToBuffer | |
| 420 | RtlCopyMdlToMdl | |
| 421 | RtlCopyMdlToMdlIndirect | |
| 422 | RtlDeleteElementGenericTableBasicAvl | |
| 423 | RtlEndTimerWheelEnumeration | |
| 424 | RtlEnumerateNextTimerWheelEntry | |
| 425 | RtlFreeDummyMdlChain | |
| 426 | RtlGetNextExpirationTimerWheelTick | |
| 427 | RtlGetNextExpiredTimerWheelEntry | |
| 428 | RtlIndicateTimerWheelEntryTimerStart | |
| 429 | RtlInitializeTimerWheel | |
| 430 | RtlInitializeTimerWheelEntry | |
| 431 | RtlInitializeTimerWheelEnumeration | |
| 432 | RtlInitializeToeplitzHash | |
| 433 | RtlInsertElementGenericTableBasicAvl | |
| 434 | RtlInvokeStartRoutines | |
| 435 | RtlInvokeStopRoutines | |
| 436 | RtlIsTimerWheelSuspended | |
| 437 | RtlReinitializeToeplitzHash | |
| 438 | RtlResumeTimerWheel | |
| 439 | RtlReturnTimerWheelEntry | |
| 440 | RtlSuspendTimerWheel | |
| 441 | RtlUpdateCurrentTimerWheelTick | |
| 442 | SetDnsSettings | |
| 443 | SetInterfaceDnsSettings | |
| 444 | SetIpForwardEntry2 | |
| 445 | SetIpInterfaceEntry | |
| 446 | SetIpNetEntry2 | |
| 447 | SetUnicastIpAddressEntry | |
| 448 | SetWfpDeviceObject | |
| 449 | TlDefaultEventAbort | |
| 450 | TlDefaultEventConnect | |
| 451 | TlDefaultEventDisconnect | |
| 452 | TlDefaultEventError | |
| 453 | TlDefaultEventInspect | |
| 454 | TlDefaultEventNotify | |
| 455 | TlDefaultEventReceive | |
| 456 | TlDefaultEventReceiveMessages | |
| 457 | TlDefaultEventSendBacklog | |
| 458 | TlDefaultRequestCancel | |
| 459 | TlDefaultRequestCloseEndpoint | |
| 460 | TlDefaultRequestConnect | |
| 461 | TlDefaultRequestDisconnect | |
| 462 | TlDefaultRequestEndpoint | |
| 463 | TlDefaultRequestIoControl | |
| 464 | TlDefaultRequestIoControlEndpoint | |
| 465 | TlDefaultRequestListen | |
| 466 | TlDefaultRequestMessage | |
| 467 | TlDefaultRequestQueryDispatch | |
| 468 | TlDefaultRequestQueryDispatchEndpoint | |
| 469 | TlDefaultRequestReceive | |
| 470 | TlDefaultRequestReleaseIndicationList | |
| 471 | TlDefaultRequestResume | |
| 472 | TlDefaultRequestSend | |
| 473 | TlDefaultRequestSendMessages | |
| 474 | WfpAssociateContextToFlow | |
| 475 | WfpAssociateContextToFlowFast | |
| 476 | WfpCreateReassemblyContext | |
| 477 | WfpDecodedBufferFreeHelper | |
| 478 | WfpDeleteEntryLru | |
| 479 | WfpExpireEntryLru | |
| 480 | WfpFlowToEndpoint | |
| 481 | WfpFreeReassemblyContext | |
| 482 | WfpGetPacketTagCount | |
| 483 | WfpInitializeLeastRecentlyUsedList | |
| 484 | WfpInsertEntryLru | |
| 485 | WfpLruProcessExpiredEndpoint | |
| 486 | WfpLruQueueLruCleanupWorkItemForContext | |
| 487 | WfpNblInfoAlloc | |
| 488 | WfpNblInfoCleanup | |
| 489 | WfpNblInfoClearFlags | |
| 490 | WfpNblInfoClone | |
| 491 | WfpNblInfoDestroyIfUnused | |
| 492 | WfpNblInfoDispatchTableClear | |
| 493 | WfpNblInfoDispatchTableSet | |
| 494 | WfpNblInfoGet | |
| 495 | WfpNblInfoGetFlags | |
| 496 | WfpNblInfoInit | |
| 497 | WfpNblInfoSet | |
| 498 | WfpNblInfoSetFlags | |
| 499 | WfpNrptTriggerDecodeHelper | |
| 500 | WfpPacketTagCountIncrement | |
| 501 | WfpProcessFlowDelete | |
| 502 | WfpRefreshEntryLru | |
| 503 | WfpReleaseFlowLocation | |
| 504 | WfpRemoveContextFromFlow | |
| 505 | WfpRemoveContextFromFlowFast | |
| 506 | WfpReserveFlowLocation | |
| 507 | WfpScavangeLeastRecentlyUsedList | |
| 508 | WfpSetBucketsToEmptyLru | |
| 509 | WfpSetConfigureParametersDecodeHelper | |
| 510 | WfpSetDisconnectDecodeHelper | |
| 511 | WfpSetVpnTriggerFilePathsDecodeHelper | |
| 512 | WfpSetVpnTriggerSecurityDescriptorDecodeHelper | |
| 513 | WfpSetVpnTriggerSidsDecodeHelper | |
| 514 | WfpStartStreamShim | |
| 515 | WfpStopStreamShim | |
| 516 | WfpStreamEndpointCleanupBegin | |
| 517 | WfpStreamInspectDisconnect | |
| 518 | WfpStreamInspectReceive | |
| 519 | WfpStreamInspectRemoteDisconnect | |
| 520 | WfpStreamInspectSend | |
| 521 | WfpStreamIsFilterPresent | |
| 522 | WfpTransferReassemblyContextForFragments | |
| 523 | WfpTransferReassemblyContextUponCompletion | |
| 524 | WfpUninitializeLeastRecentlyUsedList | |
| 525 | WskCaptureProviderNPI | |
| 526 | WskDeregister | |
| 527 | WskQueryProviderCharacteristics | |
| 528 | WskRegister | |
| 529 | WskReleaseProviderNPI | |
| 530 | if_indextoname | |
| 531 | if_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 | ; | |
| 7 | LIBRARY netshell.dll | |
| 8 | EXPORTS | |
| 9 | DoInitialCleanup | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer | |
| 14 | HrCreateDesktopIcon | |
| 15 | HrGetAnswerFileParametersForNetCard | |
| 16 | HrGetExtendedStatusFromNCS | |
| 17 | HrGetIconFromMediaType | |
| 18 | HrGetIconFromMediaTypeEx | |
| 19 | HrGetInstanceGuidOfPreNT5NetCardInstance | |
| 20 | HrGetNetConExtendedStatusFromGuid | |
| 21 | HrGetNetConExtendedStatusFromINetConnection | |
| 22 | HrGetStatusStringFromNetConExtendedStatus | |
| 23 | HrIsIpStateCheckingEnabled | |
| 24 | HrLaunchConnection | |
| 25 | HrLaunchConnectionEx | |
| 26 | HrLaunchNetworkOptionalComponents | |
| 27 | HrOemUpgrade | |
| 28 | HrRenameConnection | |
| 29 | HrRunWizard | |
| 30 | InvokeDunFile | |
| 31 | NcFreeNetconProperties | |
| 32 | NcIsValidConnectionName | |
| 33 | NetSetupAddRasConnection | |
| 34 | NetSetupFinishInstall | |
| 35 | NetSetupInstallSoftware | |
| 36 | NetSetupPrepareSysPrep | |
| 37 | NetSetupRequestWizardPages | |
| 38 | NetSetupSetProgressCallback | |
| 39 | NormalizeExtendedStatus | |
| 40 | RaiseSupportDialog | |
| 41 | RepairConnection | |
| 42 | StartNCW |
lib/libc/mingw/lib-common/ntdllcrt.def.in created+225| ... | ... | @@ -0,0 +1,225 @@ |
| 1 | #include "func.def.in" | |
| 2 | ||
| 3 | LIBRARY "ntdll.dll" | |
| 4 | EXPORTS | |
| 5 | #ifdef DEF_I386 | |
| 6 | _CIcos | |
| 7 | _CIlog | |
| 8 | _CIpow | |
| 9 | _CIsin | |
| 10 | _CIsqrt | |
| 11 | #endif | |
| 12 | F_NON_I386(__C_specific_handler) | |
| 13 | F_NON_I386(;__chkstk) | |
| 14 | __isascii | |
| 15 | __iscsym | |
| 16 | __iscsymf | |
| 17 | F_X64(__misaligned_access) | |
| 18 | F_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 | |
| 40 | F_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 | |
| 56 | F64(_local_unwind) | |
| 57 | F_I386(_local_unwind4) | |
| 58 | _ltoa | |
| 59 | _ltoa_s | |
| 60 | _ltow | |
| 61 | _ltow_s | |
| 62 | _makepath_s | |
| 63 | _memccpy | |
| 64 | _memicmp | |
| 65 | F_X64(_setjmp) | |
| 66 | F_ARM32(_setjmp) | |
| 67 | F_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 | |
| 79 | strlwr == _strlwr | |
| 80 | _strlwr_s | |
| 81 | _strnicmp | |
| 82 | _strnset_s | |
| 83 | _strset_s | |
| 84 | _strupr | |
| 85 | _strupr_s | |
| 86 | _swprintf | |
| 87 | F_X86_ANY(_tolower) | |
| 88 | F_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 | |
| 106 | wcslwr == _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 | |
| 120 | abs | |
| 121 | atan F_X86_ANY(DATA) | |
| 122 | atan2 | |
| 123 | atoi | |
| 124 | atol | |
| 125 | bsearch | |
| 126 | bsearch_s | |
| 127 | ceil | |
| 128 | cos F_X86_ANY(DATA) | |
| 129 | fabs F_X86_ANY(DATA) | |
| 130 | floor F_X86_ANY(DATA) | |
| 131 | isalnum | |
| 132 | isalpha | |
| 133 | iscntrl | |
| 134 | isdigit | |
| 135 | isgraph | |
| 136 | islower | |
| 137 | isprint | |
| 138 | ispunct | |
| 139 | isspace | |
| 140 | isupper | |
| 141 | iswalnum | |
| 142 | iswalpha | |
| 143 | iswascii | |
| 144 | iswctype | |
| 145 | iswdigit | |
| 146 | iswgraph | |
| 147 | iswlower | |
| 148 | iswprint | |
| 149 | iswspace | |
| 150 | iswxdigit | |
| 151 | isxdigit | |
| 152 | labs | |
| 153 | log | |
| 154 | F_NON_I386(longjmp) | |
| 155 | mbstowcs | |
| 156 | memchr | |
| 157 | memcmp | |
| 158 | memcpy | |
| 159 | memcpy_s | |
| 160 | memmove | |
| 161 | memmove_s | |
| 162 | memset | |
| 163 | pow | |
| 164 | qsort | |
| 165 | qsort_s | |
| 166 | sin | |
| 167 | sprintf | |
| 168 | sprintf_s | |
| 169 | sqrt | |
| 170 | sscanf | |
| 171 | sscanf_s | |
| 172 | strcat | |
| 173 | strcat_s | |
| 174 | strchr | |
| 175 | strcmp | |
| 176 | strcpy | |
| 177 | strcpy_s | |
| 178 | strcspn | |
| 179 | strlen | |
| 180 | strncat | |
| 181 | strncat_s | |
| 182 | strncmp | |
| 183 | strncpy | |
| 184 | strncpy_s | |
| 185 | strnlen | |
| 186 | strpbrk | |
| 187 | strrchr | |
| 188 | strspn | |
| 189 | strstr | |
| 190 | strtok_s | |
| 191 | strtol | |
| 192 | strtoul | |
| 193 | swprintf | |
| 194 | swprintf_s | |
| 195 | swscanf_s | |
| 196 | tan | |
| 197 | tolower | |
| 198 | toupper | |
| 199 | towlower | |
| 200 | towupper | |
| 201 | vsprintf | |
| 202 | vsprintf_s | |
| 203 | vswprintf_s | |
| 204 | wcscat | |
| 205 | wcscat_s | |
| 206 | wcschr | |
| 207 | wcscmp | |
| 208 | wcscpy | |
| 209 | wcscpy_s | |
| 210 | wcscspn | |
| 211 | wcslen | |
| 212 | wcsncat | |
| 213 | wcsncat_s | |
| 214 | wcsncmp | |
| 215 | wcsncpy | |
| 216 | wcsncpy_s | |
| 217 | wcsnlen | |
| 218 | wcspbrk | |
| 219 | wcsrchr | |
| 220 | wcsspn | |
| 221 | wcsstr | |
| 222 | wcstok_s | |
| 223 | wcstol | |
| 224 | wcstombs | |
| 225 | wcstoul |
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 | ; | |
| 6 | LIBRARY "query.dll" | |
| 7 | EXPORTS | |
| 8 | LoadBinaryFilter | |
| 9 | LoadTextFilter | |
| 10 | BindIFilterFromStorage | |
| 11 | BindIFilterFromStream | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer | |
| 16 | LoadIFilter | |
| 17 | LoadIFilterEx |
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 | ; | |
| 6 | LIBRARY "OCCACHE.dll" | |
| 7 | EXPORTS | |
| 8 | FindControlClose | |
| 9 | FindFirstControl | |
| 10 | FindFirstControlArch | |
| 11 | FindNextControl | |
| 12 | FindNextControlArch | |
| 13 | GetControlDependentFile | |
| 14 | GetControlInfo | |
| 15 | IsModuleRemovable | |
| 16 | ReleaseControlHandle | |
| 17 | RemoveControlByHandle2 | |
| 18 | RemoveControlByHandle | |
| 19 | RemoveControlByName2 | |
| 20 | RemoveControlByName | |
| 21 | RemoveExpiredControls | |
| 22 | SweepControlsByLastAccessDate |
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 | ; | |
| 7 | LIBRARY ODBCCP32.dll | |
| 8 | EXPORTS | |
| 9 | SQLInstallDriver | |
| 10 | SQLInstallDriverManager | |
| 11 | SQLGetInstalledDrivers | |
| 12 | SQLGetAvailableDrivers | |
| 13 | SQLConfigDataSource | |
| 14 | SQLRemoveDefaultDataSource | |
| 15 | SQLWriteDSNToIni | |
| 16 | SQLRemoveDSNFromIni | |
| 17 | SQLInstallODBC | |
| 18 | SQLManageDataSources | |
| 19 | SQLCreateDataSource | |
| 20 | SQLGetTranslator | |
| 21 | SQLWritePrivateProfileString | |
| 22 | SQLGetPrivateProfileString | |
| 23 | SQLValidDSN | |
| 24 | SQLRemoveDriverManager | |
| 25 | SQLInstallTranslator | |
| 26 | SQLRemoveTranslator | |
| 27 | SQLRemoveDriver | |
| 28 | SQLConfigDriver | |
| 29 | SQLInstallerError | |
| 30 | SQLPostInstallerError | |
| 31 | SQLReadFileDSN | |
| 32 | SQLWriteFileDSN | |
| 33 | SQLInstallDriverEx | |
| 34 | SQLGetConfigMode | |
| 35 | SQLSetConfigMode | |
| 36 | SQLInstallTranslatorEx | |
| 37 | SQLCreateDataSourceEx | |
| 38 | ODBCCPlApplet | |
| 39 | SelectTransDlg | |
| 40 | SQLInstallDriverW | |
| 41 | SQLInstallDriverManagerW | |
| 42 | SQLGetInstalledDriversW | |
| 43 | SQLGetAvailableDriversW | |
| 44 | SQLConfigDataSourceW | |
| 45 | SQLWriteDSNToIniW | |
| 46 | SQLRemoveDSNFromIniW | |
| 47 | SQLInstallODBCW | |
| 48 | SQLCreateDataSourceW | |
| 49 | SQLGetTranslatorW | |
| 50 | SQLWritePrivateProfileStringW | |
| 51 | SQLGetPrivateProfileStringW | |
| 52 | SQLValidDSNW | |
| 53 | SQLInstallTranslatorW | |
| 54 | SQLRemoveTranslatorW | |
| 55 | SQLRemoveDriverW | |
| 56 | SQLConfigDriverW | |
| 57 | SQLInstallerErrorW | |
| 58 | SQLPostInstallerErrorW | |
| 59 | SQLReadFileDSNW | |
| 60 | SQLWriteFileDSNW | |
| 61 | SQLInstallDriverExW | |
| 62 | SQLInstallTranslatorExW | |
| 63 | SQLCreateDataSourceExW | |
| 64 | SQLLoadDriverListBox | |
| 65 | SQLLoadDataSourcesListBox |
lib/libc/mingw/lib-common/oleaut32.def.in+12-13| ... | ... | @@ -144,14 +144,14 @@ VarTokenizeFormatString |
| 144 | 144 | VarAdd |
| 145 | 145 | VarAnd |
| 146 | 146 | VarDiv |
| 147 | F_64(BSTR_UserFree64) | |
| 148 | F_64(BSTR_UserMarshal64) | |
| 147 | F64(BSTR_UserFree64) | |
| 148 | F64(BSTR_UserMarshal64) | |
| 149 | 149 | DispCallFunc |
| 150 | 150 | VariantChangeTypeEx |
| 151 | 151 | SafeArrayPtrOfIndex |
| 152 | 152 | SysStringByteLen |
| 153 | 153 | SysAllocStringByteLen |
| 154 | F_64(BSTR_UserSize64) | |
| 154 | F64(BSTR_UserSize64) | |
| 155 | 155 | VarEqv |
| 156 | 156 | VarIdiv |
| 157 | 157 | VarImp |
| ... | ... | @@ -300,7 +300,7 @@ LPSAFEARRAY_Marshal |
| 300 | 300 | LPSAFEARRAY_Unmarshal |
| 301 | 301 | VarDecCmpR8 |
| 302 | 302 | VarCyAdd |
| 303 | F_64(BSTR_UserUnmarshal64) | |
| 303 | F64(BSTR_UserUnmarshal64) | |
| 304 | 304 | DllCanUnloadNow |
| 305 | 305 | DllGetClassObject |
| 306 | 306 | OACreateTypeLib2 |
| ... | ... | @@ -325,11 +325,11 @@ DllRegisterServer |
| 325 | 325 | DllUnregisterServer |
| 326 | 326 | GetRecordInfoFromGuids |
| 327 | 327 | GetRecordInfoFromTypeInfo |
| 328 | F_64(LPSAFEARRAY_UserFree64) | |
| 328 | F64(LPSAFEARRAY_UserFree64) | |
| 329 | 329 | SetVarConversionLocaleSetting |
| 330 | 330 | GetVarConversionLocaleSetting |
| 331 | 331 | SetOaNoCache |
| 332 | F_64(LPSAFEARRAY_UserMarshal64) | |
| 332 | F64(LPSAFEARRAY_UserMarshal64) | |
| 333 | 333 | VarCyMulI8 |
| 334 | 334 | VarDateFromUdate |
| 335 | 335 | VarUdateFromDate |
| ... | ... | @@ -351,13 +351,12 @@ VarI2FromI8 |
| 351 | 351 | VarI2FromUI8 |
| 352 | 352 | VarI4FromI8 |
| 353 | 353 | VarI4FromUI8 |
| 354 | F_64(LPSAFEARRAY_UserSize64) | |
| 355 | F_64(LPSAFEARRAY_UserUnmarshal64) | |
| 356 | OACreateTypeLib2 | |
| 357 | F_64(VARIANT_UserFree64) | |
| 358 | F_64(VARIANT_UserMarshal64) | |
| 359 | F_64(VARIANT_UserSize64) | |
| 360 | F_64(VARIANT_UserUnmarshal64) | |
| 354 | F64(LPSAFEARRAY_UserSize64) | |
| 355 | F64(LPSAFEARRAY_UserUnmarshal64) | |
| 356 | F64(VARIANT_UserFree64) | |
| 357 | F64(VARIANT_UserMarshal64) | |
| 358 | F64(VARIANT_UserSize64) | |
| 359 | F64(VARIANT_UserUnmarshal64) | |
| 361 | 360 | VarR4FromI8 |
| 362 | 361 | VarR4FromUI8 |
| 363 | 362 | VarR8FromI8 |
lib/libc/mingw/lib-common/opends60.def created+82| ... | ... | @@ -0,0 +1,82 @@ |
| 1 | LIBRARY OPENDS60.dll | |
| 2 | EXPORTS | |
| 3 | ODS_init | |
| 4 | srv_thread | |
| 5 | int_getpOAInfo | |
| 6 | int_setpOAInfo | |
| 7 | srv_IgnoreAnsiToOem | |
| 8 | srv_ackattention | |
| 9 | srv_alloc | |
| 10 | srv_ansi_describe | |
| 11 | srv_ansi_paramdata | |
| 12 | srv_ansi_sendmsg | |
| 13 | srv_ansi_sendrow | |
| 14 | srv_bmove | |
| 15 | srv_bzero | |
| 16 | srv_clearstatistics | |
| 17 | srv_config | |
| 18 | srv_config_alloc | |
| 19 | srv_convert | |
| 20 | srv_describe | |
| 21 | srv_errhandle | |
| 22 | srv_event | |
| 23 | srv_eventdata | |
| 24 | srv_flush | |
| 25 | srv_free | |
| 26 | srv_get_text | |
| 27 | srv_getbindtoken | |
| 28 | srv_getconfig | |
| 29 | srv_getdtcxact | |
| 30 | srv_getserver | |
| 31 | srv_getuserdata | |
| 32 | srv_got_attention | |
| 33 | srv_handle | |
| 34 | srv_impersonate_client | |
| 35 | srv_init | |
| 36 | srv_iodead | |
| 37 | srv_langcpy | |
| 38 | srv_langlen | |
| 39 | srv_langptr | |
| 40 | srv_log | |
| 41 | srv_message_handler | |
| 42 | srv_paramdata | |
| 43 | srv_paraminfo | |
| 44 | srv_paramlen | |
| 45 | srv_parammaxlen | |
| 46 | srv_paramname | |
| 47 | srv_paramnumber | |
| 48 | srv_paramset | |
| 49 | srv_paramsetoutput | |
| 50 | srv_paramstatus | |
| 51 | srv_paramtype | |
| 52 | srv_pfield | |
| 53 | srv_pfieldex | |
| 54 | srv_post_completion_queue | |
| 55 | srv_post_handle | |
| 56 | srv_pre_handle | |
| 57 | srv_returnval | |
| 58 | srv_revert_to_self | |
| 59 | srv_rpcdb | |
| 60 | srv_rpcname | |
| 61 | srv_rpcnumber | |
| 62 | srv_rpcoptions | |
| 63 | srv_rpcowner | |
| 64 | srv_rpcparams | |
| 65 | srv_run | |
| 66 | srv_senddone | |
| 67 | srv_sendmsg | |
| 68 | srv_sendrow | |
| 69 | srv_sendstatistics | |
| 70 | srv_sendstatus | |
| 71 | srv_setcoldata | |
| 72 | srv_setcollen | |
| 73 | srv_setevent | |
| 74 | srv_setuserdata | |
| 75 | srv_setutype | |
| 76 | srv_sfield | |
| 77 | srv_symbol | |
| 78 | srv_tdsversion | |
| 79 | srv_terminatethread | |
| 80 | srv_willconvert | |
| 81 | srv_writebuf | |
| 82 | srv_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 | ; | |
| 7 | LIBRARY OSUNINST.dll | |
| 8 | EXPORTS | |
| 9 | ExecuteUninstall | |
| 10 | GetUninstallImageSize | |
| 11 | IsUninstallImageValid | |
| 12 | ProvideUiAlerts | |
| 13 | RemoveUninstallImage |
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 | ; | |
| 6 | LIBRARY "pcwum.dll" | |
| 7 | EXPORTS | |
| 8 | PcwAddQueryItem | |
| 9 | PcwClearCounterSetSecurity | |
| 10 | PcwCollectData | |
| 11 | PcwCompleteNotification | |
| 12 | PcwCreateNotifier | |
| 13 | PcwCreateQuery | |
| 14 | PcwDisconnectCounterSet | |
| 15 | PcwEnumerateInstances | |
| 16 | PcwIsNotifierAlive | |
| 17 | PcwQueryCounterSetSecurity | |
| 18 | PcwReadNotificationData | |
| 19 | PcwRegisterCounterSet | |
| 20 | PcwRemoveQueryItem | |
| 21 | PcwSendNotification | |
| 22 | PcwSendStatelessNotification | |
| 23 | PcwSetCounterSetSecurity | |
| 24 | PcwSetQueryItemUserData | |
| 25 | PerfCreateInstance | |
| 26 | PerfDecrementULongCounterValue | |
| 27 | PerfDecrementULongLongCounterValue | |
| 28 | PerfDeleteInstance | |
| 29 | PerfIncrementULongCounterValue | |
| 30 | PerfIncrementULongLongCounterValue | |
| 31 | PerfQueryInstance | |
| 32 | PerfSetCounterRefValue | |
| 33 | PerfSetCounterSetInfo | |
| 34 | PerfSetULongCounterValue | |
| 35 | PerfSetULongLongCounterValue | |
| 36 | PerfStartProvider | |
| 37 | PerfStartProviderEx | |
| 38 | PerfStopProvider | |
| 39 | StmAlignSize | |
| 40 | StmAllocateFlat | |
| 41 | StmCoalesceChunks | |
| 42 | StmDeinitialize | |
| 43 | StmInitialize | |
| 44 | StmReduceSize | |
| 45 | StmReserve | |
| 46 | StmWrite |
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 | ; | |
| 6 | LIBRARY "pdh.dll" | |
| 7 | EXPORTS | |
| 8 | PdhAddCounterA | |
| 9 | PdhAddCounterW | |
| 10 | PdhAddEnglishCounterA | |
| 11 | PdhAddEnglishCounterW | |
| 12 | PdhAddRelogCounter | |
| 13 | PdhBindInputDataSourceA | |
| 14 | PdhBindInputDataSourceW | |
| 15 | PdhBrowseCountersA | |
| 16 | PdhBrowseCountersHA | |
| 17 | PdhBrowseCountersHW | |
| 18 | PdhBrowseCountersW | |
| 19 | PdhCalculateCounterFromRawValue | |
| 20 | PdhCloseLog | |
| 21 | PdhCloseQuery | |
| 22 | PdhCollectQueryData | |
| 23 | PdhCollectQueryDataEx | |
| 24 | PdhCollectQueryDataWithTime | |
| 25 | PdhComputeCounterStatistics | |
| 26 | PdhConnectMachineA | |
| 27 | PdhConnectMachineW | |
| 28 | PdhCreateSQLTablesA | |
| 29 | PdhCreateSQLTablesW | |
| 30 | PdhEnumLogSetNamesA | |
| 31 | PdhEnumLogSetNamesW | |
| 32 | PdhEnumMachinesA | |
| 33 | PdhEnumMachinesHA | |
| 34 | PdhEnumMachinesHW | |
| 35 | PdhEnumMachinesW | |
| 36 | PdhEnumObjectItemsA | |
| 37 | PdhEnumObjectItemsHA | |
| 38 | PdhEnumObjectItemsHW | |
| 39 | PdhEnumObjectItemsW | |
| 40 | PdhEnumObjectsA | |
| 41 | PdhEnumObjectsHA | |
| 42 | PdhEnumObjectsHW | |
| 43 | PdhEnumObjectsW | |
| 44 | PdhExpandCounterPathA | |
| 45 | PdhExpandCounterPathW | |
| 46 | PdhExpandWildCardPathA | |
| 47 | PdhExpandWildCardPathHA | |
| 48 | PdhExpandWildCardPathHW | |
| 49 | PdhExpandWildCardPathW | |
| 50 | PdhFormatFromRawValue | |
| 51 | PdhGetCounterInfoA | |
| 52 | PdhGetCounterInfoW | |
| 53 | PdhGetCounterTimeBase | |
| 54 | PdhGetDataSourceTimeRangeA | |
| 55 | PdhGetDataSourceTimeRangeH | |
| 56 | PdhGetDataSourceTimeRangeW | |
| 57 | PdhGetDefaultPerfCounterA | |
| 58 | PdhGetDefaultPerfCounterHA | |
| 59 | PdhGetDefaultPerfCounterHW | |
| 60 | PdhGetDefaultPerfCounterW | |
| 61 | PdhGetDefaultPerfObjectA | |
| 62 | PdhGetDefaultPerfObjectHA | |
| 63 | PdhGetDefaultPerfObjectHW | |
| 64 | PdhGetDefaultPerfObjectW | |
| 65 | PdhGetDllVersion | |
| 66 | PdhGetExplainText | |
| 67 | PdhGetFormattedCounterArrayA | |
| 68 | PdhGetFormattedCounterArrayW | |
| 69 | PdhGetFormattedCounterValue | |
| 70 | PdhGetLogFileSize | |
| 71 | PdhGetLogFileTypeW | |
| 72 | PdhGetLogSetGUID | |
| 73 | PdhGetRawCounterArrayA | |
| 74 | PdhGetRawCounterArrayW | |
| 75 | PdhGetRawCounterValue | |
| 76 | PdhIsRealTimeQuery | |
| 77 | PdhLookupPerfIndexByNameA | |
| 78 | PdhLookupPerfIndexByNameW | |
| 79 | PdhLookupPerfNameByIndexA | |
| 80 | PdhLookupPerfNameByIndexW | |
| 81 | PdhMakeCounterPathA | |
| 82 | PdhMakeCounterPathW | |
| 83 | PdhOpenLogA | |
| 84 | PdhOpenLogW | |
| 85 | PdhOpenQuery | |
| 86 | PdhOpenQueryA | |
| 87 | PdhOpenQueryH | |
| 88 | PdhOpenQueryW | |
| 89 | PdhParseCounterPathA | |
| 90 | PdhParseCounterPathW | |
| 91 | PdhParseInstanceNameA | |
| 92 | PdhParseInstanceNameW | |
| 93 | PdhReadRawLogRecord | |
| 94 | PdhRelogW | |
| 95 | PdhRemoveCounter | |
| 96 | PdhResetRelogCounterValues | |
| 97 | PdhSelectDataSourceA | |
| 98 | PdhSelectDataSourceW | |
| 99 | PdhSetCounterScaleFactor | |
| 100 | PdhSetCounterValue | |
| 101 | PdhSetDefaultRealTimeDataSource | |
| 102 | PdhSetLogSetRunID | |
| 103 | PdhSetQueryTimeRange | |
| 104 | PdhTranslate009CounterW | |
| 105 | PdhTranslateLocaleCounterW | |
| 106 | PdhUpdateLogA | |
| 107 | PdhUpdateLogFileCatalog | |
| 108 | PdhUpdateLogW | |
| 109 | PdhValidatePathA | |
| 110 | PdhValidatePathExA | |
| 111 | PdhValidatePathExW | |
| 112 | PdhValidatePathW | |
| 113 | PdhVbAddCounter | |
| 114 | PdhVbCreateCounterPathList | |
| 115 | PdhVbGetCounterPathElements | |
| 116 | PdhVbGetCounterPathFromList | |
| 117 | PdhVbGetDoubleCounterValue | |
| 118 | PdhVbGetLogFileSize | |
| 119 | PdhVbGetOneCounterPath | |
| 120 | PdhVbIsGoodStatus | |
| 121 | PdhVbOpenLog | |
| 122 | PdhVbOpenQuery | |
| 123 | PdhVbUpdateLog | |
| 124 | PdhVerifySQLDBA | |
| 125 | PdhVerifySQLDBW | |
| 126 | PdhWriteRelogSample |
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 | ; | |
| 7 | LIBRARY perfctrs.dll | |
| 8 | EXPORTS | |
| 9 | OpenNbfPerformanceData | |
| 10 | CollectNbfPerformanceData | |
| 11 | CloseNbfPerformanceData | |
| 12 | OpenTcpIpPerformanceData | |
| 13 | CollectTcpIpPerformanceData | |
| 14 | CloseTcpIpPerformanceData | |
| 15 | OpenIPXPerformanceData | |
| 16 | CollectIPXPerformanceData | |
| 17 | CloseIPXPerformanceData | |
| 18 | OpenSPXPerformanceData | |
| 19 | CollectSPXPerformanceData | |
| 20 | CloseSPXPerformanceData | |
| 21 | OpenNWNBPerformanceData | |
| 22 | CollectNWNBPerformanceData | |
| 23 | CloseNWNBPerformanceData | |
| 24 | OpenDhcpPerformanceData | |
| 25 | CollectDhcpPerformanceData | |
| 26 | CloseDhcpPerformanceData |
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 | ; | |
| 7 | LIBRARY PerfDisk.dll | |
| 8 | EXPORTS | |
| 9 | CloseDiskObject | |
| 10 | CollectDiskObjectData | |
| 11 | OpenDiskObject |
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 | ; | |
| 7 | LIBRARY PerfNet.dll | |
| 8 | EXPORTS | |
| 9 | CloseNetSvcsObject | |
| 10 | CollectNetSvcsObjectData | |
| 11 | OpenNetSvcsObject |
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 | ; | |
| 7 | LIBRARY PerfOS.dll | |
| 8 | EXPORTS | |
| 9 | CloseOSObject | |
| 10 | CollectOSObjectData | |
| 11 | OpenOSObject |
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 | ; | |
| 7 | LIBRARY PerfProc.dll | |
| 8 | EXPORTS | |
| 9 | CloseSysProcessObject | |
| 10 | CollectSysProcessObjectData | |
| 11 | OpenSysProcessObject |
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 | ; | |
| 7 | LIBRARY PerfTS.dll | |
| 8 | EXPORTS | |
| 9 | CloseTSObject | |
| 10 | CollectTSObjectData | |
| 11 | OpenTSObject |
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 | ; | |
| 7 | LIBRARY PHOTOWIZ.dll | |
| 8 | EXPORTS | |
| 9 | UsePPWForPrintTo | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllInstall | |
| 13 | DllMain | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer |
lib/libc/mingw/lib-common/profapi.def created+21| ... | ... | @@ -0,0 +1,21 @@ |
| 1 | LIBRARY profapi | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateAppContainerEnumerator | |
| 6 | CreateEnvBlock | |
| 7 | DeleteAppContainerEnumerator | |
| 8 | DestroyEnvBlock | |
| 9 | ExpandEnvStringForUser | |
| 10 | GetAppContainerPath | |
| 11 | GetAppContainerPathFromSidString | |
| 12 | GetAppContainerRegistryHandle | |
| 13 | GetAppContainerRegistryHandleFromName | |
| 14 | GetAppContainerRegistryPath | |
| 15 | GetAppContainerSpecificSubPath | |
| 16 | GetBasicProfileFolderPath | |
| 17 | GetBasicProfileFolderPathAlloc | |
| 18 | GetBasicProfileFolderPathEx | |
| 19 | GetNextAppContainerSid | |
| 20 | LoadProfileBasic | |
| 21 | UnloadProfileBasic |
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 | ; | |
| 7 | LIBRARY PSTOREC.DLL | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | PStoreCreateInstance | |
| 14 | PStoreEnumProviders |
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 | ; | |
| 6 | LIBRARY "QUtil.dll" | |
| 7 | EXPORTS | |
| 8 | AllocConnections | |
| 9 | AllocCountedString | |
| 10 | AllocFixupInfo | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer | |
| 15 | FreeConnections | |
| 16 | FreeCountedString | |
| 17 | FreeFixupInfo | |
| 18 | FreeIsolationInfo | |
| 19 | FreeIsolationInfoEx | |
| 20 | FreeNapComponentRegistrationInfoArray | |
| 21 | FreeNetworkSoH | |
| 22 | FreePrivateData | |
| 23 | FreeSoH | |
| 24 | FreeSoHAttributeValue | |
| 25 | FreeSystemHealthAgentState | |
| 26 | InitializeNapAgentNotifier | |
| 27 | UninitializeNapAgentNotifier |
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 | ; | |
| 7 | LIBRARY rasadhlp.dll | |
| 8 | EXPORTS | |
| 9 | AcsHlpAttemptConnection | |
| 10 | AcsHlpNbConnection | |
| 11 | AcsHlpNoteNewConnection | |
| 12 | WSAttemptAutodialAddr | |
| 13 | WSAttemptAutodialName | |
| 14 | WSNoteSuccessfulHostentLookup |
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 | ; | |
| 7 | LIBRARY rasauto.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SetAddressDisabledEx |
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 | ; | |
| 6 | LIBRARY "RASCHAP.dll" | |
| 7 | EXPORTS | |
| 8 | RasEapCreateConnectionProperties2 | |
| 9 | RasEapCreateConnectionPropertiesXml | |
| 10 | RasEapCreateUserProperties2 | |
| 11 | RasCpEnumProtocolIds | |
| 12 | RasCpGetInfo | |
| 13 | RasEapCreateConnectionProperties | |
| 14 | RasEapCreateMethodConfiguration | |
| 15 | RasEapCreateUserProperties | |
| 16 | RasEapFreeMemory | |
| 17 | RasEapGetConfigBlobAndUserBlob | |
| 18 | RasEapGetCredentials | |
| 19 | RasEapGetIdentity | |
| 20 | RasEapGetIdentityPageGuid | |
| 21 | RasEapGetInfo | |
| 22 | RasEapGetMethodProperties | |
| 23 | RasEapGetNextPageGuid | |
| 24 | RasEapInvokeConfigUI | |
| 25 | RasEapInvokeInteractiveUI | |
| 26 | RasEapQueryCredentialInputFields | |
| 27 | RasEapQueryInteractiveUIInputFields | |
| 28 | RasEapQueryUIBlobFromInteractiveUIInputFields | |
| 29 | RasEapQueryUserBlobFromCredentialInputFields |
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 | ; | |
| 7 | LIBRARY rasctrs.dll | |
| 8 | EXPORTS | |
| 9 | OpenRasPerformanceData | |
| 10 | CollectRasPerformanceData | |
| 11 | CloseRasPerformanceData |
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 | ; | |
| 7 | LIBRARY RASMONTR.dll | |
| 8 | EXPORTS | |
| 9 | GetDiagnosticFunctions | |
| 10 | InitHelperDll | |
| 11 | RutlAlloc | |
| 12 | RutlAssignmentFromTokenAndDword | |
| 13 | RutlAssignmentFromTokens | |
| 14 | RutlCloseDumpFile | |
| 15 | RutlCreateDumpFile | |
| 16 | RutlDwordDup | |
| 17 | RutlFree | |
| 18 | RutlGetOsVersion | |
| 19 | RutlGetTagToken | |
| 20 | RutlIsHelpToken | |
| 21 | RutlParse | |
| 22 | RutlStrDup |
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 | ; | |
| 7 | LIBRARY rasmxs.dll | |
| 8 | EXPORTS | |
| 9 | DeviceConnect | |
| 10 | DeviceDone | |
| 11 | DeviceEnum | |
| 12 | DeviceGetInfo | |
| 13 | DeviceListen | |
| 14 | DeviceSetInfo | |
| 15 | DeviceWork |
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 | ; | |
| 7 | LIBRARY rasser.dll | |
| 8 | EXPORTS | |
| 9 | PortChangeCallback | |
| 10 | PortClearStatistics | |
| 11 | PortClose | |
| 12 | PortCompressionSetInfo | |
| 13 | PortConnect | |
| 14 | PortDisconnect | |
| 15 | PortEnum | |
| 16 | PortGetInfo | |
| 17 | PortGetPortState | |
| 18 | PortGetStatistics | |
| 19 | PortInit | |
| 20 | PortOpen | |
| 21 | PortReceive | |
| 22 | PortReceiveComplete | |
| 23 | PortSend | |
| 24 | PortSetFraming | |
| 25 | PortSetINetCfg | |
| 26 | PortSetInfo | |
| 27 | PortTestSignalState |
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 | ; | |
| 6 | LIBRARY "rastapi.dll" | |
| 7 | EXPORTS | |
| 8 | AddPorts | |
| 9 | CheckRasmanDependency | |
| 10 | DeviceConnect | |
| 11 | DeviceDone | |
| 12 | DeviceEnum | |
| 13 | DeviceGetDevConfig | |
| 14 | DeviceGetDevConfigEx | |
| 15 | DeviceGetInfo | |
| 16 | DeviceListen | |
| 17 | DeviceSetDevConfig | |
| 18 | DeviceSetInfo | |
| 19 | DeviceWork | |
| 20 | EnableDeviceForDialIn | |
| 21 | GetConnectInfo | |
| 22 | GetZeroDeviceInfo | |
| 23 | InitializeDriverIoControl | |
| 24 | PortChangeCallback | |
| 25 | PortClearStatistics | |
| 26 | PortClose | |
| 27 | PortCompressionSetInfo | |
| 28 | PortConnect | |
| 29 | PortDisconnect | |
| 30 | PortEnum | |
| 31 | PortGetIOHandle | |
| 32 | PortGetInfo | |
| 33 | PortGetPortState | |
| 34 | PortGetStatistics | |
| 35 | PortInit | |
| 36 | PortOpen | |
| 37 | PortOpenExternal | |
| 38 | PortReceive | |
| 39 | PortReceiveComplete | |
| 40 | PortSend | |
| 41 | PortSetFraming | |
| 42 | PortSetInfo | |
| 43 | PortSetIoCompletionPort | |
| 44 | PortTestSignalState | |
| 45 | RasTapiIsPulseDial | |
| 46 | RastapiGetCalledID | |
| 47 | RastapiSetCalledID | |
| 48 | RefreshDevices | |
| 49 | RemovePort | |
| 50 | SetCommSettings | |
| 51 | UnloadRastapiDll | |
| 52 | UpdateTapiService |
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 | ; | |
| 7 | LIBRARY RDPCFGEX.dll | |
| 8 | EXPORTS | |
| 9 | ExGetCfgVersionInfo | |
| 10 | ExtEncryptionLevels | |
| 11 | ExtEnd | |
| 12 | ExtGetCapabilities | |
| 13 | ExtGetEncryptionLevelAndDescrEx | |
| 14 | ExtGetEncryptionLevelDescr | |
| 15 | ExtGetSecurityLayerDescrString | |
| 16 | ExtGetSecurityLayerName | |
| 17 | ExtSecurityLayers | |
| 18 | ExtStart |
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 | ; | |
| 6 | LIBRARY "REGAPI.dll" | |
| 7 | EXPORTS | |
| 8 | CheckStringForAsciiConversion | |
| 9 | GetDomainName | |
| 10 | QueryUserConfig | |
| 11 | QueryUserProperty | |
| 12 | RegBuildNumberQuery | |
| 13 | RegCdCreateA | |
| 14 | RegCdCreateW | |
| 15 | RegCdDeleteA | |
| 16 | RegCdDeleteW | |
| 17 | RegCdEnumerateA | |
| 18 | RegCdEnumerateW | |
| 19 | RegCdQueryA | |
| 20 | RegCdQueryW | |
| 21 | RegCloseServer | |
| 22 | RegConsoleShadowQueryA | |
| 23 | RegConsoleShadowQueryW | |
| 24 | RegCreateMonitorConfigW | |
| 25 | RegCreateUserConfigW | |
| 26 | RegDefaultUserConfigQueryA | |
| 27 | RegDefaultUserConfigQueryW | |
| 28 | RegDenyTSConnectionsPolicy | |
| 29 | RegFreeUtilityCommandList | |
| 30 | RegGetLicensePolicyID | |
| 31 | RegGetLicensingModePolicy | |
| 32 | RegGetMachinePolicy | |
| 33 | RegGetMachinePolicyEx | |
| 34 | RegGetMachinePolicyNew | |
| 35 | RegGetTServerVersion | |
| 36 | RegGetUserConfigFromUserParameters | |
| 37 | RegGetUserPolicy | |
| 38 | RegIsMachineInHelpMode | |
| 39 | RegIsMachinePolicyAllowHelp | |
| 40 | RegIsSrcAcceptingConnections | |
| 41 | RegIsTServer | |
| 42 | RegIsTimeZoneRedirectionEnabled | |
| 43 | RegMergeMachinePolicy | |
| 44 | RegMergeUserConfigWithUserParameters | |
| 45 | RegOpenServerA | |
| 46 | RegOpenServerW | |
| 47 | RegPdCreateA | |
| 48 | RegPdCreateW | |
| 49 | RegPdDeleteA | |
| 50 | RegPdDeleteW | |
| 51 | RegPdEnumerateA | |
| 52 | RegPdEnumerateW | |
| 53 | RegPdQueryA | |
| 54 | RegPdQueryW | |
| 55 | RegQueryConnectionSettings | |
| 56 | RegQueryListenerStart | |
| 57 | RegQueryMonitorSettings | |
| 58 | RegQueryOEMId | |
| 59 | RegQuerySessionSettings | |
| 60 | RegQueryUtilityCommandList | |
| 61 | RegSAMUserConfig | |
| 62 | RegSetLicensePolicyID | |
| 63 | RegSetSrcAcceptConnections | |
| 64 | RegUserConfigDelete | |
| 65 | RegUserConfigQuery | |
| 66 | RegUserConfigRename | |
| 67 | RegUserConfigSet | |
| 68 | RegWdCreateA | |
| 69 | RegWdCreateW | |
| 70 | RegWdDeleteA | |
| 71 | RegWdDeleteW | |
| 72 | RegWdEnumerateA | |
| 73 | RegWdEnumerateW | |
| 74 | RegWdQueryA | |
| 75 | RegWdQueryW | |
| 76 | RegWinStationAccessCheck | |
| 77 | RegWinStationCreateA | |
| 78 | RegWinStationCreateW | |
| 79 | RegWinStationDeleteA | |
| 80 | RegWinStationDeleteW | |
| 81 | RegWinStationEnumerateA | |
| 82 | RegWinStationEnumerateW | |
| 83 | RegWinStationQueryA | |
| 84 | RegWinStationQueryDefaultSecurity | |
| 85 | RegWinStationQueryEx | |
| 86 | RegWinStationQueryExNew | |
| 87 | RegWinStationQueryExW | |
| 88 | RegWinStationQueryExtendedSettingsW | |
| 89 | RegWinStationQueryNumValueW | |
| 90 | RegWinStationQuerySecurityA | |
| 91 | RegWinStationQuerySecurityW | |
| 92 | RegWinStationQueryValueW | |
| 93 | RegWinStationQueryW | |
| 94 | RegWinStationSetDefaultSecurity | |
| 95 | RegWinStationSetExtendedSettingsW | |
| 96 | RegWinStationSetNumValueW | |
| 97 | RegWinStationSetSecurityA | |
| 98 | RegWinStationSetSecurityW | |
| 99 | RegWinstationQuerySecurityConfig_Machine | |
| 100 | RegWinstationQuerySecurityConfig_Merged | |
| 101 | RegWinstationSetSecurityConfig | |
| 102 | SetUserProperty | |
| 103 | UsrPropGetString | |
| 104 | UsrPropGetValue | |
| 105 | UsrPropSetString | |
| 106 | UsrPropSetValue | |
| 107 | WaitForTSConnectionsPolicyChanges |
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 | ; | |
| 7 | LIBRARY regsvc.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY RICHED20.dll | |
| 8 | EXPORTS | |
| 9 | IID_IRichEditOle | |
| 10 | IID_IRichEditOleCallback | |
| 11 | CreateTextServices | |
| 12 | IID_ITextServices | |
| 13 | IID_ITextHost | |
| 14 | IID_ITextHost2 | |
| 15 | REExtendedRegisterClass | |
| 16 | RichEdit10ANSIWndProc | |
| 17 | RichEditANSIWndProc |
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 | ; | |
| 7 | LIBRARY RNR20.dll | |
| 8 | EXPORTS | |
| 9 | NSPStartup |
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 | ; | |
| 6 | LIBRARY "RoMetadata.dll" | |
| 7 | EXPORTS | |
| 8 | MetaDataGetDispenser |
lib/libc/mingw/lib-common/rpcrt4.def-9| ... | ... | @@ -34,8 +34,6 @@ CStdStubBuffer_Disconnect |
| 34 | 34 | CStdStubBuffer_Invoke |
| 35 | 35 | CStdStubBuffer_IsIIDSupported |
| 36 | 36 | CStdStubBuffer_QueryInterface |
| 37 | CreateProxyFromTypeInfo | |
| 38 | CreateStubFromTypeInfo | |
| 39 | 37 | DceErrorInqTextA |
| 40 | 38 | DceErrorInqTextW |
| 41 | 39 | DllGetClassObject |
| ... | ... | @@ -75,7 +73,6 @@ I_RpcClearMutex |
| 75 | 73 | I_RpcCompleteAndFree |
| 76 | 74 | I_RpcConnectionInqSockBuffSize |
| 77 | 75 | I_RpcConnectionSetSockBuffSize |
| 78 | I_RpcCompleteAndFree | |
| 79 | 76 | I_RpcDeleteMutex |
| 80 | 77 | I_RpcEnableWmiTrace |
| 81 | 78 | I_RpcExceptionFilter |
| ... | ... | @@ -105,7 +102,6 @@ I_RpcNsBindingSetEntryNameA |
| 105 | 102 | I_RpcNsBindingSetEntryNameW |
| 106 | 103 | I_RpcNsInterfaceExported |
| 107 | 104 | I_RpcNsInterfaceUnexported |
| 108 | I_RpcOpenClientProcess | |
| 109 | 105 | I_RpcParseSecurity |
| 110 | 106 | I_RpcPauseExecution |
| 111 | 107 | I_RpcProxyNewConnection |
| ... | ... | @@ -253,13 +249,8 @@ NdrFixedArrayMarshall |
| 253 | 249 | NdrFixedArrayMemorySize |
| 254 | 250 | NdrFixedArrayUnmarshall |
| 255 | 251 | NdrFreeBuffer |
| 256 | NdrFullPointerFree | |
| 257 | NdrFullPointerInsertRefId | |
| 258 | NdrFullPointerQueryPointer | |
| 259 | NdrFullPointerQueryRefId | |
| 260 | 252 | NdrFullPointerXlatFree |
| 261 | 253 | NdrFullPointerXlatInit |
| 262 | NdrGetBaseInterfaceFromStub | |
| 263 | 254 | NdrGetBuffer |
| 264 | 255 | NdrGetDcomProtocolVersion |
| 265 | 256 | NdrGetSimpleTypeBufferAlignment |
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 | ; | |
| 7 | LIBRARY RPCSS.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | CoGetComCatalog | |
| 11 | GetRPCSSInfo | |
| 12 | WhichService |
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 | ; | |
| 7 | LIBRARY RSAENH.dll | |
| 8 | EXPORTS | |
| 9 | CPAcquireContext | |
| 10 | CPCreateHash | |
| 11 | CPDecrypt | |
| 12 | CPDeriveKey | |
| 13 | CPDestroyHash | |
| 14 | CPDestroyKey | |
| 15 | CPDuplicateHash | |
| 16 | CPDuplicateKey | |
| 17 | CPEncrypt | |
| 18 | CPExportKey | |
| 19 | CPGenKey | |
| 20 | CPGenRandom | |
| 21 | CPGetHashParam | |
| 22 | CPGetKeyParam | |
| 23 | CPGetProvParam | |
| 24 | CPGetUserKey | |
| 25 | CPHashData | |
| 26 | CPHashSessionKey | |
| 27 | CPImportKey | |
| 28 | CPReleaseContext | |
| 29 | CPSetHashParam | |
| 30 | CPSetKeyParam | |
| 31 | CPSetProvParam | |
| 32 | CPSignHash | |
| 33 | CPVerifySignature | |
| 34 | DllRegisterServer | |
| 35 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY rtutils.dll | |
| 8 | EXPORTS | |
| 9 | LogErrorA | |
| 10 | LogErrorW | |
| 11 | LogEventA | |
| 12 | LogEventW | |
| 13 | MprSetupProtocolEnum | |
| 14 | MprSetupProtocolFree | |
| 15 | QueueWorkItem | |
| 16 | RouterAssert | |
| 17 | RouterGetErrorStringA | |
| 18 | RouterGetErrorStringW | |
| 19 | RouterLogDeregisterA | |
| 20 | RouterLogDeregisterW | |
| 21 | RouterLogEventA | |
| 22 | RouterLogEventDataA | |
| 23 | RouterLogEventDataW | |
| 24 | RouterLogEventExA | |
| 25 | RouterLogEventExW | |
| 26 | RouterLogEventStringA | |
| 27 | RouterLogEventStringW | |
| 28 | RouterLogEventValistExA | |
| 29 | RouterLogEventValistExW | |
| 30 | RouterLogEventW | |
| 31 | RouterLogRegisterA | |
| 32 | RouterLogRegisterW | |
| 33 | SetIoCompletionProc | |
| 34 | TraceDeregisterA | |
| 35 | TraceDeregisterExA | |
| 36 | TraceDeregisterExW | |
| 37 | TraceDeregisterW | |
| 38 | TraceDumpExA | |
| 39 | TraceDumpExW | |
| 40 | TraceGetConsoleA | |
| 41 | TraceGetConsoleW | |
| 42 | TracePrintfA | |
| 43 | TracePrintfExA | |
| 44 | TracePrintfExW | |
| 45 | TracePrintfW | |
| 46 | TracePutsExA | |
| 47 | TracePutsExW | |
| 48 | TraceRegisterExA | |
| 49 | TraceRegisterExW | |
| 50 | TraceVprintfExA | |
| 51 | TraceVprintfExW |
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 | ; | |
| 7 | LIBRARY SCESRV.dll | |
| 8 | EXPORTS | |
| 9 | ScesrvInitializeServer | |
| 10 | ScesrvTerminateServer |
lib/libc/mingw/lib-common/schannel.def-1| ... | ... | @@ -26,7 +26,6 @@ QuerySecurityPackageInfoA |
| 26 | 26 | QuerySecurityPackageInfoW |
| 27 | 27 | RevertSecurityContext |
| 28 | 28 | SealMessage |
| 29 | SpLsaModeInitialize | |
| 30 | 29 | SpUserModeInitialize |
| 31 | 30 | SslCrackCertificate |
| 32 | 31 | SslEmptyCacheA |
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 | ; | |
| 7 | LIBRARY SCROBJ.dll | |
| 8 | EXPORTS | |
| 9 | GenerateTypeLib | |
| 10 | GenerateTypeLibW | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllInstall | |
| 14 | DllRegisterServer | |
| 15 | DllRegisterServerEx | |
| 16 | DllRegisterServerExA | |
| 17 | DllRegisterServerExW | |
| 18 | DllUnregisterServer | |
| 19 | DllUnregisterServerEx |
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 | ; | |
| 7 | LIBRARY ScrRun.dll | |
| 8 | EXPORTS | |
| 9 | DLLGetDocumentation | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer | |
| 14 | DoOpenPipeStream |
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 | ; | |
| 7 | LIBRARY sdhcinst.dll | |
| 8 | EXPORTS | |
| 9 | SdClassCoInstaller | |
| 10 | SdClassInstall |
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 | ; | |
| 7 | LIBRARY seclogon.dll | |
| 8 | EXPORTS | |
| 9 | DllRegisterServer | |
| 10 | DllUnregisterServer | |
| 11 | SvcEntry_Seclogon | |
| 12 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY Security.dll | |
| 8 | EXPORTS | |
| 9 | AcceptSecurityContext | |
| 10 | AcquireCredentialsHandleA | |
| 11 | AcquireCredentialsHandleW | |
| 12 | AddSecurityPackageA | |
| 13 | AddSecurityPackageW | |
| 14 | ApplyControlToken | |
| 15 | CompleteAuthToken | |
| 16 | DecryptMessage | |
| 17 | DeleteSecurityContext | |
| 18 | DeleteSecurityPackageA | |
| 19 | DeleteSecurityPackageW | |
| 20 | EncryptMessage | |
| 21 | EnumerateSecurityPackagesA | |
| 22 | EnumerateSecurityPackagesW | |
| 23 | ExportSecurityContext | |
| 24 | FreeContextBuffer | |
| 25 | FreeCredentialsHandle | |
| 26 | ImpersonateSecurityContext | |
| 27 | ImportSecurityContextA | |
| 28 | ImportSecurityContextW | |
| 29 | InitSecurityInterfaceA | |
| 30 | InitSecurityInterfaceW | |
| 31 | InitializeSecurityContextA | |
| 32 | InitializeSecurityContextW | |
| 33 | MakeSignature | |
| 34 | QueryContextAttributesA | |
| 35 | QueryContextAttributesW | |
| 36 | QueryCredentialsAttributesA | |
| 37 | QueryCredentialsAttributesW | |
| 38 | QuerySecurityContextToken | |
| 39 | QuerySecurityPackageInfoA | |
| 40 | QuerySecurityPackageInfoW | |
| 41 | RevertSecurityContext | |
| 42 | SealMessage | |
| 43 | UnsealMessage | |
| 44 | VerifySignature |
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 | ; | |
| 6 | LIBRARY "Sens.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals | |
| 10 | SensNotifyNetconEvent | |
| 11 | SensNotifyRasEvent | |
| 12 | SensNotifyWinlogonEvent |
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 | ; | |
| 7 | LIBRARY SERIALUI.dll | |
| 8 | EXPORTS | |
| 9 | drvCommConfigDialogW | |
| 10 | drvCommConfigDialogA | |
| 11 | drvSetDefaultCommConfigW | |
| 12 | drvSetDefaultCommConfigA | |
| 13 | drvGetDefaultCommConfigW | |
| 14 | drvGetDefaultCommConfigA |
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 | ; | |
| 7 | LIBRARY SERWVDRV.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc | |
| 10 | widMessage | |
| 11 | wodMessage |
lib/libc/mingw/lib-common/shell32.def-1| ... | ... | @@ -121,7 +121,6 @@ AppCompat_RunDLLW |
| 121 | 121 | SHCreateShellFolderView |
| 122 | 122 | AssocCreateForClasses |
| 123 | 123 | AssocGetDetailsOfPropKey |
| 124 | CheckEscapesW | |
| 125 | 124 | CommandLineToArgvW |
| 126 | 125 | Control_RunDLL |
| 127 | 126 | Control_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 | ; | |
| 7 | LIBRARY SHFOLDER.dll | |
| 8 | EXPORTS | |
| 9 | SHGetFolderPathA | |
| 10 | SHGetFolderPathW |
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 | ; | |
| 7 | LIBRARY shimgvw.DLL | |
| 8 | EXPORTS | |
| 9 | ImageView_COMServer | |
| 10 | ImageView_Fullscreen | |
| 11 | ImageView_FullscreenA | |
| 12 | ImageView_FullscreenW | |
| 13 | ImageView_PrintTo | |
| 14 | ImageView_PrintToA | |
| 15 | ImageView_PrintToW | |
| 16 | imageview_fullscreenW | |
| 17 | ConvertDIBSECTIONToThumbnail | |
| 18 | DllCanUnloadNow | |
| 19 | DllGetClassObject | |
| 20 | DllInstall | |
| 21 | DllRegisterServer | |
| 22 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY SHSVCS.dll | |
| 8 | EXPORTS | |
| 9 | DllInstall | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | HardwareDetectionServiceMain | |
| 13 | ThemeServiceMain | |
| 14 | CreateHardwareEventMoniker | |
| 15 | DllCanUnloadNow | |
| 16 | DllGetClassObject |
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 | ; | |
| 7 | LIBRARY sisbkup.dll | |
| 8 | EXPORTS | |
| 9 | SisCSFilesToBackupForLink | |
| 10 | SisCreateBackupStructure | |
| 11 | SisCreateRestoreStructure | |
| 12 | SisFreeAllocatedMemory | |
| 13 | SisFreeBackupStructure | |
| 14 | SisFreeRestoreStructure | |
| 15 | SisRestoredCommonStoreFile | |
| 16 | SisRestoredLink |
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 | ; | |
| 7 | LIBRARY SOFTPUB.dll | |
| 8 | EXPORTS | |
| 9 | GenericChainCertificateTrust | |
| 10 | GenericChainFinalProv | |
| 11 | HTTPSCertificateTrust | |
| 12 | SoftpubDefCertInit | |
| 13 | SoftpubFreeDefUsageCallData | |
| 14 | SoftpubLoadDefUsageCallData | |
| 15 | AddPersonalTrustDBPages | |
| 16 | DllRegisterServer | |
| 17 | DllUnregisterServer | |
| 18 | DriverCleanupPolicy | |
| 19 | DriverFinalPolicy | |
| 20 | DriverInitializePolicy | |
| 21 | FindCertsByIssuer | |
| 22 | HTTPSFinalProv | |
| 23 | OfficeCleanupPolicy | |
| 24 | OfficeInitializePolicy | |
| 25 | OpenPersonalTrustDBDialog | |
| 26 | SoftpubAuthenticode | |
| 27 | SoftpubCheckCert | |
| 28 | SoftpubCleanup | |
| 29 | SoftpubDumpStructure | |
| 30 | SoftpubInitialize | |
| 31 | SoftpubLoadMessage | |
| 32 | SoftpubLoadSignature |
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 | ; | |
| 7 | LIBRARY SQLSRV32.dll | |
| 8 | EXPORTS | |
| 9 | SQLBindCol | |
| 10 | SQLCancel | |
| 11 | SQLColAttributeW | |
| 12 | SQLConnectW | |
| 13 | SQLDescribeColW | |
| 14 | SQLDisconnect | |
| 15 | SQLExecDirectW | |
| 16 | SQLExecute | |
| 17 | SQLFetch | |
| 18 | SQLFreeStmt | |
| 19 | SQLGetCursorNameW | |
| 20 | SQLNumResultCols | |
| 21 | SQLPrepareW | |
| 22 | SQLRowCount | |
| 23 | SQLSetCursorNameW | |
| 24 | SQLBulkOperations | |
| 25 | SQLColumnsW | |
| 26 | SQLDriverConnectW | |
| 27 | SQLGetConnectOptionW | |
| 28 | SQLGetData | |
| 29 | SQLGetFunctions | |
| 30 | SQLGetInfoW | |
| 31 | SQLGetTypeInfoW | |
| 32 | SQLParamData | |
| 33 | SQLPutData | |
| 34 | SQLSetConnectOptionW | |
| 35 | SQLSpecialColumnsW | |
| 36 | SQLStatisticsW | |
| 37 | SQLTablesW | |
| 38 | SQLBrowseConnectW | |
| 39 | SQLColumnPrivilegesW | |
| 40 | SQLDescribeParam | |
| 41 | SQLExtendedFetch | |
| 42 | SQLForeignKeysW | |
| 43 | SQLMoreResults | |
| 44 | SQLNativeSqlW | |
| 45 | SQLNumParams | |
| 46 | SQLParamOptions | |
| 47 | SQLPrimaryKeysW | |
| 48 | SQLProcedureColumnsW | |
| 49 | SQLProceduresW | |
| 50 | SQLSetPos | |
| 51 | SQLSetScrollOptions | |
| 52 | SQLTablePrivilegesW | |
| 53 | SQLBindParameter | |
| 54 | SQLAllocHandle | |
| 55 | SQLCloseCursor | |
| 56 | SQLCopyDesc | |
| 57 | SQLEndTran | |
| 58 | SQLFreeHandle | |
| 59 | SQLGetConnectAttrW | |
| 60 | SQLGetDescFieldW | |
| 61 | SQLGetDescRecW | |
| 62 | SQLGetDiagFieldW | |
| 63 | SQLGetDiagRecW | |
| 64 | SQLGetEnvAttr | |
| 65 | SQLGetStmtAttrW | |
| 66 | SQLSetConnectAttrW | |
| 67 | SQLSetDescFieldW | |
| 68 | SQLSetDescRec | |
| 69 | SQLSetEnvAttr | |
| 70 | SQLSetStmtAttrW | |
| 71 | SQLFetchScroll | |
| 72 | LibMain | |
| 73 | ConfigDSNW | |
| 74 | ConfigDriverW | |
| 75 | SQLDebug | |
| 76 | BCP_batch | |
| 77 | BCP_bind | |
| 78 | BCP_colfmt | |
| 79 | BCP_collen | |
| 80 | BCP_colptr | |
| 81 | BCP_columns | |
| 82 | BCP_control | |
| 83 | BCP_done | |
| 84 | BCP_init | |
| 85 | BCP_exec | |
| 86 | BCP_moretext | |
| 87 | BCP_sendrow | |
| 88 | BCP_readfmt | |
| 89 | BCP_writefmt | |
| 90 | ConnectDlgProc | |
| 91 | WizDSNDlgProc | |
| 92 | WizIntSecurityDlgProc | |
| 93 | WizDatabaseDlgProc | |
| 94 | WizLanguageDlgProc | |
| 95 | FinishDlgProc | |
| 96 | TestDlgProc | |
| 97 | BCP_getcolfmt | |
| 98 | BCP_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 | ; | |
| 7 | LIBRARY srvsvc.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY streamci.dll | |
| 8 | EXPORTS | |
| 9 | StreamingDeviceClassInstaller | |
| 10 | StreamingDeviceRemove | |
| 11 | StreamingDeviceRemoveA | |
| 12 | StreamingDeviceRemoveW | |
| 13 | StreamingDeviceSetup | |
| 14 | StreamingDeviceSetupA | |
| 15 | StreamingDeviceSetupW | |
| 16 | SwEnumCoInstaller |
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 | ; | |
| 7 | LIBRARY sxs.dll | |
| 8 | EXPORTS | |
| 9 | SxsFindClrClassInformation | |
| 10 | SxsFindClrSurrogateInformation | |
| 11 | SxsLookupClrGuid | |
| 12 | SxsRunDllInstallAssembly | |
| 13 | SxsRunDllInstallAssemblyW | |
| 14 | SxspGenerateManifestPathOnAssemblyIdentity | |
| 15 | SxspGeneratePolicyPathOnAssemblyIdentity | |
| 16 | SxspRunDllDeleteDirectory | |
| 17 | SxspRunDllDeleteDirectoryW | |
| 18 | CreateAssemblyCache | |
| 19 | CreateAssemblyNameObject | |
| 20 | DllInstall | |
| 21 | SxsBeginAssemblyInstall | |
| 22 | SxsEndAssemblyInstall | |
| 23 | SxsGenerateActivationContext | |
| 24 | SxsInstallW | |
| 25 | SxsOleAut32MapConfiguredClsidToReferenceClsid | |
| 26 | SxsOleAut32MapIIDOrCLSIDToTypeLibrary | |
| 27 | SxsOleAut32MapIIDToProxyStubCLSID | |
| 28 | SxsOleAut32MapIIDToTLBPath | |
| 29 | SxsOleAut32MapReferenceClsidToConfiguredClsid | |
| 30 | SxsOleAut32RedirectTypeLibrary | |
| 31 | SxsProbeAssemblyInstallation | |
| 32 | SxsProtectionGatherEntriesW | |
| 33 | SxsProtectionNotifyW | |
| 34 | SxsProtectionPerformScanNow | |
| 35 | SxsProtectionUserLogoffEvent | |
| 36 | SxsProtectionUserLogonEvent | |
| 37 | SxsQueryManifestInformation | |
| 38 | SxsUninstallW |
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 | ; | |
| 7 | LIBRARY TAPIPERF.dll | |
| 8 | EXPORTS | |
| 9 | CloseTapiPerformanceData | |
| 10 | CollectTapiPerformanceData | |
| 11 | OpenTapiPerformanceData |
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 | ; | |
| 7 | LIBRARY TSBYUV.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc |
lib/libc/mingw/lib-common/ucrtbase.def.in created+2662| ... | ... | @@ -0,0 +1,2662 @@ |
| 1 | LIBRARY "ucrtbase.dll" | |
| 2 | EXPORTS | |
| 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 | |
| 30 | F_I386(_CxxThrowException@8) | |
| 31 | F_NON_I386(_CxxThrowException) | |
| 32 | F_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 | |
| 61 | F_NON_I386(__C_specific_handler) | |
| 62 | __CxxDetectRethrow | |
| 63 | __CxxExceptionFilter | |
| 64 | __CxxFrameHandler | |
| 65 | __CxxFrameHandler2 | |
| 66 | __CxxFrameHandler3 | |
| 67 | F_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 | |
| 94 | F_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 | |
| 108 | F64(__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 | |
| 239 | F_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 | |
| 290 | F_I386(_except_handler2) | |
| 291 | F_I386(_except_handler3) | |
| 292 | F_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 | |
| 341 | F_NON_I386(_finitef) | |
| 342 | _flushall | |
| 343 | _fpclass | |
| 344 | _fpclassf | |
| 345 | F_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 | |
| 372 | F_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 | |
| 427 | F_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 | |
| 524 | F_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 | |
| 580 | F_X64(_local_unwind) | |
| 581 | F_I386(_local_unwind2) | |
| 582 | F_I386(_local_unwind4) | |
| 583 | _localtime32 | |
| 584 | _localtime32_s | |
| 585 | _localtime64 | |
| 586 | _localtime64_s | |
| 587 | _lock_file | |
| 588 | _lock_locales | |
| 589 | _locking | |
| 590 | _logb | |
| 591 | F_NON_I386(_logbf) | |
| 592 | F_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 | |
| 755 | F_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 | |
| 1897 | F_X64(_scalbf) | |
| 1898 | _searchenv | |
| 1899 | _searchenv_s | |
| 1900 | _seh_filter_dll | |
| 1901 | _seh_filter_exe | |
| 1902 | F64(_set_FMA3_enable) | |
| 1903 | F_I386(_seh_longjmp_unwind4@4) | |
| 1904 | F_I386(_seh_longjmp_unwind@4) | |
| 1905 | F_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 | |
| 1922 | F_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 | |
| 1946 | F_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 | |
| 2180 | abort | |
| 2181 | abs | |
| 2182 | acos | |
| 2183 | F_NON_I386(acosf) | |
| 2184 | F_ARM_ANY(acosl == acos) | |
| 2185 | acosh | |
| 2186 | acoshf | |
| 2187 | acoshl F_X86_ANY(DATA) | |
| 2188 | asctime | |
| 2189 | asctime_s | |
| 2190 | asin | |
| 2191 | F_NON_I386(asinf) | |
| 2192 | F_ARM_ANY(asinl == asin) | |
| 2193 | asinh | |
| 2194 | asinhf | |
| 2195 | asinhl F_X86_ANY(DATA) | |
| 2196 | atan | |
| 2197 | atan2 | |
| 2198 | F_NON_I386(atan2f) | |
| 2199 | F_ARM_ANY(atan2l == atan2) | |
| 2200 | F_NON_I386(atanf) | |
| 2201 | F_ARM_ANY(atanl == atan) | |
| 2202 | atanh | |
| 2203 | atanhf | |
| 2204 | atanhl F_X86_ANY(DATA) | |
| 2205 | atof | |
| 2206 | atoi | |
| 2207 | atol | |
| 2208 | atoll | |
| 2209 | bsearch | |
| 2210 | bsearch_s | |
| 2211 | btowc | |
| 2212 | c16rtomb | |
| 2213 | c32rtomb | |
| 2214 | cabs | |
| 2215 | cabsf | |
| 2216 | cabsl | |
| 2217 | cacos | |
| 2218 | cacosf | |
| 2219 | cacosh | |
| 2220 | cacoshf | |
| 2221 | cacoshl | |
| 2222 | cacosl | |
| 2223 | calloc | |
| 2224 | carg | |
| 2225 | cargf | |
| 2226 | cargl | |
| 2227 | casin | |
| 2228 | casinf | |
| 2229 | casinh | |
| 2230 | casinhf | |
| 2231 | casinhl | |
| 2232 | casinl | |
| 2233 | catan | |
| 2234 | catanf | |
| 2235 | catanh | |
| 2236 | catanhf | |
| 2237 | catanhl | |
| 2238 | catanl | |
| 2239 | cbrt | |
| 2240 | cbrtf | |
| 2241 | cbrtl F_X86_ANY(DATA) | |
| 2242 | ccos | |
| 2243 | ccosf | |
| 2244 | ccosh | |
| 2245 | ccoshf | |
| 2246 | ccoshl | |
| 2247 | ccosl | |
| 2248 | ceil | |
| 2249 | F_NON_I386(ceilf) | |
| 2250 | F_ARM_ANY(ceill == ceil) | |
| 2251 | cexp | |
| 2252 | cexpf | |
| 2253 | cexpl | |
| 2254 | cimag | |
| 2255 | cimagf | |
| 2256 | cimagl | |
| 2257 | clearerr | |
| 2258 | clearerr_s | |
| 2259 | clock | |
| 2260 | clog | |
| 2261 | clog10 | |
| 2262 | clog10f | |
| 2263 | clog10l | |
| 2264 | clogf | |
| 2265 | clogl | |
| 2266 | conj | |
| 2267 | conjf | |
| 2268 | conjl | |
| 2269 | copysign | |
| 2270 | copysignf | |
| 2271 | copysignl F_X86_ANY(DATA) | |
| 2272 | cos | |
| 2273 | F_NON_I386(cosf) | |
| 2274 | F_ARM_ANY(cosl == cos) | |
| 2275 | cosh | |
| 2276 | F_NON_I386(coshf) | |
| 2277 | cpow | |
| 2278 | cpowf | |
| 2279 | cpowl | |
| 2280 | cproj | |
| 2281 | cprojf | |
| 2282 | cprojl | |
| 2283 | creal | |
| 2284 | crealf | |
| 2285 | creall | |
| 2286 | csin | |
| 2287 | csinf | |
| 2288 | csinh | |
| 2289 | csinhf | |
| 2290 | csinhl | |
| 2291 | csinl | |
| 2292 | csqrt | |
| 2293 | csqrtf | |
| 2294 | csqrtl | |
| 2295 | ctan | |
| 2296 | ctanf | |
| 2297 | ctanh | |
| 2298 | ctanhf | |
| 2299 | ctanhl | |
| 2300 | ctanl | |
| 2301 | div | |
| 2302 | erf | |
| 2303 | erfc | |
| 2304 | erfcf | |
| 2305 | erfcl F_X86_ANY(DATA) | |
| 2306 | erff | |
| 2307 | erfl F_X86_ANY(DATA) | |
| 2308 | exit | |
| 2309 | exp | |
| 2310 | exp2 | |
| 2311 | exp2f | |
| 2312 | exp2l F_X86_ANY(DATA) | |
| 2313 | F_NON_I386(expf) | |
| 2314 | F_ARM_ANY(expl == exp) | |
| 2315 | expm1 | |
| 2316 | expm1f | |
| 2317 | expm1l F_X86_ANY(DATA) | |
| 2318 | fabs | |
| 2319 | F_ARM_ANY(fabsf) | |
| 2320 | fclose | |
| 2321 | fdim | |
| 2322 | fdimf | |
| 2323 | fdiml 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. | |
| 2327 | feclearexcept DATA | |
| 2328 | fegetenv DATA | |
| 2329 | fegetexceptflag DATA | |
| 2330 | fegetround DATA | |
| 2331 | feholdexcept DATA | |
| 2332 | feof | |
| 2333 | ferror | |
| 2334 | fesetenv DATA | |
| 2335 | fesetexceptflag DATA | |
| 2336 | fesetround DATA | |
| 2337 | fetestexcept DATA | |
| 2338 | fflush | |
| 2339 | fgetc | |
| 2340 | fgetpos | |
| 2341 | fgets | |
| 2342 | fgetwc | |
| 2343 | fgetws | |
| 2344 | floor | |
| 2345 | F_NON_I386(floorf) | |
| 2346 | F_ARM_ANY(floorl == floor) | |
| 2347 | fma | |
| 2348 | fmaf | |
| 2349 | fmal F_X86_ANY(DATA) | |
| 2350 | fmax | |
| 2351 | fmaxf | |
| 2352 | fmaxl F_X86_ANY(DATA) | |
| 2353 | fmin | |
| 2354 | fminf | |
| 2355 | fminl F_X86_ANY(DATA) | |
| 2356 | fmod | |
| 2357 | F_NON_I386(fmodf) | |
| 2358 | F_ARM_ANY(fmodl == fmod) | |
| 2359 | fopen | |
| 2360 | fopen_s | |
| 2361 | fputc | |
| 2362 | fputs | |
| 2363 | fputwc | |
| 2364 | fputws | |
| 2365 | fread | |
| 2366 | fread_s | |
| 2367 | free | |
| 2368 | freopen | |
| 2369 | freopen_s | |
| 2370 | frexp | |
| 2371 | fseek | |
| 2372 | fsetpos | |
| 2373 | ftell | |
| 2374 | fwrite | |
| 2375 | getc | |
| 2376 | getchar | |
| 2377 | getenv | |
| 2378 | getenv_s | |
| 2379 | gets | |
| 2380 | gets_s | |
| 2381 | getwc | |
| 2382 | getwchar | |
| 2383 | hypot | |
| 2384 | ilogb | |
| 2385 | ilogbf | |
| 2386 | ilogbl F_X86_ANY(DATA) | |
| 2387 | imaxabs | |
| 2388 | imaxdiv | |
| 2389 | is_wctype | |
| 2390 | isalnum | |
| 2391 | isalpha | |
| 2392 | isblank | |
| 2393 | iscntrl | |
| 2394 | isdigit | |
| 2395 | isgraph | |
| 2396 | isleadbyte | |
| 2397 | islower | |
| 2398 | isprint | |
| 2399 | ispunct | |
| 2400 | isspace | |
| 2401 | isupper | |
| 2402 | iswalnum | |
| 2403 | iswalpha | |
| 2404 | iswascii | |
| 2405 | iswblank | |
| 2406 | iswcntrl | |
| 2407 | iswctype | |
| 2408 | iswdigit | |
| 2409 | iswgraph | |
| 2410 | iswlower | |
| 2411 | iswprint | |
| 2412 | iswpunct | |
| 2413 | iswspace | |
| 2414 | iswupper | |
| 2415 | iswxdigit | |
| 2416 | isxdigit | |
| 2417 | labs | |
| 2418 | ldexp | |
| 2419 | ldiv | |
| 2420 | ; The UCRT lgamma functions don't set/provide the signgam variable like | |
| 2421 | ; the mingw ones do. Therefore prefer the libmingwex version instead. | |
| 2422 | lgamma DATA | |
| 2423 | lgammaf DATA | |
| 2424 | lgammal DATA | |
| 2425 | llabs | |
| 2426 | lldiv | |
| 2427 | llrint | |
| 2428 | llrintf | |
| 2429 | llrintl F_X86_ANY(DATA) | |
| 2430 | llround | |
| 2431 | llroundf | |
| 2432 | llroundl F_X86_ANY(DATA) | |
| 2433 | localeconv | |
| 2434 | log | |
| 2435 | log10 | |
| 2436 | F_NON_I386(log10f) | |
| 2437 | F_ARM_ANY(log10l == log10) | |
| 2438 | log1p | |
| 2439 | log1pf | |
| 2440 | log1pl F_X86_ANY(DATA) | |
| 2441 | log2 | |
| 2442 | log2f | |
| 2443 | log2l F_X86_ANY(DATA) | |
| 2444 | logb | |
| 2445 | logbf | |
| 2446 | logbl F_X86_ANY(DATA) | |
| 2447 | F_NON_I386(logf) | |
| 2448 | F_ARM_ANY(logl == log) | |
| 2449 | longjmp | |
| 2450 | lrint | |
| 2451 | lrintf | |
| 2452 | lrintl F_X86_ANY(DATA) | |
| 2453 | lround | |
| 2454 | lroundf | |
| 2455 | lroundl F_X86_ANY(DATA) | |
| 2456 | malloc | |
| 2457 | mblen | |
| 2458 | mbrlen | |
| 2459 | mbrtoc16 | |
| 2460 | mbrtoc32 | |
| 2461 | mbrtowc | |
| 2462 | mbsrtowcs | |
| 2463 | mbsrtowcs_s | |
| 2464 | mbstowcs | |
| 2465 | mbstowcs_s | |
| 2466 | mbtowc | |
| 2467 | memchr | |
| 2468 | memcmp | |
| 2469 | memcpy | |
| 2470 | memcpy_s | |
| 2471 | memmove | |
| 2472 | memmove_s | |
| 2473 | memset | |
| 2474 | modf | |
| 2475 | F_NON_I386(modff) | |
| 2476 | nan | |
| 2477 | nanf | |
| 2478 | nanl F_X86_ANY(DATA) | |
| 2479 | nearbyint | |
| 2480 | nearbyintf | |
| 2481 | nearbyintl F_X86_ANY(DATA) | |
| 2482 | nextafter | |
| 2483 | nextafterf | |
| 2484 | nextafterl F_X86_ANY(DATA) | |
| 2485 | ; All of the nexttoward functions take the second parameter as long doubke, | |
| 2486 | ; making them unusable for x86. | |
| 2487 | nexttoward F_X86_ANY(DATA) | |
| 2488 | nexttowardf F_X86_ANY(DATA) | |
| 2489 | nexttowardl F_X86_ANY(DATA) | |
| 2490 | norm | |
| 2491 | normf | |
| 2492 | norml | |
| 2493 | perror | |
| 2494 | pow | |
| 2495 | F_NON_I386(powf) | |
| 2496 | F_ARM_ANY(powl == pow) | |
| 2497 | putc | |
| 2498 | putchar | |
| 2499 | puts | |
| 2500 | putwc | |
| 2501 | putwchar | |
| 2502 | qsort | |
| 2503 | qsort_s | |
| 2504 | quick_exit | |
| 2505 | raise | |
| 2506 | rand | |
| 2507 | rand_s | |
| 2508 | realloc | |
| 2509 | remainder | |
| 2510 | remainderf | |
| 2511 | remainderl F_X86_ANY(DATA) | |
| 2512 | remove | |
| 2513 | remquo | |
| 2514 | remquof | |
| 2515 | remquol F_X86_ANY(DATA) | |
| 2516 | rename | |
| 2517 | rewind | |
| 2518 | rint | |
| 2519 | rintf | |
| 2520 | rintl F_X86_ANY(DATA) | |
| 2521 | round | |
| 2522 | roundf | |
| 2523 | roundl F_X86_ANY(DATA) | |
| 2524 | scalbln | |
| 2525 | scalblnf | |
| 2526 | scalblnl F_X86_ANY(DATA) | |
| 2527 | scalbn | |
| 2528 | scalbnf | |
| 2529 | scalbnl F_X86_ANY(DATA) | |
| 2530 | set_terminate | |
| 2531 | set_unexpected | |
| 2532 | setbuf | |
| 2533 | F_X64(setjmp) | |
| 2534 | setlocale | |
| 2535 | setvbuf | |
| 2536 | signal | |
| 2537 | sin | |
| 2538 | F_NON_I386(sinf) | |
| 2539 | F_ARM_ANY(sinl == sin) | |
| 2540 | ; if we implement sinh, we can set it DATA only. | |
| 2541 | sinh | |
| 2542 | F_NON_I386(sinhf) | |
| 2543 | sqrt | |
| 2544 | F_NON_I386(sqrtf) | |
| 2545 | srand | |
| 2546 | strcat | |
| 2547 | strcat_s | |
| 2548 | strchr | |
| 2549 | strcmp | |
| 2550 | strcmpi == _stricmp | |
| 2551 | strcoll | |
| 2552 | strcpy | |
| 2553 | strcpy_s | |
| 2554 | strcspn | |
| 2555 | strerror | |
| 2556 | strerror_s | |
| 2557 | strftime | |
| 2558 | strlen | |
| 2559 | strncat | |
| 2560 | strncat_s | |
| 2561 | strncmp | |
| 2562 | strncpy | |
| 2563 | strncpy_s | |
| 2564 | ; strnlen replaced by emu | |
| 2565 | strpbrk | |
| 2566 | strrchr | |
| 2567 | strspn | |
| 2568 | strstr | |
| 2569 | strtod | |
| 2570 | strtof | |
| 2571 | strtoimax | |
| 2572 | strtok | |
| 2573 | strtok_s | |
| 2574 | strtol | |
| 2575 | ; Can't use long double functions from the CRT on x86 | |
| 2576 | F_ARM_ANY(strtold) | |
| 2577 | strtoll | |
| 2578 | strtoul | |
| 2579 | strtoull | |
| 2580 | strtoumax | |
| 2581 | strxfrm | |
| 2582 | system | |
| 2583 | tan | |
| 2584 | F_NON_I386(tanf) | |
| 2585 | F_ARM_ANY(tanl == tan) | |
| 2586 | ; if we implement tanh, we can set it to DATA only. | |
| 2587 | tanh | |
| 2588 | F_NON_I386(tanhf) | |
| 2589 | terminate | |
| 2590 | tgamma | |
| 2591 | tgammaf | |
| 2592 | tgammal F_X86_ANY(DATA) | |
| 2593 | tmpfile | |
| 2594 | tmpfile_s | |
| 2595 | tmpnam | |
| 2596 | tmpnam_s | |
| 2597 | tolower | |
| 2598 | toupper | |
| 2599 | towctrans | |
| 2600 | towlower | |
| 2601 | towupper | |
| 2602 | trunc | |
| 2603 | truncf | |
| 2604 | truncl F_X86_ANY(DATA) | |
| 2605 | unexpected | |
| 2606 | ungetc | |
| 2607 | ungetwc | |
| 2608 | utime == _utime64 | |
| 2609 | wcrtomb | |
| 2610 | wcrtomb_s | |
| 2611 | wcscat | |
| 2612 | wcscat_s | |
| 2613 | wcschr | |
| 2614 | wcscmp | |
| 2615 | wcscoll | |
| 2616 | wcscpy | |
| 2617 | wcscpy_s | |
| 2618 | wcscspn | |
| 2619 | wcsftime | |
| 2620 | wcslen | |
| 2621 | wcsncat | |
| 2622 | wcsncat_s | |
| 2623 | wcsncmp | |
| 2624 | wcsncpy | |
| 2625 | wcsncpy_s | |
| 2626 | ; We provide replacement implementation in libmingwex | |
| 2627 | wcsnlen DATA | |
| 2628 | wcspbrk | |
| 2629 | wcsrchr | |
| 2630 | wcsrtombs | |
| 2631 | wcsrtombs_s | |
| 2632 | wcsspn | |
| 2633 | wcsstr | |
| 2634 | wcstod | |
| 2635 | wcstof | |
| 2636 | wcstoimax | |
| 2637 | wcstok | |
| 2638 | wcstok_s | |
| 2639 | wcstol | |
| 2640 | ; Can't use long double functions from the CRT on x86 | |
| 2641 | F_ARM_ANY(wcstold) | |
| 2642 | wcstoll | |
| 2643 | wcstombs | |
| 2644 | wcstombs_s | |
| 2645 | wcstoul | |
| 2646 | wcstoull | |
| 2647 | wcstoumax | |
| 2648 | wcsxfrm | |
| 2649 | wctob | |
| 2650 | wctomb | |
| 2651 | wctomb_s | |
| 2652 | wctrans | |
| 2653 | wctype | |
| 2654 | wmemcpy_s | |
| 2655 | wmemmove_s | |
| 2656 | ; These functions may satisfy configure scripts. | |
| 2657 | ctime == _ctime64 | |
| 2658 | gmtime == _gmtime64 | |
| 2659 | localtime == _localtime64 | |
| 2660 | mktime == _mktime64 | |
| 2661 | time == _time64 | |
| 2662 | timespec_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 | ; | |
| 6 | LIBRARY "UIAutomationCore.DLL" | |
| 7 | EXPORTS | |
| 8 | DockPattern_SetDockPosition | |
| 9 | ExpandCollapsePattern_Collapse | |
| 10 | ExpandCollapsePattern_Expand | |
| 11 | GridPattern_GetItem | |
| 12 | InitializeChannelBasedConnectionForProviderProxy | |
| 13 | InvokePattern_Invoke | |
| 14 | ItemContainerPattern_FindItemByProperty | |
| 15 | LegacyIAccessiblePattern_DoDefaultAction | |
| 16 | LegacyIAccessiblePattern_GetIAccessible | |
| 17 | LegacyIAccessiblePattern_Select | |
| 18 | LegacyIAccessiblePattern_SetValue | |
| 19 | MultipleViewPattern_GetViewName | |
| 20 | MultipleViewPattern_SetCurrentView | |
| 21 | RangeValuePattern_SetValue | |
| 22 | ScrollItemPattern_ScrollIntoView | |
| 23 | ScrollPattern_Scroll | |
| 24 | ScrollPattern_SetScrollPercent | |
| 25 | SelectionItemPattern_AddToSelection | |
| 26 | SelectionItemPattern_RemoveFromSelection | |
| 27 | SelectionItemPattern_Select | |
| 28 | SynchronizedInputPattern_Cancel | |
| 29 | SynchronizedInputPattern_StartListening | |
| 30 | TextPattern_GetSelection | |
| 31 | TextPattern_GetVisibleRanges | |
| 32 | TextPattern_RangeFromChild | |
| 33 | TextPattern_RangeFromPoint | |
| 34 | TextPattern_get_DocumentRange | |
| 35 | TextPattern_get_SupportedTextSelection | |
| 36 | TextRange_AddToSelection | |
| 37 | TextRange_Clone | |
| 38 | TextRange_Compare | |
| 39 | TextRange_CompareEndpoints | |
| 40 | TextRange_ExpandToEnclosingUnit | |
| 41 | TextRange_FindAttribute | |
| 42 | TextRange_FindText | |
| 43 | TextRange_GetAttributeValue | |
| 44 | TextRange_GetBoundingRectangles | |
| 45 | TextRange_GetChildren | |
| 46 | TextRange_GetEnclosingElement | |
| 47 | TextRange_GetText | |
| 48 | TextRange_Move | |
| 49 | TextRange_MoveEndpointByRange | |
| 50 | TextRange_MoveEndpointByUnit | |
| 51 | TextRange_RemoveFromSelection | |
| 52 | TextRange_ScrollIntoView | |
| 53 | TextRange_Select | |
| 54 | TogglePattern_Toggle | |
| 55 | TransformPattern_Move | |
| 56 | TransformPattern_Resize | |
| 57 | TransformPattern_Rotate | |
| 58 | UiaAddEvent | |
| 59 | UiaClientsAreListening | |
| 60 | UiaDisconnectAllProviders | |
| 61 | UiaDisconnectProvider | |
| 62 | UiaEventAddWindow | |
| 63 | UiaEventRemoveWindow | |
| 64 | UiaFind | |
| 65 | UiaGetErrorDescription | |
| 66 | UiaGetPatternProvider | |
| 67 | UiaGetPropertyValue | |
| 68 | UiaGetReservedMixedAttributeValue | |
| 69 | UiaGetReservedNotSupportedValue | |
| 70 | UiaGetRootNode | |
| 71 | UiaGetRuntimeId | |
| 72 | UiaGetUpdatedCache | |
| 73 | UiaHPatternObjectFromVariant | |
| 74 | UiaHTextRangeFromVariant | |
| 75 | UiaHUiaNodeFromVariant | |
| 76 | UiaHasServerSideProvider | |
| 77 | UiaHostProviderFromHwnd | |
| 78 | UiaIAccessibleFromProvider | |
| 79 | UiaLookupId | |
| 80 | UiaNavigate | |
| 81 | UiaNodeFromFocus | |
| 82 | UiaNodeFromHandle | |
| 83 | UiaNodeFromPoint | |
| 84 | UiaNodeFromProvider | |
| 85 | UiaNodeRelease | |
| 86 | UiaPatternRelease | |
| 87 | UiaProviderForNonClient | |
| 88 | UiaProviderFromIAccessible | |
| 89 | UiaRaiseActiveTextPositionChangedEvent | |
| 90 | UiaRaiseAsyncContentLoadedEvent | |
| 91 | UiaRaiseAutomationEvent | |
| 92 | UiaRaiseAutomationPropertyChangedEvent | |
| 93 | UiaRaiseChangesEvent | |
| 94 | UiaRaiseNotificationEvent | |
| 95 | UiaRaiseStructureChangedEvent | |
| 96 | UiaRaiseTextEditTextChangedEvent | |
| 97 | UiaRegisterProviderCallback | |
| 98 | UiaRemoveEvent | |
| 99 | UiaReturnRawElementProvider | |
| 100 | UiaSetFocus | |
| 101 | UiaTextRangeRelease | |
| 102 | ValuePattern_SetValue | |
| 103 | VirtualizedItemPattern_Realize | |
| 104 | WindowPattern_Close | |
| 105 | WindowPattern_SetWindowVisualState | |
| 106 | WindowPattern_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 | ; | |
| 7 | LIBRARY umdmxfrm.dll | |
| 8 | EXPORTS | |
| 9 | GetXformInfo |
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 | ; | |
| 7 | LIBRARY UNIMDMAT.dll | |
| 8 | EXPORTS | |
| 9 | UmInitializeModemDriver | |
| 10 | UmDeinitializeModemDriver | |
| 11 | UmOpenModem | |
| 12 | UmCloseModem | |
| 13 | UmInitModem | |
| 14 | UmMonitorModem | |
| 15 | UmAnswerModem | |
| 16 | UmDialModem | |
| 17 | UmHangupModem | |
| 18 | UmGenerateDigit | |
| 19 | UmSetSpeakerPhoneState | |
| 20 | UmDuplicateDeviceHandle | |
| 21 | UmAbortCurrentModemCommand | |
| 22 | UmSetPassthroughMode | |
| 23 | UmIssueCommand | |
| 24 | UmWaveAction | |
| 25 | UmLogStringA | |
| 26 | UmGetDiagnostics | |
| 27 | UmLogDiagnostics |
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 | ; | |
| 7 | LIBRARY uniplat.dll | |
| 8 | EXPORTS | |
| 9 | UmPlatformInitialize | |
| 10 | UmPlatformDeinitialize | |
| 11 | UnimodemReadFileEx | |
| 12 | UnimodemWriteFileEx | |
| 13 | UnimodemDeviceIoControlEx | |
| 14 | UnimodemWaitCommEventEx | |
| 15 | UnimodemQueueUserAPC | |
| 16 | CreateUnimodemTimer | |
| 17 | FreeUnimodemTimer | |
| 18 | SetUnimodemTimer | |
| 19 | CancelUnimodemTimer | |
| 20 | CreateOverStructPool | |
| 21 | DestroyOverStructPool | |
| 22 | AllocateOverStructEx | |
| 23 | FreeOverStruct | |
| 24 | ReinitOverStruct | |
| 25 | SyncDeviceIoControl | |
| 26 | WinntIsWorkstation | |
| 27 | UnimodemNotifyTSP | |
| 28 | StartMonitorThread | |
| 29 | StopMonitorThread | |
| 30 | MonitorHandle | |
| 31 | StopMonitoringHandle | |
| 32 | CallBeginning | |
| 33 | CallEnding | |
| 34 | ResetCallCount |
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 | ; | |
| 7 | LIBRARY UPnP.DLL | |
| 8 | EXPORTS | |
| 9 | HrRehydratorCreateServiceObject | |
| 10 | HrRehydratorInvokeServiceAction | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY URL.dll | |
| 8 | EXPORTS | |
| 9 | AddMIMEFileTypesPS | |
| 10 | AutodialHookCallback | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | FileProtocolHandler | |
| 14 | FileProtocolHandlerA | |
| 15 | InetIsOffline | |
| 16 | MIMEAssociationDialogA | |
| 17 | MIMEAssociationDialogW | |
| 18 | MailToProtocolHandler | |
| 19 | MailToProtocolHandlerA | |
| 20 | NewsProtocolHandler | |
| 21 | NewsProtocolHandlerA | |
| 22 | OpenURL | |
| 23 | OpenURLA | |
| 24 | TelnetProtocolHandler | |
| 25 | TelnetProtocolHandlerA | |
| 26 | TranslateURLA | |
| 27 | TranslateURLW | |
| 28 | URLAssociationDialogA | |
| 29 | URLAssociationDialogW |
lib/libc/mingw/lib-common/user32.def.in-1| ... | ... | @@ -338,7 +338,6 @@ GetDpiForSystem |
| 338 | 338 | GetDpiForWindow |
| 339 | 339 | GetFocus |
| 340 | 340 | GetForegroundWindow |
| 341 | GetGUIThreadInfo | |
| 342 | 341 | GetGestureConfig |
| 343 | 342 | GetGestureExtraArgs |
| 344 | 343 | GetGestureInfo |
lib/libc/mingw/lib-common/userenv.def+21-1| ... | ... | @@ -8,13 +8,27 @@ EXPORTS |
| 8 | 8 | RsopLoggingEnabled |
| 9 | 9 | AreThereVisibleLogoffScripts |
| 10 | 10 | AreThereVisibleShutdownScripts |
| 11 | CheckDirectoryOwnership | |
| 12 | CheckXForestLogon | |
| 13 | CopyProfileDirectoryEx2 | |
| 11 | 14 | CreateAppContainerProfile |
| 15 | CreateAppContainerProfileInternal | |
| 16 | CreateDirectoryJunctionsForSystem | |
| 17 | CreateDirectoryJunctionsForUserProfile | |
| 12 | 18 | CreateEnvironmentBlock |
| 19 | CreateGroupEx | |
| 20 | CreateLinkFileEx | |
| 13 | 21 | CreateProfile |
| 14 | 22 | DeleteAppContainerProfile |
| 23 | DeleteAppContainerProfileInternal | |
| 24 | DeleteGroup | |
| 25 | DeleteLinkFile | |
| 15 | 26 | DeleteProfileA |
| 27 | DeleteProfileDirectory | |
| 28 | DeleteProfileDirectory2 | |
| 16 | 29 | DeleteProfileW |
| 17 | 30 | DeriveAppContainerSidFromAppContainerName |
| 31 | DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName | |
| 18 | 32 | DestroyEnvironmentBlock |
| 19 | 33 | DllGetContractDescription |
| 20 | 34 | EnterCriticalPolicySection |
| ... | ... | @@ -35,28 +49,34 @@ GetDefaultUserProfileDirectoryA |
| 35 | 49 | GetDefaultUserProfileDirectoryW |
| 36 | 50 | GetGPOListA |
| 37 | 51 | GetGPOListW |
| 52 | GetLongProfilePathName | |
| 38 | 53 | GetNextFgPolicyRefreshInfo |
| 39 | 54 | GetPreviousFgPolicyRefreshInfo |
| 40 | 55 | GetProfileType |
| 41 | 56 | GetProfilesDirectoryA |
| 42 | 57 | GetProfilesDirectoryW |
| 43 | 58 | GetUserProfileDirectoryA |
| 59 | GetUserProfileDirectoryForUserSidW | |
| 44 | 60 | GetUserProfileDirectoryW |
| 45 | 61 | HasPolicyForegroundProcessingCompleted |
| 62 | IsAppContainerProfilePresentInternal | |
| 46 | 63 | LeaveCriticalPolicySection |
| 47 | 64 | LoadUserProfileA |
| 48 | 65 | LoadUserProfileW |
| 66 | LookupAppContainerDisplayName | |
| 67 | PingComputer | |
| 49 | 68 | ProcessGroupPolicyCompleted |
| 50 | 69 | ProcessGroupPolicyCompletedEx |
| 51 | 70 | RefreshPolicy |
| 52 | 71 | RefreshPolicyEx |
| 53 | 72 | RegisterGPNotification |
| 73 | RemapProfile | |
| 54 | 74 | RsopAccessCheckByType |
| 55 | 75 | RsopFileAccessCheck |
| 56 | RsopLoggingEnabled | |
| 57 | 76 | RsopResetPolicySettingStatus |
| 58 | 77 | RsopSetPolicySettingStatus |
| 59 | 78 | UnloadUserProfile |
| 60 | 79 | UnregisterGPNotification |
| 80 | UpdateAppContainerProfile | |
| 61 | 81 | WaitForMachinePolicyForegroundProcessing |
| 62 | 82 | WaitForUserPolicyForegroundProcessing |
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 | ; | |
| 7 | LIBRARY UTILDLL.dll | |
| 8 | EXPORTS | |
| 9 | AsyncDeviceEnumerate | |
| 10 | CachedGetUserFromSid | |
| 11 | CalculateDiffTime | |
| 12 | CalculateElapsedTime | |
| 13 | CompareElapsedTime | |
| 14 | ConfigureModem | |
| 15 | CtxGetAnyDCName | |
| 16 | CurrentDateTimeString | |
| 17 | DateTimeString | |
| 18 | ElapsedTimeString | |
| 19 | EnumerateMultiUserServers | |
| 20 | FormDecoratedAsyncDeviceName | |
| 21 | GetAssociatedPortName | |
| 22 | GetSystemMessageA | |
| 23 | GetSystemMessageW | |
| 24 | GetUnknownString | |
| 25 | GetUserFromSid | |
| 26 | HaveAnonymousUsersChanged | |
| 27 | InitializeAnonymousUserCompareList | |
| 28 | InstallModem | |
| 29 | IsPartOfDomain | |
| 30 | NetBIOSDeviceEnumerate | |
| 31 | NetworkDeviceEnumerate | |
| 32 | ParseDecoratedAsyncDeviceName | |
| 33 | QueryCurrentWinStation | |
| 34 | RegGetNetworkDeviceName | |
| 35 | RegGetNetworkServiceName | |
| 36 | SetupAsyncCdConfig | |
| 37 | StandardErrorMessage | |
| 38 | StrAsyncConnectState | |
| 39 | StrConnectState | |
| 40 | StrProcessState | |
| 41 | StrSdClass | |
| 42 | StrSystemWaitReason | |
| 43 | TestUserForAdmin | |
| 44 | WinEnumerateDevices |
lib/libc/mingw/lib-common/vcruntime140_app.def.in created+96| ... | ... | @@ -0,0 +1,96 @@ |
| 1 | LIBRARY vcruntime140_app | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | #include "func.def.in" | |
| 6 | ||
| 7 | _CreateFrameInfo | |
| 8 | F_I386(_CxxThrowException@8) | |
| 9 | F_NON_I386(_CxxThrowException) | |
| 10 | F_I386(_EH_prolog) | |
| 11 | _FindAndUnlinkFrame | |
| 12 | _IsExceptionObjectToBeDestroyed | |
| 13 | F_I386(_NLG_Dispatch2) | |
| 14 | F_I386(_NLG_Return) | |
| 15 | F_I386(_NLG_Return2) | |
| 16 | _SetWinRTOutOfMemoryExceptionCallback | |
| 17 | __AdjustPointer | |
| 18 | __BuildCatchObject | |
| 19 | __BuildCatchObjectHelper | |
| 20 | F_NON_I386(__C_specific_handler) | |
| 21 | F_NON_I386(__C_specific_handler_noexcept) | |
| 22 | __CxxDetectRethrow | |
| 23 | __CxxExceptionFilter | |
| 24 | __CxxFrameHandler | |
| 25 | __CxxFrameHandler2 | |
| 26 | __CxxFrameHandler3 | |
| 27 | F_I386(__CxxLongjmpUnwind@4) | |
| 28 | __CxxQueryExceptionSize | |
| 29 | __CxxRegisterExceptionObject | |
| 30 | __CxxUnregisterExceptionObject | |
| 31 | __DestructExceptionObject | |
| 32 | __FrameUnwindFilter | |
| 33 | __GetPlatformExceptionInfo | |
| 34 | F_NON_I386(__NLG_Dispatch2) | |
| 35 | F_NON_I386(__NLG_Return2) | |
| 36 | __RTCastToVoid | |
| 37 | __RTDynamicCast | |
| 38 | __RTtypeid | |
| 39 | __TypeMatch | |
| 40 | __current_exception | |
| 41 | __current_exception_context | |
| 42 | F_X86_ANY(__intrinsic_setjmp) | |
| 43 | F_ARM32(__intrinsic_setjmp) | |
| 44 | F_NON_I386(__intrinsic_setjmpex) | |
| 45 | F_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 | |
| 65 | F_I386(_chkesp) | |
| 66 | F_I386(_except_handler2) | |
| 67 | F_I386(_except_handler3) | |
| 68 | F_I386(_except_handler4_common) | |
| 69 | _get_purecall_handler | |
| 70 | _get_unexpected | |
| 71 | F_I386(_global_unwind2) | |
| 72 | _is_exception_typeof | |
| 73 | F_I386(_local_unwind2) | |
| 74 | F_I386(_local_unwind4) | |
| 75 | F_I386(_longjmpex) | |
| 76 | F64(_local_unwind) | |
| 77 | _purecall | |
| 78 | F_I386(_seh_longjmp_unwind4@4) | |
| 79 | F_I386(_seh_longjmp_unwind@4) | |
| 80 | _set_purecall_handler | |
| 81 | _set_se_translator | |
| 82 | F_I386(_setjmp3) | |
| 83 | longjmp | |
| 84 | memchr | |
| 85 | memcmp | |
| 86 | memcpy | |
| 87 | memmove | |
| 88 | memset | |
| 89 | set_unexpected | |
| 90 | strchr | |
| 91 | strrchr | |
| 92 | strstr | |
| 93 | unexpected | |
| 94 | wcschr | |
| 95 | wcsrchr | |
| 96 | wcsstr |
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 | ; | |
| 6 | LIBRARY "w32time.dll" | |
| 7 | EXPORTS | |
| 8 | fnW32TmI_ScSetServiceBits DATA | |
| 9 | fnW32TmRegisterServiceCtrlHandlerEx DATA | |
| 10 | fnW32TmSetServiceStatus DATA | |
| 11 | SvchostEntry_W32Time | |
| 12 | SvchostPushServiceGlobals | |
| 13 | TimeProvClose | |
| 14 | TimeProvCommand | |
| 15 | TimeProvOpen | |
| 16 | W32TimeBufferFree | |
| 17 | W32TimeDcPromo | |
| 18 | W32TimeDeleteConfig | |
| 19 | W32TimeGetNetlogonServiceBits | |
| 20 | W32TimeLog | |
| 21 | W32TimeQueryConfig | |
| 22 | W32TimeQueryConfiguration | |
| 23 | W32TimeQueryHardwareProviderStatus | |
| 24 | W32TimeQueryNTPProviderStatus | |
| 25 | W32TimeQueryNtpProviderConfiguration | |
| 26 | W32TimeQuerySource | |
| 27 | W32TimeQueryStatus | |
| 28 | W32TimeSetConfig | |
| 29 | W32TimeSyncNow | |
| 30 | W32TimeVerifyJoinConfig | |
| 31 | W32TimeVerifyUnjoinConfig | |
| 32 | W32TmServiceMain |
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 | ; | |
| 7 | LIBRARY W32TOPL.dll | |
| 8 | EXPORTS | |
| 9 | ToplAddEdgeSetToGraph | |
| 10 | ToplAddEdgeToGraph | |
| 11 | ToplDeleteComponents | |
| 12 | ToplDeleteGraphState | |
| 13 | ToplDeleteSpanningTreeEdges | |
| 14 | ToplEdgeAssociate | |
| 15 | ToplEdgeCreate | |
| 16 | ToplEdgeDestroy | |
| 17 | ToplEdgeDisassociate | |
| 18 | ToplEdgeFree | |
| 19 | ToplEdgeGetFromVertex | |
| 20 | ToplEdgeGetToVertex | |
| 21 | ToplEdgeGetWeight | |
| 22 | ToplEdgeInit | |
| 23 | ToplEdgeSetFromVertex | |
| 24 | ToplEdgeSetToVertex | |
| 25 | ToplEdgeSetVtx | |
| 26 | ToplEdgeSetWeight | |
| 27 | ToplFree | |
| 28 | ToplGetAlwaysSchedule | |
| 29 | ToplGetSpanningTreeEdgesForVtx | |
| 30 | ToplGraphAddVertex | |
| 31 | ToplGraphCreate | |
| 32 | ToplGraphDestroy | |
| 33 | ToplGraphFindEdgesForMST | |
| 34 | ToplGraphFree | |
| 35 | ToplGraphInit | |
| 36 | ToplGraphMakeRing | |
| 37 | ToplGraphNumberOfVertices | |
| 38 | ToplGraphRemoveVertex | |
| 39 | ToplGraphSetVertexIter | |
| 40 | ToplHeapCreate | |
| 41 | ToplHeapDestroy | |
| 42 | ToplHeapExtractMin | |
| 43 | ToplHeapInsert | |
| 44 | ToplHeapIsElementOf | |
| 45 | ToplHeapIsEmpty | |
| 46 | ToplIsToplException | |
| 47 | ToplIterAdvance | |
| 48 | ToplIterCreate | |
| 49 | ToplIterFree | |
| 50 | ToplIterGetObject | |
| 51 | ToplListAddElem | |
| 52 | ToplListCreate | |
| 53 | ToplListFree | |
| 54 | ToplListNumberOfElements | |
| 55 | ToplListRemoveElem | |
| 56 | ToplListSetIter | |
| 57 | ToplMakeGraphState | |
| 58 | ToplPScheduleValid | |
| 59 | ToplSTHeapAdd | |
| 60 | ToplSTHeapCostReduced | |
| 61 | ToplSTHeapDestroy | |
| 62 | ToplSTHeapExtractMin | |
| 63 | ToplSTHeapInit | |
| 64 | ToplScheduleCacheCreate | |
| 65 | ToplScheduleCacheDestroy | |
| 66 | ToplScheduleCreate | |
| 67 | ToplScheduleDuration | |
| 68 | ToplScheduleExportReadonly | |
| 69 | ToplScheduleImport | |
| 70 | ToplScheduleIsEqual | |
| 71 | ToplScheduleMaxUnavailable | |
| 72 | ToplScheduleMerge | |
| 73 | ToplScheduleNumEntries | |
| 74 | ToplScheduleValid | |
| 75 | ToplSetAllocator | |
| 76 | ToplVertexCreate | |
| 77 | ToplVertexDestroy | |
| 78 | ToplVertexFree | |
| 79 | ToplVertexGetId | |
| 80 | ToplVertexGetInEdge | |
| 81 | ToplVertexGetOutEdge | |
| 82 | ToplVertexGetParent | |
| 83 | ToplVertexInit | |
| 84 | ToplVertexNumberOfInEdges | |
| 85 | ToplVertexNumberOfOutEdges | |
| 86 | ToplVertexSetId | |
| 87 | ToplVertexSetParent |
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 | ; | |
| 7 | LIBRARY wdigest.dll | |
| 8 | EXPORTS | |
| 9 | SpInitialize | |
| 10 | CredentialUpdateRegister | |
| 11 | SsiCredentialsUpdateNotify | |
| 12 | CredentialUpdateFree | |
| 13 | CredentialUpdateNotify | |
| 14 | SpLsaModeInitialize | |
| 15 | SpUserModeInitialize | |
| 16 | SsiCredentialsUpdateFree | |
| 17 | SpInstanceInit |
lib/libc/mingw/lib-common/webauthn.def created+57| ... | ... | @@ -0,0 +1,57 @@ |
| 1 | LIBRARY "webauthn.dll" | |
| 2 | EXPORTS | |
| 3 | CryptsvcDllCtrl | |
| 4 | I_WebAuthNCtapDecodeGetAssertionRpcResponse | |
| 5 | I_WebAuthNCtapDecodeMakeCredentialRpcResponse | |
| 6 | I_WebAuthNCtapEncodeGetAssertionRpcRequest | |
| 7 | I_WebAuthNCtapEncodeMakeCredentialRpcRequest | |
| 8 | WebAuthNAuthenticatorGetAssertion | |
| 9 | WebAuthNAuthenticatorMakeCredential | |
| 10 | WebAuthNCancelCurrentOperation | |
| 11 | WebAuthNCtapChangeClientPin | |
| 12 | WebAuthNCtapChangeClientPinForSelectedDevice | |
| 13 | WebAuthNCtapFreeSelectedDeviceInformation | |
| 14 | WebAuthNCtapGetAssertion | |
| 15 | WebAuthNCtapGetSupportedTransports | |
| 16 | WebAuthNCtapGetWnfLocalizedString | |
| 17 | WebAuthNCtapIsStopSendCommandError | |
| 18 | WebAuthNCtapMakeCredential | |
| 19 | WebAuthNCtapManageAuthenticatePin | |
| 20 | WebAuthNCtapManageCancelEnrollFingerprint | |
| 21 | WebAuthNCtapManageChangePin | |
| 22 | WebAuthNCtapManageClose | |
| 23 | WebAuthNCtapManageDeleteCredential | |
| 24 | WebAuthNCtapManageEnrollFingerprint | |
| 25 | WebAuthNCtapManageFreeDisplayCredentials | |
| 26 | WebAuthNCtapManageGetDisplayCredentials | |
| 27 | WebAuthNCtapManageRemoveFingerprints | |
| 28 | WebAuthNCtapManageResetDevice | |
| 29 | WebAuthNCtapManageSelect | |
| 30 | WebAuthNCtapManageSetPin | |
| 31 | WebAuthNCtapParseAuthenticatorData | |
| 32 | WebAuthNCtapResetDevice | |
| 33 | WebAuthNCtapRpcGetAssertionUserList | |
| 34 | WebAuthNCtapRpcGetCborCommand | |
| 35 | WebAuthNCtapRpcSelectGetAssertion | |
| 36 | WebAuthNCtapSendCommand | |
| 37 | WebAuthNCtapSetClientPin | |
| 38 | WebAuthNCtapStartDeviceChangeNotify | |
| 39 | WebAuthNCtapStopDeviceChangeNotify | |
| 40 | WebAuthNCtapVerifyGetAssertion | |
| 41 | WebAuthNDecodeAccountInformation | |
| 42 | WebAuthNDeletePlatformCredential | |
| 43 | WebAuthNEncodeAccountInformation | |
| 44 | WebAuthNFreeAssertion | |
| 45 | WebAuthNFreeCredentialAttestation | |
| 46 | WebAuthNFreeDecodedAccountInformation | |
| 47 | WebAuthNFreeEncodedAccountInformation | |
| 48 | WebAuthNFreePlatformCredentials | |
| 49 | WebAuthNFreeUserEntityList | |
| 50 | WebAuthNGetApiVersionNumber | |
| 51 | WebAuthNGetCancellationId | |
| 52 | WebAuthNGetCoseAlgorithmIdentifier | |
| 53 | WebAuthNGetCredentialIdFromAuthenticatorData | |
| 54 | WebAuthNGetErrorName | |
| 55 | WebAuthNGetPlatformCredentials | |
| 56 | WebAuthNGetW3CExceptionDOMError | |
| 57 | WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable |
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 | ; | |
| 7 | LIBRARY webclnt.dll | |
| 8 | EXPORTS | |
| 9 | DavClose | |
| 10 | DavInit | |
| 11 | ServiceMain | |
| 12 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "webservices.dll" | |
| 7 | EXPORTS | |
| 8 | WsAbandonCall | |
| 9 | WsAbandonMessage | |
| 10 | WsAbortChannel | |
| 11 | WsAbortListener | |
| 12 | WsAbortServiceHost | |
| 13 | WsAbortServiceProxy | |
| 14 | WsAcceptChannel | |
| 15 | WsAddCustomHeader | |
| 16 | WsAddErrorString | |
| 17 | WsAddMappedHeader | |
| 18 | WsAddressMessage | |
| 19 | WsAlloc | |
| 20 | WsAsyncExecute | |
| 21 | WsCall | |
| 22 | WsCheckMustUnderstandHeaders | |
| 23 | WsCloseChannel | |
| 24 | WsCloseListener | |
| 25 | WsCloseServiceHost | |
| 26 | WsCloseServiceProxy | |
| 27 | WsCombineUrl | |
| 28 | WsCopyError | |
| 29 | WsCopyNode | |
| 30 | WsCreateChannel | |
| 31 | WsCreateChannelForListener | |
| 32 | WsCreateError | |
| 33 | WsCreateFaultFromError | |
| 34 | WsCreateHeap | |
| 35 | WsCreateListener | |
| 36 | WsCreateMessage | |
| 37 | WsCreateMessageForChannel | |
| 38 | WsCreateMetadata | |
| 39 | WsCreateReader | |
| 40 | WsCreateServiceEndpointFromTemplate | |
| 41 | WsCreateServiceHost | |
| 42 | WsCreateServiceProxy | |
| 43 | WsCreateServiceProxyFromTemplate | |
| 44 | WsCreateWriter | |
| 45 | WsCreateXmlBuffer | |
| 46 | WsCreateXmlSecurityToken | |
| 47 | WsDateTimeToFileTime | |
| 48 | WsDecodeUrl | |
| 49 | WsEncodeUrl | |
| 50 | WsEndReaderCanonicalization | |
| 51 | WsEndWriterCanonicalization | |
| 52 | WsFileTimeToDateTime | |
| 53 | WsFillBody | |
| 54 | WsFillReader | |
| 55 | WsFindAttribute | |
| 56 | WsFlushBody | |
| 57 | WsFlushWriter | |
| 58 | WsFreeChannel | |
| 59 | WsFreeError | |
| 60 | WsFreeHeap | |
| 61 | WsFreeListener | |
| 62 | WsFreeMessage | |
| 63 | WsFreeMetadata | |
| 64 | WsFreeReader | |
| 65 | WsFreeSecurityToken | |
| 66 | WsFreeServiceHost | |
| 67 | WsFreeServiceProxy | |
| 68 | WsFreeWriter | |
| 69 | WsGetChannelProperty | |
| 70 | WsGetCustomHeader | |
| 71 | WsGetDictionary | |
| 72 | WsGetErrorProperty | |
| 73 | WsGetErrorString | |
| 74 | WsGetFaultErrorDetail | |
| 75 | WsGetFaultErrorProperty | |
| 76 | WsGetHeader | |
| 77 | WsGetHeaderAttributes | |
| 78 | WsGetHeapProperty | |
| 79 | WsGetListenerProperty | |
| 80 | WsGetMappedHeader | |
| 81 | WsGetMessageProperty | |
| 82 | WsGetMetadataEndpoints | |
| 83 | WsGetMetadataProperty | |
| 84 | WsGetMissingMetadataDocumentAddress | |
| 85 | WsGetNamespaceFromPrefix | |
| 86 | WsGetOperationContextProperty | |
| 87 | WsGetPolicyAlternativeCount | |
| 88 | WsGetPolicyProperty | |
| 89 | WsGetPrefixFromNamespace | |
| 90 | WsGetReaderNode | |
| 91 | WsGetReaderPosition | |
| 92 | WsGetReaderProperty | |
| 93 | WsGetSecurityContextProperty | |
| 94 | WsGetSecurityTokenProperty | |
| 95 | WsGetServiceHostProperty | |
| 96 | WsGetServiceProxyProperty | |
| 97 | WsGetWriterPosition | |
| 98 | WsGetWriterProperty | |
| 99 | WsGetXmlAttribute | |
| 100 | WsInitializeMessage | |
| 101 | WsMarkHeaderAsUnderstood | |
| 102 | WsMatchPolicyAlternative | |
| 103 | WsMoveReader | |
| 104 | WsMoveWriter | |
| 105 | WsOpenChannel | |
| 106 | WsOpenListener | |
| 107 | WsOpenServiceHost | |
| 108 | WsOpenServiceProxy | |
| 109 | WsPullBytes | |
| 110 | WsPushBytes | |
| 111 | WsReadArray | |
| 112 | WsReadAttribute | |
| 113 | WsReadBody | |
| 114 | WsReadBytes | |
| 115 | WsReadChars | |
| 116 | WsReadCharsUtf8 | |
| 117 | WsReadElement | |
| 118 | WsReadEndAttribute | |
| 119 | WsReadEndElement | |
| 120 | WsReadEndpointAddressExtension | |
| 121 | WsReadEnvelopeEnd | |
| 122 | WsReadEnvelopeStart | |
| 123 | WsReadMessageEnd | |
| 124 | WsReadMessageStart | |
| 125 | WsReadMetadata | |
| 126 | WsReadNode | |
| 127 | WsReadQualifiedName | |
| 128 | WsReadStartAttribute | |
| 129 | WsReadStartElement | |
| 130 | WsReadToStartElement | |
| 131 | WsReadType | |
| 132 | WsReadValue | |
| 133 | WsReadXmlBuffer | |
| 134 | WsReadXmlBufferFromBytes | |
| 135 | WsReceiveMessage | |
| 136 | WsRegisterOperationForCancel | |
| 137 | WsRemoveCustomHeader | |
| 138 | WsRemoveHeader | |
| 139 | WsRemoveMappedHeader | |
| 140 | WsRemoveNode | |
| 141 | WsRequestReply | |
| 142 | WsRequestSecurityToken | |
| 143 | WsResetChannel | |
| 144 | WsResetError | |
| 145 | WsResetHeap | |
| 146 | WsResetListener | |
| 147 | WsResetMessage | |
| 148 | WsResetMetadata | |
| 149 | WsResetServiceHost | |
| 150 | WsResetServiceProxy | |
| 151 | WsRevokeSecurityContext | |
| 152 | WsSendFaultMessageForError | |
| 153 | WsSendMessage | |
| 154 | WsSendReplyMessage | |
| 155 | WsSetChannelProperty | |
| 156 | WsSetErrorProperty | |
| 157 | WsSetFaultErrorDetail | |
| 158 | WsSetFaultErrorProperty | |
| 159 | WsSetHeader | |
| 160 | WsSetInput | |
| 161 | WsSetInputToBuffer | |
| 162 | WsSetListenerProperty | |
| 163 | WsSetMessageProperty | |
| 164 | WsSetOutput | |
| 165 | WsSetOutputToBuffer | |
| 166 | WsSetReaderPosition | |
| 167 | WsSetWriterPosition | |
| 168 | WsShutdownSessionChannel | |
| 169 | WsSkipNode | |
| 170 | WsStartReaderCanonicalization | |
| 171 | WsStartWriterCanonicalization | |
| 172 | WsTrimXmlWhitespace | |
| 173 | WsVerifyXmlNCName | |
| 174 | WsWriteArray | |
| 175 | WsWriteAttribute | |
| 176 | WsWriteBody | |
| 177 | WsWriteBytes | |
| 178 | WsWriteChars | |
| 179 | WsWriteCharsUtf8 | |
| 180 | WsWriteElement | |
| 181 | WsWriteEndAttribute | |
| 182 | WsWriteEndCData | |
| 183 | WsWriteEndElement | |
| 184 | WsWriteEndStartElement | |
| 185 | WsWriteEnvelopeEnd | |
| 186 | WsWriteEnvelopeStart | |
| 187 | WsWriteMessageEnd | |
| 188 | WsWriteMessageStart | |
| 189 | WsWriteNode | |
| 190 | WsWriteQualifiedName | |
| 191 | WsWriteStartAttribute | |
| 192 | WsWriteStartCData | |
| 193 | WsWriteStartElement | |
| 194 | WsWriteText | |
| 195 | WsWriteType | |
| 196 | WsWriteValue | |
| 197 | WsWriteXmlBuffer | |
| 198 | WsWriteXmlBufferToBytes | |
| 199 | WsWriteXmlnsAttribute | |
| 200 | WsXmlStringEquals |
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 | ; | |
| 6 | LIBRARY "wer.dll" | |
| 7 | EXPORTS | |
| 8 | WerAddExcludedApplication | |
| 9 | WerFreeString | |
| 10 | WerRemoveExcludedApplication | |
| 11 | WerReportAddDump | |
| 12 | WerReportAddFile | |
| 13 | WerReportCloseHandle | |
| 14 | WerReportCreate | |
| 15 | WerReportSetParameter | |
| 16 | WerReportSetUIOption | |
| 17 | WerReportSubmit | |
| 18 | WerStoreClose | |
| 19 | WerStoreGetFirstReportKey | |
| 20 | WerStoreGetNextReportKey | |
| 21 | WerStoreGetReportCount | |
| 22 | WerStoreGetSizeOnDisk | |
| 23 | WerStoreOpen | |
| 24 | WerStorePurge | |
| 25 | WerStoreQueryReportMetadataV1 | |
| 26 | WerStoreQueryReportMetadataV2 | |
| 27 | WerStoreQueryReportMetadataV3 | |
| 28 | WerStoreUploadReport | |
| 29 | WerSysprepCleanup | |
| 30 | WerSysprepGeneralize | |
| 31 | WerSysprepSpecialize | |
| 32 | WerUnattendedSetup | |
| 33 | WerpAddAppCompatData | |
| 34 | WerpAddFile | |
| 35 | WerpAddMemoryBlock | |
| 36 | WerpAddRegisteredDataToReport | |
| 37 | WerpAddSecondaryParameter | |
| 38 | WerpAddTextToReport | |
| 39 | WerpArchiveReport | |
| 40 | WerpCancelResponseDownload | |
| 41 | WerpCancelUpload | |
| 42 | WerpCloseStore | |
| 43 | WerpCreateMachineStore | |
| 44 | WerpDeleteReport | |
| 45 | WerpDestroyWerString | |
| 46 | WerpDownloadResponse | |
| 47 | WerpDownloadResponseTemplate | |
| 48 | WerpEnumerateStoreNext | |
| 49 | WerpEnumerateStoreStart | |
| 50 | WerpExtractReportFiles | |
| 51 | WerpGetBucketId | |
| 52 | WerpGetDynamicParameter | |
| 53 | WerpGetEventType | |
| 54 | WerpGetFileByIndex | |
| 55 | WerpGetFilePathByIndex | |
| 56 | WerpGetNumFiles | |
| 57 | WerpGetNumSecParams | |
| 58 | WerpGetNumSigParams | |
| 59 | WerpGetReportConsent | |
| 60 | WerpGetReportFinalConsent | |
| 61 | WerpGetReportFlags | |
| 62 | WerpGetReportInformation | |
| 63 | WerpGetReportTime | |
| 64 | WerpGetReportType | |
| 65 | WerpGetResponseId | |
| 66 | WerpGetResponseUrl | |
| 67 | WerpGetSecParamByIndex | |
| 68 | WerpGetSigParamByIndex | |
| 69 | WerpGetStoreLocation | |
| 70 | WerpGetStoreType | |
| 71 | WerpGetTextFromReport | |
| 72 | WerpGetUIParamByIndex | |
| 73 | WerpGetUploadTime | |
| 74 | WerpGetWerStringData | |
| 75 | WerpIsDisabled | |
| 76 | WerpIsTransportAvailable | |
| 77 | WerpLoadReport | |
| 78 | WerpOpenMachineArchive | |
| 79 | WerpOpenMachineQueue | |
| 80 | WerpOpenUserArchive | |
| 81 | WerpOpenUserQueue | |
| 82 | WerpPromtUser | |
| 83 | WerpReportCancel | |
| 84 | WerpRestartApplication | |
| 85 | WerpSetCallBack | |
| 86 | WerpSetDynamicParameter | |
| 87 | WerpSetEventName | |
| 88 | WerpSetReportFlags | |
| 89 | WerpSetReportInformation | |
| 90 | WerpSetReportTime | |
| 91 | WerpSetReportUploadContextToken | |
| 92 | WerpShowNXNotification | |
| 93 | WerpShowSecondLevelConsent | |
| 94 | WerpShowUpsellUI | |
| 95 | WerpSubmitReportFromStore | |
| 96 | WerpSvcReportFromMachineQueue |
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 | ; | |
| 7 | LIBRARY wiashext.dll | |
| 8 | EXPORTS | |
| 9 | AddDeviceWasChosen | |
| 10 | AddDeviceWasChosenA | |
| 11 | AddDeviceWasChosenW | |
| 12 | MakeFullPidlForDevice | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer | |
| 17 | DoDeleteAllItems |
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 | ; | |
| 6 | LIBRARY "WIMGAPI.DLL" | |
| 7 | EXPORTS | |
| 8 | ;DllCanUnloadNow | |
| 9 | ;DllMain | |
| 10 | WIMAddImagePath | |
| 11 | WIMAddImagePaths | |
| 12 | WIMAddWimbootEntry | |
| 13 | WIMApplyImage | |
| 14 | WIMCaptureImage | |
| 15 | WIMCloseHandle | |
| 16 | WIMCommitImageHandle | |
| 17 | WIMCopyFile | |
| 18 | WIMCreateFile | |
| 19 | WIMCreateImageFile | |
| 20 | WIMCreateWofCompressedFile | |
| 21 | WIMDeleteImage | |
| 22 | WIMDeleteImageMounts | |
| 23 | WIMEnumImageFiles | |
| 24 | WIMExportImage | |
| 25 | WIMExtractImageDirectory | |
| 26 | WIMExtractImagePath | |
| 27 | WIMFindFirstImageFile | |
| 28 | WIMFindNextImageFile | |
| 29 | WIMGetAttributes | |
| 30 | WIMGetImageCount | |
| 31 | WIMGetImageInformation | |
| 32 | WIMGetMessageCallbackCount | |
| 33 | WIMGetMountedImageHandle | |
| 34 | WIMGetMountedImageInfo | |
| 35 | WIMGetMountedImageInfoFromHandle | |
| 36 | WIMGetMountedImages | |
| 37 | WIMGetWIMBootEntries | |
| 38 | WIMGetWIMBootWIMPath | |
| 39 | WIMInitFileIOCallbacks | |
| 40 | WIMInitializeWofDriver | |
| 41 | WIMIsCurrentSystemWimboot | |
| 42 | WIMIsReferenceWim | |
| 43 | WIMLoadImage | |
| 44 | WIMMountImage | |
| 45 | WIMMountImageHandle | |
| 46 | WIMProcessCustomImage | |
| 47 | WIMReadFileEx | |
| 48 | WIMReadImageFile | |
| 49 | WIMRedirectFolderBeforeApply | |
| 50 | WIMRegisterLogFile | |
| 51 | WIMRegisterMessageCallback | |
| 52 | WIMRemountImage | |
| 53 | WIMSetBootImage | |
| 54 | WIMSetFileIOCallbackTemporaryPath | |
| 55 | WIMSetImageInformation | |
| 56 | WIMSetImageUserSpecifiedCreationTime | |
| 57 | WIMSetReferenceFile | |
| 58 | WIMSetTemporaryPath | |
| 59 | WIMSetWimGuid | |
| 60 | WIMSingleInstanceFile | |
| 61 | WIMSplitFile | |
| 62 | WIMUnmountImage | |
| 63 | WIMUnmountImageHandle | |
| 64 | WIMUnregisterLogFile | |
| 65 | WIMUnregisterMessageCallback | |
| 66 | WIMUpdateWIMBootEntry | |
| 67 | WIMWriteFileWithIntegrity |
lib/libc/mingw/lib-common/windows.ai.machinelearning.def created+5| ... | ... | @@ -0,0 +1,5 @@ |
| 1 | LIBRARY windows.ai.machinelearning | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | MLCreateOperatorRegistry |
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 | ; | |
| 6 | LIBRARY "Windows.Data.Pdf.dll" | |
| 7 | EXPORTS | |
| 8 | PdfCreateRenderer |
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 | ; | |
| 6 | LIBRARY "Windows.Networking.dll" | |
| 7 | EXPORTS | |
| 8 | SetSocketMediaStreamingMode |
lib/libc/mingw/lib-common/winmm.def-1| ... | ... | @@ -51,7 +51,6 @@ joySetThreshold |
| 51 | 51 | mci32Message |
| 52 | 52 | mciDriverNotify |
| 53 | 53 | mciDriverYield |
| 54 | mciExecute | |
| 55 | 54 | mciFreeCommandResource |
| 56 | 55 | mciGetCreatorTask |
| 57 | 56 | mciGetDeviceIDA |
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 | ; | |
| 7 | LIBRARY WINRNR.dll | |
| 8 | EXPORTS | |
| 9 | InstallNTDSProvider | |
| 10 | NSPStartup | |
| 11 | RemoveNTDSProvider |
lib/libc/mingw/lib-common/winspool.def-6| ... | ... | @@ -91,7 +91,6 @@ DeviceCapabilities |
| 91 | 91 | DeviceCapabilitiesA |
| 92 | 92 | DeviceCapabilitiesW |
| 93 | 93 | DevicePropertySheets |
| 94 | DocumentEvent | |
| 95 | 94 | DocumentPropertiesA |
| 96 | 95 | DocumentPropertiesW |
| 97 | 96 | DocumentPropertySheets |
| ... | ... | @@ -171,9 +170,6 @@ PlayGdiScriptOnPrinterIC |
| 171 | 170 | PrinterMessageBoxA |
| 172 | 171 | PrinterMessageBoxW |
| 173 | 172 | PrinterProperties |
| 174 | QueryColorProfile | |
| 175 | QueryRemoteFonts | |
| 176 | QuerySpoolMode | |
| 177 | 173 | ReadPrinter |
| 178 | 174 | RegisterForPrintAsyncNotifications |
| 179 | 175 | ReportJobProcessingProgress |
| ... | ... | @@ -196,11 +192,9 @@ SetPrinterDataExW |
| 196 | 192 | SetPrinterDataW |
| 197 | 193 | SetPrinterW |
| 198 | 194 | SplDriverUnloadComplete |
| 199 | SpoolerDevQueryPrintW | |
| 200 | 195 | SpoolerInit |
| 201 | 196 | SpoolerPrinterEvent |
| 202 | 197 | StartDocDlgA |
| 203 | StartDocDlgW | |
| 204 | 198 | StartDocPrinterA |
| 205 | 199 | StartDocPrinterW |
| 206 | 200 | StartPagePrinter |
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 | ; | |
| 7 | LIBRARY winsrv.dll | |
| 8 | EXPORTS | |
| 9 | ConServerDllInitialization | |
| 10 | UserServerDllInitialization | |
| 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 | ; | |
| 7 | LIBRARY wkssvc.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
lib/libc/mingw/lib-common/wlanapi.def+89-1| ... | ... | @@ -5,9 +5,9 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "wlanapi.dll" |
| 7 | 7 | EXPORTS |
| 8 | WFDGetSessionEndpointPairsInt | |
| 9 | 8 | QueryNetconStatus |
| 10 | 9 | QueryNetconVirtualCharacteristic |
| 10 | WFDAbortSessionInt | |
| 11 | 11 | WFDAcceptConnectRequestAndOpenSessionInt |
| 12 | 12 | WFDAcceptGroupRequestAndOpenSessionInt |
| 13 | 13 | WFDCancelConnectorPairWithOOB |
| ... | ... | @@ -21,54 +21,103 @@ WFDCloseOOBPairingSession |
| 21 | 21 | WFDCloseSession |
| 22 | 22 | WFDCloseSessionInt |
| 23 | 23 | WFDConfigureFirewallForSessionInt |
| 24 | WFDCreateDHPrivatePublicKeyPairInt | |
| 24 | 25 | WFDDeclineConnectRequestInt |
| 25 | 26 | WFDDeclineGroupRequestInt |
| 27 | WFDDiscoverDeviceServiceInformationInt | |
| 28 | WFDDiscoverDevicesExInt | |
| 26 | 29 | WFDDiscoverDevicesInt |
| 27 | 30 | WFDFlushVisibleDeviceListInt |
| 28 | 31 | WFDForceDisconnectInt |
| 29 | 32 | WFDForceDisconnectLegacyPeerInt |
| 30 | 33 | WFDFreeMemoryInt |
| 31 | 34 | WFDGetDefaultGroupProfileInt |
| 35 | WFDGetDeviceDescriptorForPendingRequestInt | |
| 36 | WFDGetNFCCarrierConfigBlobInt | |
| 32 | 37 | WFDGetOOBBlob |
| 38 | WFDGetPrimaryAdapterStateInt | |
| 33 | 39 | WFDGetProfileKeyInfoInt |
| 40 | WFDGetSessionEndpointPairsInt | |
| 41 | WFDGetVisibleDevicesExInt | |
| 34 | 42 | WFDGetVisibleDevicesInt |
| 35 | 43 | WFDIsInterfaceWiFiDirect |
| 36 | 44 | WFDIsWiFiDirectRunningOnWiFiAdapter |
| 37 | 45 | WFDLowPrivCancelOpenSessionInt |
| 38 | 46 | WFDLowPrivCloseHandleInt |
| 47 | WFDLowPrivCloseLegacySessionInt | |
| 39 | 48 | WFDLowPrivCloseSessionInt |
| 40 | 49 | WFDLowPrivConfigureFirewallForSessionInt |
| 50 | WFDLowPrivDeclineDeviceApiConnectionRequestInt | |
| 51 | WFDLowPrivGetPendingGroupRequestDetailsInt | |
| 41 | 52 | WFDLowPrivGetSessionEndpointPairsInt |
| 42 | 53 | WFDLowPrivIsWfdSupportedInt |
| 43 | 54 | WFDLowPrivOpenHandleInt |
| 55 | WFDLowPrivOpenLegacySessionInt | |
| 56 | WFDLowPrivOpenSessionByDafObjectIdInt | |
| 57 | WFDLowPrivQueryPropertyInt | |
| 44 | 58 | WFDLowPrivRegisterNotificationInt |
| 45 | 59 | WFDLowPrivStartOpenSessionByInterfaceIdInt |
| 60 | WFDLowPrivRegisterVMgrCallerInt | |
| 61 | WFDLowPrivSetPropertyInt | |
| 62 | WFDLowPrivStartDeviceApiConnectionRequestListenerInt | |
| 63 | WFDLowPrivStartUsingGroupInt | |
| 64 | WFDLowPrivStopDeviceApiConnectionRequestListenerInt | |
| 65 | WFDLowPrivStopUsingGroupInt | |
| 66 | WFDLowPrivUnregisterVMgrCallerInt | |
| 46 | 67 | WFDOpenHandle |
| 47 | 68 | WFDOpenHandleInt |
| 48 | 69 | WFDOpenLegacySession |
| 49 | 70 | WFDOpenLegacySessionInt |
| 50 | 71 | WFDPairCancelByDeviceAddressInt |
| 51 | 72 | WFDPairCancelInt |
| 73 | WFDPairContinuePairWithDeviceInt | |
| 52 | 74 | WFDPairEnumerateCeremoniesInt |
| 53 | 75 | WFDPairSelectCeremonyInt |
| 54 | 76 | WFDPairWithDeviceAndOpenSessionExInt |
| 55 | 77 | WFDPairWithDeviceAndOpenSessionInt |
| 56 | 78 | WFDParseOOBBlob |
| 79 | WFDParseOOBBlobTypeAndGetPayloadInt | |
| 57 | 80 | WFDParseProfileXmlInt |
| 81 | WFDParseWfaNfcCarrierConfigBlobInt | |
| 58 | 82 | WFDQueryPropertyInt |
| 59 | 83 | WFDRegisterNotificationInt |
| 84 | WFDRegisterVMgrCallerInt | |
| 85 | WFDResetSelectedWfdMgrInt | |
| 60 | 86 | WFDSetAdditionalIEsInt |
| 61 | 87 | WFDSetPropertyInt |
| 62 | 88 | WFDSetSecondaryDeviceTypeListInt |
| 89 | WFDSetSelectedWfdMgrInt | |
| 90 | WFDStartBackgroundDiscoveryInt | |
| 63 | 91 | WFDStartConnectorPairWithOOB |
| 64 | 92 | WFDStartListenerPairWithOOB |
| 93 | WFDStartOffloadedDiscoveryInt | |
| 65 | 94 | WFDStartOpenSession |
| 66 | 95 | WFDStartOpenSessionInt |
| 96 | WFDStartUsingGroupExInt | |
| 67 | 97 | WFDStartUsingGroupInt |
| 98 | WFDStopBackgroundDiscoveryInt | |
| 99 | WFDStopDiscoverDevicesExInt | |
| 68 | 100 | WFDStopDiscoverDevicesInt |
| 101 | WFDStopOffloadedDiscoveryInt | |
| 69 | 102 | WFDStopUsingGroupInt |
| 103 | WFDSvcLowPrivAcceptSessionInt | |
| 104 | WFDSvcLowPrivCancelSessionInt | |
| 105 | WFDSvcLowPrivCloseSessionInt | |
| 106 | WFDSvcLowPrivConfigureSessionInt | |
| 107 | WFDSvcLowPrivConnectSessionInt | |
| 108 | WFDSvcLowPrivGetProvisioningInfoInt | |
| 109 | WFDSvcLowPrivGetSessionEndpointPairsInt | |
| 110 | WFDSvcLowPrivOpenAdvertiserSessionInt | |
| 111 | WFDSvcLowPrivOpenSeekerSessionInt | |
| 112 | WFDSvcLowPrivPublishServiceInt | |
| 113 | WFDSvcLowPrivUnpublishServiceInt | |
| 114 | WFDUnregisterVMgrCallerInt | |
| 70 | 115 | WFDUpdateDeviceVisibility |
| 116 | WiFiDisplayResetSinkStateInt | |
| 117 | WiFiDisplaySetSinkClientHandleInt | |
| 118 | WiFiDisplaySetSinkStateInt | |
| 71 | 119 | WlanAllocateMemory |
| 120 | WlanAllocateProfileIpConfiguration | |
| 72 | 121 | WlanCancelPlap |
| 73 | 122 | WlanCloseHandle |
| 74 | 123 | WlanConnect |
| ... | ... | @@ -76,6 +125,7 @@ WlanConnectEx |
| 76 | 125 | WlanConnectWithInput |
| 77 | 126 | WlanDeinitPlapParams |
| 78 | 127 | WlanDeleteProfile |
| 128 | WlanDeviceServiceCommand | |
| 79 | 129 | WlanDisconnect |
| 80 | 130 | WlanDoPlap |
| 81 | 131 | WlanDoesBssMatchSecurity |
| ... | ... | @@ -85,6 +135,7 @@ WlanExtractPsdIEDataList |
| 85 | 135 | WlanFreeMemory |
| 86 | 136 | WlanGenerateProfileXmlBasicSettings |
| 87 | 137 | WlanGetAvailableNetworkList |
| 138 | WlanGetAvailableNetworkList2 | |
| 88 | 139 | WlanGetFilterList |
| 89 | 140 | WlanGetInterfaceCapability |
| 90 | 141 | WlanGetMFPNegotiated |
| ... | ... | @@ -96,10 +147,12 @@ WlanGetProfileIndex |
| 96 | 147 | WlanGetProfileKeyInfo |
| 97 | 148 | WlanGetProfileList |
| 98 | 149 | WlanGetProfileMetadata |
| 150 | WlanGetProfileMetadataWithProfileGuid | |
| 99 | 151 | WlanGetProfileSsidList |
| 100 | 152 | WlanGetRadioInformation |
| 101 | 153 | WlanGetSecuritySettings |
| 102 | 154 | WlanGetStoredRadioState |
| 155 | WlanGetSupportedDeviceServices | |
| 103 | 156 | WlanHostedNetworkForceStart |
| 104 | 157 | WlanHostedNetworkForceStop |
| 105 | 158 | WlanHostedNetworkFreeWCNSettings |
| ... | ... | @@ -117,6 +170,11 @@ WlanHostedNetworkStartUsing |
| 117 | 170 | WlanHostedNetworkStopUsing |
| 118 | 171 | WlanIhvControl |
| 119 | 172 | WlanInitPlapParams |
| 173 | WlanInternalCancelFTMRequest | |
| 174 | WlanInternalGetNetworkBssListWithFTMData | |
| 175 | WlanInternalNonDisruptiveScan | |
| 176 | WlanInternalNonDisruptiveScanEx | |
| 177 | WlanInternalRequestFTM | |
| 120 | 178 | WlanInternalScan |
| 121 | 179 | WlanIsActiveConsoleUser |
| 122 | 180 | WlanIsNetworkSuppressed |
| ... | ... | @@ -124,13 +182,31 @@ WlanIsUIRequestPending |
| 124 | 182 | WlanLowPrivCloseHandle |
| 125 | 183 | WlanLowPrivEnumInterfaces |
| 126 | 184 | WlanLowPrivFreeMemory |
| 185 | WlanLowPrivNotifyVsIeProviderInt | |
| 127 | 186 | WlanLowPrivOpenHandle |
| 128 | 187 | WlanLowPrivQueryInterface |
| 129 | 188 | WlanLowPrivSetInterface |
| 189 | WlanNotifyVsIeProviderExInt | |
| 130 | 190 | WlanNotifyVsIeProviderInt |
| 131 | 191 | WlanOpenHandle |
| 132 | 192 | WlanParseProfileXmlBasicSettings |
| 193 | WlanPrivateCanDeleteProfile | |
| 194 | WlanPrivateClearAnqpCache | |
| 195 | WlanPrivateDeleteProfile | |
| 196 | WlanPrivateEnableAnqpOsuRegistration | |
| 197 | WlanPrivateGetAnqpCacheResponse | |
| 198 | WlanPrivateGetAnqpOSUProviderList | |
| 199 | WlanPrivateGetAnqpOsuRegistrationStatus | |
| 133 | 200 | WlanPrivateGetAvailableNetworkList |
| 201 | WlanPrivateParseAnqpRawData | |
| 202 | WlanPrivateQuery11adPairedConfig | |
| 203 | WlanPrivateQueryInterface | |
| 204 | WlanPrivateRefreshAnqpCache | |
| 205 | WlanPrivateSetInterface | |
| 206 | WlanPrivateSetProfile | |
| 207 | WlanProfileIpConfigurationGetAddressList | |
| 208 | WlanProfileIpConfigurationGetDnsServerList | |
| 209 | WlanProfileIpConfigurationGetGatewayList | |
| 134 | 210 | WlanQueryAutoConfigParameter |
| 135 | 211 | WlanQueryCreateAllUserProfileRestricted |
| 136 | 212 | WlanQueryInterface |
| ... | ... | @@ -139,6 +215,7 @@ WlanQueryPreConnectInput |
| 139 | 215 | WlanQueryVirtualInterfaceType |
| 140 | 216 | WlanReasonCodeToString |
| 141 | 217 | WlanRefreshConnections |
| 218 | WlanRegisterDeviceServiceNotification | |
| 142 | 219 | WlanRegisterNotification |
| 143 | 220 | WlanRegisterVirtualStationNotification |
| 144 | 221 | WlanRemoveUIForwardingNetworkList |
| ... | ... | @@ -155,23 +232,34 @@ WlanSetProfileCustomUserData |
| 155 | 232 | WlanSetProfileEapUserData |
| 156 | 233 | WlanSetProfileEapXmlUserData |
| 157 | 234 | WlanSetProfileList |
| 235 | WlanSetProfileListForOffload | |
| 158 | 236 | WlanSetProfileMetadata |
| 159 | 237 | WlanSetProfilePosition |
| 238 | WlanSetProtectedScenario | |
| 160 | 239 | WlanSetPsdIEDataList |
| 161 | 240 | WlanSetSecuritySettings |
| 162 | 241 | WlanSetUIForwardingNetworkList |
| 163 | 242 | WlanSignalValueToBar |
| 243 | WlanSignalValueToBarEx | |
| 164 | 244 | WlanSsidToDisplayName |
| 165 | 245 | WlanStartAP |
| 246 | WlanStartMovementDetector | |
| 166 | 247 | WlanStopAP |
| 248 | WlanStopMovementDetector | |
| 167 | 249 | WlanStoreRadioStateOnEnteringAirPlaneMode |
| 168 | 250 | WlanStringToSsid |
| 251 | WlanStringToUtf8Ssid | |
| 169 | 252 | WlanTryUpgradeCurrentConnectionAuthCipher |
| 253 | WlanUpdateBasicProfileSecurity | |
| 170 | 254 | WlanUpdateProfileWithAuthCipher |
| 171 | 255 | WlanUtf8SsidToDisplayName |
| 256 | WlanVMgrQueryCurrentScenariosInt | |
| 257 | WlanVerifyProfileIpConfiguration | |
| 258 | WlanWcmDisconnect | |
| 172 | 259 | WlanWcmGetInterface |
| 173 | 260 | WlanWcmGetProfileList |
| 174 | 261 | WlanWcmSetInterface |
| 262 | WlanWcmSetProfile | |
| 175 | 263 | WlanWfdGOSetWCNSettings |
| 176 | 264 | WlanWfdGetPeerInfo |
| 177 | 265 | WlanWfdStartGO |
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 | ; | |
| 6 | LIBRARY "wlanui.dll" | |
| 7 | EXPORTS | |
| 8 | WLInvokeProfileUI | |
| 9 | WLInvokeProfileUIFromXMLFile | |
| 10 | DllGetClassObject | |
| 11 | WLFreeProfile | |
| 12 | WLFreeProfileXml | |
| 13 | WlanUIEditProfile |
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 | ; | |
| 6 | LIBRARY "wlanutil.dll" | |
| 7 | EXPORTS | |
| 8 | WlanIsActiveConsoleUser | |
| 9 | WlanSignalValueToBar | |
| 10 | WlanSsidToDisplayName | |
| 11 | WlanStringToSsid | |
| 12 | WlanUtf8SsidToDisplayName |
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 | ; | |
| 7 | LIBRARY WMI.dll | |
| 8 | EXPORTS | |
| 9 | CloseTrace | |
| 10 | ControlTraceA | |
| 11 | ControlTraceW | |
| 12 | CreateTraceInstanceId | |
| 13 | EnableTrace | |
| 14 | GetTraceEnableFlags | |
| 15 | GetTraceEnableLevel | |
| 16 | GetTraceLoggerHandle | |
| 17 | OpenTraceA | |
| 18 | OpenTraceW | |
| 19 | ProcessTrace | |
| 20 | QueryAllTracesA | |
| 21 | QueryAllTracesW | |
| 22 | RegisterTraceGuidsA | |
| 23 | RegisterTraceGuidsW | |
| 24 | RemoveTraceCallback | |
| 25 | SetTraceCallback | |
| 26 | StartTraceA | |
| 27 | StartTraceW | |
| 28 | TraceEvent | |
| 29 | TraceEventInstance | |
| 30 | UnregisterTraceGuids | |
| 31 | WmiCloseBlock | |
| 32 | WmiDevInstToInstanceNameA | |
| 33 | WmiDevInstToInstanceNameW | |
| 34 | WmiEnumerateGuids | |
| 35 | WmiExecuteMethodA | |
| 36 | WmiExecuteMethodW | |
| 37 | WmiFileHandleToInstanceNameA | |
| 38 | WmiFileHandleToInstanceNameW | |
| 39 | WmiFreeBuffer | |
| 40 | WmiMofEnumerateResourcesA | |
| 41 | WmiMofEnumerateResourcesW | |
| 42 | WmiNotificationRegistrationA | |
| 43 | WmiNotificationRegistrationW | |
| 44 | WmiOpenBlock | |
| 45 | WmiQueryAllDataA | |
| 46 | WmiQueryAllDataW | |
| 47 | WmiQueryGuidInformation | |
| 48 | WmiQuerySingleInstanceA | |
| 49 | WmiQuerySingleInstanceW | |
| 50 | WmiSetSingleInstanceA | |
| 51 | WmiSetSingleInstanceW | |
| 52 | WmiSetSingleItemA | |
| 53 | WmiSetSingleItemW |
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 | ; | |
| 6 | LIBRARY "WmiProp.dll" | |
| 7 | EXPORTS | |
| 8 | WmiPropCoInstaller | |
| 9 | WmiPropPageProvider |
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 | ; | |
| 6 | LIBRARY "wpd_ci.dll" | |
| 7 | EXPORTS | |
| 8 | CoDeviceInstall | |
| 9 | DoCmd | |
| 10 | MigrateMTPDevicesInstalledAsMSC | |
| 11 | RescanBus | |
| 12 | WpdClassInstaller |
lib/libc/mingw/lib-common/wpprecorderum.def created+8| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | LIBRARY wpprecorderum | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | WppAutoLogGetDefaultHandle | |
| 6 | WppAutoLogStart | |
| 7 | WppAutoLogStop | |
| 8 | WppAutoLogTrace |
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 | ; | |
| 6 | LIBRARY "WS2HELP.dll" | |
| 7 | EXPORTS | |
| 8 | WahCloseApcHelper | |
| 9 | WahCloseHandleHelper | |
| 10 | WahCloseNotificationHandleHelper | |
| 11 | WahCloseSocketHandle | |
| 12 | WahCloseThread | |
| 13 | WahCompleteRequest | |
| 14 | WahCreateHandleContextTable | |
| 15 | WahCreateNotificationHandle | |
| 16 | WahCreateSocketHandle | |
| 17 | WahDestroyHandleContextTable | |
| 18 | WahDisableNonIFSHandleSupport | |
| 19 | WahEnableNonIFSHandleSupport | |
| 20 | WahEnumerateHandleContexts | |
| 21 | WahInsertHandleContext | |
| 22 | WahNotifyAllProcesses | |
| 23 | WahOpenApcHelper | |
| 24 | WahOpenCurrentThread | |
| 25 | WahOpenHandleHelper | |
| 26 | WahOpenNotificationHandleHelper | |
| 27 | WahQueueUserApc | |
| 28 | WahReferenceContextByHandle | |
| 29 | WahRemoveHandleContext | |
| 30 | WahWaitForNotification | |
| 31 | WahWriteLSPEvent |
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 | ; | |
| 7 | LIBRARY WSCSVC.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY wshbth.dll | |
| 8 | EXPORTS | |
| 9 | NSPStartup | |
| 10 | WSHAddressToString | |
| 11 | WSHEnumProtocols | |
| 12 | WSHGetBroadcastSockaddr | |
| 13 | WSHGetProviderGuid | |
| 14 | WSHGetSockaddrType | |
| 15 | WSHGetSocketInformation | |
| 16 | WSHGetWSAProtocolInfo | |
| 17 | WSHGetWildcardSockaddr | |
| 18 | WSHGetWinsockMapping | |
| 19 | WSHIoctl | |
| 20 | WSHJoinLeaf | |
| 21 | WSHNotify | |
| 22 | WSHOpenSocket | |
| 23 | WSHOpenSocket2 | |
| 24 | WSHSetSocketInformation | |
| 25 | WSHStringToAddress |
lib/libc/mingw/lib-common/wslapi.def created+9| ... | ... | @@ -0,0 +1,9 @@ |
| 1 | LIBRARY "wslapi.dll" | |
| 2 | EXPORTS | |
| 3 | WslConfigureDistribution | |
| 4 | WslGetDistributionConfiguration | |
| 5 | WslIsDistributionRegistered | |
| 6 | WslLaunch | |
| 7 | WslLaunchInteractive | |
| 8 | WslRegisterDistribution | |
| 9 | WslUnregisterDistribution |
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 | ; | |
| 6 | LIBRARY "XAudio2_9.dll" | |
| 7 | EXPORTS | |
| 8 | XAudio2Create | |
| 9 | CreateAudioReverb | |
| 10 | CreateAudioVolumeMeter | |
| 11 | CreateFX | |
| 12 | X3DAudioCalculate | |
| 13 | X3DAudioInitialize | |
| 14 | CreateAudioReverbV2_8 | |
| 15 | XAudio2CreateV2_9 | |
| 16 | XAudio2CreateWithVersionInfo | |
| 17 | XAudio2CreateWithSharedContexts |
lib/libc/mingw/lib-common/xinputuap.def created+11| ... | ... | @@ -0,0 +1,11 @@ |
| 1 | LIBRARY xinputuap | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | XInputEnable | |
| 6 | XInputGetAudioDeviceIds | |
| 7 | XInputGetBatteryInformation | |
| 8 | XInputGetCapabilities | |
| 9 | XInputGetKeystroke | |
| 10 | XInputGetState | |
| 11 | XInputSetState |
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 | ; | |
| 6 | LIBRARY "XmlLite.dll" | |
| 7 | EXPORTS | |
| 8 | CreateXmlReader | |
| 9 | CreateXmlReaderInputWithEncodingCodePage | |
| 10 | CreateXmlReaderInputWithEncodingName | |
| 11 | CreateXmlWriter | |
| 12 | CreateXmlWriterOutputWithEncodingCodePage | |
| 13 | CreateXmlWriterOutputWithEncodingName |
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 | ; | |
| 6 | LIBRARY "adsldpc.dll" | |
| 7 | EXPORTS | |
| 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) | |
| 12 | ADSIPrint@0 | |
| 13 | ADsAbandonSearch@4 | |
| 14 | ADsCloseSearchHandle@4 | |
| 15 | ADsCreateAttributeDefinition@8 | |
| 16 | ADsCreateClassDefinition@8 | |
| 17 | ADsCreateDSObject@20 | |
| 18 | ADsCreateDSObjectExt@28 | |
| 19 | ADsDeleteAttributeDefinition@4 | |
| 20 | ADsDeleteClassDefinition@4 | |
| 21 | ADsDeleteDSObject@12 | |
| 22 | ADsEnumAttributes@44 | |
| 23 | ADsEnumClasses@16 | |
| 24 | ADsExecuteSearch@124 | |
| 25 | ADsFreeColumn@4 | |
| 26 | ADsGetColumn@20 | |
| 27 | ADsGetFirstRow@8 | |
| 28 | ADsGetNextColumnName@8 | |
| 29 | ADsGetNextRow@8 | |
| 30 | ADsGetObjectAttributes@52 | |
| 31 | ADsGetPreviousRow@8 | |
| 32 | ADsHelperGetCurrentRowMessage@12 | |
| 33 | ADsObject@8 | |
| 34 | ADsSetObjectAttributes@48 | |
| 35 | ADsSetSearchPreference@28 | |
| 36 | ADsWriteAttributeDefinition@8 | |
| 37 | ADsWriteClassDefinition@8 | |
| 38 | AdsTypeToLdapTypeCopyConstruct@20 | |
| 39 | AdsTypeToLdapTypeCopyDNWithBinary@12 | |
| 40 | AdsTypeToLdapTypeCopyDNWithString@12 | |
| 41 | AdsTypeToLdapTypeCopyGeneralizedTime@12 | |
| 42 | AdsTypeToLdapTypeCopyTime@12 | |
| 43 | BerBvFree@4 | |
| 44 | BerEncodingQuotaControl@12 | |
| 45 | BuildADsParentPath@12 | |
| 46 | BuildADsParentPathFromObjectInfo2@12 | |
| 47 | BuildADsParentPathFromObjectInfo@20 | |
| 48 | BuildADsPathFromLDAPPath2@24 | |
| 49 | BuildADsPathFromLDAPPath@12 | |
| 50 | BuildADsPathFromParent@12 | |
| 51 | BuildLDAPPathFromADsPath2@16 | |
| 52 | BuildLDAPPathFromADsPath@8 | |
| 53 | ChangeSeparator@4 | |
| 54 | Component@8 | |
| 55 | ConvertSidToString@12 | |
| 56 | ConvertSidToU2Trustee@20 | |
| 57 | ConvertU2TrusteeToSid@20 | |
| 58 | FindEntryInSearchTable@12 | |
| 59 | FindSearchTableIndex@12 | |
| 60 | FreeObjectInfo@4 | |
| 61 | GetDefaultServer@28 | |
| 62 | GetDisplayName@8 | |
| 63 | GetDomainDNSNameForDomain@28 | |
| 64 | GetLDAPTypeName@8 | |
| 65 | ; public: long __thiscall CLexer::GetNextToken(unsigned short *,unsigned long *) | |
| 66 | ?GetNextToken@CLexer@@QAEJPAGPAK@Z ; has WINAPI (@8) | |
| 67 | GetServerAndPort@12 | |
| 68 | GetSyntaxOfAttribute@8 | |
| 69 | InitObjectInfo@8 | |
| 70 | ; public: long __thiscall CLexer::InitializePath(unsigned short *) | |
| 71 | ?InitializePath@CLexer@@QAEJPAG@Z ; has WINAPI (@4) | |
| 72 | IsGCNamespace@4 | |
| 73 | LdapAddExtS@20 | |
| 74 | LdapAddS@12 | |
| 75 | LdapAttributeFree@4 | |
| 76 | LdapCacheAddRef@4 | |
| 77 | LdapCloseObject@4 | |
| 78 | LdapCompareExt@28 | |
| 79 | LdapControlFree@4 | |
| 80 | LdapControlsFree@4 | |
| 81 | LdapCountEntries@8 | |
| 82 | LdapCrackUserDNtoNTLMUser2@12 | |
| 83 | LdapCreatePageControl@20 | |
| 84 | LdapDeleteExtS@16 | |
| 85 | LdapDeleteS@8 | |
| 86 | LdapFirstAttribute@16 | |
| 87 | LdapFirstEntry@12 | |
| 88 | LdapGetDn@12 | |
| 89 | LdapGetNextPageS@24 | |
| 90 | LdapGetSchemaObjectCount@20 | |
| 91 | LdapGetSubSchemaSubEntryPath@16 | |
| 92 | LdapGetSyntaxIdOfAttribute@4 | |
| 93 | LdapGetSyntaxOfAttributeOnServer@24 | |
| 94 | LdapGetValues@20 | |
| 95 | LdapGetValuesLen@20 | |
| 96 | LdapInitializeSearchPreferences@8 | |
| 97 | LdapIsClassNameValidOnServer@20 | |
| 98 | LdapMakeSchemaCacheObsolete@12 | |
| 99 | LdapMemFree@4 | |
| 100 | LdapModDnS@16 | |
| 101 | LdapModifyExtS@20 | |
| 102 | LdapModifyS@12 | |
| 103 | LdapMsgFree@4 | |
| 104 | LdapNextAttribute@16 | |
| 105 | LdapNextEntry@12 | |
| 106 | LdapOpenObject2@24 | |
| 107 | LdapOpenObject@20 | |
| 108 | LdapParsePageControl@16 | |
| 109 | LdapParseResult@32 | |
| 110 | LdapReadAttribute2@36 | |
| 111 | LdapReadAttribute@28 | |
| 112 | LdapReadAttributeFast@20 | |
| 113 | LdapRenameExtS@28 | |
| 114 | LdapResult@24 | |
| 115 | LdapSearch@28 | |
| 116 | LdapSearchAbandonPage@8 | |
| 117 | LdapSearchExtS@44 | |
| 118 | LdapSearchInitPage@48 | |
| 119 | LdapSearchS@28 | |
| 120 | LdapSearchST@32 | |
| 121 | LdapTypeBinaryToString@12 | |
| 122 | LdapTypeCopyConstruct@16 | |
| 123 | LdapTypeFreeLdapModList@4 | |
| 124 | LdapTypeFreeLdapModObject@4 | |
| 125 | LdapTypeFreeLdapObjects@4 | |
| 126 | LdapTypeToAdsTypeDNWithBinary@8 | |
| 127 | LdapTypeToAdsTypeDNWithString@8 | |
| 128 | LdapTypeToAdsTypeGeneralizedTime@8 | |
| 129 | LdapTypeToAdsTypeUTCTime@8 | |
| 130 | LdapValueFree@4 | |
| 131 | LdapValueFreeLen@4 | |
| 132 | LdapcKeepHandleAround@4 | |
| 133 | LdapcSetStickyServer@8 | |
| 134 | PathName@8 | |
| 135 | ReadPagingSupportedAttr@16 | |
| 136 | ReadSecurityDescriptorControlType@16 | |
| 137 | ReadServerSupportsIsADAMControl@16 | |
| 138 | ReadServerSupportsIsADControl@16 | |
| 139 | SchemaAddRef@4 | |
| 140 | SchemaClose@4 | |
| 141 | SchemaGetClassInfo@12 | |
| 142 | SchemaGetClassInfoByIndex@12 | |
| 143 | SchemaGetObjectCount@12 | |
| 144 | SchemaGetPropertyInfo@12 | |
| 145 | SchemaGetPropertyInfoByIndex@12 | |
| 146 | SchemaGetStringsFromStringTable@16 | |
| 147 | SchemaGetSyntaxOfAttribute@12 | |
| 148 | SchemaIsClassAContainer@12 | |
| 149 | SchemaOpen@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) | |
| 156 | SortAndRemoveDuplicateOIDs@8 | |
| 157 | UnMarshallLDAPToLDAPSynID@20 | |
| 158 | intcmp@0 | |
| 159 | ADSIAbandonSearch@8 | |
| 160 | ADSICloseDSObject@4 | |
| 161 | ADSICloseSearchHandle@8 | |
| 162 | ADSICreateDSObject@16 | |
| 163 | ADSIDeleteDSObject@8 | |
| 164 | ADSIExecuteSearch@20 | |
| 165 | ADSIFreeColumn@8 | |
| 166 | ADSIGetColumn@16 | |
| 167 | ADSIGetFirstRow@8 | |
| 168 | ADSIGetNextColumnName@12 | |
| 169 | ADSIGetNextRow@8 | |
| 170 | ADSIGetObjectAttributes@20 | |
| 171 | ADSIGetPreviousRow@8 | |
| 172 | ADSIModifyRdn@12 | |
| 173 | ADSIOpenDSObject@20 | |
| 174 | ADSISetObjectAttributes@16 | |
| 175 | ADSISetSearchPreference@12 | |
| 176 | ADsDecodeBinaryData@12 | |
| 177 | ADsEncodeBinaryData@12 | |
| 178 | ADsGetLastError@20 | |
| 179 | ADsSetLastError@12 | |
| 180 | AdsTypeFreeAdsObjects@8 | |
| 181 | AllocADsMem@4 | |
| 182 | AllocADsStr@4 | |
| 183 | FreeADsMem@4 | |
| 184 | FreeADsStr@4 | |
| 185 | LdapTypeToAdsTypeCopyConstruct@28 | |
| 186 | MapADSTypeToLDAPType@4 | |
| 187 | MapLDAPTypeToADSType@4 | |
| 188 | ReallocADsMem@12 | |
| 189 | ReallocADsStr@8 |
lib/libc/mingw/lib32/advapi32.def+56-2| ... | ... | @@ -67,6 +67,19 @@ AuditSetSecurity@8 |
| 67 | 67 | AuditSetSystemPolicy@8 |
| 68 | 68 | BackupEventLogA@8 |
| 69 | 69 | BackupEventLogW@8 |
| 70 | BaseRegCloseKey@4 | |
| 71 | BaseRegCreateKey@32 | |
| 72 | BaseRegDeleteKeyEx@16 | |
| 73 | BaseRegDeleteValue@8 | |
| 74 | BaseRegFlushKey@4 | |
| 75 | BaseRegGetVersion@8 | |
| 76 | BaseRegLoadKey@12 | |
| 77 | BaseRegOpenKey@20 | |
| 78 | BaseRegRestoreKey@12 | |
| 79 | BaseRegSaveKeyEx@16 | |
| 80 | BaseRegSetKeySecurity@12 | |
| 81 | BaseRegSetValue@20 | |
| 82 | BaseRegUnLoadKey@8 | |
| 70 | 83 | BuildExplicitAccessWithNameA@20 |
| 71 | 84 | BuildExplicitAccessWithNameW@20 |
| 72 | 85 | BuildImpersonateExplicitAccessWithNameA@24 |
| ... | ... | @@ -88,6 +101,7 @@ ChangeServiceConfig2A@12 |
| 88 | 101 | ChangeServiceConfig2W@12 |
| 89 | 102 | ChangeServiceConfigA@44 |
| 90 | 103 | ChangeServiceConfigW@44 |
| 104 | CheckForHiberboot@8 | |
| 91 | 105 | CheckTokenMembership@12 |
| 92 | 106 | ClearEventLogA@8 |
| 93 | 107 | ClearEventLogW@8 |
| ... | ... | @@ -106,6 +120,7 @@ ControlTraceA@20 |
| 106 | 120 | ControlTraceW@20 |
| 107 | 121 | ConvertAccessToSecurityDescriptorA@20 |
| 108 | 122 | ConvertAccessToSecurityDescriptorW@20 |
| 123 | ConvertSDToStringSDDomainW@28 | |
| 109 | 124 | ConvertSDToStringSDRootDomainA@24 |
| 110 | 125 | ConvertSDToStringSDRootDomainW@24 |
| 111 | 126 | ConvertSecurityDescriptorToAccessA@28 |
| ... | ... | @@ -222,6 +237,7 @@ CryptSignHashA@24 |
| 222 | 237 | CryptSignHashW@24 |
| 223 | 238 | CryptVerifySignatureA@24 |
| 224 | 239 | CryptVerifySignatureW@24 |
| 240 | CveEventWrite@8 | |
| 225 | 241 | DecryptFileA@8 |
| 226 | 242 | DecryptFileW@8 |
| 227 | 243 | DeleteAce@8 |
| ... | ... | @@ -261,6 +277,7 @@ EncryptedFileKeyInfo@12 |
| 261 | 277 | EncryptionDisable@8 |
| 262 | 278 | EnumDependentServicesA@24 |
| 263 | 279 | EnumDependentServicesW@24 |
| 280 | EnumDynamicTimeZoneInformation@8 | |
| 264 | 281 | EnumServiceGroupW@36 |
| 265 | 282 | EnumServicesStatusA@32 |
| 266 | 283 | EnumServicesStatusExA@40 |
| ... | ... | @@ -278,6 +295,7 @@ EventActivityIdControl@8 |
| 278 | 295 | EventEnabled@12 |
| 279 | 296 | EventProviderEnabled@20 |
| 280 | 297 | EventRegister@16 |
| 298 | EventSetInformation@20 | |
| 281 | 299 | EventUnregister@8 |
| 282 | 300 | EventWrite@20 |
| 283 | 301 | EventWriteEndScenario@20 |
| ... | ... | @@ -304,6 +322,7 @@ GetAuditedPermissionsFromAclA@16 |
| 304 | 322 | GetAuditedPermissionsFromAclW@16 |
| 305 | 323 | GetCurrentHwProfileA@4 |
| 306 | 324 | GetCurrentHwProfileW@4 |
| 325 | GetDynamicTimeZoneInformationEffectiveYears@12 | |
| 307 | 326 | GetEffectiveRightsFromAclA@12 |
| 308 | 327 | GetEffectiveRightsFromAclW@12 |
| 309 | 328 | GetEncryptedFileMetadata@12 |
| ... | ... | @@ -353,6 +372,7 @@ GetSidIdentifierAuthority@4 |
| 353 | 372 | GetSidLengthRequired@4 |
| 354 | 373 | GetSidSubAuthority@8 |
| 355 | 374 | GetSidSubAuthorityCount@4 |
| 375 | GetStringConditionFromBinary@16 | |
| 356 | 376 | GetSiteDirectoryA@12 |
| 357 | 377 | GetSiteDirectoryW@12 |
| 358 | 378 | GetSiteNameFromSid@8 |
| ... | ... | @@ -408,7 +428,7 @@ IsWellKnownSid@8 |
| 408 | 428 | LockServiceDatabase@4 |
| 409 | 429 | LogonUserA@24 |
| 410 | 430 | LogonUserExA@40 |
| 411 | LogonUserExExW@44 | |
| 431 | LogonUserExExW@44 | |
| 412 | 432 | LogonUserExW@40 |
| 413 | 433 | LogonUserW@24 |
| 414 | 434 | LookupAccountNameA@28 |
| ... | ... | @@ -427,12 +447,15 @@ LsaAddAccountRights@16 |
| 427 | 447 | LsaAddPrivilegesToAccount@8 |
| 428 | 448 | LsaClearAuditLog@4 |
| 429 | 449 | LsaClose@4 |
| 450 | LsaConfigureAutoLogonCredentials@0 | |
| 430 | 451 | LsaCreateAccount@16 |
| 431 | 452 | LsaCreateSecret@16 |
| 432 | 453 | LsaCreateTrustedDomain@16 |
| 433 | 454 | LsaCreateTrustedDomainEx@20 |
| 434 | 455 | LsaDelete@4 |
| 435 | 456 | LsaDeleteTrustedDomain@8 |
| 457 | LsaDisableUserArso@4 | |
| 458 | LsaEnableUserArso@4 | |
| 436 | 459 | LsaEnumerateAccountRights@16 |
| 437 | 460 | LsaEnumerateAccounts@20 |
| 438 | 461 | LsaEnumerateAccountsWithUserRight@16 |
| ... | ... | @@ -441,6 +464,8 @@ LsaEnumeratePrivilegesOfAccount@8 |
| 441 | 464 | LsaEnumerateTrustedDomains@20 |
| 442 | 465 | LsaEnumerateTrustedDomainsEx@20 |
| 443 | 466 | LsaFreeMemory@4 |
| 467 | LsaGetAppliedCAPIDs@12 | |
| 468 | LsaGetDeviceRegistrationInfo@4 | |
| 444 | 469 | LsaGetQuotasForAccount@8 |
| 445 | 470 | LsaGetRemoteUserName@12 |
| 446 | 471 | LsaGetSystemAccessAccount@8 |
| ... | ... | @@ -449,11 +474,15 @@ LsaICLookupNames@40 |
| 449 | 474 | LsaICLookupNamesWithCreds@48 |
| 450 | 475 | LsaICLookupSids@36 |
| 451 | 476 | LsaICLookupSidsWithCreds@48 |
| 477 | LsaInvokeTrustScanner@16 | |
| 478 | LsaIsUserArsoAllowed@4 | |
| 479 | LsaIsUserArsoEnabled@8 | |
| 452 | 480 | LsaLookupNames2@24 |
| 453 | 481 | LsaLookupNames@20 |
| 454 | 482 | LsaLookupPrivilegeDisplayName@16 |
| 455 | 483 | LsaLookupPrivilegeName@12 |
| 456 | 484 | LsaLookupPrivilegeValue@12 |
| 485 | LsaLookupSids2@24 | |
| 457 | 486 | LsaLookupSids@20 |
| 458 | 487 | LsaManageSidNameMapping@12 |
| 459 | 488 | LsaNtStatusToWinError@4 |
| ... | ... | @@ -463,7 +492,10 @@ LsaOpenPolicySce@16 |
| 463 | 492 | LsaOpenSecret@16 |
| 464 | 493 | LsaOpenTrustedDomain@16 |
| 465 | 494 | LsaOpenTrustedDomainByName@16 |
| 495 | LsaProfileDeleted@4 | |
| 496 | LsaQueryCAPs@16 | |
| 466 | 497 | LsaQueryDomainInformationPolicy@12 |
| 498 | LsaQueryForestTrustInformation2@16 | |
| 467 | 499 | LsaQueryForestTrustInformation@12 |
| 468 | 500 | LsaQueryInfoTrustedDomain@12 |
| 469 | 501 | LsaQueryInformationPolicy@12 |
| ... | ... | @@ -474,7 +506,9 @@ LsaQueryTrustedDomainInfoByName@16 |
| 474 | 506 | LsaRemoveAccountRights@20 |
| 475 | 507 | LsaRemovePrivilegesFromAccount@12 |
| 476 | 508 | LsaRetrievePrivateData@12 |
| 509 | LsaSetCAPs@12 | |
| 477 | 510 | LsaSetDomainInformationPolicy@12 |
| 511 | LsaSetForestTrustInformation2@24 | |
| 478 | 512 | LsaSetForestTrustInformation@20 |
| 479 | 513 | LsaSetInformationPolicy@12 |
| 480 | 514 | LsaSetInformationTrustedDomain@12 |
| ... | ... | @@ -485,6 +519,7 @@ LsaSetSystemAccessAccount@8 |
| 485 | 519 | LsaSetTrustedDomainInfoByName@16 |
| 486 | 520 | LsaSetTrustedDomainInformation@16 |
| 487 | 521 | LsaStorePrivateData@12 |
| 522 | LsaValidateProcUniqueLuid@4 | |
| 488 | 523 | MD4Final@4 |
| 489 | 524 | MD4Init@4 |
| 490 | 525 | MD4Update@12 |
| ... | ... | @@ -502,6 +537,7 @@ NotifyChangeEventLog@8 |
| 502 | 537 | NotifyServiceStatusChange@12 |
| 503 | 538 | NotifyServiceStatusChangeA@12 |
| 504 | 539 | NotifyServiceStatusChangeW@12 |
| 540 | NpGetUserName@12 | |
| 505 | 541 | ObjectCloseAuditAlarmA@12 |
| 506 | 542 | ObjectCloseAuditAlarmW@12 |
| 507 | 543 | ObjectDeleteAuditAlarmA@12 |
| ... | ... | @@ -525,6 +561,8 @@ OpenThreadToken@16 |
| 525 | 561 | OpenThreadWaitChainSession@8 |
| 526 | 562 | OpenTraceA@4 |
| 527 | 563 | OpenTraceW@4 |
| 564 | OperationEnd@4 | |
| 565 | OperationStart@4 | |
| 528 | 566 | PerfAddCounters@12 |
| 529 | 567 | PerfCloseQueryHandle@4 |
| 530 | 568 | PerfCreateInstance@16 |
| ... | ... | @@ -541,6 +579,12 @@ PerfQueryCounterData@16 |
| 541 | 579 | PerfQueryCounterInfo@16 |
| 542 | 580 | PerfQueryCounterSetRegistrationInfo@28 |
| 543 | 581 | PerfQueryInstance@16 |
| 582 | PerfRegCloseKey@4 | |
| 583 | PerfRegEnumKey@24 | |
| 584 | PerfRegEnumValue@32 | |
| 585 | PerfRegQueryInfoKey@44 | |
| 586 | PerfRegQueryValue@28 | |
| 587 | PerfRegSetValue@24 | |
| 544 | 588 | PerfSetCounterRefValue@16 |
| 545 | 589 | PerfSetCounterSetInfo@12 |
| 546 | 590 | PerfSetULongCounterValue@16 |
| ... | ... | @@ -562,12 +606,14 @@ QueryServiceConfig2A@20 |
| 562 | 606 | QueryServiceConfig2W@20 |
| 563 | 607 | QueryServiceConfigA@16 |
| 564 | 608 | QueryServiceConfigW@16 |
| 609 | QueryServiceDynamicInformation@12 | |
| 565 | 610 | QueryServiceLockStatusA@16 |
| 566 | 611 | QueryServiceLockStatusW@16 |
| 567 | 612 | QueryServiceObjectSecurity@20 |
| 568 | 613 | QueryServiceStatus@8 |
| 569 | 614 | QueryServiceStatusEx@20 |
| 570 | 615 | QueryTraceA@16 |
| 616 | QueryTraceProcessingHandle@32 | |
| 571 | 617 | QueryTraceW@16 |
| 572 | 618 | QueryUsersOnEncryptedFile@8 |
| 573 | 619 | QueryWindows31FilesMigration@4 |
| ... | ... | @@ -595,7 +641,6 @@ RegDeleteKeyTransactedA@24 |
| 595 | 641 | RegDeleteKeyTransactedW@24 |
| 596 | 642 | RegDeleteKeyValueA@12 |
| 597 | 643 | RegDeleteKeyValueW@12 |
| 598 | RegDeleteKeyW@8 | |
| 599 | 644 | RegDeleteTreeA@8 |
| 600 | 645 | RegDeleteTreeW@8 |
| 601 | 646 | RegDeleteValueA@8 |
| ... | ... | @@ -667,11 +712,18 @@ RegisterServiceCtrlHandlerW@8 |
| 667 | 712 | RegisterTraceGuidsA@32 |
| 668 | 713 | RegisterTraceGuidsW@32 |
| 669 | 714 | RegisterWaitChainCOMCallback@8 |
| 715 | RemoteRegEnumKeyWrapper@20 | |
| 716 | RemoteRegEnumValueWrapper@28 | |
| 717 | RemoteRegQueryInfoKeyWrapper@40 | |
| 718 | RemoteRegQueryMultipleValues2Wrapper@24 | |
| 719 | RemoteRegQueryMultipleValuesWrapper@20 | |
| 720 | RemoteRegQueryValueWrapper@24 | |
| 670 | 721 | RemoveTraceCallback@4 |
| 671 | 722 | RemoveUsersFromEncryptedFile@8 |
| 672 | 723 | ReportEventA@36 |
| 673 | 724 | ReportEventW@36 |
| 674 | 725 | RevertToSelf@0 |
| 726 | SafeBaseRegGetKeySecurity@16 | |
| 675 | 727 | SaferCloseLevel@4 |
| 676 | 728 | SaferComputeTokenFromLevel@20 |
| 677 | 729 | SaferCreateLevel@20 |
| ... | ... | @@ -776,6 +828,7 @@ TraceEvent@12 |
| 776 | 828 | TraceEventInstance@20 |
| 777 | 829 | TraceMessage |
| 778 | 830 | TraceMessageVa@24 |
| 831 | TraceQueryInformation@24 | |
| 779 | 832 | TraceSetInformation@20 |
| 780 | 833 | TreeResetNamedSecurityInfoA@44 |
| 781 | 834 | TreeResetNamedSecurityInfoW@44 |
| ... | ... | @@ -791,6 +844,7 @@ UpdateTraceA@16 |
| 791 | 844 | UpdateTraceW@16 |
| 792 | 845 | UsePinForEncryptedFilesA@12 |
| 793 | 846 | UsePinForEncryptedFilesW@12 |
| 847 | WaitServiceState@16 | |
| 794 | 848 | WmiCloseBlock@4 |
| 795 | 849 | WmiDevInstToInstanceNameA@16 |
| 796 | 850 | WmiDevInstToInstanceNameW@16 |
lib/libc/mingw/lib32/apcups.def created+8| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | LIBRARY apcups.dll | |
| 2 | EXPORTS | |
| 3 | UPSCancelWait@0 | |
| 4 | UPSGetState@0 | |
| 5 | UPSInit@0 | |
| 6 | UPSStop@0 | |
| 7 | UPSTurnOff@4 | |
| 8 | UPSWaitForStateChange@8 |
lib/libc/mingw/lib32/api-ms-win-appmodel-runtime-l1-1-1.def deleted-19| ... | ... | @@ -1,19 +0,0 @@ |
| 1 | LIBRARY api-ms-win-appmodel-runtime-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | FormatApplicationUserModelId@16 | |
| 6 | GetCurrentApplicationUserModelId@8 | |
| 7 | GetCurrentPackageFamilyName@8 | |
| 8 | GetCurrentPackageId@8 | |
| 9 | PackageFamilyNameFromFullName@12 | |
| 10 | PackageFamilyNameFromId@12 | |
| 11 | PackageFullNameFromId@12 | |
| 12 | PackageIdFromFullName@16 | |
| 13 | PackageNameAndPublisherIdFromFamilyName@20 | |
| 14 | ParseApplicationUserModelId@20 | |
| 15 | VerifyApplicationUserModelId@4 | |
| 16 | VerifyPackageFamilyName@4 | |
| 17 | VerifyPackageFullName@4 | |
| 18 | VerifyPackageId@4 | |
| 19 | VerifyPackageRelativeApplicationId@4 |
lib/libc/mingw/lib32/api-ms-win-core-comm-l1-1-1.def deleted-23| ... | ... | @@ -1,23 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-comm-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ClearCommBreak@4 | |
| 6 | ClearCommError@12 | |
| 7 | EscapeCommFunction@8 | |
| 8 | GetCommConfig@12 | |
| 9 | GetCommMask@8 | |
| 10 | GetCommModemStatus@8 | |
| 11 | GetCommProperties@8 | |
| 12 | GetCommState@8 | |
| 13 | GetCommTimeouts@8 | |
| 14 | OpenCommPort@ | |
| 15 | PurgeComm@8 | |
| 16 | SetCommBreak@4 | |
| 17 | SetCommConfig@12 | |
| 18 | SetCommMask@8 | |
| 19 | SetCommState@8 | |
| 20 | SetCommTimeouts@8 | |
| 21 | SetupComm@12 | |
| 22 | TransmitCommChar@8 | |
| 23 | WaitCommEvent@12 |
lib/libc/mingw/lib32/api-ms-win-core-comm-l1-1-2.def deleted-24| ... | ... | @@ -1,24 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-comm-l1-1-2 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ClearCommBreak@4 | |
| 6 | ClearCommError@12 | |
| 7 | EscapeCommFunction@8 | |
| 8 | GetCommConfig@12 | |
| 9 | GetCommMask@8 | |
| 10 | GetCommModemStatus@8 | |
| 11 | GetCommPorts@ | |
| 12 | GetCommProperties@8 | |
| 13 | GetCommState@8 | |
| 14 | GetCommTimeouts@8 | |
| 15 | OpenCommPort@ | |
| 16 | PurgeComm@8 | |
| 17 | SetCommBreak@4 | |
| 18 | SetCommConfig@12 | |
| 19 | SetCommMask@8 | |
| 20 | SetCommState@8 | |
| 21 | SetCommTimeouts@8 | |
| 22 | SetupComm@12 | |
| 23 | TransmitCommChar@8 | |
| 24 | WaitCommEvent@12 |
lib/libc/mingw/lib32/api-ms-win-core-errorhandling-l1-1-3.def deleted-17| ... | ... | @@ -1,17 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-errorhandling-l1-1-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AddVectoredExceptionHandler@8 | |
| 6 | FatalAppExitA@8 | |
| 7 | FatalAppExitW@8 | |
| 8 | GetLastError@0 | |
| 9 | GetThreadErrorMode@0 | |
| 10 | RaiseException@16 | |
| 11 | RaiseFailFastException@12 | |
| 12 | RemoveVectoredExceptionHandler@4 | |
| 13 | SetErrorMode@4 | |
| 14 | SetLastError@4 | |
| 15 | SetThreadErrorMode@8 | |
| 16 | SetUnhandledExceptionFilter@4 | |
| 17 | UnhandledExceptionFilter@4 |
lib/libc/mingw/lib32/api-ms-win-core-featurestaging-l1-1-0.def deleted-9| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-featurestaging-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetFeatureEnabledState@8 | |
| 6 | RecordFeatureError@8 | |
| 7 | RecordFeatureUsage@16 | |
| 8 | SubscribeFeatureStateChangeNotification@12 | |
| 9 | UnsubscribeFeatureStateChangeNotification@4 |
lib/libc/mingw/lib32/api-ms-win-core-featurestaging-l1-1-1.def deleted-10| ... | ... | @@ -1,10 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-featurestaging-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetFeatureEnabledState@8 | |
| 6 | GetFeatureVariant@16 | |
| 7 | RecordFeatureError@8 | |
| 8 | RecordFeatureUsage@16 | |
| 9 | SubscribeFeatureStateChangeNotification@12 | |
| 10 | UnsubscribeFeatureStateChangeNotification@4 |
lib/libc/mingw/lib32/api-ms-win-core-file-fromapp-l1-1-0.def deleted-15| ... | ... | @@ -1,15 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-file-fromapp-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CopyFileFromAppW@12 | |
| 6 | CreateDirectoryFromAppW@8 | |
| 7 | CreateFile2FromAppW@20 | |
| 8 | CreateFileFromAppW@28 | |
| 9 | DeleteFileFromAppW@4 | |
| 10 | FindFirstFileExFromAppW@24 | |
| 11 | GetFileAttributesExFromAppW@12 | |
| 12 | MoveFileFromAppW@8 | |
| 13 | RemoveDirectoryFromAppW@4 | |
| 14 | ReplaceFileFromAppW@24 | |
| 15 | SetFileAttributesFromAppW@8 |
lib/libc/mingw/lib32/api-ms-win-core-handle-l1-1-0.def deleted-9| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-handle-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CloseHandle@4 | |
| 6 | CompareObjectHandles@8 | |
| 7 | DuplicateHandle@28 | |
| 8 | GetHandleInformation@8 | |
| 9 | SetHandleInformation@12 |
lib/libc/mingw/lib32/api-ms-win-core-libraryloader-l2-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-libraryloader-l2-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | LoadPackagedLibrary@8 | |
| 6 | QueryOptionalDelayLoadedAPI@16 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-3.def deleted-35| ... | ... | @@ -1,35 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp@24 | |
| 6 | CreateFileMappingW@24 | |
| 7 | DiscardVirtualMemory@8 | |
| 8 | FlushViewOfFile@8 | |
| 9 | GetLargePageMinimum@0 | |
| 10 | GetProcessWorkingSetSizeEx@16 | |
| 11 | GetWriteWatch@24 | |
| 12 | MapViewOfFile@20 | |
| 13 | MapViewOfFileEx@24 | |
| 14 | MapViewOfFileFromApp@20 | |
| 15 | OfferVirtualMemory@12 | |
| 16 | OpenFileMappingFromApp@12 | |
| 17 | OpenFileMappingW@12 | |
| 18 | ReadProcessMemory@20 | |
| 19 | ReclaimVirtualMemory@8 | |
| 20 | ResetWriteWatch@8 | |
| 21 | SetProcessValidCallTargets@20 | |
| 22 | SetProcessWorkingSetSizeEx@16 | |
| 23 | UnmapViewOfFile@4 | |
| 24 | UnmapViewOfFileEx@8 | |
| 25 | VirtualAlloc@16 | |
| 26 | VirtualAllocFromApp@16 | |
| 27 | VirtualFree@12 | |
| 28 | VirtualFreeEx@16 | |
| 29 | VirtualLock@8 | |
| 30 | VirtualProtect@16 | |
| 31 | VirtualProtectFromApp@16 | |
| 32 | VirtualQuery@12 | |
| 33 | VirtualQueryEx@16 | |
| 34 | VirtualUnlock@8 | |
| 35 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-4.def deleted-35| ... | ... | @@ -1,35 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-4 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp@24 | |
| 6 | CreateFileMappingW@24 | |
| 7 | DiscardVirtualMemory@8 | |
| 8 | FlushViewOfFile@8 | |
| 9 | GetLargePageMinimum@0 | |
| 10 | GetProcessWorkingSetSizeEx@16 | |
| 11 | GetWriteWatch@24 | |
| 12 | MapViewOfFile@20 | |
| 13 | MapViewOfFileEx@24 | |
| 14 | MapViewOfFileFromApp@20 | |
| 15 | OfferVirtualMemory@12 | |
| 16 | OpenFileMappingFromApp@12 | |
| 17 | OpenFileMappingW@12 | |
| 18 | ReadProcessMemory@20 | |
| 19 | ReclaimVirtualMemory@8 | |
| 20 | ResetWriteWatch@8 | |
| 21 | SetProcessValidCallTargets@20 | |
| 22 | SetProcessWorkingSetSizeEx@16 | |
| 23 | UnmapViewOfFile@4 | |
| 24 | UnmapViewOfFileEx@8 | |
| 25 | VirtualAlloc@16 | |
| 26 | VirtualAllocFromApp@16 | |
| 27 | VirtualFree@12 | |
| 28 | VirtualFreeEx@16 | |
| 29 | VirtualLock@8 | |
| 30 | VirtualProtect@16 | |
| 31 | VirtualProtectFromApp@16 | |
| 32 | VirtualQuery@12 | |
| 33 | VirtualQueryEx@16 | |
| 34 | VirtualUnlock@8 | |
| 35 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-5.def deleted-37| ... | ... | @@ -1,37 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-5 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp@24 | |
| 6 | CreateFileMappingW@24 | |
| 7 | DiscardVirtualMemory@8 | |
| 8 | FlushViewOfFile@8 | |
| 9 | GetLargePageMinimum@0 | |
| 10 | GetProcessWorkingSetSizeEx@16 | |
| 11 | GetWriteWatch@24 | |
| 12 | MapViewOfFile@20 | |
| 13 | MapViewOfFileEx@24 | |
| 14 | MapViewOfFileFromApp@20 | |
| 15 | OfferVirtualMemory@12 | |
| 16 | OpenFileMappingFromApp@12 | |
| 17 | OpenFileMappingW@12 | |
| 18 | ReadProcessMemory@20 | |
| 19 | ReclaimVirtualMemory@8 | |
| 20 | ResetWriteWatch@8 | |
| 21 | SetProcessValidCallTargets | |
| 22 | SetProcessWorkingSetSizeEx@16 | |
| 23 | UnmapViewOfFile@4 | |
| 24 | UnmapViewOfFile2@ | |
| 25 | UnmapViewOfFileEx@8 | |
| 26 | VirtualAlloc@16 | |
| 27 | VirtualAllocFromApp@16 | |
| 28 | VirtualFree@12 | |
| 29 | VirtualFreeEx@16 | |
| 30 | VirtualLock@8 | |
| 31 | VirtualProtect@16 | |
| 32 | VirtualProtectFromApp@16 | |
| 33 | VirtualQuery@12 | |
| 34 | VirtualQueryEx@16 | |
| 35 | VirtualUnlock@8 | |
| 36 | VirtualUnlockEx@12 | |
| 37 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-6.def deleted-39| ... | ... | @@ -1,39 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-6 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp@24 | |
| 6 | CreateFileMappingW@24 | |
| 7 | DiscardVirtualMemory@8 | |
| 8 | FlushViewOfFile@8 | |
| 9 | GetLargePageMinimum@0 | |
| 10 | GetProcessWorkingSetSizeEx@16 | |
| 11 | GetWriteWatch@24 | |
| 12 | MapViewOfFile@20 | |
| 13 | MapViewOfFile3FromApp@40 | |
| 14 | MapViewOfFileEx@24 | |
| 15 | MapViewOfFileFromApp@20 | |
| 16 | OfferVirtualMemory@12 | |
| 17 | OpenFileMappingFromApp@12 | |
| 18 | OpenFileMappingW@12 | |
| 19 | ReadProcessMemory@20 | |
| 20 | ReclaimVirtualMemory@8 | |
| 21 | ResetWriteWatch@8 | |
| 22 | SetProcessValidCallTargets@20 | |
| 23 | SetProcessWorkingSetSizeEx@16 | |
| 24 | UnmapViewOfFile@4 | |
| 25 | UnmapViewOfFile2@12 | |
| 26 | UnmapViewOfFileEx@8 | |
| 27 | VirtualAlloc@16 | |
| 28 | VirtualAlloc2FromApp@28 | |
| 29 | VirtualAllocFromApp@16 | |
| 30 | VirtualFree@12 | |
| 31 | VirtualFreeEx@16 | |
| 32 | VirtualLock@8 | |
| 33 | VirtualProtect@16 | |
| 34 | VirtualProtectFromApp@16 | |
| 35 | VirtualQuery@12 | |
| 36 | VirtualQueryEx@16 | |
| 37 | VirtualUnlock@8 | |
| 38 | VirtualUnlockEx@12 | |
| 39 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-memory-l1-1-7.def deleted-40| ... | ... | @@ -1,40 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-memory-l1-1-7 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateFileMappingFromApp@24 | |
| 6 | CreateFileMappingW@24 | |
| 7 | DiscardVirtualMemory@8 | |
| 8 | FlushViewOfFile@8 | |
| 9 | GetLargePageMinimum@0 | |
| 10 | GetProcessWorkingSetSizeEx@16 | |
| 11 | GetWriteWatch@24 | |
| 12 | MapViewOfFile@20 | |
| 13 | MapViewOfFile3FromApp@40 | |
| 14 | MapViewOfFileEx@24 | |
| 15 | MapViewOfFileFromApp@20 | |
| 16 | OfferVirtualMemory@12 | |
| 17 | OpenFileMappingFromApp@12 | |
| 18 | OpenFileMappingW@12 | |
| 19 | ReadProcessMemory@20 | |
| 20 | ReclaimVirtualMemory@8 | |
| 21 | ResetWriteWatch@8 | |
| 22 | SetProcessValidCallTargets@20 | |
| 23 | SetProcessValidCallTargetsForMappedView@32 | |
| 24 | SetProcessWorkingSetSizeEx@16 | |
| 25 | UnmapViewOfFile@4 | |
| 26 | UnmapViewOfFile2@12 | |
| 27 | UnmapViewOfFileEx@8 | |
| 28 | VirtualAlloc@16 | |
| 29 | VirtualAlloc2FromApp@28 | |
| 30 | VirtualAllocFromApp@16 | |
| 31 | VirtualFree@12 | |
| 32 | VirtualFreeEx@16 | |
| 33 | VirtualLock@8 | |
| 34 | VirtualProtect@16 | |
| 35 | VirtualProtectFromApp@16 | |
| 36 | VirtualQuery@12 | |
| 37 | VirtualQueryEx@16 | |
| 38 | VirtualUnlock@8 | |
| 39 | VirtualUnlockEx@12 | |
| 40 | WriteProcessMemory@20 |
lib/libc/mingw/lib32/api-ms-win-core-path-l1-1-0.def deleted-26| ... | ... | @@ -1,26 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-path-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | PathAllocCanonicalize@12 | |
| 6 | PathAllocCombine@16 | |
| 7 | PathCchAddBackslash@8 | |
| 8 | PathCchAddBackslashEx@16 | |
| 9 | PathCchAddExtension@12 | |
| 10 | PathCchAppend@12 | |
| 11 | PathCchAppendEx@16 | |
| 12 | PathCchCanonicalize@12 | |
| 13 | PathCchCanonicalizeEx@16 | |
| 14 | PathCchCombine@16 | |
| 15 | PathCchCombineEx@20 | |
| 16 | PathCchFindExtension@12 | |
| 17 | PathCchIsRoot@4 | |
| 18 | PathCchRemoveBackslash@8 | |
| 19 | PathCchRemoveBackslashEx@16 | |
| 20 | PathCchRemoveExtension@8 | |
| 21 | PathCchRemoveFileSpec@8 | |
| 22 | PathCchRenameExtension@12 | |
| 23 | PathCchSkipRoot@8 | |
| 24 | PathCchStripPrefix@8 | |
| 25 | PathCchStripToRoot@8 | |
| 26 | PathIsUNCEx@8 |
lib/libc/mingw/lib32/api-ms-win-core-psm-appnotify-l1-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-psm-appnotify-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RegisterAppStateChangeNotification@12 | |
| 6 | UnregisterAppStateChangeNotification@4 |
lib/libc/mingw/lib32/api-ms-win-core-realtime-l1-1-1.def deleted-9| ... | ... | @@ -1,9 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-realtime-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | QueryInterruptTime@4 | |
| 6 | QueryInterruptTimePrecise@4 | |
| 7 | QueryThreadCycleTime@8 | |
| 8 | QueryUnbiasedInterruptTime@4 | |
| 9 | QueryUnbiasedInterruptTimePrecise@4 |
lib/libc/mingw/lib32/api-ms-win-core-realtime-l1-1-2.def deleted-12| ... | ... | @@ -1,12 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-realtime-l1-1-2 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ConvertAuxiliaryCounterToPerformanceCounter@16 | |
| 6 | ConvertPerformanceCounterToAuxiliaryCounter@16 | |
| 7 | QueryAuxiliaryCounterFrequency@ | |
| 8 | QueryInterruptTime@4 | |
| 9 | QueryInterruptTimePrecise@4 | |
| 10 | QueryThreadCycleTime@8 | |
| 11 | QueryUnbiasedInterruptTime@4 | |
| 12 | QueryUnbiasedInterruptTimePrecise@4 |
lib/libc/mingw/lib32/api-ms-win-core-slapi-l1-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-slapi-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | SLQueryLicenseValueFromApp@20 | |
| 6 | SLQueryLicenseValueFromApp2@4 |
lib/libc/mingw/lib32/api-ms-win-core-synch-l1-2-0.def deleted-59| ... | ... | @@ -1,59 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-synch-l1-2-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AcquireSRWLockExclusive@4 | |
| 6 | AcquireSRWLockShared@4 | |
| 7 | CancelWaitableTimer@4 | |
| 8 | CreateEventA@16 | |
| 9 | CreateEventExA@16 | |
| 10 | CreateEventExW@16 | |
| 11 | CreateEventW@16 | |
| 12 | CreateMutexA@12 | |
| 13 | CreateMutexExA@16 | |
| 14 | CreateMutexExW@16 | |
| 15 | CreateMutexW@12 | |
| 16 | CreateSemaphoreExW@24 | |
| 17 | CreateWaitableTimerExW@16 | |
| 18 | DeleteCriticalSection@4 | |
| 19 | EnterCriticalSection@4 | |
| 20 | InitializeConditionVariable@4 | |
| 21 | InitializeCriticalSection@4 | |
| 22 | InitializeCriticalSectionAndSpinCount@8 | |
| 23 | InitializeCriticalSectionEx@12 | |
| 24 | InitializeSRWLock@4 | |
| 25 | InitOnceBeginInitialize@16 | |
| 26 | InitOnceComplete@12 | |
| 27 | InitOnceExecuteOnce@16 | |
| 28 | InitOnceInitialize@4 | |
| 29 | LeaveCriticalSection@4 | |
| 30 | OpenEventA@12 | |
| 31 | OpenEventW@12 | |
| 32 | OpenMutexW@12 | |
| 33 | OpenSemaphoreW@12 | |
| 34 | OpenWaitableTimerW@12 | |
| 35 | ReleaseMutex@4 | |
| 36 | ReleaseSemaphore@12 | |
| 37 | ReleaseSRWLockExclusive@4 | |
| 38 | ReleaseSRWLockShared@4 | |
| 39 | ResetEvent@4 | |
| 40 | SetCriticalSectionSpinCount@8 | |
| 41 | SetEvent@4 | |
| 42 | SetWaitableTimer@24 | |
| 43 | SetWaitableTimerEx@28 | |
| 44 | SignalObjectAndWait@16 | |
| 45 | Sleep@4 | |
| 46 | SleepConditionVariableCS@12 | |
| 47 | SleepConditionVariableSRW@16 | |
| 48 | SleepEx@8 | |
| 49 | TryAcquireSRWLockExclusive@4 | |
| 50 | TryAcquireSRWLockShared@4 | |
| 51 | TryEnterCriticalSection@4 | |
| 52 | WaitForMultipleObjectsEx@20 | |
| 53 | WaitForSingleObject@8 | |
| 54 | WaitForSingleObjectEx@12 | |
| 55 | WaitOnAddress@16 | |
| 56 | WakeAllConditionVariable@4 | |
| 57 | WakeByAddressAll@4 | |
| 58 | WakeByAddressSingle@4 | |
| 59 | WakeConditionVariable@4 |
lib/libc/mingw/lib32/api-ms-win-core-sysinfo-l1-2-0.def deleted-31| ... | ... | @@ -1,31 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-sysinfo-l1-2-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | EnumSystemFirmwareTables@12 | |
| 6 | GetComputerNameExA@12 | |
| 7 | GetComputerNameExW@12 | |
| 8 | GetLocalTime@4 | |
| 9 | GetLogicalProcessorInformation@8 | |
| 10 | GetLogicalProcessorInformationEx@12 | |
| 11 | GetNativeSystemInfo@4 | |
| 12 | GetProductInfo@20 | |
| 13 | GetSystemDirectoryA@8 | |
| 14 | GetSystemDirectoryW@8 | |
| 15 | GetSystemFirmwareTable@16 | |
| 16 | GetSystemInfo@4 | |
| 17 | GetSystemTime@4 | |
| 18 | GetSystemTimeAdjustment@12 | |
| 19 | GetSystemTimeAsFileTime@4 | |
| 20 | GetSystemTimePreciseAsFileTime@4 | |
| 21 | GetTickCount@0 | |
| 22 | GetTickCount64@0 | |
| 23 | GetVersion@0 | |
| 24 | GetVersionExA@4 | |
| 25 | GetVersionExW@4 | |
| 26 | GetWindowsDirectoryA@8 | |
| 27 | GetWindowsDirectoryW@8 | |
| 28 | GlobalMemoryStatusEx@4 | |
| 29 | SetLocalTime@4 | |
| 30 | SetSystemTime@4 | |
| 31 | VerSetConditionMask@16 |
lib/libc/mingw/lib32/api-ms-win-core-sysinfo-l1-2-3.def deleted-33| ... | ... | @@ -1,33 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-sysinfo-l1-2-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | EnumSystemFirmwareTables@12 | |
| 6 | GetComputerNameExA@12 | |
| 7 | GetComputerNameExW@12 | |
| 8 | GetIntegratedDisplaySize@4 | |
| 9 | GetLocalTime@4 | |
| 10 | GetLogicalProcessorInformation@8 | |
| 11 | GetLogicalProcessorInformationEx@12 | |
| 12 | GetNativeSystemInfo@4 | |
| 13 | GetPhysicallyInstalledSystemMemory@4 | |
| 14 | GetProductInfo@20 | |
| 15 | GetSystemDirectoryA@8 | |
| 16 | GetSystemDirectoryW@8 | |
| 17 | GetSystemFirmwareTable@16 | |
| 18 | GetSystemInfo@4 | |
| 19 | GetSystemTime@4 | |
| 20 | GetSystemTimeAdjustment@12 | |
| 21 | GetSystemTimeAsFileTime@4 | |
| 22 | GetSystemTimePreciseAsFileTime@4 | |
| 23 | GetTickCount@0 | |
| 24 | GetTickCount64@0 | |
| 25 | GetVersion@0 | |
| 26 | GetVersionExA@4 | |
| 27 | GetVersionExW@4 | |
| 28 | GetWindowsDirectoryA@8 | |
| 29 | GetWindowsDirectoryW@8 | |
| 30 | GlobalMemoryStatusEx@4 | |
| 31 | SetLocalTime@4 | |
| 32 | SetSystemTime@4 | |
| 33 | VerSetConditionMask@16 |
lib/libc/mingw/lib32/api-ms-win-core-winrt-error-l1-1-0.def deleted-15| ... | ... | @@ -1,15 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-error-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetRestrictedErrorInfo@4 | |
| 6 | RoCaptureErrorContext@4 | |
| 7 | RoFailFastWithErrorContext@4 | |
| 8 | RoGetErrorReportingFlags@4 | |
| 9 | RoOriginateError@8 | |
| 10 | RoOriginateErrorW@12 | |
| 11 | RoResolveRestrictedErrorInfoReference@8 | |
| 12 | RoSetErrorReportingFlags@4 | |
| 13 | RoTransformError@12 | |
| 14 | RoTransformErrorW@16 | |
| 15 | SetRestrictedErrorInfo@4 |
lib/libc/mingw/lib32/api-ms-win-core-winrt-error-l1-1-1.def deleted-22| ... | ... | @@ -1,22 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-error-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetRestrictedErrorInfo@4 | |
| 6 | IsErrorPropagationEnabled@0 | |
| 7 | RoCaptureErrorContext@4 | |
| 8 | RoClearError@0 | |
| 9 | RoFailFastWithErrorContext@4 | |
| 10 | RoGetErrorReportingFlags@4 | |
| 11 | RoGetMatchingRestrictedErrorInfo@8 | |
| 12 | RoInspectCapturedStackBackTrace@24 | |
| 13 | RoInspectThreadErrorInfo@20 | |
| 14 | RoOriginateError@8 | |
| 15 | RoOriginateErrorW@12 | |
| 16 | RoOriginateLanguageException@12 | |
| 17 | RoReportFailedDelegate@8 | |
| 18 | RoReportUnhandledError@4 | |
| 19 | RoSetErrorReportingFlags@4 | |
| 20 | RoTransformError@12 | |
| 21 | RoTransformErrorW@16 | |
| 22 | SetRestrictedErrorInfo@4 |
lib/libc/mingw/lib32/api-ms-win-core-winrt-l1-1-0.def deleted-13| ... | ... | @@ -1,13 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoActivateInstance@8 | |
| 6 | RoGetActivationFactory@12 | |
| 7 | RoGetApartmentIdentifier@4 | |
| 8 | RoInitialize@4 | |
| 9 | RoRegisterActivationFactories@16 | |
| 10 | RoRegisterForApartmentShutdown@12 | |
| 11 | RoRevokeActivationFactories@4 | |
| 12 | RoUninitialize@0 | |
| 13 | RoUnregisterForApartmentShutdown@4 |
lib/libc/mingw/lib32/api-ms-win-core-winrt-registration-l1-1-0.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-registration-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoGetActivatableClassRegistration@8 | |
| 6 | RoGetServerActivatableClasses@12 |
lib/libc/mingw/lib32/api-ms-win-core-winrt-robuffer-l1-1-0.def deleted-5| ... | ... | @@ -1,5 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-robuffer-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoGetBufferMarshaler@4 |
lib/libc/mingw/lib32/api-ms-win-core-winrt-roparameterizediid-l1-1-0.def deleted-7| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-roparameterizediid-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | RoFreeParameterizedTypeExtra@4 | |
| 6 | RoGetParameterizedTypeInstanceIID@20 | |
| 7 | RoParameterizedTypeExtraGetTypeSignature@4 |
lib/libc/mingw/lib32/api-ms-win-core-winrt-string-l1-1-0.def deleted-30| ... | ... | @@ -1,30 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-winrt-string-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | HSTRING_UserFree@8 | |
| 6 | HSTRING_UserFree64 | |
| 7 | HSTRING_UserMarshal@12 | |
| 8 | HSTRING_UserMarshal64 | |
| 9 | HSTRING_UserSize@12 | |
| 10 | HSTRING_UserSize64 | |
| 11 | HSTRING_UserUnmarshal@12 | |
| 12 | HSTRING_UserUnmarshal64 | |
| 13 | WindowsCompareStringOrdinal@12 | |
| 14 | WindowsConcatString@12 | |
| 15 | WindowsCreateString@12 | |
| 16 | WindowsCreateStringReference@16 | |
| 17 | WindowsDeleteString@4 | |
| 18 | WindowsDeleteStringBuffer@4 | |
| 19 | WindowsDuplicateString@8 | |
| 20 | WindowsGetStringLen@4 | |
| 21 | WindowsGetStringRawBuffer@8 | |
| 22 | WindowsIsStringEmpty@4 | |
| 23 | WindowsPreallocateStringBuffer@12 | |
| 24 | WindowsPromoteStringBuffer@8 | |
| 25 | WindowsReplaceString@16 | |
| 26 | WindowsStringHasEmbeddedNull@8 | |
| 27 | WindowsSubstring@12 | |
| 28 | WindowsSubstringWithSpecifiedLength@16 | |
| 29 | WindowsTrimStringEnd@12 | |
| 30 | WindowsTrimStringStart@12 |
lib/libc/mingw/lib32/api-ms-win-core-wow64-l1-1-1.def deleted-6| ... | ... | @@ -1,6 +0,0 @@ |
| 1 | LIBRARY api-ms-win-core-wow64-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | IsWow64Process@8 | |
| 6 | IsWow64Process2@12 |
lib/libc/mingw/lib32/api-ms-win-devices-config-l1-1-1.def deleted-17| ... | ... | @@ -1,17 +0,0 @@ |
| 1 | LIBRARY api-ms-win-devices-config-l1-1-1 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CM_Get_Device_ID_List_SizeW@12 | |
| 6 | CM_Get_Device_ID_ListW@16 | |
| 7 | CM_Get_Device_IDW@16 | |
| 8 | CM_Get_Device_Interface_List_SizeW@16 | |
| 9 | CM_Get_Device_Interface_ListW@20 | |
| 10 | CM_Get_Device_Interface_PropertyW@24 | |
| 11 | CM_Get_DevNode_PropertyW@24 | |
| 12 | CM_Get_DevNode_Status@16 | |
| 13 | CM_Get_Parent@12 | |
| 14 | CM_Locate_DevNodeW@12 | |
| 15 | CM_MapCrToWin32Err@8 | |
| 16 | CM_Register_Notification@16 | |
| 17 | CM_Unregister_Notification@4 |
lib/libc/mingw/lib32/api-ms-win-gaming-deviceinformation-l1-1-0.def deleted-5| ... | ... | @@ -1,5 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-deviceinformation-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetGamingDeviceModelInformation@4 |
lib/libc/mingw/lib32/api-ms-win-gaming-expandedresources-l1-1-0.def deleted-7| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-expandedresources-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetExpandedResourceExclusiveCpuCount@4 | |
| 6 | HasExpandedResources@4 | |
| 7 | ReleaseExclusiveCpuSets@0 |
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-0.def deleted-11| ... | ... | @@ -1,11 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | ProcessPendingGameUI@4 | |
| 6 | ShowChangeFriendRelationshipUI@12 | |
| 7 | ShowGameInviteUI@24 | |
| 8 | ShowPlayerPickerUI@36 | |
| 9 | ShowProfileCardUI@12 | |
| 10 | ShowTitleAchievementsUI@12 | |
| 11 | TryCancelPendingGameUI@0 |
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-2.def deleted-20| ... | ... | @@ -1,20 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-2 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CheckGamingPrivilegeSilently@16 | |
| 6 | CheckGamingPrivilegeSilentlyForUser@20 | |
| 7 | CheckGamingPrivilegeWithUI@24 | |
| 8 | CheckGamingPrivilegeWithUIForUser@28 | |
| 9 | ProcessPendingGameUI@4 | |
| 10 | ShowChangeFriendRelationshipUI@12 | |
| 11 | ShowChangeFriendRelationshipUIForUser@16 | |
| 12 | ShowGameInviteUI@24 | |
| 13 | ShowGameInviteUIForUser@28 | |
| 14 | ShowPlayerPickerUI@36 | |
| 15 | ShowPlayerPickerUIForUser@40 | |
| 16 | ShowProfileCardUI@12 | |
| 17 | ShowProfileCardUIForUser@16 | |
| 18 | ShowTitleAchievementsUI@12 | |
| 19 | ShowTitleAchievementsUIForUser@16 | |
| 20 | TryCancelPendingGameUI@0 |
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-3.def deleted-22| ... | ... | @@ -1,22 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-3 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CheckGamingPrivilegeSilently@16 | |
| 6 | CheckGamingPrivilegeSilentlyForUser@20 | |
| 7 | CheckGamingPrivilegeWithUI@24 | |
| 8 | CheckGamingPrivilegeWithUIForUser@28 | |
| 9 | ProcessPendingGameUI@4 | |
| 10 | ShowChangeFriendRelationshipUI@12 | |
| 11 | ShowChangeFriendRelationshipUIForUser@16 | |
| 12 | ShowGameInviteUI@24 | |
| 13 | ShowGameInviteUIForUser@28 | |
| 14 | ShowGameInviteUIWithContext@28 | |
| 15 | ShowGameInviteUIWithContextForUser@32 | |
| 16 | ShowPlayerPickerUI@36 | |
| 17 | ShowPlayerPickerUIForUser@40 | |
| 18 | ShowProfileCardUI@12 | |
| 19 | ShowProfileCardUIForUser@16 | |
| 20 | ShowTitleAchievementsUI@12 | |
| 21 | ShowTitleAchievementsUIForUser@16 | |
| 22 | TryCancelPendingGameUI@0 |
lib/libc/mingw/lib32/api-ms-win-gaming-tcui-l1-1-4.def deleted-30| ... | ... | @@ -1,30 +0,0 @@ |
| 1 | LIBRARY api-ms-win-gaming-tcui-l1-1-4 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CheckGamingPrivilegeSilently@16 | |
| 6 | CheckGamingPrivilegeSilentlyForUser@20 | |
| 7 | CheckGamingPrivilegeWithUI@24 | |
| 8 | CheckGamingPrivilegeWithUIForUser@28 | |
| 9 | ProcessPendingGameUI@4 | |
| 10 | ShowChangeFriendRelationshipUI@12 | |
| 11 | ShowChangeFriendRelationshipUIForUser@16 | |
| 12 | ShowCustomizeUserProfileUI@ | |
| 13 | ShowCustomizeUserProfileUIForUser@12 | |
| 14 | ShowFindFriendsUI@8 | |
| 15 | ShowFindFriendsUIForUser@12 | |
| 16 | ShowGameInfoUI@12 | |
| 17 | ShowGameInfoUIForUser@16 | |
| 18 | ShowGameInviteUI@24 | |
| 19 | ShowGameInviteUIForUser@28 | |
| 20 | ShowGameInviteUIWithContext@28 | |
| 21 | ShowGameInviteUIWithContextForUser@32 | |
| 22 | ShowPlayerPickerUI@36 | |
| 23 | ShowPlayerPickerUIForUser@40 | |
| 24 | ShowProfileCardUI@12 | |
| 25 | ShowProfileCardUIForUser@16 | |
| 26 | ShowTitleAchievementsUI@12 | |
| 27 | ShowTitleAchievementsUIForUser@16 | |
| 28 | ShowUserSettingsUI@8 | |
| 29 | ShowUserSettingsUIForUser@12 | |
| 30 | TryCancelPendingGameUI@0 |
lib/libc/mingw/lib32/api-ms-win-security-isolatedcontainer-l1-1-0.def deleted-5| ... | ... | @@ -1,5 +0,0 @@ |
| 1 | LIBRARY api-ms-win-security-isolatedcontainer-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | IsProcessInIsolatedContainer@4 |
lib/libc/mingw/lib32/api-ms-win-shcore-stream-winrt-l1-1-0.def deleted-7| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | LIBRARY api-ms-win-shcore-stream-winrt-l1-1-0 | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateRandomAccessStreamOnFile@16 | |
| 6 | CreateRandomAccessStreamOverStream@16 | |
| 7 | CreateStreamOverRandomAccessStream@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 | ; | |
| 6 | LIBRARY "AVRT.dll" | |
| 7 | EXPORTS | |
| 8 | AvQuerySystemResponsiveness@8 | |
| 9 | AvRevertMmThreadCharacteristics@4 | |
| 10 | AvRtCreateThreadOrderingGroup@16 | |
| 11 | AvRtCreateThreadOrderingGroupExA@20 | |
| 12 | AvRtCreateThreadOrderingGroupExW@20 | |
| 13 | AvRtDeleteThreadOrderingGroup@4 | |
| 14 | AvRtJoinThreadOrderingGroup@12 | |
| 15 | AvRtLeaveThreadOrderingGroup@4 | |
| 16 | AvRtWaitOnThreadOrderingGroup@4 | |
| 17 | AvSetMmMaxThreadCharacteristicsA@12 | |
| 18 | AvSetMmMaxThreadCharacteristicsW@12 | |
| 19 | AvSetMmThreadCharacteristicsA@8 | |
| 20 | AvSetMmThreadCharacteristicsW@8 | |
| 21 | AvSetMmThreadPriority@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 | ; | |
| 6 | LIBRARY "BOOTVID.dll" | |
| 7 | EXPORTS | |
| 8 | VidBitBlt@12 | |
| 9 | VidBufferToScreenBlt@24 | |
| 10 | VidCleanUp@0 | |
| 11 | VidDisplayString@4 | |
| 12 | VidDisplayStringXY@16 | |
| 13 | VidInitialize@8 | |
| 14 | VidResetDisplay@4 | |
| 15 | VidScreenToBufferBlt@24 | |
| 16 | VidSetScrollRegion@16 | |
| 17 | VidSetTextColor@4 | |
| 18 | VidSolidColorFill@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 | ; | |
| 6 | LIBRARY "browcli.dll" | |
| 7 | EXPORTS | |
| 8 | I_BrowserDebugCall@12 | |
| 9 | I_BrowserDebugTrace@8 | |
| 10 | I_BrowserQueryEmulatedDomains@12 | |
| 11 | I_BrowserQueryOtherDomains@16 | |
| 12 | I_BrowserQueryStatistics@8 | |
| 13 | I_BrowserResetNetlogonState@4 | |
| 14 | I_BrowserResetStatistics@4 | |
| 15 | I_BrowserServerEnum@44 | |
| 16 | I_BrowserSetNetlogonState@16 | |
| 17 | NetBrowserStatisticsGet@12 | |
| 18 | NetServerEnum@36 | |
| 19 | NetServerEnumEx@36 |
lib/libc/mingw/lib32/cabinet.def+19-7| ... | ... | @@ -5,17 +5,29 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "Cabinet.dll" |
| 7 | 7 | EXPORTS |
| 8 | GetDllVersion@0 | |
| 8 | CloseCompressor@4 | |
| 9 | CloseDecompressor@4 | |
| 10 | Compress@24 | |
| 11 | CreateCompressor@12 | |
| 12 | CreateDecompressor@12 | |
| 13 | Decompress@24 | |
| 14 | DeleteExtractedFiles@4 | |
| 9 | 15 | DllGetVersion@4 |
| 10 | 16 | Extract@8 |
| 11 | DeleteExtractedFiles@4 | |
| 12 | FCICreate | |
| 13 | 17 | FCIAddFile |
| 14 | FCIFlushFolder | |
| 15 | FCIFlushCabinet | |
| 18 | FCICreate | |
| 16 | 19 | FCIDestroy |
| 17 | FDICreate | |
| 18 | FDIIsCabinet | |
| 20 | FCIFlushCabinet | |
| 21 | FCIFlushFolder | |
| 19 | 22 | FDICopy |
| 23 | FDICreate | |
| 20 | 24 | FDIDestroy |
| 25 | FDIIsCabinet | |
| 21 | 26 | FDITruncateCabinet |
| 27 | GetDllVersion@0 | |
| 28 | QueryCompressorInformation@16 | |
| 29 | QueryDecompressorInformation@16 | |
| 30 | ResetCompressor@4 | |
| 31 | ResetDecompressor@4 | |
| 32 | SetCompressorInformation@16 | |
| 33 | SetDecompressorInformation@16 |
lib/libc/mingw/lib32/cap.def created+6| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | LIBRARY CAP.DLL | |
| 2 | EXPORTS | |
| 3 | DumpCAP@0 | |
| 4 | StartCAP@0 | |
| 5 | StopCAP@0 | |
| 6 | _penter |
lib/libc/mingw/lib32/chakrart.def created+124| ... | ... | @@ -0,0 +1,124 @@ |
| 1 | LIBRARY chakra | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | JsAddRef@8 | |
| 6 | JsBoolToBoolean@8 | |
| 7 | JsBooleanToBool@8 | |
| 8 | JsCallFunction@16 | |
| 9 | JsCollectGarbage@4 | |
| 10 | JsConstructObject@16 | |
| 11 | JsConvertValueToBoolean@8 | |
| 12 | JsConvertValueToNumber@8 | |
| 13 | JsConvertValueToObject@8 | |
| 14 | JsConvertValueToString@8 | |
| 15 | JsCreateArray@8 | |
| 16 | JsCreateArrayBuffer@8 | |
| 17 | JsCreateContext@8 | |
| 18 | JsCreateDataView@16 | |
| 19 | JsCreateError@8 | |
| 20 | JsCreateExternalArrayBuffer@20 | |
| 21 | JsCreateExternalObject@12 | |
| 22 | JsCreateFunction@12 | |
| 23 | JsCreateNamedFunction@16 | |
| 24 | JsCreateObject@4 | |
| 25 | JsCreateRangeError@8 | |
| 26 | JsCreateReferenceError@8 | |
| 27 | JsCreateRuntime@12 | |
| 28 | JsCreateSymbol@8 | |
| 29 | JsCreateSyntaxError@8 | |
| 30 | JsCreateThreadService@8 | |
| 31 | JsCreateTypeError@8 | |
| 32 | JsCreateTypedArray@20 | |
| 33 | JsCreateURIError@8 | |
| 34 | JsDefineProperty@16 | |
| 35 | JsDeleteIndexedProperty@8 | |
| 36 | JsDeleteProperty@16 | |
| 37 | JsDisableRuntimeExecution@4 | |
| 38 | JsDisposeRuntime@4 | |
| 39 | JsDoubleToNumber@12 | |
| 40 | JsEnableRuntimeExecution@4 | |
| 41 | JsEnumerateHeap@4 | |
| 42 | JsEquals@12 | |
| 43 | JsGetAndClearException@4 | |
| 44 | JsGetArrayBufferStorage@12 | |
| 45 | JsGetContextData@8 | |
| 46 | JsGetContextOfObject@8 | |
| 47 | JsGetCurrentContext@4 | |
| 48 | JsGetDataViewStorage@12 | |
| 49 | JsGetExtensionAllowed@8 | |
| 50 | JsGetExternalData@8 | |
| 51 | JsGetFalseValue@4 | |
| 52 | JsGetGlobalObject@4 | |
| 53 | JsGetIndexedPropertiesExternalData@16 | |
| 54 | JsGetIndexedProperty@12 | |
| 55 | JsGetNullValue@4 | |
| 56 | JsGetOwnPropertyDescriptor@12 | |
| 57 | JsGetOwnPropertyNames@8 | |
| 58 | JsGetOwnPropertySymbols@8 | |
| 59 | JsGetProperty@12 | |
| 60 | JsGetPropertyIdFromName@8 | |
| 61 | JsGetPropertyIdFromSymbol@8 | |
| 62 | JsGetPropertyIdType@8 | |
| 63 | JsGetPropertyNameFromId@8 | |
| 64 | JsGetPrototype@8 | |
| 65 | JsGetRuntime@8 | |
| 66 | JsGetRuntimeMemoryLimit@8 | |
| 67 | JsGetRuntimeMemoryUsage@8 | |
| 68 | JsGetStringLength@8 | |
| 69 | JsGetSymbolFromPropertyId@8 | |
| 70 | JsGetTrueValue@4 | |
| 71 | JsGetTypedArrayInfo@20 | |
| 72 | JsGetTypedArrayStorage@20 | |
| 73 | JsGetUndefinedValue@4 | |
| 74 | JsGetValueType@8 | |
| 75 | JsHasException@4 | |
| 76 | JsHasExternalData@8 | |
| 77 | JsHasIndexedPropertiesExternalData@8 | |
| 78 | JsHasIndexedProperty@12 | |
| 79 | JsHasProperty@12 | |
| 80 | JsIdle@4 | |
| 81 | JsInspectableToObject@8 | |
| 82 | JsInstanceOf@12 | |
| 83 | JsIntToNumber@8 | |
| 84 | JsIsEnumeratingHeap@4 | |
| 85 | JsIsRuntimeExecutionDisabled@8 | |
| 86 | JsNumberToDouble@8 | |
| 87 | JsNumberToInt@8 | |
| 88 | JsObjectToInspectable@8 | |
| 89 | JsParseScript@16 | |
| 90 | JsParseScriptWithAttributes@20 | |
| 91 | JsParseSerializedScript@20 | |
| 92 | JsParseSerializedScriptWithCallback@24 | |
| 93 | JsPointerToString@12 | |
| 94 | JsPreventExtension@4 | |
| 95 | JsProjectWinRTNamespace@4 | |
| 96 | JsRelease@8 | |
| 97 | JsRunScript@16 | |
| 98 | JsRunSerializedScript@20 | |
| 99 | JsRunSerializedScriptWithCallback@24 | |
| 100 | JsSerializeScript@12 | |
| 101 | JsSetContextData@8 | |
| 102 | JsSetCurrentContext@4 | |
| 103 | JsSetException@4 | |
| 104 | JsSetExternalData@8 | |
| 105 | JsSetIndexedPropertiesToExternalData@16 | |
| 106 | JsSetIndexedProperty@12 | |
| 107 | JsSetObjectBeforeCollectCallback@12 | |
| 108 | JsSetProjectionEnqueueCallback@8 | |
| 109 | JsSetPromiseContinuationCallback@8 | |
| 110 | JsSetProperty@16 | |
| 111 | JsSetPrototype@8 | |
| 112 | JsSetRuntimeBeforeCollectCallback@12 | |
| 113 | JsSetRuntimeMemoryAllocationCallback@12 | |
| 114 | JsSetRuntimeMemoryLimit@8 | |
| 115 | JsStartDebugging@0 | |
| 116 | JsStartProfiling@12 | |
| 117 | JsStopProfiling@4 | |
| 118 | JsStrictEquals@12 | |
| 119 | JsStringToPointer@12 | |
| 120 | JsValueToVariant@8 | |
| 121 | JsVarAddRef@4 | |
| 122 | JsVarRelease@4 | |
| 123 | JsVarToExtension@8 | |
| 124 | JsVariantToValue@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 | ; | |
| 6 | LIBRARY "CLASSPNP.SYS" | |
| 7 | EXPORTS | |
| 8 | ClassAcquireChildLock@4 | |
| 9 | ClassAcquireRemoveLockEx@16 | |
| 10 | ClassAsynchronousCompletion@12 | |
| 11 | ClassBuildRequest@8 | |
| 12 | ClassCheckMediaState@4 | |
| 13 | ClassClaimDevice@8 | |
| 14 | ClassCleanupMediaChangeDetection@4 | |
| 15 | ClassCompleteRequest@12 | |
| 16 | ClassCreateDeviceObject@20 | |
| 17 | ClassDebugPrint | |
| 18 | ClassDeleteSrbLookasideList@4 | |
| 19 | ClassDeviceControl@8 | |
| 20 | ClassDisableMediaChangeDetection@4 | |
| 21 | ClassEnableMediaChangeDetection@4 | |
| 22 | ClassFindModePage@16 | |
| 23 | ClassForwardIrpSynchronous@8 | |
| 24 | ClassGetDescriptor@12 | |
| 25 | ClassGetDeviceParameter@16 | |
| 26 | ClassGetDriverExtension@4 | |
| 27 | ClassGetVpb@4 | |
| 28 | ClassInitialize@12 | |
| 29 | ClassInitializeEx@12 | |
| 30 | ClassInitializeMediaChangeDetection@8 | |
| 31 | ClassInitializeSrbLookasideList@8 | |
| 32 | ClassInitializeTestUnitPolling@8 | |
| 33 | ClassInternalIoControl@8 | |
| 34 | ClassInterpretSenseInfo@28 | |
| 35 | ClassInvalidateBusRelations@4 | |
| 36 | ClassIoComplete@12 | |
| 37 | ClassIoCompleteAssociated@12 | |
| 38 | ClassMarkChildMissing@8 | |
| 39 | ClassMarkChildrenMissing@4 | |
| 40 | ClassModeSense@16 | |
| 41 | ClassNotifyFailurePredicted@32 | |
| 42 | ClassQueryTimeOutRegistryValue@4 | |
| 43 | ClassReadDriveCapacity@4 | |
| 44 | ClassReleaseChildLock@4 | |
| 45 | ClassReleaseQueue@4 | |
| 46 | ClassReleaseRemoveLock@8 | |
| 47 | ClassRemoveDevice@8 | |
| 48 | ClassResetMediaChangeTimer@4 | |
| 49 | ClassScanForSpecial@12 | |
| 50 | ClassSendDeviceIoControlSynchronous@28 | |
| 51 | ClassSendIrpSynchronous@8 | |
| 52 | ClassSendSrbAsynchronous@24 | |
| 53 | ClassSendSrbSynchronous@20 | |
| 54 | ClassSendStartUnit@4 | |
| 55 | ClassSetDeviceParameter@16 | |
| 56 | ClassSetFailurePredictionPoll@12 | |
| 57 | ClassSetMediaChangeState@12 | |
| 58 | ClassSignalCompletion@12 | |
| 59 | ClassSpinDownPowerHandler@8 | |
| 60 | ClassSplitRequest@12 | |
| 61 | ClassStopUnitPowerHandler@8 | |
| 62 | ClassUpdateInformationInRegistry@20 | |
| 63 | ClassWmiCompleteRequest@20 | |
| 64 | ClassWmiFireEvent@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 | ; | |
| 6 | LIBRARY "cmutil.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 62 | CmAtolA@4 | |
| 63 | CmAtolW@4 | |
| 64 | CmBuildFullPathFromRelativeA@8 | |
| 65 | CmBuildFullPathFromRelativeW@8 | |
| 66 | CmCompareStringA@8 | |
| 67 | CmCompareStringW@8 | |
| 68 | CmConvertRelativePathW@8 | |
| 69 | CmConvertStrToIPv6AddrA@8 | |
| 70 | CmConvertStrToIPv6AddrW@8 | |
| 71 | CmEndOfStrW@4 | |
| 72 | CmFmtMsgA | |
| 73 | CmFmtMsgW | |
| 74 | CmFree@4 | |
| 75 | CmIsDigitW@4 | |
| 76 | CmIsIPv6AddressA@4 | |
| 77 | CmIsIPv6AddressW@4 | |
| 78 | CmIsSpaceW@4 | |
| 79 | CmLoadIconA@8 | |
| 80 | CmLoadIconW@8 | |
| 81 | CmLoadImageW@20 | |
| 82 | CmLoadSmallIconA@8 | |
| 83 | CmLoadSmallIconW@8 | |
| 84 | CmLoadStringW@8 | |
| 85 | CmMalloc@4 | |
| 86 | CmMoveMemory@12 | |
| 87 | CmParsePathW@16 | |
| 88 | CmRealloc@8 | |
| 89 | CmStrCatAllocA@8 | |
| 90 | CmStrCatAllocW@8 | |
| 91 | CmStrCharCountA@8 | |
| 92 | CmStrCharCountW@8 | |
| 93 | CmStrCharStuffingA@8 | |
| 94 | CmStrCharStuffingW@8 | |
| 95 | CmStrCpyAllocA@4 | |
| 96 | CmStrCpyAllocW@4 | |
| 97 | CmStrStrA@8 | |
| 98 | CmStrStrW@8 | |
| 99 | CmStrTrimW@4 | |
| 100 | CmStrchrA@8 | |
| 101 | CmStrchrW@8 | |
| 102 | CmStripFileNameW@8 | |
| 103 | CmStripPathAndExtW@4 | |
| 104 | CmStrrchrA@8 | |
| 105 | CmStrrchrW@8 | |
| 106 | CmStrtokA@8 | |
| 107 | CmStrtokW@8 | |
| 108 | CmWinHelp@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 | |
| 137 | GetOSBuildNumber | |
| 138 | GetOSMajorVersion | |
| 139 | GetOSVersion | |
| 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 | |
| 164 | IsFarEastNonOSR2Win95 | |
| 165 | IsLogonAsSystem | |
| 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 | |
| 176 | MakeBold@8 | |
| 177 | ; private: long __thiscall CmLogFile::OpenFile(void) | |
| 178 | ?OpenFile@CmLogFile@@AAEJXZ | |
| 179 | ReleaseBold@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 | |
| 232 | SzToWz@12 | |
| 233 | SzToWzWithAlloc@4 | |
| 234 | UpdateFont@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) | |
| 249 | WzToSz@12 | |
| 250 | WzToSzWithAlloc@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 @@ |
| 1 | LIBRARY COMCTL32.DLL | |
| 1 | LIBRARY COMCTL32.dll | |
| 2 | 2 | EXPORTS |
| 3 | _TrackMouseEvent@4 | |
| 4 | AddMRUData@12 | |
| 5 | AddMRUStringA@8 | |
| 6 | AddMRUStringW@8 | |
| 7 | Alloc@4 | |
| 8 | CreateMRUListA@4 | |
| 9 | CreateMRUListW@4 | |
| 3 | MenuHelp@28 | |
| 4 | ShowHideMenuCtl@12 | |
| 5 | GetEffectiveClientRect@12 | |
| 6 | DrawStatusTextA@16 | |
| 7 | CreateStatusWindowA@16 | |
| 8 | CreateToolbar@32 | |
| 10 | 9 | CreateMappedBitmap@20 |
| 11 | CreatePage@8 | |
| 10 | DPA_LoadStream@16 | |
| 11 | DPA_SaveStream@16 | |
| 12 | DPA_Merge@24 | |
| 12 | 13 | CreatePropertySheetPage@4 |
| 14 | MakeDragList@4 | |
| 15 | LBItemFromPt@16 | |
| 16 | DrawInsert@12 | |
| 17 | CreateUpDownControl@48 | |
| 18 | InitCommonControls@0 | |
| 13 | 19 | CreatePropertySheetPageA@4 |
| 14 | 20 | CreatePropertySheetPageW@4 |
| 15 | CreateProxyPage@8 | |
| 16 | 21 | CreateStatusWindow@16 |
| 17 | CreateStatusWindowA@16 | |
| 18 | 22 | CreateStatusWindowW@16 |
| 19 | CreateToolbar@32 | |
| 20 | 23 | CreateToolbarEx@52 |
| 21 | CreateUpDownControl@48 | |
| 22 | DPA_Clone@8 | |
| 23 | DPA_Create@4 | |
| 24 | DPA_CreateEx@8 | |
| 25 | DPA_DeleteAllPtrs@4 | |
| 26 | DPA_DeletePtr@8 | |
| 27 | DPA_Destroy@4 | |
| 28 | DPA_GetPtr@8 | |
| 29 | DPA_GetPtrIndex@8 | |
| 30 | DPA_Grow@8 | |
| 31 | DPA_InsertPtr@12 | |
| 32 | DPA_Search@24 | |
| 33 | DPA_SetPtr@12 | |
| 34 | DPA_Sort@12 | |
| 35 | DSA_Create@8 | |
| 36 | DSA_DeleteAllItems@4 | |
| 37 | DSA_DeleteItem@8 | |
| 38 | DSA_Destroy@4 | |
| 39 | DSA_GetItem@12 | |
| 40 | DSA_GetItemPtr@8 | |
| 41 | DSA_InsertItem@12 | |
| 42 | DSA_SetItem@12 | |
| 43 | DefSubclassProc@16 | |
| 44 | DelMRUString@8 | |
| 45 | 24 | DestroyPropertySheetPage@4 |
| 46 | DrawInsert@12 | |
| 25 | DllGetVersion@4 | |
| 26 | DllInstall@8 | |
| 27 | DrawShadowText@36 | |
| 47 | 28 | DrawStatusText@16 |
| 48 | DrawStatusTextA@16 | |
| 49 | 29 | DrawStatusTextW@16 |
| 50 | EnumMRUListA@16 | |
| 51 | EnumMRUListW@16 | |
| 52 | FindMRUData@16 | |
| 53 | FindMRUStringA@12 | |
| 54 | FindMRUStringW@12 | |
| 55 | Free@4 | |
| 56 | FreeMRUList@4 | |
| 57 | GetEffectiveClientRect@12 | |
| 30 | FlatSB_EnableScrollBar@12 | |
| 31 | FlatSB_GetScrollInfo@12 | |
| 32 | FlatSB_GetScrollPos@8 | |
| 33 | FlatSB_GetScrollProp@12 | |
| 34 | FlatSB_GetScrollRange@16 | |
| 35 | FlatSB_SetScrollInfo@16 | |
| 36 | FlatSB_SetScrollPos@16 | |
| 37 | FlatSB_SetScrollProp@16 | |
| 38 | FlatSB_SetScrollRange@20 | |
| 39 | FlatSB_ShowScrollBar@12 | |
| 58 | 40 | GetMUILanguage@0 |
| 59 | GetSize@4 | |
| 60 | GetWindowSubclass@16 | |
| 41 | HIMAGELIST_QueryInterface@12 | |
| 61 | 42 | ImageList_Add@12 |
| 62 | 43 | ImageList_AddIcon@8 |
| 63 | 44 | ImageList_AddMasked@12 |
| 64 | 45 | ImageList_BeginDrag@16 |
| 46 | ImageList_CoCreateInstance@16 | |
| 65 | 47 | ImageList_Copy@20 |
| 66 | 48 | ImageList_Create@20 |
| 67 | 49 | ImageList_Destroy@4 |
| 50 | ImageList_DestroyShared@4 | |
| 68 | 51 | ImageList_DragEnter@12 |
| 69 | 52 | ImageList_DragLeave@4 |
| 70 | 53 | ImageList_DragMove@8 |
| ... | ... | @@ -76,6 +59,7 @@ ImageList_Duplicate@4 |
| 76 | 59 | ImageList_EndDrag@0 |
| 77 | 60 | ImageList_GetBkColor@4 |
| 78 | 61 | ImageList_GetDragImage@8 |
| 62 | ImageList_GetFlags@4 | |
| 79 | 63 | ImageList_GetIcon@12 |
| 80 | 64 | ImageList_GetIconSize@12 |
| 81 | 65 | ImageList_GetImageCount@4 |
| ... | ... | @@ -86,34 +70,80 @@ ImageList_LoadImageA@28 |
| 86 | 70 | ImageList_LoadImageW@28 |
| 87 | 71 | ImageList_Merge@24 |
| 88 | 72 | ImageList_Read@4 |
| 73 | ImageList_ReadEx@16 | |
| 89 | 74 | ImageList_Remove@8 |
| 90 | 75 | ImageList_Replace@16 |
| 91 | 76 | ImageList_ReplaceIcon@12 |
| 77 | ImageList_Resize@12 | |
| 92 | 78 | ImageList_SetBkColor@8 |
| 93 | 79 | ImageList_SetDragCursorImage@16 |
| 80 | ImageList_SetFilter@12 | |
| 81 | ImageList_SetFlags@8 | |
| 94 | 82 | ImageList_SetIconSize@12 |
| 95 | 83 | ImageList_SetImageCount@8 |
| 96 | 84 | ImageList_SetOverlayImage@12 |
| 97 | 85 | ImageList_Write@8 |
| 98 | InitCommonControls@0 | |
| 86 | ImageList_WriteEx@12 | |
| 99 | 87 | InitCommonControlsEx@4 |
| 100 | 88 | InitMUILanguage@4 |
| 101 | LBItemFromPt@16 | |
| 102 | LoadIconMetric@16 | |
| 103 | MakeDragList@4 | |
| 104 | MenuHelp@28 | |
| 89 | InitializeFlatSB@4 | |
| 105 | 90 | PropertySheet@4 |
| 106 | 91 | PropertySheetA@4 |
| 107 | 92 | PropertySheetW@4 |
| 108 | ReAlloc@8 | |
| 109 | RemoveWindowSubclass@12 | |
| 110 | SendNotify@16 | |
| 111 | SendNotifyEx@20 | |
| 112 | SetWindowSubclass@16 | |
| 113 | ShowHideMenuCtl@12 | |
| 114 | Str_GetPtrA@12 | |
| 115 | Str_GetPtrW@12 | |
| 116 | Str_SetPtrA@8 | |
| 93 | RegisterClassNameW@4 | |
| 94 | UninitializeFlatSB@4 | |
| 95 | _TrackMouseEvent@4 | |
| 96 | FreeMRUList@4 | |
| 97 | DrawSizeBox@16 | |
| 98 | DrawScrollBar@16 | |
| 99 | SizeBoxHwnd@4 | |
| 100 | ScrollBar_MouseMove@12 | |
| 101 | ScrollBar_Menu@16 | |
| 102 | HandleScrollCmd@12 | |
| 103 | DetachScrollBars@4 | |
| 104 | AttachScrollBars@4 | |
| 105 | CCSetScrollInfo@16 | |
| 106 | CCGetScrollInfo@12 | |
| 107 | CCEnableScrollBar@12 | |
| 117 | 108 | Str_SetPtrW@8 |
| 109 | DSA_Create@8 | |
| 110 | DSA_Destroy@4 | |
| 111 | DSA_GetItem@12 | |
| 112 | DSA_GetItemPtr@8 | |
| 113 | DSA_InsertItem@12 | |
| 114 | DSA_SetItem@12 | |
| 115 | DSA_DeleteItem@8 | |
| 116 | DSA_DeleteAllItems@4 | |
| 117 | DPA_Create@4 | |
| 118 | DPA_Destroy@4 | |
| 119 | DPA_Grow@8 | |
| 120 | DPA_Clone@8 | |
| 121 | DPA_GetPtr@8 | |
| 122 | DPA_GetPtrIndex@8 | |
| 123 | DPA_InsertPtr@12 | |
| 124 | DPA_SetPtr@12 | |
| 125 | DPA_DeletePtr@8 | |
| 126 | DPA_DeleteAllPtrs@4 | |
| 127 | DPA_Sort@12 | |
| 128 | DPA_Search@24 | |
| 129 | DPA_CreateEx@8 | |
| 130 | DSA_Clone@4 | |
| 118 | 131 | TaskDialog@32 |
| 119 | 132 | TaskDialogIndirect@16 |
| 133 | DSA_Sort@12 | |
| 134 | DPA_GetSize@4 | |
| 135 | DSA_GetSize@4 | |
| 136 | LoadIconMetric@16 | |
| 137 | LoadIconWithScaleDown@20 | |
| 138 | DPA_EnumCallback@12 | |
| 139 | DPA_DestroyCallback@12 | |
| 140 | DSA_EnumCallback@12 | |
| 141 | DSA_DestroyCallback@12 | |
| 142 | QuerySystemGestureStatus@16 | |
| 143 | CreateMRUListW@4 | |
| 144 | AddMRUStringW@8 | |
| 145 | EnumMRUListW@16 | |
| 146 | SetWindowSubclass@16 | |
| 147 | GetWindowSubclass@16 | |
| 148 | RemoveWindowSubclass@12 | |
| 149 | DefSubclassProc@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 | ; | |
| 6 | LIBRARY "connect.dll" | |
| 7 | EXPORTS | |
| 8 | AddConnectionOptionListEntries@12 | |
| 9 | CreateVPNConnection@24 | |
| 10 | DllCanUnloadNow@0 | |
| 11 | DllGetClassObject@12 | |
| 12 | GetInternetConnected@24 | |
| 13 | GetNetworkConnected@24 | |
| 14 | GetVPNConnected@24 | |
| 15 | IsInternetConnected@0 | |
| 16 | IsInternetConnectedGUID@8 | |
| 17 | IsUniqueConnectionName@4 | |
| 18 | RegisterPageWithPage@28 | |
| 19 | UnregisterPage@8 | |
| 20 | UnregisterPagesLink@8 |
lib/libc/mingw/lib32/coremessaging.def created+33| ... | ... | @@ -0,0 +1,33 @@ |
| 1 | LIBRARY coremessaging | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CoreUICallComputeMaximumMessageSize | |
| 6 | CoreUICallCreateConversationHost | |
| 7 | CoreUICallCreateEndpointHost | |
| 8 | CoreUICallCreateEndpointHostWithSendPriority | |
| 9 | CoreUICallGetAddressOfParameterInBuffer | |
| 10 | CoreUICallReceive | |
| 11 | CoreUICallSend | |
| 12 | CoreUICallSendVaList | |
| 13 | CoreUIConfigureTestHost@0 | |
| 14 | CoreUIConfigureUserIntegration@4 | |
| 15 | CoreUICreate@4 | |
| 16 | CoreUICreateAnonymousStream@4 | |
| 17 | CoreUICreateClientWindowIDManager@4 | |
| 18 | CoreUICreateEx@8 | |
| 19 | CoreUICreateSystemWindowIDManager@4 | |
| 20 | CoreUIInitializeTestService@12 | |
| 21 | CoreUIOpenExisting@4 | |
| 22 | CoreUIRouteToTestRegistrar@8 | |
| 23 | CoreUIUninitializeTestService@0 | |
| 24 | CreateDispatcherQueueController@16 | |
| 25 | CreateDispatcherQueueForCurrentThread@4 | |
| 26 | GetDispatcherQueueForCurrentThread@4 | |
| 27 | MsgBlobCreateShared@12 | |
| 28 | MsgBlobCreateStack@16 | |
| 29 | MsgBufferShare@8 | |
| 30 | MsgRelease@4 | |
| 31 | MsgStringCreateShared@12 | |
| 32 | MsgStringCreateStack@16 | |
| 33 | ServiceMain@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 | ; | |
| 175 | LIBRARY "crtdll.dll" | |
| 176 | EXPORTS | |
| 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 | |
| 480 | strlwr == _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 | |
| 515 | wcslwr == _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 | |
| 533 | abort | |
| 534 | abs | |
| 535 | acos | |
| 536 | asctime | |
| 537 | asin DATA | |
| 538 | atan DATA | |
| 539 | atan2 DATA | |
| 540 | atexit DATA | |
| 541 | atof | |
| 542 | atoi | |
| 543 | atol | |
| 544 | bsearch | |
| 545 | calloc | |
| 546 | ceil | |
| 547 | clearerr | |
| 548 | clock | |
| 549 | cos DATA | |
| 550 | cosh | |
| 551 | ctime DATA | |
| 552 | ;_ctime32 = ctime | |
| 553 | difftime | |
| 554 | div | |
| 555 | exit | |
| 556 | exp DATA | |
| 557 | fabs DATA | |
| 558 | fclose | |
| 559 | feof | |
| 560 | ferror | |
| 561 | fflush | |
| 562 | fgetc | |
| 563 | fgetpos | |
| 564 | fgets | |
| 565 | fgetwc | |
| 566 | floor | |
| 567 | fmod | |
| 568 | fopen | |
| 569 | fprintf | |
| 570 | fputc | |
| 571 | fputs | |
| 572 | fputwc | |
| 573 | fread | |
| 574 | free | |
| 575 | freopen | |
| 576 | frexp | |
| 577 | fscanf | |
| 578 | fseek | |
| 579 | fsetpos | |
| 580 | ftell | |
| 581 | fwprintf | |
| 582 | fwrite | |
| 583 | fwscanf | |
| 584 | getc | |
| 585 | getchar | |
| 586 | getenv | |
| 587 | gets | |
| 588 | gmtime DATA | |
| 589 | ;_gmtime32 = gmtime | |
| 590 | is_wctype | |
| 591 | isalnum | |
| 592 | isalpha | |
| 593 | iscntrl | |
| 594 | isdigit | |
| 595 | isgraph | |
| 596 | isleadbyte | |
| 597 | islower | |
| 598 | isprint | |
| 599 | ispunct | |
| 600 | isspace | |
| 601 | isupper | |
| 602 | iswalnum | |
| 603 | iswalpha | |
| 604 | iswascii | |
| 605 | iswcntrl | |
| 606 | iswctype | |
| 607 | iswdigit | |
| 608 | iswgraph | |
| 609 | iswlower | |
| 610 | iswprint | |
| 611 | iswpunct | |
| 612 | iswspace | |
| 613 | iswupper | |
| 614 | iswxdigit | |
| 615 | isxdigit | |
| 616 | labs | |
| 617 | ldexp DATA | |
| 618 | ldiv | |
| 619 | localeconv | |
| 620 | localtime DATA | |
| 621 | ;_localtime32 = localtime | |
| 622 | log | |
| 623 | log10 | |
| 624 | longjmp | |
| 625 | malloc | |
| 626 | mblen | |
| 627 | mbstowcs | |
| 628 | mbtowc | |
| 629 | memchr | |
| 630 | memcmp | |
| 631 | memcpy | |
| 632 | memmove | |
| 633 | memset | |
| 634 | mktime DATA | |
| 635 | ;_mktime32 = mktime | |
| 636 | modf | |
| 637 | perror | |
| 638 | pow | |
| 639 | printf | |
| 640 | putc | |
| 641 | putchar | |
| 642 | puts | |
| 643 | qsort | |
| 644 | raise | |
| 645 | rand | |
| 646 | realloc | |
| 647 | remove | |
| 648 | rename | |
| 649 | rewind | |
| 650 | scanf | |
| 651 | setbuf | |
| 652 | setlocale | |
| 653 | setvbuf | |
| 654 | signal | |
| 655 | sin | |
| 656 | sinh | |
| 657 | sprintf | |
| 658 | sqrt | |
| 659 | srand | |
| 660 | sscanf | |
| 661 | strcat | |
| 662 | strchr | |
| 663 | strcmp | |
| 664 | strcoll | |
| 665 | strcpy | |
| 666 | strcspn | |
| 667 | strerror | |
| 668 | strftime | |
| 669 | strlen | |
| 670 | strncat | |
| 671 | strncmp | |
| 672 | strncpy | |
| 673 | strpbrk | |
| 674 | strrchr | |
| 675 | strspn | |
| 676 | strstr | |
| 677 | strtod | |
| 678 | strtok | |
| 679 | strtol | |
| 680 | strtoul | |
| 681 | strxfrm | |
| 682 | swprintf | |
| 683 | swscanf | |
| 684 | system | |
| 685 | tan | |
| 686 | tanh | |
| 687 | time DATA | |
| 688 | ;_time32 = time | |
| 689 | tmpfile | |
| 690 | tmpnam | |
| 691 | tolower | |
| 692 | toupper | |
| 693 | towlower | |
| 694 | towupper | |
| 695 | ungetc | |
| 696 | ungetwc | |
| 697 | vfprintf | |
| 698 | vfwprintf | |
| 699 | vprintf | |
| 700 | vsprintf | |
| 701 | vswprintf | |
| 702 | vwprintf | |
| 703 | wcscat | |
| 704 | wcschr | |
| 705 | wcscmp | |
| 706 | wcscoll | |
| 707 | wcscpy | |
| 708 | wcscspn | |
| 709 | wcsftime | |
| 710 | wcslen | |
| 711 | wcsncat | |
| 712 | wcsncmp | |
| 713 | wcsncpy | |
| 714 | wcspbrk | |
| 715 | wcsrchr | |
| 716 | wcsspn | |
| 717 | wcsstr | |
| 718 | wcstod | |
| 719 | wcstok | |
| 720 | wcstol | |
| 721 | wcstombs | |
| 722 | wcstoul | |
| 723 | wcsxfrm | |
| 724 | wctomb | |
| 725 | wprintf | |
| 726 | wscanf |
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 | ; | |
| 6 | LIBRARY "CRYPTSP.dll" | |
| 7 | EXPORTS | |
| 8 | CheckSignatureInFile@4 | |
| 9 | CryptAcquireContextA@20 | |
| 10 | CryptAcquireContextW@20 | |
| 11 | CryptContextAddRef@12 | |
| 12 | CryptCreateHash@20 | |
| 13 | CryptDecrypt@24 | |
| 14 | CryptDeriveKey@20 | |
| 15 | CryptDestroyHash@4 | |
| 16 | CryptDestroyKey@4 | |
| 17 | CryptDuplicateHash@16 | |
| 18 | CryptDuplicateKey@16 | |
| 19 | CryptEncrypt@28 | |
| 20 | CryptEnumProviderTypesA@24 | |
| 21 | CryptEnumProviderTypesW@24 | |
| 22 | CryptEnumProvidersA@24 | |
| 23 | CryptEnumProvidersW@24 | |
| 24 | CryptExportKey@24 | |
| 25 | CryptGenKey@16 | |
| 26 | CryptGenRandom@12 | |
| 27 | CryptGetDefaultProviderA@20 | |
| 28 | CryptGetDefaultProviderW@20 | |
| 29 | CryptGetHashParam@20 | |
| 30 | CryptGetKeyParam@20 | |
| 31 | CryptGetProvParam@20 | |
| 32 | CryptGetUserKey@12 | |
| 33 | CryptHashData@16 | |
| 34 | CryptHashSessionKey@12 | |
| 35 | CryptImportKey@24 | |
| 36 | CryptReleaseContext@8 | |
| 37 | CryptSetHashParam@16 | |
| 38 | CryptSetKeyParam@16 | |
| 39 | CryptSetProvParam@16 | |
| 40 | CryptSetProviderA@8 | |
| 41 | CryptSetProviderExA@16 | |
| 42 | CryptSetProviderExW@16 | |
| 43 | CryptSetProviderW@8 | |
| 44 | CryptSignHashA@24 | |
| 45 | CryptSignHashW@24 | |
| 46 | CryptVerifySignatureA@24 | |
| 47 | CryptVerifySignatureW@24 | |
| 48 | SystemFunction035@4 |
lib/libc/mingw/lib32/ctl3d32.def created+27| ... | ... | @@ -0,0 +1,27 @@ |
| 1 | LIBRARY CTL3D32.DLL | |
| 2 | EXPORTS | |
| 3 | BtnWndProc3d@16 | |
| 4 | ComboWndProc3d@16 | |
| 5 | Ctl3dAutoSubclass@4 | |
| 6 | Ctl3dAutoSubclassEx@8 | |
| 7 | Ctl3dColorChange@0 | |
| 8 | Ctl3dCtlColor@8 | |
| 9 | Ctl3dCtlColorEx@12 | |
| 10 | Ctl3dDlgFramePaint@16 | |
| 11 | Ctl3dDlgProc@16 | |
| 12 | Ctl3dEnabled@0 | |
| 13 | Ctl3dGetVer@0 | |
| 14 | Ctl3dIsAutoSubclass@0 | |
| 15 | Ctl3dRegister@4 | |
| 16 | Ctl3dSetStyle@12 | |
| 17 | Ctl3dSubclassCtl@4 | |
| 18 | Ctl3dSubclassCtlEx@8 | |
| 19 | Ctl3dSubclassDlg@8 | |
| 20 | Ctl3dSubclassDlgEx@8 | |
| 21 | Ctl3dUnAutoSubclass@0 | |
| 22 | Ctl3dUnregister@4 | |
| 23 | Ctl3dUnsubclassCtl@4 | |
| 24 | Ctl3dWinIniChange@0 | |
| 25 | EditWndProc3d@16 | |
| 26 | ListWndProc3d@16 | |
| 27 | StaticWndProc3d@16 |
lib/libc/mingw/lib32/d2d1.def+10-2| ... | ... | @@ -5,8 +5,16 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "d2d1.dll" |
| 7 | 7 | EXPORTS |
| 8 | D2D1ComputeMaximumScaleFactor@4 | |
| 9 | D2D1ConvertColorSpace@12 | |
| 10 | D2D1CreateDevice@12 | |
| 11 | D2D1CreateDeviceContext@12 | |
| 8 | 12 | D2D1CreateFactory@16 |
| 13 | D2D1GetGradientMeshInteriorPointsFromCoonsPatch@64 | |
| 14 | D2D1InvertMatrix@4 | |
| 15 | D2D1IsMatrixInvertible@4 | |
| 9 | 16 | D2D1MakeRotateMatrix@16 |
| 10 | 17 | D2D1MakeSkewMatrix@20 |
| 11 | D2D1IsMatrixInvertible@4 | |
| 12 | D2D1InvertMatrix@4 | |
| 18 | D2D1SinCos@12 | |
| 19 | D2D1Tan@4 | |
| 20 | D2D1Vec3Length@12 |
lib/libc/mingw/lib32/d3d11.def-1| ... | ... | @@ -43,7 +43,6 @@ D3DKMTGetSharedPrimaryHandle@4 |
| 43 | 43 | D3DKMTLock@4 |
| 44 | 44 | D3DKMTOpenAdapterFromHdc@4 |
| 45 | 45 | D3DKMTOpenResource@4 |
| 46 | D3DKMTPresent@4 | |
| 47 | 46 | D3DKMTQueryAllocationResidency@4 |
| 48 | 47 | D3DKMTQueryResourceInfo@4 |
| 49 | 48 | D3DKMTRender@4 |
lib/libc/mingw/lib32/d3d8.def created+6| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | LIBRARY d3d8.dll | |
| 2 | EXPORTS | |
| 3 | ValidatePixelShader@16 | |
| 4 | ValidateVertexShader@20 | |
| 5 | ;DebugSetMute@0 ;unknown | |
| 6 | Direct3DCreate8@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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory@44 | |
| 9 | D3DDisassembleCode@20 | |
| 10 | D3DDisassembleEffect@12 | |
| 11 | D3DGetCodeDebugInfo@12 | |
| 12 | D3DGetInputAndOutputSignatureBlob@12 | |
| 13 | D3DGetInputSignatureBlob@12 | |
| 14 | D3DGetOutputSignatureBlob@12 | |
| 15 | D3DPreprocessFromMemory@28 | |
| 16 | D3DReflectCode@16 | |
| 17 | DebugSetMute@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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory@44 | |
| 9 | D3DDisassembleCode@20 | |
| 10 | D3DDisassembleEffect@12 | |
| 11 | D3DGetCodeDebugInfo@12 | |
| 12 | D3DGetInputAndOutputSignatureBlob@12 | |
| 13 | D3DGetInputSignatureBlob@12 | |
| 14 | D3DGetOutputSignatureBlob@12 | |
| 15 | D3DPreprocessFromMemory@28 | |
| 16 | D3DReflectCode@16 | |
| 17 | DebugSetMute@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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory@44 | |
| 9 | D3DDisassembleCode@20 | |
| 10 | D3DDisassembleEffect@12 | |
| 11 | D3DGetCodeDebugInfo@12 | |
| 12 | D3DGetInputAndOutputSignatureBlob@12 | |
| 13 | D3DGetInputSignatureBlob@12 | |
| 14 | D3DGetOutputSignatureBlob@12 | |
| 15 | D3DPreprocessFromMemory@28 | |
| 16 | D3DReflectCode@16 | |
| 17 | DebugSetMute@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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory@44 | |
| 9 | D3DDisassembleCode@20 | |
| 10 | D3DDisassembleEffect@12 | |
| 11 | D3DGetCodeDebugInfo@12 | |
| 12 | D3DGetInputAndOutputSignatureBlob@12 | |
| 13 | D3DGetInputSignatureBlob@12 | |
| 14 | D3DGetOutputSignatureBlob@12 | |
| 15 | D3DPreprocessFromMemory@28 | |
| 16 | D3DReflectCode@16 | |
| 17 | DebugSetMute@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 | ; | |
| 6 | LIBRARY "D3DCompiler_37.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory@44 | |
| 9 | D3DDisassembleCode@20 | |
| 10 | D3DDisassembleEffect@12 | |
| 11 | D3DGetCodeDebugInfo@12 | |
| 12 | D3DGetInputAndOutputSignatureBlob@12 | |
| 13 | D3DGetInputSignatureBlob@12 | |
| 14 | D3DGetOutputSignatureBlob@12 | |
| 15 | D3DPreprocessFromMemory@28 | |
| 16 | D3DReflectCode@16 | |
| 17 | DebugSetMute@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 | ; | |
| 6 | LIBRARY "D3DCompiler_38.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory@44 | |
| 9 | D3DDisassembleCode@20 | |
| 10 | D3DDisassembleEffect@12 | |
| 11 | D3DGetCodeDebugInfo@12 | |
| 12 | D3DGetInputAndOutputSignatureBlob@12 | |
| 13 | D3DGetInputSignatureBlob@12 | |
| 14 | D3DGetOutputSignatureBlob@12 | |
| 15 | D3DPreprocessFromMemory@28 | |
| 16 | D3DReflectCode@16 | |
| 17 | D3DReturnFailure1@12 | |
| 18 | DebugSetMute@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 | ; | |
| 6 | LIBRARY "D3DCompiler_39.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory@44 | |
| 9 | D3DDisassembleCode@20 | |
| 10 | D3DDisassembleEffect@12 | |
| 11 | D3DGetCodeDebugInfo@12 | |
| 12 | D3DGetInputAndOutputSignatureBlob@12 | |
| 13 | D3DGetInputSignatureBlob@12 | |
| 14 | D3DGetOutputSignatureBlob@12 | |
| 15 | D3DPreprocessFromMemory@28 | |
| 16 | D3DReflectCode@16 | |
| 17 | D3DReturnFailure1@12 | |
| 18 | DebugSetMute@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 | ; | |
| 6 | LIBRARY "D3DCompiler_40.dll" | |
| 7 | EXPORTS | |
| 8 | DebugSetMute@0 | |
| 9 | D3DCompile@44 | |
| 10 | D3DDisassemble10Effect@12 | |
| 11 | D3DDisassemble@20 | |
| 12 | D3DGetDebugInfo@12 | |
| 13 | D3DGetInputAndOutputSignatureBlob@12 | |
| 14 | D3DGetInputSignatureBlob@12 | |
| 15 | D3DGetOutputSignatureBlob@12 | |
| 16 | D3DPreprocess@28 | |
| 17 | D3DReflect@16 | |
| 18 | D3DReturnFailure1@12 | |
| 19 | D3DStripShader@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 | ; | |
| 6 | LIBRARY "D3DCompiler_41.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble@32 | |
| 9 | DebugSetMute@0 | |
| 10 | D3DCompile@44 | |
| 11 | D3DDisassemble10Effect@12 | |
| 12 | D3DDisassemble@20 | |
| 13 | D3DGetDebugInfo@12 | |
| 14 | D3DGetInputAndOutputSignatureBlob@12 | |
| 15 | D3DGetInputSignatureBlob@12 | |
| 16 | D3DGetOutputSignatureBlob@12 | |
| 17 | D3DPreprocess@28 | |
| 18 | D3DReflect@16 | |
| 19 | D3DReturnFailure1@12 | |
| 20 | D3DStripShader@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 | ; | |
| 6 | LIBRARY "D3DCompiler_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble@32 | |
| 9 | DebugSetMute@0 | |
| 10 | D3DCompile@44 | |
| 11 | D3DDisassemble10Effect@12 | |
| 12 | D3DDisassemble@20 | |
| 13 | D3DGetDebugInfo@12 | |
| 14 | D3DGetInputAndOutputSignatureBlob@12 | |
| 15 | D3DGetInputSignatureBlob@12 | |
| 16 | D3DGetOutputSignatureBlob@12 | |
| 17 | D3DPreprocess@28 | |
| 18 | D3DReflect@16 | |
| 19 | D3DReturnFailure1@12 | |
| 20 | D3DStripShader@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 | ; | |
| 6 | LIBRARY "D3DCOMPILER_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble@32 | |
| 9 | DebugSetMute@0 | |
| 10 | D3DCompile@44 | |
| 11 | D3DCompressShaders@16 | |
| 12 | D3DCreateBlob@8 | |
| 13 | D3DDecompressShaders@32 | |
| 14 | D3DDisassemble10Effect@12 | |
| 15 | D3DDisassemble@20 | |
| 16 | D3DGetBlobPart@20 | |
| 17 | D3DGetDebugInfo@12 | |
| 18 | D3DGetInputAndOutputSignatureBlob@12 | |
| 19 | D3DGetInputSignatureBlob@12 | |
| 20 | D3DGetOutputSignatureBlob@12 | |
| 21 | D3DPreprocess@28 | |
| 22 | D3DReflect@16 | |
| 23 | D3DReturnFailure1@12 | |
| 24 | D3DStripShader@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 | ; | |
| 6 | LIBRARY "D3DCOMPILER_46.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble@32 | |
| 9 | DebugSetMute@0 | |
| 10 | D3DCompile2@56 | |
| 11 | D3DCompile@44 | |
| 12 | D3DCompileFromFile@36 | |
| 13 | D3DCompressShaders@16 | |
| 14 | D3DCreateBlob@8 | |
| 15 | D3DDecompressShaders@32 | |
| 16 | D3DDisassemble10Effect@12 | |
| 17 | D3DDisassemble11Trace@28 | |
| 18 | D3DDisassemble@20 | |
| 19 | D3DDisassembleRegion@32 | |
| 20 | D3DGetBlobPart@20 | |
| 21 | D3DGetDebugInfo@12 | |
| 22 | D3DGetInputAndOutputSignatureBlob@12 | |
| 23 | D3DGetInputSignatureBlob@12 | |
| 24 | D3DGetOutputSignatureBlob@12 | |
| 25 | D3DGetTraceInstructionOffsets@28 | |
| 26 | D3DPreprocess@28 | |
| 27 | D3DReadFileToBlob@8 | |
| 28 | D3DReflect@16 | |
| 29 | D3DReturnFailure1@12 | |
| 30 | D3DSetBlobPart@28 | |
| 31 | D3DStripShader@16 | |
| 32 | D3DWriteBlobToFile@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 | ; | |
| 6 | LIBRARY "d3dcsx_46.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CreateFFT1DComplex@20 | |
| 9 | D3DX11CreateFFT1DReal@20 | |
| 10 | D3DX11CreateFFT2DComplex@24 | |
| 11 | D3DX11CreateFFT2DReal@24 | |
| 12 | D3DX11CreateFFT3DComplex@28 | |
| 13 | D3DX11CreateFFT3DReal@28 | |
| 14 | D3DX11CreateFFT@20 | |
| 15 | D3DX11CreateScan@16 | |
| 16 | D3DX11CreateSegmentedScan@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 | ; | |
| 6 | LIBRARY "d3dcsxd_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CreateFFT1DComplex@20 | |
| 9 | D3DX11CreateFFT1DReal@20 | |
| 10 | D3DX11CreateFFT2DComplex@24 | |
| 11 | D3DX11CreateFFT2DReal@24 | |
| 12 | D3DX11CreateFFT3DComplex@28 | |
| 13 | D3DX11CreateFFT3DReal@28 | |
| 14 | D3DX11CreateFFT@20 | |
| 15 | D3DX11CreateScan@16 | |
| 16 | D3DX11CreateSegmentedScan@12 |
lib/libc/mingw/lib32/d3dim.def created+15| ... | ... | @@ -0,0 +1,15 @@ |
| 1 | LIBRARY d3dim.dll | |
| 2 | EXPORTS | |
| 3 | ;D3DFree | |
| 4 | ;D3DMalloc | |
| 5 | ;D3DRealloc | |
| 6 | Direct3DCreate@12 | |
| 7 | ;Direct3DCreateDevice | |
| 8 | ;Direct3DCreateTexture | |
| 9 | ;Direct3DGetSWRastZPixFmts | |
| 10 | Direct3D_HALCleanUp@8 | |
| 11 | FlushD3DDevices@4 | |
| 12 | FlushD3DDevices2@4 | |
| 13 | PaletteAssociateNotify@16 | |
| 14 | PaletteUpdateNotify@20 | |
| 15 | SurfaceFlipNotify@4 |
lib/libc/mingw/lib32/d3drm.def created+23| ... | ... | @@ -0,0 +1,23 @@ |
| 1 | LIBRARY d3drm.dll | |
| 2 | EXPORTS | |
| 3 | D3DRMColorGetAlpha@4 | |
| 4 | D3DRMColorGetBlue@4 | |
| 5 | D3DRMColorGetGreen@4 | |
| 6 | D3DRMColorGetRed@4 | |
| 7 | D3DRMCreateColorRGB@12 | |
| 8 | D3DRMCreateColorRGBA@16 | |
| 9 | D3DRMMatrixFromQuaternion@8 | |
| 10 | D3DRMQuaternionFromRotation@12 | |
| 11 | D3DRMQuaternionMultiply@12 | |
| 12 | D3DRMQuaternionSlerp@16 | |
| 13 | D3DRMVectorAdd@12 | |
| 14 | D3DRMVectorCrossProduct@12 | |
| 15 | D3DRMVectorDotProduct@8 | |
| 16 | D3DRMVectorModulus@4 | |
| 17 | D3DRMVectorNormalize@4 | |
| 18 | D3DRMVectorRandom@4 | |
| 19 | D3DRMVectorReflect@12 | |
| 20 | D3DRMVectorRotate@16 | |
| 21 | D3DRMVectorScale@12 | |
| 22 | D3DRMVectorSubtract@12 | |
| 23 | Direct3DRMCreate@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 | ; | |
| 6 | LIBRARY "d3dx10_33.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateEffectFromFileA@48 | |
| 29 | D3DX10CreateEffectFromFileW@48 | |
| 30 | D3DX10CreateEffectFromMemory@56 | |
| 31 | D3DX10CreateEffectFromResourceA@56 | |
| 32 | D3DX10CreateEffectFromResourceW@56 | |
| 33 | D3DX10CreateEffectPoolFromFileA@44 | |
| 34 | D3DX10CreateEffectPoolFromFileW@44 | |
| 35 | D3DX10CreateEffectPoolFromMemory@52 | |
| 36 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 37 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 38 | D3DX10CreateFontA@48 | |
| 39 | D3DX10CreateFontIndirectA@12 | |
| 40 | D3DX10CreateFontIndirectW@12 | |
| 41 | D3DX10CreateFontW@48 | |
| 42 | D3DX10CreateMesh@32 | |
| 43 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 44 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 45 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 46 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 47 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 48 | D3DX10CreateSkinInfo@4 | |
| 49 | D3DX10CreateSprite@12 | |
| 50 | D3DX10CreateTextureFromFileA@24 | |
| 51 | D3DX10CreateTextureFromFileW@24 | |
| 52 | D3DX10CreateTextureFromMemory@28 | |
| 53 | D3DX10CreateTextureFromResourceA@28 | |
| 54 | D3DX10CreateTextureFromResourceW@28 | |
| 55 | D3DX10DisassembleEffect@12 | |
| 56 | D3DX10DisassembleShader@20 | |
| 57 | D3DX10FilterTexture@12 | |
| 58 | D3DX10GetDriverLevel@4 | |
| 59 | D3DX10GetImageInfoFromFileA@16 | |
| 60 | D3DX10GetImageInfoFromFileW@16 | |
| 61 | D3DX10GetImageInfoFromMemory@20 | |
| 62 | D3DX10GetImageInfoFromResourceA@20 | |
| 63 | D3DX10GetImageInfoFromResourceW@20 | |
| 64 | D3DX10LoadTextureFromTexture@12 | |
| 65 | D3DX10PreprocessShaderFromFileA@28 | |
| 66 | D3DX10PreprocessShaderFromFileW@28 | |
| 67 | D3DX10PreprocessShaderFromMemory@36 | |
| 68 | D3DX10PreprocessShaderFromResourceA@36 | |
| 69 | D3DX10PreprocessShaderFromResourceW@36 | |
| 70 | D3DX10ReflectShader@12 | |
| 71 | D3DX10SHProjectCubeMap@20 | |
| 72 | D3DX10SaveTextureToFileA@12 | |
| 73 | D3DX10SaveTextureToFileW@12 | |
| 74 | D3DX10SaveTextureToMemory@16 | |
| 75 | D3DX10UnsetAllDeviceObjects@4 | |
| 76 | D3DXBoxBoundProbe@16 | |
| 77 | D3DXColorAdjustContrast@12 | |
| 78 | D3DXColorAdjustSaturation@12 | |
| 79 | D3DXComputeBoundingBox@20 | |
| 80 | D3DXComputeBoundingSphere@20 | |
| 81 | D3DXCpuOptimizations@4 | |
| 82 | D3DXCreateMatrixStack@8 | |
| 83 | D3DXFloat16To32Array@12 | |
| 84 | D3DXFloat32To16Array@12 | |
| 85 | D3DXFresnelTerm@8 | |
| 86 | D3DXIntersectTri@32 | |
| 87 | D3DXMatrixAffineTransformation2D@20 | |
| 88 | D3DXMatrixAffineTransformation@20 | |
| 89 | D3DXMatrixDecompose@16 | |
| 90 | D3DXMatrixDeterminant@4 | |
| 91 | D3DXMatrixInverse@12 | |
| 92 | D3DXMatrixLookAtLH@16 | |
| 93 | D3DXMatrixLookAtRH@16 | |
| 94 | D3DXMatrixMultiply@12 | |
| 95 | D3DXMatrixMultiplyTranspose@12 | |
| 96 | D3DXMatrixOrthoLH@20 | |
| 97 | D3DXMatrixOrthoOffCenterLH@28 | |
| 98 | D3DXMatrixOrthoOffCenterRH@28 | |
| 99 | D3DXMatrixOrthoRH@20 | |
| 100 | D3DXMatrixPerspectiveFovLH@20 | |
| 101 | D3DXMatrixPerspectiveFovRH@20 | |
| 102 | D3DXMatrixPerspectiveLH@20 | |
| 103 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 104 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 105 | D3DXMatrixPerspectiveRH@20 | |
| 106 | D3DXMatrixReflect@8 | |
| 107 | D3DXMatrixRotationAxis@12 | |
| 108 | D3DXMatrixRotationQuaternion@8 | |
| 109 | D3DXMatrixRotationX@8 | |
| 110 | D3DXMatrixRotationY@8 | |
| 111 | D3DXMatrixRotationYawPitchRoll@16 | |
| 112 | D3DXMatrixRotationZ@8 | |
| 113 | D3DXMatrixScaling@16 | |
| 114 | D3DXMatrixShadow@12 | |
| 115 | D3DXMatrixTransformation2D@28 | |
| 116 | D3DXMatrixTransformation@28 | |
| 117 | D3DXMatrixTranslation@16 | |
| 118 | D3DXMatrixTranspose@8 | |
| 119 | D3DXPlaneFromPointNormal@12 | |
| 120 | D3DXPlaneFromPoints@16 | |
| 121 | D3DXPlaneIntersectLine@16 | |
| 122 | D3DXPlaneNormalize@8 | |
| 123 | D3DXPlaneTransform@12 | |
| 124 | D3DXPlaneTransformArray@24 | |
| 125 | D3DXQuaternionBaryCentric@24 | |
| 126 | D3DXQuaternionExp@8 | |
| 127 | D3DXQuaternionInverse@8 | |
| 128 | D3DXQuaternionLn@8 | |
| 129 | D3DXQuaternionMultiply@12 | |
| 130 | D3DXQuaternionNormalize@8 | |
| 131 | D3DXQuaternionRotationAxis@12 | |
| 132 | D3DXQuaternionRotationMatrix@8 | |
| 133 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 134 | D3DXQuaternionSlerp@16 | |
| 135 | D3DXQuaternionSquad@24 | |
| 136 | D3DXQuaternionSquadSetup@28 | |
| 137 | D3DXQuaternionToAxisAngle@12 | |
| 138 | D3DXSHAdd@16 | |
| 139 | D3DXSHDot@12 | |
| 140 | D3DXSHEvalConeLight@36 | |
| 141 | D3DXSHEvalDirection@12 | |
| 142 | D3DXSHEvalDirectionalLight@32 | |
| 143 | D3DXSHEvalHemisphereLight@52 | |
| 144 | D3DXSHEvalSphericalLight@36 | |
| 145 | D3DXSHMultiply2@12 | |
| 146 | D3DXSHMultiply3@12 | |
| 147 | D3DXSHMultiply4@12 | |
| 148 | D3DXSHMultiply5@12 | |
| 149 | D3DXSHMultiply6@12 | |
| 150 | D3DXSHRotate@16 | |
| 151 | D3DXSHRotateZ@16 | |
| 152 | D3DXSHScale@16 | |
| 153 | D3DXSphereBoundProbe@16 | |
| 154 | D3DXVec2BaryCentric@24 | |
| 155 | D3DXVec2CatmullRom@24 | |
| 156 | D3DXVec2Hermite@24 | |
| 157 | D3DXVec2Normalize@8 | |
| 158 | D3DXVec2Transform@12 | |
| 159 | D3DXVec2TransformArray@24 | |
| 160 | D3DXVec2TransformCoord@12 | |
| 161 | D3DXVec2TransformCoordArray@24 | |
| 162 | D3DXVec2TransformNormal@12 | |
| 163 | D3DXVec2TransformNormalArray@24 | |
| 164 | D3DXVec3BaryCentric@24 | |
| 165 | D3DXVec3CatmullRom@24 | |
| 166 | D3DXVec3Hermite@24 | |
| 167 | D3DXVec3Normalize@8 | |
| 168 | D3DXVec3Project@24 | |
| 169 | D3DXVec3ProjectArray@36 | |
| 170 | D3DXVec3Transform@12 | |
| 171 | D3DXVec3TransformArray@24 | |
| 172 | D3DXVec3TransformCoord@12 | |
| 173 | D3DXVec3TransformCoordArray@24 | |
| 174 | D3DXVec3TransformNormal@12 | |
| 175 | D3DXVec3TransformNormalArray@24 | |
| 176 | D3DXVec3Unproject@24 | |
| 177 | D3DXVec3UnprojectArray@36 | |
| 178 | D3DXVec4BaryCentric@24 | |
| 179 | D3DXVec4CatmullRom@24 | |
| 180 | D3DXVec4Cross@16 | |
| 181 | D3DXVec4Hermite@24 | |
| 182 | D3DXVec4Normalize@8 | |
| 183 | D3DXVec4Transform@12 | |
| 184 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_34.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateEffectFromFileA@48 | |
| 29 | D3DX10CreateEffectFromFileW@48 | |
| 30 | D3DX10CreateEffectFromMemory@56 | |
| 31 | D3DX10CreateEffectFromResourceA@56 | |
| 32 | D3DX10CreateEffectFromResourceW@56 | |
| 33 | D3DX10CreateEffectPoolFromFileA@44 | |
| 34 | D3DX10CreateEffectPoolFromFileW@44 | |
| 35 | D3DX10CreateEffectPoolFromMemory@52 | |
| 36 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 37 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 38 | D3DX10CreateFontA@48 | |
| 39 | D3DX10CreateFontIndirectA@12 | |
| 40 | D3DX10CreateFontIndirectW@12 | |
| 41 | D3DX10CreateFontW@48 | |
| 42 | D3DX10CreateMesh@32 | |
| 43 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 44 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 45 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 46 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 47 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 48 | D3DX10CreateSkinInfo@4 | |
| 49 | D3DX10CreateSprite@12 | |
| 50 | D3DX10CreateTextureFromFileA@24 | |
| 51 | D3DX10CreateTextureFromFileW@24 | |
| 52 | D3DX10CreateTextureFromMemory@28 | |
| 53 | D3DX10CreateTextureFromResourceA@28 | |
| 54 | D3DX10CreateTextureFromResourceW@28 | |
| 55 | D3DX10DisassembleEffect@12 | |
| 56 | D3DX10DisassembleShader@20 | |
| 57 | D3DX10FilterTexture@12 | |
| 58 | D3DX10GetDriverLevel@4 | |
| 59 | D3DX10GetImageInfoFromFileA@16 | |
| 60 | D3DX10GetImageInfoFromFileW@16 | |
| 61 | D3DX10GetImageInfoFromMemory@20 | |
| 62 | D3DX10GetImageInfoFromResourceA@20 | |
| 63 | D3DX10GetImageInfoFromResourceW@20 | |
| 64 | D3DX10LoadTextureFromTexture@12 | |
| 65 | D3DX10PreprocessShaderFromFileA@28 | |
| 66 | D3DX10PreprocessShaderFromFileW@28 | |
| 67 | D3DX10PreprocessShaderFromMemory@36 | |
| 68 | D3DX10PreprocessShaderFromResourceA@36 | |
| 69 | D3DX10PreprocessShaderFromResourceW@36 | |
| 70 | D3DX10ReflectShader@12 | |
| 71 | D3DX10SHProjectCubeMap@20 | |
| 72 | D3DX10SaveTextureToFileA@12 | |
| 73 | D3DX10SaveTextureToFileW@12 | |
| 74 | D3DX10SaveTextureToMemory@16 | |
| 75 | D3DX10UnsetAllDeviceObjects@4 | |
| 76 | D3DXBoxBoundProbe@16 | |
| 77 | D3DXColorAdjustContrast@12 | |
| 78 | D3DXColorAdjustSaturation@12 | |
| 79 | D3DXComputeBoundingBox@20 | |
| 80 | D3DXComputeBoundingSphere@20 | |
| 81 | D3DXCpuOptimizations@4 | |
| 82 | D3DXCreateMatrixStack@8 | |
| 83 | D3DXFloat16To32Array@12 | |
| 84 | D3DXFloat32To16Array@12 | |
| 85 | D3DXFresnelTerm@8 | |
| 86 | D3DXIntersectTri@32 | |
| 87 | D3DXMatrixAffineTransformation2D@20 | |
| 88 | D3DXMatrixAffineTransformation@20 | |
| 89 | D3DXMatrixDecompose@16 | |
| 90 | D3DXMatrixDeterminant@4 | |
| 91 | D3DXMatrixInverse@12 | |
| 92 | D3DXMatrixLookAtLH@16 | |
| 93 | D3DXMatrixLookAtRH@16 | |
| 94 | D3DXMatrixMultiply@12 | |
| 95 | D3DXMatrixMultiplyTranspose@12 | |
| 96 | D3DXMatrixOrthoLH@20 | |
| 97 | D3DXMatrixOrthoOffCenterLH@28 | |
| 98 | D3DXMatrixOrthoOffCenterRH@28 | |
| 99 | D3DXMatrixOrthoRH@20 | |
| 100 | D3DXMatrixPerspectiveFovLH@20 | |
| 101 | D3DXMatrixPerspectiveFovRH@20 | |
| 102 | D3DXMatrixPerspectiveLH@20 | |
| 103 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 104 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 105 | D3DXMatrixPerspectiveRH@20 | |
| 106 | D3DXMatrixReflect@8 | |
| 107 | D3DXMatrixRotationAxis@12 | |
| 108 | D3DXMatrixRotationQuaternion@8 | |
| 109 | D3DXMatrixRotationX@8 | |
| 110 | D3DXMatrixRotationY@8 | |
| 111 | D3DXMatrixRotationYawPitchRoll@16 | |
| 112 | D3DXMatrixRotationZ@8 | |
| 113 | D3DXMatrixScaling@16 | |
| 114 | D3DXMatrixShadow@12 | |
| 115 | D3DXMatrixTransformation2D@28 | |
| 116 | D3DXMatrixTransformation@28 | |
| 117 | D3DXMatrixTranslation@16 | |
| 118 | D3DXMatrixTranspose@8 | |
| 119 | D3DXPlaneFromPointNormal@12 | |
| 120 | D3DXPlaneFromPoints@16 | |
| 121 | D3DXPlaneIntersectLine@16 | |
| 122 | D3DXPlaneNormalize@8 | |
| 123 | D3DXPlaneTransform@12 | |
| 124 | D3DXPlaneTransformArray@24 | |
| 125 | D3DXQuaternionBaryCentric@24 | |
| 126 | D3DXQuaternionExp@8 | |
| 127 | D3DXQuaternionInverse@8 | |
| 128 | D3DXQuaternionLn@8 | |
| 129 | D3DXQuaternionMultiply@12 | |
| 130 | D3DXQuaternionNormalize@8 | |
| 131 | D3DXQuaternionRotationAxis@12 | |
| 132 | D3DXQuaternionRotationMatrix@8 | |
| 133 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 134 | D3DXQuaternionSlerp@16 | |
| 135 | D3DXQuaternionSquad@24 | |
| 136 | D3DXQuaternionSquadSetup@28 | |
| 137 | D3DXQuaternionToAxisAngle@12 | |
| 138 | D3DXSHAdd@16 | |
| 139 | D3DXSHDot@12 | |
| 140 | D3DXSHEvalConeLight@36 | |
| 141 | D3DXSHEvalDirection@12 | |
| 142 | D3DXSHEvalDirectionalLight@32 | |
| 143 | D3DXSHEvalHemisphereLight@52 | |
| 144 | D3DXSHEvalSphericalLight@36 | |
| 145 | D3DXSHMultiply2@12 | |
| 146 | D3DXSHMultiply3@12 | |
| 147 | D3DXSHMultiply4@12 | |
| 148 | D3DXSHMultiply5@12 | |
| 149 | D3DXSHMultiply6@12 | |
| 150 | D3DXSHRotate@16 | |
| 151 | D3DXSHRotateZ@16 | |
| 152 | D3DXSHScale@16 | |
| 153 | D3DXSphereBoundProbe@16 | |
| 154 | D3DXVec2BaryCentric@24 | |
| 155 | D3DXVec2CatmullRom@24 | |
| 156 | D3DXVec2Hermite@24 | |
| 157 | D3DXVec2Normalize@8 | |
| 158 | D3DXVec2Transform@12 | |
| 159 | D3DXVec2TransformArray@24 | |
| 160 | D3DXVec2TransformCoord@12 | |
| 161 | D3DXVec2TransformCoordArray@24 | |
| 162 | D3DXVec2TransformNormal@12 | |
| 163 | D3DXVec2TransformNormalArray@24 | |
| 164 | D3DXVec3BaryCentric@24 | |
| 165 | D3DXVec3CatmullRom@24 | |
| 166 | D3DXVec3Hermite@24 | |
| 167 | D3DXVec3Normalize@8 | |
| 168 | D3DXVec3Project@24 | |
| 169 | D3DXVec3ProjectArray@36 | |
| 170 | D3DXVec3Transform@12 | |
| 171 | D3DXVec3TransformArray@24 | |
| 172 | D3DXVec3TransformCoord@12 | |
| 173 | D3DXVec3TransformCoordArray@24 | |
| 174 | D3DXVec3TransformNormal@12 | |
| 175 | D3DXVec3TransformNormalArray@24 | |
| 176 | D3DXVec3Unproject@24 | |
| 177 | D3DXVec3UnprojectArray@36 | |
| 178 | D3DXVec4BaryCentric@24 | |
| 179 | D3DXVec4CatmullRom@24 | |
| 180 | D3DXVec4Cross@16 | |
| 181 | D3DXVec4Hermite@24 | |
| 182 | D3DXVec4Normalize@8 | |
| 183 | D3DXVec4Transform@12 | |
| 184 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_35.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateDevice@20 | |
| 29 | D3DX10CreateDeviceAndSwapChain@28 | |
| 30 | D3DX10CreateEffectFromFileA@48 | |
| 31 | D3DX10CreateEffectFromFileW@48 | |
| 32 | D3DX10CreateEffectFromMemory@56 | |
| 33 | D3DX10CreateEffectFromResourceA@56 | |
| 34 | D3DX10CreateEffectFromResourceW@56 | |
| 35 | D3DX10CreateEffectPoolFromFileA@44 | |
| 36 | D3DX10CreateEffectPoolFromFileW@44 | |
| 37 | D3DX10CreateEffectPoolFromMemory@52 | |
| 38 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 40 | D3DX10CreateFontA@48 | |
| 41 | D3DX10CreateFontIndirectA@12 | |
| 42 | D3DX10CreateFontIndirectW@12 | |
| 43 | D3DX10CreateFontW@48 | |
| 44 | D3DX10CreateMesh@32 | |
| 45 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 46 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 47 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 50 | D3DX10CreateSkinInfo@4 | |
| 51 | D3DX10CreateSprite@12 | |
| 52 | D3DX10CreateTextureFromFileA@24 | |
| 53 | D3DX10CreateTextureFromFileW@24 | |
| 54 | D3DX10CreateTextureFromMemory@28 | |
| 55 | D3DX10CreateTextureFromResourceA@28 | |
| 56 | D3DX10CreateTextureFromResourceW@28 | |
| 57 | D3DX10DisassembleEffect@12 | |
| 58 | D3DX10DisassembleShader@20 | |
| 59 | D3DX10FilterTexture@12 | |
| 60 | D3DX10GetDriverLevel@4 | |
| 61 | D3DX10GetFeatureLevel1@8 | |
| 62 | D3DX10GetImageInfoFromFileA@16 | |
| 63 | D3DX10GetImageInfoFromFileW@16 | |
| 64 | D3DX10GetImageInfoFromMemory@20 | |
| 65 | D3DX10GetImageInfoFromResourceA@20 | |
| 66 | D3DX10GetImageInfoFromResourceW@20 | |
| 67 | D3DX10LoadTextureFromTexture@12 | |
| 68 | D3DX10PreprocessShaderFromFileA@28 | |
| 69 | D3DX10PreprocessShaderFromFileW@28 | |
| 70 | D3DX10PreprocessShaderFromMemory@36 | |
| 71 | D3DX10PreprocessShaderFromResourceA@36 | |
| 72 | D3DX10PreprocessShaderFromResourceW@36 | |
| 73 | D3DX10ReflectShader@12 | |
| 74 | D3DX10SHProjectCubeMap@20 | |
| 75 | D3DX10SaveTextureToFileA@12 | |
| 76 | D3DX10SaveTextureToFileW@12 | |
| 77 | D3DX10SaveTextureToMemory@16 | |
| 78 | D3DX10UnsetAllDeviceObjects@4 | |
| 79 | D3DXBoxBoundProbe@16 | |
| 80 | D3DXColorAdjustContrast@12 | |
| 81 | D3DXColorAdjustSaturation@12 | |
| 82 | D3DXComputeBoundingBox@20 | |
| 83 | D3DXComputeBoundingSphere@20 | |
| 84 | D3DXCpuOptimizations@4 | |
| 85 | D3DXCreateMatrixStack@8 | |
| 86 | D3DXFloat16To32Array@12 | |
| 87 | D3DXFloat32To16Array@12 | |
| 88 | D3DXFresnelTerm@8 | |
| 89 | D3DXIntersectTri@32 | |
| 90 | D3DXMatrixAffineTransformation2D@20 | |
| 91 | D3DXMatrixAffineTransformation@20 | |
| 92 | D3DXMatrixDecompose@16 | |
| 93 | D3DXMatrixDeterminant@4 | |
| 94 | D3DXMatrixInverse@12 | |
| 95 | D3DXMatrixLookAtLH@16 | |
| 96 | D3DXMatrixLookAtRH@16 | |
| 97 | D3DXMatrixMultiply@12 | |
| 98 | D3DXMatrixMultiplyTranspose@12 | |
| 99 | D3DXMatrixOrthoLH@20 | |
| 100 | D3DXMatrixOrthoOffCenterLH@28 | |
| 101 | D3DXMatrixOrthoOffCenterRH@28 | |
| 102 | D3DXMatrixOrthoRH@20 | |
| 103 | D3DXMatrixPerspectiveFovLH@20 | |
| 104 | D3DXMatrixPerspectiveFovRH@20 | |
| 105 | D3DXMatrixPerspectiveLH@20 | |
| 106 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 107 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 108 | D3DXMatrixPerspectiveRH@20 | |
| 109 | D3DXMatrixReflect@8 | |
| 110 | D3DXMatrixRotationAxis@12 | |
| 111 | D3DXMatrixRotationQuaternion@8 | |
| 112 | D3DXMatrixRotationX@8 | |
| 113 | D3DXMatrixRotationY@8 | |
| 114 | D3DXMatrixRotationYawPitchRoll@16 | |
| 115 | D3DXMatrixRotationZ@8 | |
| 116 | D3DXMatrixScaling@16 | |
| 117 | D3DXMatrixShadow@12 | |
| 118 | D3DXMatrixTransformation2D@28 | |
| 119 | D3DXMatrixTransformation@28 | |
| 120 | D3DXMatrixTranslation@16 | |
| 121 | D3DXMatrixTranspose@8 | |
| 122 | D3DXPlaneFromPointNormal@12 | |
| 123 | D3DXPlaneFromPoints@16 | |
| 124 | D3DXPlaneIntersectLine@16 | |
| 125 | D3DXPlaneNormalize@8 | |
| 126 | D3DXPlaneTransform@12 | |
| 127 | D3DXPlaneTransformArray@24 | |
| 128 | D3DXQuaternionBaryCentric@24 | |
| 129 | D3DXQuaternionExp@8 | |
| 130 | D3DXQuaternionInverse@8 | |
| 131 | D3DXQuaternionLn@8 | |
| 132 | D3DXQuaternionMultiply@12 | |
| 133 | D3DXQuaternionNormalize@8 | |
| 134 | D3DXQuaternionRotationAxis@12 | |
| 135 | D3DXQuaternionRotationMatrix@8 | |
| 136 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 137 | D3DXQuaternionSlerp@16 | |
| 138 | D3DXQuaternionSquad@24 | |
| 139 | D3DXQuaternionSquadSetup@28 | |
| 140 | D3DXQuaternionToAxisAngle@12 | |
| 141 | D3DXSHAdd@16 | |
| 142 | D3DXSHDot@12 | |
| 143 | D3DXSHEvalConeLight@36 | |
| 144 | D3DXSHEvalDirection@12 | |
| 145 | D3DXSHEvalDirectionalLight@32 | |
| 146 | D3DXSHEvalHemisphereLight@52 | |
| 147 | D3DXSHEvalSphericalLight@36 | |
| 148 | D3DXSHMultiply2@12 | |
| 149 | D3DXSHMultiply3@12 | |
| 150 | D3DXSHMultiply4@12 | |
| 151 | D3DXSHMultiply5@12 | |
| 152 | D3DXSHMultiply6@12 | |
| 153 | D3DXSHRotate@16 | |
| 154 | D3DXSHRotateZ@16 | |
| 155 | D3DXSHScale@16 | |
| 156 | D3DXSphereBoundProbe@16 | |
| 157 | D3DXVec2BaryCentric@24 | |
| 158 | D3DXVec2CatmullRom@24 | |
| 159 | D3DXVec2Hermite@24 | |
| 160 | D3DXVec2Normalize@8 | |
| 161 | D3DXVec2Transform@12 | |
| 162 | D3DXVec2TransformArray@24 | |
| 163 | D3DXVec2TransformCoord@12 | |
| 164 | D3DXVec2TransformCoordArray@24 | |
| 165 | D3DXVec2TransformNormal@12 | |
| 166 | D3DXVec2TransformNormalArray@24 | |
| 167 | D3DXVec3BaryCentric@24 | |
| 168 | D3DXVec3CatmullRom@24 | |
| 169 | D3DXVec3Hermite@24 | |
| 170 | D3DXVec3Normalize@8 | |
| 171 | D3DXVec3Project@24 | |
| 172 | D3DXVec3ProjectArray@36 | |
| 173 | D3DXVec3Transform@12 | |
| 174 | D3DXVec3TransformArray@24 | |
| 175 | D3DXVec3TransformCoord@12 | |
| 176 | D3DXVec3TransformCoordArray@24 | |
| 177 | D3DXVec3TransformNormal@12 | |
| 178 | D3DXVec3TransformNormalArray@24 | |
| 179 | D3DXVec3Unproject@24 | |
| 180 | D3DXVec3UnprojectArray@36 | |
| 181 | D3DXVec4BaryCentric@24 | |
| 182 | D3DXVec4CatmullRom@24 | |
| 183 | D3DXVec4Cross@16 | |
| 184 | D3DXVec4Hermite@24 | |
| 185 | D3DXVec4Normalize@8 | |
| 186 | D3DXVec4Transform@12 | |
| 187 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_36.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateDevice@20 | |
| 29 | D3DX10CreateDeviceAndSwapChain@28 | |
| 30 | D3DX10CreateEffectFromFileA@48 | |
| 31 | D3DX10CreateEffectFromFileW@48 | |
| 32 | D3DX10CreateEffectFromMemory@56 | |
| 33 | D3DX10CreateEffectFromResourceA@56 | |
| 34 | D3DX10CreateEffectFromResourceW@56 | |
| 35 | D3DX10CreateEffectPoolFromFileA@44 | |
| 36 | D3DX10CreateEffectPoolFromFileW@44 | |
| 37 | D3DX10CreateEffectPoolFromMemory@52 | |
| 38 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 40 | D3DX10CreateFontA@48 | |
| 41 | D3DX10CreateFontIndirectA@12 | |
| 42 | D3DX10CreateFontIndirectW@12 | |
| 43 | D3DX10CreateFontW@48 | |
| 44 | D3DX10CreateMesh@32 | |
| 45 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 46 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 47 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 50 | D3DX10CreateSkinInfo@4 | |
| 51 | D3DX10CreateSprite@12 | |
| 52 | D3DX10CreateTextureFromFileA@24 | |
| 53 | D3DX10CreateTextureFromFileW@24 | |
| 54 | D3DX10CreateTextureFromMemory@28 | |
| 55 | D3DX10CreateTextureFromResourceA@28 | |
| 56 | D3DX10CreateTextureFromResourceW@28 | |
| 57 | D3DX10DisassembleEffect@12 | |
| 58 | D3DX10DisassembleShader@20 | |
| 59 | D3DX10FilterTexture@12 | |
| 60 | D3DX10GetDriverLevel@4 | |
| 61 | D3DX10GetFeatureLevel1@8 | |
| 62 | D3DX10GetImageInfoFromFileA@16 | |
| 63 | D3DX10GetImageInfoFromFileW@16 | |
| 64 | D3DX10GetImageInfoFromMemory@20 | |
| 65 | D3DX10GetImageInfoFromResourceA@20 | |
| 66 | D3DX10GetImageInfoFromResourceW@20 | |
| 67 | D3DX10LoadTextureFromTexture@12 | |
| 68 | D3DX10PreprocessShaderFromFileA@28 | |
| 69 | D3DX10PreprocessShaderFromFileW@28 | |
| 70 | D3DX10PreprocessShaderFromMemory@36 | |
| 71 | D3DX10PreprocessShaderFromResourceA@36 | |
| 72 | D3DX10PreprocessShaderFromResourceW@36 | |
| 73 | D3DX10ReflectShader@12 | |
| 74 | D3DX10SHProjectCubeMap@20 | |
| 75 | D3DX10SaveTextureToFileA@12 | |
| 76 | D3DX10SaveTextureToFileW@12 | |
| 77 | D3DX10SaveTextureToMemory@16 | |
| 78 | D3DX10UnsetAllDeviceObjects@4 | |
| 79 | D3DXBoxBoundProbe@16 | |
| 80 | D3DXColorAdjustContrast@12 | |
| 81 | D3DXColorAdjustSaturation@12 | |
| 82 | D3DXComputeBoundingBox@20 | |
| 83 | D3DXComputeBoundingSphere@20 | |
| 84 | D3DXCpuOptimizations@4 | |
| 85 | D3DXCreateMatrixStack@8 | |
| 86 | D3DXFloat16To32Array@12 | |
| 87 | D3DXFloat32To16Array@12 | |
| 88 | D3DXFresnelTerm@8 | |
| 89 | D3DXIntersectTri@32 | |
| 90 | D3DXMatrixAffineTransformation2D@20 | |
| 91 | D3DXMatrixAffineTransformation@20 | |
| 92 | D3DXMatrixDecompose@16 | |
| 93 | D3DXMatrixDeterminant@4 | |
| 94 | D3DXMatrixInverse@12 | |
| 95 | D3DXMatrixLookAtLH@16 | |
| 96 | D3DXMatrixLookAtRH@16 | |
| 97 | D3DXMatrixMultiply@12 | |
| 98 | D3DXMatrixMultiplyTranspose@12 | |
| 99 | D3DXMatrixOrthoLH@20 | |
| 100 | D3DXMatrixOrthoOffCenterLH@28 | |
| 101 | D3DXMatrixOrthoOffCenterRH@28 | |
| 102 | D3DXMatrixOrthoRH@20 | |
| 103 | D3DXMatrixPerspectiveFovLH@20 | |
| 104 | D3DXMatrixPerspectiveFovRH@20 | |
| 105 | D3DXMatrixPerspectiveLH@20 | |
| 106 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 107 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 108 | D3DXMatrixPerspectiveRH@20 | |
| 109 | D3DXMatrixReflect@8 | |
| 110 | D3DXMatrixRotationAxis@12 | |
| 111 | D3DXMatrixRotationQuaternion@8 | |
| 112 | D3DXMatrixRotationX@8 | |
| 113 | D3DXMatrixRotationY@8 | |
| 114 | D3DXMatrixRotationYawPitchRoll@16 | |
| 115 | D3DXMatrixRotationZ@8 | |
| 116 | D3DXMatrixScaling@16 | |
| 117 | D3DXMatrixShadow@12 | |
| 118 | D3DXMatrixTransformation2D@28 | |
| 119 | D3DXMatrixTransformation@28 | |
| 120 | D3DXMatrixTranslation@16 | |
| 121 | D3DXMatrixTranspose@8 | |
| 122 | D3DXPlaneFromPointNormal@12 | |
| 123 | D3DXPlaneFromPoints@16 | |
| 124 | D3DXPlaneIntersectLine@16 | |
| 125 | D3DXPlaneNormalize@8 | |
| 126 | D3DXPlaneTransform@12 | |
| 127 | D3DXPlaneTransformArray@24 | |
| 128 | D3DXQuaternionBaryCentric@24 | |
| 129 | D3DXQuaternionExp@8 | |
| 130 | D3DXQuaternionInverse@8 | |
| 131 | D3DXQuaternionLn@8 | |
| 132 | D3DXQuaternionMultiply@12 | |
| 133 | D3DXQuaternionNormalize@8 | |
| 134 | D3DXQuaternionRotationAxis@12 | |
| 135 | D3DXQuaternionRotationMatrix@8 | |
| 136 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 137 | D3DXQuaternionSlerp@16 | |
| 138 | D3DXQuaternionSquad@24 | |
| 139 | D3DXQuaternionSquadSetup@28 | |
| 140 | D3DXQuaternionToAxisAngle@12 | |
| 141 | D3DXSHAdd@16 | |
| 142 | D3DXSHDot@12 | |
| 143 | D3DXSHEvalConeLight@36 | |
| 144 | D3DXSHEvalDirection@12 | |
| 145 | D3DXSHEvalDirectionalLight@32 | |
| 146 | D3DXSHEvalHemisphereLight@52 | |
| 147 | D3DXSHEvalSphericalLight@36 | |
| 148 | D3DXSHMultiply2@12 | |
| 149 | D3DXSHMultiply3@12 | |
| 150 | D3DXSHMultiply4@12 | |
| 151 | D3DXSHMultiply5@12 | |
| 152 | D3DXSHMultiply6@12 | |
| 153 | D3DXSHRotate@16 | |
| 154 | D3DXSHRotateZ@16 | |
| 155 | D3DXSHScale@16 | |
| 156 | D3DXSphereBoundProbe@16 | |
| 157 | D3DXVec2BaryCentric@24 | |
| 158 | D3DXVec2CatmullRom@24 | |
| 159 | D3DXVec2Hermite@24 | |
| 160 | D3DXVec2Normalize@8 | |
| 161 | D3DXVec2Transform@12 | |
| 162 | D3DXVec2TransformArray@24 | |
| 163 | D3DXVec2TransformCoord@12 | |
| 164 | D3DXVec2TransformCoordArray@24 | |
| 165 | D3DXVec2TransformNormal@12 | |
| 166 | D3DXVec2TransformNormalArray@24 | |
| 167 | D3DXVec3BaryCentric@24 | |
| 168 | D3DXVec3CatmullRom@24 | |
| 169 | D3DXVec3Hermite@24 | |
| 170 | D3DXVec3Normalize@8 | |
| 171 | D3DXVec3Project@24 | |
| 172 | D3DXVec3ProjectArray@36 | |
| 173 | D3DXVec3Transform@12 | |
| 174 | D3DXVec3TransformArray@24 | |
| 175 | D3DXVec3TransformCoord@12 | |
| 176 | D3DXVec3TransformCoordArray@24 | |
| 177 | D3DXVec3TransformNormal@12 | |
| 178 | D3DXVec3TransformNormalArray@24 | |
| 179 | D3DXVec3Unproject@24 | |
| 180 | D3DXVec3UnprojectArray@36 | |
| 181 | D3DXVec4BaryCentric@24 | |
| 182 | D3DXVec4CatmullRom@24 | |
| 183 | D3DXVec4Cross@16 | |
| 184 | D3DXVec4Hermite@24 | |
| 185 | D3DXVec4Normalize@8 | |
| 186 | D3DXVec4Transform@12 | |
| 187 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_37.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateReduction@12 | |
| 9 | D3DX10CreateThreadPump@12 | |
| 10 | D3DX10GetDriverLevel@4 | |
| 11 | D3DX10CheckVersion@8 | |
| 12 | D3DX10CompileFromFileA@44 | |
| 13 | D3DX10CompileFromFileW@44 | |
| 14 | D3DX10CompileFromMemory@52 | |
| 15 | D3DX10CompileFromResourceA@52 | |
| 16 | D3DX10CompileFromResourceW@52 | |
| 17 | D3DX10ComputeNormalMap@20 | |
| 18 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 19 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 20 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 21 | D3DX10CreateAsyncFileLoaderA@8 | |
| 22 | D3DX10CreateAsyncFileLoaderW@8 | |
| 23 | D3DX10CreateAsyncMemoryLoader@12 | |
| 24 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 25 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 26 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 27 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 28 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 29 | D3DX10CreateAsyncTextureProcessor@12 | |
| 30 | D3DX10CreateDevice@20 | |
| 31 | D3DX10CreateDeviceAndSwapChain@28 | |
| 32 | D3DX10CreateEffectFromFileA@48 | |
| 33 | D3DX10CreateEffectFromFileW@48 | |
| 34 | D3DX10CreateEffectFromMemory@56 | |
| 35 | D3DX10CreateEffectFromResourceA@56 | |
| 36 | D3DX10CreateEffectFromResourceW@56 | |
| 37 | D3DX10CreateEffectPoolFromFileA@44 | |
| 38 | D3DX10CreateEffectPoolFromFileW@44 | |
| 39 | D3DX10CreateEffectPoolFromMemory@52 | |
| 40 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 41 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 42 | D3DX10CreateFontA@48 | |
| 43 | D3DX10CreateFontIndirectA@12 | |
| 44 | D3DX10CreateFontIndirectW@12 | |
| 45 | D3DX10CreateFontW@48 | |
| 46 | D3DX10CreateMesh@32 | |
| 47 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 48 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 49 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 50 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 51 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 52 | D3DX10CreateSkinInfo@4 | |
| 53 | D3DX10CreateSprite@12 | |
| 54 | D3DX10CreateTextureFromFileA@24 | |
| 55 | D3DX10CreateTextureFromFileW@24 | |
| 56 | D3DX10CreateTextureFromMemory@28 | |
| 57 | D3DX10CreateTextureFromResourceA@28 | |
| 58 | D3DX10CreateTextureFromResourceW@28 | |
| 59 | D3DX10DisassembleEffect@12 | |
| 60 | D3DX10DisassembleShader@20 | |
| 61 | D3DX10FilterTexture@12 | |
| 62 | D3DX10GetFeatureLevel1@8 | |
| 63 | D3DX10GetImageInfoFromFileA@16 | |
| 64 | D3DX10GetImageInfoFromFileW@16 | |
| 65 | D3DX10GetImageInfoFromMemory@20 | |
| 66 | D3DX10GetImageInfoFromResourceA@20 | |
| 67 | D3DX10GetImageInfoFromResourceW@20 | |
| 68 | D3DX10LoadTextureFromTexture@12 | |
| 69 | D3DX10PreprocessShaderFromFileA@28 | |
| 70 | D3DX10PreprocessShaderFromFileW@28 | |
| 71 | D3DX10PreprocessShaderFromMemory@36 | |
| 72 | D3DX10PreprocessShaderFromResourceA@36 | |
| 73 | D3DX10PreprocessShaderFromResourceW@36 | |
| 74 | D3DX10ReflectShader@12 | |
| 75 | D3DX10SHProjectCubeMap@20 | |
| 76 | D3DX10SaveTextureToFileA@12 | |
| 77 | D3DX10SaveTextureToFileW@12 | |
| 78 | D3DX10SaveTextureToMemory@16 | |
| 79 | D3DX10UnsetAllDeviceObjects@4 | |
| 80 | D3DXBoxBoundProbe@16 | |
| 81 | D3DXColorAdjustContrast@12 | |
| 82 | D3DXColorAdjustSaturation@12 | |
| 83 | D3DXComputeBoundingBox@20 | |
| 84 | D3DXComputeBoundingSphere@20 | |
| 85 | D3DXCpuOptimizations@4 | |
| 86 | D3DXCreateMatrixStack@8 | |
| 87 | D3DXFloat16To32Array@12 | |
| 88 | D3DXFloat32To16Array@12 | |
| 89 | D3DXFresnelTerm@8 | |
| 90 | D3DXIntersectTri@32 | |
| 91 | D3DXMatrixAffineTransformation2D@20 | |
| 92 | D3DXMatrixAffineTransformation@20 | |
| 93 | D3DXMatrixDecompose@16 | |
| 94 | D3DXMatrixDeterminant@4 | |
| 95 | D3DXMatrixInverse@12 | |
| 96 | D3DXMatrixLookAtLH@16 | |
| 97 | D3DXMatrixLookAtRH@16 | |
| 98 | D3DXMatrixMultiply@12 | |
| 99 | D3DXMatrixMultiplyTranspose@12 | |
| 100 | D3DXMatrixOrthoLH@20 | |
| 101 | D3DXMatrixOrthoOffCenterLH@28 | |
| 102 | D3DXMatrixOrthoOffCenterRH@28 | |
| 103 | D3DXMatrixOrthoRH@20 | |
| 104 | D3DXMatrixPerspectiveFovLH@20 | |
| 105 | D3DXMatrixPerspectiveFovRH@20 | |
| 106 | D3DXMatrixPerspectiveLH@20 | |
| 107 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 108 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 109 | D3DXMatrixPerspectiveRH@20 | |
| 110 | D3DXMatrixReflect@8 | |
| 111 | D3DXMatrixRotationAxis@12 | |
| 112 | D3DXMatrixRotationQuaternion@8 | |
| 113 | D3DXMatrixRotationX@8 | |
| 114 | D3DXMatrixRotationY@8 | |
| 115 | D3DXMatrixRotationYawPitchRoll@16 | |
| 116 | D3DXMatrixRotationZ@8 | |
| 117 | D3DXMatrixScaling@16 | |
| 118 | D3DXMatrixShadow@12 | |
| 119 | D3DXMatrixTransformation2D@28 | |
| 120 | D3DXMatrixTransformation@28 | |
| 121 | D3DXMatrixTranslation@16 | |
| 122 | D3DXMatrixTranspose@8 | |
| 123 | D3DXPlaneFromPointNormal@12 | |
| 124 | D3DXPlaneFromPoints@16 | |
| 125 | D3DXPlaneIntersectLine@16 | |
| 126 | D3DXPlaneNormalize@8 | |
| 127 | D3DXPlaneTransform@12 | |
| 128 | D3DXPlaneTransformArray@24 | |
| 129 | D3DXQuaternionBaryCentric@24 | |
| 130 | D3DXQuaternionExp@8 | |
| 131 | D3DXQuaternionInverse@8 | |
| 132 | D3DXQuaternionLn@8 | |
| 133 | D3DXQuaternionMultiply@12 | |
| 134 | D3DXQuaternionNormalize@8 | |
| 135 | D3DXQuaternionRotationAxis@12 | |
| 136 | D3DXQuaternionRotationMatrix@8 | |
| 137 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 138 | D3DXQuaternionSlerp@16 | |
| 139 | D3DXQuaternionSquad@24 | |
| 140 | D3DXQuaternionSquadSetup@28 | |
| 141 | D3DXQuaternionToAxisAngle@12 | |
| 142 | D3DXSHAdd@16 | |
| 143 | D3DXSHDot@12 | |
| 144 | D3DXSHEvalConeLight@36 | |
| 145 | D3DXSHEvalDirection@12 | |
| 146 | D3DXSHEvalDirectionalLight@32 | |
| 147 | D3DXSHEvalHemisphereLight@52 | |
| 148 | D3DXSHEvalSphericalLight@36 | |
| 149 | D3DXSHMultiply2@12 | |
| 150 | D3DXSHMultiply3@12 | |
| 151 | D3DXSHMultiply4@12 | |
| 152 | D3DXSHMultiply5@12 | |
| 153 | D3DXSHMultiply6@12 | |
| 154 | D3DXSHRotate@16 | |
| 155 | D3DXSHRotateZ@16 | |
| 156 | D3DXSHScale@16 | |
| 157 | D3DXSphereBoundProbe@16 | |
| 158 | D3DXVec2BaryCentric@24 | |
| 159 | D3DXVec2CatmullRom@24 | |
| 160 | D3DXVec2Hermite@24 | |
| 161 | D3DXVec2Normalize@8 | |
| 162 | D3DXVec2Transform@12 | |
| 163 | D3DXVec2TransformArray@24 | |
| 164 | D3DXVec2TransformCoord@12 | |
| 165 | D3DXVec2TransformCoordArray@24 | |
| 166 | D3DXVec2TransformNormal@12 | |
| 167 | D3DXVec2TransformNormalArray@24 | |
| 168 | D3DXVec3BaryCentric@24 | |
| 169 | D3DXVec3CatmullRom@24 | |
| 170 | D3DXVec3Hermite@24 | |
| 171 | D3DXVec3Normalize@8 | |
| 172 | D3DXVec3Project@24 | |
| 173 | D3DXVec3ProjectArray@36 | |
| 174 | D3DXVec3Transform@12 | |
| 175 | D3DXVec3TransformArray@24 | |
| 176 | D3DXVec3TransformCoord@12 | |
| 177 | D3DXVec3TransformCoordArray@24 | |
| 178 | D3DXVec3TransformNormal@12 | |
| 179 | D3DXVec3TransformNormalArray@24 | |
| 180 | D3DXVec3Unproject@24 | |
| 181 | D3DXVec3UnprojectArray@36 | |
| 182 | D3DXVec4BaryCentric@24 | |
| 183 | D3DXVec4CatmullRom@24 | |
| 184 | D3DXVec4Cross@16 | |
| 185 | D3DXVec4Hermite@24 | |
| 186 | D3DXVec4Normalize@8 | |
| 187 | D3DXVec4Transform@12 | |
| 188 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_38.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateReduction@12 | |
| 9 | D3DX10CreateThreadPump@12 | |
| 10 | D3DX10CheckVersion@8 | |
| 11 | D3DX10CompileFromFileA@44 | |
| 12 | D3DX10CompileFromFileW@44 | |
| 13 | D3DX10CompileFromMemory@52 | |
| 14 | D3DX10CompileFromResourceA@52 | |
| 15 | D3DX10CompileFromResourceW@52 | |
| 16 | D3DX10ComputeNormalMap@20 | |
| 17 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 19 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 20 | D3DX10CreateAsyncFileLoaderA@8 | |
| 21 | D3DX10CreateAsyncFileLoaderW@8 | |
| 22 | D3DX10CreateAsyncMemoryLoader@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 24 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 25 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 26 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 27 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 28 | D3DX10CreateAsyncTextureProcessor@12 | |
| 29 | D3DX10CreateDevice@20 | |
| 30 | D3DX10CreateDeviceAndSwapChain@28 | |
| 31 | D3DX10CreateEffectFromFileA@48 | |
| 32 | D3DX10CreateEffectFromFileW@48 | |
| 33 | D3DX10CreateEffectFromMemory@56 | |
| 34 | D3DX10CreateEffectFromResourceA@56 | |
| 35 | D3DX10CreateEffectFromResourceW@56 | |
| 36 | D3DX10CreateEffectPoolFromFileA@44 | |
| 37 | D3DX10CreateEffectPoolFromFileW@44 | |
| 38 | D3DX10CreateEffectPoolFromMemory@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 40 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 41 | D3DX10CreateFontA@48 | |
| 42 | D3DX10CreateFontIndirectA@12 | |
| 43 | D3DX10CreateFontIndirectW@12 | |
| 44 | D3DX10CreateFontW@48 | |
| 45 | D3DX10CreateMesh@32 | |
| 46 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 47 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 48 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 50 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 51 | D3DX10CreateSkinInfo@4 | |
| 52 | D3DX10CreateSprite@12 | |
| 53 | D3DX10CreateTextureFromFileA@24 | |
| 54 | D3DX10CreateTextureFromFileW@24 | |
| 55 | D3DX10CreateTextureFromMemory@28 | |
| 56 | D3DX10CreateTextureFromResourceA@28 | |
| 57 | D3DX10CreateTextureFromResourceW@28 | |
| 58 | D3DX10DisassembleEffect@12 | |
| 59 | D3DX10DisassembleShader@20 | |
| 60 | D3DX10FilterTexture@12 | |
| 61 | D3DX10GetFeatureLevel1@8 | |
| 62 | D3DX10GetImageInfoFromFileA@16 | |
| 63 | D3DX10GetImageInfoFromFileW@16 | |
| 64 | D3DX10GetImageInfoFromMemory@20 | |
| 65 | D3DX10GetImageInfoFromResourceA@20 | |
| 66 | D3DX10GetImageInfoFromResourceW@20 | |
| 67 | D3DX10LoadTextureFromTexture@12 | |
| 68 | D3DX10PreprocessShaderFromFileA@28 | |
| 69 | D3DX10PreprocessShaderFromFileW@28 | |
| 70 | D3DX10PreprocessShaderFromMemory@36 | |
| 71 | D3DX10PreprocessShaderFromResourceA@36 | |
| 72 | D3DX10PreprocessShaderFromResourceW@36 | |
| 73 | D3DX10ReflectShader@12 | |
| 74 | D3DX10SHProjectCubeMap@20 | |
| 75 | D3DX10SaveTextureToFileA@12 | |
| 76 | D3DX10SaveTextureToFileW@12 | |
| 77 | D3DX10SaveTextureToMemory@16 | |
| 78 | D3DX10UnsetAllDeviceObjects@4 | |
| 79 | D3DXBoxBoundProbe@16 | |
| 80 | D3DXColorAdjustContrast@12 | |
| 81 | D3DXColorAdjustSaturation@12 | |
| 82 | D3DXComputeBoundingBox@20 | |
| 83 | D3DXComputeBoundingSphere@20 | |
| 84 | D3DXCpuOptimizations@4 | |
| 85 | D3DXCreateMatrixStack@8 | |
| 86 | D3DXFloat16To32Array@12 | |
| 87 | D3DXFloat32To16Array@12 | |
| 88 | D3DXFresnelTerm@8 | |
| 89 | D3DXIntersectTri@32 | |
| 90 | D3DXMatrixAffineTransformation2D@20 | |
| 91 | D3DXMatrixAffineTransformation@20 | |
| 92 | D3DXMatrixDecompose@16 | |
| 93 | D3DXMatrixDeterminant@4 | |
| 94 | D3DXMatrixInverse@12 | |
| 95 | D3DXMatrixLookAtLH@16 | |
| 96 | D3DXMatrixLookAtRH@16 | |
| 97 | D3DXMatrixMultiply@12 | |
| 98 | D3DXMatrixMultiplyTranspose@12 | |
| 99 | D3DXMatrixOrthoLH@20 | |
| 100 | D3DXMatrixOrthoOffCenterLH@28 | |
| 101 | D3DXMatrixOrthoOffCenterRH@28 | |
| 102 | D3DXMatrixOrthoRH@20 | |
| 103 | D3DXMatrixPerspectiveFovLH@20 | |
| 104 | D3DXMatrixPerspectiveFovRH@20 | |
| 105 | D3DXMatrixPerspectiveLH@20 | |
| 106 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 107 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 108 | D3DXMatrixPerspectiveRH@20 | |
| 109 | D3DXMatrixReflect@8 | |
| 110 | D3DXMatrixRotationAxis@12 | |
| 111 | D3DXMatrixRotationQuaternion@8 | |
| 112 | D3DXMatrixRotationX@8 | |
| 113 | D3DXMatrixRotationY@8 | |
| 114 | D3DXMatrixRotationYawPitchRoll@16 | |
| 115 | D3DXMatrixRotationZ@8 | |
| 116 | D3DXMatrixScaling@16 | |
| 117 | D3DXMatrixShadow@12 | |
| 118 | D3DXMatrixTransformation2D@28 | |
| 119 | D3DXMatrixTransformation@28 | |
| 120 | D3DXMatrixTranslation@16 | |
| 121 | D3DXMatrixTranspose@8 | |
| 122 | D3DXPlaneFromPointNormal@12 | |
| 123 | D3DXPlaneFromPoints@16 | |
| 124 | D3DXPlaneIntersectLine@16 | |
| 125 | D3DXPlaneNormalize@8 | |
| 126 | D3DXPlaneTransform@12 | |
| 127 | D3DXPlaneTransformArray@24 | |
| 128 | D3DXQuaternionBaryCentric@24 | |
| 129 | D3DXQuaternionExp@8 | |
| 130 | D3DXQuaternionInverse@8 | |
| 131 | D3DXQuaternionLn@8 | |
| 132 | D3DXQuaternionMultiply@12 | |
| 133 | D3DXQuaternionNormalize@8 | |
| 134 | D3DXQuaternionRotationAxis@12 | |
| 135 | D3DXQuaternionRotationMatrix@8 | |
| 136 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 137 | D3DXQuaternionSlerp@16 | |
| 138 | D3DXQuaternionSquad@24 | |
| 139 | D3DXQuaternionSquadSetup@28 | |
| 140 | D3DXQuaternionToAxisAngle@12 | |
| 141 | D3DXSHAdd@16 | |
| 142 | D3DXSHDot@12 | |
| 143 | D3DXSHEvalConeLight@36 | |
| 144 | D3DXSHEvalDirection@12 | |
| 145 | D3DXSHEvalDirectionalLight@32 | |
| 146 | D3DXSHEvalHemisphereLight@52 | |
| 147 | D3DXSHEvalSphericalLight@36 | |
| 148 | D3DXSHMultiply2@12 | |
| 149 | D3DXSHMultiply3@12 | |
| 150 | D3DXSHMultiply4@12 | |
| 151 | D3DXSHMultiply5@12 | |
| 152 | D3DXSHMultiply6@12 | |
| 153 | D3DXSHRotate@16 | |
| 154 | D3DXSHRotateZ@16 | |
| 155 | D3DXSHScale@16 | |
| 156 | D3DXSphereBoundProbe@16 | |
| 157 | D3DXVec2BaryCentric@24 | |
| 158 | D3DXVec2CatmullRom@24 | |
| 159 | D3DXVec2Hermite@24 | |
| 160 | D3DXVec2Normalize@8 | |
| 161 | D3DXVec2Transform@12 | |
| 162 | D3DXVec2TransformArray@24 | |
| 163 | D3DXVec2TransformCoord@12 | |
| 164 | D3DXVec2TransformCoordArray@24 | |
| 165 | D3DXVec2TransformNormal@12 | |
| 166 | D3DXVec2TransformNormalArray@24 | |
| 167 | D3DXVec3BaryCentric@24 | |
| 168 | D3DXVec3CatmullRom@24 | |
| 169 | D3DXVec3Hermite@24 | |
| 170 | D3DXVec3Normalize@8 | |
| 171 | D3DXVec3Project@24 | |
| 172 | D3DXVec3ProjectArray@36 | |
| 173 | D3DXVec3Transform@12 | |
| 174 | D3DXVec3TransformArray@24 | |
| 175 | D3DXVec3TransformCoord@12 | |
| 176 | D3DXVec3TransformCoordArray@24 | |
| 177 | D3DXVec3TransformNormal@12 | |
| 178 | D3DXVec3TransformNormalArray@24 | |
| 179 | D3DXVec3Unproject@24 | |
| 180 | D3DXVec3UnprojectArray@36 | |
| 181 | D3DXVec4BaryCentric@24 | |
| 182 | D3DXVec4CatmullRom@24 | |
| 183 | D3DXVec4Cross@16 | |
| 184 | D3DXVec4Hermite@24 | |
| 185 | D3DXVec4Normalize@8 | |
| 186 | D3DXVec4Transform@12 | |
| 187 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_39.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateReduction@12 | |
| 9 | D3DX10CreateThreadPump@12 | |
| 10 | D3DX10CheckVersion@8 | |
| 11 | D3DX10CompileFromFileA@44 | |
| 12 | D3DX10CompileFromFileW@44 | |
| 13 | D3DX10CompileFromMemory@52 | |
| 14 | D3DX10CompileFromResourceA@52 | |
| 15 | D3DX10CompileFromResourceW@52 | |
| 16 | D3DX10ComputeNormalMap@20 | |
| 17 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 19 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 20 | D3DX10CreateAsyncFileLoaderA@8 | |
| 21 | D3DX10CreateAsyncFileLoaderW@8 | |
| 22 | D3DX10CreateAsyncMemoryLoader@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 24 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 25 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 26 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 27 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 28 | D3DX10CreateAsyncTextureProcessor@12 | |
| 29 | D3DX10CreateDevice@20 | |
| 30 | D3DX10CreateDeviceAndSwapChain@28 | |
| 31 | D3DX10CreateEffectFromFileA@48 | |
| 32 | D3DX10CreateEffectFromFileW@48 | |
| 33 | D3DX10CreateEffectFromMemory@56 | |
| 34 | D3DX10CreateEffectFromResourceA@56 | |
| 35 | D3DX10CreateEffectFromResourceW@56 | |
| 36 | D3DX10CreateEffectPoolFromFileA@44 | |
| 37 | D3DX10CreateEffectPoolFromFileW@44 | |
| 38 | D3DX10CreateEffectPoolFromMemory@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 40 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 41 | D3DX10CreateFontA@48 | |
| 42 | D3DX10CreateFontIndirectA@12 | |
| 43 | D3DX10CreateFontIndirectW@12 | |
| 44 | D3DX10CreateFontW@48 | |
| 45 | D3DX10CreateMesh@32 | |
| 46 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 47 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 48 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 50 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 51 | D3DX10CreateSkinInfo@4 | |
| 52 | D3DX10CreateSprite@12 | |
| 53 | D3DX10CreateTextureFromFileA@24 | |
| 54 | D3DX10CreateTextureFromFileW@24 | |
| 55 | D3DX10CreateTextureFromMemory@28 | |
| 56 | D3DX10CreateTextureFromResourceA@28 | |
| 57 | D3DX10CreateTextureFromResourceW@28 | |
| 58 | D3DX10DisassembleEffect@12 | |
| 59 | D3DX10DisassembleShader@20 | |
| 60 | D3DX10FilterTexture@12 | |
| 61 | D3DX10GetFeatureLevel1@8 | |
| 62 | D3DX10GetImageInfoFromFileA@16 | |
| 63 | D3DX10GetImageInfoFromFileW@16 | |
| 64 | D3DX10GetImageInfoFromMemory@20 | |
| 65 | D3DX10GetImageInfoFromResourceA@20 | |
| 66 | D3DX10GetImageInfoFromResourceW@20 | |
| 67 | D3DX10LoadTextureFromTexture@12 | |
| 68 | D3DX10PreprocessShaderFromFileA@28 | |
| 69 | D3DX10PreprocessShaderFromFileW@28 | |
| 70 | D3DX10PreprocessShaderFromMemory@36 | |
| 71 | D3DX10PreprocessShaderFromResourceA@36 | |
| 72 | D3DX10PreprocessShaderFromResourceW@36 | |
| 73 | D3DX10ReflectShader@12 | |
| 74 | D3DX10SHProjectCubeMap@20 | |
| 75 | D3DX10SaveTextureToFileA@12 | |
| 76 | D3DX10SaveTextureToFileW@12 | |
| 77 | D3DX10SaveTextureToMemory@16 | |
| 78 | D3DX10UnsetAllDeviceObjects@4 | |
| 79 | D3DXBoxBoundProbe@16 | |
| 80 | D3DXColorAdjustContrast@12 | |
| 81 | D3DXColorAdjustSaturation@12 | |
| 82 | D3DXComputeBoundingBox@20 | |
| 83 | D3DXComputeBoundingSphere@20 | |
| 84 | D3DXCpuOptimizations@4 | |
| 85 | D3DXCreateMatrixStack@8 | |
| 86 | D3DXFloat16To32Array@12 | |
| 87 | D3DXFloat32To16Array@12 | |
| 88 | D3DXFresnelTerm@8 | |
| 89 | D3DXIntersectTri@32 | |
| 90 | D3DXMatrixAffineTransformation2D@20 | |
| 91 | D3DXMatrixAffineTransformation@20 | |
| 92 | D3DXMatrixDecompose@16 | |
| 93 | D3DXMatrixDeterminant@4 | |
| 94 | D3DXMatrixInverse@12 | |
| 95 | D3DXMatrixLookAtLH@16 | |
| 96 | D3DXMatrixLookAtRH@16 | |
| 97 | D3DXMatrixMultiply@12 | |
| 98 | D3DXMatrixMultiplyTranspose@12 | |
| 99 | D3DXMatrixOrthoLH@20 | |
| 100 | D3DXMatrixOrthoOffCenterLH@28 | |
| 101 | D3DXMatrixOrthoOffCenterRH@28 | |
| 102 | D3DXMatrixOrthoRH@20 | |
| 103 | D3DXMatrixPerspectiveFovLH@20 | |
| 104 | D3DXMatrixPerspectiveFovRH@20 | |
| 105 | D3DXMatrixPerspectiveLH@20 | |
| 106 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 107 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 108 | D3DXMatrixPerspectiveRH@20 | |
| 109 | D3DXMatrixReflect@8 | |
| 110 | D3DXMatrixRotationAxis@12 | |
| 111 | D3DXMatrixRotationQuaternion@8 | |
| 112 | D3DXMatrixRotationX@8 | |
| 113 | D3DXMatrixRotationY@8 | |
| 114 | D3DXMatrixRotationYawPitchRoll@16 | |
| 115 | D3DXMatrixRotationZ@8 | |
| 116 | D3DXMatrixScaling@16 | |
| 117 | D3DXMatrixShadow@12 | |
| 118 | D3DXMatrixTransformation2D@28 | |
| 119 | D3DXMatrixTransformation@28 | |
| 120 | D3DXMatrixTranslation@16 | |
| 121 | D3DXMatrixTranspose@8 | |
| 122 | D3DXPlaneFromPointNormal@12 | |
| 123 | D3DXPlaneFromPoints@16 | |
| 124 | D3DXPlaneIntersectLine@16 | |
| 125 | D3DXPlaneNormalize@8 | |
| 126 | D3DXPlaneTransform@12 | |
| 127 | D3DXPlaneTransformArray@24 | |
| 128 | D3DXQuaternionBaryCentric@24 | |
| 129 | D3DXQuaternionExp@8 | |
| 130 | D3DXQuaternionInverse@8 | |
| 131 | D3DXQuaternionLn@8 | |
| 132 | D3DXQuaternionMultiply@12 | |
| 133 | D3DXQuaternionNormalize@8 | |
| 134 | D3DXQuaternionRotationAxis@12 | |
| 135 | D3DXQuaternionRotationMatrix@8 | |
| 136 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 137 | D3DXQuaternionSlerp@16 | |
| 138 | D3DXQuaternionSquad@24 | |
| 139 | D3DXQuaternionSquadSetup@28 | |
| 140 | D3DXQuaternionToAxisAngle@12 | |
| 141 | D3DXSHAdd@16 | |
| 142 | D3DXSHDot@12 | |
| 143 | D3DXSHEvalConeLight@36 | |
| 144 | D3DXSHEvalDirection@12 | |
| 145 | D3DXSHEvalDirectionalLight@32 | |
| 146 | D3DXSHEvalHemisphereLight@52 | |
| 147 | D3DXSHEvalSphericalLight@36 | |
| 148 | D3DXSHMultiply2@12 | |
| 149 | D3DXSHMultiply3@12 | |
| 150 | D3DXSHMultiply4@12 | |
| 151 | D3DXSHMultiply5@12 | |
| 152 | D3DXSHMultiply6@12 | |
| 153 | D3DXSHRotate@16 | |
| 154 | D3DXSHRotateZ@16 | |
| 155 | D3DXSHScale@16 | |
| 156 | D3DXSphereBoundProbe@16 | |
| 157 | D3DXVec2BaryCentric@24 | |
| 158 | D3DXVec2CatmullRom@24 | |
| 159 | D3DXVec2Hermite@24 | |
| 160 | D3DXVec2Normalize@8 | |
| 161 | D3DXVec2Transform@12 | |
| 162 | D3DXVec2TransformArray@24 | |
| 163 | D3DXVec2TransformCoord@12 | |
| 164 | D3DXVec2TransformCoordArray@24 | |
| 165 | D3DXVec2TransformNormal@12 | |
| 166 | D3DXVec2TransformNormalArray@24 | |
| 167 | D3DXVec3BaryCentric@24 | |
| 168 | D3DXVec3CatmullRom@24 | |
| 169 | D3DXVec3Hermite@24 | |
| 170 | D3DXVec3Normalize@8 | |
| 171 | D3DXVec3Project@24 | |
| 172 | D3DXVec3ProjectArray@36 | |
| 173 | D3DXVec3Transform@12 | |
| 174 | D3DXVec3TransformArray@24 | |
| 175 | D3DXVec3TransformCoord@12 | |
| 176 | D3DXVec3TransformCoordArray@24 | |
| 177 | D3DXVec3TransformNormal@12 | |
| 178 | D3DXVec3TransformNormalArray@24 | |
| 179 | D3DXVec3Unproject@24 | |
| 180 | D3DXVec3UnprojectArray@36 | |
| 181 | D3DXVec4BaryCentric@24 | |
| 182 | D3DXVec4CatmullRom@24 | |
| 183 | D3DXVec4Cross@16 | |
| 184 | D3DXVec4Hermite@24 | |
| 185 | D3DXVec4Normalize@8 | |
| 186 | D3DXVec4Transform@12 | |
| 187 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_40.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateDevice@20 | |
| 29 | D3DX10CreateDeviceAndSwapChain@28 | |
| 30 | D3DX10CreateEffectFromFileA@48 | |
| 31 | D3DX10CreateEffectFromFileW@48 | |
| 32 | D3DX10CreateEffectFromMemory@56 | |
| 33 | D3DX10CreateEffectFromResourceA@56 | |
| 34 | D3DX10CreateEffectFromResourceW@56 | |
| 35 | D3DX10CreateEffectPoolFromFileA@44 | |
| 36 | D3DX10CreateEffectPoolFromFileW@44 | |
| 37 | D3DX10CreateEffectPoolFromMemory@52 | |
| 38 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 40 | D3DX10CreateFontA@48 | |
| 41 | D3DX10CreateFontIndirectA@12 | |
| 42 | D3DX10CreateFontIndirectW@12 | |
| 43 | D3DX10CreateFontW@48 | |
| 44 | D3DX10CreateMesh@32 | |
| 45 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 46 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 47 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 50 | D3DX10CreateSkinInfo@4 | |
| 51 | D3DX10CreateSprite@12 | |
| 52 | D3DX10CreateTextureFromFileA@24 | |
| 53 | D3DX10CreateTextureFromFileW@24 | |
| 54 | D3DX10CreateTextureFromMemory@28 | |
| 55 | D3DX10CreateTextureFromResourceA@28 | |
| 56 | D3DX10CreateTextureFromResourceW@28 | |
| 57 | D3DX10FilterTexture@12 | |
| 58 | D3DX10GetFeatureLevel1@8 | |
| 59 | D3DX10GetImageInfoFromFileA@16 | |
| 60 | D3DX10GetImageInfoFromFileW@16 | |
| 61 | D3DX10GetImageInfoFromMemory@20 | |
| 62 | D3DX10GetImageInfoFromResourceA@20 | |
| 63 | D3DX10GetImageInfoFromResourceW@20 | |
| 64 | D3DX10LoadTextureFromTexture@12 | |
| 65 | D3DX10PreprocessShaderFromFileA@28 | |
| 66 | D3DX10PreprocessShaderFromFileW@28 | |
| 67 | D3DX10PreprocessShaderFromMemory@36 | |
| 68 | D3DX10PreprocessShaderFromResourceA@36 | |
| 69 | D3DX10PreprocessShaderFromResourceW@36 | |
| 70 | D3DX10SHProjectCubeMap@20 | |
| 71 | D3DX10SaveTextureToFileA@12 | |
| 72 | D3DX10SaveTextureToFileW@12 | |
| 73 | D3DX10SaveTextureToMemory@16 | |
| 74 | D3DX10UnsetAllDeviceObjects@4 | |
| 75 | D3DXBoxBoundProbe@16 | |
| 76 | D3DXColorAdjustContrast@12 | |
| 77 | D3DXColorAdjustSaturation@12 | |
| 78 | D3DXComputeBoundingBox@20 | |
| 79 | D3DXComputeBoundingSphere@20 | |
| 80 | D3DXCpuOptimizations@4 | |
| 81 | D3DXCreateMatrixStack@8 | |
| 82 | D3DXFloat16To32Array@12 | |
| 83 | D3DXFloat32To16Array@12 | |
| 84 | D3DXFresnelTerm@8 | |
| 85 | D3DXIntersectTri@32 | |
| 86 | D3DXMatrixAffineTransformation2D@20 | |
| 87 | D3DXMatrixAffineTransformation@20 | |
| 88 | D3DXMatrixDecompose@16 | |
| 89 | D3DXMatrixDeterminant@4 | |
| 90 | D3DXMatrixInverse@12 | |
| 91 | D3DXMatrixLookAtLH@16 | |
| 92 | D3DXMatrixLookAtRH@16 | |
| 93 | D3DXMatrixMultiply@12 | |
| 94 | D3DXMatrixMultiplyTranspose@12 | |
| 95 | D3DXMatrixOrthoLH@20 | |
| 96 | D3DXMatrixOrthoOffCenterLH@28 | |
| 97 | D3DXMatrixOrthoOffCenterRH@28 | |
| 98 | D3DXMatrixOrthoRH@20 | |
| 99 | D3DXMatrixPerspectiveFovLH@20 | |
| 100 | D3DXMatrixPerspectiveFovRH@20 | |
| 101 | D3DXMatrixPerspectiveLH@20 | |
| 102 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 103 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 104 | D3DXMatrixPerspectiveRH@20 | |
| 105 | D3DXMatrixReflect@8 | |
| 106 | D3DXMatrixRotationAxis@12 | |
| 107 | D3DXMatrixRotationQuaternion@8 | |
| 108 | D3DXMatrixRotationX@8 | |
| 109 | D3DXMatrixRotationY@8 | |
| 110 | D3DXMatrixRotationYawPitchRoll@16 | |
| 111 | D3DXMatrixRotationZ@8 | |
| 112 | D3DXMatrixScaling@16 | |
| 113 | D3DXMatrixShadow@12 | |
| 114 | D3DXMatrixTransformation2D@28 | |
| 115 | D3DXMatrixTransformation@28 | |
| 116 | D3DXMatrixTranslation@16 | |
| 117 | D3DXMatrixTranspose@8 | |
| 118 | D3DXPlaneFromPointNormal@12 | |
| 119 | D3DXPlaneFromPoints@16 | |
| 120 | D3DXPlaneIntersectLine@16 | |
| 121 | D3DXPlaneNormalize@8 | |
| 122 | D3DXPlaneTransform@12 | |
| 123 | D3DXPlaneTransformArray@24 | |
| 124 | D3DXQuaternionBaryCentric@24 | |
| 125 | D3DXQuaternionExp@8 | |
| 126 | D3DXQuaternionInverse@8 | |
| 127 | D3DXQuaternionLn@8 | |
| 128 | D3DXQuaternionMultiply@12 | |
| 129 | D3DXQuaternionNormalize@8 | |
| 130 | D3DXQuaternionRotationAxis@12 | |
| 131 | D3DXQuaternionRotationMatrix@8 | |
| 132 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 133 | D3DXQuaternionSlerp@16 | |
| 134 | D3DXQuaternionSquad@24 | |
| 135 | D3DXQuaternionSquadSetup@28 | |
| 136 | D3DXQuaternionToAxisAngle@12 | |
| 137 | D3DXSHAdd@16 | |
| 138 | D3DXSHDot@12 | |
| 139 | D3DXSHEvalConeLight@36 | |
| 140 | D3DXSHEvalDirection@12 | |
| 141 | D3DXSHEvalDirectionalLight@32 | |
| 142 | D3DXSHEvalHemisphereLight@52 | |
| 143 | D3DXSHEvalSphericalLight@36 | |
| 144 | D3DXSHMultiply2@12 | |
| 145 | D3DXSHMultiply3@12 | |
| 146 | D3DXSHMultiply4@12 | |
| 147 | D3DXSHMultiply5@12 | |
| 148 | D3DXSHMultiply6@12 | |
| 149 | D3DXSHRotate@16 | |
| 150 | D3DXSHRotateZ@16 | |
| 151 | D3DXSHScale@16 | |
| 152 | D3DXSphereBoundProbe@16 | |
| 153 | D3DXVec2BaryCentric@24 | |
| 154 | D3DXVec2CatmullRom@24 | |
| 155 | D3DXVec2Hermite@24 | |
| 156 | D3DXVec2Normalize@8 | |
| 157 | D3DXVec2Transform@12 | |
| 158 | D3DXVec2TransformArray@24 | |
| 159 | D3DXVec2TransformCoord@12 | |
| 160 | D3DXVec2TransformCoordArray@24 | |
| 161 | D3DXVec2TransformNormal@12 | |
| 162 | D3DXVec2TransformNormalArray@24 | |
| 163 | D3DXVec3BaryCentric@24 | |
| 164 | D3DXVec3CatmullRom@24 | |
| 165 | D3DXVec3Hermite@24 | |
| 166 | D3DXVec3Normalize@8 | |
| 167 | D3DXVec3Project@24 | |
| 168 | D3DXVec3ProjectArray@36 | |
| 169 | D3DXVec3Transform@12 | |
| 170 | D3DXVec3TransformArray@24 | |
| 171 | D3DXVec3TransformCoord@12 | |
| 172 | D3DXVec3TransformCoordArray@24 | |
| 173 | D3DXVec3TransformNormal@12 | |
| 174 | D3DXVec3TransformNormalArray@24 | |
| 175 | D3DXVec3Unproject@24 | |
| 176 | D3DXVec3UnprojectArray@36 | |
| 177 | D3DXVec4BaryCentric@24 | |
| 178 | D3DXVec4CatmullRom@24 | |
| 179 | D3DXVec4Cross@16 | |
| 180 | D3DXVec4Hermite@24 | |
| 181 | D3DXVec4Normalize@8 | |
| 182 | D3DXVec4Transform@12 | |
| 183 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_41.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateDevice@20 | |
| 29 | D3DX10CreateDeviceAndSwapChain@28 | |
| 30 | D3DX10CreateEffectFromFileA@48 | |
| 31 | D3DX10CreateEffectFromFileW@48 | |
| 32 | D3DX10CreateEffectFromMemory@56 | |
| 33 | D3DX10CreateEffectFromResourceA@56 | |
| 34 | D3DX10CreateEffectFromResourceW@56 | |
| 35 | D3DX10CreateEffectPoolFromFileA@44 | |
| 36 | D3DX10CreateEffectPoolFromFileW@44 | |
| 37 | D3DX10CreateEffectPoolFromMemory@52 | |
| 38 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 40 | D3DX10CreateFontA@48 | |
| 41 | D3DX10CreateFontIndirectA@12 | |
| 42 | D3DX10CreateFontIndirectW@12 | |
| 43 | D3DX10CreateFontW@48 | |
| 44 | D3DX10CreateMesh@32 | |
| 45 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 46 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 47 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 50 | D3DX10CreateSkinInfo@4 | |
| 51 | D3DX10CreateSprite@12 | |
| 52 | D3DX10CreateTextureFromFileA@24 | |
| 53 | D3DX10CreateTextureFromFileW@24 | |
| 54 | D3DX10CreateTextureFromMemory@28 | |
| 55 | D3DX10CreateTextureFromResourceA@28 | |
| 56 | D3DX10CreateTextureFromResourceW@28 | |
| 57 | D3DX10FilterTexture@12 | |
| 58 | D3DX10GetFeatureLevel1@8 | |
| 59 | D3DX10GetImageInfoFromFileA@16 | |
| 60 | D3DX10GetImageInfoFromFileW@16 | |
| 61 | D3DX10GetImageInfoFromMemory@20 | |
| 62 | D3DX10GetImageInfoFromResourceA@20 | |
| 63 | D3DX10GetImageInfoFromResourceW@20 | |
| 64 | D3DX10LoadTextureFromTexture@12 | |
| 65 | D3DX10PreprocessShaderFromFileA@28 | |
| 66 | D3DX10PreprocessShaderFromFileW@28 | |
| 67 | D3DX10PreprocessShaderFromMemory@36 | |
| 68 | D3DX10PreprocessShaderFromResourceA@36 | |
| 69 | D3DX10PreprocessShaderFromResourceW@36 | |
| 70 | D3DX10SHProjectCubeMap@20 | |
| 71 | D3DX10SaveTextureToFileA@12 | |
| 72 | D3DX10SaveTextureToFileW@12 | |
| 73 | D3DX10SaveTextureToMemory@16 | |
| 74 | D3DX10UnsetAllDeviceObjects@4 | |
| 75 | D3DXBoxBoundProbe@16 | |
| 76 | D3DXColorAdjustContrast@12 | |
| 77 | D3DXColorAdjustSaturation@12 | |
| 78 | D3DXComputeBoundingBox@20 | |
| 79 | D3DXComputeBoundingSphere@20 | |
| 80 | D3DXCpuOptimizations@4 | |
| 81 | D3DXCreateMatrixStack@8 | |
| 82 | D3DXFloat16To32Array@12 | |
| 83 | D3DXFloat32To16Array@12 | |
| 84 | D3DXFresnelTerm@8 | |
| 85 | D3DXIntersectTri@32 | |
| 86 | D3DXMatrixAffineTransformation2D@20 | |
| 87 | D3DXMatrixAffineTransformation@20 | |
| 88 | D3DXMatrixDecompose@16 | |
| 89 | D3DXMatrixDeterminant@4 | |
| 90 | D3DXMatrixInverse@12 | |
| 91 | D3DXMatrixLookAtLH@16 | |
| 92 | D3DXMatrixLookAtRH@16 | |
| 93 | D3DXMatrixMultiply@12 | |
| 94 | D3DXMatrixMultiplyTranspose@12 | |
| 95 | D3DXMatrixOrthoLH@20 | |
| 96 | D3DXMatrixOrthoOffCenterLH@28 | |
| 97 | D3DXMatrixOrthoOffCenterRH@28 | |
| 98 | D3DXMatrixOrthoRH@20 | |
| 99 | D3DXMatrixPerspectiveFovLH@20 | |
| 100 | D3DXMatrixPerspectiveFovRH@20 | |
| 101 | D3DXMatrixPerspectiveLH@20 | |
| 102 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 103 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 104 | D3DXMatrixPerspectiveRH@20 | |
| 105 | D3DXMatrixReflect@8 | |
| 106 | D3DXMatrixRotationAxis@12 | |
| 107 | D3DXMatrixRotationQuaternion@8 | |
| 108 | D3DXMatrixRotationX@8 | |
| 109 | D3DXMatrixRotationY@8 | |
| 110 | D3DXMatrixRotationYawPitchRoll@16 | |
| 111 | D3DXMatrixRotationZ@8 | |
| 112 | D3DXMatrixScaling@16 | |
| 113 | D3DXMatrixShadow@12 | |
| 114 | D3DXMatrixTransformation2D@28 | |
| 115 | D3DXMatrixTransformation@28 | |
| 116 | D3DXMatrixTranslation@16 | |
| 117 | D3DXMatrixTranspose@8 | |
| 118 | D3DXPlaneFromPointNormal@12 | |
| 119 | D3DXPlaneFromPoints@16 | |
| 120 | D3DXPlaneIntersectLine@16 | |
| 121 | D3DXPlaneNormalize@8 | |
| 122 | D3DXPlaneTransform@12 | |
| 123 | D3DXPlaneTransformArray@24 | |
| 124 | D3DXQuaternionBaryCentric@24 | |
| 125 | D3DXQuaternionExp@8 | |
| 126 | D3DXQuaternionInverse@8 | |
| 127 | D3DXQuaternionLn@8 | |
| 128 | D3DXQuaternionMultiply@12 | |
| 129 | D3DXQuaternionNormalize@8 | |
| 130 | D3DXQuaternionRotationAxis@12 | |
| 131 | D3DXQuaternionRotationMatrix@8 | |
| 132 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 133 | D3DXQuaternionSlerp@16 | |
| 134 | D3DXQuaternionSquad@24 | |
| 135 | D3DXQuaternionSquadSetup@28 | |
| 136 | D3DXQuaternionToAxisAngle@12 | |
| 137 | D3DXSHAdd@16 | |
| 138 | D3DXSHDot@12 | |
| 139 | D3DXSHEvalConeLight@36 | |
| 140 | D3DXSHEvalDirection@12 | |
| 141 | D3DXSHEvalDirectionalLight@32 | |
| 142 | D3DXSHEvalHemisphereLight@52 | |
| 143 | D3DXSHEvalSphericalLight@36 | |
| 144 | D3DXSHMultiply2@12 | |
| 145 | D3DXSHMultiply3@12 | |
| 146 | D3DXSHMultiply4@12 | |
| 147 | D3DXSHMultiply5@12 | |
| 148 | D3DXSHMultiply6@12 | |
| 149 | D3DXSHRotate@16 | |
| 150 | D3DXSHRotateZ@16 | |
| 151 | D3DXSHScale@16 | |
| 152 | D3DXSphereBoundProbe@16 | |
| 153 | D3DXVec2BaryCentric@24 | |
| 154 | D3DXVec2CatmullRom@24 | |
| 155 | D3DXVec2Hermite@24 | |
| 156 | D3DXVec2Normalize@8 | |
| 157 | D3DXVec2Transform@12 | |
| 158 | D3DXVec2TransformArray@24 | |
| 159 | D3DXVec2TransformCoord@12 | |
| 160 | D3DXVec2TransformCoordArray@24 | |
| 161 | D3DXVec2TransformNormal@12 | |
| 162 | D3DXVec2TransformNormalArray@24 | |
| 163 | D3DXVec3BaryCentric@24 | |
| 164 | D3DXVec3CatmullRom@24 | |
| 165 | D3DXVec3Hermite@24 | |
| 166 | D3DXVec3Normalize@8 | |
| 167 | D3DXVec3Project@24 | |
| 168 | D3DXVec3ProjectArray@36 | |
| 169 | D3DXVec3Transform@12 | |
| 170 | D3DXVec3TransformArray@24 | |
| 171 | D3DXVec3TransformCoord@12 | |
| 172 | D3DXVec3TransformCoordArray@24 | |
| 173 | D3DXVec3TransformNormal@12 | |
| 174 | D3DXVec3TransformNormalArray@24 | |
| 175 | D3DXVec3Unproject@24 | |
| 176 | D3DXVec3UnprojectArray@36 | |
| 177 | D3DXVec4BaryCentric@24 | |
| 178 | D3DXVec4CatmullRom@24 | |
| 179 | D3DXVec4Cross@16 | |
| 180 | D3DXVec4Hermite@24 | |
| 181 | D3DXVec4Normalize@8 | |
| 182 | D3DXVec4Transform@12 | |
| 183 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateDevice@20 | |
| 29 | D3DX10CreateDeviceAndSwapChain@28 | |
| 30 | D3DX10CreateEffectFromFileA@48 | |
| 31 | D3DX10CreateEffectFromFileW@48 | |
| 32 | D3DX10CreateEffectFromMemory@56 | |
| 33 | D3DX10CreateEffectFromResourceA@56 | |
| 34 | D3DX10CreateEffectFromResourceW@56 | |
| 35 | D3DX10CreateEffectPoolFromFileA@44 | |
| 36 | D3DX10CreateEffectPoolFromFileW@44 | |
| 37 | D3DX10CreateEffectPoolFromMemory@52 | |
| 38 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 40 | D3DX10CreateFontA@48 | |
| 41 | D3DX10CreateFontIndirectA@12 | |
| 42 | D3DX10CreateFontIndirectW@12 | |
| 43 | D3DX10CreateFontW@48 | |
| 44 | D3DX10CreateMesh@32 | |
| 45 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 46 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 47 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 50 | D3DX10CreateSkinInfo@4 | |
| 51 | D3DX10CreateSprite@12 | |
| 52 | D3DX10CreateTextureFromFileA@24 | |
| 53 | D3DX10CreateTextureFromFileW@24 | |
| 54 | D3DX10CreateTextureFromMemory@28 | |
| 55 | D3DX10CreateTextureFromResourceA@28 | |
| 56 | D3DX10CreateTextureFromResourceW@28 | |
| 57 | D3DX10FilterTexture@12 | |
| 58 | D3DX10GetFeatureLevel1@8 | |
| 59 | D3DX10GetImageInfoFromFileA@16 | |
| 60 | D3DX10GetImageInfoFromFileW@16 | |
| 61 | D3DX10GetImageInfoFromMemory@20 | |
| 62 | D3DX10GetImageInfoFromResourceA@20 | |
| 63 | D3DX10GetImageInfoFromResourceW@20 | |
| 64 | D3DX10LoadTextureFromTexture@12 | |
| 65 | D3DX10PreprocessShaderFromFileA@28 | |
| 66 | D3DX10PreprocessShaderFromFileW@28 | |
| 67 | D3DX10PreprocessShaderFromMemory@36 | |
| 68 | D3DX10PreprocessShaderFromResourceA@36 | |
| 69 | D3DX10PreprocessShaderFromResourceW@36 | |
| 70 | D3DX10SHProjectCubeMap@20 | |
| 71 | D3DX10SaveTextureToFileA@12 | |
| 72 | D3DX10SaveTextureToFileW@12 | |
| 73 | D3DX10SaveTextureToMemory@16 | |
| 74 | D3DX10UnsetAllDeviceObjects@4 | |
| 75 | D3DXBoxBoundProbe@16 | |
| 76 | D3DXColorAdjustContrast@12 | |
| 77 | D3DXColorAdjustSaturation@12 | |
| 78 | D3DXComputeBoundingBox@20 | |
| 79 | D3DXComputeBoundingSphere@20 | |
| 80 | D3DXCpuOptimizations@4 | |
| 81 | D3DXCreateMatrixStack@8 | |
| 82 | D3DXFloat16To32Array@12 | |
| 83 | D3DXFloat32To16Array@12 | |
| 84 | D3DXFresnelTerm@8 | |
| 85 | D3DXIntersectTri@32 | |
| 86 | D3DXMatrixAffineTransformation2D@20 | |
| 87 | D3DXMatrixAffineTransformation@20 | |
| 88 | D3DXMatrixDecompose@16 | |
| 89 | D3DXMatrixDeterminant@4 | |
| 90 | D3DXMatrixInverse@12 | |
| 91 | D3DXMatrixLookAtLH@16 | |
| 92 | D3DXMatrixLookAtRH@16 | |
| 93 | D3DXMatrixMultiply@12 | |
| 94 | D3DXMatrixMultiplyTranspose@12 | |
| 95 | D3DXMatrixOrthoLH@20 | |
| 96 | D3DXMatrixOrthoOffCenterLH@28 | |
| 97 | D3DXMatrixOrthoOffCenterRH@28 | |
| 98 | D3DXMatrixOrthoRH@20 | |
| 99 | D3DXMatrixPerspectiveFovLH@20 | |
| 100 | D3DXMatrixPerspectiveFovRH@20 | |
| 101 | D3DXMatrixPerspectiveLH@20 | |
| 102 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 103 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 104 | D3DXMatrixPerspectiveRH@20 | |
| 105 | D3DXMatrixReflect@8 | |
| 106 | D3DXMatrixRotationAxis@12 | |
| 107 | D3DXMatrixRotationQuaternion@8 | |
| 108 | D3DXMatrixRotationX@8 | |
| 109 | D3DXMatrixRotationY@8 | |
| 110 | D3DXMatrixRotationYawPitchRoll@16 | |
| 111 | D3DXMatrixRotationZ@8 | |
| 112 | D3DXMatrixScaling@16 | |
| 113 | D3DXMatrixShadow@12 | |
| 114 | D3DXMatrixTransformation2D@28 | |
| 115 | D3DXMatrixTransformation@28 | |
| 116 | D3DXMatrixTranslation@16 | |
| 117 | D3DXMatrixTranspose@8 | |
| 118 | D3DXPlaneFromPointNormal@12 | |
| 119 | D3DXPlaneFromPoints@16 | |
| 120 | D3DXPlaneIntersectLine@16 | |
| 121 | D3DXPlaneNormalize@8 | |
| 122 | D3DXPlaneTransform@12 | |
| 123 | D3DXPlaneTransformArray@24 | |
| 124 | D3DXQuaternionBaryCentric@24 | |
| 125 | D3DXQuaternionExp@8 | |
| 126 | D3DXQuaternionInverse@8 | |
| 127 | D3DXQuaternionLn@8 | |
| 128 | D3DXQuaternionMultiply@12 | |
| 129 | D3DXQuaternionNormalize@8 | |
| 130 | D3DXQuaternionRotationAxis@12 | |
| 131 | D3DXQuaternionRotationMatrix@8 | |
| 132 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 133 | D3DXQuaternionSlerp@16 | |
| 134 | D3DXQuaternionSquad@24 | |
| 135 | D3DXQuaternionSquadSetup@28 | |
| 136 | D3DXQuaternionToAxisAngle@12 | |
| 137 | D3DXSHAdd@16 | |
| 138 | D3DXSHDot@12 | |
| 139 | D3DXSHEvalConeLight@36 | |
| 140 | D3DXSHEvalDirection@12 | |
| 141 | D3DXSHEvalDirectionalLight@32 | |
| 142 | D3DXSHEvalHemisphereLight@52 | |
| 143 | D3DXSHEvalSphericalLight@36 | |
| 144 | D3DXSHMultiply2@12 | |
| 145 | D3DXSHMultiply3@12 | |
| 146 | D3DXSHMultiply4@12 | |
| 147 | D3DXSHMultiply5@12 | |
| 148 | D3DXSHMultiply6@12 | |
| 149 | D3DXSHRotate@16 | |
| 150 | D3DXSHRotateZ@16 | |
| 151 | D3DXSHScale@16 | |
| 152 | D3DXSphereBoundProbe@16 | |
| 153 | D3DXVec2BaryCentric@24 | |
| 154 | D3DXVec2CatmullRom@24 | |
| 155 | D3DXVec2Hermite@24 | |
| 156 | D3DXVec2Normalize@8 | |
| 157 | D3DXVec2Transform@12 | |
| 158 | D3DXVec2TransformArray@24 | |
| 159 | D3DXVec2TransformCoord@12 | |
| 160 | D3DXVec2TransformCoordArray@24 | |
| 161 | D3DXVec2TransformNormal@12 | |
| 162 | D3DXVec2TransformNormalArray@24 | |
| 163 | D3DXVec3BaryCentric@24 | |
| 164 | D3DXVec3CatmullRom@24 | |
| 165 | D3DXVec3Hermite@24 | |
| 166 | D3DXVec3Normalize@8 | |
| 167 | D3DXVec3Project@24 | |
| 168 | D3DXVec3ProjectArray@36 | |
| 169 | D3DXVec3Transform@12 | |
| 170 | D3DXVec3TransformArray@24 | |
| 171 | D3DXVec3TransformCoord@12 | |
| 172 | D3DXVec3TransformCoordArray@24 | |
| 173 | D3DXVec3TransformNormal@12 | |
| 174 | D3DXVec3TransformNormalArray@24 | |
| 175 | D3DXVec3Unproject@24 | |
| 176 | D3DXVec3UnprojectArray@36 | |
| 177 | D3DXVec4BaryCentric@24 | |
| 178 | D3DXVec4CatmullRom@24 | |
| 179 | D3DXVec4Cross@16 | |
| 180 | D3DXVec4Hermite@24 | |
| 181 | D3DXVec4Normalize@8 | |
| 182 | D3DXVec4Transform@12 | |
| 183 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx10_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump@12 | |
| 9 | D3DX10CheckVersion@8 | |
| 10 | D3DX10CompileFromFileA@44 | |
| 11 | D3DX10CompileFromFileW@44 | |
| 12 | D3DX10CompileFromMemory@52 | |
| 13 | D3DX10CompileFromResourceA@52 | |
| 14 | D3DX10CompileFromResourceW@52 | |
| 15 | D3DX10ComputeNormalMap@20 | |
| 16 | D3DX10CreateAsyncCompilerProcessor@40 | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor@40 | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor@36 | |
| 19 | D3DX10CreateAsyncFileLoaderA@8 | |
| 20 | D3DX10CreateAsyncFileLoaderW@8 | |
| 21 | D3DX10CreateAsyncMemoryLoader@12 | |
| 22 | D3DX10CreateAsyncResourceLoaderA@12 | |
| 23 | D3DX10CreateAsyncResourceLoaderW@12 | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor@24 | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor@12 | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor@8 | |
| 27 | D3DX10CreateAsyncTextureProcessor@12 | |
| 28 | D3DX10CreateDevice@20 | |
| 29 | D3DX10CreateDeviceAndSwapChain@28 | |
| 30 | D3DX10CreateEffectFromFileA@48 | |
| 31 | D3DX10CreateEffectFromFileW@48 | |
| 32 | D3DX10CreateEffectFromMemory@56 | |
| 33 | D3DX10CreateEffectFromResourceA@56 | |
| 34 | D3DX10CreateEffectFromResourceW@56 | |
| 35 | D3DX10CreateEffectPoolFromFileA@44 | |
| 36 | D3DX10CreateEffectPoolFromFileW@44 | |
| 37 | D3DX10CreateEffectPoolFromMemory@52 | |
| 38 | D3DX10CreateEffectPoolFromResourceA@52 | |
| 39 | D3DX10CreateEffectPoolFromResourceW@52 | |
| 40 | D3DX10CreateFontA@48 | |
| 41 | D3DX10CreateFontIndirectA@12 | |
| 42 | D3DX10CreateFontIndirectW@12 | |
| 43 | D3DX10CreateFontW@48 | |
| 44 | D3DX10CreateMesh@32 | |
| 45 | D3DX10CreateShaderResourceViewFromFileA@24 | |
| 46 | D3DX10CreateShaderResourceViewFromFileW@24 | |
| 47 | D3DX10CreateShaderResourceViewFromMemory@28 | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA@28 | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW@28 | |
| 50 | D3DX10CreateSkinInfo@4 | |
| 51 | D3DX10CreateSprite@12 | |
| 52 | D3DX10CreateTextureFromFileA@24 | |
| 53 | D3DX10CreateTextureFromFileW@24 | |
| 54 | D3DX10CreateTextureFromMemory@28 | |
| 55 | D3DX10CreateTextureFromResourceA@28 | |
| 56 | D3DX10CreateTextureFromResourceW@28 | |
| 57 | D3DX10FilterTexture@12 | |
| 58 | D3DX10GetFeatureLevel1@8 | |
| 59 | D3DX10GetImageInfoFromFileA@16 | |
| 60 | D3DX10GetImageInfoFromFileW@16 | |
| 61 | D3DX10GetImageInfoFromMemory@20 | |
| 62 | D3DX10GetImageInfoFromResourceA@20 | |
| 63 | D3DX10GetImageInfoFromResourceW@20 | |
| 64 | D3DX10LoadTextureFromTexture@12 | |
| 65 | D3DX10PreprocessShaderFromFileA@28 | |
| 66 | D3DX10PreprocessShaderFromFileW@28 | |
| 67 | D3DX10PreprocessShaderFromMemory@36 | |
| 68 | D3DX10PreprocessShaderFromResourceA@36 | |
| 69 | D3DX10PreprocessShaderFromResourceW@36 | |
| 70 | D3DX10SHProjectCubeMap@20 | |
| 71 | D3DX10SaveTextureToFileA@12 | |
| 72 | D3DX10SaveTextureToFileW@12 | |
| 73 | D3DX10SaveTextureToMemory@16 | |
| 74 | D3DX10UnsetAllDeviceObjects@4 | |
| 75 | D3DXBoxBoundProbe@16 | |
| 76 | D3DXColorAdjustContrast@12 | |
| 77 | D3DXColorAdjustSaturation@12 | |
| 78 | D3DXComputeBoundingBox@20 | |
| 79 | D3DXComputeBoundingSphere@20 | |
| 80 | D3DXCpuOptimizations@4 | |
| 81 | D3DXCreateMatrixStack@8 | |
| 82 | D3DXFloat16To32Array@12 | |
| 83 | D3DXFloat32To16Array@12 | |
| 84 | D3DXFresnelTerm@8 | |
| 85 | D3DXIntersectTri@32 | |
| 86 | D3DXMatrixAffineTransformation2D@20 | |
| 87 | D3DXMatrixAffineTransformation@20 | |
| 88 | D3DXMatrixDecompose@16 | |
| 89 | D3DXMatrixDeterminant@4 | |
| 90 | D3DXMatrixInverse@12 | |
| 91 | D3DXMatrixLookAtLH@16 | |
| 92 | D3DXMatrixLookAtRH@16 | |
| 93 | D3DXMatrixMultiply@12 | |
| 94 | D3DXMatrixMultiplyTranspose@12 | |
| 95 | D3DXMatrixOrthoLH@20 | |
| 96 | D3DXMatrixOrthoOffCenterLH@28 | |
| 97 | D3DXMatrixOrthoOffCenterRH@28 | |
| 98 | D3DXMatrixOrthoRH@20 | |
| 99 | D3DXMatrixPerspectiveFovLH@20 | |
| 100 | D3DXMatrixPerspectiveFovRH@20 | |
| 101 | D3DXMatrixPerspectiveLH@20 | |
| 102 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 103 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 104 | D3DXMatrixPerspectiveRH@20 | |
| 105 | D3DXMatrixReflect@8 | |
| 106 | D3DXMatrixRotationAxis@12 | |
| 107 | D3DXMatrixRotationQuaternion@8 | |
| 108 | D3DXMatrixRotationX@8 | |
| 109 | D3DXMatrixRotationY@8 | |
| 110 | D3DXMatrixRotationYawPitchRoll@16 | |
| 111 | D3DXMatrixRotationZ@8 | |
| 112 | D3DXMatrixScaling@16 | |
| 113 | D3DXMatrixShadow@12 | |
| 114 | D3DXMatrixTransformation2D@28 | |
| 115 | D3DXMatrixTransformation@28 | |
| 116 | D3DXMatrixTranslation@16 | |
| 117 | D3DXMatrixTranspose@8 | |
| 118 | D3DXPlaneFromPointNormal@12 | |
| 119 | D3DXPlaneFromPoints@16 | |
| 120 | D3DXPlaneIntersectLine@16 | |
| 121 | D3DXPlaneNormalize@8 | |
| 122 | D3DXPlaneTransform@12 | |
| 123 | D3DXPlaneTransformArray@24 | |
| 124 | D3DXQuaternionBaryCentric@24 | |
| 125 | D3DXQuaternionExp@8 | |
| 126 | D3DXQuaternionInverse@8 | |
| 127 | D3DXQuaternionLn@8 | |
| 128 | D3DXQuaternionMultiply@12 | |
| 129 | D3DXQuaternionNormalize@8 | |
| 130 | D3DXQuaternionRotationAxis@12 | |
| 131 | D3DXQuaternionRotationMatrix@8 | |
| 132 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 133 | D3DXQuaternionSlerp@16 | |
| 134 | D3DXQuaternionSquad@24 | |
| 135 | D3DXQuaternionSquadSetup@28 | |
| 136 | D3DXQuaternionToAxisAngle@12 | |
| 137 | D3DXSHAdd@16 | |
| 138 | D3DXSHDot@12 | |
| 139 | D3DXSHEvalConeLight@36 | |
| 140 | D3DXSHEvalDirection@12 | |
| 141 | D3DXSHEvalDirectionalLight@32 | |
| 142 | D3DXSHEvalHemisphereLight@52 | |
| 143 | D3DXSHEvalSphericalLight@36 | |
| 144 | D3DXSHMultiply2@12 | |
| 145 | D3DXSHMultiply3@12 | |
| 146 | D3DXSHMultiply4@12 | |
| 147 | D3DXSHMultiply5@12 | |
| 148 | D3DXSHMultiply6@12 | |
| 149 | D3DXSHRotate@16 | |
| 150 | D3DXSHRotateZ@16 | |
| 151 | D3DXSHScale@16 | |
| 152 | D3DXSphereBoundProbe@16 | |
| 153 | D3DXVec2BaryCentric@24 | |
| 154 | D3DXVec2CatmullRom@24 | |
| 155 | D3DXVec2Hermite@24 | |
| 156 | D3DXVec2Normalize@8 | |
| 157 | D3DXVec2Transform@12 | |
| 158 | D3DXVec2TransformArray@24 | |
| 159 | D3DXVec2TransformCoord@12 | |
| 160 | D3DXVec2TransformCoordArray@24 | |
| 161 | D3DXVec2TransformNormal@12 | |
| 162 | D3DXVec2TransformNormalArray@24 | |
| 163 | D3DXVec3BaryCentric@24 | |
| 164 | D3DXVec3CatmullRom@24 | |
| 165 | D3DXVec3Hermite@24 | |
| 166 | D3DXVec3Normalize@8 | |
| 167 | D3DXVec3Project@24 | |
| 168 | D3DXVec3ProjectArray@36 | |
| 169 | D3DXVec3Transform@12 | |
| 170 | D3DXVec3TransformArray@24 | |
| 171 | D3DXVec3TransformCoord@12 | |
| 172 | D3DXVec3TransformCoordArray@24 | |
| 173 | D3DXVec3TransformNormal@12 | |
| 174 | D3DXVec3TransformNormalArray@24 | |
| 175 | D3DXVec3Unproject@24 | |
| 176 | D3DXVec3UnprojectArray@36 | |
| 177 | D3DXVec4BaryCentric@24 | |
| 178 | D3DXVec4CatmullRom@24 | |
| 179 | D3DXVec4Cross@16 | |
| 180 | D3DXVec4Hermite@24 | |
| 181 | D3DXVec4Normalize@8 | |
| 182 | D3DXVec4Transform@12 | |
| 183 | D3DXVec4TransformArray@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 | ; | |
| 6 | LIBRARY "d3dx11_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CheckVersion@8 | |
| 9 | D3DX11CompileFromFileA@44 | |
| 10 | D3DX11CompileFromFileW@44 | |
| 11 | D3DX11CompileFromMemory@52 | |
| 12 | D3DX11CompileFromResourceA@52 | |
| 13 | D3DX11CompileFromResourceW@52 | |
| 14 | D3DX11ComputeNormalMap@24 | |
| 15 | D3DX11CreateAsyncCompilerProcessor@40 | |
| 16 | D3DX11CreateAsyncFileLoaderA@8 | |
| 17 | D3DX11CreateAsyncFileLoaderW@8 | |
| 18 | D3DX11CreateAsyncMemoryLoader@12 | |
| 19 | D3DX11CreateAsyncResourceLoaderA@12 | |
| 20 | D3DX11CreateAsyncResourceLoaderW@12 | |
| 21 | D3DX11CreateAsyncShaderPreprocessProcessor@24 | |
| 22 | D3DX11CreateAsyncShaderResourceViewProcessor@12 | |
| 23 | D3DX11CreateAsyncTextureInfoProcessor@8 | |
| 24 | D3DX11CreateAsyncTextureProcessor@12 | |
| 25 | D3DX11CreateShaderResourceViewFromFileA@24 | |
| 26 | D3DX11CreateShaderResourceViewFromFileW@24 | |
| 27 | D3DX11CreateShaderResourceViewFromMemory@28 | |
| 28 | D3DX11CreateShaderResourceViewFromResourceA@28 | |
| 29 | D3DX11CreateShaderResourceViewFromResourceW@28 | |
| 30 | D3DX11CreateTextureFromFileA@24 | |
| 31 | D3DX11CreateTextureFromFileW@24 | |
| 32 | D3DX11CreateTextureFromMemory@28 | |
| 33 | D3DX11CreateTextureFromResourceA@28 | |
| 34 | D3DX11CreateTextureFromResourceW@28 | |
| 35 | D3DX11CreateThreadPump@12 | |
| 36 | D3DX11FilterTexture@16 | |
| 37 | D3DX11GetImageInfoFromFileA@16 | |
| 38 | D3DX11GetImageInfoFromFileW@16 | |
| 39 | D3DX11GetImageInfoFromMemory@20 | |
| 40 | D3DX11GetImageInfoFromResourceA@20 | |
| 41 | D3DX11GetImageInfoFromResourceW@20 | |
| 42 | D3DX11LoadTextureFromTexture@16 | |
| 43 | D3DX11PreprocessShaderFromFileA@28 | |
| 44 | D3DX11PreprocessShaderFromFileW@28 | |
| 45 | D3DX11PreprocessShaderFromMemory@36 | |
| 46 | D3DX11PreprocessShaderFromResourceA@36 | |
| 47 | D3DX11PreprocessShaderFromResourceW@36 | |
| 48 | D3DX11SHProjectCubeMap@24 | |
| 49 | D3DX11SaveTextureToFileA@16 | |
| 50 | D3DX11SaveTextureToFileW@16 | |
| 51 | D3DX11SaveTextureToMemory@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 | ; | |
| 6 | LIBRARY "d3dx11_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CheckVersion@8 | |
| 9 | D3DX11CompileFromFileA@44 | |
| 10 | D3DX11CompileFromFileW@44 | |
| 11 | D3DX11CompileFromMemory@52 | |
| 12 | D3DX11CompileFromResourceA@52 | |
| 13 | D3DX11CompileFromResourceW@52 | |
| 14 | D3DX11ComputeNormalMap@24 | |
| 15 | D3DX11CreateAsyncCompilerProcessor@40 | |
| 16 | D3DX11CreateAsyncFileLoaderA@8 | |
| 17 | D3DX11CreateAsyncFileLoaderW@8 | |
| 18 | D3DX11CreateAsyncMemoryLoader@12 | |
| 19 | D3DX11CreateAsyncResourceLoaderA@12 | |
| 20 | D3DX11CreateAsyncResourceLoaderW@12 | |
| 21 | D3DX11CreateAsyncShaderPreprocessProcessor@24 | |
| 22 | D3DX11CreateAsyncShaderResourceViewProcessor@12 | |
| 23 | D3DX11CreateAsyncTextureInfoProcessor@8 | |
| 24 | D3DX11CreateAsyncTextureProcessor@12 | |
| 25 | D3DX11CreateShaderResourceViewFromFileA@24 | |
| 26 | D3DX11CreateShaderResourceViewFromFileW@24 | |
| 27 | D3DX11CreateShaderResourceViewFromMemory@28 | |
| 28 | D3DX11CreateShaderResourceViewFromResourceA@28 | |
| 29 | D3DX11CreateShaderResourceViewFromResourceW@28 | |
| 30 | D3DX11CreateTextureFromFileA@24 | |
| 31 | D3DX11CreateTextureFromFileW@24 | |
| 32 | D3DX11CreateTextureFromMemory@28 | |
| 33 | D3DX11CreateTextureFromResourceA@28 | |
| 34 | D3DX11CreateTextureFromResourceW@28 | |
| 35 | D3DX11CreateThreadPump@12 | |
| 36 | D3DX11FilterTexture@16 | |
| 37 | D3DX11GetImageInfoFromFileA@16 | |
| 38 | D3DX11GetImageInfoFromFileW@16 | |
| 39 | D3DX11GetImageInfoFromMemory@20 | |
| 40 | D3DX11GetImageInfoFromResourceA@20 | |
| 41 | D3DX11GetImageInfoFromResourceW@20 | |
| 42 | D3DX11LoadTextureFromTexture@16 | |
| 43 | D3DX11PreprocessShaderFromFileA@28 | |
| 44 | D3DX11PreprocessShaderFromFileW@28 | |
| 45 | D3DX11PreprocessShaderFromMemory@36 | |
| 46 | D3DX11PreprocessShaderFromResourceA@36 | |
| 47 | D3DX11PreprocessShaderFromResourceW@36 | |
| 48 | D3DX11SHProjectCubeMap@24 | |
| 49 | D3DX11SaveTextureToFileA@16 | |
| 50 | D3DX11SaveTextureToFileW@16 | |
| 51 | D3DX11SaveTextureToMemory@20 |
lib/libc/mingw/lib32/d3dx8d.def created+208| ... | ... | @@ -0,0 +1,208 @@ |
| 1 | LIBRARY d3dx8d.dll | |
| 2 | EXPORTS | |
| 3 | D3DXAssembleShader@24 | |
| 4 | D3DXAssembleShaderFromFileA@20 | |
| 5 | D3DXAssembleShaderFromFileW@20 | |
| 6 | D3DXAssembleShaderFromResourceA@24 | |
| 7 | D3DXAssembleShaderFromResourceW@24 | |
| 8 | D3DXBoxBoundProbe@16 | |
| 9 | D3DXCheckCubeTextureRequirements@24 | |
| 10 | D3DXCheckTextureRequirements@28 | |
| 11 | D3DXCheckVolumeTextureRequirements@32 | |
| 12 | D3DXCleanMesh@20 | |
| 13 | D3DXColorAdjustContrast@12 | |
| 14 | D3DXColorAdjustSaturation@12 | |
| 15 | D3DXCompileEffect@16 | |
| 16 | D3DXCompileEffectFromFileA@12 | |
| 17 | D3DXCompileEffectFromFileW@12 | |
| 18 | D3DXComputeBoundingBox@20 | |
| 19 | D3DXComputeBoundingSphere@20 | |
| 20 | D3DXComputeNormalMap@24 | |
| 21 | D3DXComputeNormals@8 | |
| 22 | D3DXComputeTangent@28 | |
| 23 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 24 | D3DXConvertMeshSubsetToStrips@28 | |
| 25 | D3DXCpuOptimizations@4 | |
| 26 | D3DXCreateBox@24 | |
| 27 | D3DXCreateBuffer@8 | |
| 28 | D3DXCreateCubeTexture@28 | |
| 29 | D3DXCreateCubeTextureFromFileA@12 | |
| 30 | D3DXCreateCubeTextureFromFileExA@52 | |
| 31 | D3DXCreateCubeTextureFromFileExW@52 | |
| 32 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 33 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 34 | D3DXCreateCubeTextureFromFileW@12 | |
| 35 | D3DXCreateCubeTextureFromResourceA@16 | |
| 36 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 37 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 38 | D3DXCreateCubeTextureFromResourceW@16 | |
| 39 | D3DXCreateCylinder@32 | |
| 40 | D3DXCreateEffect@20 | |
| 41 | D3DXCreateEffectFromFileA@16 | |
| 42 | D3DXCreateEffectFromFileW@16 | |
| 43 | D3DXCreateEffectFromResourceA@16 | |
| 44 | D3DXCreateEffectFromResourceW@16 | |
| 45 | D3DXCreateFont@12 | |
| 46 | D3DXCreateFontIndirect@12 | |
| 47 | D3DXCreateMatrixStack@8 | |
| 48 | D3DXCreateMesh@24 | |
| 49 | D3DXCreateMeshFVF@24 | |
| 50 | D3DXCreatePMeshFromStream@24 | |
| 51 | D3DXCreatePolygon@20 | |
| 52 | D3DXCreateRenderToEnvMap@24 | |
| 53 | D3DXCreateRenderToSurface@28 | |
| 54 | D3DXCreateSPMesh@20 | |
| 55 | D3DXCreateSkinMesh@28 | |
| 56 | D3DXCreateSkinMeshFVF@28 | |
| 57 | D3DXCreateSkinMeshFromMesh@12 | |
| 58 | D3DXCreateSphere@24 | |
| 59 | D3DXCreateSprite@8 | |
| 60 | D3DXCreateTeapot@12 | |
| 61 | D3DXCreateTextA@32 | |
| 62 | D3DXCreateTextW@32 | |
| 63 | D3DXCreateTexture@32 | |
| 64 | D3DXCreateTextureFromFileA@12 | |
| 65 | D3DXCreateTextureFromFileExA@56 | |
| 66 | D3DXCreateTextureFromFileExW@56 | |
| 67 | D3DXCreateTextureFromFileInMemory@16 | |
| 68 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 69 | D3DXCreateTextureFromFileW@12 | |
| 70 | D3DXCreateTextureFromResourceA@16 | |
| 71 | D3DXCreateTextureFromResourceExA@60 | |
| 72 | D3DXCreateTextureFromResourceExW@60 | |
| 73 | D3DXCreateTextureFromResourceW@16 | |
| 74 | D3DXCreateTorus@28 | |
| 75 | D3DXCreateVolumeTexture@36 | |
| 76 | D3DXCreateVolumeTextureFromFileA@12 | |
| 77 | D3DXCreateVolumeTextureFromFileExA@56 | |
| 78 | D3DXCreateVolumeTextureFromFileExW@56 | |
| 79 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 80 | D3DXCreateVolumeTextureFromFileInMemoryEx@60 | |
| 81 | D3DXCreateVolumeTextureFromFileW@12 | |
| 82 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 83 | D3DXCreateVolumeTextureFromResourceExA@60 | |
| 84 | D3DXCreateVolumeTextureFromResourceExW@60 | |
| 85 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 86 | D3DXDeclaratorFromFVF@8 | |
| 87 | D3DXFVFFromDeclarator@8 | |
| 88 | D3DXFilterCubeTexture@16 | |
| 89 | D3DXFillCubeTexture@12 | |
| 90 | D3DXFillTexture@12 | |
| 91 | D3DXFillVolumeTexture@12 | |
| 92 | D3DXFilterTexture@16 | |
| 93 | D3DXFresnelTerm@8 | |
| 94 | D3DXFilterVolumeTexture@16 | |
| 95 | D3DXGeneratePMesh@28 | |
| 96 | D3DXGetErrorStringA@12 | |
| 97 | D3DXGetErrorStringW@12 | |
| 98 | D3DXGetFVFVertexSize@4 | |
| 99 | D3DXGetImageInfoFromFileA@8 | |
| 100 | D3DXGetImageInfoFromFileInMemory@12 | |
| 101 | D3DXGetImageInfoFromFileW@8 | |
| 102 | D3DXGetImageInfoFromResourceA@12 | |
| 103 | D3DXGetImageInfoFromResourceW@12 | |
| 104 | D3DXIntersect@40 | |
| 105 | D3DXIntersectSubset@44 | |
| 106 | D3DXIntersectTri@32 | |
| 107 | D3DXLoadMeshFromX@28 | |
| 108 | D3DXLoadMeshFromXInMemory@32 | |
| 109 | D3DXLoadMeshFromXResource@36 | |
| 110 | D3DXLoadMeshFromXof@28 | |
| 111 | D3DXLoadSkinMeshFromXof@36 | |
| 112 | D3DXLoadSurfaceFromFileA@32 | |
| 113 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 114 | D3DXLoadSurfaceFromFileW@32 | |
| 115 | D3DXLoadSurfaceFromMemory@40 | |
| 116 | D3DXLoadSurfaceFromResourceA@36 | |
| 117 | D3DXLoadSurfaceFromResourceW@36 | |
| 118 | D3DXLoadSurfaceFromSurface@32 | |
| 119 | D3DXLoadVolumeFromFileA@32 | |
| 120 | D3DXLoadVolumeFromFileInMemory@36 | |
| 121 | D3DXLoadVolumeFromFileW@32 | |
| 122 | D3DXLoadVolumeFromMemory@44 | |
| 123 | D3DXLoadVolumeFromResourceA@36 | |
| 124 | D3DXLoadVolumeFromResourceW@36 | |
| 125 | D3DXLoadVolumeFromVolume@32 | |
| 126 | D3DXMatrixAffineTransformation@20 | |
| 127 | D3DXMatrixInverse@12 | |
| 128 | D3DXMatrixLookAtLH@16 | |
| 129 | D3DXMatrixLookAtRH@16 | |
| 130 | D3DXMatrixMultiply@12 | |
| 131 | D3DXMatrixMultiplyTranspose@12 | |
| 132 | D3DXMatrixOrthoLH@20 | |
| 133 | D3DXMatrixOrthoOffCenterLH@28 | |
| 134 | D3DXMatrixOrthoOffCenterRH@28 | |
| 135 | D3DXMatrixOrthoRH@20 | |
| 136 | D3DXMatrixPerspectiveFovLH@20 | |
| 137 | D3DXMatrixPerspectiveFovRH@20 | |
| 138 | D3DXMatrixPerspectiveLH@20 | |
| 139 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 140 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 141 | D3DXMatrixPerspectiveRH@20 | |
| 142 | D3DXMatrixReflect@8 | |
| 143 | D3DXMatrixRotationAxis@12 | |
| 144 | D3DXMatrixRotationQuaternion@8 | |
| 145 | D3DXMatrixRotationX@8 | |
| 146 | D3DXMatrixRotationY@8 | |
| 147 | D3DXMatrixRotationYawPitchRoll@16 | |
| 148 | D3DXMatrixRotationZ@8 | |
| 149 | D3DXMatrixScaling@16 | |
| 150 | D3DXMatrixShadow@12 | |
| 151 | D3DXMatrixTransformation@28 | |
| 152 | D3DXMatrixTranslation@16 | |
| 153 | D3DXMatrixTranspose@8 | |
| 154 | D3DXMatrixfDeterminant@4 | |
| 155 | D3DXPlaneFromPointNormal@12 | |
| 156 | D3DXPlaneFromPoints@16 | |
| 157 | D3DXPlaneIntersectLine@16 | |
| 158 | D3DXPlaneNormalize@8 | |
| 159 | D3DXPlaneTransform@12 | |
| 160 | D3DXQuaternionBaryCentric@24 | |
| 161 | D3DXQuaternionExp@8 | |
| 162 | D3DXQuaternionInverse@8 | |
| 163 | D3DXQuaternionLn@8 | |
| 164 | D3DXQuaternionMultiply@12 | |
| 165 | D3DXQuaternionNormalize@8 | |
| 166 | D3DXQuaternionRotationAxis@12 | |
| 167 | D3DXQuaternionRotationMatrix@8 | |
| 168 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 169 | D3DXQuaternionSlerp@16 | |
| 170 | D3DXQuaternionSquad@24 | |
| 171 | D3DXQuaternionSquadSetup@28 | |
| 172 | D3DXQuaternionToAxisAngle@12 | |
| 173 | D3DXSaveMeshToX@24 | |
| 174 | D3DXSaveSurfaceToFileA@20 | |
| 175 | D3DXSaveSurfaceToFileW@20 | |
| 176 | D3DXSaveTextureToFileA@16 | |
| 177 | D3DXSaveTextureToFileW@16 | |
| 178 | D3DXSaveVolumeToFileA@20 | |
| 179 | D3DXSaveVolumeToFileW@20 | |
| 180 | D3DXSimplifyMesh@28 | |
| 181 | D3DXSphereBoundProbe@16 | |
| 182 | D3DXTesselateMesh@20 | |
| 183 | D3DXSplitMesh@36 | |
| 184 | D3DXTessellateNPatches@24 | |
| 185 | D3DXValidMesh@12 | |
| 186 | D3DXVec2BaryCentric@24 | |
| 187 | D3DXVec2CatmullRom@24 | |
| 188 | D3DXVec2Hermite@24 | |
| 189 | D3DXVec2Normalize@8 | |
| 190 | D3DXVec2Transform@12 | |
| 191 | D3DXVec2TransformCoord@12 | |
| 192 | D3DXVec2TransformNormal@12 | |
| 193 | D3DXVec3BaryCentric@24 | |
| 194 | D3DXVec3CatmullRom@24 | |
| 195 | D3DXVec3Hermite@24 | |
| 196 | D3DXVec3Normalize@8 | |
| 197 | D3DXVec3Project@24 | |
| 198 | D3DXVec3Transform@12 | |
| 199 | D3DXVec3TransformCoord@12 | |
| 200 | D3DXVec3TransformNormal@12 | |
| 201 | D3DXVec3Unproject@24 | |
| 202 | D3DXVec4BaryCentric@24 | |
| 203 | D3DXVec4CatmullRom@24 | |
| 204 | D3DXVec4Cross@16 | |
| 205 | D3DXVec4Hermite@24 | |
| 206 | D3DXVec4Normalize@8 | |
| 207 | D3DXVec4Transform@12 | |
| 208 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_24.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeNormalMap@24 | |
| 29 | D3DXComputeNormals@8 | |
| 30 | D3DXComputeTangent@24 | |
| 31 | D3DXComputeTangentFrame@8 | |
| 32 | D3DXComputeTangentFrameEx@64 | |
| 33 | D3DXConcatenateMeshes@32 | |
| 34 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 35 | D3DXConvertMeshSubsetToStrips@28 | |
| 36 | D3DXCpuOptimizations@4 | |
| 37 | D3DXCreateAnimationController@20 | |
| 38 | D3DXCreateBox@24 | |
| 39 | D3DXCreateBuffer@8 | |
| 40 | D3DXCreateCompressedAnimationSet@32 | |
| 41 | D3DXCreateCubeTexture@28 | |
| 42 | D3DXCreateCubeTextureFromFileA@12 | |
| 43 | D3DXCreateCubeTextureFromFileExA@52 | |
| 44 | D3DXCreateCubeTextureFromFileExW@52 | |
| 45 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 46 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 47 | D3DXCreateCubeTextureFromFileW@12 | |
| 48 | D3DXCreateCubeTextureFromResourceA@16 | |
| 49 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 50 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 51 | D3DXCreateCubeTextureFromResourceW@16 | |
| 52 | D3DXCreateCylinder@32 | |
| 53 | D3DXCreateEffect@36 | |
| 54 | D3DXCreateEffectCompiler@28 | |
| 55 | D3DXCreateEffectCompilerFromFileA@24 | |
| 56 | D3DXCreateEffectCompilerFromFileW@24 | |
| 57 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 58 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 59 | D3DXCreateEffectEx@40 | |
| 60 | D3DXCreateEffectFromFileA@32 | |
| 61 | D3DXCreateEffectFromFileExA@36 | |
| 62 | D3DXCreateEffectFromFileExW@36 | |
| 63 | D3DXCreateEffectFromFileW@32 | |
| 64 | D3DXCreateEffectFromResourceA@36 | |
| 65 | D3DXCreateEffectFromResourceExA@40 | |
| 66 | D3DXCreateEffectFromResourceExW@40 | |
| 67 | D3DXCreateEffectFromResourceW@36 | |
| 68 | D3DXCreateEffectPool@4 | |
| 69 | D3DXCreateFontA@48 | |
| 70 | D3DXCreateFontIndirectA@12 | |
| 71 | D3DXCreateFontIndirectW@12 | |
| 72 | D3DXCreateFontW@48 | |
| 73 | D3DXCreateFragmentLinker@12 | |
| 74 | D3DXCreateKeyframedAnimationSet@32 | |
| 75 | D3DXCreateLine@8 | |
| 76 | D3DXCreateMatrixStack@8 | |
| 77 | D3DXCreateMesh@24 | |
| 78 | D3DXCreateMeshFVF@24 | |
| 79 | D3DXCreateNPatchMesh@8 | |
| 80 | D3DXCreatePMeshFromStream@28 | |
| 81 | D3DXCreatePRTBuffer@16 | |
| 82 | D3DXCreatePRTBufferTex@20 | |
| 83 | D3DXCreatePRTCompBuffer@28 | |
| 84 | D3DXCreatePRTEngine@20 | |
| 85 | D3DXCreatePatchMesh@28 | |
| 86 | D3DXCreatePolygon@20 | |
| 87 | D3DXCreateRenderToEnvMap@28 | |
| 88 | D3DXCreateRenderToSurface@28 | |
| 89 | D3DXCreateSPMesh@20 | |
| 90 | D3DXCreateSkinInfo@16 | |
| 91 | D3DXCreateSkinInfoFVF@16 | |
| 92 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 93 | D3DXCreateSphere@24 | |
| 94 | D3DXCreateSprite@8 | |
| 95 | D3DXCreateTeapot@12 | |
| 96 | D3DXCreateTextA@32 | |
| 97 | D3DXCreateTextW@32 | |
| 98 | D3DXCreateTexture@32 | |
| 99 | D3DXCreateTextureFromFileA@12 | |
| 100 | D3DXCreateTextureFromFileExA@56 | |
| 101 | D3DXCreateTextureFromFileExW@56 | |
| 102 | D3DXCreateTextureFromFileInMemory@16 | |
| 103 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 104 | D3DXCreateTextureFromFileW@12 | |
| 105 | D3DXCreateTextureFromResourceA@16 | |
| 106 | D3DXCreateTextureFromResourceExA@60 | |
| 107 | D3DXCreateTextureFromResourceExW@60 | |
| 108 | D3DXCreateTextureFromResourceW@16 | |
| 109 | D3DXCreateTextureGutterHelper@20 | |
| 110 | D3DXCreateTextureShader@8 | |
| 111 | D3DXCreateTorus@28 | |
| 112 | D3DXCreateVolumeTexture@36 | |
| 113 | D3DXCreateVolumeTextureFromFileA@12 | |
| 114 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 115 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 116 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 117 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 118 | D3DXCreateVolumeTextureFromFileW@12 | |
| 119 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 120 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 121 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 122 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 123 | D3DXDebugMute@4 | |
| 124 | D3DXDeclaratorFromFVF@8 | |
| 125 | D3DXDisassembleEffect@12 | |
| 126 | D3DXDisassembleShader@16 | |
| 127 | D3DXFVFFromDeclarator@8 | |
| 128 | D3DXFileCreate@4 | |
| 129 | D3DXFillCubeTexture@12 | |
| 130 | D3DXFillCubeTextureTX@8 | |
| 131 | D3DXFillTexture@12 | |
| 132 | D3DXFillTextureTX@8 | |
| 133 | D3DXFillVolumeTexture@12 | |
| 134 | D3DXFillVolumeTextureTX@8 | |
| 135 | D3DXFilterTexture@16 | |
| 136 | D3DXFindShaderComment@16 | |
| 137 | D3DXFloat16To32Array@12 | |
| 138 | D3DXFloat32To16Array@12 | |
| 139 | D3DXFrameAppendChild@8 | |
| 140 | D3DXFrameCalculateBoundingSphere@12 | |
| 141 | D3DXFrameDestroy@8 | |
| 142 | D3DXFrameFind@8 | |
| 143 | D3DXFrameNumNamedMatrices@4 | |
| 144 | D3DXFrameRegisterNamedMatrices@8 | |
| 145 | D3DXFresnelTerm@8 | |
| 146 | D3DXGatherFragments@28 | |
| 147 | D3DXGatherFragmentsFromFileA@24 | |
| 148 | D3DXGatherFragmentsFromFileW@24 | |
| 149 | D3DXGatherFragmentsFromResourceA@28 | |
| 150 | D3DXGatherFragmentsFromResourceW@28 | |
| 151 | D3DXGenerateOutputDecl@8 | |
| 152 | D3DXGeneratePMesh@28 | |
| 153 | D3DXGetDeclLength@4 | |
| 154 | D3DXGetDeclVertexSize@8 | |
| 155 | D3DXGetDriverLevel@4 | |
| 156 | D3DXGetFVFVertexSize@4 | |
| 157 | D3DXGetImageInfoFromFileA@8 | |
| 158 | D3DXGetImageInfoFromFileInMemory@12 | |
| 159 | D3DXGetImageInfoFromFileW@8 | |
| 160 | D3DXGetImageInfoFromResourceA@12 | |
| 161 | D3DXGetImageInfoFromResourceW@12 | |
| 162 | D3DXGetPixelShaderProfile@4 | |
| 163 | D3DXGetShaderConstantTable@8 | |
| 164 | D3DXGetShaderInputSemantics@12 | |
| 165 | D3DXGetShaderOutputSemantics@12 | |
| 166 | D3DXGetShaderSamplers@12 | |
| 167 | D3DXGetShaderSize@4 | |
| 168 | D3DXGetShaderVersion@4 | |
| 169 | D3DXGetTargetDescByName@12 | |
| 170 | D3DXGetTargetDescByVersion@12 | |
| 171 | D3DXGetVertexShaderProfile@4 | |
| 172 | D3DXIntersect@40 | |
| 173 | D3DXIntersectSubset@44 | |
| 174 | D3DXIntersectTri@32 | |
| 175 | D3DXLoadMeshFromXA@32 | |
| 176 | D3DXLoadMeshFromXInMemory@36 | |
| 177 | D3DXLoadMeshFromXResource@40 | |
| 178 | D3DXLoadMeshFromXW@32 | |
| 179 | D3DXLoadMeshFromXof@32 | |
| 180 | D3DXLoadMeshHierarchyFromXA@28 | |
| 181 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 182 | D3DXLoadMeshHierarchyFromXW@28 | |
| 183 | D3DXLoadPRTBufferFromFileA@8 | |
| 184 | D3DXLoadPRTBufferFromFileW@8 | |
| 185 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 186 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 187 | D3DXLoadPatchMeshFromXof@28 | |
| 188 | D3DXLoadSkinMeshFromXof@36 | |
| 189 | D3DXLoadSurfaceFromFileA@32 | |
| 190 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 191 | D3DXLoadSurfaceFromFileW@32 | |
| 192 | D3DXLoadSurfaceFromMemory@40 | |
| 193 | D3DXLoadSurfaceFromResourceA@36 | |
| 194 | D3DXLoadSurfaceFromResourceW@36 | |
| 195 | D3DXLoadSurfaceFromSurface@32 | |
| 196 | D3DXLoadVolumeFromFileA@32 | |
| 197 | D3DXLoadVolumeFromFileInMemory@36 | |
| 198 | D3DXLoadVolumeFromFileW@32 | |
| 199 | D3DXLoadVolumeFromMemory@44 | |
| 200 | D3DXLoadVolumeFromResourceA@36 | |
| 201 | D3DXLoadVolumeFromResourceW@36 | |
| 202 | D3DXLoadVolumeFromVolume@32 | |
| 203 | D3DXMatrixAffineTransformation2D@20 | |
| 204 | D3DXMatrixAffineTransformation@20 | |
| 205 | D3DXMatrixDecompose@16 | |
| 206 | D3DXMatrixDeterminant@4 | |
| 207 | D3DXMatrixInverse@12 | |
| 208 | D3DXMatrixLookAtLH@16 | |
| 209 | D3DXMatrixLookAtRH@16 | |
| 210 | D3DXMatrixMultiply@12 | |
| 211 | D3DXMatrixMultiplyTranspose@12 | |
| 212 | D3DXMatrixOrthoLH@20 | |
| 213 | D3DXMatrixOrthoOffCenterLH@28 | |
| 214 | D3DXMatrixOrthoOffCenterRH@28 | |
| 215 | D3DXMatrixOrthoRH@20 | |
| 216 | D3DXMatrixPerspectiveFovLH@20 | |
| 217 | D3DXMatrixPerspectiveFovRH@20 | |
| 218 | D3DXMatrixPerspectiveLH@20 | |
| 219 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 220 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 221 | D3DXMatrixPerspectiveRH@20 | |
| 222 | D3DXMatrixReflect@8 | |
| 223 | D3DXMatrixRotationAxis@12 | |
| 224 | D3DXMatrixRotationQuaternion@8 | |
| 225 | D3DXMatrixRotationX@8 | |
| 226 | D3DXMatrixRotationY@8 | |
| 227 | D3DXMatrixRotationYawPitchRoll@16 | |
| 228 | D3DXMatrixRotationZ@8 | |
| 229 | D3DXMatrixScaling@16 | |
| 230 | D3DXMatrixShadow@12 | |
| 231 | D3DXMatrixTransformation2D@28 | |
| 232 | D3DXMatrixTransformation@28 | |
| 233 | D3DXMatrixTranslation@16 | |
| 234 | D3DXMatrixTranspose@8 | |
| 235 | D3DXOptimizeFaces@20 | |
| 236 | D3DXOptimizeVertices@20 | |
| 237 | D3DXPlaneFromPointNormal@12 | |
| 238 | D3DXPlaneFromPoints@16 | |
| 239 | D3DXPlaneIntersectLine@16 | |
| 240 | D3DXPlaneNormalize@8 | |
| 241 | D3DXPlaneTransform@12 | |
| 242 | D3DXPlaneTransformArray@24 | |
| 243 | D3DXQuaternionBaryCentric@24 | |
| 244 | D3DXQuaternionExp@8 | |
| 245 | D3DXQuaternionInverse@8 | |
| 246 | D3DXQuaternionLn@8 | |
| 247 | D3DXQuaternionMultiply@12 | |
| 248 | D3DXQuaternionNormalize@8 | |
| 249 | D3DXQuaternionRotationAxis@12 | |
| 250 | D3DXQuaternionRotationMatrix@8 | |
| 251 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 252 | D3DXQuaternionSlerp@16 | |
| 253 | D3DXQuaternionSquad@24 | |
| 254 | D3DXQuaternionSquadSetup@28 | |
| 255 | D3DXQuaternionToAxisAngle@12 | |
| 256 | D3DXRectPatchSize@12 | |
| 257 | D3DXSHAdd@16 | |
| 258 | D3DXSHDot@12 | |
| 259 | D3DXSHEvalConeLight@36 | |
| 260 | D3DXSHEvalDirection@12 | |
| 261 | D3DXSHEvalDirectionalLight@32 | |
| 262 | D3DXSHEvalHemisphereLight@52 | |
| 263 | D3DXSHEvalSphericalLight@36 | |
| 264 | D3DXSHPRTCompSplitMeshSC@64 | |
| 265 | D3DXSHPRTCompSuperCluster@24 | |
| 266 | D3DXSHProjectCubeMap@20 | |
| 267 | D3DXSHRotate@16 | |
| 268 | D3DXSHRotateZ@16 | |
| 269 | D3DXSHScale@16 | |
| 270 | D3DXSaveMeshHierarchyToFileA@20 | |
| 271 | D3DXSaveMeshHierarchyToFileW@20 | |
| 272 | D3DXSaveMeshToXA@28 | |
| 273 | D3DXSaveMeshToXW@28 | |
| 274 | D3DXSavePRTBufferToFileA@8 | |
| 275 | D3DXSavePRTBufferToFileW@8 | |
| 276 | D3DXSavePRTCompBufferToFileA@8 | |
| 277 | D3DXSavePRTCompBufferToFileW@8 | |
| 278 | D3DXSaveSurfaceToFileA@20 | |
| 279 | D3DXSaveSurfaceToFileInMemory@20 | |
| 280 | D3DXSaveSurfaceToFileW@20 | |
| 281 | D3DXSaveTextureToFileA@16 | |
| 282 | D3DXSaveTextureToFileInMemory@16 | |
| 283 | D3DXSaveTextureToFileW@16 | |
| 284 | D3DXSaveVolumeToFileA@20 | |
| 285 | D3DXSaveVolumeToFileInMemory@20 | |
| 286 | D3DXSaveVolumeToFileW@20 | |
| 287 | D3DXSimplifyMesh@28 | |
| 288 | D3DXSphereBoundProbe@16 | |
| 289 | D3DXSplitMesh@36 | |
| 290 | D3DXTessellateNPatches@24 | |
| 291 | D3DXTessellateRectPatch@20 | |
| 292 | D3DXTessellateTriPatch@20 | |
| 293 | D3DXTriPatchSize@12 | |
| 294 | D3DXValidMesh@12 | |
| 295 | D3DXValidPatchMesh@16 | |
| 296 | D3DXVec2BaryCentric@24 | |
| 297 | D3DXVec2CatmullRom@24 | |
| 298 | D3DXVec2Hermite@24 | |
| 299 | D3DXVec2Normalize@8 | |
| 300 | D3DXVec2Transform@12 | |
| 301 | D3DXVec2TransformArray@24 | |
| 302 | D3DXVec2TransformCoord@12 | |
| 303 | D3DXVec2TransformCoordArray@24 | |
| 304 | D3DXVec2TransformNormal@12 | |
| 305 | D3DXVec2TransformNormalArray@24 | |
| 306 | D3DXVec3BaryCentric@24 | |
| 307 | D3DXVec3CatmullRom@24 | |
| 308 | D3DXVec3Hermite@24 | |
| 309 | D3DXVec3Normalize@8 | |
| 310 | D3DXVec3Project@24 | |
| 311 | D3DXVec3ProjectArray@36 | |
| 312 | D3DXVec3Transform@12 | |
| 313 | D3DXVec3TransformArray@24 | |
| 314 | D3DXVec3TransformCoord@12 | |
| 315 | D3DXVec3TransformCoordArray@24 | |
| 316 | D3DXVec3TransformNormal@12 | |
| 317 | D3DXVec3TransformNormalArray@24 | |
| 318 | D3DXVec3Unproject@24 | |
| 319 | D3DXVec3UnprojectArray@36 | |
| 320 | D3DXVec4BaryCentric@24 | |
| 321 | D3DXVec4CatmullRom@24 | |
| 322 | D3DXVec4Cross@16 | |
| 323 | D3DXVec4Hermite@24 | |
| 324 | D3DXVec4Normalize@8 | |
| 325 | D3DXVec4Transform@12 | |
| 326 | D3DXVec4TransformArray@24 | |
| 327 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_25.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeNormalMap@24 | |
| 29 | D3DXComputeNormals@8 | |
| 30 | D3DXComputeTangent@24 | |
| 31 | D3DXComputeTangentFrame@8 | |
| 32 | D3DXComputeTangentFrameEx@64 | |
| 33 | D3DXConcatenateMeshes@32 | |
| 34 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 35 | D3DXConvertMeshSubsetToStrips@28 | |
| 36 | D3DXCpuOptimizations@4 | |
| 37 | D3DXCreateAnimationController@20 | |
| 38 | D3DXCreateBox@24 | |
| 39 | D3DXCreateBuffer@8 | |
| 40 | D3DXCreateCompressedAnimationSet@32 | |
| 41 | D3DXCreateCubeTexture@28 | |
| 42 | D3DXCreateCubeTextureFromFileA@12 | |
| 43 | D3DXCreateCubeTextureFromFileExA@52 | |
| 44 | D3DXCreateCubeTextureFromFileExW@52 | |
| 45 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 46 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 47 | D3DXCreateCubeTextureFromFileW@12 | |
| 48 | D3DXCreateCubeTextureFromResourceA@16 | |
| 49 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 50 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 51 | D3DXCreateCubeTextureFromResourceW@16 | |
| 52 | D3DXCreateCylinder@32 | |
| 53 | D3DXCreateEffect@36 | |
| 54 | D3DXCreateEffectCompiler@28 | |
| 55 | D3DXCreateEffectCompilerFromFileA@24 | |
| 56 | D3DXCreateEffectCompilerFromFileW@24 | |
| 57 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 58 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 59 | D3DXCreateEffectEx@40 | |
| 60 | D3DXCreateEffectFromFileA@32 | |
| 61 | D3DXCreateEffectFromFileExA@36 | |
| 62 | D3DXCreateEffectFromFileExW@36 | |
| 63 | D3DXCreateEffectFromFileW@32 | |
| 64 | D3DXCreateEffectFromResourceA@36 | |
| 65 | D3DXCreateEffectFromResourceExA@40 | |
| 66 | D3DXCreateEffectFromResourceExW@40 | |
| 67 | D3DXCreateEffectFromResourceW@36 | |
| 68 | D3DXCreateEffectPool@4 | |
| 69 | D3DXCreateFontA@48 | |
| 70 | D3DXCreateFontIndirectA@12 | |
| 71 | D3DXCreateFontIndirectW@12 | |
| 72 | D3DXCreateFontW@48 | |
| 73 | D3DXCreateFragmentLinker@12 | |
| 74 | D3DXCreateKeyframedAnimationSet@32 | |
| 75 | D3DXCreateLine@8 | |
| 76 | D3DXCreateMatrixStack@8 | |
| 77 | D3DXCreateMesh@24 | |
| 78 | D3DXCreateMeshFVF@24 | |
| 79 | D3DXCreateNPatchMesh@8 | |
| 80 | D3DXCreatePMeshFromStream@28 | |
| 81 | D3DXCreatePRTBuffer@16 | |
| 82 | D3DXCreatePRTBufferTex@20 | |
| 83 | D3DXCreatePRTCompBuffer@28 | |
| 84 | D3DXCreatePRTEngine@20 | |
| 85 | D3DXCreatePatchMesh@28 | |
| 86 | D3DXCreatePolygon@20 | |
| 87 | D3DXCreateRenderToEnvMap@28 | |
| 88 | D3DXCreateRenderToSurface@28 | |
| 89 | D3DXCreateSPMesh@20 | |
| 90 | D3DXCreateSkinInfo@16 | |
| 91 | D3DXCreateSkinInfoFVF@16 | |
| 92 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 93 | D3DXCreateSphere@24 | |
| 94 | D3DXCreateSprite@8 | |
| 95 | D3DXCreateTeapot@12 | |
| 96 | D3DXCreateTextA@32 | |
| 97 | D3DXCreateTextW@32 | |
| 98 | D3DXCreateTexture@32 | |
| 99 | D3DXCreateTextureFromFileA@12 | |
| 100 | D3DXCreateTextureFromFileExA@56 | |
| 101 | D3DXCreateTextureFromFileExW@56 | |
| 102 | D3DXCreateTextureFromFileInMemory@16 | |
| 103 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 104 | D3DXCreateTextureFromFileW@12 | |
| 105 | D3DXCreateTextureFromResourceA@16 | |
| 106 | D3DXCreateTextureFromResourceExA@60 | |
| 107 | D3DXCreateTextureFromResourceExW@60 | |
| 108 | D3DXCreateTextureFromResourceW@16 | |
| 109 | D3DXCreateTextureGutterHelper@20 | |
| 110 | D3DXCreateTextureShader@8 | |
| 111 | D3DXCreateTorus@28 | |
| 112 | D3DXCreateVolumeTexture@36 | |
| 113 | D3DXCreateVolumeTextureFromFileA@12 | |
| 114 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 115 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 116 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 117 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 118 | D3DXCreateVolumeTextureFromFileW@12 | |
| 119 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 120 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 121 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 122 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 123 | D3DXDebugMute@4 | |
| 124 | D3DXDeclaratorFromFVF@8 | |
| 125 | D3DXDisassembleEffect@12 | |
| 126 | D3DXDisassembleShader@16 | |
| 127 | D3DXFVFFromDeclarator@8 | |
| 128 | D3DXFileCreate@4 | |
| 129 | D3DXFillCubeTexture@12 | |
| 130 | D3DXFillCubeTextureTX@8 | |
| 131 | D3DXFillTexture@12 | |
| 132 | D3DXFillTextureTX@8 | |
| 133 | D3DXFillVolumeTexture@12 | |
| 134 | D3DXFillVolumeTextureTX@8 | |
| 135 | D3DXFilterTexture@16 | |
| 136 | D3DXFindShaderComment@16 | |
| 137 | D3DXFloat16To32Array@12 | |
| 138 | D3DXFloat32To16Array@12 | |
| 139 | D3DXFrameAppendChild@8 | |
| 140 | D3DXFrameCalculateBoundingSphere@12 | |
| 141 | D3DXFrameDestroy@8 | |
| 142 | D3DXFrameFind@8 | |
| 143 | D3DXFrameNumNamedMatrices@4 | |
| 144 | D3DXFrameRegisterNamedMatrices@8 | |
| 145 | D3DXFresnelTerm@8 | |
| 146 | D3DXGatherFragments@28 | |
| 147 | D3DXGatherFragmentsFromFileA@24 | |
| 148 | D3DXGatherFragmentsFromFileW@24 | |
| 149 | D3DXGatherFragmentsFromResourceA@28 | |
| 150 | D3DXGatherFragmentsFromResourceW@28 | |
| 151 | D3DXGenerateOutputDecl@8 | |
| 152 | D3DXGeneratePMesh@28 | |
| 153 | D3DXGetDeclLength@4 | |
| 154 | D3DXGetDeclVertexSize@8 | |
| 155 | D3DXGetDriverLevel@4 | |
| 156 | D3DXGetFVFVertexSize@4 | |
| 157 | D3DXGetImageInfoFromFileA@8 | |
| 158 | D3DXGetImageInfoFromFileInMemory@12 | |
| 159 | D3DXGetImageInfoFromFileW@8 | |
| 160 | D3DXGetImageInfoFromResourceA@12 | |
| 161 | D3DXGetImageInfoFromResourceW@12 | |
| 162 | D3DXGetPixelShaderProfile@4 | |
| 163 | D3DXGetShaderConstantTable@8 | |
| 164 | D3DXGetShaderInputSemantics@12 | |
| 165 | D3DXGetShaderOutputSemantics@12 | |
| 166 | D3DXGetShaderSamplers@12 | |
| 167 | D3DXGetShaderSize@4 | |
| 168 | D3DXGetShaderVersion@4 | |
| 169 | D3DXGetTargetDescByName@12 | |
| 170 | D3DXGetTargetDescByVersion@12 | |
| 171 | D3DXGetVertexShaderProfile@4 | |
| 172 | D3DXIntersect@40 | |
| 173 | D3DXIntersectSubset@44 | |
| 174 | D3DXIntersectTri@32 | |
| 175 | D3DXLoadMeshFromXA@32 | |
| 176 | D3DXLoadMeshFromXInMemory@36 | |
| 177 | D3DXLoadMeshFromXResource@40 | |
| 178 | D3DXLoadMeshFromXW@32 | |
| 179 | D3DXLoadMeshFromXof@32 | |
| 180 | D3DXLoadMeshHierarchyFromXA@28 | |
| 181 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 182 | D3DXLoadMeshHierarchyFromXW@28 | |
| 183 | D3DXLoadPRTBufferFromFileA@8 | |
| 184 | D3DXLoadPRTBufferFromFileW@8 | |
| 185 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 186 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 187 | D3DXLoadPatchMeshFromXof@28 | |
| 188 | D3DXLoadSkinMeshFromXof@36 | |
| 189 | D3DXLoadSurfaceFromFileA@32 | |
| 190 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 191 | D3DXLoadSurfaceFromFileW@32 | |
| 192 | D3DXLoadSurfaceFromMemory@40 | |
| 193 | D3DXLoadSurfaceFromResourceA@36 | |
| 194 | D3DXLoadSurfaceFromResourceW@36 | |
| 195 | D3DXLoadSurfaceFromSurface@32 | |
| 196 | D3DXLoadVolumeFromFileA@32 | |
| 197 | D3DXLoadVolumeFromFileInMemory@36 | |
| 198 | D3DXLoadVolumeFromFileW@32 | |
| 199 | D3DXLoadVolumeFromMemory@44 | |
| 200 | D3DXLoadVolumeFromResourceA@36 | |
| 201 | D3DXLoadVolumeFromResourceW@36 | |
| 202 | D3DXLoadVolumeFromVolume@32 | |
| 203 | D3DXMatrixAffineTransformation2D@20 | |
| 204 | D3DXMatrixAffineTransformation@20 | |
| 205 | D3DXMatrixDecompose@16 | |
| 206 | D3DXMatrixDeterminant@4 | |
| 207 | D3DXMatrixInverse@12 | |
| 208 | D3DXMatrixLookAtLH@16 | |
| 209 | D3DXMatrixLookAtRH@16 | |
| 210 | D3DXMatrixMultiply@12 | |
| 211 | D3DXMatrixMultiplyTranspose@12 | |
| 212 | D3DXMatrixOrthoLH@20 | |
| 213 | D3DXMatrixOrthoOffCenterLH@28 | |
| 214 | D3DXMatrixOrthoOffCenterRH@28 | |
| 215 | D3DXMatrixOrthoRH@20 | |
| 216 | D3DXMatrixPerspectiveFovLH@20 | |
| 217 | D3DXMatrixPerspectiveFovRH@20 | |
| 218 | D3DXMatrixPerspectiveLH@20 | |
| 219 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 220 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 221 | D3DXMatrixPerspectiveRH@20 | |
| 222 | D3DXMatrixReflect@8 | |
| 223 | D3DXMatrixRotationAxis@12 | |
| 224 | D3DXMatrixRotationQuaternion@8 | |
| 225 | D3DXMatrixRotationX@8 | |
| 226 | D3DXMatrixRotationY@8 | |
| 227 | D3DXMatrixRotationYawPitchRoll@16 | |
| 228 | D3DXMatrixRotationZ@8 | |
| 229 | D3DXMatrixScaling@16 | |
| 230 | D3DXMatrixShadow@12 | |
| 231 | D3DXMatrixTransformation2D@28 | |
| 232 | D3DXMatrixTransformation@28 | |
| 233 | D3DXMatrixTranslation@16 | |
| 234 | D3DXMatrixTranspose@8 | |
| 235 | D3DXOptimizeFaces@20 | |
| 236 | D3DXOptimizeVertices@20 | |
| 237 | D3DXPlaneFromPointNormal@12 | |
| 238 | D3DXPlaneFromPoints@16 | |
| 239 | D3DXPlaneIntersectLine@16 | |
| 240 | D3DXPlaneNormalize@8 | |
| 241 | D3DXPlaneTransform@12 | |
| 242 | D3DXPlaneTransformArray@24 | |
| 243 | D3DXQuaternionBaryCentric@24 | |
| 244 | D3DXQuaternionExp@8 | |
| 245 | D3DXQuaternionInverse@8 | |
| 246 | D3DXQuaternionLn@8 | |
| 247 | D3DXQuaternionMultiply@12 | |
| 248 | D3DXQuaternionNormalize@8 | |
| 249 | D3DXQuaternionRotationAxis@12 | |
| 250 | D3DXQuaternionRotationMatrix@8 | |
| 251 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 252 | D3DXQuaternionSlerp@16 | |
| 253 | D3DXQuaternionSquad@24 | |
| 254 | D3DXQuaternionSquadSetup@28 | |
| 255 | D3DXQuaternionToAxisAngle@12 | |
| 256 | D3DXRectPatchSize@12 | |
| 257 | D3DXSHAdd@16 | |
| 258 | D3DXSHDot@12 | |
| 259 | D3DXSHEvalConeLight@36 | |
| 260 | D3DXSHEvalDirection@12 | |
| 261 | D3DXSHEvalDirectionalLight@32 | |
| 262 | D3DXSHEvalHemisphereLight@52 | |
| 263 | D3DXSHEvalSphericalLight@36 | |
| 264 | D3DXSHPRTCompSplitMeshSC@64 | |
| 265 | D3DXSHPRTCompSuperCluster@24 | |
| 266 | D3DXSHProjectCubeMap@20 | |
| 267 | D3DXSHRotate@16 | |
| 268 | D3DXSHRotateZ@16 | |
| 269 | D3DXSHScale@16 | |
| 270 | D3DXSaveMeshHierarchyToFileA@20 | |
| 271 | D3DXSaveMeshHierarchyToFileW@20 | |
| 272 | D3DXSaveMeshToXA@28 | |
| 273 | D3DXSaveMeshToXW@28 | |
| 274 | D3DXSavePRTBufferToFileA@8 | |
| 275 | D3DXSavePRTBufferToFileW@8 | |
| 276 | D3DXSavePRTCompBufferToFileA@8 | |
| 277 | D3DXSavePRTCompBufferToFileW@8 | |
| 278 | D3DXSaveSurfaceToFileA@20 | |
| 279 | D3DXSaveSurfaceToFileInMemory@20 | |
| 280 | D3DXSaveSurfaceToFileW@20 | |
| 281 | D3DXSaveTextureToFileA@16 | |
| 282 | D3DXSaveTextureToFileInMemory@16 | |
| 283 | D3DXSaveTextureToFileW@16 | |
| 284 | D3DXSaveVolumeToFileA@20 | |
| 285 | D3DXSaveVolumeToFileInMemory@20 | |
| 286 | D3DXSaveVolumeToFileW@20 | |
| 287 | D3DXSimplifyMesh@28 | |
| 288 | D3DXSphereBoundProbe@16 | |
| 289 | D3DXSplitMesh@36 | |
| 290 | D3DXTessellateNPatches@24 | |
| 291 | D3DXTessellateRectPatch@20 | |
| 292 | D3DXTessellateTriPatch@20 | |
| 293 | D3DXTriPatchSize@12 | |
| 294 | D3DXUVAtlasCreate@76 | |
| 295 | D3DXUVAtlasPack@44 | |
| 296 | D3DXUVAtlasPartition@68 | |
| 297 | D3DXValidMesh@12 | |
| 298 | D3DXValidPatchMesh@16 | |
| 299 | D3DXVec2BaryCentric@24 | |
| 300 | D3DXVec2CatmullRom@24 | |
| 301 | D3DXVec2Hermite@24 | |
| 302 | D3DXVec2Normalize@8 | |
| 303 | D3DXVec2Transform@12 | |
| 304 | D3DXVec2TransformArray@24 | |
| 305 | D3DXVec2TransformCoord@12 | |
| 306 | D3DXVec2TransformCoordArray@24 | |
| 307 | D3DXVec2TransformNormal@12 | |
| 308 | D3DXVec2TransformNormalArray@24 | |
| 309 | D3DXVec3BaryCentric@24 | |
| 310 | D3DXVec3CatmullRom@24 | |
| 311 | D3DXVec3Hermite@24 | |
| 312 | D3DXVec3Normalize@8 | |
| 313 | D3DXVec3Project@24 | |
| 314 | D3DXVec3ProjectArray@36 | |
| 315 | D3DXVec3Transform@12 | |
| 316 | D3DXVec3TransformArray@24 | |
| 317 | D3DXVec3TransformCoord@12 | |
| 318 | D3DXVec3TransformCoordArray@24 | |
| 319 | D3DXVec3TransformNormal@12 | |
| 320 | D3DXVec3TransformNormalArray@24 | |
| 321 | D3DXVec3Unproject@24 | |
| 322 | D3DXVec3UnprojectArray@36 | |
| 323 | D3DXVec4BaryCentric@24 | |
| 324 | D3DXVec4CatmullRom@24 | |
| 325 | D3DXVec4Cross@16 | |
| 326 | D3DXVec4Hermite@24 | |
| 327 | D3DXVec4Normalize@8 | |
| 328 | D3DXVec4Transform@12 | |
| 329 | D3DXVec4TransformArray@24 | |
| 330 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_26.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCpuOptimizations@4 | |
| 41 | D3DXCreateAnimationController@20 | |
| 42 | D3DXCreateBox@24 | |
| 43 | D3DXCreateBuffer@8 | |
| 44 | D3DXCreateCompressedAnimationSet@32 | |
| 45 | D3DXCreateCubeTexture@28 | |
| 46 | D3DXCreateCubeTextureFromFileA@12 | |
| 47 | D3DXCreateCubeTextureFromFileExA@52 | |
| 48 | D3DXCreateCubeTextureFromFileExW@52 | |
| 49 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 51 | D3DXCreateCubeTextureFromFileW@12 | |
| 52 | D3DXCreateCubeTextureFromResourceA@16 | |
| 53 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 54 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 55 | D3DXCreateCubeTextureFromResourceW@16 | |
| 56 | D3DXCreateCylinder@32 | |
| 57 | D3DXCreateEffect@36 | |
| 58 | D3DXCreateEffectCompiler@28 | |
| 59 | D3DXCreateEffectCompilerFromFileA@24 | |
| 60 | D3DXCreateEffectCompilerFromFileW@24 | |
| 61 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 62 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 63 | D3DXCreateEffectEx@40 | |
| 64 | D3DXCreateEffectFromFileA@32 | |
| 65 | D3DXCreateEffectFromFileExA@36 | |
| 66 | D3DXCreateEffectFromFileExW@36 | |
| 67 | D3DXCreateEffectFromFileW@32 | |
| 68 | D3DXCreateEffectFromResourceA@36 | |
| 69 | D3DXCreateEffectFromResourceExA@40 | |
| 70 | D3DXCreateEffectFromResourceExW@40 | |
| 71 | D3DXCreateEffectFromResourceW@36 | |
| 72 | D3DXCreateEffectPool@4 | |
| 73 | D3DXCreateFontA@48 | |
| 74 | D3DXCreateFontIndirectA@12 | |
| 75 | D3DXCreateFontIndirectW@12 | |
| 76 | D3DXCreateFontW@48 | |
| 77 | D3DXCreateFragmentLinker@12 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderInputSemantics@12 | |
| 169 | D3DXGetShaderOutputSemantics@12 | |
| 170 | D3DXGetShaderSamplers@12 | |
| 171 | D3DXGetShaderSize@4 | |
| 172 | D3DXGetShaderVersion@4 | |
| 173 | D3DXGetTargetDescByName@12 | |
| 174 | D3DXGetTargetDescByVersion@12 | |
| 175 | D3DXGetVertexShaderProfile@4 | |
| 176 | D3DXIntersect@40 | |
| 177 | D3DXIntersectSubset@44 | |
| 178 | D3DXIntersectTri@32 | |
| 179 | D3DXLoadMeshFromXA@32 | |
| 180 | D3DXLoadMeshFromXInMemory@36 | |
| 181 | D3DXLoadMeshFromXResource@40 | |
| 182 | D3DXLoadMeshFromXW@32 | |
| 183 | D3DXLoadMeshFromXof@32 | |
| 184 | D3DXLoadMeshHierarchyFromXA@28 | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 186 | D3DXLoadMeshHierarchyFromXW@28 | |
| 187 | D3DXLoadPRTBufferFromFileA@8 | |
| 188 | D3DXLoadPRTBufferFromFileW@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 190 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 191 | D3DXLoadPatchMeshFromXof@28 | |
| 192 | D3DXLoadSkinMeshFromXof@36 | |
| 193 | D3DXLoadSurfaceFromFileA@32 | |
| 194 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 195 | D3DXLoadSurfaceFromFileW@32 | |
| 196 | D3DXLoadSurfaceFromMemory@40 | |
| 197 | D3DXLoadSurfaceFromResourceA@36 | |
| 198 | D3DXLoadSurfaceFromResourceW@36 | |
| 199 | D3DXLoadSurfaceFromSurface@32 | |
| 200 | D3DXLoadVolumeFromFileA@32 | |
| 201 | D3DXLoadVolumeFromFileInMemory@36 | |
| 202 | D3DXLoadVolumeFromFileW@32 | |
| 203 | D3DXLoadVolumeFromMemory@44 | |
| 204 | D3DXLoadVolumeFromResourceA@36 | |
| 205 | D3DXLoadVolumeFromResourceW@36 | |
| 206 | D3DXLoadVolumeFromVolume@32 | |
| 207 | D3DXMatrixAffineTransformation2D@20 | |
| 208 | D3DXMatrixAffineTransformation@20 | |
| 209 | D3DXMatrixDecompose@16 | |
| 210 | D3DXMatrixDeterminant@4 | |
| 211 | D3DXMatrixInverse@12 | |
| 212 | D3DXMatrixLookAtLH@16 | |
| 213 | D3DXMatrixLookAtRH@16 | |
| 214 | D3DXMatrixMultiply@12 | |
| 215 | D3DXMatrixMultiplyTranspose@12 | |
| 216 | D3DXMatrixOrthoLH@20 | |
| 217 | D3DXMatrixOrthoOffCenterLH@28 | |
| 218 | D3DXMatrixOrthoOffCenterRH@28 | |
| 219 | D3DXMatrixOrthoRH@20 | |
| 220 | D3DXMatrixPerspectiveFovLH@20 | |
| 221 | D3DXMatrixPerspectiveFovRH@20 | |
| 222 | D3DXMatrixPerspectiveLH@20 | |
| 223 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 224 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 225 | D3DXMatrixPerspectiveRH@20 | |
| 226 | D3DXMatrixReflect@8 | |
| 227 | D3DXMatrixRotationAxis@12 | |
| 228 | D3DXMatrixRotationQuaternion@8 | |
| 229 | D3DXMatrixRotationX@8 | |
| 230 | D3DXMatrixRotationY@8 | |
| 231 | D3DXMatrixRotationYawPitchRoll@16 | |
| 232 | D3DXMatrixRotationZ@8 | |
| 233 | D3DXMatrixScaling@16 | |
| 234 | D3DXMatrixShadow@12 | |
| 235 | D3DXMatrixTransformation2D@28 | |
| 236 | D3DXMatrixTransformation@28 | |
| 237 | D3DXMatrixTranslation@16 | |
| 238 | D3DXMatrixTranspose@8 | |
| 239 | D3DXOptimizeFaces@20 | |
| 240 | D3DXOptimizeVertices@20 | |
| 241 | D3DXPlaneFromPointNormal@12 | |
| 242 | D3DXPlaneFromPoints@16 | |
| 243 | D3DXPlaneIntersectLine@16 | |
| 244 | D3DXPlaneNormalize@8 | |
| 245 | D3DXPlaneTransform@12 | |
| 246 | D3DXPlaneTransformArray@24 | |
| 247 | D3DXQuaternionBaryCentric@24 | |
| 248 | D3DXQuaternionExp@8 | |
| 249 | D3DXQuaternionInverse@8 | |
| 250 | D3DXQuaternionLn@8 | |
| 251 | D3DXQuaternionMultiply@12 | |
| 252 | D3DXQuaternionNormalize@8 | |
| 253 | D3DXQuaternionRotationAxis@12 | |
| 254 | D3DXQuaternionRotationMatrix@8 | |
| 255 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 256 | D3DXQuaternionSlerp@16 | |
| 257 | D3DXQuaternionSquad@24 | |
| 258 | D3DXQuaternionSquadSetup@28 | |
| 259 | D3DXQuaternionToAxisAngle@12 | |
| 260 | D3DXRectPatchSize@12 | |
| 261 | D3DXSHAdd@16 | |
| 262 | D3DXSHDot@12 | |
| 263 | D3DXSHEvalConeLight@36 | |
| 264 | D3DXSHEvalDirection@12 | |
| 265 | D3DXSHEvalDirectionalLight@32 | |
| 266 | D3DXSHEvalHemisphereLight@52 | |
| 267 | D3DXSHEvalSphericalLight@36 | |
| 268 | D3DXSHPRTCompSplitMeshSC@64 | |
| 269 | D3DXSHPRTCompSuperCluster@24 | |
| 270 | D3DXSHProjectCubeMap@20 | |
| 271 | D3DXSHRotate@16 | |
| 272 | D3DXSHRotateZ@16 | |
| 273 | D3DXSHScale@16 | |
| 274 | D3DXSaveMeshHierarchyToFileA@20 | |
| 275 | D3DXSaveMeshHierarchyToFileW@20 | |
| 276 | D3DXSaveMeshToXA@28 | |
| 277 | D3DXSaveMeshToXW@28 | |
| 278 | D3DXSavePRTBufferToFileA@8 | |
| 279 | D3DXSavePRTBufferToFileW@8 | |
| 280 | D3DXSavePRTCompBufferToFileA@8 | |
| 281 | D3DXSavePRTCompBufferToFileW@8 | |
| 282 | D3DXSaveSurfaceToFileA@20 | |
| 283 | D3DXSaveSurfaceToFileInMemory@20 | |
| 284 | D3DXSaveSurfaceToFileW@20 | |
| 285 | D3DXSaveTextureToFileA@16 | |
| 286 | D3DXSaveTextureToFileInMemory@16 | |
| 287 | D3DXSaveTextureToFileW@16 | |
| 288 | D3DXSaveVolumeToFileA@20 | |
| 289 | D3DXSaveVolumeToFileInMemory@20 | |
| 290 | D3DXSaveVolumeToFileW@20 | |
| 291 | D3DXSimplifyMesh@28 | |
| 292 | D3DXSphereBoundProbe@16 | |
| 293 | D3DXSplitMesh@36 | |
| 294 | D3DXTessellateNPatches@24 | |
| 295 | D3DXTessellateRectPatch@20 | |
| 296 | D3DXTessellateTriPatch@20 | |
| 297 | D3DXTriPatchSize@12 | |
| 298 | D3DXUVAtlasCreate@76 | |
| 299 | D3DXUVAtlasPack@44 | |
| 300 | D3DXUVAtlasPartition@68 | |
| 301 | D3DXValidMesh@12 | |
| 302 | D3DXValidPatchMesh@16 | |
| 303 | D3DXVec2BaryCentric@24 | |
| 304 | D3DXVec2CatmullRom@24 | |
| 305 | D3DXVec2Hermite@24 | |
| 306 | D3DXVec2Normalize@8 | |
| 307 | D3DXVec2Transform@12 | |
| 308 | D3DXVec2TransformArray@24 | |
| 309 | D3DXVec2TransformCoord@12 | |
| 310 | D3DXVec2TransformCoordArray@24 | |
| 311 | D3DXVec2TransformNormal@12 | |
| 312 | D3DXVec2TransformNormalArray@24 | |
| 313 | D3DXVec3BaryCentric@24 | |
| 314 | D3DXVec3CatmullRom@24 | |
| 315 | D3DXVec3Hermite@24 | |
| 316 | D3DXVec3Normalize@8 | |
| 317 | D3DXVec3Project@24 | |
| 318 | D3DXVec3ProjectArray@36 | |
| 319 | D3DXVec3Transform@12 | |
| 320 | D3DXVec3TransformArray@24 | |
| 321 | D3DXVec3TransformCoord@12 | |
| 322 | D3DXVec3TransformCoordArray@24 | |
| 323 | D3DXVec3TransformNormal@12 | |
| 324 | D3DXVec3TransformNormalArray@24 | |
| 325 | D3DXVec3Unproject@24 | |
| 326 | D3DXVec3UnprojectArray@36 | |
| 327 | D3DXVec4BaryCentric@24 | |
| 328 | D3DXVec4CatmullRom@24 | |
| 329 | D3DXVec4Cross@16 | |
| 330 | D3DXVec4Hermite@24 | |
| 331 | D3DXVec4Normalize@8 | |
| 332 | D3DXVec4Transform@12 | |
| 333 | D3DXVec4TransformArray@24 | |
| 334 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_27.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCpuOptimizations@4 | |
| 41 | D3DXCreateAnimationController@20 | |
| 42 | D3DXCreateBox@24 | |
| 43 | D3DXCreateBuffer@8 | |
| 44 | D3DXCreateCompressedAnimationSet@32 | |
| 45 | D3DXCreateCubeTexture@28 | |
| 46 | D3DXCreateCubeTextureFromFileA@12 | |
| 47 | D3DXCreateCubeTextureFromFileExA@52 | |
| 48 | D3DXCreateCubeTextureFromFileExW@52 | |
| 49 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 51 | D3DXCreateCubeTextureFromFileW@12 | |
| 52 | D3DXCreateCubeTextureFromResourceA@16 | |
| 53 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 54 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 55 | D3DXCreateCubeTextureFromResourceW@16 | |
| 56 | D3DXCreateCylinder@32 | |
| 57 | D3DXCreateEffect@36 | |
| 58 | D3DXCreateEffectCompiler@28 | |
| 59 | D3DXCreateEffectCompilerFromFileA@24 | |
| 60 | D3DXCreateEffectCompilerFromFileW@24 | |
| 61 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 62 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 63 | D3DXCreateEffectEx@40 | |
| 64 | D3DXCreateEffectFromFileA@32 | |
| 65 | D3DXCreateEffectFromFileExA@36 | |
| 66 | D3DXCreateEffectFromFileExW@36 | |
| 67 | D3DXCreateEffectFromFileW@32 | |
| 68 | D3DXCreateEffectFromResourceA@36 | |
| 69 | D3DXCreateEffectFromResourceExA@40 | |
| 70 | D3DXCreateEffectFromResourceExW@40 | |
| 71 | D3DXCreateEffectFromResourceW@36 | |
| 72 | D3DXCreateEffectPool@4 | |
| 73 | D3DXCreateFontA@48 | |
| 74 | D3DXCreateFontIndirectA@12 | |
| 75 | D3DXCreateFontIndirectW@12 | |
| 76 | D3DXCreateFontW@48 | |
| 77 | D3DXCreateFragmentLinker@12 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderInputSemantics@12 | |
| 169 | D3DXGetShaderOutputSemantics@12 | |
| 170 | D3DXGetShaderSamplers@12 | |
| 171 | D3DXGetShaderSize@4 | |
| 172 | D3DXGetShaderVersion@4 | |
| 173 | D3DXGetTargetDescByName@12 | |
| 174 | D3DXGetTargetDescByVersion@12 | |
| 175 | D3DXGetVertexShaderProfile@4 | |
| 176 | D3DXIntersect@40 | |
| 177 | D3DXIntersectSubset@44 | |
| 178 | D3DXIntersectTri@32 | |
| 179 | D3DXLoadMeshFromXA@32 | |
| 180 | D3DXLoadMeshFromXInMemory@36 | |
| 181 | D3DXLoadMeshFromXResource@40 | |
| 182 | D3DXLoadMeshFromXW@32 | |
| 183 | D3DXLoadMeshFromXof@32 | |
| 184 | D3DXLoadMeshHierarchyFromXA@28 | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 186 | D3DXLoadMeshHierarchyFromXW@28 | |
| 187 | D3DXLoadPRTBufferFromFileA@8 | |
| 188 | D3DXLoadPRTBufferFromFileW@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 190 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 191 | D3DXLoadPatchMeshFromXof@28 | |
| 192 | D3DXLoadSkinMeshFromXof@36 | |
| 193 | D3DXLoadSurfaceFromFileA@32 | |
| 194 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 195 | D3DXLoadSurfaceFromFileW@32 | |
| 196 | D3DXLoadSurfaceFromMemory@40 | |
| 197 | D3DXLoadSurfaceFromResourceA@36 | |
| 198 | D3DXLoadSurfaceFromResourceW@36 | |
| 199 | D3DXLoadSurfaceFromSurface@32 | |
| 200 | D3DXLoadVolumeFromFileA@32 | |
| 201 | D3DXLoadVolumeFromFileInMemory@36 | |
| 202 | D3DXLoadVolumeFromFileW@32 | |
| 203 | D3DXLoadVolumeFromMemory@44 | |
| 204 | D3DXLoadVolumeFromResourceA@36 | |
| 205 | D3DXLoadVolumeFromResourceW@36 | |
| 206 | D3DXLoadVolumeFromVolume@32 | |
| 207 | D3DXMatrixAffineTransformation2D@20 | |
| 208 | D3DXMatrixAffineTransformation@20 | |
| 209 | D3DXMatrixDecompose@16 | |
| 210 | D3DXMatrixDeterminant@4 | |
| 211 | D3DXMatrixInverse@12 | |
| 212 | D3DXMatrixLookAtLH@16 | |
| 213 | D3DXMatrixLookAtRH@16 | |
| 214 | D3DXMatrixMultiply@12 | |
| 215 | D3DXMatrixMultiplyTranspose@12 | |
| 216 | D3DXMatrixOrthoLH@20 | |
| 217 | D3DXMatrixOrthoOffCenterLH@28 | |
| 218 | D3DXMatrixOrthoOffCenterRH@28 | |
| 219 | D3DXMatrixOrthoRH@20 | |
| 220 | D3DXMatrixPerspectiveFovLH@20 | |
| 221 | D3DXMatrixPerspectiveFovRH@20 | |
| 222 | D3DXMatrixPerspectiveLH@20 | |
| 223 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 224 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 225 | D3DXMatrixPerspectiveRH@20 | |
| 226 | D3DXMatrixReflect@8 | |
| 227 | D3DXMatrixRotationAxis@12 | |
| 228 | D3DXMatrixRotationQuaternion@8 | |
| 229 | D3DXMatrixRotationX@8 | |
| 230 | D3DXMatrixRotationY@8 | |
| 231 | D3DXMatrixRotationYawPitchRoll@16 | |
| 232 | D3DXMatrixRotationZ@8 | |
| 233 | D3DXMatrixScaling@16 | |
| 234 | D3DXMatrixShadow@12 | |
| 235 | D3DXMatrixTransformation2D@28 | |
| 236 | D3DXMatrixTransformation@28 | |
| 237 | D3DXMatrixTranslation@16 | |
| 238 | D3DXMatrixTranspose@8 | |
| 239 | D3DXOptimizeFaces@20 | |
| 240 | D3DXOptimizeVertices@20 | |
| 241 | D3DXPlaneFromPointNormal@12 | |
| 242 | D3DXPlaneFromPoints@16 | |
| 243 | D3DXPlaneIntersectLine@16 | |
| 244 | D3DXPlaneNormalize@8 | |
| 245 | D3DXPlaneTransform@12 | |
| 246 | D3DXPlaneTransformArray@24 | |
| 247 | D3DXQuaternionBaryCentric@24 | |
| 248 | D3DXQuaternionExp@8 | |
| 249 | D3DXQuaternionInverse@8 | |
| 250 | D3DXQuaternionLn@8 | |
| 251 | D3DXQuaternionMultiply@12 | |
| 252 | D3DXQuaternionNormalize@8 | |
| 253 | D3DXQuaternionRotationAxis@12 | |
| 254 | D3DXQuaternionRotationMatrix@8 | |
| 255 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 256 | D3DXQuaternionSlerp@16 | |
| 257 | D3DXQuaternionSquad@24 | |
| 258 | D3DXQuaternionSquadSetup@28 | |
| 259 | D3DXQuaternionToAxisAngle@12 | |
| 260 | D3DXRectPatchSize@12 | |
| 261 | D3DXSHAdd@16 | |
| 262 | D3DXSHDot@12 | |
| 263 | D3DXSHEvalConeLight@36 | |
| 264 | D3DXSHEvalDirection@12 | |
| 265 | D3DXSHEvalDirectionalLight@32 | |
| 266 | D3DXSHEvalHemisphereLight@52 | |
| 267 | D3DXSHEvalSphericalLight@36 | |
| 268 | D3DXSHPRTCompSplitMeshSC@64 | |
| 269 | D3DXSHPRTCompSuperCluster@24 | |
| 270 | D3DXSHProjectCubeMap@20 | |
| 271 | D3DXSHRotate@16 | |
| 272 | D3DXSHRotateZ@16 | |
| 273 | D3DXSHScale@16 | |
| 274 | D3DXSaveMeshHierarchyToFileA@20 | |
| 275 | D3DXSaveMeshHierarchyToFileW@20 | |
| 276 | D3DXSaveMeshToXA@28 | |
| 277 | D3DXSaveMeshToXW@28 | |
| 278 | D3DXSavePRTBufferToFileA@8 | |
| 279 | D3DXSavePRTBufferToFileW@8 | |
| 280 | D3DXSavePRTCompBufferToFileA@8 | |
| 281 | D3DXSavePRTCompBufferToFileW@8 | |
| 282 | D3DXSaveSurfaceToFileA@20 | |
| 283 | D3DXSaveSurfaceToFileInMemory@20 | |
| 284 | D3DXSaveSurfaceToFileW@20 | |
| 285 | D3DXSaveTextureToFileA@16 | |
| 286 | D3DXSaveTextureToFileInMemory@16 | |
| 287 | D3DXSaveTextureToFileW@16 | |
| 288 | D3DXSaveVolumeToFileA@20 | |
| 289 | D3DXSaveVolumeToFileInMemory@20 | |
| 290 | D3DXSaveVolumeToFileW@20 | |
| 291 | D3DXSimplifyMesh@28 | |
| 292 | D3DXSphereBoundProbe@16 | |
| 293 | D3DXSplitMesh@36 | |
| 294 | D3DXTessellateNPatches@24 | |
| 295 | D3DXTessellateRectPatch@20 | |
| 296 | D3DXTessellateTriPatch@20 | |
| 297 | D3DXTriPatchSize@12 | |
| 298 | D3DXUVAtlasCreate@76 | |
| 299 | D3DXUVAtlasPack@44 | |
| 300 | D3DXUVAtlasPartition@68 | |
| 301 | D3DXValidMesh@12 | |
| 302 | D3DXValidPatchMesh@16 | |
| 303 | D3DXVec2BaryCentric@24 | |
| 304 | D3DXVec2CatmullRom@24 | |
| 305 | D3DXVec2Hermite@24 | |
| 306 | D3DXVec2Normalize@8 | |
| 307 | D3DXVec2Transform@12 | |
| 308 | D3DXVec2TransformArray@24 | |
| 309 | D3DXVec2TransformCoord@12 | |
| 310 | D3DXVec2TransformCoordArray@24 | |
| 311 | D3DXVec2TransformNormal@12 | |
| 312 | D3DXVec2TransformNormalArray@24 | |
| 313 | D3DXVec3BaryCentric@24 | |
| 314 | D3DXVec3CatmullRom@24 | |
| 315 | D3DXVec3Hermite@24 | |
| 316 | D3DXVec3Normalize@8 | |
| 317 | D3DXVec3Project@24 | |
| 318 | D3DXVec3ProjectArray@36 | |
| 319 | D3DXVec3Transform@12 | |
| 320 | D3DXVec3TransformArray@24 | |
| 321 | D3DXVec3TransformCoord@12 | |
| 322 | D3DXVec3TransformCoordArray@24 | |
| 323 | D3DXVec3TransformNormal@12 | |
| 324 | D3DXVec3TransformNormalArray@24 | |
| 325 | D3DXVec3Unproject@24 | |
| 326 | D3DXVec3UnprojectArray@36 | |
| 327 | D3DXVec4BaryCentric@24 | |
| 328 | D3DXVec4CatmullRom@24 | |
| 329 | D3DXVec4Cross@16 | |
| 330 | D3DXVec4Hermite@24 | |
| 331 | D3DXVec4Normalize@8 | |
| 332 | D3DXVec4Transform@12 | |
| 333 | D3DXVec4TransformArray@24 | |
| 334 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_28.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCpuOptimizations@4 | |
| 41 | D3DXCreateAnimationController@20 | |
| 42 | D3DXCreateBox@24 | |
| 43 | D3DXCreateBuffer@8 | |
| 44 | D3DXCreateCompressedAnimationSet@32 | |
| 45 | D3DXCreateCubeTexture@28 | |
| 46 | D3DXCreateCubeTextureFromFileA@12 | |
| 47 | D3DXCreateCubeTextureFromFileExA@52 | |
| 48 | D3DXCreateCubeTextureFromFileExW@52 | |
| 49 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 51 | D3DXCreateCubeTextureFromFileW@12 | |
| 52 | D3DXCreateCubeTextureFromResourceA@16 | |
| 53 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 54 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 55 | D3DXCreateCubeTextureFromResourceW@16 | |
| 56 | D3DXCreateCylinder@32 | |
| 57 | D3DXCreateEffect@36 | |
| 58 | D3DXCreateEffectCompiler@28 | |
| 59 | D3DXCreateEffectCompilerFromFileA@24 | |
| 60 | D3DXCreateEffectCompilerFromFileW@24 | |
| 61 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 62 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 63 | D3DXCreateEffectEx@40 | |
| 64 | D3DXCreateEffectFromFileA@32 | |
| 65 | D3DXCreateEffectFromFileExA@36 | |
| 66 | D3DXCreateEffectFromFileExW@36 | |
| 67 | D3DXCreateEffectFromFileW@32 | |
| 68 | D3DXCreateEffectFromResourceA@36 | |
| 69 | D3DXCreateEffectFromResourceExA@40 | |
| 70 | D3DXCreateEffectFromResourceExW@40 | |
| 71 | D3DXCreateEffectFromResourceW@36 | |
| 72 | D3DXCreateEffectPool@4 | |
| 73 | D3DXCreateFontA@48 | |
| 74 | D3DXCreateFontIndirectA@12 | |
| 75 | D3DXCreateFontIndirectW@12 | |
| 76 | D3DXCreateFontW@48 | |
| 77 | D3DXCreateFragmentLinker@12 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderInputSemantics@12 | |
| 169 | D3DXGetShaderOutputSemantics@12 | |
| 170 | D3DXGetShaderSamplers@12 | |
| 171 | D3DXGetShaderSize@4 | |
| 172 | D3DXGetShaderVersion@4 | |
| 173 | D3DXGetTargetDescByName@12 | |
| 174 | D3DXGetTargetDescByVersion@12 | |
| 175 | D3DXGetVertexShaderProfile@4 | |
| 176 | D3DXIntersect@40 | |
| 177 | D3DXIntersectSubset@44 | |
| 178 | D3DXIntersectTri@32 | |
| 179 | D3DXLoadMeshFromXA@32 | |
| 180 | D3DXLoadMeshFromXInMemory@36 | |
| 181 | D3DXLoadMeshFromXResource@40 | |
| 182 | D3DXLoadMeshFromXW@32 | |
| 183 | D3DXLoadMeshFromXof@32 | |
| 184 | D3DXLoadMeshHierarchyFromXA@28 | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 186 | D3DXLoadMeshHierarchyFromXW@28 | |
| 187 | D3DXLoadPRTBufferFromFileA@8 | |
| 188 | D3DXLoadPRTBufferFromFileW@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 190 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 191 | D3DXLoadPatchMeshFromXof@28 | |
| 192 | D3DXLoadSkinMeshFromXof@36 | |
| 193 | D3DXLoadSurfaceFromFileA@32 | |
| 194 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 195 | D3DXLoadSurfaceFromFileW@32 | |
| 196 | D3DXLoadSurfaceFromMemory@40 | |
| 197 | D3DXLoadSurfaceFromResourceA@36 | |
| 198 | D3DXLoadSurfaceFromResourceW@36 | |
| 199 | D3DXLoadSurfaceFromSurface@32 | |
| 200 | D3DXLoadVolumeFromFileA@32 | |
| 201 | D3DXLoadVolumeFromFileInMemory@36 | |
| 202 | D3DXLoadVolumeFromFileW@32 | |
| 203 | D3DXLoadVolumeFromMemory@44 | |
| 204 | D3DXLoadVolumeFromResourceA@36 | |
| 205 | D3DXLoadVolumeFromResourceW@36 | |
| 206 | D3DXLoadVolumeFromVolume@32 | |
| 207 | D3DXMatrixAffineTransformation2D@20 | |
| 208 | D3DXMatrixAffineTransformation@20 | |
| 209 | D3DXMatrixDecompose@16 | |
| 210 | D3DXMatrixDeterminant@4 | |
| 211 | D3DXMatrixInverse@12 | |
| 212 | D3DXMatrixLookAtLH@16 | |
| 213 | D3DXMatrixLookAtRH@16 | |
| 214 | D3DXMatrixMultiply@12 | |
| 215 | D3DXMatrixMultiplyTranspose@12 | |
| 216 | D3DXMatrixOrthoLH@20 | |
| 217 | D3DXMatrixOrthoOffCenterLH@28 | |
| 218 | D3DXMatrixOrthoOffCenterRH@28 | |
| 219 | D3DXMatrixOrthoRH@20 | |
| 220 | D3DXMatrixPerspectiveFovLH@20 | |
| 221 | D3DXMatrixPerspectiveFovRH@20 | |
| 222 | D3DXMatrixPerspectiveLH@20 | |
| 223 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 224 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 225 | D3DXMatrixPerspectiveRH@20 | |
| 226 | D3DXMatrixReflect@8 | |
| 227 | D3DXMatrixRotationAxis@12 | |
| 228 | D3DXMatrixRotationQuaternion@8 | |
| 229 | D3DXMatrixRotationX@8 | |
| 230 | D3DXMatrixRotationY@8 | |
| 231 | D3DXMatrixRotationYawPitchRoll@16 | |
| 232 | D3DXMatrixRotationZ@8 | |
| 233 | D3DXMatrixScaling@16 | |
| 234 | D3DXMatrixShadow@12 | |
| 235 | D3DXMatrixTransformation2D@28 | |
| 236 | D3DXMatrixTransformation@28 | |
| 237 | D3DXMatrixTranslation@16 | |
| 238 | D3DXMatrixTranspose@8 | |
| 239 | D3DXOptimizeFaces@20 | |
| 240 | D3DXOptimizeVertices@20 | |
| 241 | D3DXPlaneFromPointNormal@12 | |
| 242 | D3DXPlaneFromPoints@16 | |
| 243 | D3DXPlaneIntersectLine@16 | |
| 244 | D3DXPlaneNormalize@8 | |
| 245 | D3DXPlaneTransform@12 | |
| 246 | D3DXPlaneTransformArray@24 | |
| 247 | D3DXPreprocessShader@24 | |
| 248 | D3DXPreprocessShaderFromFileA@20 | |
| 249 | D3DXPreprocessShaderFromFileW@20 | |
| 250 | D3DXPreprocessShaderFromResourceA@24 | |
| 251 | D3DXPreprocessShaderFromResourceW@24 | |
| 252 | D3DXQuaternionBaryCentric@24 | |
| 253 | D3DXQuaternionExp@8 | |
| 254 | D3DXQuaternionInverse@8 | |
| 255 | D3DXQuaternionLn@8 | |
| 256 | D3DXQuaternionMultiply@12 | |
| 257 | D3DXQuaternionNormalize@8 | |
| 258 | D3DXQuaternionRotationAxis@12 | |
| 259 | D3DXQuaternionRotationMatrix@8 | |
| 260 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 261 | D3DXQuaternionSlerp@16 | |
| 262 | D3DXQuaternionSquad@24 | |
| 263 | D3DXQuaternionSquadSetup@28 | |
| 264 | D3DXQuaternionToAxisAngle@12 | |
| 265 | D3DXRectPatchSize@12 | |
| 266 | D3DXSHAdd@16 | |
| 267 | D3DXSHDot@12 | |
| 268 | D3DXSHEvalConeLight@36 | |
| 269 | D3DXSHEvalDirection@12 | |
| 270 | D3DXSHEvalDirectionalLight@32 | |
| 271 | D3DXSHEvalHemisphereLight@52 | |
| 272 | D3DXSHEvalSphericalLight@36 | |
| 273 | D3DXSHPRTCompSplitMeshSC@64 | |
| 274 | D3DXSHPRTCompSuperCluster@24 | |
| 275 | D3DXSHProjectCubeMap@20 | |
| 276 | D3DXSHRotate@16 | |
| 277 | D3DXSHRotateZ@16 | |
| 278 | D3DXSHScale@16 | |
| 279 | D3DXSaveMeshHierarchyToFileA@20 | |
| 280 | D3DXSaveMeshHierarchyToFileW@20 | |
| 281 | D3DXSaveMeshToXA@28 | |
| 282 | D3DXSaveMeshToXW@28 | |
| 283 | D3DXSavePRTBufferToFileA@8 | |
| 284 | D3DXSavePRTBufferToFileW@8 | |
| 285 | D3DXSavePRTCompBufferToFileA@8 | |
| 286 | D3DXSavePRTCompBufferToFileW@8 | |
| 287 | D3DXSaveSurfaceToFileA@20 | |
| 288 | D3DXSaveSurfaceToFileInMemory@20 | |
| 289 | D3DXSaveSurfaceToFileW@20 | |
| 290 | D3DXSaveTextureToFileA@16 | |
| 291 | D3DXSaveTextureToFileInMemory@16 | |
| 292 | D3DXSaveTextureToFileW@16 | |
| 293 | D3DXSaveVolumeToFileA@20 | |
| 294 | D3DXSaveVolumeToFileInMemory@20 | |
| 295 | D3DXSaveVolumeToFileW@20 | |
| 296 | D3DXSimplifyMesh@28 | |
| 297 | D3DXSphereBoundProbe@16 | |
| 298 | D3DXSplitMesh@36 | |
| 299 | D3DXTessellateNPatches@24 | |
| 300 | D3DXTessellateRectPatch@20 | |
| 301 | D3DXTessellateTriPatch@20 | |
| 302 | D3DXTriPatchSize@12 | |
| 303 | D3DXUVAtlasCreate@76 | |
| 304 | D3DXUVAtlasPack@44 | |
| 305 | D3DXUVAtlasPartition@68 | |
| 306 | D3DXValidMesh@12 | |
| 307 | D3DXValidPatchMesh@16 | |
| 308 | D3DXVec2BaryCentric@24 | |
| 309 | D3DXVec2CatmullRom@24 | |
| 310 | D3DXVec2Hermite@24 | |
| 311 | D3DXVec2Normalize@8 | |
| 312 | D3DXVec2Transform@12 | |
| 313 | D3DXVec2TransformArray@24 | |
| 314 | D3DXVec2TransformCoord@12 | |
| 315 | D3DXVec2TransformCoordArray@24 | |
| 316 | D3DXVec2TransformNormal@12 | |
| 317 | D3DXVec2TransformNormalArray@24 | |
| 318 | D3DXVec3BaryCentric@24 | |
| 319 | D3DXVec3CatmullRom@24 | |
| 320 | D3DXVec3Hermite@24 | |
| 321 | D3DXVec3Normalize@8 | |
| 322 | D3DXVec3Project@24 | |
| 323 | D3DXVec3ProjectArray@36 | |
| 324 | D3DXVec3Transform@12 | |
| 325 | D3DXVec3TransformArray@24 | |
| 326 | D3DXVec3TransformCoord@12 | |
| 327 | D3DXVec3TransformCoordArray@24 | |
| 328 | D3DXVec3TransformNormal@12 | |
| 329 | D3DXVec3TransformNormalArray@24 | |
| 330 | D3DXVec3Unproject@24 | |
| 331 | D3DXVec3UnprojectArray@36 | |
| 332 | D3DXVec4BaryCentric@24 | |
| 333 | D3DXVec4CatmullRom@24 | |
| 334 | D3DXVec4Cross@16 | |
| 335 | D3DXVec4Hermite@24 | |
| 336 | D3DXVec4Normalize@8 | |
| 337 | D3DXVec4Transform@12 | |
| 338 | D3DXVec4TransformArray@24 | |
| 339 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_29.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCpuOptimizations@4 | |
| 41 | D3DXCreateAnimationController@20 | |
| 42 | D3DXCreateBox@24 | |
| 43 | D3DXCreateBuffer@8 | |
| 44 | D3DXCreateCompressedAnimationSet@32 | |
| 45 | D3DXCreateCubeTexture@28 | |
| 46 | D3DXCreateCubeTextureFromFileA@12 | |
| 47 | D3DXCreateCubeTextureFromFileExA@52 | |
| 48 | D3DXCreateCubeTextureFromFileExW@52 | |
| 49 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 51 | D3DXCreateCubeTextureFromFileW@12 | |
| 52 | D3DXCreateCubeTextureFromResourceA@16 | |
| 53 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 54 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 55 | D3DXCreateCubeTextureFromResourceW@16 | |
| 56 | D3DXCreateCylinder@32 | |
| 57 | D3DXCreateEffect@36 | |
| 58 | D3DXCreateEffectCompiler@28 | |
| 59 | D3DXCreateEffectCompilerFromFileA@24 | |
| 60 | D3DXCreateEffectCompilerFromFileW@24 | |
| 61 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 62 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 63 | D3DXCreateEffectEx@40 | |
| 64 | D3DXCreateEffectFromFileA@32 | |
| 65 | D3DXCreateEffectFromFileExA@36 | |
| 66 | D3DXCreateEffectFromFileExW@36 | |
| 67 | D3DXCreateEffectFromFileW@32 | |
| 68 | D3DXCreateEffectFromResourceA@36 | |
| 69 | D3DXCreateEffectFromResourceExA@40 | |
| 70 | D3DXCreateEffectFromResourceExW@40 | |
| 71 | D3DXCreateEffectFromResourceW@36 | |
| 72 | D3DXCreateEffectPool@4 | |
| 73 | D3DXCreateFontA@48 | |
| 74 | D3DXCreateFontIndirectA@12 | |
| 75 | D3DXCreateFontIndirectW@12 | |
| 76 | D3DXCreateFontW@48 | |
| 77 | D3DXCreateFragmentLinker@12 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderInputSemantics@12 | |
| 169 | D3DXGetShaderOutputSemantics@12 | |
| 170 | D3DXGetShaderSamplers@12 | |
| 171 | D3DXGetShaderSize@4 | |
| 172 | D3DXGetShaderVersion@4 | |
| 173 | D3DXGetTargetDescByName@12 | |
| 174 | D3DXGetTargetDescByVersion@12 | |
| 175 | D3DXGetVertexShaderProfile@4 | |
| 176 | D3DXIntersect@40 | |
| 177 | D3DXIntersectSubset@44 | |
| 178 | D3DXIntersectTri@32 | |
| 179 | D3DXLoadMeshFromXA@32 | |
| 180 | D3DXLoadMeshFromXInMemory@36 | |
| 181 | D3DXLoadMeshFromXResource@40 | |
| 182 | D3DXLoadMeshFromXW@32 | |
| 183 | D3DXLoadMeshFromXof@32 | |
| 184 | D3DXLoadMeshHierarchyFromXA@28 | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 186 | D3DXLoadMeshHierarchyFromXW@28 | |
| 187 | D3DXLoadPRTBufferFromFileA@8 | |
| 188 | D3DXLoadPRTBufferFromFileW@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 190 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 191 | D3DXLoadPatchMeshFromXof@28 | |
| 192 | D3DXLoadSkinMeshFromXof@36 | |
| 193 | D3DXLoadSurfaceFromFileA@32 | |
| 194 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 195 | D3DXLoadSurfaceFromFileW@32 | |
| 196 | D3DXLoadSurfaceFromMemory@40 | |
| 197 | D3DXLoadSurfaceFromResourceA@36 | |
| 198 | D3DXLoadSurfaceFromResourceW@36 | |
| 199 | D3DXLoadSurfaceFromSurface@32 | |
| 200 | D3DXLoadVolumeFromFileA@32 | |
| 201 | D3DXLoadVolumeFromFileInMemory@36 | |
| 202 | D3DXLoadVolumeFromFileW@32 | |
| 203 | D3DXLoadVolumeFromMemory@44 | |
| 204 | D3DXLoadVolumeFromResourceA@36 | |
| 205 | D3DXLoadVolumeFromResourceW@36 | |
| 206 | D3DXLoadVolumeFromVolume@32 | |
| 207 | D3DXMatrixAffineTransformation2D@20 | |
| 208 | D3DXMatrixAffineTransformation@20 | |
| 209 | D3DXMatrixDecompose@16 | |
| 210 | D3DXMatrixDeterminant@4 | |
| 211 | D3DXMatrixInverse@12 | |
| 212 | D3DXMatrixLookAtLH@16 | |
| 213 | D3DXMatrixLookAtRH@16 | |
| 214 | D3DXMatrixMultiply@12 | |
| 215 | D3DXMatrixMultiplyTranspose@12 | |
| 216 | D3DXMatrixOrthoLH@20 | |
| 217 | D3DXMatrixOrthoOffCenterLH@28 | |
| 218 | D3DXMatrixOrthoOffCenterRH@28 | |
| 219 | D3DXMatrixOrthoRH@20 | |
| 220 | D3DXMatrixPerspectiveFovLH@20 | |
| 221 | D3DXMatrixPerspectiveFovRH@20 | |
| 222 | D3DXMatrixPerspectiveLH@20 | |
| 223 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 224 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 225 | D3DXMatrixPerspectiveRH@20 | |
| 226 | D3DXMatrixReflect@8 | |
| 227 | D3DXMatrixRotationAxis@12 | |
| 228 | D3DXMatrixRotationQuaternion@8 | |
| 229 | D3DXMatrixRotationX@8 | |
| 230 | D3DXMatrixRotationY@8 | |
| 231 | D3DXMatrixRotationYawPitchRoll@16 | |
| 232 | D3DXMatrixRotationZ@8 | |
| 233 | D3DXMatrixScaling@16 | |
| 234 | D3DXMatrixShadow@12 | |
| 235 | D3DXMatrixTransformation2D@28 | |
| 236 | D3DXMatrixTransformation@28 | |
| 237 | D3DXMatrixTranslation@16 | |
| 238 | D3DXMatrixTranspose@8 | |
| 239 | D3DXOptimizeFaces@20 | |
| 240 | D3DXOptimizeVertices@20 | |
| 241 | D3DXPlaneFromPointNormal@12 | |
| 242 | D3DXPlaneFromPoints@16 | |
| 243 | D3DXPlaneIntersectLine@16 | |
| 244 | D3DXPlaneNormalize@8 | |
| 245 | D3DXPlaneTransform@12 | |
| 246 | D3DXPlaneTransformArray@24 | |
| 247 | D3DXPreprocessShader@24 | |
| 248 | D3DXPreprocessShaderFromFileA@20 | |
| 249 | D3DXPreprocessShaderFromFileW@20 | |
| 250 | D3DXPreprocessShaderFromResourceA@24 | |
| 251 | D3DXPreprocessShaderFromResourceW@24 | |
| 252 | D3DXQuaternionBaryCentric@24 | |
| 253 | D3DXQuaternionExp@8 | |
| 254 | D3DXQuaternionInverse@8 | |
| 255 | D3DXQuaternionLn@8 | |
| 256 | D3DXQuaternionMultiply@12 | |
| 257 | D3DXQuaternionNormalize@8 | |
| 258 | D3DXQuaternionRotationAxis@12 | |
| 259 | D3DXQuaternionRotationMatrix@8 | |
| 260 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 261 | D3DXQuaternionSlerp@16 | |
| 262 | D3DXQuaternionSquad@24 | |
| 263 | D3DXQuaternionSquadSetup@28 | |
| 264 | D3DXQuaternionToAxisAngle@12 | |
| 265 | D3DXRectPatchSize@12 | |
| 266 | D3DXSHAdd@16 | |
| 267 | D3DXSHDot@12 | |
| 268 | D3DXSHEvalConeLight@36 | |
| 269 | D3DXSHEvalDirection@12 | |
| 270 | D3DXSHEvalDirectionalLight@32 | |
| 271 | D3DXSHEvalHemisphereLight@52 | |
| 272 | D3DXSHEvalSphericalLight@36 | |
| 273 | D3DXSHPRTCompSplitMeshSC@64 | |
| 274 | D3DXSHPRTCompSuperCluster@24 | |
| 275 | D3DXSHProjectCubeMap@20 | |
| 276 | D3DXSHRotate@16 | |
| 277 | D3DXSHRotateZ@16 | |
| 278 | D3DXSHScale@16 | |
| 279 | D3DXSaveMeshHierarchyToFileA@20 | |
| 280 | D3DXSaveMeshHierarchyToFileW@20 | |
| 281 | D3DXSaveMeshToXA@28 | |
| 282 | D3DXSaveMeshToXW@28 | |
| 283 | D3DXSavePRTBufferToFileA@8 | |
| 284 | D3DXSavePRTBufferToFileW@8 | |
| 285 | D3DXSavePRTCompBufferToFileA@8 | |
| 286 | D3DXSavePRTCompBufferToFileW@8 | |
| 287 | D3DXSaveSurfaceToFileA@20 | |
| 288 | D3DXSaveSurfaceToFileInMemory@20 | |
| 289 | D3DXSaveSurfaceToFileW@20 | |
| 290 | D3DXSaveTextureToFileA@16 | |
| 291 | D3DXSaveTextureToFileInMemory@16 | |
| 292 | D3DXSaveTextureToFileW@16 | |
| 293 | D3DXSaveVolumeToFileA@20 | |
| 294 | D3DXSaveVolumeToFileInMemory@20 | |
| 295 | D3DXSaveVolumeToFileW@20 | |
| 296 | D3DXSimplifyMesh@28 | |
| 297 | D3DXSphereBoundProbe@16 | |
| 298 | D3DXSplitMesh@36 | |
| 299 | D3DXTessellateNPatches@24 | |
| 300 | D3DXTessellateRectPatch@20 | |
| 301 | D3DXTessellateTriPatch@20 | |
| 302 | D3DXTriPatchSize@12 | |
| 303 | D3DXUVAtlasCreate@76 | |
| 304 | D3DXUVAtlasPack@44 | |
| 305 | D3DXUVAtlasPartition@68 | |
| 306 | D3DXValidMesh@12 | |
| 307 | D3DXValidPatchMesh@16 | |
| 308 | D3DXVec2BaryCentric@24 | |
| 309 | D3DXVec2CatmullRom@24 | |
| 310 | D3DXVec2Hermite@24 | |
| 311 | D3DXVec2Normalize@8 | |
| 312 | D3DXVec2Transform@12 | |
| 313 | D3DXVec2TransformArray@24 | |
| 314 | D3DXVec2TransformCoord@12 | |
| 315 | D3DXVec2TransformCoordArray@24 | |
| 316 | D3DXVec2TransformNormal@12 | |
| 317 | D3DXVec2TransformNormalArray@24 | |
| 318 | D3DXVec3BaryCentric@24 | |
| 319 | D3DXVec3CatmullRom@24 | |
| 320 | D3DXVec3Hermite@24 | |
| 321 | D3DXVec3Normalize@8 | |
| 322 | D3DXVec3Project@24 | |
| 323 | D3DXVec3ProjectArray@36 | |
| 324 | D3DXVec3Transform@12 | |
| 325 | D3DXVec3TransformArray@24 | |
| 326 | D3DXVec3TransformCoord@12 | |
| 327 | D3DXVec3TransformCoordArray@24 | |
| 328 | D3DXVec3TransformNormal@12 | |
| 329 | D3DXVec3TransformNormalArray@24 | |
| 330 | D3DXVec3Unproject@24 | |
| 331 | D3DXVec3UnprojectArray@36 | |
| 332 | D3DXVec4BaryCentric@24 | |
| 333 | D3DXVec4CatmullRom@24 | |
| 334 | D3DXVec4Cross@16 | |
| 335 | D3DXVec4Hermite@24 | |
| 336 | D3DXVec4Normalize@8 | |
| 337 | D3DXVec4Transform@12 | |
| 338 | D3DXVec4TransformArray@24 | |
| 339 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_30.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCpuOptimizations@4 | |
| 41 | D3DXCreateAnimationController@20 | |
| 42 | D3DXCreateBox@24 | |
| 43 | D3DXCreateBuffer@8 | |
| 44 | D3DXCreateCompressedAnimationSet@32 | |
| 45 | D3DXCreateCubeTexture@28 | |
| 46 | D3DXCreateCubeTextureFromFileA@12 | |
| 47 | D3DXCreateCubeTextureFromFileExA@52 | |
| 48 | D3DXCreateCubeTextureFromFileExW@52 | |
| 49 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 51 | D3DXCreateCubeTextureFromFileW@12 | |
| 52 | D3DXCreateCubeTextureFromResourceA@16 | |
| 53 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 54 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 55 | D3DXCreateCubeTextureFromResourceW@16 | |
| 56 | D3DXCreateCylinder@32 | |
| 57 | D3DXCreateEffect@36 | |
| 58 | D3DXCreateEffectCompiler@28 | |
| 59 | D3DXCreateEffectCompilerFromFileA@24 | |
| 60 | D3DXCreateEffectCompilerFromFileW@24 | |
| 61 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 62 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 63 | D3DXCreateEffectEx@40 | |
| 64 | D3DXCreateEffectFromFileA@32 | |
| 65 | D3DXCreateEffectFromFileExA@36 | |
| 66 | D3DXCreateEffectFromFileExW@36 | |
| 67 | D3DXCreateEffectFromFileW@32 | |
| 68 | D3DXCreateEffectFromResourceA@36 | |
| 69 | D3DXCreateEffectFromResourceExA@40 | |
| 70 | D3DXCreateEffectFromResourceExW@40 | |
| 71 | D3DXCreateEffectFromResourceW@36 | |
| 72 | D3DXCreateEffectPool@4 | |
| 73 | D3DXCreateFontA@48 | |
| 74 | D3DXCreateFontIndirectA@12 | |
| 75 | D3DXCreateFontIndirectW@12 | |
| 76 | D3DXCreateFontW@48 | |
| 77 | D3DXCreateFragmentLinker@12 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderInputSemantics@12 | |
| 169 | D3DXGetShaderOutputSemantics@12 | |
| 170 | D3DXGetShaderSamplers@12 | |
| 171 | D3DXGetShaderSize@4 | |
| 172 | D3DXGetShaderVersion@4 | |
| 173 | D3DXGetTargetDescByName@12 | |
| 174 | D3DXGetTargetDescByVersion@12 | |
| 175 | D3DXGetVertexShaderProfile@4 | |
| 176 | D3DXIntersect@40 | |
| 177 | D3DXIntersectSubset@44 | |
| 178 | D3DXIntersectTri@32 | |
| 179 | D3DXLoadMeshFromXA@32 | |
| 180 | D3DXLoadMeshFromXInMemory@36 | |
| 181 | D3DXLoadMeshFromXResource@40 | |
| 182 | D3DXLoadMeshFromXW@32 | |
| 183 | D3DXLoadMeshFromXof@32 | |
| 184 | D3DXLoadMeshHierarchyFromXA@28 | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 186 | D3DXLoadMeshHierarchyFromXW@28 | |
| 187 | D3DXLoadPRTBufferFromFileA@8 | |
| 188 | D3DXLoadPRTBufferFromFileW@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 190 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 191 | D3DXLoadPatchMeshFromXof@28 | |
| 192 | D3DXLoadSkinMeshFromXof@36 | |
| 193 | D3DXLoadSurfaceFromFileA@32 | |
| 194 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 195 | D3DXLoadSurfaceFromFileW@32 | |
| 196 | D3DXLoadSurfaceFromMemory@40 | |
| 197 | D3DXLoadSurfaceFromResourceA@36 | |
| 198 | D3DXLoadSurfaceFromResourceW@36 | |
| 199 | D3DXLoadSurfaceFromSurface@32 | |
| 200 | D3DXLoadVolumeFromFileA@32 | |
| 201 | D3DXLoadVolumeFromFileInMemory@36 | |
| 202 | D3DXLoadVolumeFromFileW@32 | |
| 203 | D3DXLoadVolumeFromMemory@44 | |
| 204 | D3DXLoadVolumeFromResourceA@36 | |
| 205 | D3DXLoadVolumeFromResourceW@36 | |
| 206 | D3DXLoadVolumeFromVolume@32 | |
| 207 | D3DXMatrixAffineTransformation2D@20 | |
| 208 | D3DXMatrixAffineTransformation@20 | |
| 209 | D3DXMatrixDecompose@16 | |
| 210 | D3DXMatrixDeterminant@4 | |
| 211 | D3DXMatrixInverse@12 | |
| 212 | D3DXMatrixLookAtLH@16 | |
| 213 | D3DXMatrixLookAtRH@16 | |
| 214 | D3DXMatrixMultiply@12 | |
| 215 | D3DXMatrixMultiplyTranspose@12 | |
| 216 | D3DXMatrixOrthoLH@20 | |
| 217 | D3DXMatrixOrthoOffCenterLH@28 | |
| 218 | D3DXMatrixOrthoOffCenterRH@28 | |
| 219 | D3DXMatrixOrthoRH@20 | |
| 220 | D3DXMatrixPerspectiveFovLH@20 | |
| 221 | D3DXMatrixPerspectiveFovRH@20 | |
| 222 | D3DXMatrixPerspectiveLH@20 | |
| 223 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 224 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 225 | D3DXMatrixPerspectiveRH@20 | |
| 226 | D3DXMatrixReflect@8 | |
| 227 | D3DXMatrixRotationAxis@12 | |
| 228 | D3DXMatrixRotationQuaternion@8 | |
| 229 | D3DXMatrixRotationX@8 | |
| 230 | D3DXMatrixRotationY@8 | |
| 231 | D3DXMatrixRotationYawPitchRoll@16 | |
| 232 | D3DXMatrixRotationZ@8 | |
| 233 | D3DXMatrixScaling@16 | |
| 234 | D3DXMatrixShadow@12 | |
| 235 | D3DXMatrixTransformation2D@28 | |
| 236 | D3DXMatrixTransformation@28 | |
| 237 | D3DXMatrixTranslation@16 | |
| 238 | D3DXMatrixTranspose@8 | |
| 239 | D3DXOptimizeFaces@20 | |
| 240 | D3DXOptimizeVertices@20 | |
| 241 | D3DXPlaneFromPointNormal@12 | |
| 242 | D3DXPlaneFromPoints@16 | |
| 243 | D3DXPlaneIntersectLine@16 | |
| 244 | D3DXPlaneNormalize@8 | |
| 245 | D3DXPlaneTransform@12 | |
| 246 | D3DXPlaneTransformArray@24 | |
| 247 | D3DXPreprocessShader@24 | |
| 248 | D3DXPreprocessShaderFromFileA@20 | |
| 249 | D3DXPreprocessShaderFromFileW@20 | |
| 250 | D3DXPreprocessShaderFromResourceA@24 | |
| 251 | D3DXPreprocessShaderFromResourceW@24 | |
| 252 | D3DXQuaternionBaryCentric@24 | |
| 253 | D3DXQuaternionExp@8 | |
| 254 | D3DXQuaternionInverse@8 | |
| 255 | D3DXQuaternionLn@8 | |
| 256 | D3DXQuaternionMultiply@12 | |
| 257 | D3DXQuaternionNormalize@8 | |
| 258 | D3DXQuaternionRotationAxis@12 | |
| 259 | D3DXQuaternionRotationMatrix@8 | |
| 260 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 261 | D3DXQuaternionSlerp@16 | |
| 262 | D3DXQuaternionSquad@24 | |
| 263 | D3DXQuaternionSquadSetup@28 | |
| 264 | D3DXQuaternionToAxisAngle@12 | |
| 265 | D3DXRectPatchSize@12 | |
| 266 | D3DXSHAdd@16 | |
| 267 | D3DXSHDot@12 | |
| 268 | D3DXSHEvalConeLight@36 | |
| 269 | D3DXSHEvalDirection@12 | |
| 270 | D3DXSHEvalDirectionalLight@32 | |
| 271 | D3DXSHEvalHemisphereLight@52 | |
| 272 | D3DXSHEvalSphericalLight@36 | |
| 273 | D3DXSHPRTCompSplitMeshSC@64 | |
| 274 | D3DXSHPRTCompSuperCluster@24 | |
| 275 | D3DXSHProjectCubeMap@20 | |
| 276 | D3DXSHRotate@16 | |
| 277 | D3DXSHRotateZ@16 | |
| 278 | D3DXSHScale@16 | |
| 279 | D3DXSaveMeshHierarchyToFileA@20 | |
| 280 | D3DXSaveMeshHierarchyToFileW@20 | |
| 281 | D3DXSaveMeshToXA@28 | |
| 282 | D3DXSaveMeshToXW@28 | |
| 283 | D3DXSavePRTBufferToFileA@8 | |
| 284 | D3DXSavePRTBufferToFileW@8 | |
| 285 | D3DXSavePRTCompBufferToFileA@8 | |
| 286 | D3DXSavePRTCompBufferToFileW@8 | |
| 287 | D3DXSaveSurfaceToFileA@20 | |
| 288 | D3DXSaveSurfaceToFileInMemory@20 | |
| 289 | D3DXSaveSurfaceToFileW@20 | |
| 290 | D3DXSaveTextureToFileA@16 | |
| 291 | D3DXSaveTextureToFileInMemory@16 | |
| 292 | D3DXSaveTextureToFileW@16 | |
| 293 | D3DXSaveVolumeToFileA@20 | |
| 294 | D3DXSaveVolumeToFileInMemory@20 | |
| 295 | D3DXSaveVolumeToFileW@20 | |
| 296 | D3DXSimplifyMesh@28 | |
| 297 | D3DXSphereBoundProbe@16 | |
| 298 | D3DXSplitMesh@36 | |
| 299 | D3DXTessellateNPatches@24 | |
| 300 | D3DXTessellateRectPatch@20 | |
| 301 | D3DXTessellateTriPatch@20 | |
| 302 | D3DXTriPatchSize@12 | |
| 303 | D3DXUVAtlasCreate@76 | |
| 304 | D3DXUVAtlasPack@44 | |
| 305 | D3DXUVAtlasPartition@68 | |
| 306 | D3DXValidMesh@12 | |
| 307 | D3DXValidPatchMesh@16 | |
| 308 | D3DXVec2BaryCentric@24 | |
| 309 | D3DXVec2CatmullRom@24 | |
| 310 | D3DXVec2Hermite@24 | |
| 311 | D3DXVec2Normalize@8 | |
| 312 | D3DXVec2Transform@12 | |
| 313 | D3DXVec2TransformArray@24 | |
| 314 | D3DXVec2TransformCoord@12 | |
| 315 | D3DXVec2TransformCoordArray@24 | |
| 316 | D3DXVec2TransformNormal@12 | |
| 317 | D3DXVec2TransformNormalArray@24 | |
| 318 | D3DXVec3BaryCentric@24 | |
| 319 | D3DXVec3CatmullRom@24 | |
| 320 | D3DXVec3Hermite@24 | |
| 321 | D3DXVec3Normalize@8 | |
| 322 | D3DXVec3Project@24 | |
| 323 | D3DXVec3ProjectArray@36 | |
| 324 | D3DXVec3Transform@12 | |
| 325 | D3DXVec3TransformArray@24 | |
| 326 | D3DXVec3TransformCoord@12 | |
| 327 | D3DXVec3TransformCoordArray@24 | |
| 328 | D3DXVec3TransformNormal@12 | |
| 329 | D3DXVec3TransformNormalArray@24 | |
| 330 | D3DXVec3Unproject@24 | |
| 331 | D3DXVec3UnprojectArray@36 | |
| 332 | D3DXVec4BaryCentric@24 | |
| 333 | D3DXVec4CatmullRom@24 | |
| 334 | D3DXVec4Cross@16 | |
| 335 | D3DXVec4Hermite@24 | |
| 336 | D3DXVec4Normalize@8 | |
| 337 | D3DXVec4Transform@12 | |
| 338 | D3DXVec4TransformArray@24 | |
| 339 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_31.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateKeyframedAnimationSet@32 | |
| 78 | D3DXCreateLine@8 | |
| 79 | D3DXCreateMatrixStack@8 | |
| 80 | D3DXCreateMesh@24 | |
| 81 | D3DXCreateMeshFVF@24 | |
| 82 | D3DXCreateNPatchMesh@8 | |
| 83 | D3DXCreatePMeshFromStream@28 | |
| 84 | D3DXCreatePRTBuffer@16 | |
| 85 | D3DXCreatePRTBufferTex@20 | |
| 86 | D3DXCreatePRTCompBuffer@28 | |
| 87 | D3DXCreatePRTEngine@20 | |
| 88 | D3DXCreatePatchMesh@28 | |
| 89 | D3DXCreatePolygon@20 | |
| 90 | D3DXCreateRenderToEnvMap@28 | |
| 91 | D3DXCreateRenderToSurface@28 | |
| 92 | D3DXCreateSPMesh@20 | |
| 93 | D3DXCreateSkinInfo@16 | |
| 94 | D3DXCreateSkinInfoFVF@16 | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 96 | D3DXCreateSphere@24 | |
| 97 | D3DXCreateSprite@8 | |
| 98 | D3DXCreateTeapot@12 | |
| 99 | D3DXCreateTextA@32 | |
| 100 | D3DXCreateTextW@32 | |
| 101 | D3DXCreateTexture@32 | |
| 102 | D3DXCreateTextureFromFileA@12 | |
| 103 | D3DXCreateTextureFromFileExA@56 | |
| 104 | D3DXCreateTextureFromFileExW@56 | |
| 105 | D3DXCreateTextureFromFileInMemory@16 | |
| 106 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 107 | D3DXCreateTextureFromFileW@12 | |
| 108 | D3DXCreateTextureFromResourceA@16 | |
| 109 | D3DXCreateTextureFromResourceExA@60 | |
| 110 | D3DXCreateTextureFromResourceExW@60 | |
| 111 | D3DXCreateTextureFromResourceW@16 | |
| 112 | D3DXCreateTextureGutterHelper@20 | |
| 113 | D3DXCreateTextureShader@8 | |
| 114 | D3DXCreateTorus@28 | |
| 115 | D3DXCreateVolumeTexture@36 | |
| 116 | D3DXCreateVolumeTextureFromFileA@12 | |
| 117 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 118 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 121 | D3DXCreateVolumeTextureFromFileW@12 | |
| 122 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 123 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 124 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 126 | D3DXDebugMute@4 | |
| 127 | D3DXDeclaratorFromFVF@8 | |
| 128 | D3DXDisassembleEffect@12 | |
| 129 | D3DXDisassembleShader@16 | |
| 130 | D3DXFVFFromDeclarator@8 | |
| 131 | D3DXFileCreate@4 | |
| 132 | D3DXFillCubeTexture@12 | |
| 133 | D3DXFillCubeTextureTX@8 | |
| 134 | D3DXFillTexture@12 | |
| 135 | D3DXFillTextureTX@8 | |
| 136 | D3DXFillVolumeTexture@12 | |
| 137 | D3DXFillVolumeTextureTX@8 | |
| 138 | D3DXFilterTexture@16 | |
| 139 | D3DXFindShaderComment@16 | |
| 140 | D3DXFloat16To32Array@12 | |
| 141 | D3DXFloat32To16Array@12 | |
| 142 | D3DXFrameAppendChild@8 | |
| 143 | D3DXFrameCalculateBoundingSphere@12 | |
| 144 | D3DXFrameDestroy@8 | |
| 145 | D3DXFrameFind@8 | |
| 146 | D3DXFrameNumNamedMatrices@4 | |
| 147 | D3DXFrameRegisterNamedMatrices@8 | |
| 148 | D3DXFresnelTerm@8 | |
| 149 | D3DXGatherFragments@28 | |
| 150 | D3DXGatherFragmentsFromFileA@24 | |
| 151 | D3DXGatherFragmentsFromFileW@24 | |
| 152 | D3DXGatherFragmentsFromResourceA@28 | |
| 153 | D3DXGatherFragmentsFromResourceW@28 | |
| 154 | D3DXGenerateOutputDecl@8 | |
| 155 | D3DXGeneratePMesh@28 | |
| 156 | D3DXGetDeclLength@4 | |
| 157 | D3DXGetDeclVertexSize@8 | |
| 158 | D3DXGetDriverLevel@4 | |
| 159 | D3DXGetFVFVertexSize@4 | |
| 160 | D3DXGetImageInfoFromFileA@8 | |
| 161 | D3DXGetImageInfoFromFileInMemory@12 | |
| 162 | D3DXGetImageInfoFromFileW@8 | |
| 163 | D3DXGetImageInfoFromResourceA@12 | |
| 164 | D3DXGetImageInfoFromResourceW@12 | |
| 165 | D3DXGetPixelShaderProfile@4 | |
| 166 | D3DXGetShaderConstantTable@8 | |
| 167 | D3DXGetShaderInputSemantics@12 | |
| 168 | D3DXGetShaderOutputSemantics@12 | |
| 169 | D3DXGetShaderSamplers@12 | |
| 170 | D3DXGetShaderSize@4 | |
| 171 | D3DXGetShaderVersion@4 | |
| 172 | D3DXGetVertexShaderProfile@4 | |
| 173 | D3DXIntersect@40 | |
| 174 | D3DXIntersectSubset@44 | |
| 175 | D3DXIntersectTri@32 | |
| 176 | D3DXLoadMeshFromXA@32 | |
| 177 | D3DXLoadMeshFromXInMemory@36 | |
| 178 | D3DXLoadMeshFromXResource@40 | |
| 179 | D3DXLoadMeshFromXW@32 | |
| 180 | D3DXLoadMeshFromXof@32 | |
| 181 | D3DXLoadMeshHierarchyFromXA@28 | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 183 | D3DXLoadMeshHierarchyFromXW@28 | |
| 184 | D3DXLoadPRTBufferFromFileA@8 | |
| 185 | D3DXLoadPRTBufferFromFileW@8 | |
| 186 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 187 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 188 | D3DXLoadPatchMeshFromXof@28 | |
| 189 | D3DXLoadSkinMeshFromXof@36 | |
| 190 | D3DXLoadSurfaceFromFileA@32 | |
| 191 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 192 | D3DXLoadSurfaceFromFileW@32 | |
| 193 | D3DXLoadSurfaceFromMemory@40 | |
| 194 | D3DXLoadSurfaceFromResourceA@36 | |
| 195 | D3DXLoadSurfaceFromResourceW@36 | |
| 196 | D3DXLoadSurfaceFromSurface@32 | |
| 197 | D3DXLoadVolumeFromFileA@32 | |
| 198 | D3DXLoadVolumeFromFileInMemory@36 | |
| 199 | D3DXLoadVolumeFromFileW@32 | |
| 200 | D3DXLoadVolumeFromMemory@44 | |
| 201 | D3DXLoadVolumeFromResourceA@36 | |
| 202 | D3DXLoadVolumeFromResourceW@36 | |
| 203 | D3DXLoadVolumeFromVolume@32 | |
| 204 | D3DXMatrixAffineTransformation2D@20 | |
| 205 | D3DXMatrixAffineTransformation@20 | |
| 206 | D3DXMatrixDecompose@16 | |
| 207 | D3DXMatrixDeterminant@4 | |
| 208 | D3DXMatrixInverse@12 | |
| 209 | D3DXMatrixLookAtLH@16 | |
| 210 | D3DXMatrixLookAtRH@16 | |
| 211 | D3DXMatrixMultiply@12 | |
| 212 | D3DXMatrixMultiplyTranspose@12 | |
| 213 | D3DXMatrixOrthoLH@20 | |
| 214 | D3DXMatrixOrthoOffCenterLH@28 | |
| 215 | D3DXMatrixOrthoOffCenterRH@28 | |
| 216 | D3DXMatrixOrthoRH@20 | |
| 217 | D3DXMatrixPerspectiveFovLH@20 | |
| 218 | D3DXMatrixPerspectiveFovRH@20 | |
| 219 | D3DXMatrixPerspectiveLH@20 | |
| 220 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 221 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 222 | D3DXMatrixPerspectiveRH@20 | |
| 223 | D3DXMatrixReflect@8 | |
| 224 | D3DXMatrixRotationAxis@12 | |
| 225 | D3DXMatrixRotationQuaternion@8 | |
| 226 | D3DXMatrixRotationX@8 | |
| 227 | D3DXMatrixRotationY@8 | |
| 228 | D3DXMatrixRotationYawPitchRoll@16 | |
| 229 | D3DXMatrixRotationZ@8 | |
| 230 | D3DXMatrixScaling@16 | |
| 231 | D3DXMatrixShadow@12 | |
| 232 | D3DXMatrixTransformation2D@28 | |
| 233 | D3DXMatrixTransformation@28 | |
| 234 | D3DXMatrixTranslation@16 | |
| 235 | D3DXMatrixTranspose@8 | |
| 236 | D3DXOptimizeFaces@20 | |
| 237 | D3DXOptimizeVertices@20 | |
| 238 | D3DXPlaneFromPointNormal@12 | |
| 239 | D3DXPlaneFromPoints@16 | |
| 240 | D3DXPlaneIntersectLine@16 | |
| 241 | D3DXPlaneNormalize@8 | |
| 242 | D3DXPlaneTransform@12 | |
| 243 | D3DXPlaneTransformArray@24 | |
| 244 | D3DXPreprocessShader@24 | |
| 245 | D3DXPreprocessShaderFromFileA@20 | |
| 246 | D3DXPreprocessShaderFromFileW@20 | |
| 247 | D3DXPreprocessShaderFromResourceA@24 | |
| 248 | D3DXPreprocessShaderFromResourceW@24 | |
| 249 | D3DXQuaternionBaryCentric@24 | |
| 250 | D3DXQuaternionExp@8 | |
| 251 | D3DXQuaternionInverse@8 | |
| 252 | D3DXQuaternionLn@8 | |
| 253 | D3DXQuaternionMultiply@12 | |
| 254 | D3DXQuaternionNormalize@8 | |
| 255 | D3DXQuaternionRotationAxis@12 | |
| 256 | D3DXQuaternionRotationMatrix@8 | |
| 257 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 258 | D3DXQuaternionSlerp@16 | |
| 259 | D3DXQuaternionSquad@24 | |
| 260 | D3DXQuaternionSquadSetup@28 | |
| 261 | D3DXQuaternionToAxisAngle@12 | |
| 262 | D3DXRectPatchSize@12 | |
| 263 | D3DXSHAdd@16 | |
| 264 | D3DXSHDot@12 | |
| 265 | D3DXSHEvalConeLight@36 | |
| 266 | D3DXSHEvalDirection@12 | |
| 267 | D3DXSHEvalDirectionalLight@32 | |
| 268 | D3DXSHEvalHemisphereLight@52 | |
| 269 | D3DXSHEvalSphericalLight@36 | |
| 270 | D3DXSHPRTCompSplitMeshSC@64 | |
| 271 | D3DXSHPRTCompSuperCluster@24 | |
| 272 | D3DXSHProjectCubeMap@20 | |
| 273 | D3DXSHRotate@16 | |
| 274 | D3DXSHRotateZ@16 | |
| 275 | D3DXSHScale@16 | |
| 276 | D3DXSaveMeshHierarchyToFileA@20 | |
| 277 | D3DXSaveMeshHierarchyToFileW@20 | |
| 278 | D3DXSaveMeshToXA@28 | |
| 279 | D3DXSaveMeshToXW@28 | |
| 280 | D3DXSavePRTBufferToFileA@8 | |
| 281 | D3DXSavePRTBufferToFileW@8 | |
| 282 | D3DXSavePRTCompBufferToFileA@8 | |
| 283 | D3DXSavePRTCompBufferToFileW@8 | |
| 284 | D3DXSaveSurfaceToFileA@20 | |
| 285 | D3DXSaveSurfaceToFileInMemory@20 | |
| 286 | D3DXSaveSurfaceToFileW@20 | |
| 287 | D3DXSaveTextureToFileA@16 | |
| 288 | D3DXSaveTextureToFileInMemory@16 | |
| 289 | D3DXSaveTextureToFileW@16 | |
| 290 | D3DXSaveVolumeToFileA@20 | |
| 291 | D3DXSaveVolumeToFileInMemory@20 | |
| 292 | D3DXSaveVolumeToFileW@20 | |
| 293 | D3DXSimplifyMesh@28 | |
| 294 | D3DXSphereBoundProbe@16 | |
| 295 | D3DXSplitMesh@36 | |
| 296 | D3DXTessellateNPatches@24 | |
| 297 | D3DXTessellateRectPatch@20 | |
| 298 | D3DXTessellateTriPatch@20 | |
| 299 | D3DXTriPatchSize@12 | |
| 300 | D3DXUVAtlasCreate@76 | |
| 301 | D3DXUVAtlasPack@44 | |
| 302 | D3DXUVAtlasPartition@68 | |
| 303 | D3DXValidMesh@12 | |
| 304 | D3DXValidPatchMesh@16 | |
| 305 | D3DXVec2BaryCentric@24 | |
| 306 | D3DXVec2CatmullRom@24 | |
| 307 | D3DXVec2Hermite@24 | |
| 308 | D3DXVec2Normalize@8 | |
| 309 | D3DXVec2Transform@12 | |
| 310 | D3DXVec2TransformArray@24 | |
| 311 | D3DXVec2TransformCoord@12 | |
| 312 | D3DXVec2TransformCoordArray@24 | |
| 313 | D3DXVec2TransformNormal@12 | |
| 314 | D3DXVec2TransformNormalArray@24 | |
| 315 | D3DXVec3BaryCentric@24 | |
| 316 | D3DXVec3CatmullRom@24 | |
| 317 | D3DXVec3Hermite@24 | |
| 318 | D3DXVec3Normalize@8 | |
| 319 | D3DXVec3Project@24 | |
| 320 | D3DXVec3ProjectArray@36 | |
| 321 | D3DXVec3Transform@12 | |
| 322 | D3DXVec3TransformArray@24 | |
| 323 | D3DXVec3TransformCoord@12 | |
| 324 | D3DXVec3TransformCoordArray@24 | |
| 325 | D3DXVec3TransformNormal@12 | |
| 326 | D3DXVec3TransformNormalArray@24 | |
| 327 | D3DXVec3Unproject@24 | |
| 328 | D3DXVec3UnprojectArray@36 | |
| 329 | D3DXVec4BaryCentric@24 | |
| 330 | D3DXVec4CatmullRom@24 | |
| 331 | D3DXVec4Cross@16 | |
| 332 | D3DXVec4Hermite@24 | |
| 333 | D3DXVec4Normalize@8 | |
| 334 | D3DXVec4Transform@12 | |
| 335 | D3DXVec4TransformArray@24 | |
| 336 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_32.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateKeyframedAnimationSet@32 | |
| 78 | D3DXCreateLine@8 | |
| 79 | D3DXCreateMatrixStack@8 | |
| 80 | D3DXCreateMesh@24 | |
| 81 | D3DXCreateMeshFVF@24 | |
| 82 | D3DXCreateNPatchMesh@8 | |
| 83 | D3DXCreatePMeshFromStream@28 | |
| 84 | D3DXCreatePRTBuffer@16 | |
| 85 | D3DXCreatePRTBufferTex@20 | |
| 86 | D3DXCreatePRTCompBuffer@28 | |
| 87 | D3DXCreatePRTEngine@20 | |
| 88 | D3DXCreatePatchMesh@28 | |
| 89 | D3DXCreatePolygon@20 | |
| 90 | D3DXCreateRenderToEnvMap@28 | |
| 91 | D3DXCreateRenderToSurface@28 | |
| 92 | D3DXCreateSPMesh@20 | |
| 93 | D3DXCreateSkinInfo@16 | |
| 94 | D3DXCreateSkinInfoFVF@16 | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 96 | D3DXCreateSphere@24 | |
| 97 | D3DXCreateSprite@8 | |
| 98 | D3DXCreateTeapot@12 | |
| 99 | D3DXCreateTextA@32 | |
| 100 | D3DXCreateTextW@32 | |
| 101 | D3DXCreateTexture@32 | |
| 102 | D3DXCreateTextureFromFileA@12 | |
| 103 | D3DXCreateTextureFromFileExA@56 | |
| 104 | D3DXCreateTextureFromFileExW@56 | |
| 105 | D3DXCreateTextureFromFileInMemory@16 | |
| 106 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 107 | D3DXCreateTextureFromFileW@12 | |
| 108 | D3DXCreateTextureFromResourceA@16 | |
| 109 | D3DXCreateTextureFromResourceExA@60 | |
| 110 | D3DXCreateTextureFromResourceExW@60 | |
| 111 | D3DXCreateTextureFromResourceW@16 | |
| 112 | D3DXCreateTextureGutterHelper@20 | |
| 113 | D3DXCreateTextureShader@8 | |
| 114 | D3DXCreateTorus@28 | |
| 115 | D3DXCreateVolumeTexture@36 | |
| 116 | D3DXCreateVolumeTextureFromFileA@12 | |
| 117 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 118 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 121 | D3DXCreateVolumeTextureFromFileW@12 | |
| 122 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 123 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 124 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 126 | D3DXDebugMute@4 | |
| 127 | D3DXDeclaratorFromFVF@8 | |
| 128 | D3DXDisassembleEffect@12 | |
| 129 | D3DXDisassembleShader@16 | |
| 130 | D3DXFVFFromDeclarator@8 | |
| 131 | D3DXFileCreate@4 | |
| 132 | D3DXFillCubeTexture@12 | |
| 133 | D3DXFillCubeTextureTX@8 | |
| 134 | D3DXFillTexture@12 | |
| 135 | D3DXFillTextureTX@8 | |
| 136 | D3DXFillVolumeTexture@12 | |
| 137 | D3DXFillVolumeTextureTX@8 | |
| 138 | D3DXFilterTexture@16 | |
| 139 | D3DXFindShaderComment@16 | |
| 140 | D3DXFloat16To32Array@12 | |
| 141 | D3DXFloat32To16Array@12 | |
| 142 | D3DXFrameAppendChild@8 | |
| 143 | D3DXFrameCalculateBoundingSphere@12 | |
| 144 | D3DXFrameDestroy@8 | |
| 145 | D3DXFrameFind@8 | |
| 146 | D3DXFrameNumNamedMatrices@4 | |
| 147 | D3DXFrameRegisterNamedMatrices@8 | |
| 148 | D3DXFresnelTerm@8 | |
| 149 | D3DXGatherFragments@28 | |
| 150 | D3DXGatherFragmentsFromFileA@24 | |
| 151 | D3DXGatherFragmentsFromFileW@24 | |
| 152 | D3DXGatherFragmentsFromResourceA@28 | |
| 153 | D3DXGatherFragmentsFromResourceW@28 | |
| 154 | D3DXGenerateOutputDecl@8 | |
| 155 | D3DXGeneratePMesh@28 | |
| 156 | D3DXGetDeclLength@4 | |
| 157 | D3DXGetDeclVertexSize@8 | |
| 158 | D3DXGetDriverLevel@4 | |
| 159 | D3DXGetFVFVertexSize@4 | |
| 160 | D3DXGetImageInfoFromFileA@8 | |
| 161 | D3DXGetImageInfoFromFileInMemory@12 | |
| 162 | D3DXGetImageInfoFromFileW@8 | |
| 163 | D3DXGetImageInfoFromResourceA@12 | |
| 164 | D3DXGetImageInfoFromResourceW@12 | |
| 165 | D3DXGetPixelShaderProfile@4 | |
| 166 | D3DXGetShaderConstantTable@8 | |
| 167 | D3DXGetShaderInputSemantics@12 | |
| 168 | D3DXGetShaderOutputSemantics@12 | |
| 169 | D3DXGetShaderSamplers@12 | |
| 170 | D3DXGetShaderSize@4 | |
| 171 | D3DXGetShaderVersion@4 | |
| 172 | D3DXGetVertexShaderProfile@4 | |
| 173 | D3DXIntersect@40 | |
| 174 | D3DXIntersectSubset@44 | |
| 175 | D3DXIntersectTri@32 | |
| 176 | D3DXLoadMeshFromXA@32 | |
| 177 | D3DXLoadMeshFromXInMemory@36 | |
| 178 | D3DXLoadMeshFromXResource@40 | |
| 179 | D3DXLoadMeshFromXW@32 | |
| 180 | D3DXLoadMeshFromXof@32 | |
| 181 | D3DXLoadMeshHierarchyFromXA@28 | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 183 | D3DXLoadMeshHierarchyFromXW@28 | |
| 184 | D3DXLoadPRTBufferFromFileA@8 | |
| 185 | D3DXLoadPRTBufferFromFileW@8 | |
| 186 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 187 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 188 | D3DXLoadPatchMeshFromXof@28 | |
| 189 | D3DXLoadSkinMeshFromXof@36 | |
| 190 | D3DXLoadSurfaceFromFileA@32 | |
| 191 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 192 | D3DXLoadSurfaceFromFileW@32 | |
| 193 | D3DXLoadSurfaceFromMemory@40 | |
| 194 | D3DXLoadSurfaceFromResourceA@36 | |
| 195 | D3DXLoadSurfaceFromResourceW@36 | |
| 196 | D3DXLoadSurfaceFromSurface@32 | |
| 197 | D3DXLoadVolumeFromFileA@32 | |
| 198 | D3DXLoadVolumeFromFileInMemory@36 | |
| 199 | D3DXLoadVolumeFromFileW@32 | |
| 200 | D3DXLoadVolumeFromMemory@44 | |
| 201 | D3DXLoadVolumeFromResourceA@36 | |
| 202 | D3DXLoadVolumeFromResourceW@36 | |
| 203 | D3DXLoadVolumeFromVolume@32 | |
| 204 | D3DXMatrixAffineTransformation2D@20 | |
| 205 | D3DXMatrixAffineTransformation@20 | |
| 206 | D3DXMatrixDecompose@16 | |
| 207 | D3DXMatrixDeterminant@4 | |
| 208 | D3DXMatrixInverse@12 | |
| 209 | D3DXMatrixLookAtLH@16 | |
| 210 | D3DXMatrixLookAtRH@16 | |
| 211 | D3DXMatrixMultiply@12 | |
| 212 | D3DXMatrixMultiplyTranspose@12 | |
| 213 | D3DXMatrixOrthoLH@20 | |
| 214 | D3DXMatrixOrthoOffCenterLH@28 | |
| 215 | D3DXMatrixOrthoOffCenterRH@28 | |
| 216 | D3DXMatrixOrthoRH@20 | |
| 217 | D3DXMatrixPerspectiveFovLH@20 | |
| 218 | D3DXMatrixPerspectiveFovRH@20 | |
| 219 | D3DXMatrixPerspectiveLH@20 | |
| 220 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 221 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 222 | D3DXMatrixPerspectiveRH@20 | |
| 223 | D3DXMatrixReflect@8 | |
| 224 | D3DXMatrixRotationAxis@12 | |
| 225 | D3DXMatrixRotationQuaternion@8 | |
| 226 | D3DXMatrixRotationX@8 | |
| 227 | D3DXMatrixRotationY@8 | |
| 228 | D3DXMatrixRotationYawPitchRoll@16 | |
| 229 | D3DXMatrixRotationZ@8 | |
| 230 | D3DXMatrixScaling@16 | |
| 231 | D3DXMatrixShadow@12 | |
| 232 | D3DXMatrixTransformation2D@28 | |
| 233 | D3DXMatrixTransformation@28 | |
| 234 | D3DXMatrixTranslation@16 | |
| 235 | D3DXMatrixTranspose@8 | |
| 236 | D3DXOptimizeFaces@20 | |
| 237 | D3DXOptimizeVertices@20 | |
| 238 | D3DXPlaneFromPointNormal@12 | |
| 239 | D3DXPlaneFromPoints@16 | |
| 240 | D3DXPlaneIntersectLine@16 | |
| 241 | D3DXPlaneNormalize@8 | |
| 242 | D3DXPlaneTransform@12 | |
| 243 | D3DXPlaneTransformArray@24 | |
| 244 | D3DXPreprocessShader@24 | |
| 245 | D3DXPreprocessShaderFromFileA@20 | |
| 246 | D3DXPreprocessShaderFromFileW@20 | |
| 247 | D3DXPreprocessShaderFromResourceA@24 | |
| 248 | D3DXPreprocessShaderFromResourceW@24 | |
| 249 | D3DXQuaternionBaryCentric@24 | |
| 250 | D3DXQuaternionExp@8 | |
| 251 | D3DXQuaternionInverse@8 | |
| 252 | D3DXQuaternionLn@8 | |
| 253 | D3DXQuaternionMultiply@12 | |
| 254 | D3DXQuaternionNormalize@8 | |
| 255 | D3DXQuaternionRotationAxis@12 | |
| 256 | D3DXQuaternionRotationMatrix@8 | |
| 257 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 258 | D3DXQuaternionSlerp@16 | |
| 259 | D3DXQuaternionSquad@24 | |
| 260 | D3DXQuaternionSquadSetup@28 | |
| 261 | D3DXQuaternionToAxisAngle@12 | |
| 262 | D3DXRectPatchSize@12 | |
| 263 | D3DXSHAdd@16 | |
| 264 | D3DXSHDot@12 | |
| 265 | D3DXSHEvalConeLight@36 | |
| 266 | D3DXSHEvalDirection@12 | |
| 267 | D3DXSHEvalDirectionalLight@32 | |
| 268 | D3DXSHEvalHemisphereLight@52 | |
| 269 | D3DXSHEvalSphericalLight@36 | |
| 270 | D3DXSHMultiply2@12 | |
| 271 | D3DXSHMultiply3@12 | |
| 272 | D3DXSHMultiply4@12 | |
| 273 | D3DXSHMultiply5@12 | |
| 274 | D3DXSHMultiply6@12 | |
| 275 | D3DXSHPRTCompSplitMeshSC@64 | |
| 276 | D3DXSHPRTCompSuperCluster@24 | |
| 277 | D3DXSHProjectCubeMap@20 | |
| 278 | D3DXSHRotate@16 | |
| 279 | D3DXSHRotateZ@16 | |
| 280 | D3DXSHScale@16 | |
| 281 | D3DXSaveMeshHierarchyToFileA@20 | |
| 282 | D3DXSaveMeshHierarchyToFileW@20 | |
| 283 | D3DXSaveMeshToXA@28 | |
| 284 | D3DXSaveMeshToXW@28 | |
| 285 | D3DXSavePRTBufferToFileA@8 | |
| 286 | D3DXSavePRTBufferToFileW@8 | |
| 287 | D3DXSavePRTCompBufferToFileA@8 | |
| 288 | D3DXSavePRTCompBufferToFileW@8 | |
| 289 | D3DXSaveSurfaceToFileA@20 | |
| 290 | D3DXSaveSurfaceToFileInMemory@20 | |
| 291 | D3DXSaveSurfaceToFileW@20 | |
| 292 | D3DXSaveTextureToFileA@16 | |
| 293 | D3DXSaveTextureToFileInMemory@16 | |
| 294 | D3DXSaveTextureToFileW@16 | |
| 295 | D3DXSaveVolumeToFileA@20 | |
| 296 | D3DXSaveVolumeToFileInMemory@20 | |
| 297 | D3DXSaveVolumeToFileW@20 | |
| 298 | D3DXSimplifyMesh@28 | |
| 299 | D3DXSphereBoundProbe@16 | |
| 300 | D3DXSplitMesh@36 | |
| 301 | D3DXTessellateNPatches@24 | |
| 302 | D3DXTessellateRectPatch@20 | |
| 303 | D3DXTessellateTriPatch@20 | |
| 304 | D3DXTriPatchSize@12 | |
| 305 | D3DXUVAtlasCreate@76 | |
| 306 | D3DXUVAtlasPack@44 | |
| 307 | D3DXUVAtlasPartition@68 | |
| 308 | D3DXValidMesh@12 | |
| 309 | D3DXValidPatchMesh@16 | |
| 310 | D3DXVec2BaryCentric@24 | |
| 311 | D3DXVec2CatmullRom@24 | |
| 312 | D3DXVec2Hermite@24 | |
| 313 | D3DXVec2Normalize@8 | |
| 314 | D3DXVec2Transform@12 | |
| 315 | D3DXVec2TransformArray@24 | |
| 316 | D3DXVec2TransformCoord@12 | |
| 317 | D3DXVec2TransformCoordArray@24 | |
| 318 | D3DXVec2TransformNormal@12 | |
| 319 | D3DXVec2TransformNormalArray@24 | |
| 320 | D3DXVec3BaryCentric@24 | |
| 321 | D3DXVec3CatmullRom@24 | |
| 322 | D3DXVec3Hermite@24 | |
| 323 | D3DXVec3Normalize@8 | |
| 324 | D3DXVec3Project@24 | |
| 325 | D3DXVec3ProjectArray@36 | |
| 326 | D3DXVec3Transform@12 | |
| 327 | D3DXVec3TransformArray@24 | |
| 328 | D3DXVec3TransformCoord@12 | |
| 329 | D3DXVec3TransformCoordArray@24 | |
| 330 | D3DXVec3TransformNormal@12 | |
| 331 | D3DXVec3TransformNormalArray@24 | |
| 332 | D3DXVec3Unproject@24 | |
| 333 | D3DXVec3UnprojectArray@36 | |
| 334 | D3DXVec4BaryCentric@24 | |
| 335 | D3DXVec4CatmullRom@24 | |
| 336 | D3DXVec4Cross@16 | |
| 337 | D3DXVec4Hermite@24 | |
| 338 | D3DXVec4Normalize@8 | |
| 339 | D3DXVec4Transform@12 | |
| 340 | D3DXVec4TransformArray@24 | |
| 341 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_33.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateKeyframedAnimationSet@32 | |
| 78 | D3DXCreateLine@8 | |
| 79 | D3DXCreateMatrixStack@8 | |
| 80 | D3DXCreateMesh@24 | |
| 81 | D3DXCreateMeshFVF@24 | |
| 82 | D3DXCreateNPatchMesh@8 | |
| 83 | D3DXCreatePMeshFromStream@28 | |
| 84 | D3DXCreatePRTBuffer@16 | |
| 85 | D3DXCreatePRTBufferTex@20 | |
| 86 | D3DXCreatePRTCompBuffer@28 | |
| 87 | D3DXCreatePRTEngine@20 | |
| 88 | D3DXCreatePatchMesh@28 | |
| 89 | D3DXCreatePolygon@20 | |
| 90 | D3DXCreateRenderToEnvMap@28 | |
| 91 | D3DXCreateRenderToSurface@28 | |
| 92 | D3DXCreateSPMesh@20 | |
| 93 | D3DXCreateSkinInfo@16 | |
| 94 | D3DXCreateSkinInfoFVF@16 | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 96 | D3DXCreateSphere@24 | |
| 97 | D3DXCreateSprite@8 | |
| 98 | D3DXCreateTeapot@12 | |
| 99 | D3DXCreateTextA@32 | |
| 100 | D3DXCreateTextW@32 | |
| 101 | D3DXCreateTexture@32 | |
| 102 | D3DXCreateTextureFromFileA@12 | |
| 103 | D3DXCreateTextureFromFileExA@56 | |
| 104 | D3DXCreateTextureFromFileExW@56 | |
| 105 | D3DXCreateTextureFromFileInMemory@16 | |
| 106 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 107 | D3DXCreateTextureFromFileW@12 | |
| 108 | D3DXCreateTextureFromResourceA@16 | |
| 109 | D3DXCreateTextureFromResourceExA@60 | |
| 110 | D3DXCreateTextureFromResourceExW@60 | |
| 111 | D3DXCreateTextureFromResourceW@16 | |
| 112 | D3DXCreateTextureGutterHelper@20 | |
| 113 | D3DXCreateTextureShader@8 | |
| 114 | D3DXCreateTorus@28 | |
| 115 | D3DXCreateVolumeTexture@36 | |
| 116 | D3DXCreateVolumeTextureFromFileA@12 | |
| 117 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 118 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 121 | D3DXCreateVolumeTextureFromFileW@12 | |
| 122 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 123 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 124 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 126 | D3DXDebugMute@4 | |
| 127 | D3DXDeclaratorFromFVF@8 | |
| 128 | D3DXDisassembleEffect@12 | |
| 129 | D3DXDisassembleShader@16 | |
| 130 | D3DXFVFFromDeclarator@8 | |
| 131 | D3DXFileCreate@4 | |
| 132 | D3DXFillCubeTexture@12 | |
| 133 | D3DXFillCubeTextureTX@8 | |
| 134 | D3DXFillTexture@12 | |
| 135 | D3DXFillTextureTX@8 | |
| 136 | D3DXFillVolumeTexture@12 | |
| 137 | D3DXFillVolumeTextureTX@8 | |
| 138 | D3DXFilterTexture@16 | |
| 139 | D3DXFindShaderComment@16 | |
| 140 | D3DXFloat16To32Array@12 | |
| 141 | D3DXFloat32To16Array@12 | |
| 142 | D3DXFrameAppendChild@8 | |
| 143 | D3DXFrameCalculateBoundingSphere@12 | |
| 144 | D3DXFrameDestroy@8 | |
| 145 | D3DXFrameFind@8 | |
| 146 | D3DXFrameNumNamedMatrices@4 | |
| 147 | D3DXFrameRegisterNamedMatrices@8 | |
| 148 | D3DXFresnelTerm@8 | |
| 149 | D3DXGatherFragments@28 | |
| 150 | D3DXGatherFragmentsFromFileA@24 | |
| 151 | D3DXGatherFragmentsFromFileW@24 | |
| 152 | D3DXGatherFragmentsFromResourceA@28 | |
| 153 | D3DXGatherFragmentsFromResourceW@28 | |
| 154 | D3DXGenerateOutputDecl@8 | |
| 155 | D3DXGeneratePMesh@28 | |
| 156 | D3DXGetDeclLength@4 | |
| 157 | D3DXGetDeclVertexSize@8 | |
| 158 | D3DXGetDriverLevel@4 | |
| 159 | D3DXGetFVFVertexSize@4 | |
| 160 | D3DXGetImageInfoFromFileA@8 | |
| 161 | D3DXGetImageInfoFromFileInMemory@12 | |
| 162 | D3DXGetImageInfoFromFileW@8 | |
| 163 | D3DXGetImageInfoFromResourceA@12 | |
| 164 | D3DXGetImageInfoFromResourceW@12 | |
| 165 | D3DXGetPixelShaderProfile@4 | |
| 166 | D3DXGetShaderConstantTable@8 | |
| 167 | D3DXGetShaderInputSemantics@12 | |
| 168 | D3DXGetShaderOutputSemantics@12 | |
| 169 | D3DXGetShaderSamplers@12 | |
| 170 | D3DXGetShaderSize@4 | |
| 171 | D3DXGetShaderVersion@4 | |
| 172 | D3DXGetVertexShaderProfile@4 | |
| 173 | D3DXIntersect@40 | |
| 174 | D3DXIntersectSubset@44 | |
| 175 | D3DXIntersectTri@32 | |
| 176 | D3DXLoadMeshFromXA@32 | |
| 177 | D3DXLoadMeshFromXInMemory@36 | |
| 178 | D3DXLoadMeshFromXResource@40 | |
| 179 | D3DXLoadMeshFromXW@32 | |
| 180 | D3DXLoadMeshFromXof@32 | |
| 181 | D3DXLoadMeshHierarchyFromXA@28 | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 183 | D3DXLoadMeshHierarchyFromXW@28 | |
| 184 | D3DXLoadPRTBufferFromFileA@8 | |
| 185 | D3DXLoadPRTBufferFromFileW@8 | |
| 186 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 187 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 188 | D3DXLoadPatchMeshFromXof@28 | |
| 189 | D3DXLoadSkinMeshFromXof@36 | |
| 190 | D3DXLoadSurfaceFromFileA@32 | |
| 191 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 192 | D3DXLoadSurfaceFromFileW@32 | |
| 193 | D3DXLoadSurfaceFromMemory@40 | |
| 194 | D3DXLoadSurfaceFromResourceA@36 | |
| 195 | D3DXLoadSurfaceFromResourceW@36 | |
| 196 | D3DXLoadSurfaceFromSurface@32 | |
| 197 | D3DXLoadVolumeFromFileA@32 | |
| 198 | D3DXLoadVolumeFromFileInMemory@36 | |
| 199 | D3DXLoadVolumeFromFileW@32 | |
| 200 | D3DXLoadVolumeFromMemory@44 | |
| 201 | D3DXLoadVolumeFromResourceA@36 | |
| 202 | D3DXLoadVolumeFromResourceW@36 | |
| 203 | D3DXLoadVolumeFromVolume@32 | |
| 204 | D3DXMatrixAffineTransformation2D@20 | |
| 205 | D3DXMatrixAffineTransformation@20 | |
| 206 | D3DXMatrixDecompose@16 | |
| 207 | D3DXMatrixDeterminant@4 | |
| 208 | D3DXMatrixInverse@12 | |
| 209 | D3DXMatrixLookAtLH@16 | |
| 210 | D3DXMatrixLookAtRH@16 | |
| 211 | D3DXMatrixMultiply@12 | |
| 212 | D3DXMatrixMultiplyTranspose@12 | |
| 213 | D3DXMatrixOrthoLH@20 | |
| 214 | D3DXMatrixOrthoOffCenterLH@28 | |
| 215 | D3DXMatrixOrthoOffCenterRH@28 | |
| 216 | D3DXMatrixOrthoRH@20 | |
| 217 | D3DXMatrixPerspectiveFovLH@20 | |
| 218 | D3DXMatrixPerspectiveFovRH@20 | |
| 219 | D3DXMatrixPerspectiveLH@20 | |
| 220 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 221 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 222 | D3DXMatrixPerspectiveRH@20 | |
| 223 | D3DXMatrixReflect@8 | |
| 224 | D3DXMatrixRotationAxis@12 | |
| 225 | D3DXMatrixRotationQuaternion@8 | |
| 226 | D3DXMatrixRotationX@8 | |
| 227 | D3DXMatrixRotationY@8 | |
| 228 | D3DXMatrixRotationYawPitchRoll@16 | |
| 229 | D3DXMatrixRotationZ@8 | |
| 230 | D3DXMatrixScaling@16 | |
| 231 | D3DXMatrixShadow@12 | |
| 232 | D3DXMatrixTransformation2D@28 | |
| 233 | D3DXMatrixTransformation@28 | |
| 234 | D3DXMatrixTranslation@16 | |
| 235 | D3DXMatrixTranspose@8 | |
| 236 | D3DXOptimizeFaces@20 | |
| 237 | D3DXOptimizeVertices@20 | |
| 238 | D3DXPlaneFromPointNormal@12 | |
| 239 | D3DXPlaneFromPoints@16 | |
| 240 | D3DXPlaneIntersectLine@16 | |
| 241 | D3DXPlaneNormalize@8 | |
| 242 | D3DXPlaneTransform@12 | |
| 243 | D3DXPlaneTransformArray@24 | |
| 244 | D3DXPreprocessShader@24 | |
| 245 | D3DXPreprocessShaderFromFileA@20 | |
| 246 | D3DXPreprocessShaderFromFileW@20 | |
| 247 | D3DXPreprocessShaderFromResourceA@24 | |
| 248 | D3DXPreprocessShaderFromResourceW@24 | |
| 249 | D3DXQuaternionBaryCentric@24 | |
| 250 | D3DXQuaternionExp@8 | |
| 251 | D3DXQuaternionInverse@8 | |
| 252 | D3DXQuaternionLn@8 | |
| 253 | D3DXQuaternionMultiply@12 | |
| 254 | D3DXQuaternionNormalize@8 | |
| 255 | D3DXQuaternionRotationAxis@12 | |
| 256 | D3DXQuaternionRotationMatrix@8 | |
| 257 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 258 | D3DXQuaternionSlerp@16 | |
| 259 | D3DXQuaternionSquad@24 | |
| 260 | D3DXQuaternionSquadSetup@28 | |
| 261 | D3DXQuaternionToAxisAngle@12 | |
| 262 | D3DXRectPatchSize@12 | |
| 263 | D3DXSHAdd@16 | |
| 264 | D3DXSHDot@12 | |
| 265 | D3DXSHEvalConeLight@36 | |
| 266 | D3DXSHEvalDirection@12 | |
| 267 | D3DXSHEvalDirectionalLight@32 | |
| 268 | D3DXSHEvalHemisphereLight@52 | |
| 269 | D3DXSHEvalSphericalLight@36 | |
| 270 | D3DXSHMultiply2@12 | |
| 271 | D3DXSHMultiply3@12 | |
| 272 | D3DXSHMultiply4@12 | |
| 273 | D3DXSHMultiply5@12 | |
| 274 | D3DXSHMultiply6@12 | |
| 275 | D3DXSHPRTCompSplitMeshSC@64 | |
| 276 | D3DXSHPRTCompSuperCluster@24 | |
| 277 | D3DXSHProjectCubeMap@20 | |
| 278 | D3DXSHRotate@16 | |
| 279 | D3DXSHRotateZ@16 | |
| 280 | D3DXSHScale@16 | |
| 281 | D3DXSaveMeshHierarchyToFileA@20 | |
| 282 | D3DXSaveMeshHierarchyToFileW@20 | |
| 283 | D3DXSaveMeshToXA@28 | |
| 284 | D3DXSaveMeshToXW@28 | |
| 285 | D3DXSavePRTBufferToFileA@8 | |
| 286 | D3DXSavePRTBufferToFileW@8 | |
| 287 | D3DXSavePRTCompBufferToFileA@8 | |
| 288 | D3DXSavePRTCompBufferToFileW@8 | |
| 289 | D3DXSaveSurfaceToFileA@20 | |
| 290 | D3DXSaveSurfaceToFileInMemory@20 | |
| 291 | D3DXSaveSurfaceToFileW@20 | |
| 292 | D3DXSaveTextureToFileA@16 | |
| 293 | D3DXSaveTextureToFileInMemory@16 | |
| 294 | D3DXSaveTextureToFileW@16 | |
| 295 | D3DXSaveVolumeToFileA@20 | |
| 296 | D3DXSaveVolumeToFileInMemory@20 | |
| 297 | D3DXSaveVolumeToFileW@20 | |
| 298 | D3DXSimplifyMesh@28 | |
| 299 | D3DXSphereBoundProbe@16 | |
| 300 | D3DXSplitMesh@36 | |
| 301 | D3DXTessellateNPatches@24 | |
| 302 | D3DXTessellateRectPatch@20 | |
| 303 | D3DXTessellateTriPatch@20 | |
| 304 | D3DXTriPatchSize@12 | |
| 305 | D3DXUVAtlasCreate@76 | |
| 306 | D3DXUVAtlasPack@44 | |
| 307 | D3DXUVAtlasPartition@68 | |
| 308 | D3DXValidMesh@12 | |
| 309 | D3DXValidPatchMesh@16 | |
| 310 | D3DXVec2BaryCentric@24 | |
| 311 | D3DXVec2CatmullRom@24 | |
| 312 | D3DXVec2Hermite@24 | |
| 313 | D3DXVec2Normalize@8 | |
| 314 | D3DXVec2Transform@12 | |
| 315 | D3DXVec2TransformArray@24 | |
| 316 | D3DXVec2TransformCoord@12 | |
| 317 | D3DXVec2TransformCoordArray@24 | |
| 318 | D3DXVec2TransformNormal@12 | |
| 319 | D3DXVec2TransformNormalArray@24 | |
| 320 | D3DXVec3BaryCentric@24 | |
| 321 | D3DXVec3CatmullRom@24 | |
| 322 | D3DXVec3Hermite@24 | |
| 323 | D3DXVec3Normalize@8 | |
| 324 | D3DXVec3Project@24 | |
| 325 | D3DXVec3ProjectArray@36 | |
| 326 | D3DXVec3Transform@12 | |
| 327 | D3DXVec3TransformArray@24 | |
| 328 | D3DXVec3TransformCoord@12 | |
| 329 | D3DXVec3TransformCoordArray@24 | |
| 330 | D3DXVec3TransformNormal@12 | |
| 331 | D3DXVec3TransformNormalArray@24 | |
| 332 | D3DXVec3Unproject@24 | |
| 333 | D3DXVec3UnprojectArray@36 | |
| 334 | D3DXVec4BaryCentric@24 | |
| 335 | D3DXVec4CatmullRom@24 | |
| 336 | D3DXVec4Cross@16 | |
| 337 | D3DXVec4Hermite@24 | |
| 338 | D3DXVec4Normalize@8 | |
| 339 | D3DXVec4Transform@12 | |
| 340 | D3DXVec4TransformArray@24 | |
| 341 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_34.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateKeyframedAnimationSet@32 | |
| 78 | D3DXCreateLine@8 | |
| 79 | D3DXCreateMatrixStack@8 | |
| 80 | D3DXCreateMesh@24 | |
| 81 | D3DXCreateMeshFVF@24 | |
| 82 | D3DXCreateNPatchMesh@8 | |
| 83 | D3DXCreatePMeshFromStream@28 | |
| 84 | D3DXCreatePRTBuffer@16 | |
| 85 | D3DXCreatePRTBufferTex@20 | |
| 86 | D3DXCreatePRTCompBuffer@28 | |
| 87 | D3DXCreatePRTEngine@20 | |
| 88 | D3DXCreatePatchMesh@28 | |
| 89 | D3DXCreatePolygon@20 | |
| 90 | D3DXCreateRenderToEnvMap@28 | |
| 91 | D3DXCreateRenderToSurface@28 | |
| 92 | D3DXCreateSPMesh@20 | |
| 93 | D3DXCreateSkinInfo@16 | |
| 94 | D3DXCreateSkinInfoFVF@16 | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 96 | D3DXCreateSphere@24 | |
| 97 | D3DXCreateSprite@8 | |
| 98 | D3DXCreateTeapot@12 | |
| 99 | D3DXCreateTextA@32 | |
| 100 | D3DXCreateTextW@32 | |
| 101 | D3DXCreateTexture@32 | |
| 102 | D3DXCreateTextureFromFileA@12 | |
| 103 | D3DXCreateTextureFromFileExA@56 | |
| 104 | D3DXCreateTextureFromFileExW@56 | |
| 105 | D3DXCreateTextureFromFileInMemory@16 | |
| 106 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 107 | D3DXCreateTextureFromFileW@12 | |
| 108 | D3DXCreateTextureFromResourceA@16 | |
| 109 | D3DXCreateTextureFromResourceExA@60 | |
| 110 | D3DXCreateTextureFromResourceExW@60 | |
| 111 | D3DXCreateTextureFromResourceW@16 | |
| 112 | D3DXCreateTextureGutterHelper@20 | |
| 113 | D3DXCreateTextureShader@8 | |
| 114 | D3DXCreateTorus@28 | |
| 115 | D3DXCreateVolumeTexture@36 | |
| 116 | D3DXCreateVolumeTextureFromFileA@12 | |
| 117 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 118 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 121 | D3DXCreateVolumeTextureFromFileW@12 | |
| 122 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 123 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 124 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 126 | D3DXDebugMute@4 | |
| 127 | D3DXDeclaratorFromFVF@8 | |
| 128 | D3DXDisassembleEffect@12 | |
| 129 | D3DXDisassembleShader@16 | |
| 130 | D3DXFVFFromDeclarator@8 | |
| 131 | D3DXFileCreate@4 | |
| 132 | D3DXFillCubeTexture@12 | |
| 133 | D3DXFillCubeTextureTX@8 | |
| 134 | D3DXFillTexture@12 | |
| 135 | D3DXFillTextureTX@8 | |
| 136 | D3DXFillVolumeTexture@12 | |
| 137 | D3DXFillVolumeTextureTX@8 | |
| 138 | D3DXFilterTexture@16 | |
| 139 | D3DXFindShaderComment@16 | |
| 140 | D3DXFloat16To32Array@12 | |
| 141 | D3DXFloat32To16Array@12 | |
| 142 | D3DXFrameAppendChild@8 | |
| 143 | D3DXFrameCalculateBoundingSphere@12 | |
| 144 | D3DXFrameDestroy@8 | |
| 145 | D3DXFrameFind@8 | |
| 146 | D3DXFrameNumNamedMatrices@4 | |
| 147 | D3DXFrameRegisterNamedMatrices@8 | |
| 148 | D3DXFresnelTerm@8 | |
| 149 | D3DXGatherFragments@28 | |
| 150 | D3DXGatherFragmentsFromFileA@24 | |
| 151 | D3DXGatherFragmentsFromFileW@24 | |
| 152 | D3DXGatherFragmentsFromResourceA@28 | |
| 153 | D3DXGatherFragmentsFromResourceW@28 | |
| 154 | D3DXGenerateOutputDecl@8 | |
| 155 | D3DXGeneratePMesh@28 | |
| 156 | D3DXGetDeclLength@4 | |
| 157 | D3DXGetDeclVertexSize@8 | |
| 158 | D3DXGetDriverLevel@4 | |
| 159 | D3DXGetFVFVertexSize@4 | |
| 160 | D3DXGetImageInfoFromFileA@8 | |
| 161 | D3DXGetImageInfoFromFileInMemory@12 | |
| 162 | D3DXGetImageInfoFromFileW@8 | |
| 163 | D3DXGetImageInfoFromResourceA@12 | |
| 164 | D3DXGetImageInfoFromResourceW@12 | |
| 165 | D3DXGetPixelShaderProfile@4 | |
| 166 | D3DXGetShaderConstantTable@8 | |
| 167 | D3DXGetShaderInputSemantics@12 | |
| 168 | D3DXGetShaderOutputSemantics@12 | |
| 169 | D3DXGetShaderSamplers@12 | |
| 170 | D3DXGetShaderSize@4 | |
| 171 | D3DXGetShaderVersion@4 | |
| 172 | D3DXGetVertexShaderProfile@4 | |
| 173 | D3DXIntersect@40 | |
| 174 | D3DXIntersectSubset@44 | |
| 175 | D3DXIntersectTri@32 | |
| 176 | D3DXLoadMeshFromXA@32 | |
| 177 | D3DXLoadMeshFromXInMemory@36 | |
| 178 | D3DXLoadMeshFromXResource@40 | |
| 179 | D3DXLoadMeshFromXW@32 | |
| 180 | D3DXLoadMeshFromXof@32 | |
| 181 | D3DXLoadMeshHierarchyFromXA@28 | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 183 | D3DXLoadMeshHierarchyFromXW@28 | |
| 184 | D3DXLoadPRTBufferFromFileA@8 | |
| 185 | D3DXLoadPRTBufferFromFileW@8 | |
| 186 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 187 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 188 | D3DXLoadPatchMeshFromXof@28 | |
| 189 | D3DXLoadSkinMeshFromXof@36 | |
| 190 | D3DXLoadSurfaceFromFileA@32 | |
| 191 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 192 | D3DXLoadSurfaceFromFileW@32 | |
| 193 | D3DXLoadSurfaceFromMemory@40 | |
| 194 | D3DXLoadSurfaceFromResourceA@36 | |
| 195 | D3DXLoadSurfaceFromResourceW@36 | |
| 196 | D3DXLoadSurfaceFromSurface@32 | |
| 197 | D3DXLoadVolumeFromFileA@32 | |
| 198 | D3DXLoadVolumeFromFileInMemory@36 | |
| 199 | D3DXLoadVolumeFromFileW@32 | |
| 200 | D3DXLoadVolumeFromMemory@44 | |
| 201 | D3DXLoadVolumeFromResourceA@36 | |
| 202 | D3DXLoadVolumeFromResourceW@36 | |
| 203 | D3DXLoadVolumeFromVolume@32 | |
| 204 | D3DXMatrixAffineTransformation2D@20 | |
| 205 | D3DXMatrixAffineTransformation@20 | |
| 206 | D3DXMatrixDecompose@16 | |
| 207 | D3DXMatrixDeterminant@4 | |
| 208 | D3DXMatrixInverse@12 | |
| 209 | D3DXMatrixLookAtLH@16 | |
| 210 | D3DXMatrixLookAtRH@16 | |
| 211 | D3DXMatrixMultiply@12 | |
| 212 | D3DXMatrixMultiplyTranspose@12 | |
| 213 | D3DXMatrixOrthoLH@20 | |
| 214 | D3DXMatrixOrthoOffCenterLH@28 | |
| 215 | D3DXMatrixOrthoOffCenterRH@28 | |
| 216 | D3DXMatrixOrthoRH@20 | |
| 217 | D3DXMatrixPerspectiveFovLH@20 | |
| 218 | D3DXMatrixPerspectiveFovRH@20 | |
| 219 | D3DXMatrixPerspectiveLH@20 | |
| 220 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 221 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 222 | D3DXMatrixPerspectiveRH@20 | |
| 223 | D3DXMatrixReflect@8 | |
| 224 | D3DXMatrixRotationAxis@12 | |
| 225 | D3DXMatrixRotationQuaternion@8 | |
| 226 | D3DXMatrixRotationX@8 | |
| 227 | D3DXMatrixRotationY@8 | |
| 228 | D3DXMatrixRotationYawPitchRoll@16 | |
| 229 | D3DXMatrixRotationZ@8 | |
| 230 | D3DXMatrixScaling@16 | |
| 231 | D3DXMatrixShadow@12 | |
| 232 | D3DXMatrixTransformation2D@28 | |
| 233 | D3DXMatrixTransformation@28 | |
| 234 | D3DXMatrixTranslation@16 | |
| 235 | D3DXMatrixTranspose@8 | |
| 236 | D3DXOptimizeFaces@20 | |
| 237 | D3DXOptimizeVertices@20 | |
| 238 | D3DXPlaneFromPointNormal@12 | |
| 239 | D3DXPlaneFromPoints@16 | |
| 240 | D3DXPlaneIntersectLine@16 | |
| 241 | D3DXPlaneNormalize@8 | |
| 242 | D3DXPlaneTransform@12 | |
| 243 | D3DXPlaneTransformArray@24 | |
| 244 | D3DXPreprocessShader@24 | |
| 245 | D3DXPreprocessShaderFromFileA@20 | |
| 246 | D3DXPreprocessShaderFromFileW@20 | |
| 247 | D3DXPreprocessShaderFromResourceA@24 | |
| 248 | D3DXPreprocessShaderFromResourceW@24 | |
| 249 | D3DXQuaternionBaryCentric@24 | |
| 250 | D3DXQuaternionExp@8 | |
| 251 | D3DXQuaternionInverse@8 | |
| 252 | D3DXQuaternionLn@8 | |
| 253 | D3DXQuaternionMultiply@12 | |
| 254 | D3DXQuaternionNormalize@8 | |
| 255 | D3DXQuaternionRotationAxis@12 | |
| 256 | D3DXQuaternionRotationMatrix@8 | |
| 257 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 258 | D3DXQuaternionSlerp@16 | |
| 259 | D3DXQuaternionSquad@24 | |
| 260 | D3DXQuaternionSquadSetup@28 | |
| 261 | D3DXQuaternionToAxisAngle@12 | |
| 262 | D3DXRectPatchSize@12 | |
| 263 | D3DXSHAdd@16 | |
| 264 | D3DXSHDot@12 | |
| 265 | D3DXSHEvalConeLight@36 | |
| 266 | D3DXSHEvalDirection@12 | |
| 267 | D3DXSHEvalDirectionalLight@32 | |
| 268 | D3DXSHEvalHemisphereLight@52 | |
| 269 | D3DXSHEvalSphericalLight@36 | |
| 270 | D3DXSHMultiply2@12 | |
| 271 | D3DXSHMultiply3@12 | |
| 272 | D3DXSHMultiply4@12 | |
| 273 | D3DXSHMultiply5@12 | |
| 274 | D3DXSHMultiply6@12 | |
| 275 | D3DXSHPRTCompSplitMeshSC@64 | |
| 276 | D3DXSHPRTCompSuperCluster@24 | |
| 277 | D3DXSHProjectCubeMap@20 | |
| 278 | D3DXSHRotate@16 | |
| 279 | D3DXSHRotateZ@16 | |
| 280 | D3DXSHScale@16 | |
| 281 | D3DXSaveMeshHierarchyToFileA@20 | |
| 282 | D3DXSaveMeshHierarchyToFileW@20 | |
| 283 | D3DXSaveMeshToXA@28 | |
| 284 | D3DXSaveMeshToXW@28 | |
| 285 | D3DXSavePRTBufferToFileA@8 | |
| 286 | D3DXSavePRTBufferToFileW@8 | |
| 287 | D3DXSavePRTCompBufferToFileA@8 | |
| 288 | D3DXSavePRTCompBufferToFileW@8 | |
| 289 | D3DXSaveSurfaceToFileA@20 | |
| 290 | D3DXSaveSurfaceToFileInMemory@20 | |
| 291 | D3DXSaveSurfaceToFileW@20 | |
| 292 | D3DXSaveTextureToFileA@16 | |
| 293 | D3DXSaveTextureToFileInMemory@16 | |
| 294 | D3DXSaveTextureToFileW@16 | |
| 295 | D3DXSaveVolumeToFileA@20 | |
| 296 | D3DXSaveVolumeToFileInMemory@20 | |
| 297 | D3DXSaveVolumeToFileW@20 | |
| 298 | D3DXSimplifyMesh@28 | |
| 299 | D3DXSphereBoundProbe@16 | |
| 300 | D3DXSplitMesh@36 | |
| 301 | D3DXTessellateNPatches@24 | |
| 302 | D3DXTessellateRectPatch@20 | |
| 303 | D3DXTessellateTriPatch@20 | |
| 304 | D3DXTriPatchSize@12 | |
| 305 | D3DXUVAtlasCreate@76 | |
| 306 | D3DXUVAtlasPack@44 | |
| 307 | D3DXUVAtlasPartition@68 | |
| 308 | D3DXValidMesh@12 | |
| 309 | D3DXValidPatchMesh@16 | |
| 310 | D3DXVec2BaryCentric@24 | |
| 311 | D3DXVec2CatmullRom@24 | |
| 312 | D3DXVec2Hermite@24 | |
| 313 | D3DXVec2Normalize@8 | |
| 314 | D3DXVec2Transform@12 | |
| 315 | D3DXVec2TransformArray@24 | |
| 316 | D3DXVec2TransformCoord@12 | |
| 317 | D3DXVec2TransformCoordArray@24 | |
| 318 | D3DXVec2TransformNormal@12 | |
| 319 | D3DXVec2TransformNormalArray@24 | |
| 320 | D3DXVec3BaryCentric@24 | |
| 321 | D3DXVec3CatmullRom@24 | |
| 322 | D3DXVec3Hermite@24 | |
| 323 | D3DXVec3Normalize@8 | |
| 324 | D3DXVec3Project@24 | |
| 325 | D3DXVec3ProjectArray@36 | |
| 326 | D3DXVec3Transform@12 | |
| 327 | D3DXVec3TransformArray@24 | |
| 328 | D3DXVec3TransformCoord@12 | |
| 329 | D3DXVec3TransformCoordArray@24 | |
| 330 | D3DXVec3TransformNormal@12 | |
| 331 | D3DXVec3TransformNormalArray@24 | |
| 332 | D3DXVec3Unproject@24 | |
| 333 | D3DXVec3UnprojectArray@36 | |
| 334 | D3DXVec4BaryCentric@24 | |
| 335 | D3DXVec4CatmullRom@24 | |
| 336 | D3DXVec4Cross@16 | |
| 337 | D3DXVec4Hermite@24 | |
| 338 | D3DXVec4Normalize@8 | |
| 339 | D3DXVec4Transform@12 | |
| 340 | D3DXVec4TransformArray@24 | |
| 341 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_35.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateKeyframedAnimationSet@32 | |
| 78 | D3DXCreateLine@8 | |
| 79 | D3DXCreateMatrixStack@8 | |
| 80 | D3DXCreateMesh@24 | |
| 81 | D3DXCreateMeshFVF@24 | |
| 82 | D3DXCreateNPatchMesh@8 | |
| 83 | D3DXCreatePMeshFromStream@28 | |
| 84 | D3DXCreatePRTBuffer@16 | |
| 85 | D3DXCreatePRTBufferTex@20 | |
| 86 | D3DXCreatePRTCompBuffer@28 | |
| 87 | D3DXCreatePRTEngine@20 | |
| 88 | D3DXCreatePatchMesh@28 | |
| 89 | D3DXCreatePolygon@20 | |
| 90 | D3DXCreateRenderToEnvMap@28 | |
| 91 | D3DXCreateRenderToSurface@28 | |
| 92 | D3DXCreateSPMesh@20 | |
| 93 | D3DXCreateSkinInfo@16 | |
| 94 | D3DXCreateSkinInfoFVF@16 | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 96 | D3DXCreateSphere@24 | |
| 97 | D3DXCreateSprite@8 | |
| 98 | D3DXCreateTeapot@12 | |
| 99 | D3DXCreateTextA@32 | |
| 100 | D3DXCreateTextW@32 | |
| 101 | D3DXCreateTexture@32 | |
| 102 | D3DXCreateTextureFromFileA@12 | |
| 103 | D3DXCreateTextureFromFileExA@56 | |
| 104 | D3DXCreateTextureFromFileExW@56 | |
| 105 | D3DXCreateTextureFromFileInMemory@16 | |
| 106 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 107 | D3DXCreateTextureFromFileW@12 | |
| 108 | D3DXCreateTextureFromResourceA@16 | |
| 109 | D3DXCreateTextureFromResourceExA@60 | |
| 110 | D3DXCreateTextureFromResourceExW@60 | |
| 111 | D3DXCreateTextureFromResourceW@16 | |
| 112 | D3DXCreateTextureGutterHelper@20 | |
| 113 | D3DXCreateTextureShader@8 | |
| 114 | D3DXCreateTorus@28 | |
| 115 | D3DXCreateVolumeTexture@36 | |
| 116 | D3DXCreateVolumeTextureFromFileA@12 | |
| 117 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 118 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 121 | D3DXCreateVolumeTextureFromFileW@12 | |
| 122 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 123 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 124 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 126 | D3DXDebugMute@4 | |
| 127 | D3DXDeclaratorFromFVF@8 | |
| 128 | D3DXDisassembleEffect@12 | |
| 129 | D3DXDisassembleShader@16 | |
| 130 | D3DXFVFFromDeclarator@8 | |
| 131 | D3DXFileCreate@4 | |
| 132 | D3DXFillCubeTexture@12 | |
| 133 | D3DXFillCubeTextureTX@8 | |
| 134 | D3DXFillTexture@12 | |
| 135 | D3DXFillTextureTX@8 | |
| 136 | D3DXFillVolumeTexture@12 | |
| 137 | D3DXFillVolumeTextureTX@8 | |
| 138 | D3DXFilterTexture@16 | |
| 139 | D3DXFindShaderComment@16 | |
| 140 | D3DXFloat16To32Array@12 | |
| 141 | D3DXFloat32To16Array@12 | |
| 142 | D3DXFrameAppendChild@8 | |
| 143 | D3DXFrameCalculateBoundingSphere@12 | |
| 144 | D3DXFrameDestroy@8 | |
| 145 | D3DXFrameFind@8 | |
| 146 | D3DXFrameNumNamedMatrices@4 | |
| 147 | D3DXFrameRegisterNamedMatrices@8 | |
| 148 | D3DXFresnelTerm@8 | |
| 149 | D3DXGatherFragments@28 | |
| 150 | D3DXGatherFragmentsFromFileA@24 | |
| 151 | D3DXGatherFragmentsFromFileW@24 | |
| 152 | D3DXGatherFragmentsFromResourceA@28 | |
| 153 | D3DXGatherFragmentsFromResourceW@28 | |
| 154 | D3DXGenerateOutputDecl@8 | |
| 155 | D3DXGeneratePMesh@28 | |
| 156 | D3DXGetDeclLength@4 | |
| 157 | D3DXGetDeclVertexSize@8 | |
| 158 | D3DXGetDriverLevel@4 | |
| 159 | D3DXGetFVFVertexSize@4 | |
| 160 | D3DXGetImageInfoFromFileA@8 | |
| 161 | D3DXGetImageInfoFromFileInMemory@12 | |
| 162 | D3DXGetImageInfoFromFileW@8 | |
| 163 | D3DXGetImageInfoFromResourceA@12 | |
| 164 | D3DXGetImageInfoFromResourceW@12 | |
| 165 | D3DXGetPixelShaderProfile@4 | |
| 166 | D3DXGetShaderConstantTable@8 | |
| 167 | D3DXGetShaderInputSemantics@12 | |
| 168 | D3DXGetShaderOutputSemantics@12 | |
| 169 | D3DXGetShaderSamplers@12 | |
| 170 | D3DXGetShaderSize@4 | |
| 171 | D3DXGetShaderVersion@4 | |
| 172 | D3DXGetVertexShaderProfile@4 | |
| 173 | D3DXIntersect@40 | |
| 174 | D3DXIntersectSubset@44 | |
| 175 | D3DXIntersectTri@32 | |
| 176 | D3DXLoadMeshFromXA@32 | |
| 177 | D3DXLoadMeshFromXInMemory@36 | |
| 178 | D3DXLoadMeshFromXResource@40 | |
| 179 | D3DXLoadMeshFromXW@32 | |
| 180 | D3DXLoadMeshFromXof@32 | |
| 181 | D3DXLoadMeshHierarchyFromXA@28 | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 183 | D3DXLoadMeshHierarchyFromXW@28 | |
| 184 | D3DXLoadPRTBufferFromFileA@8 | |
| 185 | D3DXLoadPRTBufferFromFileW@8 | |
| 186 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 187 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 188 | D3DXLoadPatchMeshFromXof@28 | |
| 189 | D3DXLoadSkinMeshFromXof@36 | |
| 190 | D3DXLoadSurfaceFromFileA@32 | |
| 191 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 192 | D3DXLoadSurfaceFromFileW@32 | |
| 193 | D3DXLoadSurfaceFromMemory@40 | |
| 194 | D3DXLoadSurfaceFromResourceA@36 | |
| 195 | D3DXLoadSurfaceFromResourceW@36 | |
| 196 | D3DXLoadSurfaceFromSurface@32 | |
| 197 | D3DXLoadVolumeFromFileA@32 | |
| 198 | D3DXLoadVolumeFromFileInMemory@36 | |
| 199 | D3DXLoadVolumeFromFileW@32 | |
| 200 | D3DXLoadVolumeFromMemory@44 | |
| 201 | D3DXLoadVolumeFromResourceA@36 | |
| 202 | D3DXLoadVolumeFromResourceW@36 | |
| 203 | D3DXLoadVolumeFromVolume@32 | |
| 204 | D3DXMatrixAffineTransformation2D@20 | |
| 205 | D3DXMatrixAffineTransformation@20 | |
| 206 | D3DXMatrixDecompose@16 | |
| 207 | D3DXMatrixDeterminant@4 | |
| 208 | D3DXMatrixInverse@12 | |
| 209 | D3DXMatrixLookAtLH@16 | |
| 210 | D3DXMatrixLookAtRH@16 | |
| 211 | D3DXMatrixMultiply@12 | |
| 212 | D3DXMatrixMultiplyTranspose@12 | |
| 213 | D3DXMatrixOrthoLH@20 | |
| 214 | D3DXMatrixOrthoOffCenterLH@28 | |
| 215 | D3DXMatrixOrthoOffCenterRH@28 | |
| 216 | D3DXMatrixOrthoRH@20 | |
| 217 | D3DXMatrixPerspectiveFovLH@20 | |
| 218 | D3DXMatrixPerspectiveFovRH@20 | |
| 219 | D3DXMatrixPerspectiveLH@20 | |
| 220 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 221 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 222 | D3DXMatrixPerspectiveRH@20 | |
| 223 | D3DXMatrixReflect@8 | |
| 224 | D3DXMatrixRotationAxis@12 | |
| 225 | D3DXMatrixRotationQuaternion@8 | |
| 226 | D3DXMatrixRotationX@8 | |
| 227 | D3DXMatrixRotationY@8 | |
| 228 | D3DXMatrixRotationYawPitchRoll@16 | |
| 229 | D3DXMatrixRotationZ@8 | |
| 230 | D3DXMatrixScaling@16 | |
| 231 | D3DXMatrixShadow@12 | |
| 232 | D3DXMatrixTransformation2D@28 | |
| 233 | D3DXMatrixTransformation@28 | |
| 234 | D3DXMatrixTranslation@16 | |
| 235 | D3DXMatrixTranspose@8 | |
| 236 | D3DXOptimizeFaces@20 | |
| 237 | D3DXOptimizeVertices@20 | |
| 238 | D3DXPlaneFromPointNormal@12 | |
| 239 | D3DXPlaneFromPoints@16 | |
| 240 | D3DXPlaneIntersectLine@16 | |
| 241 | D3DXPlaneNormalize@8 | |
| 242 | D3DXPlaneTransform@12 | |
| 243 | D3DXPlaneTransformArray@24 | |
| 244 | D3DXPreprocessShader@24 | |
| 245 | D3DXPreprocessShaderFromFileA@20 | |
| 246 | D3DXPreprocessShaderFromFileW@20 | |
| 247 | D3DXPreprocessShaderFromResourceA@24 | |
| 248 | D3DXPreprocessShaderFromResourceW@24 | |
| 249 | D3DXQuaternionBaryCentric@24 | |
| 250 | D3DXQuaternionExp@8 | |
| 251 | D3DXQuaternionInverse@8 | |
| 252 | D3DXQuaternionLn@8 | |
| 253 | D3DXQuaternionMultiply@12 | |
| 254 | D3DXQuaternionNormalize@8 | |
| 255 | D3DXQuaternionRotationAxis@12 | |
| 256 | D3DXQuaternionRotationMatrix@8 | |
| 257 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 258 | D3DXQuaternionSlerp@16 | |
| 259 | D3DXQuaternionSquad@24 | |
| 260 | D3DXQuaternionSquadSetup@28 | |
| 261 | D3DXQuaternionToAxisAngle@12 | |
| 262 | D3DXRectPatchSize@12 | |
| 263 | D3DXSHAdd@16 | |
| 264 | D3DXSHDot@12 | |
| 265 | D3DXSHEvalConeLight@36 | |
| 266 | D3DXSHEvalDirection@12 | |
| 267 | D3DXSHEvalDirectionalLight@32 | |
| 268 | D3DXSHEvalHemisphereLight@52 | |
| 269 | D3DXSHEvalSphericalLight@36 | |
| 270 | D3DXSHMultiply2@12 | |
| 271 | D3DXSHMultiply3@12 | |
| 272 | D3DXSHMultiply4@12 | |
| 273 | D3DXSHMultiply5@12 | |
| 274 | D3DXSHMultiply6@12 | |
| 275 | D3DXSHPRTCompSplitMeshSC@64 | |
| 276 | D3DXSHPRTCompSuperCluster@24 | |
| 277 | D3DXSHProjectCubeMap@20 | |
| 278 | D3DXSHRotate@16 | |
| 279 | D3DXSHRotateZ@16 | |
| 280 | D3DXSHScale@16 | |
| 281 | D3DXSaveMeshHierarchyToFileA@20 | |
| 282 | D3DXSaveMeshHierarchyToFileW@20 | |
| 283 | D3DXSaveMeshToXA@28 | |
| 284 | D3DXSaveMeshToXW@28 | |
| 285 | D3DXSavePRTBufferToFileA@8 | |
| 286 | D3DXSavePRTBufferToFileW@8 | |
| 287 | D3DXSavePRTCompBufferToFileA@8 | |
| 288 | D3DXSavePRTCompBufferToFileW@8 | |
| 289 | D3DXSaveSurfaceToFileA@20 | |
| 290 | D3DXSaveSurfaceToFileInMemory@20 | |
| 291 | D3DXSaveSurfaceToFileW@20 | |
| 292 | D3DXSaveTextureToFileA@16 | |
| 293 | D3DXSaveTextureToFileInMemory@16 | |
| 294 | D3DXSaveTextureToFileW@16 | |
| 295 | D3DXSaveVolumeToFileA@20 | |
| 296 | D3DXSaveVolumeToFileInMemory@20 | |
| 297 | D3DXSaveVolumeToFileW@20 | |
| 298 | D3DXSimplifyMesh@28 | |
| 299 | D3DXSphereBoundProbe@16 | |
| 300 | D3DXSplitMesh@36 | |
| 301 | D3DXTessellateNPatches@24 | |
| 302 | D3DXTessellateRectPatch@20 | |
| 303 | D3DXTessellateTriPatch@20 | |
| 304 | D3DXTriPatchSize@12 | |
| 305 | D3DXUVAtlasCreate@76 | |
| 306 | D3DXUVAtlasPack@44 | |
| 307 | D3DXUVAtlasPartition@68 | |
| 308 | D3DXValidMesh@12 | |
| 309 | D3DXValidPatchMesh@16 | |
| 310 | D3DXVec2BaryCentric@24 | |
| 311 | D3DXVec2CatmullRom@24 | |
| 312 | D3DXVec2Hermite@24 | |
| 313 | D3DXVec2Normalize@8 | |
| 314 | D3DXVec2Transform@12 | |
| 315 | D3DXVec2TransformArray@24 | |
| 316 | D3DXVec2TransformCoord@12 | |
| 317 | D3DXVec2TransformCoordArray@24 | |
| 318 | D3DXVec2TransformNormal@12 | |
| 319 | D3DXVec2TransformNormalArray@24 | |
| 320 | D3DXVec3BaryCentric@24 | |
| 321 | D3DXVec3CatmullRom@24 | |
| 322 | D3DXVec3Hermite@24 | |
| 323 | D3DXVec3Normalize@8 | |
| 324 | D3DXVec3Project@24 | |
| 325 | D3DXVec3ProjectArray@36 | |
| 326 | D3DXVec3Transform@12 | |
| 327 | D3DXVec3TransformArray@24 | |
| 328 | D3DXVec3TransformCoord@12 | |
| 329 | D3DXVec3TransformCoordArray@24 | |
| 330 | D3DXVec3TransformNormal@12 | |
| 331 | D3DXVec3TransformNormalArray@24 | |
| 332 | D3DXVec3Unproject@24 | |
| 333 | D3DXVec3UnprojectArray@36 | |
| 334 | D3DXVec4BaryCentric@24 | |
| 335 | D3DXVec4CatmullRom@24 | |
| 336 | D3DXVec4Cross@16 | |
| 337 | D3DXVec4Hermite@24 | |
| 338 | D3DXVec4Normalize@8 | |
| 339 | D3DXVec4Transform@12 | |
| 340 | D3DXVec4TransformArray@24 | |
| 341 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_36.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateFragmentLinkerEx@16 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderConstantTableEx@12 | |
| 169 | D3DXGetShaderInputSemantics@12 | |
| 170 | D3DXGetShaderOutputSemantics@12 | |
| 171 | D3DXGetShaderSamplers@12 | |
| 172 | D3DXGetShaderSize@4 | |
| 173 | D3DXGetShaderVersion@4 | |
| 174 | D3DXGetVertexShaderProfile@4 | |
| 175 | D3DXIntersect@40 | |
| 176 | D3DXIntersectSubset@44 | |
| 177 | D3DXIntersectTri@32 | |
| 178 | D3DXLoadMeshFromXA@32 | |
| 179 | D3DXLoadMeshFromXInMemory@36 | |
| 180 | D3DXLoadMeshFromXResource@40 | |
| 181 | D3DXLoadMeshFromXW@32 | |
| 182 | D3DXLoadMeshFromXof@32 | |
| 183 | D3DXLoadMeshHierarchyFromXA@28 | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 185 | D3DXLoadMeshHierarchyFromXW@28 | |
| 186 | D3DXLoadPRTBufferFromFileA@8 | |
| 187 | D3DXLoadPRTBufferFromFileW@8 | |
| 188 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 190 | D3DXLoadPatchMeshFromXof@28 | |
| 191 | D3DXLoadSkinMeshFromXof@36 | |
| 192 | D3DXLoadSurfaceFromFileA@32 | |
| 193 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 194 | D3DXLoadSurfaceFromFileW@32 | |
| 195 | D3DXLoadSurfaceFromMemory@40 | |
| 196 | D3DXLoadSurfaceFromResourceA@36 | |
| 197 | D3DXLoadSurfaceFromResourceW@36 | |
| 198 | D3DXLoadSurfaceFromSurface@32 | |
| 199 | D3DXLoadVolumeFromFileA@32 | |
| 200 | D3DXLoadVolumeFromFileInMemory@36 | |
| 201 | D3DXLoadVolumeFromFileW@32 | |
| 202 | D3DXLoadVolumeFromMemory@44 | |
| 203 | D3DXLoadVolumeFromResourceA@36 | |
| 204 | D3DXLoadVolumeFromResourceW@36 | |
| 205 | D3DXLoadVolumeFromVolume@32 | |
| 206 | D3DXMatrixAffineTransformation2D@20 | |
| 207 | D3DXMatrixAffineTransformation@20 | |
| 208 | D3DXMatrixDecompose@16 | |
| 209 | D3DXMatrixDeterminant@4 | |
| 210 | D3DXMatrixInverse@12 | |
| 211 | D3DXMatrixLookAtLH@16 | |
| 212 | D3DXMatrixLookAtRH@16 | |
| 213 | D3DXMatrixMultiply@12 | |
| 214 | D3DXMatrixMultiplyTranspose@12 | |
| 215 | D3DXMatrixOrthoLH@20 | |
| 216 | D3DXMatrixOrthoOffCenterLH@28 | |
| 217 | D3DXMatrixOrthoOffCenterRH@28 | |
| 218 | D3DXMatrixOrthoRH@20 | |
| 219 | D3DXMatrixPerspectiveFovLH@20 | |
| 220 | D3DXMatrixPerspectiveFovRH@20 | |
| 221 | D3DXMatrixPerspectiveLH@20 | |
| 222 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 223 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 224 | D3DXMatrixPerspectiveRH@20 | |
| 225 | D3DXMatrixReflect@8 | |
| 226 | D3DXMatrixRotationAxis@12 | |
| 227 | D3DXMatrixRotationQuaternion@8 | |
| 228 | D3DXMatrixRotationX@8 | |
| 229 | D3DXMatrixRotationY@8 | |
| 230 | D3DXMatrixRotationYawPitchRoll@16 | |
| 231 | D3DXMatrixRotationZ@8 | |
| 232 | D3DXMatrixScaling@16 | |
| 233 | D3DXMatrixShadow@12 | |
| 234 | D3DXMatrixTransformation2D@28 | |
| 235 | D3DXMatrixTransformation@28 | |
| 236 | D3DXMatrixTranslation@16 | |
| 237 | D3DXMatrixTranspose@8 | |
| 238 | D3DXOptimizeFaces@20 | |
| 239 | D3DXOptimizeVertices@20 | |
| 240 | D3DXPlaneFromPointNormal@12 | |
| 241 | D3DXPlaneFromPoints@16 | |
| 242 | D3DXPlaneIntersectLine@16 | |
| 243 | D3DXPlaneNormalize@8 | |
| 244 | D3DXPlaneTransform@12 | |
| 245 | D3DXPlaneTransformArray@24 | |
| 246 | D3DXPreprocessShader@24 | |
| 247 | D3DXPreprocessShaderFromFileA@20 | |
| 248 | D3DXPreprocessShaderFromFileW@20 | |
| 249 | D3DXPreprocessShaderFromResourceA@24 | |
| 250 | D3DXPreprocessShaderFromResourceW@24 | |
| 251 | D3DXQuaternionBaryCentric@24 | |
| 252 | D3DXQuaternionExp@8 | |
| 253 | D3DXQuaternionInverse@8 | |
| 254 | D3DXQuaternionLn@8 | |
| 255 | D3DXQuaternionMultiply@12 | |
| 256 | D3DXQuaternionNormalize@8 | |
| 257 | D3DXQuaternionRotationAxis@12 | |
| 258 | D3DXQuaternionRotationMatrix@8 | |
| 259 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 260 | D3DXQuaternionSlerp@16 | |
| 261 | D3DXQuaternionSquad@24 | |
| 262 | D3DXQuaternionSquadSetup@28 | |
| 263 | D3DXQuaternionToAxisAngle@12 | |
| 264 | D3DXRectPatchSize@12 | |
| 265 | D3DXSHAdd@16 | |
| 266 | D3DXSHDot@12 | |
| 267 | D3DXSHEvalConeLight@36 | |
| 268 | D3DXSHEvalDirection@12 | |
| 269 | D3DXSHEvalDirectionalLight@32 | |
| 270 | D3DXSHEvalHemisphereLight@52 | |
| 271 | D3DXSHEvalSphericalLight@36 | |
| 272 | D3DXSHMultiply2@12 | |
| 273 | D3DXSHMultiply3@12 | |
| 274 | D3DXSHMultiply4@12 | |
| 275 | D3DXSHMultiply5@12 | |
| 276 | D3DXSHMultiply6@12 | |
| 277 | D3DXSHPRTCompSplitMeshSC@64 | |
| 278 | D3DXSHPRTCompSuperCluster@24 | |
| 279 | D3DXSHProjectCubeMap@20 | |
| 280 | D3DXSHRotate@16 | |
| 281 | D3DXSHRotateZ@16 | |
| 282 | D3DXSHScale@16 | |
| 283 | D3DXSaveMeshHierarchyToFileA@20 | |
| 284 | D3DXSaveMeshHierarchyToFileW@20 | |
| 285 | D3DXSaveMeshToXA@28 | |
| 286 | D3DXSaveMeshToXW@28 | |
| 287 | D3DXSavePRTBufferToFileA@8 | |
| 288 | D3DXSavePRTBufferToFileW@8 | |
| 289 | D3DXSavePRTCompBufferToFileA@8 | |
| 290 | D3DXSavePRTCompBufferToFileW@8 | |
| 291 | D3DXSaveSurfaceToFileA@20 | |
| 292 | D3DXSaveSurfaceToFileInMemory@20 | |
| 293 | D3DXSaveSurfaceToFileW@20 | |
| 294 | D3DXSaveTextureToFileA@16 | |
| 295 | D3DXSaveTextureToFileInMemory@16 | |
| 296 | D3DXSaveTextureToFileW@16 | |
| 297 | D3DXSaveVolumeToFileA@20 | |
| 298 | D3DXSaveVolumeToFileInMemory@20 | |
| 299 | D3DXSaveVolumeToFileW@20 | |
| 300 | D3DXSimplifyMesh@28 | |
| 301 | D3DXSphereBoundProbe@16 | |
| 302 | D3DXSplitMesh@36 | |
| 303 | D3DXTessellateNPatches@24 | |
| 304 | D3DXTessellateRectPatch@20 | |
| 305 | D3DXTessellateTriPatch@20 | |
| 306 | D3DXTriPatchSize@12 | |
| 307 | D3DXUVAtlasCreate@76 | |
| 308 | D3DXUVAtlasPack@44 | |
| 309 | D3DXUVAtlasPartition@68 | |
| 310 | D3DXValidMesh@12 | |
| 311 | D3DXValidPatchMesh@16 | |
| 312 | D3DXVec2BaryCentric@24 | |
| 313 | D3DXVec2CatmullRom@24 | |
| 314 | D3DXVec2Hermite@24 | |
| 315 | D3DXVec2Normalize@8 | |
| 316 | D3DXVec2Transform@12 | |
| 317 | D3DXVec2TransformArray@24 | |
| 318 | D3DXVec2TransformCoord@12 | |
| 319 | D3DXVec2TransformCoordArray@24 | |
| 320 | D3DXVec2TransformNormal@12 | |
| 321 | D3DXVec2TransformNormalArray@24 | |
| 322 | D3DXVec3BaryCentric@24 | |
| 323 | D3DXVec3CatmullRom@24 | |
| 324 | D3DXVec3Hermite@24 | |
| 325 | D3DXVec3Normalize@8 | |
| 326 | D3DXVec3Project@24 | |
| 327 | D3DXVec3ProjectArray@36 | |
| 328 | D3DXVec3Transform@12 | |
| 329 | D3DXVec3TransformArray@24 | |
| 330 | D3DXVec3TransformCoord@12 | |
| 331 | D3DXVec3TransformCoordArray@24 | |
| 332 | D3DXVec3TransformNormal@12 | |
| 333 | D3DXVec3TransformNormalArray@24 | |
| 334 | D3DXVec3Unproject@24 | |
| 335 | D3DXVec3UnprojectArray@36 | |
| 336 | D3DXVec4BaryCentric@24 | |
| 337 | D3DXVec4CatmullRom@24 | |
| 338 | D3DXVec4Cross@16 | |
| 339 | D3DXVec4Hermite@24 | |
| 340 | D3DXVec4Normalize@8 | |
| 341 | D3DXVec4Transform@12 | |
| 342 | D3DXVec4TransformArray@24 | |
| 343 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_37.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateFragmentLinkerEx@16 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderConstantTableEx@12 | |
| 169 | D3DXGetShaderInputSemantics@12 | |
| 170 | D3DXGetShaderOutputSemantics@12 | |
| 171 | D3DXGetShaderSamplers@12 | |
| 172 | D3DXGetShaderSize@4 | |
| 173 | D3DXGetShaderVersion@4 | |
| 174 | D3DXGetVertexShaderProfile@4 | |
| 175 | D3DXIntersect@40 | |
| 176 | D3DXIntersectSubset@44 | |
| 177 | D3DXIntersectTri@32 | |
| 178 | D3DXLoadMeshFromXA@32 | |
| 179 | D3DXLoadMeshFromXInMemory@36 | |
| 180 | D3DXLoadMeshFromXResource@40 | |
| 181 | D3DXLoadMeshFromXW@32 | |
| 182 | D3DXLoadMeshFromXof@32 | |
| 183 | D3DXLoadMeshHierarchyFromXA@28 | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 185 | D3DXLoadMeshHierarchyFromXW@28 | |
| 186 | D3DXLoadPRTBufferFromFileA@8 | |
| 187 | D3DXLoadPRTBufferFromFileW@8 | |
| 188 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 190 | D3DXLoadPatchMeshFromXof@28 | |
| 191 | D3DXLoadSkinMeshFromXof@36 | |
| 192 | D3DXLoadSurfaceFromFileA@32 | |
| 193 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 194 | D3DXLoadSurfaceFromFileW@32 | |
| 195 | D3DXLoadSurfaceFromMemory@40 | |
| 196 | D3DXLoadSurfaceFromResourceA@36 | |
| 197 | D3DXLoadSurfaceFromResourceW@36 | |
| 198 | D3DXLoadSurfaceFromSurface@32 | |
| 199 | D3DXLoadVolumeFromFileA@32 | |
| 200 | D3DXLoadVolumeFromFileInMemory@36 | |
| 201 | D3DXLoadVolumeFromFileW@32 | |
| 202 | D3DXLoadVolumeFromMemory@44 | |
| 203 | D3DXLoadVolumeFromResourceA@36 | |
| 204 | D3DXLoadVolumeFromResourceW@36 | |
| 205 | D3DXLoadVolumeFromVolume@32 | |
| 206 | D3DXMatrixAffineTransformation2D@20 | |
| 207 | D3DXMatrixAffineTransformation@20 | |
| 208 | D3DXMatrixDecompose@16 | |
| 209 | D3DXMatrixDeterminant@4 | |
| 210 | D3DXMatrixInverse@12 | |
| 211 | D3DXMatrixLookAtLH@16 | |
| 212 | D3DXMatrixLookAtRH@16 | |
| 213 | D3DXMatrixMultiply@12 | |
| 214 | D3DXMatrixMultiplyTranspose@12 | |
| 215 | D3DXMatrixOrthoLH@20 | |
| 216 | D3DXMatrixOrthoOffCenterLH@28 | |
| 217 | D3DXMatrixOrthoOffCenterRH@28 | |
| 218 | D3DXMatrixOrthoRH@20 | |
| 219 | D3DXMatrixPerspectiveFovLH@20 | |
| 220 | D3DXMatrixPerspectiveFovRH@20 | |
| 221 | D3DXMatrixPerspectiveLH@20 | |
| 222 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 223 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 224 | D3DXMatrixPerspectiveRH@20 | |
| 225 | D3DXMatrixReflect@8 | |
| 226 | D3DXMatrixRotationAxis@12 | |
| 227 | D3DXMatrixRotationQuaternion@8 | |
| 228 | D3DXMatrixRotationX@8 | |
| 229 | D3DXMatrixRotationY@8 | |
| 230 | D3DXMatrixRotationYawPitchRoll@16 | |
| 231 | D3DXMatrixRotationZ@8 | |
| 232 | D3DXMatrixScaling@16 | |
| 233 | D3DXMatrixShadow@12 | |
| 234 | D3DXMatrixTransformation2D@28 | |
| 235 | D3DXMatrixTransformation@28 | |
| 236 | D3DXMatrixTranslation@16 | |
| 237 | D3DXMatrixTranspose@8 | |
| 238 | D3DXOptimizeFaces@20 | |
| 239 | D3DXOptimizeVertices@20 | |
| 240 | D3DXPlaneFromPointNormal@12 | |
| 241 | D3DXPlaneFromPoints@16 | |
| 242 | D3DXPlaneIntersectLine@16 | |
| 243 | D3DXPlaneNormalize@8 | |
| 244 | D3DXPlaneTransform@12 | |
| 245 | D3DXPlaneTransformArray@24 | |
| 246 | D3DXPreprocessShader@24 | |
| 247 | D3DXPreprocessShaderFromFileA@20 | |
| 248 | D3DXPreprocessShaderFromFileW@20 | |
| 249 | D3DXPreprocessShaderFromResourceA@24 | |
| 250 | D3DXPreprocessShaderFromResourceW@24 | |
| 251 | D3DXQuaternionBaryCentric@24 | |
| 252 | D3DXQuaternionExp@8 | |
| 253 | D3DXQuaternionInverse@8 | |
| 254 | D3DXQuaternionLn@8 | |
| 255 | D3DXQuaternionMultiply@12 | |
| 256 | D3DXQuaternionNormalize@8 | |
| 257 | D3DXQuaternionRotationAxis@12 | |
| 258 | D3DXQuaternionRotationMatrix@8 | |
| 259 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 260 | D3DXQuaternionSlerp@16 | |
| 261 | D3DXQuaternionSquad@24 | |
| 262 | D3DXQuaternionSquadSetup@28 | |
| 263 | D3DXQuaternionToAxisAngle@12 | |
| 264 | D3DXRectPatchSize@12 | |
| 265 | D3DXSHAdd@16 | |
| 266 | D3DXSHDot@12 | |
| 267 | D3DXSHEvalConeLight@36 | |
| 268 | D3DXSHEvalDirection@12 | |
| 269 | D3DXSHEvalDirectionalLight@32 | |
| 270 | D3DXSHEvalHemisphereLight@52 | |
| 271 | D3DXSHEvalSphericalLight@36 | |
| 272 | D3DXSHMultiply2@12 | |
| 273 | D3DXSHMultiply3@12 | |
| 274 | D3DXSHMultiply4@12 | |
| 275 | D3DXSHMultiply5@12 | |
| 276 | D3DXSHMultiply6@12 | |
| 277 | D3DXSHPRTCompSplitMeshSC@64 | |
| 278 | D3DXSHPRTCompSuperCluster@24 | |
| 279 | D3DXSHProjectCubeMap@20 | |
| 280 | D3DXSHRotate@16 | |
| 281 | D3DXSHRotateZ@16 | |
| 282 | D3DXSHScale@16 | |
| 283 | D3DXSaveMeshHierarchyToFileA@20 | |
| 284 | D3DXSaveMeshHierarchyToFileW@20 | |
| 285 | D3DXSaveMeshToXA@28 | |
| 286 | D3DXSaveMeshToXW@28 | |
| 287 | D3DXSavePRTBufferToFileA@8 | |
| 288 | D3DXSavePRTBufferToFileW@8 | |
| 289 | D3DXSavePRTCompBufferToFileA@8 | |
| 290 | D3DXSavePRTCompBufferToFileW@8 | |
| 291 | D3DXSaveSurfaceToFileA@20 | |
| 292 | D3DXSaveSurfaceToFileInMemory@20 | |
| 293 | D3DXSaveSurfaceToFileW@20 | |
| 294 | D3DXSaveTextureToFileA@16 | |
| 295 | D3DXSaveTextureToFileInMemory@16 | |
| 296 | D3DXSaveTextureToFileW@16 | |
| 297 | D3DXSaveVolumeToFileA@20 | |
| 298 | D3DXSaveVolumeToFileInMemory@20 | |
| 299 | D3DXSaveVolumeToFileW@20 | |
| 300 | D3DXSimplifyMesh@28 | |
| 301 | D3DXSphereBoundProbe@16 | |
| 302 | D3DXSplitMesh@36 | |
| 303 | D3DXTessellateNPatches@24 | |
| 304 | D3DXTessellateRectPatch@20 | |
| 305 | D3DXTessellateTriPatch@20 | |
| 306 | D3DXTriPatchSize@12 | |
| 307 | D3DXUVAtlasCreate@76 | |
| 308 | D3DXUVAtlasPack@44 | |
| 309 | D3DXUVAtlasPartition@68 | |
| 310 | D3DXValidMesh@12 | |
| 311 | D3DXValidPatchMesh@16 | |
| 312 | D3DXVec2BaryCentric@24 | |
| 313 | D3DXVec2CatmullRom@24 | |
| 314 | D3DXVec2Hermite@24 | |
| 315 | D3DXVec2Normalize@8 | |
| 316 | D3DXVec2Transform@12 | |
| 317 | D3DXVec2TransformArray@24 | |
| 318 | D3DXVec2TransformCoord@12 | |
| 319 | D3DXVec2TransformCoordArray@24 | |
| 320 | D3DXVec2TransformNormal@12 | |
| 321 | D3DXVec2TransformNormalArray@24 | |
| 322 | D3DXVec3BaryCentric@24 | |
| 323 | D3DXVec3CatmullRom@24 | |
| 324 | D3DXVec3Hermite@24 | |
| 325 | D3DXVec3Normalize@8 | |
| 326 | D3DXVec3Project@24 | |
| 327 | D3DXVec3ProjectArray@36 | |
| 328 | D3DXVec3Transform@12 | |
| 329 | D3DXVec3TransformArray@24 | |
| 330 | D3DXVec3TransformCoord@12 | |
| 331 | D3DXVec3TransformCoordArray@24 | |
| 332 | D3DXVec3TransformNormal@12 | |
| 333 | D3DXVec3TransformNormalArray@24 | |
| 334 | D3DXVec3Unproject@24 | |
| 335 | D3DXVec3UnprojectArray@36 | |
| 336 | D3DXVec4BaryCentric@24 | |
| 337 | D3DXVec4CatmullRom@24 | |
| 338 | D3DXVec4Cross@16 | |
| 339 | D3DXVec4Hermite@24 | |
| 340 | D3DXVec4Normalize@8 | |
| 341 | D3DXVec4Transform@12 | |
| 342 | D3DXVec4TransformArray@24 | |
| 343 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_38.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateFragmentLinkerEx@16 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderConstantTableEx@12 | |
| 169 | D3DXGetShaderInputSemantics@12 | |
| 170 | D3DXGetShaderOutputSemantics@12 | |
| 171 | D3DXGetShaderSamplers@12 | |
| 172 | D3DXGetShaderSize@4 | |
| 173 | D3DXGetShaderVersion@4 | |
| 174 | D3DXGetVertexShaderProfile@4 | |
| 175 | D3DXIntersect@40 | |
| 176 | D3DXIntersectSubset@44 | |
| 177 | D3DXIntersectTri@32 | |
| 178 | D3DXLoadMeshFromXA@32 | |
| 179 | D3DXLoadMeshFromXInMemory@36 | |
| 180 | D3DXLoadMeshFromXResource@40 | |
| 181 | D3DXLoadMeshFromXW@32 | |
| 182 | D3DXLoadMeshFromXof@32 | |
| 183 | D3DXLoadMeshHierarchyFromXA@28 | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 185 | D3DXLoadMeshHierarchyFromXW@28 | |
| 186 | D3DXLoadPRTBufferFromFileA@8 | |
| 187 | D3DXLoadPRTBufferFromFileW@8 | |
| 188 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 190 | D3DXLoadPatchMeshFromXof@28 | |
| 191 | D3DXLoadSkinMeshFromXof@36 | |
| 192 | D3DXLoadSurfaceFromFileA@32 | |
| 193 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 194 | D3DXLoadSurfaceFromFileW@32 | |
| 195 | D3DXLoadSurfaceFromMemory@40 | |
| 196 | D3DXLoadSurfaceFromResourceA@36 | |
| 197 | D3DXLoadSurfaceFromResourceW@36 | |
| 198 | D3DXLoadSurfaceFromSurface@32 | |
| 199 | D3DXLoadVolumeFromFileA@32 | |
| 200 | D3DXLoadVolumeFromFileInMemory@36 | |
| 201 | D3DXLoadVolumeFromFileW@32 | |
| 202 | D3DXLoadVolumeFromMemory@44 | |
| 203 | D3DXLoadVolumeFromResourceA@36 | |
| 204 | D3DXLoadVolumeFromResourceW@36 | |
| 205 | D3DXLoadVolumeFromVolume@32 | |
| 206 | D3DXMatrixAffineTransformation2D@20 | |
| 207 | D3DXMatrixAffineTransformation@20 | |
| 208 | D3DXMatrixDecompose@16 | |
| 209 | D3DXMatrixDeterminant@4 | |
| 210 | D3DXMatrixInverse@12 | |
| 211 | D3DXMatrixLookAtLH@16 | |
| 212 | D3DXMatrixLookAtRH@16 | |
| 213 | D3DXMatrixMultiply@12 | |
| 214 | D3DXMatrixMultiplyTranspose@12 | |
| 215 | D3DXMatrixOrthoLH@20 | |
| 216 | D3DXMatrixOrthoOffCenterLH@28 | |
| 217 | D3DXMatrixOrthoOffCenterRH@28 | |
| 218 | D3DXMatrixOrthoRH@20 | |
| 219 | D3DXMatrixPerspectiveFovLH@20 | |
| 220 | D3DXMatrixPerspectiveFovRH@20 | |
| 221 | D3DXMatrixPerspectiveLH@20 | |
| 222 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 223 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 224 | D3DXMatrixPerspectiveRH@20 | |
| 225 | D3DXMatrixReflect@8 | |
| 226 | D3DXMatrixRotationAxis@12 | |
| 227 | D3DXMatrixRotationQuaternion@8 | |
| 228 | D3DXMatrixRotationX@8 | |
| 229 | D3DXMatrixRotationY@8 | |
| 230 | D3DXMatrixRotationYawPitchRoll@16 | |
| 231 | D3DXMatrixRotationZ@8 | |
| 232 | D3DXMatrixScaling@16 | |
| 233 | D3DXMatrixShadow@12 | |
| 234 | D3DXMatrixTransformation2D@28 | |
| 235 | D3DXMatrixTransformation@28 | |
| 236 | D3DXMatrixTranslation@16 | |
| 237 | D3DXMatrixTranspose@8 | |
| 238 | D3DXOptimizeFaces@20 | |
| 239 | D3DXOptimizeVertices@20 | |
| 240 | D3DXPlaneFromPointNormal@12 | |
| 241 | D3DXPlaneFromPoints@16 | |
| 242 | D3DXPlaneIntersectLine@16 | |
| 243 | D3DXPlaneNormalize@8 | |
| 244 | D3DXPlaneTransform@12 | |
| 245 | D3DXPlaneTransformArray@24 | |
| 246 | D3DXPreprocessShader@24 | |
| 247 | D3DXPreprocessShaderFromFileA@20 | |
| 248 | D3DXPreprocessShaderFromFileW@20 | |
| 249 | D3DXPreprocessShaderFromResourceA@24 | |
| 250 | D3DXPreprocessShaderFromResourceW@24 | |
| 251 | D3DXQuaternionBaryCentric@24 | |
| 252 | D3DXQuaternionExp@8 | |
| 253 | D3DXQuaternionInverse@8 | |
| 254 | D3DXQuaternionLn@8 | |
| 255 | D3DXQuaternionMultiply@12 | |
| 256 | D3DXQuaternionNormalize@8 | |
| 257 | D3DXQuaternionRotationAxis@12 | |
| 258 | D3DXQuaternionRotationMatrix@8 | |
| 259 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 260 | D3DXQuaternionSlerp@16 | |
| 261 | D3DXQuaternionSquad@24 | |
| 262 | D3DXQuaternionSquadSetup@28 | |
| 263 | D3DXQuaternionToAxisAngle@12 | |
| 264 | D3DXRectPatchSize@12 | |
| 265 | D3DXSHAdd@16 | |
| 266 | D3DXSHDot@12 | |
| 267 | D3DXSHEvalConeLight@36 | |
| 268 | D3DXSHEvalDirection@12 | |
| 269 | D3DXSHEvalDirectionalLight@32 | |
| 270 | D3DXSHEvalHemisphereLight@52 | |
| 271 | D3DXSHEvalSphericalLight@36 | |
| 272 | D3DXSHMultiply2@12 | |
| 273 | D3DXSHMultiply3@12 | |
| 274 | D3DXSHMultiply4@12 | |
| 275 | D3DXSHMultiply5@12 | |
| 276 | D3DXSHMultiply6@12 | |
| 277 | D3DXSHPRTCompSplitMeshSC@64 | |
| 278 | D3DXSHPRTCompSuperCluster@24 | |
| 279 | D3DXSHProjectCubeMap@20 | |
| 280 | D3DXSHRotate@16 | |
| 281 | D3DXSHRotateZ@16 | |
| 282 | D3DXSHScale@16 | |
| 283 | D3DXSaveMeshHierarchyToFileA@20 | |
| 284 | D3DXSaveMeshHierarchyToFileW@20 | |
| 285 | D3DXSaveMeshToXA@28 | |
| 286 | D3DXSaveMeshToXW@28 | |
| 287 | D3DXSavePRTBufferToFileA@8 | |
| 288 | D3DXSavePRTBufferToFileW@8 | |
| 289 | D3DXSavePRTCompBufferToFileA@8 | |
| 290 | D3DXSavePRTCompBufferToFileW@8 | |
| 291 | D3DXSaveSurfaceToFileA@20 | |
| 292 | D3DXSaveSurfaceToFileInMemory@20 | |
| 293 | D3DXSaveSurfaceToFileW@20 | |
| 294 | D3DXSaveTextureToFileA@16 | |
| 295 | D3DXSaveTextureToFileInMemory@16 | |
| 296 | D3DXSaveTextureToFileW@16 | |
| 297 | D3DXSaveVolumeToFileA@20 | |
| 298 | D3DXSaveVolumeToFileInMemory@20 | |
| 299 | D3DXSaveVolumeToFileW@20 | |
| 300 | D3DXSimplifyMesh@28 | |
| 301 | D3DXSphereBoundProbe@16 | |
| 302 | D3DXSplitMesh@36 | |
| 303 | D3DXTessellateNPatches@24 | |
| 304 | D3DXTessellateRectPatch@20 | |
| 305 | D3DXTessellateTriPatch@20 | |
| 306 | D3DXTriPatchSize@12 | |
| 307 | D3DXUVAtlasCreate@76 | |
| 308 | D3DXUVAtlasPack@44 | |
| 309 | D3DXUVAtlasPartition@68 | |
| 310 | D3DXValidMesh@12 | |
| 311 | D3DXValidPatchMesh@16 | |
| 312 | D3DXVec2BaryCentric@24 | |
| 313 | D3DXVec2CatmullRom@24 | |
| 314 | D3DXVec2Hermite@24 | |
| 315 | D3DXVec2Normalize@8 | |
| 316 | D3DXVec2Transform@12 | |
| 317 | D3DXVec2TransformArray@24 | |
| 318 | D3DXVec2TransformCoord@12 | |
| 319 | D3DXVec2TransformCoordArray@24 | |
| 320 | D3DXVec2TransformNormal@12 | |
| 321 | D3DXVec2TransformNormalArray@24 | |
| 322 | D3DXVec3BaryCentric@24 | |
| 323 | D3DXVec3CatmullRom@24 | |
| 324 | D3DXVec3Hermite@24 | |
| 325 | D3DXVec3Normalize@8 | |
| 326 | D3DXVec3Project@24 | |
| 327 | D3DXVec3ProjectArray@36 | |
| 328 | D3DXVec3Transform@12 | |
| 329 | D3DXVec3TransformArray@24 | |
| 330 | D3DXVec3TransformCoord@12 | |
| 331 | D3DXVec3TransformCoordArray@24 | |
| 332 | D3DXVec3TransformNormal@12 | |
| 333 | D3DXVec3TransformNormalArray@24 | |
| 334 | D3DXVec3Unproject@24 | |
| 335 | D3DXVec3UnprojectArray@36 | |
| 336 | D3DXVec4BaryCentric@24 | |
| 337 | D3DXVec4CatmullRom@24 | |
| 338 | D3DXVec4Cross@16 | |
| 339 | D3DXVec4Hermite@24 | |
| 340 | D3DXVec4Normalize@8 | |
| 341 | D3DXVec4Transform@12 | |
| 342 | D3DXVec4TransformArray@24 | |
| 343 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_39.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateFragmentLinkerEx@16 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderConstantTableEx@12 | |
| 169 | D3DXGetShaderInputSemantics@12 | |
| 170 | D3DXGetShaderOutputSemantics@12 | |
| 171 | D3DXGetShaderSamplers@12 | |
| 172 | D3DXGetShaderSize@4 | |
| 173 | D3DXGetShaderVersion@4 | |
| 174 | D3DXGetVertexShaderProfile@4 | |
| 175 | D3DXIntersect@40 | |
| 176 | D3DXIntersectSubset@44 | |
| 177 | D3DXIntersectTri@32 | |
| 178 | D3DXLoadMeshFromXA@32 | |
| 179 | D3DXLoadMeshFromXInMemory@36 | |
| 180 | D3DXLoadMeshFromXResource@40 | |
| 181 | D3DXLoadMeshFromXW@32 | |
| 182 | D3DXLoadMeshFromXof@32 | |
| 183 | D3DXLoadMeshHierarchyFromXA@28 | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 185 | D3DXLoadMeshHierarchyFromXW@28 | |
| 186 | D3DXLoadPRTBufferFromFileA@8 | |
| 187 | D3DXLoadPRTBufferFromFileW@8 | |
| 188 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 190 | D3DXLoadPatchMeshFromXof@28 | |
| 191 | D3DXLoadSkinMeshFromXof@36 | |
| 192 | D3DXLoadSurfaceFromFileA@32 | |
| 193 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 194 | D3DXLoadSurfaceFromFileW@32 | |
| 195 | D3DXLoadSurfaceFromMemory@40 | |
| 196 | D3DXLoadSurfaceFromResourceA@36 | |
| 197 | D3DXLoadSurfaceFromResourceW@36 | |
| 198 | D3DXLoadSurfaceFromSurface@32 | |
| 199 | D3DXLoadVolumeFromFileA@32 | |
| 200 | D3DXLoadVolumeFromFileInMemory@36 | |
| 201 | D3DXLoadVolumeFromFileW@32 | |
| 202 | D3DXLoadVolumeFromMemory@44 | |
| 203 | D3DXLoadVolumeFromResourceA@36 | |
| 204 | D3DXLoadVolumeFromResourceW@36 | |
| 205 | D3DXLoadVolumeFromVolume@32 | |
| 206 | D3DXMatrixAffineTransformation2D@20 | |
| 207 | D3DXMatrixAffineTransformation@20 | |
| 208 | D3DXMatrixDecompose@16 | |
| 209 | D3DXMatrixDeterminant@4 | |
| 210 | D3DXMatrixInverse@12 | |
| 211 | D3DXMatrixLookAtLH@16 | |
| 212 | D3DXMatrixLookAtRH@16 | |
| 213 | D3DXMatrixMultiply@12 | |
| 214 | D3DXMatrixMultiplyTranspose@12 | |
| 215 | D3DXMatrixOrthoLH@20 | |
| 216 | D3DXMatrixOrthoOffCenterLH@28 | |
| 217 | D3DXMatrixOrthoOffCenterRH@28 | |
| 218 | D3DXMatrixOrthoRH@20 | |
| 219 | D3DXMatrixPerspectiveFovLH@20 | |
| 220 | D3DXMatrixPerspectiveFovRH@20 | |
| 221 | D3DXMatrixPerspectiveLH@20 | |
| 222 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 223 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 224 | D3DXMatrixPerspectiveRH@20 | |
| 225 | D3DXMatrixReflect@8 | |
| 226 | D3DXMatrixRotationAxis@12 | |
| 227 | D3DXMatrixRotationQuaternion@8 | |
| 228 | D3DXMatrixRotationX@8 | |
| 229 | D3DXMatrixRotationY@8 | |
| 230 | D3DXMatrixRotationYawPitchRoll@16 | |
| 231 | D3DXMatrixRotationZ@8 | |
| 232 | D3DXMatrixScaling@16 | |
| 233 | D3DXMatrixShadow@12 | |
| 234 | D3DXMatrixTransformation2D@28 | |
| 235 | D3DXMatrixTransformation@28 | |
| 236 | D3DXMatrixTranslation@16 | |
| 237 | D3DXMatrixTranspose@8 | |
| 238 | D3DXOptimizeFaces@20 | |
| 239 | D3DXOptimizeVertices@20 | |
| 240 | D3DXPlaneFromPointNormal@12 | |
| 241 | D3DXPlaneFromPoints@16 | |
| 242 | D3DXPlaneIntersectLine@16 | |
| 243 | D3DXPlaneNormalize@8 | |
| 244 | D3DXPlaneTransform@12 | |
| 245 | D3DXPlaneTransformArray@24 | |
| 246 | D3DXPreprocessShader@24 | |
| 247 | D3DXPreprocessShaderFromFileA@20 | |
| 248 | D3DXPreprocessShaderFromFileW@20 | |
| 249 | D3DXPreprocessShaderFromResourceA@24 | |
| 250 | D3DXPreprocessShaderFromResourceW@24 | |
| 251 | D3DXQuaternionBaryCentric@24 | |
| 252 | D3DXQuaternionExp@8 | |
| 253 | D3DXQuaternionInverse@8 | |
| 254 | D3DXQuaternionLn@8 | |
| 255 | D3DXQuaternionMultiply@12 | |
| 256 | D3DXQuaternionNormalize@8 | |
| 257 | D3DXQuaternionRotationAxis@12 | |
| 258 | D3DXQuaternionRotationMatrix@8 | |
| 259 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 260 | D3DXQuaternionSlerp@16 | |
| 261 | D3DXQuaternionSquad@24 | |
| 262 | D3DXQuaternionSquadSetup@28 | |
| 263 | D3DXQuaternionToAxisAngle@12 | |
| 264 | D3DXRectPatchSize@12 | |
| 265 | D3DXSHAdd@16 | |
| 266 | D3DXSHDot@12 | |
| 267 | D3DXSHEvalConeLight@36 | |
| 268 | D3DXSHEvalDirection@12 | |
| 269 | D3DXSHEvalDirectionalLight@32 | |
| 270 | D3DXSHEvalHemisphereLight@52 | |
| 271 | D3DXSHEvalSphericalLight@36 | |
| 272 | D3DXSHMultiply2@12 | |
| 273 | D3DXSHMultiply3@12 | |
| 274 | D3DXSHMultiply4@12 | |
| 275 | D3DXSHMultiply5@12 | |
| 276 | D3DXSHMultiply6@12 | |
| 277 | D3DXSHPRTCompSplitMeshSC@64 | |
| 278 | D3DXSHPRTCompSuperCluster@24 | |
| 279 | D3DXSHProjectCubeMap@20 | |
| 280 | D3DXSHRotate@16 | |
| 281 | D3DXSHRotateZ@16 | |
| 282 | D3DXSHScale@16 | |
| 283 | D3DXSaveMeshHierarchyToFileA@20 | |
| 284 | D3DXSaveMeshHierarchyToFileW@20 | |
| 285 | D3DXSaveMeshToXA@28 | |
| 286 | D3DXSaveMeshToXW@28 | |
| 287 | D3DXSavePRTBufferToFileA@8 | |
| 288 | D3DXSavePRTBufferToFileW@8 | |
| 289 | D3DXSavePRTCompBufferToFileA@8 | |
| 290 | D3DXSavePRTCompBufferToFileW@8 | |
| 291 | D3DXSaveSurfaceToFileA@20 | |
| 292 | D3DXSaveSurfaceToFileInMemory@20 | |
| 293 | D3DXSaveSurfaceToFileW@20 | |
| 294 | D3DXSaveTextureToFileA@16 | |
| 295 | D3DXSaveTextureToFileInMemory@16 | |
| 296 | D3DXSaveTextureToFileW@16 | |
| 297 | D3DXSaveVolumeToFileA@20 | |
| 298 | D3DXSaveVolumeToFileInMemory@20 | |
| 299 | D3DXSaveVolumeToFileW@20 | |
| 300 | D3DXSimplifyMesh@28 | |
| 301 | D3DXSphereBoundProbe@16 | |
| 302 | D3DXSplitMesh@36 | |
| 303 | D3DXTessellateNPatches@24 | |
| 304 | D3DXTessellateRectPatch@20 | |
| 305 | D3DXTessellateTriPatch@20 | |
| 306 | D3DXTriPatchSize@12 | |
| 307 | D3DXUVAtlasCreate@76 | |
| 308 | D3DXUVAtlasPack@44 | |
| 309 | D3DXUVAtlasPartition@68 | |
| 310 | D3DXValidMesh@12 | |
| 311 | D3DXValidPatchMesh@16 | |
| 312 | D3DXVec2BaryCentric@24 | |
| 313 | D3DXVec2CatmullRom@24 | |
| 314 | D3DXVec2Hermite@24 | |
| 315 | D3DXVec2Normalize@8 | |
| 316 | D3DXVec2Transform@12 | |
| 317 | D3DXVec2TransformArray@24 | |
| 318 | D3DXVec2TransformCoord@12 | |
| 319 | D3DXVec2TransformCoordArray@24 | |
| 320 | D3DXVec2TransformNormal@12 | |
| 321 | D3DXVec2TransformNormalArray@24 | |
| 322 | D3DXVec3BaryCentric@24 | |
| 323 | D3DXVec3CatmullRom@24 | |
| 324 | D3DXVec3Hermite@24 | |
| 325 | D3DXVec3Normalize@8 | |
| 326 | D3DXVec3Project@24 | |
| 327 | D3DXVec3ProjectArray@36 | |
| 328 | D3DXVec3Transform@12 | |
| 329 | D3DXVec3TransformArray@24 | |
| 330 | D3DXVec3TransformCoord@12 | |
| 331 | D3DXVec3TransformCoordArray@24 | |
| 332 | D3DXVec3TransformNormal@12 | |
| 333 | D3DXVec3TransformNormalArray@24 | |
| 334 | D3DXVec3Unproject@24 | |
| 335 | D3DXVec3UnprojectArray@36 | |
| 336 | D3DXVec4BaryCentric@24 | |
| 337 | D3DXVec4CatmullRom@24 | |
| 338 | D3DXVec4Cross@16 | |
| 339 | D3DXVec4Hermite@24 | |
| 340 | D3DXVec4Normalize@8 | |
| 341 | D3DXVec4Transform@12 | |
| 342 | D3DXVec4TransformArray@24 | |
| 343 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_40.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateFragmentLinkerEx@16 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderConstantTableEx@12 | |
| 169 | D3DXGetShaderInputSemantics@12 | |
| 170 | D3DXGetShaderOutputSemantics@12 | |
| 171 | D3DXGetShaderSamplers@12 | |
| 172 | D3DXGetShaderSize@4 | |
| 173 | D3DXGetShaderVersion@4 | |
| 174 | D3DXGetVertexShaderProfile@4 | |
| 175 | D3DXIntersect@40 | |
| 176 | D3DXIntersectSubset@44 | |
| 177 | D3DXIntersectTri@32 | |
| 178 | D3DXLoadMeshFromXA@32 | |
| 179 | D3DXLoadMeshFromXInMemory@36 | |
| 180 | D3DXLoadMeshFromXResource@40 | |
| 181 | D3DXLoadMeshFromXW@32 | |
| 182 | D3DXLoadMeshFromXof@32 | |
| 183 | D3DXLoadMeshHierarchyFromXA@28 | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 185 | D3DXLoadMeshHierarchyFromXW@28 | |
| 186 | D3DXLoadPRTBufferFromFileA@8 | |
| 187 | D3DXLoadPRTBufferFromFileW@8 | |
| 188 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 190 | D3DXLoadPatchMeshFromXof@28 | |
| 191 | D3DXLoadSkinMeshFromXof@36 | |
| 192 | D3DXLoadSurfaceFromFileA@32 | |
| 193 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 194 | D3DXLoadSurfaceFromFileW@32 | |
| 195 | D3DXLoadSurfaceFromMemory@40 | |
| 196 | D3DXLoadSurfaceFromResourceA@36 | |
| 197 | D3DXLoadSurfaceFromResourceW@36 | |
| 198 | D3DXLoadSurfaceFromSurface@32 | |
| 199 | D3DXLoadVolumeFromFileA@32 | |
| 200 | D3DXLoadVolumeFromFileInMemory@36 | |
| 201 | D3DXLoadVolumeFromFileW@32 | |
| 202 | D3DXLoadVolumeFromMemory@44 | |
| 203 | D3DXLoadVolumeFromResourceA@36 | |
| 204 | D3DXLoadVolumeFromResourceW@36 | |
| 205 | D3DXLoadVolumeFromVolume@32 | |
| 206 | D3DXMatrixAffineTransformation2D@20 | |
| 207 | D3DXMatrixAffineTransformation@20 | |
| 208 | D3DXMatrixDecompose@16 | |
| 209 | D3DXMatrixDeterminant@4 | |
| 210 | D3DXMatrixInverse@12 | |
| 211 | D3DXMatrixLookAtLH@16 | |
| 212 | D3DXMatrixLookAtRH@16 | |
| 213 | D3DXMatrixMultiply@12 | |
| 214 | D3DXMatrixMultiplyTranspose@12 | |
| 215 | D3DXMatrixOrthoLH@20 | |
| 216 | D3DXMatrixOrthoOffCenterLH@28 | |
| 217 | D3DXMatrixOrthoOffCenterRH@28 | |
| 218 | D3DXMatrixOrthoRH@20 | |
| 219 | D3DXMatrixPerspectiveFovLH@20 | |
| 220 | D3DXMatrixPerspectiveFovRH@20 | |
| 221 | D3DXMatrixPerspectiveLH@20 | |
| 222 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 223 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 224 | D3DXMatrixPerspectiveRH@20 | |
| 225 | D3DXMatrixReflect@8 | |
| 226 | D3DXMatrixRotationAxis@12 | |
| 227 | D3DXMatrixRotationQuaternion@8 | |
| 228 | D3DXMatrixRotationX@8 | |
| 229 | D3DXMatrixRotationY@8 | |
| 230 | D3DXMatrixRotationYawPitchRoll@16 | |
| 231 | D3DXMatrixRotationZ@8 | |
| 232 | D3DXMatrixScaling@16 | |
| 233 | D3DXMatrixShadow@12 | |
| 234 | D3DXMatrixTransformation2D@28 | |
| 235 | D3DXMatrixTransformation@28 | |
| 236 | D3DXMatrixTranslation@16 | |
| 237 | D3DXMatrixTranspose@8 | |
| 238 | D3DXOptimizeFaces@20 | |
| 239 | D3DXOptimizeVertices@20 | |
| 240 | D3DXPlaneFromPointNormal@12 | |
| 241 | D3DXPlaneFromPoints@16 | |
| 242 | D3DXPlaneIntersectLine@16 | |
| 243 | D3DXPlaneNormalize@8 | |
| 244 | D3DXPlaneTransform@12 | |
| 245 | D3DXPlaneTransformArray@24 | |
| 246 | D3DXPreprocessShader@24 | |
| 247 | D3DXPreprocessShaderFromFileA@20 | |
| 248 | D3DXPreprocessShaderFromFileW@20 | |
| 249 | D3DXPreprocessShaderFromResourceA@24 | |
| 250 | D3DXPreprocessShaderFromResourceW@24 | |
| 251 | D3DXQuaternionBaryCentric@24 | |
| 252 | D3DXQuaternionExp@8 | |
| 253 | D3DXQuaternionInverse@8 | |
| 254 | D3DXQuaternionLn@8 | |
| 255 | D3DXQuaternionMultiply@12 | |
| 256 | D3DXQuaternionNormalize@8 | |
| 257 | D3DXQuaternionRotationAxis@12 | |
| 258 | D3DXQuaternionRotationMatrix@8 | |
| 259 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 260 | D3DXQuaternionSlerp@16 | |
| 261 | D3DXQuaternionSquad@24 | |
| 262 | D3DXQuaternionSquadSetup@28 | |
| 263 | D3DXQuaternionToAxisAngle@12 | |
| 264 | D3DXRectPatchSize@12 | |
| 265 | D3DXSHAdd@16 | |
| 266 | D3DXSHDot@12 | |
| 267 | D3DXSHEvalConeLight@36 | |
| 268 | D3DXSHEvalDirection@12 | |
| 269 | D3DXSHEvalDirectionalLight@32 | |
| 270 | D3DXSHEvalHemisphereLight@52 | |
| 271 | D3DXSHEvalSphericalLight@36 | |
| 272 | D3DXSHMultiply2@12 | |
| 273 | D3DXSHMultiply3@12 | |
| 274 | D3DXSHMultiply4@12 | |
| 275 | D3DXSHMultiply5@12 | |
| 276 | D3DXSHMultiply6@12 | |
| 277 | D3DXSHPRTCompSplitMeshSC@64 | |
| 278 | D3DXSHPRTCompSuperCluster@24 | |
| 279 | D3DXSHProjectCubeMap@20 | |
| 280 | D3DXSHRotate@16 | |
| 281 | D3DXSHRotateZ@16 | |
| 282 | D3DXSHScale@16 | |
| 283 | D3DXSaveMeshHierarchyToFileA@20 | |
| 284 | D3DXSaveMeshHierarchyToFileW@20 | |
| 285 | D3DXSaveMeshToXA@28 | |
| 286 | D3DXSaveMeshToXW@28 | |
| 287 | D3DXSavePRTBufferToFileA@8 | |
| 288 | D3DXSavePRTBufferToFileW@8 | |
| 289 | D3DXSavePRTCompBufferToFileA@8 | |
| 290 | D3DXSavePRTCompBufferToFileW@8 | |
| 291 | D3DXSaveSurfaceToFileA@20 | |
| 292 | D3DXSaveSurfaceToFileInMemory@20 | |
| 293 | D3DXSaveSurfaceToFileW@20 | |
| 294 | D3DXSaveTextureToFileA@16 | |
| 295 | D3DXSaveTextureToFileInMemory@16 | |
| 296 | D3DXSaveTextureToFileW@16 | |
| 297 | D3DXSaveVolumeToFileA@20 | |
| 298 | D3DXSaveVolumeToFileInMemory@20 | |
| 299 | D3DXSaveVolumeToFileW@20 | |
| 300 | D3DXSimplifyMesh@28 | |
| 301 | D3DXSphereBoundProbe@16 | |
| 302 | D3DXSplitMesh@36 | |
| 303 | D3DXTessellateNPatches@24 | |
| 304 | D3DXTessellateRectPatch@20 | |
| 305 | D3DXTessellateTriPatch@20 | |
| 306 | D3DXTriPatchSize@12 | |
| 307 | D3DXUVAtlasCreate@76 | |
| 308 | D3DXUVAtlasPack@44 | |
| 309 | D3DXUVAtlasPartition@68 | |
| 310 | D3DXValidMesh@12 | |
| 311 | D3DXValidPatchMesh@16 | |
| 312 | D3DXVec2BaryCentric@24 | |
| 313 | D3DXVec2CatmullRom@24 | |
| 314 | D3DXVec2Hermite@24 | |
| 315 | D3DXVec2Normalize@8 | |
| 316 | D3DXVec2Transform@12 | |
| 317 | D3DXVec2TransformArray@24 | |
| 318 | D3DXVec2TransformCoord@12 | |
| 319 | D3DXVec2TransformCoordArray@24 | |
| 320 | D3DXVec2TransformNormal@12 | |
| 321 | D3DXVec2TransformNormalArray@24 | |
| 322 | D3DXVec3BaryCentric@24 | |
| 323 | D3DXVec3CatmullRom@24 | |
| 324 | D3DXVec3Hermite@24 | |
| 325 | D3DXVec3Normalize@8 | |
| 326 | D3DXVec3Project@24 | |
| 327 | D3DXVec3ProjectArray@36 | |
| 328 | D3DXVec3Transform@12 | |
| 329 | D3DXVec3TransformArray@24 | |
| 330 | D3DXVec3TransformCoord@12 | |
| 331 | D3DXVec3TransformCoordArray@24 | |
| 332 | D3DXVec3TransformNormal@12 | |
| 333 | D3DXVec3TransformNormalArray@24 | |
| 334 | D3DXVec3Unproject@24 | |
| 335 | D3DXVec3UnprojectArray@36 | |
| 336 | D3DXVec4BaryCentric@24 | |
| 337 | D3DXVec4CatmullRom@24 | |
| 338 | D3DXVec4Cross@16 | |
| 339 | D3DXVec4Hermite@24 | |
| 340 | D3DXVec4Normalize@8 | |
| 341 | D3DXVec4Transform@12 | |
| 342 | D3DXVec4TransformArray@24 | |
| 343 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_41.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateFragmentLinker@12 | |
| 77 | D3DXCreateFragmentLinkerEx@16 | |
| 78 | D3DXCreateKeyframedAnimationSet@32 | |
| 79 | D3DXCreateLine@8 | |
| 80 | D3DXCreateMatrixStack@8 | |
| 81 | D3DXCreateMesh@24 | |
| 82 | D3DXCreateMeshFVF@24 | |
| 83 | D3DXCreateNPatchMesh@8 | |
| 84 | D3DXCreatePMeshFromStream@28 | |
| 85 | D3DXCreatePRTBuffer@16 | |
| 86 | D3DXCreatePRTBufferTex@20 | |
| 87 | D3DXCreatePRTCompBuffer@28 | |
| 88 | D3DXCreatePRTEngine@20 | |
| 89 | D3DXCreatePatchMesh@28 | |
| 90 | D3DXCreatePolygon@20 | |
| 91 | D3DXCreateRenderToEnvMap@28 | |
| 92 | D3DXCreateRenderToSurface@28 | |
| 93 | D3DXCreateSPMesh@20 | |
| 94 | D3DXCreateSkinInfo@16 | |
| 95 | D3DXCreateSkinInfoFVF@16 | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 97 | D3DXCreateSphere@24 | |
| 98 | D3DXCreateSprite@8 | |
| 99 | D3DXCreateTeapot@12 | |
| 100 | D3DXCreateTextA@32 | |
| 101 | D3DXCreateTextW@32 | |
| 102 | D3DXCreateTexture@32 | |
| 103 | D3DXCreateTextureFromFileA@12 | |
| 104 | D3DXCreateTextureFromFileExA@56 | |
| 105 | D3DXCreateTextureFromFileExW@56 | |
| 106 | D3DXCreateTextureFromFileInMemory@16 | |
| 107 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 108 | D3DXCreateTextureFromFileW@12 | |
| 109 | D3DXCreateTextureFromResourceA@16 | |
| 110 | D3DXCreateTextureFromResourceExA@60 | |
| 111 | D3DXCreateTextureFromResourceExW@60 | |
| 112 | D3DXCreateTextureFromResourceW@16 | |
| 113 | D3DXCreateTextureGutterHelper@20 | |
| 114 | D3DXCreateTextureShader@8 | |
| 115 | D3DXCreateTorus@28 | |
| 116 | D3DXCreateVolumeTexture@36 | |
| 117 | D3DXCreateVolumeTextureFromFileA@12 | |
| 118 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 119 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 122 | D3DXCreateVolumeTextureFromFileW@12 | |
| 123 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 124 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 125 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 126 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 127 | D3DXDebugMute@4 | |
| 128 | D3DXDeclaratorFromFVF@8 | |
| 129 | D3DXDisassembleEffect@12 | |
| 130 | D3DXDisassembleShader@16 | |
| 131 | D3DXFVFFromDeclarator@8 | |
| 132 | D3DXFileCreate@4 | |
| 133 | D3DXFillCubeTexture@12 | |
| 134 | D3DXFillCubeTextureTX@8 | |
| 135 | D3DXFillTexture@12 | |
| 136 | D3DXFillTextureTX@8 | |
| 137 | D3DXFillVolumeTexture@12 | |
| 138 | D3DXFillVolumeTextureTX@8 | |
| 139 | D3DXFilterTexture@16 | |
| 140 | D3DXFindShaderComment@16 | |
| 141 | D3DXFloat16To32Array@12 | |
| 142 | D3DXFloat32To16Array@12 | |
| 143 | D3DXFrameAppendChild@8 | |
| 144 | D3DXFrameCalculateBoundingSphere@12 | |
| 145 | D3DXFrameDestroy@8 | |
| 146 | D3DXFrameFind@8 | |
| 147 | D3DXFrameNumNamedMatrices@4 | |
| 148 | D3DXFrameRegisterNamedMatrices@8 | |
| 149 | D3DXFresnelTerm@8 | |
| 150 | D3DXGatherFragments@28 | |
| 151 | D3DXGatherFragmentsFromFileA@24 | |
| 152 | D3DXGatherFragmentsFromFileW@24 | |
| 153 | D3DXGatherFragmentsFromResourceA@28 | |
| 154 | D3DXGatherFragmentsFromResourceW@28 | |
| 155 | D3DXGenerateOutputDecl@8 | |
| 156 | D3DXGeneratePMesh@28 | |
| 157 | D3DXGetDeclLength@4 | |
| 158 | D3DXGetDeclVertexSize@8 | |
| 159 | D3DXGetDriverLevel@4 | |
| 160 | D3DXGetFVFVertexSize@4 | |
| 161 | D3DXGetImageInfoFromFileA@8 | |
| 162 | D3DXGetImageInfoFromFileInMemory@12 | |
| 163 | D3DXGetImageInfoFromFileW@8 | |
| 164 | D3DXGetImageInfoFromResourceA@12 | |
| 165 | D3DXGetImageInfoFromResourceW@12 | |
| 166 | D3DXGetPixelShaderProfile@4 | |
| 167 | D3DXGetShaderConstantTable@8 | |
| 168 | D3DXGetShaderConstantTableEx@12 | |
| 169 | D3DXGetShaderInputSemantics@12 | |
| 170 | D3DXGetShaderOutputSemantics@12 | |
| 171 | D3DXGetShaderSamplers@12 | |
| 172 | D3DXGetShaderSize@4 | |
| 173 | D3DXGetShaderVersion@4 | |
| 174 | D3DXGetVertexShaderProfile@4 | |
| 175 | D3DXIntersect@40 | |
| 176 | D3DXIntersectSubset@44 | |
| 177 | D3DXIntersectTri@32 | |
| 178 | D3DXLoadMeshFromXA@32 | |
| 179 | D3DXLoadMeshFromXInMemory@36 | |
| 180 | D3DXLoadMeshFromXResource@40 | |
| 181 | D3DXLoadMeshFromXW@32 | |
| 182 | D3DXLoadMeshFromXof@32 | |
| 183 | D3DXLoadMeshHierarchyFromXA@28 | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 185 | D3DXLoadMeshHierarchyFromXW@28 | |
| 186 | D3DXLoadPRTBufferFromFileA@8 | |
| 187 | D3DXLoadPRTBufferFromFileW@8 | |
| 188 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 189 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 190 | D3DXLoadPatchMeshFromXof@28 | |
| 191 | D3DXLoadSkinMeshFromXof@36 | |
| 192 | D3DXLoadSurfaceFromFileA@32 | |
| 193 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 194 | D3DXLoadSurfaceFromFileW@32 | |
| 195 | D3DXLoadSurfaceFromMemory@40 | |
| 196 | D3DXLoadSurfaceFromResourceA@36 | |
| 197 | D3DXLoadSurfaceFromResourceW@36 | |
| 198 | D3DXLoadSurfaceFromSurface@32 | |
| 199 | D3DXLoadVolumeFromFileA@32 | |
| 200 | D3DXLoadVolumeFromFileInMemory@36 | |
| 201 | D3DXLoadVolumeFromFileW@32 | |
| 202 | D3DXLoadVolumeFromMemory@44 | |
| 203 | D3DXLoadVolumeFromResourceA@36 | |
| 204 | D3DXLoadVolumeFromResourceW@36 | |
| 205 | D3DXLoadVolumeFromVolume@32 | |
| 206 | D3DXMatrixAffineTransformation2D@20 | |
| 207 | D3DXMatrixAffineTransformation@20 | |
| 208 | D3DXMatrixDecompose@16 | |
| 209 | D3DXMatrixDeterminant@4 | |
| 210 | D3DXMatrixInverse@12 | |
| 211 | D3DXMatrixLookAtLH@16 | |
| 212 | D3DXMatrixLookAtRH@16 | |
| 213 | D3DXMatrixMultiply@12 | |
| 214 | D3DXMatrixMultiplyTranspose@12 | |
| 215 | D3DXMatrixOrthoLH@20 | |
| 216 | D3DXMatrixOrthoOffCenterLH@28 | |
| 217 | D3DXMatrixOrthoOffCenterRH@28 | |
| 218 | D3DXMatrixOrthoRH@20 | |
| 219 | D3DXMatrixPerspectiveFovLH@20 | |
| 220 | D3DXMatrixPerspectiveFovRH@20 | |
| 221 | D3DXMatrixPerspectiveLH@20 | |
| 222 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 223 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 224 | D3DXMatrixPerspectiveRH@20 | |
| 225 | D3DXMatrixReflect@8 | |
| 226 | D3DXMatrixRotationAxis@12 | |
| 227 | D3DXMatrixRotationQuaternion@8 | |
| 228 | D3DXMatrixRotationX@8 | |
| 229 | D3DXMatrixRotationY@8 | |
| 230 | D3DXMatrixRotationYawPitchRoll@16 | |
| 231 | D3DXMatrixRotationZ@8 | |
| 232 | D3DXMatrixScaling@16 | |
| 233 | D3DXMatrixShadow@12 | |
| 234 | D3DXMatrixTransformation2D@28 | |
| 235 | D3DXMatrixTransformation@28 | |
| 236 | D3DXMatrixTranslation@16 | |
| 237 | D3DXMatrixTranspose@8 | |
| 238 | D3DXOptimizeFaces@20 | |
| 239 | D3DXOptimizeVertices@20 | |
| 240 | D3DXPlaneFromPointNormal@12 | |
| 241 | D3DXPlaneFromPoints@16 | |
| 242 | D3DXPlaneIntersectLine@16 | |
| 243 | D3DXPlaneNormalize@8 | |
| 244 | D3DXPlaneTransform@12 | |
| 245 | D3DXPlaneTransformArray@24 | |
| 246 | D3DXPreprocessShader@24 | |
| 247 | D3DXPreprocessShaderFromFileA@20 | |
| 248 | D3DXPreprocessShaderFromFileW@20 | |
| 249 | D3DXPreprocessShaderFromResourceA@24 | |
| 250 | D3DXPreprocessShaderFromResourceW@24 | |
| 251 | D3DXQuaternionBaryCentric@24 | |
| 252 | D3DXQuaternionExp@8 | |
| 253 | D3DXQuaternionInverse@8 | |
| 254 | D3DXQuaternionLn@8 | |
| 255 | D3DXQuaternionMultiply@12 | |
| 256 | D3DXQuaternionNormalize@8 | |
| 257 | D3DXQuaternionRotationAxis@12 | |
| 258 | D3DXQuaternionRotationMatrix@8 | |
| 259 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 260 | D3DXQuaternionSlerp@16 | |
| 261 | D3DXQuaternionSquad@24 | |
| 262 | D3DXQuaternionSquadSetup@28 | |
| 263 | D3DXQuaternionToAxisAngle@12 | |
| 264 | D3DXRectPatchSize@12 | |
| 265 | D3DXSHAdd@16 | |
| 266 | D3DXSHDot@12 | |
| 267 | D3DXSHEvalConeLight@36 | |
| 268 | D3DXSHEvalDirection@12 | |
| 269 | D3DXSHEvalDirectionalLight@32 | |
| 270 | D3DXSHEvalHemisphereLight@52 | |
| 271 | D3DXSHEvalSphericalLight@36 | |
| 272 | D3DXSHMultiply2@12 | |
| 273 | D3DXSHMultiply3@12 | |
| 274 | D3DXSHMultiply4@12 | |
| 275 | D3DXSHMultiply5@12 | |
| 276 | D3DXSHMultiply6@12 | |
| 277 | D3DXSHPRTCompSplitMeshSC@64 | |
| 278 | D3DXSHPRTCompSuperCluster@24 | |
| 279 | D3DXSHProjectCubeMap@20 | |
| 280 | D3DXSHRotate@16 | |
| 281 | D3DXSHRotateZ@16 | |
| 282 | D3DXSHScale@16 | |
| 283 | D3DXSaveMeshHierarchyToFileA@20 | |
| 284 | D3DXSaveMeshHierarchyToFileW@20 | |
| 285 | D3DXSaveMeshToXA@28 | |
| 286 | D3DXSaveMeshToXW@28 | |
| 287 | D3DXSavePRTBufferToFileA@8 | |
| 288 | D3DXSavePRTBufferToFileW@8 | |
| 289 | D3DXSavePRTCompBufferToFileA@8 | |
| 290 | D3DXSavePRTCompBufferToFileW@8 | |
| 291 | D3DXSaveSurfaceToFileA@20 | |
| 292 | D3DXSaveSurfaceToFileInMemory@20 | |
| 293 | D3DXSaveSurfaceToFileW@20 | |
| 294 | D3DXSaveTextureToFileA@16 | |
| 295 | D3DXSaveTextureToFileInMemory@16 | |
| 296 | D3DXSaveTextureToFileW@16 | |
| 297 | D3DXSaveVolumeToFileA@20 | |
| 298 | D3DXSaveVolumeToFileInMemory@20 | |
| 299 | D3DXSaveVolumeToFileW@20 | |
| 300 | D3DXSimplifyMesh@28 | |
| 301 | D3DXSphereBoundProbe@16 | |
| 302 | D3DXSplitMesh@36 | |
| 303 | D3DXTessellateNPatches@24 | |
| 304 | D3DXTessellateRectPatch@20 | |
| 305 | D3DXTessellateTriPatch@20 | |
| 306 | D3DXTriPatchSize@12 | |
| 307 | D3DXUVAtlasCreate@76 | |
| 308 | D3DXUVAtlasPack@44 | |
| 309 | D3DXUVAtlasPartition@68 | |
| 310 | D3DXValidMesh@12 | |
| 311 | D3DXValidPatchMesh@16 | |
| 312 | D3DXVec2BaryCentric@24 | |
| 313 | D3DXVec2CatmullRom@24 | |
| 314 | D3DXVec2Hermite@24 | |
| 315 | D3DXVec2Normalize@8 | |
| 316 | D3DXVec2Transform@12 | |
| 317 | D3DXVec2TransformArray@24 | |
| 318 | D3DXVec2TransformCoord@12 | |
| 319 | D3DXVec2TransformCoordArray@24 | |
| 320 | D3DXVec2TransformNormal@12 | |
| 321 | D3DXVec2TransformNormalArray@24 | |
| 322 | D3DXVec3BaryCentric@24 | |
| 323 | D3DXVec3CatmullRom@24 | |
| 324 | D3DXVec3Hermite@24 | |
| 325 | D3DXVec3Normalize@8 | |
| 326 | D3DXVec3Project@24 | |
| 327 | D3DXVec3ProjectArray@36 | |
| 328 | D3DXVec3Transform@12 | |
| 329 | D3DXVec3TransformArray@24 | |
| 330 | D3DXVec3TransformCoord@12 | |
| 331 | D3DXVec3TransformCoordArray@24 | |
| 332 | D3DXVec3TransformNormal@12 | |
| 333 | D3DXVec3TransformNormalArray@24 | |
| 334 | D3DXVec3Unproject@24 | |
| 335 | D3DXVec3UnprojectArray@36 | |
| 336 | D3DXVec4BaryCentric@24 | |
| 337 | D3DXVec4CatmullRom@24 | |
| 338 | D3DXVec4Cross@16 | |
| 339 | D3DXVec4Hermite@24 | |
| 340 | D3DXVec4Normalize@8 | |
| 341 | D3DXVec4Transform@12 | |
| 342 | D3DXVec4TransformArray@24 | |
| 343 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateKeyframedAnimationSet@32 | |
| 77 | D3DXCreateLine@8 | |
| 78 | D3DXCreateMatrixStack@8 | |
| 79 | D3DXCreateMesh@24 | |
| 80 | D3DXCreateMeshFVF@24 | |
| 81 | D3DXCreateNPatchMesh@8 | |
| 82 | D3DXCreatePMeshFromStream@28 | |
| 83 | D3DXCreatePRTBuffer@16 | |
| 84 | D3DXCreatePRTBufferTex@20 | |
| 85 | D3DXCreatePRTCompBuffer@28 | |
| 86 | D3DXCreatePRTEngine@20 | |
| 87 | D3DXCreatePatchMesh@28 | |
| 88 | D3DXCreatePolygon@20 | |
| 89 | D3DXCreateRenderToEnvMap@28 | |
| 90 | D3DXCreateRenderToSurface@28 | |
| 91 | D3DXCreateSPMesh@20 | |
| 92 | D3DXCreateSkinInfo@16 | |
| 93 | D3DXCreateSkinInfoFVF@16 | |
| 94 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 95 | D3DXCreateSphere@24 | |
| 96 | D3DXCreateSprite@8 | |
| 97 | D3DXCreateTeapot@12 | |
| 98 | D3DXCreateTextA@32 | |
| 99 | D3DXCreateTextW@32 | |
| 100 | D3DXCreateTexture@32 | |
| 101 | D3DXCreateTextureFromFileA@12 | |
| 102 | D3DXCreateTextureFromFileExA@56 | |
| 103 | D3DXCreateTextureFromFileExW@56 | |
| 104 | D3DXCreateTextureFromFileInMemory@16 | |
| 105 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 106 | D3DXCreateTextureFromFileW@12 | |
| 107 | D3DXCreateTextureFromResourceA@16 | |
| 108 | D3DXCreateTextureFromResourceExA@60 | |
| 109 | D3DXCreateTextureFromResourceExW@60 | |
| 110 | D3DXCreateTextureFromResourceW@16 | |
| 111 | D3DXCreateTextureGutterHelper@20 | |
| 112 | D3DXCreateTextureShader@8 | |
| 113 | D3DXCreateTorus@28 | |
| 114 | D3DXCreateVolumeTexture@36 | |
| 115 | D3DXCreateVolumeTextureFromFileA@12 | |
| 116 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 117 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 118 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 119 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 120 | D3DXCreateVolumeTextureFromFileW@12 | |
| 121 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 122 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 123 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 124 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 125 | D3DXDebugMute@4 | |
| 126 | D3DXDeclaratorFromFVF@8 | |
| 127 | D3DXDisassembleEffect@12 | |
| 128 | D3DXDisassembleShader@16 | |
| 129 | D3DXFVFFromDeclarator@8 | |
| 130 | D3DXFileCreate@4 | |
| 131 | D3DXFillCubeTexture@12 | |
| 132 | D3DXFillCubeTextureTX@8 | |
| 133 | D3DXFillTexture@12 | |
| 134 | D3DXFillTextureTX@8 | |
| 135 | D3DXFillVolumeTexture@12 | |
| 136 | D3DXFillVolumeTextureTX@8 | |
| 137 | D3DXFilterTexture@16 | |
| 138 | D3DXFindShaderComment@16 | |
| 139 | D3DXFloat16To32Array@12 | |
| 140 | D3DXFloat32To16Array@12 | |
| 141 | D3DXFrameAppendChild@8 | |
| 142 | D3DXFrameCalculateBoundingSphere@12 | |
| 143 | D3DXFrameDestroy@8 | |
| 144 | D3DXFrameFind@8 | |
| 145 | D3DXFrameNumNamedMatrices@4 | |
| 146 | D3DXFrameRegisterNamedMatrices@8 | |
| 147 | D3DXFresnelTerm@8 | |
| 148 | D3DXGenerateOutputDecl@8 | |
| 149 | D3DXGeneratePMesh@28 | |
| 150 | D3DXGetDeclLength@4 | |
| 151 | D3DXGetDeclVertexSize@8 | |
| 152 | D3DXGetDriverLevel@4 | |
| 153 | D3DXGetFVFVertexSize@4 | |
| 154 | D3DXGetImageInfoFromFileA@8 | |
| 155 | D3DXGetImageInfoFromFileInMemory@12 | |
| 156 | D3DXGetImageInfoFromFileW@8 | |
| 157 | D3DXGetImageInfoFromResourceA@12 | |
| 158 | D3DXGetImageInfoFromResourceW@12 | |
| 159 | D3DXGetPixelShaderProfile@4 | |
| 160 | D3DXGetShaderConstantTable@8 | |
| 161 | D3DXGetShaderConstantTableEx@12 | |
| 162 | D3DXGetShaderInputSemantics@12 | |
| 163 | D3DXGetShaderOutputSemantics@12 | |
| 164 | D3DXGetShaderSamplers@12 | |
| 165 | D3DXGetShaderSize@4 | |
| 166 | D3DXGetShaderVersion@4 | |
| 167 | D3DXGetVertexShaderProfile@4 | |
| 168 | D3DXIntersect@40 | |
| 169 | D3DXIntersectSubset@44 | |
| 170 | D3DXIntersectTri@32 | |
| 171 | D3DXLoadMeshFromXA@32 | |
| 172 | D3DXLoadMeshFromXInMemory@36 | |
| 173 | D3DXLoadMeshFromXResource@40 | |
| 174 | D3DXLoadMeshFromXW@32 | |
| 175 | D3DXLoadMeshFromXof@32 | |
| 176 | D3DXLoadMeshHierarchyFromXA@28 | |
| 177 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 178 | D3DXLoadMeshHierarchyFromXW@28 | |
| 179 | D3DXLoadPRTBufferFromFileA@8 | |
| 180 | D3DXLoadPRTBufferFromFileW@8 | |
| 181 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 182 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 183 | D3DXLoadPatchMeshFromXof@28 | |
| 184 | D3DXLoadSkinMeshFromXof@36 | |
| 185 | D3DXLoadSurfaceFromFileA@32 | |
| 186 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 187 | D3DXLoadSurfaceFromFileW@32 | |
| 188 | D3DXLoadSurfaceFromMemory@40 | |
| 189 | D3DXLoadSurfaceFromResourceA@36 | |
| 190 | D3DXLoadSurfaceFromResourceW@36 | |
| 191 | D3DXLoadSurfaceFromSurface@32 | |
| 192 | D3DXLoadVolumeFromFileA@32 | |
| 193 | D3DXLoadVolumeFromFileInMemory@36 | |
| 194 | D3DXLoadVolumeFromFileW@32 | |
| 195 | D3DXLoadVolumeFromMemory@44 | |
| 196 | D3DXLoadVolumeFromResourceA@36 | |
| 197 | D3DXLoadVolumeFromResourceW@36 | |
| 198 | D3DXLoadVolumeFromVolume@32 | |
| 199 | D3DXMatrixAffineTransformation2D@20 | |
| 200 | D3DXMatrixAffineTransformation@20 | |
| 201 | D3DXMatrixDecompose@16 | |
| 202 | D3DXMatrixDeterminant@4 | |
| 203 | D3DXMatrixInverse@12 | |
| 204 | D3DXMatrixLookAtLH@16 | |
| 205 | D3DXMatrixLookAtRH@16 | |
| 206 | D3DXMatrixMultiply@12 | |
| 207 | D3DXMatrixMultiplyTranspose@12 | |
| 208 | D3DXMatrixOrthoLH@20 | |
| 209 | D3DXMatrixOrthoOffCenterLH@28 | |
| 210 | D3DXMatrixOrthoOffCenterRH@28 | |
| 211 | D3DXMatrixOrthoRH@20 | |
| 212 | D3DXMatrixPerspectiveFovLH@20 | |
| 213 | D3DXMatrixPerspectiveFovRH@20 | |
| 214 | D3DXMatrixPerspectiveLH@20 | |
| 215 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 216 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 217 | D3DXMatrixPerspectiveRH@20 | |
| 218 | D3DXMatrixReflect@8 | |
| 219 | D3DXMatrixRotationAxis@12 | |
| 220 | D3DXMatrixRotationQuaternion@8 | |
| 221 | D3DXMatrixRotationX@8 | |
| 222 | D3DXMatrixRotationY@8 | |
| 223 | D3DXMatrixRotationYawPitchRoll@16 | |
| 224 | D3DXMatrixRotationZ@8 | |
| 225 | D3DXMatrixScaling@16 | |
| 226 | D3DXMatrixShadow@12 | |
| 227 | D3DXMatrixTransformation2D@28 | |
| 228 | D3DXMatrixTransformation@28 | |
| 229 | D3DXMatrixTranslation@16 | |
| 230 | D3DXMatrixTranspose@8 | |
| 231 | D3DXOptimizeFaces@20 | |
| 232 | D3DXOptimizeVertices@20 | |
| 233 | D3DXPlaneFromPointNormal@12 | |
| 234 | D3DXPlaneFromPoints@16 | |
| 235 | D3DXPlaneIntersectLine@16 | |
| 236 | D3DXPlaneNormalize@8 | |
| 237 | D3DXPlaneTransform@12 | |
| 238 | D3DXPlaneTransformArray@24 | |
| 239 | D3DXPreprocessShader@24 | |
| 240 | D3DXPreprocessShaderFromFileA@20 | |
| 241 | D3DXPreprocessShaderFromFileW@20 | |
| 242 | D3DXPreprocessShaderFromResourceA@24 | |
| 243 | D3DXPreprocessShaderFromResourceW@24 | |
| 244 | D3DXQuaternionBaryCentric@24 | |
| 245 | D3DXQuaternionExp@8 | |
| 246 | D3DXQuaternionInverse@8 | |
| 247 | D3DXQuaternionLn@8 | |
| 248 | D3DXQuaternionMultiply@12 | |
| 249 | D3DXQuaternionNormalize@8 | |
| 250 | D3DXQuaternionRotationAxis@12 | |
| 251 | D3DXQuaternionRotationMatrix@8 | |
| 252 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 253 | D3DXQuaternionSlerp@16 | |
| 254 | D3DXQuaternionSquad@24 | |
| 255 | D3DXQuaternionSquadSetup@28 | |
| 256 | D3DXQuaternionToAxisAngle@12 | |
| 257 | D3DXRectPatchSize@12 | |
| 258 | D3DXSHAdd@16 | |
| 259 | D3DXSHDot@12 | |
| 260 | D3DXSHEvalConeLight@36 | |
| 261 | D3DXSHEvalDirection@12 | |
| 262 | D3DXSHEvalDirectionalLight@32 | |
| 263 | D3DXSHEvalHemisphereLight@52 | |
| 264 | D3DXSHEvalSphericalLight@36 | |
| 265 | D3DXSHMultiply2@12 | |
| 266 | D3DXSHMultiply3@12 | |
| 267 | D3DXSHMultiply4@12 | |
| 268 | D3DXSHMultiply5@12 | |
| 269 | D3DXSHMultiply6@12 | |
| 270 | D3DXSHPRTCompSplitMeshSC@64 | |
| 271 | D3DXSHPRTCompSuperCluster@24 | |
| 272 | D3DXSHProjectCubeMap@20 | |
| 273 | D3DXSHRotate@16 | |
| 274 | D3DXSHRotateZ@16 | |
| 275 | D3DXSHScale@16 | |
| 276 | D3DXSaveMeshHierarchyToFileA@20 | |
| 277 | D3DXSaveMeshHierarchyToFileW@20 | |
| 278 | D3DXSaveMeshToXA@28 | |
| 279 | D3DXSaveMeshToXW@28 | |
| 280 | D3DXSavePRTBufferToFileA@8 | |
| 281 | D3DXSavePRTBufferToFileW@8 | |
| 282 | D3DXSavePRTCompBufferToFileA@8 | |
| 283 | D3DXSavePRTCompBufferToFileW@8 | |
| 284 | D3DXSaveSurfaceToFileA@20 | |
| 285 | D3DXSaveSurfaceToFileInMemory@20 | |
| 286 | D3DXSaveSurfaceToFileW@20 | |
| 287 | D3DXSaveTextureToFileA@16 | |
| 288 | D3DXSaveTextureToFileInMemory@16 | |
| 289 | D3DXSaveTextureToFileW@16 | |
| 290 | D3DXSaveVolumeToFileA@20 | |
| 291 | D3DXSaveVolumeToFileInMemory@20 | |
| 292 | D3DXSaveVolumeToFileW@20 | |
| 293 | D3DXSimplifyMesh@28 | |
| 294 | D3DXSphereBoundProbe@16 | |
| 295 | D3DXSplitMesh@36 | |
| 296 | D3DXTessellateNPatches@24 | |
| 297 | D3DXTessellateRectPatch@20 | |
| 298 | D3DXTessellateTriPatch@20 | |
| 299 | D3DXTriPatchSize@12 | |
| 300 | D3DXUVAtlasCreate@76 | |
| 301 | D3DXUVAtlasPack@44 | |
| 302 | D3DXUVAtlasPartition@68 | |
| 303 | D3DXValidMesh@12 | |
| 304 | D3DXValidPatchMesh@16 | |
| 305 | D3DXVec2BaryCentric@24 | |
| 306 | D3DXVec2CatmullRom@24 | |
| 307 | D3DXVec2Hermite@24 | |
| 308 | D3DXVec2Normalize@8 | |
| 309 | D3DXVec2Transform@12 | |
| 310 | D3DXVec2TransformArray@24 | |
| 311 | D3DXVec2TransformCoord@12 | |
| 312 | D3DXVec2TransformCoordArray@24 | |
| 313 | D3DXVec2TransformNormal@12 | |
| 314 | D3DXVec2TransformNormalArray@24 | |
| 315 | D3DXVec3BaryCentric@24 | |
| 316 | D3DXVec3CatmullRom@24 | |
| 317 | D3DXVec3Hermite@24 | |
| 318 | D3DXVec3Normalize@8 | |
| 319 | D3DXVec3Project@24 | |
| 320 | D3DXVec3ProjectArray@36 | |
| 321 | D3DXVec3Transform@12 | |
| 322 | D3DXVec3TransformArray@24 | |
| 323 | D3DXVec3TransformCoord@12 | |
| 324 | D3DXVec3TransformCoordArray@24 | |
| 325 | D3DXVec3TransformNormal@12 | |
| 326 | D3DXVec3TransformNormalArray@24 | |
| 327 | D3DXVec3Unproject@24 | |
| 328 | D3DXVec3UnprojectArray@36 | |
| 329 | D3DXVec4BaryCentric@24 | |
| 330 | D3DXVec4CatmullRom@24 | |
| 331 | D3DXVec4Cross@16 | |
| 332 | D3DXVec4Hermite@24 | |
| 333 | D3DXVec4Normalize@8 | |
| 334 | D3DXVec4Transform@12 | |
| 335 | D3DXVec4TransformArray@24 | |
| 336 | D3DXWeldVertices@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 | ; | |
| 6 | LIBRARY "d3dx9_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader@28 | |
| 9 | D3DXAssembleShaderFromFileA@24 | |
| 10 | D3DXAssembleShaderFromFileW@24 | |
| 11 | D3DXAssembleShaderFromResourceA@28 | |
| 12 | D3DXAssembleShaderFromResourceW@28 | |
| 13 | D3DXBoxBoundProbe@16 | |
| 14 | D3DXCheckCubeTextureRequirements@24 | |
| 15 | D3DXCheckTextureRequirements@28 | |
| 16 | D3DXCheckVersion@8 | |
| 17 | D3DXCheckVolumeTextureRequirements@32 | |
| 18 | D3DXCleanMesh@24 | |
| 19 | D3DXColorAdjustContrast@12 | |
| 20 | D3DXColorAdjustSaturation@12 | |
| 21 | D3DXCompileShader@40 | |
| 22 | D3DXCompileShaderFromFileA@36 | |
| 23 | D3DXCompileShaderFromFileW@36 | |
| 24 | D3DXCompileShaderFromResourceA@40 | |
| 25 | D3DXCompileShaderFromResourceW@40 | |
| 26 | D3DXComputeBoundingBox@20 | |
| 27 | D3DXComputeBoundingSphere@20 | |
| 28 | D3DXComputeIMTFromPerTexelSignal@44 | |
| 29 | D3DXComputeIMTFromPerVertexSignal@32 | |
| 30 | D3DXComputeIMTFromSignal@40 | |
| 31 | D3DXComputeIMTFromTexture@28 | |
| 32 | D3DXComputeNormalMap@24 | |
| 33 | D3DXComputeNormals@8 | |
| 34 | D3DXComputeTangent@24 | |
| 35 | D3DXComputeTangentFrame@8 | |
| 36 | D3DXComputeTangentFrameEx@64 | |
| 37 | D3DXConcatenateMeshes@32 | |
| 38 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 39 | D3DXConvertMeshSubsetToStrips@28 | |
| 40 | D3DXCreateAnimationController@20 | |
| 41 | D3DXCreateBox@24 | |
| 42 | D3DXCreateBuffer@8 | |
| 43 | D3DXCreateCompressedAnimationSet@32 | |
| 44 | D3DXCreateCubeTexture@28 | |
| 45 | D3DXCreateCubeTextureFromFileA@12 | |
| 46 | D3DXCreateCubeTextureFromFileExA@52 | |
| 47 | D3DXCreateCubeTextureFromFileExW@52 | |
| 48 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 50 | D3DXCreateCubeTextureFromFileW@12 | |
| 51 | D3DXCreateCubeTextureFromResourceA@16 | |
| 52 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 53 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 54 | D3DXCreateCubeTextureFromResourceW@16 | |
| 55 | D3DXCreateCylinder@32 | |
| 56 | D3DXCreateEffect@36 | |
| 57 | D3DXCreateEffectCompiler@28 | |
| 58 | D3DXCreateEffectCompilerFromFileA@24 | |
| 59 | D3DXCreateEffectCompilerFromFileW@24 | |
| 60 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 61 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 62 | D3DXCreateEffectEx@40 | |
| 63 | D3DXCreateEffectFromFileA@32 | |
| 64 | D3DXCreateEffectFromFileExA@36 | |
| 65 | D3DXCreateEffectFromFileExW@36 | |
| 66 | D3DXCreateEffectFromFileW@32 | |
| 67 | D3DXCreateEffectFromResourceA@36 | |
| 68 | D3DXCreateEffectFromResourceExA@40 | |
| 69 | D3DXCreateEffectFromResourceExW@40 | |
| 70 | D3DXCreateEffectFromResourceW@36 | |
| 71 | D3DXCreateEffectPool@4 | |
| 72 | D3DXCreateFontA@48 | |
| 73 | D3DXCreateFontIndirectA@12 | |
| 74 | D3DXCreateFontIndirectW@12 | |
| 75 | D3DXCreateFontW@48 | |
| 76 | D3DXCreateKeyframedAnimationSet@32 | |
| 77 | D3DXCreateLine@8 | |
| 78 | D3DXCreateMatrixStack@8 | |
| 79 | D3DXCreateMesh@24 | |
| 80 | D3DXCreateMeshFVF@24 | |
| 81 | D3DXCreateNPatchMesh@8 | |
| 82 | D3DXCreatePMeshFromStream@28 | |
| 83 | D3DXCreatePRTBuffer@16 | |
| 84 | D3DXCreatePRTBufferTex@20 | |
| 85 | D3DXCreatePRTCompBuffer@28 | |
| 86 | D3DXCreatePRTEngine@20 | |
| 87 | D3DXCreatePatchMesh@28 | |
| 88 | D3DXCreatePolygon@20 | |
| 89 | D3DXCreateRenderToEnvMap@28 | |
| 90 | D3DXCreateRenderToSurface@28 | |
| 91 | D3DXCreateSPMesh@20 | |
| 92 | D3DXCreateSkinInfo@16 | |
| 93 | D3DXCreateSkinInfoFVF@16 | |
| 94 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 95 | D3DXCreateSphere@24 | |
| 96 | D3DXCreateSprite@8 | |
| 97 | D3DXCreateTeapot@12 | |
| 98 | D3DXCreateTextA@32 | |
| 99 | D3DXCreateTextW@32 | |
| 100 | D3DXCreateTexture@32 | |
| 101 | D3DXCreateTextureFromFileA@12 | |
| 102 | D3DXCreateTextureFromFileExA@56 | |
| 103 | D3DXCreateTextureFromFileExW@56 | |
| 104 | D3DXCreateTextureFromFileInMemory@16 | |
| 105 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 106 | D3DXCreateTextureFromFileW@12 | |
| 107 | D3DXCreateTextureFromResourceA@16 | |
| 108 | D3DXCreateTextureFromResourceExA@60 | |
| 109 | D3DXCreateTextureFromResourceExW@60 | |
| 110 | D3DXCreateTextureFromResourceW@16 | |
| 111 | D3DXCreateTextureGutterHelper@20 | |
| 112 | D3DXCreateTextureShader@8 | |
| 113 | D3DXCreateTorus@28 | |
| 114 | D3DXCreateVolumeTexture@36 | |
| 115 | D3DXCreateVolumeTextureFromFileA@12 | |
| 116 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 117 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 118 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 119 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 120 | D3DXCreateVolumeTextureFromFileW@12 | |
| 121 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 122 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 123 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 124 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 125 | D3DXDebugMute@4 | |
| 126 | D3DXDeclaratorFromFVF@8 | |
| 127 | D3DXDisassembleEffect@12 | |
| 128 | D3DXDisassembleShader@16 | |
| 129 | D3DXFVFFromDeclarator@8 | |
| 130 | D3DXFileCreate@4 | |
| 131 | D3DXFillCubeTexture@12 | |
| 132 | D3DXFillCubeTextureTX@8 | |
| 133 | D3DXFillTexture@12 | |
| 134 | D3DXFillTextureTX@8 | |
| 135 | D3DXFillVolumeTexture@12 | |
| 136 | D3DXFillVolumeTextureTX@8 | |
| 137 | D3DXFilterTexture@16 | |
| 138 | D3DXFindShaderComment@16 | |
| 139 | D3DXFloat16To32Array@12 | |
| 140 | D3DXFloat32To16Array@12 | |
| 141 | D3DXFrameAppendChild@8 | |
| 142 | D3DXFrameCalculateBoundingSphere@12 | |
| 143 | D3DXFrameDestroy@8 | |
| 144 | D3DXFrameFind@8 | |
| 145 | D3DXFrameNumNamedMatrices@4 | |
| 146 | D3DXFrameRegisterNamedMatrices@8 | |
| 147 | D3DXFresnelTerm@8 | |
| 148 | D3DXGenerateOutputDecl@8 | |
| 149 | D3DXGeneratePMesh@28 | |
| 150 | D3DXGetDeclLength@4 | |
| 151 | D3DXGetDeclVertexSize@8 | |
| 152 | D3DXGetDriverLevel@4 | |
| 153 | D3DXGetFVFVertexSize@4 | |
| 154 | D3DXGetImageInfoFromFileA@8 | |
| 155 | D3DXGetImageInfoFromFileInMemory@12 | |
| 156 | D3DXGetImageInfoFromFileW@8 | |
| 157 | D3DXGetImageInfoFromResourceA@12 | |
| 158 | D3DXGetImageInfoFromResourceW@12 | |
| 159 | D3DXGetPixelShaderProfile@4 | |
| 160 | D3DXGetShaderConstantTable@8 | |
| 161 | D3DXGetShaderConstantTableEx@12 | |
| 162 | D3DXGetShaderInputSemantics@12 | |
| 163 | D3DXGetShaderOutputSemantics@12 | |
| 164 | D3DXGetShaderSamplers@12 | |
| 165 | D3DXGetShaderSize@4 | |
| 166 | D3DXGetShaderVersion@4 | |
| 167 | D3DXGetVertexShaderProfile@4 | |
| 168 | D3DXIntersect@40 | |
| 169 | D3DXIntersectSubset@44 | |
| 170 | D3DXIntersectTri@32 | |
| 171 | D3DXLoadMeshFromXA@32 | |
| 172 | D3DXLoadMeshFromXInMemory@36 | |
| 173 | D3DXLoadMeshFromXResource@40 | |
| 174 | D3DXLoadMeshFromXW@32 | |
| 175 | D3DXLoadMeshFromXof@32 | |
| 176 | D3DXLoadMeshHierarchyFromXA@28 | |
| 177 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 178 | D3DXLoadMeshHierarchyFromXW@28 | |
| 179 | D3DXLoadPRTBufferFromFileA@8 | |
| 180 | D3DXLoadPRTBufferFromFileW@8 | |
| 181 | D3DXLoadPRTCompBufferFromFileA@8 | |
| 182 | D3DXLoadPRTCompBufferFromFileW@8 | |
| 183 | D3DXLoadPatchMeshFromXof@28 | |
| 184 | D3DXLoadSkinMeshFromXof@36 | |
| 185 | D3DXLoadSurfaceFromFileA@32 | |
| 186 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 187 | D3DXLoadSurfaceFromFileW@32 | |
| 188 | D3DXLoadSurfaceFromMemory@40 | |
| 189 | D3DXLoadSurfaceFromResourceA@36 | |
| 190 | D3DXLoadSurfaceFromResourceW@36 | |
| 191 | D3DXLoadSurfaceFromSurface@32 | |
| 192 | D3DXLoadVolumeFromFileA@32 | |
| 193 | D3DXLoadVolumeFromFileInMemory@36 | |
| 194 | D3DXLoadVolumeFromFileW@32 | |
| 195 | D3DXLoadVolumeFromMemory@44 | |
| 196 | D3DXLoadVolumeFromResourceA@36 | |
| 197 | D3DXLoadVolumeFromResourceW@36 | |
| 198 | D3DXLoadVolumeFromVolume@32 | |
| 199 | D3DXMatrixAffineTransformation2D@20 | |
| 200 | D3DXMatrixAffineTransformation@20 | |
| 201 | D3DXMatrixDecompose@16 | |
| 202 | D3DXMatrixDeterminant@4 | |
| 203 | D3DXMatrixInverse@12 | |
| 204 | D3DXMatrixLookAtLH@16 | |
| 205 | D3DXMatrixLookAtRH@16 | |
| 206 | D3DXMatrixMultiply@12 | |
| 207 | D3DXMatrixMultiplyTranspose@12 | |
| 208 | D3DXMatrixOrthoLH@20 | |
| 209 | D3DXMatrixOrthoOffCenterLH@28 | |
| 210 | D3DXMatrixOrthoOffCenterRH@28 | |
| 211 | D3DXMatrixOrthoRH@20 | |
| 212 | D3DXMatrixPerspectiveFovLH@20 | |
| 213 | D3DXMatrixPerspectiveFovRH@20 | |
| 214 | D3DXMatrixPerspectiveLH@20 | |
| 215 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 216 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 217 | D3DXMatrixPerspectiveRH@20 | |
| 218 | D3DXMatrixReflect@8 | |
| 219 | D3DXMatrixRotationAxis@12 | |
| 220 | D3DXMatrixRotationQuaternion@8 | |
| 221 | D3DXMatrixRotationX@8 | |
| 222 | D3DXMatrixRotationY@8 | |
| 223 | D3DXMatrixRotationYawPitchRoll@16 | |
| 224 | D3DXMatrixRotationZ@8 | |
| 225 | D3DXMatrixScaling@16 | |
| 226 | D3DXMatrixShadow@12 | |
| 227 | D3DXMatrixTransformation2D@28 | |
| 228 | D3DXMatrixTransformation@28 | |
| 229 | D3DXMatrixTranslation@16 | |
| 230 | D3DXMatrixTranspose@8 | |
| 231 | D3DXOptimizeFaces@20 | |
| 232 | D3DXOptimizeVertices@20 | |
| 233 | D3DXPlaneFromPointNormal@12 | |
| 234 | D3DXPlaneFromPoints@16 | |
| 235 | D3DXPlaneIntersectLine@16 | |
| 236 | D3DXPlaneNormalize@8 | |
| 237 | D3DXPlaneTransform@12 | |
| 238 | D3DXPlaneTransformArray@24 | |
| 239 | D3DXPreprocessShader@24 | |
| 240 | D3DXPreprocessShaderFromFileA@20 | |
| 241 | D3DXPreprocessShaderFromFileW@20 | |
| 242 | D3DXPreprocessShaderFromResourceA@24 | |
| 243 | D3DXPreprocessShaderFromResourceW@24 | |
| 244 | D3DXQuaternionBaryCentric@24 | |
| 245 | D3DXQuaternionExp@8 | |
| 246 | D3DXQuaternionInverse@8 | |
| 247 | D3DXQuaternionLn@8 | |
| 248 | D3DXQuaternionMultiply@12 | |
| 249 | D3DXQuaternionNormalize@8 | |
| 250 | D3DXQuaternionRotationAxis@12 | |
| 251 | D3DXQuaternionRotationMatrix@8 | |
| 252 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 253 | D3DXQuaternionSlerp@16 | |
| 254 | D3DXQuaternionSquad@24 | |
| 255 | D3DXQuaternionSquadSetup@28 | |
| 256 | D3DXQuaternionToAxisAngle@12 | |
| 257 | D3DXRectPatchSize@12 | |
| 258 | D3DXSHAdd@16 | |
| 259 | D3DXSHDot@12 | |
| 260 | D3DXSHEvalConeLight@36 | |
| 261 | D3DXSHEvalDirection@12 | |
| 262 | D3DXSHEvalDirectionalLight@32 | |
| 263 | D3DXSHEvalHemisphereLight@52 | |
| 264 | D3DXSHEvalSphericalLight@36 | |
| 265 | D3DXSHMultiply2@12 | |
| 266 | D3DXSHMultiply3@12 | |
| 267 | D3DXSHMultiply4@12 | |
| 268 | D3DXSHMultiply5@12 | |
| 269 | D3DXSHMultiply6@12 | |
| 270 | D3DXSHPRTCompSplitMeshSC@64 | |
| 271 | D3DXSHPRTCompSuperCluster@24 | |
| 272 | D3DXSHProjectCubeMap@20 | |
| 273 | D3DXSHRotate@16 | |
| 274 | D3DXSHRotateZ@16 | |
| 275 | D3DXSHScale@16 | |
| 276 | D3DXSaveMeshHierarchyToFileA@20 | |
| 277 | D3DXSaveMeshHierarchyToFileW@20 | |
| 278 | D3DXSaveMeshToXA@28 | |
| 279 | D3DXSaveMeshToXW@28 | |
| 280 | D3DXSavePRTBufferToFileA@8 | |
| 281 | D3DXSavePRTBufferToFileW@8 | |
| 282 | D3DXSavePRTCompBufferToFileA@8 | |
| 283 | D3DXSavePRTCompBufferToFileW@8 | |
| 284 | D3DXSaveSurfaceToFileA@20 | |
| 285 | D3DXSaveSurfaceToFileInMemory@20 | |
| 286 | D3DXSaveSurfaceToFileW@20 | |
| 287 | D3DXSaveTextureToFileA@16 | |
| 288 | D3DXSaveTextureToFileInMemory@16 | |
| 289 | D3DXSaveTextureToFileW@16 | |
| 290 | D3DXSaveVolumeToFileA@20 | |
| 291 | D3DXSaveVolumeToFileInMemory@20 | |
| 292 | D3DXSaveVolumeToFileW@20 | |
| 293 | D3DXSimplifyMesh@28 | |
| 294 | D3DXSphereBoundProbe@16 | |
| 295 | D3DXSplitMesh@36 | |
| 296 | D3DXTessellateNPatches@24 | |
| 297 | D3DXTessellateRectPatch@20 | |
| 298 | D3DXTessellateTriPatch@20 | |
| 299 | D3DXTriPatchSize@12 | |
| 300 | D3DXUVAtlasCreate@76 | |
| 301 | D3DXUVAtlasPack@44 | |
| 302 | D3DXUVAtlasPartition@68 | |
| 303 | D3DXValidMesh@12 | |
| 304 | D3DXValidPatchMesh@16 | |
| 305 | D3DXVec2BaryCentric@24 | |
| 306 | D3DXVec2CatmullRom@24 | |
| 307 | D3DXVec2Hermite@24 | |
| 308 | D3DXVec2Normalize@8 | |
| 309 | D3DXVec2Transform@12 | |
| 310 | D3DXVec2TransformArray@24 | |
| 311 | D3DXVec2TransformCoord@12 | |
| 312 | D3DXVec2TransformCoordArray@24 | |
| 313 | D3DXVec2TransformNormal@12 | |
| 314 | D3DXVec2TransformNormalArray@24 | |
| 315 | D3DXVec3BaryCentric@24 | |
| 316 | D3DXVec3CatmullRom@24 | |
| 317 | D3DXVec3Hermite@24 | |
| 318 | D3DXVec3Normalize@8 | |
| 319 | D3DXVec3Project@24 | |
| 320 | D3DXVec3ProjectArray@36 | |
| 321 | D3DXVec3Transform@12 | |
| 322 | D3DXVec3TransformArray@24 | |
| 323 | D3DXVec3TransformCoord@12 | |
| 324 | D3DXVec3TransformCoordArray@24 | |
| 325 | D3DXVec3TransformNormal@12 | |
| 326 | D3DXVec3TransformNormalArray@24 | |
| 327 | D3DXVec3Unproject@24 | |
| 328 | D3DXVec3UnprojectArray@36 | |
| 329 | D3DXVec4BaryCentric@24 | |
| 330 | D3DXVec4CatmullRom@24 | |
| 331 | D3DXVec4Cross@16 | |
| 332 | D3DXVec4Hermite@24 | |
| 333 | D3DXVec4Normalize@8 | |
| 334 | D3DXVec4Transform@12 | |
| 335 | D3DXVec4TransformArray@24 | |
| 336 | D3DXWeldVertices@28 |
lib/libc/mingw/lib32/d3dx9d.def created+269| ... | ... | @@ -0,0 +1,269 @@ |
| 1 | LIBRARY d3dx9d.dll | |
| 2 | EXPORTS | |
| 3 | D3DXAssembleShader@28 | |
| 4 | D3DXAssembleShaderFromFileA@24 | |
| 5 | D3DXAssembleShaderFromFileW@24 | |
| 6 | D3DXAssembleShaderFromResourceA@28 | |
| 7 | D3DXAssembleShaderFromResourceW@28 | |
| 8 | D3DXBoxBoundProbe@16 | |
| 9 | D3DXCheckCubeTextureRequirements@24 | |
| 10 | D3DXCheckTextureRequirements@28 | |
| 11 | D3DXCheckVersion@8 | |
| 12 | D3DXCheckVolumeTextureRequirements@32 | |
| 13 | D3DXCleanMesh@20 | |
| 14 | D3DXColorAdjustContrast@12 | |
| 15 | D3DXColorAdjustSaturation@12 | |
| 16 | D3DXCompileShader@40 | |
| 17 | D3DXCompileShaderFromFileA@36 | |
| 18 | D3DXCompileShaderFromFileW@36 | |
| 19 | D3DXCompileShaderFromResourceA@40 | |
| 20 | D3DXCompileShaderFromResourceW@40 | |
| 21 | D3DXComputeBoundingBox@20 | |
| 22 | D3DXComputeBoundingSphere@20 | |
| 23 | D3DXComputeNormalMap@24 | |
| 24 | D3DXComputeNormals@8 | |
| 25 | D3DXComputeTangent@24 | |
| 26 | D3DXConvertMeshSubsetToSingleStrip@20 | |
| 27 | D3DXConvertMeshSubsetToStrips@28 | |
| 28 | D3DXCpuOptimizations@4 | |
| 29 | D3DXCreateAnimationController@20 | |
| 30 | D3DXCreateAnimationSet@16 | |
| 31 | D3DXCreateBox@24 | |
| 32 | D3DXCreateBuffer@8 | |
| 33 | D3DXCreateCubeTexture@28 | |
| 34 | D3DXCreateCubeTextureFromFileA@12 | |
| 35 | D3DXCreateCubeTextureFromFileExA@52 | |
| 36 | D3DXCreateCubeTextureFromFileExW@52 | |
| 37 | D3DXCreateCubeTextureFromFileInMemory@16 | |
| 38 | D3DXCreateCubeTextureFromFileInMemoryEx@56 | |
| 39 | D3DXCreateCubeTextureFromFileW@12 | |
| 40 | D3DXCreateCubeTextureFromResourceA@16 | |
| 41 | D3DXCreateCubeTextureFromResourceExA@56 | |
| 42 | D3DXCreateCubeTextureFromResourceExW@56 | |
| 43 | D3DXCreateCubeTextureFromResourceW@16 | |
| 44 | D3DXCreateCylinder@32 | |
| 45 | D3DXCreateEffect@36 | |
| 46 | D3DXCreateEffectCompiler@28 | |
| 47 | D3DXCreateEffectCompilerFromFileA@24 | |
| 48 | D3DXCreateEffectCompilerFromFileW@24 | |
| 49 | D3DXCreateEffectCompilerFromResourceA@28 | |
| 50 | D3DXCreateEffectCompilerFromResourceW@28 | |
| 51 | D3DXCreateEffectFromFileA@32 | |
| 52 | D3DXCreateEffectFromFileW@32 | |
| 53 | D3DXCreateEffectFromResourceA@36 | |
| 54 | D3DXCreateEffectFromResourceW@36 | |
| 55 | D3DXCreateEffectPool@4 | |
| 56 | D3DXCreateFont@12 | |
| 57 | D3DXCreateFontIndirect@12 | |
| 58 | D3DXCreateFragmentLinker@12 | |
| 59 | D3DXCreateKeyFrameInterpolator@40 | |
| 60 | D3DXCreateLine@8 | |
| 61 | D3DXCreateMatrixStack@8 | |
| 62 | D3DXCreateMesh@24 | |
| 63 | D3DXCreateMeshFVF@24 | |
| 64 | D3DXCreateNPatchMesh@8 | |
| 65 | D3DXCreatePMeshFromStream@28 | |
| 66 | D3DXCreatePatchMesh@28 | |
| 67 | D3DXCreatePolygon@20 | |
| 68 | D3DXCreateRenderToEnvMap@28 | |
| 69 | D3DXCreateRenderToSurface@28 | |
| 70 | D3DXCreateSPMesh@20 | |
| 71 | D3DXCreateSkinInfo@16 | |
| 72 | D3DXCreateSkinInfoFVF@16 | |
| 73 | D3DXCreateSkinInfoFromBlendedMesh@16 | |
| 74 | D3DXCreateSphere@24 | |
| 75 | D3DXCreateSprite@8 | |
| 76 | D3DXCreateTeapot@12 | |
| 77 | D3DXCreateTextA@32 | |
| 78 | D3DXCreateTextW@32 | |
| 79 | D3DXCreateTexture@32 | |
| 80 | D3DXCreateTextureFromFileA@12 | |
| 81 | D3DXCreateTextureFromFileExA@56 | |
| 82 | D3DXCreateTextureFromFileExW@56 | |
| 83 | D3DXCreateTextureFromFileInMemory@16 | |
| 84 | D3DXCreateTextureFromFileInMemoryEx@60 | |
| 85 | D3DXCreateTextureFromFileW@12 | |
| 86 | D3DXCreateTextureFromResourceA@16 | |
| 87 | D3DXCreateTextureFromResourceExA@60 | |
| 88 | D3DXCreateTextureFromResourceExW@60 | |
| 89 | D3DXCreateTextureFromResourceW@16 | |
| 90 | D3DXCreateTorus@28 | |
| 91 | D3DXCreateVolumeTexture@36 | |
| 92 | D3DXCreateVolumeTextureFromFileA@12 | |
| 93 | D3DXCreateVolumeTextureFromFileExA@60 | |
| 94 | D3DXCreateVolumeTextureFromFileExW@60 | |
| 95 | D3DXCreateVolumeTextureFromFileInMemory@16 | |
| 96 | D3DXCreateVolumeTextureFromFileInMemoryEx@64 | |
| 97 | D3DXCreateVolumeTextureFromFileW@12 | |
| 98 | D3DXCreateVolumeTextureFromResourceA@16 | |
| 99 | D3DXCreateVolumeTextureFromResourceExA@64 | |
| 100 | D3DXCreateVolumeTextureFromResourceExW@64 | |
| 101 | D3DXCreateVolumeTextureFromResourceW@16 | |
| 102 | D3DXDeclaratorFromFVF@8 | |
| 103 | D3DXFVFFromDeclarator@8 | |
| 104 | D3DXFillCubeTexture@12 | |
| 105 | D3DXFillCubeTextureTX@16 | |
| 106 | D3DXFillTexture@12 | |
| 107 | D3DXFillTextureTX@16 | |
| 108 | D3DXFillVolumeTexture@12 | |
| 109 | D3DXFillVolumeTextureTX@16 | |
| 110 | D3DXFilterTexture@16 | |
| 111 | D3DXFindShaderComment@16 | |
| 112 | D3DXFloat16To32Array@12 | |
| 113 | D3DXFloat32To16Array@12 | |
| 114 | D3DXFrameAppendChild@8 | |
| 115 | D3DXFrameCalculateBoundingSphere@12 | |
| 116 | D3DXFrameDestroy@8 | |
| 117 | D3DXFrameFind@8 | |
| 118 | D3DXFrameNumNamedMatrices@4 | |
| 119 | D3DXFrameRegisterNamedMatrices@8 | |
| 120 | D3DXFresnelTerm@8 | |
| 121 | D3DXGatherFragments@28 | |
| 122 | D3DXGatherFragmentsFromFileA@24 | |
| 123 | D3DXGatherFragmentsFromFileW@24 | |
| 124 | D3DXGatherFragmentsFromResourceA@28 | |
| 125 | D3DXGatherFragmentsFromResourceW@28 | |
| 126 | D3DXGenerateOutputDecl@8 | |
| 127 | D3DXGeneratePMesh@28 | |
| 128 | D3DXGetDeclLength@4 | |
| 129 | D3DXGetDeclVertexSize@8 | |
| 130 | D3DXGetFVFVertexSize@4 | |
| 131 | D3DXGetImageInfoFromFileA@8 | |
| 132 | D3DXGetImageInfoFromFileInMemory@12 | |
| 133 | D3DXGetImageInfoFromFileW@8 | |
| 134 | D3DXGetImageInfoFromResourceA@12 | |
| 135 | D3DXGetImageInfoFromResourceW@12 | |
| 136 | D3DXGetShaderConstantTable@8 | |
| 137 | D3DXGetShaderDebugInfo@8 | |
| 138 | D3DXGetShaderInputSemantics@12 | |
| 139 | D3DXGetShaderOutputSemantics@12 | |
| 140 | D3DXGetShaderSamplers@12 | |
| 141 | D3DXGetTargetDescByName@12 | |
| 142 | D3DXGetTargetDescByVersion@12 | |
| 143 | D3DXIntersect@40 | |
| 144 | D3DXIntersectSubset@44 | |
| 145 | D3DXIntersectTri@32 | |
| 146 | D3DXLoadMeshFromXA@32 | |
| 147 | D3DXLoadMeshFromXInMemory@36 | |
| 148 | D3DXLoadMeshFromXResource@40 | |
| 149 | D3DXLoadMeshFromXW@32 | |
| 150 | D3DXLoadMeshFromXof@32 | |
| 151 | D3DXLoadMeshHierarchyFromXA@28 | |
| 152 | D3DXLoadMeshHierarchyFromXInMemory@32 | |
| 153 | D3DXLoadMeshHierarchyFromXW@28 | |
| 154 | D3DXLoadPatchMeshFromXof@28 | |
| 155 | D3DXLoadSkinMeshFromXof@36 | |
| 156 | D3DXLoadSurfaceFromFileA@32 | |
| 157 | D3DXLoadSurfaceFromFileInMemory@36 | |
| 158 | D3DXLoadSurfaceFromFileW@32 | |
| 159 | D3DXLoadSurfaceFromMemory@40 | |
| 160 | D3DXLoadSurfaceFromResourceA@36 | |
| 161 | D3DXLoadSurfaceFromResourceW@36 | |
| 162 | D3DXLoadSurfaceFromSurface@32 | |
| 163 | D3DXLoadVolumeFromFileA@32 | |
| 164 | D3DXLoadVolumeFromFileInMemory@36 | |
| 165 | D3DXLoadVolumeFromFileW@32 | |
| 166 | D3DXLoadVolumeFromMemory@44 | |
| 167 | D3DXLoadVolumeFromResourceA@36 | |
| 168 | D3DXLoadVolumeFromResourceW@36 | |
| 169 | D3DXLoadVolumeFromVolume@32 | |
| 170 | D3DXMatrixAffineTransformation@20 | |
| 171 | D3DXMatrixDeterminant@4 | |
| 172 | D3DXMatrixInverse@12 | |
| 173 | D3DXMatrixLookAtLH@16 | |
| 174 | D3DXMatrixLookAtRH@16 | |
| 175 | D3DXMatrixMultiply@12 | |
| 176 | D3DXMatrixMultiplyTranspose@12 | |
| 177 | D3DXMatrixOrthoLH@20 | |
| 178 | D3DXMatrixOrthoOffCenterLH@28 | |
| 179 | D3DXMatrixOrthoOffCenterRH@28 | |
| 180 | D3DXMatrixOrthoRH@20 | |
| 181 | D3DXMatrixPerspectiveFovLH@20 | |
| 182 | D3DXMatrixPerspectiveFovRH@20 | |
| 183 | D3DXMatrixPerspectiveLH@20 | |
| 184 | D3DXMatrixPerspectiveOffCenterLH@28 | |
| 185 | D3DXMatrixPerspectiveOffCenterRH@28 | |
| 186 | D3DXMatrixPerspectiveRH@20 | |
| 187 | D3DXMatrixReflect@8 | |
| 188 | D3DXMatrixRotationAxis@12 | |
| 189 | D3DXMatrixRotationQuaternion@8 | |
| 190 | D3DXMatrixRotationX@8 | |
| 191 | D3DXMatrixRotationY@8 | |
| 192 | D3DXMatrixRotationYawPitchRoll@16 | |
| 193 | D3DXMatrixRotationZ@8 | |
| 194 | D3DXMatrixScaling@16 | |
| 195 | D3DXMatrixShadow@12 | |
| 196 | D3DXMatrixTransformation@28 | |
| 197 | D3DXMatrixTranslation@16 | |
| 198 | D3DXMatrixTranspose@8 | |
| 199 | D3DXPlaneFromPointNormal@12 | |
| 200 | D3DXPlaneFromPoints@16 | |
| 201 | D3DXPlaneIntersectLine@16 | |
| 202 | D3DXPlaneNormalize@8 | |
| 203 | D3DXPlaneTransform@12 | |
| 204 | D3DXPlaneTransformArray@24 | |
| 205 | D3DXQuaternionBaryCentric@24 | |
| 206 | D3DXQuaternionExp@8 | |
| 207 | D3DXQuaternionInverse@8 | |
| 208 | D3DXQuaternionLn@8 | |
| 209 | D3DXQuaternionMultiply@12 | |
| 210 | D3DXQuaternionNormalize@8 | |
| 211 | D3DXQuaternionRotationAxis@12 | |
| 212 | D3DXQuaternionRotationMatrix@8 | |
| 213 | D3DXQuaternionRotationYawPitchRoll@16 | |
| 214 | D3DXQuaternionSlerp@16 | |
| 215 | D3DXQuaternionSquad@24 | |
| 216 | D3DXQuaternionSquadSetup@28 | |
| 217 | D3DXQuaternionToAxisAngle@12 | |
| 218 | D3DXRectPatchSize@12 | |
| 219 | D3DXSaveMeshHierarchyToFileA@20 | |
| 220 | D3DXSaveMeshHierarchyToFileW@20 | |
| 221 | D3DXSaveMeshToXA@28 | |
| 222 | D3DXSaveMeshToXW@28 | |
| 223 | D3DXSaveSurfaceToFileA@20 | |
| 224 | D3DXSaveSurfaceToFileW@20 | |
| 225 | D3DXSaveTextureToFileA@16 | |
| 226 | D3DXSaveTextureToFileW@16 | |
| 227 | D3DXSaveVolumeToFileA@20 | |
| 228 | D3DXSaveVolumeToFileW@20 | |
| 229 | D3DXSimplifyMesh@28 | |
| 230 | D3DXSphereBoundProbe@16 | |
| 231 | D3DXSplitMesh@36 | |
| 232 | D3DXTessellateNPatches@24 | |
| 233 | D3DXTessellateRectPatch@20 | |
| 234 | D3DXTessellateTriPatch@20 | |
| 235 | D3DXTriPatchSize@12 | |
| 236 | D3DXValidMesh@12 | |
| 237 | D3DXValidPatchMesh@16 | |
| 238 | D3DXVec2BaryCentric@24 | |
| 239 | D3DXVec2CatmullRom@24 | |
| 240 | D3DXVec2Hermite@24 | |
| 241 | D3DXVec2Normalize@8 | |
| 242 | D3DXVec2Transform@12 | |
| 243 | D3DXVec2TransformArray@24 | |
| 244 | D3DXVec2TransformCoord@12 | |
| 245 | D3DXVec2TransformCoordArray@24 | |
| 246 | D3DXVec2TransformNormal@12 | |
| 247 | D3DXVec2TransformNormalArray@24 | |
| 248 | D3DXVec3BaryCentric@24 | |
| 249 | D3DXVec3CatmullRom@24 | |
| 250 | D3DXVec3Hermite@24 | |
| 251 | D3DXVec3Normalize@8 | |
| 252 | D3DXVec3Project@24 | |
| 253 | D3DXVec3ProjectArray@36 | |
| 254 | D3DXVec3Transform@12 | |
| 255 | D3DXVec3TransformArray@24 | |
| 256 | D3DXVec3TransformCoord@12 | |
| 257 | D3DXVec3TransformCoordArray@24 | |
| 258 | D3DXVec3TransformNormal@12 | |
| 259 | D3DXVec3TransformNormalArray@24 | |
| 260 | D3DXVec3Unproject@24 | |
| 261 | D3DXVec3UnprojectArray@36 | |
| 262 | D3DXVec4BaryCentric@24 | |
| 263 | D3DXVec4CatmullRom@24 | |
| 264 | D3DXVec4Cross@16 | |
| 265 | D3DXVec4Hermite@24 | |
| 266 | D3DXVec4Normalize@8 | |
| 267 | D3DXVec4Transform@12 | |
| 268 | D3DXVec4TransformArray@24 | |
| 269 | D3DXWeldVertices@28 |
lib/libc/mingw/lib32/d3dxof.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY d3dxof.dll | |
| 2 | EXPORTS | |
| 3 | DirectXFileCreate@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 | ; | |
| 6 | LIBRARY "DAVHLPR.dll" | |
| 7 | EXPORTS | |
| 8 | DavAddConnection@24 | |
| 9 | DavCheckAndConvertHttpUrlToUncName@32 | |
| 10 | DavDeleteConnection@4 | |
| 11 | DavFlushFile@4 | |
| 12 | DavGetExtendedError@16 | |
| 13 | DavGetHTTPFromUNCPath@12 | |
| 14 | DavGetServerPortAndPhysicalName@20 | |
| 15 | DavGetUNCFromHTTPPath@12 | |
| 16 | DavRemoveDummyShareFromFileName@4 | |
| 17 | DavRemoveDummyShareFromFileNameEx@8 | |
| 18 | UtfUrlStrToWideStr@16 | |
| 19 | WideStrToUtfUrlStr@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 | ; | |
| 6 | LIBRARY "dbgeng.dll" | |
| 7 | EXPORTS | |
| 8 | DebugConnect@12 | |
| 9 | DebugConnectWide@12 | |
| 10 | DebugCreate@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 | ; | |
| 6 | LIBRARY "DEVMGR.DLL" | |
| 7 | EXPORTS | |
| 8 | DeviceProperties_RunDLLA@16 | |
| 9 | DeviceProperties_RunDLLW@16 | |
| 10 | DevicePropertiesA@16 | |
| 11 | DevicePropertiesW@16 | |
| 12 | DeviceManager_ExecuteA@16 | |
| 13 | DeviceManager_ExecuteW@16 | |
| 14 | DeviceProblemTextA@20 | |
| 15 | DeviceProblemTextW@20 | |
| 16 | DeviceProblemWizardA@12 | |
| 17 | DeviceProblemWizardW@12 | |
| 18 | DeviceAdvancedPropertiesA@12 | |
| 19 | DeviceAdvancedPropertiesW@12 | |
| 20 | DeviceCreateHardwarePage@8 | |
| 21 | DeviceCreateHardwarePageEx@16 | |
| 22 | DevicePropertiesExA@20 | |
| 23 | DevicePropertiesExW@20 | |
| 24 | DeviceProblenWizard_RunDLLA@16 | |
| 25 | DeviceProblenWizard_RunDLLW@16 | |
| 26 | DeviceCreateHardwarePageCustom@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 | ; | |
| 6 | LIBRARY "DEVOBJ.dll" | |
| 7 | EXPORTS | |
| 8 | DevObjBuildClassInfoList@24 | |
| 9 | DevObjClassGuidsFromName@24 | |
| 10 | DevObjClassNameFromGuid@24 | |
| 11 | DevObjCreateDevRegKey@24 | |
| 12 | DevObjCreateDeviceInfo@24 | |
| 13 | DevObjCreateDeviceInfoList@20 | |
| 14 | DevObjCreateDeviceInterface@24 | |
| 15 | DevObjCreateDeviceInterfaceRegKey@20 | |
| 16 | DevObjDeleteAllInterfacesForDevice@8 | |
| 17 | DevObjDeleteDevRegKey@20 | |
| 18 | DevObjDeleteDevice@8 | |
| 19 | DevObjDeleteDeviceInfo@8 | |
| 20 | DevObjDeleteDeviceInterfaceData@8 | |
| 21 | DevObjDeleteDeviceInterfaceRegKey@12 | |
| 22 | DevObjDestroyDeviceInfoList@4 | |
| 23 | DevObjEnumDeviceInfo@12 | |
| 24 | DevObjEnumDeviceInterfaces@20 | |
| 25 | DevObjGetClassDescription@24 | |
| 26 | DevObjGetClassDevs@24 | |
| 27 | DevObjGetClassProperty@36 | |
| 28 | DevObjGetClassPropertyKeys@28 | |
| 29 | DevObjGetClassRegistryProperty@32 | |
| 30 | DevObjGetDeviceInfoDetail@12 | |
| 31 | DevObjGetDeviceInfoListClass@8 | |
| 32 | DevObjGetDeviceInfoListDetail@8 | |
| 33 | DevObjGetDeviceInstanceId@20 | |
| 34 | DevObjGetDeviceInterfaceAlias@16 | |
| 35 | DevObjGetDeviceInterfaceDetail@24 | |
| 36 | DevObjGetDeviceInterfaceProperty@32 | |
| 37 | DevObjGetDeviceInterfacePropertyKeys@24 | |
| 38 | DevObjGetDeviceProperty@32 | |
| 39 | DevObjGetDevicePropertyKeys@24 | |
| 40 | DevObjGetDeviceRegistryProperty@28 | |
| 41 | DevObjLocateDevice@16 | |
| 42 | DevObjOpenClassRegKey@20 | |
| 43 | DevObjOpenDevRegKey@24 | |
| 44 | DevObjOpenDeviceInfo@20 | |
| 45 | DevObjOpenDeviceInterface@16 | |
| 46 | DevObjOpenDeviceInterfaceRegKey@16 | |
| 47 | DevObjRegisterDeviceInfo@24 | |
| 48 | DevObjRemoveDeviceInterface@8 | |
| 49 | DevObjSetClassProperty@32 | |
| 50 | DevObjSetClassRegistryProperty@24 | |
| 51 | DevObjSetDeviceInfoDetail@12 | |
| 52 | DevObjSetDeviceInterfaceDefault@16 | |
| 53 | DevObjSetDeviceInterfaceProperty@28 | |
| 54 | DevObjSetDeviceProperty@28 | |
| 55 | DevObjSetDeviceRegistryProperty@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 | ; | |
| 6 | LIBRARY "DEVRTL.dll" | |
| 7 | EXPORTS | |
| 8 | DevRtlCloseTextLogSection@12 | |
| 9 | DevRtlCreateTextLogSectionA@16 | |
| 10 | DevRtlCreateTextLogSectionW@16 | |
| 11 | DevRtlGetThreadLogToken@0 | |
| 12 | DevRtlSetThreadLogToken@8 | |
| 13 | DevRtlWriteTextLog@0 | |
| 14 | DevRtlWriteTextLogError@0 | |
| 15 | NdxTableAddObject@16 | |
| 16 | NdxTableAddObjectToList@12 | |
| 17 | NdxTableClose@8 | |
| 18 | NdxTableFirstObject@12 | |
| 19 | NdxTableFirstObjectInList@12 | |
| 20 | NdxTableGetObjectName@16 | |
| 21 | NdxTableGetObjectType@8 | |
| 22 | NdxTableGetObjectTypeCount@8 | |
| 23 | NdxTableGetObjectTypeName@20 | |
| 24 | NdxTableGetPropertyTypeClass@16 | |
| 25 | NdxTableGetPropertyTypeCount@12 | |
| 26 | NdxTableGetPropertyTypeName@24 | |
| 27 | NdxTableGetPropertyValue@20 | |
| 28 | NdxTableNextObject@4 | |
| 29 | NdxTableObjectFromName@16 | |
| 30 | NdxTableObjectFromPointer@12 | |
| 31 | NdxTableOpen@16 | |
| 32 | NdxTableRemoveObject@4 | |
| 33 | NdxTableRemoveObjectFromList@12 | |
| 34 | NdxTableSetObjectPointer@12 | |
| 35 | NdxTableSetPropertyValue@16 | |
| 36 | NdxTableSetTypeDefinition@16 |
lib/libc/mingw/lib32/dhcpcsvc.def+2| ... | ... | @@ -11,6 +11,7 @@ DhcpDeRegisterOptions@4 |
| 11 | 11 | DhcpDeRegisterParamChange@12 |
| 12 | 12 | DhcpDelPersistentRequestParams@8 |
| 13 | 13 | DhcpEnableDhcp@8 |
| 14 | DhcpEnableDhcpAdvanced@24 | |
| 14 | 15 | DhcpEnableTracing@4 |
| 15 | 16 | DhcpEnumClasses@16 |
| 16 | 17 | DhcpEnumInterfaces@4 |
| ... | ... | @@ -31,6 +32,7 @@ DhcpGlobalServiceSyncEvent DATA |
| 31 | 32 | DhcpGlobalTerminateEvent DATA |
| 32 | 33 | DhcpHandlePnPEvent@20 |
| 33 | 34 | DhcpIsEnabled@8 |
| 35 | DhcpIsMeteredDetected@8 | |
| 34 | 36 | DhcpLeaseIpAddress@24 |
| 35 | 37 | DhcpLeaseIpAddressEx@32 |
| 36 | 38 | DhcpNotifyConfigChange@28 |
lib/libc/mingw/lib32/dhcpcsvc6.def+13| ... | ... | @@ -6,12 +6,25 @@ |
| 6 | 6 | LIBRARY "dhcpcsvc6.DLL" |
| 7 | 7 | EXPORTS |
| 8 | 8 | Dhcpv6AcquireParameters@4 |
| 9 | Dhcpv6CApiCleanup@0 | |
| 10 | Dhcpv6CApiInitialize@4 | |
| 11 | Dhcpv6CancelOperation@0 | |
| 12 | Dhcpv6EnableDhcp@8 | |
| 13 | Dhcpv6EnableTracing@4 | |
| 9 | 14 | Dhcpv6FreeLeaseInfo@4 |
| 15 | Dhcpv6FreeLeaseInfoArray@8 | |
| 16 | Dhcpv6GetTraceArray@4 | |
| 17 | Dhcpv6GetUserClasses@16 | |
| 10 | 18 | Dhcpv6IsEnabled@8 |
| 11 | 19 | Dhcpv6Main@4 |
| 12 | 20 | Dhcpv6QueryLeaseInfo@8 |
| 21 | Dhcpv6QueryLeaseInfoArray@12 | |
| 13 | 22 | Dhcpv6ReleaseParameters@4 |
| 14 | 23 | Dhcpv6ReleasePrefix@12 |
| 24 | Dhcpv6ReleasePrefixEx@16 | |
| 15 | 25 | Dhcpv6RenewPrefix@20 |
| 26 | Dhcpv6RenewPrefixEx@24 | |
| 16 | 27 | Dhcpv6RequestParams@32 |
| 17 | 28 | Dhcpv6RequestPrefix@16 |
| 29 | Dhcpv6RequestPrefixEx@20 | |
| 30 | Dhcpv6SetUserClass@12 |
lib/libc/mingw/lib32/diagnosticdataquery.def created+39| ... | ... | @@ -0,0 +1,39 @@ |
| 1 | LIBRARY "DiagnosticDataQuery.dll" | |
| 2 | EXPORTS | |
| 3 | DdqCancelDiagnosticRecordOperation@4 | |
| 4 | DdqCloseSession@4 | |
| 5 | DdqCreateSession@8 | |
| 6 | DdqExtractDiagnosticReport@16 | |
| 7 | DdqFreeDiagnosticRecordLocaleTags@4 | |
| 8 | DdqFreeDiagnosticRecordPage@4 | |
| 9 | DdqFreeDiagnosticRecordProducerCategories@4 | |
| 10 | DdqFreeDiagnosticRecordProducers@4 | |
| 11 | DdqFreeDiagnosticReport@4 | |
| 12 | DdqGetDiagnosticDataAccessLevelAllowed@4 | |
| 13 | DdqGetDiagnosticRecordAtIndex@12 | |
| 14 | DdqGetDiagnosticRecordBinaryDistribution@24 | |
| 15 | DdqGetDiagnosticRecordCategoryAtIndex@12 | |
| 16 | DdqGetDiagnosticRecordCategoryCount@8 | |
| 17 | DdqGetDiagnosticRecordCount@8 | |
| 18 | DdqGetDiagnosticRecordLocaleTagAtIndex@12 | |
| 19 | DdqGetDiagnosticRecordLocaleTagCount@8 | |
| 20 | DdqGetDiagnosticRecordLocaleTags@12 | |
| 21 | DdqGetDiagnosticRecordPage@28 | |
| 22 | DdqGetDiagnosticRecordPayload@16 | |
| 23 | DdqGetDiagnosticRecordProducerAtIndex@12 | |
| 24 | DdqGetDiagnosticRecordProducerCategories@12 | |
| 25 | DdqGetDiagnosticRecordProducerCount@8 | |
| 26 | DdqGetDiagnosticRecordProducers@8 | |
| 27 | DdqGetDiagnosticRecordStats@20 | |
| 28 | DdqGetDiagnosticRecordSummary@16 | |
| 29 | DdqGetDiagnosticRecordTagDistribution@20 | |
| 30 | DdqGetDiagnosticReport@12 | |
| 31 | DdqGetDiagnosticReportAtIndex@12 | |
| 32 | DdqGetDiagnosticReportCount@8 | |
| 33 | DdqGetDiagnosticReportStoreReportCount@12 | |
| 34 | DdqGetSessionAccessLevel@8 | |
| 35 | DdqGetTranscriptConfiguration@8 | |
| 36 | DdqIsDiagnosticRecordSampledIn@36 | |
| 37 | DdqSetTranscriptConfiguration@8 | |
| 38 | UtcSendTraceLogging2@56 | |
| 39 | UtcSendTraceLogging@40 |
lib/libc/mingw/lib32/dinput.def created+5| ... | ... | @@ -0,0 +1,5 @@ |
| 1 | LIBRARY dinput.dll | |
| 2 | EXPORTS | |
| 3 | DirectInputCreateA@16 | |
| 4 | DirectInputCreateEx@20 | |
| 5 | DirectInputCreateW@16 |
lib/libc/mingw/lib32/dinput8.def+11-1| ... | ... | @@ -1,3 +1,13 @@ |
| 1 | LIBRARY dinput8.dll | |
| 1 | ; | |
| 2 | ; Definition file of DINPUT8.dll | |
| 3 | ; Automatic generated by gendef | |
| 4 | ; written by Kai Tietz 2008 | |
| 5 | ; | |
| 6 | LIBRARY "DINPUT8.dll" | |
| 2 | 7 | EXPORTS |
| 3 | 8 | DirectInput8Create@20 |
| 9 | DllCanUnloadNow@0 | |
| 10 | DllGetClassObject@12 | |
| 11 | DllRegisterServer@0 | |
| 12 | DllUnregisterServer@0 | |
| 13 | GetdfDIJoystick@0 |
lib/libc/mingw/lib32/directml.def created+6| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | LIBRARY directml | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | DMLCreateDevice1@20 | |
| 6 | DMLCreateDevice@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 | ; | |
| 6 | LIBRARY "DismApi.DLL" | |
| 7 | EXPORTS | |
| 8 | DismAddCapability@32 | |
| 9 | DismAddDriver@12 | |
| 10 | DismAddPackage@28 | |
| 11 | DismApplyUnattend@12 | |
| 12 | DismCheckImageHealth@24 | |
| 13 | DismCleanupMountpoints@0 | |
| 14 | DismCloseSession@4 | |
| 15 | DismCommitImage@20 | |
| 16 | DismDelete@4 | |
| 17 | DismDisableFeature@28 | |
| 18 | DismEnableFeature@44 | |
| 19 | DismGetCapabilities@12 | |
| 20 | DismGetCapabilityInfo@12 | |
| 21 | DismGetDriverInfo@20 | |
| 22 | DismGetDrivers@16 | |
| 23 | DismGetFeatureInfo@20 | |
| 24 | DismGetFeatureParent@24 | |
| 25 | DismGetFeatures@20 | |
| 26 | DismGetImageInfo@12 | |
| 27 | DismGetLastErrorMessage@4 | |
| 28 | DismGetMountedImageInfo@8 | |
| 29 | DismGetPackageInfo@16 | |
| 30 | DismGetPackageInfoEx@16 | |
| 31 | DismGetPackages@12 | |
| 32 | DismGetReservedStorageState@8 | |
| 33 | DismInitialize@12 | |
| 34 | DismMountImage@36 | |
| 35 | DismOpenSession@16 | |
| 36 | DismRemountImage@4 | |
| 37 | DismRemoveCapability@20 | |
| 38 | DismRemoveDriver@8 | |
| 39 | DismRemovePackage@24 | |
| 40 | DismRestoreImageHealth@28 | |
| 41 | DismSetReservedStorageState@8 | |
| 42 | DismShutdown@0 | |
| 43 | DismUnmountImage@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 @@ |
| 1 | LIBRARY DLCAPI.DLL | |
| 2 | EXPORTS | |
| 3 | AcsLan@8 | |
| 4 | DlcCallDriver@24 | |
| 5 | NtAcsLan@16 |
lib/libc/mingw/lib32/dnsapi.def+1| ... | ... | @@ -40,6 +40,7 @@ DnsAsyncRegisterTerm |
| 40 | 40 | DnsCancelQuery@4 |
| 41 | 41 | DnsCheckNrptRuleIntegrity@4 |
| 42 | 42 | DnsCheckNrptRules@12 |
| 43 | DnsCleanupTcpConnections@4 | |
| 43 | 44 | DnsConnectionDeletePolicyEntries@4 |
| 44 | 45 | DnsConnectionDeletePolicyEntriesPrivate@8 |
| 45 | 46 | DnsConnectionDeleteProxyInfo@8 |
lib/libc/mingw/lib32/dnsperf.def created+7| ... | ... | @@ -0,0 +1,7 @@ |
| 1 | LIBRARY dnsperf | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CloseDnsPerformanceData@0 | |
| 6 | CollectDnsPerformanceData@16 | |
| 7 | OpenDnsPerformanceData@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 | ; | |
| 6 | LIBRARY "DPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | CryptProtectDataNoUI@36 | |
| 9 | CryptProtectMemory@12 | |
| 10 | CryptResetMachineCredentials@4 | |
| 11 | CryptUnprotectDataNoUI@36 | |
| 12 | CryptUnprotectMemory@12 | |
| 13 | CryptUpdateProtectedState@20 | |
| 14 | iCryptIdentifyProtection@20 |
lib/libc/mingw/lib32/dplayx.def created+8| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | LIBRARY dplayx.dll | |
| 2 | EXPORTS | |
| 3 | DirectPlayCreate@12 | |
| 4 | DirectPlayEnumerate@8 | |
| 5 | DirectPlayEnumerateA@8 | |
| 6 | DirectPlayEnumerateW@8 | |
| 7 | DirectPlayLobbyCreateA@20 | |
| 8 | DirectPlayLobbyCreateW@20 |
lib/libc/mingw/lib32/dpnaddr.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY dpnaddr.dll | |
| 2 | EXPORTS | |
| 3 | DirectPlay8AddressCreate@12 |
lib/libc/mingw/lib32/dpnet.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY dpnet.dll | |
| 2 | EXPORTS | |
| 3 | DirectPlay8Create@12 |
lib/libc/mingw/lib32/dpnlobby.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY dpnlobby.def | |
| 2 | EXPORTS | |
| 3 | DirectPlay8LobbyCreate@12 |
lib/libc/mingw/lib32/dpvoice.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY dpvoice.dll | |
| 2 | EXPORTS | |
| 3 | DirectPlayVoiceCreate@12 |
lib/libc/mingw/lib32/dsetup.def created+20| ... | ... | @@ -0,0 +1,20 @@ |
| 1 | LIBRARY dsetup.dll | |
| 2 | EXPORTS | |
| 3 | DirectXDeviceDriverSetupA@16 | |
| 4 | DirectXDeviceDriverSetupW@16 | |
| 5 | DirectXLoadString@12 | |
| 6 | DirectXRegisterApplicationA@8 | |
| 7 | DirectXRegisterApplicationW@8 | |
| 8 | DirectXSetupA@12 | |
| 9 | DirectXSetupCallback@20 | |
| 10 | DirectXSetupGetEULAA@12 | |
| 11 | DirectXSetupGetEULAW@12 | |
| 12 | DirectXSetupGetFileVersion@12 | |
| 13 | DirectXSetupGetVersion@8 | |
| 14 | DirectXSetupIsEng@0 | |
| 15 | DirectXSetupIsJapan@0 | |
| 16 | DirectXSetupIsJapanNec@0 | |
| 17 | DirectXSetupSetCallback@4 | |
| 18 | DirectXSetupShowEULA@4 | |
| 19 | DirectXSetupW@12 | |
| 20 | DirectXUnRegisterApplication@8 |
lib/libc/mingw/lib32/dsparse.def created+22| ... | ... | @@ -0,0 +1,22 @@ |
| 1 | LIBRARY "dsparse.dll" | |
| 2 | EXPORTS | |
| 3 | DsCrackSpn2A@36 | |
| 4 | DsCrackSpn2W@36 | |
| 5 | DsCrackSpn3W@44 | |
| 6 | DsCrackSpn4W@48 | |
| 7 | DsCrackSpnA@32 | |
| 8 | DsCrackSpnW@32 | |
| 9 | DsCrackUnquotedMangledRdnA@16 | |
| 10 | DsCrackUnquotedMangledRdnW@16 | |
| 11 | DsGetRdnW@24 | |
| 12 | DsIsMangledDnA@8 | |
| 13 | DsIsMangledDnW@8 | |
| 14 | DsIsMangledRdnValueA@12 | |
| 15 | DsIsMangledRdnValueW@12 | |
| 16 | DsMakeSpn2W@32 | |
| 17 | DsMakeSpnA@28 | |
| 18 | DsMakeSpnW@28 | |
| 19 | DsQuoteRdnValueA@16 | |
| 20 | DsQuoteRdnValueW@16 | |
| 21 | DsUnquoteRdnValueA@16 | |
| 22 | DsUnquoteRdnValueW@16 |
lib/libc/mingw/lib32/dxapi.def created+9| ... | ... | @@ -0,0 +1,9 @@ |
| 1 | LIBRARY dxapi.sys | |
| 2 | EXPORTS | |
| 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 @@ |
| 1 | LIBRARY dxcore | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | DXCoreCreateAdapterFactory@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 | ; | |
| 6 | LIBRARY "GenericUI.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow@0 | |
| 9 | DllGetClassObject@12 | |
| 10 | DllRegisterServer@4 | |
| 11 | DllUnregisterServer@4 | |
| 12 | EapPeerFreeErrorMemory@4 | |
| 13 | EapPeerFreeMemory@4 | |
| 14 | EapPeerInvokeIdentityUI@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 | ; | |
| 6 | LIBRARY "eapphost.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow@0 | |
| 9 | DllGetClassObject@12 | |
| 10 | DllRegisterServer@0 | |
| 11 | DllUnregisterServer@0 | |
| 12 | InitializeEapHost@0 | |
| 13 | UninitializeEapHost@0 |
lib/libc/mingw/lib32/esent.def+69-245| ... | ... | @@ -5,249 +5,18 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "ESENT.dll" |
| 7 | 7 | EXPORTS |
| 8 | JetAddColumnA@28@28 | |
| 9 | JetAddColumnW@28@28 | |
| 10 | JetAttachDatabase2A@16@16 | |
| 11 | JetAttachDatabase2W@16@16 | |
| 12 | JetAttachDatabaseA@12@12 | |
| 13 | JetAttachDatabaseW@12@12 | |
| 14 | JetAttachDatabaseWithStreamingA@24@24 | |
| 15 | JetAttachDatabaseWithStreamingW@24@24 | |
| 16 | JetBackupA@12@12 | |
| 17 | JetBackupInstanceA@16@16 | |
| 18 | JetBackupInstanceW@16@16 | |
| 19 | JetBackupW@12@12 | |
| 20 | JetBeginExternalBackup@4@4 | |
| 21 | JetBeginExternalBackupInstance@8@8 | |
| 22 | JetBeginSessionA@16@16 | |
| 23 | JetBeginSessionW@16@16 | |
| 24 | JetBeginTransaction2@8@8 | |
| 25 | JetBeginTransaction@4@4 | |
| 26 | JetCloseDatabase@12@12 | |
| 27 | JetCloseFile@4@4 | |
| 28 | JetCloseFileInstance@8@8 | |
| 29 | JetCloseTable@8@8 | |
| 30 | JetCommitTransaction@8@8 | |
| 31 | JetCompactA@24@24 | |
| 32 | JetCompactW@24@24 | |
| 33 | JetComputeStats@8@8 | |
| 34 | JetConvertDDLA@20@20 | |
| 35 | JetConvertDDLW@20@20 | |
| 36 | JetCreateDatabase2A@20@20 | |
| 37 | JetCreateDatabase2W@20@20 | |
| 38 | JetCreateDatabaseA@20@20 | |
| 39 | JetCreateDatabaseW@20@20 | |
| 40 | JetCreateDatabaseWithStreamingA@28@28 | |
| 41 | JetCreateDatabaseWithStreamingW@28@28 | |
| 42 | JetCreateIndex2A@16@16 | |
| 43 | JetCreateIndex2W@16@16 | |
| 44 | JetCreateIndexA@28@28 | |
| 45 | JetCreateIndexW@28@28 | |
| 46 | JetCreateInstance2A@16@16 | |
| 47 | JetCreateInstance2W@16@16 | |
| 48 | JetCreateInstanceA@8@8 | |
| 49 | JetCreateInstanceW@8@8 | |
| 50 | JetCreateTableA@24@24 | |
| 51 | JetCreateTableColumnIndex2A@12@12 | |
| 52 | JetCreateTableColumnIndex2W@12@12 | |
| 53 | JetCreateTableColumnIndexA@12@12 | |
| 54 | JetCreateTableColumnIndexW@12@12 | |
| 55 | JetCreateTableW@24@24 | |
| 56 | JetDBUtilitiesA@4@4 | |
| 57 | JetDBUtilitiesW@4@4 | |
| 58 | JetDefragment2A@28@28 | |
| 59 | JetDefragment2W@28@28 | |
| 60 | JetDefragment3A@32@32 | |
| 61 | JetDefragment3W@32@32 | |
| 62 | JetDefragmentA@24@24 | |
| 63 | JetDefragmentW@24@24 | |
| 64 | JetDelete@8@8 | |
| 65 | JetDeleteColumn2A@16@16 | |
| 66 | JetDeleteColumn2W@16@16 | |
| 67 | JetDeleteColumnA@12@12 | |
| 68 | JetDeleteColumnW@12@12 | |
| 69 | JetDeleteIndexA@12@12 | |
| 70 | JetDeleteIndexW@12@12 | |
| 71 | JetDeleteTableA@12@12 | |
| 72 | JetDeleteTableW@12@12 | |
| 73 | JetDetachDatabase2A@12@12 | |
| 74 | JetDetachDatabase2W@12@12 | |
| 75 | JetDetachDatabaseA@8@8 | |
| 76 | JetDetachDatabaseW@8@8 | |
| 77 | JetDupCursor@16@16 | |
| 78 | JetDupSession@8@8 | |
| 79 | JetEnableMultiInstanceA@12@12 | |
| 80 | JetEnableMultiInstanceW@12@12 | |
| 81 | JetEndExternalBackup@0@0 | |
| 82 | JetEndExternalBackupInstance2@8@8 | |
| 83 | JetEndExternalBackupInstance@4@4 | |
| 84 | JetEndSession@8@8 | |
| 85 | JetEnumerateColumns@40@40 | |
| 86 | JetEscrowUpdate@36@36 | |
| 87 | JetExternalRestore2A@40@40 | |
| 88 | JetExternalRestore2W@40@40 | |
| 89 | JetExternalRestoreA@32@32 | |
| 90 | JetExternalRestoreW@32@32 | |
| 91 | JetFreeBuffer@4@4 | |
| 92 | JetGetAttachInfoA@12@12 | |
| 93 | JetGetAttachInfoInstanceA@16@16 | |
| 94 | JetGetAttachInfoInstanceW@16@16 | |
| 95 | JetGetAttachInfoW@12@12 | |
| 96 | JetGetBookmark@20@20 | |
| 97 | JetGetColumnInfoA@28@28 | |
| 98 | JetGetColumnInfoW@28@28 | |
| 99 | JetGetCounter@12@12 | |
| 100 | JetGetCurrentIndexA@16@16 | |
| 101 | JetGetCurrentIndexW@16@16 | |
| 102 | JetGetCursorInfo@20@20 | |
| 103 | JetGetDatabaseFileInfoA@16@16 | |
| 104 | JetGetDatabaseFileInfoW@16@16 | |
| 105 | JetGetDatabaseInfoA@20@20 | |
| 106 | JetGetDatabaseInfoW@20@20 | |
| 107 | JetGetDatabasePages@28@28 | |
| 108 | JetGetIndexInfoA@28@28 | |
| 109 | JetGetIndexInfoW@28@28 | |
| 110 | JetGetInstanceInfoA@8@8 | |
| 111 | JetGetInstanceInfoW@8@8 | |
| 112 | JetGetInstanceMiscInfo@16@16 | |
| 113 | JetGetLS@16@16 | |
| 114 | JetGetLock@12@12 | |
| 115 | JetGetLogFileInfoA@16@16 | |
| 116 | JetGetLogFileInfoW@16@16 | |
| 117 | JetGetLogInfoA@12@12 | |
| 118 | JetGetLogInfoInstance2A@20@20 | |
| 119 | JetGetLogInfoInstance2W@20@20 | |
| 120 | JetGetLogInfoInstanceA@16@16 | |
| 121 | JetGetLogInfoInstanceW@16@16 | |
| 122 | JetGetLogInfoW@12@12 | |
| 123 | JetGetMaxDatabaseSize@16@16 | |
| 124 | JetGetObjectInfoA@32@32 | |
| 125 | JetGetObjectInfoW@32@32 | |
| 126 | JetGetPageInfo@24@24 | |
| 127 | JetGetRecordPosition@16@16 | |
| 128 | JetGetRecordSize@16@16 | |
| 129 | JetGetResourceParam@16@16 | |
| 130 | JetGetSecondaryIndexBookmark@36@36 | |
| 131 | JetGetSessionInfo@16@16 | |
| 132 | JetGetSystemParameterA@24@24 | |
| 133 | JetGetSystemParameterW@24@24 | |
| 134 | JetGetTableColumnInfoA@24@24 | |
| 135 | JetGetTableColumnInfoW@24@24 | |
| 136 | JetGetTableIndexInfoA@24@24 | |
| 137 | JetGetTableIndexInfoW@24@24 | |
| 138 | JetGetTableInfoA@20@20 | |
| 139 | JetGetTableInfoW@20@20 | |
| 140 | JetGetThreadStats@8@8 | |
| 141 | JetGetTruncateLogInfoInstanceA@16@16 | |
| 142 | JetGetTruncateLogInfoInstanceW@16@16 | |
| 143 | JetGetVersion@8@8 | |
| 144 | JetGotoBookmark@16@16 | |
| 145 | JetGotoPosition@12@12 | |
| 146 | JetGotoSecondaryIndexBookmark@28@28 | |
| 147 | JetGrowDatabase@16@16 | |
| 148 | JetIdle@8@8 | |
| 149 | JetIndexRecordCount@16@16 | |
| 150 | JetInit2@8@8 | |
| 151 | JetInit3A@12@12 | |
| 152 | JetInit3W@12@12 | |
| 153 | JetInit@4@4 | |
| 154 | JetIntersectIndexes@20@20 | |
| 155 | JetMakeKey@20@20 | |
| 156 | JetMove@16@16 | |
| 157 | JetOSSnapshotAbort@8@8 | |
| 158 | JetOSSnapshotEnd@8@8 | |
| 159 | JetOSSnapshotFreezeA@16@16 | |
| 160 | JetOSSnapshotFreezeW@16@16 | |
| 161 | JetOSSnapshotGetFreezeInfoA@16@16 | |
| 162 | JetOSSnapshotGetFreezeInfoW@16@16 | |
| 163 | JetOSSnapshotPrepare@8@8 | |
| 164 | JetOSSnapshotPrepareInstance@12@12 | |
| 165 | JetOSSnapshotThaw@8@8 | |
| 166 | JetOSSnapshotTruncateLog@8@8 | |
| 167 | JetOSSnapshotTruncateLogInstance@12@12 | |
| 168 | JetOpenDatabaseA@20@20 | |
| 169 | JetOpenDatabaseW@20@20 | |
| 170 | JetOpenFileA@16@16 | |
| 171 | JetOpenFileInstanceA@20@20 | |
| 172 | JetOpenFileInstanceW@20@20 | |
| 173 | JetOpenFileSectionInstanceA@28@28 | |
| 174 | JetOpenFileSectionInstanceW@28@28 | |
| 175 | JetOpenFileW@16@16 | |
| 176 | JetOpenTableA@28@28 | |
| 177 | JetOpenTableW@28@28 | |
| 178 | JetOpenTempTable2@28@28 | |
| 179 | JetOpenTempTable3@28@28 | |
| 180 | JetOpenTempTable@24@24 | |
| 181 | JetOpenTemporaryTable@8@8 | |
| 182 | JetPrepareToCommitTransaction@16@16 | |
| 183 | JetPrepareUpdate@12@12 | |
| 184 | JetReadFile@16@16 | |
| 185 | JetReadFileInstance@20@20 | |
| 186 | JetRegisterCallback@24@24 | |
| 187 | JetRenameColumnA@20@20 | |
| 188 | JetRenameColumnW@20@20 | |
| 189 | JetRenameTableA@16@16 | |
| 190 | JetRenameTableW@16@16 | |
| 191 | JetResetCounter@8@8 | |
| 192 | JetResetSessionContext@4@4 | |
| 193 | JetResetTableSequential@12@12 | |
| 194 | JetRestore2A@12@12 | |
| 195 | JetRestore2W@12@12 | |
| 196 | JetRestoreA@8@8 | |
| 197 | JetRestoreInstanceA@16@16 | |
| 198 | JetRestoreInstanceW@16@16 | |
| 199 | JetRestoreW@8@8 | |
| 200 | JetRetrieveColumn@32@32 | |
| 201 | JetRetrieveColumns@16@16 | |
| 202 | JetRetrieveKey@24@24 | |
| 203 | JetRetrieveTaggedColumnList@28@28 | |
| 204 | JetRollback@8@8 | |
| 205 | JetSeek@12@12 | |
| 206 | JetSetColumn@28@28 | |
| 207 | JetSetColumnDefaultValueA@28@28 | |
| 208 | JetSetColumnDefaultValueW@28@28 | |
| 209 | JetSetColumns@16@16 | |
| 210 | JetSetCurrentIndex2A@16@16 | |
| 211 | JetSetCurrentIndex2W@16@16 | |
| 212 | JetSetCurrentIndex3A@20@20 | |
| 213 | JetSetCurrentIndex3W@20@20 | |
| 214 | JetSetCurrentIndex4A@24@24 | |
| 215 | JetSetCurrentIndex4W@24@24 | |
| 216 | JetSetCurrentIndexA@12@12 | |
| 217 | JetSetCurrentIndexW@12@12 | |
| 218 | JetSetDatabaseSizeA@16@16 | |
| 219 | JetSetDatabaseSizeW@16@16 | |
| 220 | JetSetIndexRange@12@12 | |
| 221 | JetSetLS@16@16 | |
| 222 | JetSetMaxDatabaseSize@16@16 | |
| 223 | JetSetResourceParam@16@16 | |
| 224 | JetSetSessionContext@8@8 | |
| 225 | JetSetSystemParameterA@20@20 | |
| 226 | JetSetSystemParameterW@20@20 | |
| 227 | JetSetTableSequential@12@12 | |
| 228 | JetSnapshotStartA@12@12 | |
| 229 | JetSnapshotStartW@12@12 | |
| 230 | JetSnapshotStop@8@8 | |
| 231 | JetStopBackup@0@0 | |
| 232 | JetStopBackupInstance@4@4 | |
| 233 | JetStopService@0@0 | |
| 234 | JetStopServiceInstance@4@4 | |
| 235 | JetTerm2@8@8 | |
| 236 | JetTerm@4@4 | |
| 237 | JetTracing@12@12 | |
| 238 | JetTruncateLog@0@0 | |
| 239 | JetTruncateLogInstance@4@4 | |
| 240 | JetUnregisterCallback@16@16 | |
| 241 | JetUpdate2@24@24 | |
| 242 | JetUpdate@20@20 | |
| 243 | JetUpgradeDatabaseA@16@16 | |
| 244 | JetUpgradeDatabaseW@16@16 | |
| 8 | DebugExtensionInitialize@8 | |
| 9 | DebugExtensionNotify@12 | |
| 10 | DebugExtensionUninitialize@0 | |
| 245 | 11 | JetAddColumn@28 |
| 246 | 12 | JetAddColumnA@28 |
| 247 | 13 | JetAddColumnW@28 |
| 248 | 14 | JetAttachDatabase2@16 |
| 249 | 15 | JetAttachDatabase2A@16 |
| 250 | 16 | JetAttachDatabase2W@16 |
| 17 | JetAttachDatabase3@20 | |
| 18 | JetAttachDatabase3A@20 | |
| 19 | JetAttachDatabase3W@20 | |
| 251 | 20 | JetAttachDatabase@12 |
| 252 | 21 | JetAttachDatabaseA@12 |
| 253 | 22 | JetAttachDatabaseW@12 |
| ... | ... | @@ -260,37 +29,53 @@ JetBackupInstance@16 |
| 260 | 29 | JetBackupInstanceA@16 |
| 261 | 30 | JetBackupInstanceW@16 |
| 262 | 31 | JetBackupW@12 |
| 32 | JetBeginDatabaseIncrementalReseed@12 | |
| 33 | JetBeginDatabaseIncrementalReseedA@12 | |
| 34 | JetBeginDatabaseIncrementalReseedW@12 | |
| 263 | 35 | JetBeginExternalBackup@4 |
| 264 | 36 | JetBeginExternalBackupInstance@8 |
| 265 | 37 | JetBeginSession@16 |
| 266 | 38 | JetBeginSessionA@16 |
| 267 | 39 | JetBeginSessionW@16 |
| 40 | JetBeginSurrogateBackup@16 | |
| 268 | 41 | JetBeginTransaction2@8 |
| 42 | JetBeginTransaction3@16 | |
| 269 | 43 | JetBeginTransaction@4 |
| 270 | 44 | JetCloseDatabase@12 |
| 271 | 45 | JetCloseFile@4 |
| 272 | 46 | JetCloseFileInstance@8 |
| 273 | 47 | JetCloseTable@8 |
| 48 | JetCommitTransaction2@16 | |
| 274 | 49 | JetCommitTransaction@8 |
| 275 | 50 | JetCompact@24 |
| 276 | 51 | JetCompactA@24 |
| 277 | 52 | JetCompactW@24 |
| 278 | 53 | JetComputeStats@8 |
| 54 | JetConfigureProcessForCrashDump@4 | |
| 55 | JetConsumeLogData@20 | |
| 279 | 56 | JetConvertDDL@20 |
| 280 | 57 | JetConvertDDLA@20 |
| 281 | 58 | JetConvertDDLW@20 |
| 282 | 59 | JetCreateDatabase2@20 |
| 283 | 60 | JetCreateDatabase2A@20 |
| 284 | 61 | JetCreateDatabase2W@20 |
| 62 | JetCreateDatabase3@24 | |
| 63 | JetCreateDatabase3A@24 | |
| 64 | JetCreateDatabase3W@24 | |
| 285 | 65 | JetCreateDatabase@20 |
| 286 | 66 | JetCreateDatabaseA@20 |
| 287 | 67 | JetCreateDatabaseW@20 |
| 288 | 68 | JetCreateDatabaseWithStreaming@28 |
| 289 | 69 | JetCreateDatabaseWithStreamingA@28 |
| 290 | 70 | JetCreateDatabaseWithStreamingW@28 |
| 71 | JetCreateEncryptionKey@16 | |
| 291 | 72 | JetCreateIndex2@16 |
| 292 | 73 | JetCreateIndex2A@16 |
| 293 | 74 | JetCreateIndex2W@16 |
| 75 | JetCreateIndex3A@16 | |
| 76 | JetCreateIndex3W@16 | |
| 77 | JetCreateIndex4A@16 | |
| 78 | JetCreateIndex4W@16 | |
| 294 | 79 | JetCreateIndex@28 |
| 295 | 80 | JetCreateIndexA@28 |
| 296 | 81 | JetCreateIndexW@28 |
| ... | ... | @@ -305,6 +90,12 @@ JetCreateTableA@24 |
| 305 | 90 | JetCreateTableColumnIndex2@12 |
| 306 | 91 | JetCreateTableColumnIndex2A@12 |
| 307 | 92 | JetCreateTableColumnIndex2W@12 |
| 93 | JetCreateTableColumnIndex3A@12 | |
| 94 | JetCreateTableColumnIndex3W@12 | |
| 95 | JetCreateTableColumnIndex4A@12 | |
| 96 | JetCreateTableColumnIndex4W@12 | |
| 97 | JetCreateTableColumnIndex5A@12 | |
| 98 | JetCreateTableColumnIndex5W@12 | |
| 308 | 99 | JetCreateTableColumnIndex@12 |
| 309 | 100 | JetCreateTableColumnIndexA@12 |
| 310 | 101 | JetCreateTableColumnIndexW@12 |
| ... | ... | @@ -312,6 +103,7 @@ JetCreateTableW@24 |
| 312 | 103 | JetDBUtilities@4 |
| 313 | 104 | JetDBUtilitiesA@4 |
| 314 | 105 | JetDBUtilitiesW@4 |
| 106 | JetDatabaseScan@24 | |
| 315 | 107 | JetDefragment2@28 |
| 316 | 108 | JetDefragment2A@28 |
| 317 | 109 | JetDefragment2W@28 |
| ... | ... | @@ -345,10 +137,14 @@ JetDupSession@8 |
| 345 | 137 | JetEnableMultiInstance@12 |
| 346 | 138 | JetEnableMultiInstanceA@12 |
| 347 | 139 | JetEnableMultiInstanceW@12 |
| 140 | JetEndDatabaseIncrementalReseed@24 | |
| 141 | JetEndDatabaseIncrementalReseedA@24 | |
| 142 | JetEndDatabaseIncrementalReseedW@24 | |
| 348 | 143 | JetEndExternalBackup@0 |
| 349 | 144 | JetEndExternalBackupInstance2@8 |
| 350 | 145 | JetEndExternalBackupInstance@4 |
| 351 | 146 | JetEndSession@8 |
| 147 | JetEndSurrogateBackup@8 | |
| 352 | 148 | JetEnumerateColumns@40 |
| 353 | 149 | JetEscrowUpdate@36 |
| 354 | 150 | JetExternalRestore2@40 |
| ... | ... | @@ -379,7 +175,8 @@ JetGetDatabaseFileInfoW@16 |
| 379 | 175 | JetGetDatabaseInfo@20 |
| 380 | 176 | JetGetDatabaseInfoA@20 |
| 381 | 177 | JetGetDatabaseInfoW@20 |
| 382 | JetGetDatabasePages@28 | |
| 178 | JetGetDatabasePages@32 | |
| 179 | JetGetErrorInfoW@20 | |
| 383 | 180 | JetGetIndexInfo@28 |
| 384 | 181 | JetGetIndexInfoA@28 |
| 385 | 182 | JetGetIndexInfoW@28 |
| ... | ... | @@ -405,12 +202,15 @@ JetGetMaxDatabaseSize@16 |
| 405 | 202 | JetGetObjectInfo@32 |
| 406 | 203 | JetGetObjectInfoA@32 |
| 407 | 204 | JetGetObjectInfoW@32 |
| 205 | JetGetPageInfo2@24 | |
| 408 | 206 | JetGetPageInfo@24 |
| 409 | 207 | JetGetRecordPosition@16 |
| 208 | JetGetRecordSize2@16 | |
| 410 | 209 | JetGetRecordSize@16 |
| 411 | 210 | JetGetResourceParam@16 |
| 412 | 211 | JetGetSecondaryIndexBookmark@36 |
| 413 | 212 | JetGetSessionInfo@16 |
| 213 | JetGetSessionParameter@20 | |
| 414 | 214 | JetGetSystemParameter@24 |
| 415 | 215 | JetGetSystemParameterA@24 |
| 416 | 216 | JetGetSystemParameterW@24 |
| ... | ... | @@ -433,11 +233,15 @@ JetGotoPosition@12 |
| 433 | 233 | JetGotoSecondaryIndexBookmark@28 |
| 434 | 234 | JetGrowDatabase@16 |
| 435 | 235 | JetIdle@8 |
| 236 | JetIndexRecordCount2@20 | |
| 436 | 237 | JetIndexRecordCount@16 |
| 437 | 238 | JetInit2@8 |
| 438 | 239 | JetInit3@12 |
| 439 | 240 | JetInit3A@12 |
| 440 | 241 | JetInit3W@12 |
| 242 | JetInit4@12 | |
| 243 | JetInit4A@12 | |
| 244 | JetInit4W@12 | |
| 441 | 245 | JetInit@4 |
| 442 | 246 | JetIntersectIndexes@20 |
| 443 | 247 | JetMakeKey@20 |
| ... | ... | @@ -455,6 +259,7 @@ JetOSSnapshotPrepareInstance@12 |
| 455 | 259 | JetOSSnapshotThaw@8 |
| 456 | 260 | JetOSSnapshotTruncateLog@8 |
| 457 | 261 | JetOSSnapshotTruncateLogInstance@12 |
| 262 | JetOnlinePatchDatabasePage@32 | |
| 458 | 263 | JetOpenDatabase@20 |
| 459 | 264 | JetOpenDatabaseA@20 |
| 460 | 265 | JetOpenDatabaseW@20 |
| ... | ... | @@ -463,9 +268,9 @@ JetOpenFileA@16 |
| 463 | 268 | JetOpenFileInstance@20 |
| 464 | 269 | JetOpenFileInstanceA@20 |
| 465 | 270 | JetOpenFileInstanceW@20 |
| 466 | JetOpenFileSectionInstance@28 | |
| 467 | JetOpenFileSectionInstanceA@28 | |
| 468 | JetOpenFileSectionInstanceW@28 | |
| 271 | JetOpenFileSectionInstance@36 | |
| 272 | JetOpenFileSectionInstanceA@36 | |
| 273 | JetOpenFileSectionInstanceW@36 | |
| 469 | 274 | JetOpenFileW@16 |
| 470 | 275 | JetOpenTable@28 |
| 471 | 276 | JetOpenTableA@28 |
| ... | ... | @@ -473,12 +278,23 @@ JetOpenTableW@28 |
| 473 | 278 | JetOpenTempTable2@28 |
| 474 | 279 | JetOpenTempTable3@28 |
| 475 | 280 | JetOpenTempTable@24 |
| 281 | JetOpenTemporaryTable2@8 | |
| 476 | 282 | JetOpenTemporaryTable@8 |
| 283 | JetPatchDatabasePages@28 | |
| 284 | JetPatchDatabasePagesA@28 | |
| 285 | JetPatchDatabasePagesW@28 | |
| 477 | 286 | JetPrepareToCommitTransaction@16 |
| 478 | 287 | JetPrepareUpdate@12 |
| 288 | JetPrereadColumnsByReference@36 | |
| 289 | JetPrereadIndexRange@28 | |
| 290 | JetPrereadIndexRanges@32 | |
| 291 | JetPrereadKeys@28 | |
| 292 | JetPrereadTablesW@20 | |
| 479 | 293 | JetReadFile@16 |
| 480 | 294 | JetReadFileInstance@20 |
| 481 | 295 | JetRegisterCallback@24 |
| 296 | JetRemoveLogfileA@12 | |
| 297 | JetRemoveLogfileW@12 | |
| 482 | 298 | JetRenameColumn@20 |
| 483 | 299 | JetRenameColumnA@20 |
| 484 | 300 | JetRenameColumnW@20 |
| ... | ... | @@ -488,6 +304,7 @@ JetRenameTableW@16 |
| 488 | 304 | JetResetCounter@8 |
| 489 | 305 | JetResetSessionContext@4 |
| 490 | 306 | JetResetTableSequential@12 |
| 307 | JetResizeDatabase@20 | |
| 491 | 308 | JetRestore2@12 |
| 492 | 309 | JetRestore2A@12 |
| 493 | 310 | JetRestore2W@12 |
| ... | ... | @@ -498,6 +315,8 @@ JetRestoreInstanceA@16 |
| 498 | 315 | JetRestoreInstanceW@16 |
| 499 | 316 | JetRestoreW@8 |
| 500 | 317 | JetRetrieveColumn@32 |
| 318 | JetRetrieveColumnByReference@36 | |
| 319 | JetRetrieveColumnFromRecordStream@28 | |
| 501 | 320 | JetRetrieveColumns@16 |
| 502 | 321 | JetRetrieveKey@24 |
| 503 | 322 | JetRetrieveTaggedColumnList@28 |
| ... | ... | @@ -520,6 +339,7 @@ JetSetCurrentIndex4W@24 |
| 520 | 339 | JetSetCurrentIndex@12 |
| 521 | 340 | JetSetCurrentIndexA@12 |
| 522 | 341 | JetSetCurrentIndexW@12 |
| 342 | JetSetCursorFilter@20 | |
| 523 | 343 | JetSetDatabaseSize@16 |
| 524 | 344 | JetSetDatabaseSizeA@16 |
| 525 | 345 | JetSetDatabaseSizeW@16 |
| ... | ... | @@ -528,9 +348,13 @@ JetSetLS@16 |
| 528 | 348 | JetSetMaxDatabaseSize@16 |
| 529 | 349 | JetSetResourceParam@16 |
| 530 | 350 | JetSetSessionContext@8 |
| 351 | JetSetSessionParameter@16 | |
| 531 | 352 | JetSetSystemParameter@20 |
| 532 | 353 | JetSetSystemParameterA@20 |
| 533 | 354 | JetSetSystemParameterW@20 |
| 355 | JetSetTableInfo@20 | |
| 356 | JetSetTableInfoA@20 | |
| 357 | JetSetTableInfoW@20 | |
| 534 | 358 | JetSetTableSequential@12 |
| 535 | 359 | JetSnapshotStart@12 |
| 536 | 360 | JetSnapshotStartA@12 |
| ... | ... | @@ -539,9 +363,12 @@ JetSnapshotStop@8 |
| 539 | 363 | JetStopBackup@0 |
| 540 | 364 | JetStopBackupInstance@4 |
| 541 | 365 | JetStopService@0 |
| 366 | JetStopServiceInstance2@8 | |
| 542 | 367 | JetStopServiceInstance@4 |
| 368 | JetStreamRecords@32 | |
| 543 | 369 | JetTerm2@8 |
| 544 | 370 | JetTerm@4 |
| 371 | JetTestHook@8 | |
| 545 | 372 | JetTracing@12 |
| 546 | 373 | JetTruncateLog@0 |
| 547 | 374 | JetTruncateLogInstance@4 |
| ... | ... | @@ -551,7 +378,4 @@ JetUpdate@20 |
| 551 | 378 | JetUpgradeDatabase@16 |
| 552 | 379 | JetUpgradeDatabaseA@16 |
| 553 | 380 | JetUpgradeDatabaseW@16 |
| 554 | ese@20 | |
| 555 | esent@12 | |
| 556 | ese@20@20 | |
| 557 | esent@12@12 | |
| 381 | ese@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 | ; | |
| 6 | LIBRARY "FeClient.dll" | |
| 7 | EXPORTS | |
| 8 | EfsUtilGetCurrentKey@16 | |
| 9 | EdpContainerizeFile@20 | |
| 10 | EdpCredentialCreate@16 | |
| 11 | EdpCredentialDelete@20 | |
| 12 | EdpCredentialExists@16 | |
| 13 | EdpCredentialQuery@16 | |
| 14 | EdpDecontainerizeFile@12 | |
| 15 | EdpDplPolicyEnabledForUser@8 | |
| 16 | EdpDplUpgradePinInfo@16 | |
| 17 | EdpDplUpgradeVerifyUser@16 | |
| 18 | EdpDplUserCredentialsSet@16 | |
| 19 | EdpDplUserUnlockComplete@12 | |
| 20 | EdpDplUserUnlockStart@20 | |
| 21 | EdpFree@4 | |
| 22 | EdpGetContainerIdentity@8 | |
| 23 | EdpGetCredServiceState@36 | |
| 24 | EdpQueryCredServiceInfo@20 | |
| 25 | EdpQueryDplEnforcedPolicyOwnerIds@8 | |
| 26 | EdpQueryRevokedPolicyOwnerIds@12 | |
| 27 | EdpRmsClearKeys | |
| 28 | EdpSetCredServiceInfo@20 | |
| 29 | EfsClientCloseFileRaw@4 | |
| 30 | EfsClientDecryptFile@8 | |
| 31 | EfsClientDuplicateEncryptionInfo@20 | |
| 32 | EfsClientEncryptFileEx@8 | |
| 33 | EfsClientFileEncryptionStatus@8 | |
| 34 | EfsClientFreeProtectorList@4 | |
| 35 | EfsClientGetEncryptedFileVersion@12 | |
| 36 | EfsClientOpenFileRaw@12 | |
| 37 | EfsClientQueryProtectors@8 | |
| 38 | EfsClientReadFileRaw@12 | |
| 39 | EfsClientWriteFileRaw@12 | |
| 40 | EfsClientWriteFileWithHeaderRaw@32 | |
| 41 | FeClientInitialize@8 | |
| 42 | GetLockSessionUnwrappedKey@28 | |
| 43 | GetLockSessionWrappedKey@28 |
lib/libc/mingw/lib32/fontsub.def created+4| ... | ... | @@ -0,0 +1,4 @@ |
| 1 | LIBRARY "fontsub.dll" | |
| 2 | EXPORTS | |
| 3 | CreateFontPackage | |
| 4 | MergeFontPackage |
lib/libc/mingw/lib32/gamemode.def created+7| ... | ... | @@ -0,0 +1,7 @@ |
| 1 | LIBRARY gamemode.dll | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | GetExpandedResourceExclusiveCpuCount@4 | |
| 6 | HasExpandedResources@4 | |
| 7 | ReleaseExclusiveCpuSets@0 |
lib/libc/mingw/lib32/gdi32.def-2| ... | ... | @@ -738,8 +738,6 @@ RemoveFontResourceExA@12 |
| 738 | 738 | RemoveFontResourceExW@12 |
| 739 | 739 | RemoveFontResourceTracking@8 |
| 740 | 740 | RemoveFontResourceW@4 |
| 741 | RemoveFontResourceExA@12 | |
| 742 | RemoveFontResourceExW@12 | |
| 743 | 741 | ResetDCA@8 |
| 744 | 742 | ResetDCW@8 |
| 745 | 743 | ResizePalette@8 |
lib/libc/mingw/lib32/glaux.def created+173| ... | ... | @@ -0,0 +1,173 @@ |
| 1 | LIBRARY GLAUX.DLL | |
| 2 | EXPORTS | |
| 3 | AllocateMemory@4 | |
| 4 | AllocateZeroedMemory@4 | |
| 5 | CleanUp@0 | |
| 6 | ComponentFromIndex@12 | |
| 7 | CreateCIPalette@4 | |
| 8 | CreateRGBPalette@4 | |
| 9 | DelayPaletteRealization@0 | |
| 10 | DestroyThisWindow@4 | |
| 11 | FillRgbPaletteEntries@12 | |
| 12 | FindBestPixelFormat@12 | |
| 13 | FindExactPixelFormat@12 | |
| 14 | FindPixelFormat@8 | |
| 15 | FlushPalette@8 | |
| 16 | ForceRedraw@4 | |
| 17 | FreeMemory@4 | |
| 18 | GetRegistrySysColors@8 | |
| 19 | GrabStaticEntries@4 | |
| 20 | IsPixelFormatValid@12 | |
| 21 | PixelFormatDescriptorFromDc@8 | |
| 22 | PrintMessage | |
| 23 | RealizePaletteNow@12 | |
| 24 | ReleaseStaticEntries@4 | |
| 25 | UpdateStaticMapping@4 | |
| 26 | tkCloseWindow@0 | |
| 27 | tkDisplayFunc@4 | |
| 28 | tkErrorPopups@4 | |
| 29 | tkExec@0 | |
| 30 | tkExposeFunc@4 | |
| 31 | tkGetColorMapSize@0 | |
| 32 | tkGetDisplayMode@0 | |
| 33 | tkGetDisplayModeID@0 | |
| 34 | tkGetDisplayModePolicy@0 | |
| 35 | tkGetHDC@0 | |
| 36 | tkGetHRC@0 | |
| 37 | tkGetHWND@0 | |
| 38 | tkGetMouseLoc@8 | |
| 39 | tkIdleFunc@4 | |
| 40 | tkInitDisplayMode@4 | |
| 41 | tkInitDisplayModeID@4 | |
| 42 | tkInitDisplayModePolicy@4 | |
| 43 | tkInitPosition@16 | |
| 44 | tkInitWindow@4 | |
| 45 | tkInitWindowAW@8 | |
| 46 | tkKeyDownFunc@4 | |
| 47 | tkMouseDownFunc@4 | |
| 48 | tkMouseMoveFunc@4 | |
| 49 | tkMouseUpFunc@4 | |
| 50 | tkQuit@0 | |
| 51 | tkReshapeFunc@4 | |
| 52 | tkSetFogRamp@8 | |
| 53 | tkSetGreyRamp@0 | |
| 54 | tkSetOneColor@16 | |
| 55 | tkSetRGBMap@8 | |
| 56 | tkSwapBuffers@0 | |
| 57 | tkWndProc@16 | |
| 58 | RawImageClose@4 | |
| 59 | RawImageGetData@8 | |
| 60 | RawImageGetRow@16 | |
| 61 | RawImageOpenAW@8 | |
| 62 | tkRGBImageLoad@4 | |
| 63 | tkRGBImageLoadAW@8 | |
| 64 | tkCreateBitmapFont@4 | |
| 65 | tkCreateFilledFont@4 | |
| 66 | tkCreateOutlineFont@4 | |
| 67 | tkCreateStrokeFont@4 | |
| 68 | tkDrawStr@8 | |
| 69 | DibNumColors@4 | |
| 70 | tkDIBImageLoad@4 | |
| 71 | tkDIBImageLoadAW@8 | |
| 72 | m_popmatrix@0 | |
| 73 | m_pushmatrix@0 | |
| 74 | m_scale@24 | |
| 75 | m_translate@24 | |
| 76 | m_xformpt@16 | |
| 77 | m_xformptonly@8 | |
| 78 | add3@12 | |
| 79 | copy3@8 | |
| 80 | copymat3@8 | |
| 81 | crossprod@12 | |
| 82 | diff3@12 | |
| 83 | dist3@8 | |
| 84 | dot3@8 | |
| 85 | error@4 | |
| 86 | identifymat3@4 | |
| 87 | length3@4 | |
| 88 | normalize@4 | |
| 89 | perpnorm@16 | |
| 90 | samepoint@8 | |
| 91 | scalarmult@16 | |
| 92 | seterrorfunc@4 | |
| 93 | xformvec3@12 | |
| 94 | auxSolidTeapot@8 | |
| 95 | auxWireTeapot@8 | |
| 96 | solidTeapot@12 | |
| 97 | wireTeapot@12 | |
| 98 | auxSolidBox@24 | |
| 99 | auxSolidCone@16 | |
| 100 | auxSolidCube@8 | |
| 101 | auxSolidCylinder@16 | |
| 102 | auxSolidDodecahedron@8 | |
| 103 | auxSolidIcosahedron@8 | |
| 104 | auxSolidOctahedron@8 | |
| 105 | auxSolidSphere@8 | |
| 106 | auxSolidTetrahedron@8 | |
| 107 | auxSolidTorus@16 | |
| 108 | auxWireBox@24 | |
| 109 | auxWireCone@16 | |
| 110 | auxWireCube@8 | |
| 111 | auxWireCylinder@16 | |
| 112 | auxWireDodecahedron@8 | |
| 113 | auxWireIcosahedron@8 | |
| 114 | auxWireOctahedron@8 | |
| 115 | auxWireSphere@8 | |
| 116 | auxWireTetrahedron@8 | |
| 117 | auxWireTorus@16 | |
| 118 | compareParams@12 | |
| 119 | dodecahedron@16 | |
| 120 | doughnut@28 | |
| 121 | drawbox@52 | |
| 122 | drawtriangle@32 | |
| 123 | findList@12 | |
| 124 | icosahedron@16 | |
| 125 | initdodec@0 | |
| 126 | makeModelPtr@12 | |
| 127 | octahedron@16 | |
| 128 | pentagon@24 | |
| 129 | recorditem@32 | |
| 130 | subdivide@36 | |
| 131 | tetrahedron@16 | |
| 132 | auxDIBImageLoadA@4 | |
| 133 | auxDIBImageLoadW@4 | |
| 134 | auxRGBImageLoadA@4 | |
| 135 | auxRGBImageLoadW@4 | |
| 136 | auxCreateFont@0 | |
| 137 | auxDrawStrA@4 | |
| 138 | auxDrawStrAW@8 | |
| 139 | auxDrawStrW@4 | |
| 140 | DefaultHandleExpose@8 | |
| 141 | DefaultHandleReshape@8 | |
| 142 | KeyDown@8 | |
| 143 | MouseDown@12 | |
| 144 | MouseLoc@12 | |
| 145 | MouseUp@12 | |
| 146 | auxCloseWindow@0 | |
| 147 | auxExposeFunc@4 | |
| 148 | auxGetColorMapSize@0 | |
| 149 | auxGetDisplayMode@0 | |
| 150 | auxGetDisplayModeID@0 | |
| 151 | auxGetDisplayModePolicy@0 | |
| 152 | auxGetHDC@0 | |
| 153 | auxGetHGLRC@0 | |
| 154 | auxGetHWND@0 | |
| 155 | auxGetMouseLoc@8 | |
| 156 | auxIdleFunc@4 | |
| 157 | auxInitDisplayMode@4 | |
| 158 | auxInitDisplayModeID@4 | |
| 159 | auxInitDisplayModePolicy@4 | |
| 160 | auxInitPosition@16 | |
| 161 | auxInitWindowA@4 | |
| 162 | auxInitWindowAW@8 | |
| 163 | auxInitWindowW@4 | |
| 164 | auxKeyFunc@8 | |
| 165 | auxMainLoop@4 | |
| 166 | auxMouseFunc@12 | |
| 167 | auxQuit@0 | |
| 168 | auxReshapeFunc@4 | |
| 169 | auxSetFogRamp@8 | |
| 170 | auxSetGreyRamp@0 | |
| 171 | auxSetOneColor@16 | |
| 172 | auxSetRGBMap@8 | |
| 173 | auxSwapBuffers@0 |
lib/libc/mingw/lib32/glut.def created+116| ... | ... | @@ -0,0 +1,116 @@ |
| 1 | LIBRARY glut.dll | |
| 2 | EXPORTS | |
| 3 | glutAddMenuEntry@8 | |
| 4 | glutAddSubMenu@8 | |
| 5 | glutAttachMenu@4 | |
| 6 | glutBitmapCharacter@8 | |
| 7 | glutBitmapLength@8 | |
| 8 | glutBitmapWidth@8 | |
| 9 | glutButtonBoxFunc@4 | |
| 10 | glutChangeToMenuEntry@12 | |
| 11 | glutChangeToSubMenu@12 | |
| 12 | glutCopyColormap@4 | |
| 13 | glutCreateMenu@4 | |
| 14 | glutCreateSubWindow@20 | |
| 15 | glutCreateWindow@4 | |
| 16 | glutDestroyMenu@4 | |
| 17 | glutDestroyWindow@4 | |
| 18 | glutDetachMenu@4 | |
| 19 | glutDeviceGet@4 | |
| 20 | glutDialsFunc@4 | |
| 21 | glutDisplayFunc@4 | |
| 22 | glutEnterGameMode@0 | |
| 23 | glutEntryFunc@4 | |
| 24 | glutEstablishOverlay@0 | |
| 25 | glutExtensionSupported@4 | |
| 26 | glutForceJoystickFunc@0 | |
| 27 | glutFullScreen@0 | |
| 28 | glutGameModeGet@4 | |
| 29 | glutGameModeString@4 | |
| 30 | glutGet@4 | |
| 31 | glutGetColor@8 | |
| 32 | glutGetMenu@0 | |
| 33 | glutGetModifiers@0 | |
| 34 | glutGetWindow@0 | |
| 35 | glutHideOverlay@0 | |
| 36 | glutHideWindow@0 | |
| 37 | glutIconifyWindow@0 | |
| 38 | glutIdleFunc@4 | |
| 39 | glutIgnoreKeyRepeat@4 | |
| 40 | glutInit@8 | |
| 41 | glutInitDisplayMode@4 | |
| 42 | glutInitDisplayString@4 | |
| 43 | glutInitWindowPosition@8 | |
| 44 | glutInitWindowSize@8 | |
| 45 | glutJoystickFunc@8 | |
| 46 | glutKeyboardFunc@4 | |
| 47 | glutKeyboardUpFunc@4 | |
| 48 | glutLayerGet@4 | |
| 49 | glutLeaveGameMode@0 | |
| 50 | glutMainLoop@0 | |
| 51 | glutMenuStateFunc@4 | |
| 52 | glutMenuStatusFunc@4 | |
| 53 | glutMotionFunc@4 | |
| 54 | glutMouseFunc@4 | |
| 55 | glutOverlayDisplayFunc@4 | |
| 56 | glutPassiveMotionFunc@4 | |
| 57 | glutPopWindow@0 | |
| 58 | glutPositionWindow@8 | |
| 59 | glutPostOverlayRedisplay@0 | |
| 60 | glutPostRedisplay@0 | |
| 61 | glutPostWindowOverlayRedisplay@4 | |
| 62 | glutPostWindowRedisplay@4 | |
| 63 | glutPushWindow@0 | |
| 64 | glutRemoveMenuItem@4 | |
| 65 | glutRemoveOverlay@0 | |
| 66 | glutReportErrors@0 | |
| 67 | glutReshapeFunc@4 | |
| 68 | glutReshapeWindow@8 | |
| 69 | glutSetColor@16 | |
| 70 | glutSetCursor@4 | |
| 71 | glutSetIconTitle@4 | |
| 72 | glutSetKeyRepeat@4 | |
| 73 | glutSetMenu@4 | |
| 74 | glutSetWindow@4 | |
| 75 | glutSetWindowTitle@4 | |
| 76 | glutSetupVideoResizing@0 | |
| 77 | glutShowOverlay@0 | |
| 78 | glutShowWindow@0 | |
| 79 | glutSolidCone@24 | |
| 80 | glutSolidCube@8 | |
| 81 | glutSolidDodecahedron@0 | |
| 82 | glutSolidIcosahedron@0 | |
| 83 | glutSolidOctahedron@0 | |
| 84 | glutSolidSphere@16 | |
| 85 | glutSolidTeapot@8 | |
| 86 | glutSolidTetrahedron@0 | |
| 87 | glutSolidTorus@24 | |
| 88 | glutSpaceballButtonFunc@4 | |
| 89 | glutSpaceballMotionFunc@4 | |
| 90 | glutSpaceballRotateFunc@4 | |
| 91 | glutSpecialFunc@4 | |
| 92 | glutSpecialUpFunc@4 | |
| 93 | glutStopVideoResizing@0 | |
| 94 | glutStrokeCharacter@8 | |
| 95 | glutStrokeLength@8 | |
| 96 | glutStrokeWidth@8 | |
| 97 | glutSwapBuffers@0 | |
| 98 | glutTabletButtonFunc@4 | |
| 99 | glutTabletMotionFunc@4 | |
| 100 | glutTimerFunc@12 | |
| 101 | glutUseLayer@4 | |
| 102 | glutVideoPan@16 | |
| 103 | glutVideoResize@16 | |
| 104 | glutVideoResizeGet@4 | |
| 105 | glutVisibilityFunc@4 | |
| 106 | glutWarpPointer@8 | |
| 107 | glutWindowStatusFunc@4 | |
| 108 | glutWireCone@24 | |
| 109 | glutWireCube@8 | |
| 110 | glutWireDodecahedron@0 | |
| 111 | glutWireIcosahedron@0 | |
| 112 | glutWireOctahedron@0 | |
| 113 | glutWireSphere@16 | |
| 114 | glutWireTeapot@8 | |
| 115 | glutWireTetrahedron@0 | |
| 116 | glutWireTorus@24 |
lib/libc/mingw/lib32/glut32.def created+116| ... | ... | @@ -0,0 +1,116 @@ |
| 1 | LIBRARY glut32.dll | |
| 2 | EXPORTS | |
| 3 | glutAddMenuEntry@8 | |
| 4 | glutAddSubMenu@8 | |
| 5 | glutAttachMenu@4 | |
| 6 | glutBitmapCharacter@8 | |
| 7 | glutBitmapLength@8 | |
| 8 | glutBitmapWidth@8 | |
| 9 | glutButtonBoxFunc@4 | |
| 10 | glutChangeToMenuEntry@12 | |
| 11 | glutChangeToSubMenu@12 | |
| 12 | glutCopyColormap@4 | |
| 13 | glutCreateMenu@4 | |
| 14 | glutCreateSubWindow@20 | |
| 15 | glutCreateWindow@4 | |
| 16 | glutDestroyMenu@4 | |
| 17 | glutDestroyWindow@4 | |
| 18 | glutDetachMenu@4 | |
| 19 | glutDeviceGet@4 | |
| 20 | glutDialsFunc@4 | |
| 21 | glutDisplayFunc@4 | |
| 22 | glutEnterGameMode@0 | |
| 23 | glutEntryFunc@4 | |
| 24 | glutEstablishOverlay@0 | |
| 25 | glutExtensionSupported@4 | |
| 26 | glutForceJoystickFunc@0 | |
| 27 | glutFullScreen@0 | |
| 28 | glutGameModeGet@4 | |
| 29 | glutGameModeString@4 | |
| 30 | glutGet@4 | |
| 31 | glutGetColor@8 | |
| 32 | glutGetMenu@0 | |
| 33 | glutGetModifiers@0 | |
| 34 | glutGetWindow@0 | |
| 35 | glutHideOverlay@0 | |
| 36 | glutHideWindow@0 | |
| 37 | glutIconifyWindow@0 | |
| 38 | glutIdleFunc@4 | |
| 39 | glutIgnoreKeyRepeat@4 | |
| 40 | glutInit@8 | |
| 41 | glutInitDisplayMode@4 | |
| 42 | glutInitDisplayString@4 | |
| 43 | glutInitWindowPosition@8 | |
| 44 | glutInitWindowSize@8 | |
| 45 | glutJoystickFunc@8 | |
| 46 | glutKeyboardFunc@4 | |
| 47 | glutKeyboardUpFunc@4 | |
| 48 | glutLayerGet@4 | |
| 49 | glutLeaveGameMode@0 | |
| 50 | glutMainLoop@0 | |
| 51 | glutMenuStateFunc@4 | |
| 52 | glutMenuStatusFunc@4 | |
| 53 | glutMotionFunc@4 | |
| 54 | glutMouseFunc@4 | |
| 55 | glutOverlayDisplayFunc@4 | |
| 56 | glutPassiveMotionFunc@4 | |
| 57 | glutPopWindow@0 | |
| 58 | glutPositionWindow@8 | |
| 59 | glutPostOverlayRedisplay@0 | |
| 60 | glutPostRedisplay@0 | |
| 61 | glutPostWindowOverlayRedisplay@4 | |
| 62 | glutPostWindowRedisplay@4 | |
| 63 | glutPushWindow@0 | |
| 64 | glutRemoveMenuItem@4 | |
| 65 | glutRemoveOverlay@0 | |
| 66 | glutReportErrors@0 | |
| 67 | glutReshapeFunc@4 | |
| 68 | glutReshapeWindow@8 | |
| 69 | glutSetColor@16 | |
| 70 | glutSetCursor@4 | |
| 71 | glutSetIconTitle@4 | |
| 72 | glutSetKeyRepeat@4 | |
| 73 | glutSetMenu@4 | |
| 74 | glutSetWindow@4 | |
| 75 | glutSetWindowTitle@4 | |
| 76 | glutSetupVideoResizing@0 | |
| 77 | glutShowOverlay@0 | |
| 78 | glutShowWindow@0 | |
| 79 | glutSolidCone@24 | |
| 80 | glutSolidCube@8 | |
| 81 | glutSolidDodecahedron@0 | |
| 82 | glutSolidIcosahedron@0 | |
| 83 | glutSolidOctahedron@0 | |
| 84 | glutSolidSphere@16 | |
| 85 | glutSolidTeapot@8 | |
| 86 | glutSolidTetrahedron@0 | |
| 87 | glutSolidTorus@24 | |
| 88 | glutSpaceballButtonFunc@4 | |
| 89 | glutSpaceballMotionFunc@4 | |
| 90 | glutSpaceballRotateFunc@4 | |
| 91 | glutSpecialFunc@4 | |
| 92 | glutSpecialUpFunc@4 | |
| 93 | glutStopVideoResizing@0 | |
| 94 | glutStrokeCharacter@8 | |
| 95 | glutStrokeLength@8 | |
| 96 | glutStrokeWidth@8 | |
| 97 | glutSwapBuffers@0 | |
| 98 | glutTabletButtonFunc@4 | |
| 99 | glutTabletMotionFunc@4 | |
| 100 | glutTimerFunc@12 | |
| 101 | glutUseLayer@4 | |
| 102 | glutVideoPan@16 | |
| 103 | glutVideoResize@16 | |
| 104 | glutVideoResizeGet@4 | |
| 105 | glutVisibilityFunc@4 | |
| 106 | glutWarpPointer@8 | |
| 107 | glutWindowStatusFunc@4 | |
| 108 | glutWireCone@24 | |
| 109 | glutWireCube@8 | |
| 110 | glutWireDodecahedron@0 | |
| 111 | glutWireIcosahedron@0 | |
| 112 | glutWireOctahedron@0 | |
| 113 | glutWireSphere@16 | |
| 114 | glutWireTeapot@8 | |
| 115 | glutWireTetrahedron@0 | |
| 116 | glutWireTorus@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 | ; | |
| 6 | LIBRARY "GPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | ord_105@20 @105 | |
| 9 | EnterCriticalPolicySectionInternal@4 | |
| 10 | ord_107@8 @107 | |
| 11 | ForceSyncFgPolicyInternal@4 | |
| 12 | ord_109@12 @109 | |
| 13 | ord_110@12 @110 | |
| 14 | ord_111@8 @111 | |
| 15 | FreeGPOListInternalA@4 | |
| 16 | ord_113@12 @113 | |
| 17 | ord_114@16 @114 | |
| 18 | ord_115@20 @115 | |
| 19 | FreeGPOListInternalW@4 | |
| 20 | GetAppliedGPOListInternalA@20 | |
| 21 | GetAppliedGPOListInternalW@20 | |
| 22 | GetGPOListInternalA@4 | |
| 23 | GetGPOListInternalW@24 | |
| 24 | GetNextFgPolicyRefreshInfoInternal@8 | |
| 25 | GetPreviousFgPolicyRefreshInfoInternal@8 | |
| 26 | LeaveCriticalPolicySectionInternal@4 | |
| 27 | RefreshPolicyExInternal@8 | |
| 28 | RefreshPolicyInternal@4 | |
| 29 | RegisterGPNotificationInternal@8 | |
| 30 | RsopLoggingEnabledInternal | |
| 31 | UnregisterGPNotificationInternal@4 | |
| 32 | WaitForMachinePolicyForegroundProcessingInternal | |
| 33 | WaitForUserPolicyForegroundProcessingInternal |
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 | ; | |
| 6 | LIBRARY "polprocl.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow | |
| 9 | DllGetClassObject@12 | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | GenerateGroupPolicyApplications@20 | |
| 13 | GenerateGroupPolicyDataSources@20 | |
| 14 | GenerateGroupPolicyDevices@20 | |
| 15 | GenerateGroupPolicyDrives@20 | |
| 16 | GenerateGroupPolicyEnviron@20 | |
| 17 | GenerateGroupPolicyFiles@20 | |
| 18 | GenerateGroupPolicyFolderOptions@20 | |
| 19 | GenerateGroupPolicyFolders@20 | |
| 20 | GenerateGroupPolicyIniFile@20 | |
| 21 | GenerateGroupPolicyInternet@20 | |
| 22 | GenerateGroupPolicyLocUsAndGroups@20 | |
| 23 | GenerateGroupPolicyNetShares@20 | |
| 24 | GenerateGroupPolicyNetworkOptions@20 | |
| 25 | GenerateGroupPolicyPowerOptions@20 | |
| 26 | GenerateGroupPolicyPrinters@20 | |
| 27 | GenerateGroupPolicyRegionOptions@20 | |
| 28 | GenerateGroupPolicyRegistry@20 | |
| 29 | GenerateGroupPolicySchedTasks@20 | |
| 30 | GenerateGroupPolicyServices@20 | |
| 31 | GenerateGroupPolicyShortcuts@20 | |
| 32 | GenerateGroupPolicyStartMenu@20 | |
| 33 | ProcessGroupPolicyApplications@32 | |
| 34 | ProcessGroupPolicyDataSources@32 | |
| 35 | ProcessGroupPolicyDevices@32 | |
| 36 | ProcessGroupPolicyDrives@32 | |
| 37 | ProcessGroupPolicyEnviron@32 | |
| 38 | ProcessGroupPolicyExApplications@40 | |
| 39 | ProcessGroupPolicyExDataSources@40 | |
| 40 | ProcessGroupPolicyExDevices@40 | |
| 41 | ProcessGroupPolicyExDrives@40 | |
| 42 | ProcessGroupPolicyExEnviron@40 | |
| 43 | ProcessGroupPolicyExFiles@40 | |
| 44 | ProcessGroupPolicyExFolderOptions@40 | |
| 45 | ProcessGroupPolicyExFolders@40 | |
| 46 | ProcessGroupPolicyExIniFile@40 | |
| 47 | ProcessGroupPolicyExInternet@40 | |
| 48 | ProcessGroupPolicyExLocUsAndGroups@40 | |
| 49 | ProcessGroupPolicyExNetShares@40 | |
| 50 | ProcessGroupPolicyExNetworkOptions@40 | |
| 51 | ProcessGroupPolicyExPowerOptions@40 | |
| 52 | ProcessGroupPolicyExPrinters@40 | |
| 53 | ProcessGroupPolicyExRegionOptions@40 | |
| 54 | ProcessGroupPolicyExRegistry@40 | |
| 55 | ProcessGroupPolicyExSchedTasks@40 | |
| 56 | ProcessGroupPolicyExServices@40 | |
| 57 | ProcessGroupPolicyExShortcuts@40 | |
| 58 | ProcessGroupPolicyExStartMenu@40 | |
| 59 | ProcessGroupPolicyFiles@32 | |
| 60 | ProcessGroupPolicyFolderOptions@32 | |
| 61 | ProcessGroupPolicyFolders@32 | |
| 62 | ProcessGroupPolicyIniFile@32 | |
| 63 | ProcessGroupPolicyInternet@32 | |
| 64 | ProcessGroupPolicyLocUsAndGroups@32 | |
| 65 | ProcessGroupPolicyNetShares@32 | |
| 66 | ProcessGroupPolicyNetworkOptions@32 | |
| 67 | ProcessGroupPolicyPowerOptions@32 | |
| 68 | ProcessGroupPolicyPrinters@32 | |
| 69 | ProcessGroupPolicyRegionOptions@32 | |
| 70 | ProcessGroupPolicyRegistry@32 | |
| 71 | ProcessGroupPolicySchedTasks@32 | |
| 72 | ProcessGroupPolicyServices@32 | |
| 73 | ProcessGroupPolicyShortcuts@32 | |
| 74 | ProcessGroupPolicyStartMenu@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 | ; | |
| 6 | LIBRARY "GPSCRIPT.DLL" | |
| 7 | EXPORTS | |
| 8 | GenerateScriptsGroupPolicy@20 | |
| 9 | ProcessScriptsGroupPolicy@32 | |
| 10 | ProcessScriptsGroupPolicyEx@40 | |
| 11 | ScrRegGPOListToWbem@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 | ; | |
| 6 | LIBRARY "GPTEXT.DLL" | |
| 7 | EXPORTS | |
| 8 | ProcessEQoSPolicy@32 | |
| 9 | ProcessPSCHEDPolicy@32 | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer |
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 | ; | |
| 6 | LIBRARY "HAL.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 28 | HalAcquireDisplayOwnership@4 | |
| 29 | HalAdjustResourceList@4 | |
| 30 | HalAllProcessorsStarted@0 | |
| 31 | HalAllocateAdapterChannel@16 | |
| 32 | HalAllocateCommonBuffer@16 | |
| 33 | HalAllocateCrashDumpRegisters@8 | |
| 34 | HalAllocateHardwareCounters@16 | |
| 35 | HalAssignSlotResources@32 | |
| 36 | HalBeginSystemInterrupt@12 | |
| 37 | ; HalBugCheckSystem	; FIXME: >= Win7: @8, < Win7: @4 | |
| 38 | HalCalibratePerformanceCounter@12 | |
| 39 | HalConvertDeviceIdtToIrql@4		; FIXME: Verify! | |
| 40 | HalDisableInterrupt@4			; FIXME: Verify! | |
| 41 | HalDisplayString@4 | |
| 42 | HalEnableInterrupt@4			; FIXME: Verify! | |
| 43 | HalEndSystemInterrupt@8 | |
| 44 | HalEnumerateEnvironmentVariablesEx@12	; FIXME: Verify! | |
| 45 | HalFlushCommonBuffer@20 | |
| 46 | HalFreeCommonBuffer@24 | |
| 47 | HalFreeHardwareCounters@4 | |
| 48 | HalGetAdapter@8 | |
| 49 | HalGetBusData@20 | |
| 50 | HalGetBusDataByOffset@24 | |
| 51 | HalGetEnvironmentVariable@12 | |
| 52 | HalGetEnvironmentVariableEx@20		; FIXME: Verify! | |
| 53 | HalGetInterruptTargetInformation@12	; FIXME: Verify! | |
| 54 | HalGetInterruptVector@24 | |
| 55 | HalGetMemoryCachingRequirements@20	; FIXME: Verify! | |
| 56 | HalGetMessageRoutingInfo@8		; FIXME: Verify! | |
| 57 | HalGetProcessorIdByNtNumber@8		; FIXME: Verify! | |
| 58 | ;HalGetVectorInput ; Check!!! Couldn't determine function argument count. Function doesn't return. | |
| 59 | HalHandleNMI@4 | |
| 60 | HalInitSystem@8 | |
| 61 | HalInitializeBios@8 | |
| 62 | HalInitializeOnResume@4			; FIXME: Verify! | |
| 63 | HalInitializeProcessor@8 | |
| 64 | HalMakeBeep@4 | |
| 65 | HalMcUpdateReadPCIConfig@20		; FIXME: Verify! | |
| 66 | HalProcessorIdle@0 | |
| 67 | HalQueryDisplayParameters@16 | |
| 68 | HalQueryEnvironmentVariableInfoEx@16	; FIXME: Verify! | |
| 69 | HalQueryMaximumProcessorCount@0		; FIXME: Verify! | |
| 70 | HalQueryRealTimeClock@4 | |
| 71 | HalReadDmaCounter@4 | |
| 72 | HalRegisterDynamicProcessor@8		; FIXME: Verify! | |
| 73 | HalRegisterErrataCallbacks@0		; FIXME: Verify! | |
| 74 | HalReportResourceUsage@0 | |
| 75 | HalRequestIpi@8				; FIXME: must be @4 : func(KAFFINITY == ULONG_PTR), dll from XP dumps as @4 | |
| 76 | HalReturnToFirmware@4 | |
| 77 | HalSetBusData@20 | |
| 78 | HalSetBusDataByOffset@24 | |
| 79 | HalSetDisplayParameters@8 | |
| 80 | HalSetEnvironmentVariable@8 | |
| 81 | HalSetEnvironmentVariableEx@20		; FIXME: Verify! | |
| 82 | HalSetProfileInterval@4 | |
| 83 | HalSetRealTimeClock@4 | |
| 84 | HalSetTimeIncrement@4 | |
| 85 | HalStartDynamicProcessor@16		; FIXME: Verify! | |
| 86 | HalStartNextProcessor@12		; FIXME: must be @8 : func(PLOADER_PARAMETER_BLOCK,PKPROCESSOR_STATE), dll from xp dumps as @8 | |
| 87 | HalStartProfileInterrupt@4 | |
| 88 | HalStopProfileInterrupt@4 | |
| 89 | HalTranslateBusAddress@24 | |
| 90 | IoAssignDriveLetters@16 | |
| 91 | IoFlushAdapterBuffers@24 | |
| 92 | IoFreeAdapterChannel@4 | |
| 93 | IoFreeMapRegisters@12 | |
| 94 | IoMapTransfer@24 | |
| 95 | IoReadPartitionTable@16 | |
| 96 | IoSetPartitionInformation@16 | |
| 97 | IoWritePartitionTable@20 | |
| 98 | KdComPortInUse DATA | |
| 99 | KeAcquireSpinLock@8 | |
| 100 | KeFlushWriteBuffer@0 | |
| 101 | KeGetCurrentIrql@0 | |
| 102 | KeLowerIrql@4 | |
| 103 | KeQueryPerformanceCounter@4 | |
| 104 | KeRaiseIrql@8 | |
| 105 | KeRaiseIrqlToDpcLevel@0 | |
| 106 | KeRaiseIrqlToSynchLevel@0 | |
| 107 | KeReleaseSpinLock@8 | |
| 108 | KeStallExecutionProcessor@4 | |
| 109 | READ_PORT_BUFFER_UCHAR@12 | |
| 110 | READ_PORT_BUFFER_ULONG@12 | |
| 111 | READ_PORT_BUFFER_USHORT@12 | |
| 112 | READ_PORT_UCHAR@4 | |
| 113 | READ_PORT_ULONG@4 | |
| 114 | READ_PORT_USHORT@4 | |
| 115 | WRITE_PORT_BUFFER_UCHAR@12 | |
| 116 | WRITE_PORT_BUFFER_ULONG@12 | |
| 117 | WRITE_PORT_BUFFER_USHORT@12 | |
| 118 | WRITE_PORT_UCHAR@8 | |
| 119 | WRITE_PORT_ULONG@8 | |
| 120 | WRITE_PORT_USHORT@8 | |
| 121 | x86BiosAllocateBuffer@12 | |
| 122 | x86BiosCall@8 | |
| 123 | x86BiosFreeBuffer@8 | |
| 124 | x86BiosReadMemory@16 | |
| 125 | x86BiosWriteMemory@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 | ; | |
| 6 | LIBRARY "HIDCLASS.SYS" | |
| 7 | EXPORTS | |
| 8 | DllInitialize@4 | |
| 9 | DllUnload@0 | |
| 10 | HidNotifyPresence@8 | |
| 11 | HidRegisterMinidriver@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 | ; | |
| 6 | LIBRARY "HIDPARSE.SYS" | |
| 7 | EXPORTS | |
| 8 | HidP_FreeCollectionDescription@4 | |
| 9 | HidP_GetButtonCaps@16 | |
| 10 | HidP_GetCaps@8 | |
| 11 | HidP_GetCollectionDescription@16 | |
| 12 | HidP_GetData@24 | |
| 13 | HidP_GetExtendedAttributes@20 | |
| 14 | HidP_GetLinkCollectionNodes@12 | |
| 15 | HidP_GetScaledUsageValue@32 | |
| 16 | HidP_GetSpecificButtonCaps@28 | |
| 17 | HidP_GetSpecificValueCaps@28 | |
| 18 | HidP_GetUsageValue@32 | |
| 19 | HidP_GetUsageValueArray@36 | |
| 20 | HidP_GetUsages@32 | |
| 21 | HidP_GetUsagesEx@28 | |
| 22 | HidP_GetValueCaps@16 | |
| 23 | HidP_InitializeReportForID@20 | |
| 24 | HidP_MaxDataListLength@8 | |
| 25 | HidP_MaxUsageListLength@12 | |
| 26 | HidP_SetData@24 | |
| 27 | HidP_SetScaledUsageValue@32 | |
| 28 | HidP_SetUsageValue@32 | |
| 29 | HidP_SetUsageValueArray@36 | |
| 30 | HidP_SetUsages@32 | |
| 31 | HidP_SysPowerCaps@8 | |
| 32 | HidP_SysPowerEvent@16 | |
| 33 | HidP_TranslateUsageAndPagesToI8042ScanCodes@24 | |
| 34 | HidP_TranslateUsagesToI8042ScanCodes@24 | |
| 35 | HidP_UnsetUsages@32 | |
| 36 | HidP_UsageAndPageListDifference@20 | |
| 37 | HidP_UsageListDifference@20 |
lib/libc/mingw/lib32/hrtfapo.def created+9| ... | ... | @@ -0,0 +1,9 @@ |
| 1 | LIBRARY hrtfapo | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateHrtfApo@8 | |
| 6 | CreateHrtfApoWithDatasetType@12 | |
| 7 | CreateHrtfEngineFactory@4 | |
| 8 | GetHrtfEngineMinFrameCount@0 | |
| 9 | IsHrtfApoAvailable@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 | ||
| 4 | LIBRARY "hhctrl.ocx" | |
| 5 | EXPORTS | |
| 6 | LoadHHA@8 | |
| 7 | DllCanUnloadNow@0 | |
| 8 | AuthorMsg@16 | |
| 9 | DllGetClassObject@12 | |
| 10 | DllRegisterServer@0 | |
| 11 | DllUnregisterServer@0 | |
| 12 | doWinMain@8 | |
| 13 | HtmlHelpA@16 | |
| 14 | HtmlHelpW@16 | |
| 15 | HhWindowThread@4 |
lib/libc/mingw/lib32/igmpagnt.def created+6| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | LIBRARY igmpagnt.dll | |
| 2 | EXPORTS | |
| 3 | SnmpExtensionClose@0 | |
| 4 | SnmpExtensionInit@12 | |
| 5 | SnmpExtensionQuery@16 | |
| 6 | SnmpExtensionTrap@20 |
lib/libc/mingw/lib32/imagehlp.def created+114| ... | ... | @@ -0,0 +1,114 @@ |
| 1 | LIBRARY IMAGEHLP.DLL | |
| 2 | EXPORTS | |
| 3 | BindImage@12 | |
| 4 | BindImageEx@20 | |
| 5 | CheckSumMappedFile@16 | |
| 6 | CopyPdb@12 | |
| 7 | EnumerateLoadedModules32@12 | |
| 8 | EnumerateLoadedModules64@12 | |
| 9 | EnumerateLoadedModules@12 | |
| 10 | FindDebugInfoFile@12 | |
| 11 | FindDebugInfoFileEx@20 | |
| 12 | FindExecutableImage@12 | |
| 13 | GetImageConfigInformation@8 | |
| 14 | GetImageUnusedHeaderBytes@8 | |
| 15 | GetTimestampForLoadedLibrary@4 | |
| 16 | ImageAddCertificate@12 | |
| 17 | ImageDirectoryEntryToData@16 | |
| 18 | ImageDirectoryEntryToDataEx@20 | |
| 19 | ImageEnumerateCertificates@20 | |
| 20 | ImageGetCertificateData@16 | |
| 21 | ImageGetCertificateHeader@12 | |
| 22 | ImageGetDigestStream@16 | |
| 23 | ImageLoad@8 | |
| 24 | ImageNtHeader@4 | |
| 25 | ImageRemoveCertificate@8 | |
| 26 | ImageRvaToSection@12 | |
| 27 | ImageRvaToVa@16 | |
| 28 | ImageUnload@4 | |
| 29 | ImagehlpApiVersion@0 | |
| 30 | ImagehlpApiVersionEx@4 | |
| 31 | MakeSureDirectoryPathExists@4 | |
| 32 | MapAndLoad@20 | |
| 33 | MapDebugInformation32@16 | |
| 34 | MapDebugInformation64@20 | |
| 35 | MapDebugInformation@16 | |
| 36 | MapFileAndCheckSumA@12 | |
| 37 | MapFileAndCheckSumW@12 | |
| 38 | MarkImageAsRunFromSwap@8 | |
| 39 | ReBaseImage@44 | |
| 40 | RemovePrivateCvSymbolic@12 | |
| 41 | RemovePrivateCvSymbolicEx@16 | |
| 42 | RemoveRelocations@4 | |
| 43 | SearchTreeForFile@12 | |
| 44 | SetImageConfigInformation@8 | |
| 45 | SplitSymbols@16 | |
| 46 | StackWalk32@36 | |
| 47 | StackWalk64@36 | |
| 48 | StackWalk@36 | |
| 49 | SymCleanup@4 | |
| 50 | SymEnumerateModules32@12 | |
| 51 | SymEnumerateModules64@12 | |
| 52 | SymEnumerateModules@12 | |
| 53 | SymEnumerateSymbols32@16 | |
| 54 | SymEnumerateSymbols64@20 | |
| 55 | SymEnumerateSymbols@16 | |
| 56 | SymFunctionTableAccess32@8 | |
| 57 | SymFunctionTableAccess64@12 | |
| 58 | SymFunctionTableAccess@8 | |
| 59 | SymGetLineFromAddr32@16 | |
| 60 | SymGetLineFromAddr64@20 | |
| 61 | SymGetLineFromAddr@16 | |
| 62 | SymGetLineFromName32@24 | |
| 63 | SymGetLineFromName64@24 | |
| 64 | SymGetLineFromName@24 | |
| 65 | SymGetLineNext32@8 | |
| 66 | SymGetLineNext64@8 | |
| 67 | SymGetLineNext@8 | |
| 68 | SymGetLinePrev32@8 | |
| 69 | SymGetLinePrev64@8 | |
| 70 | SymGetLinePrev@8 | |
| 71 | SymGetModuleBase32@8 | |
| 72 | SymGetModuleBase64@12 | |
| 73 | SymGetModuleBase@8 | |
| 74 | SymGetModuleInfo32@12 | |
| 75 | SymGetModuleInfo64@16 | |
| 76 | SymGetModuleInfo@12 | |
| 77 | SymGetOptions@0 | |
| 78 | SymGetSearchPath@12 | |
| 79 | SymGetSymFromAddr32@16 | |
| 80 | SymGetSymFromAddr64@20 | |
| 81 | SymGetSymFromAddr@16 | |
| 82 | SymGetSymFromName32@12 | |
| 83 | SymGetSymFromName64@12 | |
| 84 | SymGetSymFromName@12 | |
| 85 | SymGetSymNext32@8 | |
| 86 | SymGetSymNext64@8 | |
| 87 | SymGetSymNext@8 | |
| 88 | SymGetSymPrev32@8 | |
| 89 | SymGetSymPrev64@8 | |
| 90 | SymGetSymPrev@8 | |
| 91 | SymInitialize@12 | |
| 92 | SymLoadModule32@24 | |
| 93 | SymLoadModule64@28 | |
| 94 | SymLoadModule@24 | |
| 95 | SymMatchFileName@16 | |
| 96 | SymRegisterCallback32@12 | |
| 97 | SymRegisterCallback64@16 | |
| 98 | SymRegisterCallback@12 | |
| 99 | SymSetOptions@4 | |
| 100 | SymSetSearchPath@8 | |
| 101 | SymUnDName32@12 | |
| 102 | SymUnDName64@12 | |
| 103 | SymUnDName@12 | |
| 104 | SymUnloadModule32@8 | |
| 105 | SymUnloadModule64@12 | |
| 106 | SymUnloadModule@8 | |
| 107 | TouchFileTimes@8 | |
| 108 | UnDecorateSymbolName@16 | |
| 109 | UnMapAndLoad@4 | |
| 110 | UnmapDebugInformation32@4 | |
| 111 | UnmapDebugInformation64@4 | |
| 112 | UnmapDebugInformation@4 | |
| 113 | UpdateDebugInfoFile@16 | |
| 114 | UpdateDebugInfoFileEx@20 |
lib/libc/mingw/lib32/inkobjcore.def created+34| ... | ... | @@ -0,0 +1,34 @@ |
| 1 | LIBRARY inkobjcore | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AddStroke@20 | |
| 6 | AddStrokeWithId@24 | |
| 7 | AddWordsToWordList@8 | |
| 8 | AdviseInkChange@8 | |
| 9 | CreateContext@8 | |
| 10 | CreateRecognizer@8 | |
| 11 | DestroyContext@4 | |
| 12 | DestroyRecognizer@4 | |
| 13 | DestroyWordList@4 | |
| 14 | EndInkInput@4 | |
| 15 | GetAllRecognizers@8 | |
| 16 | GetBestResultString@12 | |
| 17 | GetLatticePtr@8 | |
| 18 | GetLeftSeparator@12 | |
| 19 | GetRecoAttributes@8 | |
| 20 | GetResultPropertyList@12 | |
| 21 | GetRightSeparator@12 | |
| 22 | GetUnicodeRanges@12 | |
| 23 | IsStringSupported@12 | |
| 24 | LoadCachedAttributes@20 | |
| 25 | MakeWordList@12 | |
| 26 | Process@8 | |
| 27 | SetConstraint@12 | |
| 28 | SetEnabledUnicodeRanges@12 | |
| 29 | SetFactoid@12 | |
| 30 | SetFlags@8 | |
| 31 | SetGuide@12 | |
| 32 | SetStrokeGroupId@12 | |
| 33 | SetTextContext@20 | |
| 34 | SetWordList@8 |
lib/libc/mingw/lib32/iphlpapi.def+1| ... | ... | @@ -178,6 +178,7 @@ InternalCreateIpForwardEntry2@8 |
| 178 | 178 | InternalCreateIpForwardEntry@4 |
| 179 | 179 | InternalCreateIpNetEntry2@8 |
| 180 | 180 | InternalCreateIpNetEntry@4 |
| 181 | InternalCreateOrRefIpForwardEntry2@8 | |
| 181 | 182 | InternalCreateUnicastIpAddressEntry@8 |
| 182 | 183 | InternalDeleteAnycastIpAddressEntry@8 |
| 183 | 184 | InternalDeleteIpForwardEntry2@8 |
lib/libc/mingw/lib32/kernel32.def+47-10| ... | ... | @@ -11,6 +11,7 @@ AcquireSRWLockExclusive@4 |
| 11 | 11 | AcquireSRWLockShared@4 |
| 12 | 12 | ActivateActCtx@8 |
| 13 | 13 | ActivateActCtxWorker@8 |
| 14 | ActivatePackageVirtualizationContext@8 | |
| 14 | 15 | AddAtomA@4 |
| 15 | 16 | AddAtomW@4 |
| 16 | 17 | AddConsoleAliasA@12 |
| ... | ... | @@ -33,7 +34,7 @@ AllocateUserPhysicalPages@12 |
| 33 | 34 | AllocateUserPhysicalPagesNuma@16 |
| 34 | 35 | AppPolicyGetClrCompat@8 |
| 35 | 36 | AppPolicyGetCreateFileAccess@8 |
| 36 | AAppPolicyGetLifecycleManagement@8 | |
| 37 | AppPolicyGetLifecycleManagement@8 | |
| 37 | 38 | AppPolicyGetMediaFoundationCodecLoading@8 |
| 38 | 39 | AppPolicyGetProcessTerminationMethod@8 |
| 39 | 40 | AppPolicyGetShowDeveloperDiagnostic@8 |
| ... | ... | @@ -43,6 +44,7 @@ AppXGetOSMaxVersionTested@8 |
| 43 | 44 | ApplicationRecoveryFinished@4 |
| 44 | 45 | ApplicationRecoveryInProgress@4 |
| 45 | 46 | AreFileApisANSI@0 |
| 47 | AreShortNamesEnabled@8 | |
| 46 | 48 | AssignProcessToJobObject@8 |
| 47 | 49 | AttachConsole@4 |
| 48 | 50 | BackupRead@28 |
| ... | ... | @@ -116,6 +118,12 @@ BuildCommDCBA@8 |
| 116 | 118 | BuildCommDCBAndTimeoutsA@12 |
| 117 | 119 | BuildCommDCBAndTimeoutsW@12 |
| 118 | 120 | BuildCommDCBW@8 |
| 121 | BuildIoRingCancelRequest@20 | |
| 122 | BuildIoRingFlushFile@24 | |
| 123 | BuildIoRingReadFile@44 | |
| 124 | BuildIoRingRegisterBuffers@16 | |
| 125 | BuildIoRingRegisterFileHandles@16 | |
| 126 | BuildIoRingWriteFile@48 | |
| 119 | 127 | CallNamedPipeA@28 |
| 120 | 128 | CallNamedPipeW@28 |
| 121 | 129 | CallbackMayRunLong@4 |
| ... | ... | @@ -142,6 +150,7 @@ ClearCommBreak@4 |
| 142 | 150 | ClearCommError@12 |
| 143 | 151 | CloseConsoleHandle@4 |
| 144 | 152 | CloseHandle@4 |
| 153 | CloseIoRing@4 | |
| 145 | 154 | ClosePackageInfo@4 |
| 146 | 155 | ClosePrivateNamespace@8 |
| 147 | 156 | CloseProfileUserMapping@0 |
| ... | ... | @@ -218,6 +227,7 @@ CreateHardLinkTransactedA@16 |
| 218 | 227 | CreateHardLinkTransactedW@16 |
| 219 | 228 | CreateHardLinkW@12 |
| 220 | 229 | CreateIoCompletionPort@16 |
| 230 | CreateIoRing@24 | |
| 221 | 231 | CreateJobObjectA@8 |
| 222 | 232 | CreateJobObjectW@8 |
| 223 | 233 | CreateJobSet@12 |
| ... | ... | @@ -230,12 +240,14 @@ CreateMutexExW@16 |
| 230 | 240 | CreateMutexW@12 |
| 231 | 241 | CreateNamedPipeA@32 |
| 232 | 242 | CreateNamedPipeW@32 |
| 243 | CreatePackageVirtualizationContext@8 | |
| 233 | 244 | CreatePipe@16 |
| 234 | 245 | CreatePrivateNamespaceA@12 |
| 235 | 246 | CreatePrivateNamespaceW@12 |
| 236 | 247 | CreateProcessA@40 |
| 237 | CreateProcessAsUserA@44 | |
| 238 | CreateProcessAsUserW@44 | |
| 248 | ; MSDN says these are exported from ADVAPI32.DLL. | |
| 249 | ; CreateProcessAsUserA@44 | |
| 250 | ; CreateProcessAsUserW@44 | |
| 239 | 251 | CreateProcessInternalA@48 |
| 240 | 252 | CreateProcessInternalW@48 |
| 241 | 253 | CreateProcessW@40 |
| ... | ... | @@ -270,6 +282,7 @@ CreateWaitableTimerW@12 |
| 270 | 282 | CtrlRoutine@4 |
| 271 | 283 | DeactivateActCtx@8 |
| 272 | 284 | DeactivateActCtxWorker@8 |
| 285 | DeactivatePackageVirtualizationContext@4 | |
| 273 | 286 | DebugActiveProcess@4 |
| 274 | 287 | DebugActiveProcessStop@4 |
| 275 | 288 | DebugBreak@0 |
| ... | ... | @@ -310,6 +323,8 @@ DosPathToSessionPathW@12 |
| 310 | 323 | DuplicateConsoleHandle@16 |
| 311 | 324 | DuplicateEncryptionInfoFileExt@20 |
| 312 | 325 | DuplicateHandle@28 |
| 326 | DuplicatePackageVirtualizationContext@8 | |
| 327 | EnableProcessOptionalXStateFeatures@8 | |
| 313 | 328 | EnableThreadProfiling@20 |
| 314 | 329 | EncodePointer@4 |
| 315 | 330 | EncodeSystemPointer@4 |
| ... | ... | @@ -548,6 +563,7 @@ GetCurrentPackageFullName@8 |
| 548 | 563 | GetCurrentPackageId@8 |
| 549 | 564 | GetCurrentPackageInfo@16 |
| 550 | 565 | GetCurrentPackagePath@8 |
| 566 | GetCurrentPackageVirtualizationContext@0 | |
| 551 | 567 | GetCurrentProcess@0 |
| 552 | 568 | GetCurrentProcessId@0 |
| 553 | 569 | GetCurrentProcessorNumber@0 |
| ... | ... | @@ -620,6 +636,7 @@ GetGeoInfoEx@16 |
| 620 | 636 | GetGeoInfoW@20 |
| 621 | 637 | GetHandleContext@4 |
| 622 | 638 | GetHandleInformation@8 |
| 639 | GetIoRingInfo@8 | |
| 623 | 640 | GetLargePageMinimum@0 |
| 624 | 641 | GetLargestConsoleWindowSize@4 |
| 625 | 642 | GetLastError@0 |
| ... | ... | @@ -636,6 +653,7 @@ GetLongPathNameA@12 |
| 636 | 653 | GetLongPathNameTransactedA@16 |
| 637 | 654 | GetLongPathNameTransactedW@16 |
| 638 | 655 | GetLongPathNameW@12 |
| 656 | GetMachineTypeAttributes@8 | |
| 639 | 657 | GetMailslotInfo@20 |
| 640 | 658 | GetMaximumProcessorCount@4 |
| 641 | 659 | GetMaximumProcessorGroupCount@0 |
| ... | ... | @@ -664,6 +682,7 @@ GetNumaAvailableMemoryNode@8 |
| 664 | 682 | GetNumaAvailableMemoryNodeEx@8 |
| 665 | 683 | GetNumaHighestNodeNumber@4 |
| 666 | 684 | GetNumaNodeNumberFromHandle@8 |
| 685 | GetNumaNodeProcessorMask2@16 | |
| 667 | 686 | GetNumaNodeProcessorMask@8 |
| 668 | 687 | GetNumaNodeProcessorMaskEx@8 |
| 669 | 688 | GetNumaProcessorNode@8 |
| ... | ... | @@ -684,7 +703,7 @@ GetPackageFamilyName@12 |
| 684 | 703 | GetPackageFullName@12 |
| 685 | 704 | GetPackageId@12 |
| 686 | 705 | GetPackageInfo@20 |
| 687 | GetPackagePath@24 | |
| 706 | GetPackagePath@16 | |
| 688 | 707 | GetPackagePathByFullName@12 |
| 689 | 708 | GetPackagesByPackageFamily@20 |
| 690 | 709 | GetPhysicallyInstalledSystemMemory@4 |
| ... | ... | @@ -702,6 +721,7 @@ GetPrivateProfileStructW@20 |
| 702 | 721 | GetProcAddress@8 |
| 703 | 722 | GetProcessAffinityMask@12 |
| 704 | 723 | GetProcessDEPPolicy@12 |
| 724 | GetProcessDefaultCpuSetMasks@16 | |
| 705 | 725 | GetProcessDefaultCpuSets@16 |
| 706 | 726 | GetProcessGroupAffinity@12 |
| 707 | 727 | GetProcessHandleCount@8 |
| ... | ... | @@ -720,6 +740,7 @@ GetProcessUserModeExceptionPolicy@4 |
| 720 | 740 | GetProcessVersion@4 |
| 721 | 741 | GetProcessWorkingSetSize@12 |
| 722 | 742 | GetProcessWorkingSetSizeEx@16 |
| 743 | GetProcessesInVirtualizationContext@12 | |
| 723 | 744 | GetProcessorSystemCycleTime@12 |
| 724 | 745 | GetProductInfo@20 |
| 725 | 746 | GetProductName@8 |
| ... | ... | @@ -774,8 +795,11 @@ GetTempFileNameA@16 |
| 774 | 795 | GetTempFileNameW@16 |
| 775 | 796 | GetTempPathA@8 |
| 776 | 797 | GetTempPathW@8 |
| 798 | GetTempPath2A@8 | |
| 799 | GetTempPath2W@8 | |
| 777 | 800 | GetThreadContext@8 |
| 778 | 801 | GetThreadDescription@8 |
| 802 | GetThreadEnabledXStateFeatures@0 | |
| 779 | 803 | GetThreadErrorMode@0 |
| 780 | 804 | GetThreadGroupAffinity@8 |
| 781 | 805 | GetThreadIOPendingFlag@8 |
| ... | ... | @@ -786,6 +810,7 @@ GetThreadLocale@0 |
| 786 | 810 | GetThreadPreferredUILanguages@16 |
| 787 | 811 | GetThreadPriority@4 |
| 788 | 812 | GetThreadPriorityBoost@8 |
| 813 | GetThreadSelectedCpuSetMasks@16 | |
| 789 | 814 | GetThreadSelectedCpuSets@16 |
| 790 | 815 | GetThreadSelectorEntry@12 |
| 791 | 816 | GetThreadTimes@20 |
| ... | ... | @@ -883,7 +908,6 @@ InitOnceInitialize@4 |
| 883 | 908 | InitializeConditionVariable@4 |
| 884 | 909 | InitializeContext2@24 |
| 885 | 910 | InitializeContext@16 |
| 886 | InitializeCriticalSection@4 | |
| 887 | 911 | InitializeCriticalSectionAndSpinCount@8 |
| 888 | 912 | InitializeCriticalSectionEx@12 |
| 889 | 913 | InitializeEnclave@20 |
| ... | ... | @@ -917,6 +941,7 @@ IsDBCSLeadByte@4 |
| 917 | 941 | IsDBCSLeadByteEx@8 |
| 918 | 942 | IsDebuggerPresent@0 |
| 919 | 943 | IsEnclaveTypeSupported@4 |
| 944 | IsIoRingOpSupported@8 | |
| 920 | 945 | IsNLSDefinedString@20 |
| 921 | 946 | IsNativeVhdBoot@4 |
| 922 | 947 | IsNormalizedString@12 |
| ... | ... | @@ -927,6 +952,7 @@ IsSystemResumeAutomatic@0 |
| 927 | 952 | IsThreadAFiber@0 |
| 928 | 953 | IsThreadpoolTimerSet@4 |
| 929 | 954 | IsTimeZoneRedirectionEnabled@0 |
| 955 | IsUserCetAvailableInEnvironment@4 | |
| 930 | 956 | IsValidCalDateTime@8 |
| 931 | 957 | IsValidCodePage@4 |
| 932 | 958 | IsValidLanguageGroup@8 |
| ... | ... | @@ -1069,7 +1095,8 @@ OpenSemaphoreW@12 |
| 1069 | 1095 | OpenState@0 |
| 1070 | 1096 | OpenStateExplicit@8 |
| 1071 | 1097 | OpenThread@12 |
| 1072 | OpenThreadToken@16 | |
| 1098 | ; MSDN says this is exported from ADVAPI32.DLL. | |
| 1099 | ; OpenThreadToken@16 | |
| 1073 | 1100 | OpenWaitableTimerA@12 |
| 1074 | 1101 | OpenWaitableTimerW@12 |
| 1075 | 1102 | OutputDebugStringA@4 |
| ... | ... | @@ -1083,6 +1110,7 @@ ParseApplicationUserModelId@20 |
| 1083 | 1110 | PeekConsoleInputA@16 |
| 1084 | 1111 | PeekConsoleInputW@16 |
| 1085 | 1112 | PeekNamedPipe@24 |
| 1113 | PopIoRingCompletion@8 | |
| 1086 | 1114 | PostQueuedCompletionStatus@16 |
| 1087 | 1115 | PowerClearRequest@8 |
| 1088 | 1116 | PowerCreateRequest@4 |
| ... | ... | @@ -1124,6 +1152,7 @@ QueryIdleProcessorCycleTime@8 |
| 1124 | 1152 | QueryIdleProcessorCycleTimeEx@12 |
| 1125 | 1153 | QueryInformationJobObject@20 |
| 1126 | 1154 | QueryIoRateControlInformationJobObject@16 |
| 1155 | QueryIoRingCapabilities@4 | |
| 1127 | 1156 | QueryMemoryResourceNotification@8 |
| 1128 | 1157 | QueryPerformanceCounter@4 |
| 1129 | 1158 | QueryPerformanceFrequency@4 |
| ... | ... | @@ -1134,6 +1163,7 @@ QueryThreadCycleTime@8 |
| 1134 | 1163 | QueryThreadProfiling@8 |
| 1135 | 1164 | QueryThreadpoolStackInformation@8 |
| 1136 | 1165 | QueryUnbiasedInterruptTime@4 |
| 1166 | QueueUserAPC2@16 | |
| 1137 | 1167 | QueueUserAPC@12 |
| 1138 | 1168 | QueueUserWorkItem@12 |
| 1139 | 1169 | QueryWin31IniFilesMappedToRegistry@16 |
| ... | ... | @@ -1171,7 +1201,6 @@ ReadFileScatter@20 |
| 1171 | 1201 | ReadFileVlm@20 |
| 1172 | 1202 | ReadProcessMemory@20 |
| 1173 | 1203 | ReadThreadProfilingData@12 |
| 1174 | ReclaimVirtualMemory@8 | |
| 1175 | 1204 | ; |
| 1176 | 1205 | ; MSDN says these functions are exported |
| 1177 | 1206 | ; from advapi32.dll. Commented out for |
| ... | ... | @@ -1238,6 +1267,7 @@ ReleaseActCtx@4 |
| 1238 | 1267 | ReleaseActCtxWorker@4 |
| 1239 | 1268 | ReleaseMutex@4 |
| 1240 | 1269 | ReleaseMutexWhenCallbackReturns@8 |
| 1270 | ReleasePackageVirtualizationContext@4 | |
| 1241 | 1271 | ReleaseSRWLockExclusive@4 |
| 1242 | 1272 | ReleaseSRWLockShared@4 |
| 1243 | 1273 | ReleaseSemaphore@12 |
| ... | ... | @@ -1264,7 +1294,6 @@ ResetWriteWatch@8 |
| 1264 | 1294 | ResizePseudoConsole@8 |
| 1265 | 1295 | ResolveDelayLoadedAPI@24 |
| 1266 | 1296 | ResolveDelayLoadsFromDll@12 |
| 1267 | ResolveLocaleName@12 | |
| 1268 | 1297 | RestoreLastError@4 |
| 1269 | 1298 | ResumeThread@4 |
| 1270 | 1299 | RtlCaptureContext@4 |
| ... | ... | @@ -1368,6 +1397,7 @@ SetHandleCount@4 |
| 1368 | 1397 | SetHandleInformation@12 |
| 1369 | 1398 | SetInformationJobObject@16 |
| 1370 | 1399 | SetIoRateControlInformationJobObject@8 |
| 1400 | SetIoRingCompletionEvent@8 | |
| 1371 | 1401 | SetLastConsoleEventActive@0 |
| 1372 | 1402 | SetLastError@4 |
| 1373 | 1403 | SetLocalPrimaryComputerNameA@8 |
| ... | ... | @@ -1383,7 +1413,10 @@ SetPriorityClass@8 |
| 1383 | 1413 | SetProcessAffinityMask@8 |
| 1384 | 1414 | SetProcessAffinityUpdateMode@8 |
| 1385 | 1415 | SetProcessDEPPolicy@4 |
| 1416 | SetProcessDefaultCpuSetMasks@12 | |
| 1386 | 1417 | SetProcessDefaultCpuSets@12 |
| 1418 | SetProcessDynamicEHContinuationTargets@12 | |
| 1419 | SetProcessDynamicEnforcedCetCompatibleRanges@12 | |
| 1387 | 1420 | SetProcessInformation@16 |
| 1388 | 1421 | SetProcessMitigationPolicy@12 |
| 1389 | 1422 | SetProcessPreferredUILanguages@12 |
| ... | ... | @@ -1416,9 +1449,11 @@ SetThreadLocale@4 |
| 1416 | 1449 | SetThreadPreferredUILanguages@12 |
| 1417 | 1450 | SetThreadPriority@8 |
| 1418 | 1451 | SetThreadPriorityBoost@8 |
| 1452 | SetThreadSelectedCpuSetMasks@12 | |
| 1419 | 1453 | SetThreadSelectedCpuSets@12 |
| 1420 | 1454 | SetThreadStackGuarantee@4 |
| 1421 | SetThreadToken@8 | |
| 1455 | ; MSDN says this is exported from ADVAPI32.DLL. | |
| 1456 | ; SetThreadToken@8 | |
| 1422 | 1457 | SetThreadUILanguage@4 |
| 1423 | 1458 | SetThreadpoolStackInformation@8 |
| 1424 | 1459 | SetThreadpoolThreadMaximum@8 |
| ... | ... | @@ -1452,6 +1487,7 @@ SleepEx@8 |
| 1452 | 1487 | SortCloseHandle@4 |
| 1453 | 1488 | SortGetHandle@12 |
| 1454 | 1489 | StartThreadpoolIo@4 |
| 1490 | SubmitIoRing@16 | |
| 1455 | 1491 | SubmitThreadpoolWork@4 |
| 1456 | 1492 | SuspendThread@4 |
| 1457 | 1493 | SwitchToFiber@4 |
| ... | ... | @@ -1498,6 +1534,7 @@ UnhandledExceptionFilter@4 |
| 1498 | 1534 | UnlockFile@20 |
| 1499 | 1535 | UnlockFileEx@20 |
| 1500 | 1536 | UnmapViewOfFile@4 |
| 1537 | UnmapViewOfFileEx@8 | |
| 1501 | 1538 | UnmapViewOfFileVlm@4 |
| 1502 | 1539 | UnregisterApplicationRecoveryCallback@0 |
| 1503 | 1540 | UnregisterApplicationRestart@0 |
| ... | ... | @@ -1538,6 +1575,7 @@ VirtualUnlock@8 |
| 1538 | 1575 | WTSGetActiveConsoleSessionId@0 |
| 1539 | 1576 | WaitCommEvent@12 |
| 1540 | 1577 | WaitForDebugEvent@8 |
| 1578 | WaitForDebugEventEx@8 | |
| 1541 | 1579 | WaitForMultipleObjects@16 |
| 1542 | 1580 | WaitForMultipleObjectsEx@20 |
| 1543 | 1581 | WaitForSingleObject@8 |
| ... | ... | @@ -1618,7 +1656,6 @@ WriteProfileSectionW@8 |
| 1618 | 1656 | WriteProfileStringA@12 |
| 1619 | 1657 | WriteProfileStringW@12 |
| 1620 | 1658 | WriteTapemark@16 |
| 1621 | WTSGetActiveConsoleSessionId@0 | |
| 1622 | 1659 | ZombifyActCtx@4 |
| 1623 | 1660 | ZombifyActCtxWorker@4 |
| 1624 | 1661 | _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 | ; | |
| 6 | LIBRARY "ks.sys" | |
| 7 | EXPORTS | |
| 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) | |
| 28 | DllInitialize@4 | |
| 29 | KoCreateInstance@20 | |
| 30 | KoDeviceInitialize@4 | |
| 31 | KoDriverInitialize@12 | |
| 32 | KoRelease@4 | |
| 33 | KsAcquireCachedMdl@24 | |
| 34 | KsAcquireControl@4 | |
| 35 | KsAcquireDevice@4 | |
| 36 | KsAcquireDeviceSecurityLock@8 | |
| 37 | KsAcquireResetValue@8 | |
| 38 | KsAddDevice@8 | |
| 39 | KsAddEvent@8 | |
| 40 | KsAddIrpToCancelableQueue@20 | |
| 41 | KsAddItemToObjectBag@12 | |
| 42 | KsAddObjectCreateItemToDeviceHeader@20 | |
| 43 | KsAddObjectCreateItemToObjectHeader@20 | |
| 44 | KsAllocateDefaultClock@4 | |
| 45 | KsAllocateDefaultClockEx@28 | |
| 46 | KsAllocateDeviceHeader@12 | |
| 47 | KsAllocateExtraData@12 | |
| 48 | KsAllocateObjectBag@8 | |
| 49 | KsAllocateObjectCreateItem@16 | |
| 50 | KsAllocateObjectHeader@20 | |
| 51 | KsCacheMedium@12 | |
| 52 | KsCancelIo@8 | |
| 53 | KsCancelRoutine@8 | |
| 54 | KsCompletePendingRequest@4 | |
| 55 | KsCopyObjectBagItems@8 | |
| 56 | KsCreateAllocator@12 | |
| 57 | KsCreateBusEnumObject@24 | |
| 58 | KsCreateClock@12 | |
| 59 | KsCreateDefaultAllocator@4 | |
| 60 | KsCreateDefaultAllocatorEx@24 | |
| 61 | KsCreateDefaultClock@8 | |
| 62 | KsCreateDefaultSecurity@8 | |
| 63 | KsCreateDevice@20 | |
| 64 | KsCreateFilterFactory@32 | |
| 65 | KsCreatePin@16 | |
| 66 | KsCreateTopologyNode@16 | |
| 67 | KsDecrementCountedWorker@4 | |
| 68 | KsDefaultAddEventHandler@12 | |
| 69 | KsDefaultDeviceIoCompletion@8 | |
| 70 | KsDefaultDispatchPnp@8 | |
| 71 | KsDefaultDispatchPower@8 | |
| 72 | KsDefaultForwardIrp@8 | |
| 73 | KsDereferenceBusObject@4 | |
| 74 | KsDereferenceSoftwareBusObject@4 | |
| 75 | KsDeviceGetBusData@20 | |
| 76 | KsDeviceRegisterAdapterObject@16 | |
| 77 | KsDeviceRegisterThermalDispatch@8 | |
| 78 | KsDeviceSetBusData@20 | |
| 79 | KsDisableEvent@16 | |
| 80 | KsDiscardEvent@4 | |
| 81 | KsDispatchFastIoDeviceControlFailure@36 | |
| 82 | KsDispatchFastReadFailure@32 | |
| 83 | KsDispatchInvalidDeviceRequest@8 | |
| 84 | KsDispatchIrp@8 | |
| 85 | KsDispatchQuerySecurity@8 | |
| 86 | KsDispatchSetSecurity@8 | |
| 87 | KsDispatchSpecificMethod@8 | |
| 88 | KsDispatchSpecificProperty@8 | |
| 89 | KsEnableEvent@24 | |
| 90 | KsEnableEventWithAllocator@32 | |
| 91 | KsFastMethodHandler@32 | |
| 92 | KsFastPropertyHandler@32 | |
| 93 | KsFilterAcquireProcessingMutex@4 | |
| 94 | KsFilterAddTopologyConnections@12 | |
| 95 | KsFilterAttemptProcessing@8 | |
| 96 | KsFilterCreateNode@12 | |
| 97 | KsFilterCreatePinFactory@12 | |
| 98 | KsFilterFactoryAddCreateItem@16 | |
| 99 | KsFilterFactoryGetSymbolicLink@4 | |
| 100 | KsFilterFactorySetDeviceClassesState@8 | |
| 101 | KsFilterFactoryUpdateCacheData@8 | |
| 102 | KsFilterGetAndGate@4 | |
| 103 | KsFilterGetChildPinCount@8 | |
| 104 | KsFilterGetFirstChildPin@8 | |
| 105 | KsFilterRegisterPowerCallbacks@12 | |
| 106 | KsFilterReleaseProcessingMutex@4 | |
| 107 | KsForwardAndCatchIrp@16 | |
| 108 | KsForwardIrp@12 | |
| 109 | KsFreeDefaultClock@4 | |
| 110 | KsFreeDeviceHeader@4 | |
| 111 | KsFreeEventList@16 | |
| 112 | KsFreeObjectBag@4 | |
| 113 | KsFreeObjectCreateItem@8 | |
| 114 | KsFreeObjectCreateItemsByContext@8 | |
| 115 | KsFreeObjectHeader@4 | |
| 116 | KsGenerateDataEvent@12 | |
| 117 | KsGenerateEvent@4 | |
| 118 | KsGenerateEventList@20 | |
| 119 | KsGenerateEvents@28 | |
| 120 | KsGenerateThermalEvent@8 | |
| 121 | KsGetBusEnumIdentifier@4 | |
| 122 | KsGetBusEnumParentFDOFromChildPDO@8 | |
| 123 | KsGetBusEnumPnpDeviceObject@8 | |
| 124 | KsGetDefaultClockState@4 | |
| 125 | KsGetDefaultClockTime@4 | |
| 126 | KsGetDevice@4 | |
| 127 | KsGetDeviceForDeviceObject@4 | |
| 128 | KsGetFilterFromIrp@4 | |
| 129 | KsGetFirstChild@4 | |
| 130 | KsGetImageNameAndResourceId@16 | |
| 131 | KsGetNextSibling@4 | |
| 132 | KsGetNodeIdFromIrp@4 | |
| 133 | KsGetObjectFromFileObject@4 | |
| 134 | KsGetObjectTypeFromFileObject@4 | |
| 135 | KsGetObjectTypeFromIrp@4 | |
| 136 | KsGetOuterUnknown@4 | |
| 137 | KsGetParent@4 | |
| 138 | KsGetPinFromIrp@4 | |
| 139 | KsHandleSizedListQuery@16 | |
| 140 | KsIncrementCountedWorker@4 | |
| 141 | KsInitializeDevice@16 | |
| 142 | KsInitializeDeviceProfile@4 | |
| 143 | KsInitializeDriver@12 | |
| 144 | KsInstallBusEnumInterface@4 | |
| 145 | KsIsBusEnumChildDevice@8 | |
| 146 | KsIsCurrentProcessFrameServer@0 | |
| 147 | KsLoadResource@24 | |
| 148 | KsMapModuleName@20 | |
| 149 | KsMergeAutomationTables@16 | |
| 150 | KsMethodHandler@12 | |
| 151 | KsMethodHandlerWithAllocator@20 | |
| 152 | KsMoveIrpsOnCancelableQueue@28 | |
| 153 | KsNullDriverUnload@4 | |
| 154 | KsPersistDeviceProfile@4 | |
| 155 | KsPinAcquireProcessingMutex@4 | |
| 156 | KsPinAttachAndGate@8 | |
| 157 | KsPinAttachOrGate@8 | |
| 158 | KsPinAttemptProcessing@8 | |
| 159 | KsPinDataIntersection@24 | |
| 160 | KsPinGetAndGate@4 | |
| 161 | KsPinGetAvailableByteCount@12 | |
| 162 | KsPinGetConnectedFilterInterface@12 | |
| 163 | KsPinGetConnectedPinDeviceObject@4 | |
| 164 | KsPinGetConnectedPinFileObject@4 | |
| 165 | KsPinGetConnectedPinInterface@12 | |
| 166 | KsPinGetCopyRelationships@12 | |
| 167 | KsPinGetFirstCloneStreamPointer@4 | |
| 168 | KsPinGetLeadingEdgeStreamPointer@8 | |
| 169 | KsPinGetNextSiblingPin@4 | |
| 170 | KsPinGetParentFilter@4 | |
| 171 | KsPinGetReferenceClockInterface@8 | |
| 172 | KsPinGetTrailingEdgeStreamPointer@8 | |
| 173 | KsPinPropertyHandler@20 | |
| 174 | KsPinRegisterFrameReturnCallback@8 | |
| 175 | KsPinRegisterHandshakeCallback@8 | |
| 176 | KsPinRegisterIrpCompletionCallback@8 | |
| 177 | KsPinRegisterPowerCallbacks@12 | |
| 178 | KsPinReleaseProcessingMutex@4 | |
| 179 | KsPinSetPinClockTime@12 | |
| 180 | KsPinSubmitFrame@20 | |
| 181 | KsPinSubmitFrameMdl@16 | |
| 182 | KsProbeStreamIrp@12 | |
| 183 | KsProcessPinUpdate@4 | |
| 184 | KsPropertyHandler@12 | |
| 185 | KsPropertyHandlerWithAllocator@20 | |
| 186 | KsPublishDeviceProfile@8 | |
| 187 | KsQueryDevicePnpObject@4 | |
| 188 | KsQueryInformationFile@16 | |
| 189 | KsQueryObjectAccessMask@4 | |
| 190 | KsQueryObjectCreateItem@4 | |
| 191 | KsQueueWorkItem@8 | |
| 192 | KsReadFile@32 | |
| 193 | KsRecalculateStackDepth@8 | |
| 194 | KsReferenceBusObject@4 | |
| 195 | KsReferenceSoftwareBusObject@4 | |
| 196 | KsRegisterAggregatedClientUnknown@8 | |
| 197 | KsRegisterCountedWorker@12 | |
| 198 | KsRegisterFilterWithNoKSPins@24 | |
| 199 | KsRegisterWorker@8 | |
| 200 | KsReleaseCachedMdl@12 | |
| 201 | KsReleaseControl@4 | |
| 202 | KsReleaseDevice@4 | |
| 203 | KsReleaseDeviceSecurityLock@4 | |
| 204 | KsReleaseIrpOnCancelableQueue@8 | |
| 205 | KsRemoveBusEnumInterface@4 | |
| 206 | KsRemoveIrpFromCancelableQueue@16 | |
| 207 | KsRemoveItemFromObjectBag@12 | |
| 208 | KsRemoveSpecificIrpFromCancelableQueue@4 | |
| 209 | KsServiceBusEnumCreateRequest@8 | |
| 210 | KsServiceBusEnumPnpRequest@8 | |
| 211 | KsSetDefaultClockState@8 | |
| 212 | KsSetDefaultClockTime@12 | |
| 213 | KsSetDevicePnpAndBaseObject@12 | |
| 214 | KsSetInformationFile@16 | |
| 215 | KsSetMajorFunctionHandler@8 | |
| 216 | KsSetPowerDispatch@12 | |
| 217 | KsSetTargetDeviceObject@8 | |
| 218 | KsSetTargetState@8 | |
| 219 | KsStreamIo@44 | |
| 220 | KsStreamPointerAdvance@4 | |
| 221 | KsStreamPointerAdvanceOffsets@16 | |
| 222 | KsStreamPointerAdvanceOffsetsAndUnlock@16 | |
| 223 | KsStreamPointerCancelTimeout@4 | |
| 224 | KsStreamPointerClone@16 | |
| 225 | KsStreamPointerDelete@4 | |
| 226 | KsStreamPointerGetIrp@12 | |
| 227 | KsStreamPointerGetMdl@4 | |
| 228 | KsStreamPointerGetNextClone@4 | |
| 229 | KsStreamPointerLock@4 | |
| 230 | KsStreamPointerScheduleTimeout@16 | |
| 231 | KsStreamPointerSetStatusCode@8 | |
| 232 | KsStreamPointerUnlock@8 | |
| 233 | KsSynchronousIoControlDevice@32 | |
| 234 | KsTerminateDevice@4 | |
| 235 | KsTopologyPropertyHandler@16 | |
| 236 | KsUnregisterWorker@4 | |
| 237 | KsUnserializeObjectPropertiesFromRegistry@12 | |
| 238 | KsUpdateCameraStreamingConsent@8 | |
| 239 | KsValidateAllocatorCreateRequest@8 | |
| 240 | KsValidateAllocatorFramingEx@12 | |
| 241 | KsValidateClockCreateRequest@8 | |
| 242 | KsValidateConnectRequest@16 | |
| 243 | KsValidateTopologyNodeCreateRequest@12 | |
| 244 | KsWriteFile@32 | |
| 245 | KsiDefaultClockAddMarkEvent@12 | |
| 246 | KsiPropertyDefaultClockGetCorrelatedPhysicalTime@12 | |
| 247 | KsiPropertyDefaultClockGetCorrelatedTime@12 | |
| 248 | KsiPropertyDefaultClockGetFunctionTable@12 | |
| 249 | KsiPropertyDefaultClockGetPhysicalTime@12 | |
| 250 | KsiPropertyDefaultClockGetResolution@12 | |
| 251 | KsiPropertyDefaultClockGetState@12 | |
| 252 | KsiPropertyDefaultClockGetTime@12 | |
| 253 | KsiQueryObjectCreateItemsPresent@4 | |
| 254 | _KsEdit@20 |
lib/libc/mingw/lib32/ksecdd.def created+108| ... | ... | @@ -0,0 +1,108 @@ |
| 1 | LIBRARY "ksecdd.sys" | |
| 2 | EXPORTS | |
| 3 | SystemPrng@8 | |
| 4 | AcceptSecurityContext@36 | |
| 5 | AcquireCredentialsHandleW@36 | |
| 6 | AddCredentialsW@32 | |
| 7 | ApplyControlToken@8 | |
| 8 | BCryptCloseAlgorithmProvider@8 | |
| 9 | BCryptCreateHash@28 | |
| 10 | BCryptDecrypt@40 | |
| 11 | BCryptDeriveKey@28 | |
| 12 | BCryptDeriveKeyCapi@20 | |
| 13 | BCryptDeriveKeyPBKDF2@40 | |
| 14 | BCryptDestroyHash@4 | |
| 15 | BCryptDestroyKey@4 | |
| 16 | BCryptDestroySecret@4 | |
| 17 | BCryptDuplicateHash@20 | |
| 18 | BCryptDuplicateKey@20 | |
| 19 | BCryptEncrypt@40 | |
| 20 | BCryptEnumAlgorithms@16 | |
| 21 | BCryptEnumProviders@16 | |
| 22 | BCryptExportKey@28 | |
| 23 | BCryptFinalizeKeyPair@8 | |
| 24 | BCryptFinishHash@16 | |
| 25 | BCryptFreeBuffer@4 | |
| 26 | BCryptGenRandom@16 | |
| 27 | BCryptGenerateKeyPair@16 | |
| 28 | BCryptGenerateSymmetricKey@28 | |
| 29 | BCryptGetFipsAlgorithmMode@4 | |
| 30 | BCryptGetProperty@24 | |
| 31 | BCryptHashData@16 | |
| 32 | BCryptImportKey@36 | |
| 33 | BCryptImportKeyPair@28 | |
| 34 | BCryptKeyDerivation@24 | |
| 35 | BCryptOpenAlgorithmProvider@16 | |
| 36 | BCryptRegisterConfigChangeNotify@4 | |
| 37 | BCryptResolveProviders@32 | |
| 38 | BCryptSecretAgreement@16 | |
| 39 | BCryptSetProperty@20 | |
| 40 | BCryptSignHash@32 | |
| 41 | BCryptUnregisterConfigChangeNotify@4 | |
| 42 | BCryptVerifySignature@28 | |
| 43 | CompleteAuthToken@8 | |
| 44 | CredMarshalTargetInfo@12 | |
| 45 | DeleteSecurityContext@4 | |
| 46 | EnumerateSecurityPackagesW@8 | |
| 47 | ExportSecurityContext@16 | |
| 48 | FreeContextBuffer@4 | |
| 49 | FreeCredentialsHandle@4 | |
| 50 | GetSecurityUserInfo@12 | |
| 51 | ImpersonateSecurityContext@4 | |
| 52 | ImportSecurityContextW@16 | |
| 53 | InitSecurityInterfaceW@0 | |
| 54 | InitializeSecurityContextW@48 | |
| 55 | KSecRegisterSecurityProvider@8 | |
| 56 | KSecValidateBuffer@8 | |
| 57 | LsaEnumerateLogonSessions@8 | |
| 58 | LsaGetLogonSessionData@8 | |
| 59 | MakeSignature@16 | |
| 60 | MapSecurityError@4 | |
| 61 | QueryContextAttributesW@12 | |
| 62 | QueryCredentialsAttributesW@12 | |
| 63 | QuerySecurityContextToken@8 | |
| 64 | QuerySecurityPackageInfoW@8 | |
| 65 | RevertSecurityContext@4 | |
| 66 | SealMessage@16 | |
| 67 | SecLookupAccountName@24 | |
| 68 | SecLookupAccountSid@24 | |
| 69 | SecLookupWellKnownSid@16 | |
| 70 | SecMakeSPN@32 | |
| 71 | SecMakeSPNEx@36 | |
| 72 | SecMakeSPNEx2@40 | |
| 73 | SecSetPagingMode@4 | |
| 74 | SetCredentialsAttributesW@16 | |
| 75 | SslDecryptPacket@40 | |
| 76 | SslEncryptPacket@44 | |
| 77 | SslExportKey@28 | |
| 78 | SslFreeObject@8 | |
| 79 | SslGetExtensions@24 | |
| 80 | SslGetServerIdentity@20 | |
| 81 | SslImportKey@24 | |
| 82 | SslLookupCipherSuiteInfo@24 | |
| 83 | SslOpenProvider@12 | |
| 84 | SspiAcceptSecurityContextAsync@40 | |
| 85 | SspiAcquireCredentialsHandleAsyncW@40 | |
| 86 | SspiCompareAuthIdentities@16 | |
| 87 | SspiCopyAuthIdentity@8 | |
| 88 | SspiCreateAsyncContext@0 | |
| 89 | SspiDeleteSecurityContextAsync@8 | |
| 90 | SspiEncodeAuthIdentityAsStrings@16 | |
| 91 | SspiEncodeStringsAsAuthIdentity@16 | |
| 92 | SspiFreeAsyncContext@4 | |
| 93 | SspiFreeAuthIdentity@4 | |
| 94 | SspiFreeCredentialsHandleAsync@8 | |
| 95 | SspiGetAsyncCallStatus@4 | |
| 96 | SspiInitializeSecurityContextAsyncW@52 | |
| 97 | SspiLocalFree@4 | |
| 98 | SspiMarshalAuthIdentity@12 | |
| 99 | SspiReinitAsyncContext@4 | |
| 100 | SspiSetAsyncNotifyCallback@12 | |
| 101 | SspiUnmarshalAuthIdentity@12 | |
| 102 | SspiValidateAuthIdentity@4 | |
| 103 | SspiZeroAuthIdentity@4 | |
| 104 | TokenBindingGetHighestSupportedVersion@8 | |
| 105 | TokenBindingGetKeyTypesServer@4 | |
| 106 | TokenBindingVerifyMessage@24 | |
| 107 | UnsealMessage@16 | |
| 108 | VerifySignature@16 |
lib/libc/mingw/lib32/ksproxy.def created+8| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | LIBRARY ksproxy.ax | |
| 2 | EXPORTS | |
| 3 | KsGetMediaType@16 | |
| 4 | KsGetMediaTypeCount@12 | |
| 5 | KsGetMultiplePinFactoryItems@16 | |
| 6 | KsOpenDefaultDevice@12 | |
| 7 | KsResolveRequiredAttributes@8 | |
| 8 | KsSynchronousDeviceControl@28 |
lib/libc/mingw/lib32/mcd.def created+7| ... | ... | @@ -0,0 +1,7 @@ |
| 1 | LIBRARY mcd.sys | |
| 2 | EXPORTS | |
| 3 | ChangerClassAllocatePool@8 | |
| 4 | ChangerClassDebugPrint | |
| 5 | ChangerClassFreePool@4 | |
| 6 | ChangerClassInitialize@12 | |
| 7 | ChangerClassSendSrbSynchronous@20 |
lib/libc/mingw/lib32/mfcuia32.def created+12| ... | ... | @@ -0,0 +1,12 @@ |
| 1 | LIBRARY MFCUIA32.DLL | |
| 2 | EXPORTS | |
| 3 | OleUIAddVerbMenu@36 | |
| 4 | OleUIBusy@4 | |
| 5 | OleUICanConvertOrActivateAs@12 | |
| 6 | OleUIChangeIcon@4 | |
| 7 | OleUIConvert@4 | |
| 8 | OleUIEditLinks@4 | |
| 9 | OleUIInsertObject@4 | |
| 10 | OleUIPasteSpecial@4 | |
| 11 | OleUIPromptUser | |
| 12 | OleUIUpdateLinks@16 |
lib/libc/mingw/lib32/mfplat.def-1| ... | ... | @@ -245,6 +245,5 @@ MFUnwrapMediaType@8 |
| 245 | 245 | MFValidateMediaTypeSize@24 |
| 246 | 246 | MFWrapMediaType@16 |
| 247 | 247 | MFWrapSocket@28 |
| 248 | MFllMulDiv@32 | |
| 249 | 248 | PropVariantFromStream@8 |
| 250 | 249 | PropVariantToStream@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 | ; | |
| 6 | LIBRARY "MFSENSORGROUP.dll" | |
| 7 | EXPORTS | |
| 8 | MFCheckProcessCapabilities@16 | |
| 9 | MFCleanupVirtualCameraEntries@0 | |
| 10 | MFCloneSensorProfile@8 | |
| 11 | MFCreatePackageFamilyNameTag@16 | |
| 12 | MFCreatePassthroughTranslatedMediaType@12 | |
| 13 | MFCreateRelativePanelWatcher@12 | |
| 14 | MFCreateSensorActivityMonitor@8 | |
| 15 | MFCreateSensorDeviceBlobByObject@20 | |
| 16 | MFCreateSensorGroup@8 | |
| 17 | MFCreateSensorGroupById@12 | |
| 18 | MFCreateSensorGroupCollection@8 | |
| 19 | MFCreateSensorGroupIdManager@4 | |
| 20 | MFCreateSensorProfile@16 | |
| 21 | MFCreateSensorProfileCollection@4 | |
| 22 | MFCreateSensorProfileWithFlags@12 | |
| 23 | MFCreateSensorStream@16 | |
| 24 | MFCreateTranslatedMediaType@16 | |
| 25 | MFCreateTranslatedMediaType2@20 | |
| 26 | MFDeleteSensorGroupById@4 | |
| 27 | MFGetDeviceFromFSUniqueId@20 | |
| 28 | MFGetDeviceFromSGHash@20 | |
| 29 | MFGetSGCH@24 | |
| 30 | MFGetSensorDeviceProperty@24 | |
| 31 | MFGetSensorDeviceRegistryProperty@24 | |
| 32 | MFGetSensorGroupAttributesFromId@8 | |
| 33 | MFGetSensorGroupPropertyName@16 | |
| 34 | MFGetSensorOrientation@8 | |
| 35 | MFInitializeSensorGroupStore@0 | |
| 36 | MFIsSensorGroupName@8 | |
| 37 | MFIsStreamAvailableToAppPackage@12 | |
| 38 | MFLoadSensorGroupFromRegistry@8 | |
| 39 | MFLoadSensorProfiles@8 | |
| 40 | MFPublishSensorProfiles@8 | |
| 41 | MFSensorProfileParseFilterSetString@16 | |
| 42 | MFValidateSensorProfile@8 | |
| 43 | MFWriteSensorGroupDataToRegistry@24 |
lib/libc/mingw/lib32/mmdevapi.def+30| ... | ... | @@ -1,3 +1,33 @@ |
| 1 | 1 | LIBRARY "mmdevapi.dll" |
| 2 | 2 | EXPORTS |
| 3 | AETraceOutputDebugString | |
| 3 | 4 | ActivateAudioInterfaceAsync@20 |
| 5 | CleanupDeviceAPI@0 | |
| 6 | FlushDeviceTopologyCache@0 | |
| 7 | GenerateMediaEvent@8 | |
| 8 | GetCategoryPath@16 | |
| 9 | GetClassFromEndpointId@4 | |
| 10 | GetEndpointGuidFromEndpointId@8 | |
| 11 | GetEndpointIdFromDeviceInterfaceId@8 | |
| 12 | GetNeverSetAsDefaultProperty@16 | |
| 13 | GetSessionIdFromEndpointId@4 | |
| 14 | InitializeDeviceAPI@0 | |
| 15 | MMDeviceCreateRegistryPropertyStore@12 | |
| 16 | MMDeviceGetDeviceEnumerator@4 | |
| 17 | MMDeviceGetEndpointManager@4 | |
| 18 | MMDeviceGetPolicyConfig@4 | |
| 19 | RegisterForMediaCallback@8 | |
| 20 | UnregisterMediaCallback@4 | |
| 21 | mmdDevFindMmDevProperty@12 | |
| 22 | mmdDevGetDeviceIdFromPnpInterface@8 | |
| 23 | mmdDevGetEndpointFormFactorFromMMDeviceId@8 | |
| 24 | mmdDevGetInstanceIdFromInterfaceId@8 | |
| 25 | mmdDevGetInstanceIdFromMMDeviceId@8 | |
| 26 | mmdDevGetInterfaceClassGuid@8 | |
| 27 | mmdDevGetInterfaceDataFlow@8 | |
| 28 | mmdDevGetInterfaceIdFromMMDevice@8 | |
| 29 | mmdDevGetInterfaceIdFromMMDeviceId@8 | |
| 30 | mmdDevGetInterfacePropertyStore@12 | |
| 31 | mmdDevGetMMDeviceFromInterfaceId@8 | |
| 32 | mmdDevGetMMDeviceIdFromInterfaceId@8 | |
| 33 | mmdDevGetRelatedInterfaceId@24 |
lib/libc/mingw/lib32/mpr.def+4| ... | ... | @@ -7,6 +7,8 @@ WNetAddConnection2A@16 |
| 7 | 7 | WNetAddConnection2W@16 |
| 8 | 8 | WNetAddConnection3A@20 |
| 9 | 9 | WNetAddConnection3W@20 |
| 10 | WNetAddConnection4A@28 | |
| 11 | WNetAddConnection4W@28 | |
| 10 | 12 | WNetAddConnectionA@12 |
| 11 | 13 | WNetAddConnectionW@12 |
| 12 | 14 | WNetCancelConnection2A@12 |
| ... | ... | @@ -70,3 +72,5 @@ WNetSetLastErrorW@12 |
| 70 | 72 | WNetSupportGlobalEnum@4 |
| 71 | 73 | WNetUseConnectionA@32 |
| 72 | 74 | WNetUseConnectionW@32 |
| 75 | WNetUseConnection4A@40 | |
| 76 | WNetUseConnection4W@40 |
lib/libc/mingw/lib32/mprapi.def-2| ... | ... | @@ -128,9 +128,7 @@ MprSetupIpInIpInterfaceFriendlyNameFree@4 |
| 128 | 128 | RasAdminConnectionClearStats@8 |
| 129 | 129 | RasAdminConnectionEnum@28 |
| 130 | 130 | RasAdminConnectionGetInfo@16 |
| 131 | MprAdminConnectionRemoveQuarantine@12 | |
| 132 | 131 | RasAdminGetErrorString@12 |
| 133 | MprAdminGetPDCServer@12 | |
| 134 | 132 | RasAdminPortClearStats@8 |
| 135 | 133 | RasAdminPortDisconnect@8 |
| 136 | 134 | RasAdminPortEnum@32 |
lib/libc/mingw/lib32/mqrt.def created+40| ... | ... | @@ -0,0 +1,40 @@ |
| 1 | LIBRARY MQRT.DLL | |
| 2 | EXPORTS | |
| 3 | MQADsPathToFormatName@12 | |
| 4 | MQBeginTransaction@4 | |
| 5 | MQCloseCursor@4 | |
| 6 | MQCloseQueue@4 | |
| 7 | MQCreateCursor@8 | |
| 8 | MQCreateInternalCert@4 | |
| 9 | MQCreateQueue@16 | |
| 10 | MQDeleteInternalCert@0 | |
| 11 | MQDeleteQueue@4 | |
| 12 | MQFreeMemory@4 | |
| 13 | MQFreeSecurityContext@4 | |
| 14 | MQGetInternalCert@4 | |
| 15 | MQGetInternalCertificate@12 | |
| 16 | MQGetMachineProperties@12 | |
| 17 | MQGetOverlappedResult@4 | |
| 18 | MQGetPrivateComputerInformation@8 | |
| 19 | MQGetQueueProperties@8 | |
| 20 | MQGetQueueSecurity@20 | |
| 21 | MQGetSecurityContext@12 | |
| 22 | MQGetSecurityContextEx@12 | |
| 23 | MQGetUserCerts@12 | |
| 24 | MQHandleToFormatName@12 | |
| 25 | MQInstanceToFormatName@12 | |
| 26 | MQLocateBegin@20 | |
| 27 | MQLocateEnd@4 | |
| 28 | MQLocateNext@12 | |
| 29 | MQMgmtAction@12 | |
| 30 | MQMgmtGetInfo@12 | |
| 31 | MQOpenQueue@16 | |
| 32 | MQPathNameToFormatName@12 | |
| 33 | MQPurgeQueue@4 | |
| 34 | MQReceiveMessage@32 | |
| 35 | MQReceiveMessageByLookupId@32 | |
| 36 | MQRegisterUserCert@4 | |
| 37 | MQRemoveUserCert@4 | |
| 38 | MQSendMessage@12 | |
| 39 | MQSetQueueProperties@8 | |
| 40 | MQSetQueueSecurity@12 |
lib/libc/mingw/lib32/msajapi.def created+562| ... | ... | @@ -0,0 +1,562 @@ |
| 1 | LIBRARY msajapi | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | AllJoynAcceptBusConnection@8 | |
| 6 | AllJoynCloseBusHandle@4 | |
| 7 | AllJoynConnectToBus@4 | |
| 8 | AllJoynCreateBus@12 | |
| 9 | AllJoynEnumEvents@12 | |
| 10 | AllJoynEventSelect@12 | |
| 11 | AllJoynEventWrite@28 | |
| 12 | AllJoynEventsRegister@0 | |
| 13 | AllJoynEventsUnregister@0 | |
| 14 | AllJoynGetConfigurationDWORD@8 | |
| 15 | AllJoynReceiveFromBus@20 | |
| 16 | AllJoynSendToBus@20 | |
| 17 | AllJoynSetDebugLevel@8 | |
| 18 | GetHResultFromQStatus@4 | |
| 19 | QCC_StatusText@4 | |
| 20 | RouterNodeCleanup@4 | |
| 21 | RouterNodeInitialize@0 | |
| 22 | RouterNodeIsIdle@8 | |
| 23 | RouterNodeRun@16 | |
| 24 | alljoyn_aboutdata_create@4 | |
| 25 | alljoyn_aboutdata_create_empty@0 | |
| 26 | alljoyn_aboutdata_create_full@8 | |
| 27 | alljoyn_aboutdata_createfrommsgarg@12 | |
| 28 | alljoyn_aboutdata_createfromxml@8 | |
| 29 | alljoyn_aboutdata_destroy@4 | |
| 30 | alljoyn_aboutdata_getaboutdata@12 | |
| 31 | alljoyn_aboutdata_getajsoftwareversion@8 | |
| 32 | alljoyn_aboutdata_getannouncedaboutdata@8 | |
| 33 | alljoyn_aboutdata_getappid@12 | |
| 34 | alljoyn_aboutdata_getappname@12 | |
| 35 | alljoyn_aboutdata_getdateofmanufacture@8 | |
| 36 | alljoyn_aboutdata_getdefaultlanguage@8 | |
| 37 | alljoyn_aboutdata_getdescription@12 | |
| 38 | alljoyn_aboutdata_getdeviceid@8 | |
| 39 | alljoyn_aboutdata_getdevicename@12 | |
| 40 | alljoyn_aboutdata_getfield@16 | |
| 41 | alljoyn_aboutdata_getfields@12 | |
| 42 | alljoyn_aboutdata_getfieldsignature@8 | |
| 43 | alljoyn_aboutdata_gethardwareversion@8 | |
| 44 | alljoyn_aboutdata_getmanufacturer@12 | |
| 45 | alljoyn_aboutdata_getmodelnumber@8 | |
| 46 | alljoyn_aboutdata_getsoftwareversion@8 | |
| 47 | alljoyn_aboutdata_getsupportedlanguages@12 | |
| 48 | alljoyn_aboutdata_getsupporturl@8 | |
| 49 | alljoyn_aboutdata_isfieldannounced@8 | |
| 50 | alljoyn_aboutdata_isfieldlocalized@8 | |
| 51 | alljoyn_aboutdata_isfieldrequired@8 | |
| 52 | alljoyn_aboutdata_isvalid@8 | |
| 53 | alljoyn_aboutdata_setappid@12 | |
| 54 | alljoyn_aboutdata_setappid_fromstring@8 | |
| 55 | alljoyn_aboutdata_setappname@12 | |
| 56 | alljoyn_aboutdata_setdateofmanufacture@8 | |
| 57 | alljoyn_aboutdata_setdefaultlanguage@8 | |
| 58 | alljoyn_aboutdata_setdescription@12 | |
| 59 | alljoyn_aboutdata_setdeviceid@8 | |
| 60 | alljoyn_aboutdata_setdevicename@12 | |
| 61 | alljoyn_aboutdata_setfield@16 | |
| 62 | alljoyn_aboutdata_sethardwareversion@8 | |
| 63 | alljoyn_aboutdata_setmanufacturer@12 | |
| 64 | alljoyn_aboutdata_setmodelnumber@8 | |
| 65 | alljoyn_aboutdata_setsoftwareversion@8 | |
| 66 | alljoyn_aboutdata_setsupportedlanguage@8 | |
| 67 | alljoyn_aboutdata_setsupporturl@8 | |
| 68 | alljoyn_aboutdatalistener_create@8 | |
| 69 | alljoyn_aboutdatalistener_destroy@4 | |
| 70 | alljoyn_abouticon_clear@4 | |
| 71 | alljoyn_abouticon_create@0 | |
| 72 | alljoyn_abouticon_destroy@4 | |
| 73 | alljoyn_abouticon_getcontent@12 | |
| 74 | alljoyn_abouticon_geturl@12 | |
| 75 | alljoyn_abouticon_setcontent@20 | |
| 76 | alljoyn_abouticon_setcontent_frommsgarg@8 | |
| 77 | alljoyn_abouticon_seturl@12 | |
| 78 | alljoyn_abouticonobj_create@8 | |
| 79 | alljoyn_abouticonobj_destroy@4 | |
| 80 | alljoyn_abouticonproxy_create@12 | |
| 81 | alljoyn_abouticonproxy_destroy@4 | |
| 82 | alljoyn_abouticonproxy_geticon@8 | |
| 83 | alljoyn_abouticonproxy_getversion@8 | |
| 84 | alljoyn_aboutlistener_create@8 | |
| 85 | alljoyn_aboutlistener_destroy@4 | |
| 86 | alljoyn_aboutobj_announce@12 | |
| 87 | alljoyn_aboutobj_announce_using_datalistener@12 | |
| 88 | alljoyn_aboutobj_create@8 | |
| 89 | alljoyn_aboutobj_destroy@4 | |
| 90 | alljoyn_aboutobj_unannounce@4 | |
| 91 | alljoyn_aboutobjectdescription_clear@4 | |
| 92 | alljoyn_aboutobjectdescription_create@0 | |
| 93 | alljoyn_aboutobjectdescription_create_full@4 | |
| 94 | alljoyn_aboutobjectdescription_createfrommsgarg@8 | |
| 95 | alljoyn_aboutobjectdescription_destroy@4 | |
| 96 | alljoyn_aboutobjectdescription_getinterfacepaths@16 | |
| 97 | alljoyn_aboutobjectdescription_getinterfaces@16 | |
| 98 | alljoyn_aboutobjectdescription_getmsgarg@8 | |
| 99 | alljoyn_aboutobjectdescription_getpaths@12 | |
| 100 | alljoyn_aboutobjectdescription_hasinterface@8 | |
| 101 | alljoyn_aboutobjectdescription_hasinterfaceatpath@12 | |
| 102 | alljoyn_aboutobjectdescription_haspath@8 | |
| 103 | alljoyn_aboutproxy_create@12 | |
| 104 | alljoyn_aboutproxy_destroy@4 | |
| 105 | alljoyn_aboutproxy_getaboutdata@12 | |
| 106 | alljoyn_aboutproxy_getobjectdescription@8 | |
| 107 | alljoyn_aboutproxy_getversion@8 | |
| 108 | alljoyn_applicationstatelistener_create@8 | |
| 109 | alljoyn_applicationstatelistener_destroy@4 | |
| 110 | alljoyn_authlistener_create@8 | |
| 111 | alljoyn_authlistener_destroy@4 | |
| 112 | alljoyn_authlistener_requestcredentialsresponse@16 | |
| 113 | alljoyn_authlistener_setsharedsecret@12 | |
| 114 | alljoyn_authlistener_verifycredentialsresponse@12 | |
| 115 | alljoyn_authlistenerasync_create@8 | |
| 116 | alljoyn_authlistenerasync_destroy@4 | |
| 117 | alljoyn_autopinger_adddestination@12 | |
| 118 | alljoyn_autopinger_addpinggroup@16 | |
| 119 | alljoyn_autopinger_create@4 | |
| 120 | alljoyn_autopinger_destroy@4 | |
| 121 | alljoyn_autopinger_pause@4 | |
| 122 | alljoyn_autopinger_removedestination@16 | |
| 123 | alljoyn_autopinger_removepinggroup@8 | |
| 124 | alljoyn_autopinger_resume@4 | |
| 125 | alljoyn_autopinger_setpinginterval@12 | |
| 126 | alljoyn_busattachment_addlogonentry@16 | |
| 127 | alljoyn_busattachment_addmatch@8 | |
| 128 | alljoyn_busattachment_advertisename@12 | |
| 129 | alljoyn_busattachment_bindsessionport@16 | |
| 130 | alljoyn_busattachment_canceladvertisename@12 | |
| 131 | alljoyn_busattachment_cancelfindadvertisedname@8 | |
| 132 | alljoyn_busattachment_cancelfindadvertisednamebytransport@12 | |
| 133 | alljoyn_busattachment_cancelwhoimplements_interface@8 | |
| 134 | alljoyn_busattachment_cancelwhoimplements_interfaces@12 | |
| 135 | alljoyn_busattachment_clearkeys@8 | |
| 136 | alljoyn_busattachment_clearkeystore@4 | |
| 137 | alljoyn_busattachment_connect@8 | |
| 138 | alljoyn_busattachment_create@8 | |
| 139 | alljoyn_busattachment_create_concurrency@12 | |
| 140 | alljoyn_busattachment_createinterface@12 | |
| 141 | alljoyn_busattachment_createinterface_secure@16 | |
| 142 | alljoyn_busattachment_createinterfacesfromxml@8 | |
| 143 | alljoyn_busattachment_deletedefaultkeystore@4 | |
| 144 | alljoyn_busattachment_deleteinterface@8 | |
| 145 | alljoyn_busattachment_destroy@4 | |
| 146 | alljoyn_busattachment_disconnect@8 | |
| 147 | alljoyn_busattachment_enableconcurrentcallbacks@4 | |
| 148 | alljoyn_busattachment_enablepeersecurity@20 | |
| 149 | alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener@24 | |
| 150 | alljoyn_busattachment_findadvertisedname@8 | |
| 151 | alljoyn_busattachment_findadvertisednamebytransport@12 | |
| 152 | alljoyn_busattachment_getalljoyndebugobj@4 | |
| 153 | alljoyn_busattachment_getalljoynproxyobj@4 | |
| 154 | alljoyn_busattachment_getconcurrency@4 | |
| 155 | alljoyn_busattachment_getconnectspec@4 | |
| 156 | alljoyn_busattachment_getdbusproxyobj@4 | |
| 157 | alljoyn_busattachment_getglobalguidstring@4 | |
| 158 | alljoyn_busattachment_getinterface@8 | |
| 159 | alljoyn_busattachment_getinterfaces@12 | |
| 160 | alljoyn_busattachment_getkeyexpiration@12 | |
| 161 | alljoyn_busattachment_getpeerguid@16 | |
| 162 | alljoyn_busattachment_getpermissionconfigurator@4 | |
| 163 | alljoyn_busattachment_gettimestamp@0 | |
| 164 | alljoyn_busattachment_getuniquename@4 | |
| 165 | alljoyn_busattachment_isconnected@4 | |
| 166 | alljoyn_busattachment_ispeersecurityenabled@4 | |
| 167 | alljoyn_busattachment_isstarted@4 | |
| 168 | alljoyn_busattachment_isstopping@4 | |
| 169 | alljoyn_busattachment_join@4 | |
| 170 | alljoyn_busattachment_joinsession@24 | |
| 171 | alljoyn_busattachment_joinsessionasync@28 | |
| 172 | alljoyn_busattachment_leavesession@8 | |
| 173 | alljoyn_busattachment_namehasowner@12 | |
| 174 | alljoyn_busattachment_ping@12 | |
| 175 | alljoyn_busattachment_registeraboutlistener@8 | |
| 176 | alljoyn_busattachment_registerapplicationstatelistener@8 | |
| 177 | alljoyn_busattachment_registerbuslistener@8 | |
| 178 | alljoyn_busattachment_registerbusobject@8 | |
| 179 | alljoyn_busattachment_registerbusobject_secure@8 | |
| 180 | alljoyn_busattachment_registerkeystorelistener@8 | |
| 181 | alljoyn_busattachment_registersignalhandler@40 | |
| 182 | alljoyn_busattachment_registersignalhandlerwithrule@40 | |
| 183 | alljoyn_busattachment_releasename@8 | |
| 184 | alljoyn_busattachment_reloadkeystore@4 | |
| 185 | alljoyn_busattachment_removematch@8 | |
| 186 | alljoyn_busattachment_removesessionmember@12 | |
| 187 | alljoyn_busattachment_requestname@12 | |
| 188 | alljoyn_busattachment_secureconnection@12 | |
| 189 | alljoyn_busattachment_secureconnectionasync@12 | |
| 190 | alljoyn_busattachment_setdaemondebug@12 | |
| 191 | alljoyn_busattachment_setkeyexpiration@12 | |
| 192 | alljoyn_busattachment_setlinktimeout@12 | |
| 193 | alljoyn_busattachment_setlinktimeoutasync@20 | |
| 194 | alljoyn_busattachment_setsessionlistener@12 | |
| 195 | alljoyn_busattachment_start@4 | |
| 196 | alljoyn_busattachment_stop@4 | |
| 197 | alljoyn_busattachment_unbindsessionport@8 | |
| 198 | alljoyn_busattachment_unregisteraboutlistener@8 | |
| 199 | alljoyn_busattachment_unregisterallaboutlisteners@4 | |
| 200 | alljoyn_busattachment_unregisterallhandlers@4 | |
| 201 | alljoyn_busattachment_unregisterapplicationstatelistener@8 | |
| 202 | alljoyn_busattachment_unregisterbuslistener@8 | |
| 203 | alljoyn_busattachment_unregisterbusobject@8 | |
| 204 | alljoyn_busattachment_unregistersignalhandler@40 | |
| 205 | alljoyn_busattachment_unregistersignalhandlerwithrule@40 | |
| 206 | alljoyn_busattachment_whoimplements_interface@8 | |
| 207 | alljoyn_busattachment_whoimplements_interfaces@12 | |
| 208 | alljoyn_buslistener_create@8 | |
| 209 | alljoyn_buslistener_destroy@4 | |
| 210 | alljoyn_busobject_addinterface@8 | |
| 211 | alljoyn_busobject_addinterface_announced@8 | |
| 212 | alljoyn_busobject_addmethodhandler@40 | |
| 213 | alljoyn_busobject_addmethodhandlers@12 | |
| 214 | alljoyn_busobject_cancelsessionlessmessage@8 | |
| 215 | alljoyn_busobject_cancelsessionlessmessage_serial@8 | |
| 216 | alljoyn_busobject_create@16 | |
| 217 | alljoyn_busobject_destroy@4 | |
| 218 | alljoyn_busobject_emitpropertieschanged@20 | |
| 219 | alljoyn_busobject_emitpropertychanged@20 | |
| 220 | alljoyn_busobject_getannouncedinterfacenames@12 | |
| 221 | alljoyn_busobject_getbusattachment@4 | |
| 222 | alljoyn_busobject_getname@12 | |
| 223 | alljoyn_busobject_getpath@4 | |
| 224 | alljoyn_busobject_issecure@4 | |
| 225 | alljoyn_busobject_methodreply_args@16 | |
| 226 | alljoyn_busobject_methodreply_err@16 | |
| 227 | alljoyn_busobject_methodreply_status@12 | |
| 228 | alljoyn_busobject_setannounceflag@12 | |
| 229 | alljoyn_busobject_signal@60 | |
| 230 | alljoyn_credentials_clear@4 | |
| 231 | alljoyn_credentials_create@0 | |
| 232 | alljoyn_credentials_destroy@4 | |
| 233 | alljoyn_credentials_getcertchain@4 | |
| 234 | alljoyn_credentials_getexpiration@4 | |
| 235 | alljoyn_credentials_getlogonentry@4 | |
| 236 | alljoyn_credentials_getpassword@4 | |
| 237 | alljoyn_credentials_getprivateKey@4 | |
| 238 | alljoyn_credentials_getusername@4 | |
| 239 | alljoyn_credentials_isset@8 | |
| 240 | alljoyn_credentials_setcertchain@8 | |
| 241 | alljoyn_credentials_setexpiration@8 | |
| 242 | alljoyn_credentials_setlogonentry@8 | |
| 243 | alljoyn_credentials_setpassword@8 | |
| 244 | alljoyn_credentials_setprivatekey@8 | |
| 245 | alljoyn_credentials_setusername@8 | |
| 246 | alljoyn_getbuildinfo@0 | |
| 247 | alljoyn_getnumericversion@0 | |
| 248 | alljoyn_getversion@0 | |
| 249 | alljoyn_init@0 | |
| 250 | alljoyn_interfacedescription_activate@4 | |
| 251 | alljoyn_interfacedescription_addannotation@12 | |
| 252 | alljoyn_interfacedescription_addargannotation@20 | |
| 253 | alljoyn_interfacedescription_addmember@28 | |
| 254 | alljoyn_interfacedescription_addmemberannotation@16 | |
| 255 | alljoyn_interfacedescription_addmethod@28 | |
| 256 | alljoyn_interfacedescription_addproperty@16 | |
| 257 | alljoyn_interfacedescription_addpropertyannotation@16 | |
| 258 | alljoyn_interfacedescription_addsignal@24 | |
| 259 | alljoyn_interfacedescription_eql@8 | |
| 260 | alljoyn_interfacedescription_getannotation@16 | |
| 261 | alljoyn_interfacedescription_getannotationatindex@24 | |
| 262 | alljoyn_interfacedescription_getannotationscount@4 | |
| 263 | alljoyn_interfacedescription_getargdescriptionforlanguage@24 | |
| 264 | alljoyn_interfacedescription_getdescriptionforlanguage@16 | |
| 265 | alljoyn_interfacedescription_getdescriptionlanguages2@12 | |
| 266 | alljoyn_interfacedescription_getdescriptionlanguages@12 | |
| 267 | alljoyn_interfacedescription_getdescriptiontranslationcallback@4 | |
| 268 | alljoyn_interfacedescription_getmember@12 | |
| 269 | alljoyn_interfacedescription_getmemberannotation@20 | |
| 270 | alljoyn_interfacedescription_getmemberargannotation@24 | |
| 271 | alljoyn_interfacedescription_getmemberdescriptionforlanguage@20 | |
| 272 | alljoyn_interfacedescription_getmembers@12 | |
| 273 | alljoyn_interfacedescription_getmethod@12 | |
| 274 | alljoyn_interfacedescription_getname@4 | |
| 275 | alljoyn_interfacedescription_getproperties@12 | |
| 276 | alljoyn_interfacedescription_getproperty@12 | |
| 277 | alljoyn_interfacedescription_getpropertyannotation@20 | |
| 278 | alljoyn_interfacedescription_getpropertydescriptionforlanguage@20 | |
| 279 | alljoyn_interfacedescription_getsecuritypolicy@4 | |
| 280 | alljoyn_interfacedescription_getsignal@12 | |
| 281 | alljoyn_interfacedescription_hasdescription@4 | |
| 282 | alljoyn_interfacedescription_hasmember@16 | |
| 283 | alljoyn_interfacedescription_hasproperties@4 | |
| 284 | alljoyn_interfacedescription_hasproperty@8 | |
| 285 | alljoyn_interfacedescription_introspect@16 | |
| 286 | alljoyn_interfacedescription_issecure@4 | |
| 287 | alljoyn_interfacedescription_member_eql@56 | |
| 288 | alljoyn_interfacedescription_member_getannotation@40 | |
| 289 | alljoyn_interfacedescription_member_getannotationatindex@48 | |
| 290 | alljoyn_interfacedescription_member_getannotationscount@28 | |
| 291 | alljoyn_interfacedescription_member_getargannotation@44 | |
| 292 | alljoyn_interfacedescription_member_getargannotationatindex@52 | |
| 293 | alljoyn_interfacedescription_member_getargannotationscount@32 | |
| 294 | alljoyn_interfacedescription_property_eql@32 | |
| 295 | alljoyn_interfacedescription_property_getannotation@28 | |
| 296 | alljoyn_interfacedescription_property_getannotationatindex@36 | |
| 297 | alljoyn_interfacedescription_property_getannotationscount@16 | |
| 298 | alljoyn_interfacedescription_setargdescription@16 | |
| 299 | alljoyn_interfacedescription_setargdescriptionforlanguage@20 | |
| 300 | alljoyn_interfacedescription_setdescription@8 | |
| 301 | alljoyn_interfacedescription_setdescriptionforlanguage@12 | |
| 302 | alljoyn_interfacedescription_setdescriptionlanguage@8 | |
| 303 | alljoyn_interfacedescription_setdescriptiontranslationcallback@8 | |
| 304 | alljoyn_interfacedescription_setmemberdescription@12 | |
| 305 | alljoyn_interfacedescription_setmemberdescriptionforlanguage@16 | |
| 306 | alljoyn_interfacedescription_setpropertydescription@12 | |
| 307 | alljoyn_interfacedescription_setpropertydescriptionforlanguage@16 | |
| 308 | alljoyn_keystorelistener_create@8 | |
| 309 | alljoyn_keystorelistener_destroy@4 | |
| 310 | alljoyn_keystorelistener_getkeys@16 | |
| 311 | alljoyn_keystorelistener_putkeys@16 | |
| 312 | alljoyn_keystorelistener_with_synchronization_create@8 | |
| 313 | alljoyn_message_create@4 | |
| 314 | alljoyn_message_description@12 | |
| 315 | alljoyn_message_destroy@4 | |
| 316 | alljoyn_message_eql@8 | |
| 317 | alljoyn_message_getarg@8 | |
| 318 | alljoyn_message_getargs@12 | |
| 319 | alljoyn_message_getauthmechanism@4 | |
| 320 | alljoyn_message_getcallserial@4 | |
| 321 | alljoyn_message_getcompressiontoken@4 | |
| 322 | alljoyn_message_getdestination@4 | |
| 323 | alljoyn_message_geterrorname@12 | |
| 324 | alljoyn_message_getflags@4 | |
| 325 | alljoyn_message_getinterface@4 | |
| 326 | alljoyn_message_getmembername@4 | |
| 327 | alljoyn_message_getobjectpath@4 | |
| 328 | alljoyn_message_getreceiveendpointname@4 | |
| 329 | alljoyn_message_getreplyserial@4 | |
| 330 | alljoyn_message_getsender@4 | |
| 331 | alljoyn_message_getsessionid@4 | |
| 332 | alljoyn_message_getsignature@4 | |
| 333 | alljoyn_message_gettimestamp@4 | |
| 334 | alljoyn_message_gettype@4 | |
| 335 | alljoyn_message_isbroadcastsignal@4 | |
| 336 | alljoyn_message_isencrypted@4 | |
| 337 | alljoyn_message_isexpired@8 | |
| 338 | alljoyn_message_isglobalbroadcast@4 | |
| 339 | alljoyn_message_issessionless@4 | |
| 340 | alljoyn_message_isunreliable@4 | |
| 341 | alljoyn_message_parseargs | |
| 342 | alljoyn_message_setendianess@4 | |
| 343 | alljoyn_message_tostring@12 | |
| 344 | alljoyn_msgarg_array_create@4 | |
| 345 | alljoyn_msgarg_array_element@8 | |
| 346 | alljoyn_msgarg_array_get | |
| 347 | alljoyn_msgarg_array_set | |
| 348 | alljoyn_msgarg_array_set_offset | |
| 349 | alljoyn_msgarg_array_signature@16 | |
| 350 | alljoyn_msgarg_array_tostring@20 | |
| 351 | alljoyn_msgarg_clear@4 | |
| 352 | alljoyn_msgarg_clone@8 | |
| 353 | alljoyn_msgarg_copy@4 | |
| 354 | alljoyn_msgarg_create@0 | |
| 355 | alljoyn_msgarg_create_and_set | |
| 356 | alljoyn_msgarg_destroy@4 | |
| 357 | alljoyn_msgarg_equal@8 | |
| 358 | alljoyn_msgarg_get | |
| 359 | alljoyn_msgarg_get_array_element@12 | |
| 360 | alljoyn_msgarg_get_array_elementsignature@8 | |
| 361 | alljoyn_msgarg_get_array_numberofelements@4 | |
| 362 | alljoyn_msgarg_get_bool@8 | |
| 363 | alljoyn_msgarg_get_bool_array@12 | |
| 364 | alljoyn_msgarg_get_double@8 | |
| 365 | alljoyn_msgarg_get_double_array@12 | |
| 366 | alljoyn_msgarg_get_int16@8 | |
| 367 | alljoyn_msgarg_get_int16_array@12 | |
| 368 | alljoyn_msgarg_get_int32@8 | |
| 369 | alljoyn_msgarg_get_int32_array@12 | |
| 370 | alljoyn_msgarg_get_int64@8 | |
| 371 | alljoyn_msgarg_get_int64_array@12 | |
| 372 | alljoyn_msgarg_get_objectpath@8 | |
| 373 | alljoyn_msgarg_get_signature@8 | |
| 374 | alljoyn_msgarg_get_string@8 | |
| 375 | alljoyn_msgarg_get_uint16@8 | |
| 376 | alljoyn_msgarg_get_uint16_array@12 | |
| 377 | alljoyn_msgarg_get_uint32@8 | |
| 378 | alljoyn_msgarg_get_uint32_array@12 | |
| 379 | alljoyn_msgarg_get_uint64@8 | |
| 380 | alljoyn_msgarg_get_uint64_array@12 | |
| 381 | alljoyn_msgarg_get_uint8@8 | |
| 382 | alljoyn_msgarg_get_uint8_array@12 | |
| 383 | alljoyn_msgarg_get_variant@8 | |
| 384 | alljoyn_msgarg_get_variant_array@16 | |
| 385 | alljoyn_msgarg_getdictelement | |
| 386 | alljoyn_msgarg_getkey@4 | |
| 387 | alljoyn_msgarg_getmember@8 | |
| 388 | alljoyn_msgarg_getnummembers@4 | |
| 389 | alljoyn_msgarg_gettype@4 | |
| 390 | alljoyn_msgarg_getvalue@4 | |
| 391 | alljoyn_msgarg_hassignature@8 | |
| 392 | alljoyn_msgarg_set | |
| 393 | alljoyn_msgarg_set_and_stabilize | |
| 394 | alljoyn_msgarg_set_bool@8 | |
| 395 | alljoyn_msgarg_set_bool_array@12 | |
| 396 | alljoyn_msgarg_set_double@12 | |
| 397 | alljoyn_msgarg_set_double_array@12 | |
| 398 | alljoyn_msgarg_set_int16@8 | |
| 399 | alljoyn_msgarg_set_int16_array@12 | |
| 400 | alljoyn_msgarg_set_int32@8 | |
| 401 | alljoyn_msgarg_set_int32_array@12 | |
| 402 | alljoyn_msgarg_set_int64@12 | |
| 403 | alljoyn_msgarg_set_int64_array@12 | |
| 404 | alljoyn_msgarg_set_objectpath@8 | |
| 405 | alljoyn_msgarg_set_objectpath_array@12 | |
| 406 | alljoyn_msgarg_set_signature@8 | |
| 407 | alljoyn_msgarg_set_signature_array@12 | |
| 408 | alljoyn_msgarg_set_string@8 | |
| 409 | alljoyn_msgarg_set_string_array@12 | |
| 410 | alljoyn_msgarg_set_uint16@8 | |
| 411 | alljoyn_msgarg_set_uint16_array@12 | |
| 412 | alljoyn_msgarg_set_uint32@8 | |
| 413 | alljoyn_msgarg_set_uint32_array@12 | |
| 414 | alljoyn_msgarg_set_uint64@12 | |
| 415 | alljoyn_msgarg_set_uint64_array@12 | |
| 416 | alljoyn_msgarg_set_uint8@8 | |
| 417 | alljoyn_msgarg_set_uint8_array@12 | |
| 418 | alljoyn_msgarg_setdictentry@12 | |
| 419 | alljoyn_msgarg_setstruct@12 | |
| 420 | alljoyn_msgarg_signature@12 | |
| 421 | alljoyn_msgarg_stabilize@4 | |
| 422 | alljoyn_msgarg_tostring@16 | |
| 423 | alljoyn_observer_create@12 | |
| 424 | alljoyn_observer_destroy@4 | |
| 425 | alljoyn_observer_get@12 | |
| 426 | alljoyn_observer_getfirst@4 | |
| 427 | alljoyn_observer_getnext@8 | |
| 428 | alljoyn_observer_registerlistener@12 | |
| 429 | alljoyn_observer_unregisteralllisteners@4 | |
| 430 | alljoyn_observer_unregisterlistener@8 | |
| 431 | alljoyn_observerlistener_create@8 | |
| 432 | alljoyn_observerlistener_destroy@4 | |
| 433 | alljoyn_passwordmanager_setcredentials@8 | |
| 434 | alljoyn_permissionconfigurationlistener_create@8 | |
| 435 | alljoyn_permissionconfigurationlistener_destroy@4 | |
| 436 | alljoyn_permissionconfigurator_certificatechain_destroy@4 | |
| 437 | alljoyn_permissionconfigurator_certificateid_cleanup@4 | |
| 438 | alljoyn_permissionconfigurator_certificateidarray_cleanup@4 | |
| 439 | alljoyn_permissionconfigurator_claim@32 | |
| 440 | alljoyn_permissionconfigurator_endmanagement@4 | |
| 441 | alljoyn_permissionconfigurator_getapplicationstate@8 | |
| 442 | alljoyn_permissionconfigurator_getclaimcapabilities@8 | |
| 443 | alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo@8 | |
| 444 | alljoyn_permissionconfigurator_getdefaultclaimcapabilities@0 | |
| 445 | alljoyn_permissionconfigurator_getdefaultpolicy@8 | |
| 446 | alljoyn_permissionconfigurator_getidentity@8 | |
| 447 | alljoyn_permissionconfigurator_getidentitycertificateid@8 | |
| 448 | alljoyn_permissionconfigurator_getmanifests@8 | |
| 449 | alljoyn_permissionconfigurator_getmanifesttemplate@8 | |
| 450 | alljoyn_permissionconfigurator_getmembershipsummaries@8 | |
| 451 | alljoyn_permissionconfigurator_getpolicy@8 | |
| 452 | alljoyn_permissionconfigurator_getpublickey@8 | |
| 453 | alljoyn_permissionconfigurator_installmanifests@16 | |
| 454 | alljoyn_permissionconfigurator_installmembership@8 | |
| 455 | alljoyn_permissionconfigurator_manifestarray_cleanup@4 | |
| 456 | alljoyn_permissionconfigurator_manifesttemplate_destroy@4 | |
| 457 | alljoyn_permissionconfigurator_policy_destroy@4 | |
| 458 | alljoyn_permissionconfigurator_publickey_destroy@4 | |
| 459 | alljoyn_permissionconfigurator_removemembership@24 | |
| 460 | alljoyn_permissionconfigurator_reset@4 | |
| 461 | alljoyn_permissionconfigurator_resetpolicy@4 | |
| 462 | alljoyn_permissionconfigurator_setapplicationstate@8 | |
| 463 | alljoyn_permissionconfigurator_setclaimcapabilities@8 | |
| 464 | alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo@8 | |
| 465 | alljoyn_permissionconfigurator_setmanifestfromxml@8 | |
| 466 | alljoyn_permissionconfigurator_setmanifesttemplatefromxml@8 | |
| 467 | alljoyn_permissionconfigurator_startmanagement@4 | |
| 468 | alljoyn_permissionconfigurator_updateidentity@16 | |
| 469 | alljoyn_permissionconfigurator_updatepolicy@8 | |
| 470 | alljoyn_pinglistener_create@8 | |
| 471 | alljoyn_pinglistener_destroy@4 | |
| 472 | alljoyn_proxybusobject_addchild@8 | |
| 473 | alljoyn_proxybusobject_addinterface@8 | |
| 474 | alljoyn_proxybusobject_addinterface_by_name@8 | |
| 475 | alljoyn_proxybusobject_copy@4 | |
| 476 | alljoyn_proxybusobject_create@16 | |
| 477 | alljoyn_proxybusobject_create_secure@16 | |
| 478 | alljoyn_proxybusobject_destroy@4 | |
| 479 | alljoyn_proxybusobject_enablepropertycaching@4 | |
| 480 | alljoyn_proxybusobject_getallproperties@12 | |
| 481 | alljoyn_proxybusobject_getallpropertiesasync@20 | |
| 482 | alljoyn_proxybusobject_getchild@8 | |
| 483 | alljoyn_proxybusobject_getchildren@12 | |
| 484 | alljoyn_proxybusobject_getinterface@8 | |
| 485 | alljoyn_proxybusobject_getinterfaces@12 | |
| 486 | alljoyn_proxybusobject_getpath@4 | |
| 487 | alljoyn_proxybusobject_getproperty@16 | |
| 488 | alljoyn_proxybusobject_getpropertyasync@24 | |
| 489 | alljoyn_proxybusobject_getservicename@4 | |
| 490 | alljoyn_proxybusobject_getsessionid@4 | |
| 491 | alljoyn_proxybusobject_getuniquename@4 | |
| 492 | alljoyn_proxybusobject_implementsinterface@8 | |
| 493 | alljoyn_proxybusobject_introspectremoteobject@4 | |
| 494 | alljoyn_proxybusobject_introspectremoteobjectasync@12 | |
| 495 | alljoyn_proxybusobject_issecure@4 | |
| 496 | alljoyn_proxybusobject_isvalid@4 | |
| 497 | alljoyn_proxybusobject_methodcall@32 | |
| 498 | alljoyn_proxybusobject_methodcall_member@52 | |
| 499 | alljoyn_proxybusobject_methodcall_member_noreply@44 | |
| 500 | alljoyn_proxybusobject_methodcall_noreply@24 | |
| 501 | alljoyn_proxybusobject_methodcallasync@36 | |
| 502 | alljoyn_proxybusobject_methodcallasync_member@56 | |
| 503 | alljoyn_proxybusobject_parsexml@12 | |
| 504 | alljoyn_proxybusobject_ref_create@4 | |
| 505 | alljoyn_proxybusobject_ref_decref@4 | |
| 506 | alljoyn_proxybusobject_ref_get@4 | |
| 507 | alljoyn_proxybusobject_ref_incref@4 | |
| 508 | alljoyn_proxybusobject_registerpropertieschangedlistener@24 | |
| 509 | alljoyn_proxybusobject_removechild@8 | |
| 510 | alljoyn_proxybusobject_secureconnection@8 | |
| 511 | alljoyn_proxybusobject_secureconnectionasync@8 | |
| 512 | alljoyn_proxybusobject_setproperty@16 | |
| 513 | alljoyn_proxybusobject_setpropertyasync@28 | |
| 514 | alljoyn_proxybusobject_unregisterpropertieschangedlistener@12 | |
| 515 | alljoyn_routerinit@0 | |
| 516 | alljoyn_routerinitwithconfig@4 | |
| 517 | alljoyn_routershutdown@0 | |
| 518 | alljoyn_securityapplicationproxy_claim@32 | |
| 519 | alljoyn_securityapplicationproxy_computemanifestdigest@16 | |
| 520 | alljoyn_securityapplicationproxy_create@12 | |
| 521 | alljoyn_securityapplicationproxy_destroy@4 | |
| 522 | alljoyn_securityapplicationproxy_digest_destroy@4 | |
| 523 | alljoyn_securityapplicationproxy_eccpublickey_destroy@4 | |
| 524 | alljoyn_securityapplicationproxy_endmanagement@4 | |
| 525 | alljoyn_securityapplicationproxy_getapplicationstate@8 | |
| 526 | alljoyn_securityapplicationproxy_getclaimcapabilities@8 | |
| 527 | alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo@8 | |
| 528 | alljoyn_securityapplicationproxy_getdefaultpolicy@8 | |
| 529 | alljoyn_securityapplicationproxy_geteccpublickey@8 | |
| 530 | alljoyn_securityapplicationproxy_getmanifesttemplate@8 | |
| 531 | alljoyn_securityapplicationproxy_getpermissionmanagementsessionport@0 | |
| 532 | alljoyn_securityapplicationproxy_getpolicy@8 | |
| 533 | alljoyn_securityapplicationproxy_installmembership@8 | |
| 534 | alljoyn_securityapplicationproxy_manifest_destroy@4 | |
| 535 | alljoyn_securityapplicationproxy_manifesttemplate_destroy@4 | |
| 536 | alljoyn_securityapplicationproxy_policy_destroy@4 | |
| 537 | alljoyn_securityapplicationproxy_reset@4 | |
| 538 | alljoyn_securityapplicationproxy_resetpolicy@4 | |
| 539 | alljoyn_securityapplicationproxy_setmanifestsignature@20 | |
| 540 | alljoyn_securityapplicationproxy_signmanifest@16 | |
| 541 | alljoyn_securityapplicationproxy_startmanagement@4 | |
| 542 | alljoyn_securityapplicationproxy_updateidentity@16 | |
| 543 | alljoyn_securityapplicationproxy_updatepolicy@8 | |
| 544 | alljoyn_sessionlistener_create@8 | |
| 545 | alljoyn_sessionlistener_destroy@4 | |
| 546 | alljoyn_sessionopts_cmp@8 | |
| 547 | alljoyn_sessionopts_create@16 | |
| 548 | alljoyn_sessionopts_destroy@4 | |
| 549 | alljoyn_sessionopts_get_multipoint@4 | |
| 550 | alljoyn_sessionopts_get_proximity@4 | |
| 551 | alljoyn_sessionopts_get_traffic@4 | |
| 552 | alljoyn_sessionopts_get_transports@4 | |
| 553 | alljoyn_sessionopts_iscompatible@8 | |
| 554 | alljoyn_sessionopts_set_multipoint@8 | |
| 555 | alljoyn_sessionopts_set_proximity@8 | |
| 556 | alljoyn_sessionopts_set_traffic@8 | |
| 557 | alljoyn_sessionopts_set_transports@8 | |
| 558 | alljoyn_sessionportlistener_create@8 | |
| 559 | alljoyn_sessionportlistener_destroy@4 | |
| 560 | alljoyn_shutdown@0 | |
| 561 | alljoyn_unity_deferred_callbacks_process@0 | |
| 562 | alljoyn_unity_set_deferred_callback_mainthread_only@4 |
lib/libc/mingw/lib32/mscms.def+41-2| ... | ... | @@ -10,17 +10,18 @@ AssociateColorProfileWithDeviceW@12 |
| 10 | 10 | CheckBitmapBits@36 |
| 11 | 11 | CheckColors@20 |
| 12 | 12 | CloseColorProfile@4 |
| 13 | CloseDisplay@4 | |
| 13 | 14 | ColorCplGetDefaultProfileScope@16 |
| 14 | 15 | ColorCplGetDefaultRenderingIntentScope@4 |
| 15 | 16 | ColorCplGetProfileProperties@8 |
| 16 | 17 | ColorCplHasSystemWideAssociationListChanged@12 |
| 17 | 18 | ColorCplInitialize@0 |
| 18 | ColorCplLoadAssociationList@16 | |
| 19 | ColorCplLoadAssociationList@20 | |
| 19 | 20 | ColorCplMergeAssociationLists@8 |
| 20 | 21 | ColorCplOverwritePerUserAssociationList@8 |
| 21 | 22 | ColorCplReleaseProfileProperties@4 |
| 22 | 23 | ColorCplResetSystemWideAssociationListChangedWarning@8 |
| 23 | ColorCplSaveAssociationList@16 | |
| 24 | ColorCplSaveAssociationList@20 | |
| 24 | 25 | ColorCplSetUsePerUserProfiles@12 |
| 25 | 26 | ColorCplUninitialize@0 |
| 26 | 27 | ConvertColorNameToIndex@16 |
| ... | ... | @@ -31,10 +32,17 @@ CreateDeviceLinkProfile@28 |
| 31 | 32 | CreateMultiProfileTransform@24 |
| 32 | 33 | CreateProfileFromLogColorSpaceA@8 |
| 33 | 34 | CreateProfileFromLogColorSpaceW@8 |
| 35 | DccwCreateDisplayProfileAssociationList@4 | |
| 36 | DccwGetDisplayProfileAssociationList@12 | |
| 37 | DccwGetGamutSize@8 | |
| 38 | DccwReleaseDisplayProfileAssociationList@4 | |
| 39 | DccwSetDisplayProfileAssociationList@12 | |
| 34 | 40 | DeleteColorTransform@4 |
| 35 | 41 | DeviceRenameEvent@12 |
| 36 | 42 | DisassociateColorProfileFromDeviceA@12 |
| 37 | 43 | DisassociateColorProfileFromDeviceW@12 |
| 44 | ; DllCanUnloadNow@0 | |
| 45 | ; DllGetClassObject@12 | |
| 38 | 46 | EnumColorProfilesA@20 |
| 39 | 47 | EnumColorProfilesW@20 |
| 40 | 48 | GenerateCopyFilePaths@36 |
| ... | ... | @@ -59,11 +67,15 @@ InternalGetPS2CSAFromLCS@16 |
| 59 | 67 | InternalGetPS2ColorRenderingDictionary@20 |
| 60 | 68 | InternalGetPS2ColorSpaceArray@24 |
| 61 | 69 | InternalGetPS2PreviewCRD@24 |
| 70 | InternalRefreshCalibration@8 | |
| 62 | 71 | InternalSetDeviceConfig@24 |
| 72 | InternalWcsAssociateColorProfileWithDevice@20 | |
| 73 | InternalWcsDisassociateColorProfileWithDevice@16 | |
| 63 | 74 | IsColorProfileTagPresent@12 |
| 64 | 75 | IsColorProfileValid@8 |
| 65 | 76 | OpenColorProfileA@16 |
| 66 | 77 | OpenColorProfileW@16 |
| 78 | OpenDisplay@16 | |
| 67 | 79 | RegisterCMMA@12 |
| 68 | 80 | RegisterCMMW@12 |
| 69 | 81 | SelectCMM@4 |
| ... | ... | @@ -86,6 +98,7 @@ WcsCreateIccProfile@8 |
| 86 | 98 | WcsDisassociateColorProfileFromDevice@12 |
| 87 | 99 | WcsEnumColorProfiles@20 |
| 88 | 100 | WcsEnumColorProfilesSize@12 |
| 101 | WcsGetCalibrationManagementState@4 | |
| 89 | 102 | WcsGetDefaultColorProfile@28 |
| 90 | 103 | WcsGetDefaultColorProfileSize@24 |
| 91 | 104 | WcsGetDefaultRenderingIntent@8 |
| ... | ... | @@ -94,7 +107,33 @@ WcsGpCanInstallOrUninstallProfiles@4 |
| 94 | 107 | WcsGpCanModifyDeviceAssociationList@12 |
| 95 | 108 | WcsOpenColorProfileA@28 |
| 96 | 109 | WcsOpenColorProfileW@28 |
| 110 | WcsSetCalibrationManagementState@4 | |
| 97 | 111 | WcsSetDefaultColorProfile@24 |
| 98 | 112 | WcsSetDefaultRenderingIntent@8 |
| 99 | 113 | WcsSetUsePerUserProfiles@12 |
| 100 | 114 | WcsTranslateColors@40 |
| 115 | InternalGetPS2ColorRenderingDictionary2@24 | |
| 116 | InternalGetPS2PreviewCRD2@32 | |
| 117 | InternalGetPS2ColorSpaceArray2@28 | |
| 118 | InternalSetDeviceGammaRamp@12 | |
| 119 | InternalSetDeviceTemperature@16 | |
| 120 | InternalGetAppliedGammaRamp@8 | |
| 121 | InternalGetDeviceGammaCapability@4 | |
| 122 | InternalGetAppliedGDIGammaRamp@8 | |
| 123 | InternalSetDeviceGDIGammaRamp@12 | |
| 124 | ColorAdapterGetSystemModifyWhitePointCaps@8 | |
| 125 | ColorAdapterGetDisplayCurrentStateID@16 | |
| 126 | ColorAdapterUpdateDisplayGamma@20 | |
| 127 | ColorAdapterUpdateDeviceProfile@16 | |
| 128 | ColorAdapterGetDisplayTransformData@20 | |
| 129 | ColorAdapterGetDisplayTargetWhitePoint@24 | |
| 130 | ColorAdapterGetDisplayProfile@24 | |
| 131 | ColorAdapterGetCurrentProfileCalibration@24 | |
| 132 | ColorAdapterRegisterOEMColorService@4 | |
| 133 | ColorAdapterUnregisterOEMColorService@4 | |
| 134 | ColorProfileAddDisplayAssociation@28 | |
| 135 | ColorProfileRemoveDisplayAssociation@24 | |
| 136 | ColorProfileSetDisplayDefaultAssociation@28 | |
| 137 | ColorProfileGetDisplayList@24 | |
| 138 | ColorProfileGetDisplayDefault@28 | |
| 139 | ColorProfileGetDisplayUserScope@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 | ; | |
| 6 | LIBRARY "MSCTF.dll" | |
| 7 | EXPORTS | |
| 8 | TF_GetLangDescriptionFromHKL@12 | |
| 9 | TF_GetLangIcon@12 | |
| 10 | TF_GetLangIconFromHKL@4 | |
| 11 | TF_RunInputCPL@0 | |
| 12 | CtfImeAssociateFocus@12 | |
| 13 | CtfImeConfigure@16 | |
| 14 | CtfImeConversionList@20 | |
| 15 | CtfImeCreateInputContext@4 | |
| 16 | CtfImeCreateThreadMgr@8 | |
| 17 | CtfImeDestroy@4 | |
| 18 | CtfImeDestroyInputContext@4 | |
| 19 | CtfImeDestroyThreadMgr@0 | |
| 20 | CtfImeDispatchDefImeMessage@16 | |
| 21 | CtfImeEnumRegisterWord@20 | |
| 22 | CtfImeEscape@12 | |
| 23 | CtfImeEscapeEx@16 | |
| 24 | CtfImeGetGuidAtom@12 | |
| 25 | CtfImeGetRegisterWordStyle@8 | |
| 26 | CtfImeInquire@12 | |
| 27 | CtfImeInquireExW@16 | |
| 28 | CtfImeIsGuidMapEnable@4 | |
| 29 | CtfImeIsIME@4 | |
| 30 | CtfImeProcessCicHotkey@12 | |
| 31 | CtfImeProcessKey@16 | |
| 32 | CtfImeRegisterWord@12 | |
| 33 | CtfImeSelect@8 | |
| 34 | CtfImeSelectEx@12 | |
| 35 | CtfImeSetActiveContext@8 | |
| 36 | CtfImeSetCompositionString@24 | |
| 37 | CtfImeSetFocus@8 | |
| 38 | CtfImeToAsciiEx@24 | |
| 39 | CtfImeUnregisterWord@12 | |
| 40 | CtfNotifyIME@16 | |
| 41 | DllCanUnloadNow@0 | |
| 42 | DllGetClassObject@12 | |
| 43 | DllRegisterServer@0 | |
| 44 | DllUnregisterServer@0 | |
| 45 | SetInputScope@8 | |
| 46 | SetInputScopeXML@8 | |
| 47 | SetInputScopes2@24 | |
| 48 | SetInputScopes@28 | |
| 49 | TF_AttachThreadInput@8 | |
| 50 | TF_CUASAppFix@4 | |
| 51 | TF_CanUninitialize@0 | |
| 52 | TF_CheckThreadInputIdle@8 | |
| 53 | TF_CleanUpPrivateMessages@4 | |
| 54 | TF_ClearLangBarAddIns@4 | |
| 55 | TF_CreateCategoryMgr@4 | |
| 56 | TF_CreateCicLoadMutex@4 | |
| 57 | TF_CreateCicLoadWinStaMutex@0 | |
| 58 | TF_CreateDisplayAttributeMgr@4 | |
| 59 | TF_CreateInputProcessorProfiles@4 | |
| 60 | TF_CreateLangBarItemMgr@4 | |
| 61 | TF_CreateLangBarMgr@4 | |
| 62 | TF_CreateThreadMgr@4 | |
| 63 | TF_DllDetachInOther@0 | |
| 64 | TF_GetAppCompatFlags@0 | |
| 65 | TF_GetCompatibleKeyboardLayout@4 | |
| 66 | TF_GetGlobalCompartment@4 | |
| 67 | TF_GetInitSystemFlags@0 | |
| 68 | TF_GetInputScope@8 | |
| 69 | TF_GetShowFloatingStatus@4 | |
| 70 | TF_GetThreadFlags@16 | |
| 71 | TF_GetThreadMgr@4 | |
| 72 | TF_InitSystem@4 | |
| 73 | TF_InvalidAssemblyListCache@0 | |
| 74 | TF_InvalidAssemblyListCacheIfExist@0 | |
| 75 | TF_IsCtfmonRunning@0 | |
| 76 | TF_IsFullScreenWindowActivated@0 | |
| 77 | TF_IsThreadWithFlags@4 | |
| 78 | TF_MapCompatibleHKL@12 | |
| 79 | TF_MapCompatibleKeyboardTip@12 | |
| 80 | TF_Notify@12 | |
| 81 | TF_PostAllThreadMsg@8 | |
| 82 | TF_RegisterLangBarAddIn@12 | |
| 83 | TF_SendLangBandMsg@8 | |
| 84 | TF_SetDefaultRemoteKeyboardLayout@8 | |
| 85 | TF_SetShowFloatingStatus@8 | |
| 86 | TF_SetThreadFlags@8 | |
| 87 | TF_UninitSystem@0 | |
| 88 | TF_UnregisterLangBarAddIn@8 | |
| 89 | TF_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 | ; | |
| 6 | LIBRARY "MSHTML.dll" | |
| 7 | EXPORTS | |
| 8 | ord_100@4 @100 | |
| 9 | ord_101@4 @101 | |
| 10 | ord_102@4 @102 | |
| 11 | ord_103@8 @103 | |
| 12 | ord_104@4 @104 | |
| 13 | ClearPhishingFilterData@0 | |
| 14 | ConvertAndEscapePostData@12 | |
| 15 | CreateHTMLPropertyPage@8 | |
| 16 | DllCanUnloadNow@0 | |
| 17 | DllEnumClassObjects@12 | |
| 18 | DllGetClassObject@12 | |
| 19 | IEIsXMLNSRegistered@8 | |
| 20 | IERegisterXMLNS@24 | |
| 21 | MatchExactGetIDsOfNames@28 | |
| 22 | PrintHTML@16 | |
| 23 | RunHTMLApplication@16 | |
| 24 | ShowHTMLDialog@20 | |
| 25 | ShowHTMLDialogEx@24 | |
| 26 | ShowModalDialog@20 | |
| 27 | ShowModelessHTMLDialog@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 | ; | |
| 6 | LIBRARY "mshtmled.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow@0 | |
| 9 | DllEnumClassObjects@12 | |
| 10 | DllGetClassObject@12 | |
| 11 | DllRegisterServer@0 | |
| 12 | DllUnregisterServer@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 | ; | |
| 6 | LIBRARY "msoledbsql.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow@0 | |
| 9 | DllGetClassObject@12 | |
| 10 | DllMain@12 | |
| 11 | DllRegisterServer@0 | |
| 12 | DllUnregisterServer@0 | |
| 13 | OpenSqlFilestream@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). | |
| 5 | LIBRARY MSVCP60.DLL | |
| 6 | EXPORTS | |
| 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 | ||
| 62 | btowc | |
| 63 | mbrlen | |
| 64 | mbrtowc | |
| 65 | mbsrtowcs | |
| 66 | towctrans | |
| 67 | wcrtomb | |
| 68 | wcsrtombs | |
| 69 | wctob | |
| 70 | wctrans | |
| 71 | wctype | |
| \ No newline at end of file |
lib/libc/mingw/lib32/nddeapi.def created+30| ... | ... | @@ -0,0 +1,30 @@ |
| 1 | LIBRARY NDDEAPI.DLL | |
| 2 | EXPORTS | |
| 3 | NDdeGetErrorStringA@12 | |
| 4 | NDdeGetErrorStringW@12 | |
| 5 | NDdeGetShareSecurityA@24 | |
| 6 | NDdeGetShareSecurityW@24 | |
| 7 | NDdeGetTrustedShareA@20 | |
| 8 | NDdeGetTrustedShareW@20 | |
| 9 | NDdeIsValidAppTopicListA@4 | |
| 10 | NDdeIsValidAppTopicListW@4 | |
| 11 | NDdeIsValidShareNameA@4 | |
| 12 | NDdeIsValidShareNameW@4 | |
| 13 | NDdeSetShareSecurityA@16 | |
| 14 | NDdeSetShareSecurityW@16 | |
| 15 | NDdeSetTrustedShareA@12 | |
| 16 | NDdeSetTrustedShareW@12 | |
| 17 | NDdeShareAddA@20 | |
| 18 | NDdeShareAddW@20 | |
| 19 | NDdeShareDelA@12 | |
| 20 | NDdeShareDelW@12 | |
| 21 | NDdeShareEnumA@24 | |
| 22 | NDdeShareEnumW@24 | |
| 23 | NDdeShareGetInfoA@28 | |
| 24 | NDdeShareGetInfoW@28 | |
| 25 | NDdeShareSetInfoA@24 | |
| 26 | NDdeShareSetInfoW@24 | |
| 27 | NDdeSpecialCommandA@24 | |
| 28 | NDdeSpecialCommandW@24 | |
| 29 | NDdeTrustedShareEnumA@24 | |
| 30 | NDdeTrustedShareEnumW@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 | ; | |
| 6 | LIBRARY "NDIS.SYS" | |
| 7 | EXPORTS | |
| 8 | ;ArcFilterDprIndicateReceive | |
| 9 | ;ArcFilterDprIndicateReceiveComplete | |
| 10 | ;EthFilterDprIndicateReceive | |
| 11 | ;EthFilterDprIndicateReceiveComplete | |
| 12 | ;FddiFilterDprIndicateReceive | |
| 13 | ;FddiFilterDprIndicateReceiveComplete | |
| 14 | EthFilterDprIndicateReceive@32 | |
| 15 | EthFilterDprIndicateReceiveComplete@4 | |
| 16 | NDIS_BUFFER_TO_SPAN_PAGES@4 | |
| 17 | NdisAcquireRWLockRead@12 | |
| 18 | NdisAcquireRWLockWrite@12 | |
| 19 | NdisAcquireReadWriteLock@12 | |
| 20 | NdisAcquireSpinLock@4 | |
| 21 | NdisActiveGroupCount@0 | |
| 22 | NdisAdjustBufferLength@8 | |
| 23 | NdisAdjustNetBufferCurrentMdl@4 | |
| 24 | NdisAdvanceNetBufferDataStart@16 | |
| 25 | NdisAdvanceNetBufferListDataStart@16 | |
| 26 | NdisAllocateBuffer@20 | |
| 27 | NdisAllocateBufferPool@12 | |
| 28 | NdisAllocateCloneNetBufferList@16 | |
| 29 | NdisAllocateCloneOidRequest@16 | |
| 30 | NdisAllocateFragmentNetBufferList@32 | |
| 31 | NdisAllocateGenericObject@12 | |
| 32 | NdisAllocateIoWorkItem@4 | |
| 33 | NdisAllocateMdl@12 | |
| 34 | NdisAllocateMemory@20 | |
| 35 | NdisAllocateMemoryWithTag@12 | |
| 36 | NdisAllocateMemoryWithTagPriority@16 | |
| 37 | NdisAllocateNetBuffer@16 | |
| 38 | NdisAllocateNetBufferAndNetBufferList@24 | |
| 39 | NdisAllocateNetBufferList@12 | |
| 40 | NdisAllocateNetBufferListContext@16 | |
| 41 | NdisAllocateNetBufferListPool@8 | |
| 42 | NdisAllocateNetBufferMdlAndData@4 | |
| 43 | NdisAllocateNetBufferPool@8 | |
| 44 | NdisAllocatePacket@12 | |
| 45 | NdisAllocatePacketPool@16 | |
| 46 | NdisAllocatePacketPoolEx@20 | |
| 47 | NdisAllocateRWLock@4 | |
| 48 | NdisAllocateReassembledNetBufferList@24 | |
| 49 | NdisAllocateRefCount@8 | |
| 50 | NdisAllocateSharedMemory@12 | |
| 51 | NdisAllocateSpinLock@4 | |
| 52 | NdisAllocateTimerObject@12 | |
| 53 | NdisAnsiStringToUnicodeString@8 | |
| 54 | NdisBufferLength@4 | |
| 55 | NdisBufferVirtualAddress@4 | |
| 56 | NdisBuildScatterGatherList@8 | |
| 57 | NdisCancelDirectOidRequest@8 | |
| 58 | NdisCancelOidRequest@8 | |
| 59 | NdisCancelSendNetBufferLists@8 | |
| 60 | NdisCancelSendPackets@8 | |
| 61 | NdisCancelTimer@8 | |
| 62 | NdisCancelTimerObject@4 | |
| 63 | NdisClAddParty@16 | |
| 64 | NdisClCloseAddressFamily@4 | |
| 65 | NdisClCloseCall@16 | |
| 66 | NdisClDeregisterSap@4 | |
| 67 | NdisClDropParty@12 | |
| 68 | NdisClGetProtocolVcContextFromTapiCallId@12 | |
| 69 | NdisClIncomingCallComplete@12 | |
| 70 | NdisClMakeCall@16 | |
| 71 | NdisClModifyCallQoS@8 | |
| 72 | NdisClNotifyCloseAddressFamilyComplete@8 | |
| 73 | NdisClOpenAddressFamily@24 | |
| 74 | NdisClOpenAddressFamilyEx@16 | |
| 75 | NdisClRegisterSap@16 | |
| 76 | NdisCloseAdapter@8 | |
| 77 | NdisCloseAdapterEx@4 | |
| 78 | NdisCloseConfiguration@4 | |
| 79 | NdisCloseFile@4 | |
| 80 | NdisCloseNDKAdapter@8 | |
| 81 | NdisCmActivateVc@8 | |
| 82 | NdisCmAddPartyComplete@16 | |
| 83 | NdisCmCloseAddressFamilyComplete@8 | |
| 84 | NdisCmCloseCallComplete@12 | |
| 85 | NdisCmDeactivateVc@4 | |
| 86 | NdisCmDeregisterSapComplete@8 | |
| 87 | NdisCmDispatchCallConnected@4 | |
| 88 | NdisCmDispatchIncomingCall@12 | |
| 89 | NdisCmDispatchIncomingCallQoSChange@8 | |
| 90 | NdisCmDispatchIncomingCloseCall@16 | |
| 91 | NdisCmDispatchIncomingDropParty@16 | |
| 92 | NdisCmDropPartyComplete@8 | |
| 93 | NdisCmMakeCallComplete@20 | |
| 94 | NdisCmModifyCallQoSComplete@12 | |
| 95 | NdisCmNotifyCloseAddressFamily@4 | |
| 96 | NdisCmOpenAddressFamilyComplete@12 | |
| 97 | NdisCmRegisterAddressFamily@16 | |
| 98 | NdisCmRegisterAddressFamilyEx@8 | |
| 99 | NdisCmRegisterSapComplete@12 | |
| 100 | NdisCoAssignInstanceName@12 | |
| 101 | NdisCoCreateVc@16 | |
| 102 | NdisCoDeleteVc@4 | |
| 103 | NdisCoGetTapiCallId@8 | |
| 104 | NdisCoOidRequest@20 | |
| 105 | NdisCoOidRequestComplete@20 | |
| 106 | NdisCoRequest@20 | |
| 107 | NdisCoRequestComplete@20 | |
| 108 | NdisCoSendNetBufferLists@12 | |
| 109 | NdisCoSendPackets@12 | |
| 110 | NdisCompareAnsiString@12 | |
| 111 | NdisCompareUnicodeString@12 | |
| 112 | NdisCompleteBindAdapter@12 | |
| 113 | NdisCompleteBindAdapterEx@8 | |
| 114 | NdisCompleteDmaTransfer@24 | |
| 115 | NdisCompleteNetPnPEvent@12 | |
| 116 | NdisCompletePnPEvent@12 | |
| 117 | NdisCompleteUnbindAdapter@8 | |
| 118 | NdisCompleteUnbindAdapterEx@4 | |
| 119 | NdisConvertNdisStatusToNtStatus@4 | |
| 120 | NdisConvertNtStatusToNdisStatus@4 | |
| 121 | NdisCopyBuffer@24 | |
| 122 | NdisCopyFromNetBufferToNetBuffer@24 | |
| 123 | NdisCopyFromPacketToPacket@24 | |
| 124 | NdisCopyFromPacketToPacketSafe@28 | |
| 125 | NdisCopyReceiveNetBufferListInfo@8 | |
| 126 | NdisCopySendNetBufferListInfo@8 | |
| 127 | NdisCurrentGroupAndProcessor@0 | |
| 128 | NdisCurrentProcessorIndex@0 | |
| 129 | NdisDereferenceWithTag@8 | |
| 130 | NdisDeregisterDeviceEx@4 | |
| 131 | NdisDeregisterProtocol@8 | |
| 132 | NdisDeregisterProtocolDriver@4 | |
| 133 | NdisDeregisterTdiCallBack@0 | |
| 134 | NdisDirectOidRequest@8 | |
| 135 | NdisDllInitialize@0 | |
| 136 | NdisDprAcquireReadWriteLock@12 | |
| 137 | NdisDprAcquireSpinLock@4 | |
| 138 | NdisDprAllocatePacket@12 | |
| 139 | NdisDprAllocatePacketNonInterlocked@12 | |
| 140 | NdisDprFreePacket@4 | |
| 141 | NdisDprFreePacketNonInterlocked@4 | |
| 142 | ;NdisDprReleaseSpinLock | |
| 143 | ;NdisEqualString DATA | |
| 144 | NdisDprReleaseReadWriteLock@8 | |
| 145 | NdisDprReleaseSpinLock@4 | |
| 146 | NdisEnumerateFilterModules@20 | |
| 147 | NdisEqualString@12 | |
| 148 | NdisFCancelDirectOidRequest@8 | |
| 149 | NdisFCancelOidRequest@8 | |
| 150 | NdisFCancelSendNetBufferLists@8 | |
| 151 | NdisFDeregisterFilterDriver@4 | |
| 152 | NdisFDevicePnPEventNotify@8 | |
| 153 | NdisFDirectOidRequest@8 | |
| 154 | NdisFDirectOidRequestComplete@12 | |
| 155 | NdisFGetOptionalSwitchHandlers@12 | |
| 156 | NdisFIndicateReceiveNetBufferLists@20 | |
| 157 | NdisFIndicateStatus@8 | |
| 158 | NdisFNetPnPEvent@8 | |
| 159 | NdisFOidRequest@8 | |
| 160 | NdisFOidRequestComplete@12 | |
| 161 | NdisFPauseComplete@4 | |
| 162 | NdisFRegisterFilterDriver@16 | |
| 163 | NdisFRestartComplete@8 | |
| 164 | NdisFRestartFilter@4 | |
| 165 | NdisFRetryAttach@8 | |
| 166 | NdisFReturnNetBufferLists@12 | |
| 167 | NdisFSendNetBufferLists@16 | |
| 168 | NdisFSendNetBufferListsComplete@12 | |
| 169 | NdisFSetAttributes@12 | |
| 170 | NdisFSynchronousOidRequest@8 | |
| 171 | NdisFreeBuffer@4 | |
| 172 | NdisFreeBufferPool@4 | |
| 173 | NdisFreeCloneNetBufferList@8 | |
| 174 | NdisFreeCloneOidRequest@8 | |
| 175 | NdisFreeFragmentNetBufferList@12 | |
| 176 | NdisFreeGenericObject@4 | |
| 177 | NdisFreeIoWorkItem@4 | |
| 178 | NdisFreeMdl@4 | |
| 179 | NdisFreeMemory@12 | |
| 180 | NdisFreeMemoryWithTag@8 | |
| 181 | NdisFreeMemoryWithTagPriority@12 | |
| 182 | NdisFreeNetBuffer@4 | |
| 183 | NdisFreeNetBufferList@4 | |
| 184 | NdisFreeNetBufferListContext@8 | |
| 185 | NdisFreeNetBufferListPool@4 | |
| 186 | NdisFreeNetBufferPool@4 | |
| 187 | NdisFreePacket@4 | |
| 188 | NdisFreePacketPool@4 | |
| 189 | ;NdisFreeToBlockPool | |
| 190 | NdisFreeRWLock@4 | |
| 191 | NdisFreeReassembledNetBufferList@12 | |
| 192 | NdisFreeRefCount@4 | |
| 193 | NdisFreeScatterGatherList@12 | |
| 194 | NdisFreeSharedMemory@8 | |
| 195 | NdisFreeSpinLock@4 | |
| 196 | NdisFreeTimerObject@4 | |
| 197 | NdisGeneratePartialCancelId@0 | |
| 198 | NdisGetAndReferenceCompartmentJobObject@12 | |
| 199 | NdisGetBufferPhysicalArraySize@8 | |
| 200 | NdisGetCurrentProcessorCounts@12 | |
| 201 | NdisGetCurrentProcessorCpuUsage@4 | |
| 202 | NdisGetCurrentSystemTime@4 | |
| 203 | NdisGetDataBuffer@20 | |
| 204 | NdisGetDeviceReservedExtension@4 | |
| 205 | NdisGetDriverHandle@8 | |
| 206 | NdisGetFirstBufferFromPacket@20 | |
| 207 | NdisGetFirstBufferFromPacketSafe@24 | |
| 208 | NdisGetHypervisorInfo@4 | |
| 209 | NdisGetJobObjectCompartmentId@4 | |
| 210 | NdisGetNetBufferListProtocolId@4 | |
| 211 | NdisGetPacketCancelId@4 | |
| 212 | NdisGetPacketFromNetBufferList@8 | |
| 213 | NdisGetPoolFromNetBuffer@4 | |
| 214 | NdisGetPoolFromNetBufferList@4 | |
| 215 | NdisGetPoolFromPacket@4 | |
| 216 | NdisGetProcessObjectCompartmentId@4 | |
| 217 | NdisGetProcessorInformation@4 | |
| 218 | NdisGetProcessorInformationEx@12 | |
| 219 | NdisGetReceivedPacket@8 | |
| 220 | NdisGetRefCount@4 | |
| 221 | NdisGetRoutineAddress@4 | |
| 222 | NdisGetRssProcessorInformation@12 | |
| 223 | NdisGetSessionCompartmentId@4 | |
| 224 | NdisGetSessionToCompartmentMappingEpochAndZero@0 | |
| 225 | NdisGetSharedDataAlignment@0 | |
| 226 | NdisGetSystemUpTime@4 | |
| 227 | NdisGetSystemUpTimeEx@4 | |
| 228 | NdisGetThreadObjectCompartmentId@4 | |
| 229 | NdisGetThreadObjectCompartmentScope@12 | |
| 230 | NdisGetVersion@0 | |
| 231 | NdisGroupActiveProcessorCount@4 | |
| 232 | NdisGroupActiveProcessorMask@4 | |
| 233 | NdisGroupMaxProcessorCount@4 | |
| 234 | NdisIMAssociateMiniport@8 | |
| 235 | NdisIMCancelInitializeDeviceInstance@8 | |
| 236 | NdisIMCopySendCompletePerPacketInfo@8 | |
| 237 | NdisIMCopySendPerPacketInfo@8 | |
| 238 | NdisIMDeInitializeDeviceInstance@4 | |
| 239 | NdisIMDeregisterLayeredMiniport@4 | |
| 240 | NdisIMGetBindingContext@4 | |
| 241 | NdisIMGetCurrentPacketStack@8 | |
| 242 | NdisIMGetDeviceContext@4 | |
| 243 | NdisIMInitializeDeviceInstance@8 | |
| 244 | NdisIMInitializeDeviceInstanceEx@12 | |
| 245 | NdisIMNotifyPnPEvent@8 | |
| 246 | NdisIMQueueMiniportCallback@12 | |
| 247 | NdisIMRegisterLayeredMiniport@16 | |
| 248 | NdisIMRevertBack@8 | |
| 249 | NdisIMSwitchToMiniport@8 | |
| 250 | NdisIMVBusDeviceAdd@8 | |
| 251 | NdisIMVBusDeviceRemove@8 | |
| 252 | NdisIfAddIfStackEntry@8 | |
| 253 | NdisIfAllocateNetLuidIndex@8 | |
| 254 | NdisIfAllocateNetLuidIndexEx@12 | |
| 255 | NdisIfDeleteIfStackEntry@8 | |
| 256 | NdisIfDeregisterInterface@4 | |
| 257 | NdisIfDeregisterProvider@4 | |
| 258 | NdisIfFreeNetLuidIndex@8 | |
| 259 | NdisIfGetInterfaceIndexFromNetLuid@12 | |
| 260 | NdisIfGetNetLuidFromInterfaceIndex@8 | |
| 261 | NdisIfQueryBindingIfIndex@20 | |
| 262 | NdisIfRegisterInterface@24 | |
| 263 | NdisIfRegisterProvider@12 | |
| 264 | NdisImmediateReadPciSlotInformation@20 | |
| 265 | NdisImmediateReadPortUchar@12 | |
| 266 | NdisImmediateReadPortUlong@12 | |
| 267 | NdisImmediateReadPortUshort@12 | |
| 268 | NdisImmediateReadSharedMemory@16 | |
| 269 | NdisImmediateWritePciSlotInformation@20 | |
| 270 | NdisImmediateWritePortUchar@12 | |
| 271 | NdisImmediateWritePortUlong@12 | |
| 272 | NdisImmediateWritePortUshort@12 | |
| 273 | NdisImmediateWriteSharedMemory@16 | |
| 274 | NdisInitAnsiString@8 | |
| 275 | NdisInitUnicodeString@8 | |
| 276 | NdisInitializeEvent@4 | |
| 277 | NdisInitializeReadWriteLock@4 | |
| 278 | NdisInitializeString@8 | |
| 279 | NdisInitializeTimer@12 | |
| 280 | NdisInitializeWrapper@16 | |
| 281 | NdisInitiateOffload@8 | |
| 282 | NdisInterlockedAddLargeInterger@16 | |
| 283 | NdisInterlockedAddUlong@12 | |
| 284 | NdisInterlockedDecrement@4 | |
| 285 | NdisInterlockedIncrement@4 | |
| 286 | NdisInterlockedInsertHeadList@12 | |
| 287 | NdisInterlockedInsertTailList@12 | |
| 288 | NdisInterlockedPopEntryList@8 | |
| 289 | NdisInterlockedPushEntryList@12 | |
| 290 | NdisInterlockedRemoveHeadList@8 | |
| 291 | NdisInvalidateOffload@8 | |
| 292 | NdisIsStatusIndicationCloneable@4 | |
| 293 | NdisLWMDeregisterMiniportDriver@4 | |
| 294 | NdisLWMInitializeNetworkInterface@16 | |
| 295 | NdisLWMRegisterMiniportDriver@12 | |
| 296 | NdisLWMStartNetworkInterface@4 | |
| 297 | NdisLWMUninitializeNetworkInterface@4 | |
| 298 | NdisMAllocateMapRegisters@20 | |
| 299 | NdisMAllocateNetBufferSGList@24 | |
| 300 | NdisMAllocatePort@8 | |
| 301 | NdisMAllocateSharedMemory@20 | |
| 302 | NdisMAllocateSharedMemoryAsync@16 | |
| 303 | NdisMAllocateSharedMemoryAsyncEx@16 | |
| 304 | NdisMCancelTimer@8 | |
| 305 | NdisMCloseLog@4 | |
| 306 | NdisMCmActivateVc@8 | |
| 307 | NdisMCmCreateVc@16 | |
| 308 | NdisMCmDeactivateVc@4 | |
| 309 | NdisMCmDeleteVc@4 | |
| 310 | NdisMCmOidRequest@16 | |
| 311 | NdisMCmRegisterAddressFamily@16 | |
| 312 | NdisMCmRegisterAddressFamilyEx@8 | |
| 313 | NdisMCmRequest@16 | |
| 314 | NdisMCoActivateVcComplete@12 | |
| 315 | NdisMCoDeactivateVcComplete@8 | |
| 316 | NdisMCoIndicateReceiveNetBufferLists@16 | |
| 317 | NdisMCoIndicateReceivePacket@12 | |
| 318 | NdisMCoIndicateStatus@20 | |
| 319 | NdisMCoIndicateStatusEx@12 | |
| 320 | NdisMCoOidRequestComplete@16 | |
| 321 | NdisMCoReceiveComplete@4 | |
| 322 | NdisMCoRequestComplete@12 | |
| 323 | NdisMCoSendComplete@12 | |
| 324 | NdisMCoSendNetBufferListsComplete@12 | |
| 325 | NdisMCompleteBufferPhysicalMapping@12 | |
| 326 | NdisMConfigMSIXTableEntry@8 | |
| 327 | NdisMCreateLog@12 | |
| 328 | NdisMDeregisterAdapterShutdownHandler@4 | |
| 329 | NdisMDeregisterDevice@4 | |
| 330 | NdisMDeregisterDmaChannel@4 | |
| 331 | NdisMDeregisterInterrupt@4 | |
| 332 | NdisMDeregisterInterruptEx@4 | |
| 333 | NdisMDeregisterIoPortRange@16 | |
| 334 | NdisMDeregisterMiniportDriver@4 | |
| 335 | NdisMDeregisterScatterGatherDma@4 | |
| 336 | NdisMDeregisterWdiMiniportDriver@4 | |
| 337 | NdisMDirectOidRequestComplete@12 | |
| 338 | NdisMEnableVirtualization@20 | |
| 339 | NdisMFlushLog@4 | |
| 340 | NdisMFreeMapRegisters@4 | |
| 341 | NdisMFreeNetBufferSGList@12 | |
| 342 | NdisMFreePort@8 | |
| 343 | NdisMFreeSharedMemory@24 | |
| 344 | NdisMGetBusData@20 | |
| 345 | NdisMGetDeviceProperty@24 | |
| 346 | NdisMGetDmaAlignment@4 | |
| 347 | NdisMGetMiniportInitAttributes@8 | |
| 348 | NdisMGetOffloadHandlers@12 | |
| 349 | NdisMGetVirtualDeviceLocation@24 | |
| 350 | NdisMGetVirtualFunctionBusData@20 | |
| 351 | NdisMGetVirtualFunctionLocation@20 | |
| 352 | NdisMIdleNotificationComplete@4 | |
| 353 | NdisMIdleNotificationCompleteEx@8 | |
| 354 | NdisMIdleNotificationConfirm@8 | |
| 355 | NdisMIndicateReceiveNetBufferLists@20 | |
| 356 | NdisMIndicateStatus@16 | |
| 357 | NdisMIndicateStatusComplete@4 | |
| 358 | NdisMIndicateStatusEx@8 | |
| 359 | NdisMInitializeScatterGatherDma@12 | |
| 360 | NdisMInitializeTimer@16 | |
| 361 | NdisMInitiateOffloadComplete@8 | |
| 362 | NdisMInvalidateConfigBlock@16 | |
| 363 | NdisMInvalidateOffloadComplete@8 | |
| 364 | NdisMMapIoSpace@20 | |
| 365 | NdisMNetPnPEvent@8 | |
| 366 | NdisMOffloadEventIndicate@12 | |
| 367 | NdisMOidRequestComplete@12 | |
| 368 | NdisMPauseComplete@4 | |
| 369 | NdisMPciAssignResources@12 | |
| 370 | NdisMPromoteMiniport@4 | |
| 371 | NdisMQueryAdapterInstanceName@8 | |
| 372 | NdisMQueryAdapterResources@16 | |
| 373 | NdisMQueryInformationComplete@8 | |
| 374 | NdisMQueryOffloadStateComplete@8 | |
| 375 | NdisMQueryProbedBars@8 | |
| 376 | NdisMQueueDpc@16 | |
| 377 | NdisMQueueDpcEx@16 | |
| 378 | NdisMReadConfigBlock@16 | |
| 379 | NdisMReadDmaCounter@4 | |
| 380 | NdisMReenumerateFailedAdapter@4 | |
| 381 | NdisMRegisterAdapterShutdownHandler@12 | |
| 382 | NdisMRegisterDevice@24 | |
| 383 | NdisMRegisterDmaChannel@24 | |
| 384 | NdisMRegisterInterrupt@28 | |
| 385 | NdisMRegisterInterruptEx@16 | |
| 386 | NdisMRegisterIoPortRange@16 | |
| 387 | NdisMRegisterMiniport@12 | |
| 388 | NdisMRegisterMiniportDriver@20 | |
| 389 | NdisMRegisterScatterGatherDma@12 | |
| 390 | NdisMRegisterUnloadHandler@8 | |
| 391 | NdisMRegisterWdiMiniportDriver@24 | |
| 392 | NdisMRemoveMiniport@4 | |
| 393 | NdisMRequestDpc@8 | |
| 394 | NdisMResetComplete@12 | |
| 395 | NdisMResetMiniport@4 | |
| 396 | NdisMRestartComplete@8 | |
| 397 | NdisMSendComplete@12 | |
| 398 | NdisMSendNetBufferListsComplete@12 | |
| 399 | NdisMSendResourcesAvailable@4 | |
| 400 | NdisMSetAttributes@16 | |
| 401 | NdisMSetAttributesEx@20 | |
| 402 | NdisMSetBusData@20 | |
| 403 | NdisMSetInformationComplete@8 | |
| 404 | NdisMSetMiniportAttributes@8 | |
| 405 | NdisMSetMiniportSecondary@8 | |
| 406 | NdisMSetPeriodicTimer@8 | |
| 407 | NdisMSetTimer@8 | |
| 408 | NdisMSetVirtualFunctionBusData@20 | |
| 409 | NdisMSleep@4 | |
| 410 | NdisMStartBufferPhysicalMapping@24 | |
| 411 | NdisMSynchronizeWithInterrupt@12 | |
| 412 | NdisMSynchronizeWithInterruptEx@16 | |
| 413 | NdisMTerminateOffloadComplete@8 | |
| 414 | NdisMTransferDataComplete@16 | |
| 415 | NdisMUnmapIoSpace@12 | |
| 416 | NdisMUpdateOffloadComplete@8 | |
| 417 | NdisMWanIndicateReceive@20 | |
| 418 | NdisMWanIndicateReceiveComplete@8 | |
| 419 | NdisMWanSendComplete@12 | |
| 420 | NdisMWriteConfigBlock@16 | |
| 421 | NdisMWriteLogData@12 | |
| 422 | NdisMapFile@12 | |
| 423 | NdisMatchPdoWithPacket@8 | |
| 424 | NdisMaxGroupCount@0 | |
| 425 | NdisNblTrackerDeregisterComponent@4 | |
| 426 | NdisNblTrackerQueryNblCurrentOwner@4 | |
| 427 | NdisNblTrackerRecordEvent@16 | |
| 428 | NdisNblTrackerRegisterComponent@12 | |
| 429 | NdisNblTrackerTransferOwnership@20 | |
| 430 | NdisOffloadTcpDisconnect@12 | |
| 431 | NdisOffloadTcpForward@8 | |
| 432 | NdisOffloadTcpReceive@8 | |
| 433 | NdisOffloadTcpReceiveReturn@8 | |
| 434 | NdisOffloadTcpSend@8 | |
| 435 | NdisOidRequest@8 | |
| 436 | NdisOpenAdapter@44 | |
| 437 | NdisOpenAdapterEx@20 | |
| 438 | NdisOpenConfiguration@12 | |
| 439 | NdisOpenConfigurationEx@8 | |
| 440 | NdisOpenConfigurationKeyByIndex@20 | |
| 441 | NdisOpenConfigurationKeyByName@16 | |
| 442 | NdisOpenFile@24 | |
| 443 | NdisOpenNDKAdapter@12 | |
| 444 | NdisOpenProtocolConfiguration@12 | |
| 445 | NdisOverrideBusNumber@12 | |
| 446 | NdisPacketPoolUsage@4 | |
| 447 | NdisPacketSize@4 | |
| 448 | NdisProcessorIndexToNumber@8 | |
| 449 | NdisProcessorNumberToIndex@4 | |
| 450 | NdisQueryAdapterInstanceName@8 | |
| 451 | NdisQueryBindInstanceName@8 | |
| 452 | NdisQueryBuffer@12 | |
| 453 | NdisQueryBufferOffset@12 | |
| 454 | NdisQueryBufferSafe@16 | |
| 455 | NdisQueryDiagnosticSetting@8 | |
| 456 | NdisQueryMapRegisterCount@8 | |
| 457 | NdisQueryNetBufferPhysicalCount@4 | |
| 458 | NdisQueryOffloadState@8 | |
| 459 | NdisQueryPendingIOCount@8 | |
| 460 | NdisQueueIoWorkItem@12 | |
| 461 | NdisReEnumerateProtocolBindings@4 | |
| 462 | NdisReadConfiguration@20 | |
| 463 | NdisReadEisaSlotInformation@16 | |
| 464 | NdisReadEisaSlotInformationEx@20 | |
| 465 | NdisReadMcaPosInformation@16 | |
| 466 | NdisReadNetworkAddress@16 | |
| 467 | NdisReadPciSlotInformation@20 | |
| 468 | NdisReadPcmciaAttributeMemory@16 | |
| 469 | NdisReferenceWithTag@8 | |
| 470 | NdisRegisterDeviceEx@16 | |
| 471 | NdisRegisterProtocol@16 | |
| 472 | NdisRegisterProtocolDriver@12 | |
| 473 | NdisRegisterTdiCallBack@8 | |
| 474 | NdisReleaseNicActive@8 | |
| 475 | NdisReleaseRWLock@8 | |
| 476 | NdisReleaseReadWriteLock@8 | |
| 477 | NdisReleaseSpinLock@4 | |
| 478 | NdisRequest@12 | |
| 479 | NdisRequestEx@8 | |
| 480 | NdisReset@8 | |
| 481 | NdisResetEvent@4 | |
| 482 | NdisRetreatNetBufferDataStart@16 | |
| 483 | NdisRetreatNetBufferListDataStart@20 | |
| 484 | NdisReturnNetBufferLists@12 | |
| 485 | NdisReturnPackets@8 | |
| 486 | NdisScheduleWorkItem@4 | |
| 487 | NdisSend@12 | |
| 488 | NdisSendNetBufferLists@16 | |
| 489 | NdisSendPackets@12 | |
| 490 | NdisSetAoAcOptions@8 | |
| 491 | NdisSetCoalescableTimerObject@24 | |
| 492 | NdisSetEvent@4 | |
| 493 | NdisSetOptionalHandlers@8 | |
| 494 | NdisSetPacketCancelId@8 | |
| 495 | NdisSetPacketPoolProtocolId@8 | |
| 496 | NdisSetPacketStatus@16 | |
| 497 | NdisSetPeriodicTimer@8 | |
| 498 | NdisSetProtocolFilter@32 | |
| 499 | NdisSetSessionCompartmentId@8 | |
| 500 | NdisSetThreadObjectCompartmentId@8 | |
| 501 | NdisSetThreadObjectCompartmentScope@8 | |
| 502 | NdisSetTimer@8 | |
| 503 | NdisSetTimerEx@12 | |
| 504 | NdisSetTimerObject@20 | |
| 505 | NdisSetupDmaTransfer@24 | |
| 506 | NdisSynchronousOidRequest@8 | |
| 507 | NdisSystemActiveProcessorCount@4 | |
| 508 | NdisSystemProcessorCount@0 | |
| 509 | NdisTerminateOffload@8 | |
| 510 | NdisTerminateWrapper@8 | |
| 511 | NdisTestRWLockHeldByCurrentProcessorRead@4 | |
| 512 | NdisTestRWLockHeldByCurrentProcessorWrite@4 | |
| 513 | NdisTransferData@28 | |
| 514 | NdisTryAcquireNicActive@8 | |
| 515 | NdisTryAcquireRWLockRead@12 | |
| 516 | NdisTryAcquireRWLockWrite@12 | |
| 517 | NdisTryPromoteRWLockFromReadToWrite@8 | |
| 518 | NdisUnbindAdapter@4 | |
| 519 | NdisUnchainBufferAtBack@8 | |
| 520 | NdisUnchainBufferAtFront@8 | |
| 521 | NdisUnicodeStringToAnsiString@8 | |
| 522 | NdisUnmapFile@4 | |
| 523 | NdisUpcaseUnicodeString@8 | |
| 524 | NdisUpdateOffload@8 | |
| 525 | NdisUpdateSharedMemory@20 | |
| 526 | NdisWaitEvent@8 | |
| 527 | NdisWdfAsyncPowerReferenceCompleteNotification@12 | |
| 528 | NdisWdfChangeSingleInstance@12 | |
| 529 | NdisWdfCloseIrpHandler@4 | |
| 530 | NdisWdfCreateIrpHandler@8 | |
| 531 | NdisWdfDeregisterCx@4 | |
| 532 | NdisWdfDeviceControlIrpHandler@4 | |
| 533 | NdisWdfDeviceInternalControlIrpHandler@4 | |
| 534 | NdisWdfExecuteMethod@20 | |
| 535 | NdisWdfGenerateFdoNameIndex@0 | |
| 536 | NdisWdfGetAdapterContextFromAdapterHandle@4 | |
| 537 | NdisWdfGetGuidToOidMap@16 | |
| 538 | NdisWdfMiniportDataPathPause@4 | |
| 539 | NdisWdfMiniportDataPathStart@4 | |
| 540 | NdisWdfMiniportDereference@4 | |
| 541 | NdisWdfMiniportSetPower@12 | |
| 542 | NdisWdfMiniportStarted@4 | |
| 543 | NdisWdfMiniportTryReference@4 | |
| 544 | NdisWdfPnPAddDevice@8 | |
| 545 | NdisWdfPnpPowerEventHandler@12 | |
| 546 | NdisWdfQueryAllData@24 | |
| 547 | NdisWdfQuerySingleInstance@20 | |
| 548 | NdisWdfReadConfiguration@20 | |
| 549 | NdisWdfRegisterCx@20 | |
| 550 | NdisWdfRegisterMiniportDriver@24 | |
| 551 | NdisWriteConfiguration@16 | |
| 552 | NdisWriteErrorLogEntry@0 | |
| 553 | NdisWriteEventLogEntry@28 | |
| 554 | NdisWritePciSlotInformation@20 | |
| 555 | NdisWritePcmciaAttributeMemory@16 | |
| 556 | NetDmaAllocateChannel@16 | |
| 557 | NetDmaChainCopyPhysicalToVirtual@36 | |
| 558 | NetDmaChainCopyVirtualToVirtual@28 | |
| 559 | NetDmaDeregisterClient@4 | |
| 560 | NetDmaDeregisterProvider@4 | |
| 561 | NetDmaEnumerateDmaProviders@20 | |
| 562 | NetDmaFlushPendingDescriptors@4 | |
| 563 | NetDmaFreeChannel@4 | |
| 564 | NetDmaGetMaxPendingDescriptors@4 | |
| 565 | NetDmaGetVersion@0 | |
| 566 | NetDmaInterruptDpc@12 | |
| 567 | NetDmaIsDmaCopyComplete@8 | |
| 568 | NetDmaIsr@16 | |
| 569 | NetDmaNullTransfer@16 | |
| 570 | NetDmaPnPEventNotify@8 | |
| 571 | NetDmaPrefetchNextDescriptor@4 | |
| 572 | NetDmaProviderStart@8 | |
| 573 | NetDmaProviderStop@4 | |
| 574 | NetDmaRegisterClient@12 | |
| 575 | NetDmaRegisterProvider@12 | |
| 576 | NetDmaSetMaxPendingDescriptors@8 | |
| 577 | TrFilterDprIndicateReceive@28 | |
| 578 | TrFilterDprIndicateReceiveComplete@4 |
lib/libc/mingw/lib32/netio.def created+531| ... | ... | @@ -0,0 +1,531 @@ |
| 1 | LIBRARY "NETIO.SYS" | |
| 2 | EXPORTS | |
| 3 | AgileVPNDispatchTableInit@4 | |
| 4 | AgileVPNFindCompartmentIdFromTunnelId@12 | |
| 5 | AgileVPNFindTunnelInfoFromInterfaceIndex@20 | |
| 6 | CancelMibChangeNotify2@4 | |
| 7 | CloseCompartment@4 | |
| 8 | ConvertCompartmentGuidToId@8 | |
| 9 | ConvertCompartmentIdToGuid@8 | |
| 10 | ConvertInterfaceAliasToLuid@8 | |
| 11 | ConvertInterfaceGuidToLuid@8 | |
| 12 | ConvertInterfaceIndexToLuid@8 | |
| 13 | ConvertInterfaceLuidToAlias@12 | |
| 14 | ConvertInterfaceLuidToGuid@8 | |
| 15 | ConvertInterfaceLuidToIndex@8 | |
| 16 | ConvertInterfaceLuidToNameA@12 | |
| 17 | ConvertInterfaceLuidToNameW@12 | |
| 18 | ConvertInterfaceNameToLuidA@8 | |
| 19 | ConvertInterfaceNameToLuidW@8 | |
| 20 | ConvertInterfacePhysicalAddressToLuid@12 | |
| 21 | ConvertIpv4MaskToLength@8 | |
| 22 | ConvertLengthToIpv4Mask@8 | |
| 23 | ConvertStringToInterfacePhysicalAddress@8 | |
| 24 | CreateAnycastIpAddressEntry@4 | |
| 25 | CreateCompartment@4 | |
| 26 | CreateIpForwardEntry2@4 | |
| 27 | CreateIpNetEntry2@4 | |
| 28 | CreateSortedAddressPairs@28 | |
| 29 | CreateUnicastIpAddressEntry@4 | |
| 30 | DeleteAnycastIpAddressEntry@4 | |
| 31 | DeleteCompartment@4 | |
| 32 | DeleteIpForwardEntry2@4 | |
| 33 | DeleteIpNetEntry2@4 | |
| 34 | DeleteUnicastIpAddressEntry@4 | |
| 35 | FeAcquireClassifyHandle@8 | |
| 36 | FeAcquireWritableLayerDataPointer@24 | |
| 37 | FeApplyModifiedLayerData@16 | |
| 38 | FeCompleteClassify@16 | |
| 39 | FeCopyIncomingValues@12 | |
| 40 | FeGetWfpGlobalPtr@0 | |
| 41 | FePendClassify@16 | |
| 42 | FeReleaseCalloutContextList@4 | |
| 43 | FeReleaseClassifyHandle@8 | |
| 44 | FlushIpNetTable2@8 | |
| 45 | FlushIpPathTable@4 | |
| 46 | FreeDnsSettings@4 | |
| 47 | FreeInterfaceDnsSettings@4 | |
| 48 | FreeMibTable@4 | |
| 49 | FsbAllocate@4 | |
| 50 | FsbAllocateAtDpcLevel@4 | |
| 51 | FsbCreatePool@16 | |
| 52 | FsbDestroyPool@4 | |
| 53 | FsbFree@4 | |
| 54 | FwpmEventProviderCreate0@8 | |
| 55 | FwpmEventProviderDestroy0@4 | |
| 56 | FwpmEventProviderFireNetEvent0@16 | |
| 57 | FwpmEventProviderIsNetEventTypeEnabled0@12 | |
| 58 | FwppAdvanceStreamDataPastOffset@8 | |
| 59 | FwppCopyStreamDataToBuffer@16 | |
| 60 | FwppLogVpnEvent@4 | |
| 61 | FwppStreamContinue@20 | |
| 62 | FwppStreamDeleteDpcQueue@4 | |
| 63 | FwppStreamInject@28 | |
| 64 | FwppTruncateStreamDataAfterOffset@16 | |
| 65 | GetAnycastIpAddressEntry@4 | |
| 66 | GetAnycastIpAddressTable@8 | |
| 67 | GetBestInterface@8 | |
| 68 | GetBestInterfaceEx@8 | |
| 69 | GetBestRoute2@28 | |
| 70 | GetDefaultCompartmentId@0 | |
| 71 | GetDnsSettings@4 | |
| 72 | GetIfEntry2@4 | |
| 73 | GetIfEntry2Ex@8 | |
| 74 | GetIfStackTable@4 | |
| 75 | GetIfTable2@4 | |
| 76 | GetIfTable2Ex@8 | |
| 77 | GetInterfaceCompartmentId@4 | |
| 78 | GetInterfaceDnsSettings@20 | |
| 79 | GetInvertedIfStackTable@4 | |
| 80 | GetIpForwardEntry2@4 | |
| 81 | GetIpForwardTable2@8 | |
| 82 | GetIpInterfaceEntry@4 | |
| 83 | GetIpInterfaceTable@8 | |
| 84 | GetIpNetEntry2@4 | |
| 85 | GetIpNetTable2@8 | |
| 86 | GetIpNetworkConnectionBandwidthEstimates@12 | |
| 87 | GetIpPathEntry@4 | |
| 88 | GetIpPathTable@8 | |
| 89 | GetMulticastIpAddressEntry@4 | |
| 90 | GetMulticastIpAddressTable@8 | |
| 91 | GetTeredoPort@4 | |
| 92 | GetUnicastIpAddressEntry@4 | |
| 93 | GetUnicastIpAddressTable@8 | |
| 94 | HfAllocateHandle32@12 | |
| 95 | HfCreateFactory@8 | |
| 96 | HfDestroyFactory@4 | |
| 97 | HfFreeHandle32@8 | |
| 98 | HfGetPointerFromHandle32@12 | |
| 99 | HfResumeHandle32@8 | |
| 100 | HfSuspendHandle32@8 | |
| 101 | IPsecGwDispatchTableInit@4 | |
| 102 | IPsecGwGetTunnelInfoFromIPInformation@32 | |
| 103 | IPsecGwIsUdpEspPacket@4 | |
| 104 | IPsecGwProcessSecureNbl@44 | |
| 105 | IPsecGwSetCallbackDispatch@4 | |
| 106 | IPsecGwTransformClearTextPacket@56 | |
| 107 | InitializeCompartmentEntry@4 | |
| 108 | InitializeIpForwardEntry@4 | |
| 109 | InitializeIpInterfaceEntry@4 | |
| 110 | InitializeUnicastIpAddressEntry@4 | |
| 111 | InternalCleanupPersistentStore@8 | |
| 112 | InternalCreateAnycastIpAddressEntry@8 | |
| 113 | InternalCreateIpForwardEntry2@8 | |
| 114 | InternalCreateIpNetEntry2@8 | |
| 115 | InternalCreateUnicastIpAddressEntry@8 | |
| 116 | InternalDeleteAnycastIpAddressEntry@8 | |
| 117 | InternalDeleteIpForwardEntry2@8 | |
| 118 | InternalDeleteIpNetEntry2@8 | |
| 119 | InternalDeleteUnicastIpAddressEntry@8 | |
| 120 | InternalFindInterfaceByAddress@8 | |
| 121 | InternalGetAnycastIpAddressEntry@8 | |
| 122 | InternalGetAnycastIpAddressTable@12 | |
| 123 | InternalGetForwardIpTable2@12 | |
| 124 | InternalGetIfEntry2@8 | |
| 125 | InternalGetIfTable2@8 | |
| 126 | InternalGetIpForwardEntry2@8 | |
| 127 | InternalGetIpInterfaceEntry@8 | |
| 128 | InternalGetIpInterfaceTable@12 | |
| 129 | InternalGetIpNetEntry2@8 | |
| 130 | InternalGetIpNetTable2@12 | |
| 131 | InternalGetMulticastIpAddressEntry@8 | |
| 132 | InternalGetMulticastIpAddressTable@12 | |
| 133 | InternalGetUnicastIpAddressEntry@8 | |
| 134 | InternalGetUnicastIpAddressTable@12 | |
| 135 | InternalSetIpForwardEntry2@8 | |
| 136 | InternalSetIpInterfaceEntry@8 | |
| 137 | InternalSetIpNetEntry2@8 | |
| 138 | InternalSetTeredoPort@4 | |
| 139 | InternalSetUnicastIpAddressEntry@8 | |
| 140 | IoctlKfdAbortTransaction@16 | |
| 141 | IoctlKfdAddCache@16 | |
| 142 | IoctlKfdAddIndex@16 | |
| 143 | IoctlKfdBatchUpdate@16 | |
| 144 | IoctlKfdBeginEnumFilters@16 | |
| 145 | IoctlKfdCommitTransaction@16 | |
| 146 | IoctlKfdDeleteCache@16 | |
| 147 | IoctlKfdDeleteIndex@16 | |
| 148 | IoctlKfdEndEnumFilters@16 | |
| 149 | IoctlKfdMoveFilter@16 | |
| 150 | IoctlKfdQueryEnumFilters@16 | |
| 151 | IoctlKfdQueryLayerStatistics@16 | |
| 152 | IoctlKfdResetState@16 | |
| 153 | IoctlKfdSetBfeEngineSd@12 | |
| 154 | KfdAddCalloutEntry@32 | |
| 155 | KfdAleAcquireEndpointContextFromFlow@8 | |
| 156 | KfdAleAcquireFlowHandleForFlow@12 | |
| 157 | KfdAleGetTableFromHandle@12 | |
| 158 | KfdAleInitializeFlowHandles@0 | |
| 159 | KfdAleInitializeFlowTable@12 | |
| 160 | KfdAleNotifyFlowDeletion@4 | |
| 161 | KfdAleReleaseFlowHandleForFlow@4 | |
| 162 | KfdAleRemoveFlowContextTable@8 | |
| 163 | KfdAleUninitializeFlowHandles@0 | |
| 164 | KfdAleUpdateEndpointContextStatus@16 | |
| 165 | KfdAuditEvent@4 | |
| 166 | KfdBfeEngineAccessCheck@4 | |
| 167 | KfdCheckAcceptBypass@16 | |
| 168 | KfdCheckAndCacheAcceptBypass@20 | |
| 169 | KfdCheckAndCacheConnectBypass@20 | |
| 170 | KfdCheckClassifyNeededAndUpdateEpoch@8 | |
| 171 | KfdCheckConnectBypass@16 | |
| 172 | KfdCheckOffloadFastLayers@8 | |
| 173 | KfdClassify2@8 | |
| 174 | KfdClassify@24 | |
| 175 | KfdDeRefCallout@4 | |
| 176 | KfdDeleteCalloutEntry@4 | |
| 177 | KfdDerefFilterContext@4 | |
| 178 | KfdDeregisterLayerChangeCallback2@4 | |
| 179 | KfdDeregisterLayerEventNotify@8 | |
| 180 | KfdDiagnoseEvent@4 | |
| 181 | KfdDirectClassify@24 | |
| 182 | KfdEnumLayer@16 | |
| 183 | KfdFindFilterById@20 | |
| 184 | KfdFreeEnumHandle@4 | |
| 185 | KfdGetLayerActionFromEnumTemplate@12 | |
| 186 | KfdGetLayerCacheEpoch@8 | |
| 187 | KfdGetLayerPreclassifyEpoch@8 | |
| 188 | KfdGetNextFilter@12 | |
| 189 | KfdGetOffloadEpoch@4 | |
| 190 | KfdGetRefCallout@8 | |
| 191 | KfdIsActiveCallout@8 | |
| 192 | KfdIsDiagnoseEventEnabled@8 | |
| 193 | KfdIsLayerEmpty@4 | |
| 194 | KfdIsLsoOffloadPossibleV4@0 | |
| 195 | KfdIsLsoOffloadPossibleV6@0 | |
| 196 | KfdIsTfoIncompatibleFilterPresent@0 | |
| 197 | KfdIsV4InTransportFastEmpty@0 | |
| 198 | KfdIsV4OutTransportFastEmpty@0 | |
| 199 | KfdIsV6InTransportFastEmpty@0 | |
| 200 | KfdIsV6OutTransportFastEmpty@0 | |
| 201 | KfdNotifyFlowDeletion@12 | |
| 202 | KfdPreClassify@12 | |
| 203 | KfdQueryLayerStats@8 | |
| 204 | KfdQueueLruCleanupWorkItem@0 | |
| 205 | KfdRegisterLayerChangeCallback2@4 | |
| 206 | KfdRegisterLayerEventNotify@12 | |
| 207 | KfdRegisterLayerEventNotifyEx@20 | |
| 208 | KfdRegisterRscIncompatCalloutNotify@8 | |
| 209 | KfdRegisterUsoIncompatCalloutNotify@4 | |
| 210 | KfdReleaseCachedFilters@4 | |
| 211 | KfdReleaseFilterContext@4 | |
| 212 | KfdReleaseTerminatingFilters@4 | |
| 213 | KfdSetWfpPerProcContextPtr@8 | |
| 214 | KfdToggleFilterActivation@16 | |
| 215 | MatchCondition@12 | |
| 216 | MdpAllocate@8 | |
| 217 | MdpAllocateAtDpcLevel@8 | |
| 218 | MdpCreatePool@8 | |
| 219 | MdpDestroyPool@4 | |
| 220 | MdpFree@4 | |
| 221 | NetioAdvanceNetBufferList@8 | |
| 222 | NetioAdvanceToLocationInNetBuffer@16 | |
| 223 | NetioAllocateAndInitializeStackBlock@8 | |
| 224 | NetioAllocateAndReferenceCloneNetBufferList@8 | |
| 225 | NetioAllocateAndReferenceCloneNetBufferListEx@16 | |
| 226 | NetioAllocateAndReferenceCopyNetBufferListEx@16 | |
| 227 | NetioAllocateAndReferenceFragmentNetBufferList@24 | |
| 228 | NetioAllocateAndReferenceNetBufferAndNetBufferList@24 | |
| 229 | NetioAllocateAndReferenceNetBufferList@12 | |
| 230 | NetioAllocateAndReferenceNetBufferListNetBufferMdlAndData@24 | |
| 231 | NetioAllocateAndReferenceReassembledNetBufferList@20 | |
| 232 | NetioAllocateAndReferenceVacantNetBufferList@24 | |
| 233 | NetioAllocateAndReferenceVacantNetBufferListEx@28 | |
| 234 | NetioAllocateMdl@4 | |
| 235 | NetioAllocateNetBuffer@16 | |
| 236 | NetioAllocateNetBufferListNetBufferMdlAndDataPool@12 | |
| 237 | NetioAllocateNetBufferMdlAndData@16 | |
| 238 | NetioAllocateNetBufferMdlAndDataPool@8 | |
| 239 | NetioAllocateOpaquePerProcessorContext@28 | |
| 240 | NetioAssociateQoSFlowWithNbl@8 | |
| 241 | NetioCleanupNetBufferListInformation@4 | |
| 242 | NetioCloseKey@4 | |
| 243 | NetioCompleteCloneNetBufferListChain@12 | |
| 244 | NetioCompleteCopyNetBufferListChain@12 | |
| 245 | NetioCompleteNetBufferAndNetBufferListChain@12 | |
| 246 | NetioCompleteNetBufferListChain@12 | |
| 247 | NetioCopyNetBufferListInformation@8 | |
| 248 | NetioCreateForwardFlow@32 | |
| 249 | NetioCreateKey@20 | |
| 250 | NetioCreateQoSFlow@24 | |
| 251 | NetioCreatevSwitchForwardFlow@48 | |
| 252 | NetioDeleteQoSFlow@4 | |
| 253 | NetioDereferenceNetBufferList@8 | |
| 254 | NetioDereferenceNetBufferListChain@8 | |
| 255 | NetioExpandNetBuffer@12 | |
| 256 | NetioExtendNetBuffer@8 | |
| 257 | NetioFlowAssociateContext@16 | |
| 258 | NetioFlowRemoveContext@8 | |
| 259 | NetioFlowRetrieveContext@16 | |
| 260 | NetioFreeCloneNetBufferList@8 | |
| 261 | NetioFreeCopyNetBufferList@8 | |
| 262 | NetioFreeMdl@4 | |
| 263 | NetioFreeNetBuffer@8 | |
| 264 | NetioFreeNetBufferAndNetBufferList@8 | |
| 265 | NetioFreeNetBufferList@8 | |
| 266 | NetioFreeNetBufferListNetBufferMdlAndDataPool@4 | |
| 267 | NetioFreeNetBufferMdlAndDataPool@4 | |
| 268 | NetioFreeOpaquePerProcessorContext@8 | |
| 269 | NetioFreeStackBlock@8 | |
| 270 | NetioGetStatsForQoSFlow@8 | |
| 271 | NetioGetSuperTriageBlock@0 | |
| 272 | NetioInitNetworkRegistry@0 | |
| 273 | NetioInitializeFlowsManager@4 | |
| 274 | NetioInitializeMdl@12 | |
| 275 | NetioInitializeNetBufferListAndFirstNetBufferContext@12 | |
| 276 | NetioInitializeNetBufferListContext@16 | |
| 277 | NetioInitializeNetBufferListContextPrimitive@16 | |
| 278 | NetioInitializeNetBufferListLibrary@0 | |
| 279 | NetioInitializeWorkQueue@16 | |
| 280 | NetioInsertWorkQueue@8 | |
| 281 | NetioLookupForwardFlow@24 | |
| 282 | NetioLookupvSwitchForwardFlow@40 | |
| 283 | NetioNcmActiveReferenceRequest@24 | |
| 284 | NetioNcmCleanupState@0 | |
| 285 | NetioNcmFastActiveReferenceRequest@12 | |
| 286 | NetioNcmFastCheckAreAoAcPatternsSupported@0 | |
| 287 | NetioNcmFastCheckIsAoAcCapable@0 | |
| 288 | NetioNcmFastCheckIsMobileCore@0 | |
| 289 | NetioNcmGetAllNotificationChannelContextParameters@8 | |
| 290 | NetioNcmHandlePatternEviction@12 | |
| 291 | NetioNcmInitializeState@4 | |
| 292 | NetioNcmIsOwningProcessRtcApp@4 | |
| 293 | NetioNcmNotificationChannelContextRequest@12 | |
| 294 | NetioNcmNotifyRedirectOnInterface@4 | |
| 295 | NetioNcmPatternCoalescingRequired@4 | |
| 296 | NetioNcmQueryRtcPortHint@8 | |
| 297 | NetioNcmQueryRtcPortRange@8 | |
| 298 | NetioNcmSignalNcContextWorkQueueRoutine@4 | |
| 299 | NetioNcmStoreBaseSupportedSlots@4 | |
| 300 | NetioNcmStoreRtcPortHint@8 | |
| 301 | NetioNcmStoreRtcPortRange@8 | |
| 302 | NetioNcmTlObjectRequest@8 | |
| 303 | NetioNcmTrackIsLegitimateWake@8 | |
| 304 | NetioNrtAssociateContext@16 | |
| 305 | NetioNrtDereferenceRecord@4 | |
| 306 | NetioNrtDisassociateContext@8 | |
| 307 | NetioNrtDispatch@8 | |
| 308 | NetioNrtFindAndReferenceRecordByHandle@4 | |
| 309 | NetioNrtFindAndReferenceRecordById@8 | |
| 310 | NetioNrtFindOrCreateRecord@52 | |
| 311 | NetioNrtGetIfIndex@4 | |
| 312 | NetioNrtIsIpInRecord@12 | |
| 313 | NetioNrtIsPktTaggingEnabled@0 | |
| 314 | NetioNrtIsProxyInRecord@8 | |
| 315 | NetioNrtIsTrackerDevice@4 | |
| 316 | NetioNrtJoinRecords@8 | |
| 317 | NetioNrtReferenceRecord@4 | |
| 318 | NetioNrtStart@4 | |
| 319 | NetioNrtStop@0 | |
| 320 | NetioNrtWppLogRecord@8 | |
| 321 | NetioOpenKey@12 | |
| 322 | NetioPdcActivateNetwork@16 | |
| 323 | NetioPdcDeactivateNetwork@12 | |
| 324 | NetioPhClampMssOnIpPkt@8 | |
| 325 | NetioPhClampMssOnTcpPkt@8 | |
| 326 | NetioPhClampMssOnTcpSyn@12 | |
| 327 | NetioPhFindTcpOption@12 | |
| 328 | NetioPhGetIpUlProtocol@12 | |
| 329 | NetioPhIsIcmpErrorForIcmpMessage@12 | |
| 330 | NetioPhSkipIpv6ExtHdr@12 | |
| 331 | NetioPhSkipToTransHdr@12 | |
| 332 | NetioPhUpdateTcpChecksum@16 | |
| 333 | NetioQueryNetBufferListTrafficClass@12 | |
| 334 | NetioQueryValueKey@28 | |
| 335 | NetioReferenceNetBufferList@4 | |
| 336 | NetioReferenceNetBufferListChain@4 | |
| 337 | NetioRefreshFlow@8 | |
| 338 | NetioRegSyncDefaultChangeHandler@12 | |
| 339 | NetioRegSyncInterface@20 | |
| 340 | NetioRegSyncQueryAndUpdateKeyValue@12 | |
| 341 | NetioRegisterProcessorAddCallback@12 | |
| 342 | NetioReleaseFlow@8 | |
| 343 | NetioRetreatNetBuffer@12 | |
| 344 | NetioRetreatNetBufferList@12 | |
| 345 | NetioSetTriageBlock@8 | |
| 346 | NetioShutdownWorkQueue@4 | |
| 347 | NetioStackBlockProcessorAddHandler@12 | |
| 348 | NetioUnInitializeFlowsManager@4 | |
| 349 | NetioUnInitializeNetBufferListLibrary@0 | |
| 350 | NetioUnRegisterProcessorAddCallback@4 | |
| 351 | NetioUpdateNetBufferListContext@12 | |
| 352 | NetioValidateNetBuffer@4 | |
| 353 | NetioValidateNetBufferList@4 | |
| 354 | NetioWriteKey@20 | |
| 355 | NmrClientAttachProvider@20 | |
| 356 | NmrClientDetachProviderComplete@4 | |
| 357 | NmrDeregisterClient@4 | |
| 358 | NmrDeregisterProvider@4 | |
| 359 | NmrProviderDetachClientComplete@4 | |
| 360 | NmrRegisterClient@12 | |
| 361 | NmrRegisterProvider@12 | |
| 362 | NmrWaitForClientDeregisterComplete@4 | |
| 363 | NmrWaitForProviderDeregisterComplete@4 | |
| 364 | NotifyCompartmentChange@16 | |
| 365 | NotifyIpInterfaceChange@20 | |
| 366 | NotifyRouteChange2@20 | |
| 367 | NotifyStableUnicastIpAddressTable@20 | |
| 368 | NotifyTeredoPortChange@16 | |
| 369 | NotifyUnicastIpAddressChange@20 | |
| 370 | NsiAllocateAndGetTable@52 | |
| 371 | NsiClearPersistentSetting@24 | |
| 372 | NsiDeregisterChangeNotification@12 | |
| 373 | NsiDeregisterChangeNotificationEx@4 | |
| 374 | NsiDeregisterLegacyHandler@4 | |
| 375 | NsiEnumerateObjectsAllParameters@52 | |
| 376 | NsiEnumerateObjectsAllParametersEx@4 | |
| 377 | NsiEnumerateObjectsAllPersistentParametersWithMask@36 | |
| 378 | NsiFreeTable@16 | |
| 379 | NsiGetAllParameters@44 | |
| 380 | NsiGetAllParametersEx@4 | |
| 381 | NsiGetAllPersistentParametersWithMask@28 | |
| 382 | NsiGetModuleHandle@4 | |
| 383 | NsiGetObjectSecurity@4 | |
| 384 | NsiGetParameter@36 | |
| 385 | NsiGetParameterEx@4 | |
| 386 | NsiReferenceDefaultObjectSecurity@0 | |
| 387 | NsiRegisterChangeNotification@24 | |
| 388 | NsiRegisterChangeNotificationEx@4 | |
| 389 | NsiRegisterLegacyHandler@4 | |
| 390 | NsiResetPersistentSetting@16 | |
| 391 | NsiSetAllParameters@32 | |
| 392 | NsiSetAllParametersEx@4 | |
| 393 | NsiSetAllPersistentParametersWithMask@32 | |
| 394 | NsiSetObjectSecurity@4 | |
| 395 | NsiSetParameter@40 | |
| 396 | NsiSetParameterEx@4 | |
| 397 | OpenCompartment@8 | |
| 398 | PtCheckTable@4 | |
| 399 | PtCreateTable@8 | |
| 400 | PtDeleteEntry@8 | |
| 401 | PtDestroyTable@4 | |
| 402 | PtEnumOverTable@32 | |
| 403 | PtGetData@4 | |
| 404 | PtGetExactMatch@20 | |
| 405 | PtGetKey@12 | |
| 406 | PtGetLongestMatch@12 | |
| 407 | PtGetNextShorterMatch@12 | |
| 408 | PtGetNumNodes@4 | |
| 409 | PtInsertEntry@20 | |
| 410 | PtSetData@8 | |
| 411 | ResolveIpNetEntry2@8 | |
| 412 | RtlAllocateDummyMdlChain@4 | |
| 413 | RtlCleanupTimerWheel@4 | |
| 414 | RtlCleanupTimerWheelEntry@12 | |
| 415 | RtlCleanupToeplitzHash@4 | |
| 416 | RtlCompute37Hash@12 | |
| 417 | RtlComputeToeplitzHash@16 | |
| 418 | RtlCopyBufferToMdl@20 | |
| 419 | RtlCopyMdlToBuffer@20 | |
| 420 | RtlCopyMdlToMdl@24 | |
| 421 | RtlCopyMdlToMdlIndirect@28 | |
| 422 | RtlDeleteElementGenericTableBasicAvl@8 | |
| 423 | RtlEndTimerWheelEnumeration@4 | |
| 424 | RtlEnumerateNextTimerWheelEntry@4 | |
| 425 | RtlFreeDummyMdlChain@4 | |
| 426 | RtlGetNextExpirationTimerWheelTick@4 | |
| 427 | RtlGetNextExpiredTimerWheelEntry@4 | |
| 428 | RtlIndicateTimerWheelEntryTimerStart@8 | |
| 429 | RtlInitializeTimerWheel@20 | |
| 430 | RtlInitializeTimerWheelEntry@16 | |
| 431 | RtlInitializeTimerWheelEnumeration@4 | |
| 432 | RtlInitializeToeplitzHash@12 | |
| 433 | RtlInsertElementGenericTableBasicAvl@16 | |
| 434 | RtlInvokeStartRoutines@12 | |
| 435 | RtlInvokeStopRoutines@12 | |
| 436 | RtlIsTimerWheelSuspended@4 | |
| 437 | RtlReinitializeToeplitzHash@12 | |
| 438 | RtlResumeTimerWheel@8 | |
| 439 | RtlReturnTimerWheelEntry@8 | |
| 440 | RtlSuspendTimerWheel@4 | |
| 441 | RtlUpdateCurrentTimerWheelTick@8 | |
| 442 | SetDnsSettings@4 | |
| 443 | SetInterfaceDnsSettings@20 | |
| 444 | SetIpForwardEntry2@4 | |
| 445 | SetIpInterfaceEntry@4 | |
| 446 | SetIpNetEntry2@4 | |
| 447 | SetUnicastIpAddressEntry@4 | |
| 448 | SetWfpDeviceObject@4 | |
| 449 | TlDefaultEventAbort@8 | |
| 450 | TlDefaultEventConnect@8 | |
| 451 | TlDefaultEventDisconnect@8 | |
| 452 | TlDefaultEventError@8 | |
| 453 | TlDefaultEventInspect@8 | |
| 454 | TlDefaultEventNotify@8 | |
| 455 | TlDefaultEventReceive@8 | |
| 456 | TlDefaultEventReceiveMessages@8 | |
| 457 | TlDefaultEventSendBacklog@8 | |
| 458 | TlDefaultRequestCancel@8 | |
| 459 | TlDefaultRequestCloseEndpoint@8 | |
| 460 | TlDefaultRequestConnect@8 | |
| 461 | TlDefaultRequestDisconnect@8 | |
| 462 | TlDefaultRequestEndpoint@8 | |
| 463 | TlDefaultRequestIoControl@8 | |
| 464 | TlDefaultRequestIoControlEndpoint@8 | |
| 465 | TlDefaultRequestListen@8 | |
| 466 | TlDefaultRequestMessage@8 | |
| 467 | TlDefaultRequestQueryDispatch@8 | |
| 468 | TlDefaultRequestQueryDispatchEndpoint@8 | |
| 469 | TlDefaultRequestReceive@8 | |
| 470 | TlDefaultRequestReleaseIndicationList@8 | |
| 471 | TlDefaultRequestResume@8 | |
| 472 | TlDefaultRequestSend@8 | |
| 473 | TlDefaultRequestSendMessages@8 | |
| 474 | WfpAssociateContextToFlow@24 | |
| 475 | WfpAssociateContextToFlowFast@24 | |
| 476 | WfpCreateReassemblyContext@4 | |
| 477 | WfpDecodedBufferFreeHelper@4 | |
| 478 | WfpDeleteEntryLru@4 | |
| 479 | WfpExpireEntryLru@4 | |
| 480 | WfpFlowToEndpoint@8 | |
| 481 | WfpFreeReassemblyContext@4 | |
| 482 | WfpGetPacketTagCount@0 | |
| 483 | WfpInitializeLeastRecentlyUsedList@52 | |
| 484 | WfpInsertEntryLru@12 | |
| 485 | WfpLruProcessExpiredEndpoint@16 | |
| 486 | WfpLruQueueLruCleanupWorkItemForContext@8 | |
| 487 | WfpNblInfoAlloc@4 | |
| 488 | WfpNblInfoCleanup@8 | |
| 489 | WfpNblInfoClearFlags@8 | |
| 490 | WfpNblInfoClone@20 | |
| 491 | WfpNblInfoDestroyIfUnused@4 | |
| 492 | WfpNblInfoDispatchTableClear@0 | |
| 493 | WfpNblInfoDispatchTableSet@4 | |
| 494 | WfpNblInfoGet@4 | |
| 495 | WfpNblInfoGetFlags@4 | |
| 496 | WfpNblInfoInit@4 | |
| 497 | WfpNblInfoSet@8 | |
| 498 | WfpNblInfoSetFlags@8 | |
| 499 | WfpNrptTriggerDecodeHelper@12 | |
| 500 | WfpPacketTagCountIncrement@0 | |
| 501 | WfpProcessFlowDelete@12 | |
| 502 | WfpRefreshEntryLru@12 | |
| 503 | WfpReleaseFlowLocation@4 | |
| 504 | WfpRemoveContextFromFlow@16 | |
| 505 | WfpRemoveContextFromFlowFast@12 | |
| 506 | WfpReserveFlowLocation@8 | |
| 507 | WfpScavangeLeastRecentlyUsedList@4 | |
| 508 | WfpSetBucketsToEmptyLru@8 | |
| 509 | WfpSetConfigureParametersDecodeHelper@12 | |
| 510 | WfpSetDisconnectDecodeHelper@12 | |
| 511 | WfpSetVpnTriggerFilePathsDecodeHelper@12 | |
| 512 | WfpSetVpnTriggerSecurityDescriptorDecodeHelper@12 | |
| 513 | WfpSetVpnTriggerSidsDecodeHelper@12 | |
| 514 | WfpStartStreamShim@44 | |
| 515 | WfpStopStreamShim@0 | |
| 516 | WfpStreamEndpointCleanupBegin@4 | |
| 517 | WfpStreamInspectDisconnect@8 | |
| 518 | WfpStreamInspectReceive@28 | |
| 519 | WfpStreamInspectRemoteDisconnect@8 | |
| 520 | WfpStreamInspectSend@12 | |
| 521 | WfpStreamIsFilterPresent@32 | |
| 522 | WfpTransferReassemblyContextForFragments@8 | |
| 523 | WfpTransferReassemblyContextUponCompletion@8 | |
| 524 | WfpUninitializeLeastRecentlyUsedList@4 | |
| 525 | WskCaptureProviderNPI@12 | |
| 526 | WskDeregister@4 | |
| 527 | WskQueryProviderCharacteristics@8 | |
| 528 | WskRegister@8 | |
| 529 | WskReleaseProviderNPI@4 | |
| 530 | if_indextoname@8 | |
| 531 | if_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 | ; | |
| 6 | LIBRARY "netjoin.dll" | |
| 7 | EXPORTS | |
| 8 | NetProvisionComputerAccount@32 | |
| 9 | NetRequestOfflineDomainJoin@16 | |
| 10 | NetSetuppCloseLog@0 | |
| 11 | NetSetuppOpenLog@0 | |
| 12 | NetpAvoidNetlogonSpnSet@4 | |
| 13 | NetpChangeMachineName@24 | |
| 14 | NetpCheckOfflineLsaPolicyUpdate@4 | |
| 15 | NetpCompleteOfflineDomainJoin@8 | |
| 16 | NetpControlServices@8 | |
| 17 | NetpCrackNamesStatus2Win32Error@4 | |
| 18 | NetpCreateComputerObjectInDs@40 | |
| 19 | NetpDecodeProvisioningBlob@12 | |
| 20 | NetpDecodeProvisioningData@12 | |
| 21 | NetpDoDomainJoin@24 | |
| 22 | NetpDoInitiateOfflineDomainJoin@16 | |
| 23 | NetpDomainJoinLicensingCheck@0 | |
| 24 | NetpDumpBlobToLog@8 | |
| 25 | NetpDumpDcInfoToLog@8 | |
| 26 | NetpDumpDnsDomainInfoToLog@8 | |
| 27 | NetpEncodeProvisionData@24 | |
| 28 | NetpEncodeProvisioningBlob@36 | |
| 29 | NetpFreeLdapLsaDomainInfo@4 | |
| 30 | NetpFreeODJBlob@4 | |
| 31 | NetpGetJoinInformation@12 | |
| 32 | NetpGetListOfJoinableOUs@20 | |
| 33 | NetpGetLogIndentPrefixString@8 | |
| 34 | NetpGetLsaPrimaryDomain@16 | |
| 35 | NetpGetMachineAccountName@8 | |
| 36 | NetpGetNewMachineName@4 | |
| 37 | NetpInitAndPickleBlobWin7@36 | |
| 38 | NetpIsSetupInProgress@0 | |
| 39 | NetpLogPrintHelper@0 | |
| 40 | NetpMachineValidToJoin@12 | |
| 41 | NetpManageIPCConnect@16 | |
| 42 | NetpManageMachineAccountWithSid@28 | |
| 43 | NetpProvisionComputerAccount@56 | |
| 44 | NetpQueryService@12 | |
| 45 | NetpSeparateUserAndDomain@12 | |
| 46 | NetpSetComputerAccountPassword@20 | |
| 47 | NetpStopService@8 | |
| 48 | NetpStoreInitialDcRecord@4 | |
| 49 | NetpUnJoinDomain@16 | |
| 50 | NetpUnpickleBlobWin7@12 | |
| 51 | NetpUpgradePreNT5JoinInfo@0 | |
| 52 | NetpValidateName@20 |
lib/libc/mingw/lib32/ntdll.def-4| ... | ... | @@ -163,7 +163,6 @@ LdrLoadAlternateResourceModule@16 |
| 163 | 163 | LdrLoadAlternateResourceModuleEx@20 |
| 164 | 164 | LdrLoadDll@16 |
| 165 | 165 | LdrLoadEnclaveModule@12 |
| 166 | LdrAlternateResourcesEnabled@0 | |
| 167 | 166 | LdrLockLoaderLock@12 |
| 168 | 167 | LdrOpenImageFileOptionsKey@12 |
| 169 | 168 | LdrParentInterlockedPopEntrySList@0 |
| ... | ... | @@ -957,7 +956,6 @@ RtlDeleteSecurityObject@4 |
| 957 | 956 | RtlDeleteTimer@12 |
| 958 | 957 | RtlDeleteTimerQueue@4 |
| 959 | 958 | RtlDeleteTimerQueueEx@8 |
| 960 | RtlDeNormalizeProcessParams@4 | |
| 961 | 959 | RtlDeregisterSecureMemoryCacheCallback@4 |
| 962 | 960 | RtlDeregisterWait@4 |
| 963 | 961 | RtlDeregisterWaitEx@8 |
| ... | ... | @@ -1128,7 +1126,6 @@ RtlGetLengthWithoutTrailingPathSeperators@12 |
| 1128 | 1126 | RtlGetLocaleFileMappingAddress@12 |
| 1129 | 1127 | RtlGetLongestNtPathLength@0 |
| 1130 | 1128 | RtlGetMultiTimePrecise@12 |
| 1131 | RtlGetLongestNtPathLength@0 | |
| 1132 | 1129 | RtlGetNativeSystemInformation@16 |
| 1133 | 1130 | RtlGetNextRange@12 |
| 1134 | 1131 | RtlGetNextEntryHashTable@8 |
| ... | ... | @@ -1167,7 +1164,6 @@ RtlGetUserInfoHeap@20 |
| 1167 | 1164 | RtlGetUserPreferredUILanguages@20 |
| 1168 | 1165 | RtlGetVersion@4 |
| 1169 | 1166 | RtlGuardCheckLongJumpTarget@12 |
| 1170 | RtlGUIDFromString@8 | |
| 1171 | 1167 | RtlHashUnicodeString@16 |
| 1172 | 1168 | RtlHeapTrkInitialize@4 |
| 1173 | 1169 | RtlIdentifierAuthoritySid@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 | ; | |
| 6 | LIBRARY "NTMSAPI.dll" | |
| 7 | EXPORTS | |
| 8 | AccessNtmsLibraryDoor@12 | |
| 9 | AddNtmsMediaType@12 | |
| 10 | AllocateNtmsMedia@28 | |
| 11 | BeginNtmsDeviceChangeDetection@8 | |
| 12 | CancelNtmsLibraryRequest@8 | |
| 13 | CancelNtmsOperatorRequest@8 | |
| 14 | ChangeNtmsMediaType@12 | |
| 15 | CleanNtmsDrive@8 | |
| 16 | CloseNtmsNotification@4 | |
| 17 | CloseNtmsSession@4 | |
| 18 | CreateNtmsMediaA@16 | |
| 19 | CreateNtmsMediaPoolA@24 | |
| 20 | CreateNtmsMediaPoolW@24 | |
| 21 | CreateNtmsMediaW@16 | |
| 22 | DeallocateNtmsMedia@12 | |
| 23 | DecommissionNtmsMedia@8 | |
| 24 | DeleteNtmsDrive@8 | |
| 25 | DeleteNtmsLibrary@8 | |
| 26 | DeleteNtmsMedia@8 | |
| 27 | DeleteNtmsMediaPool@8 | |
| 28 | DeleteNtmsMediaType@12 | |
| 29 | DeleteNtmsRequests@16 | |
| 30 | DisableNtmsObject@12 | |
| 31 | DismountNtmsDrive@8 | |
| 32 | DismountNtmsMedia@16 | |
| 33 | DoEjectFromSADriveW@24 | |
| 34 | EjectDiskFromSADriveA@28 | |
| 35 | EjectDiskFromSADriveW@28 | |
| 36 | EjectNtmsCleaner@16 | |
| 37 | EjectNtmsMedia@16 | |
| 38 | EnableNtmsObject@12 | |
| 39 | EndNtmsDeviceChangeDetection@8 | |
| 40 | EnumerateNtmsObject@24 | |
| 41 | ExportNtmsDatabase@4 | |
| 42 | GetNtmsMediaPoolNameA@16 | |
| 43 | GetNtmsMediaPoolNameW@16 | |
| 44 | GetNtmsObjectAttributeA@24 | |
| 45 | GetNtmsObjectAttributeW@24 | |
| 46 | GetNtmsObjectInformationA@12 | |
| 47 | GetNtmsObjectInformationW@12 | |
| 48 | GetNtmsObjectSecurity@28 | |
| 49 | GetNtmsRequestOrder@12 | |
| 50 | GetNtmsUIOptionsA@20 | |
| 51 | GetNtmsUIOptionsW@20 | |
| 52 | GetVolumesFromDriveA@12 | |
| 53 | GetVolumesFromDriveW@12 | |
| 54 | IdentifyNtmsSlot@12 | |
| 55 | ImportNtmsDatabase@4 | |
| 56 | InjectNtmsCleaner@20 | |
| 57 | InjectNtmsMedia@16 | |
| 58 | InventoryNtmsLibrary@12 | |
| 59 | MountNtmsMedia@32 | |
| 60 | MoveToNtmsMediaPool@12 | |
| 61 | OpenNtmsNotification@8 | |
| 62 | OpenNtmsSessionA@12 | |
| 63 | OpenNtmsSessionW@12 | |
| 64 | ReleaseNtmsCleanerSlot@8 | |
| 65 | ReserveNtmsCleanerSlot@12 | |
| 66 | SatisfyNtmsOperatorRequest@8 | |
| 67 | SetNtmsDeviceChangeDetection@20 | |
| 68 | SetNtmsMediaComplete@8 | |
| 69 | SetNtmsObjectAttributeA@24 | |
| 70 | SetNtmsObjectAttributeW@24 | |
| 71 | SetNtmsObjectInformationA@12 | |
| 72 | SetNtmsObjectInformationW@12 | |
| 73 | SetNtmsObjectSecurity@20 | |
| 74 | SetNtmsRequestOrder@12 | |
| 75 | SetNtmsUIOptionsA@20 | |
| 76 | SetNtmsUIOptionsW@20 | |
| 77 | SubmitNtmsOperatorRequestA@24 | |
| 78 | SubmitNtmsOperatorRequestW@24 | |
| 79 | SwapNtmsMedia@12 | |
| 80 | UpdateNtmsOmidInfo@20 | |
| 81 | WaitForNtmsNotification@12 | |
| 82 | WaitForNtmsOperatorRequest@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 | ; | |
| 6 | LIBRARY "ntoskrnl.exe" | |
| 7 | EXPORTS | |
| 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 | |
| 102 | AlpcGetHeaderSize@4 | |
| 103 | AlpcGetMessageAttribute@8 | |
| 104 | AlpcInitializeMessageAttribute@16 | |
| 105 | CcCanIWrite@16 | |
| 106 | CcCoherencyFlushAndPurgeCache@20 | |
| 107 | CcCopyRead@24 | |
| 108 | CcCopyWrite@20 | |
| 109 | CcCopyWriteWontFlush@12 | |
| 110 | CcDeferWrite@24 | |
| 111 | CcFastCopyRead@24 | |
| 112 | CcFastCopyWrite@16 | |
| 113 | CcFastMdlReadWait DATA | |
| 114 | CcFlushCache@16 | |
| 115 | CcGetDirtyPages@16 | |
| 116 | CcGetFileObjectFromBcb@4 | |
| 117 | CcGetFileObjectFromSectionPtrs@4 | |
| 118 | CcGetFileObjectFromSectionPtrsRef@4 | |
| 119 | CcGetFlushedValidData@8 | |
| 120 | CcGetLsnForFileObject@8 | |
| 121 | CcInitializeCacheMap@20 | |
| 122 | CcIsThereDirtyData@4 | |
| 123 | CcIsThereDirtyDataEx@8 | |
| 124 | CcMapData@24 | |
| 125 | CcMdlRead@20 | |
| 126 | CcMdlReadComplete@8 | |
| 127 | CcMdlWriteAbort@8 | |
| 128 | CcMdlWriteComplete@12 | |
| 129 | CcPinMappedData@20 | |
| 130 | CcPinRead@24 | |
| 131 | CcPrepareMdlWrite@20 | |
| 132 | CcPreparePinWrite@28 | |
| 133 | CcPurgeCacheSection@16 | |
| 134 | CcRemapBcb@4 | |
| 135 | CcRepinBcb@4 | |
| 136 | CcScheduleReadAhead@12 | |
| 137 | CcSetAdditionalCacheAttributes@12 | |
| 138 | CcSetBcbOwnerPointer@8 | |
| 139 | CcSetDirtyPageThreshold@8 | |
| 140 | CcSetDirtyPinnedData@8 | |
| 141 | CcSetFileSizes@8 | |
| 142 | CcSetFileSizesEx@8 | |
| 143 | CcSetLogHandleForFile@12 | |
| 144 | CcSetParallelFlushFile@8 | |
| 145 | CcSetReadAheadGranularity@8 | |
| 146 | CcTestControl@12 | |
| 147 | CcUninitializeCacheMap@12 | |
| 148 | CcUnpinData@4 | |
| 149 | CcUnpinDataForThread@8 | |
| 150 | CcUnpinRepinnedBcb@12 | |
| 151 | CcWaitForCurrentLazyWriterActivity@0 | |
| 152 | CcZeroData@16 | |
| 153 | CmCallbackGetKeyObjectID@16 | |
| 154 | CmGetBoundTransaction@8 | |
| 155 | CmGetCallbackVersion@8 | |
| 156 | CmKeyObjectType DATA | |
| 157 | CmRegisterCallback@12 | |
| 158 | CmRegisterCallbackEx@24 | |
| 159 | CmSetCallbackObjectContext@16 | |
| 160 | CmUnRegisterCallback@8 | |
| 161 | DbgBreakPoint@0 | |
| 162 | DbgBreakPointWithStatus@4 | |
| 163 | DbgCommandString@8 | |
| 164 | DbgLoadImageSymbols@12 | |
| 165 | DbgPrint | |
| 166 | DbgPrintEx | |
| 167 | DbgPrintReturnControlC | |
| 168 | DbgPrompt@12 | |
| 169 | DbgQueryDebugFilterState@8 | |
| 170 | DbgSetDebugFilterState@12 | |
| 171 | DbgSetDebugPrintCallback@8 | |
| 172 | DbgkLkmdRegisterCallback@12 | |
| 173 | DbgkLkmdUnregisterCallback@4 | |
| 174 | EmClientQueryRuleState@8 | |
| 175 | EmClientRuleDeregisterNotification@4 | |
| 176 | EmClientRuleEvaluate@16 | |
| 177 | EmClientRuleRegisterNotification@16 | |
| 178 | EmProviderDeregister@4 | |
| 179 | EmProviderDeregisterEntry@4 | |
| 180 | EmProviderRegister@24 | |
| 181 | EmProviderRegisterEntry@16 | |
| 182 | EmpProviderRegister@24 | |
| 183 | EtwActivityIdControl@8 | |
| 184 | EtwEnableTrace@44 | |
| 185 | EtwEventEnabled@12 | |
| 186 | EtwProviderEnabled@20 | |
| 187 | EtwRegister@16 | |
| 188 | EtwRegisterClassicProvider@20 | |
| 189 | EtwSendTraceBuffer@24 | |
| 190 | EtwUnregister@8 | |
| 191 | EtwWrite@24 | |
| 192 | EtwWriteEndScenario@24 | |
| 193 | EtwWriteEx@40 | |
| 194 | EtwWriteStartScenario@24 | |
| 195 | EtwWriteString@28 | |
| 196 | EtwWriteTransfer@28 | |
| 197 | ExAcquireCacheAwarePushLockExclusive@4 | |
| 198 | ExAcquireResourceExclusiveLite@8 | |
| 199 | ExAcquireResourceSharedLite@8 | |
| 200 | ExAcquireSharedStarveExclusive@8 | |
| 201 | ExAcquireSharedWaitForExclusive@8 | |
| 202 | ExAcquireSpinLockExclusive@4 | |
| 203 | ExAcquireSpinLockExclusiveAtDpcLevel@4 | |
| 204 | ExAcquireSpinLockShared@4 | |
| 205 | ExAcquireSpinLockSharedAtDpcLevel@4 | |
| 206 | ExAllocateCacheAwarePushLock@4 | |
| 207 | ExAllocateCacheAwareRundownProtection@8 | |
| 208 | ExAllocateFromPagedLookasideList@4 | |
| 209 | ExAllocatePool@8 | |
| 210 | ExAllocatePoolWithQuota@8 | |
| 211 | ExAllocatePoolWithQuotaTag@12 | |
| 212 | ExAllocatePoolWithTag@12 | |
| 213 | ExAllocatePoolWithTagPriority@16 | |
| 214 | ExConvertExclusiveToSharedLite@4 | |
| 215 | ExCreateCallback@16 | |
| 216 | ExDeleteLookasideListEx@4 | |
| 217 | ExDeleteNPagedLookasideList@4 | |
| 218 | ExDeletePagedLookasideList@4 | |
| 219 | ExDeleteResourceLite@4 | |
| 220 | ExDesktopObjectType DATA | |
| 221 | ExDisableResourceBoostLite@4 | |
| 222 | ExEnterCriticalRegionAndAcquireResourceExclusive@4 | |
| 223 | ExEnterCriticalRegionAndAcquireResourceShared@4 | |
| 224 | ExEnterCriticalRegionAndAcquireSharedWaitForExclusive@4 | |
| 225 | ExEnterPriorityRegionAndAcquireResourceExclusive@4 | |
| 226 | ExEnterPriorityRegionAndAcquireResourceShared@4 | |
| 227 | ExEnumHandleTable@16 | |
| 228 | ExEventObjectType DATA | |
| 229 | ExExtendZone@12 | |
| 230 | ExFetchLicenseData@12 | |
| 231 | ExFlushLookasideListEx@4 | |
| 232 | ExFreeCacheAwarePushLock@4 | |
| 233 | ExFreeCacheAwareRundownProtection@4 | |
| 234 | ExFreePool@4 | |
| 235 | ExFreePoolWithTag@8 | |
| 236 | ExFreeToPagedLookasideList@8 | |
| 237 | ExGetCurrentProcessorCounts@12 | |
| 238 | ExGetCurrentProcessorCpuUsage@4 | |
| 239 | ExGetExclusiveWaiterCount@4 | |
| 240 | ExGetLicenseTamperState@4 | |
| 241 | ExGetPreviousMode@0 | |
| 242 | ExGetSharedWaiterCount@4 | |
| 243 | ExInitializeLookasideListEx@32 | |
| 244 | ExInitializeNPagedLookasideList@28 | |
| 245 | ExInitializePagedLookasideList@28 | |
| 246 | ExInitializePushLock@4 | |
| 247 | ExInitializeResourceLite@4 | |
| 248 | ExInitializeRundownProtectionCacheAware@8 | |
| 249 | ExInitializeZone@16 | |
| 250 | ExInterlockedAddLargeInteger@16 | |
| 251 | ExInterlockedAddUlong@12 | |
| 252 | ExInterlockedDecrementLong@8 | |
| 253 | ExInterlockedExchangeUlong@12 | |
| 254 | ExInterlockedExtendZone@16 | |
| 255 | @ExInterlockedIncrementLong@8 | |
| 256 | ExInterlockedInsertHeadList@12 | |
| 257 | ExInterlockedInsertTailList@12 | |
| 258 | ExInterlockedPopEntryList@8 | |
| 259 | ExInterlockedPushEntryList@12 | |
| 260 | ExInterlockedRemoveHeadList@8 | |
| 261 | ExIsProcessorFeaturePresent@4 | |
| 262 | ExIsResourceAcquiredExclusiveLite@4 | |
| 263 | ExIsResourceAcquiredSharedLite@4 | |
| 264 | ExLocalTimeToSystemTime@8 | |
| 265 | ExNotifyCallback@12 | |
| 266 | ExQueryAttributeInformation@16 | |
| 267 | ExQueryPoolBlockSize@8 | |
| 268 | ExQueueWorkItem@8 | |
| 269 | ExRaiseAccessViolation@0 | |
| 270 | ExRaiseDatatypeMisalignment@0 | |
| 271 | ExRaiseException@24 | |
| 272 | ExRaiseHardError@24 | |
| 273 | ExRaiseStatus@4 | |
| 274 | ExRegisterAttributeInformationCallback@4 | |
| 275 | ExRegisterCallback@12 | |
| 276 | ExRegisterExtension@12 | |
| 277 | ExReinitializeResourceLite@4 | |
| 278 | ExReleaseCacheAwarePushLockExclusive@4 | |
| 279 | ExReleaseResourceForThreadLite@8 | |
| 280 | ExReleaseSpinLockExclusive@8 | |
| 281 | ExReleaseSpinLockExclusiveFromDpcLevel@4 | |
| 282 | ExReleaseSpinLockShared@8 | |
| 283 | ExReleaseSpinLockSharedFromDpcLevel@4 | |
| 284 | ExSemaphoreObjectType DATA | |
| 285 | ExSetLicenseTamperState@4 | |
| 286 | ExSetResourceOwnerPointer@8 | |
| 287 | ExSetResourceOwnerPointerEx@12 | |
| 288 | ExSetTimerResolution@8 | |
| 289 | ExSizeOfRundownProtectionCacheAware@0 | |
| 290 | ExSystemExceptionFilter@0 | |
| 291 | ExSystemTimeToLocalTime@8 | |
| 292 | ExTryConvertSharedSpinLockExclusive@4 | |
| 293 | ExUnregisterAttributeInformationCallback@4 | |
| 294 | ExUnregisterCallback@4 | |
| 295 | ExUnregisterExtension@4 | |
| 296 | ExUpdateLicenseData@8 | |
| 297 | ExUuidCreate@4 | |
| 298 | ExVerifySuite@4 | |
| 299 | ExWindowStationObjectType DATA | |
| 300 | Exi386InterlockedDecrementLong@4 | |
| 301 | Exi386InterlockedExchangeUlong@8 | |
| 302 | Exi386InterlockedIncrementLong@4 | |
| 303 | FirstEntrySList@4 | |
| 304 | FsRtlAcknowledgeEcp@4 | |
| 305 | FsRtlAcquireFileExclusive@4 | |
| 306 | FsRtlAddBaseMcbEntry@28 | |
| 307 | FsRtlAddBaseMcbEntryEx@28 | |
| 308 | FsRtlAddLargeMcbEntry@28 | |
| 309 | FsRtlAddMcbEntry@16 | |
| 310 | FsRtlAddToTunnelCache@32 | |
| 311 | FsRtlAllocateExtraCreateParameter@24 | |
| 312 | FsRtlAllocateExtraCreateParameterFromLookasideList@24 | |
| 313 | FsRtlAllocateExtraCreateParameterList@8 | |
| 314 | FsRtlAllocateFileLock@8 | |
| 315 | FsRtlAllocatePool@8 | |
| 316 | FsRtlAllocatePoolWithQuota@8 | |
| 317 | FsRtlAllocatePoolWithQuotaTag@12 | |
| 318 | FsRtlAllocatePoolWithTag@12 | |
| 319 | FsRtlAllocateResource@0 | |
| 320 | FsRtlAreNamesEqual@16 | |
| 321 | FsRtlAreThereCurrentOrInProgressFileLocks@4 | |
| 322 | FsRtlAreVolumeStartupApplicationsComplete@0 | |
| 323 | FsRtlBalanceReads@4 | |
| 324 | FsRtlCancellableWaitForMultipleObjects@24 | |
| 325 | FsRtlCancellableWaitForSingleObject@12 | |
| 326 | FsRtlChangeBackingFileObject@16 | |
| 327 | FsRtlCheckLockForReadAccess@8 | |
| 328 | FsRtlCheckLockForWriteAccess@8 | |
| 329 | FsRtlCheckOplock@20 | |
| 330 | FsRtlCheckOplockEx@24 | |
| 331 | FsRtlCopyRead@32 | |
| 332 | FsRtlCopyWrite@32 | |
| 333 | FsRtlCreateSectionForDataScan@40 | |
| 334 | FsRtlCurrentBatchOplock@4 | |
| 335 | FsRtlCurrentOplock@4 | |
| 336 | FsRtlCurrentOplockH@4 | |
| 337 | FsRtlDeleteExtraCreateParameterLookasideList@8 | |
| 338 | FsRtlDeleteKeyFromTunnelCache@12 | |
| 339 | FsRtlDeleteTunnelCache@4 | |
| 340 | FsRtlDeregisterUncProvider@4 | |
| 341 | FsRtlDissectDbcs@16 | |
| 342 | FsRtlDissectName@16 | |
| 343 | FsRtlDoesDbcsContainWildCards@4 | |
| 344 | FsRtlDoesNameContainWildCards@4 | |
| 345 | FsRtlFastCheckLockForRead@24 | |
| 346 | FsRtlFastCheckLockForWrite@24 | |
| 347 | FsRtlFastUnlockAll@16 | |
| 348 | FsRtlFastUnlockAllByKey@20 | |
| 349 | FsRtlFastUnlockSingle@32 | |
| 350 | FsRtlFindExtraCreateParameter@16 | |
| 351 | FsRtlFindInTunnelCache@32 | |
| 352 | FsRtlFreeExtraCreateParameter@4 | |
| 353 | FsRtlFreeExtraCreateParameterList@4 | |
| 354 | FsRtlFreeFileLock@4 | |
| 355 | FsRtlGetEcpListFromIrp@8 | |
| 356 | FsRtlGetFileSize@8 | |
| 357 | FsRtlGetNextBaseMcbEntry@20 | |
| 358 | FsRtlGetNextExtraCreateParameter@20 | |
| 359 | FsRtlGetNextFileLock@8 | |
| 360 | FsRtlGetNextLargeMcbEntry@20 | |
| 361 | FsRtlGetNextMcbEntry@20 | |
| 362 | FsRtlGetVirtualDiskNestingLevel@12 | |
| 363 | FsRtlIncrementCcFastMdlReadWait@0 | |
| 364 | FsRtlIncrementCcFastReadNoWait@0 | |
| 365 | FsRtlIncrementCcFastReadNotPossible@0 | |
| 366 | FsRtlIncrementCcFastReadResourceMiss@0 | |
| 367 | FsRtlIncrementCcFastReadWait@0 | |
| 368 | FsRtlInitExtraCreateParameterLookasideList@16 | |
| 369 | FsRtlInitializeBaseMcb@8 | |
| 370 | FsRtlInitializeBaseMcbEx@12 | |
| 371 | FsRtlInitializeExtraCreateParameter@24 | |
| 372 | FsRtlInitializeExtraCreateParameterList@4 | |
| 373 | FsRtlInitializeFileLock@12 | |
| 374 | FsRtlInitializeLargeMcb@8 | |
| 375 | FsRtlInitializeMcb@8 | |
| 376 | FsRtlInitializeOplock@4 | |
| 377 | FsRtlInitializeTunnelCache@4 | |
| 378 | FsRtlInsertExtraCreateParameter@8 | |
| 379 | FsRtlInsertPerFileContext@8 | |
| 380 | FsRtlInsertPerFileObjectContext@8 | |
| 381 | FsRtlInsertPerStreamContext@8 | |
| 382 | FsRtlIsDbcsInExpression@8 | |
| 383 | FsRtlIsEcpAcknowledged@4 | |
| 384 | FsRtlIsEcpFromUserMode@4 | |
| 385 | FsRtlIsFatDbcsLegal@20 | |
| 386 | FsRtlIsHpfsDbcsLegal@20 | |
| 387 | FsRtlIsNameInExpression@16 | |
| 388 | FsRtlIsNtstatusExpected@4 | |
| 389 | FsRtlIsPagingFile@4 | |
| 390 | FsRtlIsTotalDeviceFailure@4 | |
| 391 | FsRtlLegalAnsiCharacterArray DATA | |
| 392 | FsRtlLogCcFlushError@20 | |
| 393 | FsRtlLookupBaseMcbEntry@32 | |
| 394 | FsRtlLookupLargeMcbEntry@32 | |
| 395 | FsRtlLookupLastBaseMcbEntry@12 | |
| 396 | FsRtlLookupLastBaseMcbEntryAndIndex@16 | |
| 397 | FsRtlLookupLastLargeMcbEntry@12 | |
| 398 | FsRtlLookupLastLargeMcbEntryAndIndex@16 | |
| 399 | FsRtlLookupLastMcbEntry@12 | |
| 400 | FsRtlLookupMcbEntry@20 | |
| 401 | FsRtlLookupPerFileContext@12 | |
| 402 | FsRtlLookupPerFileObjectContext@12 | |
| 403 | FsRtlLookupPerStreamContextInternal@12 | |
| 404 | FsRtlMdlRead@24 | |
| 405 | FsRtlMdlReadComplete@8 | |
| 406 | FsRtlMdlReadCompleteDev@12 | |
| 407 | FsRtlMdlReadDev@28 | |
| 408 | FsRtlMdlWriteComplete@12 | |
| 409 | FsRtlMdlWriteCompleteDev@16 | |
| 410 | FsRtlMupGetProviderIdFromName@8 | |
| 411 | FsRtlMupGetProviderInfoFromFileObject@16 | |
| 412 | FsRtlNormalizeNtstatus@8 | |
| 413 | FsRtlNotifyChangeDirectory@28 | |
| 414 | FsRtlNotifyCleanup@12 | |
| 415 | FsRtlNotifyCleanupAll@8 | |
| 416 | FsRtlNotifyFilterChangeDirectory@44 | |
| 417 | FsRtlNotifyFilterReportChange@40 | |
| 418 | FsRtlNotifyFullChangeDirectory@40 | |
| 419 | FsRtlNotifyFullReportChange@36 | |
| 420 | FsRtlNotifyInitializeSync@4 | |
| 421 | FsRtlNotifyReportChange@20 | |
| 422 | FsRtlNotifyUninitializeSync@4 | |
| 423 | FsRtlNotifyVolumeEvent@8 | |
| 424 | FsRtlNotifyVolumeEventEx@12 | |
| 425 | FsRtlNumberOfRunsInBaseMcb@4 | |
| 426 | FsRtlNumberOfRunsInLargeMcb@4 | |
| 427 | FsRtlNumberOfRunsInMcb@4 | |
| 428 | FsRtlOplockBreakH@24 | |
| 429 | FsRtlOplockBreakToNone@24 | |
| 430 | FsRtlOplockBreakToNoneEx@24 | |
| 431 | FsRtlOplockFsctrl@12 | |
| 432 | FsRtlOplockFsctrlEx@16 | |
| 433 | FsRtlOplockIsFastIoPossible@4 | |
| 434 | FsRtlOplockIsSharedRequest@4 | |
| 435 | FsRtlOplockKeysEqual@8 | |
| 436 | FsRtlPostPagingFileStackOverflow@12 | |
| 437 | FsRtlPostStackOverflow@12 | |
| 438 | FsRtlPrepareMdlWrite@24 | |
| 439 | FsRtlPrepareMdlWriteDev@28 | |
| 440 | FsRtlPrivateLock@48 | |
| 441 | FsRtlProcessFileLock@12 | |
| 442 | FsRtlQueryMaximumVirtualDiskNestingLevel@0 | |
| 443 | FsRtlRegisterFileSystemFilterCallbacks@8 | |
| 444 | FsRtlRegisterFltMgrCalls@4 | |
| 445 | FsRtlRegisterMupCalls@4 | |
| 446 | FsRtlRegisterUncProvider@12 | |
| 447 | FsRtlRegisterUncProviderEx@16 | |
| 448 | FsRtlReleaseFile@4 | |
| 449 | FsRtlRemoveBaseMcbEntry@20 | |
| 450 | FsRtlRemoveDotsFromPath@12 | |
| 451 | FsRtlRemoveExtraCreateParameter@16 | |
| 452 | FsRtlRemoveLargeMcbEntry@20 | |
| 453 | FsRtlRemoveMcbEntry@12 | |
| 454 | FsRtlRemovePerFileContext@12 | |
| 455 | FsRtlRemovePerFileObjectContext@12 | |
| 456 | FsRtlRemovePerStreamContext@12 | |
| 457 | FsRtlResetBaseMcb@4 | |
| 458 | FsRtlResetLargeMcb@8 | |
| 459 | FsRtlSetEcpListIntoIrp@8 | |
| 460 | FsRtlSplitBaseMcb@20 | |
| 461 | FsRtlSplitLargeMcb@20 | |
| 462 | FsRtlSyncVolumes@12 | |
| 463 | FsRtlTeardownPerFileContexts@4 | |
| 464 | FsRtlTeardownPerStreamContexts@4 | |
| 465 | FsRtlTruncateBaseMcb@12 | |
| 466 | FsRtlTruncateLargeMcb@12 | |
| 467 | FsRtlTruncateMcb@8 | |
| 468 | FsRtlUninitializeBaseMcb@4 | |
| 469 | FsRtlUninitializeFileLock@4 | |
| 470 | FsRtlUninitializeLargeMcb@4 | |
| 471 | FsRtlUninitializeMcb@4 | |
| 472 | FsRtlUninitializeOplock@4 | |
| 473 | FsRtlValidateReparsePointBuffer@8 | |
| 474 | HalDispatchTable DATA | |
| 475 | HalPrivateDispatchTable DATA | |
| 476 | HeadlessDispatch@20 | |
| 477 | HvlQueryConnection@4 | |
| 478 | InbvAcquireDisplayOwnership@0 | |
| 479 | InbvCheckDisplayOwnership@0 | |
| 480 | InbvDisplayString@4 | |
| 481 | InbvEnableBootDriver@4 | |
| 482 | InbvEnableDisplayString@4 | |
| 483 | InbvInstallDisplayStringFilter@4 | |
| 484 | InbvIsBootDriverInstalled@0 | |
| 485 | InbvNotifyDisplayOwnershipLost@4 | |
| 486 | InbvResetDisplay@0 | |
| 487 | InbvSetScrollRegion@16 | |
| 488 | InbvSetTextColor@4 | |
| 489 | InbvSolidColorFill@20 | |
| 490 | InitSafeBootMode DATA | |
| 491 | IoAcquireCancelSpinLock@4 | |
| 492 | IoAcquireRemoveLockEx@20 | |
| 493 | IoAcquireVpbSpinLock@4 | |
| 494 | IoAdapterObjectType DATA | |
| 495 | IoAdjustStackSizeForRedirection@12 | |
| 496 | IoAllocateAdapterChannel@20 | |
| 497 | IoAllocateController@16 | |
| 498 | IoAllocateDriverObjectExtension@16 | |
| 499 | IoAllocateErrorLogEntry@8 | |
| 500 | IoAllocateIrp@8 | |
| 501 | IoAllocateMdl@20 | |
| 502 | IoAllocateMiniCompletionPacket@8 | |
| 503 | IoAllocateSfioStreamIdentifier@16 | |
| 504 | IoAllocateWorkItem@4 | |
| 505 | IoApplyPriorityInfoThread@12 | |
| 506 | IoAssignResources@24 | |
| 507 | IoAttachDevice@12 | |
| 508 | IoAttachDeviceByPointer@8 | |
| 509 | IoAttachDeviceToDeviceStack@8 | |
| 510 | IoAttachDeviceToDeviceStackSafe@12 | |
| 511 | IoBuildAsynchronousFsdRequest@24 | |
| 512 | IoBuildDeviceIoControlRequest@36 | |
| 513 | IoBuildPartialMdl@16 | |
| 514 | IoBuildSynchronousFsdRequest@28 | |
| 515 | IoCallDriver@8 | |
| 516 | IoCancelFileOpen@8 | |
| 517 | IoCancelIrp@4 | |
| 518 | IoCheckDesiredAccess@8 | |
| 519 | IoCheckEaBufferValidity@12 | |
| 520 | IoCheckFunctionAccess@24 | |
| 521 | IoCheckQuerySetFileInformation@12 | |
| 522 | IoCheckQuerySetVolumeInformation@12 | |
| 523 | IoCheckQuotaBufferValidity@12 | |
| 524 | IoCheckShareAccess@20 | |
| 525 | IoCheckShareAccessEx@24 | |
| 526 | IoClearDependency@12 | |
| 527 | IoClearIrpExtraCreateParameter@4 | |
| 528 | IoCompleteRequest@8 | |
| 529 | IoConnectInterrupt@44 | |
| 530 | IoConnectInterruptEx@4 | |
| 531 | IoCreateArcName@4 | |
| 532 | IoCreateController@4 | |
| 533 | IoCreateDevice@28 | |
| 534 | IoCreateDisk@8 | |
| 535 | IoCreateDriver@8 | |
| 536 | IoCreateFile@56 | |
| 537 | IoCreateFileEx@60 | |
| 538 | IoCreateFileSpecifyDeviceObjectHint@60 | |
| 539 | IoCreateNotificationEvent@8 | |
| 540 | IoCreateStreamFileObject@8 | |
| 541 | IoCreateStreamFileObjectEx@12 | |
| 542 | IoCreateStreamFileObjectLite@8 | |
| 543 | IoCreateSymbolicLink@8 | |
| 544 | IoCreateSynchronizationEvent@8 | |
| 545 | IoCreateUnprotectedSymbolicLink@8 | |
| 546 | IoCsqInitialize@28 | |
| 547 | IoCsqInitializeEx@28 | |
| 548 | IoCsqInsertIrp@12 | |
| 549 | IoCsqInsertIrpEx@16 | |
| 550 | IoCsqRemoveIrp@8 | |
| 551 | IoCsqRemoveNextIrp@8 | |
| 552 | IoDeleteAllDependencyRelations@4 | |
| 553 | IoDeleteController@4 | |
| 554 | IoDeleteDevice@4 | |
| 555 | IoDeleteDriver@4 | |
| 556 | IoDeleteSymbolicLink@4 | |
| 557 | IoDetachDevice@4 | |
| 558 | IoDeviceHandlerObjectSize DATA | |
| 559 | IoDeviceHandlerObjectType DATA | |
| 560 | IoDeviceObjectType DATA | |
| 561 | IoDisconnectInterrupt@4 | |
| 562 | IoDisconnectInterruptEx@4 | |
| 563 | IoDriverObjectType DATA | |
| 564 | IoDuplicateDependency@12 | |
| 565 | IoEnqueueIrp@4 | |
| 566 | IoEnumerateDeviceObjectList@16 | |
| 567 | IoEnumerateRegisteredFiltersList@12 | |
| 568 | IoFastQueryNetworkAttributes@20 | |
| 569 | IoFileObjectType DATA | |
| 570 | IoForwardAndCatchIrp@8 | |
| 571 | IoForwardIrpSynchronously@8 | |
| 572 | IoFreeController@4 | |
| 573 | IoFreeErrorLogEntry@4 | |
| 574 | IoFreeIrp@4 | |
| 575 | IoFreeMdl@4 | |
| 576 | IoFreeMiniCompletionPacket@4 | |
| 577 | IoFreeSfioStreamIdentifier@8 | |
| 578 | IoFreeWorkItem@4 | |
| 579 | IoGetAffinityInterrupt@8 | |
| 580 | IoGetAttachedDevice@4 | |
| 581 | IoGetAttachedDeviceReference@4 | |
| 582 | IoGetBaseFileSystemDeviceObject@4 | |
| 583 | IoGetBootDiskInformation@8 | |
| 584 | IoGetBootDiskInformationLite@4 | |
| 585 | IoGetConfigurationInformation@0 | |
| 586 | IoGetContainerInformation@16 | |
| 587 | IoGetCurrentProcess@0 | |
| 588 | IoGetDeviceAttachmentBaseRef@4 | |
| 589 | IoGetDeviceInterfaceAlias@12 | |
| 590 | IoGetDeviceInterfaces@16 | |
| 591 | IoGetDeviceNumaNode@8 | |
| 592 | IoGetDeviceObjectPointer@16 | |
| 593 | IoGetDeviceProperty@20 | |
| 594 | IoGetDevicePropertyData@32 | |
| 595 | IoGetDeviceToVerify@4 | |
| 596 | IoGetDiskDeviceObject@8 | |
| 597 | IoGetDmaAdapter@12 | |
| 598 | IoGetDriverObjectExtension@8 | |
| 599 | IoGetFileObjectGenericMapping@0 | |
| 600 | IoGetInitialStack@0 | |
| 601 | IoGetIoPriorityHint@4 | |
| 602 | IoGetIrpExtraCreateParameter@8 | |
| 603 | IoGetLowerDeviceObject@4 | |
| 604 | IoGetOplockKeyContext@4 | |
| 605 | IoGetRelatedDeviceObject@4 | |
| 606 | IoGetRequestorProcess@4 | |
| 607 | IoGetRequestorProcessId@4 | |
| 608 | IoGetRequestorSessionId@8 | |
| 609 | IoGetSfioStreamIdentifier@8 | |
| 610 | IoGetStackLimits@8 | |
| 611 | IoGetSymlinkSupportInformation@8 | |
| 612 | IoGetTopLevelIrp@0 | |
| 613 | IoGetTransactionParameterBlock@4 | |
| 614 | IoInitializeIrp@12 | |
| 615 | IoInitializeRemoveLockEx@20 | |
| 616 | IoInitializeTimer@12 | |
| 617 | IoInitializeWorkItem@8 | |
| 618 | IoInvalidateDeviceRelations@8 | |
| 619 | IoInvalidateDeviceState@4 | |
| 620 | IoIsFileObjectIgnoringSharing@4 | |
| 621 | IoIsFileOriginRemote@4 | |
| 622 | IoIsOperationSynchronous@4 | |
| 623 | IoIsSystemThread@4 | |
| 624 | IoIsValidNameGraftingBuffer@8 | |
| 625 | IoIsWdmVersionAvailable@8 | |
| 626 | IoMakeAssociatedIrp@8 | |
| 627 | IoOpenDeviceInterfaceRegistryKey@12 | |
| 628 | IoOpenDeviceRegistryKey@16 | |
| 629 | IoPageRead@20 | |
| 630 | IoQueryDeviceDescription@32 | |
| 631 | IoQueryFileDosDeviceName@8 | |
| 632 | IoQueryFileInformation@20 | |
| 633 | IoQueryVolumeInformation@20 | |
| 634 | IoQueueThreadIrp@4 | |
| 635 | IoQueueWorkItem@16 | |
| 636 | IoQueueWorkItemEx@16 | |
| 637 | IoRaiseHardError@12 | |
| 638 | IoRaiseInformationalHardError@12 | |
| 639 | IoReadDiskSignature@12 | |
| 640 | IoReadOperationCount DATA | |
| 641 | IoReadPartitionTableEx@8 | |
| 642 | IoReadTransferCount DATA | |
| 643 | IoRegisterBootDriverReinitialization@12 | |
| 644 | IoRegisterContainerNotification@20 | |
| 645 | IoRegisterDeviceInterface@16 | |
| 646 | IoRegisterDriverReinitialization@12 | |
| 647 | IoRegisterFileSystem@4 | |
| 648 | IoRegisterFsRegistrationChange@8 | |
| 649 | IoRegisterFsRegistrationChangeMountAware@12 | |
| 650 | IoRegisterLastChanceShutdownNotification@4 | |
| 651 | IoRegisterPlugPlayNotification@28 | |
| 652 | IoRegisterPriorityCallback@8 | |
| 653 | IoRegisterShutdownNotification@4 | |
| 654 | IoReleaseCancelSpinLock@4 | |
| 655 | IoReleaseRemoveLockAndWaitEx@12 | |
| 656 | IoReleaseRemoveLockEx@12 | |
| 657 | IoReleaseVpbSpinLock@4 | |
| 658 | IoRemoveShareAccess@8 | |
| 659 | IoReplaceFileObjectName@12 | |
| 660 | IoReplacePartitionUnit@12 | |
| 661 | IoReportDetectedDevice@32 | |
| 662 | IoReportHalResourceUsage@16 | |
| 663 | IoReportResourceForDetection@28 | |
| 664 | IoReportResourceUsage@36 | |
| 665 | IoReportRootDevice@4 | |
| 666 | IoReportTargetDeviceChange@8 | |
| 667 | IoReportTargetDeviceChangeAsynchronous@16 | |
| 668 | IoRequestDeviceEject@4 | |
| 669 | IoRequestDeviceEjectEx@16 | |
| 670 | IoRetrievePriorityInfo@16 | |
| 671 | IoReuseIrp@8 | |
| 672 | IoSetCompletionRoutineEx@28 | |
| 673 | IoSetDependency@8 | |
| 674 | IoSetDeviceInterfaceState@8 | |
| 675 | IoSetDevicePropertyData@28 | |
| 676 | IoSetDeviceToVerify@8 | |
| 677 | IoSetFileObjectIgnoreSharing@4 | |
| 678 | IoSetFileOrigin@8 | |
| 679 | IoSetHardErrorOrVerifyDevice@8 | |
| 680 | IoSetInformation@16 | |
| 681 | IoSetIoCompletion@24 | |
| 682 | IoSetIoCompletionEx@28 | |
| 683 | IoSetIoPriorityHint@8 | |
| 684 | IoSetIoPriorityHintIntoFileObject@8 | |
| 685 | IoSetIoPriorityHintIntoThread@8 | |
| 686 | IoSetIrpExtraCreateParameter@8 | |
| 687 | IoSetOplockKeyContext@12 | |
| 688 | IoSetPartitionInformationEx@12 | |
| 689 | IoSetShareAccess@16 | |
| 690 | IoSetShareAccessEx@20 | |
| 691 | IoSetStartIoAttributes@12 | |
| 692 | IoSetSystemPartition@4 | |
| 693 | IoSetThreadHardErrorMode@4 | |
| 694 | IoSetTopLevelIrp@4 | |
| 695 | IoSizeofWorkItem@0 | |
| 696 | IoStartNextPacket@8 | |
| 697 | IoStartNextPacketByKey@12 | |
| 698 | IoStartPacket@16 | |
| 699 | IoStartTimer@4 | |
| 700 | IoStatisticsLock DATA | |
| 701 | IoStopTimer@4 | |
| 702 | IoSynchronousInvalidateDeviceRelations@8 | |
| 703 | IoSynchronousPageWrite@20 | |
| 704 | IoThreadToProcess@4 | |
| 705 | IoTranslateBusAddress@24 | |
| 706 | IoUninitializeWorkItem@4 | |
| 707 | IoUnregisterContainerNotification@4 | |
| 708 | IoUnregisterFileSystem@4 | |
| 709 | IoUnregisterFsRegistrationChange@8 | |
| 710 | IoUnregisterPlugPlayNotification@4 | |
| 711 | IoUnregisterPlugPlayNotificationEx@4 | |
| 712 | IoUnregisterPriorityCallback@4 | |
| 713 | IoUnregisterShutdownNotification@4 | |
| 714 | IoUpdateShareAccess@8 | |
| 715 | IoValidateDeviceIoControlAccess@8 | |
| 716 | IoVerifyPartitionTable@8 | |
| 717 | IoVerifyVolume@8 | |
| 718 | IoVolumeDeviceToDosName@8 | |
| 719 | IoWMIAllocateInstanceIds@12 | |
| 720 | IoWMIDeviceObjectToInstanceName@12 | |
| 721 | IoWMIExecuteMethod@24 | |
| 722 | IoWMIHandleToInstanceName@12 | |
| 723 | IoWMIOpenBlock@12 | |
| 724 | IoWMIQueryAllData@12 | |
| 725 | IoWMIQueryAllDataMultiple@16 | |
| 726 | IoWMIQuerySingleInstance@16 | |
| 727 | IoWMIQuerySingleInstanceMultiple@20 | |
| 728 | IoWMIRegistrationControl@8 | |
| 729 | IoWMISetNotificationCallback@12 | |
| 730 | IoWMISetSingleInstance@20 | |
| 731 | IoWMISetSingleItem@24 | |
| 732 | IoWMISuggestInstanceName@16 | |
| 733 | IoWMIWriteEvent@4 | |
| 734 | IoWithinStackLimits@8 | |
| 735 | IoWriteErrorLogEntry@4 | |
| 736 | IoWriteOperationCount DATA | |
| 737 | IoWritePartitionTableEx@8 | |
| 738 | IoWriteTransferCount DATA | |
| 739 | KdChangeOption@24 | |
| 740 | KdDebuggerEnabled DATA | |
| 741 | KdDebuggerNotPresent DATA | |
| 742 | KdDisableDebugger@0 | |
| 743 | KdEnableDebugger@0 | |
| 744 | KdEnteredDebugger DATA | |
| 745 | KdPollBreakIn@0 | |
| 746 | KdPowerTransition@4 | |
| 747 | KdRefreshDebuggerNotPresent@0 | |
| 748 | KdSystemDebugControl@28 | |
| 749 | Ke386CallBios@8 | |
| 750 | Ke386IoSetAccessProcess@8 | |
| 751 | Ke386QueryIoAccessMap@8 | |
| 752 | Ke386SetIoAccessMap@8 | |
| 753 | KeAcquireInterruptSpinLock@4 | |
| 754 | KeAcquireSpinLockAtDpcLevel@4 | |
| 755 | KeAddGroupAffinityEx@12 | |
| 756 | KeAddProcessorAffinityEx@8 | |
| 757 | KeAddProcessorGroupAffinity@8 | |
| 758 | KeAddSystemServiceTable@20 | |
| 759 | KeAlertThread@8 | |
| 760 | KeAllocateCalloutStack@4 | |
| 761 | KeAllocateCalloutStackEx@16 | |
| 762 | KeAndAffinityEx@12 | |
| 763 | KeAndGroupAffinityEx@12 | |
| 764 | KeAreAllApcsDisabled@0 | |
| 765 | KeAreApcsDisabled@0 | |
| 766 | KeAttachProcess@4 | |
| 767 | KeBugCheck@4 | |
| 768 | KeBugCheckEx@20 | |
| 769 | KeCancelTimer@4 | |
| 770 | KeCapturePersistentThreadState@32 | |
| 771 | KeCheckProcessorAffinityEx@8 | |
| 772 | KeCheckProcessorGroupAffinity@8 | |
| 773 | KeClearEvent@4 | |
| 774 | KeComplementAffinityEx@8 | |
| 775 | KeCopyAffinityEx@8 | |
| 776 | KeCountSetBitsAffinityEx@4 | |
| 777 | KeCountSetBitsGroupAffinity@4 | |
| 778 | KeDelayExecutionThread@12 | |
| 779 | KeDeregisterBugCheckCallback@4 | |
| 780 | KeDeregisterBugCheckReasonCallback@4 | |
| 781 | KeDeregisterNmiCallback@4 | |
| 782 | KeDeregisterProcessorChangeCallback@4 | |
| 783 | KeDetachProcess@0 | |
| 784 | KeEnterCriticalRegion@0 | |
| 785 | KeEnterGuardedRegion@0 | |
| 786 | KeEnterKernelDebugger@0 | |
| 787 | KeEnumerateNextProcessor@8 | |
| 788 | KeExpandKernelStackAndCallout@12 | |
| 789 | KeExpandKernelStackAndCalloutEx@20 | |
| 790 | KeFindConfigurationEntry@16 | |
| 791 | KeFindConfigurationNextEntry@20 | |
| 792 | KeFindFirstSetLeftAffinityEx@4 | |
| 793 | KeFindFirstSetLeftGroupAffinity@4 | |
| 794 | KeFindFirstSetRightGroupAffinity@4 | |
| 795 | KeFirstGroupAffinityEx@8 | |
| 796 | KeFlushEntireTb@8 | |
| 797 | KeFlushQueuedDpcs@0 | |
| 798 | KeFreeCalloutStack@4 | |
| 799 | KeGenericCallDpc@8 | |
| 800 | KeGetCurrentNodeNumber@0 | |
| 801 | KeGetCurrentProcessorNumberEx@4 | |
| 802 | KeGetCurrentThread@0 | |
| 803 | KeGetPreviousMode@0 | |
| 804 | KeGetProcessorIndexFromNumber@4 | |
| 805 | KeGetProcessorNumberFromIndex@8 | |
| 806 | KeGetRecommendedSharedDataAlignment@0 | |
| 807 | KeGetXSaveFeatureFlags@0 | |
| 808 | KeI386AbiosCall@16 | |
| 809 | KeI386AllocateGdtSelectors@8 | |
| 810 | KeI386Call16BitCStyleFunction@0 | |
| 811 | KeI386Call16BitFunction@0 | |
| 812 | KeI386FlatToGdtSelector@12 | |
| 813 | KeI386GetLid@20 | |
| 814 | KeI386MachineType DATA | |
| 815 | KeI386ReleaseGdtSelectors@8 | |
| 816 | KeI386ReleaseLid@8 | |
| 817 | KeI386SetGdtSelector@8 | |
| 818 | KeInitializeAffinityEx@4 | |
| 819 | KeInitializeApc@32 | |
| 820 | KeInitializeCrashDumpHeader@20 | |
| 821 | KeInitializeDeviceQueue@4 | |
| 822 | KeInitializeDpc@12 | |
| 823 | KeInitializeEnumerationContext@8 | |
| 824 | KeInitializeEnumerationContextFromGroup@8 | |
| 825 | KeInitializeEvent@12 | |
| 826 | KeInitializeInterrupt@52 | |
| 827 | KeInitializeMutant@8 | |
| 828 | KeInitializeMutex@8 | |
| 829 | KeInitializeQueue@8 | |
| 830 | KeInitializeSemaphore@12 | |
| 831 | KeInitializeSpinLock@4 | |
| 832 | KeInitializeThreadedDpc@12 | |
| 833 | KeInitializeTimer@4 | |
| 834 | KeInitializeTimerEx@8 | |
| 835 | KeInsertByKeyDeviceQueue@12 | |
| 836 | KeInsertDeviceQueue@8 | |
| 837 | KeInsertHeadQueue@8 | |
| 838 | KeInsertQueue@8 | |
| 839 | KeInsertQueueApc@16 | |
| 840 | KeInsertQueueDpc@12 | |
| 841 | KeInterlockedClearProcessorAffinityEx@8 | |
| 842 | KeInterlockedSetProcessorAffinityEx@8 | |
| 843 | KeInvalidateAllCaches@0 | |
| 844 | KeIpiGenericCall@8 | |
| 845 | KeIsAttachedProcess@0 | |
| 846 | KeIsEmptyAffinityEx@4 | |
| 847 | KeIsEqualAffinityEx@8 | |
| 848 | KeIsExecutingDpc@0 | |
| 849 | KeIsSingleGroupAffinityEx@8 | |
| 850 | KeIsSubsetAffinityEx@8 | |
| 851 | KeIsWaitListEmpty@4 | |
| 852 | KeLeaveCriticalRegion@0 | |
| 853 | KeLeaveGuardedRegion@0 | |
| 854 | KeLoaderBlock DATA | |
| 855 | KeNumberProcessors DATA | |
| 856 | KeOrAffinityEx@12 | |
| 857 | KePollFreezeExecution@0 | |
| 858 | KeProcessorGroupAffinity@8 | |
| 859 | KeProfileInterrupt@8 | |
| 860 | KeProfileInterruptWithSource@8 | |
| 861 | KePulseEvent@12 | |
| 862 | KeQueryActiveGroupCount@0 | |
| 863 | KeQueryActiveProcessorAffinity@4 | |
| 864 | KeQueryActiveProcessorCount@4 | |
| 865 | KeQueryActiveProcessorCountEx@4 | |
| 866 | KeQueryActiveProcessors@0 | |
| 867 | KeQueryDpcWatchdogInformation@4 | |
| 868 | KeQueryGroupAffinity@4 | |
| 869 | KeQueryGroupAffinityEx@8 | |
| 870 | KeQueryHardwareCounterConfiguration@12 | |
| 871 | KeQueryHighestNodeNumber@0 | |
| 872 | KeQueryInterruptTime@0 | |
| 873 | KeQueryLogicalProcessorRelationship@16 | |
| 874 | KeQueryMaximumGroupCount@0 | |
| 875 | KeQueryMaximumProcessorCount@0 | |
| 876 | KeQueryMaximumProcessorCountEx@4 | |
| 877 | KeQueryNodeActiveAffinity@12 | |
| 878 | KeQueryNodeMaximumProcessorCount@4 | |
| 879 | KeQueryPriorityThread@4 | |
| 880 | KeQueryRuntimeThread@8 | |
| 881 | KeQuerySystemTime@4 | |
| 882 | KeQueryTickCount@4 | |
| 883 | KeQueryTimeIncrement@0 | |
| 884 | KeQueryUnbiasedInterruptTime@0 | |
| 885 | KeRaiseUserException@4 | |
| 886 | KeReadStateEvent@4 | |
| 887 | KeReadStateMutant@4 | |
| 888 | KeReadStateMutex@4 | |
| 889 | KeReadStateQueue@4 | |
| 890 | KeReadStateSemaphore@4 | |
| 891 | KeReadStateTimer@4 | |
| 892 | KeRegisterBugCheckCallback@20 | |
| 893 | KeRegisterBugCheckReasonCallback@16 | |
| 894 | KeRegisterNmiCallback@8 | |
| 895 | KeRegisterProcessorChangeCallback@12 | |
| 896 | KeReleaseInterruptSpinLock@8 | |
| 897 | KeReleaseMutant@16 | |
| 898 | KeReleaseMutex@8 | |
| 899 | KeReleaseSemaphore@16 | |
| 900 | KeReleaseSpinLockFromDpcLevel@4 | |
| 901 | KeRemoveByKeyDeviceQueue@8 | |
| 902 | KeRemoveByKeyDeviceQueueIfBusy@8 | |
| 903 | KeRemoveDeviceQueue@4 | |
| 904 | KeRemoveEntryDeviceQueue@8 | |
| 905 | KeRemoveGroupAffinityEx@12 | |
| 906 | KeRemoveProcessorAffinityEx@8 | |
| 907 | KeRemoveProcessorGroupAffinity@8 | |
| 908 | KeRemoveQueue@12 | |
| 909 | KeRemoveQueueDpc@4 | |
| 910 | KeRemoveQueueEx@24 | |
| 911 | KeRemoveSystemServiceTable@4 | |
| 912 | KeResetEvent@4 | |
| 913 | KeRestoreExtendedProcessorState@4 | |
| 914 | KeRestoreFloatingPointState@4 | |
| 915 | KeRevertToUserAffinityThread@0 | |
| 916 | KeRevertToUserAffinityThreadEx@4 | |
| 917 | KeRevertToUserGroupAffinityThread@4 | |
| 918 | KeRundownQueue@4 | |
| 919 | KeSaveExtendedProcessorState@12 | |
| 920 | KeSaveFloatingPointState@4 | |
| 921 | KeSaveStateForHibernate@0 | |
| 922 | KeServiceDescriptorTable DATA | |
| 923 | KeSetActualBasePriorityThread@8 | |
| 924 | KeSetAffinityThread@8 | |
| 925 | KeSetBasePriorityThread@8 | |
| 926 | KeSetCoalescableTimer@24 | |
| 927 | KeSetDmaIoCoherency@4 | |
| 928 | KeSetEvent@12 | |
| 929 | KeSetEventBoostPriority@8 | |
| 930 | KeSetHardwareCounterConfiguration@8 | |
| 931 | KeSetIdealProcessorThread@8 | |
| 932 | KeSetImportanceDpc@8 | |
| 933 | KeSetKernelStackSwapEnable@4 | |
| 934 | KeSetPriorityThread@8 | |
| 935 | KeSetProfileIrql@4 | |
| 936 | KeSetSystemAffinityThread@4 | |
| 937 | KeSetSystemAffinityThreadEx@4 | |
| 938 | KeSetSystemGroupAffinityThread@8 | |
| 939 | KeSetTargetProcessorDpc@8 | |
| 940 | KeSetTargetProcessorDpcEx@8 | |
| 941 | KeSetTimeIncrement@8 | |
| 942 | KeSetTimer@16 | |
| 943 | KeSetTimerEx@20 | |
| 944 | KeSignalCallDpcDone@4 | |
| 945 | KeSignalCallDpcSynchronize@4 | |
| 946 | KeStackAttachProcess@8 | |
| 947 | KeStartDynamicProcessor@16 | |
| 948 | KeSubtractAffinityEx@12 | |
| 949 | KeSynchronizeExecution@12 | |
| 950 | KeTestAlertThread@4 | |
| 951 | KeTickCount DATA | |
| 952 | KeUnstackDetachProcess@4 | |
| 953 | KeUpdateSystemTime@0 | |
| 954 | KeUserModeCallback@20 | |
| 955 | KeWaitForMultipleObjects@32 | |
| 956 | KeWaitForMutexObject@20 | |
| 957 | KeWaitForSingleObject@20 | |
| 958 | KiBugCheckData DATA | |
| 959 | KiCheckForKernelApcDelivery@0 | |
| 960 | KiCoprocessorError@0 | |
| 961 | KiDeliverApc@12 | |
| 962 | KiDispatchInterrupt@0 | |
| 963 | KiIpiServiceRoutine@8 | |
| 964 | ;KiUnexpectedInterrupt ; Check!!! Couldn't determine function argument count. Function doesn't return. | |
| 965 | LdrAccessResource@16 | |
| 966 | LdrEnumResources@20 | |
| 967 | LdrFindResourceDirectory_U@16 | |
| 968 | LdrFindResourceEx_U@20 | |
| 969 | LdrFindResource_U@16 | |
| 970 | LdrResFindResource@36 | |
| 971 | LdrResFindResourceDirectory@28 | |
| 972 | LdrResSearchResource@32 | |
| 973 | LpcPortObjectType DATA | |
| 974 | LpcReplyWaitReplyPort@12 | |
| 975 | LpcRequestPort@8 | |
| 976 | LpcRequestWaitReplyPort@12 | |
| 977 | LpcRequestWaitReplyPortEx@12 | |
| 978 | LpcSendWaitReceivePort@28 | |
| 979 | LsaCallAuthenticationPackage@28 | |
| 980 | LsaDeregisterLogonProcess@4 | |
| 981 | LsaFreeReturnBuffer@4 | |
| 982 | LsaLogonUser@56 | |
| 983 | LsaLookupAuthenticationPackage@12 | |
| 984 | LsaRegisterLogonProcess@12 | |
| 985 | Mm64BitPhysicalAddress DATA | |
| 986 | MmAddPhysicalMemory@8 | |
| 987 | MmAddVerifierThunks@8 | |
| 988 | MmAdjustWorkingSetSize@16 | |
| 989 | MmAdvanceMdl@8 | |
| 990 | MmAllocateContiguousMemory@12 | |
| 991 | MmAllocateContiguousMemorySpecifyCache@32 | |
| 992 | MmAllocateContiguousMemorySpecifyCacheNode@36 | |
| 993 | MmAllocateMappingAddress@8 | |
| 994 | MmAllocateNonCachedMemory@4 | |
| 995 | MmAllocatePagesForMdl@28 | |
| 996 | MmAllocatePagesForMdlEx@36 | |
| 997 | MmBadPointer DATA | |
| 998 | MmBuildMdlForNonPagedPool@4 | |
| 999 | MmCanFileBeTruncated@8 | |
| 1000 | MmCommitSessionMappedView@8 | |
| 1001 | MmCopyVirtualMemory@28 | |
| 1002 | MmCreateMdl@12 | |
| 1003 | MmCreateMirror@0 | |
| 1004 | MmCreateSection@32 | |
| 1005 | MmDisableModifiedWriteOfSection@4 | |
| 1006 | MmDoesFileHaveUserWritableReferences@4 | |
| 1007 | MmFlushImageSection@8 | |
| 1008 | MmForceSectionClosed@8 | |
| 1009 | MmFreeContiguousMemory@4 | |
| 1010 | MmFreeContiguousMemorySpecifyCache@12 | |
| 1011 | MmFreeMappingAddress@8 | |
| 1012 | MmFreeNonCachedMemory@8 | |
| 1013 | MmFreePagesFromMdl@4 | |
| 1014 | MmGetPhysicalAddress@4 | |
| 1015 | MmGetPhysicalMemoryRanges@0 | |
| 1016 | MmGetSystemRoutineAddress@4 | |
| 1017 | MmGetVirtualForPhysical@8 | |
| 1018 | MmGrowKernelStack@4 | |
| 1019 | MmHighestUserAddress DATA | |
| 1020 | MmIsAddressValid@4 | |
| 1021 | MmIsDriverVerifying@4 | |
| 1022 | MmIsDriverVerifyingByAddress@4 | |
| 1023 | MmIsIoSpaceActive@12 | |
| 1024 | MmIsNonPagedSystemAddressValid@4 | |
| 1025 | MmIsRecursiveIoFault@0 | |
| 1026 | MmIsThisAnNtAsSystem@0 | |
| 1027 | MmIsVerifierEnabled@4 | |
| 1028 | MmLockPagableDataSection@4 | |
| 1029 | MmLockPagableImageSection@4 | |
| 1030 | MmLockPagableSectionByHandle@4 | |
| 1031 | MmMapIoSpace@16 | |
| 1032 | MmMapLockedPages@8 | |
| 1033 | MmMapLockedPagesSpecifyCache@24 | |
| 1034 | MmMapLockedPagesWithReservedMapping@16 | |
| 1035 | MmMapMemoryDumpMdl@4 | |
| 1036 | MmMapUserAddressesToPage@12 | |
| 1037 | MmMapVideoDisplay@16 | |
| 1038 | MmMapViewInSessionSpace@12 | |
| 1039 | MmMapViewInSystemSpace@12 | |
| 1040 | MmMapViewOfSection@40 | |
| 1041 | MmMarkPhysicalMemoryAsBad@8 | |
| 1042 | MmMarkPhysicalMemoryAsGood@8 | |
| 1043 | MmPageEntireDriver@4 | |
| 1044 | MmPrefetchPages@8 | |
| 1045 | MmProbeAndLockPages@12 | |
| 1046 | MmProbeAndLockProcessPages@16 | |
| 1047 | MmProbeAndLockSelectedPages@16 | |
| 1048 | MmProtectMdlSystemAddress@8 | |
| 1049 | MmQuerySystemSize@0 | |
| 1050 | MmRemovePhysicalMemory@8 | |
| 1051 | MmResetDriverPaging@4 | |
| 1052 | MmRotatePhysicalView@24 | |
| 1053 | MmSectionObjectType DATA | |
| 1054 | MmSecureVirtualMemory@12 | |
| 1055 | MmSetAddressRangeModified@8 | |
| 1056 | MmSetBankedSection@24 | |
| 1057 | MmSizeOfMdl@8 | |
| 1058 | MmSystemRangeStart DATA | |
| 1059 | MmTrimAllSystemPagableMemory@4 | |
| 1060 | MmUnlockPagableImageSection@4 | |
| 1061 | MmUnlockPages@4 | |
| 1062 | MmUnmapIoSpace@8 | |
| 1063 | MmUnmapLockedPages@8 | |
| 1064 | MmUnmapReservedMapping@12 | |
| 1065 | MmUnmapVideoDisplay@8 | |
| 1066 | MmUnmapViewInSessionSpace@4 | |
| 1067 | MmUnmapViewInSystemSpace@4 | |
| 1068 | MmUnmapViewOfSection@8 | |
| 1069 | MmUnsecureVirtualMemory@4 | |
| 1070 | MmUserProbeAddress DATA | |
| 1071 | NlsAnsiCodePage DATA | |
| 1072 | NlsLeadByteInfo DATA | |
| 1073 | NlsMbCodePageTag DATA | |
| 1074 | NlsMbOemCodePageTag DATA | |
| 1075 | NlsOemCodePage DATA | |
| 1076 | NlsOemLeadByteInfo DATA | |
| 1077 | NtAddAtom@12 | |
| 1078 | NtAdjustPrivilegesToken@24 | |
| 1079 | NtAllocateLocallyUniqueId@4 | |
| 1080 | NtAllocateUuids@16 | |
| 1081 | NtAllocateVirtualMemory@24 | |
| 1082 | NtBuildGUID@0 | |
| 1083 | NtBuildLab@0 | |
| 1084 | NtBuildNumber@0 | |
| 1085 | NtClose@4 | |
| 1086 | NtCommitComplete@8 | |
| 1087 | NtCommitEnlistment@8 | |
| 1088 | NtCommitTransaction@8 | |
| 1089 | NtConnectPort@32 | |
| 1090 | NtCreateEnlistment@32 | |
| 1091 | NtCreateEvent@20 | |
| 1092 | NtCreateFile@44 | |
| 1093 | NtCreateResourceManager@28 | |
| 1094 | NtCreateSection@28 | |
| 1095 | NtCreateTransaction@40 | |
| 1096 | NtCreateTransactionManager@24 | |
| 1097 | NtDeleteAtom@4 | |
| 1098 | NtDeleteFile@4 | |
| 1099 | NtDeviceIoControlFile@40 | |
| 1100 | NtDuplicateObject@28 | |
| 1101 | NtDuplicateToken@24 | |
| 1102 | NtEnumerateTransactionObject@20 | |
| 1103 | NtFindAtom@12 | |
| 1104 | NtFreeVirtualMemory@16 | |
| 1105 | NtFreezeTransactions@8 | |
| 1106 | NtFsControlFile@40 | |
| 1107 | NtGetEnvironmentVariableEx@20 | |
| 1108 | NtGetNotificationResourceManager@28 | |
| 1109 | NtGlobalFlag DATA | |
| 1110 | NtLockFile@40 | |
| 1111 | NtMakePermanentObject@4 | |
| 1112 | NtMapViewOfSection@40 | |
| 1113 | NtNotifyChangeDirectoryFile@36 | |
| 1114 | NtOpenEnlistment@20 | |
| 1115 | NtOpenFile@24 | |
| 1116 | NtOpenProcess@16 | |
| 1117 | NtOpenProcessToken@12 | |
| 1118 | NtOpenProcessTokenEx@16 | |
| 1119 | NtOpenResourceManager@20 | |
| 1120 | NtOpenThread@16 | |
| 1121 | NtOpenThreadToken@16 | |
| 1122 | NtOpenThreadTokenEx@20 | |
| 1123 | NtOpenTransaction@20 | |
| 1124 | NtOpenTransactionManager@24 | |
| 1125 | NtPrePrepareComplete@8 | |
| 1126 | NtPrePrepareEnlistment@8 | |
| 1127 | NtPrepareComplete@8 | |
| 1128 | NtPrepareEnlistment@8 | |
| 1129 | NtPropagationComplete@16 | |
| 1130 | NtPropagationFailed@12 | |
| 1131 | NtQueryDirectoryFile@44 | |
| 1132 | NtQueryEaFile@36 | |
| 1133 | NtQueryEnvironmentVariableInfoEx@16 | |
| 1134 | NtQueryInformationAtom@20 | |
| 1135 | NtQueryInformationEnlistment@20 | |
| 1136 | NtQueryInformationFile@20 | |
| 1137 | NtQueryInformationProcess@20 | |
| 1138 | NtQueryInformationResourceManager@20 | |
| 1139 | NtQueryInformationThread@20 | |
| 1140 | NtQueryInformationToken@20 | |
| 1141 | NtQueryInformationTransaction@20 | |
| 1142 | NtQueryInformationTransactionManager@20 | |
| 1143 | NtQueryQuotaInformationFile@36 | |
| 1144 | NtQuerySecurityAttributesToken@24 | |
| 1145 | NtQuerySecurityObject@20 | |
| 1146 | NtQuerySystemInformation@16 | |
| 1147 | NtQuerySystemInformationEx@24 | |
| 1148 | NtQueryVolumeInformationFile@20 | |
| 1149 | NtReadFile@36 | |
| 1150 | NtReadOnlyEnlistment@8 | |
| 1151 | NtRecoverEnlistment@8 | |
| 1152 | NtRecoverResourceManager@4 | |
| 1153 | NtRecoverTransactionManager@4 | |
| 1154 | NtRequestPort@8 | |
| 1155 | NtRequestWaitReplyPort@12 | |
| 1156 | NtRollbackComplete@8 | |
| 1157 | NtRollbackEnlistment@8 | |
| 1158 | NtRollbackTransaction@8 | |
| 1159 | NtSetEaFile@16 | |
| 1160 | NtSetEvent@8 | |
| 1161 | NtSetInformationEnlistment@16 | |
| 1162 | NtSetInformationFile@20 | |
| 1163 | NtSetInformationProcess@16 | |
| 1164 | NtSetInformationResourceManager@16 | |
| 1165 | NtSetInformationThread@16 | |
| 1166 | NtSetInformationToken@16 | |
| 1167 | NtSetInformationTransaction@16 | |
| 1168 | NtSetQuotaInformationFile@16 | |
| 1169 | NtSetSecurityObject@12 | |
| 1170 | NtSetVolumeInformationFile@20 | |
| 1171 | NtShutdownSystem@4 | |
| 1172 | NtThawTransactions@0 | |
| 1173 | NtTraceControl@24 | |
| 1174 | NtTraceEvent@16 | |
| 1175 | NtUnlockFile@20 | |
| 1176 | NtVdmControl@8 | |
| 1177 | NtWaitForSingleObject@12 | |
| 1178 | NtWriteFile@36 | |
| 1179 | ObAssignSecurity@16 | |
| 1180 | ObCheckCreateObjectAccess@28 | |
| 1181 | ObCheckObjectAccess@20 | |
| 1182 | ObCloseHandle@8 | |
| 1183 | ObCreateObject@36 | |
| 1184 | ObCreateObjectType@16 | |
| 1185 | ObDeleteCapturedInsertInfo@4 | |
| 1186 | ObDereferenceObject@4 | |
| 1187 | ObDereferenceObjectDeferDelete@4 | |
| 1188 | ObDereferenceObjectDeferDeleteWithTag@8 | |
| 1189 | ObDereferenceSecurityDescriptor@8 | |
| 1190 | ObFindHandleForObject@20 | |
| 1191 | ObGetFilterVersion@0 | |
| 1192 | ObGetObjectSecurity@12 | |
| 1193 | ObGetObjectType@4 | |
| 1194 | ObInsertObject@24 | |
| 1195 | ObIsDosDeviceLocallyMapped@8 | |
| 1196 | ObIsKernelHandle@4 | |
| 1197 | ObLogSecurityDescriptor@12 | |
| 1198 | ObMakeTemporaryObject@4 | |
| 1199 | ObOpenObjectByName@28 | |
| 1200 | ObOpenObjectByPointer@28 | |
| 1201 | ObOpenObjectByPointerWithTag@32 | |
| 1202 | ObQueryNameInfo@4 | |
| 1203 | ObQueryNameString@16 | |
| 1204 | ObQueryObjectAuditingByHandle@8 | |
| 1205 | ObReferenceObjectByHandle@24 | |
| 1206 | ObReferenceObjectByHandleWithTag@28 | |
| 1207 | ObReferenceObjectByName@32 | |
| 1208 | ObReferenceObjectByPointer@16 | |
| 1209 | ObReferenceObjectByPointerWithTag@20 | |
| 1210 | ObReferenceSecurityDescriptor@8 | |
| 1211 | ObRegisterCallbacks@8 | |
| 1212 | ObReleaseObjectSecurity@8 | |
| 1213 | ObSetHandleAttributes@12 | |
| 1214 | ObSetSecurityDescriptorInfo@24 | |
| 1215 | ObSetSecurityObjectByPointer@12 | |
| 1216 | ObUnRegisterCallbacks@4 | |
| 1217 | POGOBuffer DATA | |
| 1218 | PcwAddInstance@20 | |
| 1219 | PcwCloseInstance@4 | |
| 1220 | PcwCreateInstance@20 | |
| 1221 | PcwRegister@8 | |
| 1222 | PcwUnregister@4 | |
| 1223 | PfFileInfoNotify@4 | |
| 1224 | PfxFindPrefix@8 | |
| 1225 | PfxInitialize@4 | |
| 1226 | PfxInsertPrefix@12 | |
| 1227 | PfxRemovePrefix@8 | |
| 1228 | PoCallDriver@8 | |
| 1229 | PoCancelDeviceNotify@4 | |
| 1230 | PoClearPowerRequest@8 | |
| 1231 | PoCreatePowerRequest@12 | |
| 1232 | PoDeletePowerRequest@4 | |
| 1233 | PoDisableSleepStates@12 | |
| 1234 | PoEndDeviceBusy@4 | |
| 1235 | PoGetSystemWake@4 | |
| 1236 | PoQueryWatchdogTime@8 | |
| 1237 | PoQueueShutdownWorkItem@4 | |
| 1238 | PoReenableSleepStates@4 | |
| 1239 | PoRegisterDeviceForIdleDetection@16 | |
| 1240 | PoRegisterDeviceNotify@24 | |
| 1241 | PoRegisterPowerSettingCallback@20 | |
| 1242 | PoRegisterSystemState@8 | |
| 1243 | PoRequestPowerIrp@24 | |
| 1244 | PoRequestShutdownEvent@4 | |
| 1245 | PoSetDeviceBusyEx@4 | |
| 1246 | PoSetFixedWakeSource@4 | |
| 1247 | PoSetHiberRange@20 | |
| 1248 | PoSetPowerRequest@8 | |
| 1249 | PoSetPowerState@12 | |
| 1250 | PoSetSystemState@4 | |
| 1251 | PoSetSystemWake@4 | |
| 1252 | PoShutdownBugCheck@4 | |
| 1253 | PoStartDeviceBusy@4 | |
| 1254 | PoStartNextPowerIrp@4 | |
| 1255 | PoUnregisterPowerSettingCallback@4 | |
| 1256 | PoUnregisterSystemState@4 | |
| 1257 | PoUserShutdownInitiated@0 | |
| 1258 | ProbeForRead@12 | |
| 1259 | ProbeForWrite@12 | |
| 1260 | PsCreateSystemProcess@12 | |
| 1261 | PsAcquireProcessExitSynchronization@4 | |
| 1262 | PsAssignImpersonationToken@8 | |
| 1263 | PsChargePoolQuota@12 | |
| 1264 | PsChargeProcessCpuCycles@12 | |
| 1265 | PsChargeProcessNonPagedPoolQuota@8 | |
| 1266 | PsChargeProcessPagedPoolQuota@8 | |
| 1267 | PsChargeProcessPoolQuota@12 | |
| 1268 | PsCreateSystemThread@28 | |
| 1269 | PsDereferenceImpersonationToken@4 | |
| 1270 | PsDereferencePrimaryToken@4 | |
| 1271 | PsDisableImpersonation@8 | |
| 1272 | PsEnterPriorityRegion@0 | |
| 1273 | PsEstablishWin32Callouts@4 | |
| 1274 | PsGetContextThread@12 | |
| 1275 | PsGetCurrentProcess@0 | |
| 1276 | PsGetCurrentProcessId@0 | |
| 1277 | PsGetCurrentProcessSessionId@0 | |
| 1278 | PsGetCurrentProcessWin32Process@0 | |
| 1279 | PsGetCurrentThread@0 | |
| 1280 | PsGetCurrentThreadId@0 | |
| 1281 | PsGetCurrentThreadPreviousMode@0 | |
| 1282 | PsGetCurrentThreadProcess@0 | |
| 1283 | PsGetCurrentThreadProcessId@0 | |
| 1284 | PsGetCurrentThreadStackBase@0 | |
| 1285 | PsGetCurrentThreadStackLimit@0 | |
| 1286 | PsGetCurrentThreadTeb@0 | |
| 1287 | PsGetCurrentThreadWin32Thread@0 | |
| 1288 | PsGetCurrentThreadWin32ThreadAndEnterCriticalRegion@4 | |
| 1289 | PsGetJobLock@4 | |
| 1290 | PsGetJobSessionId@4 | |
| 1291 | PsGetJobUIRestrictionsClass@4 | |
| 1292 | PsGetProcessCreateTimeQuadPart@4 | |
| 1293 | PsGetProcessDebugPort@4 | |
| 1294 | PsGetProcessExitProcessCalled@4 | |
| 1295 | PsGetProcessExitStatus@4 | |
| 1296 | PsGetProcessExitTime@0 | |
| 1297 | PsGetProcessId@4 | |
| 1298 | PsGetProcessImageFileName@4 | |
| 1299 | PsGetProcessInheritedFromUniqueProcessId@4 | |
| 1300 | PsGetProcessJob@4 | |
| 1301 | PsGetProcessPeb@4 | |
| 1302 | PsGetProcessPriorityClass@4 | |
| 1303 | PsGetProcessSectionBaseAddress@4 | |
| 1304 | PsGetProcessSecurityPort@4 | |
| 1305 | PsGetProcessSessionId@4 | |
| 1306 | PsGetProcessSessionIdEx@4 | |
| 1307 | PsGetProcessWin32Process@4 | |
| 1308 | PsGetProcessWin32WindowStation@4 | |
| 1309 | PsGetThreadFreezeCount@4 | |
| 1310 | PsGetThreadHardErrorsAreDisabled@4 | |
| 1311 | PsGetThreadId@4 | |
| 1312 | PsGetThreadProcess@4 | |
| 1313 | PsGetThreadProcessId@4 | |
| 1314 | PsGetThreadSessionId@4 | |
| 1315 | PsGetThreadTeb@4 | |
| 1316 | PsGetThreadWin32Thread@4 | |
| 1317 | PsGetVersion@16 | |
| 1318 | PsImpersonateClient@20 | |
| 1319 | PsInitialSystemProcess DATA | |
| 1320 | PsIsCurrentThreadPrefetching@0 | |
| 1321 | PsIsProcessBeingDebugged@4 | |
| 1322 | PsIsProtectedProcess@4 | |
| 1323 | PsIsSystemProcess@4 | |
| 1324 | PsIsSystemThread@4 | |
| 1325 | PsIsThreadImpersonating@4 | |
| 1326 | PsIsThreadTerminating@4 | |
| 1327 | PsJobType DATA | |
| 1328 | PsLeavePriorityRegion@0 | |
| 1329 | PsLookupProcessByProcessId@8 | |
| 1330 | PsLookupProcessThreadByCid@12 | |
| 1331 | PsLookupThreadByThreadId@8 | |
| 1332 | PsProcessType DATA | |
| 1333 | PsQueryProcessExceptionFlags@12 | |
| 1334 | PsReferenceImpersonationToken@16 | |
| 1335 | PsReferencePrimaryToken@4 | |
| 1336 | PsReferenceProcessFilePointer@8 | |
| 1337 | PsReleaseProcessExitSynchronization@4 | |
| 1338 | PsRemoveCreateThreadNotifyRoutine@4 | |
| 1339 | PsRemoveLoadImageNotifyRoutine@4 | |
| 1340 | PsRestoreImpersonation@8 | |
| 1341 | PsResumeProcess@4 | |
| 1342 | PsReturnPoolQuota@12 | |
| 1343 | PsReturnProcessNonPagedPoolQuota@8 | |
| 1344 | PsReturnProcessPagedPoolQuota@8 | |
| 1345 | PsRevertThreadToSelf@4 | |
| 1346 | PsRevertToSelf@0 | |
| 1347 | PsSetContextThread@12 | |
| 1348 | PsSetCreateProcessNotifyRoutine@8 | |
| 1349 | PsSetCreateProcessNotifyRoutineEx@8 | |
| 1350 | PsSetCreateThreadNotifyRoutine@4 | |
| 1351 | PsSetCurrentThreadPrefetching@4 | |
| 1352 | PsSetJobUIRestrictionsClass@8 | |
| 1353 | PsSetLegoNotifyRoutine@4 | |
| 1354 | PsSetLoadImageNotifyRoutine@4 | |
| 1355 | PsSetProcessPriorityByClass@8 | |
| 1356 | PsSetProcessPriorityClass@8 | |
| 1357 | PsSetProcessSecurityPort@8 | |
| 1358 | PsSetProcessWin32Process@12 | |
| 1359 | PsSetProcessWindowStation@8 | |
| 1360 | PsSetThreadHardErrorsAreDisabled@8 | |
| 1361 | PsSetThreadWin32Thread@12 | |
| 1362 | PsSuspendProcess@4 | |
| 1363 | PsTerminateSystemThread@4 | |
| 1364 | PsThreadType DATA | |
| 1365 | PsUILanguageComitted DATA | |
| 1366 | PsWrapApcWow64Thread@8 | |
| 1367 | READ_REGISTER_BUFFER_UCHAR@12 | |
| 1368 | READ_REGISTER_BUFFER_ULONG@12 | |
| 1369 | READ_REGISTER_BUFFER_USHORT@12 | |
| 1370 | READ_REGISTER_UCHAR@4 | |
| 1371 | READ_REGISTER_ULONG@4 | |
| 1372 | READ_REGISTER_USHORT@4 | |
| 1373 | RtlAbsoluteToSelfRelativeSD@12 | |
| 1374 | RtlAddAccessAllowedAce@16 | |
| 1375 | RtlAddAccessAllowedAceEx@20 | |
| 1376 | RtlAddAce@20 | |
| 1377 | RtlAddAtomToAtomTable@12 | |
| 1378 | RtlAddRange@36 | |
| 1379 | RtlAllocateHeap@12 | |
| 1380 | RtlAnsiCharToUnicodeChar@4 | |
| 1381 | RtlAnsiStringToUnicodeSize@4 | |
| 1382 | RtlAnsiStringToUnicodeString@12 | |
| 1383 | RtlAppendAsciizToString@8 | |
| 1384 | RtlAppendStringToString@8 | |
| 1385 | RtlAppendUnicodeStringToString@8 | |
| 1386 | RtlAppendUnicodeToString@8 | |
| 1387 | RtlAreAllAccessesGranted@8 | |
| 1388 | RtlAreAnyAccessesGranted@8 | |
| 1389 | RtlAreBitsClear@12 | |
| 1390 | RtlAreBitsSet@12 | |
| 1391 | RtlAssert@16 | |
| 1392 | RtlCaptureContext@4 | |
| 1393 | RtlCaptureStackBackTrace@16 | |
| 1394 | RtlCharToInteger@12 | |
| 1395 | RtlCheckRegistryKey@8 | |
| 1396 | RtlClearAllBits@4 | |
| 1397 | RtlClearBit@8 | |
| 1398 | RtlClearBits@12 | |
| 1399 | RtlCmDecodeMemIoResource@8 | |
| 1400 | RtlCmEncodeMemIoResource@24 | |
| 1401 | RtlCompareAltitudes@8 | |
| 1402 | RtlCompareMemory@12 | |
| 1403 | RtlCompareMemoryUlong@12 | |
| 1404 | RtlCompareString@12 | |
| 1405 | RtlCompareUnicodeString@12 | |
| 1406 | RtlCompareUnicodeStrings@20 | |
| 1407 | RtlCompressBuffer@32 | |
| 1408 | RtlCompressChunks@28 | |
| 1409 | RtlComputeCrc32@12 | |
| 1410 | RtlContractHashTable@4 | |
| 1411 | RtlConvertLongToLargeInteger@4 | |
| 1412 | RtlConvertSidToUnicodeString@12 | |
| 1413 | RtlConvertUlongToLargeInteger@4 | |
| 1414 | RtlCopyLuid@8 | |
| 1415 | RtlCopyLuidAndAttributesArray@12 | |
| 1416 | RtlCopyRangeList@8 | |
| 1417 | RtlCopySid@12 | |
| 1418 | RtlCopySidAndAttributesArray@28 | |
| 1419 | RtlCopyString@8 | |
| 1420 | RtlCopyUnicodeString@8 | |
| 1421 | RtlCreateAcl@12 | |
| 1422 | RtlCreateAtomTable@8 | |
| 1423 | RtlCreateHashTable@12 | |
| 1424 | RtlCreateHeap@24 | |
| 1425 | RtlCreateRegistryKey@8 | |
| 1426 | RtlCreateSecurityDescriptor@8 | |
| 1427 | RtlCreateSystemVolumeInformationFolder@4 | |
| 1428 | RtlCreateUnicodeString@8 | |
| 1429 | RtlCustomCPToUnicodeN@24 | |
| 1430 | RtlDecompressBuffer@24 | |
| 1431 | RtlDecompressChunks@28 | |
| 1432 | RtlDecompressFragment@32 | |
| 1433 | RtlDelete@4 | |
| 1434 | RtlDeleteAce@8 | |
| 1435 | RtlDeleteAtomFromAtomTable@8 | |
| 1436 | RtlDeleteElementGenericTable@8 | |
| 1437 | RtlDeleteElementGenericTableAvl@8 | |
| 1438 | RtlDeleteHashTable@4 | |
| 1439 | RtlDeleteNoSplay@8 | |
| 1440 | RtlDeleteOwnersRanges@8 | |
| 1441 | RtlDeleteRange@24 | |
| 1442 | RtlDeleteRegistryValue@12 | |
| 1443 | RtlDescribeChunk@20 | |
| 1444 | RtlDestroyAtomTable@4 | |
| 1445 | RtlDestroyHeap@4 | |
| 1446 | RtlDowncaseUnicodeChar@4 | |
| 1447 | RtlDowncaseUnicodeString@12 | |
| 1448 | RtlDuplicateUnicodeString@12 | |
| 1449 | RtlEmptyAtomTable@8 | |
| 1450 | RtlEndEnumerationHashTable@8 | |
| 1451 | RtlEndWeakEnumerationHashTable@8 | |
| 1452 | RtlEnlargedIntegerMultiply@8 | |
| 1453 | RtlEnlargedUnsignedDivide@16 | |
| 1454 | RtlEnlargedUnsignedMultiply@8 | |
| 1455 | RtlEnumerateEntryHashTable@8 | |
| 1456 | RtlEnumerateGenericTable@8 | |
| 1457 | RtlEnumerateGenericTableAvl@8 | |
| 1458 | RtlEnumerateGenericTableLikeADirectory@28 | |
| 1459 | RtlEnumerateGenericTableWithoutSplaying@8 | |
| 1460 | RtlEnumerateGenericTableWithoutSplayingAvl@8 | |
| 1461 | RtlEqualLuid@8 | |
| 1462 | RtlEqualSid@8 | |
| 1463 | RtlEqualString@12 | |
| 1464 | RtlEqualUnicodeString@12 | |
| 1465 | RtlEthernetAddressToStringA@8 | |
| 1466 | RtlEthernetAddressToStringW@8 | |
| 1467 | RtlEthernetStringToAddressA@12 | |
| 1468 | RtlEthernetStringToAddressW@12 | |
| 1469 | RtlExpandHashTable@4 | |
| 1470 | RtlExtendedIntegerMultiply@12 | |
| 1471 | RtlExtendedLargeIntegerDivide@16 | |
| 1472 | RtlExtendedMagicDivide@20 | |
| 1473 | RtlFillMemory@12 | |
| 1474 | RtlFillMemoryUlong@12 | |
| 1475 | RtlFillMemoryUlonglong@16 | |
| 1476 | RtlFindAceByType@12 | |
| 1477 | RtlFindClearBits@12 | |
| 1478 | RtlFindClearBitsAndSet@12 | |
| 1479 | RtlFindClearRuns@16 | |
| 1480 | RtlFindClosestEncodableLength@12 | |
| 1481 | RtlFindFirstRunClear@8 | |
| 1482 | RtlFindLastBackwardRunClear@12 | |
| 1483 | RtlFindLeastSignificantBit@8 | |
| 1484 | RtlFindLongestRunClear@8 | |
| 1485 | RtlFindMessage@20 | |
| 1486 | RtlFindMostSignificantBit@8 | |
| 1487 | RtlFindNextForwardRunClear@12 | |
| 1488 | RtlFindRange@48 | |
| 1489 | RtlFindSetBits@12 | |
| 1490 | RtlFindSetBitsAndClear@12 | |
| 1491 | RtlFindUnicodePrefix@12 | |
| 1492 | RtlFormatCurrentUserKeyPath@4 | |
| 1493 | RtlFormatMessage@36 | |
| 1494 | RtlFreeAnsiString@4 | |
| 1495 | RtlFreeHeap@12 | |
| 1496 | RtlFreeOemString@4 | |
| 1497 | RtlFreeRangeList@4 | |
| 1498 | RtlFreeUnicodeString@4 | |
| 1499 | RtlGUIDFromString@8 | |
| 1500 | RtlGenerate8dot3Name@16 | |
| 1501 | RtlGetAce@12 | |
| 1502 | RtlGetCallersAddress@8 | |
| 1503 | RtlGetCompressionWorkSpaceSize@12 | |
| 1504 | RtlGetDaclSecurityDescriptor@16 | |
| 1505 | RtlGetDefaultCodePage@8 | |
| 1506 | RtlGetElementGenericTable@8 | |
| 1507 | RtlGetElementGenericTableAvl@8 | |
| 1508 | RtlGetEnabledExtendedFeatures@8 | |
| 1509 | RtlGetFirstRange@12 | |
| 1510 | RtlGetGroupSecurityDescriptor@12 | |
| 1511 | RtlGetIntegerAtom@8 | |
| 1512 | RtlGetLastRange@12 | |
| 1513 | RtlGetNextEntryHashTable@8 | |
| 1514 | RtlGetNextRange@12 | |
| 1515 | RtlGetNtGlobalFlags@0 | |
| 1516 | RtlGetOwnerSecurityDescriptor@12 | |
| 1517 | RtlGetProductInfo@20 | |
| 1518 | RtlGetSaclSecurityDescriptor@16 | |
| 1519 | RtlGetSetBootStatusData@24 | |
| 1520 | RtlGetThreadLangIdByIndex@16 | |
| 1521 | RtlGetVersion@4 | |
| 1522 | RtlHashUnicodeString@16 | |
| 1523 | RtlIdnToAscii@20 | |
| 1524 | RtlIdnToNameprepUnicode@20 | |
| 1525 | RtlIdnToUnicode@20 | |
| 1526 | RtlImageDirectoryEntryToData@16 | |
| 1527 | RtlImageNtHeader@4 | |
| 1528 | RtlInitAnsiString@8 | |
| 1529 | RtlInitAnsiStringEx@8 | |
| 1530 | RtlInitCodePageTable@8 | |
| 1531 | RtlInitEnumerationHashTable@8 | |
| 1532 | RtlInitString@8 | |
| 1533 | RtlInitUnicodeString@8 | |
| 1534 | RtlInitUnicodeStringEx@8 | |
| 1535 | RtlInitWeakEnumerationHashTable@8 | |
| 1536 | RtlInitializeBitMap@12 | |
| 1537 | RtlInitializeGenericTable@20 | |
| 1538 | RtlInitializeGenericTableAvl@20 | |
| 1539 | RtlInitializeRangeList@4 | |
| 1540 | RtlInitializeSid@12 | |
| 1541 | RtlInitializeUnicodePrefix@4 | |
| 1542 | RtlInsertElementGenericTable@16 | |
| 1543 | RtlInsertElementGenericTableAvl@16 | |
| 1544 | RtlInsertElementGenericTableFull@24 | |
| 1545 | RtlInsertElementGenericTableFullAvl@24 | |
| 1546 | RtlInsertEntryHashTable@16 | |
| 1547 | RtlInsertUnicodePrefix@12 | |
| 1548 | RtlInt64ToUnicodeString@16 | |
| 1549 | RtlIntegerToChar@16 | |
| 1550 | RtlIntegerToUnicode@16 | |
| 1551 | RtlIntegerToUnicodeString@12 | |
| 1552 | RtlInvertRangeList@8 | |
| 1553 | RtlInvertRangeListEx@20 | |
| 1554 | RtlIoDecodeMemIoResource@16 | |
| 1555 | RtlIoEncodeMemIoResource@40 | |
| 1556 | RtlIpv4AddressToStringA@8 | |
| 1557 | RtlIpv4AddressToStringExA@16 | |
| 1558 | RtlIpv4AddressToStringExW@16 | |
| 1559 | RtlIpv4AddressToStringW@8 | |
| 1560 | RtlIpv4StringToAddressA@16 | |
| 1561 | RtlIpv4StringToAddressExA@16 | |
| 1562 | RtlIpv4StringToAddressExW@16 | |
| 1563 | RtlIpv4StringToAddressW@16 | |
| 1564 | RtlIpv6AddressToStringA@8 | |
| 1565 | RtlIpv6AddressToStringExA@20 | |
| 1566 | RtlIpv6AddressToStringExW@20 | |
| 1567 | RtlIpv6AddressToStringW@8 | |
| 1568 | RtlIpv6StringToAddressA@12 | |
| 1569 | RtlIpv6StringToAddressExA@16 | |
| 1570 | RtlIpv6StringToAddressExW@16 | |
| 1571 | RtlIpv6StringToAddressW@12 | |
| 1572 | RtlIsGenericTableEmpty@4 | |
| 1573 | RtlIsGenericTableEmptyAvl@4 | |
| 1574 | RtlIsNameLegalDOS8Dot3@12 | |
| 1575 | RtlIsNormalizedString@16 | |
| 1576 | RtlIsNtDdiVersionAvailable@4 | |
| 1577 | RtlIsRangeAvailable@40 | |
| 1578 | RtlIsServicePackVersionInstalled@4 | |
| 1579 | RtlIsValidOemCharacter@4 | |
| 1580 | RtlLargeIntegerAdd@16 | |
| 1581 | RtlLargeIntegerArithmeticShift@12 | |
| 1582 | RtlLargeIntegerDivide@20 | |
| 1583 | RtlLargeIntegerNegate@8 | |
| 1584 | RtlLargeIntegerShiftLeft@12 | |
| 1585 | RtlLargeIntegerShiftRight@12 | |
| 1586 | RtlLargeIntegerSubtract@16 | |
| 1587 | RtlLengthRequiredSid@4 | |
| 1588 | RtlLengthSecurityDescriptor@4 | |
| 1589 | RtlLengthSid@4 | |
| 1590 | RtlLoadString@32 | |
| 1591 | RtlLocalTimeToSystemTime@8 | |
| 1592 | RtlLockBootStatusData@4 | |
| 1593 | RtlLookupAtomInAtomTable@12 | |
| 1594 | RtlLookupElementGenericTable@8 | |
| 1595 | RtlLookupElementGenericTableAvl@8 | |
| 1596 | RtlLookupElementGenericTableFull@16 | |
| 1597 | RtlLookupElementGenericTableFullAvl@16 | |
| 1598 | RtlLookupEntryHashTable@12 | |
| 1599 | RtlLookupFirstMatchingElementGenericTableAvl@12 | |
| 1600 | RtlMapGenericMask@8 | |
| 1601 | RtlMapSecurityErrorToNtStatus@4 | |
| 1602 | RtlMergeRangeLists@16 | |
| 1603 | RtlMoveMemory@12 | |
| 1604 | RtlMultiByteToUnicodeN@20 | |
| 1605 | RtlMultiByteToUnicodeSize@12 | |
| 1606 | RtlNextUnicodePrefix@8 | |
| 1607 | RtlNormalizeString@20 | |
| 1608 | RtlNtStatusToDosError@4 | |
| 1609 | RtlNtStatusToDosErrorNoTeb@4 | |
| 1610 | RtlNumberGenericTableElements@4 | |
| 1611 | RtlNumberGenericTableElementsAvl@4 | |
| 1612 | RtlNumberOfClearBits@4 | |
| 1613 | RtlNumberOfSetBits@4 | |
| 1614 | RtlNumberOfSetBitsUlongPtr@4 | |
| 1615 | RtlOemStringToCountedUnicodeString@12 | |
| 1616 | RtlOemStringToUnicodeSize@4 | |
| 1617 | RtlOemStringToUnicodeString@12 | |
| 1618 | RtlOemToUnicodeN@20 | |
| 1619 | RtlOwnerAcesPresent@4 | |
| 1620 | RtlPinAtomInAtomTable@8 | |
| 1621 | RtlPrefixString@12 | |
| 1622 | RtlPrefixUnicodeString@12 | |
| 1623 | RtlQueryAtomInAtomTable@24 | |
| 1624 | RtlQueryDynamicTimeZoneInformation@4 | |
| 1625 | RtlQueryElevationFlags@4 | |
| 1626 | RtlQueryModuleInformation@12 | |
| 1627 | RtlQueryRegistryValues@20 | |
| 1628 | RtlQueryTimeZoneInformation@4 | |
| 1629 | RtlRaiseException@24 | |
| 1630 | RtlRandom@4 | |
| 1631 | RtlRandomEx@4 | |
| 1632 | RtlRealPredecessor@4 | |
| 1633 | RtlRealSuccessor@4 | |
| 1634 | RtlRemoveEntryHashTable@12 | |
| 1635 | RtlRemoveUnicodePrefix@8 | |
| 1636 | RtlReplaceSidInSd@16 | |
| 1637 | RtlReserveChunk@20 | |
| 1638 | RtlRunOnceBeginInitialize@12 | |
| 1639 | RtlRunOnceComplete@12 | |
| 1640 | RtlRunOnceExecuteOnce@16 | |
| 1641 | RtlRunOnceInitialize@4 | |
| 1642 | RtlSecondsSince1970ToTime@8 | |
| 1643 | RtlSecondsSince1980ToTime@8 | |
| 1644 | RtlSelfRelativeToAbsoluteSD2@8 | |
| 1645 | RtlSelfRelativeToAbsoluteSD@44 | |
| 1646 | RtlSetAllBits@4 | |
| 1647 | RtlSetBit@8 | |
| 1648 | RtlSetBits@12 | |
| 1649 | RtlSetDaclSecurityDescriptor@16 | |
| 1650 | RtlSetDynamicTimeZoneInformation@4 | |
| 1651 | RtlSetGroupSecurityDescriptor@12 | |
| 1652 | RtlSetOwnerSecurityDescriptor@12 | |
| 1653 | RtlSetSaclSecurityDescriptor@16 | |
| 1654 | RtlSetTimeZoneInformation@4 | |
| 1655 | RtlSidHashInitialize@12 | |
| 1656 | RtlSidHashLookup@8 | |
| 1657 | RtlSizeHeap@12 | |
| 1658 | RtlSplay@4 | |
| 1659 | RtlStringFromGUID@8 | |
| 1660 | RtlSubAuthorityCountSid@4 | |
| 1661 | RtlSubAuthoritySid@8 | |
| 1662 | RtlSubtreePredecessor@4 | |
| 1663 | RtlSubtreeSuccessor@4 | |
| 1664 | RtlSystemTimeToLocalTime@8 | |
| 1665 | RtlTestBit@8 | |
| 1666 | RtlTimeFieldsToTime@8 | |
| 1667 | RtlTimeToElapsedTimeFields@8 | |
| 1668 | RtlTimeToSecondsSince1970@8 | |
| 1669 | RtlTimeToSecondsSince1980@8 | |
| 1670 | RtlTimeToTimeFields@8 | |
| 1671 | RtlTraceDatabaseAdd@16 | |
| 1672 | RtlTraceDatabaseCreate@20 | |
| 1673 | RtlTraceDatabaseDestroy@4 | |
| 1674 | RtlTraceDatabaseEnumerate@12 | |
| 1675 | RtlTraceDatabaseFind@16 | |
| 1676 | RtlTraceDatabaseLock@4 | |
| 1677 | RtlTraceDatabaseUnlock@4 | |
| 1678 | RtlTraceDatabaseValidate@4 | |
| 1679 | RtlUTF8ToUnicodeN@20 | |
| 1680 | RtlUnicodeStringToAnsiSize@4 | |
| 1681 | RtlUnicodeStringToAnsiString@12 | |
| 1682 | RtlUnicodeStringToCountedOemString@12 | |
| 1683 | RtlUnicodeStringToInteger@12 | |
| 1684 | RtlUnicodeStringToOemSize@4 | |
| 1685 | RtlUnicodeStringToOemString@12 | |
| 1686 | RtlUnicodeToCustomCPN@24 | |
| 1687 | RtlUnicodeToMultiByteN@20 | |
| 1688 | RtlUnicodeToMultiByteSize@12 | |
| 1689 | RtlUnicodeToOemN@20 | |
| 1690 | RtlUnicodeToUTF8N@20 | |
| 1691 | RtlUnlockBootStatusData@4 | |
| 1692 | RtlUnwind@16 | |
| 1693 | RtlUpcaseUnicodeChar@4 | |
| 1694 | RtlUpcaseUnicodeString@12 | |
| 1695 | RtlUpcaseUnicodeStringToAnsiString@12 | |
| 1696 | RtlUpcaseUnicodeStringToCountedOemString@12 | |
| 1697 | RtlUpcaseUnicodeStringToOemString@12 | |
| 1698 | RtlUpcaseUnicodeToCustomCPN@24 | |
| 1699 | RtlUpcaseUnicodeToMultiByteN@20 | |
| 1700 | RtlUpcaseUnicodeToOemN@20 | |
| 1701 | RtlUpperChar@4 | |
| 1702 | RtlUpperString@8 | |
| 1703 | RtlValidRelativeSecurityDescriptor@12 | |
| 1704 | RtlValidSecurityDescriptor@4 | |
| 1705 | RtlValidSid@4 | |
| 1706 | RtlValidateUnicodeString@8 | |
| 1707 | RtlVerifyVersionInfo@16 | |
| 1708 | RtlVolumeDeviceToDosName@8 | |
| 1709 | RtlWalkFrameChain@12 | |
| 1710 | RtlWeaklyEnumerateEntryHashTable@8 | |
| 1711 | RtlWriteRegistryValue@24 | |
| 1712 | RtlZeroHeap@8 | |
| 1713 | RtlZeroMemory@8 | |
| 1714 | RtlxAnsiStringToUnicodeSize@4 | |
| 1715 | RtlxOemStringToUnicodeSize@4 | |
| 1716 | RtlxUnicodeStringToAnsiSize@4 | |
| 1717 | RtlxUnicodeStringToOemSize@4 | |
| 1718 | SeAccessCheck@40 | |
| 1719 | SeAccessCheckEx@24 | |
| 1720 | SeAccessCheckFromState@40 | |
| 1721 | SeAccessCheckWithHint@44 | |
| 1722 | SeAppendPrivileges@8 | |
| 1723 | SeAssignSecurity@28 | |
| 1724 | SeAssignSecurityEx@36 | |
| 1725 | SeAuditHardLinkCreation@12 | |
| 1726 | SeAuditHardLinkCreationWithTransaction@16 | |
| 1727 | SeAuditTransactionStateChange@12 | |
| 1728 | SeAuditingAnyFileEventsWithContext@8 | |
| 1729 | SeAuditingFileEvents@8 | |
| 1730 | SeAuditingFileEventsWithContext@12 | |
| 1731 | SeAuditingFileOrGlobalEvents@12 | |
| 1732 | SeAuditingHardLinkEvents@8 | |
| 1733 | SeAuditingHardLinkEventsWithContext@12 | |
| 1734 | SeCaptureSecurityDescriptor@20 | |
| 1735 | SeCaptureSubjectContext@4 | |
| 1736 | SeCaptureSubjectContextEx@12 | |
| 1737 | SeCloseObjectAuditAlarm@12 | |
| 1738 | SeCloseObjectAuditAlarmForNonObObject@16 | |
| 1739 | SeComputeAutoInheritByObjectType@12 | |
| 1740 | SeCreateAccessState@16 | |
| 1741 | SeCreateAccessStateEx@24 | |
| 1742 | SeCreateClientSecurity@16 | |
| 1743 | SeCreateClientSecurityFromSubjectContext@16 | |
| 1744 | SeDeassignSecurity@4 | |
| 1745 | SeDeleteAccessState@4 | |
| 1746 | SeDeleteObjectAuditAlarm@8 | |
| 1747 | SeDeleteObjectAuditAlarmWithTransaction@12 | |
| 1748 | SeExamineSacl@24 | |
| 1749 | SeExports DATA | |
| 1750 | SeFilterToken@24 | |
| 1751 | SeFreePrivileges@4 | |
| 1752 | SeGetLinkedToken@12 | |
| 1753 | SeImpersonateClient@8 | |
| 1754 | SeImpersonateClientEx@8 | |
| 1755 | SeLocateProcessImageName@8 | |
| 1756 | SeLockSubjectContext@4 | |
| 1757 | SeMarkLogonSessionForTerminationNotification@4 | |
| 1758 | SeOpenObjectAuditAlarm@36 | |
| 1759 | SeOpenObjectAuditAlarmForNonObObject@44 | |
| 1760 | SeOpenObjectAuditAlarmWithTransaction@40 | |
| 1761 | SeOpenObjectForDeleteAuditAlarm@36 | |
| 1762 | SeOpenObjectForDeleteAuditAlarmWithTransaction@40 | |
| 1763 | SePrivilegeCheck@12 | |
| 1764 | SePrivilegeObjectAuditAlarm@24 | |
| 1765 | SePublicDefaultDacl DATA | |
| 1766 | SeQueryAuthenticationIdToken@8 | |
| 1767 | SeQueryInformationToken@12 | |
| 1768 | SeQuerySecurityAttributesToken@24 | |
| 1769 | SeQuerySecurityDescriptorInfo@16 | |
| 1770 | SeQuerySessionIdToken@8 | |
| 1771 | SeRegisterLogonSessionTerminatedRoutine@4 | |
| 1772 | SeReleaseSecurityDescriptor@12 | |
| 1773 | SeReleaseSubjectContext@4 | |
| 1774 | SeReportSecurityEvent@16 | |
| 1775 | SeReportSecurityEventWithSubCategory@20 | |
| 1776 | SeSetAccessStateGenericMapping@8 | |
| 1777 | SeSetAuditParameter@16 | |
| 1778 | SeSetSecurityAttributesToken@16 | |
| 1779 | SeSetSecurityDescriptorInfo@24 | |
| 1780 | SeSetSecurityDescriptorInfoEx@28 | |
| 1781 | SeSinglePrivilegeCheck@12 | |
| 1782 | SeSrpAccessCheck@24 | |
| 1783 | SeSystemDefaultDacl DATA | |
| 1784 | SeTokenImpersonationLevel@4 | |
| 1785 | SeTokenIsAdmin@4 | |
| 1786 | SeTokenIsRestricted@4 | |
| 1787 | SeTokenIsWriteRestricted@4 | |
| 1788 | SeTokenObjectType DATA | |
| 1789 | SeTokenType@4 | |
| 1790 | SeUnlockSubjectContext@4 | |
| 1791 | SeUnregisterLogonSessionTerminatedRoutine@4 | |
| 1792 | SeValidSecurityDescriptor@8 | |
| 1793 | TmCancelPropagationRequest@4 | |
| 1794 | TmCommitComplete@8 | |
| 1795 | TmCommitEnlistment@8 | |
| 1796 | TmCommitTransaction@8 | |
| 1797 | TmCreateEnlistment@36 | |
| 1798 | TmCurrentTransaction@4 | |
| 1799 | TmDereferenceEnlistmentKey@8 | |
| 1800 | TmEnableCallbacks@12 | |
| 1801 | TmEndPropagationRequest@4 | |
| 1802 | TmEnlistmentObjectType DATA | |
| 1803 | TmFreezeTransactions@12 | |
| 1804 | TmGetTransactionId@8 | |
| 1805 | TmInitSystem@0 | |
| 1806 | TmInitSystemPhase2@0 | |
| 1807 | TmInitializeResourceManager@20 | |
| 1808 | TmInitializeTransaction@36 | |
| 1809 | TmIsTransactionActive@4 | |
| 1810 | TmPrePrepareComplete@8 | |
| 1811 | TmPrePrepareEnlistment@8 | |
| 1812 | TmPrepareComplete@8 | |
| 1813 | TmPrepareEnlistment@8 | |
| 1814 | TmPropagationComplete@16 | |
| 1815 | TmPropagationFailed@12 | |
| 1816 | TmReadOnlyEnlistment@8 | |
| 1817 | TmRecoverEnlistment@8 | |
| 1818 | TmRecoverResourceManager@4 | |
| 1819 | TmRecoverTransactionManager@8 | |
| 1820 | TmReferenceEnlistmentKey@8 | |
| 1821 | TmRequestOutcomeEnlistment@8 | |
| 1822 | TmResourceManagerObjectType DATA | |
| 1823 | TmRollbackComplete@8 | |
| 1824 | TmRollbackEnlistment@8 | |
| 1825 | TmRollbackTransaction@8 | |
| 1826 | TmSetCurrentTransaction@4 | |
| 1827 | TmThawTransactions@0 | |
| 1828 | TmTransactionManagerObjectType DATA | |
| 1829 | TmTransactionObjectType DATA | |
| 1830 | TmpIsKTMCommitCoordinator@4 | |
| 1831 | VerSetConditionMask@16 | |
| 1832 | VfFailDeviceNode@0 | |
| 1833 | VfFailDriver@0 | |
| 1834 | VfFailSystemBIOS@0 | |
| 1835 | VfIsVerificationEnabled@8 | |
| 1836 | WRITE_REGISTER_BUFFER_UCHAR@12 | |
| 1837 | WRITE_REGISTER_BUFFER_ULONG@12 | |
| 1838 | WRITE_REGISTER_BUFFER_USHORT@12 | |
| 1839 | WRITE_REGISTER_UCHAR@8 | |
| 1840 | WRITE_REGISTER_ULONG@8 | |
| 1841 | WRITE_REGISTER_USHORT@8 | |
| 1842 | WheaAddErrorSource@8 | |
| 1843 | WheaConfigureErrorSource@8 | |
| 1844 | WheaGetErrorSource@4 | |
| 1845 | WheaInitializeRecordHeader@4 | |
| 1846 | WheaReportHwError@4 | |
| 1847 | WmiQueryTraceInformation@20 | |
| 1848 | WmiTraceMessage | |
| 1849 | WmiTraceMessageVa@24 | |
| 1850 | XIPDispatch@12 | |
| 1851 | ZwAccessCheckAndAuditAlarm@44 | |
| 1852 | ZwAddBootEntry@8 | |
| 1853 | ZwAddDriverEntry@8 | |
| 1854 | ZwAdjustPrivilegesToken@24 | |
| 1855 | ZwAlertThread@4 | |
| 1856 | ZwAllocateLocallyUniqueId@4 | |
| 1857 | ZwAllocateVirtualMemory@24 | |
| 1858 | ZwAlpcAcceptConnectPort@36 | |
| 1859 | ZwAlpcCancelMessage@12 | |
| 1860 | ZwAlpcConnectPort@44 | |
| 1861 | ZwAlpcCreatePort@12 | |
| 1862 | ZwAlpcCreatePortSection@24 | |
| 1863 | ZwAlpcCreateResourceReserve@16 | |
| 1864 | ZwAlpcCreateSectionView@12 | |
| 1865 | ZwAlpcCreateSecurityContext@12 | |
| 1866 | ZwAlpcDeletePortSection@12 | |
| 1867 | ZwAlpcDeleteResourceReserve@12 | |
| 1868 | ZwAlpcDeleteSectionView@12 | |
| 1869 | ZwAlpcDeleteSecurityContext@12 | |
| 1870 | ZwAlpcDisconnectPort@8 | |
| 1871 | ZwAlpcQueryInformation@20 | |
| 1872 | ZwAlpcSendWaitReceivePort@32 | |
| 1873 | ZwAlpcSetInformation@16 | |
| 1874 | ZwAssignProcessToJobObject@8 | |
| 1875 | ZwCancelIoFile@8 | |
| 1876 | ZwCancelTimer@8 | |
| 1877 | ZwClearEvent@4 | |
| 1878 | ZwClose@4 | |
| 1879 | ZwCloseObjectAuditAlarm@12 | |
| 1880 | ZwCommitComplete@8 | |
| 1881 | ZwCommitEnlistment@8 | |
| 1882 | ZwCommitTransaction@8 | |
| 1883 | ZwConnectPort@32 | |
| 1884 | ZwCreateDirectoryObject@12 | |
| 1885 | ZwCreateEnlistment@32 | |
| 1886 | ZwCreateEvent@20 | |
| 1887 | ZwCreateFile@44 | |
| 1888 | ZwCreateIoCompletion@16 | |
| 1889 | ZwCreateJobObject@12 | |
| 1890 | ZwCreateKey@28 | |
| 1891 | ZwCreateKeyTransacted@32 | |
| 1892 | ZwCreateResourceManager@28 | |
| 1893 | ZwCreateSection@28 | |
| 1894 | ZwCreateSymbolicLinkObject@16 | |
| 1895 | ZwCreateTimer@16 | |
| 1896 | ZwCreateTransaction@40 | |
| 1897 | ZwCreateTransactionManager@24 | |
| 1898 | ZwDeleteBootEntry@4 | |
| 1899 | ZwDeleteDriverEntry@4 | |
| 1900 | ZwDeleteFile@4 | |
| 1901 | ZwDeleteKey@4 | |
| 1902 | ZwDeleteValueKey@8 | |
| 1903 | ZwDeviceIoControlFile@40 | |
| 1904 | ZwDisplayString@4 | |
| 1905 | ZwDuplicateObject@28 | |
| 1906 | ZwDuplicateToken@24 | |
| 1907 | ZwEnumerateBootEntries@8 | |
| 1908 | ZwEnumerateDriverEntries@8 | |
| 1909 | ZwEnumerateKey@24 | |
| 1910 | ZwEnumerateTransactionObject@20 | |
| 1911 | ZwEnumerateValueKey@24 | |
| 1912 | ZwFlushBuffersFile@8 | |
| 1913 | ZwFlushInstructionCache@12 | |
| 1914 | ZwFlushKey@4 | |
| 1915 | ZwFlushVirtualMemory@16 | |
| 1916 | ZwFreeVirtualMemory@16 | |
| 1917 | ZwFsControlFile@40 | |
| 1918 | ZwGetNotificationResourceManager@28 | |
| 1919 | ZwImpersonateAnonymousToken@4 | |
| 1920 | ZwInitiatePowerAction@16 | |
| 1921 | ZwIsProcessInJob@8 | |
| 1922 | ZwLoadDriver@4 | |
| 1923 | ZwLoadKey@8 | |
| 1924 | ZwLoadKeyEx@32 | |
| 1925 | ZwLockFile@40 | |
| 1926 | ZwLockProductActivationKeys@8 | |
| 1927 | ZwMakeTemporaryObject@4 | |
| 1928 | ZwMapViewOfSection@40 | |
| 1929 | ZwModifyBootEntry@4 | |
| 1930 | ZwModifyDriverEntry@4 | |
| 1931 | ZwNotifyChangeKey@40 | |
| 1932 | ZwNotifyChangeSession@32 | |
| 1933 | ZwOpenDirectoryObject@12 | |
| 1934 | ZwOpenEnlistment@20 | |
| 1935 | ZwOpenEvent@12 | |
| 1936 | ZwOpenFile@24 | |
| 1937 | ZwOpenJobObject@12 | |
| 1938 | ZwOpenKey@12 | |
| 1939 | ZwOpenKeyEx@16 | |
| 1940 | ZwOpenKeyTransacted@16 | |
| 1941 | ZwOpenKeyTransactedEx@20 | |
| 1942 | ZwOpenProcess@16 | |
| 1943 | ZwOpenProcessToken@12 | |
| 1944 | ZwOpenProcessTokenEx@16 | |
| 1945 | ZwOpenResourceManager@20 | |
| 1946 | ZwOpenSection@12 | |
| 1947 | ZwOpenSession@12 | |
| 1948 | ZwOpenSymbolicLinkObject@12 | |
| 1949 | ZwOpenThread@16 | |
| 1950 | ZwOpenThreadToken@16 | |
| 1951 | ZwOpenThreadTokenEx@20 | |
| 1952 | ZwOpenTimer@12 | |
| 1953 | ZwOpenTransaction@20 | |
| 1954 | ZwOpenTransactionManager@24 | |
| 1955 | ZwPowerInformation@20 | |
| 1956 | ZwPrePrepareComplete@8 | |
| 1957 | ZwPrePrepareEnlistment@8 | |
| 1958 | ZwPrepareComplete@8 | |
| 1959 | ZwPrepareEnlistment@8 | |
| 1960 | ZwPropagationComplete@16 | |
| 1961 | ZwPropagationFailed@12 | |
| 1962 | ZwPulseEvent@8 | |
| 1963 | ZwQueryBootEntryOrder@8 | |
| 1964 | ZwQueryBootOptions@8 | |
| 1965 | ZwQueryDefaultLocale@8 | |
| 1966 | ZwQueryDefaultUILanguage@4 | |
| 1967 | ZwQueryDirectoryFile@44 | |
| 1968 | ZwQueryDirectoryObject@28 | |
| 1969 | ZwQueryDriverEntryOrder@8 | |
| 1970 | ZwQueryEaFile@36 | |
| 1971 | ZwQueryFullAttributesFile@8 | |
| 1972 | ZwQueryInformationEnlistment@20 | |
| 1973 | ZwQueryInformationFile@20 | |
| 1974 | ZwQueryInformationJobObject@20 | |
| 1975 | ZwQueryInformationProcess@20 | |
| 1976 | ZwQueryInformationResourceManager@20 | |
| 1977 | ZwQueryInformationThread@20 | |
| 1978 | ZwQueryInformationToken@20 | |
| 1979 | ZwQueryInformationTransaction@20 | |
| 1980 | ZwQueryInformationTransactionManager@20 | |
| 1981 | ZwQueryInstallUILanguage@4 | |
| 1982 | ZwQueryKey@20 | |
| 1983 | ZwQueryLicenseValue@20 | |
| 1984 | ZwQueryObject@20 | |
| 1985 | ZwQueryQuotaInformationFile@36 | |
| 1986 | ZwQuerySection@20 | |
| 1987 | ZwQuerySecurityAttributesToken@24 | |
| 1988 | ZwQuerySecurityObject@20 | |
| 1989 | ZwQuerySymbolicLinkObject@12 | |
| 1990 | ZwQuerySystemInformation@16 | |
| 1991 | ZwQueryValueKey@24 | |
| 1992 | ZwQueryVirtualMemory@24 | |
| 1993 | ZwQueryVolumeInformationFile@20 | |
| 1994 | ZwReadFile@36 | |
| 1995 | ZwReadOnlyEnlistment@8 | |
| 1996 | ZwRecoverEnlistment@8 | |
| 1997 | ZwRecoverResourceManager@4 | |
| 1998 | ZwRecoverTransactionManager@4 | |
| 1999 | ZwRemoveIoCompletion@20 | |
| 2000 | ZwRemoveIoCompletionEx@24 | |
| 2001 | ZwReplaceKey@12 | |
| 2002 | ZwRequestPort@8 | |
| 2003 | ZwRequestWaitReplyPort@12 | |
| 2004 | ZwResetEvent@8 | |
| 2005 | ZwRestoreKey@12 | |
| 2006 | ZwRollbackComplete@8 | |
| 2007 | ZwRollbackEnlistment@8 | |
| 2008 | ZwRollbackTransaction@8 | |
| 2009 | ZwSaveKey@8 | |
| 2010 | ZwSaveKeyEx@12 | |
| 2011 | ZwSecureConnectPort@36 | |
| 2012 | ZwSetBootEntryOrder@8 | |
| 2013 | ZwSetBootOptions@8 | |
| 2014 | ZwSetDefaultLocale@8 | |
| 2015 | ZwSetDefaultUILanguage@4 | |
| 2016 | ZwSetDriverEntryOrder@8 | |
| 2017 | ZwSetEaFile@16 | |
| 2018 | ZwSetEvent@8 | |
| 2019 | ZwSetInformationEnlistment@16 | |
| 2020 | ZwSetInformationFile@20 | |
| 2021 | ZwSetInformationJobObject@16 | |
| 2022 | ZwSetInformationObject@16 | |
| 2023 | ZwSetInformationProcess@16 | |
| 2024 | ZwSetInformationResourceManager@16 | |
| 2025 | ZwSetInformationThread@16 | |
| 2026 | ZwSetInformationToken@16 | |
| 2027 | ZwSetInformationTransaction@16 | |
| 2028 | ZwSetQuotaInformationFile@16 | |
| 2029 | ZwSetSecurityObject@12 | |
| 2030 | ZwSetSystemInformation@12 | |
| 2031 | ZwSetSystemTime@8 | |
| 2032 | ZwSetTimer@28 | |
| 2033 | ZwSetTimerEx@16 | |
| 2034 | ZwSetValueKey@24 | |
| 2035 | ZwSetVolumeInformationFile@20 | |
| 2036 | ZwTerminateJobObject@8 | |
| 2037 | ZwTerminateProcess@8 | |
| 2038 | ZwTraceEvent@16 | |
| 2039 | ZwTranslateFilePath@16 | |
| 2040 | ZwUnloadDriver@4 | |
| 2041 | ZwUnloadKey@4 | |
| 2042 | ZwUnloadKeyEx@8 | |
| 2043 | ZwUnlockFile@20 | |
| 2044 | ZwUnmapViewOfSection@8 | |
| 2045 | ZwWaitForMultipleObjects@20 | |
| 2046 | ZwWaitForSingleObject@12 | |
| 2047 | ZwWriteFile@36 | |
| 2048 | ZwYieldExecution@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 | |
| 2090 | strlwr == _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 | |
| 2111 | wcslwr == _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 | |
| 2122 | atoi | |
| 2123 | atol | |
| 2124 | bsearch | |
| 2125 | isdigit | |
| 2126 | islower | |
| 2127 | isprint | |
| 2128 | isspace | |
| 2129 | isupper | |
| 2130 | isxdigit | |
| 2131 | mbstowcs | |
| 2132 | mbtowc | |
| 2133 | memchr | |
| 2134 | memcpy | |
| 2135 | memcpy_s | |
| 2136 | memmove | |
| 2137 | memmove_s | |
| 2138 | memset | |
| 2139 | psMUITest DATA | |
| 2140 | qsort | |
| 2141 | rand | |
| 2142 | sprintf | |
| 2143 | sprintf_s | |
| 2144 | srand | |
| 2145 | sscanf_s | |
| 2146 | strcat | |
| 2147 | strcat_s | |
| 2148 | strchr | |
| 2149 | strcmp | |
| 2150 | strcpy | |
| 2151 | strcpy_s | |
| 2152 | strlen | |
| 2153 | strncat | |
| 2154 | strncat_s | |
| 2155 | strncmp | |
| 2156 | strncpy | |
| 2157 | strncpy_s | |
| 2158 | strnlen | |
| 2159 | strrchr | |
| 2160 | strspn | |
| 2161 | strstr | |
| 2162 | strtok_s | |
| 2163 | swprintf | |
| 2164 | swprintf_s | |
| 2165 | swscanf_s | |
| 2166 | tolower | |
| 2167 | toupper | |
| 2168 | towlower | |
| 2169 | towupper | |
| 2170 | vDbgPrintEx@16 | |
| 2171 | vDbgPrintExWithPrefix@20 | |
| 2172 | vsprintf | |
| 2173 | vsprintf_s | |
| 2174 | vswprintf_s | |
| 2175 | wcscat | |
| 2176 | wcscat_s | |
| 2177 | wcschr | |
| 2178 | wcscmp | |
| 2179 | wcscpy | |
| 2180 | wcscpy_s | |
| 2181 | wcscspn | |
| 2182 | wcslen | |
| 2183 | wcsncat | |
| 2184 | wcsncat_s | |
| 2185 | wcsncmp | |
| 2186 | wcsncpy | |
| 2187 | wcsncpy_s | |
| 2188 | wcsnlen | |
| 2189 | wcsrchr | |
| 2190 | wcsspn | |
| 2191 | wcsstr | |
| 2192 | wcstombs | |
| 2193 | wcstoul | |
| 2194 | wctomb |
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 | ; | |
| 6 | LIBRARY "query.dll" | |
| 7 | EXPORTS | |
| 8 | LoadBinaryFilter@8 | |
| 9 | LoadTextFilter@8 | |
| 10 | BindIFilterFromStorage@12 | |
| 11 | BindIFilterFromStream@12 | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject@12 | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer | |
| 16 | LoadIFilter@12 | |
| 17 | LoadIFilterEx@16 |
lib/libc/mingw/lib32/odbccp32.def created+54| ... | ... | @@ -0,0 +1,54 @@ |
| 1 | LIBRARY ODBCCP32.dll | |
| 2 | EXPORTS | |
| 3 | SQLConfigDataSource@16 | |
| 4 | SQLConfigDataSourceW@16 | |
| 5 | SQLConfigDriver@28 | |
| 6 | SQLConfigDriverW@28 | |
| 7 | SQLCreateDataSource@8 | |
| 8 | SQLCreateDataSourceW@8 | |
| 9 | SQLGetAvailableDrivers@16 | |
| 10 | SQLGetAvailableDriversW@16 | |
| 11 | SQLGetConfigMode@4 | |
| 12 | SQLGetInstalledDrivers@12 | |
| 13 | SQLGetInstalledDriversW@12 | |
| 14 | SQLGetPrivateProfileString@24 | |
| 15 | SQLGetPrivateProfileStringW@24 | |
| 16 | SQLGetTranslator@32 | |
| 17 | SQLGetTranslatorW@32 | |
| 18 | SQLInstallDriver@20 | |
| 19 | SQLInstallDriverEx@28 | |
| 20 | SQLInstallDriverExW@28 | |
| 21 | SQLInstallDriverManager@12 | |
| 22 | SQLInstallDriverManagerW@12 | |
| 23 | SQLInstallDriverW@20 | |
| 24 | SQLInstallODBC@16 | |
| 25 | SQLInstallODBCW@16 | |
| 26 | SQLInstallTranslator@32 | |
| 27 | SQLInstallTranslatorEx@28 | |
| 28 | SQLInstallTranslatorExW@28 | |
| 29 | SQLInstallTranslatorW@32 | |
| 30 | SQLInstallerError@20 | |
| 31 | SQLInstallerErrorW@20 | |
| 32 | SQLManageDataSources@4 | |
| 33 | SQLPostInstallerError@8 | |
| 34 | SQLPostInstallerErrorW@8 | |
| 35 | SQLReadFileDSN@24 | |
| 36 | SQLReadFileDSNW@24 | |
| 37 | SQLRemoveDSNFromIni@4 | |
| 38 | SQLRemoveDSNFromIniW@4 | |
| 39 | SQLRemoveDefaultDataSource@0 | |
| 40 | SQLRemoveDriver@12 | |
| 41 | SQLRemoveDriverManager@4 | |
| 42 | SQLRemoveDriverW@12 | |
| 43 | SQLRemoveTranslator@8 | |
| 44 | SQLRemoveTranslatorW@8 | |
| 45 | SQLSetConfigMode@4 | |
| 46 | SQLValidDSN@4 | |
| 47 | SQLValidDSNW@4 | |
| 48 | SQLWriteDSNToIni@8 | |
| 49 | SQLWriteDSNToIniW@8 | |
| 50 | SQLWriteFileDSN@16 | |
| 51 | SQLWriteFileDSNW@16 | |
| 52 | SQLWritePrivateProfileString@16 | |
| 53 | SQLWritePrivateProfileStringW@16 | |
| 54 | ODBC___GetSetupProc@4 | |
| \ No newline at end of file |
lib/libc/mingw/lib32/ole32.def-2| ... | ... | @@ -383,8 +383,6 @@ StgOpenStorageOnHandle@24 |
| 383 | 383 | StgOpenStorageOnILockBytes@24 |
| 384 | 384 | StgPropertyLengthAsVariant@16 |
| 385 | 385 | StgSetTimes@16 |
| 386 | StgCreateStorageEx@32 | |
| 387 | StgOpenStorageEx@32 | |
| 388 | 386 | StringFromCLSID@8 |
| 389 | 387 | StringFromGUID2@12 |
| 390 | 388 | StringFromIID@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 | ; | |
| 6 | LIBRARY "OLECLI32.dll" | |
| 7 | EXPORTS | |
| 8 | WEP@4 | |
| 9 | OleDelete@4 | |
| 10 | OleSaveToStream@8 | |
| 11 | OleLoadFromStream@24 | |
| 12 | OleClone@20 | |
| 13 | OleCopyFromLink@24 | |
| 14 | OleEqual@8 | |
| 15 | OleQueryLinkFromClip@12 | |
| 16 | OleQueryCreateFromClip@12 | |
| 17 | OleCreateLinkFromClip@28 | |
| 18 | OleCreateFromClip@28 | |
| 19 | OleCopyToClipboard@4 | |
| 20 | OleQueryType@8 | |
| 21 | OleSetHostNames@12 | |
| 22 | OleSetTargetDevice@8 | |
| 23 | OleSetBounds@8 | |
| 24 | OleQueryBounds@8 | |
| 25 | OleDraw@20 | |
| 26 | OleQueryOpen@4 | |
| 27 | OleActivate@24 | |
| 28 | OleUpdate@4 | |
| 29 | OleReconnect@4 | |
| 30 | OleGetLinkUpdateOptions@8 | |
| 31 | OleSetLinkUpdateOptions@8 | |
| 32 | OleEnumFormats@8 | |
| 33 | OleClose@4 | |
| 34 | OleGetData@12 | |
| 35 | OleSetData@12 | |
| 36 | OleQueryProtocol@8 | |
| 37 | OleQueryOutOfDate@4 | |
| 38 | OleObjectConvert@24 | |
| 39 | OleCreateFromTemplate@32 | |
| 40 | OleCreate@32 | |
| 41 | OleQueryReleaseStatus@4 | |
| 42 | OleQueryReleaseError@4 | |
| 43 | OleQueryReleaseMethod@4 | |
| 44 | OleCreateFromFile@36 | |
| 45 | OleCreateLinkFromFile@40 | |
| 46 | OleRelease@4 | |
| 47 | OleRegisterClientDoc@16 | |
| 48 | OleRevokeClientDoc@4 | |
| 49 | OleRenameClientDoc@8 | |
| 50 | OleRevertClientDoc@4 | |
| 51 | OleSavedClientDoc@4 | |
| 52 | OleRename@8 | |
| 53 | OleEnumObjects@8 | |
| 54 | OleQueryName@12 | |
| 55 | OleSetColorScheme@8 | |
| 56 | OleRequestData@8 | |
| 57 | OleLockServer@8 | |
| 58 | OleUnlockServer@4 | |
| 59 | OleQuerySize@8 | |
| 60 | OleExecute@12 | |
| 61 | OleCreateInvisible@36 | |
| 62 | OleQueryClientVersion@0 | |
| 63 | OleIsDcMeta@4 | |
| 64 | DocWndProc@16 | |
| 65 | SrvrWndProc@16 | |
| 66 | MfCallbackFunc@20 | |
| 67 | DefLoadFromStream@36 | |
| 68 | DefCreateFromClip@32 | |
| 69 | DefCreateLinkFromClip@28 | |
| 70 | DefCreateFromTemplate@32 | |
| 71 | DefCreate@32 | |
| 72 | DefCreateFromFile@36 | |
| 73 | DefCreateLinkFromFile@40 | |
| 74 | DefCreateInvisible@36 | |
| 75 | LeRelease@4 | |
| 76 | LeShow@8 | |
| 77 | LeGetData@12 | |
| 78 | LeSetData@12 | |
| 79 | LeSetHostNames@12 | |
| 80 | LeSetTargetDevice@8 | |
| 81 | LeSetBounds@8 | |
| 82 | LeSaveToStream@8 | |
| 83 | LeClone@20 | |
| 84 | LeCopyFromLink@20 | |
| 85 | LeEqual@8 | |
| 86 | LeCopy@4 | |
| 87 | LeQueryType@8 | |
| 88 | LeQueryBounds@8 | |
| 89 | LeDraw@20 | |
| 90 | LeQueryOpen@4 | |
| 91 | LeActivate@24 | |
| 92 | LeUpdate@4 | |
| 93 | LeReconnect@4 | |
| 94 | LeEnumFormat@8 | |
| 95 | LeQueryProtocol@8 | |
| 96 | LeQueryOutOfDate@4 | |
| 97 | LeObjectConvert@24 | |
| 98 | LeChangeData@16 | |
| 99 | LeClose@4 | |
| 100 | LeGetUpdateOptions@8 | |
| 101 | LeSetUpdateOptions@8 | |
| 102 | LeExecute@12 | |
| 103 | LeObjectLong@12 | |
| 104 | LeCreateInvisible@32 | |
| 105 | MfRelease@4 | |
| 106 | MfGetData@12 | |
| 107 | MfSaveToStream@8 | |
| 108 | MfClone@20 | |
| 109 | MfEqual@8 | |
| 110 | MfCopy@4 | |
| 111 | MfQueryBounds@8 | |
| 112 | MfDraw@20 | |
| 113 | MfEnumFormat@8 | |
| 114 | MfChangeData@16 | |
| 115 | BmRelease@4 | |
| 116 | BmGetData@12 | |
| 117 | BmSaveToStream@8 | |
| 118 | BmClone@20 | |
| 119 | BmEqual@8 | |
| 120 | BmCopy@4 | |
| 121 | BmQueryBounds@8 | |
| 122 | BmDraw@20 | |
| 123 | BmEnumFormat@8 | |
| 124 | BmChangeData@16 | |
| 125 | DibRelease@4 | |
| 126 | DibGetData@12 | |
| 127 | DibSaveToStream@8 | |
| 128 | DibClone@20 | |
| 129 | DibEqual@8 | |
| 130 | DibCopy@4 | |
| 131 | DibQueryBounds@8 | |
| 132 | DibDraw@20 | |
| 133 | DibEnumFormat@8 | |
| 134 | DibChangeData@16 | |
| 135 | GenRelease@4 | |
| 136 | GenGetData@12 | |
| 137 | GenSetData@12 | |
| 138 | GenSaveToStream@8 | |
| 139 | GenClone@20 | |
| 140 | GenEqual@8 | |
| 141 | GenCopy@4 | |
| 142 | GenQueryBounds@8 | |
| 143 | GenDraw@20 | |
| 144 | GenEnumFormat@8 | |
| 145 | GenChangeData@16 | |
| 146 | ErrShow@8 | |
| 147 | ErrSetData@12 | |
| 148 | ErrSetHostNames@12 | |
| 149 | ErrSetTargetDevice@8 | |
| 150 | ErrSetBounds@8 | |
| 151 | ErrCopyFromLink@20 | |
| 152 | ErrQueryOpen@4 | |
| 153 | ErrActivate@24 | |
| 154 | ErrClose@4 | |
| 155 | ErrUpdate@4 | |
| 156 | ErrReconnect@4 | |
| 157 | ErrQueryProtocol@8 | |
| 158 | ErrQueryOutOfDate@4 | |
| 159 | ErrObjectConvert@24 | |
| 160 | ErrGetUpdateOptions@8 | |
| 161 | ErrSetUpdateOptions@8 | |
| 162 | ErrExecute@12 | |
| 163 | ErrObjectLong@12 | |
| 164 | PbLoadFromStream@36 | |
| 165 | PbCreateFromClip@32 | |
| 166 | PbCreateLinkFromClip@28 | |
| 167 | PbCreateFromTemplate@32 | |
| 168 | PbCreate@32 | |
| 169 | PbDraw@20 | |
| 170 | PbQueryBounds@8 | |
| 171 | PbCopyToClipboard@4 | |
| 172 | PbCreateFromFile@36 | |
| 173 | PbCreateLinkFromFile@40 | |
| 174 | PbEnumFormats@8 | |
| 175 | PbGetData@12 | |
| 176 | PbCreateInvisible@36 | |
| 177 | ObjQueryName@12 | |
| 178 | ObjRename@8 | |
| 179 | ObjQueryType@8 | |
| 180 | ObjQuerySize@8 | |
| 181 | ConnectDlgProc@16 | |
| 182 | SetNetName@4 | |
| 183 | CheckNetDrive@8 | |
| 184 | SetNextNetDrive@12 | |
| 185 | GetTaskVisibleWindow@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 | ; | |
| 6 | LIBRARY "OLEPRO32.DLL" | |
| 7 | EXPORTS | |
| 8 | OleIconToCursor@8 | |
| 9 | OleCreatePropertyFrameIndirect@4 | |
| 10 | OleCreatePropertyFrame@44 | |
| 11 | OleLoadPicture@20 | |
| 12 | OleCreatePictureIndirect@16 | |
| 13 | OleCreateFontIndirect@12 | |
| 14 | OleTranslateColor@12 | |
| 15 | DllCanUnloadNow@0 | |
| 16 | DllGetClassObject@12 | |
| 17 | DllRegisterServer@0 | |
| 18 | DllUnregisterServer@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 | ; | |
| 6 | LIBRARY "OLESVR32.dll" | |
| 7 | EXPORTS | |
| 8 | WEP@4 | |
| 9 | OleRegisterServer@20 | |
| 10 | OleRevokeServer@4 | |
| 11 | OleBlockServer@4 | |
| 12 | OleUnblockServer@8 | |
| 13 | OleRegisterServerDoc@16 | |
| 14 | OleRevokeServerDoc@4 | |
| 15 | OleRenameServerDoc@8 | |
| 16 | OleRevertServerDoc@4 | |
| 17 | OleSavedServerDoc@4 | |
| 18 | OleRevokeObject@4 | |
| 19 | OleQueryServerVersion@0 | |
| 20 | SrvrWndProc@16 | |
| 21 | DocWndProc@16 | |
| 22 | ItemWndProc@16 | |
| 23 | SendDataMsg@12 | |
| 24 | FindItemWnd@8 | |
| 25 | ItemCallBack@12 | |
| 26 | TerminateClients@12 | |
| 27 | TerminateDocClients@12 | |
| 28 | DeleteClientInfo@12 | |
| 29 | SendRenameMsg@12 | |
| 30 | EnumForTerminate@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 | ; | |
| 6 | LIBRARY "OLETHK32.dll" | |
| 7 | EXPORTS | |
| 8 | InvokeOn32@12 | |
| 9 | IntOpInitialize@12 | |
| 10 | CallbackProcessing_3216@12 | |
| 11 | IUnknownObj32@12 | |
| 12 | CSm16ReleaseHandler_Release32@12 | |
| 13 | ThkMgrInitialize@12 | |
| 14 | ThkMgrUninitialize@12 | |
| 15 | TransformHRESULT_1632@4 | |
| 16 | TransformHRESULT_3216@4 | |
| 17 | ConvertObjDescriptor@8 | |
| 18 | ConvertHr1632Thunk@12 | |
| 19 | ConvertHr3216Thunk@12 | |
| 20 | IntOpUninitialize@12 | |
| 21 | ThkAddAppCompatFlag@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 | ; | |
| 6 | LIBRARY "P2PCOLLAB.dll" | |
| 7 | EXPORTS | |
| 8 | AIApplicationGetRegistrationInfo@12 | |
| 9 | AIApplicationRegister@8 | |
| 10 | AIApplicationUnregister@8 | |
| 11 | AIAsyncSend@20 | |
| 12 | AICancel@4 | |
| 13 | AICloseHandle@4 | |
| 14 | AIEnumApplicationRegistrationInfo@8 | |
| 15 | AIGetApplicationLaunchInfo@4 | |
| 16 | AIGetResponse@8 | |
| 17 | AIRespond@8 | |
| 18 | AIShutdown@0 | |
| 19 | AISpecificStart@4 | |
| 20 | AISpecificStop@0 | |
| 21 | AIStartup@8 | |
| 22 | AISyncSend@16 | |
| 23 | CollabAddContact@8 | |
| 24 | CollabConvertBitmapToPicture@12 | |
| 25 | CollabConvertPicture@12 | |
| 26 | CollabConvertPictureToBitmap@8 | |
| 27 | CollabCreateXMLContactBlob@12 | |
| 28 | CollabDeleteContact@4 | |
| 29 | CollabDisableAutoStart@0 | |
| 30 | CollabDisplayPrivacyWebpage@8 | |
| 31 | CollabEnableAutoStart@0 | |
| 32 | CollabEnumContacts@4 | |
| 33 | CollabExportContact@8 | |
| 34 | CollabExportScopedContact@12 | |
| 35 | CollabGetContact@8 | |
| 36 | CollabGetContactPicture@16 | |
| 37 | CollabGetScopedContact@12 | |
| 38 | CollabGetSignInInfo@4 | |
| 39 | CollabGetUserSettings@4 | |
| 40 | CollabLayerInitialize@8 | |
| 41 | CollabLayerShutdown@0 | |
| 42 | CollabLoadPrivacyStmt@8 | |
| 43 | CollabParseContact@8 | |
| 44 | CollabPublicationInitialize@8 | |
| 45 | CollabPublicationListen@4 | |
| 46 | CollabPublicationPublish@0 | |
| 47 | CollabPublicationShutdown@0 | |
| 48 | CollabPublicationStopListen@4 | |
| 49 | CollabPublicationUnpublish@0 | |
| 50 | CollabRegisterIPAddrChange@4 | |
| 51 | CollabSetSignInInfo@4 | |
| 52 | CollabSetUserSettings@8 | |
| 53 | CollabSetup@4 | |
| 54 | CollabTrimNicknameSpaces@12 | |
| 55 | CollabUnregisterIPAddrChange@4 | |
| 56 | CollabUpdateContact@4 | |
| 57 | ContactManagerCleanup@0 | |
| 58 | ContactManagerInit@4 | |
| 59 | PeopleNearMeGetEndpointsNearMe@8 | |
| 60 | PeopleNearMeInitialize@4 | |
| 61 | PeopleNearMeSignin@4 | |
| 62 | PeopleNearMeSignout@0 | |
| 63 | PeopleNearMeUninitialize@0 | |
| 64 | PeopleNearMeUpdateEndpointName@4 | |
| 65 | PeopleNearMeUpdateFriendlyName@4 | |
| 66 | SPDeleteContact@4 | |
| 67 | SPEndRequest@4 | |
| 68 | SPGetApplications@16 | |
| 69 | SPGetEndpointName@4 | |
| 70 | SPGetEndpoints@12 | |
| 71 | SPGetObjects@16 | |
| 72 | SPGetPresenceInfo@8 | |
| 73 | SPPublishObject@8 | |
| 74 | SPQueryContactData@8 | |
| 75 | SPRegisterApplication@4 | |
| 76 | SPRequestPublishedItems@4 | |
| 77 | SPSetEndpointName@4 | |
| 78 | SPSetPresenceInfo@4 | |
| 79 | SPSubscribeEndpoint@8 | |
| 80 | SPUnpublishObjects@4 | |
| 81 | SPUnregisterApplication@4 | |
| 82 | SPUnsubscribeEndpoint@8 | |
| 83 | SPUnsubscribeOnRundown@4 | |
| 84 | SPUpdateContact@8 | |
| 85 | SPUpdateMeContact@0 | |
| 86 | SPUpdateUserPicture@0 | |
| 87 | SPUpdateUserSettings@4 | |
| 88 | SSPAddCredentials@12 | |
| 89 | SSPRemoveCredentials@4 | |
| 90 | DllMain@12 | |
| 91 | InitSecurityInterfaceW@0 | |
| 92 | QuerySecurityPackageInfoW@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 | ; | |
| 6 | LIBRARY "pcwum.dll" | |
| 7 | EXPORTS | |
| 8 | PcwAddQueryItem@36 | |
| 9 | PcwClearCounterSetSecurity@4 | |
| 10 | PcwCollectData@16 | |
| 11 | PcwCompleteNotification@20 | |
| 12 | PcwCreateNotifier@8 | |
| 13 | PcwCreateQuery@8 | |
| 14 | PcwDisconnectCounterSet@8 | |
| 15 | PcwEnumerateInstances@24 | |
| 16 | PcwIsNotifierAlive@12 | |
| 17 | PcwQueryCounterSetSecurity@20 | |
| 18 | PcwReadNotificationData@16 | |
| 19 | PcwRegisterCounterSet@12 | |
| 20 | PcwRemoveQueryItem@8 | |
| 21 | PcwSendNotification@32 | |
| 22 | PcwSendStatelessNotification@32 | |
| 23 | PcwSetCounterSetSecurity@12 | |
| 24 | PcwSetQueryItemUserData@12 | |
| 25 | PerfCreateInstance@16 | |
| 26 | PerfDecrementULongCounterValue@16 | |
| 27 | PerfDecrementULongLongCounterValue@20 | |
| 28 | PerfDeleteInstance@8 | |
| 29 | PerfIncrementULongCounterValue@16 | |
| 30 | PerfIncrementULongLongCounterValue@20 | |
| 31 | PerfQueryInstance@16 | |
| 32 | PerfSetCounterRefValue@16 | |
| 33 | PerfSetCounterSetInfo@12 | |
| 34 | PerfSetULongCounterValue@16 | |
| 35 | PerfSetULongLongCounterValue@20 | |
| 36 | PerfStartProvider@12 | |
| 37 | PerfStartProviderEx@12 | |
| 38 | PerfStopProvider@4 | |
| 39 | StmAlignSize@4 | |
| 40 | StmAllocateFlat@8 | |
| 41 | StmCoalesceChunks@12 | |
| 42 | StmDeinitialize@4 | |
| 43 | StmInitialize@20 | |
| 44 | StmReduceSize@8 | |
| 45 | StmReserve@12 | |
| 46 | StmWrite@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 | ; | |
| 6 | LIBRARY "pdhui.dll" | |
| 7 | EXPORTS | |
| 8 | PdhUiBrowseCountersA@4 | |
| 9 | PdhUiBrowseCountersExA@4 | |
| 10 | PdhUiBrowseCountersExHA@4 | |
| 11 | PdhUiBrowseCountersExHW@4 | |
| 12 | PdhUiBrowseCountersExW@4 | |
| 13 | PdhUiBrowseCountersHA@4 | |
| 14 | PdhUiBrowseCountersHW@4 | |
| 15 | PdhUiBrowseCountersW@4 | |
| 16 | PdhUiSelectDataSourceA@16 | |
| 17 | PdhUiSelectDataSourceW@16 |
lib/libc/mingw/lib32/penwin32.def created+101| ... | ... | @@ -0,0 +1,101 @@ |
| 1 | LIBRARY PENWIN32.DLL | |
| 2 | EXPORTS | |
| 3 | AddInksetInterval@8 | |
| 4 | AddPenDataHRC@8 | |
| 5 | AddPenInputHRC@20 | |
| 6 | AddPointsPenData@16 | |
| 7 | AddWordsHWL@12 | |
| 8 | BoundingRectFromPoints@12 | |
| 9 | CharacterToSymbol@12 | |
| 10 | CompressPenData@12 | |
| 11 | ConfigHREC@16 | |
| 12 | CorrectWriting@24 | |
| 13 | CreateCompatibleHRC@8 | |
| 14 | CreateHWL@16 | |
| 15 | CreateInkset@4 | |
| 16 | CreateInksetHRCRESULT@12 | |
| 17 | CreatePenDataEx@16 | |
| 18 | CreatePenDataHRC@4 | |
| 19 | CreatePenDataRegion@8 | |
| 20 | DPtoTP@8 | |
| 21 | DestroyHRC@4 | |
| 22 | DestroyHRCRESULT@4 | |
| 23 | DestroyHWL@4 | |
| 24 | DestroyInkset@4 | |
| 25 | DestroyPenData@4 | |
| 26 | DoDefaultPenInput@8 | |
| 27 | DrawPenDataEx@40 | |
| 28 | DuplicatePenData@8 | |
| 29 | EnableGestureSetHRC@12 | |
| 30 | EnableSystemDictionaryHRC@8 | |
| 31 | EndPenInputHRC@4 | |
| 32 | ExtractPenDataPoints@28 | |
| 33 | ExtractPenDataStrokes@20 | |
| 34 | GetAlphabetHRC@12 | |
| 35 | GetAlphabetPriorityHRC@12 | |
| 36 | GetAlternateWordsHRCRESULT@20 | |
| 37 | GetBoxMappingHRCRESULT@16 | |
| 38 | GetBoxResultsHRC@24 | |
| 39 | GetGuideHRC@12 | |
| 40 | GetHRECFromHRC@4 | |
| 41 | GetHotspotsHRCRESULT@16 | |
| 42 | GetInksetInterval@12 | |
| 43 | GetInksetIntervalCount@4 | |
| 44 | GetInternationalHRC@20 | |
| 45 | GetMaxResultsHRC@4 | |
| 46 | GetPenAppFlags@0 | |
| 47 | GetPenAsyncState@4 | |
| 48 | GetPenDataAttributes@12 | |
| 49 | GetPenDataInfo@16 | |
| 50 | GetPenInput@24 | |
| 51 | GetPenMiscInfo@8 | |
| 52 | GetPointsFromPenData@20 | |
| 53 | GetResultsHRC@16 | |
| 54 | GetStrokeAttributes@16 | |
| 55 | GetStrokeTableAttributes@16 | |
| 56 | GetSymbolCountHRCRESULT@4 | |
| 57 | GetSymbolsHRCRESULT@16 | |
| 58 | GetVersionPenWin@0 | |
| 59 | GetWordlistCoercionHRC@4 | |
| 60 | GetWordlistHRC@8 | |
| 61 | HitTestPenData@20 | |
| 62 | InsertPenData@12 | |
| 63 | InsertPenDataPoints@24 | |
| 64 | InsertPenDataStroke@20 | |
| 65 | InstallRecognizer@4 | |
| 66 | IsPenEvent@8 | |
| 67 | MetricScalePenData@8 | |
| 68 | OffsetPenData@12 | |
| 69 | PeekPenInput@20 | |
| 70 | PenDataFromBuffer@20 | |
| 71 | PenDataToBuffer@16 | |
| 72 | ProcessHRC@8 | |
| 73 | ReadHWL@8 | |
| 74 | RedisplayPenData@24 | |
| 75 | RemovePenDataStrokes@12 | |
| 76 | ResizePenData@8 | |
| 77 | SetAlphabetHRC@12 | |
| 78 | SetAlphabetPriorityHRC@12 | |
| 79 | SetBoxAlphabetHRC@12 | |
| 80 | SetGuideHRC@12 | |
| 81 | SetInternationalHRC@20 | |
| 82 | SetMaxResultsHRC@8 | |
| 83 | SetPenAppFlags@8 | |
| 84 | SetPenMiscInfo@8 | |
| 85 | SetResultsHookHREC@8 | |
| 86 | SetStrokeAttributes@16 | |
| 87 | SetStrokeTableAttributes@16 | |
| 88 | SetWordlistCoercionHRC@8 | |
| 89 | SetWordlistHRC@8 | |
| 90 | StartInking@12 | |
| 91 | StartPenInput@16 | |
| 92 | StopInking@4 | |
| 93 | StopPenInput@12 | |
| 94 | SymbolToCharacter@16 | |
| 95 | TPtoDP@8 | |
| 96 | TargetPoints@20 | |
| 97 | TrainHREC@20 | |
| 98 | TrimPenData@12 | |
| 99 | UnhookResultsHookHREC@8 | |
| 100 | UninstallRecognizer@4 | |
| 101 | WriteHWL@8 |
lib/libc/mingw/lib32/pkpd32.def created+36| ... | ... | @@ -0,0 +1,36 @@ |
| 1 | LIBRARY PKPD32.DLL | |
| 2 | EXPORTS | |
| 3 | AddInksetInterval@8 | |
| 4 | AddPointsPenData@16 | |
| 5 | BoundingRectFromPoints@12 | |
| 6 | CompressPenData@12 | |
| 7 | CreateInkset@4 | |
| 8 | CreatePenDataEx@16 | |
| 9 | CreatePenDataRegion@8 | |
| 10 | DestroyInkset@4 | |
| 11 | DestroyPenData@4 | |
| 12 | DrawPenDataEx@40 | |
| 13 | DuplicatePenData@8 | |
| 14 | ExtractPenDataPoints@28 | |
| 15 | ExtractPenDataStrokes@20 | |
| 16 | GetInksetInterval@12 | |
| 17 | GetInksetIntervalCount@4 | |
| 18 | GetPenDataAttributes@12 | |
| 19 | GetPenDataInfo@16 | |
| 20 | GetPointsFromPenData@20 | |
| 21 | GetStrokeAttributes@16 | |
| 22 | GetStrokeTableAttributes@16 | |
| 23 | HitTestPenData@20 | |
| 24 | InsertPenData@12 | |
| 25 | InsertPenDataPoints@24 | |
| 26 | InsertPenDataStroke@20 | |
| 27 | MetricScalePenData@8 | |
| 28 | OffsetPenData@12 | |
| 29 | PenDataFromBuffer@20 | |
| 30 | PenDataToBuffer@16 | |
| 31 | RedisplayPenData@24 | |
| 32 | RemovePenDataStrokes@12 | |
| 33 | ResizePenData@8 | |
| 34 | SetStrokeAttributes@16 | |
| 35 | SetStrokeTableAttributes@16 | |
| 36 | TrimPenData@12 |
lib/libc/mingw/lib32/profapi.def created+21| ... | ... | @@ -0,0 +1,21 @@ |
| 1 | LIBRARY profapi | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | CreateAppContainerEnumerator@8 | |
| 6 | CreateEnvBlock@12 | |
| 7 | DeleteAppContainerEnumerator@4 | |
| 8 | DestroyEnvBlock@4 | |
| 9 | ExpandEnvStringForUser@16 | |
| 10 | GetAppContainerPath@12 | |
| 11 | GetAppContainerPathFromSidString@16 | |
| 12 | GetAppContainerRegistryHandle@8 | |
| 13 | GetAppContainerRegistryHandleFromName@20 | |
| 14 | GetAppContainerRegistryPath@8 | |
| 15 | GetAppContainerSpecificSubPath@16 | |
| 16 | GetBasicProfileFolderPath@16 | |
| 17 | GetBasicProfileFolderPathAlloc@12 | |
| 18 | GetBasicProfileFolderPathEx@20 | |
| 19 | GetNextAppContainerSid@8 | |
| 20 | LoadProfileBasic@8 | |
| 21 | UnloadProfileBasic@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 | ; | |
| 6 | LIBRARY "QUtil.dll" | |
| 7 | EXPORTS | |
| 8 | AllocConnections@8 | |
| 9 | AllocCountedString@8 | |
| 10 | AllocFixupInfo@8 | |
| 11 | DllCanUnloadNow@0 | |
| 12 | DllGetClassObject@12 | |
| 13 | DllRegisterServer@0 | |
| 14 | DllUnregisterServer@0 | |
| 15 | FreeConnections@4 | |
| 16 | FreeCountedString@4 | |
| 17 | FreeFixupInfo@4 | |
| 18 | FreeIsolationInfo@4 | |
| 19 | FreeIsolationInfoEx@4 | |
| 20 | FreeNapComponentRegistrationInfoArray@8 | |
| 21 | FreeNetworkSoH@4 | |
| 22 | FreePrivateData@4 | |
| 23 | FreeSoH@4 | |
| 24 | FreeSoHAttributeValue@8 | |
| 25 | FreeSystemHealthAgentState@4 | |
| 26 | InitializeNapAgentNotifier@8 | |
| 27 | UninitializeNapAgentNotifier@4 |
lib/libc/mingw/lib32/rapi.def created+84| ... | ... | @@ -0,0 +1,84 @@ |
| 1 | LIBRARY RAPI.DLL | |
| 2 | EXPORTS | |
| 3 | CeCheckPassword@4 | |
| 4 | CeCloseHandle@4 | |
| 5 | CeCopyFile@12 | |
| 6 | CeCreateDatabase@16 | |
| 7 | CeCreateDirectory@8 | |
| 8 | CeCreateFile@28 | |
| 9 | CeCreateProcess@40 | |
| 10 | CeDeleteDatabase@4 | |
| 11 | CeDeleteFile@4 | |
| 12 | CeDeleteRecord@8 | |
| 13 | CeFindAllDatabases@16 | |
| 14 | CeFindAllFiles@16 | |
| 15 | CeFindClose@4 | |
| 16 | CeFindFirstDatabase@4 | |
| 17 | CeFindFirstFile@8 | |
| 18 | CeFindNextDatabase@4 | |
| 19 | CeFindNextFile@8 | |
| 20 | CeGetClassName@12 | |
| 21 | CeGetDesktopDeviceCaps@4 | |
| 22 | CeGetFileAttributes@4 | |
| 23 | CeGetFileSize@8 | |
| 24 | CeGetFileTime@16 | |
| 25 | CeGetLastError@0 | |
| 26 | CeGetSpecialFolderPath@12 | |
| 27 | CeGetStoreInformation@4 | |
| 28 | CeGetSystemInfo@4 | |
| 29 | CeGetSystemMetrics@4 | |
| 30 | CeGetSystemPowerStatusEx@8 | |
| 31 | CeGetTempPath@8 | |
| 32 | CeGetVersionEx@4 | |
| 33 | CeGetWindow@8 | |
| 34 | CeGetWindowLong@8 | |
| 35 | CeGetWindowText@12 | |
| 36 | CeGlobalMemoryStatus@4 | |
| 37 | CeMoveFile@8 | |
| 38 | CeOidGetInfo@8 | |
| 39 | CeOpenDatabase@20 | |
| 40 | CeRapiFreeBuffer@4 | |
| 41 | CeRapiGetError@0 | |
| 42 | CeRapiInit@0 | |
| 43 | CeRapiInitEx@4 | |
| 44 | CeRapiInvoke@32 | |
| 45 | CeRapiUninit@0 | |
| 46 | CeReadFile@20 | |
| 47 | CeReadRecordProps@24 | |
| 48 | CeRegCloseKey@4 | |
| 49 | CeRegCreateKeyEx@36 | |
| 50 | CeRegDeleteKey@8 | |
| 51 | CeRegDeleteValue@8 | |
| 52 | CeRegEnumKeyEx@32 | |
| 53 | CeRegEnumValue@32 | |
| 54 | CeRegOpenKeyEx@20 | |
| 55 | CeRegQueryInfoKey@48 | |
| 56 | CeRegQueryValueEx@24 | |
| 57 | CeRegSetValueEx@24 | |
| 58 | CeRemoveDirectory@4 | |
| 59 | CeSHCreateShortcut@8 | |
| 60 | CeSHGetShortcutTarget@12 | |
| 61 | CeSeekDatabase@16 | |
| 62 | CeSetDatabaseInfo@8 | |
| 63 | CeSetEndOfFile@4 | |
| 64 | CeSetFileAttributes@8 | |
| 65 | CeSetFilePointer@16 | |
| 66 | CeSetFileTime@16 | |
| 67 | CeWriteFile@20 | |
| 68 | CeWriteRecordProps@16 | |
| 69 | GetRapiError@0 | |
| 70 | RAPI_EXP_10@4 | |
| 71 | RAPI_EXP_11@8 | |
| 72 | RAPI_EXP_12@4 | |
| 73 | RAPI_EXP_13@0 | |
| 74 | RAPI_EXP_14@4 | |
| 75 | RAPI_EXP_15@4 | |
| 76 | RAPI_EXP_16@0 | |
| 77 | RAPI_EXP_17@8 | |
| 78 | RAPI_EXP_18@8 | |
| 79 | RAPI_EXP_19@12 | |
| 80 | RAPI_EXP_20@4 | |
| 81 | RAPI_EXP_21@8 | |
| 82 | RAPI_EXP_22@8 | |
| 83 | RAPI_EXP_23@12 | |
| 84 | RapiFreeBuffer@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 | ; | |
| 6 | LIBRARY "RESUTILS.dll" | |
| 7 | EXPORTS | |
| 8 | ClusWorkerCheckTerminate@4 | |
| 9 | ClusWorkerCreate@12 | |
| 10 | ClusWorkerStart@4 | |
| 11 | ClusWorkerTerminate@4 | |
| 12 | ResUtilAddUnknownProperties@24 | |
| 13 | ResUtilCreateDirectoryTree@4 | |
| 14 | ResUtilDupParameterBlock@12 | |
| 15 | ResUtilDupString@4 | |
| 16 | ResUtilEnumPrivateProperties@20 | |
| 17 | ResUtilEnumProperties@20 | |
| 18 | ResUtilEnumResources@16 | |
| 19 | ResUtilEnumResourcesEx@20 | |
| 20 | ResUtilExpandEnvironmentStrings@4 | |
| 21 | ResUtilFindBinaryProperty@20 | |
| 22 | ResUtilFindDependentDiskResourceDriveLetter@16 | |
| 23 | ResUtilFindDwordProperty@16 | |
| 24 | ResUtilFindExpandSzProperty@16 | |
| 25 | ResUtilFindExpandedSzProperty@16 | |
| 26 | ResUtilFindFileTimeProperty@16 | |
| 27 | ResUtilFindLongProperty@16 | |
| 28 | ResUtilFindMultiSzProperty@20 | |
| 29 | ResUtilFindSzProperty@16 | |
| 30 | ResUtilFreeEnvironment@4 | |
| 31 | ResUtilFreeParameterBlock@12 | |
| 32 | ResUtilGetAllProperties@24 | |
| 33 | ResUtilGetBinaryProperty@28 | |
| 34 | ResUtilGetBinaryValue@16 | |
| 35 | ResUtilGetClusterRoleState@8 | |
| 36 | ResUtilGetCoreClusterResources@16 | |
| 37 | ResUtilGetDwordProperty@28 | |
| 38 | ResUtilGetDwordValue@16 | |
| 39 | ResUtilGetEnvironmentWithNetName@4 | |
| 40 | ResUtilGetFileTimeProperty@40 | |
| 41 | ResUtilGetLongProperty@28 | |
| 42 | ResUtilGetMultiSzProperty@28 | |
| 43 | ResUtilGetPrivateProperties@20 | |
| 44 | ResUtilGetProperties@24 | |
| 45 | ResUtilGetPropertiesToParameterBlock@20 | |
| 46 | ResUtilGetProperty@16 | |
| 47 | ResUtilGetPropertyFormats@20 | |
| 48 | ResUtilGetPropertySize@16 | |
| 49 | ResUtilGetQwordValue@20 | |
| 50 | ResUtilGetResourceDependency@8 | |
| 51 | ResUtilGetResourceDependencyByClass@16 | |
| 52 | ResUtilGetResourceDependencyByName@16 | |
| 53 | ResUtilGetResourceDependentIPAddressProps@28 | |
| 54 | ResUtilGetResourceName@12 | |
| 55 | ResUtilGetResourceNameDependency@8 | |
| 56 | ResUtilGetSzProperty@20 | |
| 57 | ResUtilGetSzValue@8 | |
| 58 | ResUtilIsPathValid@4 | |
| 59 | ResUtilIsResourceClassEqual@8 | |
| 60 | ResUtilPropertyListFromParameterBlock@24 | |
| 61 | ResUtilRemoveResourceServiceEnvironment@12 | |
| 62 | ResUtilResourceTypesEqual@8 | |
| 63 | ResUtilResourcesEqual@8 | |
| 64 | ResUtilSetBinaryValue@24 | |
| 65 | ResUtilSetDwordValue@16 | |
| 66 | ResUtilSetExpandSzValue@16 | |
| 67 | ResUtilSetMultiSzValue@24 | |
| 68 | ResUtilSetPrivatePropertyList@12 | |
| 69 | ResUtilSetPropertyParameterBlock@28 | |
| 70 | ResUtilSetPropertyParameterBlockEx@32 | |
| 71 | ResUtilSetPropertyTable@28 | |
| 72 | ResUtilSetPropertyTableEx@32 | |
| 73 | ResUtilSetQwordValue@20 | |
| 74 | ResUtilSetResourceServiceEnvironment@16 | |
| 75 | ResUtilSetResourceServiceStartParameters@20 | |
| 76 | ResUtilSetSzValue@16 | |
| 77 | ResUtilSetUnknownProperties@16 | |
| 78 | ResUtilStartResourceService@8 | |
| 79 | ResUtilStopResourceService@4 | |
| 80 | ResUtilStopService@4 | |
| 81 | ResUtilTerminateServiceProcessFromResDll@20 | |
| 82 | ResUtilVerifyPrivatePropertyList@8 | |
| 83 | ResUtilVerifyPropertyTable@24 | |
| 84 | ResUtilVerifyResourceService@4 | |
| 85 | ResUtilVerifyService@4 |
lib/libc/mingw/lib32/rometadata.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY "RoMetadata.dll" | |
| 2 | EXPORTS | |
| 3 | MetaDataGetDispenser@12 |
lib/libc/mingw/lib32/rpcdce4.def created+26| ... | ... | @@ -0,0 +1,26 @@ |
| 1 | LIBRARY RPCDCE4.dll | |
| 2 | EXPORTS | |
| 3 | DceErrorInqTextA@8 | |
| 4 | DceErrorInqTextW@8 | |
| 5 | MIDL_user_allocate@4 | |
| 6 | MIDL_user_free@4 | |
| 7 | RpcBindingToStringBindingA@8 | |
| 8 | RpcBindingToStringBindingW@8 | |
| 9 | RpcMgmtEpEltInqBegin@24 | |
| 10 | RpcMgmtEpEltInqDone@4 | |
| 11 | RpcMgmtEpEltInqNextA@20 | |
| 12 | RpcMgmtEpEltInqNextW@20 | |
| 13 | RpcMgmtEpUnregister@16 | |
| 14 | RpcMgmtInqIfIds@8 | |
| 15 | RpcMgmtInqServerPrincNameA@12 | |
| 16 | RpcMgmtInqServerPrincNameW@12 | |
| 17 | RpcMgmtInqStats@8 | |
| 18 | RpcMgmtIsServerListening@4 | |
| 19 | RpcMgmtSetAuthorizationFn@4 | |
| 20 | RpcMgmtStopServerListening@4 | |
| 21 | RpcServerListen@12 | |
| 22 | UuidCompare@12 | |
| 23 | UuidCreateNil@4 | |
| 24 | UuidEqual@12 | |
| 25 | UuidHash@8 | |
| 26 | UuidIsNil@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 | ; | |
| 6 | LIBRARY "RpcDiag.dll" | |
| 7 | EXPORTS | |
| 8 | I_RpcSetupDiagCallback@4 | |
| 9 | RpcDiagnoseError@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 | ; | |
| 6 | LIBRARY "rpchttp.dll" | |
| 7 | EXPORTS | |
| 8 | CompareHttpTransportCredentials@8 | |
| 9 | ConvertToUnicodeHttpTransportCredentials@4 | |
| 10 | DuplicateHttpTransportCredentials@4 | |
| 11 | FreeHttpTransportCredentials@4 | |
| 12 | HTTP2AbortConnection@4 | |
| 13 | HTTP2ChannelDataOriginatorDirectSend@20 | |
| 14 | HTTP2ContinueDrainChannel@4 | |
| 15 | HTTP2DirectReceive@20 | |
| 16 | HTTP2EpRecvFailed@12 | |
| 17 | HTTP2FlowControlChannelDirectSend@24 | |
| 18 | HTTP2IISDirectReceive@4 | |
| 19 | HTTP2IISSenderDirectSend@4 | |
| 20 | HTTP2PlugChannelDirectSend@20 | |
| 21 | HTTP2ProcessComplexTReceive@20 | |
| 22 | HTTP2ProcessComplexTSend@12 | |
| 23 | HTTP2RecycleChannel@4 | |
| 24 | HTTP2TestHook@12 | |
| 25 | HTTP2TimerReschedule@4 | |
| 26 | HTTP2WinHttpDelayedReceive@4 | |
| 27 | HTTP2WinHttpDirectReceive@16 | |
| 28 | HTTP2WinHttpDirectSend@12 | |
| 29 | HTTP_Abort@4 | |
| 30 | HTTP_Close@8 | |
| 31 | HTTP_CopyResolverHint@12 | |
| 32 | HTTP_FreeResolverHint@4 | |
| 33 | HTTP_Initialize@16 | |
| 34 | HTTP_Open@56 | |
| 35 | HTTP_QueryClientAddress@8 | |
| 36 | HTTP_QueryClientId@8 | |
| 37 | HTTP_QueryClientIpAddress@8 | |
| 38 | HTTP_QueryLocalAddress@16 | |
| 39 | HTTP_Recv@4 | |
| 40 | HTTP_Send@16 | |
| 41 | HTTP_ServerListen@28 | |
| 42 | HTTP_SetLastBufferToFree@12 | |
| 43 | HTTP_SyncRecv@16 | |
| 44 | HTTP_SyncSend@24 | |
| 45 | HTTP_TurnOnOffKeepAlives@24 | |
| 46 | HttpParseNetworkOptions@36 | |
| 47 | HttpSendIdentifyResponse@4 | |
| 48 | I_RpcGetRpcProxy@8 | |
| 49 | I_RpcTransFreeHttpCredentials@4 | |
| 50 | I_RpcTransGetHttpCredentials@4 | |
| 51 | WS_HTTP2_CONNECTION__Initialize@4 | |
| 52 | WS_HTTP2_INITIAL_CONNECTION__new@4 | |
| 53 | I_RpcProxyNewConnection@28 | |
| 54 | I_RpcReplyToClientWithStatus@8 |
lib/libc/mingw/lib32/rpcrt4.def-7| ... | ... | @@ -257,13 +257,6 @@ NdrFixedArrayMarshall@12 |
| 257 | 257 | NdrFixedArrayMemorySize@8 |
| 258 | 258 | NdrFixedArrayUnmarshall@16 |
| 259 | 259 | NdrFreeBuffer@4 |
| 260 | NdrFullPointerFree@8 | |
| 261 | NdrFullPointerInsertRefId@12 | |
| 262 | NdrFullPointerQueryPointer@16 | |
| 263 | NdrFullPointerQueryRefId@16 | |
| 264 | NdrFullPointerInsertRefId@12 | |
| 265 | NdrFullPointerQueryPointer@16 | |
| 266 | NdrFullPointerQueryRefId@16 | |
| 267 | 260 | NdrFullPointerXlatFree@4 |
| 268 | 261 | NdrFullPointerXlatInit@8 |
| 269 | 262 | NdrGetBuffer@12 |
lib/libc/mingw/lib32/rtutils.def created+54| ... | ... | @@ -0,0 +1,54 @@ |
| 1 | LIBRARY RTUTILS.DLL | |
| 2 | EXPORTS | |
| 3 | CreateWaitEvent@40 | |
| 4 | CreateWaitEventBinding@20 | |
| 5 | CreateWaitTimer@16 | |
| 6 | DeRegisterWaitEventBinding@4 | |
| 7 | DeRegisterWaitEventBindingSelf@4 | |
| 8 | DeRegisterWaitEventsTimers@8 | |
| 9 | DeRegisterWaitEventsTimersSelf@8 | |
| 10 | DebugPrintWaitWorkerThreads@4 | |
| 11 | LogErrorA@16 | |
| 12 | LogErrorW@16 | |
| 13 | LogEventA@16 | |
| 14 | LogEventW@16 | |
| 15 | MprSetupProtocolEnum@12 | |
| 16 | MprSetupProtocolFree@4 | |
| 17 | QueueWorkItem@12 | |
| 18 | RegisterWaitEventBinding@4 | |
| 19 | RegisterWaitEventsTimers@8 | |
| 20 | RouterAssert@16 | |
| 21 | RouterGetErrorStringA@8 | |
| 22 | RouterGetErrorStringW@8 | |
| 23 | RouterLogDeregisterA@4 | |
| 24 | RouterLogDeregisterW@4 | |
| 25 | RouterLogEventA@24 | |
| 26 | RouterLogEventW@24 | |
| 27 | RouterLogEventDataA@28 | |
| 28 | RouterLogEventDataW@28 | |
| 29 | RouterLogEventExA@24 | |
| 30 | RouterLogEventExW@24 | |
| 31 | RouterLogEventStringA@28 | |
| 32 | RouterLogEventStringW@28 | |
| 33 | RouterLogEventValistExA@24 | |
| 34 | RouterLogEventValistExW@24 | |
| 35 | RouterLogRegisterA@4 | |
| 36 | RouterLogRegisterW@4 | |
| 37 | SetIoCompletionProc@8 | |
| 38 | TraceDeregisterA@4 | |
| 39 | TraceDeregisterW@4 | |
| 40 | TraceDeregisterExA@8 | |
| 41 | TraceDeregisterExW@8 | |
| 42 | TraceDumpExA@28 | |
| 43 | TraceDumpExW@28 | |
| 44 | TraceGetConsoleA@8 | |
| 45 | TraceGetConsoleW@8 | |
| 46 | TracePutsExA@12 | |
| 47 | TracePutsExW@12 | |
| 48 | TraceRegisterExA@8 | |
| 49 | TraceRegisterExW@8 | |
| 50 | TraceVprintfExA@8 | |
| 51 | TraceVprintfExW@8 | |
| 52 | UpdateWaitTimer@8 | |
| 53 | WTFreeEvent@4 | |
| 54 | WTFreeTimer@4 |
lib/libc/mingw/lib32/scsiport.def created+49| ... | ... | @@ -0,0 +1,49 @@ |
| 1 | LIBRARY scsiport.sys | |
| 2 | EXPORTS | |
| 3 | DllInitialize@4 | |
| 4 | ScsiDebugPrint | |
| 5 | ScsiPortCompleteRequest@20 | |
| 6 | ;ScsiPortConvertPhysicalAddressToUlong | |
| 7 | ScsiPortConvertUlongToPhysicalAddress@4 | |
| 8 | ScsiPortFlushDma@4 | |
| 9 | ScsiPortFreeDeviceBase@8 | |
| 10 | ScsiPortGetBusData@24 | |
| 11 | ScsiPortGetDeviceBase@28 | |
| 12 | ScsiPortGetLogicalUnit@16 | |
| 13 | ScsiPortGetPhysicalAddress@16 | |
| 14 | ScsiPortGetSrb@20 | |
| 15 | ScsiPortGetUncachedExtension@12 | |
| 16 | ScsiPortGetVirtualAddress@12 | |
| 17 | ScsiPortInitialize@16 | |
| 18 | ScsiPortIoMapTransfer@16 | |
| 19 | ScsiPortLogError@28 | |
| 20 | ScsiPortMoveMemory@12 | |
| 21 | ScsiPortNotification | |
| 22 | ScsiPortQuerySystemTime@4 | |
| 23 | ScsiPortReadPortBufferUchar@12 | |
| 24 | ScsiPortReadPortBufferUlong@12 | |
| 25 | ScsiPortReadPortBufferUshort@12 | |
| 26 | ScsiPortReadPortUchar@4 | |
| 27 | ScsiPortReadPortUlong@4 | |
| 28 | ScsiPortReadPortUshort@4 | |
| 29 | ScsiPortReadRegisterBufferUchar@12 | |
| 30 | ScsiPortReadRegisterBufferUlong@12 | |
| 31 | ScsiPortReadRegisterBufferUshort@12 | |
| 32 | ScsiPortReadRegisterUchar@4 | |
| 33 | ScsiPortReadRegisterUlong@4 | |
| 34 | ScsiPortReadRegisterUshort@4 | |
| 35 | ScsiPortSetBusDataByOffset@28 | |
| 36 | ScsiPortStallExecution@4 | |
| 37 | ScsiPortValidateRange@28 | |
| 38 | ScsiPortWritePortBufferUchar@12 | |
| 39 | ScsiPortWritePortBufferUlong@12 | |
| 40 | ScsiPortWritePortBufferUshort@12 | |
| 41 | ScsiPortWritePortUchar@8 | |
| 42 | ScsiPortWritePortUlong@8 | |
| 43 | ScsiPortWritePortUshort@8 | |
| 44 | ScsiPortWriteRegisterBufferUchar@12 | |
| 45 | ScsiPortWriteRegisterBufferUlong@12 | |
| 46 | ScsiPortWriteRegisterBufferUshort@12 | |
| 47 | ScsiPortWriteRegisterUchar@8 | |
| 48 | ScsiPortWriteRegisterUlong@8 | |
| 49 | ScsiPortWriteRegisterUshort@8 |
lib/libc/mingw/lib32/security.def created+38| ... | ... | @@ -0,0 +1,38 @@ |
| 1 | LIBRARY Security.dll | |
| 2 | EXPORTS | |
| 3 | AcceptSecurityContext@36 | |
| 4 | AcquireCredentialsHandleA@36 | |
| 5 | AcquireCredentialsHandleW@36 | |
| 6 | AddSecurityPackageA@8 | |
| 7 | AddSecurityPackageW@8 | |
| 8 | ApplyControlToken@8 | |
| 9 | CompleteAuthToken@8 | |
| 10 | DecryptMessage@16 | |
| 11 | DeleteSecurityContext@4 | |
| 12 | DeleteSecurityPackageA@4 | |
| 13 | DeleteSecurityPackageW@4 | |
| 14 | EncryptMessage@16 | |
| 15 | EnumerateSecurityPackagesA@8 | |
| 16 | EnumerateSecurityPackagesW@8 | |
| 17 | ExportSecurityContext@16 | |
| 18 | FreeContextBuffer@4 | |
| 19 | FreeCredentialsHandle@4 | |
| 20 | ImpersonateSecurityContext@4 | |
| 21 | ImportSecurityContextA@16 | |
| 22 | ImportSecurityContextW@16 | |
| 23 | InitSecurityInterfaceA@0 | |
| 24 | InitSecurityInterfaceW@0 | |
| 25 | InitializeSecurityContextA@48 | |
| 26 | InitializeSecurityContextW@48 | |
| 27 | MakeSignature@16 | |
| 28 | QueryContextAttributesA@12 | |
| 29 | QueryContextAttributesW@12 | |
| 30 | QueryCredentialsAttributesA@12 | |
| 31 | QueryCredentialsAttributesW@12 | |
| 32 | QuerySecurityContextToken@8 | |
| 33 | QuerySecurityPackageInfoA@8 | |
| 34 | QuerySecurityPackageInfoW@8 | |
| 35 | RevertSecurityContext@4 | |
| 36 | SealMessage@16 | |
| 37 | UnsealMessage@16 | |
| 38 | VerifySignature@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 | ; | |
| 6 | LIBRARY "Sens.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain@8 | |
| 9 | SvchostPushServiceGlobals@4 | |
| 10 | SensNotifyNetconEvent@4 | |
| 11 | SensNotifyRasEvent@4 | |
| 12 | SensNotifyWinlogonEvent@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 | ; | |
| 6 | LIBRARY "SensApi.dll" | |
| 7 | EXPORTS | |
| 8 | IsDestinationReachableA@8 | |
| 9 | IsDestinationReachableW@8 | |
| 10 | IsNetworkAlive@4 |
lib/libc/mingw/lib32/shfolder.def created+4| ... | ... | @@ -0,0 +1,4 @@ |
| 1 | LIBRARY SHFOLDER.DLL | |
| 2 | EXPORTS | |
| 3 | SHGetFolderPathA@20 | |
| 4 | SHGetFolderPathW@20 |
lib/libc/mingw/lib32/svrapi.def created+22| ... | ... | @@ -0,0 +1,22 @@ |
| 1 | LIBRARY SVRAPI.DLL | |
| 2 | EXPORTS | |
| 3 | NetAccessAdd@16 | |
| 4 | NetAccessCheck@20 | |
| 5 | NetAccessDel@8 | |
| 6 | NetAccessEnum@32 | |
| 7 | NetAccessGetInfo@24 | |
| 8 | NetAccessGetUserPerms@16 | |
| 9 | NetAccessSetInfo@24 | |
| 10 | NetConnectionEnum@28 | |
| 11 | NetFileClose2@8 | |
| 12 | NetFileEnum@28 | |
| 13 | NetSecurityGetInfo@20 | |
| 14 | NetServerGetInfo@20 | |
| 15 | NetSessionDel@12 | |
| 16 | NetSessionEnum@24 | |
| 17 | NetSessionGetInfo@24 | |
| 18 | NetShareAdd@16 | |
| 19 | NetShareDel@12 | |
| 20 | NetShareEnum@24 | |
| 21 | NetShareGetInfo@24 | |
| 22 | NetShareSetInfo@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 | ; | |
| 6 | LIBRARY "sxs.dll" | |
| 7 | EXPORTS | |
| 8 | SxsFindClrClassInformation@24 | |
| 9 | SxsFindClrSurrogateInformation@24 | |
| 10 | SxsLookupClrGuid@24 | |
| 11 | SxsRunDllInstallAssembly@16 | |
| 12 | SxsRunDllInstallAssemblyW@16 | |
| 13 | SxspGenerateManifestPathOnAssemblyIdentity@16 | |
| 14 | CreateAssemblyCache@8 | |
| 15 | CreateAssemblyNameObject@16 | |
| 16 | SxsBeginAssemblyInstall@24 | |
| 17 | SxsEndAssemblyInstall@12 | |
| 18 | SxsGenerateActivationContext@4 | |
| 19 | SxsInstallW@4 | |
| 20 | SxsOleAut32MapConfiguredClsidToReferenceClsid@8 | |
| 21 | SxsOleAut32MapIIDOrCLSIDToTypeLibrary@8 | |
| 22 | SxsOleAut32MapIIDToProxyStubCLSID@8 | |
| 23 | SxsOleAut32MapIIDToTLBPath@16 | |
| 24 | SxsOleAut32MapReferenceClsidToConfiguredClsid@8 | |
| 25 | SxsOleAut32RedirectTypeLibrary@28 | |
| 26 | SxsProbeAssemblyInstallation@12 | |
| 27 | SxsQueryManifestInformation@28 | |
| 28 | SxsUninstallW@8 |
lib/libc/mingw/lib32/tdi.def created+50| ... | ... | @@ -0,0 +1,50 @@ |
| 1 | LIBRARY tdi.sys | |
| 2 | EXPORTS | |
| 3 | ;CTEAllocateString | |
| 4 | ;CTEBlock | |
| 5 | ;CTEInitEvent | |
| 6 | ;CTEInitString | |
| 7 | ;CTEInitTimer | |
| 8 | ;CTEInitialize | |
| 9 | ;CTELogEvent | |
| 10 | ;CTEScheduleDelayedEvent | |
| 11 | ;CTEScheduleEvent | |
| 12 | ;CTESignal | |
| 13 | ;CTEStartTimer | |
| 14 | ;CTESystemUpTime | |
| 15 | TdiBuildNetbiosAddress@12 | |
| 16 | TdiBuildNetbiosAddressEa@12 | |
| 17 | TdiCopyBufferToMdl@24 | |
| 18 | TdiCopyMdlChainToMdlChain@20 | |
| 19 | TdiCopyMdlToBuffer@24 | |
| 20 | TdiDefaultChainedRcvDatagramHandler@40 | |
| 21 | TdiDefaultChainedRcvExpeditedHandler@28 | |
| 22 | TdiDefaultChainedReceiveHandler@28 | |
| 23 | TdiDefaultConnectHandler@36 | |
| 24 | TdiDefaultDisconnectHandler@28 | |
| 25 | TdiDefaultErrorHandler@8 | |
| 26 | TdiDefaultRcvDatagramHandler@44 | |
| 27 | TdiDefaultRcvExpeditedHandler@32 | |
| 28 | TdiDefaultReceiveHandler@32 | |
| 29 | TdiDefaultSendPossibleHandler@12 | |
| 30 | TdiDeregisterAddressChangeHandler@4 | |
| 31 | TdiDeregisterDeviceObject@4 | |
| 32 | TdiDeregisterNetAddress@4 | |
| 33 | ;TdiDeregisterNotificationHandler | |
| 34 | TdiDeregisterPnPHandlers@4 | |
| 35 | TdiDeregisterProvider@4 | |
| 36 | TdiEnumerateAddresses@4 | |
| 37 | TdiInitialize@0 | |
| 38 | TdiMapUserRequest@12 | |
| 39 | TdiMatchPdoWithChainedReceiveContext@8 | |
| 40 | ;TdiOpenNetbiosAddress | |
| 41 | TdiPnPPowerComplete@12 | |
| 42 | TdiPnPPowerRequest@20 | |
| 43 | TdiProviderReady@4 | |
| 44 | TdiRegisterAddressChangeHandler@12 | |
| 45 | TdiRegisterDeviceObject@8 | |
| 46 | TdiRegisterNetAddress@16 | |
| 47 | TdiRegisterNotificationHandler@12 | |
| 48 | TdiRegisterPnPHandlers@12 | |
| 49 | TdiRegisterProvider@8 | |
| 50 | TdiReturnChainedReceives@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 | ; | |
| 6 | LIBRARY "UIAutomationCore.DLL" | |
| 7 | EXPORTS | |
| 8 | DockPattern_SetDockPosition@8 | |
| 9 | ExpandCollapsePattern_Collapse@4 | |
| 10 | ExpandCollapsePattern_Expand@4 | |
| 11 | GridPattern_GetItem@16 | |
| 12 | InitializeChannelBasedConnectionForProviderProxy@12 | |
| 13 | InvokePattern_Invoke@4 | |
| 14 | ItemContainerPattern_FindItemByProperty@32 | |
| 15 | LegacyIAccessiblePattern_DoDefaultAction@4 | |
| 16 | LegacyIAccessiblePattern_GetIAccessible@8 | |
| 17 | LegacyIAccessiblePattern_Select@8 | |
| 18 | LegacyIAccessiblePattern_SetValue@8 | |
| 19 | MultipleViewPattern_GetViewName@12 | |
| 20 | MultipleViewPattern_SetCurrentView@8 | |
| 21 | RangeValuePattern_SetValue@12 | |
| 22 | ScrollItemPattern_ScrollIntoView@4 | |
| 23 | ScrollPattern_Scroll@12 | |
| 24 | ScrollPattern_SetScrollPercent@20 | |
| 25 | SelectionItemPattern_AddToSelection@4 | |
| 26 | SelectionItemPattern_RemoveFromSelection@4 | |
| 27 | SelectionItemPattern_Select@4 | |
| 28 | SynchronizedInputPattern_Cancel@4 | |
| 29 | SynchronizedInputPattern_StartListening@8 | |
| 30 | TextPattern_GetSelection@8 | |
| 31 | TextPattern_GetVisibleRanges@8 | |
| 32 | TextPattern_RangeFromChild@12 | |
| 33 | TextPattern_RangeFromPoint@24 | |
| 34 | TextPattern_get_DocumentRange@8 | |
| 35 | TextPattern_get_SupportedTextSelection@8 | |
| 36 | TextRange_AddToSelection@4 | |
| 37 | TextRange_Clone@8 | |
| 38 | TextRange_Compare@12 | |
| 39 | TextRange_CompareEndpoints@20 | |
| 40 | TextRange_ExpandToEnclosingUnit@8 | |
| 41 | TextRange_FindAttribute@32 | |
| 42 | TextRange_FindText@20 | |
| 43 | TextRange_GetAttributeValue@12 | |
| 44 | TextRange_GetBoundingRectangles@8 | |
| 45 | TextRange_GetChildren@8 | |
| 46 | TextRange_GetEnclosingElement@8 | |
| 47 | TextRange_GetText@12 | |
| 48 | TextRange_Move@16 | |
| 49 | TextRange_MoveEndpointByRange@16 | |
| 50 | TextRange_MoveEndpointByUnit@20 | |
| 51 | TextRange_RemoveFromSelection@4 | |
| 52 | TextRange_ScrollIntoView@8 | |
| 53 | TextRange_Select@4 | |
| 54 | TogglePattern_Toggle@4 | |
| 55 | TransformPattern_Move@20 | |
| 56 | TransformPattern_Resize@20 | |
| 57 | TransformPattern_Rotate@12 | |
| 58 | UiaAddEvent@32 | |
| 59 | UiaClientsAreListening@0 | |
| 60 | UiaDisconnectAllProviders@0 | |
| 61 | UiaDisconnectProvider@4 | |
| 62 | UiaEventAddWindow@8 | |
| 63 | UiaEventRemoveWindow@8 | |
| 64 | UiaFind@24 | |
| 65 | UiaGetErrorDescription@4 | |
| 66 | UiaGetPatternProvider@12 | |
| 67 | UiaGetPropertyValue@12 | |
| 68 | UiaGetReservedMixedAttributeValue@4 | |
| 69 | UiaGetReservedNotSupportedValue@4 | |
| 70 | UiaGetRootNode@4 | |
| 71 | UiaGetRuntimeId@8 | |
| 72 | UiaGetUpdatedCache@24 | |
| 73 | UiaHPatternObjectFromVariant@8 | |
| 74 | UiaHTextRangeFromVariant@8 | |
| 75 | UiaHUiaNodeFromVariant@8 | |
| 76 | UiaHasServerSideProvider@4 | |
| 77 | UiaHostProviderFromHwnd@8 | |
| 78 | UiaIAccessibleFromProvider@16 | |
| 79 | UiaLookupId@8 | |
| 80 | UiaNavigate@24 | |
| 81 | UiaNodeFromFocus@12 | |
| 82 | UiaNodeFromHandle@8 | |
| 83 | UiaNodeFromPoint@28 | |
| 84 | UiaNodeFromProvider@8 | |
| 85 | UiaNodeRelease@4 | |
| 86 | UiaPatternRelease@4 | |
| 87 | UiaProviderForNonClient@16 | |
| 88 | UiaProviderFromIAccessible@16 | |
| 89 | UiaRaiseActiveTextPositionChangedEvent@8 | |
| 90 | UiaRaiseAsyncContentLoadedEvent@16 | |
| 91 | UiaRaiseAutomationEvent@8 | |
| 92 | UiaRaiseAutomationPropertyChangedEvent@40 | |
| 93 | UiaRaiseChangesEvent@12 | |
| 94 | UiaRaiseNotificationEvent@20 | |
| 95 | UiaRaiseStructureChangedEvent@16 | |
| 96 | UiaRaiseTextEditTextChangedEvent@12 | |
| 97 | UiaRegisterProviderCallback@4 | |
| 98 | UiaRemoveEvent@4 | |
| 99 | UiaReturnRawElementProvider@16 | |
| 100 | UiaSetFocus@4 | |
| 101 | UiaTextRangeRelease@4 | |
| 102 | ValuePattern_SetValue@8 | |
| 103 | VirtualizedItemPattern_Realize@4 | |
| 104 | WindowPattern_Close@4 | |
| 105 | WindowPattern_SetWindowVisualState@8 | |
| 106 | WindowPattern_WaitForInputIdle@12 |
lib/libc/mingw/lib32/url.def created+9| ... | ... | @@ -0,0 +1,9 @@ |
| 1 | LIBRARY URL.DLL | |
| 2 | EXPORTS | |
| 3 | URLAssociationDialogW@24 | |
| 4 | URLAssociationDialogA@24 | |
| 5 | TranslateURLW@12 | |
| 6 | TranslateURLA@12 | |
| 7 | MIMEAssociationDialogW@24 | |
| 8 | MIMEAssociationDialogA@24 | |
| 9 | InetIsOffline@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 | ; | |
| 6 | LIBRARY "USBCAMD.SYS" | |
| 7 | EXPORTS | |
| 8 | DllUnload@0 | |
| 9 | USBCAMD_AdapterReceivePacket@16 | |
| 10 | USBCAMD_ControlVendorCommand@36 | |
| 11 | USBCAMD_Debug_LogEntry@16 | |
| 12 | USBCAMD_DriverEntry@20 | |
| 13 | USBCAMD_GetRegistryKeyValue@20 | |
| 14 | USBCAMD_InitializeNewInterface@16 | |
| 15 | USBCAMD_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 | ; | |
| 6 | LIBRARY "USBCAMD2.SYS" | |
| 7 | EXPORTS | |
| 8 | DllUnload@0 | |
| 9 | USBCAMD_AdapterReceivePacket@16 | |
| 10 | USBCAMD_ControlVendorCommand@36 | |
| 11 | USBCAMD_Debug_LogEntry@16 | |
| 12 | USBCAMD_DriverEntry@20 | |
| 13 | USBCAMD_GetRegistryKeyValue@20 | |
| 14 | USBCAMD_InitializeNewInterface@16 | |
| 15 | USBCAMD_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 | ; | |
| 6 | LIBRARY "USBD.SYS" | |
| 7 | EXPORTS | |
| 8 | ; USBD_CreateConfigurationRequestEx@8 | |
| 9 | ; USBD_ParseConfigurationDescriptorEx@28 | |
| 10 | ; USBD_ParseDescriptors@16 | |
| 11 | DllInitialize@4 | |
| 12 | DllUnload@0 | |
| 13 | USBD_AllocateDeviceName@4 | |
| 14 | USBD_CalculateUsbBandwidth@12 | |
| 15 | USBD_CompleteRequest@8 | |
| 16 | USBD_CreateConfigurationRequest@8 | |
| 17 | ; _USBD_CreateConfigurationRequestEx@8@8 | |
| 18 | USBD_CreateDevice@20 | |
| 19 | USBD_Debug_GetHeap@16 | |
| 20 | USBD_Debug_LogEntry@16 | |
| 21 | USBD_Debug_RetHeap@12 | |
| 22 | USBD_Dispatch@16 | |
| 23 | USBD_FreeDeviceMutex@4 | |
| 24 | USBD_FreeDeviceName@4 | |
| 25 | USBD_GetDeviceInformation@12 | |
| 26 | USBD_GetInterfaceLength@8 | |
| 27 | USBD_GetPdoRegistryParameter@20 | |
| 28 | USBD_GetSuspendPowerState@4 | |
| 29 | USBD_GetUSBDIVersion@4 | |
| 30 | USBD_InitializeDevice@24 | |
| 31 | USBD_MakePdoName@8 | |
| 32 | USBD_ParseConfigurationDescriptor@12 | |
| 33 | ; _USBD_ParseConfigurationDescriptorEx@28@28 | |
| 34 | ; _USBD_ParseDescriptors@16@16 | |
| 35 | USBD_QueryBusTime@8 | |
| 36 | USBD_RegisterHcDeviceCapabilities@12 | |
| 37 | USBD_RegisterHcFilter@8 | |
| 38 | USBD_RegisterHostController@40 | |
| 39 | USBD_RemoveDevice@12 | |
| 40 | USBD_RestoreDevice@12 | |
| 41 | USBD_SetSuspendPowerState@8 | |
| 42 | USBD_WaitDeviceMutex@4 | |
| 43 | USBD_CreateConfigurationRequestEx@8==_USBD_CreateConfigurationRequestEx@8 | |
| 44 | USBD_ParseConfigurationDescriptorEx@28==_USBD_ParseConfigurationDescriptorEx@28 | |
| 45 | USBD_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 | ; | |
| 6 | LIBRARY "USBPORT.SYS" | |
| 7 | EXPORTS | |
| 8 | DllUnload@0 | |
| 9 | USBPORT_GetHciMn@0 | |
| 10 | USBPORT_RegisterUSBPortDriver@12 |
lib/libc/mingw/lib32/userenv.def+30| ... | ... | @@ -6,10 +6,29 @@ |
| 6 | 6 | LIBRARY "USERENV.dll" |
| 7 | 7 | EXPORTS |
| 8 | 8 | RsopLoggingEnabled@0 |
| 9 | AreThereVisibleLogoffScripts@4 | |
| 10 | AreThereVisibleShutdownScripts@4 | |
| 11 | CheckDirectoryOwnership@12 | |
| 12 | CheckXForestLogon@4 | |
| 13 | CopyProfileDirectoryEx2@28 | |
| 14 | CreateAppContainerProfile@24 | |
| 15 | CreateAppContainerProfileInternal@28 | |
| 16 | CreateDirectoryJunctionsForSystem@0 | |
| 17 | CreateDirectoryJunctionsForUserProfile@4 | |
| 9 | 18 | CreateEnvironmentBlock@12 |
| 19 | CreateGroupEx@16 | |
| 20 | CreateLinkFileEx@48 | |
| 10 | 21 | CreateProfile@16 |
| 22 | DeleteAppContainerProfile@4 | |
| 23 | DeleteAppContainerProfileInternal@8 | |
| 24 | DeleteGroup@8 | |
| 25 | DeleteLinkFile@16 | |
| 11 | 26 | DeleteProfileA@12 |
| 27 | DeleteProfileDirectory2@16 | |
| 28 | DeleteProfileDirectory@12 | |
| 12 | 29 | DeleteProfileW@12 |
| 30 | DeriveAppContainerSidFromAppContainerName@8 | |
| 31 | DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName@12 | |
| 13 | 32 | DestroyEnvironmentBlock@4 |
| 14 | 33 | ;DllCanUnloadNow@0 |
| 15 | 34 | ;DllGetClassObject@12 |
| ... | ... | @@ -22,34 +41,45 @@ ExpandEnvironmentStringsForUserW@16 |
| 22 | 41 | ForceSyncFgPolicy@4 |
| 23 | 42 | FreeGPOListA@4 |
| 24 | 43 | FreeGPOListW@4 |
| 44 | GenerateGPNotification@12 | |
| 25 | 45 | GetAllUsersProfileDirectoryA@8 |
| 26 | 46 | GetAllUsersProfileDirectoryW@8 |
| 47 | GetAppContainerFolderPath@8 | |
| 48 | GetAppContainerRegistryLocation@8 | |
| 27 | 49 | GetAppliedGPOListA@20 |
| 28 | 50 | GetAppliedGPOListW@20 |
| 29 | 51 | GetDefaultUserProfileDirectoryA@8 |
| 30 | 52 | GetDefaultUserProfileDirectoryW@8 |
| 31 | 53 | GetGPOListA@24 |
| 32 | 54 | GetGPOListW@24 |
| 55 | GetLongProfilePathName@12 | |
| 33 | 56 | GetNextFgPolicyRefreshInfo@8 |
| 34 | 57 | GetPreviousFgPolicyRefreshInfo@8 |
| 35 | 58 | GetProfileType@4 |
| 36 | 59 | GetProfilesDirectoryA@8 |
| 37 | 60 | GetProfilesDirectoryW@8 |
| 38 | 61 | GetUserProfileDirectoryA@12 |
| 62 | GetUserProfileDirectoryForUserSidW@12 | |
| 39 | 63 | GetUserProfileDirectoryW@12 |
| 64 | HasPolicyForegroundProcessingCompleted@20 | |
| 65 | IsAppContainerProfilePresentInternal@12 | |
| 40 | 66 | LeaveCriticalPolicySection@4 |
| 41 | 67 | LoadUserProfileA@8 |
| 42 | 68 | LoadUserProfileW@8 |
| 69 | LookupAppContainerDisplayName@8 | |
| 70 | PingComputer@8 | |
| 43 | 71 | ProcessGroupPolicyCompleted@12 |
| 44 | 72 | ProcessGroupPolicyCompletedEx@16 |
| 45 | 73 | RefreshPolicy@4 |
| 46 | 74 | RefreshPolicyEx@8 |
| 47 | 75 | RegisterGPNotification@8 |
| 76 | RemapProfile@12 | |
| 48 | 77 | RsopAccessCheckByType@44 |
| 49 | 78 | RsopFileAccessCheck@20 |
| 50 | 79 | RsopResetPolicySettingStatus@12 |
| 51 | 80 | RsopSetPolicySettingStatus@20 |
| 52 | 81 | UnloadUserProfile@8 |
| 53 | 82 | UnregisterGPNotification@4 |
| 83 | UpdateAppContainerProfile@28 | |
| 54 | 84 | WaitForMachinePolicyForegroundProcessing@0 |
| 55 | 85 | WaitForUserPolicyForegroundProcessing@0 |
lib/libc/mingw/lib32/vdmdbg.def created+18| ... | ... | @@ -0,0 +1,18 @@ |
| 1 | LIBRARY VDMDBG.dll | |
| 2 | EXPORTS | |
| 3 | VDMBreakThread@8 | |
| 4 | VDMDetectWOW@0 | |
| 5 | VDMEnumProcessWOW@8 | |
| 6 | VDMEnumTaskWOW@12 | |
| 7 | VDMGetModuleSelector@20 | |
| 8 | VDMGetPointer@20 | |
| 9 | VDMGetSelectorModule@32 | |
| 10 | VDMGetThreadContext@8 | |
| 11 | VDMGetThreadSelectorEntry@16 | |
| 12 | VDMGlobalFirst@24 | |
| 13 | VDMGlobalNext@24 | |
| 14 | VDMKillWOW@0 | |
| 15 | VDMModuleFirst@20 | |
| 16 | VDMModuleNext@20 | |
| 17 | VDMProcessException@4 | |
| 18 | VDMSetThreadContext@8 |
lib/libc/mingw/lib32/videoprt.def created+116| ... | ... | @@ -0,0 +1,116 @@ |
| 1 | LIBRARY videoprt.sys | |
| 2 | EXPORTS | |
| 3 | VideoPortAcquireDeviceLock@4 | |
| 4 | VideoPortAcquireSpinLock@12 | |
| 5 | VideoPortAcquireSpinLockAtDpcLevel@8 | |
| 6 | VideoPortAllocateBuffer@12 | |
| 7 | VideoPortAllocateCommonBuffer@24 | |
| 8 | VideoPortAllocateContiguousMemory@16 | |
| 9 | VideoPortAllocatePool@16 | |
| 10 | VideoPortAssociateEventsWithDmaHandle@16 | |
| 11 | ;VideoPortCheckForDeviceExistance | |
| 12 | VideoPortCheckForDeviceExistence@28 | |
| 13 | VideoPortClearEvent@8 | |
| 14 | VideoPortCompareMemory@12 | |
| 15 | VideoPortCompleteDma@16 | |
| 16 | VideoPortCreateEvent@16 | |
| 17 | VideoPortCreateSecondaryDisplay@12 | |
| 18 | VideoPortCreateSpinLock@8 | |
| 19 | VideoPortDDCMonitorHelper@16 | |
| 20 | VideoPortDebugPrint | |
| 21 | VideoPortDeleteEvent@8 | |
| 22 | VideoPortDeleteSpinLock@8 | |
| 23 | VideoPortDisableInterrupt@4 | |
| 24 | VideoPortDoDma@12 | |
| 25 | VideoPortEnableInterrupt@4 | |
| 26 | VideoPortEnumerateChildren@8 | |
| 27 | ;VideoPortFlushRegistry | |
| 28 | VideoPortFreeCommonBuffer@24 | |
| 29 | VideoPortFreeDeviceBase@8 | |
| 30 | VideoPortFreePool@8 | |
| 31 | VideoPortGetAccessRanges@32 | |
| 32 | VideoPortGetAgpServices@8 | |
| 33 | VideoPortGetAssociatedDeviceExtension@4 | |
| 34 | VideoPortGetAssociatedDeviceID@4 | |
| 35 | VideoPortGetBusData@24 | |
| 36 | VideoPortGetBytesUsed@8 | |
| 37 | VideoPortGetCommonBuffer@24 | |
| 38 | VideoPortGetCurrentIrql@0 | |
| 39 | VideoPortGetDeviceBase@20 | |
| 40 | VideoPortGetDeviceData@16 | |
| 41 | VideoPortGetDmaAdapter@8 | |
| 42 | VideoPortGetDmaContext@8 | |
| 43 | VideoPortGetMdl@8 | |
| 44 | VideoPortGetRegistryParameters@20 | |
| 45 | VideoPortGetRomImage@16 | |
| 46 | VideoPortGetVersion@8 | |
| 47 | VideoPortGetVgaStatus@8 | |
| 48 | VideoPortInitialize@16 | |
| 49 | VideoPortInt10@8 | |
| 50 | @VideoPortInterlockedDecrement@4 | |
| 51 | @VideoPortInterlockedExchange@8 | |
| 52 | @VideoPortInterlockedIncrement@4 | |
| 53 | VideoPortLockBuffer@16 | |
| 54 | VideoPortLockPages@20 | |
| 55 | VideoPortLogError@16 | |
| 56 | VideoPortMapBankedMemory@40 | |
| 57 | VideoPortMapDmaMemory@36 | |
| 58 | VideoPortMapMemory@24 | |
| 59 | VideoPortMoveMemory@12 | |
| 60 | VideoPortPutDmaAdapter@8 | |
| 61 | VideoPortQueryPerformanceCounter@8 | |
| 62 | VideoPortQueryServices@12 | |
| 63 | VideoPortQuerySystemTime@4 | |
| 64 | VideoPortQueueDpc@12 | |
| 65 | VideoPortReadPortBufferUchar@12 | |
| 66 | VideoPortReadPortBufferUlong@12 | |
| 67 | VideoPortReadPortBufferUshort@12 | |
| 68 | VideoPortReadPortUchar@4 | |
| 69 | VideoPortReadPortUlong@4 | |
| 70 | VideoPortReadPortUshort@4 | |
| 71 | VideoPortReadRegisterBufferUchar@12 | |
| 72 | VideoPortReadRegisterBufferUlong@12 | |
| 73 | VideoPortReadRegisterBufferUshort@12 | |
| 74 | VideoPortReadRegisterUchar@4 | |
| 75 | VideoPortReadRegisterUlong@4 | |
| 76 | VideoPortReadRegisterUshort@4 | |
| 77 | VideoPortReadStateEvent@8 | |
| 78 | VideoPortRegisterBugcheckCallback@16 | |
| 79 | VideoPortReleaseBuffer@8 | |
| 80 | VideoPortReleaseCommonBuffer@28 | |
| 81 | VideoPortReleaseDeviceLock@4 | |
| 82 | VideoPortReleaseSpinLock@12 | |
| 83 | VideoPortReleaseSpinLockFromDpcLevel@8 | |
| 84 | VideoPortScanRom@16 | |
| 85 | VideoPortSetBusData@24 | |
| 86 | VideoPortSetBytesUsed@12 | |
| 87 | VideoPortSetDmaContext@12 | |
| 88 | VideoPortSetEvent@8 | |
| 89 | VideoPortSetRegistryParameters@16 | |
| 90 | VideoPortSetTrappedEmulatorPorts@12 | |
| 91 | VideoPortSignalDmaComplete@8 | |
| 92 | VideoPortStallExecution@4 | |
| 93 | VideoPortStartDma@32 | |
| 94 | VideoPortStartTimer@4 | |
| 95 | VideoPortStopTimer@4 | |
| 96 | VideoPortSynchronizeExecution@16 | |
| 97 | VideoPortUnlockBuffer@8 | |
| 98 | VideoPortUnlockPages@8 | |
| 99 | VideoPortUnmapDmaMemory@16 | |
| 100 | VideoPortUnmapMemory@12 | |
| 101 | VideoPortVerifyAccessRanges@12 | |
| 102 | VideoPortWaitForSingleObject@12 | |
| 103 | VideoPortWritePortBufferUchar@12 | |
| 104 | VideoPortWritePortBufferUlong@12 | |
| 105 | VideoPortWritePortBufferUshort@12 | |
| 106 | VideoPortWritePortUchar@8 | |
| 107 | VideoPortWritePortUlong@8 | |
| 108 | VideoPortWritePortUshort@8 | |
| 109 | VideoPortWriteRegisterBufferUchar@12 | |
| 110 | VideoPortWriteRegisterBufferUlong@12 | |
| 111 | VideoPortWriteRegisterBufferUshort@12 | |
| 112 | VideoPortWriteRegisterUchar@8 | |
| 113 | VideoPortWriteRegisterUlong@8 | |
| 114 | VideoPortWriteRegisterUshort@8 | |
| 115 | VideoPortZeroDeviceMemory@8 | |
| 116 | VideoPortZeroMemory@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 | ; | |
| 6 | LIBRARY "vss_ps.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow@0 | |
| 9 | DllGetClassObject@12 | |
| 10 | DllRegisterServer@0 | |
| 11 | DllUnregisterServer@0 | |
| 12 | GetProxyDllInfo@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 | ; | |
| 6 | LIBRARY "WdsClient.dll" | |
| 7 | EXPORTS | |
| 8 | CallBack_WdsClient_ConnectToImageStore@8 | |
| 9 | CallBack_WdsClient_DetectWdsMode@8 | |
| 10 | CallBack_WdsClient_GetImageList@8 | |
| 11 | CallBack_WdsClient_ImageSelectionDone@8 | |
| 12 | CallBack_WdsClient_ProcessCmdLine@8 | |
| 13 | GetServerParamsFromBootPacket@8 | |
| 14 | Module_Init_WdsClient@16 | |
| 15 | g_Kernel32 DATA | |
| 16 | g_Mpr DATA | |
| 17 | g_Wdscore DATA | |
| 18 | g_Wdslib DATA | |
| 19 | g_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 | ; | |
| 6 | LIBRARY "WDSCORE.dll" | |
| 7 | EXPORTS | |
| 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) | |
| 140 | WdsGetPointer@4 | |
| 141 | g_Kernel32 DATA | |
| 142 | g_bEnableDiagnosticMode DATA | |
| 143 | ConstructPartialMsgIfA | |
| 144 | ConstructPartialMsgIfW | |
| 145 | ConstructPartialMsgVA@12 | |
| 146 | ConstructPartialMsgVW@12 | |
| 147 | CurrentIP | |
| 148 | EndMajorTask | |
| 149 | EndMinorTask | |
| 150 | GetMajorTask | |
| 151 | GetMajorTaskA | |
| 152 | GetMinorTask | |
| 153 | GetMinorTaskA | |
| 154 | StartMajorTask@4 | |
| 155 | StartMinorTask@4 | |
| 156 | WdsAbortBlackboardItemEnum@4 | |
| 157 | WdsAddModule@16 | |
| 158 | WdsAddUsmtLogStack@12 | |
| 159 | WdsAllocCollection | |
| 160 | WdsCollectionAddValue@12 | |
| 161 | WdsCollectionGetValue@12 | |
| 162 | WdsCopyBlackboardItems@16 | |
| 163 | WdsCopyBlackboardItemsEx@24 | |
| 164 | WdsCreateBlackboard@12 | |
| 165 | WdsDeleteBlackboardValue@12 | |
| 166 | WdsDeleteEvent@4 | |
| 167 | WdsDestroyBlackboard@4 | |
| 168 | WdsDuplicateData@8 | |
| 169 | WdsEnableDiagnosticMode@4 | |
| 170 | WdsEnableExit@4 | |
| 171 | WdsEnableExitEx@8 | |
| 172 | WdsEnumFirstBlackboardItem@20 | |
| 173 | WdsEnumFirstCollectionValue@8 | |
| 174 | WdsEnumNextBlackboardItem@4 | |
| 175 | WdsEnumNextCollectionValue@4 | |
| 176 | WdsExecuteWorkQueue2@24 | |
| 177 | WdsExecuteWorkQueue@24 | |
| 178 | WdsExecuteWorkQueueEx@28 | |
| 179 | WdsExitImmediately@4 | |
| 180 | WdsExitImmediatelyEx@8 | |
| 181 | WdsFreeCollection@4 | |
| 182 | WdsFreeData@4 | |
| 183 | WdsGenericSetupLogInit@8 | |
| 184 | WdsGetAssertFlags | |
| 185 | WdsGetBlackboardBinaryData@24 | |
| 186 | WdsGetBlackboardStringA@20 | |
| 187 | WdsGetBlackboardStringW@20 | |
| 188 | WdsGetBlackboardUintPtr@16 | |
| 189 | WdsGetBlackboardValue@16 | |
| 190 | WdsGetCurrentExecutionGroup@8 | |
| 191 | WdsGetSetupLog | |
| 192 | WdsGetTempDir@12 | |
| 193 | WdsInitialize@28 | |
| 194 | WdsInitializeCallbackArray@12 | |
| 195 | WdsInitializeDataBinary@12 | |
| 196 | WdsInitializeDataStringA@8 | |
| 197 | WdsInitializeDataStringW@8 | |
| 198 | WdsInitializeDataUInt32@8 | |
| 199 | WdsInitializeDataUInt64@12 | |
| 200 | WdsIsDiagnosticModeEnabled | |
| 201 | WdsIterateOfflineQueue@28 | |
| 202 | WdsIterateQueue@28 | |
| 203 | WdsLockBlackboardValue@16 | |
| 204 | WdsLockExecutionGroup | |
| 205 | WdsLogCreate@12 | |
| 206 | WdsLogDestroy@4 | |
| 207 | WdsLogRegStockProviders | |
| 208 | WdsLogRegisterProvider@8 | |
| 209 | WdsLogStructuredException@4 | |
| 210 | WdsLogUnRegStockProviders | |
| 211 | WdsLogUnRegisterProvider@4 | |
| 212 | WdsPackCollection@8 | |
| 213 | WdsPublish@24 | |
| 214 | WdsPublishEx@28 | |
| 215 | WdsPublishImmediateAsync@24 | |
| 216 | WdsPublishImmediateEx@20 | |
| 217 | WdsPublishOffline@24 | |
| 218 | WdsSeqAlloc@8 | |
| 219 | WdsSeqFree@4 | |
| 220 | WdsSetAssertFlags@4 | |
| 221 | WdsSetBlackboardValue@16 | |
| 222 | WdsSetNextExecutionGroup@4 | |
| 223 | WdsSetUILanguage@4 | |
| 224 | WdsSetupLogDestroy | |
| 225 | WdsSetupLogInit@12 | |
| 226 | WdsSetupLogMessageA@44 | |
| 227 | WdsSetupLogMessageW@44 | |
| 228 | WdsSubscribeEx@20 | |
| 229 | WdsTerminate | |
| 230 | WdsUnlockExecutionGroup | |
| 231 | WdsUnpackCollection@4 | |
| 232 | WdsUnsubscribe@4 | |
| 233 | WdsUnsubscribeEx@16 | |
| 234 | WdsValidBlackboard@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 | ; | |
| 6 | LIBRARY "WDSCSL.dll" | |
| 7 | EXPORTS | |
| 8 | WdsClientExecute@32 | |
| 9 | WdsClientInitializeLibrary | |
| 10 | WdsClientPacketAllocate@4 | |
| 11 | WdsClientPacketFree@4 | |
| 12 | WdsClientRegisterTrace@4 | |
| 13 | WdsClientSessionCreate@16 | |
| 14 | WdsClientSessionExecute@28 | |
| 15 | WdsClientSessionShutdown@4 | |
| 16 | WdsCpPacketGetBuffer@12 | |
| 17 | WdsCpPacketInitialize@12 | |
| 18 | WdsCpPacketRelease@4 | |
| 19 | WdsCpParameterAdd@20 | |
| 20 | WdsCpParameterDelete@8 | |
| 21 | WdsCpParameterQuery@24 | |
| 22 | WdsCpParameterValidate@28 | |
| 23 | WdsCpRecvPacketInitialize@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 | ; | |
| 6 | LIBRARY "WdsImage.dll" | |
| 7 | EXPORTS | |
| 8 | FindFirstImage@8 | |
| 9 | FindNextImage@4 | |
| 10 | WDSFreeImageInformation@4 | |
| 11 | WDSGetImageInformation@8 | |
| 12 | WDSInitializeEmptyImageInformation@4 | |
| 13 | WDSParseImageInformation@12 | |
| 14 | WDSSetImageInformation@8 | |
| 15 | WdsImgAddReference@4 | |
| 16 | WdsImgApplyImage@20 | |
| 17 | WdsImgCaptureImage@40 | |
| 18 | WdsImgClose@4 | |
| 19 | WdsImgCopyImage@12 | |
| 20 | WdsImgCreateImageGroup@20 | |
| 21 | WdsImgDeleteImage@4 | |
| 22 | WdsImgDeleteImageGroup@4 | |
| 23 | WdsImgDeleteUnattendFile@4 | |
| 24 | WdsImgExportImage@36 | |
| 25 | WdsImgExtractFiles@20 | |
| 26 | WdsImgFindFirstImage@16 | |
| 27 | WdsImgFindFirstImageGroup@12 | |
| 28 | WdsImgFindNextImage@4 | |
| 29 | WdsImgFindNextImageGroup@4 | |
| 30 | WdsImgGetArchitecture@8 | |
| 31 | WdsImgGetBootIndex@8 | |
| 32 | WdsImgGetCompressionType@8 | |
| 33 | WdsImgGetCreationTime@8 | |
| 34 | WdsImgGetDependantFiles@12 | |
| 35 | WdsImgGetDescription@8 | |
| 36 | WdsImgGetEnabled@8 | |
| 37 | WdsImgGetExFlags@8 | |
| 38 | WdsImgGetFlags@8 | |
| 39 | WdsImgGetHalName@8 | |
| 40 | WdsImgGetHandleFromFindHandle@8 | |
| 41 | WdsImgGetImageType@8 | |
| 42 | WdsImgGetIndex@8 | |
| 43 | WdsImgGetLanguage@8 | |
| 44 | WdsImgGetLanguages@12 | |
| 45 | WdsImgGetLastModifiedTime@8 | |
| 46 | WdsImgGetName@8 | |
| 47 | WdsImgGetPartitionStyle@8 | |
| 48 | WdsImgGetPath@8 | |
| 49 | WdsImgGetProductFamily@8 | |
| 50 | WdsImgGetProductName@8 | |
| 51 | WdsImgGetResourcePath@8 | |
| 52 | WdsImgGetSecurity@8 | |
| 53 | WdsImgGetServicePackLevel@8 | |
| 54 | WdsImgGetSize@8 | |
| 55 | WdsImgGetSystemRoot@8 | |
| 56 | WdsImgGetUnattendFilePresent@8 | |
| 57 | WdsImgGetVersion@8 | |
| 58 | WdsImgGetXml@8 | |
| 59 | WdsImgGroupCanImportImage@8 | |
| 60 | WdsImgGroupGetName@8 | |
| 61 | WdsImgGroupGetSecurity@8 | |
| 62 | WdsImgGroupSetName@8 | |
| 63 | WdsImgGroupSetSecurity@8 | |
| 64 | WdsImgImportImage@32 | |
| 65 | WdsImgIsAccessible@8 | |
| 66 | WdsImgIsBootImage@8 | |
| 67 | WdsImgIsFoundationImage@8 | |
| 68 | WdsImgIsValidImageFile@8 | |
| 69 | WdsImgOpenBootImageGroup@12 | |
| 70 | WdsImgOpenImage@16 | |
| 71 | WdsImgOpenImageGroup@12 | |
| 72 | WdsImgOpenImageStore@8 | |
| 73 | WdsImgRefreshData@4 | |
| 74 | WdsImgReplaceImage@32 | |
| 75 | WdsImgSetBootImage@8 | |
| 76 | WdsImgSetDescription@8 | |
| 77 | WdsImgSetEnabled@8 | |
| 78 | WdsImgSetName@8 | |
| 79 | WdsImgSetSecurity@8 | |
| 80 | WdsImgSetUnattendFile@12 | |
| 81 | WdsImgVerifyImageFile@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 | ; | |
| 6 | LIBRARY "WdsUpgCompl.dll" | |
| 7 | EXPORTS | |
| 8 | WdsUpgradeComplianceCheck@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 | ; | |
| 6 | LIBRARY "WDSUTIL.dll" | |
| 7 | EXPORTS | |
| 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) | |
| 348 | DiskRegionSupportsCapabilityForType@28 | |
| 349 | DiskSupportsCapabilityForType@20 | |
| 350 | FreeReason@4 | |
| 351 | GetApplicableDiskReason@20 | |
| 352 | GetApplicableDiskRegionReason@28 | |
| 353 | ; protected: struct _BLACKBOARD *__thiscall CUserSetting::GetBlackboard(void) | |
| 354 | ?GetBlackboard@CUserSetting@@IAEPAU_BLACKBOARD@@XZ | |
| 355 | GetDiskKey@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 | |
| 360 | GetRegionKey@16 | |
| 361 | ; public: static int __stdcall CUpgradeUserSetting::IsUpgrade(void) | |
| 362 | ?IsUpgrade@CUpgradeUserSetting@@SGHXZ | |
| 363 | LogDiskReasons@8 | |
| 364 | LogDiskRegionReasons@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) | |
| 515 | CallbackGetArgumentInt32@12 | |
| 516 | CallbackGetArgumentString@12 | |
| 517 | CallbackGetArgumentUInt64@12 | |
| 518 | IsCrossArchitectureInstall@8 | |
| 519 | PublishMessage | |
| 520 | SignalSetupComplianceBlock@8 | |
| 521 | WdsCollectionAddString@12 | |
| 522 | WdsCollectionAddUInt32@12 | |
| 523 | WdsCollectionAddUInt64@16 | |
| 524 | WdsPickTempDriveBasedOnInstallDrive@20 | |
| 525 | WdsValidateInstallDrive@20 |
lib/libc/mingw/lib32/webauthn.def created+57| ... | ... | @@ -0,0 +1,57 @@ |
| 1 | LIBRARY "webauthn.dll" | |
| 2 | EXPORTS | |
| 3 | CryptsvcDllCtrl@16 | |
| 4 | I_WebAuthNCtapDecodeGetAssertionRpcResponse@32 | |
| 5 | I_WebAuthNCtapDecodeMakeCredentialRpcResponse@24 | |
| 6 | I_WebAuthNCtapEncodeGetAssertionRpcRequest@56 | |
| 7 | I_WebAuthNCtapEncodeMakeCredentialRpcRequest@56 | |
| 8 | WebAuthNAuthenticatorGetAssertion@20 | |
| 9 | WebAuthNAuthenticatorMakeCredential@28 | |
| 10 | WebAuthNCancelCurrentOperation@4 | |
| 11 | WebAuthNCtapChangeClientPin@28 | |
| 12 | WebAuthNCtapChangeClientPinForSelectedDevice@24 | |
| 13 | WebAuthNCtapFreeSelectedDeviceInformation@4 | |
| 14 | WebAuthNCtapGetAssertion@52 | |
| 15 | WebAuthNCtapGetSupportedTransports@8 | |
| 16 | WebAuthNCtapGetWnfLocalizedString@24 | |
| 17 | WebAuthNCtapIsStopSendCommandError@4 | |
| 18 | WebAuthNCtapMakeCredential@52 | |
| 19 | WebAuthNCtapManageAuthenticatePin@20 | |
| 20 | WebAuthNCtapManageCancelEnrollFingerprint@8 | |
| 21 | WebAuthNCtapManageChangePin@24 | |
| 22 | WebAuthNCtapManageClose@4 | |
| 23 | WebAuthNCtapManageDeleteCredential@16 | |
| 24 | WebAuthNCtapManageEnrollFingerprint@24 | |
| 25 | WebAuthNCtapManageFreeDisplayCredentials@4 | |
| 26 | WebAuthNCtapManageGetDisplayCredentials@12 | |
| 27 | WebAuthNCtapManageRemoveFingerprints@8 | |
| 28 | WebAuthNCtapManageResetDevice@8 | |
| 29 | WebAuthNCtapManageSelect@16 | |
| 30 | WebAuthNCtapManageSetPin@16 | |
| 31 | WebAuthNCtapParseAuthenticatorData@16 | |
| 32 | WebAuthNCtapResetDevice@12 | |
| 33 | WebAuthNCtapRpcGetAssertionUserList@24 | |
| 34 | WebAuthNCtapRpcGetCborCommand@12 | |
| 35 | WebAuthNCtapRpcSelectGetAssertion@20 | |
| 36 | WebAuthNCtapSendCommand@28 | |
| 37 | WebAuthNCtapSetClientPin@20 | |
| 38 | WebAuthNCtapStartDeviceChangeNotify@0 | |
| 39 | WebAuthNCtapStopDeviceChangeNotify@0 | |
| 40 | WebAuthNCtapVerifyGetAssertion@20 | |
| 41 | WebAuthNDecodeAccountInformation@12 | |
| 42 | WebAuthNDeletePlatformCredential@8 | |
| 43 | WebAuthNEncodeAccountInformation@12 | |
| 44 | WebAuthNFreeAssertion@4 | |
| 45 | WebAuthNFreeCredentialAttestation@4 | |
| 46 | WebAuthNFreeDecodedAccountInformation@4 | |
| 47 | WebAuthNFreeEncodedAccountInformation@4 | |
| 48 | WebAuthNFreePlatformCredentials@4 | |
| 49 | WebAuthNFreeUserEntityList@4 | |
| 50 | WebAuthNGetApiVersionNumber@0 | |
| 51 | WebAuthNGetCancellationId@4 | |
| 52 | WebAuthNGetCoseAlgorithmIdentifier@8 | |
| 53 | WebAuthNGetCredentialIdFromAuthenticatorData@16 | |
| 54 | WebAuthNGetErrorName@4 | |
| 55 | WebAuthNGetPlatformCredentials@12 | |
| 56 | WebAuthNGetW3CExceptionDOMError@4 | |
| 57 | WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable@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 | ; | |
| 6 | LIBRARY "webservices.dll" | |
| 7 | EXPORTS | |
| 8 | WsAbandonCall@12 | |
| 9 | WsAbandonMessage@12 | |
| 10 | WsAbortChannel@8 | |
| 11 | WsAbortListener@8 | |
| 12 | WsAbortServiceHost@8 | |
| 13 | WsAbortServiceProxy@8 | |
| 14 | WsAcceptChannel@16 | |
| 15 | WsAddCustomHeader@28 | |
| 16 | WsAddErrorString@8 | |
| 17 | WsAddMappedHeader@28 | |
| 18 | WsAddressMessage@12 | |
| 19 | WsAlloc@16 | |
| 20 | WsAsyncExecute@24 | |
| 21 | WsCall@32 | |
| 22 | WsCheckMustUnderstandHeaders@8 | |
| 23 | WsCloseChannel@12 | |
| 24 | WsCloseListener@12 | |
| 25 | WsCloseServiceHost@12 | |
| 26 | WsCloseServiceProxy@12 | |
| 27 | WsCombineUrl@24 | |
| 28 | WsCopyError@8 | |
| 29 | WsCopyNode@12 | |
| 30 | WsCreateChannel@28 | |
| 31 | WsCreateChannelForListener@20 | |
| 32 | WsCreateError@12 | |
| 33 | WsCreateFaultFromError@20 | |
| 34 | WsCreateHeap@24 | |
| 35 | WsCreateListener@28 | |
| 36 | WsCreateMessage@24 | |
| 37 | WsCreateMessageForChannel@20 | |
| 38 | WsCreateMetadata@16 | |
| 39 | WsCreateReader@16 | |
| 40 | WsCreateServiceEndpointFromTemplate@56 | |
| 41 | WsCreateServiceHost@24 | |
| 42 | WsCreateServiceProxy@36 | |
| 43 | WsCreateServiceProxyFromTemplate@40 | |
| 44 | WsCreateWriter@16 | |
| 45 | WsCreateXmlBuffer@20 | |
| 46 | WsCreateXmlSecurityToken@24 | |
| 47 | WsDateTimeToFileTime@12 | |
| 48 | WsDecodeUrl@20 | |
| 49 | WsEncodeUrl@20 | |
| 50 | WsEndReaderCanonicalization@8 | |
| 51 | WsEndWriterCanonicalization@8 | |
| 52 | WsFileTimeToDateTime@12 | |
| 53 | WsFillBody@16 | |
| 54 | WsFillReader@16 | |
| 55 | WsFindAttribute@24 | |
| 56 | WsFlushBody@16 | |
| 57 | WsFlushWriter@16 | |
| 58 | WsFreeChannel@4 | |
| 59 | WsFreeError@4 | |
| 60 | WsFreeHeap@4 | |
| 61 | WsFreeListener@4 | |
| 62 | WsFreeMessage@4 | |
| 63 | WsFreeMetadata@4 | |
| 64 | WsFreeReader@4 | |
| 65 | WsFreeSecurityToken@4 | |
| 66 | WsFreeServiceHost@4 | |
| 67 | WsFreeServiceProxy@4 | |
| 68 | WsFreeWriter@4 | |
| 69 | WsGetChannelProperty@20 | |
| 70 | WsGetCustomHeader@40 | |
| 71 | WsGetDictionary@12 | |
| 72 | WsGetErrorProperty@16 | |
| 73 | WsGetErrorString@12 | |
| 74 | WsGetFaultErrorDetail@24 | |
| 75 | WsGetFaultErrorProperty@16 | |
| 76 | WsGetHeader@32 | |
| 77 | WsGetHeaderAttributes@16 | |
| 78 | WsGetHeapProperty@20 | |
| 79 | WsGetListenerProperty@20 | |
| 80 | WsGetMappedHeader@40 | |
| 81 | WsGetMessageProperty@20 | |
| 82 | WsGetMetadataEndpoints@12 | |
| 83 | WsGetMetadataProperty@20 | |
| 84 | WsGetMissingMetadataDocumentAddress@12 | |
| 85 | WsGetNamespaceFromPrefix@20 | |
| 86 | WsGetOperationContextProperty@20 | |
| 87 | WsGetPolicyAlternativeCount@12 | |
| 88 | WsGetPolicyProperty@20 | |
| 89 | WsGetPrefixFromNamespace@20 | |
| 90 | WsGetReaderNode@12 | |
| 91 | WsGetReaderPosition@12 | |
| 92 | WsGetReaderProperty@20 | |
| 93 | WsGetSecurityContextProperty@20 | |
| 94 | WsGetSecurityTokenProperty@24 | |
| 95 | WsGetServiceHostProperty@20 | |
| 96 | WsGetServiceProxyProperty@20 | |
| 97 | WsGetWriterPosition@12 | |
| 98 | WsGetWriterProperty@20 | |
| 99 | WsGetXmlAttribute@24 | |
| 100 | WsInitializeMessage@16 | |
| 101 | WsMarkHeaderAsUnderstood@12 | |
| 102 | WsMatchPolicyAlternative@24 | |
| 103 | WsMoveReader@16 | |
| 104 | WsMoveWriter@16 | |
| 105 | WsOpenChannel@16 | |
| 106 | WsOpenListener@16 | |
| 107 | WsOpenServiceHost@12 | |
| 108 | WsOpenServiceProxy@16 | |
| 109 | WsPullBytes@16 | |
| 110 | WsPushBytes@16 | |
| 111 | WsReadArray@40 | |
| 112 | WsReadAttribute@28 | |
| 113 | WsReadBody@28 | |
| 114 | WsReadBytes@20 | |
| 115 | WsReadChars@20 | |
| 116 | WsReadCharsUtf8@20 | |
| 117 | WsReadElement@28 | |
| 118 | WsReadEndAttribute@8 | |
| 119 | WsReadEndElement@8 | |
| 120 | WsReadEndpointAddressExtension@32 | |
| 121 | WsReadEnvelopeEnd@8 | |
| 122 | WsReadEnvelopeStart@20 | |
| 123 | WsReadMessageEnd@16 | |
| 124 | WsReadMessageStart@16 | |
| 125 | WsReadMetadata@16 | |
| 126 | WsReadNode@8 | |
| 127 | WsReadQualifiedName@24 | |
| 128 | WsReadStartAttribute@12 | |
| 129 | WsReadStartElement@8 | |
| 130 | WsReadToStartElement@20 | |
| 131 | WsReadType@36 | |
| 132 | WsReadValue@20 | |
| 133 | WsReadXmlBuffer@16 | |
| 134 | WsReadXmlBufferFromBytes@36 | |
| 135 | WsReceiveMessage@48 | |
| 136 | WsRegisterOperationForCancel@20 | |
| 137 | WsRemoveCustomHeader@16 | |
| 138 | WsRemoveHeader@12 | |
| 139 | WsRemoveMappedHeader@12 | |
| 140 | WsRemoveNode@8 | |
| 141 | WsRequestReply@56 | |
| 142 | WsRequestSecurityToken@24 | |
| 143 | WsResetChannel@8 | |
| 144 | WsResetError@4 | |
| 145 | WsResetHeap@8 | |
| 146 | WsResetListener@8 | |
| 147 | WsResetMessage@8 | |
| 148 | WsResetMetadata@8 | |
| 149 | WsResetServiceHost@8 | |
| 150 | WsResetServiceProxy@8 | |
| 151 | WsRevokeSecurityContext@8 | |
| 152 | WsSendFaultMessageForError@32 | |
| 153 | WsSendMessage@32 | |
| 154 | WsSendReplyMessage@36 | |
| 155 | WsSetChannelProperty@20 | |
| 156 | WsSetErrorProperty@16 | |
| 157 | WsSetFaultErrorDetail@20 | |
| 158 | WsSetFaultErrorProperty@16 | |
| 159 | WsSetHeader@28 | |
| 160 | WsSetInput@24 | |
| 161 | WsSetInputToBuffer@20 | |
| 162 | WsSetListenerProperty@20 | |
| 163 | WsSetMessageProperty@20 | |
| 164 | WsSetOutput@24 | |
| 165 | WsSetOutputToBuffer@20 | |
| 166 | WsSetReaderPosition@12 | |
| 167 | WsSetWriterPosition@12 | |
| 168 | WsShutdownSessionChannel@12 | |
| 169 | WsSkipNode@8 | |
| 170 | WsStartReaderCanonicalization@24 | |
| 171 | WsStartWriterCanonicalization@24 | |
| 172 | WsTrimXmlWhitespace@20 | |
| 173 | WsVerifyXmlNCName@12 | |
| 174 | WsWriteArray@36 | |
| 175 | WsWriteAttribute@24 | |
| 176 | WsWriteBody@24 | |
| 177 | WsWriteBytes@16 | |
| 178 | WsWriteChars@16 | |
| 179 | WsWriteCharsUtf8@16 | |
| 180 | WsWriteElement@24 | |
| 181 | WsWriteEndAttribute@8 | |
| 182 | WsWriteEndCData@8 | |
| 183 | WsWriteEndElement@8 | |
| 184 | WsWriteEndStartElement@8 | |
| 185 | WsWriteEnvelopeEnd@8 | |
| 186 | WsWriteEnvelopeStart@20 | |
| 187 | WsWriteMessageEnd@16 | |
| 188 | WsWriteMessageStart@16 | |
| 189 | WsWriteNode@12 | |
| 190 | WsWriteQualifiedName@20 | |
| 191 | WsWriteStartAttribute@24 | |
| 192 | WsWriteStartCData@8 | |
| 193 | WsWriteStartElement@20 | |
| 194 | WsWriteText@12 | |
| 195 | WsWriteType@32 | |
| 196 | WsWriteValue@20 | |
| 197 | WsWriteXmlBuffer@12 | |
| 198 | WsWriteXmlBufferToBytes@36 | |
| 199 | WsWriteXmlnsAttribute@20 | |
| 200 | WsXmlStringEquals@12 |
lib/libc/mingw/lib32/wer.def+26-14| ... | ... | @@ -5,6 +5,27 @@ |
| 5 | 5 | ; |
| 6 | 6 | LIBRARY "wer.dll" |
| 7 | 7 | EXPORTS |
| 8 | WerAddExcludedApplication@8 | |
| 9 | WerFreeString@4 | |
| 10 | WerRemoveExcludedApplication@8 | |
| 11 | WerReportAddDump@28 | |
| 12 | WerReportAddFile@16 | |
| 13 | WerReportCloseHandle@4 | |
| 14 | WerReportCreate@16 | |
| 15 | WerReportSetParameter@16 | |
| 16 | WerReportSetUIOption@12 | |
| 17 | WerReportSubmit@16 | |
| 18 | WerStoreClose@4 | |
| 19 | WerStoreGetFirstReportKey@8 | |
| 20 | WerStoreGetNextReportKey@8 | |
| 21 | WerStoreGetReportCount@8 | |
| 22 | WerStoreGetSizeOnDisk@8 | |
| 23 | WerStoreOpen@8 | |
| 24 | WerStorePurge@0 | |
| 25 | WerStoreQueryReportMetadataV1@12 | |
| 26 | WerStoreQueryReportMetadataV2@12 | |
| 27 | WerStoreQueryReportMetadataV3@12 | |
| 28 | WerStoreUploadReport@16 | |
| 8 | 29 | WerSysprepCleanup@0 |
| 9 | 30 | WerSysprepGeneralize@0 |
| 10 | 31 | WerSysprepSpecialize@0 |
| ... | ... | @@ -35,6 +56,7 @@ WerpGetFilePathByIndex@12 |
| 35 | 56 | WerpGetNumFiles@8 |
| 36 | 57 | WerpGetNumSecParams@8 |
| 37 | 58 | WerpGetNumSigParams@8 |
| 59 | WerpGetReportConsent@12 | |
| 38 | 60 | WerpGetReportFinalConsent@8 |
| 39 | 61 | WerpGetReportFlags@8 |
| 40 | 62 | WerpGetReportInformation@8 |
| ... | ... | @@ -50,13 +72,17 @@ WerpGetTextFromReport@12 |
| 50 | 72 | WerpGetUIParamByIndex@12 |
| 51 | 73 | WerpGetUploadTime@8 |
| 52 | 74 | WerpGetWerStringData@4 |
| 75 | WerpIsDisabled@8 | |
| 53 | 76 | WerpIsTransportAvailable@0 |
| 54 | 77 | WerpLoadReport@16 |
| 55 | 78 | WerpOpenMachineArchive@8 |
| 56 | 79 | WerpOpenMachineQueue@8 |
| 57 | 80 | WerpOpenUserArchive@8 |
| 81 | WerpOpenUserQueue@8 | |
| 82 | WerpPromtUser@16 | |
| 58 | 83 | WerpReportCancel@4 |
| 59 | 84 | WerpRestartApplication@20 |
| 85 | WerpSetCallBack@12 | |
| 60 | 86 | WerpSetDynamicParameter@16 |
| 61 | 87 | WerpSetEventName@8 |
| 62 | 88 | WerpSetReportFlags@8 |
| ... | ... | @@ -68,17 +94,3 @@ WerpShowSecondLevelConsent@12 |
| 68 | 94 | WerpShowUpsellUI@8 |
| 69 | 95 | WerpSubmitReportFromStore@28 |
| 70 | 96 | WerpSvcReportFromMachineQueue@8 |
| 71 | WerAddExcludedApplication@8 | |
| 72 | WerRemoveExcludedApplication@8 | |
| 73 | WerReportAddDump@28 | |
| 74 | WerReportAddFile@16 | |
| 75 | WerReportCloseHandle@4 | |
| 76 | WerReportCreate@16 | |
| 77 | WerReportSetParameter@16 | |
| 78 | WerReportSetUIOption@12 | |
| 79 | WerReportSubmit@16 | |
| 80 | WerpGetReportConsent@12 | |
| 81 | WerpIsDisabled@8 | |
| 82 | WerpOpenUserQueue@8 | |
| 83 | WerpPromtUser@16 | |
| 84 | WerpSetCallBack@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 | ; | |
| 6 | LIBRARY "WEVTFWD.DLL" | |
| 7 | EXPORTS | |
| 8 | WSManProvPullEvents@16 | |
| 9 | WSManProvShutdown@12 | |
| 10 | WSManProvStartup@16 | |
| 11 | WSManProvSubscribe@40 | |
| 12 | WSManProvUnsubscribe@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 | ; | |
| 6 | LIBRARY "WIADSS.DLL" | |
| 7 | EXPORTS | |
| 8 | FindFirstImportDS@8 | |
| 9 | FindNextImportDS@8 | |
| 10 | CloseFindContext@4 | |
| 11 | LoadImportDS@16 | |
| 12 | UnloadImportDS@4 | |
| 13 | GetLoaderStatus@4 | |
| 14 | FindImportDSByDeviceName@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 | ; | |
| 6 | LIBRARY "WIMGAPI.DLL" | |
| 7 | EXPORTS | |
| 8 | ;DllCanUnloadNow@0 | |
| 9 | ;DllMain@12 | |
| 10 | WIMAddImagePath@16 | |
| 11 | WIMAddImagePaths@20 | |
| 12 | WIMAddWimbootEntry@16 | |
| 13 | WIMApplyImage@12 | |
| 14 | WIMCaptureImage@12 | |
| 15 | WIMCloseHandle@4 | |
| 16 | WIMCommitImageHandle@12 | |
| 17 | WIMCopyFile@24 | |
| 18 | WIMCreateFile@24 | |
| 19 | WIMCreateImageFile@20 | |
| 20 | WIMCreateWofCompressedFile@12 | |
| 21 | WIMDeleteImage@8 | |
| 22 | WIMDeleteImageMounts@4 | |
| 23 | WIMEnumImageFiles@16 | |
| 24 | WIMExportImage@12 | |
| 25 | WIMExtractImageDirectory@16 | |
| 26 | WIMExtractImagePath@16 | |
| 27 | WIMFindFirstImageFile@12 | |
| 28 | WIMFindNextImageFile@8 | |
| 29 | WIMGetAttributes@12 | |
| 30 | WIMGetImageCount@4 | |
| 31 | WIMGetImageInformation@12 | |
| 32 | WIMGetMessageCallbackCount@4 | |
| 33 | WIMGetMountedImageHandle@16 | |
| 34 | WIMGetMountedImageInfo@20 | |
| 35 | WIMGetMountedImageInfoFromHandle@20 | |
| 36 | WIMGetMountedImages@8 | |
| 37 | WIMGetWIMBootEntries@12 | |
| 38 | WIMGetWIMBootWIMPath@8 | |
| 39 | WIMInitFileIOCallbacks@4 | |
| 40 | WIMInitializeWofDriver@8 | |
| 41 | WIMIsCurrentSystemWimboot@0 | |
| 42 | WIMIsReferenceWim@20 | |
| 43 | WIMLoadImage@8 | |
| 44 | WIMMountImage@16 | |
| 45 | WIMMountImageHandle@12 | |
| 46 | WIMProcessCustomImage@12 | |
| 47 | WIMReadFileEx@20 | |
| 48 | WIMReadImageFile@20 | |
| 49 | WIMRedirectFolderBeforeApply@12 | |
| 50 | WIMRegisterLogFile@8 | |
| 51 | WIMRegisterMessageCallback@12 | |
| 52 | WIMRemountImage@8 | |
| 53 | WIMSetBootImage@8 | |
| 54 | WIMSetFileIOCallbackTemporaryPath@4 | |
| 55 | WIMSetImageInformation@12 | |
| 56 | WIMSetImageUserSpecifiedCreationTime@8 | |
| 57 | WIMSetReferenceFile@12 | |
| 58 | WIMSetTemporaryPath@8 | |
| 59 | WIMSetWimGuid@8 | |
| 60 | WIMSingleInstanceFile@16 | |
| 61 | WIMSplitFile@16 | |
| 62 | WIMUnmountImage@16 | |
| 63 | WIMUnmountImageHandle@8 | |
| 64 | WIMUnregisterLogFile@4 | |
| 65 | WIMUnregisterMessageCallback@8 | |
| 66 | WIMUpdateWIMBootEntry@16 | |
| 67 | WIMWriteFileWithIntegrity@16 |
lib/libc/mingw/lib32/win32k.def created+226| ... | ... | @@ -0,0 +1,226 @@ |
| 1 | LIBRARY win32k.sys | |
| 2 | EXPORTS | |
| 3 | BRUSHOBJ_hGetColorTransform@4 | |
| 4 | BRUSHOBJ_pvAllocRbrush@8 | |
| 5 | BRUSHOBJ_pvGetRbrush@4 | |
| 6 | BRUSHOBJ_ulGetBrushColor@4 | |
| 7 | CLIPOBJ_bEnum@12 | |
| 8 | CLIPOBJ_cEnumStart@20 | |
| 9 | CLIPOBJ_ppoGetPath@4 | |
| 10 | EngAcquireSemaphore@4 | |
| 11 | EngAllocMem@12 | |
| 12 | EngAllocPrivateUserMem@12 | |
| 13 | ;EngAllocSectionMem@16 | |
| 14 | EngAllocUserMem@8 | |
| 15 | EngAlphaBlend@28 | |
| 16 | EngAssociateSurface@12 | |
| 17 | EngBitBlt@44 | |
| 18 | EngCheckAbort@4 | |
| 19 | EngClearEvent@4 | |
| 20 | EngComputeGlyphSet@12 | |
| 21 | EngControlSprites@8 | |
| 22 | EngCopyBits@24 | |
| 23 | EngCreateBitmap@24 | |
| 24 | EngCreateClip@0 | |
| 25 | EngCreateDeviceBitmap@16 | |
| 26 | EngCreateDeviceSurface@16 | |
| 27 | ;EngCreateDriverObj@12 | |
| 28 | EngCreateEvent@4 | |
| 29 | EngCreatePalette@24 | |
| 30 | EngCreatePath@0 | |
| 31 | EngCreateSemaphore@0 | |
| 32 | EngCreateWnd@20 | |
| 33 | EngDebugBreak@0 | |
| 34 | EngDebugPrint@12 | |
| 35 | EngDeleteClip@4 | |
| 36 | EngDeleteDriverObj@12 | |
| 37 | EngDeleteEvent@4 | |
| 38 | EngDeleteFile@4 | |
| 39 | EngDeletePalette@4 | |
| 40 | EngDeletePath@4 | |
| 41 | EngDeleteSafeSemaphore@4 | |
| 42 | EngDeleteSemaphore@4 | |
| 43 | EngDeleteSurface@4 | |
| 44 | EngDeleteWnd@4 | |
| 45 | EngDeviceIoControl@28 | |
| 46 | EngDitherColor@16 | |
| 47 | ;EngDxIoctl@12 | |
| 48 | EngEnumForms@24 | |
| 49 | EngEraseSurface@12 | |
| 50 | ;EngFileIoControl@28 | |
| 51 | ;EngFileWrite@16 | |
| 52 | EngFillPath@28 | |
| 53 | EngFindImageProcAddress@8 | |
| 54 | EngFindResource@16 | |
| 55 | EngFntCacheAlloc@8 | |
| 56 | EngFntCacheFault@8 | |
| 57 | EngFntCacheLookUp@8 | |
| 58 | EngFreeMem@4 | |
| 59 | EngFreeModule@4 | |
| 60 | EngFreePrivateUserMem@8 | |
| 61 | ;EngFreeSectionMem@8 | |
| 62 | EngFreeUserMem@4 | |
| 63 | EngGetCurrentCodePage@8 | |
| 64 | EngGetCurrentProcessId@0 | |
| 65 | EngGetCurrentThreadId@0 | |
| 66 | EngGetDriverName@4 | |
| 67 | EngGetFileChangeTime@8 | |
| 68 | EngGetFilePath@8 | |
| 69 | EngGetForm@24 | |
| 70 | EngGetLastError@0 | |
| 71 | EngGetPrinter@20 | |
| 72 | EngGetPrinterData@24 | |
| 73 | EngGetPrinterDataFileName@4 | |
| 74 | EngGetPrinterDriver@24 | |
| 75 | EngGetProcessHandle@0 | |
| 76 | ;EngGetTickCount@0 | |
| 77 | EngGetType1FontList@24 | |
| 78 | EngGradientFill@40 | |
| 79 | EngHangNotification@8 | |
| 80 | EngInitializeSafeSemaphore@4 | |
| 81 | EngIsSemaphoreOwned@4 | |
| 82 | EngIsSemaphoreOwnedByCurrentThread@4 | |
| 83 | EngLineTo@36 | |
| 84 | EngLoadImage@4 | |
| 85 | EngLoadModule@4 | |
| 86 | EngLoadModuleForWrite@8 | |
| 87 | EngLockDirectDrawSurface@4 | |
| 88 | ;EngLockDriverObj@4 | |
| 89 | EngLockSurface@4 | |
| 90 | EngLpkInstalled@0 | |
| 91 | EngMapEvent@20 | |
| 92 | EngMapFile@12 | |
| 93 | EngMapFontFile@12 | |
| 94 | EngMapFontFileFD@12 | |
| 95 | EngMapModule@8 | |
| 96 | ;EngMapSection@16 | |
| 97 | EngMarkBandingSurface@4 | |
| 98 | EngModifySurface@32 | |
| 99 | EngMovePointer@16 | |
| 100 | EngMulDiv@12 | |
| 101 | EngMultiByteToUnicodeN@20 | |
| 102 | EngMultiByteToWideChar@20 | |
| 103 | ;EngNineGrid@36 | |
| 104 | EngPaint@20 | |
| 105 | EngPlgBlt@44 | |
| 106 | EngProbeForRead@12 | |
| 107 | EngProbeForReadAndWrite@12 | |
| 108 | EngQueryDeviceAttribute@24 | |
| 109 | EngQueryLocalTime@4 | |
| 110 | EngQueryPalette@16 | |
| 111 | EngQueryPerformanceCounter@4 | |
| 112 | EngQueryPerformanceFrequency@4 | |
| 113 | EngQuerySystemAttribute@8 | |
| 114 | EngReadStateEvent@4 | |
| 115 | EngReleaseSemaphore@4 | |
| 116 | EngRestoreFloatingPointState@4 | |
| 117 | EngSaveFloatingPointState@8 | |
| 118 | EngSecureMem@8 | |
| 119 | EngSetEvent@4 | |
| 120 | EngSetLastError@4 | |
| 121 | EngSetPointerShape@40 | |
| 122 | EngSetPointerTag@20 | |
| 123 | EngSetPrinterData@20 | |
| 124 | EngSort@16 | |
| 125 | EngStretchBlt@44 | |
| 126 | EngStretchBltROP@52 | |
| 127 | EngStrokeAndFillPath@40 | |
| 128 | EngStrokePath@32 | |
| 129 | EngTextOut@40 | |
| 130 | EngTransparentBlt@32 | |
| 131 | EngUnicodeToMultiByteN@20 | |
| 132 | EngUnloadImage@4 | |
| 133 | EngUnlockDirectDrawSurface@4 | |
| 134 | EngUnlockDriverObj@4 | |
| 135 | EngUnlockSurface@4 | |
| 136 | EngUnmapEvent@4 | |
| 137 | EngUnmapFile@4 | |
| 138 | EngUnmapFontFile@4 | |
| 139 | EngUnmapFontFileFD@4 | |
| 140 | EngUnsecureMem@4 | |
| 141 | EngWaitForSingleObject@8 | |
| 142 | EngWideCharToMultiByte@20 | |
| 143 | EngWritePrinter@16 | |
| 144 | FLOATOBJ_Add@8 | |
| 145 | FLOATOBJ_AddFloat@8 | |
| 146 | ;FLOATOBJ_AddFloatObj | |
| 147 | FLOATOBJ_AddLong@8 | |
| 148 | FLOATOBJ_Div@8 | |
| 149 | FLOATOBJ_DivFloat@8 | |
| 150 | ;FLOATOBJ_DivFloatObj | |
| 151 | FLOATOBJ_DivLong@8 | |
| 152 | FLOATOBJ_Equal@8 | |
| 153 | FLOATOBJ_EqualLong@8 | |
| 154 | FLOATOBJ_GetFloat@4 | |
| 155 | FLOATOBJ_GetLong@4 | |
| 156 | FLOATOBJ_GreaterThan@8 | |
| 157 | FLOATOBJ_GreaterThanLong@8 | |
| 158 | FLOATOBJ_LessThan@8 | |
| 159 | FLOATOBJ_LessThanLong@8 | |
| 160 | FLOATOBJ_Mul@8 | |
| 161 | FLOATOBJ_MulFloat@8 | |
| 162 | ;FLOATOBJ_MulFloatObj | |
| 163 | FLOATOBJ_MulLong@8 | |
| 164 | FLOATOBJ_Neg@4 | |
| 165 | FLOATOBJ_SetFloat@8 | |
| 166 | FLOATOBJ_SetLong@8 | |
| 167 | FLOATOBJ_Sub@8 | |
| 168 | FLOATOBJ_SubFloat@8 | |
| 169 | ;FLOATOBJ_SubFloatObj | |
| 170 | FLOATOBJ_SubLong@8 | |
| 171 | FONTOBJ_cGetAllGlyphHandles@8 | |
| 172 | FONTOBJ_cGetGlyphs@20 | |
| 173 | FONTOBJ_pQueryGlyphAttrs@8 | |
| 174 | FONTOBJ_pfdg@4 | |
| 175 | FONTOBJ_pifi@4 | |
| 176 | FONTOBJ_pjOpenTypeTablePointer@12 | |
| 177 | FONTOBJ_pvTrueTypeFontFile@8 | |
| 178 | FONTOBJ_pwszFontFilePaths@8 | |
| 179 | FONTOBJ_pxoGetXform@4 | |
| 180 | FONTOBJ_vGetInfo@12 | |
| 181 | HT_ComputeRGBGammaTable@24 | |
| 182 | HT_Get8BPPFormatPalette@16 | |
| 183 | HT_Get8BPPMaskPalette@24 | |
| 184 | HeapVidMemAllocAligned@20 | |
| 185 | PALOBJ_cGetColors@16 | |
| 186 | PATHOBJ_bCloseFigure@4 | |
| 187 | PATHOBJ_bEnum@8 | |
| 188 | PATHOBJ_bEnumClipLines@12 | |
| 189 | PATHOBJ_bMoveTo@12 | |
| 190 | PATHOBJ_bPolyBezierTo@12 | |
| 191 | PATHOBJ_bPolyLineTo@12 | |
| 192 | PATHOBJ_vEnumStart@4 | |
| 193 | PATHOBJ_vEnumStartClipLines@16 | |
| 194 | PATHOBJ_vGetBounds@8 | |
| 195 | ;RtlAnsiCharToUnicodeChar@4 | |
| 196 | ;RtlMultiByteToUnicodeN@20 | |
| 197 | ;RtlRaiseException | |
| 198 | ;RtlUnicodeToMultiByteN@20 | |
| 199 | ;RtlUnicodeToMultiByteSize@12 | |
| 200 | ;RtlUnwind@16 | |
| 201 | RtlUpcaseUnicodeChar@4 | |
| 202 | ;RtlUpcaseUnicodeToMultiByteN@20 | |
| 203 | STROBJ_bEnum@12 | |
| 204 | STROBJ_bEnumPositionsOnly@12 | |
| 205 | STROBJ_bGetAdvanceWidths@16 | |
| 206 | STROBJ_dwGetCodePage@4 | |
| 207 | STROBJ_fxBreakExtra@4 | |
| 208 | STROBJ_fxCharacterExtra@4 | |
| 209 | STROBJ_vEnumStart@4 | |
| 210 | VidMemFree@8 | |
| 211 | WNDOBJ_bEnum@12 | |
| 212 | WNDOBJ_cEnumStart@16 | |
| 213 | WNDOBJ_vSetConsumer@8 | |
| 214 | XFORMOBJ_bApplyXform@20 | |
| 215 | XFORMOBJ_iGetFloatObjXform@8 | |
| 216 | XFORMOBJ_iGetXform@8 | |
| 217 | XLATEOBJ_cGetPalette@16 | |
| 218 | XLATEOBJ_hGetColorTransform@4 | |
| 219 | XLATEOBJ_iXlate@8 | |
| 220 | XLATEOBJ_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 @@ |
| 1 | LIBRARY WIN32SPL.DLL | |
| 2 | EXPORTS | |
| 3 | AddPortExW@16 | |
| 4 | AddPortW@12 | |
| 5 | ClosePort@4 | |
| 6 | ConfigurePortW@12 | |
| 7 | DeletePortW@12 | |
| 8 | EndDocPort@4 | |
| 9 | EnumPortsW@24 | |
| 10 | InitializeMonitor@4 | |
| 11 | InitializePrintProvidor@12 | |
| 12 | LibMain@12 | |
| 13 | OpenPort@8 | |
| 14 | ReadPort@16 | |
| 15 | StartDocPort@20 | |
| 16 | WritePort@16 |
lib/libc/mingw/lib32/windows.ai.machinelearning.def created+5| ... | ... | @@ -0,0 +1,5 @@ |
| 1 | LIBRARY windows.ai.machinelearning | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | MLCreateOperatorRegistry@4 |
lib/libc/mingw/lib32/windows.data.pdf.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY "Windows.Data.Pdf.dll" | |
| 2 | EXPORTS | |
| 3 | PdfCreateRenderer@8 |
lib/libc/mingw/lib32/windows.networking.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY "Windows.Networking.dll" | |
| 2 | EXPORTS | |
| 3 | SetSocketMediaStreamingMode@4 |
lib/libc/mingw/lib32/winspool.def-1| ... | ... | @@ -195,7 +195,6 @@ SpoolerInit@0 |
| 195 | 195 | SplDriverUnloadComplete@4 |
| 196 | 196 | SpoolerPrinterEvent@20 |
| 197 | 197 | StartDocDlgA@8 |
| 198 | StartDocDlgW@8 | |
| 199 | 198 | StartDocPrinterA@12 |
| 200 | 199 | StartDocPrinterW@12 |
| 201 | 200 | StartPagePrinter@4 |
lib/libc/mingw/lib32/winstrm.def created+9| ... | ... | @@ -0,0 +1,9 @@ |
| 1 | LIBRARY WINSTRM.DLL | |
| 2 | EXPORTS | |
| 3 | OpenStream@4 | |
| 4 | getmsg@16 | |
| 5 | poll@12 | |
| 6 | putmsg@16 | |
| 7 | s_ioctl@12 | |
| 8 | s_open@12 | |
| 9 | s_perror@8 |
lib/libc/mingw/lib32/wlanapi.def+224-2| ... | ... | @@ -1,35 +1,228 @@ |
| 1 | 1 | ; |
| 2 | ; Definition file of Wlanapi.dll | |
| 2 | ; Definition file of wlanapi.dll | |
| 3 | 3 | ; Automatic generated by gendef |
| 4 | 4 | ; written by Kai Tietz 2008 |
| 5 | 5 | ; |
| 6 | LIBRARY "Wlanapi.dll" | |
| 6 | LIBRARY "wlanapi.dll" | |
| 7 | 7 | EXPORTS |
| 8 | QueryNetconStatus@8 | |
| 9 | QueryNetconVirtualCharacteristic@8 | |
| 10 | WFDAbortSessionInt@4 | |
| 11 | WFDAcceptConnectRequestAndOpenSessionInt@24 | |
| 12 | WFDAcceptGroupRequestAndOpenSessionInt@44 | |
| 13 | WFDCancelConnectorPairWithOOB@4 | |
| 14 | WFDCancelListenerPairWithOOB@4 | |
| 15 | WFDCancelOpenSession@4 | |
| 16 | WFDCancelOpenSessionInt@4 | |
| 17 | WFDCloseHandle@4 | |
| 18 | WFDCloseHandleInt@4 | |
| 19 | WFDCloseLegacySessionInt@12 | |
| 20 | WFDCloseOOBPairingSession@4 | |
| 21 | WFDCloseSession@4 | |
| 22 | WFDCloseSessionInt@4 | |
| 23 | WFDConfigureFirewallForSessionInt@8 | |
| 24 | WFDCreateDHPrivatePublicKeyPairInt@16 | |
| 25 | WFDDeclineConnectRequestInt@8 | |
| 26 | WFDDeclineGroupRequestInt@8 | |
| 27 | WFDDiscoverDeviceServiceInformationInt@24 | |
| 28 | WFDDiscoverDevicesExInt@16 | |
| 29 | WFDDiscoverDevicesInt@12 | |
| 30 | WFDFlushVisibleDeviceListInt@4 | |
| 31 | WFDForceDisconnectInt@8 | |
| 32 | WFDForceDisconnectLegacyPeerInt@12 | |
| 33 | WFDFreeMemoryInt@4 | |
| 34 | WFDGetDefaultGroupProfileInt@8 | |
| 35 | WFDGetDeviceDescriptorForPendingRequestInt@16 | |
| 36 | WFDGetNFCCarrierConfigBlobInt@24 | |
| 37 | WFDGetOOBBlob@24 | |
| 38 | WFDGetPrimaryAdapterStateInt@8 | |
| 39 | WFDGetProfileKeyInfoInt@20 | |
| 40 | WFDGetSessionEndpointPairsInt@12 | |
| 41 | WFDGetVisibleDevicesExInt@12 | |
| 42 | WFDGetVisibleDevicesInt@8 | |
| 43 | WFDIsInterfaceWiFiDirect@24 | |
| 44 | WFDIsWiFiDirectRunningOnWiFiAdapter@20 | |
| 45 | WFDLowPrivCancelOpenSessionInt@4 | |
| 46 | WFDLowPrivCloseHandleInt@4 | |
| 47 | WFDLowPrivCloseLegacySessionInt@12 | |
| 48 | WFDLowPrivCloseSessionInt@4 | |
| 49 | WFDLowPrivConfigureFirewallForSessionInt@8 | |
| 50 | WFDLowPrivDeclineDeviceApiConnectionRequestInt@8 | |
| 51 | WFDLowPrivGetPendingGroupRequestDetailsInt@12 | |
| 52 | WFDLowPrivGetSessionEndpointPairsInt@12 | |
| 53 | WFDLowPrivIsWfdSupportedInt@4 | |
| 54 | WFDLowPrivOpenHandleInt@12 | |
| 55 | WFDLowPrivOpenLegacySessionInt@12 | |
| 56 | WFDLowPrivOpenSessionByDafObjectIdInt@44 | |
| 57 | WFDLowPrivQueryPropertyInt@16 | |
| 58 | WFDLowPrivRegisterNotificationInt@24 | |
| 59 | WFDLowPrivRegisterVMgrCallerInt@12 | |
| 60 | WFDLowPrivSetPropertyInt@16 | |
| 61 | WFDLowPrivStartDeviceApiConnectionRequestListenerInt@4 | |
| 62 | WFDLowPrivStartUsingGroupInt@16 | |
| 63 | WFDLowPrivStopDeviceApiConnectionRequestListenerInt@4 | |
| 64 | WFDLowPrivStopUsingGroupInt@8 | |
| 65 | WFDLowPrivUnregisterVMgrCallerInt@4 | |
| 66 | WFDOpenHandle@12 | |
| 67 | WFDOpenHandleInt@12 | |
| 68 | WFDOpenLegacySession@16 | |
| 69 | WFDOpenLegacySessionInt@12 | |
| 70 | WFDPairCancelByDeviceAddressInt@8 | |
| 71 | WFDPairCancelInt@4 | |
| 72 | WFDPairContinuePairWithDeviceInt@12 | |
| 73 | WFDPairEnumerateCeremoniesInt@28 | |
| 74 | WFDPairSelectCeremonyInt@12 | |
| 75 | WFDPairWithDeviceAndOpenSessionExInt@32 | |
| 76 | WFDPairWithDeviceAndOpenSessionInt@28 | |
| 77 | WFDParseOOBBlob@12 | |
| 78 | WFDParseOOBBlobTypeAndGetPayloadInt@20 | |
| 79 | WFDParseProfileXmlInt@12 | |
| 80 | WFDParseWfaNfcCarrierConfigBlobInt@12 | |
| 81 | WFDQueryPropertyInt@16 | |
| 82 | WFDRegisterNotificationInt@24 | |
| 83 | WFDRegisterVMgrCallerInt@12 | |
| 84 | WFDResetSelectedWfdMgrInt@4 | |
| 85 | WFDSetAdditionalIEsInt@8 | |
| 86 | WFDSetPropertyInt@16 | |
| 87 | WFDSetSecondaryDeviceTypeListInt@8 | |
| 88 | WFDSetSelectedWfdMgrInt@8 | |
| 89 | WFDStartBackgroundDiscoveryInt@8 | |
| 90 | WFDStartConnectorPairWithOOB@20 | |
| 91 | WFDStartListenerPairWithOOB@28 | |
| 92 | WFDStartOffloadedDiscoveryInt@8 | |
| 93 | WFDStartOpenSession@20 | |
| 94 | WFDStartOpenSessionInt@28 | |
| 95 | WFDStartUsingGroupExInt@16 | |
| 96 | WFDStartUsingGroupInt@12 | |
| 97 | WFDStopBackgroundDiscoveryInt@4 | |
| 98 | WFDStopDiscoverDevicesExInt@8 | |
| 99 | WFDStopDiscoverDevicesInt@4 | |
| 100 | WFDStopOffloadedDiscoveryInt@4 | |
| 101 | WFDStopUsingGroupInt@8 | |
| 102 | WFDSvcLowPrivAcceptSessionInt@12 | |
| 103 | WFDSvcLowPrivCancelSessionInt@4 | |
| 104 | WFDSvcLowPrivCloseSessionInt@4 | |
| 105 | WFDSvcLowPrivConfigureSessionInt@16 | |
| 106 | WFDSvcLowPrivConnectSessionInt@12 | |
| 107 | WFDSvcLowPrivGetProvisioningInfoInt@32 | |
| 108 | WFDSvcLowPrivGetSessionEndpointPairsInt@12 | |
| 109 | WFDSvcLowPrivOpenAdvertiserSessionInt@20 | |
| 110 | WFDSvcLowPrivOpenSeekerSessionInt@28 | |
| 111 | WFDSvcLowPrivPublishServiceInt@20 | |
| 112 | WFDSvcLowPrivUnpublishServiceInt@8 | |
| 113 | WFDUnregisterVMgrCallerInt@4 | |
| 114 | WFDUpdateDeviceVisibility@4 | |
| 115 | WiFiDisplayResetSinkStateInt@4 | |
| 116 | WiFiDisplaySetSinkClientHandleInt@4 | |
| 117 | WiFiDisplaySetSinkStateInt@4 | |
| 8 | 118 | WlanAllocateMemory@4 |
| 119 | WlanAllocateProfileIpConfiguration@20 | |
| 120 | WlanCancelPlap@4 | |
| 9 | 121 | WlanCloseHandle@8 |
| 10 | 122 | WlanConnect@16 |
| 123 | WlanConnectEx@16 | |
| 124 | WlanConnectWithInput@12 | |
| 125 | WlanDeinitPlapParams@0 | |
| 11 | 126 | WlanDeleteProfile@16 |
| 127 | WlanDeviceServiceCommand@36 | |
| 12 | 128 | WlanDisconnect@12 |
| 129 | WlanDoPlap@44 | |
| 130 | WlanDoesBssMatchSecurity@16 | |
| 131 | WlanEnumAllInterfaces@4 | |
| 13 | 132 | WlanEnumInterfaces@12 |
| 14 | 133 | WlanExtractPsdIEDataList@24 |
| 15 | 134 | WlanFreeMemory@4 |
| 135 | WlanGenerateProfileXmlBasicSettings@40 | |
| 136 | WlanGetAvailableNetworkList2@20 | |
| 16 | 137 | WlanGetAvailableNetworkList@20 |
| 17 | 138 | WlanGetFilterList@16 |
| 18 | 139 | WlanGetInterfaceCapability@16 |
| 140 | WlanGetMFPNegotiated@8 | |
| 19 | 141 | WlanGetNetworkBssList@28 |
| 20 | 142 | WlanGetProfile@28 |
| 21 | 143 | WlanGetProfileCustomUserData@24 |
| 144 | WlanGetProfileEapUserDataInfo@16 | |
| 145 | WlanGetProfileIndex@12 | |
| 146 | WlanGetProfileKeyInfo@24 | |
| 22 | 147 | WlanGetProfileList@16 |
| 148 | WlanGetProfileMetadata@24 | |
| 149 | WlanGetProfileMetadataWithProfileGuid@24 | |
| 150 | WlanGetProfileSsidList@8 | |
| 151 | WlanGetRadioInformation@12 | |
| 23 | 152 | WlanGetSecuritySettings@20 |
| 153 | WlanGetStoredRadioState@12 | |
| 154 | WlanGetSupportedDeviceServices@12 | |
| 155 | WlanHostedNetworkForceStart@12 | |
| 156 | WlanHostedNetworkForceStop@12 | |
| 157 | WlanHostedNetworkFreeWCNSettings@4 | |
| 158 | WlanHostedNetworkHlpQueryEverUsed@0 | |
| 159 | WlanHostedNetworkInitSettings@12 | |
| 160 | WlanHostedNetworkQueryProperty@24 | |
| 161 | WlanHostedNetworkQuerySecondaryKey@28 | |
| 162 | WlanHostedNetworkQueryStatus@12 | |
| 163 | WlanHostedNetworkQueryWCNSettings@4 | |
| 164 | WlanHostedNetworkRefreshSecuritySettings@12 | |
| 165 | WlanHostedNetworkSetProperty@24 | |
| 166 | WlanHostedNetworkSetSecondaryKey@28 | |
| 167 | WlanHostedNetworkSetWCNSettings@4 | |
| 168 | WlanHostedNetworkStartUsing@12 | |
| 169 | WlanHostedNetworkStopUsing@12 | |
| 24 | 170 | WlanIhvControl@32 |
| 171 | WlanInitPlapParams@4 | |
| 172 | WlanInternalCancelFTMRequest@4 | |
| 173 | WlanInternalGetNetworkBssListWithFTMData@12 | |
| 174 | WlanInternalNonDisruptiveScan@8 | |
| 175 | WlanInternalNonDisruptiveScanEx@12 | |
| 176 | WlanInternalRequestFTM@28 | |
| 177 | WlanInternalScan@8 | |
| 178 | WlanIsActiveConsoleUser@0 | |
| 179 | WlanIsNetworkSuppressed@8 | |
| 180 | WlanIsUIRequestPending@12 | |
| 181 | WlanLowPrivCloseHandle@4 | |
| 182 | WlanLowPrivEnumInterfaces@8 | |
| 183 | WlanLowPrivFreeMemory@4 | |
| 184 | WlanLowPrivNotifyVsIeProviderInt@28 | |
| 185 | WlanLowPrivOpenHandle@12 | |
| 186 | WlanLowPrivQueryInterface@24 | |
| 187 | WlanLowPrivSetInterface@20 | |
| 188 | WlanNotifyVsIeProviderExInt@28 | |
| 189 | WlanNotifyVsIeProviderInt@24 | |
| 25 | 190 | WlanOpenHandle@16 |
| 191 | WlanParseProfileXmlBasicSettings@40 | |
| 192 | WlanPrivateCanDeleteProfile@16 | |
| 193 | WlanPrivateClearAnqpCache@0 | |
| 194 | WlanPrivateDeleteProfile@20 | |
| 195 | WlanPrivateEnableAnqpOsuRegistration@4 | |
| 196 | WlanPrivateGetAnqpCacheResponse@16 | |
| 197 | WlanPrivateGetAnqpOSUProviderList@16 | |
| 198 | WlanPrivateGetAnqpOsuRegistrationStatus@4 | |
| 199 | WlanPrivateGetAvailableNetworkList@16 | |
| 200 | WlanPrivateParseAnqpRawData@16 | |
| 201 | WlanPrivateQuery11adPairedConfig@12 | |
| 202 | WlanPrivateQueryInterface@20 | |
| 203 | WlanPrivateRefreshAnqpCache@12 | |
| 204 | WlanPrivateSetInterface@20 | |
| 205 | WlanPrivateSetProfile@36 | |
| 206 | WlanProfileIpConfigurationGetAddressList@8 | |
| 207 | WlanProfileIpConfigurationGetDnsServerList@8 | |
| 208 | WlanProfileIpConfigurationGetGatewayList@8 | |
| 26 | 209 | WlanQueryAutoConfigParameter@24 |
| 210 | WlanQueryCreateAllUserProfileRestricted@8 | |
| 27 | 211 | WlanQueryInterface@28 |
| 212 | WlanQueryPlapCredentials@32 | |
| 213 | WlanQueryPreConnectInput@12 | |
| 214 | WlanQueryVirtualInterfaceType@8 | |
| 28 | 215 | WlanReasonCodeToString@16 |
| 216 | WlanRefreshConnections@4 | |
| 217 | WlanRegisterDeviceServiceNotification@8 | |
| 29 | 218 | WlanRegisterNotification@28 |
| 219 | WlanRegisterVirtualStationNotification@12 | |
| 220 | WlanRemoveUIForwardingNetworkList@4 | |
| 30 | 221 | WlanRenameProfile@20 |
| 31 | 222 | WlanSaveTemporaryProfile@28 |
| 32 | 223 | WlanScan@20 |
| 224 | WlanSendUIResponse@8 | |
| 225 | WlanSetAllUserProfileRestricted@4 | |
| 33 | 226 | WlanSetAutoConfigParameter@20 |
| 34 | 227 | WlanSetFilterList@16 |
| 35 | 228 | WlanSetInterface@24 |
| ... | ... | @@ -38,6 +231,35 @@ WlanSetProfileCustomUserData@24 |
| 38 | 231 | WlanSetProfileEapUserData@44 |
| 39 | 232 | WlanSetProfileEapXmlUserData@24 |
| 40 | 233 | WlanSetProfileList@20 |
| 234 | WlanSetProfileListForOffload@16 | |
| 235 | WlanSetProfileMetadata@24 | |
| 41 | 236 | WlanSetProfilePosition@20 |
| 237 | WlanSetProtectedScenario@16 | |
| 42 | 238 | WlanSetPsdIEDataList@16 |
| 43 | 239 | WlanSetSecuritySettings@12 |
| 240 | WlanSetUIForwardingNetworkList@12 | |
| 241 | WlanSignalValueToBar@4 | |
| 242 | WlanSignalValueToBarEx@8 | |
| 243 | WlanSsidToDisplayName@16 | |
| 244 | WlanStartAP@24 | |
| 245 | WlanStartMovementDetector@8 | |
| 246 | WlanStopAP@12 | |
| 247 | WlanStopMovementDetector@4 | |
| 248 | WlanStoreRadioStateOnEnteringAirPlaneMode@12 | |
| 249 | WlanStringToSsid@8 | |
| 250 | WlanStringToUtf8Ssid@8 | |
| 251 | WlanTryUpgradeCurrentConnectionAuthCipher@8 | |
| 252 | WlanUpdateBasicProfileSecurity@24 | |
| 253 | WlanUpdateProfileWithAuthCipher@28 | |
| 254 | WlanUtf8SsidToDisplayName@16 | |
| 255 | WlanVMgrQueryCurrentScenariosInt@8 | |
| 256 | WlanVerifyProfileIpConfiguration@8 | |
| 257 | WlanWcmDisconnect@4 | |
| 258 | WlanWcmGetInterface@16 | |
| 259 | WlanWcmGetProfileList@12 | |
| 260 | WlanWcmSetInterface@16 | |
| 261 | WlanWcmSetProfile@28 | |
| 262 | WlanWfdGOSetWCNSettings@8 | |
| 263 | WlanWfdGetPeerInfo@20 | |
| 264 | WlanWfdStartGO@4 | |
| 265 | WlanWfdStopGO@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 | ; | |
| 6 | LIBRARY "wlanui.dll" | |
| 7 | EXPORTS | |
| 8 | WLInvokeProfileUI@32 | |
| 9 | WLInvokeProfileUIFromXMLFile@40 | |
| 10 | DllGetClassObject@12 | |
| 11 | WLFreeProfile@4 | |
| 12 | WLFreeProfileXml@4 | |
| 13 | WlanUIEditProfile@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 | ; | |
| 6 | LIBRARY "wlanutil.dll" | |
| 7 | EXPORTS | |
| 8 | WlanIsActiveConsoleUser@0 | |
| 9 | WlanSsidToDisplayName@16 | |
| 10 | WlanStringToSsid@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 | ; | |
| 6 | LIBRARY "WMILIB.SYS" | |
| 7 | EXPORTS | |
| 8 | WmiCompleteRequest@20 | |
| 9 | WmiFireEvent@20 | |
| 10 | WmiSystemControl@16 |
lib/libc/mingw/lib32/wow32.def created+19| ... | ... | @@ -0,0 +1,19 @@ |
| 1 | LIBRARY WOW32.DLL | |
| 2 | EXPORTS | |
| 3 | WOWCallback16@8 | |
| 4 | WOWCallback16Ex@20 | |
| 5 | WOWDirectedYield16@4 | |
| 6 | WOWGetDescriptor@8 | |
| 7 | WOWGetVDMPointer@12 | |
| 8 | WOWGetVDMPointerFix@12 | |
| 9 | WOWGetVDMPointerUnfix@4 | |
| 10 | WOWGlobalAlloc16@8 | |
| 11 | WOWGlobalAllocLock16@12 | |
| 12 | WOWGlobalFree16@4 | |
| 13 | WOWGlobalLock16@4 | |
| 14 | WOWGlobalLockSize16@8 | |
| 15 | WOWGlobalUnlock16@4 | |
| 16 | WOWGlobalUnlockFree16@4 | |
| 17 | WOWHandle16@8 | |
| 18 | WOWHandle32@8 | |
| 19 | WOWYield16@0 |
lib/libc/mingw/lib32/wpprecorderum.def created+8| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | LIBRARY wpprecorderum | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | WppAutoLogGetDefaultHandle@4 | |
| 6 | WppAutoLogStart | |
| 7 | WppAutoLogStop | |
| 8 | WppAutoLogTrace |
lib/libc/mingw/lib32/wst.def created+3| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | LIBRARY WST.DLL | |
| 2 | EXPORTS | |
| 3 | _penter |
lib/libc/mingw/lib32/wtsapi32.def+4| ... | ... | @@ -15,7 +15,11 @@ WTSEnumerateServersA@20 |
| 15 | 15 | WTSEnumerateServersW@20 |
| 16 | 16 | WTSEnumerateSessionsA@20 |
| 17 | 17 | WTSEnumerateSessionsW@20 |
| 18 | WTSEnumerateSessionsExA@20 | |
| 19 | WTSEnumerateSessionsExW@20 | |
| 18 | 20 | WTSFreeMemory@4 |
| 21 | WTSFreeMemoryExA@12 | |
| 22 | WTSFreeMemoryExW@12 | |
| 19 | 23 | WTSLogoffSession@12 |
| 20 | 24 | WTSOpenServerA@4 |
| 21 | 25 | WTSOpenServerW@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 | ; | |
| 6 | LIBRARY "X3DAudio1_2.dll" | |
| 7 | EXPORTS | |
| 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 | ; | |
| 6 | LIBRARY "X3DAudio1_3.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_4.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_5.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_6.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_7.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudioD1_7.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize | |
| 10 | X3DAudioSetValidationCallback |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_0.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_1.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_2.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_3.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_4.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_5.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFXd1_5.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAudio2_9.dll" | |
| 7 | EXPORTS | |
| 8 | XAudio2Create@12 | |
| 9 | CreateAudioReverb@4 | |
| 10 | CreateAudioVolumeMeter@4 | |
| 11 | CreateFX@0 | |
| 12 | X3DAudioCalculate@0 | |
| 13 | X3DAudioInitialize@0 | |
| 14 | CreateAudioReverbV2_8@4 | |
| 15 | XAudio2CreateV2_9@12 | |
| 16 | XAudio2CreateWithVersionInfo@16 | |
| 17 | XAudio2CreateWithSharedContexts@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 | ; | |
| 6 | LIBRARY "XINPUT1_1.dll" | |
| 7 | EXPORTS | |
| 8 | ;DllMain@12 | |
| 9 | XInputEnable@4 | |
| 10 | XInputGetCapabilities@12 | |
| 11 | XInputGetDSoundAudioDeviceGuids@12 | |
| 12 | XInputGetState@8 | |
| 13 | XInputSetState@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 | ; | |
| 6 | LIBRARY "XINPUT1_2.dll" | |
| 7 | EXPORTS | |
| 8 | ;DllMain@12 | |
| 9 | XInputEnable@4 | |
| 10 | XInputGetCapabilities@12 | |
| 11 | XInputGetDSoundAudioDeviceGuids@12 | |
| 12 | XInputGetState@8 | |
| 13 | XInputSetState@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 | ; | |
| 6 | LIBRARY "XINPUT1_3.dll" | |
| 7 | EXPORTS | |
| 8 | ;DllMain@12 | |
| 9 | XInputGetState@8 | |
| 10 | XInputSetState@8 | |
| 11 | XInputGetCapabilities@12 | |
| 12 | XInputEnable@4 | |
| 13 | XInputGetDSoundAudioDeviceGuids@12 | |
| 14 | XInputGetBatteryInformation@12 | |
| 15 | XInputGetKeystroke@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 | ; | |
| 6 | LIBRARY "XINPUT9_1_0.dll" | |
| 7 | EXPORTS | |
| 8 | ;DllMain@12 | |
| 9 | XInputGetCapabilities@12 | |
| 10 | XInputGetDSoundAudioDeviceGuids@12 | |
| 11 | XInputGetState@8 | |
| 12 | XInputSetState@8 |
lib/libc/mingw/lib32/xinputuap.def created+11| ... | ... | @@ -0,0 +1,11 @@ |
| 1 | LIBRARY xinputuap | |
| 2 | ||
| 3 | EXPORTS | |
| 4 | ||
| 5 | XInputEnable@4 | |
| 6 | XInputGetAudioDeviceIds@20 | |
| 7 | XInputGetBatteryInformation@12 | |
| 8 | XInputGetCapabilities@12 | |
| 9 | XInputGetKeystroke@12 | |
| 10 | XInputGetState@8 | |
| 11 | XInputSetState@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 | ; | |
| 6 | LIBRARY "XmlLite.dll" | |
| 7 | EXPORTS | |
| 8 | CreateXmlReader@12 | |
| 9 | CreateXmlReaderInputWithEncodingCodePage@24 | |
| 10 | CreateXmlReaderInputWithEncodingName@24 | |
| 11 | CreateXmlWriter@12 | |
| 12 | CreateXmlWriterOutputWithEncodingCodePage@16 | |
| 13 | CreateXmlWriterOutputWithEncodingName@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 | ; | |
| 7 | LIBRARY CINTIME.DLL | |
| 8 | EXPORTS | |
| 9 | UniCreateInstLInstance |
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 | ; | |
| 7 | LIBRARY ps5ui.dll | |
| 8 | EXPORTS | |
| 9 | DrvSplDeviceCaps | |
| 10 | DevQueryPrintEx | |
| 11 | DllMain | |
| 12 | DrvConvertDevMode | |
| 13 | DrvDeviceCapabilities | |
| 14 | DrvDevicePropertySheets | |
| 15 | DrvDocumentEvent | |
| 16 | DrvDocumentPropertySheets | |
| 17 | DrvDriverEvent | |
| 18 | DrvPrinterEvent | |
| 19 | DrvQueryColorProfile | |
| 20 | DrvQueryJobAttributes | |
| 21 | DrvUpgradePrinter |
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 | ; | |
| 7 | LIBRARY pscript5.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | DrvDisableDriver | |
| 11 | DrvEnableDriver | |
| 12 | DrvQueryDriverInfo |
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 | ; | |
| 7 | LIBRARY unidrv.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | DrvDisableDriver | |
| 11 | DrvEnableDriver | |
| 12 | DrvQueryDriverInfo |
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 | ; | |
| 7 | LIBRARY unidrvui.dll | |
| 8 | EXPORTS | |
| 9 | DrvSplDeviceCaps | |
| 10 | DevQueryPrintEx | |
| 11 | DllMain | |
| 12 | DrvConvertDevMode | |
| 13 | DrvDeviceCapabilities | |
| 14 | DrvDevicePropertySheets | |
| 15 | DrvDocumentEvent | |
| 16 | DrvDocumentPropertySheets | |
| 17 | DrvDriverEvent | |
| 18 | DrvPrinterEvent | |
| 19 | DrvQueryColorProfile | |
| 20 | DrvQueryJobAttributes | |
| 21 | DrvUpgradePrinter |
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 | ; | |
| 7 | LIBRARY admparse.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | IsAdmDirty | |
| 11 | ResetAdmDirtyFlag | |
| 12 | AdmClose | |
| 13 | AdmFinishedA | |
| 14 | AdmFinishedW | |
| 15 | AdmInitA | |
| 16 | AdmInitW | |
| 17 | AdmResetA | |
| 18 | AdmResetW | |
| 19 | AdmSaveData | |
| 20 | CheckDuplicateKeysA | |
| 21 | CheckDuplicateKeysW | |
| 22 | CreateAdmUiA | |
| 23 | CreateAdmUiW | |
| 24 | GetAdmCategoriesA | |
| 25 | GetAdmCategoriesW | |
| 26 | GetFontInfoA | |
| 27 | GetFontInfoW |
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 | ; | |
| 7 | LIBRARY ADMWPROX.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | ReleaseObjectSecurityContextW |
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 | ; | |
| 7 | LIBRARY adptif.dll | |
| 8 | EXPORTS | |
| 9 | CreateSocketPort | |
| 10 | DeleteSocketPort | |
| 11 | FwBindFwInterfaceToAdapter | |
| 12 | FwConnectionRequestFailed | |
| 13 | FwCreateInterface | |
| 14 | FwDeleteInterface | |
| 15 | FwDisableFwInterface | |
| 16 | FwEnableFwInterface | |
| 17 | FwGetInterface | |
| 18 | FwGetNotificationResult | |
| 19 | FwGetStaticNetbiosNames | |
| 20 | FwIsStarted | |
| 21 | FwNotifyConnectionRequest | |
| 22 | FwSetInterface | |
| 23 | FwSetStaticNetbiosNames | |
| 24 | FwStart | |
| 25 | FwStop | |
| 26 | FwUnbindFwInterfaceFromAdapter | |
| 27 | FwUpdateConfig | |
| 28 | FwUpdateRouteTable | |
| 29 | GetAdapterNameFromMacAddrW | |
| 30 | GetAdapterNameW | |
| 31 | GetFilters | |
| 32 | IpxAdjustIoCompletionParams | |
| 33 | IpxCreateAdapterConfigurationPort | |
| 34 | IpxDeleteAdapterConfigurationPort | |
| 35 | IpxDoesRouteExist | |
| 36 | IpxGetAdapterConfig | |
| 37 | IpxGetAdapterList | |
| 38 | IpxGetOverlappedResult | |
| 39 | IpxGetQueuedAdapterConfigurationStatus | |
| 40 | IpxGetQueuedCompletionStatus | |
| 41 | IpxPostQueuedCompletionStatus | |
| 42 | IpxRecvPacket | |
| 43 | IpxSendPacket | |
| 44 | IpxWanCreateAdapterConfigurationPort | |
| 45 | IpxWanQueryInactivityTimer | |
| 46 | IpxWanSetAdapterConfiguration | |
| 47 | ServiceMain | |
| 48 | SetFilters |
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 | ; | |
| 7 | LIBRARY ADSIISEX.dll | |
| 8 | EXPORTS | |
| 9 | IsExtensionClass | |
| 10 | CreateExtensionClass |
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 | ; | |
| 7 | LIBRARY adsldpc.dll | |
| 8 | EXPORTS | |
| 9 | ; public: __cdecl CLexer::CLexer(void) __ptr64 | |
| 10 | ??0CLexer@@QEAA@XZ | |
| 11 | ; public: __cdecl CLexer::~CLexer(void) __ptr64 | |
| 12 | ??1CLexer@@QEAA@XZ | |
| 13 | ADsAbandonSearch | |
| 14 | ADsCloseSearchHandle | |
| 15 | ADsCreateAttributeDefinition | |
| 16 | ADsCreateClassDefinition | |
| 17 | ADsCreateDSObject | |
| 18 | ADsCreateDSObjectExt | |
| 19 | ADsDeleteAttributeDefinition | |
| 20 | ADsDeleteClassDefinition | |
| 21 | ADsDeleteDSObject | |
| 22 | ADsEnumAttributes | |
| 23 | ADsEnumClasses | |
| 24 | ADsExecuteSearch | |
| 25 | ADsFreeColumn | |
| 26 | ADsGetColumn | |
| 27 | ADsGetFirstRow | |
| 28 | ADsGetNextColumnName | |
| 29 | ADsGetNextRow | |
| 30 | ADsGetObjectAttributes | |
| 31 | ADsGetPreviousRow | |
| 32 | ADsHelperGetCurrentRowMessage | |
| 33 | ADsObject | |
| 34 | ADsSetObjectAttributes | |
| 35 | ADsSetSearchPreference | |
| 36 | ADsWriteAttributeDefinition | |
| 37 | ADsWriteClassDefinition | |
| 38 | AdsTypeToLdapTypeCopyConstruct | |
| 39 | AdsTypeToLdapTypeCopyDNWithBinary | |
| 40 | AdsTypeToLdapTypeCopyDNWithString | |
| 41 | AdsTypeToLdapTypeCopyGeneralizedTime | |
| 42 | AdsTypeToLdapTypeCopyTime | |
| 43 | BerBvFree | |
| 44 | BerEncodingQuotaControl | |
| 45 | BuildADsParentPath | |
| 46 | BuildADsParentPathFromObjectInfo2 | |
| 47 | BuildADsParentPathFromObjectInfo | |
| 48 | BuildADsPathFromLDAPPath2 | |
| 49 | BuildADsPathFromLDAPPath | |
| 50 | BuildADsPathFromParent | |
| 51 | BuildLDAPPathFromADsPath2 | |
| 52 | BuildLDAPPathFromADsPath | |
| 53 | ChangeSeparator | |
| 54 | Component | |
| 55 | ConvertSidToString | |
| 56 | ConvertSidToU2Trustee | |
| 57 | ConvertU2TrusteeToSid | |
| 58 | FindEntryInSearchTable | |
| 59 | FindSearchTableIndex | |
| 60 | FreeObjectInfo | |
| 61 | GetDefaultServer | |
| 62 | GetDisplayName | |
| 63 | GetDomainDNSNameForDomain | |
| 64 | GetLDAPTypeName | |
| 65 | ; public: long __cdecl CLexer::GetNextToken(unsigned short * __ptr64,unsigned long * __ptr64) __ptr64 | |
| 66 | ?GetNextToken@CLexer@@QEAAJPEAGPEAK@Z | |
| 67 | GetSyntaxOfAttribute | |
| 68 | InitObjectInfo | |
| 69 | ; public: long __cdecl CLexer::InitializePath(unsigned short * __ptr64) __ptr64 | |
| 70 | ?InitializePath@CLexer@@QEAAJPEAG@Z | |
| 71 | IsGCNamespace | |
| 72 | LdapAddExtS | |
| 73 | LdapAddS | |
| 74 | LdapAttributeFree | |
| 75 | LdapCacheAddRef | |
| 76 | LdapCloseObject | |
| 77 | LdapCompareExt | |
| 78 | LdapControlFree | |
| 79 | LdapControlsFree | |
| 80 | LdapCountEntries | |
| 81 | LdapCrackUserDNtoNTLMUser2 | |
| 82 | LdapCrackUserDNtoNTLMUser | |
| 83 | LdapCreatePageControl | |
| 84 | LdapDeleteExtS | |
| 85 | LdapDeleteS | |
| 86 | LdapFirstAttribute | |
| 87 | LdapFirstEntry | |
| 88 | LdapGetDn | |
| 89 | LdapGetNextPageS | |
| 90 | LdapGetSchemaObjectCount | |
| 91 | LdapGetSubSchemaSubEntryPath | |
| 92 | LdapGetSyntaxIdOfAttribute | |
| 93 | LdapGetSyntaxOfAttributeOnServer | |
| 94 | LdapGetValues | |
| 95 | LdapGetValuesLen | |
| 96 | LdapInitializeSearchPreferences | |
| 97 | LdapIsClassNameValidOnServer | |
| 98 | LdapMakeSchemaCacheObsolete | |
| 99 | LdapMemFree | |
| 100 | LdapModDnS | |
| 101 | LdapModifyExtS | |
| 102 | LdapModifyS | |
| 103 | LdapMsgFree | |
| 104 | LdapNextAttribute | |
| 105 | LdapNextEntry | |
| 106 | LdapOpenObject2 | |
| 107 | LdapOpenObject | |
| 108 | LdapParsePageControl | |
| 109 | LdapParseResult | |
| 110 | LdapReadAttribute2 | |
| 111 | LdapReadAttribute | |
| 112 | LdapReadAttributeFast | |
| 113 | LdapRenameExtS | |
| 114 | LdapResult | |
| 115 | LdapSearch | |
| 116 | LdapSearchAbandonPage | |
| 117 | LdapSearchExtS | |
| 118 | LdapSearchInitPage | |
| 119 | LdapSearchS | |
| 120 | LdapSearchST | |
| 121 | LdapTypeBinaryToString | |
| 122 | LdapTypeCopyConstruct | |
| 123 | LdapTypeFreeLdapModList | |
| 124 | LdapTypeFreeLdapModObject | |
| 125 | LdapTypeFreeLdapObjects | |
| 126 | LdapTypeToAdsTypeDNWithBinary | |
| 127 | LdapTypeToAdsTypeDNWithString | |
| 128 | LdapTypeToAdsTypeGeneralizedTime | |
| 129 | LdapTypeToAdsTypeUTCTime | |
| 130 | LdapValueFree | |
| 131 | LdapValueFreeLen | |
| 132 | LdapcKeepHandleAround | |
| 133 | LdapcSetStickyServer | |
| 134 | PathName | |
| 135 | ReadPagingSupportedAttr | |
| 136 | ReadSecurityDescriptorControlType | |
| 137 | ReadServerSupportsIsADControl | |
| 138 | SchemaAddRef | |
| 139 | SchemaClose | |
| 140 | SchemaGetClassInfo | |
| 141 | SchemaGetClassInfoByIndex | |
| 142 | SchemaGetObjectCount | |
| 143 | SchemaGetPropertyInfo | |
| 144 | SchemaGetPropertyInfoByIndex | |
| 145 | SchemaGetStringsFromStringTable | |
| 146 | SchemaGetSyntaxOfAttribute | |
| 147 | SchemaIsClassAContainer | |
| 148 | SchemaOpen | |
| 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 | |
| 155 | SortAndRemoveDuplicateOIDs | |
| 156 | UnMarshallLDAPToLDAPSynID | |
| 157 | intcmp | |
| 158 | ADSIAbandonSearch | |
| 159 | ADSICloseDSObject | |
| 160 | ADSICloseSearchHandle | |
| 161 | ADSICreateDSObject | |
| 162 | ADSIDeleteDSObject | |
| 163 | ADSIExecuteSearch | |
| 164 | ADSIFreeColumn | |
| 165 | ADSIGetColumn | |
| 166 | ADSIGetFirstRow | |
| 167 | ADSIGetNextColumnName | |
| 168 | ADSIGetNextRow | |
| 169 | ADSIGetObjectAttributes | |
| 170 | ADSIGetPreviousRow | |
| 171 | ADSIModifyRdn | |
| 172 | ADSIOpenDSObject | |
| 173 | ADSISetObjectAttributes | |
| 174 | ADSISetSearchPreference | |
| 175 | ADsDecodeBinaryData | |
| 176 | ADsEncodeBinaryData | |
| 177 | ADsGetLastError | |
| 178 | ADsSetLastError | |
| 179 | AdsTypeFreeAdsObjects | |
| 180 | AllocADsMem | |
| 181 | AllocADsStr | |
| 182 | FreeADsMem | |
| 183 | FreeADsStr | |
| 184 | LdapTypeToAdsTypeCopyConstruct | |
| 185 | MapADSTypeToLDAPType | |
| 186 | MapLDAPTypeToADSType | |
| 187 | ReallocADsMem | |
| 188 | ReallocADsStr |
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 | ; | |
| 7 | LIBRARY AgentAnm.DLL | |
| 8 | EXPORTS | |
| 9 | CreateAgentAnimA | |
| 10 | CreateAgentAnimW | |
| 11 | CreateAgentRenderA | |
| 12 | CreateAgentRenderW |
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 | ; | |
| 7 | LIBRARY AKSCLASS.dll | |
| 8 | EXPORTS | |
| 9 | AksHaspCoInstallEntryPoint |
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 | ; | |
| 7 | LIBRARY alrsvc.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY apcups.dll | |
| 8 | EXPORTS | |
| 9 | UPSCancelWait | |
| 10 | UPSGetState | |
| 11 | UPSInit | |
| 12 | UPSStop | |
| 13 | UPSTurnOff | |
| 14 | UPSWaitForStateChange |
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 | ; | |
| 7 | LIBRARY aqueue.dll | |
| 8 | EXPORTS | |
| 9 | HrAdvQueueInitialize | |
| 10 | HrAdvQueueDeinitialize | |
| 11 | HrAdvQueueInitializeEx | |
| 12 | HrAdvQueueDeinitializeEx | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY asp.dll | |
| 8 | EXPORTS | |
| 9 | AspStatusHtmlDump | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | GetExtensionVersion | |
| 13 | HttpExtensionProc | |
| 14 | TerminateExtension |
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 | ; | |
| 7 | LIBRARY aspperf.dll | |
| 8 | EXPORTS | |
| 9 | OpenASPPerformanceData | |
| 10 | CollectASPPerformanceData | |
| 11 | CloseASPPerformanceData | |
| 12 | RegisterAXS | |
| 13 | UnRegisterAXS |
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 | ; | |
| 7 | LIBRARY atkctrs.dll | |
| 8 | EXPORTS | |
| 9 | OpenAtkPerformanceData | |
| 10 | CollectAtkPerformanceData | |
| 11 | CloseAtkPerformanceData |
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 | ; | |
| 7 | LIBRARY ATMLIB.dll | |
| 8 | EXPORTS | |
| 9 | ATMAddFont | |
| 10 | ATMAddFontA | |
| 11 | ATMAddFontEx | |
| 12 | ATMAddFontExA | |
| 13 | ATMAddFontExW | |
| 14 | ATMAddFontW | |
| 15 | ATMBBoxBaseXYShowText | |
| 16 | ATMBBoxBaseXYShowTextA | |
| 17 | ATMBBoxBaseXYShowTextW | |
| 18 | ATMBeginFontChange | |
| 19 | ATMClient | |
| 20 | ATMEndFontChange | |
| 21 | ATMEnumFonts | |
| 22 | ATMEnumFontsA | |
| 23 | ATMEnumFontsW | |
| 24 | ATMEnumMMFonts | |
| 25 | ATMEnumMMFontsA | |
| 26 | ATMEnumMMFontsW | |
| 27 | ATMFinish | |
| 28 | ATMFontAvailable | |
| 29 | ATMFontAvailableA | |
| 30 | ATMFontAvailableW | |
| 31 | ATMFontSelected | |
| 32 | ATMFontStatus | |
| 33 | ATMFontStatusA | |
| 34 | ATMFontStatusW | |
| 35 | ATMForceFontChange | |
| 36 | ATMGetBuildStr | |
| 37 | ATMGetBuildStrA | |
| 38 | ATMGetBuildStrW | |
| 39 | ATMGetFontBBox | |
| 40 | ATMGetFontInfo | |
| 41 | ATMGetFontInfoA | |
| 42 | ATMGetFontInfoW | |
| 43 | ATMGetFontPaths | |
| 44 | ATMGetFontPathsA | |
| 45 | ATMGetFontPathsW | |
| 46 | ATMGetGlyphList | |
| 47 | ATMGetGlyphListA | |
| 48 | ATMGetGlyphListW | |
| 49 | ATMGetMenuName | |
| 50 | ATMGetMenuNameA | |
| 51 | ATMGetMenuNameW | |
| 52 | ATMGetNtmFields | |
| 53 | ATMGetNtmFieldsA | |
| 54 | ATMGetNtmFieldsW | |
| 55 | ATMGetOutline | |
| 56 | ATMGetOutlineA | |
| 57 | ATMGetOutlineW | |
| 58 | ATMGetPostScriptName | |
| 59 | ATMGetPostScriptNameA | |
| 60 | ATMGetPostScriptNameW | |
| 61 | ATMGetVersion | |
| 62 | ATMGetVersionEx | |
| 63 | ATMGetVersionExA | |
| 64 | ATMGetVersionExW | |
| 65 | ATMInstallSubstFontA | |
| 66 | ATMInstallSubstFontW | |
| 67 | ATMMakePFM | |
| 68 | ATMMakePFMA | |
| 69 | ATMMakePFMW | |
| 70 | ATMMakePSS | |
| 71 | ATMMakePSSA | |
| 72 | ATMMakePSSW | |
| 73 | ATMProperlyLoaded | |
| 74 | ATMRemoveFont | |
| 75 | ATMRemoveFontA | |
| 76 | ATMRemoveFontW | |
| 77 | ATMRemoveSubstFontA | |
| 78 | ATMRemoveSubstFontW | |
| 79 | ATMSelectEncoding | |
| 80 | ATMSelectObject | |
| 81 | ATMSetFlags | |
| 82 | ATMXYShowText | |
| 83 | ATMXYShowTextA | |
| 84 | ATMXYShowTextW |
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 | ; | |
| 7 | LIBRARY atrace.dll | |
| 8 | EXPORTS | |
| 9 | INTERNAL__AsyncBinaryTrace | |
| 10 | INTERNAL__AsyncStringTrace | |
| 11 | INTERNAL__DebugAssert | |
| 12 | INTERNAL__FlushAsyncTrace | |
| 13 | INTERNAL__InitAsyncTrace | |
| 14 | INTERNAL__SetAsyncTraceParams | |
| 15 | INTERNAL__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 | ; | |
| 7 | LIBRARY AutoDisc.dll | |
| 8 | EXPORTS | |
| 9 | AddEmailToAutoComplete | |
| 10 | AutoDiscoverAndOpenEmail | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllInstall | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY AVICAP32.dll | |
| 8 | EXPORTS | |
| 9 | AppCleanup | |
| 10 | capCreateCaptureWindowA | |
| 11 | capCreateCaptureWindowW | |
| 12 | capGetDriverDescriptionA | |
| 13 | capGetDriverDescriptionW | |
| 14 | videoThunk32 |
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 | ; | |
| 7 | LIBRARY AVIFIL32.dll | |
| 8 | EXPORTS | |
| 9 | AVIBuildFilter | |
| 10 | AVIBuildFilterA | |
| 11 | AVIBuildFilterW | |
| 12 | AVIClearClipboard | |
| 13 | AVIFileAddRef | |
| 14 | AVIFileCreateStream | |
| 15 | AVIFileCreateStreamA | |
| 16 | AVIFileCreateStreamW | |
| 17 | AVIFileEndRecord | |
| 18 | AVIFileExit | |
| 19 | AVIFileGetStream | |
| 20 | AVIFileInfo | |
| 21 | AVIFileInfoA | |
| 22 | AVIFileInfoW | |
| 23 | AVIFileInit | |
| 24 | AVIFileOpen | |
| 25 | AVIFileOpenA | |
| 26 | AVIFileOpenW | |
| 27 | AVIFileReadData | |
| 28 | AVIFileRelease | |
| 29 | AVIFileWriteData | |
| 30 | AVIGetFromClipboard | |
| 31 | AVIMakeCompressedStream | |
| 32 | AVIMakeFileFromStreams | |
| 33 | AVIMakeStreamFromClipboard | |
| 34 | AVIPutFileOnClipboard | |
| 35 | AVISave | |
| 36 | AVISaveA | |
| 37 | AVISaveOptions | |
| 38 | AVISaveOptionsFree | |
| 39 | AVISaveV | |
| 40 | AVISaveVA | |
| 41 | AVISaveVW | |
| 42 | AVISaveW | |
| 43 | AVIStreamAddRef | |
| 44 | AVIStreamBeginStreaming | |
| 45 | AVIStreamCreate | |
| 46 | AVIStreamEndStreaming | |
| 47 | AVIStreamFindSample | |
| 48 | AVIStreamGetFrame | |
| 49 | AVIStreamGetFrameClose | |
| 50 | AVIStreamGetFrameOpen | |
| 51 | AVIStreamInfo | |
| 52 | AVIStreamInfoA | |
| 53 | AVIStreamInfoW | |
| 54 | AVIStreamLength | |
| 55 | AVIStreamOpenFromFile | |
| 56 | AVIStreamOpenFromFileA | |
| 57 | AVIStreamOpenFromFileW | |
| 58 | AVIStreamRead | |
| 59 | AVIStreamReadData | |
| 60 | AVIStreamReadFormat | |
| 61 | AVIStreamRelease | |
| 62 | AVIStreamSampleToTime | |
| 63 | AVIStreamSetFormat | |
| 64 | AVIStreamStart | |
| 65 | AVIStreamTimeToSample | |
| 66 | AVIStreamWrite | |
| 67 | AVIStreamWriteData | |
| 68 | CreateEditableStream | |
| 69 | DllCanUnloadNow | |
| 70 | DllGetClassObject | |
| 71 | EditStreamClone | |
| 72 | EditStreamCopy | |
| 73 | EditStreamCut | |
| 74 | EditStreamPaste | |
| 75 | EditStreamSetInfo | |
| 76 | EditStreamSetInfoA | |
| 77 | EditStreamSetInfoW | |
| 78 | EditStreamSetName | |
| 79 | EditStreamSetNameA | |
| 80 | EditStreamSetNameW | |
| 81 | IID_IAVIEditStream | |
| 82 | IID_IAVIFile | |
| 83 | IID_IAVIStream | |
| 84 | IID_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 | ; | |
| 7 | LIBRARY BatMeter.dll | |
| 8 | EXPORTS | |
| 9 | BatMeterCapabilities | |
| 10 | CreateBatMeter | |
| 11 | DestroyBatMeter | |
| 12 | PowerCapabilities | |
| 13 | UpdateBatMeter |
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 | ; | |
| 7 | LIBRARY batt.dll | |
| 8 | EXPORTS | |
| 9 | BatteryClassCoInstaller | |
| 10 | BatteryClassInstall |
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 | ; | |
| 7 | LIBRARY CARDS.dll | |
| 8 | EXPORTS | |
| 9 | WEP | |
| 10 | cdtAnimate | |
| 11 | cdtDraw | |
| 12 | cdtDrawExt | |
| 13 | cdtInit | |
| 14 | cdtTerm |
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 | ; | |
| 7 | LIBRARY catsrv.dll | |
| 8 | EXPORTS | |
| 9 | ; long __cdecl CancelWriteICR(struct IComponentRecords * __ptr64 * __ptr64) | |
| 10 | ?CancelWriteICR@@YAJPEAPEAUIComponentRecords@@@Z | |
| 11 | CreateComponentLibraryTS | |
| 12 | GetCatalogCRMClerk | |
| 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 | |
| 17 | OpenComponentLibrarySharedTS | |
| 18 | OpenComponentLibraryTS | |
| 19 | ; void __cdecl ReleaseReadICR(struct IComponentRecords * __ptr64 * __ptr64) | |
| 20 | ?ReleaseReadICR@@YAXPEAPEAUIComponentRecords@@@Z | |
| 21 | ; long __cdecl SaveWriteICR(struct IComponentRecords * __ptr64 * __ptr64) | |
| 22 | ?SaveWriteICR@@YAJPEAPEAUIComponentRecords@@@Z | |
| 23 | DllCanUnloadNow | |
| 24 | DllGetClassObject | |
| 25 | DllRegisterServer | |
| 26 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY catsrvut.DLL | |
| 8 | EXPORTS | |
| 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 | |
| 41 | RegDBBackup | |
| 42 | RegDBRestore | |
| 43 | StartMTSTOCOM | |
| 44 | WinlogonHandlePendingInfOperations | |
| 45 | CGMIsAdministrator | |
| 46 | COMPlusUninstallActionW | |
| 47 | DllCanUnloadNow | |
| 48 | DllGetClassObject | |
| 49 | DllRegisterServer | |
| 50 | DllUnregisterServer | |
| 51 | FindAssemblyModulesW | |
| 52 | ManagedRequestW | |
| 53 | QueryUserDllW | |
| 54 | RunMTSToCom | |
| 55 | SysprepComplus | |
| 56 | SysprepComplus2 |
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 | ; | |
| 7 | LIBRARY ICFGNT.dll | |
| 8 | EXPORTS | |
| 9 | IcfgSetInstallSourcePath | |
| 10 | InetSetAutodialAddress | |
| 11 | IcfgGetLastInstallErrorText | |
| 12 | IcfgInstallInetComponents | |
| 13 | IcfgInstallModem | |
| 14 | IcfgIsFileSharingTurnedOn | |
| 15 | IcfgIsGlobalDNS | |
| 16 | IcfgNeedInetComponents | |
| 17 | IcfgNeedModem | |
| 18 | IcfgRemoveGlobalDNS | |
| 19 | IcfgStartServices | |
| 20 | IcfgTurnOffFileSharing | |
| 21 | InetGetAutodial | |
| 22 | InetGetSupportedPlatform | |
| 23 | InetSetAutodial |
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 | ; | |
| 7 | LIBRARY CdfView.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | OpenChannel | |
| 14 | ParseDesktopComponent | |
| 15 | Subscribe | |
| 16 | SubscribeToCDF |
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 | ; | |
| 7 | LIBRARY CDM.dll | |
| 8 | EXPORTS | |
| 9 | CancelCDMOperation | |
| 10 | CloseCDMContext | |
| 11 | DetFilesDownloaded | |
| 12 | DownloadGetUpdatedFiles | |
| 13 | DownloadIsInternetAvailable | |
| 14 | DownloadUpdatedFiles | |
| 15 | FindMatchingDriver | |
| 16 | LogDriverNotFound | |
| 17 | OpenCDMContext | |
| 18 | OpenCDMContextEx | |
| 19 | QueryDetectionFiles |
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 | ; | |
| 7 | LIBRARY certcli.dll | |
| 8 | EXPORTS | |
| 9 | CAAccessCheck | |
| 10 | CAAccessCheckEx | |
| 11 | CAAddCACertificateType | |
| 12 | CACertTypeAccessCheck | |
| 13 | CACertTypeAccessCheckEx | |
| 14 | CACertTypeGetSecurity | |
| 15 | CACertTypeQuery | |
| 16 | CACertTypeRegisterQuery | |
| 17 | CACertTypeSetSecurity | |
| 18 | CACertTypeUnregisterQuery | |
| 19 | CACloneCertType | |
| 20 | CACloseCA | |
| 21 | CACloseCertType | |
| 22 | CACountCAs | |
| 23 | CACountCertTypes | |
| 24 | CACreateAutoEnrollmentObjectEx | |
| 25 | CACreateCertType | |
| 26 | CACreateLocalAutoEnrollmentObject | |
| 27 | CACreateNewCA | |
| 28 | CADeleteCA | |
| 29 | CADeleteCertType | |
| 30 | CADeleteLocalAutoEnrollmentObject | |
| 31 | CAEnumCertTypes | |
| 32 | CAEnumCertTypesEx | |
| 33 | CAEnumCertTypesForCA | |
| 34 | CAEnumCertTypesForCAEx | |
| 35 | CAEnumFirstCA | |
| 36 | CAEnumNextCA | |
| 37 | CAEnumNextCertType | |
| 38 | CAFindByCertType | |
| 39 | CAFindByIssuerDN | |
| 40 | CAFindByName | |
| 41 | CAFindCertTypeByName | |
| 42 | CAFreeCAProperty | |
| 43 | CAFreeCertTypeExtensions | |
| 44 | CAFreeCertTypeProperty | |
| 45 | CAGetCACertificate | |
| 46 | CAGetCAExpiration | |
| 47 | CAGetCAFlags | |
| 48 | CAGetCAProperty | |
| 49 | CAGetCASecurity | |
| 50 | CAGetCertTypeExpiration | |
| 51 | CAGetCertTypeExtensions | |
| 52 | CAGetCertTypeExtensionsEx | |
| 53 | CAGetCertTypeFlags | |
| 54 | CAGetCertTypeFlagsEx | |
| 55 | CAGetCertTypeKeySpec | |
| 56 | CAGetCertTypeProperty | |
| 57 | CAGetCertTypePropertyEx | |
| 58 | CAGetDN | |
| 59 | CAInstallDefaultCertType | |
| 60 | CAIsCertTypeCurrent | |
| 61 | CAOIDAdd | |
| 62 | CAOIDCreateNew | |
| 63 | CAOIDDelete | |
| 64 | CAOIDFreeLdapURL | |
| 65 | CAOIDFreeProperty | |
| 66 | CAOIDGetLdapURL | |
| 67 | CAOIDGetProperty | |
| 68 | CAOIDSetProperty | |
| 69 | CARemoveCACertificateType | |
| 70 | CASetCACertificate | |
| 71 | CASetCAExpiration | |
| 72 | CASetCAFlags | |
| 73 | CASetCAProperty | |
| 74 | CASetCASecurity | |
| 75 | CASetCertTypeExpiration | |
| 76 | CASetCertTypeExtension | |
| 77 | CASetCertTypeFlags | |
| 78 | CASetCertTypeFlagsEx | |
| 79 | CASetCertTypeKeySpec | |
| 80 | CASetCertTypeProperty | |
| 81 | CASetCertTypePropertyEx | |
| 82 | CAUpdateCA | |
| 83 | CAUpdateCertType | |
| 84 | DllCanUnloadNow | |
| 85 | DllGetClassObject | |
| 86 | DllInstall | |
| 87 | DllRegisterServer | |
| 88 | DllUnregisterServer | |
| 89 | GetProxyDllInfo |
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 | ; | |
| 7 | LIBRARY imeskdic.dll | |
| 8 | EXPORTS | |
| 9 | CreateIImeSkdicInstance | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY cimwin32.dll | |
| 8 | EXPORTS | |
| 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 | |
| 21 | DllCanUnloadNow | |
| 22 | DllGetClassObject | |
| 23 | DllRegisterServer | |
| 24 | DllUnregisterServer | |
| 25 | GetSDFromWin32SecurityDescriptor | |
| 26 | SetWin32SecurityDescriptorFromSD |
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 | ; | |
| 6 | LIBRARY "CLASSPNP.SYS" | |
| 7 | EXPORTS | |
| 8 | ClassAcquireChildLock | |
| 9 | ClassAcquireRemoveLockEx | |
| 10 | ClassAsynchronousCompletion | |
| 11 | ClassBuildRequest | |
| 12 | ClassCheckMediaState | |
| 13 | ClassClaimDevice | |
| 14 | ClassCleanupMediaChangeDetection | |
| 15 | ClassCompleteRequest | |
| 16 | ClassCreateDeviceObject | |
| 17 | ClassDebugPrint | |
| 18 | ClassDeleteSrbLookasideList | |
| 19 | ClassDeviceControl | |
| 20 | ClassDisableMediaChangeDetection | |
| 21 | ClassEnableMediaChangeDetection | |
| 22 | ClassFindModePage | |
| 23 | ClassForwardIrpSynchronous | |
| 24 | ClassGetDescriptor | |
| 25 | ClassGetDeviceParameter | |
| 26 | ClassGetDriverExtension | |
| 27 | ClassGetFsContext | |
| 28 | ClassGetVpb | |
| 29 | ClassInitialize | |
| 30 | ClassInitializeEx | |
| 31 | ClassInitializeMediaChangeDetection | |
| 32 | ClassInitializeSrbLookasideList | |
| 33 | ClassInitializeTestUnitPolling | |
| 34 | ClassInternalIoControl | |
| 35 | ClassInterpretSenseInfo | |
| 36 | ClassInvalidateBusRelations | |
| 37 | ClassIoComplete | |
| 38 | ClassIoCompleteAssociated | |
| 39 | ClassMarkChildMissing | |
| 40 | ClassMarkChildrenMissing | |
| 41 | ClassModeSense | |
| 42 | ClassNotifyFailurePredicted | |
| 43 | ClassQueryTimeOutRegistryValue | |
| 44 | ClassReadDriveCapacity | |
| 45 | ClassReleaseChildLock | |
| 46 | ClassReleaseQueue | |
| 47 | ClassReleaseRemoveLock | |
| 48 | ClassRemoveDevice | |
| 49 | ClassResetMediaChangeTimer | |
| 50 | ClassScanForSpecial | |
| 51 | ClassSendDeviceIoControlSynchronous | |
| 52 | ClassSendIrpSynchronous | |
| 53 | ClassSendNotification | |
| 54 | ClassSendSrbAsynchronous | |
| 55 | ClassSendSrbSynchronous | |
| 56 | ClassSendStartUnit | |
| 57 | ClassSetDeviceParameter | |
| 58 | ClassSetFailurePredictionPoll | |
| 59 | ClassSetMediaChangeState | |
| 60 | ClassSignalCompletion | |
| 61 | ClassSpinDownPowerHandler | |
| 62 | ClassSplitRequest | |
| 63 | ClassStopUnitPowerHandler | |
| 64 | ClassUpdateInformationInRegistry | |
| 65 | ClassWmiCompleteRequest | |
| 66 | ClassWmiFireEvent | |
| 67 | DllUnload |
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 | ; | |
| 7 | LIBRARY cmcfg32.dll | |
| 8 | EXPORTS | |
| 9 | CmstpExtensionProc | |
| 10 | CMConfig | |
| 11 | CMConfigEx |
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 | ; | |
| 7 | LIBRARY cmdial32.dll | |
| 8 | EXPORTS | |
| 9 | AutoDialFunc | |
| 10 | CmCustomDialDlg | |
| 11 | CmCustomHangUp | |
| 12 | CmReConnect | |
| 13 | GetCustomProperty | |
| 14 | InetDialHandler | |
| 15 | RasCustomDeleteEntryNotify | |
| 16 | RasCustomDial | |
| 17 | RasCustomDialDlg | |
| 18 | RasCustomEntryDlg | |
| 19 | RasCustomHangUp |
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 | ; | |
| 7 | LIBRARY cmpbk32.dll | |
| 8 | EXPORTS | |
| 9 | PhoneBookCopyFilter | |
| 10 | PhoneBookEnumCountries | |
| 11 | PhoneBookEnumNumbers | |
| 12 | PhoneBookEnumNumbersWithRegionsZero | |
| 13 | PhoneBookEnumRegions | |
| 14 | PhoneBookFreeFilter | |
| 15 | PhoneBookGetCountryId | |
| 16 | PhoneBookGetCountryNameA | |
| 17 | PhoneBookGetCountryNameW | |
| 18 | PhoneBookGetCurrentCountryId | |
| 19 | PhoneBookGetPhoneCanonicalA | |
| 20 | PhoneBookGetPhoneDUNA | |
| 21 | PhoneBookGetPhoneDescA | |
| 22 | PhoneBookGetPhoneDispA | |
| 23 | PhoneBookGetPhoneNonCanonicalA | |
| 24 | PhoneBookGetPhoneType | |
| 25 | PhoneBookGetRegionNameA | |
| 26 | PhoneBookHasPhoneType | |
| 27 | PhoneBookLoad | |
| 28 | PhoneBookMatchFilter | |
| 29 | PhoneBookMergeChanges | |
| 30 | PhoneBookParseInfoA | |
| 31 | PhoneBookUnload |
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 | ; | |
| 6 | LIBRARY "cmutil.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 62 | CmAtolA | |
| 63 | CmAtolW | |
| 64 | CmBuildFullPathFromRelativeA | |
| 65 | CmBuildFullPathFromRelativeW | |
| 66 | CmCompareStringA | |
| 67 | CmCompareStringW | |
| 68 | CmConvertRelativePathA | |
| 69 | CmConvertRelativePathW | |
| 70 | CmEndOfStrA | |
| 71 | CmConvertStrToIPv6AddrA | |
| 72 | CmConvertStrToIPv6AddrW | |
| 73 | CmEndOfStrW | |
| 74 | CmFmtMsgA | |
| 75 | CmFmtMsgW | |
| 76 | CmFree | |
| 77 | CmIsDigitA | |
| 78 | CmIsDigitW | |
| 79 | CmIsIPv6AddressA | |
| 80 | CmIsIPv6AddressW | |
| 81 | CmIsSpaceA | |
| 82 | CmIsSpaceW | |
| 83 | CmLoadIconA | |
| 84 | CmLoadIconW | |
| 85 | CmLoadImageA | |
| 86 | CmLoadImageW | |
| 87 | CmLoadSmallIconA | |
| 88 | CmLoadSmallIconW | |
| 89 | CmLoadStringA | |
| 90 | CmLoadStringW | |
| 91 | CmMalloc | |
| 92 | CmParsePathA | |
| 93 | CmParsePathW | |
| 94 | CmRealloc | |
| 95 | CmStrCatAllocA | |
| 96 | CmStrCatAllocW | |
| 97 | CmStrCharCountA | |
| 98 | CmStrCharCountW | |
| 99 | CmStrCharStuffingA | |
| 100 | CmStrCharStuffingW | |
| 101 | CmStrCpyAllocA | |
| 102 | CmStrCpyAllocW | |
| 103 | CmStrStrA | |
| 104 | CmStrStrW | |
| 105 | CmStrTrimA | |
| 106 | CmStrTrimW | |
| 107 | CmStrchrA | |
| 108 | CmStrchrW | |
| 109 | CmStripFileNameA | |
| 110 | CmStripFileNameW | |
| 111 | CmStripPathAndExtA | |
| 112 | CmStripPathAndExtW | |
| 113 | CmStrrchrA | |
| 114 | CmStrrchrW | |
| 115 | CmStrtokA | |
| 116 | CmStrtokW | |
| 117 | CmWinHelp | |
| 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 | |
| 146 | GetOSBuildNumber | |
| 147 | GetOSMajorVersion | |
| 148 | GetOSVersion | |
| 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 | |
| 173 | IsFarEastNonOSR2Win95 | |
| 174 | IsLogonAsSystem | |
| 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 | |
| 185 | MakeBold | |
| 186 | ; private: long __cdecl CmLogFile::OpenFile(void)__ptr64 | |
| 187 | ?OpenFile@CmLogFile@@AEAAJXZ | |
| 188 | ReleaseBold | |
| 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 | |
| 241 | SzToWz | |
| 242 | SzToWzWithAlloc | |
| 243 | UpdateFont | |
| 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 | |
| 258 | WzToSz | |
| 259 | WzToSzWithAlloc | |
| 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 | ; | |
| 7 | LIBRARY CNETCFG.dll | |
| 8 | EXPORTS | |
| 9 | InetConfigSystem | |
| 10 | InetNeedModem | |
| 11 | InetNeedSystemComponents | |
| 12 | InetStartServices |
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 | ; | |
| 7 | LIBRARY COADMIN.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | InitComAdmindata | |
| 13 | TerminateComAdmindata |
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 | ; | |
| 7 | LIBRARY COMRes.dll | |
| 8 | EXPORTS | |
| 9 | COMResModuleInstance |
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 | ; | |
| 7 | LIBRARY comsetup.dll | |
| 8 | EXPORTS | |
| 9 | HandlePendingInfOperations | |
| 10 | InstallOnReboot | |
| 11 | OcEntry | |
| 12 | RunComPlusSetWebApplicationServerRoleW | |
| 13 | SetupPrintLog | |
| 14 | UpgradeDSSchema | |
| 15 | ComPlusGetWebApplicationServerRole | |
| 16 | ComPlusSetWebApplicationServerRole |
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 | ; | |
| 7 | LIBRARY corpol.dll | |
| 8 | EXPORTS | |
| 9 | CORLockDownProvider | |
| 10 | CORPolicyEE | |
| 11 | CORPolicyProvider | |
| 12 | DllCanUnloadNow | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer | |
| 15 | GetPublisher | |
| 16 | GetUnsignedPermissions |
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 | ; | |
| 7 | LIBRARY CSCDLL.dll | |
| 8 | EXPORTS | |
| 9 | MprServiceProc | |
| 10 | ReInt_WndProc | |
| 11 | LogonHappened | |
| 12 | LogoffHappened | |
| 13 | Update | |
| 14 | RefreshConnections | |
| 15 | BreakConnections | |
| 16 | CheckCSC | |
| 17 | CSCIsCSCEnabled | |
| 18 | CSCFindClose | |
| 19 | CSCSetMaxSpace | |
| 20 | CSCFreeSpace | |
| 21 | CheckCSCEx | |
| 22 | CSCDoEnableDisable | |
| 23 | CSCPinFileA | |
| 24 | CSCUnpinFileA | |
| 25 | CSCQueryFileStatusA | |
| 26 | CSCFindFirstFileA | |
| 27 | CSCFindNextFileA | |
| 28 | CSCDeleteA | |
| 29 | CSCFillSparseFilesA | |
| 30 | CSCMergeShareA | |
| 31 | CSCCopyReplicaA | |
| 32 | CSCEnumForStatsA | |
| 33 | CSCIsServerOfflineA | |
| 34 | CSCGetSpaceUsageA | |
| 35 | CSCTransitionServerOnlineA | |
| 36 | CSCCheckShareOnlineA | |
| 37 | CSCDoLocalRenameA | |
| 38 | CSCEnumForStatsExA | |
| 39 | CSCFindFirstFileForSidA | |
| 40 | CSCQueryFileStatusExA | |
| 41 | CSCQueryShareStatusA | |
| 42 | CSCPurgeUnpinnedFiles | |
| 43 | CSCPinFileW | |
| 44 | CSCUnpinFileW | |
| 45 | CSCQueryFileStatusW | |
| 46 | CSCFindFirstFileW | |
| 47 | CSCFindNextFileW | |
| 48 | CSCDeleteW | |
| 49 | CSCFillSparseFilesW | |
| 50 | CSCMergeShareW | |
| 51 | CSCCopyReplicaW | |
| 52 | CSCEnumForStatsW | |
| 53 | CSCIsServerOfflineW | |
| 54 | CSCGetSpaceUsageW | |
| 55 | CSCTransitionServerOnlineW | |
| 56 | CSCCheckShareOnlineW | |
| 57 | CSCDoLocalRenameW | |
| 58 | CSCEnumForStatsExW | |
| 59 | CSCDoLocalRenameExW | |
| 60 | CSCCheckShareOnlineExW | |
| 61 | CSCBeginSynchronizationW | |
| 62 | CSCEndSynchronizationW | |
| 63 | CSCFindFirstFileForSidW | |
| 64 | CSCEncryptDecryptDatabase | |
| 65 | CSCQueryDatabaseStatus | |
| 66 | CSCQueryFileStatusExW | |
| 67 | CSCQueryShareStatusW | |
| 68 | CSCShareIdToShareName | |
| 69 | WinlogonLogonEvent | |
| 70 | WinlogonLogoffEvent | |
| 71 | WinlogonScreenSaverEvent | |
| 72 | WinlogonShutdownEvent | |
| 73 | WinlogonLockEvent | |
| 74 | WinlogonUnlockEvent | |
| 75 | WinlogonStartShellEvent | |
| 76 | WinlogonStartupEvent |
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 | ; | |
| 7 | LIBRARY CSCUI.dll | |
| 8 | EXPORTS | |
| 9 | CSCUIOptionsPropertySheet | |
| 10 | ProcessGroupPolicy | |
| 11 | CSCOptions_RunDLL | |
| 12 | CSCOptions_RunDLLA | |
| 13 | CSCOptions_RunDLLW | |
| 14 | CSCUIInitialize | |
| 15 | CSCUIMsgProcess | |
| 16 | CSCUIRemoveFolderFromCache | |
| 17 | CSCUISetState | |
| 18 | CscPolicyProcessing_RunDLLW | |
| 19 | DllCanUnloadNow | |
| 20 | DllGetClassObject | |
| 21 | DllRegisterServer | |
| 22 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY CSRSRV.dll | |
| 8 | EXPORTS | |
| 9 | CsrAddStaticServerThread | |
| 10 | CsrCallServerFromServer | |
| 11 | CsrConnectToUser | |
| 12 | CsrCreateProcess | |
| 13 | CsrCreateRemoteThread | |
| 14 | CsrCreateThread | |
| 15 | CsrCreateWait | |
| 16 | CsrDebugProcess | |
| 17 | CsrDebugProcessStop | |
| 18 | CsrDereferenceProcess | |
| 19 | CsrDereferenceThread | |
| 20 | CsrDereferenceWait | |
| 21 | CsrDestroyProcess | |
| 22 | CsrDestroyThread | |
| 23 | CsrExecServerThread | |
| 24 | CsrGetProcessLuid | |
| 25 | CsrImpersonateClient | |
| 26 | CsrLockProcessByClientId | |
| 27 | CsrLockThreadByClientId | |
| 28 | CsrMoveSatisfiedWait | |
| 29 | CsrNotifyWait | |
| 30 | CsrPopulateDosDevices | |
| 31 | CsrQueryApiPort | |
| 32 | CsrReferenceThread | |
| 33 | CsrRevertToSelf | |
| 34 | CsrServerInitialization | |
| 35 | CsrSetBackgroundPriority | |
| 36 | CsrSetCallingSpooler | |
| 37 | CsrSetForegroundPriority | |
| 38 | CsrShutdownProcesses | |
| 39 | CsrUnhandledExceptionFilter | |
| 40 | CsrUnlockProcess | |
| 41 | CsrUnlockThread | |
| 42 | CsrValidateMessageBuffer | |
| 43 | CsrValidateMessageString |
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 | ; | |
| 7 | LIBRARY d3d8thk.dll | |
| 8 | EXPORTS | |
| 9 | OsThunkD3dContextCreate | |
| 10 | OsThunkD3dContextDestroy | |
| 11 | OsThunkD3dContextDestroyAll | |
| 12 | OsThunkD3dDrawPrimitives2 | |
| 13 | OsThunkD3dValidateTextureStageState | |
| 14 | OsThunkDdAddAttachedSurface | |
| 15 | OsThunkDdAlphaBlt | |
| 16 | OsThunkDdAttachSurface | |
| 17 | OsThunkDdBeginMoCompFrame | |
| 18 | OsThunkDdBlt | |
| 19 | OsThunkDdCanCreateD3DBuffer | |
| 20 | OsThunkDdCanCreateSurface | |
| 21 | OsThunkDdColorControl | |
| 22 | OsThunkDdCreateD3DBuffer | |
| 23 | OsThunkDdCreateDirectDrawObject | |
| 24 | OsThunkDdCreateMoComp | |
| 25 | OsThunkDdCreateSurface | |
| 26 | OsThunkDdCreateSurfaceEx | |
| 27 | OsThunkDdCreateSurfaceObject | |
| 28 | OsThunkDdDeleteDirectDrawObject | |
| 29 | OsThunkDdDeleteSurfaceObject | |
| 30 | OsThunkDdDestroyD3DBuffer | |
| 31 | OsThunkDdDestroyMoComp | |
| 32 | OsThunkDdDestroySurface | |
| 33 | OsThunkDdEndMoCompFrame | |
| 34 | OsThunkDdFlip | |
| 35 | OsThunkDdFlipToGDISurface | |
| 36 | OsThunkDdGetAvailDriverMemory | |
| 37 | OsThunkDdGetBltStatus | |
| 38 | OsThunkDdGetDC | |
| 39 | OsThunkDdGetDriverInfo | |
| 40 | OsThunkDdGetDriverState | |
| 41 | OsThunkDdGetDxHandle | |
| 42 | OsThunkDdGetFlipStatus | |
| 43 | OsThunkDdGetInternalMoCompInfo | |
| 44 | OsThunkDdGetMoCompBuffInfo | |
| 45 | OsThunkDdGetMoCompFormats | |
| 46 | OsThunkDdGetMoCompGuids | |
| 47 | OsThunkDdGetScanLine | |
| 48 | OsThunkDdLock | |
| 49 | OsThunkDdLockD3D | |
| 50 | OsThunkDdQueryDirectDrawObject | |
| 51 | OsThunkDdQueryMoCompStatus | |
| 52 | OsThunkDdReenableDirectDrawObject | |
| 53 | OsThunkDdReleaseDC | |
| 54 | OsThunkDdRenderMoComp | |
| 55 | OsThunkDdResetVisrgn | |
| 56 | OsThunkDdSetColorKey | |
| 57 | OsThunkDdSetExclusiveMode | |
| 58 | OsThunkDdSetGammaRamp | |
| 59 | OsThunkDdSetOverlayPosition | |
| 60 | OsThunkDdUnattachSurface | |
| 61 | OsThunkDdUnlock | |
| 62 | OsThunkDdUnlockD3D | |
| 63 | OsThunkDdUpdateOverlay | |
| 64 | OsThunkDdWaitForVerticalBlank |
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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory | |
| 9 | D3DDisassembleCode | |
| 10 | D3DDisassembleEffect | |
| 11 | D3DGetCodeDebugInfo | |
| 12 | D3DGetInputAndOutputSignatureBlob | |
| 13 | D3DGetInputSignatureBlob | |
| 14 | D3DGetOutputSignatureBlob | |
| 15 | D3DPreprocessFromMemory | |
| 16 | D3DReflectCode | |
| 17 | DebugSetMute |
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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory | |
| 9 | D3DDisassembleCode | |
| 10 | D3DDisassembleEffect | |
| 11 | D3DGetCodeDebugInfo | |
| 12 | D3DGetInputAndOutputSignatureBlob | |
| 13 | D3DGetInputSignatureBlob | |
| 14 | D3DGetOutputSignatureBlob | |
| 15 | D3DPreprocessFromMemory | |
| 16 | D3DReflectCode | |
| 17 | DebugSetMute |
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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory | |
| 9 | D3DDisassembleCode | |
| 10 | D3DDisassembleEffect | |
| 11 | D3DGetCodeDebugInfo | |
| 12 | D3DGetInputAndOutputSignatureBlob | |
| 13 | D3DGetInputSignatureBlob | |
| 14 | D3DGetOutputSignatureBlob | |
| 15 | D3DPreprocessFromMemory | |
| 16 | D3DReflectCode | |
| 17 | DebugSetMute |
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 | ; | |
| 6 | LIBRARY "D3DCompiler.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory | |
| 9 | D3DDisassembleCode | |
| 10 | D3DDisassembleEffect | |
| 11 | D3DGetCodeDebugInfo | |
| 12 | D3DGetInputAndOutputSignatureBlob | |
| 13 | D3DGetInputSignatureBlob | |
| 14 | D3DGetOutputSignatureBlob | |
| 15 | D3DPreprocessFromMemory | |
| 16 | D3DReflectCode | |
| 17 | DebugSetMute |
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 | ; | |
| 6 | LIBRARY "D3DCompiler_37.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory | |
| 9 | D3DDisassembleCode | |
| 10 | D3DDisassembleEffect | |
| 11 | D3DGetCodeDebugInfo | |
| 12 | D3DGetInputAndOutputSignatureBlob | |
| 13 | D3DGetInputSignatureBlob | |
| 14 | D3DGetOutputSignatureBlob | |
| 15 | D3DPreprocessFromMemory | |
| 16 | D3DReflectCode | |
| 17 | DebugSetMute |
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 | ; | |
| 6 | LIBRARY "D3DCompiler_38.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory | |
| 9 | D3DDisassembleCode | |
| 10 | D3DDisassembleEffect | |
| 11 | D3DGetCodeDebugInfo | |
| 12 | D3DGetInputAndOutputSignatureBlob | |
| 13 | D3DGetInputSignatureBlob | |
| 14 | D3DGetOutputSignatureBlob | |
| 15 | D3DPreprocessFromMemory | |
| 16 | D3DReflectCode | |
| 17 | D3DReturnFailure1 | |
| 18 | DebugSetMute |
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 | ; | |
| 6 | LIBRARY "D3DCompiler_39.dll" | |
| 7 | EXPORTS | |
| 8 | D3DCompileFromMemory | |
| 9 | D3DDisassembleCode | |
| 10 | D3DDisassembleEffect | |
| 11 | D3DGetCodeDebugInfo | |
| 12 | D3DGetInputAndOutputSignatureBlob | |
| 13 | D3DGetInputSignatureBlob | |
| 14 | D3DGetOutputSignatureBlob | |
| 15 | D3DPreprocessFromMemory | |
| 16 | D3DReflectCode | |
| 17 | D3DReturnFailure1 | |
| 18 | DebugSetMute |
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 | ; | |
| 6 | LIBRARY "D3DCompiler_40.dll" | |
| 7 | EXPORTS | |
| 8 | DebugSetMute | |
| 9 | D3DCompile | |
| 10 | D3DDisassemble | |
| 11 | D3DDisassemble10Effect | |
| 12 | D3DGetDebugInfo | |
| 13 | D3DGetInputAndOutputSignatureBlob | |
| 14 | D3DGetInputSignatureBlob | |
| 15 | D3DGetOutputSignatureBlob | |
| 16 | D3DPreprocess | |
| 17 | D3DReflect | |
| 18 | D3DReturnFailure1 | |
| 19 | D3DStripShader |
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 | ; | |
| 6 | LIBRARY "D3DCompiler_41.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble | |
| 9 | DebugSetMute | |
| 10 | D3DCompile | |
| 11 | D3DDisassemble | |
| 12 | D3DDisassemble10Effect | |
| 13 | D3DGetDebugInfo | |
| 14 | D3DGetInputAndOutputSignatureBlob | |
| 15 | D3DGetInputSignatureBlob | |
| 16 | D3DGetOutputSignatureBlob | |
| 17 | D3DPreprocess | |
| 18 | D3DReflect | |
| 19 | D3DReturnFailure1 | |
| 20 | D3DStripShader |
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 | ; | |
| 6 | LIBRARY "D3DCompiler_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble | |
| 9 | DebugSetMute | |
| 10 | D3DCompile | |
| 11 | D3DDisassemble | |
| 12 | D3DDisassemble10Effect | |
| 13 | D3DGetDebugInfo | |
| 14 | D3DGetInputAndOutputSignatureBlob | |
| 15 | D3DGetInputSignatureBlob | |
| 16 | D3DGetOutputSignatureBlob | |
| 17 | D3DPreprocess | |
| 18 | D3DReflect | |
| 19 | D3DReturnFailure1 | |
| 20 | D3DStripShader |
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 | ; | |
| 6 | LIBRARY "D3DCOMPILER_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble | |
| 9 | DebugSetMute | |
| 10 | D3DCompile | |
| 11 | D3DCompressShaders | |
| 12 | D3DCreateBlob | |
| 13 | D3DDecompressShaders | |
| 14 | D3DDisassemble | |
| 15 | D3DDisassemble10Effect | |
| 16 | D3DGetBlobPart | |
| 17 | D3DGetDebugInfo | |
| 18 | D3DGetInputAndOutputSignatureBlob | |
| 19 | D3DGetInputSignatureBlob | |
| 20 | D3DGetOutputSignatureBlob | |
| 21 | D3DPreprocess | |
| 22 | D3DReflect | |
| 23 | D3DReturnFailure1 | |
| 24 | D3DStripShader |
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 | ; | |
| 6 | LIBRARY "D3DCOMPILER_46.dll" | |
| 7 | EXPORTS | |
| 8 | D3DAssemble | |
| 9 | DebugSetMute | |
| 10 | D3DCompile | |
| 11 | D3DCompile2 | |
| 12 | D3DCompileFromFile | |
| 13 | D3DCompressShaders | |
| 14 | D3DCreateBlob | |
| 15 | D3DDecompressShaders | |
| 16 | D3DDisassemble | |
| 17 | D3DDisassemble10Effect | |
| 18 | D3DDisassemble11Trace | |
| 19 | D3DDisassembleRegion | |
| 20 | D3DGetBlobPart | |
| 21 | D3DGetDebugInfo | |
| 22 | D3DGetInputAndOutputSignatureBlob | |
| 23 | D3DGetInputSignatureBlob | |
| 24 | D3DGetOutputSignatureBlob | |
| 25 | D3DGetTraceInstructionOffsets | |
| 26 | D3DPreprocess | |
| 27 | D3DReadFileToBlob | |
| 28 | D3DReflect | |
| 29 | D3DReturnFailure1 | |
| 30 | D3DSetBlobPart | |
| 31 | D3DStripShader | |
| 32 | D3DWriteBlobToFile |
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 | ; | |
| 6 | LIBRARY "d3dcsx_46.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CreateFFT | |
| 9 | D3DX11CreateFFT1DComplex | |
| 10 | D3DX11CreateFFT1DReal | |
| 11 | D3DX11CreateFFT2DComplex | |
| 12 | D3DX11CreateFFT2DReal | |
| 13 | D3DX11CreateFFT3DComplex | |
| 14 | D3DX11CreateFFT3DReal | |
| 15 | D3DX11CreateScan | |
| 16 | D3DX11CreateSegmentedScan |
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 | ; | |
| 6 | LIBRARY "d3dcsxd_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CreateFFT | |
| 9 | D3DX11CreateFFT1DComplex | |
| 10 | D3DX11CreateFFT1DReal | |
| 11 | D3DX11CreateFFT2DComplex | |
| 12 | D3DX11CreateFFT2DReal | |
| 13 | D3DX11CreateFFT3DComplex | |
| 14 | D3DX11CreateFFT3DReal | |
| 15 | D3DX11CreateScan | |
| 16 | D3DX11CreateSegmentedScan |
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 | ; | |
| 6 | LIBRARY "d3dx10_33.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateEffectFromFileA | |
| 29 | D3DX10CreateEffectFromFileW | |
| 30 | D3DX10CreateEffectFromMemory | |
| 31 | D3DX10CreateEffectFromResourceA | |
| 32 | D3DX10CreateEffectFromResourceW | |
| 33 | D3DX10CreateEffectPoolFromFileA | |
| 34 | D3DX10CreateEffectPoolFromFileW | |
| 35 | D3DX10CreateEffectPoolFromMemory | |
| 36 | D3DX10CreateEffectPoolFromResourceA | |
| 37 | D3DX10CreateEffectPoolFromResourceW | |
| 38 | D3DX10CreateFontA | |
| 39 | D3DX10CreateFontIndirectA | |
| 40 | D3DX10CreateFontIndirectW | |
| 41 | D3DX10CreateFontW | |
| 42 | D3DX10CreateMesh | |
| 43 | D3DX10CreateShaderResourceViewFromFileA | |
| 44 | D3DX10CreateShaderResourceViewFromFileW | |
| 45 | D3DX10CreateShaderResourceViewFromMemory | |
| 46 | D3DX10CreateShaderResourceViewFromResourceA | |
| 47 | D3DX10CreateShaderResourceViewFromResourceW | |
| 48 | D3DX10CreateSkinInfo | |
| 49 | D3DX10CreateSprite | |
| 50 | D3DX10CreateTextureFromFileA | |
| 51 | D3DX10CreateTextureFromFileW | |
| 52 | D3DX10CreateTextureFromMemory | |
| 53 | D3DX10CreateTextureFromResourceA | |
| 54 | D3DX10CreateTextureFromResourceW | |
| 55 | D3DX10DisassembleEffect | |
| 56 | D3DX10DisassembleShader | |
| 57 | D3DX10FilterTexture | |
| 58 | D3DX10GetDriverLevel | |
| 59 | D3DX10GetImageInfoFromFileA | |
| 60 | D3DX10GetImageInfoFromFileW | |
| 61 | D3DX10GetImageInfoFromMemory | |
| 62 | D3DX10GetImageInfoFromResourceA | |
| 63 | D3DX10GetImageInfoFromResourceW | |
| 64 | D3DX10LoadTextureFromTexture | |
| 65 | D3DX10PreprocessShaderFromFileA | |
| 66 | D3DX10PreprocessShaderFromFileW | |
| 67 | D3DX10PreprocessShaderFromMemory | |
| 68 | D3DX10PreprocessShaderFromResourceA | |
| 69 | D3DX10PreprocessShaderFromResourceW | |
| 70 | D3DX10ReflectShader | |
| 71 | D3DX10SHProjectCubeMap | |
| 72 | D3DX10SaveTextureToFileA | |
| 73 | D3DX10SaveTextureToFileW | |
| 74 | D3DX10SaveTextureToMemory | |
| 75 | D3DX10UnsetAllDeviceObjects | |
| 76 | D3DXBoxBoundProbe | |
| 77 | D3DXColorAdjustContrast | |
| 78 | D3DXColorAdjustSaturation | |
| 79 | D3DXComputeBoundingBox | |
| 80 | D3DXComputeBoundingSphere | |
| 81 | D3DXCpuOptimizations | |
| 82 | D3DXCreateMatrixStack | |
| 83 | D3DXFloat16To32Array | |
| 84 | D3DXFloat32To16Array | |
| 85 | D3DXFresnelTerm | |
| 86 | D3DXIntersectTri | |
| 87 | D3DXMatrixAffineTransformation | |
| 88 | D3DXMatrixAffineTransformation2D | |
| 89 | D3DXMatrixDecompose | |
| 90 | D3DXMatrixDeterminant | |
| 91 | D3DXMatrixInverse | |
| 92 | D3DXMatrixLookAtLH | |
| 93 | D3DXMatrixLookAtRH | |
| 94 | D3DXMatrixMultiply | |
| 95 | D3DXMatrixMultiplyTranspose | |
| 96 | D3DXMatrixOrthoLH | |
| 97 | D3DXMatrixOrthoOffCenterLH | |
| 98 | D3DXMatrixOrthoOffCenterRH | |
| 99 | D3DXMatrixOrthoRH | |
| 100 | D3DXMatrixPerspectiveFovLH | |
| 101 | D3DXMatrixPerspectiveFovRH | |
| 102 | D3DXMatrixPerspectiveLH | |
| 103 | D3DXMatrixPerspectiveOffCenterLH | |
| 104 | D3DXMatrixPerspectiveOffCenterRH | |
| 105 | D3DXMatrixPerspectiveRH | |
| 106 | D3DXMatrixReflect | |
| 107 | D3DXMatrixRotationAxis | |
| 108 | D3DXMatrixRotationQuaternion | |
| 109 | D3DXMatrixRotationX | |
| 110 | D3DXMatrixRotationY | |
| 111 | D3DXMatrixRotationYawPitchRoll | |
| 112 | D3DXMatrixRotationZ | |
| 113 | D3DXMatrixScaling | |
| 114 | D3DXMatrixShadow | |
| 115 | D3DXMatrixTransformation | |
| 116 | D3DXMatrixTransformation2D | |
| 117 | D3DXMatrixTranslation | |
| 118 | D3DXMatrixTranspose | |
| 119 | D3DXPlaneFromPointNormal | |
| 120 | D3DXPlaneFromPoints | |
| 121 | D3DXPlaneIntersectLine | |
| 122 | D3DXPlaneNormalize | |
| 123 | D3DXPlaneTransform | |
| 124 | D3DXPlaneTransformArray | |
| 125 | D3DXQuaternionBaryCentric | |
| 126 | D3DXQuaternionExp | |
| 127 | D3DXQuaternionInverse | |
| 128 | D3DXQuaternionLn | |
| 129 | D3DXQuaternionMultiply | |
| 130 | D3DXQuaternionNormalize | |
| 131 | D3DXQuaternionRotationAxis | |
| 132 | D3DXQuaternionRotationMatrix | |
| 133 | D3DXQuaternionRotationYawPitchRoll | |
| 134 | D3DXQuaternionSlerp | |
| 135 | D3DXQuaternionSquad | |
| 136 | D3DXQuaternionSquadSetup | |
| 137 | D3DXQuaternionToAxisAngle | |
| 138 | D3DXSHAdd | |
| 139 | D3DXSHDot | |
| 140 | D3DXSHEvalConeLight | |
| 141 | D3DXSHEvalDirection | |
| 142 | D3DXSHEvalDirectionalLight | |
| 143 | D3DXSHEvalHemisphereLight | |
| 144 | D3DXSHEvalSphericalLight | |
| 145 | D3DXSHMultiply2 | |
| 146 | D3DXSHMultiply3 | |
| 147 | D3DXSHMultiply4 | |
| 148 | D3DXSHMultiply5 | |
| 149 | D3DXSHMultiply6 | |
| 150 | D3DXSHRotate | |
| 151 | D3DXSHRotateZ | |
| 152 | D3DXSHScale | |
| 153 | D3DXSphereBoundProbe | |
| 154 | D3DXVec2BaryCentric | |
| 155 | D3DXVec2CatmullRom | |
| 156 | D3DXVec2Hermite | |
| 157 | D3DXVec2Normalize | |
| 158 | D3DXVec2Transform | |
| 159 | D3DXVec2TransformArray | |
| 160 | D3DXVec2TransformCoord | |
| 161 | D3DXVec2TransformCoordArray | |
| 162 | D3DXVec2TransformNormal | |
| 163 | D3DXVec2TransformNormalArray | |
| 164 | D3DXVec3BaryCentric | |
| 165 | D3DXVec3CatmullRom | |
| 166 | D3DXVec3Hermite | |
| 167 | D3DXVec3Normalize | |
| 168 | D3DXVec3Project | |
| 169 | D3DXVec3ProjectArray | |
| 170 | D3DXVec3Transform | |
| 171 | D3DXVec3TransformArray | |
| 172 | D3DXVec3TransformCoord | |
| 173 | D3DXVec3TransformCoordArray | |
| 174 | D3DXVec3TransformNormal | |
| 175 | D3DXVec3TransformNormalArray | |
| 176 | D3DXVec3Unproject | |
| 177 | D3DXVec3UnprojectArray | |
| 178 | D3DXVec4BaryCentric | |
| 179 | D3DXVec4CatmullRom | |
| 180 | D3DXVec4Cross | |
| 181 | D3DXVec4Hermite | |
| 182 | D3DXVec4Normalize | |
| 183 | D3DXVec4Transform | |
| 184 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_34.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateEffectFromFileA | |
| 29 | D3DX10CreateEffectFromFileW | |
| 30 | D3DX10CreateEffectFromMemory | |
| 31 | D3DX10CreateEffectFromResourceA | |
| 32 | D3DX10CreateEffectFromResourceW | |
| 33 | D3DX10CreateEffectPoolFromFileA | |
| 34 | D3DX10CreateEffectPoolFromFileW | |
| 35 | D3DX10CreateEffectPoolFromMemory | |
| 36 | D3DX10CreateEffectPoolFromResourceA | |
| 37 | D3DX10CreateEffectPoolFromResourceW | |
| 38 | D3DX10CreateFontA | |
| 39 | D3DX10CreateFontIndirectA | |
| 40 | D3DX10CreateFontIndirectW | |
| 41 | D3DX10CreateFontW | |
| 42 | D3DX10CreateMesh | |
| 43 | D3DX10CreateShaderResourceViewFromFileA | |
| 44 | D3DX10CreateShaderResourceViewFromFileW | |
| 45 | D3DX10CreateShaderResourceViewFromMemory | |
| 46 | D3DX10CreateShaderResourceViewFromResourceA | |
| 47 | D3DX10CreateShaderResourceViewFromResourceW | |
| 48 | D3DX10CreateSkinInfo | |
| 49 | D3DX10CreateSprite | |
| 50 | D3DX10CreateTextureFromFileA | |
| 51 | D3DX10CreateTextureFromFileW | |
| 52 | D3DX10CreateTextureFromMemory | |
| 53 | D3DX10CreateTextureFromResourceA | |
| 54 | D3DX10CreateTextureFromResourceW | |
| 55 | D3DX10DisassembleEffect | |
| 56 | D3DX10DisassembleShader | |
| 57 | D3DX10FilterTexture | |
| 58 | D3DX10GetDriverLevel | |
| 59 | D3DX10GetImageInfoFromFileA | |
| 60 | D3DX10GetImageInfoFromFileW | |
| 61 | D3DX10GetImageInfoFromMemory | |
| 62 | D3DX10GetImageInfoFromResourceA | |
| 63 | D3DX10GetImageInfoFromResourceW | |
| 64 | D3DX10LoadTextureFromTexture | |
| 65 | D3DX10PreprocessShaderFromFileA | |
| 66 | D3DX10PreprocessShaderFromFileW | |
| 67 | D3DX10PreprocessShaderFromMemory | |
| 68 | D3DX10PreprocessShaderFromResourceA | |
| 69 | D3DX10PreprocessShaderFromResourceW | |
| 70 | D3DX10ReflectShader | |
| 71 | D3DX10SHProjectCubeMap | |
| 72 | D3DX10SaveTextureToFileA | |
| 73 | D3DX10SaveTextureToFileW | |
| 74 | D3DX10SaveTextureToMemory | |
| 75 | D3DX10UnsetAllDeviceObjects | |
| 76 | D3DXBoxBoundProbe | |
| 77 | D3DXColorAdjustContrast | |
| 78 | D3DXColorAdjustSaturation | |
| 79 | D3DXComputeBoundingBox | |
| 80 | D3DXComputeBoundingSphere | |
| 81 | D3DXCpuOptimizations | |
| 82 | D3DXCreateMatrixStack | |
| 83 | D3DXFloat16To32Array | |
| 84 | D3DXFloat32To16Array | |
| 85 | D3DXFresnelTerm | |
| 86 | D3DXIntersectTri | |
| 87 | D3DXMatrixAffineTransformation | |
| 88 | D3DXMatrixAffineTransformation2D | |
| 89 | D3DXMatrixDecompose | |
| 90 | D3DXMatrixDeterminant | |
| 91 | D3DXMatrixInverse | |
| 92 | D3DXMatrixLookAtLH | |
| 93 | D3DXMatrixLookAtRH | |
| 94 | D3DXMatrixMultiply | |
| 95 | D3DXMatrixMultiplyTranspose | |
| 96 | D3DXMatrixOrthoLH | |
| 97 | D3DXMatrixOrthoOffCenterLH | |
| 98 | D3DXMatrixOrthoOffCenterRH | |
| 99 | D3DXMatrixOrthoRH | |
| 100 | D3DXMatrixPerspectiveFovLH | |
| 101 | D3DXMatrixPerspectiveFovRH | |
| 102 | D3DXMatrixPerspectiveLH | |
| 103 | D3DXMatrixPerspectiveOffCenterLH | |
| 104 | D3DXMatrixPerspectiveOffCenterRH | |
| 105 | D3DXMatrixPerspectiveRH | |
| 106 | D3DXMatrixReflect | |
| 107 | D3DXMatrixRotationAxis | |
| 108 | D3DXMatrixRotationQuaternion | |
| 109 | D3DXMatrixRotationX | |
| 110 | D3DXMatrixRotationY | |
| 111 | D3DXMatrixRotationYawPitchRoll | |
| 112 | D3DXMatrixRotationZ | |
| 113 | D3DXMatrixScaling | |
| 114 | D3DXMatrixShadow | |
| 115 | D3DXMatrixTransformation | |
| 116 | D3DXMatrixTransformation2D | |
| 117 | D3DXMatrixTranslation | |
| 118 | D3DXMatrixTranspose | |
| 119 | D3DXPlaneFromPointNormal | |
| 120 | D3DXPlaneFromPoints | |
| 121 | D3DXPlaneIntersectLine | |
| 122 | D3DXPlaneNormalize | |
| 123 | D3DXPlaneTransform | |
| 124 | D3DXPlaneTransformArray | |
| 125 | D3DXQuaternionBaryCentric | |
| 126 | D3DXQuaternionExp | |
| 127 | D3DXQuaternionInverse | |
| 128 | D3DXQuaternionLn | |
| 129 | D3DXQuaternionMultiply | |
| 130 | D3DXQuaternionNormalize | |
| 131 | D3DXQuaternionRotationAxis | |
| 132 | D3DXQuaternionRotationMatrix | |
| 133 | D3DXQuaternionRotationYawPitchRoll | |
| 134 | D3DXQuaternionSlerp | |
| 135 | D3DXQuaternionSquad | |
| 136 | D3DXQuaternionSquadSetup | |
| 137 | D3DXQuaternionToAxisAngle | |
| 138 | D3DXSHAdd | |
| 139 | D3DXSHDot | |
| 140 | D3DXSHEvalConeLight | |
| 141 | D3DXSHEvalDirection | |
| 142 | D3DXSHEvalDirectionalLight | |
| 143 | D3DXSHEvalHemisphereLight | |
| 144 | D3DXSHEvalSphericalLight | |
| 145 | D3DXSHMultiply2 | |
| 146 | D3DXSHMultiply3 | |
| 147 | D3DXSHMultiply4 | |
| 148 | D3DXSHMultiply5 | |
| 149 | D3DXSHMultiply6 | |
| 150 | D3DXSHRotate | |
| 151 | D3DXSHRotateZ | |
| 152 | D3DXSHScale | |
| 153 | D3DXSphereBoundProbe | |
| 154 | D3DXVec2BaryCentric | |
| 155 | D3DXVec2CatmullRom | |
| 156 | D3DXVec2Hermite | |
| 157 | D3DXVec2Normalize | |
| 158 | D3DXVec2Transform | |
| 159 | D3DXVec2TransformArray | |
| 160 | D3DXVec2TransformCoord | |
| 161 | D3DXVec2TransformCoordArray | |
| 162 | D3DXVec2TransformNormal | |
| 163 | D3DXVec2TransformNormalArray | |
| 164 | D3DXVec3BaryCentric | |
| 165 | D3DXVec3CatmullRom | |
| 166 | D3DXVec3Hermite | |
| 167 | D3DXVec3Normalize | |
| 168 | D3DXVec3Project | |
| 169 | D3DXVec3ProjectArray | |
| 170 | D3DXVec3Transform | |
| 171 | D3DXVec3TransformArray | |
| 172 | D3DXVec3TransformCoord | |
| 173 | D3DXVec3TransformCoordArray | |
| 174 | D3DXVec3TransformNormal | |
| 175 | D3DXVec3TransformNormalArray | |
| 176 | D3DXVec3Unproject | |
| 177 | D3DXVec3UnprojectArray | |
| 178 | D3DXVec4BaryCentric | |
| 179 | D3DXVec4CatmullRom | |
| 180 | D3DXVec4Cross | |
| 181 | D3DXVec4Hermite | |
| 182 | D3DXVec4Normalize | |
| 183 | D3DXVec4Transform | |
| 184 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_35.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateDevice | |
| 29 | D3DX10CreateDeviceAndSwapChain | |
| 30 | D3DX10CreateEffectFromFileA | |
| 31 | D3DX10CreateEffectFromFileW | |
| 32 | D3DX10CreateEffectFromMemory | |
| 33 | D3DX10CreateEffectFromResourceA | |
| 34 | D3DX10CreateEffectFromResourceW | |
| 35 | D3DX10CreateEffectPoolFromFileA | |
| 36 | D3DX10CreateEffectPoolFromFileW | |
| 37 | D3DX10CreateEffectPoolFromMemory | |
| 38 | D3DX10CreateEffectPoolFromResourceA | |
| 39 | D3DX10CreateEffectPoolFromResourceW | |
| 40 | D3DX10CreateFontA | |
| 41 | D3DX10CreateFontIndirectA | |
| 42 | D3DX10CreateFontIndirectW | |
| 43 | D3DX10CreateFontW | |
| 44 | D3DX10CreateMesh | |
| 45 | D3DX10CreateShaderResourceViewFromFileA | |
| 46 | D3DX10CreateShaderResourceViewFromFileW | |
| 47 | D3DX10CreateShaderResourceViewFromMemory | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW | |
| 50 | D3DX10CreateSkinInfo | |
| 51 | D3DX10CreateSprite | |
| 52 | D3DX10CreateTextureFromFileA | |
| 53 | D3DX10CreateTextureFromFileW | |
| 54 | D3DX10CreateTextureFromMemory | |
| 55 | D3DX10CreateTextureFromResourceA | |
| 56 | D3DX10CreateTextureFromResourceW | |
| 57 | D3DX10DisassembleEffect | |
| 58 | D3DX10DisassembleShader | |
| 59 | D3DX10FilterTexture | |
| 60 | D3DX10GetDriverLevel | |
| 61 | D3DX10GetFeatureLevel1 | |
| 62 | D3DX10GetImageInfoFromFileA | |
| 63 | D3DX10GetImageInfoFromFileW | |
| 64 | D3DX10GetImageInfoFromMemory | |
| 65 | D3DX10GetImageInfoFromResourceA | |
| 66 | D3DX10GetImageInfoFromResourceW | |
| 67 | D3DX10LoadTextureFromTexture | |
| 68 | D3DX10PreprocessShaderFromFileA | |
| 69 | D3DX10PreprocessShaderFromFileW | |
| 70 | D3DX10PreprocessShaderFromMemory | |
| 71 | D3DX10PreprocessShaderFromResourceA | |
| 72 | D3DX10PreprocessShaderFromResourceW | |
| 73 | D3DX10ReflectShader | |
| 74 | D3DX10SHProjectCubeMap | |
| 75 | D3DX10SaveTextureToFileA | |
| 76 | D3DX10SaveTextureToFileW | |
| 77 | D3DX10SaveTextureToMemory | |
| 78 | D3DX10UnsetAllDeviceObjects | |
| 79 | D3DXBoxBoundProbe | |
| 80 | D3DXColorAdjustContrast | |
| 81 | D3DXColorAdjustSaturation | |
| 82 | D3DXComputeBoundingBox | |
| 83 | D3DXComputeBoundingSphere | |
| 84 | D3DXCpuOptimizations | |
| 85 | D3DXCreateMatrixStack | |
| 86 | D3DXFloat16To32Array | |
| 87 | D3DXFloat32To16Array | |
| 88 | D3DXFresnelTerm | |
| 89 | D3DXIntersectTri | |
| 90 | D3DXMatrixAffineTransformation | |
| 91 | D3DXMatrixAffineTransformation2D | |
| 92 | D3DXMatrixDecompose | |
| 93 | D3DXMatrixDeterminant | |
| 94 | D3DXMatrixInverse | |
| 95 | D3DXMatrixLookAtLH | |
| 96 | D3DXMatrixLookAtRH | |
| 97 | D3DXMatrixMultiply | |
| 98 | D3DXMatrixMultiplyTranspose | |
| 99 | D3DXMatrixOrthoLH | |
| 100 | D3DXMatrixOrthoOffCenterLH | |
| 101 | D3DXMatrixOrthoOffCenterRH | |
| 102 | D3DXMatrixOrthoRH | |
| 103 | D3DXMatrixPerspectiveFovLH | |
| 104 | D3DXMatrixPerspectiveFovRH | |
| 105 | D3DXMatrixPerspectiveLH | |
| 106 | D3DXMatrixPerspectiveOffCenterLH | |
| 107 | D3DXMatrixPerspectiveOffCenterRH | |
| 108 | D3DXMatrixPerspectiveRH | |
| 109 | D3DXMatrixReflect | |
| 110 | D3DXMatrixRotationAxis | |
| 111 | D3DXMatrixRotationQuaternion | |
| 112 | D3DXMatrixRotationX | |
| 113 | D3DXMatrixRotationY | |
| 114 | D3DXMatrixRotationYawPitchRoll | |
| 115 | D3DXMatrixRotationZ | |
| 116 | D3DXMatrixScaling | |
| 117 | D3DXMatrixShadow | |
| 118 | D3DXMatrixTransformation | |
| 119 | D3DXMatrixTransformation2D | |
| 120 | D3DXMatrixTranslation | |
| 121 | D3DXMatrixTranspose | |
| 122 | D3DXPlaneFromPointNormal | |
| 123 | D3DXPlaneFromPoints | |
| 124 | D3DXPlaneIntersectLine | |
| 125 | D3DXPlaneNormalize | |
| 126 | D3DXPlaneTransform | |
| 127 | D3DXPlaneTransformArray | |
| 128 | D3DXQuaternionBaryCentric | |
| 129 | D3DXQuaternionExp | |
| 130 | D3DXQuaternionInverse | |
| 131 | D3DXQuaternionLn | |
| 132 | D3DXQuaternionMultiply | |
| 133 | D3DXQuaternionNormalize | |
| 134 | D3DXQuaternionRotationAxis | |
| 135 | D3DXQuaternionRotationMatrix | |
| 136 | D3DXQuaternionRotationYawPitchRoll | |
| 137 | D3DXQuaternionSlerp | |
| 138 | D3DXQuaternionSquad | |
| 139 | D3DXQuaternionSquadSetup | |
| 140 | D3DXQuaternionToAxisAngle | |
| 141 | D3DXSHAdd | |
| 142 | D3DXSHDot | |
| 143 | D3DXSHEvalConeLight | |
| 144 | D3DXSHEvalDirection | |
| 145 | D3DXSHEvalDirectionalLight | |
| 146 | D3DXSHEvalHemisphereLight | |
| 147 | D3DXSHEvalSphericalLight | |
| 148 | D3DXSHMultiply2 | |
| 149 | D3DXSHMultiply3 | |
| 150 | D3DXSHMultiply4 | |
| 151 | D3DXSHMultiply5 | |
| 152 | D3DXSHMultiply6 | |
| 153 | D3DXSHRotate | |
| 154 | D3DXSHRotateZ | |
| 155 | D3DXSHScale | |
| 156 | D3DXSphereBoundProbe | |
| 157 | D3DXVec2BaryCentric | |
| 158 | D3DXVec2CatmullRom | |
| 159 | D3DXVec2Hermite | |
| 160 | D3DXVec2Normalize | |
| 161 | D3DXVec2Transform | |
| 162 | D3DXVec2TransformArray | |
| 163 | D3DXVec2TransformCoord | |
| 164 | D3DXVec2TransformCoordArray | |
| 165 | D3DXVec2TransformNormal | |
| 166 | D3DXVec2TransformNormalArray | |
| 167 | D3DXVec3BaryCentric | |
| 168 | D3DXVec3CatmullRom | |
| 169 | D3DXVec3Hermite | |
| 170 | D3DXVec3Normalize | |
| 171 | D3DXVec3Project | |
| 172 | D3DXVec3ProjectArray | |
| 173 | D3DXVec3Transform | |
| 174 | D3DXVec3TransformArray | |
| 175 | D3DXVec3TransformCoord | |
| 176 | D3DXVec3TransformCoordArray | |
| 177 | D3DXVec3TransformNormal | |
| 178 | D3DXVec3TransformNormalArray | |
| 179 | D3DXVec3Unproject | |
| 180 | D3DXVec3UnprojectArray | |
| 181 | D3DXVec4BaryCentric | |
| 182 | D3DXVec4CatmullRom | |
| 183 | D3DXVec4Cross | |
| 184 | D3DXVec4Hermite | |
| 185 | D3DXVec4Normalize | |
| 186 | D3DXVec4Transform | |
| 187 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_36.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateDevice | |
| 29 | D3DX10CreateDeviceAndSwapChain | |
| 30 | D3DX10CreateEffectFromFileA | |
| 31 | D3DX10CreateEffectFromFileW | |
| 32 | D3DX10CreateEffectFromMemory | |
| 33 | D3DX10CreateEffectFromResourceA | |
| 34 | D3DX10CreateEffectFromResourceW | |
| 35 | D3DX10CreateEffectPoolFromFileA | |
| 36 | D3DX10CreateEffectPoolFromFileW | |
| 37 | D3DX10CreateEffectPoolFromMemory | |
| 38 | D3DX10CreateEffectPoolFromResourceA | |
| 39 | D3DX10CreateEffectPoolFromResourceW | |
| 40 | D3DX10CreateFontA | |
| 41 | D3DX10CreateFontIndirectA | |
| 42 | D3DX10CreateFontIndirectW | |
| 43 | D3DX10CreateFontW | |
| 44 | D3DX10CreateMesh | |
| 45 | D3DX10CreateShaderResourceViewFromFileA | |
| 46 | D3DX10CreateShaderResourceViewFromFileW | |
| 47 | D3DX10CreateShaderResourceViewFromMemory | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW | |
| 50 | D3DX10CreateSkinInfo | |
| 51 | D3DX10CreateSprite | |
| 52 | D3DX10CreateTextureFromFileA | |
| 53 | D3DX10CreateTextureFromFileW | |
| 54 | D3DX10CreateTextureFromMemory | |
| 55 | D3DX10CreateTextureFromResourceA | |
| 56 | D3DX10CreateTextureFromResourceW | |
| 57 | D3DX10DisassembleEffect | |
| 58 | D3DX10DisassembleShader | |
| 59 | D3DX10FilterTexture | |
| 60 | D3DX10GetDriverLevel | |
| 61 | D3DX10GetFeatureLevel1 | |
| 62 | D3DX10GetImageInfoFromFileA | |
| 63 | D3DX10GetImageInfoFromFileW | |
| 64 | D3DX10GetImageInfoFromMemory | |
| 65 | D3DX10GetImageInfoFromResourceA | |
| 66 | D3DX10GetImageInfoFromResourceW | |
| 67 | D3DX10LoadTextureFromTexture | |
| 68 | D3DX10PreprocessShaderFromFileA | |
| 69 | D3DX10PreprocessShaderFromFileW | |
| 70 | D3DX10PreprocessShaderFromMemory | |
| 71 | D3DX10PreprocessShaderFromResourceA | |
| 72 | D3DX10PreprocessShaderFromResourceW | |
| 73 | D3DX10ReflectShader | |
| 74 | D3DX10SHProjectCubeMap | |
| 75 | D3DX10SaveTextureToFileA | |
| 76 | D3DX10SaveTextureToFileW | |
| 77 | D3DX10SaveTextureToMemory | |
| 78 | D3DX10UnsetAllDeviceObjects | |
| 79 | D3DXBoxBoundProbe | |
| 80 | D3DXColorAdjustContrast | |
| 81 | D3DXColorAdjustSaturation | |
| 82 | D3DXComputeBoundingBox | |
| 83 | D3DXComputeBoundingSphere | |
| 84 | D3DXCpuOptimizations | |
| 85 | D3DXCreateMatrixStack | |
| 86 | D3DXFloat16To32Array | |
| 87 | D3DXFloat32To16Array | |
| 88 | D3DXFresnelTerm | |
| 89 | D3DXIntersectTri | |
| 90 | D3DXMatrixAffineTransformation | |
| 91 | D3DXMatrixAffineTransformation2D | |
| 92 | D3DXMatrixDecompose | |
| 93 | D3DXMatrixDeterminant | |
| 94 | D3DXMatrixInverse | |
| 95 | D3DXMatrixLookAtLH | |
| 96 | D3DXMatrixLookAtRH | |
| 97 | D3DXMatrixMultiply | |
| 98 | D3DXMatrixMultiplyTranspose | |
| 99 | D3DXMatrixOrthoLH | |
| 100 | D3DXMatrixOrthoOffCenterLH | |
| 101 | D3DXMatrixOrthoOffCenterRH | |
| 102 | D3DXMatrixOrthoRH | |
| 103 | D3DXMatrixPerspectiveFovLH | |
| 104 | D3DXMatrixPerspectiveFovRH | |
| 105 | D3DXMatrixPerspectiveLH | |
| 106 | D3DXMatrixPerspectiveOffCenterLH | |
| 107 | D3DXMatrixPerspectiveOffCenterRH | |
| 108 | D3DXMatrixPerspectiveRH | |
| 109 | D3DXMatrixReflect | |
| 110 | D3DXMatrixRotationAxis | |
| 111 | D3DXMatrixRotationQuaternion | |
| 112 | D3DXMatrixRotationX | |
| 113 | D3DXMatrixRotationY | |
| 114 | D3DXMatrixRotationYawPitchRoll | |
| 115 | D3DXMatrixRotationZ | |
| 116 | D3DXMatrixScaling | |
| 117 | D3DXMatrixShadow | |
| 118 | D3DXMatrixTransformation | |
| 119 | D3DXMatrixTransformation2D | |
| 120 | D3DXMatrixTranslation | |
| 121 | D3DXMatrixTranspose | |
| 122 | D3DXPlaneFromPointNormal | |
| 123 | D3DXPlaneFromPoints | |
| 124 | D3DXPlaneIntersectLine | |
| 125 | D3DXPlaneNormalize | |
| 126 | D3DXPlaneTransform | |
| 127 | D3DXPlaneTransformArray | |
| 128 | D3DXQuaternionBaryCentric | |
| 129 | D3DXQuaternionExp | |
| 130 | D3DXQuaternionInverse | |
| 131 | D3DXQuaternionLn | |
| 132 | D3DXQuaternionMultiply | |
| 133 | D3DXQuaternionNormalize | |
| 134 | D3DXQuaternionRotationAxis | |
| 135 | D3DXQuaternionRotationMatrix | |
| 136 | D3DXQuaternionRotationYawPitchRoll | |
| 137 | D3DXQuaternionSlerp | |
| 138 | D3DXQuaternionSquad | |
| 139 | D3DXQuaternionSquadSetup | |
| 140 | D3DXQuaternionToAxisAngle | |
| 141 | D3DXSHAdd | |
| 142 | D3DXSHDot | |
| 143 | D3DXSHEvalConeLight | |
| 144 | D3DXSHEvalDirection | |
| 145 | D3DXSHEvalDirectionalLight | |
| 146 | D3DXSHEvalHemisphereLight | |
| 147 | D3DXSHEvalSphericalLight | |
| 148 | D3DXSHMultiply2 | |
| 149 | D3DXSHMultiply3 | |
| 150 | D3DXSHMultiply4 | |
| 151 | D3DXSHMultiply5 | |
| 152 | D3DXSHMultiply6 | |
| 153 | D3DXSHRotate | |
| 154 | D3DXSHRotateZ | |
| 155 | D3DXSHScale | |
| 156 | D3DXSphereBoundProbe | |
| 157 | D3DXVec2BaryCentric | |
| 158 | D3DXVec2CatmullRom | |
| 159 | D3DXVec2Hermite | |
| 160 | D3DXVec2Normalize | |
| 161 | D3DXVec2Transform | |
| 162 | D3DXVec2TransformArray | |
| 163 | D3DXVec2TransformCoord | |
| 164 | D3DXVec2TransformCoordArray | |
| 165 | D3DXVec2TransformNormal | |
| 166 | D3DXVec2TransformNormalArray | |
| 167 | D3DXVec3BaryCentric | |
| 168 | D3DXVec3CatmullRom | |
| 169 | D3DXVec3Hermite | |
| 170 | D3DXVec3Normalize | |
| 171 | D3DXVec3Project | |
| 172 | D3DXVec3ProjectArray | |
| 173 | D3DXVec3Transform | |
| 174 | D3DXVec3TransformArray | |
| 175 | D3DXVec3TransformCoord | |
| 176 | D3DXVec3TransformCoordArray | |
| 177 | D3DXVec3TransformNormal | |
| 178 | D3DXVec3TransformNormalArray | |
| 179 | D3DXVec3Unproject | |
| 180 | D3DXVec3UnprojectArray | |
| 181 | D3DXVec4BaryCentric | |
| 182 | D3DXVec4CatmullRom | |
| 183 | D3DXVec4Cross | |
| 184 | D3DXVec4Hermite | |
| 185 | D3DXVec4Normalize | |
| 186 | D3DXVec4Transform | |
| 187 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_37.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateReduction | |
| 9 | D3DX10CreateThreadPump | |
| 10 | D3DX10GetDriverLevel | |
| 11 | D3DX10CheckVersion | |
| 12 | D3DX10CompileFromFileA | |
| 13 | D3DX10CompileFromFileW | |
| 14 | D3DX10CompileFromMemory | |
| 15 | D3DX10CompileFromResourceA | |
| 16 | D3DX10CompileFromResourceW | |
| 17 | D3DX10ComputeNormalMap | |
| 18 | D3DX10CreateAsyncCompilerProcessor | |
| 19 | D3DX10CreateAsyncEffectCreateProcessor | |
| 20 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 21 | D3DX10CreateAsyncFileLoaderA | |
| 22 | D3DX10CreateAsyncFileLoaderW | |
| 23 | D3DX10CreateAsyncMemoryLoader | |
| 24 | D3DX10CreateAsyncResourceLoaderA | |
| 25 | D3DX10CreateAsyncResourceLoaderW | |
| 26 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 27 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 28 | D3DX10CreateAsyncTextureInfoProcessor | |
| 29 | D3DX10CreateAsyncTextureProcessor | |
| 30 | D3DX10CreateDevice | |
| 31 | D3DX10CreateDeviceAndSwapChain | |
| 32 | D3DX10CreateEffectFromFileA | |
| 33 | D3DX10CreateEffectFromFileW | |
| 34 | D3DX10CreateEffectFromMemory | |
| 35 | D3DX10CreateEffectFromResourceA | |
| 36 | D3DX10CreateEffectFromResourceW | |
| 37 | D3DX10CreateEffectPoolFromFileA | |
| 38 | D3DX10CreateEffectPoolFromFileW | |
| 39 | D3DX10CreateEffectPoolFromMemory | |
| 40 | D3DX10CreateEffectPoolFromResourceA | |
| 41 | D3DX10CreateEffectPoolFromResourceW | |
| 42 | D3DX10CreateFontA | |
| 43 | D3DX10CreateFontIndirectA | |
| 44 | D3DX10CreateFontIndirectW | |
| 45 | D3DX10CreateFontW | |
| 46 | D3DX10CreateMesh | |
| 47 | D3DX10CreateShaderResourceViewFromFileA | |
| 48 | D3DX10CreateShaderResourceViewFromFileW | |
| 49 | D3DX10CreateShaderResourceViewFromMemory | |
| 50 | D3DX10CreateShaderResourceViewFromResourceA | |
| 51 | D3DX10CreateShaderResourceViewFromResourceW | |
| 52 | D3DX10CreateSkinInfo | |
| 53 | D3DX10CreateSprite | |
| 54 | D3DX10CreateTextureFromFileA | |
| 55 | D3DX10CreateTextureFromFileW | |
| 56 | D3DX10CreateTextureFromMemory | |
| 57 | D3DX10CreateTextureFromResourceA | |
| 58 | D3DX10CreateTextureFromResourceW | |
| 59 | D3DX10DisassembleEffect | |
| 60 | D3DX10DisassembleShader | |
| 61 | D3DX10FilterTexture | |
| 62 | D3DX10GetFeatureLevel1 | |
| 63 | D3DX10GetImageInfoFromFileA | |
| 64 | D3DX10GetImageInfoFromFileW | |
| 65 | D3DX10GetImageInfoFromMemory | |
| 66 | D3DX10GetImageInfoFromResourceA | |
| 67 | D3DX10GetImageInfoFromResourceW | |
| 68 | D3DX10LoadTextureFromTexture | |
| 69 | D3DX10PreprocessShaderFromFileA | |
| 70 | D3DX10PreprocessShaderFromFileW | |
| 71 | D3DX10PreprocessShaderFromMemory | |
| 72 | D3DX10PreprocessShaderFromResourceA | |
| 73 | D3DX10PreprocessShaderFromResourceW | |
| 74 | D3DX10ReflectShader | |
| 75 | D3DX10SHProjectCubeMap | |
| 76 | D3DX10SaveTextureToFileA | |
| 77 | D3DX10SaveTextureToFileW | |
| 78 | D3DX10SaveTextureToMemory | |
| 79 | D3DX10UnsetAllDeviceObjects | |
| 80 | D3DXBoxBoundProbe | |
| 81 | D3DXColorAdjustContrast | |
| 82 | D3DXColorAdjustSaturation | |
| 83 | D3DXComputeBoundingBox | |
| 84 | D3DXComputeBoundingSphere | |
| 85 | D3DXCpuOptimizations | |
| 86 | D3DXCreateMatrixStack | |
| 87 | D3DXFloat16To32Array | |
| 88 | D3DXFloat32To16Array | |
| 89 | D3DXFresnelTerm | |
| 90 | D3DXIntersectTri | |
| 91 | D3DXMatrixAffineTransformation | |
| 92 | D3DXMatrixAffineTransformation2D | |
| 93 | D3DXMatrixDecompose | |
| 94 | D3DXMatrixDeterminant | |
| 95 | D3DXMatrixInverse | |
| 96 | D3DXMatrixLookAtLH | |
| 97 | D3DXMatrixLookAtRH | |
| 98 | D3DXMatrixMultiply | |
| 99 | D3DXMatrixMultiplyTranspose | |
| 100 | D3DXMatrixOrthoLH | |
| 101 | D3DXMatrixOrthoOffCenterLH | |
| 102 | D3DXMatrixOrthoOffCenterRH | |
| 103 | D3DXMatrixOrthoRH | |
| 104 | D3DXMatrixPerspectiveFovLH | |
| 105 | D3DXMatrixPerspectiveFovRH | |
| 106 | D3DXMatrixPerspectiveLH | |
| 107 | D3DXMatrixPerspectiveOffCenterLH | |
| 108 | D3DXMatrixPerspectiveOffCenterRH | |
| 109 | D3DXMatrixPerspectiveRH | |
| 110 | D3DXMatrixReflect | |
| 111 | D3DXMatrixRotationAxis | |
| 112 | D3DXMatrixRotationQuaternion | |
| 113 | D3DXMatrixRotationX | |
| 114 | D3DXMatrixRotationY | |
| 115 | D3DXMatrixRotationYawPitchRoll | |
| 116 | D3DXMatrixRotationZ | |
| 117 | D3DXMatrixScaling | |
| 118 | D3DXMatrixShadow | |
| 119 | D3DXMatrixTransformation | |
| 120 | D3DXMatrixTransformation2D | |
| 121 | D3DXMatrixTranslation | |
| 122 | D3DXMatrixTranspose | |
| 123 | D3DXPlaneFromPointNormal | |
| 124 | D3DXPlaneFromPoints | |
| 125 | D3DXPlaneIntersectLine | |
| 126 | D3DXPlaneNormalize | |
| 127 | D3DXPlaneTransform | |
| 128 | D3DXPlaneTransformArray | |
| 129 | D3DXQuaternionBaryCentric | |
| 130 | D3DXQuaternionExp | |
| 131 | D3DXQuaternionInverse | |
| 132 | D3DXQuaternionLn | |
| 133 | D3DXQuaternionMultiply | |
| 134 | D3DXQuaternionNormalize | |
| 135 | D3DXQuaternionRotationAxis | |
| 136 | D3DXQuaternionRotationMatrix | |
| 137 | D3DXQuaternionRotationYawPitchRoll | |
| 138 | D3DXQuaternionSlerp | |
| 139 | D3DXQuaternionSquad | |
| 140 | D3DXQuaternionSquadSetup | |
| 141 | D3DXQuaternionToAxisAngle | |
| 142 | D3DXSHAdd | |
| 143 | D3DXSHDot | |
| 144 | D3DXSHEvalConeLight | |
| 145 | D3DXSHEvalDirection | |
| 146 | D3DXSHEvalDirectionalLight | |
| 147 | D3DXSHEvalHemisphereLight | |
| 148 | D3DXSHEvalSphericalLight | |
| 149 | D3DXSHMultiply2 | |
| 150 | D3DXSHMultiply3 | |
| 151 | D3DXSHMultiply4 | |
| 152 | D3DXSHMultiply5 | |
| 153 | D3DXSHMultiply6 | |
| 154 | D3DXSHRotate | |
| 155 | D3DXSHRotateZ | |
| 156 | D3DXSHScale | |
| 157 | D3DXSphereBoundProbe | |
| 158 | D3DXVec2BaryCentric | |
| 159 | D3DXVec2CatmullRom | |
| 160 | D3DXVec2Hermite | |
| 161 | D3DXVec2Normalize | |
| 162 | D3DXVec2Transform | |
| 163 | D3DXVec2TransformArray | |
| 164 | D3DXVec2TransformCoord | |
| 165 | D3DXVec2TransformCoordArray | |
| 166 | D3DXVec2TransformNormal | |
| 167 | D3DXVec2TransformNormalArray | |
| 168 | D3DXVec3BaryCentric | |
| 169 | D3DXVec3CatmullRom | |
| 170 | D3DXVec3Hermite | |
| 171 | D3DXVec3Normalize | |
| 172 | D3DXVec3Project | |
| 173 | D3DXVec3ProjectArray | |
| 174 | D3DXVec3Transform | |
| 175 | D3DXVec3TransformArray | |
| 176 | D3DXVec3TransformCoord | |
| 177 | D3DXVec3TransformCoordArray | |
| 178 | D3DXVec3TransformNormal | |
| 179 | D3DXVec3TransformNormalArray | |
| 180 | D3DXVec3Unproject | |
| 181 | D3DXVec3UnprojectArray | |
| 182 | D3DXVec4BaryCentric | |
| 183 | D3DXVec4CatmullRom | |
| 184 | D3DXVec4Cross | |
| 185 | D3DXVec4Hermite | |
| 186 | D3DXVec4Normalize | |
| 187 | D3DXVec4Transform | |
| 188 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_38.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateReduction | |
| 9 | D3DX10CreateThreadPump | |
| 10 | D3DX10CheckVersion | |
| 11 | D3DX10CompileFromFileA | |
| 12 | D3DX10CompileFromFileW | |
| 13 | D3DX10CompileFromMemory | |
| 14 | D3DX10CompileFromResourceA | |
| 15 | D3DX10CompileFromResourceW | |
| 16 | D3DX10ComputeNormalMap | |
| 17 | D3DX10CreateAsyncCompilerProcessor | |
| 18 | D3DX10CreateAsyncEffectCreateProcessor | |
| 19 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 20 | D3DX10CreateAsyncFileLoaderA | |
| 21 | D3DX10CreateAsyncFileLoaderW | |
| 22 | D3DX10CreateAsyncMemoryLoader | |
| 23 | D3DX10CreateAsyncResourceLoaderA | |
| 24 | D3DX10CreateAsyncResourceLoaderW | |
| 25 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 26 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 27 | D3DX10CreateAsyncTextureInfoProcessor | |
| 28 | D3DX10CreateAsyncTextureProcessor | |
| 29 | D3DX10CreateDevice | |
| 30 | D3DX10CreateDeviceAndSwapChain | |
| 31 | D3DX10CreateEffectFromFileA | |
| 32 | D3DX10CreateEffectFromFileW | |
| 33 | D3DX10CreateEffectFromMemory | |
| 34 | D3DX10CreateEffectFromResourceA | |
| 35 | D3DX10CreateEffectFromResourceW | |
| 36 | D3DX10CreateEffectPoolFromFileA | |
| 37 | D3DX10CreateEffectPoolFromFileW | |
| 38 | D3DX10CreateEffectPoolFromMemory | |
| 39 | D3DX10CreateEffectPoolFromResourceA | |
| 40 | D3DX10CreateEffectPoolFromResourceW | |
| 41 | D3DX10CreateFontA | |
| 42 | D3DX10CreateFontIndirectA | |
| 43 | D3DX10CreateFontIndirectW | |
| 44 | D3DX10CreateFontW | |
| 45 | D3DX10CreateMesh | |
| 46 | D3DX10CreateShaderResourceViewFromFileA | |
| 47 | D3DX10CreateShaderResourceViewFromFileW | |
| 48 | D3DX10CreateShaderResourceViewFromMemory | |
| 49 | D3DX10CreateShaderResourceViewFromResourceA | |
| 50 | D3DX10CreateShaderResourceViewFromResourceW | |
| 51 | D3DX10CreateSkinInfo | |
| 52 | D3DX10CreateSprite | |
| 53 | D3DX10CreateTextureFromFileA | |
| 54 | D3DX10CreateTextureFromFileW | |
| 55 | D3DX10CreateTextureFromMemory | |
| 56 | D3DX10CreateTextureFromResourceA | |
| 57 | D3DX10CreateTextureFromResourceW | |
| 58 | D3DX10DisassembleEffect | |
| 59 | D3DX10DisassembleShader | |
| 60 | D3DX10FilterTexture | |
| 61 | D3DX10GetFeatureLevel1 | |
| 62 | D3DX10GetImageInfoFromFileA | |
| 63 | D3DX10GetImageInfoFromFileW | |
| 64 | D3DX10GetImageInfoFromMemory | |
| 65 | D3DX10GetImageInfoFromResourceA | |
| 66 | D3DX10GetImageInfoFromResourceW | |
| 67 | D3DX10LoadTextureFromTexture | |
| 68 | D3DX10PreprocessShaderFromFileA | |
| 69 | D3DX10PreprocessShaderFromFileW | |
| 70 | D3DX10PreprocessShaderFromMemory | |
| 71 | D3DX10PreprocessShaderFromResourceA | |
| 72 | D3DX10PreprocessShaderFromResourceW | |
| 73 | D3DX10ReflectShader | |
| 74 | D3DX10SHProjectCubeMap | |
| 75 | D3DX10SaveTextureToFileA | |
| 76 | D3DX10SaveTextureToFileW | |
| 77 | D3DX10SaveTextureToMemory | |
| 78 | D3DX10UnsetAllDeviceObjects | |
| 79 | D3DXBoxBoundProbe | |
| 80 | D3DXColorAdjustContrast | |
| 81 | D3DXColorAdjustSaturation | |
| 82 | D3DXComputeBoundingBox | |
| 83 | D3DXComputeBoundingSphere | |
| 84 | D3DXCpuOptimizations | |
| 85 | D3DXCreateMatrixStack | |
| 86 | D3DXFloat16To32Array | |
| 87 | D3DXFloat32To16Array | |
| 88 | D3DXFresnelTerm | |
| 89 | D3DXIntersectTri | |
| 90 | D3DXMatrixAffineTransformation | |
| 91 | D3DXMatrixAffineTransformation2D | |
| 92 | D3DXMatrixDecompose | |
| 93 | D3DXMatrixDeterminant | |
| 94 | D3DXMatrixInverse | |
| 95 | D3DXMatrixLookAtLH | |
| 96 | D3DXMatrixLookAtRH | |
| 97 | D3DXMatrixMultiply | |
| 98 | D3DXMatrixMultiplyTranspose | |
| 99 | D3DXMatrixOrthoLH | |
| 100 | D3DXMatrixOrthoOffCenterLH | |
| 101 | D3DXMatrixOrthoOffCenterRH | |
| 102 | D3DXMatrixOrthoRH | |
| 103 | D3DXMatrixPerspectiveFovLH | |
| 104 | D3DXMatrixPerspectiveFovRH | |
| 105 | D3DXMatrixPerspectiveLH | |
| 106 | D3DXMatrixPerspectiveOffCenterLH | |
| 107 | D3DXMatrixPerspectiveOffCenterRH | |
| 108 | D3DXMatrixPerspectiveRH | |
| 109 | D3DXMatrixReflect | |
| 110 | D3DXMatrixRotationAxis | |
| 111 | D3DXMatrixRotationQuaternion | |
| 112 | D3DXMatrixRotationX | |
| 113 | D3DXMatrixRotationY | |
| 114 | D3DXMatrixRotationYawPitchRoll | |
| 115 | D3DXMatrixRotationZ | |
| 116 | D3DXMatrixScaling | |
| 117 | D3DXMatrixShadow | |
| 118 | D3DXMatrixTransformation | |
| 119 | D3DXMatrixTransformation2D | |
| 120 | D3DXMatrixTranslation | |
| 121 | D3DXMatrixTranspose | |
| 122 | D3DXPlaneFromPointNormal | |
| 123 | D3DXPlaneFromPoints | |
| 124 | D3DXPlaneIntersectLine | |
| 125 | D3DXPlaneNormalize | |
| 126 | D3DXPlaneTransform | |
| 127 | D3DXPlaneTransformArray | |
| 128 | D3DXQuaternionBaryCentric | |
| 129 | D3DXQuaternionExp | |
| 130 | D3DXQuaternionInverse | |
| 131 | D3DXQuaternionLn | |
| 132 | D3DXQuaternionMultiply | |
| 133 | D3DXQuaternionNormalize | |
| 134 | D3DXQuaternionRotationAxis | |
| 135 | D3DXQuaternionRotationMatrix | |
| 136 | D3DXQuaternionRotationYawPitchRoll | |
| 137 | D3DXQuaternionSlerp | |
| 138 | D3DXQuaternionSquad | |
| 139 | D3DXQuaternionSquadSetup | |
| 140 | D3DXQuaternionToAxisAngle | |
| 141 | D3DXSHAdd | |
| 142 | D3DXSHDot | |
| 143 | D3DXSHEvalConeLight | |
| 144 | D3DXSHEvalDirection | |
| 145 | D3DXSHEvalDirectionalLight | |
| 146 | D3DXSHEvalHemisphereLight | |
| 147 | D3DXSHEvalSphericalLight | |
| 148 | D3DXSHMultiply2 | |
| 149 | D3DXSHMultiply3 | |
| 150 | D3DXSHMultiply4 | |
| 151 | D3DXSHMultiply5 | |
| 152 | D3DXSHMultiply6 | |
| 153 | D3DXSHRotate | |
| 154 | D3DXSHRotateZ | |
| 155 | D3DXSHScale | |
| 156 | D3DXSphereBoundProbe | |
| 157 | D3DXVec2BaryCentric | |
| 158 | D3DXVec2CatmullRom | |
| 159 | D3DXVec2Hermite | |
| 160 | D3DXVec2Normalize | |
| 161 | D3DXVec2Transform | |
| 162 | D3DXVec2TransformArray | |
| 163 | D3DXVec2TransformCoord | |
| 164 | D3DXVec2TransformCoordArray | |
| 165 | D3DXVec2TransformNormal | |
| 166 | D3DXVec2TransformNormalArray | |
| 167 | D3DXVec3BaryCentric | |
| 168 | D3DXVec3CatmullRom | |
| 169 | D3DXVec3Hermite | |
| 170 | D3DXVec3Normalize | |
| 171 | D3DXVec3Project | |
| 172 | D3DXVec3ProjectArray | |
| 173 | D3DXVec3Transform | |
| 174 | D3DXVec3TransformArray | |
| 175 | D3DXVec3TransformCoord | |
| 176 | D3DXVec3TransformCoordArray | |
| 177 | D3DXVec3TransformNormal | |
| 178 | D3DXVec3TransformNormalArray | |
| 179 | D3DXVec3Unproject | |
| 180 | D3DXVec3UnprojectArray | |
| 181 | D3DXVec4BaryCentric | |
| 182 | D3DXVec4CatmullRom | |
| 183 | D3DXVec4Cross | |
| 184 | D3DXVec4Hermite | |
| 185 | D3DXVec4Normalize | |
| 186 | D3DXVec4Transform | |
| 187 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_39.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateReduction | |
| 9 | D3DX10CreateThreadPump | |
| 10 | D3DX10CheckVersion | |
| 11 | D3DX10CompileFromFileA | |
| 12 | D3DX10CompileFromFileW | |
| 13 | D3DX10CompileFromMemory | |
| 14 | D3DX10CompileFromResourceA | |
| 15 | D3DX10CompileFromResourceW | |
| 16 | D3DX10ComputeNormalMap | |
| 17 | D3DX10CreateAsyncCompilerProcessor | |
| 18 | D3DX10CreateAsyncEffectCreateProcessor | |
| 19 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 20 | D3DX10CreateAsyncFileLoaderA | |
| 21 | D3DX10CreateAsyncFileLoaderW | |
| 22 | D3DX10CreateAsyncMemoryLoader | |
| 23 | D3DX10CreateAsyncResourceLoaderA | |
| 24 | D3DX10CreateAsyncResourceLoaderW | |
| 25 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 26 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 27 | D3DX10CreateAsyncTextureInfoProcessor | |
| 28 | D3DX10CreateAsyncTextureProcessor | |
| 29 | D3DX10CreateDevice | |
| 30 | D3DX10CreateDeviceAndSwapChain | |
| 31 | D3DX10CreateEffectFromFileA | |
| 32 | D3DX10CreateEffectFromFileW | |
| 33 | D3DX10CreateEffectFromMemory | |
| 34 | D3DX10CreateEffectFromResourceA | |
| 35 | D3DX10CreateEffectFromResourceW | |
| 36 | D3DX10CreateEffectPoolFromFileA | |
| 37 | D3DX10CreateEffectPoolFromFileW | |
| 38 | D3DX10CreateEffectPoolFromMemory | |
| 39 | D3DX10CreateEffectPoolFromResourceA | |
| 40 | D3DX10CreateEffectPoolFromResourceW | |
| 41 | D3DX10CreateFontA | |
| 42 | D3DX10CreateFontIndirectA | |
| 43 | D3DX10CreateFontIndirectW | |
| 44 | D3DX10CreateFontW | |
| 45 | D3DX10CreateMesh | |
| 46 | D3DX10CreateShaderResourceViewFromFileA | |
| 47 | D3DX10CreateShaderResourceViewFromFileW | |
| 48 | D3DX10CreateShaderResourceViewFromMemory | |
| 49 | D3DX10CreateShaderResourceViewFromResourceA | |
| 50 | D3DX10CreateShaderResourceViewFromResourceW | |
| 51 | D3DX10CreateSkinInfo | |
| 52 | D3DX10CreateSprite | |
| 53 | D3DX10CreateTextureFromFileA | |
| 54 | D3DX10CreateTextureFromFileW | |
| 55 | D3DX10CreateTextureFromMemory | |
| 56 | D3DX10CreateTextureFromResourceA | |
| 57 | D3DX10CreateTextureFromResourceW | |
| 58 | D3DX10DisassembleEffect | |
| 59 | D3DX10DisassembleShader | |
| 60 | D3DX10FilterTexture | |
| 61 | D3DX10GetFeatureLevel1 | |
| 62 | D3DX10GetImageInfoFromFileA | |
| 63 | D3DX10GetImageInfoFromFileW | |
| 64 | D3DX10GetImageInfoFromMemory | |
| 65 | D3DX10GetImageInfoFromResourceA | |
| 66 | D3DX10GetImageInfoFromResourceW | |
| 67 | D3DX10LoadTextureFromTexture | |
| 68 | D3DX10PreprocessShaderFromFileA | |
| 69 | D3DX10PreprocessShaderFromFileW | |
| 70 | D3DX10PreprocessShaderFromMemory | |
| 71 | D3DX10PreprocessShaderFromResourceA | |
| 72 | D3DX10PreprocessShaderFromResourceW | |
| 73 | D3DX10ReflectShader | |
| 74 | D3DX10SHProjectCubeMap | |
| 75 | D3DX10SaveTextureToFileA | |
| 76 | D3DX10SaveTextureToFileW | |
| 77 | D3DX10SaveTextureToMemory | |
| 78 | D3DX10UnsetAllDeviceObjects | |
| 79 | D3DXBoxBoundProbe | |
| 80 | D3DXColorAdjustContrast | |
| 81 | D3DXColorAdjustSaturation | |
| 82 | D3DXComputeBoundingBox | |
| 83 | D3DXComputeBoundingSphere | |
| 84 | D3DXCpuOptimizations | |
| 85 | D3DXCreateMatrixStack | |
| 86 | D3DXFloat16To32Array | |
| 87 | D3DXFloat32To16Array | |
| 88 | D3DXFresnelTerm | |
| 89 | D3DXIntersectTri | |
| 90 | D3DXMatrixAffineTransformation | |
| 91 | D3DXMatrixAffineTransformation2D | |
| 92 | D3DXMatrixDecompose | |
| 93 | D3DXMatrixDeterminant | |
| 94 | D3DXMatrixInverse | |
| 95 | D3DXMatrixLookAtLH | |
| 96 | D3DXMatrixLookAtRH | |
| 97 | D3DXMatrixMultiply | |
| 98 | D3DXMatrixMultiplyTranspose | |
| 99 | D3DXMatrixOrthoLH | |
| 100 | D3DXMatrixOrthoOffCenterLH | |
| 101 | D3DXMatrixOrthoOffCenterRH | |
| 102 | D3DXMatrixOrthoRH | |
| 103 | D3DXMatrixPerspectiveFovLH | |
| 104 | D3DXMatrixPerspectiveFovRH | |
| 105 | D3DXMatrixPerspectiveLH | |
| 106 | D3DXMatrixPerspectiveOffCenterLH | |
| 107 | D3DXMatrixPerspectiveOffCenterRH | |
| 108 | D3DXMatrixPerspectiveRH | |
| 109 | D3DXMatrixReflect | |
| 110 | D3DXMatrixRotationAxis | |
| 111 | D3DXMatrixRotationQuaternion | |
| 112 | D3DXMatrixRotationX | |
| 113 | D3DXMatrixRotationY | |
| 114 | D3DXMatrixRotationYawPitchRoll | |
| 115 | D3DXMatrixRotationZ | |
| 116 | D3DXMatrixScaling | |
| 117 | D3DXMatrixShadow | |
| 118 | D3DXMatrixTransformation | |
| 119 | D3DXMatrixTransformation2D | |
| 120 | D3DXMatrixTranslation | |
| 121 | D3DXMatrixTranspose | |
| 122 | D3DXPlaneFromPointNormal | |
| 123 | D3DXPlaneFromPoints | |
| 124 | D3DXPlaneIntersectLine | |
| 125 | D3DXPlaneNormalize | |
| 126 | D3DXPlaneTransform | |
| 127 | D3DXPlaneTransformArray | |
| 128 | D3DXQuaternionBaryCentric | |
| 129 | D3DXQuaternionExp | |
| 130 | D3DXQuaternionInverse | |
| 131 | D3DXQuaternionLn | |
| 132 | D3DXQuaternionMultiply | |
| 133 | D3DXQuaternionNormalize | |
| 134 | D3DXQuaternionRotationAxis | |
| 135 | D3DXQuaternionRotationMatrix | |
| 136 | D3DXQuaternionRotationYawPitchRoll | |
| 137 | D3DXQuaternionSlerp | |
| 138 | D3DXQuaternionSquad | |
| 139 | D3DXQuaternionSquadSetup | |
| 140 | D3DXQuaternionToAxisAngle | |
| 141 | D3DXSHAdd | |
| 142 | D3DXSHDot | |
| 143 | D3DXSHEvalConeLight | |
| 144 | D3DXSHEvalDirection | |
| 145 | D3DXSHEvalDirectionalLight | |
| 146 | D3DXSHEvalHemisphereLight | |
| 147 | D3DXSHEvalSphericalLight | |
| 148 | D3DXSHMultiply2 | |
| 149 | D3DXSHMultiply3 | |
| 150 | D3DXSHMultiply4 | |
| 151 | D3DXSHMultiply5 | |
| 152 | D3DXSHMultiply6 | |
| 153 | D3DXSHRotate | |
| 154 | D3DXSHRotateZ | |
| 155 | D3DXSHScale | |
| 156 | D3DXSphereBoundProbe | |
| 157 | D3DXVec2BaryCentric | |
| 158 | D3DXVec2CatmullRom | |
| 159 | D3DXVec2Hermite | |
| 160 | D3DXVec2Normalize | |
| 161 | D3DXVec2Transform | |
| 162 | D3DXVec2TransformArray | |
| 163 | D3DXVec2TransformCoord | |
| 164 | D3DXVec2TransformCoordArray | |
| 165 | D3DXVec2TransformNormal | |
| 166 | D3DXVec2TransformNormalArray | |
| 167 | D3DXVec3BaryCentric | |
| 168 | D3DXVec3CatmullRom | |
| 169 | D3DXVec3Hermite | |
| 170 | D3DXVec3Normalize | |
| 171 | D3DXVec3Project | |
| 172 | D3DXVec3ProjectArray | |
| 173 | D3DXVec3Transform | |
| 174 | D3DXVec3TransformArray | |
| 175 | D3DXVec3TransformCoord | |
| 176 | D3DXVec3TransformCoordArray | |
| 177 | D3DXVec3TransformNormal | |
| 178 | D3DXVec3TransformNormalArray | |
| 179 | D3DXVec3Unproject | |
| 180 | D3DXVec3UnprojectArray | |
| 181 | D3DXVec4BaryCentric | |
| 182 | D3DXVec4CatmullRom | |
| 183 | D3DXVec4Cross | |
| 184 | D3DXVec4Hermite | |
| 185 | D3DXVec4Normalize | |
| 186 | D3DXVec4Transform | |
| 187 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_40.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateDevice | |
| 29 | D3DX10CreateDeviceAndSwapChain | |
| 30 | D3DX10CreateEffectFromFileA | |
| 31 | D3DX10CreateEffectFromFileW | |
| 32 | D3DX10CreateEffectFromMemory | |
| 33 | D3DX10CreateEffectFromResourceA | |
| 34 | D3DX10CreateEffectFromResourceW | |
| 35 | D3DX10CreateEffectPoolFromFileA | |
| 36 | D3DX10CreateEffectPoolFromFileW | |
| 37 | D3DX10CreateEffectPoolFromMemory | |
| 38 | D3DX10CreateEffectPoolFromResourceA | |
| 39 | D3DX10CreateEffectPoolFromResourceW | |
| 40 | D3DX10CreateFontA | |
| 41 | D3DX10CreateFontIndirectA | |
| 42 | D3DX10CreateFontIndirectW | |
| 43 | D3DX10CreateFontW | |
| 44 | D3DX10CreateMesh | |
| 45 | D3DX10CreateShaderResourceViewFromFileA | |
| 46 | D3DX10CreateShaderResourceViewFromFileW | |
| 47 | D3DX10CreateShaderResourceViewFromMemory | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW | |
| 50 | D3DX10CreateSkinInfo | |
| 51 | D3DX10CreateSprite | |
| 52 | D3DX10CreateTextureFromFileA | |
| 53 | D3DX10CreateTextureFromFileW | |
| 54 | D3DX10CreateTextureFromMemory | |
| 55 | D3DX10CreateTextureFromResourceA | |
| 56 | D3DX10CreateTextureFromResourceW | |
| 57 | D3DX10FilterTexture | |
| 58 | D3DX10GetFeatureLevel1 | |
| 59 | D3DX10GetImageInfoFromFileA | |
| 60 | D3DX10GetImageInfoFromFileW | |
| 61 | D3DX10GetImageInfoFromMemory | |
| 62 | D3DX10GetImageInfoFromResourceA | |
| 63 | D3DX10GetImageInfoFromResourceW | |
| 64 | D3DX10LoadTextureFromTexture | |
| 65 | D3DX10PreprocessShaderFromFileA | |
| 66 | D3DX10PreprocessShaderFromFileW | |
| 67 | D3DX10PreprocessShaderFromMemory | |
| 68 | D3DX10PreprocessShaderFromResourceA | |
| 69 | D3DX10PreprocessShaderFromResourceW | |
| 70 | D3DX10SHProjectCubeMap | |
| 71 | D3DX10SaveTextureToFileA | |
| 72 | D3DX10SaveTextureToFileW | |
| 73 | D3DX10SaveTextureToMemory | |
| 74 | D3DX10UnsetAllDeviceObjects | |
| 75 | D3DXBoxBoundProbe | |
| 76 | D3DXColorAdjustContrast | |
| 77 | D3DXColorAdjustSaturation | |
| 78 | D3DXComputeBoundingBox | |
| 79 | D3DXComputeBoundingSphere | |
| 80 | D3DXCpuOptimizations | |
| 81 | D3DXCreateMatrixStack | |
| 82 | D3DXFloat16To32Array | |
| 83 | D3DXFloat32To16Array | |
| 84 | D3DXFresnelTerm | |
| 85 | D3DXIntersectTri | |
| 86 | D3DXMatrixAffineTransformation | |
| 87 | D3DXMatrixAffineTransformation2D | |
| 88 | D3DXMatrixDecompose | |
| 89 | D3DXMatrixDeterminant | |
| 90 | D3DXMatrixInverse | |
| 91 | D3DXMatrixLookAtLH | |
| 92 | D3DXMatrixLookAtRH | |
| 93 | D3DXMatrixMultiply | |
| 94 | D3DXMatrixMultiplyTranspose | |
| 95 | D3DXMatrixOrthoLH | |
| 96 | D3DXMatrixOrthoOffCenterLH | |
| 97 | D3DXMatrixOrthoOffCenterRH | |
| 98 | D3DXMatrixOrthoRH | |
| 99 | D3DXMatrixPerspectiveFovLH | |
| 100 | D3DXMatrixPerspectiveFovRH | |
| 101 | D3DXMatrixPerspectiveLH | |
| 102 | D3DXMatrixPerspectiveOffCenterLH | |
| 103 | D3DXMatrixPerspectiveOffCenterRH | |
| 104 | D3DXMatrixPerspectiveRH | |
| 105 | D3DXMatrixReflect | |
| 106 | D3DXMatrixRotationAxis | |
| 107 | D3DXMatrixRotationQuaternion | |
| 108 | D3DXMatrixRotationX | |
| 109 | D3DXMatrixRotationY | |
| 110 | D3DXMatrixRotationYawPitchRoll | |
| 111 | D3DXMatrixRotationZ | |
| 112 | D3DXMatrixScaling | |
| 113 | D3DXMatrixShadow | |
| 114 | D3DXMatrixTransformation | |
| 115 | D3DXMatrixTransformation2D | |
| 116 | D3DXMatrixTranslation | |
| 117 | D3DXMatrixTranspose | |
| 118 | D3DXPlaneFromPointNormal | |
| 119 | D3DXPlaneFromPoints | |
| 120 | D3DXPlaneIntersectLine | |
| 121 | D3DXPlaneNormalize | |
| 122 | D3DXPlaneTransform | |
| 123 | D3DXPlaneTransformArray | |
| 124 | D3DXQuaternionBaryCentric | |
| 125 | D3DXQuaternionExp | |
| 126 | D3DXQuaternionInverse | |
| 127 | D3DXQuaternionLn | |
| 128 | D3DXQuaternionMultiply | |
| 129 | D3DXQuaternionNormalize | |
| 130 | D3DXQuaternionRotationAxis | |
| 131 | D3DXQuaternionRotationMatrix | |
| 132 | D3DXQuaternionRotationYawPitchRoll | |
| 133 | D3DXQuaternionSlerp | |
| 134 | D3DXQuaternionSquad | |
| 135 | D3DXQuaternionSquadSetup | |
| 136 | D3DXQuaternionToAxisAngle | |
| 137 | D3DXSHAdd | |
| 138 | D3DXSHDot | |
| 139 | D3DXSHEvalConeLight | |
| 140 | D3DXSHEvalDirection | |
| 141 | D3DXSHEvalDirectionalLight | |
| 142 | D3DXSHEvalHemisphereLight | |
| 143 | D3DXSHEvalSphericalLight | |
| 144 | D3DXSHMultiply2 | |
| 145 | D3DXSHMultiply3 | |
| 146 | D3DXSHMultiply4 | |
| 147 | D3DXSHMultiply5 | |
| 148 | D3DXSHMultiply6 | |
| 149 | D3DXSHRotate | |
| 150 | D3DXSHRotateZ | |
| 151 | D3DXSHScale | |
| 152 | D3DXSphereBoundProbe | |
| 153 | D3DXVec2BaryCentric | |
| 154 | D3DXVec2CatmullRom | |
| 155 | D3DXVec2Hermite | |
| 156 | D3DXVec2Normalize | |
| 157 | D3DXVec2Transform | |
| 158 | D3DXVec2TransformArray | |
| 159 | D3DXVec2TransformCoord | |
| 160 | D3DXVec2TransformCoordArray | |
| 161 | D3DXVec2TransformNormal | |
| 162 | D3DXVec2TransformNormalArray | |
| 163 | D3DXVec3BaryCentric | |
| 164 | D3DXVec3CatmullRom | |
| 165 | D3DXVec3Hermite | |
| 166 | D3DXVec3Normalize | |
| 167 | D3DXVec3Project | |
| 168 | D3DXVec3ProjectArray | |
| 169 | D3DXVec3Transform | |
| 170 | D3DXVec3TransformArray | |
| 171 | D3DXVec3TransformCoord | |
| 172 | D3DXVec3TransformCoordArray | |
| 173 | D3DXVec3TransformNormal | |
| 174 | D3DXVec3TransformNormalArray | |
| 175 | D3DXVec3Unproject | |
| 176 | D3DXVec3UnprojectArray | |
| 177 | D3DXVec4BaryCentric | |
| 178 | D3DXVec4CatmullRom | |
| 179 | D3DXVec4Cross | |
| 180 | D3DXVec4Hermite | |
| 181 | D3DXVec4Normalize | |
| 182 | D3DXVec4Transform | |
| 183 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_41.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateDevice | |
| 29 | D3DX10CreateDeviceAndSwapChain | |
| 30 | D3DX10CreateEffectFromFileA | |
| 31 | D3DX10CreateEffectFromFileW | |
| 32 | D3DX10CreateEffectFromMemory | |
| 33 | D3DX10CreateEffectFromResourceA | |
| 34 | D3DX10CreateEffectFromResourceW | |
| 35 | D3DX10CreateEffectPoolFromFileA | |
| 36 | D3DX10CreateEffectPoolFromFileW | |
| 37 | D3DX10CreateEffectPoolFromMemory | |
| 38 | D3DX10CreateEffectPoolFromResourceA | |
| 39 | D3DX10CreateEffectPoolFromResourceW | |
| 40 | D3DX10CreateFontA | |
| 41 | D3DX10CreateFontIndirectA | |
| 42 | D3DX10CreateFontIndirectW | |
| 43 | D3DX10CreateFontW | |
| 44 | D3DX10CreateMesh | |
| 45 | D3DX10CreateShaderResourceViewFromFileA | |
| 46 | D3DX10CreateShaderResourceViewFromFileW | |
| 47 | D3DX10CreateShaderResourceViewFromMemory | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW | |
| 50 | D3DX10CreateSkinInfo | |
| 51 | D3DX10CreateSprite | |
| 52 | D3DX10CreateTextureFromFileA | |
| 53 | D3DX10CreateTextureFromFileW | |
| 54 | D3DX10CreateTextureFromMemory | |
| 55 | D3DX10CreateTextureFromResourceA | |
| 56 | D3DX10CreateTextureFromResourceW | |
| 57 | D3DX10FilterTexture | |
| 58 | D3DX10GetFeatureLevel1 | |
| 59 | D3DX10GetImageInfoFromFileA | |
| 60 | D3DX10GetImageInfoFromFileW | |
| 61 | D3DX10GetImageInfoFromMemory | |
| 62 | D3DX10GetImageInfoFromResourceA | |
| 63 | D3DX10GetImageInfoFromResourceW | |
| 64 | D3DX10LoadTextureFromTexture | |
| 65 | D3DX10PreprocessShaderFromFileA | |
| 66 | D3DX10PreprocessShaderFromFileW | |
| 67 | D3DX10PreprocessShaderFromMemory | |
| 68 | D3DX10PreprocessShaderFromResourceA | |
| 69 | D3DX10PreprocessShaderFromResourceW | |
| 70 | D3DX10SHProjectCubeMap | |
| 71 | D3DX10SaveTextureToFileA | |
| 72 | D3DX10SaveTextureToFileW | |
| 73 | D3DX10SaveTextureToMemory | |
| 74 | D3DX10UnsetAllDeviceObjects | |
| 75 | D3DXBoxBoundProbe | |
| 76 | D3DXColorAdjustContrast | |
| 77 | D3DXColorAdjustSaturation | |
| 78 | D3DXComputeBoundingBox | |
| 79 | D3DXComputeBoundingSphere | |
| 80 | D3DXCpuOptimizations | |
| 81 | D3DXCreateMatrixStack | |
| 82 | D3DXFloat16To32Array | |
| 83 | D3DXFloat32To16Array | |
| 84 | D3DXFresnelTerm | |
| 85 | D3DXIntersectTri | |
| 86 | D3DXMatrixAffineTransformation | |
| 87 | D3DXMatrixAffineTransformation2D | |
| 88 | D3DXMatrixDecompose | |
| 89 | D3DXMatrixDeterminant | |
| 90 | D3DXMatrixInverse | |
| 91 | D3DXMatrixLookAtLH | |
| 92 | D3DXMatrixLookAtRH | |
| 93 | D3DXMatrixMultiply | |
| 94 | D3DXMatrixMultiplyTranspose | |
| 95 | D3DXMatrixOrthoLH | |
| 96 | D3DXMatrixOrthoOffCenterLH | |
| 97 | D3DXMatrixOrthoOffCenterRH | |
| 98 | D3DXMatrixOrthoRH | |
| 99 | D3DXMatrixPerspectiveFovLH | |
| 100 | D3DXMatrixPerspectiveFovRH | |
| 101 | D3DXMatrixPerspectiveLH | |
| 102 | D3DXMatrixPerspectiveOffCenterLH | |
| 103 | D3DXMatrixPerspectiveOffCenterRH | |
| 104 | D3DXMatrixPerspectiveRH | |
| 105 | D3DXMatrixReflect | |
| 106 | D3DXMatrixRotationAxis | |
| 107 | D3DXMatrixRotationQuaternion | |
| 108 | D3DXMatrixRotationX | |
| 109 | D3DXMatrixRotationY | |
| 110 | D3DXMatrixRotationYawPitchRoll | |
| 111 | D3DXMatrixRotationZ | |
| 112 | D3DXMatrixScaling | |
| 113 | D3DXMatrixShadow | |
| 114 | D3DXMatrixTransformation | |
| 115 | D3DXMatrixTransformation2D | |
| 116 | D3DXMatrixTranslation | |
| 117 | D3DXMatrixTranspose | |
| 118 | D3DXPlaneFromPointNormal | |
| 119 | D3DXPlaneFromPoints | |
| 120 | D3DXPlaneIntersectLine | |
| 121 | D3DXPlaneNormalize | |
| 122 | D3DXPlaneTransform | |
| 123 | D3DXPlaneTransformArray | |
| 124 | D3DXQuaternionBaryCentric | |
| 125 | D3DXQuaternionExp | |
| 126 | D3DXQuaternionInverse | |
| 127 | D3DXQuaternionLn | |
| 128 | D3DXQuaternionMultiply | |
| 129 | D3DXQuaternionNormalize | |
| 130 | D3DXQuaternionRotationAxis | |
| 131 | D3DXQuaternionRotationMatrix | |
| 132 | D3DXQuaternionRotationYawPitchRoll | |
| 133 | D3DXQuaternionSlerp | |
| 134 | D3DXQuaternionSquad | |
| 135 | D3DXQuaternionSquadSetup | |
| 136 | D3DXQuaternionToAxisAngle | |
| 137 | D3DXSHAdd | |
| 138 | D3DXSHDot | |
| 139 | D3DXSHEvalConeLight | |
| 140 | D3DXSHEvalDirection | |
| 141 | D3DXSHEvalDirectionalLight | |
| 142 | D3DXSHEvalHemisphereLight | |
| 143 | D3DXSHEvalSphericalLight | |
| 144 | D3DXSHMultiply2 | |
| 145 | D3DXSHMultiply3 | |
| 146 | D3DXSHMultiply4 | |
| 147 | D3DXSHMultiply5 | |
| 148 | D3DXSHMultiply6 | |
| 149 | D3DXSHRotate | |
| 150 | D3DXSHRotateZ | |
| 151 | D3DXSHScale | |
| 152 | D3DXSphereBoundProbe | |
| 153 | D3DXVec2BaryCentric | |
| 154 | D3DXVec2CatmullRom | |
| 155 | D3DXVec2Hermite | |
| 156 | D3DXVec2Normalize | |
| 157 | D3DXVec2Transform | |
| 158 | D3DXVec2TransformArray | |
| 159 | D3DXVec2TransformCoord | |
| 160 | D3DXVec2TransformCoordArray | |
| 161 | D3DXVec2TransformNormal | |
| 162 | D3DXVec2TransformNormalArray | |
| 163 | D3DXVec3BaryCentric | |
| 164 | D3DXVec3CatmullRom | |
| 165 | D3DXVec3Hermite | |
| 166 | D3DXVec3Normalize | |
| 167 | D3DXVec3Project | |
| 168 | D3DXVec3ProjectArray | |
| 169 | D3DXVec3Transform | |
| 170 | D3DXVec3TransformArray | |
| 171 | D3DXVec3TransformCoord | |
| 172 | D3DXVec3TransformCoordArray | |
| 173 | D3DXVec3TransformNormal | |
| 174 | D3DXVec3TransformNormalArray | |
| 175 | D3DXVec3Unproject | |
| 176 | D3DXVec3UnprojectArray | |
| 177 | D3DXVec4BaryCentric | |
| 178 | D3DXVec4CatmullRom | |
| 179 | D3DXVec4Cross | |
| 180 | D3DXVec4Hermite | |
| 181 | D3DXVec4Normalize | |
| 182 | D3DXVec4Transform | |
| 183 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateDevice | |
| 29 | D3DX10CreateDeviceAndSwapChain | |
| 30 | D3DX10CreateEffectFromFileA | |
| 31 | D3DX10CreateEffectFromFileW | |
| 32 | D3DX10CreateEffectFromMemory | |
| 33 | D3DX10CreateEffectFromResourceA | |
| 34 | D3DX10CreateEffectFromResourceW | |
| 35 | D3DX10CreateEffectPoolFromFileA | |
| 36 | D3DX10CreateEffectPoolFromFileW | |
| 37 | D3DX10CreateEffectPoolFromMemory | |
| 38 | D3DX10CreateEffectPoolFromResourceA | |
| 39 | D3DX10CreateEffectPoolFromResourceW | |
| 40 | D3DX10CreateFontA | |
| 41 | D3DX10CreateFontIndirectA | |
| 42 | D3DX10CreateFontIndirectW | |
| 43 | D3DX10CreateFontW | |
| 44 | D3DX10CreateMesh | |
| 45 | D3DX10CreateShaderResourceViewFromFileA | |
| 46 | D3DX10CreateShaderResourceViewFromFileW | |
| 47 | D3DX10CreateShaderResourceViewFromMemory | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW | |
| 50 | D3DX10CreateSkinInfo | |
| 51 | D3DX10CreateSprite | |
| 52 | D3DX10CreateTextureFromFileA | |
| 53 | D3DX10CreateTextureFromFileW | |
| 54 | D3DX10CreateTextureFromMemory | |
| 55 | D3DX10CreateTextureFromResourceA | |
| 56 | D3DX10CreateTextureFromResourceW | |
| 57 | D3DX10FilterTexture | |
| 58 | D3DX10GetFeatureLevel1 | |
| 59 | D3DX10GetImageInfoFromFileA | |
| 60 | D3DX10GetImageInfoFromFileW | |
| 61 | D3DX10GetImageInfoFromMemory | |
| 62 | D3DX10GetImageInfoFromResourceA | |
| 63 | D3DX10GetImageInfoFromResourceW | |
| 64 | D3DX10LoadTextureFromTexture | |
| 65 | D3DX10PreprocessShaderFromFileA | |
| 66 | D3DX10PreprocessShaderFromFileW | |
| 67 | D3DX10PreprocessShaderFromMemory | |
| 68 | D3DX10PreprocessShaderFromResourceA | |
| 69 | D3DX10PreprocessShaderFromResourceW | |
| 70 | D3DX10SHProjectCubeMap | |
| 71 | D3DX10SaveTextureToFileA | |
| 72 | D3DX10SaveTextureToFileW | |
| 73 | D3DX10SaveTextureToMemory | |
| 74 | D3DX10UnsetAllDeviceObjects | |
| 75 | D3DXBoxBoundProbe | |
| 76 | D3DXColorAdjustContrast | |
| 77 | D3DXColorAdjustSaturation | |
| 78 | D3DXComputeBoundingBox | |
| 79 | D3DXComputeBoundingSphere | |
| 80 | D3DXCpuOptimizations | |
| 81 | D3DXCreateMatrixStack | |
| 82 | D3DXFloat16To32Array | |
| 83 | D3DXFloat32To16Array | |
| 84 | D3DXFresnelTerm | |
| 85 | D3DXIntersectTri | |
| 86 | D3DXMatrixAffineTransformation | |
| 87 | D3DXMatrixAffineTransformation2D | |
| 88 | D3DXMatrixDecompose | |
| 89 | D3DXMatrixDeterminant | |
| 90 | D3DXMatrixInverse | |
| 91 | D3DXMatrixLookAtLH | |
| 92 | D3DXMatrixLookAtRH | |
| 93 | D3DXMatrixMultiply | |
| 94 | D3DXMatrixMultiplyTranspose | |
| 95 | D3DXMatrixOrthoLH | |
| 96 | D3DXMatrixOrthoOffCenterLH | |
| 97 | D3DXMatrixOrthoOffCenterRH | |
| 98 | D3DXMatrixOrthoRH | |
| 99 | D3DXMatrixPerspectiveFovLH | |
| 100 | D3DXMatrixPerspectiveFovRH | |
| 101 | D3DXMatrixPerspectiveLH | |
| 102 | D3DXMatrixPerspectiveOffCenterLH | |
| 103 | D3DXMatrixPerspectiveOffCenterRH | |
| 104 | D3DXMatrixPerspectiveRH | |
| 105 | D3DXMatrixReflect | |
| 106 | D3DXMatrixRotationAxis | |
| 107 | D3DXMatrixRotationQuaternion | |
| 108 | D3DXMatrixRotationX | |
| 109 | D3DXMatrixRotationY | |
| 110 | D3DXMatrixRotationYawPitchRoll | |
| 111 | D3DXMatrixRotationZ | |
| 112 | D3DXMatrixScaling | |
| 113 | D3DXMatrixShadow | |
| 114 | D3DXMatrixTransformation | |
| 115 | D3DXMatrixTransformation2D | |
| 116 | D3DXMatrixTranslation | |
| 117 | D3DXMatrixTranspose | |
| 118 | D3DXPlaneFromPointNormal | |
| 119 | D3DXPlaneFromPoints | |
| 120 | D3DXPlaneIntersectLine | |
| 121 | D3DXPlaneNormalize | |
| 122 | D3DXPlaneTransform | |
| 123 | D3DXPlaneTransformArray | |
| 124 | D3DXQuaternionBaryCentric | |
| 125 | D3DXQuaternionExp | |
| 126 | D3DXQuaternionInverse | |
| 127 | D3DXQuaternionLn | |
| 128 | D3DXQuaternionMultiply | |
| 129 | D3DXQuaternionNormalize | |
| 130 | D3DXQuaternionRotationAxis | |
| 131 | D3DXQuaternionRotationMatrix | |
| 132 | D3DXQuaternionRotationYawPitchRoll | |
| 133 | D3DXQuaternionSlerp | |
| 134 | D3DXQuaternionSquad | |
| 135 | D3DXQuaternionSquadSetup | |
| 136 | D3DXQuaternionToAxisAngle | |
| 137 | D3DXSHAdd | |
| 138 | D3DXSHDot | |
| 139 | D3DXSHEvalConeLight | |
| 140 | D3DXSHEvalDirection | |
| 141 | D3DXSHEvalDirectionalLight | |
| 142 | D3DXSHEvalHemisphereLight | |
| 143 | D3DXSHEvalSphericalLight | |
| 144 | D3DXSHMultiply2 | |
| 145 | D3DXSHMultiply3 | |
| 146 | D3DXSHMultiply4 | |
| 147 | D3DXSHMultiply5 | |
| 148 | D3DXSHMultiply6 | |
| 149 | D3DXSHRotate | |
| 150 | D3DXSHRotateZ | |
| 151 | D3DXSHScale | |
| 152 | D3DXSphereBoundProbe | |
| 153 | D3DXVec2BaryCentric | |
| 154 | D3DXVec2CatmullRom | |
| 155 | D3DXVec2Hermite | |
| 156 | D3DXVec2Normalize | |
| 157 | D3DXVec2Transform | |
| 158 | D3DXVec2TransformArray | |
| 159 | D3DXVec2TransformCoord | |
| 160 | D3DXVec2TransformCoordArray | |
| 161 | D3DXVec2TransformNormal | |
| 162 | D3DXVec2TransformNormalArray | |
| 163 | D3DXVec3BaryCentric | |
| 164 | D3DXVec3CatmullRom | |
| 165 | D3DXVec3Hermite | |
| 166 | D3DXVec3Normalize | |
| 167 | D3DXVec3Project | |
| 168 | D3DXVec3ProjectArray | |
| 169 | D3DXVec3Transform | |
| 170 | D3DXVec3TransformArray | |
| 171 | D3DXVec3TransformCoord | |
| 172 | D3DXVec3TransformCoordArray | |
| 173 | D3DXVec3TransformNormal | |
| 174 | D3DXVec3TransformNormalArray | |
| 175 | D3DXVec3Unproject | |
| 176 | D3DXVec3UnprojectArray | |
| 177 | D3DXVec4BaryCentric | |
| 178 | D3DXVec4CatmullRom | |
| 179 | D3DXVec4Cross | |
| 180 | D3DXVec4Hermite | |
| 181 | D3DXVec4Normalize | |
| 182 | D3DXVec4Transform | |
| 183 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx10_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX10CreateThreadPump | |
| 9 | D3DX10CheckVersion | |
| 10 | D3DX10CompileFromFileA | |
| 11 | D3DX10CompileFromFileW | |
| 12 | D3DX10CompileFromMemory | |
| 13 | D3DX10CompileFromResourceA | |
| 14 | D3DX10CompileFromResourceW | |
| 15 | D3DX10ComputeNormalMap | |
| 16 | D3DX10CreateAsyncCompilerProcessor | |
| 17 | D3DX10CreateAsyncEffectCreateProcessor | |
| 18 | D3DX10CreateAsyncEffectPoolCreateProcessor | |
| 19 | D3DX10CreateAsyncFileLoaderA | |
| 20 | D3DX10CreateAsyncFileLoaderW | |
| 21 | D3DX10CreateAsyncMemoryLoader | |
| 22 | D3DX10CreateAsyncResourceLoaderA | |
| 23 | D3DX10CreateAsyncResourceLoaderW | |
| 24 | D3DX10CreateAsyncShaderPreprocessProcessor | |
| 25 | D3DX10CreateAsyncShaderResourceViewProcessor | |
| 26 | D3DX10CreateAsyncTextureInfoProcessor | |
| 27 | D3DX10CreateAsyncTextureProcessor | |
| 28 | D3DX10CreateDevice | |
| 29 | D3DX10CreateDeviceAndSwapChain | |
| 30 | D3DX10CreateEffectFromFileA | |
| 31 | D3DX10CreateEffectFromFileW | |
| 32 | D3DX10CreateEffectFromMemory | |
| 33 | D3DX10CreateEffectFromResourceA | |
| 34 | D3DX10CreateEffectFromResourceW | |
| 35 | D3DX10CreateEffectPoolFromFileA | |
| 36 | D3DX10CreateEffectPoolFromFileW | |
| 37 | D3DX10CreateEffectPoolFromMemory | |
| 38 | D3DX10CreateEffectPoolFromResourceA | |
| 39 | D3DX10CreateEffectPoolFromResourceW | |
| 40 | D3DX10CreateFontA | |
| 41 | D3DX10CreateFontIndirectA | |
| 42 | D3DX10CreateFontIndirectW | |
| 43 | D3DX10CreateFontW | |
| 44 | D3DX10CreateMesh | |
| 45 | D3DX10CreateShaderResourceViewFromFileA | |
| 46 | D3DX10CreateShaderResourceViewFromFileW | |
| 47 | D3DX10CreateShaderResourceViewFromMemory | |
| 48 | D3DX10CreateShaderResourceViewFromResourceA | |
| 49 | D3DX10CreateShaderResourceViewFromResourceW | |
| 50 | D3DX10CreateSkinInfo | |
| 51 | D3DX10CreateSprite | |
| 52 | D3DX10CreateTextureFromFileA | |
| 53 | D3DX10CreateTextureFromFileW | |
| 54 | D3DX10CreateTextureFromMemory | |
| 55 | D3DX10CreateTextureFromResourceA | |
| 56 | D3DX10CreateTextureFromResourceW | |
| 57 | D3DX10FilterTexture | |
| 58 | D3DX10GetFeatureLevel1 | |
| 59 | D3DX10GetImageInfoFromFileA | |
| 60 | D3DX10GetImageInfoFromFileW | |
| 61 | D3DX10GetImageInfoFromMemory | |
| 62 | D3DX10GetImageInfoFromResourceA | |
| 63 | D3DX10GetImageInfoFromResourceW | |
| 64 | D3DX10LoadTextureFromTexture | |
| 65 | D3DX10PreprocessShaderFromFileA | |
| 66 | D3DX10PreprocessShaderFromFileW | |
| 67 | D3DX10PreprocessShaderFromMemory | |
| 68 | D3DX10PreprocessShaderFromResourceA | |
| 69 | D3DX10PreprocessShaderFromResourceW | |
| 70 | D3DX10SHProjectCubeMap | |
| 71 | D3DX10SaveTextureToFileA | |
| 72 | D3DX10SaveTextureToFileW | |
| 73 | D3DX10SaveTextureToMemory | |
| 74 | D3DX10UnsetAllDeviceObjects | |
| 75 | D3DXBoxBoundProbe | |
| 76 | D3DXColorAdjustContrast | |
| 77 | D3DXColorAdjustSaturation | |
| 78 | D3DXComputeBoundingBox | |
| 79 | D3DXComputeBoundingSphere | |
| 80 | D3DXCpuOptimizations | |
| 81 | D3DXCreateMatrixStack | |
| 82 | D3DXFloat16To32Array | |
| 83 | D3DXFloat32To16Array | |
| 84 | D3DXFresnelTerm | |
| 85 | D3DXIntersectTri | |
| 86 | D3DXMatrixAffineTransformation | |
| 87 | D3DXMatrixAffineTransformation2D | |
| 88 | D3DXMatrixDecompose | |
| 89 | D3DXMatrixDeterminant | |
| 90 | D3DXMatrixInverse | |
| 91 | D3DXMatrixLookAtLH | |
| 92 | D3DXMatrixLookAtRH | |
| 93 | D3DXMatrixMultiply | |
| 94 | D3DXMatrixMultiplyTranspose | |
| 95 | D3DXMatrixOrthoLH | |
| 96 | D3DXMatrixOrthoOffCenterLH | |
| 97 | D3DXMatrixOrthoOffCenterRH | |
| 98 | D3DXMatrixOrthoRH | |
| 99 | D3DXMatrixPerspectiveFovLH | |
| 100 | D3DXMatrixPerspectiveFovRH | |
| 101 | D3DXMatrixPerspectiveLH | |
| 102 | D3DXMatrixPerspectiveOffCenterLH | |
| 103 | D3DXMatrixPerspectiveOffCenterRH | |
| 104 | D3DXMatrixPerspectiveRH | |
| 105 | D3DXMatrixReflect | |
| 106 | D3DXMatrixRotationAxis | |
| 107 | D3DXMatrixRotationQuaternion | |
| 108 | D3DXMatrixRotationX | |
| 109 | D3DXMatrixRotationY | |
| 110 | D3DXMatrixRotationYawPitchRoll | |
| 111 | D3DXMatrixRotationZ | |
| 112 | D3DXMatrixScaling | |
| 113 | D3DXMatrixShadow | |
| 114 | D3DXMatrixTransformation | |
| 115 | D3DXMatrixTransformation2D | |
| 116 | D3DXMatrixTranslation | |
| 117 | D3DXMatrixTranspose | |
| 118 | D3DXPlaneFromPointNormal | |
| 119 | D3DXPlaneFromPoints | |
| 120 | D3DXPlaneIntersectLine | |
| 121 | D3DXPlaneNormalize | |
| 122 | D3DXPlaneTransform | |
| 123 | D3DXPlaneTransformArray | |
| 124 | D3DXQuaternionBaryCentric | |
| 125 | D3DXQuaternionExp | |
| 126 | D3DXQuaternionInverse | |
| 127 | D3DXQuaternionLn | |
| 128 | D3DXQuaternionMultiply | |
| 129 | D3DXQuaternionNormalize | |
| 130 | D3DXQuaternionRotationAxis | |
| 131 | D3DXQuaternionRotationMatrix | |
| 132 | D3DXQuaternionRotationYawPitchRoll | |
| 133 | D3DXQuaternionSlerp | |
| 134 | D3DXQuaternionSquad | |
| 135 | D3DXQuaternionSquadSetup | |
| 136 | D3DXQuaternionToAxisAngle | |
| 137 | D3DXSHAdd | |
| 138 | D3DXSHDot | |
| 139 | D3DXSHEvalConeLight | |
| 140 | D3DXSHEvalDirection | |
| 141 | D3DXSHEvalDirectionalLight | |
| 142 | D3DXSHEvalHemisphereLight | |
| 143 | D3DXSHEvalSphericalLight | |
| 144 | D3DXSHMultiply2 | |
| 145 | D3DXSHMultiply3 | |
| 146 | D3DXSHMultiply4 | |
| 147 | D3DXSHMultiply5 | |
| 148 | D3DXSHMultiply6 | |
| 149 | D3DXSHRotate | |
| 150 | D3DXSHRotateZ | |
| 151 | D3DXSHScale | |
| 152 | D3DXSphereBoundProbe | |
| 153 | D3DXVec2BaryCentric | |
| 154 | D3DXVec2CatmullRom | |
| 155 | D3DXVec2Hermite | |
| 156 | D3DXVec2Normalize | |
| 157 | D3DXVec2Transform | |
| 158 | D3DXVec2TransformArray | |
| 159 | D3DXVec2TransformCoord | |
| 160 | D3DXVec2TransformCoordArray | |
| 161 | D3DXVec2TransformNormal | |
| 162 | D3DXVec2TransformNormalArray | |
| 163 | D3DXVec3BaryCentric | |
| 164 | D3DXVec3CatmullRom | |
| 165 | D3DXVec3Hermite | |
| 166 | D3DXVec3Normalize | |
| 167 | D3DXVec3Project | |
| 168 | D3DXVec3ProjectArray | |
| 169 | D3DXVec3Transform | |
| 170 | D3DXVec3TransformArray | |
| 171 | D3DXVec3TransformCoord | |
| 172 | D3DXVec3TransformCoordArray | |
| 173 | D3DXVec3TransformNormal | |
| 174 | D3DXVec3TransformNormalArray | |
| 175 | D3DXVec3Unproject | |
| 176 | D3DXVec3UnprojectArray | |
| 177 | D3DXVec4BaryCentric | |
| 178 | D3DXVec4CatmullRom | |
| 179 | D3DXVec4Cross | |
| 180 | D3DXVec4Hermite | |
| 181 | D3DXVec4Normalize | |
| 182 | D3DXVec4Transform | |
| 183 | D3DXVec4TransformArray |
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 | ; | |
| 6 | LIBRARY "d3dx11_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CheckVersion | |
| 9 | D3DX11CompileFromFileA | |
| 10 | D3DX11CompileFromFileW | |
| 11 | D3DX11CompileFromMemory | |
| 12 | D3DX11CompileFromResourceA | |
| 13 | D3DX11CompileFromResourceW | |
| 14 | D3DX11ComputeNormalMap | |
| 15 | D3DX11CreateAsyncCompilerProcessor | |
| 16 | D3DX11CreateAsyncFileLoaderA | |
| 17 | D3DX11CreateAsyncFileLoaderW | |
| 18 | D3DX11CreateAsyncMemoryLoader | |
| 19 | D3DX11CreateAsyncResourceLoaderA | |
| 20 | D3DX11CreateAsyncResourceLoaderW | |
| 21 | D3DX11CreateAsyncShaderPreprocessProcessor | |
| 22 | D3DX11CreateAsyncShaderResourceViewProcessor | |
| 23 | D3DX11CreateAsyncTextureInfoProcessor | |
| 24 | D3DX11CreateAsyncTextureProcessor | |
| 25 | D3DX11CreateShaderResourceViewFromFileA | |
| 26 | D3DX11CreateShaderResourceViewFromFileW | |
| 27 | D3DX11CreateShaderResourceViewFromMemory | |
| 28 | D3DX11CreateShaderResourceViewFromResourceA | |
| 29 | D3DX11CreateShaderResourceViewFromResourceW | |
| 30 | D3DX11CreateTextureFromFileA | |
| 31 | D3DX11CreateTextureFromFileW | |
| 32 | D3DX11CreateTextureFromMemory | |
| 33 | D3DX11CreateTextureFromResourceA | |
| 34 | D3DX11CreateTextureFromResourceW | |
| 35 | D3DX11CreateThreadPump | |
| 36 | D3DX11FilterTexture | |
| 37 | D3DX11GetImageInfoFromFileA | |
| 38 | D3DX11GetImageInfoFromFileW | |
| 39 | D3DX11GetImageInfoFromMemory | |
| 40 | D3DX11GetImageInfoFromResourceA | |
| 41 | D3DX11GetImageInfoFromResourceW | |
| 42 | D3DX11LoadTextureFromTexture | |
| 43 | D3DX11PreprocessShaderFromFileA | |
| 44 | D3DX11PreprocessShaderFromFileW | |
| 45 | D3DX11PreprocessShaderFromMemory | |
| 46 | D3DX11PreprocessShaderFromResourceA | |
| 47 | D3DX11PreprocessShaderFromResourceW | |
| 48 | D3DX11SHProjectCubeMap | |
| 49 | D3DX11SaveTextureToFileA | |
| 50 | D3DX11SaveTextureToFileW | |
| 51 | D3DX11SaveTextureToMemory |
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 | ; | |
| 6 | LIBRARY "d3dx11_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DX11CheckVersion | |
| 9 | D3DX11CompileFromFileA | |
| 10 | D3DX11CompileFromFileW | |
| 11 | D3DX11CompileFromMemory | |
| 12 | D3DX11CompileFromResourceA | |
| 13 | D3DX11CompileFromResourceW | |
| 14 | D3DX11ComputeNormalMap | |
| 15 | D3DX11CreateAsyncCompilerProcessor | |
| 16 | D3DX11CreateAsyncFileLoaderA | |
| 17 | D3DX11CreateAsyncFileLoaderW | |
| 18 | D3DX11CreateAsyncMemoryLoader | |
| 19 | D3DX11CreateAsyncResourceLoaderA | |
| 20 | D3DX11CreateAsyncResourceLoaderW | |
| 21 | D3DX11CreateAsyncShaderPreprocessProcessor | |
| 22 | D3DX11CreateAsyncShaderResourceViewProcessor | |
| 23 | D3DX11CreateAsyncTextureInfoProcessor | |
| 24 | D3DX11CreateAsyncTextureProcessor | |
| 25 | D3DX11CreateShaderResourceViewFromFileA | |
| 26 | D3DX11CreateShaderResourceViewFromFileW | |
| 27 | D3DX11CreateShaderResourceViewFromMemory | |
| 28 | D3DX11CreateShaderResourceViewFromResourceA | |
| 29 | D3DX11CreateShaderResourceViewFromResourceW | |
| 30 | D3DX11CreateTextureFromFileA | |
| 31 | D3DX11CreateTextureFromFileW | |
| 32 | D3DX11CreateTextureFromMemory | |
| 33 | D3DX11CreateTextureFromResourceA | |
| 34 | D3DX11CreateTextureFromResourceW | |
| 35 | D3DX11CreateThreadPump | |
| 36 | D3DX11FilterTexture | |
| 37 | D3DX11GetImageInfoFromFileA | |
| 38 | D3DX11GetImageInfoFromFileW | |
| 39 | D3DX11GetImageInfoFromMemory | |
| 40 | D3DX11GetImageInfoFromResourceA | |
| 41 | D3DX11GetImageInfoFromResourceW | |
| 42 | D3DX11LoadTextureFromTexture | |
| 43 | D3DX11PreprocessShaderFromFileA | |
| 44 | D3DX11PreprocessShaderFromFileW | |
| 45 | D3DX11PreprocessShaderFromMemory | |
| 46 | D3DX11PreprocessShaderFromResourceA | |
| 47 | D3DX11PreprocessShaderFromResourceW | |
| 48 | D3DX11SHProjectCubeMap | |
| 49 | D3DX11SaveTextureToFileA | |
| 50 | D3DX11SaveTextureToFileW | |
| 51 | D3DX11SaveTextureToMemory |
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 | ; | |
| 6 | LIBRARY "d3dx9_24.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeNormalMap | |
| 29 | D3DXComputeNormals | |
| 30 | D3DXComputeTangent | |
| 31 | D3DXComputeTangentFrame | |
| 32 | D3DXComputeTangentFrameEx | |
| 33 | D3DXConcatenateMeshes | |
| 34 | D3DXConvertMeshSubsetToSingleStrip | |
| 35 | D3DXConvertMeshSubsetToStrips | |
| 36 | D3DXCpuOptimizations | |
| 37 | D3DXCreateAnimationController | |
| 38 | D3DXCreateBox | |
| 39 | D3DXCreateBuffer | |
| 40 | D3DXCreateCompressedAnimationSet | |
| 41 | D3DXCreateCubeTexture | |
| 42 | D3DXCreateCubeTextureFromFileA | |
| 43 | D3DXCreateCubeTextureFromFileExA | |
| 44 | D3DXCreateCubeTextureFromFileExW | |
| 45 | D3DXCreateCubeTextureFromFileInMemory | |
| 46 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 47 | D3DXCreateCubeTextureFromFileW | |
| 48 | D3DXCreateCubeTextureFromResourceA | |
| 49 | D3DXCreateCubeTextureFromResourceExA | |
| 50 | D3DXCreateCubeTextureFromResourceExW | |
| 51 | D3DXCreateCubeTextureFromResourceW | |
| 52 | D3DXCreateCylinder | |
| 53 | D3DXCreateEffect | |
| 54 | D3DXCreateEffectCompiler | |
| 55 | D3DXCreateEffectCompilerFromFileA | |
| 56 | D3DXCreateEffectCompilerFromFileW | |
| 57 | D3DXCreateEffectCompilerFromResourceA | |
| 58 | D3DXCreateEffectCompilerFromResourceW | |
| 59 | D3DXCreateEffectEx | |
| 60 | D3DXCreateEffectFromFileA | |
| 61 | D3DXCreateEffectFromFileExA | |
| 62 | D3DXCreateEffectFromFileExW | |
| 63 | D3DXCreateEffectFromFileW | |
| 64 | D3DXCreateEffectFromResourceA | |
| 65 | D3DXCreateEffectFromResourceExA | |
| 66 | D3DXCreateEffectFromResourceExW | |
| 67 | D3DXCreateEffectFromResourceW | |
| 68 | D3DXCreateEffectPool | |
| 69 | D3DXCreateFontA | |
| 70 | D3DXCreateFontIndirectA | |
| 71 | D3DXCreateFontIndirectW | |
| 72 | D3DXCreateFontW | |
| 73 | D3DXCreateFragmentLinker | |
| 74 | D3DXCreateKeyframedAnimationSet | |
| 75 | D3DXCreateLine | |
| 76 | D3DXCreateMatrixStack | |
| 77 | D3DXCreateMesh | |
| 78 | D3DXCreateMeshFVF | |
| 79 | D3DXCreateNPatchMesh | |
| 80 | D3DXCreatePMeshFromStream | |
| 81 | D3DXCreatePRTBuffer | |
| 82 | D3DXCreatePRTBufferTex | |
| 83 | D3DXCreatePRTCompBuffer | |
| 84 | D3DXCreatePRTEngine | |
| 85 | D3DXCreatePatchMesh | |
| 86 | D3DXCreatePolygon | |
| 87 | D3DXCreateRenderToEnvMap | |
| 88 | D3DXCreateRenderToSurface | |
| 89 | D3DXCreateSPMesh | |
| 90 | D3DXCreateSkinInfo | |
| 91 | D3DXCreateSkinInfoFVF | |
| 92 | D3DXCreateSkinInfoFromBlendedMesh | |
| 93 | D3DXCreateSphere | |
| 94 | D3DXCreateSprite | |
| 95 | D3DXCreateTeapot | |
| 96 | D3DXCreateTextA | |
| 97 | D3DXCreateTextW | |
| 98 | D3DXCreateTexture | |
| 99 | D3DXCreateTextureFromFileA | |
| 100 | D3DXCreateTextureFromFileExA | |
| 101 | D3DXCreateTextureFromFileExW | |
| 102 | D3DXCreateTextureFromFileInMemory | |
| 103 | D3DXCreateTextureFromFileInMemoryEx | |
| 104 | D3DXCreateTextureFromFileW | |
| 105 | D3DXCreateTextureFromResourceA | |
| 106 | D3DXCreateTextureFromResourceExA | |
| 107 | D3DXCreateTextureFromResourceExW | |
| 108 | D3DXCreateTextureFromResourceW | |
| 109 | D3DXCreateTextureGutterHelper | |
| 110 | D3DXCreateTextureShader | |
| 111 | D3DXCreateTorus | |
| 112 | D3DXCreateVolumeTexture | |
| 113 | D3DXCreateVolumeTextureFromFileA | |
| 114 | D3DXCreateVolumeTextureFromFileExA | |
| 115 | D3DXCreateVolumeTextureFromFileExW | |
| 116 | D3DXCreateVolumeTextureFromFileInMemory | |
| 117 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 118 | D3DXCreateVolumeTextureFromFileW | |
| 119 | D3DXCreateVolumeTextureFromResourceA | |
| 120 | D3DXCreateVolumeTextureFromResourceExA | |
| 121 | D3DXCreateVolumeTextureFromResourceExW | |
| 122 | D3DXCreateVolumeTextureFromResourceW | |
| 123 | D3DXDebugMute | |
| 124 | D3DXDeclaratorFromFVF | |
| 125 | D3DXDisassembleEffect | |
| 126 | D3DXDisassembleShader | |
| 127 | D3DXFVFFromDeclarator | |
| 128 | D3DXFileCreate | |
| 129 | D3DXFillCubeTexture | |
| 130 | D3DXFillCubeTextureTX | |
| 131 | D3DXFillTexture | |
| 132 | D3DXFillTextureTX | |
| 133 | D3DXFillVolumeTexture | |
| 134 | D3DXFillVolumeTextureTX | |
| 135 | D3DXFilterTexture | |
| 136 | D3DXFindShaderComment | |
| 137 | D3DXFloat16To32Array | |
| 138 | D3DXFloat32To16Array | |
| 139 | D3DXFrameAppendChild | |
| 140 | D3DXFrameCalculateBoundingSphere | |
| 141 | D3DXFrameDestroy | |
| 142 | D3DXFrameFind | |
| 143 | D3DXFrameNumNamedMatrices | |
| 144 | D3DXFrameRegisterNamedMatrices | |
| 145 | D3DXFresnelTerm | |
| 146 | D3DXGatherFragments | |
| 147 | D3DXGatherFragmentsFromFileA | |
| 148 | D3DXGatherFragmentsFromFileW | |
| 149 | D3DXGatherFragmentsFromResourceA | |
| 150 | D3DXGatherFragmentsFromResourceW | |
| 151 | D3DXGenerateOutputDecl | |
| 152 | D3DXGeneratePMesh | |
| 153 | D3DXGetDeclLength | |
| 154 | D3DXGetDeclVertexSize | |
| 155 | D3DXGetDriverLevel | |
| 156 | D3DXGetFVFVertexSize | |
| 157 | D3DXGetImageInfoFromFileA | |
| 158 | D3DXGetImageInfoFromFileInMemory | |
| 159 | D3DXGetImageInfoFromFileW | |
| 160 | D3DXGetImageInfoFromResourceA | |
| 161 | D3DXGetImageInfoFromResourceW | |
| 162 | D3DXGetPixelShaderProfile | |
| 163 | D3DXGetShaderConstantTable | |
| 164 | D3DXGetShaderInputSemantics | |
| 165 | D3DXGetShaderOutputSemantics | |
| 166 | D3DXGetShaderSamplers | |
| 167 | D3DXGetShaderSize | |
| 168 | D3DXGetShaderVersion | |
| 169 | D3DXGetTargetDescByName | |
| 170 | D3DXGetTargetDescByVersion | |
| 171 | D3DXGetVertexShaderProfile | |
| 172 | D3DXIntersect | |
| 173 | D3DXIntersectSubset | |
| 174 | D3DXIntersectTri | |
| 175 | D3DXLoadMeshFromXA | |
| 176 | D3DXLoadMeshFromXInMemory | |
| 177 | D3DXLoadMeshFromXResource | |
| 178 | D3DXLoadMeshFromXW | |
| 179 | D3DXLoadMeshFromXof | |
| 180 | D3DXLoadMeshHierarchyFromXA | |
| 181 | D3DXLoadMeshHierarchyFromXInMemory | |
| 182 | D3DXLoadMeshHierarchyFromXW | |
| 183 | D3DXLoadPRTBufferFromFileA | |
| 184 | D3DXLoadPRTBufferFromFileW | |
| 185 | D3DXLoadPRTCompBufferFromFileA | |
| 186 | D3DXLoadPRTCompBufferFromFileW | |
| 187 | D3DXLoadPatchMeshFromXof | |
| 188 | D3DXLoadSkinMeshFromXof | |
| 189 | D3DXLoadSurfaceFromFileA | |
| 190 | D3DXLoadSurfaceFromFileInMemory | |
| 191 | D3DXLoadSurfaceFromFileW | |
| 192 | D3DXLoadSurfaceFromMemory | |
| 193 | D3DXLoadSurfaceFromResourceA | |
| 194 | D3DXLoadSurfaceFromResourceW | |
| 195 | D3DXLoadSurfaceFromSurface | |
| 196 | D3DXLoadVolumeFromFileA | |
| 197 | D3DXLoadVolumeFromFileInMemory | |
| 198 | D3DXLoadVolumeFromFileW | |
| 199 | D3DXLoadVolumeFromMemory | |
| 200 | D3DXLoadVolumeFromResourceA | |
| 201 | D3DXLoadVolumeFromResourceW | |
| 202 | D3DXLoadVolumeFromVolume | |
| 203 | D3DXMatrixAffineTransformation | |
| 204 | D3DXMatrixAffineTransformation2D | |
| 205 | D3DXMatrixDecompose | |
| 206 | D3DXMatrixDeterminant | |
| 207 | D3DXMatrixInverse | |
| 208 | D3DXMatrixLookAtLH | |
| 209 | D3DXMatrixLookAtRH | |
| 210 | D3DXMatrixMultiply | |
| 211 | D3DXMatrixMultiplyTranspose | |
| 212 | D3DXMatrixOrthoLH | |
| 213 | D3DXMatrixOrthoOffCenterLH | |
| 214 | D3DXMatrixOrthoOffCenterRH | |
| 215 | D3DXMatrixOrthoRH | |
| 216 | D3DXMatrixPerspectiveFovLH | |
| 217 | D3DXMatrixPerspectiveFovRH | |
| 218 | D3DXMatrixPerspectiveLH | |
| 219 | D3DXMatrixPerspectiveOffCenterLH | |
| 220 | D3DXMatrixPerspectiveOffCenterRH | |
| 221 | D3DXMatrixPerspectiveRH | |
| 222 | D3DXMatrixReflect | |
| 223 | D3DXMatrixRotationAxis | |
| 224 | D3DXMatrixRotationQuaternion | |
| 225 | D3DXMatrixRotationX | |
| 226 | D3DXMatrixRotationY | |
| 227 | D3DXMatrixRotationYawPitchRoll | |
| 228 | D3DXMatrixRotationZ | |
| 229 | D3DXMatrixScaling | |
| 230 | D3DXMatrixShadow | |
| 231 | D3DXMatrixTransformation | |
| 232 | D3DXMatrixTransformation2D | |
| 233 | D3DXMatrixTranslation | |
| 234 | D3DXMatrixTranspose | |
| 235 | D3DXOptimizeFaces | |
| 236 | D3DXOptimizeVertices | |
| 237 | D3DXPlaneFromPointNormal | |
| 238 | D3DXPlaneFromPoints | |
| 239 | D3DXPlaneIntersectLine | |
| 240 | D3DXPlaneNormalize | |
| 241 | D3DXPlaneTransform | |
| 242 | D3DXPlaneTransformArray | |
| 243 | D3DXQuaternionBaryCentric | |
| 244 | D3DXQuaternionExp | |
| 245 | D3DXQuaternionInverse | |
| 246 | D3DXQuaternionLn | |
| 247 | D3DXQuaternionMultiply | |
| 248 | D3DXQuaternionNormalize | |
| 249 | D3DXQuaternionRotationAxis | |
| 250 | D3DXQuaternionRotationMatrix | |
| 251 | D3DXQuaternionRotationYawPitchRoll | |
| 252 | D3DXQuaternionSlerp | |
| 253 | D3DXQuaternionSquad | |
| 254 | D3DXQuaternionSquadSetup | |
| 255 | D3DXQuaternionToAxisAngle | |
| 256 | D3DXRectPatchSize | |
| 257 | D3DXSHAdd | |
| 258 | D3DXSHDot | |
| 259 | D3DXSHEvalConeLight | |
| 260 | D3DXSHEvalDirection | |
| 261 | D3DXSHEvalDirectionalLight | |
| 262 | D3DXSHEvalHemisphereLight | |
| 263 | D3DXSHEvalSphericalLight | |
| 264 | D3DXSHPRTCompSplitMeshSC | |
| 265 | D3DXSHPRTCompSuperCluster | |
| 266 | D3DXSHProjectCubeMap | |
| 267 | D3DXSHRotate | |
| 268 | D3DXSHRotateZ | |
| 269 | D3DXSHScale | |
| 270 | D3DXSaveMeshHierarchyToFileA | |
| 271 | D3DXSaveMeshHierarchyToFileW | |
| 272 | D3DXSaveMeshToXA | |
| 273 | D3DXSaveMeshToXW | |
| 274 | D3DXSavePRTBufferToFileA | |
| 275 | D3DXSavePRTBufferToFileW | |
| 276 | D3DXSavePRTCompBufferToFileA | |
| 277 | D3DXSavePRTCompBufferToFileW | |
| 278 | D3DXSaveSurfaceToFileA | |
| 279 | D3DXSaveSurfaceToFileInMemory | |
| 280 | D3DXSaveSurfaceToFileW | |
| 281 | D3DXSaveTextureToFileA | |
| 282 | D3DXSaveTextureToFileInMemory | |
| 283 | D3DXSaveTextureToFileW | |
| 284 | D3DXSaveVolumeToFileA | |
| 285 | D3DXSaveVolumeToFileInMemory | |
| 286 | D3DXSaveVolumeToFileW | |
| 287 | D3DXSimplifyMesh | |
| 288 | D3DXSphereBoundProbe | |
| 289 | D3DXSplitMesh | |
| 290 | D3DXTessellateNPatches | |
| 291 | D3DXTessellateRectPatch | |
| 292 | D3DXTessellateTriPatch | |
| 293 | D3DXTriPatchSize | |
| 294 | D3DXValidMesh | |
| 295 | D3DXValidPatchMesh | |
| 296 | D3DXVec2BaryCentric | |
| 297 | D3DXVec2CatmullRom | |
| 298 | D3DXVec2Hermite | |
| 299 | D3DXVec2Normalize | |
| 300 | D3DXVec2Transform | |
| 301 | D3DXVec2TransformArray | |
| 302 | D3DXVec2TransformCoord | |
| 303 | D3DXVec2TransformCoordArray | |
| 304 | D3DXVec2TransformNormal | |
| 305 | D3DXVec2TransformNormalArray | |
| 306 | D3DXVec3BaryCentric | |
| 307 | D3DXVec3CatmullRom | |
| 308 | D3DXVec3Hermite | |
| 309 | D3DXVec3Normalize | |
| 310 | D3DXVec3Project | |
| 311 | D3DXVec3ProjectArray | |
| 312 | D3DXVec3Transform | |
| 313 | D3DXVec3TransformArray | |
| 314 | D3DXVec3TransformCoord | |
| 315 | D3DXVec3TransformCoordArray | |
| 316 | D3DXVec3TransformNormal | |
| 317 | D3DXVec3TransformNormalArray | |
| 318 | D3DXVec3Unproject | |
| 319 | D3DXVec3UnprojectArray | |
| 320 | D3DXVec4BaryCentric | |
| 321 | D3DXVec4CatmullRom | |
| 322 | D3DXVec4Cross | |
| 323 | D3DXVec4Hermite | |
| 324 | D3DXVec4Normalize | |
| 325 | D3DXVec4Transform | |
| 326 | D3DXVec4TransformArray | |
| 327 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_25.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeNormalMap | |
| 29 | D3DXComputeNormals | |
| 30 | D3DXComputeTangent | |
| 31 | D3DXComputeTangentFrame | |
| 32 | D3DXComputeTangentFrameEx | |
| 33 | D3DXConcatenateMeshes | |
| 34 | D3DXConvertMeshSubsetToSingleStrip | |
| 35 | D3DXConvertMeshSubsetToStrips | |
| 36 | D3DXCpuOptimizations | |
| 37 | D3DXCreateAnimationController | |
| 38 | D3DXCreateBox | |
| 39 | D3DXCreateBuffer | |
| 40 | D3DXCreateCompressedAnimationSet | |
| 41 | D3DXCreateCubeTexture | |
| 42 | D3DXCreateCubeTextureFromFileA | |
| 43 | D3DXCreateCubeTextureFromFileExA | |
| 44 | D3DXCreateCubeTextureFromFileExW | |
| 45 | D3DXCreateCubeTextureFromFileInMemory | |
| 46 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 47 | D3DXCreateCubeTextureFromFileW | |
| 48 | D3DXCreateCubeTextureFromResourceA | |
| 49 | D3DXCreateCubeTextureFromResourceExA | |
| 50 | D3DXCreateCubeTextureFromResourceExW | |
| 51 | D3DXCreateCubeTextureFromResourceW | |
| 52 | D3DXCreateCylinder | |
| 53 | D3DXCreateEffect | |
| 54 | D3DXCreateEffectCompiler | |
| 55 | D3DXCreateEffectCompilerFromFileA | |
| 56 | D3DXCreateEffectCompilerFromFileW | |
| 57 | D3DXCreateEffectCompilerFromResourceA | |
| 58 | D3DXCreateEffectCompilerFromResourceW | |
| 59 | D3DXCreateEffectEx | |
| 60 | D3DXCreateEffectFromFileA | |
| 61 | D3DXCreateEffectFromFileExA | |
| 62 | D3DXCreateEffectFromFileExW | |
| 63 | D3DXCreateEffectFromFileW | |
| 64 | D3DXCreateEffectFromResourceA | |
| 65 | D3DXCreateEffectFromResourceExA | |
| 66 | D3DXCreateEffectFromResourceExW | |
| 67 | D3DXCreateEffectFromResourceW | |
| 68 | D3DXCreateEffectPool | |
| 69 | D3DXCreateFontA | |
| 70 | D3DXCreateFontIndirectA | |
| 71 | D3DXCreateFontIndirectW | |
| 72 | D3DXCreateFontW | |
| 73 | D3DXCreateFragmentLinker | |
| 74 | D3DXCreateKeyframedAnimationSet | |
| 75 | D3DXCreateLine | |
| 76 | D3DXCreateMatrixStack | |
| 77 | D3DXCreateMesh | |
| 78 | D3DXCreateMeshFVF | |
| 79 | D3DXCreateNPatchMesh | |
| 80 | D3DXCreatePMeshFromStream | |
| 81 | D3DXCreatePRTBuffer | |
| 82 | D3DXCreatePRTBufferTex | |
| 83 | D3DXCreatePRTCompBuffer | |
| 84 | D3DXCreatePRTEngine | |
| 85 | D3DXCreatePatchMesh | |
| 86 | D3DXCreatePolygon | |
| 87 | D3DXCreateRenderToEnvMap | |
| 88 | D3DXCreateRenderToSurface | |
| 89 | D3DXCreateSPMesh | |
| 90 | D3DXCreateSkinInfo | |
| 91 | D3DXCreateSkinInfoFVF | |
| 92 | D3DXCreateSkinInfoFromBlendedMesh | |
| 93 | D3DXCreateSphere | |
| 94 | D3DXCreateSprite | |
| 95 | D3DXCreateTeapot | |
| 96 | D3DXCreateTextA | |
| 97 | D3DXCreateTextW | |
| 98 | D3DXCreateTexture | |
| 99 | D3DXCreateTextureFromFileA | |
| 100 | D3DXCreateTextureFromFileExA | |
| 101 | D3DXCreateTextureFromFileExW | |
| 102 | D3DXCreateTextureFromFileInMemory | |
| 103 | D3DXCreateTextureFromFileInMemoryEx | |
| 104 | D3DXCreateTextureFromFileW | |
| 105 | D3DXCreateTextureFromResourceA | |
| 106 | D3DXCreateTextureFromResourceExA | |
| 107 | D3DXCreateTextureFromResourceExW | |
| 108 | D3DXCreateTextureFromResourceW | |
| 109 | D3DXCreateTextureGutterHelper | |
| 110 | D3DXCreateTextureShader | |
| 111 | D3DXCreateTorus | |
| 112 | D3DXCreateVolumeTexture | |
| 113 | D3DXCreateVolumeTextureFromFileA | |
| 114 | D3DXCreateVolumeTextureFromFileExA | |
| 115 | D3DXCreateVolumeTextureFromFileExW | |
| 116 | D3DXCreateVolumeTextureFromFileInMemory | |
| 117 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 118 | D3DXCreateVolumeTextureFromFileW | |
| 119 | D3DXCreateVolumeTextureFromResourceA | |
| 120 | D3DXCreateVolumeTextureFromResourceExA | |
| 121 | D3DXCreateVolumeTextureFromResourceExW | |
| 122 | D3DXCreateVolumeTextureFromResourceW | |
| 123 | D3DXDebugMute | |
| 124 | D3DXDeclaratorFromFVF | |
| 125 | D3DXDisassembleEffect | |
| 126 | D3DXDisassembleShader | |
| 127 | D3DXFVFFromDeclarator | |
| 128 | D3DXFileCreate | |
| 129 | D3DXFillCubeTexture | |
| 130 | D3DXFillCubeTextureTX | |
| 131 | D3DXFillTexture | |
| 132 | D3DXFillTextureTX | |
| 133 | D3DXFillVolumeTexture | |
| 134 | D3DXFillVolumeTextureTX | |
| 135 | D3DXFilterTexture | |
| 136 | D3DXFindShaderComment | |
| 137 | D3DXFloat16To32Array | |
| 138 | D3DXFloat32To16Array | |
| 139 | D3DXFrameAppendChild | |
| 140 | D3DXFrameCalculateBoundingSphere | |
| 141 | D3DXFrameDestroy | |
| 142 | D3DXFrameFind | |
| 143 | D3DXFrameNumNamedMatrices | |
| 144 | D3DXFrameRegisterNamedMatrices | |
| 145 | D3DXFresnelTerm | |
| 146 | D3DXGatherFragments | |
| 147 | D3DXGatherFragmentsFromFileA | |
| 148 | D3DXGatherFragmentsFromFileW | |
| 149 | D3DXGatherFragmentsFromResourceA | |
| 150 | D3DXGatherFragmentsFromResourceW | |
| 151 | D3DXGenerateOutputDecl | |
| 152 | D3DXGeneratePMesh | |
| 153 | D3DXGetDeclLength | |
| 154 | D3DXGetDeclVertexSize | |
| 155 | D3DXGetDriverLevel | |
| 156 | D3DXGetFVFVertexSize | |
| 157 | D3DXGetImageInfoFromFileA | |
| 158 | D3DXGetImageInfoFromFileInMemory | |
| 159 | D3DXGetImageInfoFromFileW | |
| 160 | D3DXGetImageInfoFromResourceA | |
| 161 | D3DXGetImageInfoFromResourceW | |
| 162 | D3DXGetPixelShaderProfile | |
| 163 | D3DXGetShaderConstantTable | |
| 164 | D3DXGetShaderInputSemantics | |
| 165 | D3DXGetShaderOutputSemantics | |
| 166 | D3DXGetShaderSamplers | |
| 167 | D3DXGetShaderSize | |
| 168 | D3DXGetShaderVersion | |
| 169 | D3DXGetTargetDescByName | |
| 170 | D3DXGetTargetDescByVersion | |
| 171 | D3DXGetVertexShaderProfile | |
| 172 | D3DXIntersect | |
| 173 | D3DXIntersectSubset | |
| 174 | D3DXIntersectTri | |
| 175 | D3DXLoadMeshFromXA | |
| 176 | D3DXLoadMeshFromXInMemory | |
| 177 | D3DXLoadMeshFromXResource | |
| 178 | D3DXLoadMeshFromXW | |
| 179 | D3DXLoadMeshFromXof | |
| 180 | D3DXLoadMeshHierarchyFromXA | |
| 181 | D3DXLoadMeshHierarchyFromXInMemory | |
| 182 | D3DXLoadMeshHierarchyFromXW | |
| 183 | D3DXLoadPRTBufferFromFileA | |
| 184 | D3DXLoadPRTBufferFromFileW | |
| 185 | D3DXLoadPRTCompBufferFromFileA | |
| 186 | D3DXLoadPRTCompBufferFromFileW | |
| 187 | D3DXLoadPatchMeshFromXof | |
| 188 | D3DXLoadSkinMeshFromXof | |
| 189 | D3DXLoadSurfaceFromFileA | |
| 190 | D3DXLoadSurfaceFromFileInMemory | |
| 191 | D3DXLoadSurfaceFromFileW | |
| 192 | D3DXLoadSurfaceFromMemory | |
| 193 | D3DXLoadSurfaceFromResourceA | |
| 194 | D3DXLoadSurfaceFromResourceW | |
| 195 | D3DXLoadSurfaceFromSurface | |
| 196 | D3DXLoadVolumeFromFileA | |
| 197 | D3DXLoadVolumeFromFileInMemory | |
| 198 | D3DXLoadVolumeFromFileW | |
| 199 | D3DXLoadVolumeFromMemory | |
| 200 | D3DXLoadVolumeFromResourceA | |
| 201 | D3DXLoadVolumeFromResourceW | |
| 202 | D3DXLoadVolumeFromVolume | |
| 203 | D3DXMatrixAffineTransformation | |
| 204 | D3DXMatrixAffineTransformation2D | |
| 205 | D3DXMatrixDecompose | |
| 206 | D3DXMatrixDeterminant | |
| 207 | D3DXMatrixInverse | |
| 208 | D3DXMatrixLookAtLH | |
| 209 | D3DXMatrixLookAtRH | |
| 210 | D3DXMatrixMultiply | |
| 211 | D3DXMatrixMultiplyTranspose | |
| 212 | D3DXMatrixOrthoLH | |
| 213 | D3DXMatrixOrthoOffCenterLH | |
| 214 | D3DXMatrixOrthoOffCenterRH | |
| 215 | D3DXMatrixOrthoRH | |
| 216 | D3DXMatrixPerspectiveFovLH | |
| 217 | D3DXMatrixPerspectiveFovRH | |
| 218 | D3DXMatrixPerspectiveLH | |
| 219 | D3DXMatrixPerspectiveOffCenterLH | |
| 220 | D3DXMatrixPerspectiveOffCenterRH | |
| 221 | D3DXMatrixPerspectiveRH | |
| 222 | D3DXMatrixReflect | |
| 223 | D3DXMatrixRotationAxis | |
| 224 | D3DXMatrixRotationQuaternion | |
| 225 | D3DXMatrixRotationX | |
| 226 | D3DXMatrixRotationY | |
| 227 | D3DXMatrixRotationYawPitchRoll | |
| 228 | D3DXMatrixRotationZ | |
| 229 | D3DXMatrixScaling | |
| 230 | D3DXMatrixShadow | |
| 231 | D3DXMatrixTransformation | |
| 232 | D3DXMatrixTransformation2D | |
| 233 | D3DXMatrixTranslation | |
| 234 | D3DXMatrixTranspose | |
| 235 | D3DXOptimizeFaces | |
| 236 | D3DXOptimizeVertices | |
| 237 | D3DXPlaneFromPointNormal | |
| 238 | D3DXPlaneFromPoints | |
| 239 | D3DXPlaneIntersectLine | |
| 240 | D3DXPlaneNormalize | |
| 241 | D3DXPlaneTransform | |
| 242 | D3DXPlaneTransformArray | |
| 243 | D3DXQuaternionBaryCentric | |
| 244 | D3DXQuaternionExp | |
| 245 | D3DXQuaternionInverse | |
| 246 | D3DXQuaternionLn | |
| 247 | D3DXQuaternionMultiply | |
| 248 | D3DXQuaternionNormalize | |
| 249 | D3DXQuaternionRotationAxis | |
| 250 | D3DXQuaternionRotationMatrix | |
| 251 | D3DXQuaternionRotationYawPitchRoll | |
| 252 | D3DXQuaternionSlerp | |
| 253 | D3DXQuaternionSquad | |
| 254 | D3DXQuaternionSquadSetup | |
| 255 | D3DXQuaternionToAxisAngle | |
| 256 | D3DXRectPatchSize | |
| 257 | D3DXSHAdd | |
| 258 | D3DXSHDot | |
| 259 | D3DXSHEvalConeLight | |
| 260 | D3DXSHEvalDirection | |
| 261 | D3DXSHEvalDirectionalLight | |
| 262 | D3DXSHEvalHemisphereLight | |
| 263 | D3DXSHEvalSphericalLight | |
| 264 | D3DXSHPRTCompSplitMeshSC | |
| 265 | D3DXSHPRTCompSuperCluster | |
| 266 | D3DXSHProjectCubeMap | |
| 267 | D3DXSHRotate | |
| 268 | D3DXSHRotateZ | |
| 269 | D3DXSHScale | |
| 270 | D3DXSaveMeshHierarchyToFileA | |
| 271 | D3DXSaveMeshHierarchyToFileW | |
| 272 | D3DXSaveMeshToXA | |
| 273 | D3DXSaveMeshToXW | |
| 274 | D3DXSavePRTBufferToFileA | |
| 275 | D3DXSavePRTBufferToFileW | |
| 276 | D3DXSavePRTCompBufferToFileA | |
| 277 | D3DXSavePRTCompBufferToFileW | |
| 278 | D3DXSaveSurfaceToFileA | |
| 279 | D3DXSaveSurfaceToFileInMemory | |
| 280 | D3DXSaveSurfaceToFileW | |
| 281 | D3DXSaveTextureToFileA | |
| 282 | D3DXSaveTextureToFileInMemory | |
| 283 | D3DXSaveTextureToFileW | |
| 284 | D3DXSaveVolumeToFileA | |
| 285 | D3DXSaveVolumeToFileInMemory | |
| 286 | D3DXSaveVolumeToFileW | |
| 287 | D3DXSimplifyMesh | |
| 288 | D3DXSphereBoundProbe | |
| 289 | D3DXSplitMesh | |
| 290 | D3DXTessellateNPatches | |
| 291 | D3DXTessellateRectPatch | |
| 292 | D3DXTessellateTriPatch | |
| 293 | D3DXTriPatchSize | |
| 294 | D3DXUVAtlasCreate | |
| 295 | D3DXUVAtlasPack | |
| 296 | D3DXUVAtlasPartition | |
| 297 | D3DXValidMesh | |
| 298 | D3DXValidPatchMesh | |
| 299 | D3DXVec2BaryCentric | |
| 300 | D3DXVec2CatmullRom | |
| 301 | D3DXVec2Hermite | |
| 302 | D3DXVec2Normalize | |
| 303 | D3DXVec2Transform | |
| 304 | D3DXVec2TransformArray | |
| 305 | D3DXVec2TransformCoord | |
| 306 | D3DXVec2TransformCoordArray | |
| 307 | D3DXVec2TransformNormal | |
| 308 | D3DXVec2TransformNormalArray | |
| 309 | D3DXVec3BaryCentric | |
| 310 | D3DXVec3CatmullRom | |
| 311 | D3DXVec3Hermite | |
| 312 | D3DXVec3Normalize | |
| 313 | D3DXVec3Project | |
| 314 | D3DXVec3ProjectArray | |
| 315 | D3DXVec3Transform | |
| 316 | D3DXVec3TransformArray | |
| 317 | D3DXVec3TransformCoord | |
| 318 | D3DXVec3TransformCoordArray | |
| 319 | D3DXVec3TransformNormal | |
| 320 | D3DXVec3TransformNormalArray | |
| 321 | D3DXVec3Unproject | |
| 322 | D3DXVec3UnprojectArray | |
| 323 | D3DXVec4BaryCentric | |
| 324 | D3DXVec4CatmullRom | |
| 325 | D3DXVec4Cross | |
| 326 | D3DXVec4Hermite | |
| 327 | D3DXVec4Normalize | |
| 328 | D3DXVec4Transform | |
| 329 | D3DXVec4TransformArray | |
| 330 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_26.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCpuOptimizations | |
| 41 | D3DXCreateAnimationController | |
| 42 | D3DXCreateBox | |
| 43 | D3DXCreateBuffer | |
| 44 | D3DXCreateCompressedAnimationSet | |
| 45 | D3DXCreateCubeTexture | |
| 46 | D3DXCreateCubeTextureFromFileA | |
| 47 | D3DXCreateCubeTextureFromFileExA | |
| 48 | D3DXCreateCubeTextureFromFileExW | |
| 49 | D3DXCreateCubeTextureFromFileInMemory | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 51 | D3DXCreateCubeTextureFromFileW | |
| 52 | D3DXCreateCubeTextureFromResourceA | |
| 53 | D3DXCreateCubeTextureFromResourceExA | |
| 54 | D3DXCreateCubeTextureFromResourceExW | |
| 55 | D3DXCreateCubeTextureFromResourceW | |
| 56 | D3DXCreateCylinder | |
| 57 | D3DXCreateEffect | |
| 58 | D3DXCreateEffectCompiler | |
| 59 | D3DXCreateEffectCompilerFromFileA | |
| 60 | D3DXCreateEffectCompilerFromFileW | |
| 61 | D3DXCreateEffectCompilerFromResourceA | |
| 62 | D3DXCreateEffectCompilerFromResourceW | |
| 63 | D3DXCreateEffectEx | |
| 64 | D3DXCreateEffectFromFileA | |
| 65 | D3DXCreateEffectFromFileExA | |
| 66 | D3DXCreateEffectFromFileExW | |
| 67 | D3DXCreateEffectFromFileW | |
| 68 | D3DXCreateEffectFromResourceA | |
| 69 | D3DXCreateEffectFromResourceExA | |
| 70 | D3DXCreateEffectFromResourceExW | |
| 71 | D3DXCreateEffectFromResourceW | |
| 72 | D3DXCreateEffectPool | |
| 73 | D3DXCreateFontA | |
| 74 | D3DXCreateFontIndirectA | |
| 75 | D3DXCreateFontIndirectW | |
| 76 | D3DXCreateFontW | |
| 77 | D3DXCreateFragmentLinker | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderInputSemantics | |
| 169 | D3DXGetShaderOutputSemantics | |
| 170 | D3DXGetShaderSamplers | |
| 171 | D3DXGetShaderSize | |
| 172 | D3DXGetShaderVersion | |
| 173 | D3DXGetTargetDescByName | |
| 174 | D3DXGetTargetDescByVersion | |
| 175 | D3DXGetVertexShaderProfile | |
| 176 | D3DXIntersect | |
| 177 | D3DXIntersectSubset | |
| 178 | D3DXIntersectTri | |
| 179 | D3DXLoadMeshFromXA | |
| 180 | D3DXLoadMeshFromXInMemory | |
| 181 | D3DXLoadMeshFromXResource | |
| 182 | D3DXLoadMeshFromXW | |
| 183 | D3DXLoadMeshFromXof | |
| 184 | D3DXLoadMeshHierarchyFromXA | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory | |
| 186 | D3DXLoadMeshHierarchyFromXW | |
| 187 | D3DXLoadPRTBufferFromFileA | |
| 188 | D3DXLoadPRTBufferFromFileW | |
| 189 | D3DXLoadPRTCompBufferFromFileA | |
| 190 | D3DXLoadPRTCompBufferFromFileW | |
| 191 | D3DXLoadPatchMeshFromXof | |
| 192 | D3DXLoadSkinMeshFromXof | |
| 193 | D3DXLoadSurfaceFromFileA | |
| 194 | D3DXLoadSurfaceFromFileInMemory | |
| 195 | D3DXLoadSurfaceFromFileW | |
| 196 | D3DXLoadSurfaceFromMemory | |
| 197 | D3DXLoadSurfaceFromResourceA | |
| 198 | D3DXLoadSurfaceFromResourceW | |
| 199 | D3DXLoadSurfaceFromSurface | |
| 200 | D3DXLoadVolumeFromFileA | |
| 201 | D3DXLoadVolumeFromFileInMemory | |
| 202 | D3DXLoadVolumeFromFileW | |
| 203 | D3DXLoadVolumeFromMemory | |
| 204 | D3DXLoadVolumeFromResourceA | |
| 205 | D3DXLoadVolumeFromResourceW | |
| 206 | D3DXLoadVolumeFromVolume | |
| 207 | D3DXMatrixAffineTransformation | |
| 208 | D3DXMatrixAffineTransformation2D | |
| 209 | D3DXMatrixDecompose | |
| 210 | D3DXMatrixDeterminant | |
| 211 | D3DXMatrixInverse | |
| 212 | D3DXMatrixLookAtLH | |
| 213 | D3DXMatrixLookAtRH | |
| 214 | D3DXMatrixMultiply | |
| 215 | D3DXMatrixMultiplyTranspose | |
| 216 | D3DXMatrixOrthoLH | |
| 217 | D3DXMatrixOrthoOffCenterLH | |
| 218 | D3DXMatrixOrthoOffCenterRH | |
| 219 | D3DXMatrixOrthoRH | |
| 220 | D3DXMatrixPerspectiveFovLH | |
| 221 | D3DXMatrixPerspectiveFovRH | |
| 222 | D3DXMatrixPerspectiveLH | |
| 223 | D3DXMatrixPerspectiveOffCenterLH | |
| 224 | D3DXMatrixPerspectiveOffCenterRH | |
| 225 | D3DXMatrixPerspectiveRH | |
| 226 | D3DXMatrixReflect | |
| 227 | D3DXMatrixRotationAxis | |
| 228 | D3DXMatrixRotationQuaternion | |
| 229 | D3DXMatrixRotationX | |
| 230 | D3DXMatrixRotationY | |
| 231 | D3DXMatrixRotationYawPitchRoll | |
| 232 | D3DXMatrixRotationZ | |
| 233 | D3DXMatrixScaling | |
| 234 | D3DXMatrixShadow | |
| 235 | D3DXMatrixTransformation | |
| 236 | D3DXMatrixTransformation2D | |
| 237 | D3DXMatrixTranslation | |
| 238 | D3DXMatrixTranspose | |
| 239 | D3DXOptimizeFaces | |
| 240 | D3DXOptimizeVertices | |
| 241 | D3DXPlaneFromPointNormal | |
| 242 | D3DXPlaneFromPoints | |
| 243 | D3DXPlaneIntersectLine | |
| 244 | D3DXPlaneNormalize | |
| 245 | D3DXPlaneTransform | |
| 246 | D3DXPlaneTransformArray | |
| 247 | D3DXQuaternionBaryCentric | |
| 248 | D3DXQuaternionExp | |
| 249 | D3DXQuaternionInverse | |
| 250 | D3DXQuaternionLn | |
| 251 | D3DXQuaternionMultiply | |
| 252 | D3DXQuaternionNormalize | |
| 253 | D3DXQuaternionRotationAxis | |
| 254 | D3DXQuaternionRotationMatrix | |
| 255 | D3DXQuaternionRotationYawPitchRoll | |
| 256 | D3DXQuaternionSlerp | |
| 257 | D3DXQuaternionSquad | |
| 258 | D3DXQuaternionSquadSetup | |
| 259 | D3DXQuaternionToAxisAngle | |
| 260 | D3DXRectPatchSize | |
| 261 | D3DXSHAdd | |
| 262 | D3DXSHDot | |
| 263 | D3DXSHEvalConeLight | |
| 264 | D3DXSHEvalDirection | |
| 265 | D3DXSHEvalDirectionalLight | |
| 266 | D3DXSHEvalHemisphereLight | |
| 267 | D3DXSHEvalSphericalLight | |
| 268 | D3DXSHPRTCompSplitMeshSC | |
| 269 | D3DXSHPRTCompSuperCluster | |
| 270 | D3DXSHProjectCubeMap | |
| 271 | D3DXSHRotate | |
| 272 | D3DXSHRotateZ | |
| 273 | D3DXSHScale | |
| 274 | D3DXSaveMeshHierarchyToFileA | |
| 275 | D3DXSaveMeshHierarchyToFileW | |
| 276 | D3DXSaveMeshToXA | |
| 277 | D3DXSaveMeshToXW | |
| 278 | D3DXSavePRTBufferToFileA | |
| 279 | D3DXSavePRTBufferToFileW | |
| 280 | D3DXSavePRTCompBufferToFileA | |
| 281 | D3DXSavePRTCompBufferToFileW | |
| 282 | D3DXSaveSurfaceToFileA | |
| 283 | D3DXSaveSurfaceToFileInMemory | |
| 284 | D3DXSaveSurfaceToFileW | |
| 285 | D3DXSaveTextureToFileA | |
| 286 | D3DXSaveTextureToFileInMemory | |
| 287 | D3DXSaveTextureToFileW | |
| 288 | D3DXSaveVolumeToFileA | |
| 289 | D3DXSaveVolumeToFileInMemory | |
| 290 | D3DXSaveVolumeToFileW | |
| 291 | D3DXSimplifyMesh | |
| 292 | D3DXSphereBoundProbe | |
| 293 | D3DXSplitMesh | |
| 294 | D3DXTessellateNPatches | |
| 295 | D3DXTessellateRectPatch | |
| 296 | D3DXTessellateTriPatch | |
| 297 | D3DXTriPatchSize | |
| 298 | D3DXUVAtlasCreate | |
| 299 | D3DXUVAtlasPack | |
| 300 | D3DXUVAtlasPartition | |
| 301 | D3DXValidMesh | |
| 302 | D3DXValidPatchMesh | |
| 303 | D3DXVec2BaryCentric | |
| 304 | D3DXVec2CatmullRom | |
| 305 | D3DXVec2Hermite | |
| 306 | D3DXVec2Normalize | |
| 307 | D3DXVec2Transform | |
| 308 | D3DXVec2TransformArray | |
| 309 | D3DXVec2TransformCoord | |
| 310 | D3DXVec2TransformCoordArray | |
| 311 | D3DXVec2TransformNormal | |
| 312 | D3DXVec2TransformNormalArray | |
| 313 | D3DXVec3BaryCentric | |
| 314 | D3DXVec3CatmullRom | |
| 315 | D3DXVec3Hermite | |
| 316 | D3DXVec3Normalize | |
| 317 | D3DXVec3Project | |
| 318 | D3DXVec3ProjectArray | |
| 319 | D3DXVec3Transform | |
| 320 | D3DXVec3TransformArray | |
| 321 | D3DXVec3TransformCoord | |
| 322 | D3DXVec3TransformCoordArray | |
| 323 | D3DXVec3TransformNormal | |
| 324 | D3DXVec3TransformNormalArray | |
| 325 | D3DXVec3Unproject | |
| 326 | D3DXVec3UnprojectArray | |
| 327 | D3DXVec4BaryCentric | |
| 328 | D3DXVec4CatmullRom | |
| 329 | D3DXVec4Cross | |
| 330 | D3DXVec4Hermite | |
| 331 | D3DXVec4Normalize | |
| 332 | D3DXVec4Transform | |
| 333 | D3DXVec4TransformArray | |
| 334 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_27.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCpuOptimizations | |
| 41 | D3DXCreateAnimationController | |
| 42 | D3DXCreateBox | |
| 43 | D3DXCreateBuffer | |
| 44 | D3DXCreateCompressedAnimationSet | |
| 45 | D3DXCreateCubeTexture | |
| 46 | D3DXCreateCubeTextureFromFileA | |
| 47 | D3DXCreateCubeTextureFromFileExA | |
| 48 | D3DXCreateCubeTextureFromFileExW | |
| 49 | D3DXCreateCubeTextureFromFileInMemory | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 51 | D3DXCreateCubeTextureFromFileW | |
| 52 | D3DXCreateCubeTextureFromResourceA | |
| 53 | D3DXCreateCubeTextureFromResourceExA | |
| 54 | D3DXCreateCubeTextureFromResourceExW | |
| 55 | D3DXCreateCubeTextureFromResourceW | |
| 56 | D3DXCreateCylinder | |
| 57 | D3DXCreateEffect | |
| 58 | D3DXCreateEffectCompiler | |
| 59 | D3DXCreateEffectCompilerFromFileA | |
| 60 | D3DXCreateEffectCompilerFromFileW | |
| 61 | D3DXCreateEffectCompilerFromResourceA | |
| 62 | D3DXCreateEffectCompilerFromResourceW | |
| 63 | D3DXCreateEffectEx | |
| 64 | D3DXCreateEffectFromFileA | |
| 65 | D3DXCreateEffectFromFileExA | |
| 66 | D3DXCreateEffectFromFileExW | |
| 67 | D3DXCreateEffectFromFileW | |
| 68 | D3DXCreateEffectFromResourceA | |
| 69 | D3DXCreateEffectFromResourceExA | |
| 70 | D3DXCreateEffectFromResourceExW | |
| 71 | D3DXCreateEffectFromResourceW | |
| 72 | D3DXCreateEffectPool | |
| 73 | D3DXCreateFontA | |
| 74 | D3DXCreateFontIndirectA | |
| 75 | D3DXCreateFontIndirectW | |
| 76 | D3DXCreateFontW | |
| 77 | D3DXCreateFragmentLinker | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderInputSemantics | |
| 169 | D3DXGetShaderOutputSemantics | |
| 170 | D3DXGetShaderSamplers | |
| 171 | D3DXGetShaderSize | |
| 172 | D3DXGetShaderVersion | |
| 173 | D3DXGetTargetDescByName | |
| 174 | D3DXGetTargetDescByVersion | |
| 175 | D3DXGetVertexShaderProfile | |
| 176 | D3DXIntersect | |
| 177 | D3DXIntersectSubset | |
| 178 | D3DXIntersectTri | |
| 179 | D3DXLoadMeshFromXA | |
| 180 | D3DXLoadMeshFromXInMemory | |
| 181 | D3DXLoadMeshFromXResource | |
| 182 | D3DXLoadMeshFromXW | |
| 183 | D3DXLoadMeshFromXof | |
| 184 | D3DXLoadMeshHierarchyFromXA | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory | |
| 186 | D3DXLoadMeshHierarchyFromXW | |
| 187 | D3DXLoadPRTBufferFromFileA | |
| 188 | D3DXLoadPRTBufferFromFileW | |
| 189 | D3DXLoadPRTCompBufferFromFileA | |
| 190 | D3DXLoadPRTCompBufferFromFileW | |
| 191 | D3DXLoadPatchMeshFromXof | |
| 192 | D3DXLoadSkinMeshFromXof | |
| 193 | D3DXLoadSurfaceFromFileA | |
| 194 | D3DXLoadSurfaceFromFileInMemory | |
| 195 | D3DXLoadSurfaceFromFileW | |
| 196 | D3DXLoadSurfaceFromMemory | |
| 197 | D3DXLoadSurfaceFromResourceA | |
| 198 | D3DXLoadSurfaceFromResourceW | |
| 199 | D3DXLoadSurfaceFromSurface | |
| 200 | D3DXLoadVolumeFromFileA | |
| 201 | D3DXLoadVolumeFromFileInMemory | |
| 202 | D3DXLoadVolumeFromFileW | |
| 203 | D3DXLoadVolumeFromMemory | |
| 204 | D3DXLoadVolumeFromResourceA | |
| 205 | D3DXLoadVolumeFromResourceW | |
| 206 | D3DXLoadVolumeFromVolume | |
| 207 | D3DXMatrixAffineTransformation | |
| 208 | D3DXMatrixAffineTransformation2D | |
| 209 | D3DXMatrixDecompose | |
| 210 | D3DXMatrixDeterminant | |
| 211 | D3DXMatrixInverse | |
| 212 | D3DXMatrixLookAtLH | |
| 213 | D3DXMatrixLookAtRH | |
| 214 | D3DXMatrixMultiply | |
| 215 | D3DXMatrixMultiplyTranspose | |
| 216 | D3DXMatrixOrthoLH | |
| 217 | D3DXMatrixOrthoOffCenterLH | |
| 218 | D3DXMatrixOrthoOffCenterRH | |
| 219 | D3DXMatrixOrthoRH | |
| 220 | D3DXMatrixPerspectiveFovLH | |
| 221 | D3DXMatrixPerspectiveFovRH | |
| 222 | D3DXMatrixPerspectiveLH | |
| 223 | D3DXMatrixPerspectiveOffCenterLH | |
| 224 | D3DXMatrixPerspectiveOffCenterRH | |
| 225 | D3DXMatrixPerspectiveRH | |
| 226 | D3DXMatrixReflect | |
| 227 | D3DXMatrixRotationAxis | |
| 228 | D3DXMatrixRotationQuaternion | |
| 229 | D3DXMatrixRotationX | |
| 230 | D3DXMatrixRotationY | |
| 231 | D3DXMatrixRotationYawPitchRoll | |
| 232 | D3DXMatrixRotationZ | |
| 233 | D3DXMatrixScaling | |
| 234 | D3DXMatrixShadow | |
| 235 | D3DXMatrixTransformation | |
| 236 | D3DXMatrixTransformation2D | |
| 237 | D3DXMatrixTranslation | |
| 238 | D3DXMatrixTranspose | |
| 239 | D3DXOptimizeFaces | |
| 240 | D3DXOptimizeVertices | |
| 241 | D3DXPlaneFromPointNormal | |
| 242 | D3DXPlaneFromPoints | |
| 243 | D3DXPlaneIntersectLine | |
| 244 | D3DXPlaneNormalize | |
| 245 | D3DXPlaneTransform | |
| 246 | D3DXPlaneTransformArray | |
| 247 | D3DXQuaternionBaryCentric | |
| 248 | D3DXQuaternionExp | |
| 249 | D3DXQuaternionInverse | |
| 250 | D3DXQuaternionLn | |
| 251 | D3DXQuaternionMultiply | |
| 252 | D3DXQuaternionNormalize | |
| 253 | D3DXQuaternionRotationAxis | |
| 254 | D3DXQuaternionRotationMatrix | |
| 255 | D3DXQuaternionRotationYawPitchRoll | |
| 256 | D3DXQuaternionSlerp | |
| 257 | D3DXQuaternionSquad | |
| 258 | D3DXQuaternionSquadSetup | |
| 259 | D3DXQuaternionToAxisAngle | |
| 260 | D3DXRectPatchSize | |
| 261 | D3DXSHAdd | |
| 262 | D3DXSHDot | |
| 263 | D3DXSHEvalConeLight | |
| 264 | D3DXSHEvalDirection | |
| 265 | D3DXSHEvalDirectionalLight | |
| 266 | D3DXSHEvalHemisphereLight | |
| 267 | D3DXSHEvalSphericalLight | |
| 268 | D3DXSHPRTCompSplitMeshSC | |
| 269 | D3DXSHPRTCompSuperCluster | |
| 270 | D3DXSHProjectCubeMap | |
| 271 | D3DXSHRotate | |
| 272 | D3DXSHRotateZ | |
| 273 | D3DXSHScale | |
| 274 | D3DXSaveMeshHierarchyToFileA | |
| 275 | D3DXSaveMeshHierarchyToFileW | |
| 276 | D3DXSaveMeshToXA | |
| 277 | D3DXSaveMeshToXW | |
| 278 | D3DXSavePRTBufferToFileA | |
| 279 | D3DXSavePRTBufferToFileW | |
| 280 | D3DXSavePRTCompBufferToFileA | |
| 281 | D3DXSavePRTCompBufferToFileW | |
| 282 | D3DXSaveSurfaceToFileA | |
| 283 | D3DXSaveSurfaceToFileInMemory | |
| 284 | D3DXSaveSurfaceToFileW | |
| 285 | D3DXSaveTextureToFileA | |
| 286 | D3DXSaveTextureToFileInMemory | |
| 287 | D3DXSaveTextureToFileW | |
| 288 | D3DXSaveVolumeToFileA | |
| 289 | D3DXSaveVolumeToFileInMemory | |
| 290 | D3DXSaveVolumeToFileW | |
| 291 | D3DXSimplifyMesh | |
| 292 | D3DXSphereBoundProbe | |
| 293 | D3DXSplitMesh | |
| 294 | D3DXTessellateNPatches | |
| 295 | D3DXTessellateRectPatch | |
| 296 | D3DXTessellateTriPatch | |
| 297 | D3DXTriPatchSize | |
| 298 | D3DXUVAtlasCreate | |
| 299 | D3DXUVAtlasPack | |
| 300 | D3DXUVAtlasPartition | |
| 301 | D3DXValidMesh | |
| 302 | D3DXValidPatchMesh | |
| 303 | D3DXVec2BaryCentric | |
| 304 | D3DXVec2CatmullRom | |
| 305 | D3DXVec2Hermite | |
| 306 | D3DXVec2Normalize | |
| 307 | D3DXVec2Transform | |
| 308 | D3DXVec2TransformArray | |
| 309 | D3DXVec2TransformCoord | |
| 310 | D3DXVec2TransformCoordArray | |
| 311 | D3DXVec2TransformNormal | |
| 312 | D3DXVec2TransformNormalArray | |
| 313 | D3DXVec3BaryCentric | |
| 314 | D3DXVec3CatmullRom | |
| 315 | D3DXVec3Hermite | |
| 316 | D3DXVec3Normalize | |
| 317 | D3DXVec3Project | |
| 318 | D3DXVec3ProjectArray | |
| 319 | D3DXVec3Transform | |
| 320 | D3DXVec3TransformArray | |
| 321 | D3DXVec3TransformCoord | |
| 322 | D3DXVec3TransformCoordArray | |
| 323 | D3DXVec3TransformNormal | |
| 324 | D3DXVec3TransformNormalArray | |
| 325 | D3DXVec3Unproject | |
| 326 | D3DXVec3UnprojectArray | |
| 327 | D3DXVec4BaryCentric | |
| 328 | D3DXVec4CatmullRom | |
| 329 | D3DXVec4Cross | |
| 330 | D3DXVec4Hermite | |
| 331 | D3DXVec4Normalize | |
| 332 | D3DXVec4Transform | |
| 333 | D3DXVec4TransformArray | |
| 334 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_28.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCpuOptimizations | |
| 41 | D3DXCreateAnimationController | |
| 42 | D3DXCreateBox | |
| 43 | D3DXCreateBuffer | |
| 44 | D3DXCreateCompressedAnimationSet | |
| 45 | D3DXCreateCubeTexture | |
| 46 | D3DXCreateCubeTextureFromFileA | |
| 47 | D3DXCreateCubeTextureFromFileExA | |
| 48 | D3DXCreateCubeTextureFromFileExW | |
| 49 | D3DXCreateCubeTextureFromFileInMemory | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 51 | D3DXCreateCubeTextureFromFileW | |
| 52 | D3DXCreateCubeTextureFromResourceA | |
| 53 | D3DXCreateCubeTextureFromResourceExA | |
| 54 | D3DXCreateCubeTextureFromResourceExW | |
| 55 | D3DXCreateCubeTextureFromResourceW | |
| 56 | D3DXCreateCylinder | |
| 57 | D3DXCreateEffect | |
| 58 | D3DXCreateEffectCompiler | |
| 59 | D3DXCreateEffectCompilerFromFileA | |
| 60 | D3DXCreateEffectCompilerFromFileW | |
| 61 | D3DXCreateEffectCompilerFromResourceA | |
| 62 | D3DXCreateEffectCompilerFromResourceW | |
| 63 | D3DXCreateEffectEx | |
| 64 | D3DXCreateEffectFromFileA | |
| 65 | D3DXCreateEffectFromFileExA | |
| 66 | D3DXCreateEffectFromFileExW | |
| 67 | D3DXCreateEffectFromFileW | |
| 68 | D3DXCreateEffectFromResourceA | |
| 69 | D3DXCreateEffectFromResourceExA | |
| 70 | D3DXCreateEffectFromResourceExW | |
| 71 | D3DXCreateEffectFromResourceW | |
| 72 | D3DXCreateEffectPool | |
| 73 | D3DXCreateFontA | |
| 74 | D3DXCreateFontIndirectA | |
| 75 | D3DXCreateFontIndirectW | |
| 76 | D3DXCreateFontW | |
| 77 | D3DXCreateFragmentLinker | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderInputSemantics | |
| 169 | D3DXGetShaderOutputSemantics | |
| 170 | D3DXGetShaderSamplers | |
| 171 | D3DXGetShaderSize | |
| 172 | D3DXGetShaderVersion | |
| 173 | D3DXGetTargetDescByName | |
| 174 | D3DXGetTargetDescByVersion | |
| 175 | D3DXGetVertexShaderProfile | |
| 176 | D3DXIntersect | |
| 177 | D3DXIntersectSubset | |
| 178 | D3DXIntersectTri | |
| 179 | D3DXLoadMeshFromXA | |
| 180 | D3DXLoadMeshFromXInMemory | |
| 181 | D3DXLoadMeshFromXResource | |
| 182 | D3DXLoadMeshFromXW | |
| 183 | D3DXLoadMeshFromXof | |
| 184 | D3DXLoadMeshHierarchyFromXA | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory | |
| 186 | D3DXLoadMeshHierarchyFromXW | |
| 187 | D3DXLoadPRTBufferFromFileA | |
| 188 | D3DXLoadPRTBufferFromFileW | |
| 189 | D3DXLoadPRTCompBufferFromFileA | |
| 190 | D3DXLoadPRTCompBufferFromFileW | |
| 191 | D3DXLoadPatchMeshFromXof | |
| 192 | D3DXLoadSkinMeshFromXof | |
| 193 | D3DXLoadSurfaceFromFileA | |
| 194 | D3DXLoadSurfaceFromFileInMemory | |
| 195 | D3DXLoadSurfaceFromFileW | |
| 196 | D3DXLoadSurfaceFromMemory | |
| 197 | D3DXLoadSurfaceFromResourceA | |
| 198 | D3DXLoadSurfaceFromResourceW | |
| 199 | D3DXLoadSurfaceFromSurface | |
| 200 | D3DXLoadVolumeFromFileA | |
| 201 | D3DXLoadVolumeFromFileInMemory | |
| 202 | D3DXLoadVolumeFromFileW | |
| 203 | D3DXLoadVolumeFromMemory | |
| 204 | D3DXLoadVolumeFromResourceA | |
| 205 | D3DXLoadVolumeFromResourceW | |
| 206 | D3DXLoadVolumeFromVolume | |
| 207 | D3DXMatrixAffineTransformation | |
| 208 | D3DXMatrixAffineTransformation2D | |
| 209 | D3DXMatrixDecompose | |
| 210 | D3DXMatrixDeterminant | |
| 211 | D3DXMatrixInverse | |
| 212 | D3DXMatrixLookAtLH | |
| 213 | D3DXMatrixLookAtRH | |
| 214 | D3DXMatrixMultiply | |
| 215 | D3DXMatrixMultiplyTranspose | |
| 216 | D3DXMatrixOrthoLH | |
| 217 | D3DXMatrixOrthoOffCenterLH | |
| 218 | D3DXMatrixOrthoOffCenterRH | |
| 219 | D3DXMatrixOrthoRH | |
| 220 | D3DXMatrixPerspectiveFovLH | |
| 221 | D3DXMatrixPerspectiveFovRH | |
| 222 | D3DXMatrixPerspectiveLH | |
| 223 | D3DXMatrixPerspectiveOffCenterLH | |
| 224 | D3DXMatrixPerspectiveOffCenterRH | |
| 225 | D3DXMatrixPerspectiveRH | |
| 226 | D3DXMatrixReflect | |
| 227 | D3DXMatrixRotationAxis | |
| 228 | D3DXMatrixRotationQuaternion | |
| 229 | D3DXMatrixRotationX | |
| 230 | D3DXMatrixRotationY | |
| 231 | D3DXMatrixRotationYawPitchRoll | |
| 232 | D3DXMatrixRotationZ | |
| 233 | D3DXMatrixScaling | |
| 234 | D3DXMatrixShadow | |
| 235 | D3DXMatrixTransformation | |
| 236 | D3DXMatrixTransformation2D | |
| 237 | D3DXMatrixTranslation | |
| 238 | D3DXMatrixTranspose | |
| 239 | D3DXOptimizeFaces | |
| 240 | D3DXOptimizeVertices | |
| 241 | D3DXPlaneFromPointNormal | |
| 242 | D3DXPlaneFromPoints | |
| 243 | D3DXPlaneIntersectLine | |
| 244 | D3DXPlaneNormalize | |
| 245 | D3DXPlaneTransform | |
| 246 | D3DXPlaneTransformArray | |
| 247 | D3DXPreprocessShader | |
| 248 | D3DXPreprocessShaderFromFileA | |
| 249 | D3DXPreprocessShaderFromFileW | |
| 250 | D3DXPreprocessShaderFromResourceA | |
| 251 | D3DXPreprocessShaderFromResourceW | |
| 252 | D3DXQuaternionBaryCentric | |
| 253 | D3DXQuaternionExp | |
| 254 | D3DXQuaternionInverse | |
| 255 | D3DXQuaternionLn | |
| 256 | D3DXQuaternionMultiply | |
| 257 | D3DXQuaternionNormalize | |
| 258 | D3DXQuaternionRotationAxis | |
| 259 | D3DXQuaternionRotationMatrix | |
| 260 | D3DXQuaternionRotationYawPitchRoll | |
| 261 | D3DXQuaternionSlerp | |
| 262 | D3DXQuaternionSquad | |
| 263 | D3DXQuaternionSquadSetup | |
| 264 | D3DXQuaternionToAxisAngle | |
| 265 | D3DXRectPatchSize | |
| 266 | D3DXSHAdd | |
| 267 | D3DXSHDot | |
| 268 | D3DXSHEvalConeLight | |
| 269 | D3DXSHEvalDirection | |
| 270 | D3DXSHEvalDirectionalLight | |
| 271 | D3DXSHEvalHemisphereLight | |
| 272 | D3DXSHEvalSphericalLight | |
| 273 | D3DXSHPRTCompSplitMeshSC | |
| 274 | D3DXSHPRTCompSuperCluster | |
| 275 | D3DXSHProjectCubeMap | |
| 276 | D3DXSHRotate | |
| 277 | D3DXSHRotateZ | |
| 278 | D3DXSHScale | |
| 279 | D3DXSaveMeshHierarchyToFileA | |
| 280 | D3DXSaveMeshHierarchyToFileW | |
| 281 | D3DXSaveMeshToXA | |
| 282 | D3DXSaveMeshToXW | |
| 283 | D3DXSavePRTBufferToFileA | |
| 284 | D3DXSavePRTBufferToFileW | |
| 285 | D3DXSavePRTCompBufferToFileA | |
| 286 | D3DXSavePRTCompBufferToFileW | |
| 287 | D3DXSaveSurfaceToFileA | |
| 288 | D3DXSaveSurfaceToFileInMemory | |
| 289 | D3DXSaveSurfaceToFileW | |
| 290 | D3DXSaveTextureToFileA | |
| 291 | D3DXSaveTextureToFileInMemory | |
| 292 | D3DXSaveTextureToFileW | |
| 293 | D3DXSaveVolumeToFileA | |
| 294 | D3DXSaveVolumeToFileInMemory | |
| 295 | D3DXSaveVolumeToFileW | |
| 296 | D3DXSimplifyMesh | |
| 297 | D3DXSphereBoundProbe | |
| 298 | D3DXSplitMesh | |
| 299 | D3DXTessellateNPatches | |
| 300 | D3DXTessellateRectPatch | |
| 301 | D3DXTessellateTriPatch | |
| 302 | D3DXTriPatchSize | |
| 303 | D3DXUVAtlasCreate | |
| 304 | D3DXUVAtlasPack | |
| 305 | D3DXUVAtlasPartition | |
| 306 | D3DXValidMesh | |
| 307 | D3DXValidPatchMesh | |
| 308 | D3DXVec2BaryCentric | |
| 309 | D3DXVec2CatmullRom | |
| 310 | D3DXVec2Hermite | |
| 311 | D3DXVec2Normalize | |
| 312 | D3DXVec2Transform | |
| 313 | D3DXVec2TransformArray | |
| 314 | D3DXVec2TransformCoord | |
| 315 | D3DXVec2TransformCoordArray | |
| 316 | D3DXVec2TransformNormal | |
| 317 | D3DXVec2TransformNormalArray | |
| 318 | D3DXVec3BaryCentric | |
| 319 | D3DXVec3CatmullRom | |
| 320 | D3DXVec3Hermite | |
| 321 | D3DXVec3Normalize | |
| 322 | D3DXVec3Project | |
| 323 | D3DXVec3ProjectArray | |
| 324 | D3DXVec3Transform | |
| 325 | D3DXVec3TransformArray | |
| 326 | D3DXVec3TransformCoord | |
| 327 | D3DXVec3TransformCoordArray | |
| 328 | D3DXVec3TransformNormal | |
| 329 | D3DXVec3TransformNormalArray | |
| 330 | D3DXVec3Unproject | |
| 331 | D3DXVec3UnprojectArray | |
| 332 | D3DXVec4BaryCentric | |
| 333 | D3DXVec4CatmullRom | |
| 334 | D3DXVec4Cross | |
| 335 | D3DXVec4Hermite | |
| 336 | D3DXVec4Normalize | |
| 337 | D3DXVec4Transform | |
| 338 | D3DXVec4TransformArray | |
| 339 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_29.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCpuOptimizations | |
| 41 | D3DXCreateAnimationController | |
| 42 | D3DXCreateBox | |
| 43 | D3DXCreateBuffer | |
| 44 | D3DXCreateCompressedAnimationSet | |
| 45 | D3DXCreateCubeTexture | |
| 46 | D3DXCreateCubeTextureFromFileA | |
| 47 | D3DXCreateCubeTextureFromFileExA | |
| 48 | D3DXCreateCubeTextureFromFileExW | |
| 49 | D3DXCreateCubeTextureFromFileInMemory | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 51 | D3DXCreateCubeTextureFromFileW | |
| 52 | D3DXCreateCubeTextureFromResourceA | |
| 53 | D3DXCreateCubeTextureFromResourceExA | |
| 54 | D3DXCreateCubeTextureFromResourceExW | |
| 55 | D3DXCreateCubeTextureFromResourceW | |
| 56 | D3DXCreateCylinder | |
| 57 | D3DXCreateEffect | |
| 58 | D3DXCreateEffectCompiler | |
| 59 | D3DXCreateEffectCompilerFromFileA | |
| 60 | D3DXCreateEffectCompilerFromFileW | |
| 61 | D3DXCreateEffectCompilerFromResourceA | |
| 62 | D3DXCreateEffectCompilerFromResourceW | |
| 63 | D3DXCreateEffectEx | |
| 64 | D3DXCreateEffectFromFileA | |
| 65 | D3DXCreateEffectFromFileExA | |
| 66 | D3DXCreateEffectFromFileExW | |
| 67 | D3DXCreateEffectFromFileW | |
| 68 | D3DXCreateEffectFromResourceA | |
| 69 | D3DXCreateEffectFromResourceExA | |
| 70 | D3DXCreateEffectFromResourceExW | |
| 71 | D3DXCreateEffectFromResourceW | |
| 72 | D3DXCreateEffectPool | |
| 73 | D3DXCreateFontA | |
| 74 | D3DXCreateFontIndirectA | |
| 75 | D3DXCreateFontIndirectW | |
| 76 | D3DXCreateFontW | |
| 77 | D3DXCreateFragmentLinker | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderInputSemantics | |
| 169 | D3DXGetShaderOutputSemantics | |
| 170 | D3DXGetShaderSamplers | |
| 171 | D3DXGetShaderSize | |
| 172 | D3DXGetShaderVersion | |
| 173 | D3DXGetTargetDescByName | |
| 174 | D3DXGetTargetDescByVersion | |
| 175 | D3DXGetVertexShaderProfile | |
| 176 | D3DXIntersect | |
| 177 | D3DXIntersectSubset | |
| 178 | D3DXIntersectTri | |
| 179 | D3DXLoadMeshFromXA | |
| 180 | D3DXLoadMeshFromXInMemory | |
| 181 | D3DXLoadMeshFromXResource | |
| 182 | D3DXLoadMeshFromXW | |
| 183 | D3DXLoadMeshFromXof | |
| 184 | D3DXLoadMeshHierarchyFromXA | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory | |
| 186 | D3DXLoadMeshHierarchyFromXW | |
| 187 | D3DXLoadPRTBufferFromFileA | |
| 188 | D3DXLoadPRTBufferFromFileW | |
| 189 | D3DXLoadPRTCompBufferFromFileA | |
| 190 | D3DXLoadPRTCompBufferFromFileW | |
| 191 | D3DXLoadPatchMeshFromXof | |
| 192 | D3DXLoadSkinMeshFromXof | |
| 193 | D3DXLoadSurfaceFromFileA | |
| 194 | D3DXLoadSurfaceFromFileInMemory | |
| 195 | D3DXLoadSurfaceFromFileW | |
| 196 | D3DXLoadSurfaceFromMemory | |
| 197 | D3DXLoadSurfaceFromResourceA | |
| 198 | D3DXLoadSurfaceFromResourceW | |
| 199 | D3DXLoadSurfaceFromSurface | |
| 200 | D3DXLoadVolumeFromFileA | |
| 201 | D3DXLoadVolumeFromFileInMemory | |
| 202 | D3DXLoadVolumeFromFileW | |
| 203 | D3DXLoadVolumeFromMemory | |
| 204 | D3DXLoadVolumeFromResourceA | |
| 205 | D3DXLoadVolumeFromResourceW | |
| 206 | D3DXLoadVolumeFromVolume | |
| 207 | D3DXMatrixAffineTransformation | |
| 208 | D3DXMatrixAffineTransformation2D | |
| 209 | D3DXMatrixDecompose | |
| 210 | D3DXMatrixDeterminant | |
| 211 | D3DXMatrixInverse | |
| 212 | D3DXMatrixLookAtLH | |
| 213 | D3DXMatrixLookAtRH | |
| 214 | D3DXMatrixMultiply | |
| 215 | D3DXMatrixMultiplyTranspose | |
| 216 | D3DXMatrixOrthoLH | |
| 217 | D3DXMatrixOrthoOffCenterLH | |
| 218 | D3DXMatrixOrthoOffCenterRH | |
| 219 | D3DXMatrixOrthoRH | |
| 220 | D3DXMatrixPerspectiveFovLH | |
| 221 | D3DXMatrixPerspectiveFovRH | |
| 222 | D3DXMatrixPerspectiveLH | |
| 223 | D3DXMatrixPerspectiveOffCenterLH | |
| 224 | D3DXMatrixPerspectiveOffCenterRH | |
| 225 | D3DXMatrixPerspectiveRH | |
| 226 | D3DXMatrixReflect | |
| 227 | D3DXMatrixRotationAxis | |
| 228 | D3DXMatrixRotationQuaternion | |
| 229 | D3DXMatrixRotationX | |
| 230 | D3DXMatrixRotationY | |
| 231 | D3DXMatrixRotationYawPitchRoll | |
| 232 | D3DXMatrixRotationZ | |
| 233 | D3DXMatrixScaling | |
| 234 | D3DXMatrixShadow | |
| 235 | D3DXMatrixTransformation | |
| 236 | D3DXMatrixTransformation2D | |
| 237 | D3DXMatrixTranslation | |
| 238 | D3DXMatrixTranspose | |
| 239 | D3DXOptimizeFaces | |
| 240 | D3DXOptimizeVertices | |
| 241 | D3DXPlaneFromPointNormal | |
| 242 | D3DXPlaneFromPoints | |
| 243 | D3DXPlaneIntersectLine | |
| 244 | D3DXPlaneNormalize | |
| 245 | D3DXPlaneTransform | |
| 246 | D3DXPlaneTransformArray | |
| 247 | D3DXPreprocessShader | |
| 248 | D3DXPreprocessShaderFromFileA | |
| 249 | D3DXPreprocessShaderFromFileW | |
| 250 | D3DXPreprocessShaderFromResourceA | |
| 251 | D3DXPreprocessShaderFromResourceW | |
| 252 | D3DXQuaternionBaryCentric | |
| 253 | D3DXQuaternionExp | |
| 254 | D3DXQuaternionInverse | |
| 255 | D3DXQuaternionLn | |
| 256 | D3DXQuaternionMultiply | |
| 257 | D3DXQuaternionNormalize | |
| 258 | D3DXQuaternionRotationAxis | |
| 259 | D3DXQuaternionRotationMatrix | |
| 260 | D3DXQuaternionRotationYawPitchRoll | |
| 261 | D3DXQuaternionSlerp | |
| 262 | D3DXQuaternionSquad | |
| 263 | D3DXQuaternionSquadSetup | |
| 264 | D3DXQuaternionToAxisAngle | |
| 265 | D3DXRectPatchSize | |
| 266 | D3DXSHAdd | |
| 267 | D3DXSHDot | |
| 268 | D3DXSHEvalConeLight | |
| 269 | D3DXSHEvalDirection | |
| 270 | D3DXSHEvalDirectionalLight | |
| 271 | D3DXSHEvalHemisphereLight | |
| 272 | D3DXSHEvalSphericalLight | |
| 273 | D3DXSHPRTCompSplitMeshSC | |
| 274 | D3DXSHPRTCompSuperCluster | |
| 275 | D3DXSHProjectCubeMap | |
| 276 | D3DXSHRotate | |
| 277 | D3DXSHRotateZ | |
| 278 | D3DXSHScale | |
| 279 | D3DXSaveMeshHierarchyToFileA | |
| 280 | D3DXSaveMeshHierarchyToFileW | |
| 281 | D3DXSaveMeshToXA | |
| 282 | D3DXSaveMeshToXW | |
| 283 | D3DXSavePRTBufferToFileA | |
| 284 | D3DXSavePRTBufferToFileW | |
| 285 | D3DXSavePRTCompBufferToFileA | |
| 286 | D3DXSavePRTCompBufferToFileW | |
| 287 | D3DXSaveSurfaceToFileA | |
| 288 | D3DXSaveSurfaceToFileInMemory | |
| 289 | D3DXSaveSurfaceToFileW | |
| 290 | D3DXSaveTextureToFileA | |
| 291 | D3DXSaveTextureToFileInMemory | |
| 292 | D3DXSaveTextureToFileW | |
| 293 | D3DXSaveVolumeToFileA | |
| 294 | D3DXSaveVolumeToFileInMemory | |
| 295 | D3DXSaveVolumeToFileW | |
| 296 | D3DXSimplifyMesh | |
| 297 | D3DXSphereBoundProbe | |
| 298 | D3DXSplitMesh | |
| 299 | D3DXTessellateNPatches | |
| 300 | D3DXTessellateRectPatch | |
| 301 | D3DXTessellateTriPatch | |
| 302 | D3DXTriPatchSize | |
| 303 | D3DXUVAtlasCreate | |
| 304 | D3DXUVAtlasPack | |
| 305 | D3DXUVAtlasPartition | |
| 306 | D3DXValidMesh | |
| 307 | D3DXValidPatchMesh | |
| 308 | D3DXVec2BaryCentric | |
| 309 | D3DXVec2CatmullRom | |
| 310 | D3DXVec2Hermite | |
| 311 | D3DXVec2Normalize | |
| 312 | D3DXVec2Transform | |
| 313 | D3DXVec2TransformArray | |
| 314 | D3DXVec2TransformCoord | |
| 315 | D3DXVec2TransformCoordArray | |
| 316 | D3DXVec2TransformNormal | |
| 317 | D3DXVec2TransformNormalArray | |
| 318 | D3DXVec3BaryCentric | |
| 319 | D3DXVec3CatmullRom | |
| 320 | D3DXVec3Hermite | |
| 321 | D3DXVec3Normalize | |
| 322 | D3DXVec3Project | |
| 323 | D3DXVec3ProjectArray | |
| 324 | D3DXVec3Transform | |
| 325 | D3DXVec3TransformArray | |
| 326 | D3DXVec3TransformCoord | |
| 327 | D3DXVec3TransformCoordArray | |
| 328 | D3DXVec3TransformNormal | |
| 329 | D3DXVec3TransformNormalArray | |
| 330 | D3DXVec3Unproject | |
| 331 | D3DXVec3UnprojectArray | |
| 332 | D3DXVec4BaryCentric | |
| 333 | D3DXVec4CatmullRom | |
| 334 | D3DXVec4Cross | |
| 335 | D3DXVec4Hermite | |
| 336 | D3DXVec4Normalize | |
| 337 | D3DXVec4Transform | |
| 338 | D3DXVec4TransformArray | |
| 339 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_30.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCpuOptimizations | |
| 41 | D3DXCreateAnimationController | |
| 42 | D3DXCreateBox | |
| 43 | D3DXCreateBuffer | |
| 44 | D3DXCreateCompressedAnimationSet | |
| 45 | D3DXCreateCubeTexture | |
| 46 | D3DXCreateCubeTextureFromFileA | |
| 47 | D3DXCreateCubeTextureFromFileExA | |
| 48 | D3DXCreateCubeTextureFromFileExW | |
| 49 | D3DXCreateCubeTextureFromFileInMemory | |
| 50 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 51 | D3DXCreateCubeTextureFromFileW | |
| 52 | D3DXCreateCubeTextureFromResourceA | |
| 53 | D3DXCreateCubeTextureFromResourceExA | |
| 54 | D3DXCreateCubeTextureFromResourceExW | |
| 55 | D3DXCreateCubeTextureFromResourceW | |
| 56 | D3DXCreateCylinder | |
| 57 | D3DXCreateEffect | |
| 58 | D3DXCreateEffectCompiler | |
| 59 | D3DXCreateEffectCompilerFromFileA | |
| 60 | D3DXCreateEffectCompilerFromFileW | |
| 61 | D3DXCreateEffectCompilerFromResourceA | |
| 62 | D3DXCreateEffectCompilerFromResourceW | |
| 63 | D3DXCreateEffectEx | |
| 64 | D3DXCreateEffectFromFileA | |
| 65 | D3DXCreateEffectFromFileExA | |
| 66 | D3DXCreateEffectFromFileExW | |
| 67 | D3DXCreateEffectFromFileW | |
| 68 | D3DXCreateEffectFromResourceA | |
| 69 | D3DXCreateEffectFromResourceExA | |
| 70 | D3DXCreateEffectFromResourceExW | |
| 71 | D3DXCreateEffectFromResourceW | |
| 72 | D3DXCreateEffectPool | |
| 73 | D3DXCreateFontA | |
| 74 | D3DXCreateFontIndirectA | |
| 75 | D3DXCreateFontIndirectW | |
| 76 | D3DXCreateFontW | |
| 77 | D3DXCreateFragmentLinker | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderInputSemantics | |
| 169 | D3DXGetShaderOutputSemantics | |
| 170 | D3DXGetShaderSamplers | |
| 171 | D3DXGetShaderSize | |
| 172 | D3DXGetShaderVersion | |
| 173 | D3DXGetTargetDescByName | |
| 174 | D3DXGetTargetDescByVersion | |
| 175 | D3DXGetVertexShaderProfile | |
| 176 | D3DXIntersect | |
| 177 | D3DXIntersectSubset | |
| 178 | D3DXIntersectTri | |
| 179 | D3DXLoadMeshFromXA | |
| 180 | D3DXLoadMeshFromXInMemory | |
| 181 | D3DXLoadMeshFromXResource | |
| 182 | D3DXLoadMeshFromXW | |
| 183 | D3DXLoadMeshFromXof | |
| 184 | D3DXLoadMeshHierarchyFromXA | |
| 185 | D3DXLoadMeshHierarchyFromXInMemory | |
| 186 | D3DXLoadMeshHierarchyFromXW | |
| 187 | D3DXLoadPRTBufferFromFileA | |
| 188 | D3DXLoadPRTBufferFromFileW | |
| 189 | D3DXLoadPRTCompBufferFromFileA | |
| 190 | D3DXLoadPRTCompBufferFromFileW | |
| 191 | D3DXLoadPatchMeshFromXof | |
| 192 | D3DXLoadSkinMeshFromXof | |
| 193 | D3DXLoadSurfaceFromFileA | |
| 194 | D3DXLoadSurfaceFromFileInMemory | |
| 195 | D3DXLoadSurfaceFromFileW | |
| 196 | D3DXLoadSurfaceFromMemory | |
| 197 | D3DXLoadSurfaceFromResourceA | |
| 198 | D3DXLoadSurfaceFromResourceW | |
| 199 | D3DXLoadSurfaceFromSurface | |
| 200 | D3DXLoadVolumeFromFileA | |
| 201 | D3DXLoadVolumeFromFileInMemory | |
| 202 | D3DXLoadVolumeFromFileW | |
| 203 | D3DXLoadVolumeFromMemory | |
| 204 | D3DXLoadVolumeFromResourceA | |
| 205 | D3DXLoadVolumeFromResourceW | |
| 206 | D3DXLoadVolumeFromVolume | |
| 207 | D3DXMatrixAffineTransformation | |
| 208 | D3DXMatrixAffineTransformation2D | |
| 209 | D3DXMatrixDecompose | |
| 210 | D3DXMatrixDeterminant | |
| 211 | D3DXMatrixInverse | |
| 212 | D3DXMatrixLookAtLH | |
| 213 | D3DXMatrixLookAtRH | |
| 214 | D3DXMatrixMultiply | |
| 215 | D3DXMatrixMultiplyTranspose | |
| 216 | D3DXMatrixOrthoLH | |
| 217 | D3DXMatrixOrthoOffCenterLH | |
| 218 | D3DXMatrixOrthoOffCenterRH | |
| 219 | D3DXMatrixOrthoRH | |
| 220 | D3DXMatrixPerspectiveFovLH | |
| 221 | D3DXMatrixPerspectiveFovRH | |
| 222 | D3DXMatrixPerspectiveLH | |
| 223 | D3DXMatrixPerspectiveOffCenterLH | |
| 224 | D3DXMatrixPerspectiveOffCenterRH | |
| 225 | D3DXMatrixPerspectiveRH | |
| 226 | D3DXMatrixReflect | |
| 227 | D3DXMatrixRotationAxis | |
| 228 | D3DXMatrixRotationQuaternion | |
| 229 | D3DXMatrixRotationX | |
| 230 | D3DXMatrixRotationY | |
| 231 | D3DXMatrixRotationYawPitchRoll | |
| 232 | D3DXMatrixRotationZ | |
| 233 | D3DXMatrixScaling | |
| 234 | D3DXMatrixShadow | |
| 235 | D3DXMatrixTransformation | |
| 236 | D3DXMatrixTransformation2D | |
| 237 | D3DXMatrixTranslation | |
| 238 | D3DXMatrixTranspose | |
| 239 | D3DXOptimizeFaces | |
| 240 | D3DXOptimizeVertices | |
| 241 | D3DXPlaneFromPointNormal | |
| 242 | D3DXPlaneFromPoints | |
| 243 | D3DXPlaneIntersectLine | |
| 244 | D3DXPlaneNormalize | |
| 245 | D3DXPlaneTransform | |
| 246 | D3DXPlaneTransformArray | |
| 247 | D3DXPreprocessShader | |
| 248 | D3DXPreprocessShaderFromFileA | |
| 249 | D3DXPreprocessShaderFromFileW | |
| 250 | D3DXPreprocessShaderFromResourceA | |
| 251 | D3DXPreprocessShaderFromResourceW | |
| 252 | D3DXQuaternionBaryCentric | |
| 253 | D3DXQuaternionExp | |
| 254 | D3DXQuaternionInverse | |
| 255 | D3DXQuaternionLn | |
| 256 | D3DXQuaternionMultiply | |
| 257 | D3DXQuaternionNormalize | |
| 258 | D3DXQuaternionRotationAxis | |
| 259 | D3DXQuaternionRotationMatrix | |
| 260 | D3DXQuaternionRotationYawPitchRoll | |
| 261 | D3DXQuaternionSlerp | |
| 262 | D3DXQuaternionSquad | |
| 263 | D3DXQuaternionSquadSetup | |
| 264 | D3DXQuaternionToAxisAngle | |
| 265 | D3DXRectPatchSize | |
| 266 | D3DXSHAdd | |
| 267 | D3DXSHDot | |
| 268 | D3DXSHEvalConeLight | |
| 269 | D3DXSHEvalDirection | |
| 270 | D3DXSHEvalDirectionalLight | |
| 271 | D3DXSHEvalHemisphereLight | |
| 272 | D3DXSHEvalSphericalLight | |
| 273 | D3DXSHPRTCompSplitMeshSC | |
| 274 | D3DXSHPRTCompSuperCluster | |
| 275 | D3DXSHProjectCubeMap | |
| 276 | D3DXSHRotate | |
| 277 | D3DXSHRotateZ | |
| 278 | D3DXSHScale | |
| 279 | D3DXSaveMeshHierarchyToFileA | |
| 280 | D3DXSaveMeshHierarchyToFileW | |
| 281 | D3DXSaveMeshToXA | |
| 282 | D3DXSaveMeshToXW | |
| 283 | D3DXSavePRTBufferToFileA | |
| 284 | D3DXSavePRTBufferToFileW | |
| 285 | D3DXSavePRTCompBufferToFileA | |
| 286 | D3DXSavePRTCompBufferToFileW | |
| 287 | D3DXSaveSurfaceToFileA | |
| 288 | D3DXSaveSurfaceToFileInMemory | |
| 289 | D3DXSaveSurfaceToFileW | |
| 290 | D3DXSaveTextureToFileA | |
| 291 | D3DXSaveTextureToFileInMemory | |
| 292 | D3DXSaveTextureToFileW | |
| 293 | D3DXSaveVolumeToFileA | |
| 294 | D3DXSaveVolumeToFileInMemory | |
| 295 | D3DXSaveVolumeToFileW | |
| 296 | D3DXSimplifyMesh | |
| 297 | D3DXSphereBoundProbe | |
| 298 | D3DXSplitMesh | |
| 299 | D3DXTessellateNPatches | |
| 300 | D3DXTessellateRectPatch | |
| 301 | D3DXTessellateTriPatch | |
| 302 | D3DXTriPatchSize | |
| 303 | D3DXUVAtlasCreate | |
| 304 | D3DXUVAtlasPack | |
| 305 | D3DXUVAtlasPartition | |
| 306 | D3DXValidMesh | |
| 307 | D3DXValidPatchMesh | |
| 308 | D3DXVec2BaryCentric | |
| 309 | D3DXVec2CatmullRom | |
| 310 | D3DXVec2Hermite | |
| 311 | D3DXVec2Normalize | |
| 312 | D3DXVec2Transform | |
| 313 | D3DXVec2TransformArray | |
| 314 | D3DXVec2TransformCoord | |
| 315 | D3DXVec2TransformCoordArray | |
| 316 | D3DXVec2TransformNormal | |
| 317 | D3DXVec2TransformNormalArray | |
| 318 | D3DXVec3BaryCentric | |
| 319 | D3DXVec3CatmullRom | |
| 320 | D3DXVec3Hermite | |
| 321 | D3DXVec3Normalize | |
| 322 | D3DXVec3Project | |
| 323 | D3DXVec3ProjectArray | |
| 324 | D3DXVec3Transform | |
| 325 | D3DXVec3TransformArray | |
| 326 | D3DXVec3TransformCoord | |
| 327 | D3DXVec3TransformCoordArray | |
| 328 | D3DXVec3TransformNormal | |
| 329 | D3DXVec3TransformNormalArray | |
| 330 | D3DXVec3Unproject | |
| 331 | D3DXVec3UnprojectArray | |
| 332 | D3DXVec4BaryCentric | |
| 333 | D3DXVec4CatmullRom | |
| 334 | D3DXVec4Cross | |
| 335 | D3DXVec4Hermite | |
| 336 | D3DXVec4Normalize | |
| 337 | D3DXVec4Transform | |
| 338 | D3DXVec4TransformArray | |
| 339 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_31.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateKeyframedAnimationSet | |
| 78 | D3DXCreateLine | |
| 79 | D3DXCreateMatrixStack | |
| 80 | D3DXCreateMesh | |
| 81 | D3DXCreateMeshFVF | |
| 82 | D3DXCreateNPatchMesh | |
| 83 | D3DXCreatePMeshFromStream | |
| 84 | D3DXCreatePRTBuffer | |
| 85 | D3DXCreatePRTBufferTex | |
| 86 | D3DXCreatePRTCompBuffer | |
| 87 | D3DXCreatePRTEngine | |
| 88 | D3DXCreatePatchMesh | |
| 89 | D3DXCreatePolygon | |
| 90 | D3DXCreateRenderToEnvMap | |
| 91 | D3DXCreateRenderToSurface | |
| 92 | D3DXCreateSPMesh | |
| 93 | D3DXCreateSkinInfo | |
| 94 | D3DXCreateSkinInfoFVF | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh | |
| 96 | D3DXCreateSphere | |
| 97 | D3DXCreateSprite | |
| 98 | D3DXCreateTeapot | |
| 99 | D3DXCreateTextA | |
| 100 | D3DXCreateTextW | |
| 101 | D3DXCreateTexture | |
| 102 | D3DXCreateTextureFromFileA | |
| 103 | D3DXCreateTextureFromFileExA | |
| 104 | D3DXCreateTextureFromFileExW | |
| 105 | D3DXCreateTextureFromFileInMemory | |
| 106 | D3DXCreateTextureFromFileInMemoryEx | |
| 107 | D3DXCreateTextureFromFileW | |
| 108 | D3DXCreateTextureFromResourceA | |
| 109 | D3DXCreateTextureFromResourceExA | |
| 110 | D3DXCreateTextureFromResourceExW | |
| 111 | D3DXCreateTextureFromResourceW | |
| 112 | D3DXCreateTextureGutterHelper | |
| 113 | D3DXCreateTextureShader | |
| 114 | D3DXCreateTorus | |
| 115 | D3DXCreateVolumeTexture | |
| 116 | D3DXCreateVolumeTextureFromFileA | |
| 117 | D3DXCreateVolumeTextureFromFileExA | |
| 118 | D3DXCreateVolumeTextureFromFileExW | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 121 | D3DXCreateVolumeTextureFromFileW | |
| 122 | D3DXCreateVolumeTextureFromResourceA | |
| 123 | D3DXCreateVolumeTextureFromResourceExA | |
| 124 | D3DXCreateVolumeTextureFromResourceExW | |
| 125 | D3DXCreateVolumeTextureFromResourceW | |
| 126 | D3DXDebugMute | |
| 127 | D3DXDeclaratorFromFVF | |
| 128 | D3DXDisassembleEffect | |
| 129 | D3DXDisassembleShader | |
| 130 | D3DXFVFFromDeclarator | |
| 131 | D3DXFileCreate | |
| 132 | D3DXFillCubeTexture | |
| 133 | D3DXFillCubeTextureTX | |
| 134 | D3DXFillTexture | |
| 135 | D3DXFillTextureTX | |
| 136 | D3DXFillVolumeTexture | |
| 137 | D3DXFillVolumeTextureTX | |
| 138 | D3DXFilterTexture | |
| 139 | D3DXFindShaderComment | |
| 140 | D3DXFloat16To32Array | |
| 141 | D3DXFloat32To16Array | |
| 142 | D3DXFrameAppendChild | |
| 143 | D3DXFrameCalculateBoundingSphere | |
| 144 | D3DXFrameDestroy | |
| 145 | D3DXFrameFind | |
| 146 | D3DXFrameNumNamedMatrices | |
| 147 | D3DXFrameRegisterNamedMatrices | |
| 148 | D3DXFresnelTerm | |
| 149 | D3DXGatherFragments | |
| 150 | D3DXGatherFragmentsFromFileA | |
| 151 | D3DXGatherFragmentsFromFileW | |
| 152 | D3DXGatherFragmentsFromResourceA | |
| 153 | D3DXGatherFragmentsFromResourceW | |
| 154 | D3DXGenerateOutputDecl | |
| 155 | D3DXGeneratePMesh | |
| 156 | D3DXGetDeclLength | |
| 157 | D3DXGetDeclVertexSize | |
| 158 | D3DXGetDriverLevel | |
| 159 | D3DXGetFVFVertexSize | |
| 160 | D3DXGetImageInfoFromFileA | |
| 161 | D3DXGetImageInfoFromFileInMemory | |
| 162 | D3DXGetImageInfoFromFileW | |
| 163 | D3DXGetImageInfoFromResourceA | |
| 164 | D3DXGetImageInfoFromResourceW | |
| 165 | D3DXGetPixelShaderProfile | |
| 166 | D3DXGetShaderConstantTable | |
| 167 | D3DXGetShaderInputSemantics | |
| 168 | D3DXGetShaderOutputSemantics | |
| 169 | D3DXGetShaderSamplers | |
| 170 | D3DXGetShaderSize | |
| 171 | D3DXGetShaderVersion | |
| 172 | D3DXGetVertexShaderProfile | |
| 173 | D3DXIntersect | |
| 174 | D3DXIntersectSubset | |
| 175 | D3DXIntersectTri | |
| 176 | D3DXLoadMeshFromXA | |
| 177 | D3DXLoadMeshFromXInMemory | |
| 178 | D3DXLoadMeshFromXResource | |
| 179 | D3DXLoadMeshFromXW | |
| 180 | D3DXLoadMeshFromXof | |
| 181 | D3DXLoadMeshHierarchyFromXA | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory | |
| 183 | D3DXLoadMeshHierarchyFromXW | |
| 184 | D3DXLoadPRTBufferFromFileA | |
| 185 | D3DXLoadPRTBufferFromFileW | |
| 186 | D3DXLoadPRTCompBufferFromFileA | |
| 187 | D3DXLoadPRTCompBufferFromFileW | |
| 188 | D3DXLoadPatchMeshFromXof | |
| 189 | D3DXLoadSkinMeshFromXof | |
| 190 | D3DXLoadSurfaceFromFileA | |
| 191 | D3DXLoadSurfaceFromFileInMemory | |
| 192 | D3DXLoadSurfaceFromFileW | |
| 193 | D3DXLoadSurfaceFromMemory | |
| 194 | D3DXLoadSurfaceFromResourceA | |
| 195 | D3DXLoadSurfaceFromResourceW | |
| 196 | D3DXLoadSurfaceFromSurface | |
| 197 | D3DXLoadVolumeFromFileA | |
| 198 | D3DXLoadVolumeFromFileInMemory | |
| 199 | D3DXLoadVolumeFromFileW | |
| 200 | D3DXLoadVolumeFromMemory | |
| 201 | D3DXLoadVolumeFromResourceA | |
| 202 | D3DXLoadVolumeFromResourceW | |
| 203 | D3DXLoadVolumeFromVolume | |
| 204 | D3DXMatrixAffineTransformation | |
| 205 | D3DXMatrixAffineTransformation2D | |
| 206 | D3DXMatrixDecompose | |
| 207 | D3DXMatrixDeterminant | |
| 208 | D3DXMatrixInverse | |
| 209 | D3DXMatrixLookAtLH | |
| 210 | D3DXMatrixLookAtRH | |
| 211 | D3DXMatrixMultiply | |
| 212 | D3DXMatrixMultiplyTranspose | |
| 213 | D3DXMatrixOrthoLH | |
| 214 | D3DXMatrixOrthoOffCenterLH | |
| 215 | D3DXMatrixOrthoOffCenterRH | |
| 216 | D3DXMatrixOrthoRH | |
| 217 | D3DXMatrixPerspectiveFovLH | |
| 218 | D3DXMatrixPerspectiveFovRH | |
| 219 | D3DXMatrixPerspectiveLH | |
| 220 | D3DXMatrixPerspectiveOffCenterLH | |
| 221 | D3DXMatrixPerspectiveOffCenterRH | |
| 222 | D3DXMatrixPerspectiveRH | |
| 223 | D3DXMatrixReflect | |
| 224 | D3DXMatrixRotationAxis | |
| 225 | D3DXMatrixRotationQuaternion | |
| 226 | D3DXMatrixRotationX | |
| 227 | D3DXMatrixRotationY | |
| 228 | D3DXMatrixRotationYawPitchRoll | |
| 229 | D3DXMatrixRotationZ | |
| 230 | D3DXMatrixScaling | |
| 231 | D3DXMatrixShadow | |
| 232 | D3DXMatrixTransformation | |
| 233 | D3DXMatrixTransformation2D | |
| 234 | D3DXMatrixTranslation | |
| 235 | D3DXMatrixTranspose | |
| 236 | D3DXOptimizeFaces | |
| 237 | D3DXOptimizeVertices | |
| 238 | D3DXPlaneFromPointNormal | |
| 239 | D3DXPlaneFromPoints | |
| 240 | D3DXPlaneIntersectLine | |
| 241 | D3DXPlaneNormalize | |
| 242 | D3DXPlaneTransform | |
| 243 | D3DXPlaneTransformArray | |
| 244 | D3DXPreprocessShader | |
| 245 | D3DXPreprocessShaderFromFileA | |
| 246 | D3DXPreprocessShaderFromFileW | |
| 247 | D3DXPreprocessShaderFromResourceA | |
| 248 | D3DXPreprocessShaderFromResourceW | |
| 249 | D3DXQuaternionBaryCentric | |
| 250 | D3DXQuaternionExp | |
| 251 | D3DXQuaternionInverse | |
| 252 | D3DXQuaternionLn | |
| 253 | D3DXQuaternionMultiply | |
| 254 | D3DXQuaternionNormalize | |
| 255 | D3DXQuaternionRotationAxis | |
| 256 | D3DXQuaternionRotationMatrix | |
| 257 | D3DXQuaternionRotationYawPitchRoll | |
| 258 | D3DXQuaternionSlerp | |
| 259 | D3DXQuaternionSquad | |
| 260 | D3DXQuaternionSquadSetup | |
| 261 | D3DXQuaternionToAxisAngle | |
| 262 | D3DXRectPatchSize | |
| 263 | D3DXSHAdd | |
| 264 | D3DXSHDot | |
| 265 | D3DXSHEvalConeLight | |
| 266 | D3DXSHEvalDirection | |
| 267 | D3DXSHEvalDirectionalLight | |
| 268 | D3DXSHEvalHemisphereLight | |
| 269 | D3DXSHEvalSphericalLight | |
| 270 | D3DXSHPRTCompSplitMeshSC | |
| 271 | D3DXSHPRTCompSuperCluster | |
| 272 | D3DXSHProjectCubeMap | |
| 273 | D3DXSHRotate | |
| 274 | D3DXSHRotateZ | |
| 275 | D3DXSHScale | |
| 276 | D3DXSaveMeshHierarchyToFileA | |
| 277 | D3DXSaveMeshHierarchyToFileW | |
| 278 | D3DXSaveMeshToXA | |
| 279 | D3DXSaveMeshToXW | |
| 280 | D3DXSavePRTBufferToFileA | |
| 281 | D3DXSavePRTBufferToFileW | |
| 282 | D3DXSavePRTCompBufferToFileA | |
| 283 | D3DXSavePRTCompBufferToFileW | |
| 284 | D3DXSaveSurfaceToFileA | |
| 285 | D3DXSaveSurfaceToFileInMemory | |
| 286 | D3DXSaveSurfaceToFileW | |
| 287 | D3DXSaveTextureToFileA | |
| 288 | D3DXSaveTextureToFileInMemory | |
| 289 | D3DXSaveTextureToFileW | |
| 290 | D3DXSaveVolumeToFileA | |
| 291 | D3DXSaveVolumeToFileInMemory | |
| 292 | D3DXSaveVolumeToFileW | |
| 293 | D3DXSimplifyMesh | |
| 294 | D3DXSphereBoundProbe | |
| 295 | D3DXSplitMesh | |
| 296 | D3DXTessellateNPatches | |
| 297 | D3DXTessellateRectPatch | |
| 298 | D3DXTessellateTriPatch | |
| 299 | D3DXTriPatchSize | |
| 300 | D3DXUVAtlasCreate | |
| 301 | D3DXUVAtlasPack | |
| 302 | D3DXUVAtlasPartition | |
| 303 | D3DXValidMesh | |
| 304 | D3DXValidPatchMesh | |
| 305 | D3DXVec2BaryCentric | |
| 306 | D3DXVec2CatmullRom | |
| 307 | D3DXVec2Hermite | |
| 308 | D3DXVec2Normalize | |
| 309 | D3DXVec2Transform | |
| 310 | D3DXVec2TransformArray | |
| 311 | D3DXVec2TransformCoord | |
| 312 | D3DXVec2TransformCoordArray | |
| 313 | D3DXVec2TransformNormal | |
| 314 | D3DXVec2TransformNormalArray | |
| 315 | D3DXVec3BaryCentric | |
| 316 | D3DXVec3CatmullRom | |
| 317 | D3DXVec3Hermite | |
| 318 | D3DXVec3Normalize | |
| 319 | D3DXVec3Project | |
| 320 | D3DXVec3ProjectArray | |
| 321 | D3DXVec3Transform | |
| 322 | D3DXVec3TransformArray | |
| 323 | D3DXVec3TransformCoord | |
| 324 | D3DXVec3TransformCoordArray | |
| 325 | D3DXVec3TransformNormal | |
| 326 | D3DXVec3TransformNormalArray | |
| 327 | D3DXVec3Unproject | |
| 328 | D3DXVec3UnprojectArray | |
| 329 | D3DXVec4BaryCentric | |
| 330 | D3DXVec4CatmullRom | |
| 331 | D3DXVec4Cross | |
| 332 | D3DXVec4Hermite | |
| 333 | D3DXVec4Normalize | |
| 334 | D3DXVec4Transform | |
| 335 | D3DXVec4TransformArray | |
| 336 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_32.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateKeyframedAnimationSet | |
| 78 | D3DXCreateLine | |
| 79 | D3DXCreateMatrixStack | |
| 80 | D3DXCreateMesh | |
| 81 | D3DXCreateMeshFVF | |
| 82 | D3DXCreateNPatchMesh | |
| 83 | D3DXCreatePMeshFromStream | |
| 84 | D3DXCreatePRTBuffer | |
| 85 | D3DXCreatePRTBufferTex | |
| 86 | D3DXCreatePRTCompBuffer | |
| 87 | D3DXCreatePRTEngine | |
| 88 | D3DXCreatePatchMesh | |
| 89 | D3DXCreatePolygon | |
| 90 | D3DXCreateRenderToEnvMap | |
| 91 | D3DXCreateRenderToSurface | |
| 92 | D3DXCreateSPMesh | |
| 93 | D3DXCreateSkinInfo | |
| 94 | D3DXCreateSkinInfoFVF | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh | |
| 96 | D3DXCreateSphere | |
| 97 | D3DXCreateSprite | |
| 98 | D3DXCreateTeapot | |
| 99 | D3DXCreateTextA | |
| 100 | D3DXCreateTextW | |
| 101 | D3DXCreateTexture | |
| 102 | D3DXCreateTextureFromFileA | |
| 103 | D3DXCreateTextureFromFileExA | |
| 104 | D3DXCreateTextureFromFileExW | |
| 105 | D3DXCreateTextureFromFileInMemory | |
| 106 | D3DXCreateTextureFromFileInMemoryEx | |
| 107 | D3DXCreateTextureFromFileW | |
| 108 | D3DXCreateTextureFromResourceA | |
| 109 | D3DXCreateTextureFromResourceExA | |
| 110 | D3DXCreateTextureFromResourceExW | |
| 111 | D3DXCreateTextureFromResourceW | |
| 112 | D3DXCreateTextureGutterHelper | |
| 113 | D3DXCreateTextureShader | |
| 114 | D3DXCreateTorus | |
| 115 | D3DXCreateVolumeTexture | |
| 116 | D3DXCreateVolumeTextureFromFileA | |
| 117 | D3DXCreateVolumeTextureFromFileExA | |
| 118 | D3DXCreateVolumeTextureFromFileExW | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 121 | D3DXCreateVolumeTextureFromFileW | |
| 122 | D3DXCreateVolumeTextureFromResourceA | |
| 123 | D3DXCreateVolumeTextureFromResourceExA | |
| 124 | D3DXCreateVolumeTextureFromResourceExW | |
| 125 | D3DXCreateVolumeTextureFromResourceW | |
| 126 | D3DXDebugMute | |
| 127 | D3DXDeclaratorFromFVF | |
| 128 | D3DXDisassembleEffect | |
| 129 | D3DXDisassembleShader | |
| 130 | D3DXFVFFromDeclarator | |
| 131 | D3DXFileCreate | |
| 132 | D3DXFillCubeTexture | |
| 133 | D3DXFillCubeTextureTX | |
| 134 | D3DXFillTexture | |
| 135 | D3DXFillTextureTX | |
| 136 | D3DXFillVolumeTexture | |
| 137 | D3DXFillVolumeTextureTX | |
| 138 | D3DXFilterTexture | |
| 139 | D3DXFindShaderComment | |
| 140 | D3DXFloat16To32Array | |
| 141 | D3DXFloat32To16Array | |
| 142 | D3DXFrameAppendChild | |
| 143 | D3DXFrameCalculateBoundingSphere | |
| 144 | D3DXFrameDestroy | |
| 145 | D3DXFrameFind | |
| 146 | D3DXFrameNumNamedMatrices | |
| 147 | D3DXFrameRegisterNamedMatrices | |
| 148 | D3DXFresnelTerm | |
| 149 | D3DXGatherFragments | |
| 150 | D3DXGatherFragmentsFromFileA | |
| 151 | D3DXGatherFragmentsFromFileW | |
| 152 | D3DXGatherFragmentsFromResourceA | |
| 153 | D3DXGatherFragmentsFromResourceW | |
| 154 | D3DXGenerateOutputDecl | |
| 155 | D3DXGeneratePMesh | |
| 156 | D3DXGetDeclLength | |
| 157 | D3DXGetDeclVertexSize | |
| 158 | D3DXGetDriverLevel | |
| 159 | D3DXGetFVFVertexSize | |
| 160 | D3DXGetImageInfoFromFileA | |
| 161 | D3DXGetImageInfoFromFileInMemory | |
| 162 | D3DXGetImageInfoFromFileW | |
| 163 | D3DXGetImageInfoFromResourceA | |
| 164 | D3DXGetImageInfoFromResourceW | |
| 165 | D3DXGetPixelShaderProfile | |
| 166 | D3DXGetShaderConstantTable | |
| 167 | D3DXGetShaderInputSemantics | |
| 168 | D3DXGetShaderOutputSemantics | |
| 169 | D3DXGetShaderSamplers | |
| 170 | D3DXGetShaderSize | |
| 171 | D3DXGetShaderVersion | |
| 172 | D3DXGetVertexShaderProfile | |
| 173 | D3DXIntersect | |
| 174 | D3DXIntersectSubset | |
| 175 | D3DXIntersectTri | |
| 176 | D3DXLoadMeshFromXA | |
| 177 | D3DXLoadMeshFromXInMemory | |
| 178 | D3DXLoadMeshFromXResource | |
| 179 | D3DXLoadMeshFromXW | |
| 180 | D3DXLoadMeshFromXof | |
| 181 | D3DXLoadMeshHierarchyFromXA | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory | |
| 183 | D3DXLoadMeshHierarchyFromXW | |
| 184 | D3DXLoadPRTBufferFromFileA | |
| 185 | D3DXLoadPRTBufferFromFileW | |
| 186 | D3DXLoadPRTCompBufferFromFileA | |
| 187 | D3DXLoadPRTCompBufferFromFileW | |
| 188 | D3DXLoadPatchMeshFromXof | |
| 189 | D3DXLoadSkinMeshFromXof | |
| 190 | D3DXLoadSurfaceFromFileA | |
| 191 | D3DXLoadSurfaceFromFileInMemory | |
| 192 | D3DXLoadSurfaceFromFileW | |
| 193 | D3DXLoadSurfaceFromMemory | |
| 194 | D3DXLoadSurfaceFromResourceA | |
| 195 | D3DXLoadSurfaceFromResourceW | |
| 196 | D3DXLoadSurfaceFromSurface | |
| 197 | D3DXLoadVolumeFromFileA | |
| 198 | D3DXLoadVolumeFromFileInMemory | |
| 199 | D3DXLoadVolumeFromFileW | |
| 200 | D3DXLoadVolumeFromMemory | |
| 201 | D3DXLoadVolumeFromResourceA | |
| 202 | D3DXLoadVolumeFromResourceW | |
| 203 | D3DXLoadVolumeFromVolume | |
| 204 | D3DXMatrixAffineTransformation | |
| 205 | D3DXMatrixAffineTransformation2D | |
| 206 | D3DXMatrixDecompose | |
| 207 | D3DXMatrixDeterminant | |
| 208 | D3DXMatrixInverse | |
| 209 | D3DXMatrixLookAtLH | |
| 210 | D3DXMatrixLookAtRH | |
| 211 | D3DXMatrixMultiply | |
| 212 | D3DXMatrixMultiplyTranspose | |
| 213 | D3DXMatrixOrthoLH | |
| 214 | D3DXMatrixOrthoOffCenterLH | |
| 215 | D3DXMatrixOrthoOffCenterRH | |
| 216 | D3DXMatrixOrthoRH | |
| 217 | D3DXMatrixPerspectiveFovLH | |
| 218 | D3DXMatrixPerspectiveFovRH | |
| 219 | D3DXMatrixPerspectiveLH | |
| 220 | D3DXMatrixPerspectiveOffCenterLH | |
| 221 | D3DXMatrixPerspectiveOffCenterRH | |
| 222 | D3DXMatrixPerspectiveRH | |
| 223 | D3DXMatrixReflect | |
| 224 | D3DXMatrixRotationAxis | |
| 225 | D3DXMatrixRotationQuaternion | |
| 226 | D3DXMatrixRotationX | |
| 227 | D3DXMatrixRotationY | |
| 228 | D3DXMatrixRotationYawPitchRoll | |
| 229 | D3DXMatrixRotationZ | |
| 230 | D3DXMatrixScaling | |
| 231 | D3DXMatrixShadow | |
| 232 | D3DXMatrixTransformation | |
| 233 | D3DXMatrixTransformation2D | |
| 234 | D3DXMatrixTranslation | |
| 235 | D3DXMatrixTranspose | |
| 236 | D3DXOptimizeFaces | |
| 237 | D3DXOptimizeVertices | |
| 238 | D3DXPlaneFromPointNormal | |
| 239 | D3DXPlaneFromPoints | |
| 240 | D3DXPlaneIntersectLine | |
| 241 | D3DXPlaneNormalize | |
| 242 | D3DXPlaneTransform | |
| 243 | D3DXPlaneTransformArray | |
| 244 | D3DXPreprocessShader | |
| 245 | D3DXPreprocessShaderFromFileA | |
| 246 | D3DXPreprocessShaderFromFileW | |
| 247 | D3DXPreprocessShaderFromResourceA | |
| 248 | D3DXPreprocessShaderFromResourceW | |
| 249 | D3DXQuaternionBaryCentric | |
| 250 | D3DXQuaternionExp | |
| 251 | D3DXQuaternionInverse | |
| 252 | D3DXQuaternionLn | |
| 253 | D3DXQuaternionMultiply | |
| 254 | D3DXQuaternionNormalize | |
| 255 | D3DXQuaternionRotationAxis | |
| 256 | D3DXQuaternionRotationMatrix | |
| 257 | D3DXQuaternionRotationYawPitchRoll | |
| 258 | D3DXQuaternionSlerp | |
| 259 | D3DXQuaternionSquad | |
| 260 | D3DXQuaternionSquadSetup | |
| 261 | D3DXQuaternionToAxisAngle | |
| 262 | D3DXRectPatchSize | |
| 263 | D3DXSHAdd | |
| 264 | D3DXSHDot | |
| 265 | D3DXSHEvalConeLight | |
| 266 | D3DXSHEvalDirection | |
| 267 | D3DXSHEvalDirectionalLight | |
| 268 | D3DXSHEvalHemisphereLight | |
| 269 | D3DXSHEvalSphericalLight | |
| 270 | D3DXSHMultiply2 | |
| 271 | D3DXSHMultiply3 | |
| 272 | D3DXSHMultiply4 | |
| 273 | D3DXSHMultiply5 | |
| 274 | D3DXSHMultiply6 | |
| 275 | D3DXSHPRTCompSplitMeshSC | |
| 276 | D3DXSHPRTCompSuperCluster | |
| 277 | D3DXSHProjectCubeMap | |
| 278 | D3DXSHRotate | |
| 279 | D3DXSHRotateZ | |
| 280 | D3DXSHScale | |
| 281 | D3DXSaveMeshHierarchyToFileA | |
| 282 | D3DXSaveMeshHierarchyToFileW | |
| 283 | D3DXSaveMeshToXA | |
| 284 | D3DXSaveMeshToXW | |
| 285 | D3DXSavePRTBufferToFileA | |
| 286 | D3DXSavePRTBufferToFileW | |
| 287 | D3DXSavePRTCompBufferToFileA | |
| 288 | D3DXSavePRTCompBufferToFileW | |
| 289 | D3DXSaveSurfaceToFileA | |
| 290 | D3DXSaveSurfaceToFileInMemory | |
| 291 | D3DXSaveSurfaceToFileW | |
| 292 | D3DXSaveTextureToFileA | |
| 293 | D3DXSaveTextureToFileInMemory | |
| 294 | D3DXSaveTextureToFileW | |
| 295 | D3DXSaveVolumeToFileA | |
| 296 | D3DXSaveVolumeToFileInMemory | |
| 297 | D3DXSaveVolumeToFileW | |
| 298 | D3DXSimplifyMesh | |
| 299 | D3DXSphereBoundProbe | |
| 300 | D3DXSplitMesh | |
| 301 | D3DXTessellateNPatches | |
| 302 | D3DXTessellateRectPatch | |
| 303 | D3DXTessellateTriPatch | |
| 304 | D3DXTriPatchSize | |
| 305 | D3DXUVAtlasCreate | |
| 306 | D3DXUVAtlasPack | |
| 307 | D3DXUVAtlasPartition | |
| 308 | D3DXValidMesh | |
| 309 | D3DXValidPatchMesh | |
| 310 | D3DXVec2BaryCentric | |
| 311 | D3DXVec2CatmullRom | |
| 312 | D3DXVec2Hermite | |
| 313 | D3DXVec2Normalize | |
| 314 | D3DXVec2Transform | |
| 315 | D3DXVec2TransformArray | |
| 316 | D3DXVec2TransformCoord | |
| 317 | D3DXVec2TransformCoordArray | |
| 318 | D3DXVec2TransformNormal | |
| 319 | D3DXVec2TransformNormalArray | |
| 320 | D3DXVec3BaryCentric | |
| 321 | D3DXVec3CatmullRom | |
| 322 | D3DXVec3Hermite | |
| 323 | D3DXVec3Normalize | |
| 324 | D3DXVec3Project | |
| 325 | D3DXVec3ProjectArray | |
| 326 | D3DXVec3Transform | |
| 327 | D3DXVec3TransformArray | |
| 328 | D3DXVec3TransformCoord | |
| 329 | D3DXVec3TransformCoordArray | |
| 330 | D3DXVec3TransformNormal | |
| 331 | D3DXVec3TransformNormalArray | |
| 332 | D3DXVec3Unproject | |
| 333 | D3DXVec3UnprojectArray | |
| 334 | D3DXVec4BaryCentric | |
| 335 | D3DXVec4CatmullRom | |
| 336 | D3DXVec4Cross | |
| 337 | D3DXVec4Hermite | |
| 338 | D3DXVec4Normalize | |
| 339 | D3DXVec4Transform | |
| 340 | D3DXVec4TransformArray | |
| 341 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_33.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateKeyframedAnimationSet | |
| 78 | D3DXCreateLine | |
| 79 | D3DXCreateMatrixStack | |
| 80 | D3DXCreateMesh | |
| 81 | D3DXCreateMeshFVF | |
| 82 | D3DXCreateNPatchMesh | |
| 83 | D3DXCreatePMeshFromStream | |
| 84 | D3DXCreatePRTBuffer | |
| 85 | D3DXCreatePRTBufferTex | |
| 86 | D3DXCreatePRTCompBuffer | |
| 87 | D3DXCreatePRTEngine | |
| 88 | D3DXCreatePatchMesh | |
| 89 | D3DXCreatePolygon | |
| 90 | D3DXCreateRenderToEnvMap | |
| 91 | D3DXCreateRenderToSurface | |
| 92 | D3DXCreateSPMesh | |
| 93 | D3DXCreateSkinInfo | |
| 94 | D3DXCreateSkinInfoFVF | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh | |
| 96 | D3DXCreateSphere | |
| 97 | D3DXCreateSprite | |
| 98 | D3DXCreateTeapot | |
| 99 | D3DXCreateTextA | |
| 100 | D3DXCreateTextW | |
| 101 | D3DXCreateTexture | |
| 102 | D3DXCreateTextureFromFileA | |
| 103 | D3DXCreateTextureFromFileExA | |
| 104 | D3DXCreateTextureFromFileExW | |
| 105 | D3DXCreateTextureFromFileInMemory | |
| 106 | D3DXCreateTextureFromFileInMemoryEx | |
| 107 | D3DXCreateTextureFromFileW | |
| 108 | D3DXCreateTextureFromResourceA | |
| 109 | D3DXCreateTextureFromResourceExA | |
| 110 | D3DXCreateTextureFromResourceExW | |
| 111 | D3DXCreateTextureFromResourceW | |
| 112 | D3DXCreateTextureGutterHelper | |
| 113 | D3DXCreateTextureShader | |
| 114 | D3DXCreateTorus | |
| 115 | D3DXCreateVolumeTexture | |
| 116 | D3DXCreateVolumeTextureFromFileA | |
| 117 | D3DXCreateVolumeTextureFromFileExA | |
| 118 | D3DXCreateVolumeTextureFromFileExW | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 121 | D3DXCreateVolumeTextureFromFileW | |
| 122 | D3DXCreateVolumeTextureFromResourceA | |
| 123 | D3DXCreateVolumeTextureFromResourceExA | |
| 124 | D3DXCreateVolumeTextureFromResourceExW | |
| 125 | D3DXCreateVolumeTextureFromResourceW | |
| 126 | D3DXDebugMute | |
| 127 | D3DXDeclaratorFromFVF | |
| 128 | D3DXDisassembleEffect | |
| 129 | D3DXDisassembleShader | |
| 130 | D3DXFVFFromDeclarator | |
| 131 | D3DXFileCreate | |
| 132 | D3DXFillCubeTexture | |
| 133 | D3DXFillCubeTextureTX | |
| 134 | D3DXFillTexture | |
| 135 | D3DXFillTextureTX | |
| 136 | D3DXFillVolumeTexture | |
| 137 | D3DXFillVolumeTextureTX | |
| 138 | D3DXFilterTexture | |
| 139 | D3DXFindShaderComment | |
| 140 | D3DXFloat16To32Array | |
| 141 | D3DXFloat32To16Array | |
| 142 | D3DXFrameAppendChild | |
| 143 | D3DXFrameCalculateBoundingSphere | |
| 144 | D3DXFrameDestroy | |
| 145 | D3DXFrameFind | |
| 146 | D3DXFrameNumNamedMatrices | |
| 147 | D3DXFrameRegisterNamedMatrices | |
| 148 | D3DXFresnelTerm | |
| 149 | D3DXGatherFragments | |
| 150 | D3DXGatherFragmentsFromFileA | |
| 151 | D3DXGatherFragmentsFromFileW | |
| 152 | D3DXGatherFragmentsFromResourceA | |
| 153 | D3DXGatherFragmentsFromResourceW | |
| 154 | D3DXGenerateOutputDecl | |
| 155 | D3DXGeneratePMesh | |
| 156 | D3DXGetDeclLength | |
| 157 | D3DXGetDeclVertexSize | |
| 158 | D3DXGetDriverLevel | |
| 159 | D3DXGetFVFVertexSize | |
| 160 | D3DXGetImageInfoFromFileA | |
| 161 | D3DXGetImageInfoFromFileInMemory | |
| 162 | D3DXGetImageInfoFromFileW | |
| 163 | D3DXGetImageInfoFromResourceA | |
| 164 | D3DXGetImageInfoFromResourceW | |
| 165 | D3DXGetPixelShaderProfile | |
| 166 | D3DXGetShaderConstantTable | |
| 167 | D3DXGetShaderInputSemantics | |
| 168 | D3DXGetShaderOutputSemantics | |
| 169 | D3DXGetShaderSamplers | |
| 170 | D3DXGetShaderSize | |
| 171 | D3DXGetShaderVersion | |
| 172 | D3DXGetVertexShaderProfile | |
| 173 | D3DXIntersect | |
| 174 | D3DXIntersectSubset | |
| 175 | D3DXIntersectTri | |
| 176 | D3DXLoadMeshFromXA | |
| 177 | D3DXLoadMeshFromXInMemory | |
| 178 | D3DXLoadMeshFromXResource | |
| 179 | D3DXLoadMeshFromXW | |
| 180 | D3DXLoadMeshFromXof | |
| 181 | D3DXLoadMeshHierarchyFromXA | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory | |
| 183 | D3DXLoadMeshHierarchyFromXW | |
| 184 | D3DXLoadPRTBufferFromFileA | |
| 185 | D3DXLoadPRTBufferFromFileW | |
| 186 | D3DXLoadPRTCompBufferFromFileA | |
| 187 | D3DXLoadPRTCompBufferFromFileW | |
| 188 | D3DXLoadPatchMeshFromXof | |
| 189 | D3DXLoadSkinMeshFromXof | |
| 190 | D3DXLoadSurfaceFromFileA | |
| 191 | D3DXLoadSurfaceFromFileInMemory | |
| 192 | D3DXLoadSurfaceFromFileW | |
| 193 | D3DXLoadSurfaceFromMemory | |
| 194 | D3DXLoadSurfaceFromResourceA | |
| 195 | D3DXLoadSurfaceFromResourceW | |
| 196 | D3DXLoadSurfaceFromSurface | |
| 197 | D3DXLoadVolumeFromFileA | |
| 198 | D3DXLoadVolumeFromFileInMemory | |
| 199 | D3DXLoadVolumeFromFileW | |
| 200 | D3DXLoadVolumeFromMemory | |
| 201 | D3DXLoadVolumeFromResourceA | |
| 202 | D3DXLoadVolumeFromResourceW | |
| 203 | D3DXLoadVolumeFromVolume | |
| 204 | D3DXMatrixAffineTransformation | |
| 205 | D3DXMatrixAffineTransformation2D | |
| 206 | D3DXMatrixDecompose | |
| 207 | D3DXMatrixDeterminant | |
| 208 | D3DXMatrixInverse | |
| 209 | D3DXMatrixLookAtLH | |
| 210 | D3DXMatrixLookAtRH | |
| 211 | D3DXMatrixMultiply | |
| 212 | D3DXMatrixMultiplyTranspose | |
| 213 | D3DXMatrixOrthoLH | |
| 214 | D3DXMatrixOrthoOffCenterLH | |
| 215 | D3DXMatrixOrthoOffCenterRH | |
| 216 | D3DXMatrixOrthoRH | |
| 217 | D3DXMatrixPerspectiveFovLH | |
| 218 | D3DXMatrixPerspectiveFovRH | |
| 219 | D3DXMatrixPerspectiveLH | |
| 220 | D3DXMatrixPerspectiveOffCenterLH | |
| 221 | D3DXMatrixPerspectiveOffCenterRH | |
| 222 | D3DXMatrixPerspectiveRH | |
| 223 | D3DXMatrixReflect | |
| 224 | D3DXMatrixRotationAxis | |
| 225 | D3DXMatrixRotationQuaternion | |
| 226 | D3DXMatrixRotationX | |
| 227 | D3DXMatrixRotationY | |
| 228 | D3DXMatrixRotationYawPitchRoll | |
| 229 | D3DXMatrixRotationZ | |
| 230 | D3DXMatrixScaling | |
| 231 | D3DXMatrixShadow | |
| 232 | D3DXMatrixTransformation | |
| 233 | D3DXMatrixTransformation2D | |
| 234 | D3DXMatrixTranslation | |
| 235 | D3DXMatrixTranspose | |
| 236 | D3DXOptimizeFaces | |
| 237 | D3DXOptimizeVertices | |
| 238 | D3DXPlaneFromPointNormal | |
| 239 | D3DXPlaneFromPoints | |
| 240 | D3DXPlaneIntersectLine | |
| 241 | D3DXPlaneNormalize | |
| 242 | D3DXPlaneTransform | |
| 243 | D3DXPlaneTransformArray | |
| 244 | D3DXPreprocessShader | |
| 245 | D3DXPreprocessShaderFromFileA | |
| 246 | D3DXPreprocessShaderFromFileW | |
| 247 | D3DXPreprocessShaderFromResourceA | |
| 248 | D3DXPreprocessShaderFromResourceW | |
| 249 | D3DXQuaternionBaryCentric | |
| 250 | D3DXQuaternionExp | |
| 251 | D3DXQuaternionInverse | |
| 252 | D3DXQuaternionLn | |
| 253 | D3DXQuaternionMultiply | |
| 254 | D3DXQuaternionNormalize | |
| 255 | D3DXQuaternionRotationAxis | |
| 256 | D3DXQuaternionRotationMatrix | |
| 257 | D3DXQuaternionRotationYawPitchRoll | |
| 258 | D3DXQuaternionSlerp | |
| 259 | D3DXQuaternionSquad | |
| 260 | D3DXQuaternionSquadSetup | |
| 261 | D3DXQuaternionToAxisAngle | |
| 262 | D3DXRectPatchSize | |
| 263 | D3DXSHAdd | |
| 264 | D3DXSHDot | |
| 265 | D3DXSHEvalConeLight | |
| 266 | D3DXSHEvalDirection | |
| 267 | D3DXSHEvalDirectionalLight | |
| 268 | D3DXSHEvalHemisphereLight | |
| 269 | D3DXSHEvalSphericalLight | |
| 270 | D3DXSHMultiply2 | |
| 271 | D3DXSHMultiply3 | |
| 272 | D3DXSHMultiply4 | |
| 273 | D3DXSHMultiply5 | |
| 274 | D3DXSHMultiply6 | |
| 275 | D3DXSHPRTCompSplitMeshSC | |
| 276 | D3DXSHPRTCompSuperCluster | |
| 277 | D3DXSHProjectCubeMap | |
| 278 | D3DXSHRotate | |
| 279 | D3DXSHRotateZ | |
| 280 | D3DXSHScale | |
| 281 | D3DXSaveMeshHierarchyToFileA | |
| 282 | D3DXSaveMeshHierarchyToFileW | |
| 283 | D3DXSaveMeshToXA | |
| 284 | D3DXSaveMeshToXW | |
| 285 | D3DXSavePRTBufferToFileA | |
| 286 | D3DXSavePRTBufferToFileW | |
| 287 | D3DXSavePRTCompBufferToFileA | |
| 288 | D3DXSavePRTCompBufferToFileW | |
| 289 | D3DXSaveSurfaceToFileA | |
| 290 | D3DXSaveSurfaceToFileInMemory | |
| 291 | D3DXSaveSurfaceToFileW | |
| 292 | D3DXSaveTextureToFileA | |
| 293 | D3DXSaveTextureToFileInMemory | |
| 294 | D3DXSaveTextureToFileW | |
| 295 | D3DXSaveVolumeToFileA | |
| 296 | D3DXSaveVolumeToFileInMemory | |
| 297 | D3DXSaveVolumeToFileW | |
| 298 | D3DXSimplifyMesh | |
| 299 | D3DXSphereBoundProbe | |
| 300 | D3DXSplitMesh | |
| 301 | D3DXTessellateNPatches | |
| 302 | D3DXTessellateRectPatch | |
| 303 | D3DXTessellateTriPatch | |
| 304 | D3DXTriPatchSize | |
| 305 | D3DXUVAtlasCreate | |
| 306 | D3DXUVAtlasPack | |
| 307 | D3DXUVAtlasPartition | |
| 308 | D3DXValidMesh | |
| 309 | D3DXValidPatchMesh | |
| 310 | D3DXVec2BaryCentric | |
| 311 | D3DXVec2CatmullRom | |
| 312 | D3DXVec2Hermite | |
| 313 | D3DXVec2Normalize | |
| 314 | D3DXVec2Transform | |
| 315 | D3DXVec2TransformArray | |
| 316 | D3DXVec2TransformCoord | |
| 317 | D3DXVec2TransformCoordArray | |
| 318 | D3DXVec2TransformNormal | |
| 319 | D3DXVec2TransformNormalArray | |
| 320 | D3DXVec3BaryCentric | |
| 321 | D3DXVec3CatmullRom | |
| 322 | D3DXVec3Hermite | |
| 323 | D3DXVec3Normalize | |
| 324 | D3DXVec3Project | |
| 325 | D3DXVec3ProjectArray | |
| 326 | D3DXVec3Transform | |
| 327 | D3DXVec3TransformArray | |
| 328 | D3DXVec3TransformCoord | |
| 329 | D3DXVec3TransformCoordArray | |
| 330 | D3DXVec3TransformNormal | |
| 331 | D3DXVec3TransformNormalArray | |
| 332 | D3DXVec3Unproject | |
| 333 | D3DXVec3UnprojectArray | |
| 334 | D3DXVec4BaryCentric | |
| 335 | D3DXVec4CatmullRom | |
| 336 | D3DXVec4Cross | |
| 337 | D3DXVec4Hermite | |
| 338 | D3DXVec4Normalize | |
| 339 | D3DXVec4Transform | |
| 340 | D3DXVec4TransformArray | |
| 341 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_34.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateKeyframedAnimationSet | |
| 78 | D3DXCreateLine | |
| 79 | D3DXCreateMatrixStack | |
| 80 | D3DXCreateMesh | |
| 81 | D3DXCreateMeshFVF | |
| 82 | D3DXCreateNPatchMesh | |
| 83 | D3DXCreatePMeshFromStream | |
| 84 | D3DXCreatePRTBuffer | |
| 85 | D3DXCreatePRTBufferTex | |
| 86 | D3DXCreatePRTCompBuffer | |
| 87 | D3DXCreatePRTEngine | |
| 88 | D3DXCreatePatchMesh | |
| 89 | D3DXCreatePolygon | |
| 90 | D3DXCreateRenderToEnvMap | |
| 91 | D3DXCreateRenderToSurface | |
| 92 | D3DXCreateSPMesh | |
| 93 | D3DXCreateSkinInfo | |
| 94 | D3DXCreateSkinInfoFVF | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh | |
| 96 | D3DXCreateSphere | |
| 97 | D3DXCreateSprite | |
| 98 | D3DXCreateTeapot | |
| 99 | D3DXCreateTextA | |
| 100 | D3DXCreateTextW | |
| 101 | D3DXCreateTexture | |
| 102 | D3DXCreateTextureFromFileA | |
| 103 | D3DXCreateTextureFromFileExA | |
| 104 | D3DXCreateTextureFromFileExW | |
| 105 | D3DXCreateTextureFromFileInMemory | |
| 106 | D3DXCreateTextureFromFileInMemoryEx | |
| 107 | D3DXCreateTextureFromFileW | |
| 108 | D3DXCreateTextureFromResourceA | |
| 109 | D3DXCreateTextureFromResourceExA | |
| 110 | D3DXCreateTextureFromResourceExW | |
| 111 | D3DXCreateTextureFromResourceW | |
| 112 | D3DXCreateTextureGutterHelper | |
| 113 | D3DXCreateTextureShader | |
| 114 | D3DXCreateTorus | |
| 115 | D3DXCreateVolumeTexture | |
| 116 | D3DXCreateVolumeTextureFromFileA | |
| 117 | D3DXCreateVolumeTextureFromFileExA | |
| 118 | D3DXCreateVolumeTextureFromFileExW | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 121 | D3DXCreateVolumeTextureFromFileW | |
| 122 | D3DXCreateVolumeTextureFromResourceA | |
| 123 | D3DXCreateVolumeTextureFromResourceExA | |
| 124 | D3DXCreateVolumeTextureFromResourceExW | |
| 125 | D3DXCreateVolumeTextureFromResourceW | |
| 126 | D3DXDebugMute | |
| 127 | D3DXDeclaratorFromFVF | |
| 128 | D3DXDisassembleEffect | |
| 129 | D3DXDisassembleShader | |
| 130 | D3DXFVFFromDeclarator | |
| 131 | D3DXFileCreate | |
| 132 | D3DXFillCubeTexture | |
| 133 | D3DXFillCubeTextureTX | |
| 134 | D3DXFillTexture | |
| 135 | D3DXFillTextureTX | |
| 136 | D3DXFillVolumeTexture | |
| 137 | D3DXFillVolumeTextureTX | |
| 138 | D3DXFilterTexture | |
| 139 | D3DXFindShaderComment | |
| 140 | D3DXFloat16To32Array | |
| 141 | D3DXFloat32To16Array | |
| 142 | D3DXFrameAppendChild | |
| 143 | D3DXFrameCalculateBoundingSphere | |
| 144 | D3DXFrameDestroy | |
| 145 | D3DXFrameFind | |
| 146 | D3DXFrameNumNamedMatrices | |
| 147 | D3DXFrameRegisterNamedMatrices | |
| 148 | D3DXFresnelTerm | |
| 149 | D3DXGatherFragments | |
| 150 | D3DXGatherFragmentsFromFileA | |
| 151 | D3DXGatherFragmentsFromFileW | |
| 152 | D3DXGatherFragmentsFromResourceA | |
| 153 | D3DXGatherFragmentsFromResourceW | |
| 154 | D3DXGenerateOutputDecl | |
| 155 | D3DXGeneratePMesh | |
| 156 | D3DXGetDeclLength | |
| 157 | D3DXGetDeclVertexSize | |
| 158 | D3DXGetDriverLevel | |
| 159 | D3DXGetFVFVertexSize | |
| 160 | D3DXGetImageInfoFromFileA | |
| 161 | D3DXGetImageInfoFromFileInMemory | |
| 162 | D3DXGetImageInfoFromFileW | |
| 163 | D3DXGetImageInfoFromResourceA | |
| 164 | D3DXGetImageInfoFromResourceW | |
| 165 | D3DXGetPixelShaderProfile | |
| 166 | D3DXGetShaderConstantTable | |
| 167 | D3DXGetShaderInputSemantics | |
| 168 | D3DXGetShaderOutputSemantics | |
| 169 | D3DXGetShaderSamplers | |
| 170 | D3DXGetShaderSize | |
| 171 | D3DXGetShaderVersion | |
| 172 | D3DXGetVertexShaderProfile | |
| 173 | D3DXIntersect | |
| 174 | D3DXIntersectSubset | |
| 175 | D3DXIntersectTri | |
| 176 | D3DXLoadMeshFromXA | |
| 177 | D3DXLoadMeshFromXInMemory | |
| 178 | D3DXLoadMeshFromXResource | |
| 179 | D3DXLoadMeshFromXW | |
| 180 | D3DXLoadMeshFromXof | |
| 181 | D3DXLoadMeshHierarchyFromXA | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory | |
| 183 | D3DXLoadMeshHierarchyFromXW | |
| 184 | D3DXLoadPRTBufferFromFileA | |
| 185 | D3DXLoadPRTBufferFromFileW | |
| 186 | D3DXLoadPRTCompBufferFromFileA | |
| 187 | D3DXLoadPRTCompBufferFromFileW | |
| 188 | D3DXLoadPatchMeshFromXof | |
| 189 | D3DXLoadSkinMeshFromXof | |
| 190 | D3DXLoadSurfaceFromFileA | |
| 191 | D3DXLoadSurfaceFromFileInMemory | |
| 192 | D3DXLoadSurfaceFromFileW | |
| 193 | D3DXLoadSurfaceFromMemory | |
| 194 | D3DXLoadSurfaceFromResourceA | |
| 195 | D3DXLoadSurfaceFromResourceW | |
| 196 | D3DXLoadSurfaceFromSurface | |
| 197 | D3DXLoadVolumeFromFileA | |
| 198 | D3DXLoadVolumeFromFileInMemory | |
| 199 | D3DXLoadVolumeFromFileW | |
| 200 | D3DXLoadVolumeFromMemory | |
| 201 | D3DXLoadVolumeFromResourceA | |
| 202 | D3DXLoadVolumeFromResourceW | |
| 203 | D3DXLoadVolumeFromVolume | |
| 204 | D3DXMatrixAffineTransformation | |
| 205 | D3DXMatrixAffineTransformation2D | |
| 206 | D3DXMatrixDecompose | |
| 207 | D3DXMatrixDeterminant | |
| 208 | D3DXMatrixInverse | |
| 209 | D3DXMatrixLookAtLH | |
| 210 | D3DXMatrixLookAtRH | |
| 211 | D3DXMatrixMultiply | |
| 212 | D3DXMatrixMultiplyTranspose | |
| 213 | D3DXMatrixOrthoLH | |
| 214 | D3DXMatrixOrthoOffCenterLH | |
| 215 | D3DXMatrixOrthoOffCenterRH | |
| 216 | D3DXMatrixOrthoRH | |
| 217 | D3DXMatrixPerspectiveFovLH | |
| 218 | D3DXMatrixPerspectiveFovRH | |
| 219 | D3DXMatrixPerspectiveLH | |
| 220 | D3DXMatrixPerspectiveOffCenterLH | |
| 221 | D3DXMatrixPerspectiveOffCenterRH | |
| 222 | D3DXMatrixPerspectiveRH | |
| 223 | D3DXMatrixReflect | |
| 224 | D3DXMatrixRotationAxis | |
| 225 | D3DXMatrixRotationQuaternion | |
| 226 | D3DXMatrixRotationX | |
| 227 | D3DXMatrixRotationY | |
| 228 | D3DXMatrixRotationYawPitchRoll | |
| 229 | D3DXMatrixRotationZ | |
| 230 | D3DXMatrixScaling | |
| 231 | D3DXMatrixShadow | |
| 232 | D3DXMatrixTransformation | |
| 233 | D3DXMatrixTransformation2D | |
| 234 | D3DXMatrixTranslation | |
| 235 | D3DXMatrixTranspose | |
| 236 | D3DXOptimizeFaces | |
| 237 | D3DXOptimizeVertices | |
| 238 | D3DXPlaneFromPointNormal | |
| 239 | D3DXPlaneFromPoints | |
| 240 | D3DXPlaneIntersectLine | |
| 241 | D3DXPlaneNormalize | |
| 242 | D3DXPlaneTransform | |
| 243 | D3DXPlaneTransformArray | |
| 244 | D3DXPreprocessShader | |
| 245 | D3DXPreprocessShaderFromFileA | |
| 246 | D3DXPreprocessShaderFromFileW | |
| 247 | D3DXPreprocessShaderFromResourceA | |
| 248 | D3DXPreprocessShaderFromResourceW | |
| 249 | D3DXQuaternionBaryCentric | |
| 250 | D3DXQuaternionExp | |
| 251 | D3DXQuaternionInverse | |
| 252 | D3DXQuaternionLn | |
| 253 | D3DXQuaternionMultiply | |
| 254 | D3DXQuaternionNormalize | |
| 255 | D3DXQuaternionRotationAxis | |
| 256 | D3DXQuaternionRotationMatrix | |
| 257 | D3DXQuaternionRotationYawPitchRoll | |
| 258 | D3DXQuaternionSlerp | |
| 259 | D3DXQuaternionSquad | |
| 260 | D3DXQuaternionSquadSetup | |
| 261 | D3DXQuaternionToAxisAngle | |
| 262 | D3DXRectPatchSize | |
| 263 | D3DXSHAdd | |
| 264 | D3DXSHDot | |
| 265 | D3DXSHEvalConeLight | |
| 266 | D3DXSHEvalDirection | |
| 267 | D3DXSHEvalDirectionalLight | |
| 268 | D3DXSHEvalHemisphereLight | |
| 269 | D3DXSHEvalSphericalLight | |
| 270 | D3DXSHMultiply2 | |
| 271 | D3DXSHMultiply3 | |
| 272 | D3DXSHMultiply4 | |
| 273 | D3DXSHMultiply5 | |
| 274 | D3DXSHMultiply6 | |
| 275 | D3DXSHPRTCompSplitMeshSC | |
| 276 | D3DXSHPRTCompSuperCluster | |
| 277 | D3DXSHProjectCubeMap | |
| 278 | D3DXSHRotate | |
| 279 | D3DXSHRotateZ | |
| 280 | D3DXSHScale | |
| 281 | D3DXSaveMeshHierarchyToFileA | |
| 282 | D3DXSaveMeshHierarchyToFileW | |
| 283 | D3DXSaveMeshToXA | |
| 284 | D3DXSaveMeshToXW | |
| 285 | D3DXSavePRTBufferToFileA | |
| 286 | D3DXSavePRTBufferToFileW | |
| 287 | D3DXSavePRTCompBufferToFileA | |
| 288 | D3DXSavePRTCompBufferToFileW | |
| 289 | D3DXSaveSurfaceToFileA | |
| 290 | D3DXSaveSurfaceToFileInMemory | |
| 291 | D3DXSaveSurfaceToFileW | |
| 292 | D3DXSaveTextureToFileA | |
| 293 | D3DXSaveTextureToFileInMemory | |
| 294 | D3DXSaveTextureToFileW | |
| 295 | D3DXSaveVolumeToFileA | |
| 296 | D3DXSaveVolumeToFileInMemory | |
| 297 | D3DXSaveVolumeToFileW | |
| 298 | D3DXSimplifyMesh | |
| 299 | D3DXSphereBoundProbe | |
| 300 | D3DXSplitMesh | |
| 301 | D3DXTessellateNPatches | |
| 302 | D3DXTessellateRectPatch | |
| 303 | D3DXTessellateTriPatch | |
| 304 | D3DXTriPatchSize | |
| 305 | D3DXUVAtlasCreate | |
| 306 | D3DXUVAtlasPack | |
| 307 | D3DXUVAtlasPartition | |
| 308 | D3DXValidMesh | |
| 309 | D3DXValidPatchMesh | |
| 310 | D3DXVec2BaryCentric | |
| 311 | D3DXVec2CatmullRom | |
| 312 | D3DXVec2Hermite | |
| 313 | D3DXVec2Normalize | |
| 314 | D3DXVec2Transform | |
| 315 | D3DXVec2TransformArray | |
| 316 | D3DXVec2TransformCoord | |
| 317 | D3DXVec2TransformCoordArray | |
| 318 | D3DXVec2TransformNormal | |
| 319 | D3DXVec2TransformNormalArray | |
| 320 | D3DXVec3BaryCentric | |
| 321 | D3DXVec3CatmullRom | |
| 322 | D3DXVec3Hermite | |
| 323 | D3DXVec3Normalize | |
| 324 | D3DXVec3Project | |
| 325 | D3DXVec3ProjectArray | |
| 326 | D3DXVec3Transform | |
| 327 | D3DXVec3TransformArray | |
| 328 | D3DXVec3TransformCoord | |
| 329 | D3DXVec3TransformCoordArray | |
| 330 | D3DXVec3TransformNormal | |
| 331 | D3DXVec3TransformNormalArray | |
| 332 | D3DXVec3Unproject | |
| 333 | D3DXVec3UnprojectArray | |
| 334 | D3DXVec4BaryCentric | |
| 335 | D3DXVec4CatmullRom | |
| 336 | D3DXVec4Cross | |
| 337 | D3DXVec4Hermite | |
| 338 | D3DXVec4Normalize | |
| 339 | D3DXVec4Transform | |
| 340 | D3DXVec4TransformArray | |
| 341 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_35.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateKeyframedAnimationSet | |
| 78 | D3DXCreateLine | |
| 79 | D3DXCreateMatrixStack | |
| 80 | D3DXCreateMesh | |
| 81 | D3DXCreateMeshFVF | |
| 82 | D3DXCreateNPatchMesh | |
| 83 | D3DXCreatePMeshFromStream | |
| 84 | D3DXCreatePRTBuffer | |
| 85 | D3DXCreatePRTBufferTex | |
| 86 | D3DXCreatePRTCompBuffer | |
| 87 | D3DXCreatePRTEngine | |
| 88 | D3DXCreatePatchMesh | |
| 89 | D3DXCreatePolygon | |
| 90 | D3DXCreateRenderToEnvMap | |
| 91 | D3DXCreateRenderToSurface | |
| 92 | D3DXCreateSPMesh | |
| 93 | D3DXCreateSkinInfo | |
| 94 | D3DXCreateSkinInfoFVF | |
| 95 | D3DXCreateSkinInfoFromBlendedMesh | |
| 96 | D3DXCreateSphere | |
| 97 | D3DXCreateSprite | |
| 98 | D3DXCreateTeapot | |
| 99 | D3DXCreateTextA | |
| 100 | D3DXCreateTextW | |
| 101 | D3DXCreateTexture | |
| 102 | D3DXCreateTextureFromFileA | |
| 103 | D3DXCreateTextureFromFileExA | |
| 104 | D3DXCreateTextureFromFileExW | |
| 105 | D3DXCreateTextureFromFileInMemory | |
| 106 | D3DXCreateTextureFromFileInMemoryEx | |
| 107 | D3DXCreateTextureFromFileW | |
| 108 | D3DXCreateTextureFromResourceA | |
| 109 | D3DXCreateTextureFromResourceExA | |
| 110 | D3DXCreateTextureFromResourceExW | |
| 111 | D3DXCreateTextureFromResourceW | |
| 112 | D3DXCreateTextureGutterHelper | |
| 113 | D3DXCreateTextureShader | |
| 114 | D3DXCreateTorus | |
| 115 | D3DXCreateVolumeTexture | |
| 116 | D3DXCreateVolumeTextureFromFileA | |
| 117 | D3DXCreateVolumeTextureFromFileExA | |
| 118 | D3DXCreateVolumeTextureFromFileExW | |
| 119 | D3DXCreateVolumeTextureFromFileInMemory | |
| 120 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 121 | D3DXCreateVolumeTextureFromFileW | |
| 122 | D3DXCreateVolumeTextureFromResourceA | |
| 123 | D3DXCreateVolumeTextureFromResourceExA | |
| 124 | D3DXCreateVolumeTextureFromResourceExW | |
| 125 | D3DXCreateVolumeTextureFromResourceW | |
| 126 | D3DXDebugMute | |
| 127 | D3DXDeclaratorFromFVF | |
| 128 | D3DXDisassembleEffect | |
| 129 | D3DXDisassembleShader | |
| 130 | D3DXFVFFromDeclarator | |
| 131 | D3DXFileCreate | |
| 132 | D3DXFillCubeTexture | |
| 133 | D3DXFillCubeTextureTX | |
| 134 | D3DXFillTexture | |
| 135 | D3DXFillTextureTX | |
| 136 | D3DXFillVolumeTexture | |
| 137 | D3DXFillVolumeTextureTX | |
| 138 | D3DXFilterTexture | |
| 139 | D3DXFindShaderComment | |
| 140 | D3DXFloat16To32Array | |
| 141 | D3DXFloat32To16Array | |
| 142 | D3DXFrameAppendChild | |
| 143 | D3DXFrameCalculateBoundingSphere | |
| 144 | D3DXFrameDestroy | |
| 145 | D3DXFrameFind | |
| 146 | D3DXFrameNumNamedMatrices | |
| 147 | D3DXFrameRegisterNamedMatrices | |
| 148 | D3DXFresnelTerm | |
| 149 | D3DXGatherFragments | |
| 150 | D3DXGatherFragmentsFromFileA | |
| 151 | D3DXGatherFragmentsFromFileW | |
| 152 | D3DXGatherFragmentsFromResourceA | |
| 153 | D3DXGatherFragmentsFromResourceW | |
| 154 | D3DXGenerateOutputDecl | |
| 155 | D3DXGeneratePMesh | |
| 156 | D3DXGetDeclLength | |
| 157 | D3DXGetDeclVertexSize | |
| 158 | D3DXGetDriverLevel | |
| 159 | D3DXGetFVFVertexSize | |
| 160 | D3DXGetImageInfoFromFileA | |
| 161 | D3DXGetImageInfoFromFileInMemory | |
| 162 | D3DXGetImageInfoFromFileW | |
| 163 | D3DXGetImageInfoFromResourceA | |
| 164 | D3DXGetImageInfoFromResourceW | |
| 165 | D3DXGetPixelShaderProfile | |
| 166 | D3DXGetShaderConstantTable | |
| 167 | D3DXGetShaderInputSemantics | |
| 168 | D3DXGetShaderOutputSemantics | |
| 169 | D3DXGetShaderSamplers | |
| 170 | D3DXGetShaderSize | |
| 171 | D3DXGetShaderVersion | |
| 172 | D3DXGetVertexShaderProfile | |
| 173 | D3DXIntersect | |
| 174 | D3DXIntersectSubset | |
| 175 | D3DXIntersectTri | |
| 176 | D3DXLoadMeshFromXA | |
| 177 | D3DXLoadMeshFromXInMemory | |
| 178 | D3DXLoadMeshFromXResource | |
| 179 | D3DXLoadMeshFromXW | |
| 180 | D3DXLoadMeshFromXof | |
| 181 | D3DXLoadMeshHierarchyFromXA | |
| 182 | D3DXLoadMeshHierarchyFromXInMemory | |
| 183 | D3DXLoadMeshHierarchyFromXW | |
| 184 | D3DXLoadPRTBufferFromFileA | |
| 185 | D3DXLoadPRTBufferFromFileW | |
| 186 | D3DXLoadPRTCompBufferFromFileA | |
| 187 | D3DXLoadPRTCompBufferFromFileW | |
| 188 | D3DXLoadPatchMeshFromXof | |
| 189 | D3DXLoadSkinMeshFromXof | |
| 190 | D3DXLoadSurfaceFromFileA | |
| 191 | D3DXLoadSurfaceFromFileInMemory | |
| 192 | D3DXLoadSurfaceFromFileW | |
| 193 | D3DXLoadSurfaceFromMemory | |
| 194 | D3DXLoadSurfaceFromResourceA | |
| 195 | D3DXLoadSurfaceFromResourceW | |
| 196 | D3DXLoadSurfaceFromSurface | |
| 197 | D3DXLoadVolumeFromFileA | |
| 198 | D3DXLoadVolumeFromFileInMemory | |
| 199 | D3DXLoadVolumeFromFileW | |
| 200 | D3DXLoadVolumeFromMemory | |
| 201 | D3DXLoadVolumeFromResourceA | |
| 202 | D3DXLoadVolumeFromResourceW | |
| 203 | D3DXLoadVolumeFromVolume | |
| 204 | D3DXMatrixAffineTransformation | |
| 205 | D3DXMatrixAffineTransformation2D | |
| 206 | D3DXMatrixDecompose | |
| 207 | D3DXMatrixDeterminant | |
| 208 | D3DXMatrixInverse | |
| 209 | D3DXMatrixLookAtLH | |
| 210 | D3DXMatrixLookAtRH | |
| 211 | D3DXMatrixMultiply | |
| 212 | D3DXMatrixMultiplyTranspose | |
| 213 | D3DXMatrixOrthoLH | |
| 214 | D3DXMatrixOrthoOffCenterLH | |
| 215 | D3DXMatrixOrthoOffCenterRH | |
| 216 | D3DXMatrixOrthoRH | |
| 217 | D3DXMatrixPerspectiveFovLH | |
| 218 | D3DXMatrixPerspectiveFovRH | |
| 219 | D3DXMatrixPerspectiveLH | |
| 220 | D3DXMatrixPerspectiveOffCenterLH | |
| 221 | D3DXMatrixPerspectiveOffCenterRH | |
| 222 | D3DXMatrixPerspectiveRH | |
| 223 | D3DXMatrixReflect | |
| 224 | D3DXMatrixRotationAxis | |
| 225 | D3DXMatrixRotationQuaternion | |
| 226 | D3DXMatrixRotationX | |
| 227 | D3DXMatrixRotationY | |
| 228 | D3DXMatrixRotationYawPitchRoll | |
| 229 | D3DXMatrixRotationZ | |
| 230 | D3DXMatrixScaling | |
| 231 | D3DXMatrixShadow | |
| 232 | D3DXMatrixTransformation | |
| 233 | D3DXMatrixTransformation2D | |
| 234 | D3DXMatrixTranslation | |
| 235 | D3DXMatrixTranspose | |
| 236 | D3DXOptimizeFaces | |
| 237 | D3DXOptimizeVertices | |
| 238 | D3DXPlaneFromPointNormal | |
| 239 | D3DXPlaneFromPoints | |
| 240 | D3DXPlaneIntersectLine | |
| 241 | D3DXPlaneNormalize | |
| 242 | D3DXPlaneTransform | |
| 243 | D3DXPlaneTransformArray | |
| 244 | D3DXPreprocessShader | |
| 245 | D3DXPreprocessShaderFromFileA | |
| 246 | D3DXPreprocessShaderFromFileW | |
| 247 | D3DXPreprocessShaderFromResourceA | |
| 248 | D3DXPreprocessShaderFromResourceW | |
| 249 | D3DXQuaternionBaryCentric | |
| 250 | D3DXQuaternionExp | |
| 251 | D3DXQuaternionInverse | |
| 252 | D3DXQuaternionLn | |
| 253 | D3DXQuaternionMultiply | |
| 254 | D3DXQuaternionNormalize | |
| 255 | D3DXQuaternionRotationAxis | |
| 256 | D3DXQuaternionRotationMatrix | |
| 257 | D3DXQuaternionRotationYawPitchRoll | |
| 258 | D3DXQuaternionSlerp | |
| 259 | D3DXQuaternionSquad | |
| 260 | D3DXQuaternionSquadSetup | |
| 261 | D3DXQuaternionToAxisAngle | |
| 262 | D3DXRectPatchSize | |
| 263 | D3DXSHAdd | |
| 264 | D3DXSHDot | |
| 265 | D3DXSHEvalConeLight | |
| 266 | D3DXSHEvalDirection | |
| 267 | D3DXSHEvalDirectionalLight | |
| 268 | D3DXSHEvalHemisphereLight | |
| 269 | D3DXSHEvalSphericalLight | |
| 270 | D3DXSHMultiply2 | |
| 271 | D3DXSHMultiply3 | |
| 272 | D3DXSHMultiply4 | |
| 273 | D3DXSHMultiply5 | |
| 274 | D3DXSHMultiply6 | |
| 275 | D3DXSHPRTCompSplitMeshSC | |
| 276 | D3DXSHPRTCompSuperCluster | |
| 277 | D3DXSHProjectCubeMap | |
| 278 | D3DXSHRotate | |
| 279 | D3DXSHRotateZ | |
| 280 | D3DXSHScale | |
| 281 | D3DXSaveMeshHierarchyToFileA | |
| 282 | D3DXSaveMeshHierarchyToFileW | |
| 283 | D3DXSaveMeshToXA | |
| 284 | D3DXSaveMeshToXW | |
| 285 | D3DXSavePRTBufferToFileA | |
| 286 | D3DXSavePRTBufferToFileW | |
| 287 | D3DXSavePRTCompBufferToFileA | |
| 288 | D3DXSavePRTCompBufferToFileW | |
| 289 | D3DXSaveSurfaceToFileA | |
| 290 | D3DXSaveSurfaceToFileInMemory | |
| 291 | D3DXSaveSurfaceToFileW | |
| 292 | D3DXSaveTextureToFileA | |
| 293 | D3DXSaveTextureToFileInMemory | |
| 294 | D3DXSaveTextureToFileW | |
| 295 | D3DXSaveVolumeToFileA | |
| 296 | D3DXSaveVolumeToFileInMemory | |
| 297 | D3DXSaveVolumeToFileW | |
| 298 | D3DXSimplifyMesh | |
| 299 | D3DXSphereBoundProbe | |
| 300 | D3DXSplitMesh | |
| 301 | D3DXTessellateNPatches | |
| 302 | D3DXTessellateRectPatch | |
| 303 | D3DXTessellateTriPatch | |
| 304 | D3DXTriPatchSize | |
| 305 | D3DXUVAtlasCreate | |
| 306 | D3DXUVAtlasPack | |
| 307 | D3DXUVAtlasPartition | |
| 308 | D3DXValidMesh | |
| 309 | D3DXValidPatchMesh | |
| 310 | D3DXVec2BaryCentric | |
| 311 | D3DXVec2CatmullRom | |
| 312 | D3DXVec2Hermite | |
| 313 | D3DXVec2Normalize | |
| 314 | D3DXVec2Transform | |
| 315 | D3DXVec2TransformArray | |
| 316 | D3DXVec2TransformCoord | |
| 317 | D3DXVec2TransformCoordArray | |
| 318 | D3DXVec2TransformNormal | |
| 319 | D3DXVec2TransformNormalArray | |
| 320 | D3DXVec3BaryCentric | |
| 321 | D3DXVec3CatmullRom | |
| 322 | D3DXVec3Hermite | |
| 323 | D3DXVec3Normalize | |
| 324 | D3DXVec3Project | |
| 325 | D3DXVec3ProjectArray | |
| 326 | D3DXVec3Transform | |
| 327 | D3DXVec3TransformArray | |
| 328 | D3DXVec3TransformCoord | |
| 329 | D3DXVec3TransformCoordArray | |
| 330 | D3DXVec3TransformNormal | |
| 331 | D3DXVec3TransformNormalArray | |
| 332 | D3DXVec3Unproject | |
| 333 | D3DXVec3UnprojectArray | |
| 334 | D3DXVec4BaryCentric | |
| 335 | D3DXVec4CatmullRom | |
| 336 | D3DXVec4Cross | |
| 337 | D3DXVec4Hermite | |
| 338 | D3DXVec4Normalize | |
| 339 | D3DXVec4Transform | |
| 340 | D3DXVec4TransformArray | |
| 341 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_36.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateFragmentLinkerEx | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderConstantTableEx | |
| 169 | D3DXGetShaderInputSemantics | |
| 170 | D3DXGetShaderOutputSemantics | |
| 171 | D3DXGetShaderSamplers | |
| 172 | D3DXGetShaderSize | |
| 173 | D3DXGetShaderVersion | |
| 174 | D3DXGetVertexShaderProfile | |
| 175 | D3DXIntersect | |
| 176 | D3DXIntersectSubset | |
| 177 | D3DXIntersectTri | |
| 178 | D3DXLoadMeshFromXA | |
| 179 | D3DXLoadMeshFromXInMemory | |
| 180 | D3DXLoadMeshFromXResource | |
| 181 | D3DXLoadMeshFromXW | |
| 182 | D3DXLoadMeshFromXof | |
| 183 | D3DXLoadMeshHierarchyFromXA | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory | |
| 185 | D3DXLoadMeshHierarchyFromXW | |
| 186 | D3DXLoadPRTBufferFromFileA | |
| 187 | D3DXLoadPRTBufferFromFileW | |
| 188 | D3DXLoadPRTCompBufferFromFileA | |
| 189 | D3DXLoadPRTCompBufferFromFileW | |
| 190 | D3DXLoadPatchMeshFromXof | |
| 191 | D3DXLoadSkinMeshFromXof | |
| 192 | D3DXLoadSurfaceFromFileA | |
| 193 | D3DXLoadSurfaceFromFileInMemory | |
| 194 | D3DXLoadSurfaceFromFileW | |
| 195 | D3DXLoadSurfaceFromMemory | |
| 196 | D3DXLoadSurfaceFromResourceA | |
| 197 | D3DXLoadSurfaceFromResourceW | |
| 198 | D3DXLoadSurfaceFromSurface | |
| 199 | D3DXLoadVolumeFromFileA | |
| 200 | D3DXLoadVolumeFromFileInMemory | |
| 201 | D3DXLoadVolumeFromFileW | |
| 202 | D3DXLoadVolumeFromMemory | |
| 203 | D3DXLoadVolumeFromResourceA | |
| 204 | D3DXLoadVolumeFromResourceW | |
| 205 | D3DXLoadVolumeFromVolume | |
| 206 | D3DXMatrixAffineTransformation | |
| 207 | D3DXMatrixAffineTransformation2D | |
| 208 | D3DXMatrixDecompose | |
| 209 | D3DXMatrixDeterminant | |
| 210 | D3DXMatrixInverse | |
| 211 | D3DXMatrixLookAtLH | |
| 212 | D3DXMatrixLookAtRH | |
| 213 | D3DXMatrixMultiply | |
| 214 | D3DXMatrixMultiplyTranspose | |
| 215 | D3DXMatrixOrthoLH | |
| 216 | D3DXMatrixOrthoOffCenterLH | |
| 217 | D3DXMatrixOrthoOffCenterRH | |
| 218 | D3DXMatrixOrthoRH | |
| 219 | D3DXMatrixPerspectiveFovLH | |
| 220 | D3DXMatrixPerspectiveFovRH | |
| 221 | D3DXMatrixPerspectiveLH | |
| 222 | D3DXMatrixPerspectiveOffCenterLH | |
| 223 | D3DXMatrixPerspectiveOffCenterRH | |
| 224 | D3DXMatrixPerspectiveRH | |
| 225 | D3DXMatrixReflect | |
| 226 | D3DXMatrixRotationAxis | |
| 227 | D3DXMatrixRotationQuaternion | |
| 228 | D3DXMatrixRotationX | |
| 229 | D3DXMatrixRotationY | |
| 230 | D3DXMatrixRotationYawPitchRoll | |
| 231 | D3DXMatrixRotationZ | |
| 232 | D3DXMatrixScaling | |
| 233 | D3DXMatrixShadow | |
| 234 | D3DXMatrixTransformation | |
| 235 | D3DXMatrixTransformation2D | |
| 236 | D3DXMatrixTranslation | |
| 237 | D3DXMatrixTranspose | |
| 238 | D3DXOptimizeFaces | |
| 239 | D3DXOptimizeVertices | |
| 240 | D3DXPlaneFromPointNormal | |
| 241 | D3DXPlaneFromPoints | |
| 242 | D3DXPlaneIntersectLine | |
| 243 | D3DXPlaneNormalize | |
| 244 | D3DXPlaneTransform | |
| 245 | D3DXPlaneTransformArray | |
| 246 | D3DXPreprocessShader | |
| 247 | D3DXPreprocessShaderFromFileA | |
| 248 | D3DXPreprocessShaderFromFileW | |
| 249 | D3DXPreprocessShaderFromResourceA | |
| 250 | D3DXPreprocessShaderFromResourceW | |
| 251 | D3DXQuaternionBaryCentric | |
| 252 | D3DXQuaternionExp | |
| 253 | D3DXQuaternionInverse | |
| 254 | D3DXQuaternionLn | |
| 255 | D3DXQuaternionMultiply | |
| 256 | D3DXQuaternionNormalize | |
| 257 | D3DXQuaternionRotationAxis | |
| 258 | D3DXQuaternionRotationMatrix | |
| 259 | D3DXQuaternionRotationYawPitchRoll | |
| 260 | D3DXQuaternionSlerp | |
| 261 | D3DXQuaternionSquad | |
| 262 | D3DXQuaternionSquadSetup | |
| 263 | D3DXQuaternionToAxisAngle | |
| 264 | D3DXRectPatchSize | |
| 265 | D3DXSHAdd | |
| 266 | D3DXSHDot | |
| 267 | D3DXSHEvalConeLight | |
| 268 | D3DXSHEvalDirection | |
| 269 | D3DXSHEvalDirectionalLight | |
| 270 | D3DXSHEvalHemisphereLight | |
| 271 | D3DXSHEvalSphericalLight | |
| 272 | D3DXSHMultiply2 | |
| 273 | D3DXSHMultiply3 | |
| 274 | D3DXSHMultiply4 | |
| 275 | D3DXSHMultiply5 | |
| 276 | D3DXSHMultiply6 | |
| 277 | D3DXSHPRTCompSplitMeshSC | |
| 278 | D3DXSHPRTCompSuperCluster | |
| 279 | D3DXSHProjectCubeMap | |
| 280 | D3DXSHRotate | |
| 281 | D3DXSHRotateZ | |
| 282 | D3DXSHScale | |
| 283 | D3DXSaveMeshHierarchyToFileA | |
| 284 | D3DXSaveMeshHierarchyToFileW | |
| 285 | D3DXSaveMeshToXA | |
| 286 | D3DXSaveMeshToXW | |
| 287 | D3DXSavePRTBufferToFileA | |
| 288 | D3DXSavePRTBufferToFileW | |
| 289 | D3DXSavePRTCompBufferToFileA | |
| 290 | D3DXSavePRTCompBufferToFileW | |
| 291 | D3DXSaveSurfaceToFileA | |
| 292 | D3DXSaveSurfaceToFileInMemory | |
| 293 | D3DXSaveSurfaceToFileW | |
| 294 | D3DXSaveTextureToFileA | |
| 295 | D3DXSaveTextureToFileInMemory | |
| 296 | D3DXSaveTextureToFileW | |
| 297 | D3DXSaveVolumeToFileA | |
| 298 | D3DXSaveVolumeToFileInMemory | |
| 299 | D3DXSaveVolumeToFileW | |
| 300 | D3DXSimplifyMesh | |
| 301 | D3DXSphereBoundProbe | |
| 302 | D3DXSplitMesh | |
| 303 | D3DXTessellateNPatches | |
| 304 | D3DXTessellateRectPatch | |
| 305 | D3DXTessellateTriPatch | |
| 306 | D3DXTriPatchSize | |
| 307 | D3DXUVAtlasCreate | |
| 308 | D3DXUVAtlasPack | |
| 309 | D3DXUVAtlasPartition | |
| 310 | D3DXValidMesh | |
| 311 | D3DXValidPatchMesh | |
| 312 | D3DXVec2BaryCentric | |
| 313 | D3DXVec2CatmullRom | |
| 314 | D3DXVec2Hermite | |
| 315 | D3DXVec2Normalize | |
| 316 | D3DXVec2Transform | |
| 317 | D3DXVec2TransformArray | |
| 318 | D3DXVec2TransformCoord | |
| 319 | D3DXVec2TransformCoordArray | |
| 320 | D3DXVec2TransformNormal | |
| 321 | D3DXVec2TransformNormalArray | |
| 322 | D3DXVec3BaryCentric | |
| 323 | D3DXVec3CatmullRom | |
| 324 | D3DXVec3Hermite | |
| 325 | D3DXVec3Normalize | |
| 326 | D3DXVec3Project | |
| 327 | D3DXVec3ProjectArray | |
| 328 | D3DXVec3Transform | |
| 329 | D3DXVec3TransformArray | |
| 330 | D3DXVec3TransformCoord | |
| 331 | D3DXVec3TransformCoordArray | |
| 332 | D3DXVec3TransformNormal | |
| 333 | D3DXVec3TransformNormalArray | |
| 334 | D3DXVec3Unproject | |
| 335 | D3DXVec3UnprojectArray | |
| 336 | D3DXVec4BaryCentric | |
| 337 | D3DXVec4CatmullRom | |
| 338 | D3DXVec4Cross | |
| 339 | D3DXVec4Hermite | |
| 340 | D3DXVec4Normalize | |
| 341 | D3DXVec4Transform | |
| 342 | D3DXVec4TransformArray | |
| 343 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_37.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateFragmentLinkerEx | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderConstantTableEx | |
| 169 | D3DXGetShaderInputSemantics | |
| 170 | D3DXGetShaderOutputSemantics | |
| 171 | D3DXGetShaderSamplers | |
| 172 | D3DXGetShaderSize | |
| 173 | D3DXGetShaderVersion | |
| 174 | D3DXGetVertexShaderProfile | |
| 175 | D3DXIntersect | |
| 176 | D3DXIntersectSubset | |
| 177 | D3DXIntersectTri | |
| 178 | D3DXLoadMeshFromXA | |
| 179 | D3DXLoadMeshFromXInMemory | |
| 180 | D3DXLoadMeshFromXResource | |
| 181 | D3DXLoadMeshFromXW | |
| 182 | D3DXLoadMeshFromXof | |
| 183 | D3DXLoadMeshHierarchyFromXA | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory | |
| 185 | D3DXLoadMeshHierarchyFromXW | |
| 186 | D3DXLoadPRTBufferFromFileA | |
| 187 | D3DXLoadPRTBufferFromFileW | |
| 188 | D3DXLoadPRTCompBufferFromFileA | |
| 189 | D3DXLoadPRTCompBufferFromFileW | |
| 190 | D3DXLoadPatchMeshFromXof | |
| 191 | D3DXLoadSkinMeshFromXof | |
| 192 | D3DXLoadSurfaceFromFileA | |
| 193 | D3DXLoadSurfaceFromFileInMemory | |
| 194 | D3DXLoadSurfaceFromFileW | |
| 195 | D3DXLoadSurfaceFromMemory | |
| 196 | D3DXLoadSurfaceFromResourceA | |
| 197 | D3DXLoadSurfaceFromResourceW | |
| 198 | D3DXLoadSurfaceFromSurface | |
| 199 | D3DXLoadVolumeFromFileA | |
| 200 | D3DXLoadVolumeFromFileInMemory | |
| 201 | D3DXLoadVolumeFromFileW | |
| 202 | D3DXLoadVolumeFromMemory | |
| 203 | D3DXLoadVolumeFromResourceA | |
| 204 | D3DXLoadVolumeFromResourceW | |
| 205 | D3DXLoadVolumeFromVolume | |
| 206 | D3DXMatrixAffineTransformation | |
| 207 | D3DXMatrixAffineTransformation2D | |
| 208 | D3DXMatrixDecompose | |
| 209 | D3DXMatrixDeterminant | |
| 210 | D3DXMatrixInverse | |
| 211 | D3DXMatrixLookAtLH | |
| 212 | D3DXMatrixLookAtRH | |
| 213 | D3DXMatrixMultiply | |
| 214 | D3DXMatrixMultiplyTranspose | |
| 215 | D3DXMatrixOrthoLH | |
| 216 | D3DXMatrixOrthoOffCenterLH | |
| 217 | D3DXMatrixOrthoOffCenterRH | |
| 218 | D3DXMatrixOrthoRH | |
| 219 | D3DXMatrixPerspectiveFovLH | |
| 220 | D3DXMatrixPerspectiveFovRH | |
| 221 | D3DXMatrixPerspectiveLH | |
| 222 | D3DXMatrixPerspectiveOffCenterLH | |
| 223 | D3DXMatrixPerspectiveOffCenterRH | |
| 224 | D3DXMatrixPerspectiveRH | |
| 225 | D3DXMatrixReflect | |
| 226 | D3DXMatrixRotationAxis | |
| 227 | D3DXMatrixRotationQuaternion | |
| 228 | D3DXMatrixRotationX | |
| 229 | D3DXMatrixRotationY | |
| 230 | D3DXMatrixRotationYawPitchRoll | |
| 231 | D3DXMatrixRotationZ | |
| 232 | D3DXMatrixScaling | |
| 233 | D3DXMatrixShadow | |
| 234 | D3DXMatrixTransformation | |
| 235 | D3DXMatrixTransformation2D | |
| 236 | D3DXMatrixTranslation | |
| 237 | D3DXMatrixTranspose | |
| 238 | D3DXOptimizeFaces | |
| 239 | D3DXOptimizeVertices | |
| 240 | D3DXPlaneFromPointNormal | |
| 241 | D3DXPlaneFromPoints | |
| 242 | D3DXPlaneIntersectLine | |
| 243 | D3DXPlaneNormalize | |
| 244 | D3DXPlaneTransform | |
| 245 | D3DXPlaneTransformArray | |
| 246 | D3DXPreprocessShader | |
| 247 | D3DXPreprocessShaderFromFileA | |
| 248 | D3DXPreprocessShaderFromFileW | |
| 249 | D3DXPreprocessShaderFromResourceA | |
| 250 | D3DXPreprocessShaderFromResourceW | |
| 251 | D3DXQuaternionBaryCentric | |
| 252 | D3DXQuaternionExp | |
| 253 | D3DXQuaternionInverse | |
| 254 | D3DXQuaternionLn | |
| 255 | D3DXQuaternionMultiply | |
| 256 | D3DXQuaternionNormalize | |
| 257 | D3DXQuaternionRotationAxis | |
| 258 | D3DXQuaternionRotationMatrix | |
| 259 | D3DXQuaternionRotationYawPitchRoll | |
| 260 | D3DXQuaternionSlerp | |
| 261 | D3DXQuaternionSquad | |
| 262 | D3DXQuaternionSquadSetup | |
| 263 | D3DXQuaternionToAxisAngle | |
| 264 | D3DXRectPatchSize | |
| 265 | D3DXSHAdd | |
| 266 | D3DXSHDot | |
| 267 | D3DXSHEvalConeLight | |
| 268 | D3DXSHEvalDirection | |
| 269 | D3DXSHEvalDirectionalLight | |
| 270 | D3DXSHEvalHemisphereLight | |
| 271 | D3DXSHEvalSphericalLight | |
| 272 | D3DXSHMultiply2 | |
| 273 | D3DXSHMultiply3 | |
| 274 | D3DXSHMultiply4 | |
| 275 | D3DXSHMultiply5 | |
| 276 | D3DXSHMultiply6 | |
| 277 | D3DXSHPRTCompSplitMeshSC | |
| 278 | D3DXSHPRTCompSuperCluster | |
| 279 | D3DXSHProjectCubeMap | |
| 280 | D3DXSHRotate | |
| 281 | D3DXSHRotateZ | |
| 282 | D3DXSHScale | |
| 283 | D3DXSaveMeshHierarchyToFileA | |
| 284 | D3DXSaveMeshHierarchyToFileW | |
| 285 | D3DXSaveMeshToXA | |
| 286 | D3DXSaveMeshToXW | |
| 287 | D3DXSavePRTBufferToFileA | |
| 288 | D3DXSavePRTBufferToFileW | |
| 289 | D3DXSavePRTCompBufferToFileA | |
| 290 | D3DXSavePRTCompBufferToFileW | |
| 291 | D3DXSaveSurfaceToFileA | |
| 292 | D3DXSaveSurfaceToFileInMemory | |
| 293 | D3DXSaveSurfaceToFileW | |
| 294 | D3DXSaveTextureToFileA | |
| 295 | D3DXSaveTextureToFileInMemory | |
| 296 | D3DXSaveTextureToFileW | |
| 297 | D3DXSaveVolumeToFileA | |
| 298 | D3DXSaveVolumeToFileInMemory | |
| 299 | D3DXSaveVolumeToFileW | |
| 300 | D3DXSimplifyMesh | |
| 301 | D3DXSphereBoundProbe | |
| 302 | D3DXSplitMesh | |
| 303 | D3DXTessellateNPatches | |
| 304 | D3DXTessellateRectPatch | |
| 305 | D3DXTessellateTriPatch | |
| 306 | D3DXTriPatchSize | |
| 307 | D3DXUVAtlasCreate | |
| 308 | D3DXUVAtlasPack | |
| 309 | D3DXUVAtlasPartition | |
| 310 | D3DXValidMesh | |
| 311 | D3DXValidPatchMesh | |
| 312 | D3DXVec2BaryCentric | |
| 313 | D3DXVec2CatmullRom | |
| 314 | D3DXVec2Hermite | |
| 315 | D3DXVec2Normalize | |
| 316 | D3DXVec2Transform | |
| 317 | D3DXVec2TransformArray | |
| 318 | D3DXVec2TransformCoord | |
| 319 | D3DXVec2TransformCoordArray | |
| 320 | D3DXVec2TransformNormal | |
| 321 | D3DXVec2TransformNormalArray | |
| 322 | D3DXVec3BaryCentric | |
| 323 | D3DXVec3CatmullRom | |
| 324 | D3DXVec3Hermite | |
| 325 | D3DXVec3Normalize | |
| 326 | D3DXVec3Project | |
| 327 | D3DXVec3ProjectArray | |
| 328 | D3DXVec3Transform | |
| 329 | D3DXVec3TransformArray | |
| 330 | D3DXVec3TransformCoord | |
| 331 | D3DXVec3TransformCoordArray | |
| 332 | D3DXVec3TransformNormal | |
| 333 | D3DXVec3TransformNormalArray | |
| 334 | D3DXVec3Unproject | |
| 335 | D3DXVec3UnprojectArray | |
| 336 | D3DXVec4BaryCentric | |
| 337 | D3DXVec4CatmullRom | |
| 338 | D3DXVec4Cross | |
| 339 | D3DXVec4Hermite | |
| 340 | D3DXVec4Normalize | |
| 341 | D3DXVec4Transform | |
| 342 | D3DXVec4TransformArray | |
| 343 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_38.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateFragmentLinkerEx | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderConstantTableEx | |
| 169 | D3DXGetShaderInputSemantics | |
| 170 | D3DXGetShaderOutputSemantics | |
| 171 | D3DXGetShaderSamplers | |
| 172 | D3DXGetShaderSize | |
| 173 | D3DXGetShaderVersion | |
| 174 | D3DXGetVertexShaderProfile | |
| 175 | D3DXIntersect | |
| 176 | D3DXIntersectSubset | |
| 177 | D3DXIntersectTri | |
| 178 | D3DXLoadMeshFromXA | |
| 179 | D3DXLoadMeshFromXInMemory | |
| 180 | D3DXLoadMeshFromXResource | |
| 181 | D3DXLoadMeshFromXW | |
| 182 | D3DXLoadMeshFromXof | |
| 183 | D3DXLoadMeshHierarchyFromXA | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory | |
| 185 | D3DXLoadMeshHierarchyFromXW | |
| 186 | D3DXLoadPRTBufferFromFileA | |
| 187 | D3DXLoadPRTBufferFromFileW | |
| 188 | D3DXLoadPRTCompBufferFromFileA | |
| 189 | D3DXLoadPRTCompBufferFromFileW | |
| 190 | D3DXLoadPatchMeshFromXof | |
| 191 | D3DXLoadSkinMeshFromXof | |
| 192 | D3DXLoadSurfaceFromFileA | |
| 193 | D3DXLoadSurfaceFromFileInMemory | |
| 194 | D3DXLoadSurfaceFromFileW | |
| 195 | D3DXLoadSurfaceFromMemory | |
| 196 | D3DXLoadSurfaceFromResourceA | |
| 197 | D3DXLoadSurfaceFromResourceW | |
| 198 | D3DXLoadSurfaceFromSurface | |
| 199 | D3DXLoadVolumeFromFileA | |
| 200 | D3DXLoadVolumeFromFileInMemory | |
| 201 | D3DXLoadVolumeFromFileW | |
| 202 | D3DXLoadVolumeFromMemory | |
| 203 | D3DXLoadVolumeFromResourceA | |
| 204 | D3DXLoadVolumeFromResourceW | |
| 205 | D3DXLoadVolumeFromVolume | |
| 206 | D3DXMatrixAffineTransformation | |
| 207 | D3DXMatrixAffineTransformation2D | |
| 208 | D3DXMatrixDecompose | |
| 209 | D3DXMatrixDeterminant | |
| 210 | D3DXMatrixInverse | |
| 211 | D3DXMatrixLookAtLH | |
| 212 | D3DXMatrixLookAtRH | |
| 213 | D3DXMatrixMultiply | |
| 214 | D3DXMatrixMultiplyTranspose | |
| 215 | D3DXMatrixOrthoLH | |
| 216 | D3DXMatrixOrthoOffCenterLH | |
| 217 | D3DXMatrixOrthoOffCenterRH | |
| 218 | D3DXMatrixOrthoRH | |
| 219 | D3DXMatrixPerspectiveFovLH | |
| 220 | D3DXMatrixPerspectiveFovRH | |
| 221 | D3DXMatrixPerspectiveLH | |
| 222 | D3DXMatrixPerspectiveOffCenterLH | |
| 223 | D3DXMatrixPerspectiveOffCenterRH | |
| 224 | D3DXMatrixPerspectiveRH | |
| 225 | D3DXMatrixReflect | |
| 226 | D3DXMatrixRotationAxis | |
| 227 | D3DXMatrixRotationQuaternion | |
| 228 | D3DXMatrixRotationX | |
| 229 | D3DXMatrixRotationY | |
| 230 | D3DXMatrixRotationYawPitchRoll | |
| 231 | D3DXMatrixRotationZ | |
| 232 | D3DXMatrixScaling | |
| 233 | D3DXMatrixShadow | |
| 234 | D3DXMatrixTransformation | |
| 235 | D3DXMatrixTransformation2D | |
| 236 | D3DXMatrixTranslation | |
| 237 | D3DXMatrixTranspose | |
| 238 | D3DXOptimizeFaces | |
| 239 | D3DXOptimizeVertices | |
| 240 | D3DXPlaneFromPointNormal | |
| 241 | D3DXPlaneFromPoints | |
| 242 | D3DXPlaneIntersectLine | |
| 243 | D3DXPlaneNormalize | |
| 244 | D3DXPlaneTransform | |
| 245 | D3DXPlaneTransformArray | |
| 246 | D3DXPreprocessShader | |
| 247 | D3DXPreprocessShaderFromFileA | |
| 248 | D3DXPreprocessShaderFromFileW | |
| 249 | D3DXPreprocessShaderFromResourceA | |
| 250 | D3DXPreprocessShaderFromResourceW | |
| 251 | D3DXQuaternionBaryCentric | |
| 252 | D3DXQuaternionExp | |
| 253 | D3DXQuaternionInverse | |
| 254 | D3DXQuaternionLn | |
| 255 | D3DXQuaternionMultiply | |
| 256 | D3DXQuaternionNormalize | |
| 257 | D3DXQuaternionRotationAxis | |
| 258 | D3DXQuaternionRotationMatrix | |
| 259 | D3DXQuaternionRotationYawPitchRoll | |
| 260 | D3DXQuaternionSlerp | |
| 261 | D3DXQuaternionSquad | |
| 262 | D3DXQuaternionSquadSetup | |
| 263 | D3DXQuaternionToAxisAngle | |
| 264 | D3DXRectPatchSize | |
| 265 | D3DXSHAdd | |
| 266 | D3DXSHDot | |
| 267 | D3DXSHEvalConeLight | |
| 268 | D3DXSHEvalDirection | |
| 269 | D3DXSHEvalDirectionalLight | |
| 270 | D3DXSHEvalHemisphereLight | |
| 271 | D3DXSHEvalSphericalLight | |
| 272 | D3DXSHMultiply2 | |
| 273 | D3DXSHMultiply3 | |
| 274 | D3DXSHMultiply4 | |
| 275 | D3DXSHMultiply5 | |
| 276 | D3DXSHMultiply6 | |
| 277 | D3DXSHPRTCompSplitMeshSC | |
| 278 | D3DXSHPRTCompSuperCluster | |
| 279 | D3DXSHProjectCubeMap | |
| 280 | D3DXSHRotate | |
| 281 | D3DXSHRotateZ | |
| 282 | D3DXSHScale | |
| 283 | D3DXSaveMeshHierarchyToFileA | |
| 284 | D3DXSaveMeshHierarchyToFileW | |
| 285 | D3DXSaveMeshToXA | |
| 286 | D3DXSaveMeshToXW | |
| 287 | D3DXSavePRTBufferToFileA | |
| 288 | D3DXSavePRTBufferToFileW | |
| 289 | D3DXSavePRTCompBufferToFileA | |
| 290 | D3DXSavePRTCompBufferToFileW | |
| 291 | D3DXSaveSurfaceToFileA | |
| 292 | D3DXSaveSurfaceToFileInMemory | |
| 293 | D3DXSaveSurfaceToFileW | |
| 294 | D3DXSaveTextureToFileA | |
| 295 | D3DXSaveTextureToFileInMemory | |
| 296 | D3DXSaveTextureToFileW | |
| 297 | D3DXSaveVolumeToFileA | |
| 298 | D3DXSaveVolumeToFileInMemory | |
| 299 | D3DXSaveVolumeToFileW | |
| 300 | D3DXSimplifyMesh | |
| 301 | D3DXSphereBoundProbe | |
| 302 | D3DXSplitMesh | |
| 303 | D3DXTessellateNPatches | |
| 304 | D3DXTessellateRectPatch | |
| 305 | D3DXTessellateTriPatch | |
| 306 | D3DXTriPatchSize | |
| 307 | D3DXUVAtlasCreate | |
| 308 | D3DXUVAtlasPack | |
| 309 | D3DXUVAtlasPartition | |
| 310 | D3DXValidMesh | |
| 311 | D3DXValidPatchMesh | |
| 312 | D3DXVec2BaryCentric | |
| 313 | D3DXVec2CatmullRom | |
| 314 | D3DXVec2Hermite | |
| 315 | D3DXVec2Normalize | |
| 316 | D3DXVec2Transform | |
| 317 | D3DXVec2TransformArray | |
| 318 | D3DXVec2TransformCoord | |
| 319 | D3DXVec2TransformCoordArray | |
| 320 | D3DXVec2TransformNormal | |
| 321 | D3DXVec2TransformNormalArray | |
| 322 | D3DXVec3BaryCentric | |
| 323 | D3DXVec3CatmullRom | |
| 324 | D3DXVec3Hermite | |
| 325 | D3DXVec3Normalize | |
| 326 | D3DXVec3Project | |
| 327 | D3DXVec3ProjectArray | |
| 328 | D3DXVec3Transform | |
| 329 | D3DXVec3TransformArray | |
| 330 | D3DXVec3TransformCoord | |
| 331 | D3DXVec3TransformCoordArray | |
| 332 | D3DXVec3TransformNormal | |
| 333 | D3DXVec3TransformNormalArray | |
| 334 | D3DXVec3Unproject | |
| 335 | D3DXVec3UnprojectArray | |
| 336 | D3DXVec4BaryCentric | |
| 337 | D3DXVec4CatmullRom | |
| 338 | D3DXVec4Cross | |
| 339 | D3DXVec4Hermite | |
| 340 | D3DXVec4Normalize | |
| 341 | D3DXVec4Transform | |
| 342 | D3DXVec4TransformArray | |
| 343 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_39.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateFragmentLinkerEx | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderConstantTableEx | |
| 169 | D3DXGetShaderInputSemantics | |
| 170 | D3DXGetShaderOutputSemantics | |
| 171 | D3DXGetShaderSamplers | |
| 172 | D3DXGetShaderSize | |
| 173 | D3DXGetShaderVersion | |
| 174 | D3DXGetVertexShaderProfile | |
| 175 | D3DXIntersect | |
| 176 | D3DXIntersectSubset | |
| 177 | D3DXIntersectTri | |
| 178 | D3DXLoadMeshFromXA | |
| 179 | D3DXLoadMeshFromXInMemory | |
| 180 | D3DXLoadMeshFromXResource | |
| 181 | D3DXLoadMeshFromXW | |
| 182 | D3DXLoadMeshFromXof | |
| 183 | D3DXLoadMeshHierarchyFromXA | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory | |
| 185 | D3DXLoadMeshHierarchyFromXW | |
| 186 | D3DXLoadPRTBufferFromFileA | |
| 187 | D3DXLoadPRTBufferFromFileW | |
| 188 | D3DXLoadPRTCompBufferFromFileA | |
| 189 | D3DXLoadPRTCompBufferFromFileW | |
| 190 | D3DXLoadPatchMeshFromXof | |
| 191 | D3DXLoadSkinMeshFromXof | |
| 192 | D3DXLoadSurfaceFromFileA | |
| 193 | D3DXLoadSurfaceFromFileInMemory | |
| 194 | D3DXLoadSurfaceFromFileW | |
| 195 | D3DXLoadSurfaceFromMemory | |
| 196 | D3DXLoadSurfaceFromResourceA | |
| 197 | D3DXLoadSurfaceFromResourceW | |
| 198 | D3DXLoadSurfaceFromSurface | |
| 199 | D3DXLoadVolumeFromFileA | |
| 200 | D3DXLoadVolumeFromFileInMemory | |
| 201 | D3DXLoadVolumeFromFileW | |
| 202 | D3DXLoadVolumeFromMemory | |
| 203 | D3DXLoadVolumeFromResourceA | |
| 204 | D3DXLoadVolumeFromResourceW | |
| 205 | D3DXLoadVolumeFromVolume | |
| 206 | D3DXMatrixAffineTransformation | |
| 207 | D3DXMatrixAffineTransformation2D | |
| 208 | D3DXMatrixDecompose | |
| 209 | D3DXMatrixDeterminant | |
| 210 | D3DXMatrixInverse | |
| 211 | D3DXMatrixLookAtLH | |
| 212 | D3DXMatrixLookAtRH | |
| 213 | D3DXMatrixMultiply | |
| 214 | D3DXMatrixMultiplyTranspose | |
| 215 | D3DXMatrixOrthoLH | |
| 216 | D3DXMatrixOrthoOffCenterLH | |
| 217 | D3DXMatrixOrthoOffCenterRH | |
| 218 | D3DXMatrixOrthoRH | |
| 219 | D3DXMatrixPerspectiveFovLH | |
| 220 | D3DXMatrixPerspectiveFovRH | |
| 221 | D3DXMatrixPerspectiveLH | |
| 222 | D3DXMatrixPerspectiveOffCenterLH | |
| 223 | D3DXMatrixPerspectiveOffCenterRH | |
| 224 | D3DXMatrixPerspectiveRH | |
| 225 | D3DXMatrixReflect | |
| 226 | D3DXMatrixRotationAxis | |
| 227 | D3DXMatrixRotationQuaternion | |
| 228 | D3DXMatrixRotationX | |
| 229 | D3DXMatrixRotationY | |
| 230 | D3DXMatrixRotationYawPitchRoll | |
| 231 | D3DXMatrixRotationZ | |
| 232 | D3DXMatrixScaling | |
| 233 | D3DXMatrixShadow | |
| 234 | D3DXMatrixTransformation | |
| 235 | D3DXMatrixTransformation2D | |
| 236 | D3DXMatrixTranslation | |
| 237 | D3DXMatrixTranspose | |
| 238 | D3DXOptimizeFaces | |
| 239 | D3DXOptimizeVertices | |
| 240 | D3DXPlaneFromPointNormal | |
| 241 | D3DXPlaneFromPoints | |
| 242 | D3DXPlaneIntersectLine | |
| 243 | D3DXPlaneNormalize | |
| 244 | D3DXPlaneTransform | |
| 245 | D3DXPlaneTransformArray | |
| 246 | D3DXPreprocessShader | |
| 247 | D3DXPreprocessShaderFromFileA | |
| 248 | D3DXPreprocessShaderFromFileW | |
| 249 | D3DXPreprocessShaderFromResourceA | |
| 250 | D3DXPreprocessShaderFromResourceW | |
| 251 | D3DXQuaternionBaryCentric | |
| 252 | D3DXQuaternionExp | |
| 253 | D3DXQuaternionInverse | |
| 254 | D3DXQuaternionLn | |
| 255 | D3DXQuaternionMultiply | |
| 256 | D3DXQuaternionNormalize | |
| 257 | D3DXQuaternionRotationAxis | |
| 258 | D3DXQuaternionRotationMatrix | |
| 259 | D3DXQuaternionRotationYawPitchRoll | |
| 260 | D3DXQuaternionSlerp | |
| 261 | D3DXQuaternionSquad | |
| 262 | D3DXQuaternionSquadSetup | |
| 263 | D3DXQuaternionToAxisAngle | |
| 264 | D3DXRectPatchSize | |
| 265 | D3DXSHAdd | |
| 266 | D3DXSHDot | |
| 267 | D3DXSHEvalConeLight | |
| 268 | D3DXSHEvalDirection | |
| 269 | D3DXSHEvalDirectionalLight | |
| 270 | D3DXSHEvalHemisphereLight | |
| 271 | D3DXSHEvalSphericalLight | |
| 272 | D3DXSHMultiply2 | |
| 273 | D3DXSHMultiply3 | |
| 274 | D3DXSHMultiply4 | |
| 275 | D3DXSHMultiply5 | |
| 276 | D3DXSHMultiply6 | |
| 277 | D3DXSHPRTCompSplitMeshSC | |
| 278 | D3DXSHPRTCompSuperCluster | |
| 279 | D3DXSHProjectCubeMap | |
| 280 | D3DXSHRotate | |
| 281 | D3DXSHRotateZ | |
| 282 | D3DXSHScale | |
| 283 | D3DXSaveMeshHierarchyToFileA | |
| 284 | D3DXSaveMeshHierarchyToFileW | |
| 285 | D3DXSaveMeshToXA | |
| 286 | D3DXSaveMeshToXW | |
| 287 | D3DXSavePRTBufferToFileA | |
| 288 | D3DXSavePRTBufferToFileW | |
| 289 | D3DXSavePRTCompBufferToFileA | |
| 290 | D3DXSavePRTCompBufferToFileW | |
| 291 | D3DXSaveSurfaceToFileA | |
| 292 | D3DXSaveSurfaceToFileInMemory | |
| 293 | D3DXSaveSurfaceToFileW | |
| 294 | D3DXSaveTextureToFileA | |
| 295 | D3DXSaveTextureToFileInMemory | |
| 296 | D3DXSaveTextureToFileW | |
| 297 | D3DXSaveVolumeToFileA | |
| 298 | D3DXSaveVolumeToFileInMemory | |
| 299 | D3DXSaveVolumeToFileW | |
| 300 | D3DXSimplifyMesh | |
| 301 | D3DXSphereBoundProbe | |
| 302 | D3DXSplitMesh | |
| 303 | D3DXTessellateNPatches | |
| 304 | D3DXTessellateRectPatch | |
| 305 | D3DXTessellateTriPatch | |
| 306 | D3DXTriPatchSize | |
| 307 | D3DXUVAtlasCreate | |
| 308 | D3DXUVAtlasPack | |
| 309 | D3DXUVAtlasPartition | |
| 310 | D3DXValidMesh | |
| 311 | D3DXValidPatchMesh | |
| 312 | D3DXVec2BaryCentric | |
| 313 | D3DXVec2CatmullRom | |
| 314 | D3DXVec2Hermite | |
| 315 | D3DXVec2Normalize | |
| 316 | D3DXVec2Transform | |
| 317 | D3DXVec2TransformArray | |
| 318 | D3DXVec2TransformCoord | |
| 319 | D3DXVec2TransformCoordArray | |
| 320 | D3DXVec2TransformNormal | |
| 321 | D3DXVec2TransformNormalArray | |
| 322 | D3DXVec3BaryCentric | |
| 323 | D3DXVec3CatmullRom | |
| 324 | D3DXVec3Hermite | |
| 325 | D3DXVec3Normalize | |
| 326 | D3DXVec3Project | |
| 327 | D3DXVec3ProjectArray | |
| 328 | D3DXVec3Transform | |
| 329 | D3DXVec3TransformArray | |
| 330 | D3DXVec3TransformCoord | |
| 331 | D3DXVec3TransformCoordArray | |
| 332 | D3DXVec3TransformNormal | |
| 333 | D3DXVec3TransformNormalArray | |
| 334 | D3DXVec3Unproject | |
| 335 | D3DXVec3UnprojectArray | |
| 336 | D3DXVec4BaryCentric | |
| 337 | D3DXVec4CatmullRom | |
| 338 | D3DXVec4Cross | |
| 339 | D3DXVec4Hermite | |
| 340 | D3DXVec4Normalize | |
| 341 | D3DXVec4Transform | |
| 342 | D3DXVec4TransformArray | |
| 343 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_40.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateFragmentLinkerEx | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderConstantTableEx | |
| 169 | D3DXGetShaderInputSemantics | |
| 170 | D3DXGetShaderOutputSemantics | |
| 171 | D3DXGetShaderSamplers | |
| 172 | D3DXGetShaderSize | |
| 173 | D3DXGetShaderVersion | |
| 174 | D3DXGetVertexShaderProfile | |
| 175 | D3DXIntersect | |
| 176 | D3DXIntersectSubset | |
| 177 | D3DXIntersectTri | |
| 178 | D3DXLoadMeshFromXA | |
| 179 | D3DXLoadMeshFromXInMemory | |
| 180 | D3DXLoadMeshFromXResource | |
| 181 | D3DXLoadMeshFromXW | |
| 182 | D3DXLoadMeshFromXof | |
| 183 | D3DXLoadMeshHierarchyFromXA | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory | |
| 185 | D3DXLoadMeshHierarchyFromXW | |
| 186 | D3DXLoadPRTBufferFromFileA | |
| 187 | D3DXLoadPRTBufferFromFileW | |
| 188 | D3DXLoadPRTCompBufferFromFileA | |
| 189 | D3DXLoadPRTCompBufferFromFileW | |
| 190 | D3DXLoadPatchMeshFromXof | |
| 191 | D3DXLoadSkinMeshFromXof | |
| 192 | D3DXLoadSurfaceFromFileA | |
| 193 | D3DXLoadSurfaceFromFileInMemory | |
| 194 | D3DXLoadSurfaceFromFileW | |
| 195 | D3DXLoadSurfaceFromMemory | |
| 196 | D3DXLoadSurfaceFromResourceA | |
| 197 | D3DXLoadSurfaceFromResourceW | |
| 198 | D3DXLoadSurfaceFromSurface | |
| 199 | D3DXLoadVolumeFromFileA | |
| 200 | D3DXLoadVolumeFromFileInMemory | |
| 201 | D3DXLoadVolumeFromFileW | |
| 202 | D3DXLoadVolumeFromMemory | |
| 203 | D3DXLoadVolumeFromResourceA | |
| 204 | D3DXLoadVolumeFromResourceW | |
| 205 | D3DXLoadVolumeFromVolume | |
| 206 | D3DXMatrixAffineTransformation | |
| 207 | D3DXMatrixAffineTransformation2D | |
| 208 | D3DXMatrixDecompose | |
| 209 | D3DXMatrixDeterminant | |
| 210 | D3DXMatrixInverse | |
| 211 | D3DXMatrixLookAtLH | |
| 212 | D3DXMatrixLookAtRH | |
| 213 | D3DXMatrixMultiply | |
| 214 | D3DXMatrixMultiplyTranspose | |
| 215 | D3DXMatrixOrthoLH | |
| 216 | D3DXMatrixOrthoOffCenterLH | |
| 217 | D3DXMatrixOrthoOffCenterRH | |
| 218 | D3DXMatrixOrthoRH | |
| 219 | D3DXMatrixPerspectiveFovLH | |
| 220 | D3DXMatrixPerspectiveFovRH | |
| 221 | D3DXMatrixPerspectiveLH | |
| 222 | D3DXMatrixPerspectiveOffCenterLH | |
| 223 | D3DXMatrixPerspectiveOffCenterRH | |
| 224 | D3DXMatrixPerspectiveRH | |
| 225 | D3DXMatrixReflect | |
| 226 | D3DXMatrixRotationAxis | |
| 227 | D3DXMatrixRotationQuaternion | |
| 228 | D3DXMatrixRotationX | |
| 229 | D3DXMatrixRotationY | |
| 230 | D3DXMatrixRotationYawPitchRoll | |
| 231 | D3DXMatrixRotationZ | |
| 232 | D3DXMatrixScaling | |
| 233 | D3DXMatrixShadow | |
| 234 | D3DXMatrixTransformation | |
| 235 | D3DXMatrixTransformation2D | |
| 236 | D3DXMatrixTranslation | |
| 237 | D3DXMatrixTranspose | |
| 238 | D3DXOptimizeFaces | |
| 239 | D3DXOptimizeVertices | |
| 240 | D3DXPlaneFromPointNormal | |
| 241 | D3DXPlaneFromPoints | |
| 242 | D3DXPlaneIntersectLine | |
| 243 | D3DXPlaneNormalize | |
| 244 | D3DXPlaneTransform | |
| 245 | D3DXPlaneTransformArray | |
| 246 | D3DXPreprocessShader | |
| 247 | D3DXPreprocessShaderFromFileA | |
| 248 | D3DXPreprocessShaderFromFileW | |
| 249 | D3DXPreprocessShaderFromResourceA | |
| 250 | D3DXPreprocessShaderFromResourceW | |
| 251 | D3DXQuaternionBaryCentric | |
| 252 | D3DXQuaternionExp | |
| 253 | D3DXQuaternionInverse | |
| 254 | D3DXQuaternionLn | |
| 255 | D3DXQuaternionMultiply | |
| 256 | D3DXQuaternionNormalize | |
| 257 | D3DXQuaternionRotationAxis | |
| 258 | D3DXQuaternionRotationMatrix | |
| 259 | D3DXQuaternionRotationYawPitchRoll | |
| 260 | D3DXQuaternionSlerp | |
| 261 | D3DXQuaternionSquad | |
| 262 | D3DXQuaternionSquadSetup | |
| 263 | D3DXQuaternionToAxisAngle | |
| 264 | D3DXRectPatchSize | |
| 265 | D3DXSHAdd | |
| 266 | D3DXSHDot | |
| 267 | D3DXSHEvalConeLight | |
| 268 | D3DXSHEvalDirection | |
| 269 | D3DXSHEvalDirectionalLight | |
| 270 | D3DXSHEvalHemisphereLight | |
| 271 | D3DXSHEvalSphericalLight | |
| 272 | D3DXSHMultiply2 | |
| 273 | D3DXSHMultiply3 | |
| 274 | D3DXSHMultiply4 | |
| 275 | D3DXSHMultiply5 | |
| 276 | D3DXSHMultiply6 | |
| 277 | D3DXSHPRTCompSplitMeshSC | |
| 278 | D3DXSHPRTCompSuperCluster | |
| 279 | D3DXSHProjectCubeMap | |
| 280 | D3DXSHRotate | |
| 281 | D3DXSHRotateZ | |
| 282 | D3DXSHScale | |
| 283 | D3DXSaveMeshHierarchyToFileA | |
| 284 | D3DXSaveMeshHierarchyToFileW | |
| 285 | D3DXSaveMeshToXA | |
| 286 | D3DXSaveMeshToXW | |
| 287 | D3DXSavePRTBufferToFileA | |
| 288 | D3DXSavePRTBufferToFileW | |
| 289 | D3DXSavePRTCompBufferToFileA | |
| 290 | D3DXSavePRTCompBufferToFileW | |
| 291 | D3DXSaveSurfaceToFileA | |
| 292 | D3DXSaveSurfaceToFileInMemory | |
| 293 | D3DXSaveSurfaceToFileW | |
| 294 | D3DXSaveTextureToFileA | |
| 295 | D3DXSaveTextureToFileInMemory | |
| 296 | D3DXSaveTextureToFileW | |
| 297 | D3DXSaveVolumeToFileA | |
| 298 | D3DXSaveVolumeToFileInMemory | |
| 299 | D3DXSaveVolumeToFileW | |
| 300 | D3DXSimplifyMesh | |
| 301 | D3DXSphereBoundProbe | |
| 302 | D3DXSplitMesh | |
| 303 | D3DXTessellateNPatches | |
| 304 | D3DXTessellateRectPatch | |
| 305 | D3DXTessellateTriPatch | |
| 306 | D3DXTriPatchSize | |
| 307 | D3DXUVAtlasCreate | |
| 308 | D3DXUVAtlasPack | |
| 309 | D3DXUVAtlasPartition | |
| 310 | D3DXValidMesh | |
| 311 | D3DXValidPatchMesh | |
| 312 | D3DXVec2BaryCentric | |
| 313 | D3DXVec2CatmullRom | |
| 314 | D3DXVec2Hermite | |
| 315 | D3DXVec2Normalize | |
| 316 | D3DXVec2Transform | |
| 317 | D3DXVec2TransformArray | |
| 318 | D3DXVec2TransformCoord | |
| 319 | D3DXVec2TransformCoordArray | |
| 320 | D3DXVec2TransformNormal | |
| 321 | D3DXVec2TransformNormalArray | |
| 322 | D3DXVec3BaryCentric | |
| 323 | D3DXVec3CatmullRom | |
| 324 | D3DXVec3Hermite | |
| 325 | D3DXVec3Normalize | |
| 326 | D3DXVec3Project | |
| 327 | D3DXVec3ProjectArray | |
| 328 | D3DXVec3Transform | |
| 329 | D3DXVec3TransformArray | |
| 330 | D3DXVec3TransformCoord | |
| 331 | D3DXVec3TransformCoordArray | |
| 332 | D3DXVec3TransformNormal | |
| 333 | D3DXVec3TransformNormalArray | |
| 334 | D3DXVec3Unproject | |
| 335 | D3DXVec3UnprojectArray | |
| 336 | D3DXVec4BaryCentric | |
| 337 | D3DXVec4CatmullRom | |
| 338 | D3DXVec4Cross | |
| 339 | D3DXVec4Hermite | |
| 340 | D3DXVec4Normalize | |
| 341 | D3DXVec4Transform | |
| 342 | D3DXVec4TransformArray | |
| 343 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_41.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateFragmentLinker | |
| 77 | D3DXCreateFragmentLinkerEx | |
| 78 | D3DXCreateKeyframedAnimationSet | |
| 79 | D3DXCreateLine | |
| 80 | D3DXCreateMatrixStack | |
| 81 | D3DXCreateMesh | |
| 82 | D3DXCreateMeshFVF | |
| 83 | D3DXCreateNPatchMesh | |
| 84 | D3DXCreatePMeshFromStream | |
| 85 | D3DXCreatePRTBuffer | |
| 86 | D3DXCreatePRTBufferTex | |
| 87 | D3DXCreatePRTCompBuffer | |
| 88 | D3DXCreatePRTEngine | |
| 89 | D3DXCreatePatchMesh | |
| 90 | D3DXCreatePolygon | |
| 91 | D3DXCreateRenderToEnvMap | |
| 92 | D3DXCreateRenderToSurface | |
| 93 | D3DXCreateSPMesh | |
| 94 | D3DXCreateSkinInfo | |
| 95 | D3DXCreateSkinInfoFVF | |
| 96 | D3DXCreateSkinInfoFromBlendedMesh | |
| 97 | D3DXCreateSphere | |
| 98 | D3DXCreateSprite | |
| 99 | D3DXCreateTeapot | |
| 100 | D3DXCreateTextA | |
| 101 | D3DXCreateTextW | |
| 102 | D3DXCreateTexture | |
| 103 | D3DXCreateTextureFromFileA | |
| 104 | D3DXCreateTextureFromFileExA | |
| 105 | D3DXCreateTextureFromFileExW | |
| 106 | D3DXCreateTextureFromFileInMemory | |
| 107 | D3DXCreateTextureFromFileInMemoryEx | |
| 108 | D3DXCreateTextureFromFileW | |
| 109 | D3DXCreateTextureFromResourceA | |
| 110 | D3DXCreateTextureFromResourceExA | |
| 111 | D3DXCreateTextureFromResourceExW | |
| 112 | D3DXCreateTextureFromResourceW | |
| 113 | D3DXCreateTextureGutterHelper | |
| 114 | D3DXCreateTextureShader | |
| 115 | D3DXCreateTorus | |
| 116 | D3DXCreateVolumeTexture | |
| 117 | D3DXCreateVolumeTextureFromFileA | |
| 118 | D3DXCreateVolumeTextureFromFileExA | |
| 119 | D3DXCreateVolumeTextureFromFileExW | |
| 120 | D3DXCreateVolumeTextureFromFileInMemory | |
| 121 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 122 | D3DXCreateVolumeTextureFromFileW | |
| 123 | D3DXCreateVolumeTextureFromResourceA | |
| 124 | D3DXCreateVolumeTextureFromResourceExA | |
| 125 | D3DXCreateVolumeTextureFromResourceExW | |
| 126 | D3DXCreateVolumeTextureFromResourceW | |
| 127 | D3DXDebugMute | |
| 128 | D3DXDeclaratorFromFVF | |
| 129 | D3DXDisassembleEffect | |
| 130 | D3DXDisassembleShader | |
| 131 | D3DXFVFFromDeclarator | |
| 132 | D3DXFileCreate | |
| 133 | D3DXFillCubeTexture | |
| 134 | D3DXFillCubeTextureTX | |
| 135 | D3DXFillTexture | |
| 136 | D3DXFillTextureTX | |
| 137 | D3DXFillVolumeTexture | |
| 138 | D3DXFillVolumeTextureTX | |
| 139 | D3DXFilterTexture | |
| 140 | D3DXFindShaderComment | |
| 141 | D3DXFloat16To32Array | |
| 142 | D3DXFloat32To16Array | |
| 143 | D3DXFrameAppendChild | |
| 144 | D3DXFrameCalculateBoundingSphere | |
| 145 | D3DXFrameDestroy | |
| 146 | D3DXFrameFind | |
| 147 | D3DXFrameNumNamedMatrices | |
| 148 | D3DXFrameRegisterNamedMatrices | |
| 149 | D3DXFresnelTerm | |
| 150 | D3DXGatherFragments | |
| 151 | D3DXGatherFragmentsFromFileA | |
| 152 | D3DXGatherFragmentsFromFileW | |
| 153 | D3DXGatherFragmentsFromResourceA | |
| 154 | D3DXGatherFragmentsFromResourceW | |
| 155 | D3DXGenerateOutputDecl | |
| 156 | D3DXGeneratePMesh | |
| 157 | D3DXGetDeclLength | |
| 158 | D3DXGetDeclVertexSize | |
| 159 | D3DXGetDriverLevel | |
| 160 | D3DXGetFVFVertexSize | |
| 161 | D3DXGetImageInfoFromFileA | |
| 162 | D3DXGetImageInfoFromFileInMemory | |
| 163 | D3DXGetImageInfoFromFileW | |
| 164 | D3DXGetImageInfoFromResourceA | |
| 165 | D3DXGetImageInfoFromResourceW | |
| 166 | D3DXGetPixelShaderProfile | |
| 167 | D3DXGetShaderConstantTable | |
| 168 | D3DXGetShaderConstantTableEx | |
| 169 | D3DXGetShaderInputSemantics | |
| 170 | D3DXGetShaderOutputSemantics | |
| 171 | D3DXGetShaderSamplers | |
| 172 | D3DXGetShaderSize | |
| 173 | D3DXGetShaderVersion | |
| 174 | D3DXGetVertexShaderProfile | |
| 175 | D3DXIntersect | |
| 176 | D3DXIntersectSubset | |
| 177 | D3DXIntersectTri | |
| 178 | D3DXLoadMeshFromXA | |
| 179 | D3DXLoadMeshFromXInMemory | |
| 180 | D3DXLoadMeshFromXResource | |
| 181 | D3DXLoadMeshFromXW | |
| 182 | D3DXLoadMeshFromXof | |
| 183 | D3DXLoadMeshHierarchyFromXA | |
| 184 | D3DXLoadMeshHierarchyFromXInMemory | |
| 185 | D3DXLoadMeshHierarchyFromXW | |
| 186 | D3DXLoadPRTBufferFromFileA | |
| 187 | D3DXLoadPRTBufferFromFileW | |
| 188 | D3DXLoadPRTCompBufferFromFileA | |
| 189 | D3DXLoadPRTCompBufferFromFileW | |
| 190 | D3DXLoadPatchMeshFromXof | |
| 191 | D3DXLoadSkinMeshFromXof | |
| 192 | D3DXLoadSurfaceFromFileA | |
| 193 | D3DXLoadSurfaceFromFileInMemory | |
| 194 | D3DXLoadSurfaceFromFileW | |
| 195 | D3DXLoadSurfaceFromMemory | |
| 196 | D3DXLoadSurfaceFromResourceA | |
| 197 | D3DXLoadSurfaceFromResourceW | |
| 198 | D3DXLoadSurfaceFromSurface | |
| 199 | D3DXLoadVolumeFromFileA | |
| 200 | D3DXLoadVolumeFromFileInMemory | |
| 201 | D3DXLoadVolumeFromFileW | |
| 202 | D3DXLoadVolumeFromMemory | |
| 203 | D3DXLoadVolumeFromResourceA | |
| 204 | D3DXLoadVolumeFromResourceW | |
| 205 | D3DXLoadVolumeFromVolume | |
| 206 | D3DXMatrixAffineTransformation | |
| 207 | D3DXMatrixAffineTransformation2D | |
| 208 | D3DXMatrixDecompose | |
| 209 | D3DXMatrixDeterminant | |
| 210 | D3DXMatrixInverse | |
| 211 | D3DXMatrixLookAtLH | |
| 212 | D3DXMatrixLookAtRH | |
| 213 | D3DXMatrixMultiply | |
| 214 | D3DXMatrixMultiplyTranspose | |
| 215 | D3DXMatrixOrthoLH | |
| 216 | D3DXMatrixOrthoOffCenterLH | |
| 217 | D3DXMatrixOrthoOffCenterRH | |
| 218 | D3DXMatrixOrthoRH | |
| 219 | D3DXMatrixPerspectiveFovLH | |
| 220 | D3DXMatrixPerspectiveFovRH | |
| 221 | D3DXMatrixPerspectiveLH | |
| 222 | D3DXMatrixPerspectiveOffCenterLH | |
| 223 | D3DXMatrixPerspectiveOffCenterRH | |
| 224 | D3DXMatrixPerspectiveRH | |
| 225 | D3DXMatrixReflect | |
| 226 | D3DXMatrixRotationAxis | |
| 227 | D3DXMatrixRotationQuaternion | |
| 228 | D3DXMatrixRotationX | |
| 229 | D3DXMatrixRotationY | |
| 230 | D3DXMatrixRotationYawPitchRoll | |
| 231 | D3DXMatrixRotationZ | |
| 232 | D3DXMatrixScaling | |
| 233 | D3DXMatrixShadow | |
| 234 | D3DXMatrixTransformation | |
| 235 | D3DXMatrixTransformation2D | |
| 236 | D3DXMatrixTranslation | |
| 237 | D3DXMatrixTranspose | |
| 238 | D3DXOptimizeFaces | |
| 239 | D3DXOptimizeVertices | |
| 240 | D3DXPlaneFromPointNormal | |
| 241 | D3DXPlaneFromPoints | |
| 242 | D3DXPlaneIntersectLine | |
| 243 | D3DXPlaneNormalize | |
| 244 | D3DXPlaneTransform | |
| 245 | D3DXPlaneTransformArray | |
| 246 | D3DXPreprocessShader | |
| 247 | D3DXPreprocessShaderFromFileA | |
| 248 | D3DXPreprocessShaderFromFileW | |
| 249 | D3DXPreprocessShaderFromResourceA | |
| 250 | D3DXPreprocessShaderFromResourceW | |
| 251 | D3DXQuaternionBaryCentric | |
| 252 | D3DXQuaternionExp | |
| 253 | D3DXQuaternionInverse | |
| 254 | D3DXQuaternionLn | |
| 255 | D3DXQuaternionMultiply | |
| 256 | D3DXQuaternionNormalize | |
| 257 | D3DXQuaternionRotationAxis | |
| 258 | D3DXQuaternionRotationMatrix | |
| 259 | D3DXQuaternionRotationYawPitchRoll | |
| 260 | D3DXQuaternionSlerp | |
| 261 | D3DXQuaternionSquad | |
| 262 | D3DXQuaternionSquadSetup | |
| 263 | D3DXQuaternionToAxisAngle | |
| 264 | D3DXRectPatchSize | |
| 265 | D3DXSHAdd | |
| 266 | D3DXSHDot | |
| 267 | D3DXSHEvalConeLight | |
| 268 | D3DXSHEvalDirection | |
| 269 | D3DXSHEvalDirectionalLight | |
| 270 | D3DXSHEvalHemisphereLight | |
| 271 | D3DXSHEvalSphericalLight | |
| 272 | D3DXSHMultiply2 | |
| 273 | D3DXSHMultiply3 | |
| 274 | D3DXSHMultiply4 | |
| 275 | D3DXSHMultiply5 | |
| 276 | D3DXSHMultiply6 | |
| 277 | D3DXSHPRTCompSplitMeshSC | |
| 278 | D3DXSHPRTCompSuperCluster | |
| 279 | D3DXSHProjectCubeMap | |
| 280 | D3DXSHRotate | |
| 281 | D3DXSHRotateZ | |
| 282 | D3DXSHScale | |
| 283 | D3DXSaveMeshHierarchyToFileA | |
| 284 | D3DXSaveMeshHierarchyToFileW | |
| 285 | D3DXSaveMeshToXA | |
| 286 | D3DXSaveMeshToXW | |
| 287 | D3DXSavePRTBufferToFileA | |
| 288 | D3DXSavePRTBufferToFileW | |
| 289 | D3DXSavePRTCompBufferToFileA | |
| 290 | D3DXSavePRTCompBufferToFileW | |
| 291 | D3DXSaveSurfaceToFileA | |
| 292 | D3DXSaveSurfaceToFileInMemory | |
| 293 | D3DXSaveSurfaceToFileW | |
| 294 | D3DXSaveTextureToFileA | |
| 295 | D3DXSaveTextureToFileInMemory | |
| 296 | D3DXSaveTextureToFileW | |
| 297 | D3DXSaveVolumeToFileA | |
| 298 | D3DXSaveVolumeToFileInMemory | |
| 299 | D3DXSaveVolumeToFileW | |
| 300 | D3DXSimplifyMesh | |
| 301 | D3DXSphereBoundProbe | |
| 302 | D3DXSplitMesh | |
| 303 | D3DXTessellateNPatches | |
| 304 | D3DXTessellateRectPatch | |
| 305 | D3DXTessellateTriPatch | |
| 306 | D3DXTriPatchSize | |
| 307 | D3DXUVAtlasCreate | |
| 308 | D3DXUVAtlasPack | |
| 309 | D3DXUVAtlasPartition | |
| 310 | D3DXValidMesh | |
| 311 | D3DXValidPatchMesh | |
| 312 | D3DXVec2BaryCentric | |
| 313 | D3DXVec2CatmullRom | |
| 314 | D3DXVec2Hermite | |
| 315 | D3DXVec2Normalize | |
| 316 | D3DXVec2Transform | |
| 317 | D3DXVec2TransformArray | |
| 318 | D3DXVec2TransformCoord | |
| 319 | D3DXVec2TransformCoordArray | |
| 320 | D3DXVec2TransformNormal | |
| 321 | D3DXVec2TransformNormalArray | |
| 322 | D3DXVec3BaryCentric | |
| 323 | D3DXVec3CatmullRom | |
| 324 | D3DXVec3Hermite | |
| 325 | D3DXVec3Normalize | |
| 326 | D3DXVec3Project | |
| 327 | D3DXVec3ProjectArray | |
| 328 | D3DXVec3Transform | |
| 329 | D3DXVec3TransformArray | |
| 330 | D3DXVec3TransformCoord | |
| 331 | D3DXVec3TransformCoordArray | |
| 332 | D3DXVec3TransformNormal | |
| 333 | D3DXVec3TransformNormalArray | |
| 334 | D3DXVec3Unproject | |
| 335 | D3DXVec3UnprojectArray | |
| 336 | D3DXVec4BaryCentric | |
| 337 | D3DXVec4CatmullRom | |
| 338 | D3DXVec4Cross | |
| 339 | D3DXVec4Hermite | |
| 340 | D3DXVec4Normalize | |
| 341 | D3DXVec4Transform | |
| 342 | D3DXVec4TransformArray | |
| 343 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_42.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateKeyframedAnimationSet | |
| 77 | D3DXCreateLine | |
| 78 | D3DXCreateMatrixStack | |
| 79 | D3DXCreateMesh | |
| 80 | D3DXCreateMeshFVF | |
| 81 | D3DXCreateNPatchMesh | |
| 82 | D3DXCreatePMeshFromStream | |
| 83 | D3DXCreatePRTBuffer | |
| 84 | D3DXCreatePRTBufferTex | |
| 85 | D3DXCreatePRTCompBuffer | |
| 86 | D3DXCreatePRTEngine | |
| 87 | D3DXCreatePatchMesh | |
| 88 | D3DXCreatePolygon | |
| 89 | D3DXCreateRenderToEnvMap | |
| 90 | D3DXCreateRenderToSurface | |
| 91 | D3DXCreateSPMesh | |
| 92 | D3DXCreateSkinInfo | |
| 93 | D3DXCreateSkinInfoFVF | |
| 94 | D3DXCreateSkinInfoFromBlendedMesh | |
| 95 | D3DXCreateSphere | |
| 96 | D3DXCreateSprite | |
| 97 | D3DXCreateTeapot | |
| 98 | D3DXCreateTextA | |
| 99 | D3DXCreateTextW | |
| 100 | D3DXCreateTexture | |
| 101 | D3DXCreateTextureFromFileA | |
| 102 | D3DXCreateTextureFromFileExA | |
| 103 | D3DXCreateTextureFromFileExW | |
| 104 | D3DXCreateTextureFromFileInMemory | |
| 105 | D3DXCreateTextureFromFileInMemoryEx | |
| 106 | D3DXCreateTextureFromFileW | |
| 107 | D3DXCreateTextureFromResourceA | |
| 108 | D3DXCreateTextureFromResourceExA | |
| 109 | D3DXCreateTextureFromResourceExW | |
| 110 | D3DXCreateTextureFromResourceW | |
| 111 | D3DXCreateTextureGutterHelper | |
| 112 | D3DXCreateTextureShader | |
| 113 | D3DXCreateTorus | |
| 114 | D3DXCreateVolumeTexture | |
| 115 | D3DXCreateVolumeTextureFromFileA | |
| 116 | D3DXCreateVolumeTextureFromFileExA | |
| 117 | D3DXCreateVolumeTextureFromFileExW | |
| 118 | D3DXCreateVolumeTextureFromFileInMemory | |
| 119 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 120 | D3DXCreateVolumeTextureFromFileW | |
| 121 | D3DXCreateVolumeTextureFromResourceA | |
| 122 | D3DXCreateVolumeTextureFromResourceExA | |
| 123 | D3DXCreateVolumeTextureFromResourceExW | |
| 124 | D3DXCreateVolumeTextureFromResourceW | |
| 125 | D3DXDebugMute | |
| 126 | D3DXDeclaratorFromFVF | |
| 127 | D3DXDisassembleEffect | |
| 128 | D3DXDisassembleShader | |
| 129 | D3DXFVFFromDeclarator | |
| 130 | D3DXFileCreate | |
| 131 | D3DXFillCubeTexture | |
| 132 | D3DXFillCubeTextureTX | |
| 133 | D3DXFillTexture | |
| 134 | D3DXFillTextureTX | |
| 135 | D3DXFillVolumeTexture | |
| 136 | D3DXFillVolumeTextureTX | |
| 137 | D3DXFilterTexture | |
| 138 | D3DXFindShaderComment | |
| 139 | D3DXFloat16To32Array | |
| 140 | D3DXFloat32To16Array | |
| 141 | D3DXFrameAppendChild | |
| 142 | D3DXFrameCalculateBoundingSphere | |
| 143 | D3DXFrameDestroy | |
| 144 | D3DXFrameFind | |
| 145 | D3DXFrameNumNamedMatrices | |
| 146 | D3DXFrameRegisterNamedMatrices | |
| 147 | D3DXFresnelTerm | |
| 148 | D3DXGenerateOutputDecl | |
| 149 | D3DXGeneratePMesh | |
| 150 | D3DXGetDeclLength | |
| 151 | D3DXGetDeclVertexSize | |
| 152 | D3DXGetDriverLevel | |
| 153 | D3DXGetFVFVertexSize | |
| 154 | D3DXGetImageInfoFromFileA | |
| 155 | D3DXGetImageInfoFromFileInMemory | |
| 156 | D3DXGetImageInfoFromFileW | |
| 157 | D3DXGetImageInfoFromResourceA | |
| 158 | D3DXGetImageInfoFromResourceW | |
| 159 | D3DXGetPixelShaderProfile | |
| 160 | D3DXGetShaderConstantTable | |
| 161 | D3DXGetShaderConstantTableEx | |
| 162 | D3DXGetShaderInputSemantics | |
| 163 | D3DXGetShaderOutputSemantics | |
| 164 | D3DXGetShaderSamplers | |
| 165 | D3DXGetShaderSize | |
| 166 | D3DXGetShaderVersion | |
| 167 | D3DXGetVertexShaderProfile | |
| 168 | D3DXIntersect | |
| 169 | D3DXIntersectSubset | |
| 170 | D3DXIntersectTri | |
| 171 | D3DXLoadMeshFromXA | |
| 172 | D3DXLoadMeshFromXInMemory | |
| 173 | D3DXLoadMeshFromXResource | |
| 174 | D3DXLoadMeshFromXW | |
| 175 | D3DXLoadMeshFromXof | |
| 176 | D3DXLoadMeshHierarchyFromXA | |
| 177 | D3DXLoadMeshHierarchyFromXInMemory | |
| 178 | D3DXLoadMeshHierarchyFromXW | |
| 179 | D3DXLoadPRTBufferFromFileA | |
| 180 | D3DXLoadPRTBufferFromFileW | |
| 181 | D3DXLoadPRTCompBufferFromFileA | |
| 182 | D3DXLoadPRTCompBufferFromFileW | |
| 183 | D3DXLoadPatchMeshFromXof | |
| 184 | D3DXLoadSkinMeshFromXof | |
| 185 | D3DXLoadSurfaceFromFileA | |
| 186 | D3DXLoadSurfaceFromFileInMemory | |
| 187 | D3DXLoadSurfaceFromFileW | |
| 188 | D3DXLoadSurfaceFromMemory | |
| 189 | D3DXLoadSurfaceFromResourceA | |
| 190 | D3DXLoadSurfaceFromResourceW | |
| 191 | D3DXLoadSurfaceFromSurface | |
| 192 | D3DXLoadVolumeFromFileA | |
| 193 | D3DXLoadVolumeFromFileInMemory | |
| 194 | D3DXLoadVolumeFromFileW | |
| 195 | D3DXLoadVolumeFromMemory | |
| 196 | D3DXLoadVolumeFromResourceA | |
| 197 | D3DXLoadVolumeFromResourceW | |
| 198 | D3DXLoadVolumeFromVolume | |
| 199 | D3DXMatrixAffineTransformation | |
| 200 | D3DXMatrixAffineTransformation2D | |
| 201 | D3DXMatrixDecompose | |
| 202 | D3DXMatrixDeterminant | |
| 203 | D3DXMatrixInverse | |
| 204 | D3DXMatrixLookAtLH | |
| 205 | D3DXMatrixLookAtRH | |
| 206 | D3DXMatrixMultiply | |
| 207 | D3DXMatrixMultiplyTranspose | |
| 208 | D3DXMatrixOrthoLH | |
| 209 | D3DXMatrixOrthoOffCenterLH | |
| 210 | D3DXMatrixOrthoOffCenterRH | |
| 211 | D3DXMatrixOrthoRH | |
| 212 | D3DXMatrixPerspectiveFovLH | |
| 213 | D3DXMatrixPerspectiveFovRH | |
| 214 | D3DXMatrixPerspectiveLH | |
| 215 | D3DXMatrixPerspectiveOffCenterLH | |
| 216 | D3DXMatrixPerspectiveOffCenterRH | |
| 217 | D3DXMatrixPerspectiveRH | |
| 218 | D3DXMatrixReflect | |
| 219 | D3DXMatrixRotationAxis | |
| 220 | D3DXMatrixRotationQuaternion | |
| 221 | D3DXMatrixRotationX | |
| 222 | D3DXMatrixRotationY | |
| 223 | D3DXMatrixRotationYawPitchRoll | |
| 224 | D3DXMatrixRotationZ | |
| 225 | D3DXMatrixScaling | |
| 226 | D3DXMatrixShadow | |
| 227 | D3DXMatrixTransformation | |
| 228 | D3DXMatrixTransformation2D | |
| 229 | D3DXMatrixTranslation | |
| 230 | D3DXMatrixTranspose | |
| 231 | D3DXOptimizeFaces | |
| 232 | D3DXOptimizeVertices | |
| 233 | D3DXPlaneFromPointNormal | |
| 234 | D3DXPlaneFromPoints | |
| 235 | D3DXPlaneIntersectLine | |
| 236 | D3DXPlaneNormalize | |
| 237 | D3DXPlaneTransform | |
| 238 | D3DXPlaneTransformArray | |
| 239 | D3DXPreprocessShader | |
| 240 | D3DXPreprocessShaderFromFileA | |
| 241 | D3DXPreprocessShaderFromFileW | |
| 242 | D3DXPreprocessShaderFromResourceA | |
| 243 | D3DXPreprocessShaderFromResourceW | |
| 244 | D3DXQuaternionBaryCentric | |
| 245 | D3DXQuaternionExp | |
| 246 | D3DXQuaternionInverse | |
| 247 | D3DXQuaternionLn | |
| 248 | D3DXQuaternionMultiply | |
| 249 | D3DXQuaternionNormalize | |
| 250 | D3DXQuaternionRotationAxis | |
| 251 | D3DXQuaternionRotationMatrix | |
| 252 | D3DXQuaternionRotationYawPitchRoll | |
| 253 | D3DXQuaternionSlerp | |
| 254 | D3DXQuaternionSquad | |
| 255 | D3DXQuaternionSquadSetup | |
| 256 | D3DXQuaternionToAxisAngle | |
| 257 | D3DXRectPatchSize | |
| 258 | D3DXSHAdd | |
| 259 | D3DXSHDot | |
| 260 | D3DXSHEvalConeLight | |
| 261 | D3DXSHEvalDirection | |
| 262 | D3DXSHEvalDirectionalLight | |
| 263 | D3DXSHEvalHemisphereLight | |
| 264 | D3DXSHEvalSphericalLight | |
| 265 | D3DXSHMultiply2 | |
| 266 | D3DXSHMultiply3 | |
| 267 | D3DXSHMultiply4 | |
| 268 | D3DXSHMultiply5 | |
| 269 | D3DXSHMultiply6 | |
| 270 | D3DXSHPRTCompSplitMeshSC | |
| 271 | D3DXSHPRTCompSuperCluster | |
| 272 | D3DXSHProjectCubeMap | |
| 273 | D3DXSHRotate | |
| 274 | D3DXSHRotateZ | |
| 275 | D3DXSHScale | |
| 276 | D3DXSaveMeshHierarchyToFileA | |
| 277 | D3DXSaveMeshHierarchyToFileW | |
| 278 | D3DXSaveMeshToXA | |
| 279 | D3DXSaveMeshToXW | |
| 280 | D3DXSavePRTBufferToFileA | |
| 281 | D3DXSavePRTBufferToFileW | |
| 282 | D3DXSavePRTCompBufferToFileA | |
| 283 | D3DXSavePRTCompBufferToFileW | |
| 284 | D3DXSaveSurfaceToFileA | |
| 285 | D3DXSaveSurfaceToFileInMemory | |
| 286 | D3DXSaveSurfaceToFileW | |
| 287 | D3DXSaveTextureToFileA | |
| 288 | D3DXSaveTextureToFileInMemory | |
| 289 | D3DXSaveTextureToFileW | |
| 290 | D3DXSaveVolumeToFileA | |
| 291 | D3DXSaveVolumeToFileInMemory | |
| 292 | D3DXSaveVolumeToFileW | |
| 293 | D3DXSimplifyMesh | |
| 294 | D3DXSphereBoundProbe | |
| 295 | D3DXSplitMesh | |
| 296 | D3DXTessellateNPatches | |
| 297 | D3DXTessellateRectPatch | |
| 298 | D3DXTessellateTriPatch | |
| 299 | D3DXTriPatchSize | |
| 300 | D3DXUVAtlasCreate | |
| 301 | D3DXUVAtlasPack | |
| 302 | D3DXUVAtlasPartition | |
| 303 | D3DXValidMesh | |
| 304 | D3DXValidPatchMesh | |
| 305 | D3DXVec2BaryCentric | |
| 306 | D3DXVec2CatmullRom | |
| 307 | D3DXVec2Hermite | |
| 308 | D3DXVec2Normalize | |
| 309 | D3DXVec2Transform | |
| 310 | D3DXVec2TransformArray | |
| 311 | D3DXVec2TransformCoord | |
| 312 | D3DXVec2TransformCoordArray | |
| 313 | D3DXVec2TransformNormal | |
| 314 | D3DXVec2TransformNormalArray | |
| 315 | D3DXVec3BaryCentric | |
| 316 | D3DXVec3CatmullRom | |
| 317 | D3DXVec3Hermite | |
| 318 | D3DXVec3Normalize | |
| 319 | D3DXVec3Project | |
| 320 | D3DXVec3ProjectArray | |
| 321 | D3DXVec3Transform | |
| 322 | D3DXVec3TransformArray | |
| 323 | D3DXVec3TransformCoord | |
| 324 | D3DXVec3TransformCoordArray | |
| 325 | D3DXVec3TransformNormal | |
| 326 | D3DXVec3TransformNormalArray | |
| 327 | D3DXVec3Unproject | |
| 328 | D3DXVec3UnprojectArray | |
| 329 | D3DXVec4BaryCentric | |
| 330 | D3DXVec4CatmullRom | |
| 331 | D3DXVec4Cross | |
| 332 | D3DXVec4Hermite | |
| 333 | D3DXVec4Normalize | |
| 334 | D3DXVec4Transform | |
| 335 | D3DXVec4TransformArray | |
| 336 | D3DXWeldVertices |
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 | ; | |
| 6 | LIBRARY "d3dx9_43.dll" | |
| 7 | EXPORTS | |
| 8 | D3DXAssembleShader | |
| 9 | D3DXAssembleShaderFromFileA | |
| 10 | D3DXAssembleShaderFromFileW | |
| 11 | D3DXAssembleShaderFromResourceA | |
| 12 | D3DXAssembleShaderFromResourceW | |
| 13 | D3DXBoxBoundProbe | |
| 14 | D3DXCheckCubeTextureRequirements | |
| 15 | D3DXCheckTextureRequirements | |
| 16 | D3DXCheckVersion | |
| 17 | D3DXCheckVolumeTextureRequirements | |
| 18 | D3DXCleanMesh | |
| 19 | D3DXColorAdjustContrast | |
| 20 | D3DXColorAdjustSaturation | |
| 21 | D3DXCompileShader | |
| 22 | D3DXCompileShaderFromFileA | |
| 23 | D3DXCompileShaderFromFileW | |
| 24 | D3DXCompileShaderFromResourceA | |
| 25 | D3DXCompileShaderFromResourceW | |
| 26 | D3DXComputeBoundingBox | |
| 27 | D3DXComputeBoundingSphere | |
| 28 | D3DXComputeIMTFromPerTexelSignal | |
| 29 | D3DXComputeIMTFromPerVertexSignal | |
| 30 | D3DXComputeIMTFromSignal | |
| 31 | D3DXComputeIMTFromTexture | |
| 32 | D3DXComputeNormalMap | |
| 33 | D3DXComputeNormals | |
| 34 | D3DXComputeTangent | |
| 35 | D3DXComputeTangentFrame | |
| 36 | D3DXComputeTangentFrameEx | |
| 37 | D3DXConcatenateMeshes | |
| 38 | D3DXConvertMeshSubsetToSingleStrip | |
| 39 | D3DXConvertMeshSubsetToStrips | |
| 40 | D3DXCreateAnimationController | |
| 41 | D3DXCreateBox | |
| 42 | D3DXCreateBuffer | |
| 43 | D3DXCreateCompressedAnimationSet | |
| 44 | D3DXCreateCubeTexture | |
| 45 | D3DXCreateCubeTextureFromFileA | |
| 46 | D3DXCreateCubeTextureFromFileExA | |
| 47 | D3DXCreateCubeTextureFromFileExW | |
| 48 | D3DXCreateCubeTextureFromFileInMemory | |
| 49 | D3DXCreateCubeTextureFromFileInMemoryEx | |
| 50 | D3DXCreateCubeTextureFromFileW | |
| 51 | D3DXCreateCubeTextureFromResourceA | |
| 52 | D3DXCreateCubeTextureFromResourceExA | |
| 53 | D3DXCreateCubeTextureFromResourceExW | |
| 54 | D3DXCreateCubeTextureFromResourceW | |
| 55 | D3DXCreateCylinder | |
| 56 | D3DXCreateEffect | |
| 57 | D3DXCreateEffectCompiler | |
| 58 | D3DXCreateEffectCompilerFromFileA | |
| 59 | D3DXCreateEffectCompilerFromFileW | |
| 60 | D3DXCreateEffectCompilerFromResourceA | |
| 61 | D3DXCreateEffectCompilerFromResourceW | |
| 62 | D3DXCreateEffectEx | |
| 63 | D3DXCreateEffectFromFileA | |
| 64 | D3DXCreateEffectFromFileExA | |
| 65 | D3DXCreateEffectFromFileExW | |
| 66 | D3DXCreateEffectFromFileW | |
| 67 | D3DXCreateEffectFromResourceA | |
| 68 | D3DXCreateEffectFromResourceExA | |
| 69 | D3DXCreateEffectFromResourceExW | |
| 70 | D3DXCreateEffectFromResourceW | |
| 71 | D3DXCreateEffectPool | |
| 72 | D3DXCreateFontA | |
| 73 | D3DXCreateFontIndirectA | |
| 74 | D3DXCreateFontIndirectW | |
| 75 | D3DXCreateFontW | |
| 76 | D3DXCreateKeyframedAnimationSet | |
| 77 | D3DXCreateLine | |
| 78 | D3DXCreateMatrixStack | |
| 79 | D3DXCreateMesh | |
| 80 | D3DXCreateMeshFVF | |
| 81 | D3DXCreateNPatchMesh | |
| 82 | D3DXCreatePMeshFromStream | |
| 83 | D3DXCreatePRTBuffer | |
| 84 | D3DXCreatePRTBufferTex | |
| 85 | D3DXCreatePRTCompBuffer | |
| 86 | D3DXCreatePRTEngine | |
| 87 | D3DXCreatePatchMesh | |
| 88 | D3DXCreatePolygon | |
| 89 | D3DXCreateRenderToEnvMap | |
| 90 | D3DXCreateRenderToSurface | |
| 91 | D3DXCreateSPMesh | |
| 92 | D3DXCreateSkinInfo | |
| 93 | D3DXCreateSkinInfoFVF | |
| 94 | D3DXCreateSkinInfoFromBlendedMesh | |
| 95 | D3DXCreateSphere | |
| 96 | D3DXCreateSprite | |
| 97 | D3DXCreateTeapot | |
| 98 | D3DXCreateTextA | |
| 99 | D3DXCreateTextW | |
| 100 | D3DXCreateTexture | |
| 101 | D3DXCreateTextureFromFileA | |
| 102 | D3DXCreateTextureFromFileExA | |
| 103 | D3DXCreateTextureFromFileExW | |
| 104 | D3DXCreateTextureFromFileInMemory | |
| 105 | D3DXCreateTextureFromFileInMemoryEx | |
| 106 | D3DXCreateTextureFromFileW | |
| 107 | D3DXCreateTextureFromResourceA | |
| 108 | D3DXCreateTextureFromResourceExA | |
| 109 | D3DXCreateTextureFromResourceExW | |
| 110 | D3DXCreateTextureFromResourceW | |
| 111 | D3DXCreateTextureGutterHelper | |
| 112 | D3DXCreateTextureShader | |
| 113 | D3DXCreateTorus | |
| 114 | D3DXCreateVolumeTexture | |
| 115 | D3DXCreateVolumeTextureFromFileA | |
| 116 | D3DXCreateVolumeTextureFromFileExA | |
| 117 | D3DXCreateVolumeTextureFromFileExW | |
| 118 | D3DXCreateVolumeTextureFromFileInMemory | |
| 119 | D3DXCreateVolumeTextureFromFileInMemoryEx | |
| 120 | D3DXCreateVolumeTextureFromFileW | |
| 121 | D3DXCreateVolumeTextureFromResourceA | |
| 122 | D3DXCreateVolumeTextureFromResourceExA | |
| 123 | D3DXCreateVolumeTextureFromResourceExW | |
| 124 | D3DXCreateVolumeTextureFromResourceW | |
| 125 | D3DXDebugMute | |
| 126 | D3DXDeclaratorFromFVF | |
| 127 | D3DXDisassembleEffect | |
| 128 | D3DXDisassembleShader | |
| 129 | D3DXFVFFromDeclarator | |
| 130 | D3DXFileCreate | |
| 131 | D3DXFillCubeTexture | |
| 132 | D3DXFillCubeTextureTX | |
| 133 | D3DXFillTexture | |
| 134 | D3DXFillTextureTX | |
| 135 | D3DXFillVolumeTexture | |
| 136 | D3DXFillVolumeTextureTX | |
| 137 | D3DXFilterTexture | |
| 138 | D3DXFindShaderComment | |
| 139 | D3DXFloat16To32Array | |
| 140 | D3DXFloat32To16Array | |
| 141 | D3DXFrameAppendChild | |
| 142 | D3DXFrameCalculateBoundingSphere | |
| 143 | D3DXFrameDestroy | |
| 144 | D3DXFrameFind | |
| 145 | D3DXFrameNumNamedMatrices | |
| 146 | D3DXFrameRegisterNamedMatrices | |
| 147 | D3DXFresnelTerm | |
| 148 | D3DXGenerateOutputDecl | |
| 149 | D3DXGeneratePMesh | |
| 150 | D3DXGetDeclLength | |
| 151 | D3DXGetDeclVertexSize | |
| 152 | D3DXGetDriverLevel | |
| 153 | D3DXGetFVFVertexSize | |
| 154 | D3DXGetImageInfoFromFileA | |
| 155 | D3DXGetImageInfoFromFileInMemory | |
| 156 | D3DXGetImageInfoFromFileW | |
| 157 | D3DXGetImageInfoFromResourceA | |
| 158 | D3DXGetImageInfoFromResourceW | |
| 159 | D3DXGetPixelShaderProfile | |
| 160 | D3DXGetShaderConstantTable | |
| 161 | D3DXGetShaderConstantTableEx | |
| 162 | D3DXGetShaderInputSemantics | |
| 163 | D3DXGetShaderOutputSemantics | |
| 164 | D3DXGetShaderSamplers | |
| 165 | D3DXGetShaderSize | |
| 166 | D3DXGetShaderVersion | |
| 167 | D3DXGetVertexShaderProfile | |
| 168 | D3DXIntersect | |
| 169 | D3DXIntersectSubset | |
| 170 | D3DXIntersectTri | |
| 171 | D3DXLoadMeshFromXA | |
| 172 | D3DXLoadMeshFromXInMemory | |
| 173 | D3DXLoadMeshFromXResource | |
| 174 | D3DXLoadMeshFromXW | |
| 175 | D3DXLoadMeshFromXof | |
| 176 | D3DXLoadMeshHierarchyFromXA | |
| 177 | D3DXLoadMeshHierarchyFromXInMemory | |
| 178 | D3DXLoadMeshHierarchyFromXW | |
| 179 | D3DXLoadPRTBufferFromFileA | |
| 180 | D3DXLoadPRTBufferFromFileW | |
| 181 | D3DXLoadPRTCompBufferFromFileA | |
| 182 | D3DXLoadPRTCompBufferFromFileW | |
| 183 | D3DXLoadPatchMeshFromXof | |
| 184 | D3DXLoadSkinMeshFromXof | |
| 185 | D3DXLoadSurfaceFromFileA | |
| 186 | D3DXLoadSurfaceFromFileInMemory | |
| 187 | D3DXLoadSurfaceFromFileW | |
| 188 | D3DXLoadSurfaceFromMemory | |
| 189 | D3DXLoadSurfaceFromResourceA | |
| 190 | D3DXLoadSurfaceFromResourceW | |
| 191 | D3DXLoadSurfaceFromSurface | |
| 192 | D3DXLoadVolumeFromFileA | |
| 193 | D3DXLoadVolumeFromFileInMemory | |
| 194 | D3DXLoadVolumeFromFileW | |
| 195 | D3DXLoadVolumeFromMemory | |
| 196 | D3DXLoadVolumeFromResourceA | |
| 197 | D3DXLoadVolumeFromResourceW | |
| 198 | D3DXLoadVolumeFromVolume | |
| 199 | D3DXMatrixAffineTransformation | |
| 200 | D3DXMatrixAffineTransformation2D | |
| 201 | D3DXMatrixDecompose | |
| 202 | D3DXMatrixDeterminant | |
| 203 | D3DXMatrixInverse | |
| 204 | D3DXMatrixLookAtLH | |
| 205 | D3DXMatrixLookAtRH | |
| 206 | D3DXMatrixMultiply | |
| 207 | D3DXMatrixMultiplyTranspose | |
| 208 | D3DXMatrixOrthoLH | |
| 209 | D3DXMatrixOrthoOffCenterLH | |
| 210 | D3DXMatrixOrthoOffCenterRH | |
| 211 | D3DXMatrixOrthoRH | |
| 212 | D3DXMatrixPerspectiveFovLH | |
| 213 | D3DXMatrixPerspectiveFovRH | |
| 214 | D3DXMatrixPerspectiveLH | |
| 215 | D3DXMatrixPerspectiveOffCenterLH | |
| 216 | D3DXMatrixPerspectiveOffCenterRH | |
| 217 | D3DXMatrixPerspectiveRH | |
| 218 | D3DXMatrixReflect | |
| 219 | D3DXMatrixRotationAxis | |
| 220 | D3DXMatrixRotationQuaternion | |
| 221 | D3DXMatrixRotationX | |
| 222 | D3DXMatrixRotationY | |
| 223 | D3DXMatrixRotationYawPitchRoll | |
| 224 | D3DXMatrixRotationZ | |
| 225 | D3DXMatrixScaling | |
| 226 | D3DXMatrixShadow | |
| 227 | D3DXMatrixTransformation | |
| 228 | D3DXMatrixTransformation2D | |
| 229 | D3DXMatrixTranslation | |
| 230 | D3DXMatrixTranspose | |
| 231 | D3DXOptimizeFaces | |
| 232 | D3DXOptimizeVertices | |
| 233 | D3DXPlaneFromPointNormal | |
| 234 | D3DXPlaneFromPoints | |
| 235 | D3DXPlaneIntersectLine | |
| 236 | D3DXPlaneNormalize | |
| 237 | D3DXPlaneTransform | |
| 238 | D3DXPlaneTransformArray | |
| 239 | D3DXPreprocessShader | |
| 240 | D3DXPreprocessShaderFromFileA | |
| 241 | D3DXPreprocessShaderFromFileW | |
| 242 | D3DXPreprocessShaderFromResourceA | |
| 243 | D3DXPreprocessShaderFromResourceW | |
| 244 | D3DXQuaternionBaryCentric | |
| 245 | D3DXQuaternionExp | |
| 246 | D3DXQuaternionInverse | |
| 247 | D3DXQuaternionLn | |
| 248 | D3DXQuaternionMultiply | |
| 249 | D3DXQuaternionNormalize | |
| 250 | D3DXQuaternionRotationAxis | |
| 251 | D3DXQuaternionRotationMatrix | |
| 252 | D3DXQuaternionRotationYawPitchRoll | |
| 253 | D3DXQuaternionSlerp | |
| 254 | D3DXQuaternionSquad | |
| 255 | D3DXQuaternionSquadSetup | |
| 256 | D3DXQuaternionToAxisAngle | |
| 257 | D3DXRectPatchSize | |
| 258 | D3DXSHAdd | |
| 259 | D3DXSHDot | |
| 260 | D3DXSHEvalConeLight | |
| 261 | D3DXSHEvalDirection | |
| 262 | D3DXSHEvalDirectionalLight | |
| 263 | D3DXSHEvalHemisphereLight | |
| 264 | D3DXSHEvalSphericalLight | |
| 265 | D3DXSHMultiply2 | |
| 266 | D3DXSHMultiply3 | |
| 267 | D3DXSHMultiply4 | |
| 268 | D3DXSHMultiply5 | |
| 269 | D3DXSHMultiply6 | |
| 270 | D3DXSHPRTCompSplitMeshSC | |
| 271 | D3DXSHPRTCompSuperCluster | |
| 272 | D3DXSHProjectCubeMap | |
| 273 | D3DXSHRotate | |
| 274 | D3DXSHRotateZ | |
| 275 | D3DXSHScale | |
| 276 | D3DXSaveMeshHierarchyToFileA | |
| 277 | D3DXSaveMeshHierarchyToFileW | |
| 278 | D3DXSaveMeshToXA | |
| 279 | D3DXSaveMeshToXW | |
| 280 | D3DXSavePRTBufferToFileA | |
| 281 | D3DXSavePRTBufferToFileW | |
| 282 | D3DXSavePRTCompBufferToFileA | |
| 283 | D3DXSavePRTCompBufferToFileW | |
| 284 | D3DXSaveSurfaceToFileA | |
| 285 | D3DXSaveSurfaceToFileInMemory | |
| 286 | D3DXSaveSurfaceToFileW | |
| 287 | D3DXSaveTextureToFileA | |
| 288 | D3DXSaveTextureToFileInMemory | |
| 289 | D3DXSaveTextureToFileW | |
| 290 | D3DXSaveVolumeToFileA | |
| 291 | D3DXSaveVolumeToFileInMemory | |
| 292 | D3DXSaveVolumeToFileW | |
| 293 | D3DXSimplifyMesh | |
| 294 | D3DXSphereBoundProbe | |
| 295 | D3DXSplitMesh | |
| 296 | D3DXTessellateNPatches | |
| 297 | D3DXTessellateRectPatch | |
| 298 | D3DXTessellateTriPatch | |
| 299 | D3DXTriPatchSize | |
| 300 | D3DXUVAtlasCreate | |
| 301 | D3DXUVAtlasPack | |
| 302 | D3DXUVAtlasPartition | |
| 303 | D3DXValidMesh | |
| 304 | D3DXValidPatchMesh | |
| 305 | D3DXVec2BaryCentric | |
| 306 | D3DXVec2CatmullRom | |
| 307 | D3DXVec2Hermite | |
| 308 | D3DXVec2Normalize | |
| 309 | D3DXVec2Transform | |
| 310 | D3DXVec2TransformArray | |
| 311 | D3DXVec2TransformCoord | |
| 312 | D3DXVec2TransformCoordArray | |
| 313 | D3DXVec2TransformNormal | |
| 314 | D3DXVec2TransformNormalArray | |
| 315 | D3DXVec3BaryCentric | |
| 316 | D3DXVec3CatmullRom | |
| 317 | D3DXVec3Hermite | |
| 318 | D3DXVec3Normalize | |
| 319 | D3DXVec3Project | |
| 320 | D3DXVec3ProjectArray | |
| 321 | D3DXVec3Transform | |
| 322 | D3DXVec3TransformArray | |
| 323 | D3DXVec3TransformCoord | |
| 324 | D3DXVec3TransformCoordArray | |
| 325 | D3DXVec3TransformNormal | |
| 326 | D3DXVec3TransformNormalArray | |
| 327 | D3DXVec3Unproject | |
| 328 | D3DXVec3UnprojectArray | |
| 329 | D3DXVec4BaryCentric | |
| 330 | D3DXVec4CatmullRom | |
| 331 | D3DXVec4Cross | |
| 332 | D3DXVec4Hermite | |
| 333 | D3DXVec4Normalize | |
| 334 | D3DXVec4Transform | |
| 335 | D3DXVec4TransformArray | |
| 336 | D3DXWeldVertices |
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 | ; | |
| 7 | LIBRARY d3dxof.dll | |
| 8 | EXPORTS | |
| 9 | DirectXFileCreate | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject |
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 | ; | |
| 6 | LIBRARY "dhcpcsvc6.DLL" | |
| 7 | EXPORTS | |
| 8 | Dhcpv6AcquireParameters | |
| 9 | Dhcpv6FreeLeaseInfo | |
| 10 | Dhcpv6IsEnabled | |
| 11 | Dhcpv6Main | |
| 12 | Dhcpv6QueryLeaseInfo | |
| 13 | Dhcpv6ReleaseParameters | |
| 14 | Dhcpv6ReleasePrefix | |
| 15 | Dhcpv6RenewPrefix | |
| 16 | Dhcpv6RequestParams | |
| 17 | Dhcpv6RequestPrefix |
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 | ; | |
| 7 | LIBRARY DIGEST.dll | |
| 8 | EXPORTS | |
| 9 | AcceptSecurityContext | |
| 10 | AcquireCredentialsHandleA | |
| 11 | AcquireCredentialsHandleW | |
| 12 | ApplyControlToken | |
| 13 | CompleteAuthToken | |
| 14 | DeleteSecurityContext | |
| 15 | DllInstall | |
| 16 | EnumerateSecurityPackagesA | |
| 17 | EnumerateSecurityPackagesW | |
| 18 | FreeContextBuffer | |
| 19 | FreeCredentialsHandle | |
| 20 | ImpersonateSecurityContext | |
| 21 | InitSecurityInterfaceA | |
| 22 | InitSecurityInterfaceW | |
| 23 | InitializeSecurityContextA | |
| 24 | InitializeSecurityContextW | |
| 25 | MakeSignature | |
| 26 | QueryContextAttributesA | |
| 27 | QueryContextAttributesW | |
| 28 | QuerySecurityPackageInfoA | |
| 29 | QuerySecurityPackageInfoW | |
| 30 | RevertSecurityContext | |
| 31 | VerifySignature |
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 | ; | |
| 7 | LIBRARY dimsntfy.dll | |
| 8 | EXPORTS | |
| 9 | WlDimsLock | |
| 10 | WlDimsLogoff | |
| 11 | WlDimsLogon | |
| 12 | WlDimsShutdown | |
| 13 | WlDimsStartShell | |
| 14 | WlDimsStartup | |
| 15 | WlDimsUnlock |
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 | ; | |
| 7 | LIBRARY dmconfig.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | cs_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 | ; | |
| 7 | LIBRARY DMDskMgr.dll | |
| 8 | EXPORTS | |
| 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 | |
| 257 | GetPropertyPageData | |
| 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 | |
| 338 | IsFailPopupMgmtSupported | |
| 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 | |
| 369 | IsRequestPending | |
| 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 | |
| 382 | LoadPropertyPageData | |
| 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 | |
| 431 | DllCanUnloadNow | |
| 432 | DllGetClassObject | |
| 433 | DllRegisterServer |
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 | ; | |
| 7 | LIBRARY dmivcitf.dll | |
| 8 | EXPORTS | |
| 9 | ; public: void __cdecl CDataCache::AddLDMObjMapEntry(struct _LDM_OBJ_MAP_ENTRY * __ptr64) __ptr64 | |
| 10 | ?AddLDMObjMapEntry@CDataCache@@QEAAXPEAU_LDM_OBJ_MAP_ENTRY@@@Z | |
| 11 | CreateDataCacheX | |
| 12 | CreateServerRequestsX | |
| 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 | |
| 41 | HrGetErrorData | |
| 42 | LoadPropertyPageData |
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 | ; | |
| 7 | LIBRARY dmivcitf.dll | |
| 8 | EXPORTS | |
| 9 | ; public: void __cdecl CDataCache::AddLDMObjMapEntry(struct _LDM_OBJ_MAP_ENTRY * __ptr64) __ptr64 | |
| 10 | ?AddLDMObjMapEntry@CDataCache@@QEAAXPEAU_LDM_OBJ_MAP_ENTRY@@@Z | |
| 11 | CreateDataCacheZ | |
| 12 | CreateServerRequestsZ | |
| 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 | ; | |
| 6 | LIBRARY "DPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | CryptProtectDataNoUI | |
| 9 | CryptProtectMemory | |
| 10 | CryptResetMachineCredentials | |
| 11 | CryptUnprotectDataNoUI | |
| 12 | CryptUnprotectMemory | |
| 13 | CryptUpdateProtectedState | |
| 14 | iCryptIdentifyProtection |
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 | ; | |
| 7 | LIBRARY dpnaddr.dll | |
| 8 | EXPORTS | |
| 9 | DirectPlay8AddressCreate |
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 | ; | |
| 7 | LIBRARY DPNet.dll | |
| 8 | EXPORTS | |
| 9 | DirectPlay8Create | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY DPNHUPNP.dll | |
| 8 | EXPORTS | |
| 9 | DirectPlayNATHelpCreate | |
| 10 | DllRegisterServer | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY DPNLobby.dll | |
| 8 | EXPORTS | |
| 9 | DirectPlay8LobbyCreate |
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 | ; | |
| 7 | LIBRARY DPVOICE.dll | |
| 8 | EXPORTS | |
| 9 | DirectPlayVoiceCreate | |
| 10 | DllRegisterServer | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY DS32GT.dll | |
| 8 | EXPORTS | |
| 9 | Dispatch |
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 | ; | |
| 7 | LIBRARY DSOUND3D.dll | |
| 8 | EXPORTS | |
| 9 | CafBiquadCoeffs |
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 | ; | |
| 7 | LIBRARY ES.dll | |
| 8 | EXPORTS | |
| 9 | NotifyLogoffUser | |
| 10 | NotifyLogonUser | |
| 11 | ServiceMain | |
| 12 | LCEControlServer | |
| 13 | RegisterTheEventServiceDuringSetup | |
| 14 | RegisterTheEventServiceAfterSetup | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer | |
| 17 | DllCanUnloadNow | |
| 18 | DllGetClassObject |
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 | ; | |
| 6 | LIBRARY "ESENT.dll" | |
| 7 | EXPORTS | |
| 8 | JetAddColumn | |
| 9 | JetAddColumnA | |
| 10 | JetAddColumnW | |
| 11 | JetAttachDatabase | |
| 12 | JetAttachDatabase2 | |
| 13 | JetAttachDatabase2A | |
| 14 | JetAttachDatabase2W | |
| 15 | JetAttachDatabaseA | |
| 16 | JetAttachDatabaseW | |
| 17 | JetAttachDatabaseWithStreaming | |
| 18 | JetAttachDatabaseWithStreamingA | |
| 19 | JetAttachDatabaseWithStreamingW | |
| 20 | JetBackup | |
| 21 | JetBackupA | |
| 22 | JetBackupInstance | |
| 23 | JetBackupInstanceA | |
| 24 | JetBackupInstanceW | |
| 25 | JetBackupW | |
| 26 | JetBeginExternalBackup | |
| 27 | JetBeginExternalBackupInstance | |
| 28 | JetBeginSession | |
| 29 | JetBeginSessionA | |
| 30 | JetBeginSessionW | |
| 31 | JetBeginTransaction | |
| 32 | JetBeginTransaction2 | |
| 33 | JetCloseDatabase | |
| 34 | JetCloseFile | |
| 35 | JetCloseFileInstance | |
| 36 | JetCloseTable | |
| 37 | JetCommitTransaction | |
| 38 | JetCompact | |
| 39 | JetCompactA | |
| 40 | JetCompactW | |
| 41 | JetComputeStats | |
| 42 | JetConvertDDL | |
| 43 | JetConvertDDLA | |
| 44 | JetConvertDDLW | |
| 45 | JetCreateDatabase | |
| 46 | JetCreateDatabase2 | |
| 47 | JetCreateDatabase2A | |
| 48 | JetCreateDatabase2W | |
| 49 | JetCreateDatabaseA | |
| 50 | JetCreateDatabaseW | |
| 51 | JetCreateDatabaseWithStreaming | |
| 52 | JetCreateDatabaseWithStreamingA | |
| 53 | JetCreateDatabaseWithStreamingW | |
| 54 | JetCreateIndex | |
| 55 | JetCreateIndex2 | |
| 56 | JetCreateIndex2A | |
| 57 | JetCreateIndex2W | |
| 58 | JetCreateIndexA | |
| 59 | JetCreateIndexW | |
| 60 | JetCreateInstance | |
| 61 | JetCreateInstance2 | |
| 62 | JetCreateInstance2A | |
| 63 | JetCreateInstance2W | |
| 64 | JetCreateInstanceA | |
| 65 | JetCreateInstanceW | |
| 66 | JetCreateTable | |
| 67 | JetCreateTableA | |
| 68 | JetCreateTableColumnIndex | |
| 69 | JetCreateTableColumnIndex2 | |
| 70 | JetCreateTableColumnIndex2A | |
| 71 | JetCreateTableColumnIndex2W | |
| 72 | JetCreateTableColumnIndexA | |
| 73 | JetCreateTableColumnIndexW | |
| 74 | JetCreateTableW | |
| 75 | JetDBUtilities | |
| 76 | JetDBUtilitiesA | |
| 77 | JetDBUtilitiesW | |
| 78 | JetDefragment | |
| 79 | JetDefragment2 | |
| 80 | JetDefragment2A | |
| 81 | JetDefragment2W | |
| 82 | JetDefragment3 | |
| 83 | JetDefragment3A | |
| 84 | JetDefragment3W | |
| 85 | JetDefragmentA | |
| 86 | JetDefragmentW | |
| 87 | JetDelete | |
| 88 | JetDeleteColumn | |
| 89 | JetDeleteColumn2 | |
| 90 | JetDeleteColumn2A | |
| 91 | JetDeleteColumn2W | |
| 92 | JetDeleteColumnA | |
| 93 | JetDeleteColumnW | |
| 94 | JetDeleteIndex | |
| 95 | JetDeleteIndexA | |
| 96 | JetDeleteIndexW | |
| 97 | JetDeleteTable | |
| 98 | JetDeleteTableA | |
| 99 | JetDeleteTableW | |
| 100 | JetDetachDatabase | |
| 101 | JetDetachDatabase2 | |
| 102 | JetDetachDatabase2A | |
| 103 | JetDetachDatabase2W | |
| 104 | JetDetachDatabaseA | |
| 105 | JetDetachDatabaseW | |
| 106 | JetDupCursor | |
| 107 | JetDupSession | |
| 108 | JetEnableMultiInstance | |
| 109 | JetEnableMultiInstanceA | |
| 110 | JetEnableMultiInstanceW | |
| 111 | JetEndExternalBackup | |
| 112 | JetEndExternalBackupInstance | |
| 113 | JetEndExternalBackupInstance2 | |
| 114 | JetEndSession | |
| 115 | JetEnumerateColumns | |
| 116 | JetEscrowUpdate | |
| 117 | JetExternalRestore | |
| 118 | JetExternalRestore2 | |
| 119 | JetExternalRestore2A | |
| 120 | JetExternalRestore2W | |
| 121 | JetExternalRestoreA | |
| 122 | JetExternalRestoreW | |
| 123 | JetFreeBuffer | |
| 124 | JetGetAttachInfo | |
| 125 | JetGetAttachInfoA | |
| 126 | JetGetAttachInfoInstance | |
| 127 | JetGetAttachInfoInstanceA | |
| 128 | JetGetAttachInfoInstanceW | |
| 129 | JetGetAttachInfoW | |
| 130 | JetGetBookmark | |
| 131 | JetGetColumnInfo | |
| 132 | JetGetColumnInfoA | |
| 133 | JetGetColumnInfoW | |
| 134 | JetGetCounter | |
| 135 | JetGetCurrentIndex | |
| 136 | JetGetCurrentIndexA | |
| 137 | JetGetCurrentIndexW | |
| 138 | JetGetCursorInfo | |
| 139 | JetGetDatabaseFileInfo | |
| 140 | JetGetDatabaseFileInfoA | |
| 141 | JetGetDatabaseFileInfoW | |
| 142 | JetGetDatabaseInfo | |
| 143 | JetGetDatabaseInfoA | |
| 144 | JetGetDatabaseInfoW | |
| 145 | JetGetDatabasePages | |
| 146 | JetGetIndexInfo | |
| 147 | JetGetIndexInfoA | |
| 148 | JetGetIndexInfoW | |
| 149 | JetGetInstanceInfo | |
| 150 | JetGetInstanceInfoA | |
| 151 | JetGetInstanceInfoW | |
| 152 | JetGetInstanceMiscInfo | |
| 153 | JetGetLS | |
| 154 | JetGetLock | |
| 155 | JetGetLogFileInfo | |
| 156 | JetGetLogFileInfoA | |
| 157 | JetGetLogFileInfoW | |
| 158 | JetGetLogInfo | |
| 159 | JetGetLogInfoA | |
| 160 | JetGetLogInfoInstance | |
| 161 | JetGetLogInfoInstance2 | |
| 162 | JetGetLogInfoInstance2A | |
| 163 | JetGetLogInfoInstance2W | |
| 164 | JetGetLogInfoInstanceA | |
| 165 | JetGetLogInfoInstanceW | |
| 166 | JetGetLogInfoW | |
| 167 | JetGetMaxDatabaseSize | |
| 168 | JetGetObjectInfo | |
| 169 | JetGetObjectInfoA | |
| 170 | JetGetObjectInfoW | |
| 171 | JetGetPageInfo | |
| 172 | JetGetRecordPosition | |
| 173 | JetGetRecordSize | |
| 174 | JetGetResourceParam | |
| 175 | JetGetSecondaryIndexBookmark | |
| 176 | JetGetSessionInfo | |
| 177 | JetGetSystemParameter | |
| 178 | JetGetSystemParameterA | |
| 179 | JetGetSystemParameterW | |
| 180 | JetGetTableColumnInfo | |
| 181 | JetGetTableColumnInfoA | |
| 182 | JetGetTableColumnInfoW | |
| 183 | JetGetTableIndexInfo | |
| 184 | JetGetTableIndexInfoA | |
| 185 | JetGetTableIndexInfoW | |
| 186 | JetGetTableInfo | |
| 187 | JetGetTableInfoA | |
| 188 | JetGetTableInfoW | |
| 189 | JetGetThreadStats | |
| 190 | JetGetTruncateLogInfoInstance | |
| 191 | JetGetTruncateLogInfoInstanceA | |
| 192 | JetGetTruncateLogInfoInstanceW | |
| 193 | JetGetVersion | |
| 194 | JetGotoBookmark | |
| 195 | JetGotoPosition | |
| 196 | JetGotoSecondaryIndexBookmark | |
| 197 | JetGrowDatabase | |
| 198 | JetIdle | |
| 199 | JetIndexRecordCount | |
| 200 | JetInit | |
| 201 | JetInit2 | |
| 202 | JetInit3 | |
| 203 | JetInit3A | |
| 204 | JetInit3W | |
| 205 | JetIntersectIndexes | |
| 206 | JetMakeKey | |
| 207 | JetMove | |
| 208 | JetOSSnapshotAbort | |
| 209 | JetOSSnapshotEnd | |
| 210 | JetOSSnapshotFreeze | |
| 211 | JetOSSnapshotFreezeA | |
| 212 | JetOSSnapshotFreezeW | |
| 213 | JetOSSnapshotGetFreezeInfo | |
| 214 | JetOSSnapshotGetFreezeInfoA | |
| 215 | JetOSSnapshotGetFreezeInfoW | |
| 216 | JetOSSnapshotPrepare | |
| 217 | JetOSSnapshotPrepareInstance | |
| 218 | JetOSSnapshotThaw | |
| 219 | JetOSSnapshotTruncateLog | |
| 220 | JetOSSnapshotTruncateLogInstance | |
| 221 | JetOpenDatabase | |
| 222 | JetOpenDatabaseA | |
| 223 | JetOpenDatabaseW | |
| 224 | JetOpenFile | |
| 225 | JetOpenFileA | |
| 226 | JetOpenFileInstance | |
| 227 | JetOpenFileInstanceA | |
| 228 | JetOpenFileInstanceW | |
| 229 | JetOpenFileSectionInstance | |
| 230 | JetOpenFileSectionInstanceA | |
| 231 | JetOpenFileSectionInstanceW | |
| 232 | JetOpenFileW | |
| 233 | JetOpenTable | |
| 234 | JetOpenTableA | |
| 235 | JetOpenTableW | |
| 236 | JetOpenTempTable | |
| 237 | JetOpenTempTable2 | |
| 238 | JetOpenTempTable3 | |
| 239 | JetOpenTemporaryTable | |
| 240 | JetPrepareToCommitTransaction | |
| 241 | JetPrepareUpdate | |
| 242 | JetReadFile | |
| 243 | JetReadFileInstance | |
| 244 | JetRegisterCallback | |
| 245 | JetRenameColumn | |
| 246 | JetRenameColumnA | |
| 247 | JetRenameColumnW | |
| 248 | JetRenameTable | |
| 249 | JetRenameTableA | |
| 250 | JetRenameTableW | |
| 251 | JetResetCounter | |
| 252 | JetResetSessionContext | |
| 253 | JetResetTableSequential | |
| 254 | JetRestore | |
| 255 | JetRestore2 | |
| 256 | JetRestore2A | |
| 257 | JetRestore2W | |
| 258 | JetRestoreA | |
| 259 | JetRestoreInstance | |
| 260 | JetRestoreInstanceA | |
| 261 | JetRestoreInstanceW | |
| 262 | JetRestoreW | |
| 263 | JetRetrieveColumn | |
| 264 | JetRetrieveColumns | |
| 265 | JetRetrieveKey | |
| 266 | JetRetrieveTaggedColumnList | |
| 267 | JetRollback | |
| 268 | JetSeek | |
| 269 | JetSetColumn | |
| 270 | JetSetColumnDefaultValue | |
| 271 | JetSetColumnDefaultValueA | |
| 272 | JetSetColumnDefaultValueW | |
| 273 | JetSetColumns | |
| 274 | JetSetCurrentIndex | |
| 275 | JetSetCurrentIndex2 | |
| 276 | JetSetCurrentIndex2A | |
| 277 | JetSetCurrentIndex2W | |
| 278 | JetSetCurrentIndex3 | |
| 279 | JetSetCurrentIndex3A | |
| 280 | JetSetCurrentIndex3W | |
| 281 | JetSetCurrentIndex4 | |
| 282 | JetSetCurrentIndex4A | |
| 283 | JetSetCurrentIndex4W | |
| 284 | JetSetCurrentIndexA | |
| 285 | JetSetCurrentIndexW | |
| 286 | JetSetDatabaseSize | |
| 287 | JetSetDatabaseSizeA | |
| 288 | JetSetDatabaseSizeW | |
| 289 | JetSetIndexRange | |
| 290 | JetSetLS | |
| 291 | JetSetMaxDatabaseSize | |
| 292 | JetSetResourceParam | |
| 293 | JetSetSessionContext | |
| 294 | JetSetSystemParameter | |
| 295 | JetSetSystemParameterA | |
| 296 | JetSetSystemParameterW | |
| 297 | JetSetTableSequential | |
| 298 | JetSnapshotStart | |
| 299 | JetSnapshotStartA | |
| 300 | JetSnapshotStartW | |
| 301 | JetSnapshotStop | |
| 302 | JetStopBackup | |
| 303 | JetStopBackupInstance | |
| 304 | JetStopService | |
| 305 | JetStopServiceInstance | |
| 306 | JetTerm | |
| 307 | JetTerm2 | |
| 308 | JetTracing | |
| 309 | JetTruncateLog | |
| 310 | JetTruncateLogInstance | |
| 311 | JetUnregisterCallback | |
| 312 | JetUpdate | |
| 313 | JetUpdate2 | |
| 314 | JetUpgradeDatabase | |
| 315 | JetUpgradeDatabaseA | |
| 316 | JetUpgradeDatabaseW | |
| 317 | ese | |
| 318 | esent |
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 | ; | |
| 7 | LIBRARY eventlog.dll | |
| 8 | EXPORTS | |
| 9 | SvcEntry_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 | ; | |
| 7 | LIBRARY snmpelea.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionClose | |
| 10 | SnmpExtensionInit | |
| 11 | SnmpExtensionQuery | |
| 12 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY exstrace.dll | |
| 8 | EXPORTS | |
| 9 | AsyncBinaryTrace | |
| 10 | AsyncStringTrace | |
| 11 | DebugAssert | |
| 12 | DllMain | |
| 13 | FlushAsyncTrace | |
| 14 | InitAsyncTrace | |
| 15 | SetAsyncTraceParams | |
| 16 | SetAsyncTraceParamsEx | |
| 17 | TermAsyncTrace | |
| 18 | __dwEnabledTraces DATA | |
| 19 | g_TestTrace | |
| 20 | g_TestTraceDisable | |
| 21 | g_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 | ; | |
| 7 | LIBRARY FastProx.dll | |
| 8 | EXPORTS | |
| 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 | |
| 3109 | DllCanUnloadNow | |
| 3110 | DllGetClassObject | |
| 3111 | DllRegisterServer | |
| 3112 | DllUnregisterServer | |
| 3113 | GetObjectCount |
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 | ; | |
| 7 | LIBRARY FCACHDLL.dll | |
| 8 | EXPORTS | |
| 9 | AddRefContext | |
| 10 | AssociateContextWithName | |
| 11 | AssociateFile | |
| 12 | AssociateFileEx | |
| 13 | CacheCreateFile | |
| 14 | CacheRemoveFiles | |
| 15 | CacheRichCreateFile | |
| 16 | CloseNonCachedFile | |
| 17 | CompleteDotStuffingOnWrites | |
| 18 | FIOInitialize | |
| 19 | FIOReadFile | |
| 20 | FIOReadFileEx | |
| 21 | FIOTerminate | |
| 22 | FIOWriteFile | |
| 23 | FIOWriteFileEx | |
| 24 | FindContextFromName | |
| 25 | FindOrCreateNameCache | |
| 26 | FindSyncContextFromName | |
| 27 | GetDotStuffState | |
| 28 | GetFileSizeFromContext | |
| 29 | GetIsFileDotTerminated | |
| 30 | InitializeCache | |
| 31 | InsertFile | |
| 32 | InvalidateName | |
| 33 | ProduceDotStuffedContext | |
| 34 | ProduceDotStuffedContextInContext | |
| 35 | ReleaseContext | |
| 36 | ReleaseNameCache | |
| 37 | SetDotScanningOnReads | |
| 38 | SetDotScanningOnWrites | |
| 39 | SetDotStuffState | |
| 40 | SetDotStuffingOnWrites | |
| 41 | SetIsFileDotTerminated | |
| 42 | SetNameCacheSecurityFunction | |
| 43 | TerminateCache |
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 | ; | |
| 7 | LIBRARY FldrClnr.dll | |
| 8 | EXPORTS | |
| 9 | DllInstall | |
| 10 | DllMain | |
| 11 | DllRegisterServer | |
| 12 | Wizard_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 | ; | |
| 7 | LIBRARY framedyn.dll | |
| 8 | EXPORTS | |
| 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 | |
| 1219 | DoCmd |
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 | ; | |
| 7 | LIBRARY FTPCTRS2.dll | |
| 8 | EXPORTS | |
| 9 | OpenFtpPerformanceData | |
| 10 | CollectFtpPerformanceData | |
| 11 | CloseFtpPerformanceData |
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 | ; | |
| 7 | LIBRARY FTPMIB.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionInit | |
| 10 | SnmpExtensionQuery | |
| 11 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY FXSAPI.dll | |
| 8 | EXPORTS | |
| 9 | FXSAPIFree | |
| 10 | FXSAPIInitialize | |
| 11 | FaxAbort | |
| 12 | FaxAccessCheck | |
| 13 | FaxAccessCheckEx | |
| 14 | FaxAddOutboundGroupA | |
| 15 | FaxAddOutboundGroupW | |
| 16 | FaxAddOutboundRuleA | |
| 17 | FaxAddOutboundRuleW | |
| 18 | FaxAnswerCall | |
| 19 | FaxCheckValidFaxFolder | |
| 20 | FaxClose | |
| 21 | FaxCompleteJobParamsA | |
| 22 | FaxCompleteJobParamsW | |
| 23 | FaxConnectFaxServerA | |
| 24 | FaxConnectFaxServerW | |
| 25 | FaxEnableRoutingMethodA | |
| 26 | FaxEnableRoutingMethodW | |
| 27 | FaxEndMessagesEnum | |
| 28 | FaxEnumGlobalRoutingInfoA | |
| 29 | FaxEnumGlobalRoutingInfoW | |
| 30 | FaxEnumJobsA | |
| 31 | FaxEnumJobsExA | |
| 32 | FaxEnumJobsExW | |
| 33 | FaxEnumJobsW | |
| 34 | FaxEnumMessagesA | |
| 35 | FaxEnumMessagesW | |
| 36 | FaxEnumOutboundGroupsA | |
| 37 | FaxEnumOutboundGroupsW | |
| 38 | FaxEnumOutboundRulesA | |
| 39 | FaxEnumOutboundRulesW | |
| 40 | FaxEnumPortsA | |
| 41 | FaxEnumPortsExA | |
| 42 | FaxEnumPortsExW | |
| 43 | FaxEnumPortsW | |
| 44 | FaxEnumRoutingExtensionsA | |
| 45 | FaxEnumRoutingExtensionsW | |
| 46 | FaxEnumRoutingMethodsA | |
| 47 | FaxEnumRoutingMethodsW | |
| 48 | FaxEnumerateProvidersA | |
| 49 | FaxEnumerateProvidersW | |
| 50 | FaxFreeBuffer | |
| 51 | FaxFreeSenderInformation | |
| 52 | FaxGetActivityLoggingConfigurationA | |
| 53 | FaxGetActivityLoggingConfigurationW | |
| 54 | FaxGetArchiveConfigurationA | |
| 55 | FaxGetArchiveConfigurationW | |
| 56 | FaxGetConfigWizardUsed | |
| 57 | FaxGetConfigurationA | |
| 58 | FaxGetConfigurationW | |
| 59 | FaxGetCountryListA | |
| 60 | FaxGetCountryListW | |
| 61 | FaxGetDeviceStatusA | |
| 62 | FaxGetDeviceStatusW | |
| 63 | FaxGetExtensionDataA | |
| 64 | FaxGetExtensionDataW | |
| 65 | FaxGetJobA | |
| 66 | FaxGetJobExA | |
| 67 | FaxGetJobExW | |
| 68 | FaxGetJobW | |
| 69 | FaxGetLoggingCategoriesA | |
| 70 | FaxGetLoggingCategoriesW | |
| 71 | FaxGetMessageA | |
| 72 | FaxGetMessageTiffA | |
| 73 | FaxGetMessageTiffW | |
| 74 | FaxGetMessageW | |
| 75 | FaxGetOutboxConfiguration | |
| 76 | FaxGetPageData | |
| 77 | FaxGetPersonalCoverPagesOption | |
| 78 | FaxGetPortA | |
| 79 | FaxGetPortExA | |
| 80 | FaxGetPortExW | |
| 81 | FaxGetPortW | |
| 82 | FaxGetQueueStates | |
| 83 | FaxGetReceiptsConfigurationA | |
| 84 | FaxGetReceiptsConfigurationW | |
| 85 | FaxGetReceiptsOptions | |
| 86 | FaxGetRecipientInfoA | |
| 87 | FaxGetRecipientInfoW | |
| 88 | FaxGetRecipientsLimit | |
| 89 | FaxGetReportedServerAPIVersion | |
| 90 | FaxGetRoutingInfoA | |
| 91 | FaxGetRoutingInfoW | |
| 92 | FaxGetSecurity | |
| 93 | FaxGetSecurityEx | |
| 94 | FaxGetSenderInfoA | |
| 95 | FaxGetSenderInfoW | |
| 96 | FaxGetSenderInformation | |
| 97 | FaxGetServerActivity | |
| 98 | FaxGetServerSKU | |
| 99 | FaxGetServicePrintersA | |
| 100 | FaxGetServicePrintersW | |
| 101 | FaxGetVersion | |
| 102 | FaxInitializeEventQueue | |
| 103 | FaxOpenPort | |
| 104 | FaxPrintCoverPageA | |
| 105 | FaxPrintCoverPageW | |
| 106 | FaxRefreshArchive | |
| 107 | FaxRegisterForServerEvents | |
| 108 | FaxRegisterRoutingExtensionW | |
| 109 | FaxRegisterServiceProviderExA | |
| 110 | FaxRegisterServiceProviderExW | |
| 111 | FaxRelease | |
| 112 | FaxRemoveMessage | |
| 113 | FaxRemoveOutboundGroupA | |
| 114 | FaxRemoveOutboundGroupW | |
| 115 | FaxRemoveOutboundRule | |
| 116 | FaxSendDocumentA | |
| 117 | FaxSendDocumentExA | |
| 118 | FaxSendDocumentExW | |
| 119 | FaxSendDocumentForBroadcastA | |
| 120 | FaxSendDocumentForBroadcastW | |
| 121 | FaxSendDocumentW | |
| 122 | FaxSetActivityLoggingConfigurationA | |
| 123 | FaxSetActivityLoggingConfigurationW | |
| 124 | FaxSetArchiveConfigurationA | |
| 125 | FaxSetArchiveConfigurationW | |
| 126 | FaxSetConfigWizardUsed | |
| 127 | FaxSetConfigurationA | |
| 128 | FaxSetConfigurationW | |
| 129 | FaxSetDeviceOrderInGroupA | |
| 130 | FaxSetDeviceOrderInGroupW | |
| 131 | FaxSetExtensionDataA | |
| 132 | FaxSetExtensionDataW | |
| 133 | FaxSetGlobalRoutingInfoA | |
| 134 | FaxSetGlobalRoutingInfoW | |
| 135 | FaxSetJobA | |
| 136 | FaxSetJobW | |
| 137 | FaxSetLoggingCategoriesA | |
| 138 | FaxSetLoggingCategoriesW | |
| 139 | FaxSetOutboundGroupA | |
| 140 | FaxSetOutboundGroupW | |
| 141 | FaxSetOutboundRuleA | |
| 142 | FaxSetOutboundRuleW | |
| 143 | FaxSetOutboxConfiguration | |
| 144 | FaxSetPortA | |
| 145 | FaxSetPortExA | |
| 146 | FaxSetPortExW | |
| 147 | FaxSetPortW | |
| 148 | FaxSetQueue | |
| 149 | FaxSetReceiptsConfigurationA | |
| 150 | FaxSetReceiptsConfigurationW | |
| 151 | FaxSetRoutingInfoA | |
| 152 | FaxSetRoutingInfoW | |
| 153 | FaxSetSecurity | |
| 154 | FaxSetSenderInformation | |
| 155 | FaxStartMessagesEnum | |
| 156 | FaxStartPrintJob2W | |
| 157 | FaxStartPrintJobA | |
| 158 | FaxStartPrintJobW | |
| 159 | FaxUnregisterForServerEvents | |
| 160 | FaxUnregisterRoutingExtensionA | |
| 161 | FaxUnregisterRoutingExtensionW | |
| 162 | FaxUnregisterServiceProviderExA | |
| 163 | FaxUnregisterServiceProviderExW | |
| 164 | IsDeviceVirtual |
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 | ; | |
| 7 | LIBRARY FXSCFGWZ.dll | |
| 8 | EXPORTS | |
| 9 | FaxCfgWzrdDllW | |
| 10 | FaxConfigWizard |
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 | ; | |
| 7 | LIBRARY FxsDrv.dll | |
| 8 | EXPORTS | |
| 9 | DllEntryPoint | |
| 10 | DrvDisableDriver | |
| 11 | DrvEnableDriver | |
| 12 | DrvQueryDriverInfo |
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 | ; | |
| 7 | LIBRARY FXSOCM.dll | |
| 8 | EXPORTS | |
| 9 | FaxModemCoClassInstaller | |
| 10 | FaxOcmSetupProc | |
| 11 | SecureFaxServiceDirectories | |
| 12 | WhereDidMyFaxGo | |
| 13 | XP_UninstallProvider | |
| 14 | DllCanUnloadNow | |
| 15 | DllGetClassObject | |
| 16 | DllRegisterServer | |
| 17 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY FXSPERF.dll | |
| 8 | EXPORTS | |
| 9 | OpenFaxPerformanceData | |
| 10 | CollectFaxPerformanceData | |
| 11 | CloseFaxPerformanceData |
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 | ; | |
| 7 | LIBRARY FxsRoute.dll | |
| 8 | EXPORTS | |
| 9 | FaxRouteConfigure | |
| 10 | FaxRouteEmail | |
| 11 | FaxRoutePrint | |
| 12 | FaxRouteStore | |
| 13 | FaxExtInitializeConfig | |
| 14 | FaxRouteDeviceChangeNotification | |
| 15 | FaxRouteDeviceEnable | |
| 16 | FaxRouteGetRoutingInfo | |
| 17 | FaxRouteInitialize | |
| 18 | FaxRouteSetRoutingInfo |
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 | ; | |
| 7 | LIBRARY FXSST.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | FaxMonitorShutdown | |
| 11 | IsFaxMessage |
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 | ; | |
| 7 | LIBRARY FXST30.dll | |
| 8 | EXPORTS | |
| 9 | FaxDevAbortOperation | |
| 10 | FaxDevEndJob | |
| 11 | FaxDevInitialize | |
| 12 | FaxDevReceive | |
| 13 | FaxDevReportStatus | |
| 14 | FaxDevSend | |
| 15 | FaxDevShutdown | |
| 16 | FaxDevStartJob | |
| 17 | FaxExtInitializeConfig |
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 | ; | |
| 7 | LIBRARY FXSTIFF.dll | |
| 8 | EXPORTS | |
| 9 | ConvMmrPageHiResToMrLoRes | |
| 10 | ConvMmrPageToMh | |
| 11 | ConvMmrPageToMrSameRes | |
| 12 | ConvertTiffFileToValidFaxFormat | |
| 13 | FXSTIFFInitialize | |
| 14 | FindNextEol | |
| 15 | FreeMsTagInfo | |
| 16 | GetMsTagDwordLong | |
| 17 | GetMsTagFileTime | |
| 18 | GetMsTagString | |
| 19 | GetW2kMsTiffTags | |
| 20 | MemoryMapTiffFile | |
| 21 | MergeTiffFiles | |
| 22 | MmrAddBranding | |
| 23 | PrintTiffFile | |
| 24 | ScanMhSegment | |
| 25 | ScanMrSegment | |
| 26 | TiffAddMsTags | |
| 27 | TiffClose | |
| 28 | TiffCreate | |
| 29 | TiffEndPage | |
| 30 | TiffExtractFirstPage | |
| 31 | TiffGetCurrentPageData | |
| 32 | TiffLimitTagNumber | |
| 33 | TiffOpen | |
| 34 | TiffPostProcessFast | |
| 35 | TiffPrint | |
| 36 | TiffPrintDC | |
| 37 | TiffRead | |
| 38 | TiffRecoverGoodPages | |
| 39 | TiffSeekToPage | |
| 40 | TiffSetCurrentPageParams | |
| 41 | TiffStartPage | |
| 42 | TiffUncompressMmrPage | |
| 43 | TiffUncompressMmrPageRaw | |
| 44 | TiffWriteRaw |
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 | ; | |
| 7 | LIBRARY fxsui.dll | |
| 8 | EXPORTS | |
| 9 | DevQueryPrintEx | |
| 10 | DrvAdvancedDocumentProperties | |
| 11 | DrvConvertDevMode | |
| 12 | DrvDeviceCapabilities | |
| 13 | DrvDevicePropertySheets | |
| 14 | DrvDocumentEvent | |
| 15 | DrvDocumentProperties | |
| 16 | DrvDocumentPropertySheets | |
| 17 | DrvPrinterEvent | |
| 18 | PrinterProperties |
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 | ; | |
| 7 | LIBRARY FXSWZRD.dll | |
| 8 | EXPORTS | |
| 9 | FaxFreeSendWizardData | |
| 10 | FaxSendWizard |
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 | ; | |
| 7 | LIBRARY GLMF32.dll | |
| 8 | EXPORTS | |
| 9 | __glsParser_create | |
| 10 | __glsParser_print | |
| 11 | __glsString_appendChar | |
| 12 | __glsString_assign | |
| 13 | __glsString_init | |
| 14 | glsAbortCall | |
| 15 | glsAppRef | |
| 16 | glsBeginCapture | |
| 17 | glsBeginGLS | |
| 18 | glsBeginObj | |
| 19 | glsBinary | |
| 20 | glsBlock | |
| 21 | glsCallArray | |
| 22 | glsCallArrayInContext | |
| 23 | glsCallStream | |
| 24 | glsCaptureFlags | |
| 25 | glsCaptureFunc | |
| 26 | glsChannel | |
| 27 | glsCharubz | |
| 28 | glsCommandAPI | |
| 29 | glsCommandFunc | |
| 30 | glsCommandString | |
| 31 | glsComment | |
| 32 | glsContext | |
| 33 | glsCopyStream | |
| 34 | glsDataPointer | |
| 35 | glsDeleteContext | |
| 36 | glsDeleteReadPrefix | |
| 37 | glsDeleteStream | |
| 38 | glsDisplayMapfv | |
| 39 | glsEndCapture | |
| 40 | glsEndGLS | |
| 41 | glsEndObj | |
| 42 | glsEnumString | |
| 43 | glsError | |
| 44 | glsFlush | |
| 45 | glsGLRC | |
| 46 | glsGLRCLayer | |
| 47 | glsGenContext | |
| 48 | glsGetAllContexts | |
| 49 | glsGetCaptureDispatchTable | |
| 50 | glsGetCaptureExecTable | |
| 51 | glsGetCaptureFlags | |
| 52 | glsGetCommandAlignment | |
| 53 | glsGetCommandAttrib | |
| 54 | glsGetCommandFunc | |
| 55 | glsGetConsti | |
| 56 | glsGetConstiv | |
| 57 | glsGetConstubz | |
| 58 | glsGetContextFunc | |
| 59 | glsGetContextListl | |
| 60 | glsGetContextListubz | |
| 61 | glsGetContextPointer | |
| 62 | glsGetContexti | |
| 63 | glsGetContextubz | |
| 64 | glsGetCurrentContext | |
| 65 | glsGetCurrentTime | |
| 66 | glsGetError | |
| 67 | glsGetGLRCi | |
| 68 | glsGetHeaderf | |
| 69 | glsGetHeaderfv | |
| 70 | glsGetHeaderi | |
| 71 | glsGetHeaderiv | |
| 72 | glsGetHeaderubz | |
| 73 | glsGetLayerf | |
| 74 | glsGetLayeri | |
| 75 | glsGetOpcodeCount | |
| 76 | glsGetOpcodes | |
| 77 | glsGetStreamAttrib | |
| 78 | glsGetStreamCRC32 | |
| 79 | glsGetStreamReadName | |
| 80 | glsGetStreamSize | |
| 81 | glsGetStreamType | |
| 82 | glsHeaderGLRCi | |
| 83 | glsHeaderLayerf | |
| 84 | glsHeaderLayeri | |
| 85 | glsHeaderf | |
| 86 | glsHeaderfv | |
| 87 | glsHeaderi | |
| 88 | glsHeaderiv | |
| 89 | glsHeaderubz | |
| 90 | glsIsContext | |
| 91 | glsIsContextStream | |
| 92 | glsIsExtensionSupported | |
| 93 | glsIsUTF8String | |
| 94 | glsLong | |
| 95 | glsLongHigh | |
| 96 | glsLongLow | |
| 97 | glsNullCommandFunc | |
| 98 | glsNumb | |
| 99 | glsNumbv | |
| 100 | glsNumd | |
| 101 | glsNumdv | |
| 102 | glsNumf | |
| 103 | glsNumfv | |
| 104 | glsNumi | |
| 105 | glsNumiv | |
| 106 | glsNuml | |
| 107 | glsNumlv | |
| 108 | glsNums | |
| 109 | glsNumsv | |
| 110 | glsNumub | |
| 111 | glsNumubv | |
| 112 | glsNumui | |
| 113 | glsNumuiv | |
| 114 | glsNumul | |
| 115 | glsNumulv | |
| 116 | glsNumus | |
| 117 | glsNumusv | |
| 118 | glsPad | |
| 119 | glsPixelSetup | |
| 120 | glsPixelSetupGen | |
| 121 | glsReadFunc | |
| 122 | glsReadPrefix | |
| 123 | glsRequireExtension | |
| 124 | glsSwapBuffers | |
| 125 | glsUCS1toUTF8z | |
| 126 | glsUCS2toUTF8z | |
| 127 | glsUCS4toUTF8 | |
| 128 | glsUCS4toUTF8z | |
| 129 | glsUCStoUTF8z | |
| 130 | glsULong | |
| 131 | glsULongHigh | |
| 132 | glsULongLow | |
| 133 | glsUTF8toUCS1z | |
| 134 | glsUTF8toUCS2z | |
| 135 | glsUTF8toUCS4 | |
| 136 | glsUTF8toUCS4z | |
| 137 | glsUTF8toUCSz | |
| 138 | glsUnreadFunc | |
| 139 | glsUnsupportedCommand | |
| 140 | glsUpdateCaptureExecTable | |
| 141 | glsWriteFunc | |
| 142 | glsWritePrefix |
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 | ; | |
| 7 | LIBRARY GPKCSP.dll | |
| 8 | EXPORTS | |
| 9 | CPAcquireContext | |
| 10 | CPCreateHash | |
| 11 | CPDecrypt | |
| 12 | CPDeriveKey | |
| 13 | CPDestroyHash | |
| 14 | CPDestroyKey | |
| 15 | CPEncrypt | |
| 16 | CPExportKey | |
| 17 | CPGenKey | |
| 18 | CPGenRandom | |
| 19 | CPGetHashParam | |
| 20 | CPGetKeyParam | |
| 21 | CPGetProvParam | |
| 22 | CPGetUserKey | |
| 23 | CPHashData | |
| 24 | CPHashSessionKey | |
| 25 | CPImportKey | |
| 26 | CPReleaseContext | |
| 27 | CPSetHashParam | |
| 28 | CPSetKeyParam | |
| 29 | CPSetProvParam | |
| 30 | CPSignHash | |
| 31 | CPVerifySignature | |
| 32 | DllMain | |
| 33 | DllRegisterServer | |
| 34 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY GPTEXT.DLL | |
| 8 | EXPORTS | |
| 9 | GenerateIPSECPolicy | |
| 10 | GenerateScriptsGroupPolicy | |
| 11 | GenerateWIRELESSPolicy | |
| 12 | ProcessIPSECPolicyEx | |
| 13 | ProcessPSCHEDPolicy | |
| 14 | ProcessScriptsGroupPolicy | |
| 15 | ProcessScriptsGroupPolicyEx | |
| 16 | ProcessWIRELESSPolicyEx | |
| 17 | DllCanUnloadNow | |
| 18 | DllGetClassObject | |
| 19 | DllRegisterServer | |
| 20 | DllUnregisterServer | |
| 21 | ScrRegGPOListToWbem |
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 | ; | |
| 7 | LIBRARY GUITRN.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | ModuleInitialize | |
| 11 | ModuleTerminate | |
| 12 | TransportModule |
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 | ; | |
| 6 | LIBRARY "HAL.dll" | |
| 7 | EXPORTS | |
| 8 | HalAcquireDisplayOwnership | |
| 9 | HalAdjustResourceList | |
| 10 | HalAllProcessorsStarted | |
| 11 | HalAllocateAdapterChannel | |
| 12 | HalAllocateCommonBuffer | |
| 13 | HalAllocateCrashDumpRegisters | |
| 14 | HalAllocateHardwareCounters | |
| 15 | HalAssignSlotResources | |
| 16 | HalBugCheckSystem | |
| 17 | HalCalibratePerformanceCounter | |
| 18 | HalCallBios | |
| 19 | HalClearSoftwareInterrupt | |
| 20 | HalDisableSystemInterrupt | |
| 21 | HalConvertDeviceIdtToIrql | |
| 22 | HalDisableInterrupt | |
| 23 | HalDisplayString | |
| 24 | HalEnableSystemInterrupt | |
| 25 | HalEnableInterrupt | |
| 26 | HalEnumerateEnvironmentVariablesEx | |
| 27 | HalEnumerateProcessors | |
| 28 | HalFlushCommonBuffer | |
| 29 | HalFreeCommonBuffer | |
| 30 | HalFreeHardwareCounters | |
| 31 | HalGetAdapter | |
| 32 | HalGetBusData | |
| 33 | HalGetBusDataByOffset | |
| 34 | HalGetEnvironmentVariable | |
| 35 | HalGetEnvironmentVariableEx | |
| 36 | HalGetInterruptTargetInformation | |
| 37 | HalGetInterruptVector | |
| 38 | HalGetMemoryCachingRequirements | |
| 39 | HalGetMessageRoutingInfo | |
| 40 | HalGetProcessorIdByNtNumber | |
| 41 | HalGetVectorInput | |
| 42 | HalHandleMcheck | |
| 43 | HalHandleNMI | |
| 44 | HalInitSystem | |
| 45 | HalInitializeBios | |
| 46 | HalInitializeOnResume | |
| 47 | HalInitializeProcessor | |
| 48 | HalIsHyperThreadingEnabled | |
| 49 | HalMakeBeep | |
| 50 | HalMcUpdateReadPCIConfig | |
| 51 | HalPerformEndOfInterrupt DATA | |
| 52 | HalProcessorIdle | |
| 53 | HalQueryDisplayParameters | |
| 54 | HalQueryEnvironmentVariableInfoEx | |
| 55 | HalQueryMaximumProcessorCount | |
| 56 | HalQueryRealTimeClock | |
| 57 | HalReadDmaCounter | |
| 58 | HalRegisterDynamicProcessor | |
| 59 | HalRegisterErrataCallbacks | |
| 60 | HalReportResourceUsage | |
| 61 | HalRequestClockInterrupt | |
| 62 | HalRequestDeferredRecoveryServiceInterrupt | |
| 63 | HalRequestIpi | |
| 64 | HalRequestSoftwareInterrupt | |
| 65 | HalReturnToFirmware | |
| 66 | HalSendNMI | |
| 67 | HalSendSoftwareInterrupt | |
| 68 | HalSetBusData | |
| 69 | HalSetBusDataByOffset | |
| 70 | HalSetDisplayParameters | |
| 71 | HalSetEnvironmentVariable | |
| 72 | HalSetEnvironmentVariableEx | |
| 73 | HalSetProfileInterval | |
| 74 | HalSetRealTimeClock | |
| 75 | HalSetTimeIncrement | |
| 76 | HalStartDynamicProcessor | |
| 77 | HalStartNextProcessor | |
| 78 | HalStartProfileInterrupt | |
| 79 | HalStopProfileInterrupt | |
| 80 | HalSystemVectorDispatchEntry | |
| 81 | HalTranslateBusAddress | |
| 82 | IoAssignDriveLetters | |
| 83 | IoFlushAdapterBuffers | |
| 84 | IoFreeAdapterChannel | |
| 85 | IoFreeMapRegisters | |
| 86 | IoMapTransfer | |
| 87 | IoReadPartitionTable | |
| 88 | IoSetPartitionInformation | |
| 89 | IoWritePartitionTable | |
| 90 | KdComPortInUse DATA | |
| 91 | KeFlushWriteBuffer | |
| 92 | KeQueryPerformanceCounter | |
| 93 | KeStallExecutionProcessor | |
| 94 | x86BiosExecuteInterrupt | |
| 95 | x86BiosInitializeBiosEx | |
| 96 | x86BiosTranslateAddress | |
| 97 | x86BiosAllocateBuffer | |
| 98 | x86BiosCall | |
| 99 | x86BiosFreeBuffer | |
| 100 | x86BiosReadMemory | |
| 101 | x86BiosWriteMemory |
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 | ; | |
| 7 | LIBRARY hgfs.dll | |
| 8 | EXPORTS | |
| 9 | NPGetConnection | |
| 10 | NPGetCaps | |
| 11 | NPAddConnection | |
| 12 | NPCancelConnection | |
| 13 | NPOpenEnum | |
| 14 | NPEnumResource | |
| 15 | NPCloseEnum | |
| 16 | NPAddConnection3 | |
| 17 | NPGetResourceParent | |
| 18 | NPGetResourceInformation |
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 | ; | |
| 6 | LIBRARY "HIDCLASS.SYS" | |
| 7 | EXPORTS | |
| 8 | DllInitialize | |
| 9 | DllUnload | |
| 10 | HidNotifyPresence | |
| 11 | HidRegisterMinidriver |
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 | ; | |
| 6 | LIBRARY "HIDPARSE.SYS" | |
| 7 | EXPORTS | |
| 8 | HidP_FreeCollectionDescription | |
| 9 | HidP_GetButtonCaps | |
| 10 | HidP_GetCaps | |
| 11 | HidP_GetCollectionDescription | |
| 12 | HidP_GetData | |
| 13 | HidP_GetExtendedAttributes | |
| 14 | HidP_GetLinkCollectionNodes | |
| 15 | HidP_GetScaledUsageValue | |
| 16 | HidP_GetSpecificButtonCaps | |
| 17 | HidP_GetSpecificValueCaps | |
| 18 | HidP_GetUsageValue | |
| 19 | HidP_GetUsageValueArray | |
| 20 | HidP_GetUsages | |
| 21 | HidP_GetUsagesEx | |
| 22 | HidP_GetValueCaps | |
| 23 | HidP_InitializeReportForID | |
| 24 | HidP_MaxDataListLength | |
| 25 | HidP_MaxUsageListLength | |
| 26 | HidP_SetData | |
| 27 | HidP_SetScaledUsageValue | |
| 28 | HidP_SetUsageValue | |
| 29 | HidP_SetUsageValueArray | |
| 30 | HidP_SetUsages | |
| 31 | HidP_SysPowerCaps | |
| 32 | HidP_SysPowerEvent | |
| 33 | HidP_TranslateUsageAndPagesToI8042ScanCodes | |
| 34 | HidP_TranslateUsagesToI8042ScanCodes | |
| 35 | HidP_UnsetUsages | |
| 36 | HidP_UsageAndPageListDifference | |
| 37 | HidP_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 | ; | |
| 7 | LIBRARY HMMAPI.dll | |
| 8 | EXPORTS | |
| 9 | MAPIFreeBuffer | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | MAPISendDocuments | |
| 13 | MAPILogon | |
| 14 | MAPILogoff | |
| 15 | MAPISendMail | |
| 16 | MAPISaveMail | |
| 17 | MAPIReadMail | |
| 18 | MAPIFindNext | |
| 19 | MAPIDeleteMail | |
| 20 | MAPIAddress | |
| 21 | MAPIDetails | |
| 22 | MAPIResolveName | |
| 23 | BMAPISendMail | |
| 24 | BMAPISaveMail | |
| 25 | BMAPIReadMail | |
| 26 | BMAPIGetReadMail | |
| 27 | BMAPIFindNext | |
| 28 | BMAPIAddress | |
| 29 | BMAPIGetAddress | |
| 30 | BMAPIDetails | |
| 31 | BMAPIResolveName | |
| 32 | MailToProtocolHandler | |
| 33 | OpenInboxHandler | |
| 34 | AddService | |
| 35 | RemoveService |
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 | ; | |
| 7 | LIBRARY HNetCfg.dll | |
| 8 | EXPORTS | |
| 9 | HNetDeleteRasConnection | |
| 10 | HNetFreeSharingServicesPage | |
| 11 | HNetGetSharingServicesPage | |
| 12 | WinBomConfigureWindowsFirewall | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer | |
| 17 | HNetFreeFirewallLoggingSettings | |
| 18 | HNetGetFirewallSettingsPage | |
| 19 | HNetGetShareAndBridgeSettings | |
| 20 | HNetSetShareAndBridgeSettings | |
| 21 | HNetSharedAccessSettingsDlg | |
| 22 | HNetSharingAndFirewallSettingsDlg | |
| 23 | IcfChangeNotificationCreate | |
| 24 | IcfChangeNotificationDestroy | |
| 25 | IcfCheckAppAuthorization | |
| 26 | IcfCloseDynamicFwPort | |
| 27 | IcfConnect | |
| 28 | IcfDisconnect | |
| 29 | IcfFreeAdapters | |
| 30 | IcfFreeDynamicFwPorts | |
| 31 | IcfFreeProfile | |
| 32 | IcfFreeString | |
| 33 | IcfFreeTickets | |
| 34 | IcfGetAdapters | |
| 35 | IcfGetCurrentProfileType | |
| 36 | IcfGetDynamicFwPorts | |
| 37 | IcfGetOperationalMode | |
| 38 | IcfGetProfile | |
| 39 | IcfGetTickets | |
| 40 | IcfIsIcmpTypeAllowed | |
| 41 | IcfIsPortAllowed | |
| 42 | IcfOpenDynamicFwPort | |
| 43 | IcfOpenDynamicFwPortWithoutSocket | |
| 44 | IcfOpenFileSharingPorts | |
| 45 | IcfRefreshPolicy | |
| 46 | IcfRemoveDisabledAuthorizedApp | |
| 47 | IcfSetProfile | |
| 48 | IcfSetServicePermission | |
| 49 | IcfSubNetsGetScope | |
| 50 | IcfSubNetsIsStringValid | |
| 51 | IcfSubNetsToString |
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 | ; | |
| 7 | LIBRARY HNETWIZ.dll | |
| 8 | EXPORTS | |
| 9 | HomeNetWizardRunDll | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllMain | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY hostmib.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionInit | |
| 10 | SnmpExtensionQuery | |
| 11 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY HTRN_JIS.dll | |
| 8 | EXPORTS | |
| 9 | transCharIn | |
| 10 | transCharOut | |
| 11 | transCreateHandle | |
| 12 | transDestroyHandle | |
| 13 | transDoDialog | |
| 14 | transInitHandle | |
| 15 | transLoadHandle | |
| 16 | transSaveHandle |
lib/libc/mingw/lib64/httpapi.def-3| ... | ... | @@ -57,9 +57,6 @@ HttpSendResponseEntityBody |
| 57 | 57 | HttpSetAppPoolInformation |
| 58 | 58 | HttpSetConfigGroupInformation |
| 59 | 59 | HttpSetControlChannelInformation |
| 60 | HttpSetAppPoolInformation | |
| 61 | HttpSetConfigGroupInformation | |
| 62 | HttpSetControlChannelInformation | |
| 63 | 60 | HttpSetRequestQueueProperty |
| 64 | 61 | HttpSetServerSessionProperty |
| 65 | 62 | HttpSetServiceConfiguration |
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 | ; | |
| 7 | LIBRARY HTTPEXT.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY HTTPMIB.dll | |
| 8 | EXPORTS | |
| 9 | DllLibMain | |
| 10 | SnmpExtensionInit | |
| 11 | SnmpExtensionQuery | |
| 12 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY HTTPODBC.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 7 | LIBRARY HYPERTRM.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | InitInstance | |
| 12 | MessageLoop | |
| 13 | sessQuerySysFileHdl | |
| 14 | sessQueryTranslateHdl | |
| 15 | sfGetSessionItem | |
| 16 | sfPutSessionItem |
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 | ; | |
| 7 | LIBRARY iaspolcy.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | IASAttributeAddRef | |
| 14 | IASAttributeAlloc | |
| 15 | IASAttributeAnsiAlloc | |
| 16 | IASAttributeRelease | |
| 17 | IASAttributeUnicodeAlloc |
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 | ; | |
| 7 | LIBRARY ICAAPI.dll | |
| 8 | EXPORTS | |
| 9 | IcaCdCreateThread | |
| 10 | IcaCdIoControl | |
| 11 | IcaCdWaitForMultipleObjects | |
| 12 | IcaCdWaitForSingleObject | |
| 13 | IcaChannelClose | |
| 14 | IcaChannelIoControl | |
| 15 | IcaChannelOpen | |
| 16 | IcaChannelTrace | |
| 17 | IcaClose | |
| 18 | IcaIoControl | |
| 19 | IcaMemoryAllocate | |
| 20 | IcaMemoryFree | |
| 21 | IcaOpen | |
| 22 | IcaPushConsoleStack | |
| 23 | IcaStackCallback | |
| 24 | IcaStackClose | |
| 25 | IcaStackConnectionAccept | |
| 26 | IcaStackConnectionClose | |
| 27 | IcaStackConnectionRequest | |
| 28 | IcaStackConnectionWait | |
| 29 | IcaStackCreateShadowEndpoint | |
| 30 | IcaStackDisconnect | |
| 31 | IcaStackIoControl | |
| 32 | IcaStackIoControlNoConnLock | |
| 33 | IcaStackOpen | |
| 34 | IcaStackQueryLocalAddress | |
| 35 | IcaStackQueryState | |
| 36 | IcaStackReconnect | |
| 37 | IcaStackTerminate | |
| 38 | IcaStackTrace | |
| 39 | IcaStackUnlock | |
| 40 | IcaSystemTrace | |
| 41 | IcaTrace | |
| 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 | ; | |
| 7 | LIBRARY ICFGNT.dll | |
| 8 | EXPORTS | |
| 9 | IcfgInstallModem | |
| 10 | IcfgNeedModem | |
| 11 | IcfgSetInstallSourcePath | |
| 12 | InetSetAutodial | |
| 13 | InetSetAutodialAddress | |
| 14 | IcfgGetLastInstallErrorText | |
| 15 | IcfgInstallInetComponents | |
| 16 | IcfgIsFileSharingTurnedOn | |
| 17 | IcfgIsGlobalDNS | |
| 18 | IcfgNeedInetComponents | |
| 19 | IcfgRemoveGlobalDNS | |
| 20 | IcfgStartServices | |
| 21 | IcfgTurnOffFileSharing | |
| 22 | InetGetAutodial | |
| 23 | InetGetSupportedPlatform |
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 | ; | |
| 7 | LIBRARY ICWCONN.dll | |
| 8 | EXPORTS | |
| 9 | GetICWCONNVersion | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY AUTODIAL.dll | |
| 8 | EXPORTS | |
| 9 | AutoDialHandler | |
| 10 | AutoDialInit | |
| 11 | RasSetEntryPropertiesScriptPatch | |
| 12 | DialingDownloadDialog | |
| 13 | DialingErrorDialog | |
| 14 | ICWGetRasEntry |
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 | ; | |
| 7 | LIBRARY icwdl.dll | |
| 8 | EXPORTS | |
| 9 | DownLoadCancel | |
| 10 | DownLoadClose | |
| 11 | DownLoadExecute | |
| 12 | DownLoadInit | |
| 13 | DownLoadProcess | |
| 14 | DownLoadSetStatusCallback |
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 | ; | |
| 7 | LIBRARY icwphbk.dll | |
| 8 | EXPORTS | |
| 9 | GetSupportNumbers | |
| 10 | PhbkGenericDlgProc | |
| 11 | PhoneBookDisplaySignUpNumbers | |
| 12 | PhoneBookGetCanonical | |
| 13 | PhoneBookLoad | |
| 14 | PhoneBookMergeChanges | |
| 15 | PhoneBookSuggestNumbers | |
| 16 | PhoneBookUnload |
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 | ; | |
| 7 | LIBRARY ICWUTIL.dll | |
| 8 | EXPORTS | |
| 9 | RegisterServer | |
| 10 | URLAppendQueryPair | |
| 11 | URLEncode | |
| 12 | UnregisterServer | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY IDQ.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 7 | LIBRARY IEAKENG.dll | |
| 8 | EXPORTS | |
| 9 | AddADMItemA | |
| 10 | AddADMItemW | |
| 11 | BToolbar_Edit | |
| 12 | BToolbar_InitA | |
| 13 | BToolbar_InitW | |
| 14 | BToolbar_Remove | |
| 15 | BToolbar_SaveA | |
| 16 | BToolbar_SaveW | |
| 17 | BrowseForFileA | |
| 18 | BrowseForFileW | |
| 19 | BrowseForFolderA | |
| 20 | BrowseForFolderW | |
| 21 | BuildPalette | |
| 22 | CanDeleteADM | |
| 23 | CheckField | |
| 24 | CheckForDupKeys | |
| 25 | CheckVerA | |
| 26 | CheckVerW | |
| 27 | CopyAnimBmpA | |
| 28 | CopyAnimBmpW | |
| 29 | CopyHttFileA | |
| 30 | CopyHttFileW | |
| 31 | CopyLogoBmpA | |
| 32 | CopyLogoBmpW | |
| 33 | CopyWallPaperA | |
| 34 | CopyWallPaperW | |
| 35 | CreateADMWindow | |
| 36 | DeleteADMItemA | |
| 37 | DeleteADMItemW | |
| 38 | DeleteADMItemsA | |
| 39 | DeleteADMItemsW | |
| 40 | DeleteFavoriteA | |
| 41 | DeleteFavoriteW | |
| 42 | DestroyADMWindow | |
| 43 | DisplayADMItem | |
| 44 | DoReboot | |
| 45 | EncodeSignatureA | |
| 46 | EncodeSignatureW | |
| 47 | ErrorMessageBox | |
| 48 | ExportFavoritesA | |
| 49 | ExportFavoritesW | |
| 50 | ExportQuickLinksA | |
| 51 | ExportQuickLinksW | |
| 52 | ExportRegKey2InfA | |
| 53 | ExportRegKey2InfW | |
| 54 | ExportRegTree2InfA | |
| 55 | ExportRegTree2InfW | |
| 56 | ExportRegValue2InfA | |
| 57 | ExportRegValue2InfW | |
| 58 | GenerateNewVersionStrA | |
| 59 | GenerateNewVersionStrW | |
| 60 | GetAdmFileListA | |
| 61 | GetAdmFileListW | |
| 62 | GetAdmWindowHandle | |
| 63 | GetBaseFileNameA | |
| 64 | GetBaseFileNameW | |
| 65 | GetFavoriteUrlA | |
| 66 | GetFavoriteUrlW | |
| 67 | GetFavoritesInfoTipA | |
| 68 | GetFavoritesInfoTipW | |
| 69 | GetFavoritesMaxNumber | |
| 70 | GetFavoritesNumber | |
| 71 | GetProxyDlgA | |
| 72 | GetProxyDlgW | |
| 73 | ImportADMFileA | |
| 74 | ImportADMFileW | |
| 75 | ImportADTInfoA | |
| 76 | ImportADTInfoW | |
| 77 | ImportAuthCodeA | |
| 78 | ImportAuthCodeW | |
| 79 | ImportConnectSetA | |
| 80 | ImportConnectSetW | |
| 81 | ImportFavoritesA | |
| 82 | ImportFavoritesCmdA | |
| 83 | ImportFavoritesCmdW | |
| 84 | ImportFavoritesW | |
| 85 | ImportLDAPBitmapA | |
| 86 | ImportLDAPBitmapW | |
| 87 | ImportOEInfoA | |
| 88 | ImportOEInfoW | |
| 89 | ImportProgramsA | |
| 90 | ImportProgramsW | |
| 91 | ImportQuickLinksA | |
| 92 | ImportQuickLinksW | |
| 93 | ImportRatingsA | |
| 94 | ImportRatingsW | |
| 95 | ImportSiteCertA | |
| 96 | ImportSiteCertW | |
| 97 | ImportToolbarInfoA | |
| 98 | ImportToolbarInfoW | |
| 99 | ImportZonesA | |
| 100 | ImportZonesW | |
| 101 | InitializeStartSearchA | |
| 102 | InitializeStartSearchW | |
| 103 | IsADMFileVisibleA | |
| 104 | IsADMFileVisibleW | |
| 105 | IsAnimBitmapFileValidA | |
| 106 | IsAnimBitmapFileValidW | |
| 107 | IsBitmapFileValidA | |
| 108 | IsBitmapFileValidW | |
| 109 | IsFavoriteItem | |
| 110 | LoadADMFilesA | |
| 111 | LoadADMFilesW | |
| 112 | MigrateFavoritesA | |
| 113 | MigrateFavoritesW | |
| 114 | MigrateToOldFavoritesA | |
| 115 | MigrateToOldFavoritesW | |
| 116 | ModifyAuthCode | |
| 117 | ModifyFavoriteA | |
| 118 | ModifyFavoriteW | |
| 119 | ModifyRatings | |
| 120 | ModifySiteCert | |
| 121 | ModifyZones | |
| 122 | MoveADMWindow | |
| 123 | MoveDownFavorite | |
| 124 | MoveUpFavorite | |
| 125 | NewFolder | |
| 126 | NewUrlA | |
| 127 | NewUrlW | |
| 128 | ProcessFavSelChange | |
| 129 | ResetAdmFilesA | |
| 130 | ResetAdmFilesW | |
| 131 | SaveADMItem | |
| 132 | SaveAdmFilesA | |
| 133 | SaveAdmFilesW | |
| 134 | SaveStartSearchA | |
| 135 | SaveStartSearchW | |
| 136 | SelectADMItem | |
| 137 | SetADMWindowTextA | |
| 138 | SetADMWindowTextW | |
| 139 | SetLBWidth | |
| 140 | SetOrClearVersionInfoA | |
| 141 | SetOrClearVersionInfoW | |
| 142 | SetProxyDlgA | |
| 143 | SetProxyDlgW | |
| 144 | ShowADMWindow | |
| 145 | ShowBitmapA | |
| 146 | ShowBitmapW | |
| 147 | ShowDeskCpl | |
| 148 | ShowInetcpl | |
| 149 | SignFileA | |
| 150 | SignFileW | |
| 151 | TestURLA | |
| 152 | TestURLW |
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 | ; | |
| 7 | LIBRARY iedkcs32.dll | |
| 8 | EXPORTS | |
| 9 | BrandExternal | |
| 10 | CloseRASConnections | |
| 11 | GenerateGroupPolicy | |
| 12 | ProcessGroupPolicy | |
| 13 | ProcessGroupPolicyEx | |
| 14 | ProcessGroupPolicyForZoneMap | |
| 15 | BrandCleanInstallStubs | |
| 16 | BrandICW | |
| 17 | BrandICW2 | |
| 18 | BrandIE4 | |
| 19 | BrandInfAndOutlookExpress | |
| 20 | BrandInternetExplorer | |
| 21 | BrandIntra | |
| 22 | BrandMe | |
| 23 | Clear | |
| 24 | DllRegisterServer | |
| 25 | DllUnregisterServer | |
| 26 | InternetInitializeAutoProxyDll |
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 | ; | |
| 7 | LIBRARY exports.dll | |
| 8 | EXPORTS | |
| 9 | CceDetectInputCode | |
| 10 | CceGetAvailableEncodings | |
| 11 | CceIsAvailableEncoding | |
| 12 | CceStreamMultiByteToUnicode | |
| 13 | CceStreamUnicodeToMultiByte | |
| 14 | CceStringMultiByteToUnicode | |
| 15 | CceStringUnicodeToMultiByte | |
| 16 | DllMain | |
| 17 | FetchMsEncodeDllVersion |
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 | ; | |
| 7 | LIBRARY iesetup.dll | |
| 8 | EXPORTS | |
| 9 | IEHardenAdmin | |
| 10 | IEHardenAdminNow | |
| 11 | IEHardenMachineNow | |
| 12 | IEHardenUser | |
| 13 | SetFirstHomepage | |
| 14 | DllInstall | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer | |
| 17 | FixIE |
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 | ; | |
| 7 | LIBRARY IGMPAGNT.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionClose | |
| 10 | SnmpExtensionInit | |
| 11 | SnmpExtensionQuery | |
| 12 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY IIS.dll | |
| 8 | EXPORTS | |
| 9 | OcEntry | |
| 10 | IIS5Log | |
| 11 | IIS5LogParmString | |
| 12 | IIS5LogParmDword | |
| 13 | ProcessInfSection | |
| 14 | SysPrepBackup | |
| 15 | SysPrepRestore | |
| 16 | ApplyIISAcl |
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 | ; | |
| 7 | LIBRARY IISADMIN.dll | |
| 8 | EXPORTS | |
| 9 | RetrieveTracingHandle | |
| 10 | ServiceEntry |
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 | ; | |
| 7 | LIBRARY IISCFG.DLL | |
| 8 | EXPORTS | |
| 9 | DllGetSimpleObject | |
| 10 | DllGetSimpleObjectByID | |
| 11 | DllGetSimpleObjectByIDEx |
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 | ; | |
| 7 | LIBRARY IisRTL.DLL | |
| 8 | EXPORTS | |
| 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 | |
| 465 | CanonURL | |
| 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 | |
| 666 | CreateKey | |
| 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 | |
| 881 | IISCreateDirectory | |
| 882 | IISstricmp | |
| 883 | IISstrlen | |
| 884 | IISstrlwr | |
| 885 | IISstrncpy | |
| 886 | IISstrnicmp | |
| 887 | IISstrrchr | |
| 888 | IISstrupr | |
| 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 | |
| 971 | IsIPAddressLocal | |
| 972 | IsLargeIntegerToDecimalChar | |
| 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 | |
| 1195 | NtLargeIntegerTimeToLocalSystemTime | |
| 1196 | NtLargeIntegerTimeToSystemTime | |
| 1197 | NtSystemTimeToLargeInteger | |
| 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 | |
| 1458 | RemoveWorkItem | |
| 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 | |
| 1489 | ScheduleAdjustTime | |
| 1490 | ScheduleWorkItem | |
| 1491 | SchedulerInitialize | |
| 1492 | SchedulerTerminate | |
| 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 | |
| 1587 | StringTimeToFileTime | |
| 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 | |
| 1594 | SystemTimeToGMT | |
| 1595 | SystemTimeToGMTEx | |
| 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 | |
| 1740 | ZapRegistryKey | |
| 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 | |
| 1985 | CreateRefTraceLog | |
| 1986 | CreateTraceLog | |
| 1987 | DestroyRefTraceLog | |
| 1988 | DestroyTraceLog | |
| 1989 | DllMain | |
| 1990 | GetAllocCounters | |
| 1991 | GetCurrentTimeInMilliseconds | |
| 1992 | GetCurrentTimeInSeconds | |
| 1993 | GetQueryType | |
| 1994 | IISCaptureStackBackTrace | |
| 1995 | IISGetCurrentTime | |
| 1996 | IISGetPlatformType | |
| 1997 | IISInitializeCriticalSection | |
| 1998 | IISSetCriticalSectionSpinCount | |
| 1999 | IisCalloc | |
| 2000 | IisFree | |
| 2001 | IisHeap | |
| 2002 | IisMalloc | |
| 2003 | IisReAlloc | |
| 2004 | InetAcquireResourceExclusive | |
| 2005 | InetAcquireResourceShared | |
| 2006 | InetConvertExclusiveToShared | |
| 2007 | InetConvertSharedToExclusive | |
| 2008 | InetDeleteResource | |
| 2009 | InetInitializeResource | |
| 2010 | InetReleaseResource | |
| 2011 | InitializeIISRTL | |
| 2012 | InitializeSecondsTimer | |
| 2013 | IsNumberInUnicodeList | |
| 2014 | LKRHashTableInit | |
| 2015 | LKRHashTableUninit | |
| 2016 | MIDL_user_allocate | |
| 2017 | MIDL_user_free | |
| 2018 | MonBuildInstanceDefinition | |
| 2019 | PuCloseDbgPrintFile | |
| 2020 | PuCreateDebugPrintsObject | |
| 2021 | PuDbgAssertFailed | |
| 2022 | PuDbgCaptureContext | |
| 2023 | PuDbgCreateEvent | |
| 2024 | PuDbgCreateMutex | |
| 2025 | PuDbgCreateSemaphore | |
| 2026 | PuDbgDump | |
| 2027 | PuDbgPrint | |
| 2028 | PuDbgPrintW | |
| 2029 | PuDeleteDebugPrintsObject | |
| 2030 | PuLoadDebugFlagsFromReg | |
| 2031 | PuLoadDebugFlagsFromRegStr | |
| 2032 | ResetTraceLog | |
| 2033 | RpcBindHandleForServer | |
| 2034 | RpcBindHandleFree | |
| 2035 | RpcBindHandleOverLpc | |
| 2036 | RpcBindHandleOverNamedPipe | |
| 2037 | RpcBindHandleOverTcpIp | |
| 2038 | RpcuFindProtocolToUse | |
| 2039 | TerminateIISRTL | |
| 2040 | TerminateSecondsTimer | |
| 2041 | WriteRefTraceLog | |
| 2042 | WriteRefTraceLogEx | |
| 2043 | WriteTraceLog | |
| 2044 | stristr |
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 | ; | |
| 7 | LIBRARY SUBAUTH.dll | |
| 8 | EXPORTS | |
| 9 | Msv1_0SubAuthenticationRoutineEx | |
| 10 | RegisterIISSUBA | |
| 11 | UnregisterIISSUBA |
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 | ; | |
| 7 | LIBRARY iisui.dll | |
| 8 | EXPORTS | |
| 9 | InitCommonDll | |
| 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 | |
| 1900 | DllRegisterServer | |
| 1901 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY IISUTIL.dll | |
| 8 | EXPORTS | |
| 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 | |
| 345 | ACopyToW | |
| 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 | |
| 354 | AddWpgToTokenDefaultDacl | |
| 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 | |
| 359 | AllocateAndCreateWellKnownAcl | |
| 360 | AllocateAndCreateWellKnownSid | |
| 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 | |
| 371 | AlterDesktopForUser | |
| 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 | |
| 530 | CompareStringNoCase | |
| 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 | |
| 577 | ConvertUnicodeToMultiByte | |
| 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 | |
| 658 | DecryptMemoryPassword | |
| 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 | |
| 685 | DisableTokenBackupPrivilege | |
| 686 | ; public: static int __cdecl ALLOC_CACHE_HANDLER::DumpStatsToHtml(char * __ptr64,unsigned long * __ptr64) | |
| 687 | ?DumpStatsToHtml@ALLOC_CACHE_HANDLER@@SAHPEADPEAK@Z | |
| 688 | DupTokenWithSameImpersonationLevel | |
| 689 | ; public: virtual unsigned long __cdecl CEtwTracer::EnableEventsCallbackCustomHandler(void) __ptr64 | |
| 690 | ?EnableEventsCallbackCustomHandler@CEtwTracer@@UEAAKXZ | |
| 691 | EncryptMemoryPassword | |
| 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 | |
| 768 | FlipSlashes | |
| 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 | |
| 779 | FreeSecurityAttributes | |
| 780 | FreeWellKnownAcl | |
| 781 | FreeWellKnownSid | |
| 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 | |
| 788 | GenerateNameWithGUID | |
| 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 | |
| 859 | GetSecurityAttributesForHandle | |
| 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 | |
| 894 | GrantWpgAccessToToken | |
| 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 | |
| 1011 | IsSSLReportingBackwardCompatibilityMode | |
| 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 | |
| 1128 | LookupTokenAccountName | |
| 1129 | MakeAllProcessHeapsLFH | |
| 1130 | MakePathCanonicalizationProof | |
| 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 | |
| 1315 | ReadDwordParameterValueFromAnyService | |
| 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 | |
| 1356 | ReadRegDword | |
| 1357 | ReadStringParameterValueFromAnyService | |
| 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 | |
| 1430 | RemoveWorkItem | |
| 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 | |
| 1453 | SAFEIsSpace | |
| 1454 | SAFEIsXDigit | |
| 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 | |
| 1461 | ScheduleAdjustTime | |
| 1462 | ScheduleWorkItem | |
| 1463 | SchedulerInitialize | |
| 1464 | SchedulerTerminate | |
| 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 | |
| 1515 | SetExplicitAccessSettings | |
| 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 | |
| 1548 | SetStringParameterValueInAnyService | |
| 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 | |
| 1571 | SkipTo | |
| 1572 | SkipWhite | |
| 1573 | ; private: unsigned char __cdecl CSharelock::SleepWaitingForLock(int) __ptr64 | |
| 1574 | ?SleepWaitingForLock@CSharelock@@AEAAEH@Z | |
| 1575 | StartIISAdminMonitor | |
| 1576 | ; public: long __cdecl MB_BASE_NOTIFICATION_SINK::StartListening(struct IUnknown * __ptr64) __ptr64 | |
| 1577 | ?StartListening@MB_BASE_NOTIFICATION_SINK@@QEAAJPEAUIUnknown@@@Z | |
| 1578 | StopIISAdminMonitor | |
| 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 | |
| 1591 | SystemTimeToGMT | |
| 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 | |
| 1666 | WCopyToA | |
| 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 | |
| 1981 | uudecode | |
| 1982 | uuencode | |
| 1983 | CreateRefTraceLog | |
| 1984 | CreateTraceLog | |
| 1985 | DestroyRefTraceLog | |
| 1986 | DestroyTraceLog | |
| 1987 | GetAllocCounters | |
| 1988 | GetCurrentTimeInSeconds | |
| 1989 | IISGetCurrentTime | |
| 1990 | IISGetPlatformType | |
| 1991 | IISInitializeCriticalSection | |
| 1992 | IISSetCriticalSectionSpinCount | |
| 1993 | InetAcquireResourceExclusive | |
| 1994 | InetAcquireResourceShared | |
| 1995 | InetConvertExclusiveToShared | |
| 1996 | InetConvertSharedToExclusive | |
| 1997 | InetDeleteResource | |
| 1998 | InetInitializeResource | |
| 1999 | InetReleaseResource | |
| 2000 | InitializeIISUtil | |
| 2001 | IrtlTrace | |
| 2002 | IsValidAddress | |
| 2003 | IsValidString | |
| 2004 | PuCloseDbgMemoryLog | |
| 2005 | PuCloseDbgPrintFile | |
| 2006 | PuCreateDebugPrintsObject | |
| 2007 | PuDbgAssertFailed | |
| 2008 | PuDbgCaptureContext | |
| 2009 | PuDbgCreateEvent | |
| 2010 | PuDbgCreateMutex | |
| 2011 | PuDbgCreateSemaphore | |
| 2012 | PuDbgDump | |
| 2013 | PuDbgPrint | |
| 2014 | PuDbgPrintCurrentTime | |
| 2015 | PuDbgPrintError | |
| 2016 | PuDeleteDebugPrintsObject | |
| 2017 | PuGetDbgOutputFlags | |
| 2018 | PuLoadDebugFlagsFromReg | |
| 2019 | PuLoadDebugFlagsFromRegStr | |
| 2020 | PuOpenDbgMemoryLog | |
| 2021 | PuOpenDbgPrintFile | |
| 2022 | PuReOpenDbgPrintFile | |
| 2023 | PuSaveDebugFlagsInReg | |
| 2024 | PuSetDbgOutputFlags | |
| 2025 | ResetTraceLog | |
| 2026 | TerminateIISUtil | |
| 2027 | WriteRefTraceLog | |
| 2028 | WriteRefTraceLogEx | |
| 2029 | WriteTraceLog |
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 | ; | |
| 7 | LIBRARY IISPROV.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | DoMofComp |
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 | ; | |
| 7 | LIBRARY imeshare.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | FInitIMEShare | |
| 11 | EndIMEShare | |
| 12 | FRefreshStyle | |
| 13 | FSupportSty | |
| 14 | PIMEStyleFromAttr | |
| 15 | PColorStyleTextFromIMEStyle | |
| 16 | PColorStyleBackFromIMEStyle | |
| 17 | FBoldIMEStyle | |
| 18 | FItalicIMEStyle | |
| 19 | FUlIMEStyle | |
| 20 | GrfStyIMEStyle | |
| 21 | IdUlIMEStyle | |
| 22 | FGetIMEStyleAttr | |
| 23 | FSetIMEStyleAttr | |
| 24 | FWinIMEColorStyle | |
| 25 | FFundamentalIMEColorStyle | |
| 26 | FRGBIMEColorStyle | |
| 27 | FSpecialIMEColorStyle | |
| 28 | IdSpecialFromIMEColorStyle | |
| 29 | IdWinFromIMEColorStyle | |
| 30 | IdFundamentalFromIMEColorStyle | |
| 31 | RGBFromIMEColorStyle | |
| 32 | FSetIMEColorStyle | |
| 33 | FSetIMEStyle | |
| 34 | FSpecialTextIMEColorStyle | |
| 35 | FSpecialWindowIMEColorStyle | |
| 36 | CustomizeIMEShare | |
| 37 | FSaveIMEShareSetting | |
| 38 | PIMEShareCreate |
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 | ; | |
| 7 | LIBRARY imjp81k.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNowDone | |
| 10 | CheckFileType | |
| 11 | CleanDicThreadFunc | |
| 12 | CreateIFECommonInstance | |
| 13 | CreateIFEDictionary2Instance | |
| 14 | CreateIFEDictionaryInstance | |
| 15 | CreateIFELanguageInstance | |
| 16 | CreateIImeIPointInstance | |
| 17 | CreateIImeKbdInstance | |
| 18 | CreateIImeKnlDictInstance | |
| 19 | CreateIRegManInstance | |
| 20 | DllCanUnloadNow | |
| 21 | DllGetClassObject | |
| 22 | DllRegisterServer | |
| 23 | DllUnregisterServer | |
| 24 | KnlClose | |
| 25 | KnlInit | |
| 26 | KnlOpen | |
| 27 | KnlTerm | |
| 28 | LoadTipConfig | |
| 29 | OurCoCreateInstance | |
| 30 | OurCoTaskMemAlloc | |
| 31 | OurCoTaskMemFree | |
| 32 | OurCoTaskMemRealloc | |
| 33 | OurStringFromGUID2 | |
| 34 | RgSetGakusyuu | |
| 35 | ShutdownKnlDll | |
| 36 | UnLoadOurOle32 | |
| 37 | reload_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 | ; | |
| 7 | LIBRARY imejpcus.dll | |
| 8 | EXPORTS | |
| 9 | OpenDetailDialog | |
| 10 | DllMain |
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 | ; | |
| 7 | LIBRARY imedic.dll | |
| 8 | EXPORTS | |
| 9 | OpenDicTool | |
| 10 | OpenRegisterWord |
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 | ; | |
| 7 | LIBRARY imjputyc.dll | |
| 8 | EXPORTS | |
| 9 | AutoCorrLbSubWndProc | |
| 10 | DllMain | |
| 11 | OpenImeTool | |
| 12 | OpenUty |
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 | ; | |
| 7 | LIBRARY IMSINSNT.dll | |
| 8 | EXPORTS | |
| 9 | OcEntry |
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 | ; | |
| 7 | LIBRARY imeskdic.dll | |
| 8 | EXPORTS | |
| 9 | CreateIImeSkdicInstance | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY INETCFG.dll | |
| 8 | EXPORTS | |
| 9 | CheckConnectionWizard | |
| 10 | ConfigureSystemForInternet | |
| 11 | ConfigureSystemForInternetA | |
| 12 | ConfigureSystemForInternetW | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer | |
| 17 | FreeSignupWizard | |
| 18 | InetConfigClient | |
| 19 | InetConfigClientA | |
| 20 | InetConfigClientW | |
| 21 | InetConfigSystem | |
| 22 | InetConfigSystemFromPath | |
| 23 | InetConfigSystemFromPathA | |
| 24 | InetConfigSystemFromPathW | |
| 25 | InetGetAutodial | |
| 26 | InetGetAutodialA | |
| 27 | InetGetAutodialW | |
| 28 | InetGetClientInfo | |
| 29 | InetGetClientInfoA | |
| 30 | InetGetClientInfoW | |
| 31 | InetGetProxy | |
| 32 | InetGetProxyA | |
| 33 | InetGetProxyW | |
| 34 | InetNeedModem | |
| 35 | InetNeedSystemComponents | |
| 36 | InetPerformSecurityCheck | |
| 37 | InetSetAutodial | |
| 38 | InetSetAutodialA | |
| 39 | InetSetAutodialW | |
| 40 | InetSetClientInfo | |
| 41 | InetSetClientInfoA | |
| 42 | InetSetClientInfoW | |
| 43 | InetSetProxy | |
| 44 | InetSetProxyA | |
| 45 | InetSetProxyEx | |
| 46 | InetSetProxyExA | |
| 47 | InetSetProxyExW | |
| 48 | InetSetProxyW | |
| 49 | InetStartServices | |
| 50 | IsSmartStart | |
| 51 | IsSmartStartEx | |
| 52 | LaunchSignupWizard | |
| 53 | LaunchSignupWizardEx | |
| 54 | SetAutoProxyConnectoid | |
| 55 | SetInternetPhoneNumber | |
| 56 | SetInternetPhoneNumberA | |
| 57 | SetInternetPhoneNumberW | |
| 58 | SetShellNext | |
| 59 | SetShellNextA | |
| 60 | SetShellNextW | |
| 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 | ; | |
| 7 | LIBRARY INFOADMN.dll | |
| 8 | EXPORTS | |
| 9 | CollectW3PerfData | |
| 10 | FtpClearStatistics2 | |
| 11 | FtpQueryStatistics2 | |
| 12 | IISDisconnectUser | |
| 13 | IISEnumerateUsers | |
| 14 | InetInfoClearStatistics | |
| 15 | InetInfoFlushMemoryCache | |
| 16 | InetInfoGetAdminInformation | |
| 17 | InetInfoGetGlobalAdminInformation | |
| 18 | InetInfoGetServerCapabilities | |
| 19 | InetInfoGetSites | |
| 20 | InetInfoGetVersion | |
| 21 | InetInfoQueryStatistics | |
| 22 | InetInfoSetAdminInformation | |
| 23 | InetInfoSetGlobalAdminInformation | |
| 24 | InitW3CounterStructure | |
| 25 | W3ClearStatistics2 | |
| 26 | W3QueryStatistics2 |
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 | ; | |
| 7 | LIBRARY INFOCOMM.dll | |
| 8 | EXPORTS | |
| 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 | |
| 481 | IsNameInRegExpressionA | |
| 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 | |
| 1008 | TsAddMetaData | |
| 1009 | ; void __cdecl TsAddRefMetaData(void * __ptr64) | |
| 1010 | ?TsAddRefMetaData@@YAXPEAX@Z | |
| 1011 | TsAllocate | |
| 1012 | TsAllocateEx | |
| 1013 | ; unsigned long __cdecl TsApiAccessCheck(unsigned long) | |
| 1014 | ?TsApiAccessCheck@@YAKK@Z | |
| 1015 | TsCacheDirectoryBlob | |
| 1016 | TsCacheFlush | |
| 1017 | TsCacheFlushDemux | |
| 1018 | TsCheckInCachedBlob | |
| 1019 | TsCheckInOrFree | |
| 1020 | TsCheckOutCachedBlob | |
| 1021 | TsCloseHandle | |
| 1022 | TsCloseURIFile | |
| 1023 | TsCreateETagFromHandle | |
| 1024 | TsCreateFile | |
| 1025 | TsCreateFileFromURI | |
| 1026 | TsDeCacheCachedBlob | |
| 1027 | TsDeleteOnClose | |
| 1028 | ; int __cdecl TsDeleteUserToken(class CACHED_TOKEN * __ptr64) | |
| 1029 | ?TsDeleteUserToken@@YAHPEAVCACHED_TOKEN@@@Z | |
| 1030 | TsDerefURIFile | |
| 1031 | TsDumpCacheToHtml | |
| 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 | |
| 1034 | TsExpireCachedBlob | |
| 1035 | TsFindMetaData | |
| 1036 | TsFlushFilesWithContext | |
| 1037 | TsFlushMetaCache | |
| 1038 | TsFlushURL | |
| 1039 | TsFree | |
| 1040 | ; int __cdecl TsFreeDirectoryListing(class TSVC_CACHE const & __ptr64,class TS_DIRECTORY_HEADER * __ptr64) | |
| 1041 | ?TsFreeDirectoryListing@@YAHAEBVTSVC_CACHE@@PEAVTS_DIRECTORY_HEADER@@@Z | |
| 1042 | TsFreeMetaData | |
| 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 | |
| 1045 | TsGetFileSecDesc | |
| 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 | |
| 1050 | TsLastWriteTimeFromHandle | |
| 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 | |
| 1053 | TsMakeWidePath | |
| 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 | |
| 1062 | TsReferenceMetaData | |
| 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 | |
| 1071 | Tsunami_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 | |
| 1154 | ConvertStringToRpc | |
| 1155 | ConvertUnicodeToAnsi | |
| 1156 | DoSynchronousReadFile | |
| 1157 | FreeRpcString | |
| 1158 | InetNtoa | |
| 1159 | InitCommonDlls | |
| 1160 | KludgeMultiSz | |
| 1161 | ReadRegString | |
| 1162 | ReadRegistryDwordA | |
| 1163 | ReadRegistryStr | |
| 1164 | ReadRegistryString | |
| 1165 | TcpSockRecv | |
| 1166 | TcpSockSend | |
| 1167 | TcpSockTest | |
| 1168 | TerminateCommonDlls | |
| 1169 | TsDumpCacheCounters | |
| 1170 | WaitForSocketWorker | |
| 1171 | WriteRegistryDwordA | |
| 1172 | WriteRegistryStringA | |
| 1173 | WriteRegistryStringW |
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 | ; | |
| 7 | LIBRARY INFOCTRS.dll | |
| 8 | EXPORTS | |
| 9 | OpenINFOPerformanceData | |
| 10 | CollectINFOPerformanceData | |
| 11 | CloseINFOPerformanceData |
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 | ; | |
| 7 | LIBRARY infosoft.dll | |
| 8 | EXPORTS | |
| 9 | IIapp | |
| 10 | IIapp_mem | |
| 11 | IIbuf | |
| 12 | IIbuf_mem | |
| 13 | IIdb | |
| 14 | IIdb_mem | |
| 15 | DllCanUnloadNow | |
| 16 | DllGetClassObject | |
| 17 | IIword | |
| 18 | DllRegisterServer | |
| 19 | DllUnregisterServer | |
| 20 | IIGetAppElem | |
| 21 | IIdiagoff | |
| 22 | IIGetFM | |
| 23 | IIdiagon | |
| 24 | NTFMClose | |
| 25 | NTFMCompare | |
| 26 | NTFMCopy | |
| 27 | NTFMCreate | |
| 28 | NTFMDelete | |
| 29 | NTFMDestruct | |
| 30 | NTFMFlushMapping | |
| 31 | NTFMGetDirtyBit | |
| 32 | NTFMGetLength | |
| 33 | NTFMGetMapHandle | |
| 34 | NTFMGetMapping | |
| 35 | NTFMGetName | |
| 36 | NTFMGetPosition | |
| 37 | NTFMGetStatus | |
| 38 | NTFMLockMapping | |
| 39 | NTFMOpen | |
| 40 | NTFMRead | |
| 41 | NTFMReleaseMapHandle | |
| 42 | NTFMSeek | |
| 43 | NTFMSetDirtyBit | |
| 44 | NTFMSetLength | |
| 45 | NTFMSetMapping | |
| 46 | NTFMSetMutexProc | |
| 47 | NTFMSetName | |
| 48 | NTFMUnlockMapping | |
| 49 | NTFMWrite |
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 | ; | |
| 7 | LIBRARY INITPKI.dll | |
| 8 | EXPORTS | |
| 9 | DllInstall | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | InitializePKI |
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 | ; | |
| 7 | LIBRARY IPMONTR.dll | |
| 8 | EXPORTS | |
| 9 | InitHelperDll | |
| 10 | IpmontrDeleteInfoBlockFromInterfaceInfo | |
| 11 | IpmontrDeleteProtocol | |
| 12 | IpmontrGetFriendlyNameFromIfIndex | |
| 13 | IpmontrGetFriendlyNameFromIfName | |
| 14 | IpmontrGetIfIndexFromFriendlyName | |
| 15 | IpmontrGetIfNameFromFriendlyName | |
| 16 | IpmontrGetInfoBlockFromGlobalInfo | |
| 17 | IpmontrGetInfoBlockFromInterfaceInfo | |
| 18 | IpmontrGetInterfaceType | |
| 19 | IpmontrInterfaceEnum | |
| 20 | IpmontrSetInfoBlockInGlobalInfo | |
| 21 | IpmontrSetInfoBlockInInterfaceInfo |
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 | ; | |
| 7 | LIBRARY IPROP.dll | |
| 8 | EXPORTS | |
| 9 | FmtIdToPropStgName | |
| 10 | FreePropVariantArray | |
| 11 | PropStgNameToFmtId | |
| 12 | PropVariantClear | |
| 13 | PropVariantCopy | |
| 14 | StgCreatePropSetStg | |
| 15 | StgCreatePropStg | |
| 16 | StgOpenPropStg |
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 | ; | |
| 7 | LIBRARY iprtprio.dll | |
| 8 | EXPORTS | |
| 9 | ComputeRouteMetric | |
| 10 | GetPriorityInfo | |
| 11 | SetPriorityInfo |
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 | ; | |
| 7 | LIBRARY iprtrmgr.dll | |
| 8 | EXPORTS | |
| 9 | MapAddressToAdapter | |
| 10 | MapInterfaceToAdapter | |
| 11 | MapInterfaceToRouterIfType | |
| 12 | StartRouter |
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 | ; | |
| 7 | LIBRARY IPSECSPD.DLL | |
| 8 | EXPORTS | |
| 9 | SPDServiceMain |
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 | ; | |
| 7 | LIBRARY ipxsap.dll | |
| 8 | EXPORTS | |
| 9 | RegisterProtocol | |
| 10 | ServiceMain |
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 | ; | |
| 7 | LIBRARY IRCLASS.DLL | |
| 8 | EXPORTS | |
| 9 | IrSIRClassCoInstaller | |
| 10 | IrSIRPortPropPageProvider |
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 | ; | |
| 7 | LIBRARY ISATQ.dll | |
| 8 | EXPORTS | |
| 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 | |
| 121 | AtqAddAsyncHandle | |
| 122 | AtqBandwidthGetInfo | |
| 123 | AtqBandwidthSetInfo | |
| 124 | AtqClearStatistics | |
| 125 | AtqCloseEndpoint | |
| 126 | AtqCloseFileHandle | |
| 127 | AtqCloseSocket | |
| 128 | AtqContextSetInfo | |
| 129 | AtqCreateBandwidthInfo | |
| 130 | AtqCreateEndpoint | |
| 131 | AtqEndpointGetInfo | |
| 132 | AtqEndpointSetInfo | |
| 133 | AtqFreeBandwidthInfo | |
| 134 | AtqFreeContext | |
| 135 | AtqGetAcceptExAddrs | |
| 136 | AtqGetCapTraceInfo | |
| 137 | AtqGetCompletionPort | |
| 138 | AtqGetInfo | |
| 139 | AtqGetStatistics | |
| 140 | AtqInitialize | |
| 141 | AtqPostCompletionStatus | |
| 142 | AtqReadDirChanges | |
| 143 | AtqReadFile | |
| 144 | AtqReadSocket | |
| 145 | AtqSetInfo | |
| 146 | AtqSetSocketOption | |
| 147 | AtqStartEndpoint | |
| 148 | AtqStopAndCloseEndpoint | |
| 149 | AtqStopEndpoint | |
| 150 | AtqSyncWsaSend | |
| 151 | AtqTerminate | |
| 152 | AtqTransmitFile | |
| 153 | AtqTransmitFileEx | |
| 154 | AtqWriteFile | |
| 155 | AtqWriteSocket | |
| 156 | GetIISCapTraceFlag | |
| 157 | GetIISCapTraceLoggerHandle | |
| 158 | IISInitializeCapTrace | |
| 159 | SetIISCapTraceFlag |
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 | ; | |
| 7 | LIBRARY ISCOMLOG.dll | |
| 8 | EXPORTS | |
| 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 | |
| 13 | ComLogCustomInformation | |
| 14 | ComLogDllCleanUp | |
| 15 | ComLogDllStartup | |
| 16 | ComLogGetConfig | |
| 17 | ComLogInitializeLog | |
| 18 | ComLogLogInformation | |
| 19 | ComLogNotifyChange | |
| 20 | ComLogQueryExtraLogFields | |
| 21 | ComLogSetConfig | |
| 22 | ComLogTerminateLog | |
| 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 | |
| 29 | DllCanUnloadNow | |
| 30 | DllGetClassObject | |
| 31 | DllRegisterServer | |
| 32 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY isignup2.dll | |
| 8 | EXPORTS | |
| 9 | AutoDialLogon | |
| 10 | AutoDialLogonA | |
| 11 | AutoDialLogonW | |
| 12 | AutoDialSignup | |
| 13 | AutoDialSignupA | |
| 14 | AutoDialSignupW | |
| 15 | IEAKProcessISP | |
| 16 | IEAKProcessISPA | |
| 17 | IEAKProcessISPW | |
| 18 | Signup |
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 | ; | |
| 7 | LIBRARY IYUV_32.dll | |
| 8 | EXPORTS | |
| 9 | AboutDialogProc | |
| 10 | DllMain | |
| 11 | DriverDialogProc | |
| 12 | DriverProc |
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 | ; | |
| 7 | LIBRARY JET500.dll | |
| 8 | EXPORTS | |
| 9 | JetAddColumn | |
| 10 | JetAttachDatabase | |
| 11 | JetBackup | |
| 12 | JetBeginExternalBackup | |
| 13 | JetBeginSession | |
| 14 | JetBeginTransaction | |
| 15 | JetCloseDatabase | |
| 16 | JetCloseFile | |
| 17 | JetCloseTable | |
| 18 | JetCommitTransaction | |
| 19 | JetCompact | |
| 20 | JetComputeStats | |
| 21 | JetCreateDatabase | |
| 22 | JetCreateIndex | |
| 23 | JetCreateLink | |
| 24 | JetCreateQuery | |
| 25 | JetCreateTable | |
| 26 | JetCreateTableColumnIndex | |
| 27 | JetDBUtilities | |
| 28 | JetDelete | |
| 29 | JetDeleteColumn | |
| 30 | JetDeleteIndex | |
| 31 | JetDeleteTable | |
| 32 | JetDetachDatabase | |
| 33 | JetDupCursor | |
| 34 | JetDupSession | |
| 35 | JetEndExternalBackup | |
| 36 | JetEndSession | |
| 37 | JetExecuteSql | |
| 38 | JetExternalRestore | |
| 39 | JetGetAttachInfo | |
| 40 | JetGetBookmark | |
| 41 | JetGetChecksum | |
| 42 | JetGetColumnInfo | |
| 43 | JetGetCounter | |
| 44 | JetGetCurrentIndex | |
| 45 | JetGetCursorInfo | |
| 46 | JetGetDatabaseInfo | |
| 47 | JetGetIndexInfo | |
| 48 | JetGetLogInfo | |
| 49 | JetGetObjectInfo | |
| 50 | JetGetObjidFromName | |
| 51 | JetGetQueryParameterInfo | |
| 52 | JetGetRecordPosition | |
| 53 | JetGetSystemParameter | |
| 54 | JetGetTableColumnInfo | |
| 55 | JetGetTableIndexInfo | |
| 56 | JetGetTableInfo | |
| 57 | JetGetVersion | |
| 58 | JetGotoBookmark | |
| 59 | JetGotoPosition | |
| 60 | JetIdle | |
| 61 | JetIndexRecordCount | |
| 62 | JetInit | |
| 63 | JetMakeKey | |
| 64 | JetMove | |
| 65 | JetOpenDatabase | |
| 66 | JetOpenFile | |
| 67 | JetOpenQueryDef | |
| 68 | JetOpenTable | |
| 69 | JetOpenTempTable | |
| 70 | JetOpenTempTable2 | |
| 71 | JetPrepareUpdate | |
| 72 | JetReadFile | |
| 73 | JetResetCounter | |
| 74 | JetRestore | |
| 75 | JetRestore2 | |
| 76 | JetRetrieveColumn | |
| 77 | JetRetrieveColumns | |
| 78 | JetRetrieveKey | |
| 79 | JetRetrieveQoSql | |
| 80 | JetRollback | |
| 81 | JetSeek | |
| 82 | JetSetAccess | |
| 83 | JetSetColumn | |
| 84 | JetSetColumns | |
| 85 | JetSetCurrentIndex | |
| 86 | JetSetCurrentIndex2 | |
| 87 | JetSetIndexRange | |
| 88 | JetSetQoSql | |
| 89 | JetSetSystemParameter | |
| 90 | JetTerm | |
| 91 | JetTerm2 | |
| 92 | JetTruncateLog | |
| 93 | JetUpdate |
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 | ; | |
| 7 | LIBRARY KD1394.dll | |
| 8 | EXPORTS | |
| 9 | KdD0Transition | |
| 10 | KdD3Transition | |
| 11 | KdDebuggerInitialize0 | |
| 12 | KdDebuggerInitialize1 | |
| 13 | KdReceivePacket | |
| 14 | KdRestore | |
| 15 | KdSave | |
| 16 | KdSendPacket |
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 | ; | |
| 7 | LIBRARY Kerberos.dll | |
| 8 | EXPORTS | |
| 9 | SpInitialize | |
| 10 | KerbDomainChangeCallback | |
| 11 | SpLsaModeInitialize | |
| 12 | SpUserModeInitialize | |
| 13 | KerbCreateTokenFromTicket | |
| 14 | KerbFree | |
| 15 | KerbIsInitialized | |
| 16 | KerbKdcCallBack | |
| 17 | KerbMakeKdcCall | |
| 18 | SpInstanceInit |
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 | ; | |
| 7 | LIBRARY lmmib2.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionClose | |
| 10 | SnmpExtensionInit | |
| 11 | SnmpExtensionQuery | |
| 12 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY LocalSpl.dll | |
| 8 | EXPORTS | |
| 9 | ClosePrintProcessor | |
| 10 | ControlPrintProcessor | |
| 11 | DllMain | |
| 12 | EnumPrintProcessorDatatypesW | |
| 13 | GetPrintProcessorCapabilities | |
| 14 | InitializePrintMonitor | |
| 15 | InitializePrintProvidor | |
| 16 | LclIsSessionZero | |
| 17 | LclPromptUIPerSessionUser | |
| 18 | OpenPrintProcessor | |
| 19 | PrintDocumentOnPrintProcessor | |
| 20 | PrintProcLogEvent | |
| 21 | SplAddForm | |
| 22 | SplAddMonitor | |
| 23 | SplAddPort | |
| 24 | SplAddPortEx | |
| 25 | SplAddPrintProcessor | |
| 26 | SplAddPrinter | |
| 27 | SplAddPrinterDriverEx | |
| 28 | SplBroadcastChange | |
| 29 | SplClosePrinter | |
| 30 | SplCloseSpooler | |
| 31 | SplConfigChange | |
| 32 | SplCopyFileEvent | |
| 33 | SplCopyNumberOfFiles | |
| 34 | SplCreateSpooler | |
| 35 | SplDeleteForm | |
| 36 | SplDeleteMonitor | |
| 37 | SplDeletePort | |
| 38 | SplDeletePrintProcCacheData | |
| 39 | SplDeletePrintProcessor | |
| 40 | SplDeletePrinter | |
| 41 | SplDeletePrinterDriverEx | |
| 42 | SplDeletePrinterKey | |
| 43 | SplDeleteSpooler | |
| 44 | SplDriverEvent | |
| 45 | SplEnumForms | |
| 46 | SplEnumMonitors | |
| 47 | SplEnumPorts | |
| 48 | SplEnumPrintProcCacheData | |
| 49 | SplEnumPrintProcessorDatatypes | |
| 50 | SplEnumPrintProcessors | |
| 51 | SplEnumPrinterDataEx | |
| 52 | SplEnumPrinterKey | |
| 53 | SplEnumPrinters | |
| 54 | SplGetDriverDir | |
| 55 | SplGetForm | |
| 56 | SplGetPrintProcCacheData | |
| 57 | SplGetPrintProcessorDirectory | |
| 58 | SplGetPrinter | |
| 59 | SplGetPrinterData | |
| 60 | SplGetPrinterDataEx | |
| 61 | SplGetPrinterDriver | |
| 62 | SplGetPrinterDriverDirectory | |
| 63 | SplGetPrinterDriverEx | |
| 64 | SplGetPrinterExtra | |
| 65 | SplGetPrinterExtraEx | |
| 66 | SplLoadLibraryTheCopyFileModule | |
| 67 | SplLogEventExternal | |
| 68 | SplLogWmiTraceEventExternal | |
| 69 | SplMonitorIsInstalled | |
| 70 | SplOpenPrinter | |
| 71 | SplPowerEvent | |
| 72 | SplReenumeratePorts | |
| 73 | SplResetPrinter | |
| 74 | SplSetForm | |
| 75 | SplSetPrintProcCacheData | |
| 76 | SplSetPrinter | |
| 77 | SplSetPrinterData | |
| 78 | SplSetPrinterDataEx | |
| 79 | SplSetPrinterExtra | |
| 80 | SplSetPrinterExtraEx | |
| 81 | SplXcvData |
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 | ; | |
| 7 | LIBRARY LOG.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | LogA | |
| 11 | LogBegin | |
| 12 | LogDeleteOnNextInit | |
| 13 | LogDirectA | |
| 14 | LogDirectW | |
| 15 | LogEnd | |
| 16 | LogIfA | |
| 17 | LogIfW | |
| 18 | LogLineA | |
| 19 | LogLineW | |
| 20 | LogReInitA | |
| 21 | LogReInitW | |
| 22 | LogSetErrorDest | |
| 23 | LogSetVerboseBitmap | |
| 24 | LogSetVerboseLevel | |
| 25 | LogTitleA | |
| 26 | LogTitleW | |
| 27 | LogW | |
| 28 | SuppressAllLogPopups |
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 | ; | |
| 7 | LIBRARY LONSINT.dll | |
| 8 | EXPORTS | |
| 9 | IISGetDefaultDomainName | |
| 10 | IISLogon32Initialize | |
| 11 | IISLogonDigestUserA | |
| 12 | IISLogonNetUserA | |
| 13 | IISLogonNetUserW | |
| 14 | IISLogonPassportUserW | |
| 15 | IISNetUserCookieA |
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 | ; | |
| 7 | LIBRARY LPK.dll | |
| 8 | EXPORTS | |
| 9 | LpkInitialize | |
| 10 | LpkTabbedTextOut | |
| 11 | LpkDllInitialize | |
| 12 | LpkDrawTextEx | |
| 13 | LpkEditControl DATA | |
| 14 | LpkExtTextOut | |
| 15 | LpkGetCharacterPlacement | |
| 16 | LpkGetTextExtentExPoint | |
| 17 | LpkPSMTextOut | |
| 18 | LpkUseGDIWidthCache | |
| 19 | ftsWordBreak |
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 | ; | |
| 7 | LIBRARY LPRHELP.dll | |
| 8 | EXPORTS | |
| 9 | CancelJob | |
| 10 | CloseLPR | |
| 11 | EndJob | |
| 12 | GetLongQueue | |
| 13 | GetShortQueue | |
| 14 | InitiateConnection | |
| 15 | OpenLPR | |
| 16 | PrintWaitingJobs | |
| 17 | SetLPRTimeouts | |
| 18 | StartJob | |
| 19 | WriteJobData |
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 | ; | |
| 7 | LIBRARY LSASRV.dll | |
| 8 | EXPORTS | |
| 9 | LsaIAddNameToLogonSession | |
| 10 | LsaIGetNameFromLuid | |
| 11 | LsaISetPackageAttrInLogonSession | |
| 12 | DsRolerDcAsDc | |
| 13 | DsRolerDcAsReplica | |
| 14 | DsRolerDemoteDc | |
| 15 | DsRolerGetDcOperationProgress | |
| 16 | DsRolerGetDcOperationResults | |
| 17 | LsaIAdtAuditingEnabledByCategory | |
| 18 | LsaIAllocateHeap | |
| 19 | LsaIAllocateHeapZero | |
| 20 | LsaIAuditAccountLogon | |
| 21 | LsaIAuditAccountLogonEx | |
| 22 | LsaIAuditKdcEvent | |
| 23 | LsaIAuditKerberosLogon | |
| 24 | LsaIAuditLogonUsingExplicitCreds | |
| 25 | LsaIAuditNotifyPackageLoad | |
| 26 | LsaIAuditPasswordAccessEvent | |
| 27 | LsaIAuditReplay | |
| 28 | LsaIAuditSamEvent | |
| 29 | LsaICallPackage | |
| 30 | LsaICallPackageEx | |
| 31 | LsaICallPackagePassthrough | |
| 32 | LsaICancelNotification | |
| 33 | LsaIChangeSecretCipherKey | |
| 34 | LsaICryptProtectData | |
| 35 | LsaICryptUnprotectData | |
| 36 | LsaIDereferenceCredHandle | |
| 37 | LsaIDsNotifiedObjectChange | |
| 38 | LsaIEnumerateSecrets | |
| 39 | LsaIEqualLogonProcessName | |
| 40 | LsaIFilterNamespace | |
| 41 | LsaIFilterSids | |
| 42 | LsaIForestTrustFindMatch | |
| 43 | LsaIFreeForestTrustInfo | |
| 44 | LsaIFreeHeap | |
| 45 | LsaIFreeReturnBuffer | |
| 46 | LsaIFree_LSAI_PRIVATE_DATA | |
| 47 | LsaIFree_LSAI_SECRET_ENUM_BUFFER | |
| 48 | LsaIFree_LSAPR_ACCOUNT_ENUM_BUFFER | |
| 49 | LsaIFree_LSAPR_CR_CIPHER_VALUE | |
| 50 | LsaIFree_LSAPR_POLICY_DOMAIN_INFORMATION | |
| 51 | LsaIFree_LSAPR_POLICY_INFORMATION | |
| 52 | LsaIFree_LSAPR_PRIVILEGE_ENUM_BUFFER | |
| 53 | LsaIFree_LSAPR_PRIVILEGE_SET | |
| 54 | LsaIFree_LSAPR_REFERENCED_DOMAIN_LIST | |
| 55 | LsaIFree_LSAPR_SR_SECURITY_DESCRIPTOR | |
| 56 | LsaIFree_LSAPR_TRANSLATED_NAMES | |
| 57 | LsaIFree_LSAPR_TRANSLATED_SIDS | |
| 58 | LsaIFree_LSAPR_TRUSTED_DOMAIN_INFO | |
| 59 | LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER | |
| 60 | LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER_EX | |
| 61 | LsaIFree_LSAPR_TRUST_INFORMATION | |
| 62 | LsaIFree_LSAPR_UNICODE_STRING | |
| 63 | LsaIFree_LSAPR_UNICODE_STRING_BUFFER | |
| 64 | LsaIFree_LSAP_SITENAME_INFO | |
| 65 | LsaIFree_LSAP_SITE_INFO | |
| 66 | LsaIFree_LSAP_SUBNET_INFO | |
| 67 | LsaIFree_LSAP_UPN_SUFFIXES | |
| 68 | LsaIFree_LSA_FOREST_TRUST_COLLISION_INFORMATION | |
| 69 | LsaIFree_LSA_FOREST_TRUST_INFORMATION | |
| 70 | LsaIGetBootOption | |
| 71 | LsaIGetCallInfo | |
| 72 | LsaIGetForestTrustInformation | |
| 73 | LsaIGetLogonGuid | |
| 74 | LsaIGetNbAndDnsDomainNames | |
| 75 | LsaIGetSerialNumberPolicy | |
| 76 | LsaIGetSiteName | |
| 77 | LsaIHealthCheck | |
| 78 | LsaIImpersonateClient | |
| 79 | LsaIIsDomainWithinForest | |
| 80 | LsaIIsDsPaused | |
| 81 | LsaIKerberosRegisterTrustNotification | |
| 82 | LsaILookupWellKnownName | |
| 83 | LsaINoMoreWin2KDomain | |
| 84 | LsaINotifyChangeNotification | |
| 85 | LsaINotifyGCStatusChange | |
| 86 | LsaINotifyNetlogonParametersChangeW | |
| 87 | LsaINotifyPasswordChanged | |
| 88 | LsaIOpenPolicyTrusted | |
| 89 | LsaIQueryForestTrustInfo | |
| 90 | LsaIQueryInformationPolicyTrusted | |
| 91 | LsaIQuerySiteInfo | |
| 92 | LsaIQuerySubnetInfo | |
| 93 | LsaIQueryUpnSuffixes | |
| 94 | LsaIReferenceCredHandle | |
| 95 | LsaIRegisterNotification | |
| 96 | LsaIRegisterPolicyChangeNotificationCallback | |
| 97 | LsaISafeMode | |
| 98 | LsaISamIndicatedDsStarted | |
| 99 | LsaISetBootOption | |
| 100 | LsaISetClientDnsHostName | |
| 101 | LsaISetLogonGuidInLogonSession | |
| 102 | LsaISetSerialNumberPolicy | |
| 103 | LsaISetTimesSecret | |
| 104 | LsaISetTokenDacl | |
| 105 | LsaISetupWasRun | |
| 106 | LsaIUnregisterAllPolicyChangeNotificationCallback | |
| 107 | LsaIUnregisterPolicyChangeNotificationCallback | |
| 108 | LsaIUpdateForestTrustInformation | |
| 109 | LsaIWriteAuditEvent | |
| 110 | LsapAuOpenSam | |
| 111 | LsapCheckBootMode | |
| 112 | LsapDsDebugInitialize | |
| 113 | LsapDsInitializeDsStateInfo | |
| 114 | LsapDsInitializePromoteInterface | |
| 115 | LsapInitLsa | |
| 116 | LsarClose | |
| 117 | LsarCreateSecret | |
| 118 | LsarDelete | |
| 119 | LsarEnumerateAccounts | |
| 120 | LsarEnumeratePrivilegesAccount | |
| 121 | LsarEnumerateTrustedDomains | |
| 122 | LsarEnumerateTrustedDomainsEx | |
| 123 | LsarGetSystemAccessAccount | |
| 124 | LsarLookupPrivilegeName | |
| 125 | LsarLookupSids | |
| 126 | LsarLookupSids2 | |
| 127 | LsarOpenAccount | |
| 128 | LsarOpenPolicy | |
| 129 | LsarOpenSecret | |
| 130 | LsarOpenTrustedDomain | |
| 131 | LsarQueryDomainInformationPolicy | |
| 132 | LsarQueryInfoTrustedDomain | |
| 133 | LsarQueryInformationPolicy | |
| 134 | LsarQuerySecret | |
| 135 | LsarQuerySecurityObject | |
| 136 | LsarQueryTrustedDomainInfoByName | |
| 137 | LsarSetInformationPolicy | |
| 138 | LsarSetSecret | |
| 139 | LsarSetSecurityObject | |
| 140 | LsarSetTrustedDomainInfoByName | |
| 141 | ServiceInit |
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 | ; | |
| 7 | LIBRARY Mag_Hook.dll | |
| 8 | EXPORTS | |
| 9 | FakeCursorMove | |
| 10 | GetCursorHack | |
| 11 | GetPopupInfo | |
| 12 | InstallEventHook | |
| 13 | SetZoomRect |
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 | ; | |
| 7 | LIBRARY MCASTMIB.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionInit | |
| 10 | SnmpExtensionQuery | |
| 11 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY MCD32.dll | |
| 8 | EXPORTS | |
| 9 | MCDAddState | |
| 10 | MCDAddStateStruct | |
| 11 | MCDAlloc | |
| 12 | MCDAllocBuffers | |
| 13 | MCDBeginState | |
| 14 | MCDBindContext | |
| 15 | MCDClear | |
| 16 | MCDCopyPixels | |
| 17 | MCDCreateContext | |
| 18 | MCDCreateTexture | |
| 19 | MCDDeleteContext | |
| 20 | MCDDeleteTexture | |
| 21 | MCDDescribeLayerPlane | |
| 22 | MCDDescribeMcdLayerPlane | |
| 23 | MCDDescribeMcdPixelFormat | |
| 24 | MCDDescribePixelFormat | |
| 25 | MCDDestroyWindow | |
| 26 | MCDDrawPixels | |
| 27 | MCDFlushState | |
| 28 | MCDFree | |
| 29 | MCDGetBuffers | |
| 30 | MCDGetDriverInfo | |
| 31 | MCDGetTextureFormats | |
| 32 | MCDLock | |
| 33 | MCDPixelMap | |
| 34 | MCDProcessBatch | |
| 35 | MCDProcessBatch2 | |
| 36 | MCDQueryMemStatus | |
| 37 | MCDReadPixels | |
| 38 | MCDReadSpan | |
| 39 | MCDSetLayerPalette | |
| 40 | MCDSetScissorRect | |
| 41 | MCDSetViewport | |
| 42 | MCDSwap | |
| 43 | MCDSwapMultiple | |
| 44 | MCDSync | |
| 45 | MCDTextureKey | |
| 46 | MCDTextureStatus | |
| 47 | MCDUnlock | |
| 48 | MCDUpdateSubTexture | |
| 49 | MCDUpdateTexturePalette | |
| 50 | MCDUpdateTexturePriority | |
| 51 | MCDUpdateTextureState | |
| 52 | MCDWriteSpan |
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 | ; | |
| 7 | LIBRARY MCDSRV32.dll | |
| 8 | EXPORTS | |
| 9 | MCDEngEscFilter | |
| 10 | MCDEngInit | |
| 11 | MCDEngInitEx | |
| 12 | MCDEngSetMemStatus | |
| 13 | MCDEngUninit |
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 | ; | |
| 7 | LIBRARY mchgrcoi.dll | |
| 8 | EXPORTS | |
| 9 | MchgrClassCoInstaller |
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 | ; | |
| 7 | LIBRARY MCIAVI32.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc | |
| 10 | KeyboardHookProc |
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 | ; | |
| 7 | LIBRARY MCIOLE32.dll | |
| 8 | EXPORTS | |
| 9 | DllLoadFromStream | |
| 10 | DllCreateFromClip | |
| 11 | DllCreateLinkFromClip | |
| 12 | DllCreateFromTemplate | |
| 13 | DllCreate | |
| 14 | DllCreateFromFile | |
| 15 | DllCreateLinkFromFile | |
| 16 | GetMessageHook | |
| 17 | OleQueryObjPos | |
| 18 | InstallHook | |
| 19 | RemoveHook |
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 | ; | |
| 7 | LIBRARY MCIQTZ32.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc | |
| 10 | MCIEntry32 |
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 | ; | |
| 7 | LIBRARY MFC42.dll | |
| 8 | EXPORTS | |
| 9 | DllGetClassObject | |
| 10 | DllCanUnloadNow | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 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 | |
| 17 | AfxFreeLibrary | |
| 18 | AfxLoadLibrary | |
| 19 | AfxLockGlobals | |
| 20 | AfxUnlockGlobals |
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 | ; | |
| 7 | LIBRARY MFC42u.dll | |
| 8 | EXPORTS | |
| 9 | DllGetClassObject | |
| 10 | DllCanUnloadNow | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 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 | |
| 17 | AfxFreeLibrary | |
| 18 | AfxLoadLibrary | |
| 19 | AfxLockGlobals | |
| 20 | AfxUnlockGlobals |
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 | ; | |
| 7 | LIBRARY MIGISM.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | IsmAbandonObjectIdOnCollision | |
| 11 | IsmAbandonObjectOnCollision | |
| 12 | IsmAbortApplyObjectEnum | |
| 13 | IsmAbortComponentEnum | |
| 14 | IsmAbortObjectAttributeEnum | |
| 15 | IsmAbortObjectEnum | |
| 16 | IsmAbortObjectOperationEnum | |
| 17 | IsmAbortObjectPropertyEnum | |
| 18 | IsmAbortObjectTypeIdEnum | |
| 19 | IsmAbortObjectWithAttributeEnum | |
| 20 | IsmAbortObjectWithOperationEnum | |
| 21 | IsmAbortObjectWithPropertyEnum | |
| 22 | IsmAbortPersistentObjectEnum | |
| 23 | IsmAbortScopeEnum | |
| 24 | IsmAbortTransportEnum | |
| 25 | IsmAcquireObjectEx | |
| 26 | IsmAddComponentAlias | |
| 27 | IsmAddControlFile | |
| 28 | IsmAddPropertyDataToObject | |
| 29 | IsmAddPropertyDataToObjectId | |
| 30 | IsmAddPropertyToObject | |
| 31 | IsmAddPropertyToObjectId | |
| 32 | IsmAddToPhysicalEnum | |
| 33 | IsmAllocEnvironmentVariableList | |
| 34 | IsmAppendEnvironmentMultiSz | |
| 35 | IsmAppendEnvironmentString | |
| 36 | IsmAreObjectsIdentical | |
| 37 | IsmCanWriteRollbackJournal | |
| 38 | IsmClearAbandonObjectIdOnCollision | |
| 39 | IsmClearAbandonObjectOnCollision | |
| 40 | IsmClearApplyOnObject | |
| 41 | IsmClearApplyOnObjectId | |
| 42 | IsmClearAttributeOnObject | |
| 43 | IsmClearAttributeOnObjectId | |
| 44 | IsmClearNonCriticalFlagOnObject | |
| 45 | IsmClearNonCriticalFlagOnObjectId | |
| 46 | IsmClearOperationOnObject | |
| 47 | IsmClearOperationOnObjectId | |
| 48 | IsmClearPersistenceOnObject | |
| 49 | IsmClearPersistenceOnObjectId | |
| 50 | IsmConvertObjectContentToAnsi | |
| 51 | IsmConvertObjectContentToUnicode | |
| 52 | IsmConvertObjectToMultiSz | |
| 53 | IsmCreateParsedPattern | |
| 54 | IsmCreateScope | |
| 55 | IsmCurrentlyExecuting | |
| 56 | IsmDeleteEnvironmentVariable | |
| 57 | IsmDeleteScope | |
| 58 | IsmDeselectScope | |
| 59 | IsmDestroyGlobalVariable | |
| 60 | IsmDestroyObjectHandle | |
| 61 | IsmDestroyObjectString | |
| 62 | IsmDestroyParsedPattern | |
| 63 | IsmDoesObjectExist | |
| 64 | IsmDoesRollbackDataExist | |
| 65 | IsmEnumFirstApplyObject | |
| 66 | IsmEnumFirstComponent | |
| 67 | IsmEnumFirstDestinationObjectEx | |
| 68 | IsmEnumFirstObjectAttribute | |
| 69 | IsmEnumFirstObjectAttributeById | |
| 70 | IsmEnumFirstObjectOperation | |
| 71 | IsmEnumFirstObjectOperationById | |
| 72 | IsmEnumFirstObjectProperty | |
| 73 | IsmEnumFirstObjectPropertyById | |
| 74 | IsmEnumFirstObjectTypeId | |
| 75 | IsmEnumFirstObjectWithAttribute | |
| 76 | IsmEnumFirstObjectWithOperation | |
| 77 | IsmEnumFirstObjectWithProperty | |
| 78 | IsmEnumFirstPersistentObject | |
| 79 | IsmEnumFirstScope | |
| 80 | IsmEnumFirstSourceObjectEx | |
| 81 | IsmEnumFirstTransport | |
| 82 | IsmEnumNextApplyObject | |
| 83 | IsmEnumNextComponent | |
| 84 | IsmEnumNextObject | |
| 85 | IsmEnumNextObjectAttribute | |
| 86 | IsmEnumNextObjectOperation | |
| 87 | IsmEnumNextObjectProperty | |
| 88 | IsmEnumNextObjectTypeId | |
| 89 | IsmEnumNextObjectWithAttribute | |
| 90 | IsmEnumNextObjectWithOperation | |
| 91 | IsmEnumNextObjectWithProperty | |
| 92 | IsmEnumNextPersistentObject | |
| 93 | IsmEnumNextScope | |
| 94 | IsmEnumNextTransport | |
| 95 | IsmExecute | |
| 96 | IsmExecuteFunction | |
| 97 | IsmExecuteHooks | |
| 98 | IsmFilterObject | |
| 99 | IsmFreeConvertedObjectContent | |
| 100 | IsmFreeCurrentUserData | |
| 101 | IsmFreeEnvironmentVariableList | |
| 102 | IsmGetActiveScopeId | |
| 103 | IsmGetActiveScopeName | |
| 104 | IsmGetActiveScopeNameRenamed | |
| 105 | IsmGetAttributeGroup | |
| 106 | IsmGetAttributeName | |
| 107 | IsmGetControlFile | |
| 108 | IsmGetCurrentSidString | |
| 109 | IsmGetEnvironmentCallback | |
| 110 | IsmGetEnvironmentData | |
| 111 | IsmGetEnvironmentMultiSz | |
| 112 | IsmGetEnvironmentString | |
| 113 | IsmGetEnvironmentValue | |
| 114 | IsmGetGlobalVariable | |
| 115 | IsmGetMappedUserData | |
| 116 | IsmGetObjectIdFromName | |
| 117 | IsmGetObjectOperationData | |
| 118 | IsmGetObjectOperationDataById | |
| 119 | IsmGetObjectTypeId | |
| 120 | IsmGetObjectTypeName | |
| 121 | IsmGetObjectTypePriority | |
| 122 | IsmGetObjectsStatistics | |
| 123 | IsmGetOnlineUserData | |
| 124 | IsmGetOperationGroup | |
| 125 | IsmGetOperationName | |
| 126 | IsmGetOsVersionInfo | |
| 127 | IsmGetPropertyData | |
| 128 | IsmGetPropertyFromObject | |
| 129 | IsmGetPropertyFromObjectId | |
| 130 | IsmGetPropertyGroup | |
| 131 | IsmGetPropertyName | |
| 132 | IsmGetRealPlatform | |
| 133 | IsmGetScopeObjectTypeName | |
| 134 | IsmGetScopeProperty | |
| 135 | IsmGetTempDirectory | |
| 136 | IsmGetTempFile | |
| 137 | IsmGetTempStorage | |
| 138 | IsmGetTransportVariable | |
| 139 | IsmGetVirtualPlatform | |
| 140 | IsmHookEnumeration | |
| 141 | IsmInitialize | |
| 142 | IsmIsApplyObject | |
| 143 | IsmIsApplyObjectId | |
| 144 | IsmIsAttributeSetOnObject | |
| 145 | IsmIsAttributeSetOnObjectId | |
| 146 | IsmIsComponentSelected | |
| 147 | IsmIsEnvironmentFlagSet | |
| 148 | IsmIsNonCriticalObject | |
| 149 | IsmIsNonCriticalObjectId | |
| 150 | IsmIsObjectAbandonedOnCollision | |
| 151 | IsmIsObjectHandleLeafOnly | |
| 152 | IsmIsObjectHandleNodeOnly | |
| 153 | IsmIsObjectIdAbandonedOnCollision | |
| 154 | IsmIsOperationSetOnObject | |
| 155 | IsmIsOperationSetOnObjectId | |
| 156 | IsmIsPersistentObject | |
| 157 | IsmIsPersistentObjectId | |
| 158 | IsmIsPropertySetOnObject | |
| 159 | IsmIsPropertySetOnObjectId | |
| 160 | IsmIsScopeOnline | |
| 161 | IsmIsScopeSelected | |
| 162 | IsmIsSystemScopeSelected | |
| 163 | IsmLoad | |
| 164 | IsmLockAttribute | |
| 165 | IsmLockObject | |
| 166 | IsmLockObjectId | |
| 167 | IsmLockOperation | |
| 168 | IsmLockProperty | |
| 169 | IsmMakeApplyObject | |
| 170 | IsmMakeApplyObjectId | |
| 171 | IsmMakeNonCriticalObject | |
| 172 | IsmMakeNonCriticalObjectId | |
| 173 | IsmMakePersistentObject | |
| 174 | IsmMakePersistentObjectId | |
| 175 | IsmParsedPatternMatch | |
| 176 | IsmParsedPatternMatchEx | |
| 177 | IsmPreserveJournal | |
| 178 | IsmProhibitPhysicalEnum | |
| 179 | IsmQueueEnumeration | |
| 180 | IsmRecordDelayedOperation | |
| 181 | IsmRecordOperation | |
| 182 | IsmRecoverEfsFile | |
| 183 | IsmRegisterAttribute | |
| 184 | IsmRegisterCompareCallback | |
| 185 | IsmRegisterDynamicExclusion | |
| 186 | IsmRegisterGlobalApplyCallback | |
| 187 | IsmRegisterGlobalFilterCallback | |
| 188 | IsmRegisterObjectType | |
| 189 | IsmRegisterOperation | |
| 190 | IsmRegisterOperationApplyCallback | |
| 191 | IsmRegisterOperationData | |
| 192 | IsmRegisterOperationFilterCallback | |
| 193 | IsmRegisterPhysicalAcquireHook | |
| 194 | IsmRegisterPostEnumerationCallback | |
| 195 | IsmRegisterPreEnumerationCallback | |
| 196 | IsmRegisterProgressBarCallback | |
| 197 | IsmRegisterProgressSlice | |
| 198 | IsmRegisterProperty | |
| 199 | IsmRegisterPropertyData | |
| 200 | IsmRegisterRestoreCallback | |
| 201 | IsmRegisterScopeChangeCallback | |
| 202 | IsmRegisterStaticExclusion | |
| 203 | IsmRegisterTransport | |
| 204 | IsmRegisterTypePostEnumerationCallback | |
| 205 | IsmRegisterTypePreEnumerationCallback | |
| 206 | IsmReleaseMemory | |
| 207 | IsmReleaseObject | |
| 208 | IsmRemoveAllUserSuppliedComponents | |
| 209 | IsmRemovePhysicalObject | |
| 210 | IsmRemovePropertyData | |
| 211 | IsmRemovePropertyFromObject | |
| 212 | IsmRemovePropertyFromObjectId | |
| 213 | IsmReplacePhysicalObject | |
| 214 | IsmResumeLoad | |
| 215 | IsmResumeSave | |
| 216 | IsmRollback | |
| 217 | IsmSave | |
| 218 | IsmSelectComponent | |
| 219 | IsmSelectMasterGroup | |
| 220 | IsmSelectPreferredAlias | |
| 221 | IsmSelectScope | |
| 222 | IsmSelectTransport | |
| 223 | IsmSendMessageToApp | |
| 224 | IsmSetAttributeOnObject | |
| 225 | IsmSetAttributeOnObjectId | |
| 226 | IsmSetCancel | |
| 227 | IsmSetDelayedOperationsCommand | |
| 228 | IsmSetEnvironmentCallback | |
| 229 | IsmSetEnvironmentData | |
| 230 | IsmSetEnvironmentFlag | |
| 231 | IsmSetEnvironmentMultiSz | |
| 232 | IsmSetEnvironmentString | |
| 233 | IsmSetEnvironmentValue | |
| 234 | IsmSetOperationOnObject | |
| 235 | IsmSetOperationOnObject2 | |
| 236 | IsmSetOperationOnObjectId | |
| 237 | IsmSetOperationOnObjectId2 | |
| 238 | IsmSetPlatform | |
| 239 | IsmSetRollbackJournalType | |
| 240 | IsmSetTransportStorage | |
| 241 | IsmSetTransportVariable | |
| 242 | IsmStartEtmModules | |
| 243 | IsmStartTransport | |
| 244 | IsmTerminate | |
| 245 | IsmTickProgressBar | |
| 246 | IsmUnregisterScopeChangeCallback | |
| 247 | TrackedIsmCompressEnvironmentString | |
| 248 | TrackedIsmConvertMultiSzToObject | |
| 249 | TrackedIsmCreateObjectHandle | |
| 250 | TrackedIsmCreateObjectPattern | |
| 251 | TrackedIsmCreateObjectStringsFromHandleEx | |
| 252 | TrackedIsmCreateSimpleObjectPattern | |
| 253 | TrackedIsmDuplicateString | |
| 254 | TrackedIsmExpandEnvironmentString | |
| 255 | TrackedIsmGetLongName | |
| 256 | TrackedIsmGetMemory | |
| 257 | TrackedIsmGetNativeObjectName |
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 | ; | |
| 7 | LIBRARY MIGLIBNT.dll | |
| 8 | EXPORTS | |
| 9 | MigDllAddDllToListW | |
| 10 | MigDllApplySystemSettingsW | |
| 11 | MigDllCloseW | |
| 12 | MigDllCreateList | |
| 13 | MigDllEnumFirstW | |
| 14 | MigDllEnumNextW | |
| 15 | MigDllFreeList | |
| 16 | MigDllInit | |
| 17 | MigDllInitializeDstW | |
| 18 | MigDllOpenW | |
| 19 | MigDllShutdown |
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 | ; | |
| 7 | LIBRARY MLL_HP.dll | |
| 8 | EXPORTS | |
| 9 | ClaimMediaLabel | |
| 10 | MaxMediaLabel |
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 | ; | |
| 7 | LIBRARY MLL_MTF.dll | |
| 8 | EXPORTS | |
| 9 | ClaimMediaLabel | |
| 10 | MaxMediaLabel |
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 | ; | |
| 7 | LIBRARY MLL_QIC.dll | |
| 8 | EXPORTS | |
| 9 | ClaimMediaLabel | |
| 10 | MaxMediaLabel |
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 | ; | |
| 7 | LIBRARY MMFUtil.DLL | |
| 8 | EXPORTS | |
| 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 | |
| 15 | DllCanUnloadNow | |
| 16 | DllGetClassObject | |
| 17 | DllRegisterServer | |
| 18 | DllUnregisterServer | |
| 19 | ErrorStringEx |
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 | ; | |
| 7 | LIBRARY mmutilse.dll | |
| 8 | EXPORTS | |
| 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 | |
| 289 | fmod | |
| 290 | memcmp | |
| 291 | memset | |
| 292 | setlocale | |
| 293 | strcpy | |
| 294 | strlen | |
| 295 | swprintf |
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 | ; | |
| 7 | LIBRARY mobsync.dll | |
| 8 | EXPORTS | |
| 9 | RunDllRegister | |
| 10 | SyncMgrRasProc | |
| 11 | DisplayOptions | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer | |
| 16 | MobsyncGetClassObject | |
| 17 | RegGetHandlerRegistrationInfo | |
| 18 | RegGetHandlerTopLevelKey | |
| 19 | RegGetProgressDetailsState | |
| 20 | RegGetSchedConnectionName | |
| 21 | RegGetSchedSyncSettings | |
| 22 | RegGetSyncItemSettings | |
| 23 | RegGetSyncSettings | |
| 24 | RegQueryLoadHandlerOnEvent | |
| 25 | RegRemoveManualSyncSettings | |
| 26 | RegSchedHandlerItemsChecked | |
| 27 | RegSetProgressDetailsState | |
| 28 | RegSetSyncItemSettings | |
| 29 | RegSetUserDefaults | |
| 30 | SyncMgrResolveConflictA | |
| 31 | SyncMgrResolveConflictW |
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 | ; | |
| 7 | LIBRARY mofd.dll | |
| 8 | EXPORTS | |
| 9 | CompileFileViaDLL | |
| 10 | CreateBMOFViaDLL | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY MPRDDM.dll | |
| 8 | EXPORTS | |
| 9 | DDMAdminConnectionClearStats | |
| 10 | DDMAdminConnectionEnum | |
| 11 | DDMAdminConnectionGetInfo | |
| 12 | DDMAdminInterfaceConnect | |
| 13 | DDMAdminInterfaceDisconnect | |
| 14 | DDMAdminPortClearStats | |
| 15 | DDMAdminPortDisconnect | |
| 16 | DDMAdminPortEnum | |
| 17 | DDMAdminPortGetInfo | |
| 18 | DDMAdminPortReset | |
| 19 | DDMAdminRemoveQuarantine | |
| 20 | DDMAdminServerGetInfo | |
| 21 | DDMAdminServerSetInfo | |
| 22 | DDMConnectInterface | |
| 23 | DDMDisconnectInterface | |
| 24 | DDMGetIdentityAttributes | |
| 25 | DDMPostCleanup | |
| 26 | DDMRegisterConnectionNotification | |
| 27 | DDMSendUserMessage | |
| 28 | DDMServiceInitialize | |
| 29 | DDMServicePostListens | |
| 30 | DDMTransportCreate | |
| 31 | IfObjectFreePhonebookContext | |
| 32 | IfObjectInitiatePersistentConnections | |
| 33 | IfObjectLoadPhonebookInfo | |
| 34 | IfObjectNotifyOfReachabilityChange | |
| 35 | IfObjectSetDialoutHoursRestriction | |
| 36 | RasAcctConfigChangeNotification | |
| 37 | RasAcctProviderFreeAttributes | |
| 38 | RasAcctProviderInitialize | |
| 39 | RasAcctProviderInterimAccounting | |
| 40 | RasAcctProviderStartAccounting | |
| 41 | RasAcctProviderStopAccounting | |
| 42 | RasAcctProviderTerminate | |
| 43 | RasAuthConfigChangeNotification | |
| 44 | RasAuthProviderAuthenticateUser | |
| 45 | RasAuthProviderFreeAttributes | |
| 46 | RasAuthProviderInitialize | |
| 47 | RasAuthProviderTerminate |
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 | ; | |
| 7 | LIBRARY ROUTEMSG.dll | |
| 8 | EXPORTS | |
| 9 | GetEventIds |
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 | ; | |
| 7 | LIBRARY MPRUI.dll | |
| 8 | EXPORTS | |
| 9 | BrowseDialogA0 | |
| 10 | MPRUI_DoPasswordDialog | |
| 11 | MPRUI_DoProfileErrorDialog | |
| 12 | MPRUI_ShowReconnectDialog | |
| 13 | MPRUI_WNetClearConnections | |
| 14 | MPRUI_WNetConnectionDialog | |
| 15 | MPRUI_WNetConnectionDialog1A | |
| 16 | MPRUI_WNetConnectionDialog1W | |
| 17 | MPRUI_WNetDisconnectDialog | |
| 18 | MPRUI_WNetDisconnectDialog1A | |
| 19 | MPRUI_WNetDisconnectDialog1W | |
| 20 | WNetBrowseDialog | |
| 21 | WNetBrowsePrinterDialog |
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 | ; | |
| 7 | LIBRARY mqad.dll | |
| 8 | EXPORTS | |
| 9 | MQADBeginDeleteNotification | |
| 10 | MQADCreateObject | |
| 11 | MQADDeleteObject | |
| 12 | MQADDeleteObjectGuid | |
| 13 | MQADDeleteObjectGuidSid | |
| 14 | MQADEndDeleteNotification | |
| 15 | MQADEndQuery | |
| 16 | MQADFreeMemory | |
| 17 | MQADGetADsPathInfo | |
| 18 | MQADGetComputerSites | |
| 19 | MQADGetComputerVersion | |
| 20 | MQADGetGenObjectProperties | |
| 21 | MQADGetObjectProperties | |
| 22 | MQADGetObjectPropertiesGuid | |
| 23 | MQADGetObjectSecurity | |
| 24 | MQADGetObjectSecurityGuid | |
| 25 | MQADInit | |
| 26 | MQADNotifyDelete | |
| 27 | MQADQMGetObjectSecurity | |
| 28 | MQADQueryAllLinks | |
| 29 | MQADQueryAllSites | |
| 30 | MQADQueryConnectors | |
| 31 | MQADQueryForeignSites | |
| 32 | MQADQueryLinks | |
| 33 | MQADQueryMachineQueues | |
| 34 | MQADQueryNT4MQISServers | |
| 35 | MQADQueryQueues | |
| 36 | MQADQueryResults | |
| 37 | MQADQuerySiteServers | |
| 38 | MQADQueryUserCert | |
| 39 | MQADSetObjectProperties | |
| 40 | MQADSetObjectPropertiesGuid | |
| 41 | MQADSetObjectSecurity | |
| 42 | MQADSetObjectSecurityGuid |
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 | ; | |
| 7 | LIBRARY MQCERTUI.dll | |
| 8 | EXPORTS | |
| 9 | SelectPersonalCertificateForRegister | |
| 10 | SelectPersonalCertificateForRemoval | |
| 11 | ShowCertificate | |
| 12 | ShowPersonalCertificates |
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 | ; | |
| 7 | LIBRARY mqdscli.dll | |
| 8 | EXPORTS | |
| 9 | DSBeginDeleteNotification | |
| 10 | DSClientInit | |
| 11 | DSCreateObject | |
| 12 | DSCreateServersCache | |
| 13 | DSDeleteObject | |
| 14 | DSDeleteObjectGuid | |
| 15 | DSEndDeleteNotification | |
| 16 | DSFreeMemory | |
| 17 | DSGetComputerSites | |
| 18 | DSGetObjectProperties | |
| 19 | DSGetObjectPropertiesEx | |
| 20 | DSGetObjectPropertiesGuid | |
| 21 | DSGetObjectPropertiesGuidEx | |
| 22 | DSGetObjectSecurity | |
| 23 | DSGetObjectSecurityGuid | |
| 24 | DSGetUserParams | |
| 25 | DSLookupBegin | |
| 26 | DSLookupEnd | |
| 27 | DSLookupNext | |
| 28 | DSNotifyDelete | |
| 29 | DSQMGetObjectSecurity | |
| 30 | DSSetObjectProperties | |
| 31 | DSSetObjectPropertiesGuid | |
| 32 | DSSetObjectSecurity | |
| 33 | DSSetObjectSecurityGuid | |
| 34 | DSTerminate |
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 | ; | |
| 7 | LIBRARY mqise.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 7 | LIBRARY MSDTCLOG.dll | |
| 8 | EXPORTS | |
| 9 | ; public: static long __cdecl CLogMgr::CreateInstance(class CLogMgr * __ptr64 * __ptr64,struct IUnknown * __ptr64) | |
| 10 | ?CreateInstance@CLogMgr@@SAJPEAPEAV1@PEAUIUnknown@@@Z | |
| 11 | DllGetDTCLOG2 | |
| 12 | ; int __cdecl DllGetDTCLOG(struct _GUID const & __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64) | |
| 13 | ?DllGetDTCLOG@@YAHAEBU_GUID@@0PEAPEAX@Z | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY MQPERF.dll | |
| 8 | EXPORTS | |
| 9 | PerfClose | |
| 10 | PerfCollect | |
| 11 | PerfOpen |
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 | ; | |
| 7 | LIBRARY mqrt.dll | |
| 8 | EXPORTS | |
| 9 | MQLogHR | |
| 10 | DllRegisterServer | |
| 11 | MQADsPathToFormatName | |
| 12 | MQAllocateMemory | |
| 13 | MQBeginTransaction | |
| 14 | MQCloseCursor | |
| 15 | MQCloseQueue | |
| 16 | MQCreateCursor | |
| 17 | MQCreateQueue | |
| 18 | MQDeleteQueue | |
| 19 | MQFreeMemory | |
| 20 | MQFreeSecurityContext | |
| 21 | MQGetMachineProperties | |
| 22 | MQGetOverlappedResult | |
| 23 | MQGetPrivateComputerInformation | |
| 24 | MQGetQueueProperties | |
| 25 | MQGetQueueSecurity | |
| 26 | MQGetSecurityContext | |
| 27 | MQGetSecurityContextEx | |
| 28 | MQHandleToFormatName | |
| 29 | MQInstanceToFormatName | |
| 30 | MQLocateBegin | |
| 31 | MQLocateEnd | |
| 32 | MQLocateNext | |
| 33 | MQMgmtAction | |
| 34 | MQMgmtGetInfo | |
| 35 | MQOpenQueue | |
| 36 | MQPathNameToFormatName | |
| 37 | MQPurgeQueue | |
| 38 | MQReceiveMessage | |
| 39 | MQReceiveMessageByLookupId | |
| 40 | MQRegisterCertificate | |
| 41 | MQSendMessage | |
| 42 | MQSetQueueProperties | |
| 43 | MQSetQueueSecurity | |
| 44 | RTCreateInternalCertificate | |
| 45 | RTDeleteInternalCert | |
| 46 | RTGetInternalCert | |
| 47 | RTGetUserCerts | |
| 48 | RTIsDependentClient | |
| 49 | RTLogOnRegisterCert | |
| 50 | RTOpenInternalCertStore | |
| 51 | RTRegisterUserCert | |
| 52 | RTRemoveUserCert | |
| 53 | RTRemoveUserCertSid | |
| 54 | RTXactGetDTC |
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 | ; | |
| 7 | LIBRARY MQRTDEP.dll | |
| 8 | EXPORTS | |
| 9 | DepBeginTransaction | |
| 10 | DepCloseCursor | |
| 11 | DepCloseQueue | |
| 12 | DepCreateCursor | |
| 13 | DepCreateInternalCertificate | |
| 14 | DepCreateQueue | |
| 15 | DepDeleteInternalCert | |
| 16 | DepDeleteQueue | |
| 17 | DepFreeMemory | |
| 18 | DepFreeSecurityContext | |
| 19 | DepGetInternalCert | |
| 20 | DepGetMachineProperties | |
| 21 | DepGetOverlappedResult | |
| 22 | DepGetPrivateComputerInformation | |
| 23 | DepGetQueueProperties | |
| 24 | DepGetQueueSecurity | |
| 25 | DepGetSecurityContext | |
| 26 | DepGetSecurityContextEx | |
| 27 | DepGetUserCerts | |
| 28 | DepHandleToFormatName | |
| 29 | DepInstanceToFormatName | |
| 30 | DepLocateBegin | |
| 31 | DepLocateEnd | |
| 32 | DepLocateNext | |
| 33 | DepMgmtAction | |
| 34 | DepMgmtGetInfo | |
| 35 | DepOpenInternalCertStore | |
| 36 | DepOpenQueue | |
| 37 | DepPathNameToFormatName | |
| 38 | DepPurgeQueue | |
| 39 | DepReceiveMessage | |
| 40 | DepRegisterCertificate | |
| 41 | DepRegisterServer | |
| 42 | DepRegisterUserCert | |
| 43 | DepRemoveUserCert | |
| 44 | DepSendMessage | |
| 45 | DepSetQueueProperties | |
| 46 | DepSetQueueSecurity | |
| 47 | DepXactGetDTC |
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 | ; | |
| 7 | LIBRARY mqsec.dll | |
| 8 | EXPORTS | |
| 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 | |
| 129 | FreeContextHandle | |
| 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 | |
| 142 | GetDomainFQDNName | |
| 143 | ; long __cdecl GetFalconKey(unsigned short const * __ptr64,struct HKEY__ * __ptr64 * __ptr64) | |
| 144 | ?GetFalconKey@@YAJPEBGPEAPEAUHKEY__@@@Z | |
| 145 | GetFalconKeyValue | |
| 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 | |
| 172 | GetSizes | |
| 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 | |
| 197 | MQSealBuffer | |
| 198 | MQSec_AccessCheck | |
| 199 | MQSec_AccessCheckForSelf | |
| 200 | MQSec_AcquireCryptoProvider | |
| 201 | MQSec_CanGenerateAudit | |
| 202 | MQSec_ConvertSDToNT4Format | |
| 203 | MQSec_ConvertSDToNT5Format | |
| 204 | MQSec_CopySecurityDescriptor | |
| 205 | MQSec_GetAdminSid | |
| 206 | MQSec_GetAnonymousSid | |
| 207 | MQSec_GetCryptoProvProperty | |
| 208 | MQSec_GetDefaultSecDescriptor | |
| 209 | MQSec_GetImpersonationObject | |
| 210 | MQSec_GetLocalMachineSid | |
| 211 | MQSec_GetLocalSystemSid | |
| 212 | MQSec_GetNetworkServiceSid | |
| 213 | MQSec_GetProcessSid | |
| 214 | MQSec_GetProcessUserSid | |
| 215 | MQSec_GetPubKeysFromDS | |
| 216 | MQSec_GetThreadUserSid | |
| 217 | MQSec_GetUserType | |
| 218 | MQSec_GetWorldSid | |
| 219 | MQSec_IsAnonymusSid | |
| 220 | MQSec_IsDC | |
| 221 | MQSec_IsGuestSid | |
| 222 | MQSec_IsNetworkServiceSid | |
| 223 | MQSec_IsSystemSid | |
| 224 | MQSec_IsUnAuthenticatedUser | |
| 225 | MQSec_MakeAbsoluteSD | |
| 226 | MQSec_MakeSelfRelative | |
| 227 | MQSec_MergeSecurityDescriptors | |
| 228 | MQSec_PackPublicKey | |
| 229 | MQSec_RpcAuthnLevel | |
| 230 | MQSec_SetLocalRpcMutualAuth | |
| 231 | MQSec_SetPrivilegeInThread | |
| 232 | MQSec_SetSecurityDescriptorDacl | |
| 233 | MQSec_StorePubKeys | |
| 234 | MQSec_StorePubKeysInDS | |
| 235 | MQSec_TraceThreadTokenInfo | |
| 236 | MQSec_UnpackPublicKey | |
| 237 | MQSec_UpdateLocalMachineSid | |
| 238 | ; long __cdecl MQSetCaConfig(unsigned long,class MQ_CA_CONFIG * __ptr64) | |
| 239 | ?MQSetCaConfig@@YAJKPEAVMQ_CA_CONFIG@@@Z | |
| 240 | MQSigHashMessageProperties | |
| 241 | MQUInitGlobalScurityVars | |
| 242 | MQsspi_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 | |
| 263 | ServerAcceptSecCtx | |
| 264 | ; public: void __cdecl CRestriction::SetChild(class CPropertyRestriction const & __ptr64,unsigned int) __ptr64 | |
| 265 | ?SetChild@CRestriction@@QEAAXAEBVCPropertyRestriction@@I@Z | |
| 266 | SetFalconKeyValue | |
| 267 | SetFalconServiceName | |
| 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 | |
| 300 | ShutDownDebugWindow | |
| 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 | |
| 325 | MQSigCloneCertFromReg | |
| 326 | MQSigCloneCertFromSysStore | |
| 327 | MQSigCreateCertificate | |
| 328 | MQSigOpenUserCertStore | |
| 329 | MSMQGetOperatingSystem |
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 | ; | |
| 7 | LIBRARY MQUPGRD.dll | |
| 8 | EXPORTS | |
| 9 | CleanupOnCluster | |
| 10 | MqCreateMsmqObj |
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 | ; | |
| 7 | LIBRARY mqutil.dll | |
| 8 | EXPORTS | |
| 9 | MQGetResourceHandle |
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 | ; | |
| 7 | LIBRARY MSADCS.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 7 | LIBRARY MSADO15.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | RNIGetCompatibleVersion | |
| 14 | com_ms_wfc_data_Field_getBoolean | |
| 15 | com_ms_wfc_data_Field_getByte | |
| 16 | com_ms_wfc_data_Field_getBytes | |
| 17 | com_ms_wfc_data_Field_getDataTimestamp | |
| 18 | com_ms_wfc_data_Field_getDouble | |
| 19 | com_ms_wfc_data_Field_getFloat | |
| 20 | com_ms_wfc_data_Field_getInt | |
| 21 | com_ms_wfc_data_Field_getLong | |
| 22 | com_ms_wfc_data_Field_getShort | |
| 23 | com_ms_wfc_data_Field_getString | |
| 24 | com_ms_wfc_data_Field_isNull | |
| 25 | com_ms_wfc_data_Field_loadMsjava | |
| 26 | com_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 | ; | |
| 7 | LIBRARY MSASN1.dll | |
| 8 | EXPORTS | |
| 9 | ASN1BERDecBitString | |
| 10 | ASN1BERDecBitString2 | |
| 11 | ASN1BERDecBool | |
| 12 | ASN1BERDecChar16String | |
| 13 | ASN1BERDecChar32String | |
| 14 | ASN1BERDecCharString | |
| 15 | ASN1BERDecCheck | |
| 16 | ASN1BERDecDouble | |
| 17 | ASN1BERDecEndOfContents | |
| 18 | ASN1BERDecEoid | |
| 19 | ASN1BERDecExplicitTag | |
| 20 | ASN1BERDecFlush | |
| 21 | ASN1BERDecGeneralizedTime | |
| 22 | ASN1BERDecLength | |
| 23 | ASN1BERDecMultibyteString | |
| 24 | ASN1BERDecNotEndOfContents | |
| 25 | ASN1BERDecNull | |
| 26 | ASN1BERDecObjectIdentifier | |
| 27 | ASN1BERDecObjectIdentifier2 | |
| 28 | ASN1BERDecOctetString | |
| 29 | ASN1BERDecOctetString2 | |
| 30 | ASN1BERDecOpenType | |
| 31 | ASN1BERDecOpenType2 | |
| 32 | ASN1BERDecPeekTag | |
| 33 | ASN1BERDecS16Val | |
| 34 | ASN1BERDecS32Val | |
| 35 | ASN1BERDecS8Val | |
| 36 | ASN1BERDecSXVal | |
| 37 | ASN1BERDecSkip | |
| 38 | ASN1BERDecTag | |
| 39 | ASN1BERDecU16Val | |
| 40 | ASN1BERDecU32Val | |
| 41 | ASN1BERDecU8Val | |
| 42 | ASN1BERDecUTCTime | |
| 43 | ASN1BERDecUTF8String | |
| 44 | ASN1BERDecZeroChar16String | |
| 45 | ASN1BERDecZeroChar32String | |
| 46 | ASN1BERDecZeroCharString | |
| 47 | ASN1BERDecZeroMultibyteString | |
| 48 | ASN1BERDotVal2Eoid | |
| 49 | ASN1BEREncBitString | |
| 50 | ASN1BEREncBool | |
| 51 | ASN1BEREncChar16String | |
| 52 | ASN1BEREncChar32String | |
| 53 | ASN1BEREncCharString | |
| 54 | ASN1BEREncCheck | |
| 55 | ASN1BEREncDouble | |
| 56 | ASN1BEREncEndOfContents | |
| 57 | ASN1BEREncEoid | |
| 58 | ASN1BEREncExplicitTag | |
| 59 | ASN1BEREncFlush | |
| 60 | ASN1BEREncGeneralizedTime | |
| 61 | ASN1BEREncLength | |
| 62 | ASN1BEREncMultibyteString | |
| 63 | ASN1BEREncNull | |
| 64 | ASN1BEREncObjectIdentifier | |
| 65 | ASN1BEREncObjectIdentifier2 | |
| 66 | ASN1BEREncOctetString | |
| 67 | ASN1BEREncOpenType | |
| 68 | ASN1BEREncRemoveZeroBits | |
| 69 | ASN1BEREncS32 | |
| 70 | ASN1BEREncSX | |
| 71 | ASN1BEREncTag | |
| 72 | ASN1BEREncU32 | |
| 73 | ASN1BEREncUTCTime | |
| 74 | ASN1BEREncUTF8String | |
| 75 | ASN1BEREncZeroMultibyteString | |
| 76 | ASN1BEREoid2DotVal | |
| 77 | ASN1BEREoid_free | |
| 78 | ASN1CEREncBeginBlk | |
| 79 | ASN1CEREncBitString | |
| 80 | ASN1CEREncChar16String | |
| 81 | ASN1CEREncChar32String | |
| 82 | ASN1CEREncCharString | |
| 83 | ASN1CEREncEndBlk | |
| 84 | ASN1CEREncFlushBlkElement | |
| 85 | ASN1CEREncGeneralizedTime | |
| 86 | ASN1CEREncMultibyteString | |
| 87 | ASN1CEREncNewBlkElement | |
| 88 | ASN1CEREncOctetString | |
| 89 | ASN1CEREncUTCTime | |
| 90 | ASN1CEREncZeroMultibyteString | |
| 91 | ASN1DecAbort | |
| 92 | ASN1DecAlloc | |
| 93 | ASN1DecDone | |
| 94 | ASN1DecRealloc | |
| 95 | ASN1DecSetError | |
| 96 | ASN1EncAbort | |
| 97 | ASN1EncDone | |
| 98 | ASN1EncSetError | |
| 99 | ASN1Free | |
| 100 | ASN1PERDecAlignment | |
| 101 | ASN1PERDecBit | |
| 102 | ASN1PERDecBits | |
| 103 | ASN1PERDecBoolean | |
| 104 | ASN1PERDecChar16String | |
| 105 | ASN1PERDecChar32String | |
| 106 | ASN1PERDecCharString | |
| 107 | ASN1PERDecCharStringNoAlloc | |
| 108 | ASN1PERDecComplexChoice | |
| 109 | ASN1PERDecDouble | |
| 110 | ASN1PERDecExtension | |
| 111 | ASN1PERDecFlush | |
| 112 | ASN1PERDecFragmented | |
| 113 | ASN1PERDecFragmentedChar16String | |
| 114 | ASN1PERDecFragmentedChar32String | |
| 115 | ASN1PERDecFragmentedCharString | |
| 116 | ASN1PERDecFragmentedExtension | |
| 117 | ASN1PERDecFragmentedIntx | |
| 118 | ASN1PERDecFragmentedLength | |
| 119 | ASN1PERDecFragmentedTableChar16String | |
| 120 | ASN1PERDecFragmentedTableChar32String | |
| 121 | ASN1PERDecFragmentedTableCharString | |
| 122 | ASN1PERDecFragmentedUIntx | |
| 123 | ASN1PERDecFragmentedZeroChar16String | |
| 124 | ASN1PERDecFragmentedZeroChar32String | |
| 125 | ASN1PERDecFragmentedZeroCharString | |
| 126 | ASN1PERDecFragmentedZeroTableChar16String | |
| 127 | ASN1PERDecFragmentedZeroTableChar32String | |
| 128 | ASN1PERDecFragmentedZeroTableCharString | |
| 129 | ASN1PERDecGeneralizedTime | |
| 130 | ASN1PERDecInteger | |
| 131 | ASN1PERDecMultibyteString | |
| 132 | ASN1PERDecN16Val | |
| 133 | ASN1PERDecN32Val | |
| 134 | ASN1PERDecN8Val | |
| 135 | ASN1PERDecNormallySmallExtension | |
| 136 | ASN1PERDecObjectIdentifier | |
| 137 | ASN1PERDecObjectIdentifier2 | |
| 138 | ASN1PERDecOctetString_FixedSize | |
| 139 | ASN1PERDecOctetString_FixedSizeEx | |
| 140 | ASN1PERDecOctetString_NoSize | |
| 141 | ASN1PERDecOctetString_VarSize | |
| 142 | ASN1PERDecOctetString_VarSizeEx | |
| 143 | ASN1PERDecS16Val | |
| 144 | ASN1PERDecS32Val | |
| 145 | ASN1PERDecS8Val | |
| 146 | ASN1PERDecSXVal | |
| 147 | ASN1PERDecSeqOf_NoSize | |
| 148 | ASN1PERDecSeqOf_VarSize | |
| 149 | ASN1PERDecSimpleChoice | |
| 150 | ASN1PERDecSimpleChoiceEx | |
| 151 | ASN1PERDecSkipBits | |
| 152 | ASN1PERDecSkipFragmented | |
| 153 | ASN1PERDecSkipNormallySmall | |
| 154 | ASN1PERDecSkipNormallySmallExtension | |
| 155 | ASN1PERDecSkipNormallySmallExtensionFragmented | |
| 156 | ASN1PERDecTableChar16String | |
| 157 | ASN1PERDecTableChar32String | |
| 158 | ASN1PERDecTableCharString | |
| 159 | ASN1PERDecTableCharStringNoAlloc | |
| 160 | ASN1PERDecU16Val | |
| 161 | ASN1PERDecU32Val | |
| 162 | ASN1PERDecU8Val | |
| 163 | ASN1PERDecUTCTime | |
| 164 | ASN1PERDecUXVal | |
| 165 | ASN1PERDecUnsignedInteger | |
| 166 | ASN1PERDecUnsignedShort | |
| 167 | ASN1PERDecZeroChar16String | |
| 168 | ASN1PERDecZeroChar32String | |
| 169 | ASN1PERDecZeroCharString | |
| 170 | ASN1PERDecZeroCharStringNoAlloc | |
| 171 | ASN1PERDecZeroTableChar16String | |
| 172 | ASN1PERDecZeroTableChar32String | |
| 173 | ASN1PERDecZeroTableCharString | |
| 174 | ASN1PERDecZeroTableCharStringNoAlloc | |
| 175 | ASN1PEREncAlignment | |
| 176 | ASN1PEREncBit | |
| 177 | ASN1PEREncBitIntx | |
| 178 | ASN1PEREncBitVal | |
| 179 | ASN1PEREncBits | |
| 180 | ASN1PEREncBoolean | |
| 181 | ASN1PEREncChar16String | |
| 182 | ASN1PEREncChar32String | |
| 183 | ASN1PEREncCharString | |
| 184 | ASN1PEREncCheckExtensions | |
| 185 | ASN1PEREncComplexChoice | |
| 186 | ASN1PEREncDouble | |
| 187 | ASN1PEREncExtensionBitClear | |
| 188 | ASN1PEREncExtensionBitSet | |
| 189 | ASN1PEREncFlush | |
| 190 | ASN1PEREncFlushFragmentedToParent | |
| 191 | ASN1PEREncFragmented | |
| 192 | ASN1PEREncFragmentedChar16String | |
| 193 | ASN1PEREncFragmentedChar32String | |
| 194 | ASN1PEREncFragmentedCharString | |
| 195 | ASN1PEREncFragmentedIntx | |
| 196 | ASN1PEREncFragmentedLength | |
| 197 | ASN1PEREncFragmentedTableChar16String | |
| 198 | ASN1PEREncFragmentedTableChar32String | |
| 199 | ASN1PEREncFragmentedTableCharString | |
| 200 | ASN1PEREncFragmentedUIntx | |
| 201 | ASN1PEREncGeneralizedTime | |
| 202 | ASN1PEREncInteger | |
| 203 | ASN1PEREncMultibyteString | |
| 204 | ASN1PEREncNormallySmall | |
| 205 | ASN1PEREncNormallySmallBits | |
| 206 | ASN1PEREncObjectIdentifier | |
| 207 | ASN1PEREncObjectIdentifier2 | |
| 208 | ASN1PEREncOctetString_FixedSize | |
| 209 | ASN1PEREncOctetString_FixedSizeEx | |
| 210 | ASN1PEREncOctetString_NoSize | |
| 211 | ASN1PEREncOctetString_VarSize | |
| 212 | ASN1PEREncOctetString_VarSizeEx | |
| 213 | ASN1PEREncOctets | |
| 214 | ASN1PEREncRemoveZeroBits | |
| 215 | ASN1PEREncSeqOf_NoSize | |
| 216 | ASN1PEREncSeqOf_VarSize | |
| 217 | ASN1PEREncSimpleChoice | |
| 218 | ASN1PEREncSimpleChoiceEx | |
| 219 | ASN1PEREncTableChar16String | |
| 220 | ASN1PEREncTableChar32String | |
| 221 | ASN1PEREncTableCharString | |
| 222 | ASN1PEREncUTCTime | |
| 223 | ASN1PEREncUnsignedInteger | |
| 224 | ASN1PEREncUnsignedShort | |
| 225 | ASN1PEREncZero | |
| 226 | ASN1PERFreeSeqOf | |
| 227 | ASN1_CloseDecoder | |
| 228 | ASN1_CloseEncoder | |
| 229 | ASN1_CloseEncoder2 | |
| 230 | ASN1_CloseModule | |
| 231 | ASN1_CreateDecoder | |
| 232 | ASN1_CreateDecoderEx | |
| 233 | ASN1_CreateEncoder | |
| 234 | ASN1_CreateModule | |
| 235 | ASN1_Decode | |
| 236 | ASN1_Encode | |
| 237 | ASN1_FreeDecoded | |
| 238 | ASN1_FreeEncoded | |
| 239 | ASN1_GetDecoderOption | |
| 240 | ASN1_GetEncoderOption | |
| 241 | ASN1_SetDecoderOption | |
| 242 | ASN1_SetEncoderOption | |
| 243 | ASN1bitstring_cmp | |
| 244 | ASN1bitstring_free | |
| 245 | ASN1char16string_cmp | |
| 246 | ASN1char16string_free | |
| 247 | ASN1char32string_cmp | |
| 248 | ASN1char32string_free | |
| 249 | ASN1charstring_cmp | |
| 250 | ASN1charstring_free | |
| 251 | ASN1generalizedtime_cmp | |
| 252 | ASN1intx2int32 | |
| 253 | ASN1intx2uint32 | |
| 254 | ASN1intx_add | |
| 255 | ASN1intx_free | |
| 256 | ASN1intx_setuint32 | |
| 257 | ASN1intx_sub | |
| 258 | ASN1intx_uoctets | |
| 259 | ASN1intxisuint32 | |
| 260 | ASN1objectidentifier2_cmp | |
| 261 | ASN1objectidentifier_cmp | |
| 262 | ASN1objectidentifier_free | |
| 263 | ASN1octetstring_cmp | |
| 264 | ASN1octetstring_free | |
| 265 | ASN1open_cmp | |
| 266 | ASN1open_free | |
| 267 | ASN1uint32_uoctets | |
| 268 | ASN1utctime_cmp | |
| 269 | ASN1utf8string_free | |
| 270 | ASN1ztchar16string_cmp | |
| 271 | ASN1ztchar16string_free | |
| 272 | ASN1ztchar32string_free | |
| 273 | ASN1ztcharstring_cmp | |
| 274 | ASN1ztcharstring_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 | ; | |
| 6 | LIBRARY "mscms.dll" | |
| 7 | EXPORTS | |
| 8 | AssociateColorProfileWithDeviceA | |
| 9 | AssociateColorProfileWithDeviceW | |
| 10 | CheckBitmapBits | |
| 11 | CheckColors | |
| 12 | CloseColorProfile | |
| 13 | ColorCplGetDefaultProfileScope | |
| 14 | ColorCplGetDefaultRenderingIntentScope | |
| 15 | ColorCplGetProfileProperties | |
| 16 | ColorCplHasSystemWideAssociationListChanged | |
| 17 | ColorCplInitialize | |
| 18 | ColorCplLoadAssociationList | |
| 19 | ColorCplMergeAssociationLists | |
| 20 | ColorCplOverwritePerUserAssociationList | |
| 21 | ColorCplReleaseProfileProperties | |
| 22 | ColorCplResetSystemWideAssociationListChangedWarning | |
| 23 | ColorCplSaveAssociationList | |
| 24 | ColorCplSetUsePerUserProfiles | |
| 25 | ColorCplUninitialize | |
| 26 | ConvertColorNameToIndex | |
| 27 | ConvertIndexToColorName | |
| 28 | CreateColorTransformA | |
| 29 | CreateColorTransformW | |
| 30 | CreateDeviceLinkProfile | |
| 31 | CreateMultiProfileTransform | |
| 32 | CreateProfileFromLogColorSpaceA | |
| 33 | CreateProfileFromLogColorSpaceW | |
| 34 | DeleteColorTransform | |
| 35 | DeviceRenameEvent | |
| 36 | DisassociateColorProfileFromDeviceA | |
| 37 | DisassociateColorProfileFromDeviceW | |
| 38 | EnumColorProfilesA | |
| 39 | EnumColorProfilesW | |
| 40 | GenerateCopyFilePaths | |
| 41 | GetCMMInfo | |
| 42 | GetColorDirectoryA | |
| 43 | GetColorDirectoryW | |
| 44 | GetColorProfileElement | |
| 45 | GetColorProfileElementTag | |
| 46 | GetColorProfileFromHandle | |
| 47 | GetColorProfileHeader | |
| 48 | GetCountColorProfileElements | |
| 49 | GetNamedProfileInfo | |
| 50 | GetPS2ColorRenderingDictionary | |
| 51 | GetPS2ColorRenderingIntent | |
| 52 | GetPS2ColorSpaceArray | |
| 53 | GetStandardColorSpaceProfileA | |
| 54 | GetStandardColorSpaceProfileW | |
| 55 | InstallColorProfileA | |
| 56 | InstallColorProfileW | |
| 57 | InternalGetDeviceConfig | |
| 58 | InternalGetPS2CSAFromLCS | |
| 59 | InternalGetPS2ColorRenderingDictionary | |
| 60 | InternalGetPS2ColorSpaceArray | |
| 61 | InternalGetPS2PreviewCRD | |
| 62 | InternalSetDeviceConfig | |
| 63 | IsColorProfileTagPresent | |
| 64 | IsColorProfileValid | |
| 65 | OpenColorProfileA | |
| 66 | OpenColorProfileW | |
| 67 | RegisterCMMA | |
| 68 | RegisterCMMW | |
| 69 | SelectCMM | |
| 70 | SetColorProfileElement | |
| 71 | SetColorProfileElementReference | |
| 72 | SetColorProfileElementSize | |
| 73 | SetColorProfileHeader | |
| 74 | SetStandardColorSpaceProfileA | |
| 75 | SetStandardColorSpaceProfileW | |
| 76 | SpoolerCopyFileEvent | |
| 77 | TranslateBitmapBits | |
| 78 | TranslateColors | |
| 79 | UninstallColorProfileA | |
| 80 | UninstallColorProfileW | |
| 81 | UnregisterCMMA | |
| 82 | UnregisterCMMW | |
| 83 | WcsAssociateColorProfileWithDevice | |
| 84 | WcsCheckColors | |
| 85 | WcsCreateIccProfile | |
| 86 | WcsDisassociateColorProfileFromDevice | |
| 87 | WcsEnumColorProfiles | |
| 88 | WcsEnumColorProfilesSize | |
| 89 | WcsGetDefaultColorProfile | |
| 90 | WcsGetDefaultColorProfileSize | |
| 91 | WcsGetDefaultRenderingIntent | |
| 92 | WcsGetUsePerUserProfiles | |
| 93 | WcsGpCanInstallOrUninstallProfiles | |
| 94 | WcsGpCanModifyDeviceAssociationList | |
| 95 | WcsOpenColorProfileA | |
| 96 | WcsOpenColorProfileW | |
| 97 | WcsSetDefaultColorProfile | |
| 98 | WcsSetDefaultRenderingIntent | |
| 99 | WcsSetUsePerUserProfiles | |
| 100 | WcsTranslateColors |
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 | ; | |
| 7 | LIBRARY MSDART.DLL | |
| 8 | EXPORTS | |
| 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 | |
| 985 | DllBidEntryPoint | |
| 986 | DllMain | |
| 987 | FXMemAttach | |
| 988 | FXMemDetach | |
| 989 | GetIUMS | |
| 990 | IrtlTrace | |
| 991 | IsValidAddress | |
| 992 | IsValidString | |
| 993 | LoadVersionedResourceEx | |
| 994 | MPCSInitialize | |
| 995 | MPCSUninitialize | |
| 996 | MPDeleteCriticalSection | |
| 997 | MPInitializeCriticalSection | |
| 998 | MPInitializeCriticalSectionAndSpinCount | |
| 999 | MpGetHeapHandle | |
| 1000 | MpHeapAlloc | |
| 1001 | MpHeapCreate | |
| 1002 | MpHeapDestroy | |
| 1003 | MpHeapFree | |
| 1004 | MpHeapReAlloc | |
| 1005 | MpHeapSize | |
| 1006 | MpHeapValidate | |
| 1007 | SetIUMS | |
| 1008 | SetMemHook | |
| 1009 | UMSEnterCSWraper | |
| 1010 | mpCalloc | |
| 1011 | mpFree | |
| 1012 | mpMalloc | |
| 1013 | mpRealloc |
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 | ; | |
| 7 | LIBRARY MSDTCLOG.dll | |
| 8 | EXPORTS | |
| 9 | ; public: static long __cdecl CLogMgr::CreateInstance(class CLogMgr * __ptr64 * __ptr64,struct IUnknown * __ptr64) | |
| 10 | ?CreateInstance@CLogMgr@@SAJPEAPEAV1@PEAUIUnknown@@@Z | |
| 11 | DllGetDTCLOG2 | |
| 12 | ; int __cdecl DllGetDTCLOG(struct _GUID const & __ptr64,struct _GUID const & __ptr64,void * __ptr64 * __ptr64) | |
| 13 | ?DllGetDTCLOG@@YAHAEBU_GUID@@0PEAPEAX@Z | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY MSDTCPRX.dll | |
| 8 | EXPORTS | |
| 9 | DllGetDTCProxy | |
| 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 | |
| 20 | DTC_XaOpen | |
| 21 | DTC_XaStart | |
| 22 | DTC_XaEnd | |
| 23 | DTC_XaPrepare | |
| 24 | DTC_XaCommit | |
| 25 | DTC_XaRollback | |
| 26 | DTC_XaRecover | |
| 27 | DTC_XaForget | |
| 28 | DTC_XaComplete | |
| 29 | DTC_XaClose | |
| 30 | DTC_AxReg | |
| 31 | DTC_AxUnReg | |
| 32 | ax_reg | |
| 33 | ax_unreg | |
| 34 | ShutDownCM | |
| 35 | DllGetDTCConnectionManager | |
| 36 | DllGetDTCUtilObject | |
| 37 | ContactToNameObject | |
| 38 | SysPrepDtcReinstall | |
| 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 | |
| 259 | ClusterChangeDtcUserAccount | |
| 260 | ClusterCryptoContainerCreate | |
| 261 | ClusterCryptoContainerDelete | |
| 262 | ClusterDaclCryptoContainer | |
| 263 | ClusterUpdateAccountInformation | |
| 264 | DecryptAccountInformation | |
| 265 | DllGetClassObject | |
| 266 | DllGetTransactionManagerCore | |
| 267 | DllRegisterServer | |
| 268 | DllUnregisterServer | |
| 269 | EncryptAccountInformation |
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 | ; | |
| 7 | LIBRARY ntdtcsetup.dll | |
| 8 | EXPORTS | |
| 9 | OcEntry | |
| 10 | RunDtcSetWebApplicationServerRoleW | |
| 11 | SetupPrintLog | |
| 12 | DtcGetWebApplicationServerRole | |
| 13 | DtcSetWebApplicationServerRole |
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 | ; | |
| 7 | LIBRARY MSDTCTM.dll | |
| 8 | EXPORTS | |
| 9 | DtcMainExt | |
| 10 | ASCWrapObject | |
| 11 | ASCDeliverDeferred | |
| 12 | ASCDefer | |
| 13 | ASCGetSafeReference | |
| 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 | |
| 22 | ASCWrapClassFactory | |
| 23 | DllGetClassObject | |
| 24 | DllRegisterServer | |
| 25 | DllUnregisterServer | |
| 26 | GetTipFunctionalityWorking | |
| 27 | SetTipFunctionalityWorking |
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 | ; | |
| 7 | LIBRARY MSDTCUIU.dll | |
| 8 | EXPORTS | |
| 9 | InitDACDLL | |
| 10 | TermDACDLL | |
| 11 | TermDACInstance | |
| 12 | DoDACPropSheet | |
| 13 | DoDACAdvanced | |
| 14 | GetDACStatsMinMaxInfo | |
| 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 | |
| 49 | RunDACExe | |
| 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 | |
| 60 | DllGetClassObject | |
| 61 | DllGetDTCUIC | |
| 62 | DllRegisterServer | |
| 63 | DllUnregisterServer | |
| 64 | DtcPerfClose | |
| 65 | DtcPerfCollect | |
| 66 | DtcPerfOpen | |
| 67 | PerfDllRegisterServer | |
| 68 | ShutDownUIC |
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 | ; | |
| 7 | LIBRARY MSFTEDIT.dll | |
| 8 | EXPORTS | |
| 9 | IID_IRichEditOle | |
| 10 | IID_IRichEditOleCallback | |
| 11 | CreateTextServices | |
| 12 | IID_ITextServices | |
| 13 | IID_ITextHost | |
| 14 | IID_ITextHost2 | |
| 15 | REExtendedRegisterClass | |
| 16 | RichEditANSIWndProc | |
| 17 | RichEdit10ANSIWndProc | |
| 18 | SetCustomTextOutHandlerEx | |
| 19 | DllGetVersion | |
| 20 | RichEditWndProc | |
| 21 | RichListBoxWndProc | |
| 22 | RichComboBoxWndProc |
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 | ; | |
| 7 | LIBRARY MSGINA.dll | |
| 8 | EXPORTS | |
| 9 | ShellShutdownDialog | |
| 10 | WlxActivateUserShell | |
| 11 | WlxDisconnectNotify | |
| 12 | WlxDisplayLockedNotice | |
| 13 | WlxDisplaySASNotice | |
| 14 | WlxDisplayStatusMessage | |
| 15 | WlxGetConsoleSwitchCredentials | |
| 16 | WlxGetStatusMessage | |
| 17 | WlxInitialize | |
| 18 | WlxIsLockOk | |
| 19 | WlxIsLogoffOk | |
| 20 | WlxLoggedOnSAS | |
| 21 | WlxLoggedOutSAS | |
| 22 | WlxLogoff | |
| 23 | WlxNegotiate | |
| 24 | WlxNetworkProviderLoad | |
| 25 | WlxReconnectNotify | |
| 26 | WlxRemoveStatusMessage | |
| 27 | WlxScreenSaverNotify | |
| 28 | WlxShutdown | |
| 29 | WlxStartApplication | |
| 30 | WlxWkstaLockedSAS |
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 | ; | |
| 7 | LIBRARY msgr3en.dll | |
| 8 | EXPORTS | |
| 9 | CheckVersion | |
| 10 | CheckInit | |
| 11 | CheckTerminate | |
| 12 | CheckText | |
| 13 | CheckGetError | |
| 14 | CheckGetErrorInformation | |
| 15 | CheckIgnoreError | |
| 16 | CheckResetError | |
| 17 | CheckFreeHandle | |
| 18 | CheckEnumHandles | |
| 19 | CheckUnloadDoc | |
| 20 | CheckOpenMdt | |
| 21 | CheckCloseMdt | |
| 22 | CheckAddStats | |
| 23 | CheckGetStats | |
| 24 | CheckInitStats | |
| 25 | CheckStats | |
| 26 | CheckIgnoreRule | |
| 27 | CheckResetRule | |
| 28 | CheckIsRuleIgnored | |
| 29 | CheckUseOptions | |
| 30 | CheckOptionSettings | |
| 31 | CheckResetOptions | |
| 32 | CheckWriteOptions | |
| 33 | CheckLoadPersistData | |
| 34 | CheckSavePersistData | |
| 35 | DllCanUnloadNow | |
| 36 | CheckSubtractStats | |
| 37 | CheckBatchUpdate | |
| 38 | CheckAddUdr | |
| 39 | CheckGetNamedEntity | |
| 40 | CheckGetNormalizedData | |
| 41 | DllGetClassObject | |
| 42 | DllRegisterServer | |
| 43 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY OCMSN.dll | |
| 8 | EXPORTS | |
| 9 | OcEntry |
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 | ; | |
| 7 | LIBRARY msgsvc.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 7 | LIBRARY MSHTML.dll | |
| 8 | EXPORTS | |
| 9 | CreateHTMLPropertyPage | |
| 10 | DllCanUnloadNow | |
| 11 | DllEnumClassObjects | |
| 12 | DllGetClassObject | |
| 13 | DllInstall | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer | |
| 16 | MatchExactGetIDsOfNames | |
| 17 | PrintHTML | |
| 18 | RNIGetCompatibleVersion | |
| 19 | RunHTMLApplication | |
| 20 | ShowHTMLDialog | |
| 21 | ShowHTMLDialogEx | |
| 22 | ShowModalDialog | |
| 23 | ShowModelessHTMLDialog | |
| 24 | com_ms_osp_ospmrshl_classInit | |
| 25 | com_ms_osp_ospmrshl_copyToExternal64 | |
| 26 | com_ms_osp_ospmrshl_releaseByValExternal64 | |
| 27 | com_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 | ; | |
| 7 | LIBRARY msir3jp.dll | |
| 8 | EXPORTS | |
| 9 | EnumSelectionOffsets | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | EnumSummarizationOffsets | |
| 14 | EnumStemInfo | |
| 15 | EnumSentenceOffsets | |
| 16 | WordBreakInit | |
| 17 | WordBreakInitEx | |
| 18 | EnumPhrases | |
| 19 | EnumSummarizationOffsetsEx | |
| 20 | EnumStemOffsets |
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 | ; | |
| 7 | LIBRARY MSLBUI.dll | |
| 8 | EXPORTS | |
| 9 | CTFGetLangBarAddIn |
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 | ; | |
| 7 | LIBRARY MSMQOCM.dll | |
| 8 | EXPORTS | |
| 9 | MsmqOcm | |
| 10 | SysprepDeleteQmId | |
| 11 | WelcomeEntryProc |
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 | ; | |
| 7 | LIBRARY MSOBDL.DLL | |
| 8 | EXPORTS | |
| 9 | DownLoadInit | |
| 10 | DownLoadCancel | |
| 11 | DownLoadExecute | |
| 12 | DownLoadClose | |
| 13 | DownLoadSetStatusCallback | |
| 14 | DownLoadProcess |
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 | ; | |
| 7 | LIBRARY msobmain.dll | |
| 8 | EXPORTS | |
| 9 | LaunchMSOOBE | |
| 10 | IsOemVer |
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 | ; | |
| 7 | LIBRARY MSOE.dll | |
| 8 | EXPORTS | |
| 9 | BMAPIAddress | |
| 10 | BMAPIDetails | |
| 11 | BMAPIFindNext | |
| 12 | BMAPIGetAddress | |
| 13 | BMAPIGetReadMail | |
| 14 | BMAPIReadMail | |
| 15 | BMAPIResolveName | |
| 16 | BMAPISaveMail | |
| 17 | BMAPISendMail | |
| 18 | CoStartOutlookExpress | |
| 19 | FIsDefaultMailConfiged | |
| 20 | FIsDefaultNewsConfiged | |
| 21 | ImportMailStoreToGUID | |
| 22 | ImportNewsListToGUID | |
| 23 | SetDefaultMailHandler | |
| 24 | SetDefaultNewsHandler | |
| 25 | DllCanUnloadNow | |
| 26 | DllGetClassObject | |
| 27 | DllRegisterServer | |
| 28 | DllUnregisterServer | |
| 29 | MAPIAddress | |
| 30 | MAPIDeleteMail | |
| 31 | MAPIDetails | |
| 32 | MAPIFindNext | |
| 33 | MAPIFreeBuffer | |
| 34 | MAPILogoff | |
| 35 | MAPILogon | |
| 36 | MAPIReadMail | |
| 37 | MAPIResolveName | |
| 38 | MAPISaveMail | |
| 39 | MAPISendDocuments | |
| 40 | MAPISendMail |
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 | ; | |
| 7 | LIBRARY MSOEACCT.dll | |
| 8 | EXPORTS | |
| 9 | CreateAccountsFromFile | |
| 10 | CreateAccountsFromFileEx | |
| 11 | GetDllMajorVersion | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer | |
| 16 | HrCreateAccountManager | |
| 17 | ValidEmailAddress |
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 | ; | |
| 7 | LIBRARY MSOERT2.dll | |
| 8 | EXPORTS | |
| 9 | CreateSystemHandleName | |
| 10 | CryptAllocFunc | |
| 11 | CryptFreeFunc | |
| 12 | FInitializeRichEdit | |
| 13 | GetDllMajorVersion | |
| 14 | GetHtmlCharset | |
| 15 | GetRichEdClassStringW | |
| 16 | HrGetCertKeyUsage | |
| 17 | HrVerifyCertEnhKeyUsage | |
| 18 | IUnknownList_CreateInstance | |
| 19 | IVoidPtrList_CreateInstance | |
| 20 | IsHttpUrlA | |
| 21 | SetFontOnRichEd | |
| 22 | AppendTempFileList | |
| 23 | AthwsprintfW | |
| 24 | BrowseForFolder | |
| 25 | BrowseForFolderW | |
| 26 | BuildNotificationPackage | |
| 27 | CchFileTimeToDateTimeSz | |
| 28 | CchFileTimeToDateTimeW | |
| 29 | CenterDialog | |
| 30 | ChConvertFromHex | |
| 31 | CleanupFileNameInPlaceA | |
| 32 | CleanupFileNameInPlaceW | |
| 33 | CleanupGlobalTempFiles | |
| 34 | CopyRegistry | |
| 35 | CrackNotificationPackage | |
| 36 | CreateDataObject | |
| 37 | CreateEnumFormatEtc | |
| 38 | CreateInfoWindow | |
| 39 | CreateLogFile | |
| 40 | CreateNotify | |
| 41 | CreateStreamOnHFile | |
| 42 | CreateStreamOnHFileW | |
| 43 | CreateTempFile | |
| 44 | CreateTempFileStream | |
| 45 | DeleteTempFile | |
| 46 | DeleteTempFileOnShutdown | |
| 47 | DeleteTempFileOnShutdownEx | |
| 48 | DoHotMailWizard | |
| 49 | FBuildTempPath | |
| 50 | FBuildTempPathW | |
| 51 | FIsEmptyA | |
| 52 | FIsEmptyW | |
| 53 | FIsHTMLFile | |
| 54 | FIsHTMLFileW | |
| 55 | FIsSpaceA | |
| 56 | FIsSpaceW | |
| 57 | FIsValidFileNameCharA | |
| 58 | FIsValidFileNameCharW | |
| 59 | FMissingCert | |
| 60 | FreeTempFileList | |
| 61 | GenerateUniqueFileName | |
| 62 | GetExePath | |
| 63 | HrBSTRToLPSZ | |
| 64 | HrByteToStream | |
| 65 | HrCheckTridentMenu | |
| 66 | HrCopyLockBytesToStream | |
| 67 | HrCopyStream | |
| 68 | HrCopyStreamCB | |
| 69 | HrCopyStreamCBEndOnCRLF | |
| 70 | HrCopyStreamToByte | |
| 71 | HrCreatePhonebookEntry | |
| 72 | HrCreateTridentMenu | |
| 73 | HrDecodeObject | |
| 74 | HrEditPhonebookEntry | |
| 75 | HrFillRasCombo | |
| 76 | HrFindInetTimeZone | |
| 77 | HrGetBodyElement | |
| 78 | HrGetCertificateParam | |
| 79 | HrGetElementImpl | |
| 80 | HrGetMsgParam | |
| 81 | HrGetStreamPos | |
| 82 | HrGetStreamSize | |
| 83 | HrGetStyleSheet | |
| 84 | HrIStreamToBSTR | |
| 85 | HrIStreamWToBSTR | |
| 86 | HrIndexOfMonth | |
| 87 | HrIndexOfWeek | |
| 88 | HrIsStreamUnicode | |
| 89 | HrLPSZCPToBSTR | |
| 90 | HrLPSZToBSTR | |
| 91 | HrRewindStream | |
| 92 | HrSafeGetStreamSize | |
| 93 | HrSetDirtyFlagImpl | |
| 94 | HrStreamSeekBegin | |
| 95 | HrStreamSeekCur | |
| 96 | HrStreamSeekEnd | |
| 97 | HrStreamSeekSet | |
| 98 | HrStreamToByte | |
| 99 | IDrawText | |
| 100 | IsDigit | |
| 101 | IsPlatformWinNT | |
| 102 | IsPrint | |
| 103 | IsUpper | |
| 104 | IsValidFileIfFileUrl | |
| 105 | IsValidFileIfFileUrlW | |
| 106 | LoadMappedToolbarBitmap | |
| 107 | MessageBoxInst | |
| 108 | MessageBoxInstW | |
| 109 | OpenFileStream | |
| 110 | OpenFileStreamShare | |
| 111 | OpenFileStreamShareW | |
| 112 | OpenFileStreamW | |
| 113 | OpenFileStreamWithFlags | |
| 114 | OpenFileStreamWithFlagsW | |
| 115 | PSTCreateTypeSubType_NoUI | |
| 116 | PSTFreeHandle | |
| 117 | PSTGetData | |
| 118 | PSTSetNewData | |
| 119 | PVDecodeObject | |
| 120 | PVGetCertificateParam | |
| 121 | PVGetMsgParam | |
| 122 | PszAllocA | |
| 123 | PszAllocW | |
| 124 | PszDayFromIndex | |
| 125 | PszDupA | |
| 126 | PszDupLenA | |
| 127 | PszDupW | |
| 128 | PszEscapeMenuStringA | |
| 129 | PszFromANSIStreamA | |
| 130 | PszMonthFromIndex | |
| 131 | PszScanToCharA | |
| 132 | PszScanToWhiteA | |
| 133 | PszSkipWhiteA | |
| 134 | PszSkipWhiteW | |
| 135 | PszToANSI | |
| 136 | PszToUnicode | |
| 137 | ReplaceChars | |
| 138 | ReplaceCharsW | |
| 139 | RicheditStreamIn | |
| 140 | RicheditStreamOut | |
| 141 | SetIntlFont | |
| 142 | SetWindowLongPtrAthW | |
| 143 | ShellUtil_GetSpecialFolderPath | |
| 144 | StrChrExA | |
| 145 | StrToUintA | |
| 146 | StrToUintW | |
| 147 | StrTokEx | |
| 148 | StreamSubStringMatch | |
| 149 | StripCRLF | |
| 150 | SzGetCertificateEmailAddress | |
| 151 | UlStripWhitespace | |
| 152 | UlStripWhitespaceW | |
| 153 | UnlocStrEqNW | |
| 154 | UpdateRebarBandColors | |
| 155 | WriteStreamToFile | |
| 156 | WriteStreamToFileHandle | |
| 157 | WriteStreamToFileW | |
| 158 | WszGenerateNameFromBlob | |
| 159 | _MSG | |
| 160 | fGetBrowserUrlEncoding | |
| 161 | strtrim | |
| 162 | strtrimW |
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 | ; | |
| 6 | LIBRARY "msoledbsql.dll" | |
| 7 | EXPORTS | |
| 8 | DllCanUnloadNow | |
| 9 | DllGetClassObject | |
| 10 | DllMain | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | OpenSqlFilestream |
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 | ; | |
| 7 | LIBRARY MSRLE32.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc |
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 | ; | |
| 7 | LIBRARY mstlsapi.dll | |
| 8 | EXPORTS | |
| 9 | TLSGetVersion | |
| 10 | MIDL_user_allocate | |
| 11 | MIDL_user_free | |
| 12 | EnumerateTlsServer | |
| 13 | TLSSendServerCertificate | |
| 14 | TLSGetServerName | |
| 15 | TLSGetServerScope | |
| 16 | TLSIssuePlatformChallenge | |
| 17 | TLSIssueNewLicense | |
| 18 | TLSUpgradeLicense | |
| 19 | TLSAllocateConcurrentLicense | |
| 20 | TLSGetLastError | |
| 21 | TLSKeyPackEnumBegin | |
| 22 | TLSKeyPackEnumNext | |
| 23 | TLSKeyPackEnumEnd | |
| 24 | TLSLicenseEnumBegin | |
| 25 | TLSLicenseEnumNext | |
| 26 | TLSLicenseEnumEnd | |
| 27 | TLSGetAvailableLicenses | |
| 28 | TLSConnectToLsServer | |
| 29 | TLSConnectToAnyLsServer | |
| 30 | TLSDisconnectFromServer | |
| 31 | FindEnterpriseServer | |
| 32 | GetAllEnterpriseServers | |
| 33 | TLSInit | |
| 34 | TLSGetTSCertificate | |
| 35 | LsCsp_GetServerData | |
| 36 | LsCsp_DecryptEnvelopedData | |
| 37 | LsCsp_EncryptHwid | |
| 38 | LsCsp_StoreSecret | |
| 39 | LsCsp_RetrieveSecret | |
| 40 | TLSStartDiscovery | |
| 41 | TLSStopDiscovery | |
| 42 | TLSShutdown | |
| 43 | TLSFreeTSCertificate | |
| 44 | TLSIssueNewLicenseEx | |
| 45 | TLSUpgradeLicenseEx | |
| 46 | TLSCheckLicenseMark | |
| 47 | TLSIssueNewLicenseExEx | |
| 48 | TLSGetServerNameEx | |
| 49 | TLSLicenseEnumNextEx | |
| 50 | TLSGetServerNameFixed | |
| 51 | TLSGetServerScopeFixed | |
| 52 | TLSGetLastErrorFixed | |
| 53 | GetLicenseServersFromReg | |
| 54 | TLSConnectToAnyLsServerNoCertInstall | |
| 55 | RequestToTlsRequest | |
| 56 | TLSRequestTermServCert | |
| 57 | TLSRetrieveTermServCert | |
| 58 | TLSInstallCertificate | |
| 59 | TLSGetServerCertificate | |
| 60 | TLSRegisterLicenseKeyPack | |
| 61 | TLSGetLSPKCS10CertRequest | |
| 62 | TLSKeyPackAdd | |
| 63 | TLSKeyPackSetStatus | |
| 64 | TLSReturnLicense | |
| 65 | TLSAnnounceServer | |
| 66 | TLSLookupServer | |
| 67 | TLSAnnounceLicensePack | |
| 68 | TLSReturnLicensedProduct | |
| 69 | TLSTelephoneRegisterLKP | |
| 70 | TLSChallengeServer | |
| 71 | TLSResponseServerChallenge | |
| 72 | TLSGetTlsPrivateData | |
| 73 | TLSTriggerReGenKey | |
| 74 | TLSGetServerPID | |
| 75 | TLSGetServerSPK | |
| 76 | TLSDepositeServerSPK | |
| 77 | TLSAllocateInternetLicenseEx | |
| 78 | TLSReturnInternetLicenseEx | |
| 79 | TLSIsBetaNTServer | |
| 80 | TLSIsLicenseEnforceEnable | |
| 81 | TLSInDomain | |
| 82 | TLSMarkLicense | |
| 83 | TLSGetSupportFlags | |
| 84 | TLSLookupServerFixed |
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 | ; | |
| 7 | LIBRARY MSUTB.dll | |
| 8 | EXPORTS | |
| 9 | ClosePopupTipbar | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer | |
| 14 | GetLibTls | |
| 15 | GetPopupTipbar | |
| 16 | SetRegisterLangBand |
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 | ; | |
| 7 | LIBRARY msvcirt.dll | |
| 8 | EXPORTS | |
| 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 | ; | |
| 7 | LIBRARY MSVFW32.dll | |
| 8 | EXPORTS | |
| 9 | VideoForWindowsVersion | |
| 10 | DrawDibBegin | |
| 11 | DrawDibChangePalette | |
| 12 | DrawDibClose | |
| 13 | DrawDibDraw | |
| 14 | DrawDibEnd | |
| 15 | DrawDibGetBuffer | |
| 16 | DrawDibGetPalette | |
| 17 | DrawDibOpen | |
| 18 | DrawDibProfileDisplay | |
| 19 | DrawDibRealize | |
| 20 | DrawDibSetPalette | |
| 21 | DrawDibStart | |
| 22 | DrawDibStop | |
| 23 | DrawDibTime | |
| 24 | GetOpenFileNamePreview | |
| 25 | GetOpenFileNamePreviewA | |
| 26 | GetOpenFileNamePreviewW | |
| 27 | GetSaveFileNamePreviewA | |
| 28 | GetSaveFileNamePreviewW | |
| 29 | ICClose | |
| 30 | ICCompress | |
| 31 | ICCompressorChoose | |
| 32 | ICCompressorFree | |
| 33 | ICDecompress | |
| 34 | ICDraw | |
| 35 | ICDrawBegin | |
| 36 | ICGetDisplayFormat | |
| 37 | ICGetInfo | |
| 38 | ICImageCompress | |
| 39 | ICImageDecompress | |
| 40 | ICInfo | |
| 41 | ICInstall | |
| 42 | ICLocate | |
| 43 | ICMThunk32 | |
| 44 | ICOpen | |
| 45 | ICOpenFunction | |
| 46 | ICRemove | |
| 47 | ICSendMessage | |
| 48 | ICSeqCompressFrame | |
| 49 | ICSeqCompressFrameEnd | |
| 50 | ICSeqCompressFrameStart | |
| 51 | MCIWndCreate | |
| 52 | MCIWndCreateA | |
| 53 | MCIWndCreateW | |
| 54 | MCIWndRegisterClass | |
| 55 | StretchDIB |
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 | ; | |
| 7 | LIBRARY MSVIDC32.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc |
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 | ; | |
| 7 | LIBRARY MSW3PRT.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc |
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 | ; | |
| 7 | LIBRARY MTXCLU.DLL | |
| 8 | EXPORTS | |
| 9 | MtxCluBringOnlineDTC2A | |
| 10 | MtxCluBringOnlineDTC2W | |
| 11 | MtxCluBringOnlineDTCA | |
| 12 | MtxCluBringOnlineDTCW | |
| 13 | MtxCluCheckIfOkToStartDtc | |
| 14 | MtxCluCheckPointCryptoW | |
| 15 | MtxCluCheckpointRegistryA | |
| 16 | MtxCluCheckpointRegistryW | |
| 17 | MtxCluCloseNodeNotify | |
| 18 | MtxCluCreateDtcResourceKeyW | |
| 19 | MtxCluCreateDtcResourceValueW | |
| 20 | MtxCluCreateDtcResourceW | |
| 21 | MtxCluCreateRecommendedLogInfo | |
| 22 | MtxCluDeleteDtcResourceKeyW | |
| 23 | MtxCluDeleteDtcResourceValueW | |
| 24 | MtxCluDoesDTCResourceExistA | |
| 25 | MtxCluDoesDTCResourceExistW | |
| 26 | MtxCluGetComputerNameA | |
| 27 | MtxCluGetComputerNameW | |
| 28 | MtxCluGetDTCInstallState | |
| 29 | MtxCluGetDTCInstallVersion | |
| 30 | MtxCluGetDTCIpAddressA | |
| 31 | MtxCluGetDTCIpAddressW | |
| 32 | MtxCluGetDTCLogPathA | |
| 33 | MtxCluGetDTCLogPathW | |
| 34 | MtxCluGetDTCLogSizeA | |
| 35 | MtxCluGetDTCLogSizeW | |
| 36 | MtxCluGetDTCOwnerA | |
| 37 | MtxCluGetDTCOwnerW | |
| 38 | MtxCluGetDTCStatusA | |
| 39 | MtxCluGetDTCStatusW | |
| 40 | MtxCluGetDTCVirtualServerNameA | |
| 41 | MtxCluGetDTCVirtualServerNameW | |
| 42 | MtxCluGetDtcUserInfo | |
| 43 | MtxCluGetJoinMasterA | |
| 44 | MtxCluGetJoinMasterW | |
| 45 | MtxCluGetListOfSharedDisksA | |
| 46 | MtxCluGetListOfSharedDisksOnVirtualServerA | |
| 47 | MtxCluGetListOfSharedDisksOnVirtualServerW | |
| 48 | MtxCluGetListOfSharedDisksW | |
| 49 | MtxCluGetListOfVirtualServersA | |
| 50 | MtxCluGetListOfVirtualServersW | |
| 51 | MtxCluGetNewCryptoKey | |
| 52 | MtxCluGetNodeClusterStateW | |
| 53 | MtxCluGetSecurityRegValue | |
| 54 | MtxCluInitialize | |
| 55 | MtxCluIsClusterPresent | |
| 56 | MtxCluIsClusterPresentExA | |
| 57 | MtxCluIsClusterPresentExW | |
| 58 | MtxCluIsNetworkNameInLocalClusterW | |
| 59 | MtxCluIsSameClusterW | |
| 60 | MtxCluIsSameNodeA | |
| 61 | MtxCluIsSameNodeW | |
| 62 | MtxCluIsSharedDiskA | |
| 63 | MtxCluIsSharedDiskW | |
| 64 | MtxCluIsVirtualServerInLocalClusterA | |
| 65 | MtxCluIsVirtualServerInLocalClusterW | |
| 66 | MtxCluJoinDTCResource | |
| 67 | MtxCluListNodesA | |
| 68 | MtxCluListNodesW | |
| 69 | MtxCluMoveDTCGroupA | |
| 70 | MtxCluMoveDTCGroupW | |
| 71 | MtxCluNodeNotifyA | |
| 72 | MtxCluNodeNotifyW | |
| 73 | MtxCluQueryDtcResourceValueW | |
| 74 | MtxCluRegisterDTCResourceA | |
| 75 | MtxCluRegisterDTCResourceW | |
| 76 | MtxCluRemoveAllRegistryCheckpoints | |
| 77 | MtxCluRemoveCheckpointRegistryA | |
| 78 | MtxCluRemoveCheckpointRegistryW | |
| 79 | MtxCluSetDTCLogPathA | |
| 80 | MtxCluSetDTCLogPathW | |
| 81 | MtxCluSetDTCLogSizeA | |
| 82 | MtxCluSetDTCLogSizeW | |
| 83 | MtxCluSetDtcUserInfo | |
| 84 | MtxCluSetNewCryptoKey | |
| 85 | MtxCluSetSecurityRegValue | |
| 86 | MtxCluTakeOfflineDTC2W | |
| 87 | MtxCluTakeOfflineDTCA | |
| 88 | MtxCluTakeOfflineDTCW | |
| 89 | MtxCluUninitialize | |
| 90 | MtxCluUpgradeDtcResourceW | |
| 91 | Startup | |
| 92 | WasDTCInstalledBySQL | |
| 93 | DllMain |
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 | ; | |
| 7 | LIBRARY mtxex.dll | |
| 8 | EXPORTS | |
| 9 | DllGetClassObject | |
| 10 | GetObjectContext | |
| 11 | MTSCreateActivity | |
| 12 | SafeRef |
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 | ; | |
| 7 | LIBRARY MTxOCI.dll | |
| 8 | EXPORTS | |
| 9 | obndra | |
| 10 | obndrn | |
| 11 | obndrv | |
| 12 | obreak | |
| 13 | ocan | |
| 14 | oclose | |
| 15 | ocof | |
| 16 | ocom | |
| 17 | ocon | |
| 18 | odefin | |
| 19 | odescr | |
| 20 | odessp | |
| 21 | oerhms | |
| 22 | oermsg | |
| 23 | oexec | |
| 24 | oexfet | |
| 25 | oexn | |
| 26 | ofen | |
| 27 | ofetch | |
| 28 | oflng | |
| 29 | olog | |
| 30 | ologof | |
| 31 | DllRegisterServer | |
| 32 | DllUnregisterServer | |
| 33 | oopen | |
| 34 | oopt | |
| 35 | oparse | |
| 36 | orol | |
| 37 | obindps | |
| 38 | odefinps | |
| 39 | ogetpi | |
| 40 | osetpi | |
| 41 | opinit | |
| 42 | ologTransacted | |
| 43 | Enlist | |
| 44 | GetXaSwitch | |
| 45 | MTxOciInit | |
| 46 | MTxolog | |
| 47 | MTxOciGetVersion | |
| 48 | MTxOciRegisterCursor |
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 | ; | |
| 7 | LIBRARY NCXP.dll | |
| 8 | EXPORTS | |
| 9 | EnableAutodial | |
| 10 | GetDefaultDialupConnection | |
| 11 | IsAutodialEnabled | |
| 12 | SetDefaultDialupConnection | |
| 13 | TestRunDll | |
| 14 | DisableUserLevelAccessControl | |
| 15 | EnumMatchingNetBindings | |
| 16 | EnumNetAdapters | |
| 17 | HrEnableDhcp | |
| 18 | HrFromLastWin32Error | |
| 19 | HrWideCharToMultiByte | |
| 20 | InstallMSClient | |
| 21 | InstallSharing | |
| 22 | InstallTCPIP | |
| 23 | IsAccessControlUserLevel | |
| 24 | IsAdapterDisconnected | |
| 25 | IsClientInstalled | |
| 26 | IsMSClientInstalled | |
| 27 | IsProtocolInstalled | |
| 28 | IsSharingInstalled | |
| 29 | NetConnAlloc | |
| 30 | NetConnFree | |
| 31 | RestartNetAdapter |
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 | ; | |
| 7 | LIBRARY NDDENB32.dll | |
| 8 | EXPORTS | |
| 9 | NDDEInit | |
| 10 | NDDEGetCAPS | |
| 11 | NDDEGetNewConnection | |
| 12 | NDDEAddConnection | |
| 13 | NDDEDeleteConnection | |
| 14 | NDDEGetConnectionStatus | |
| 15 | NDDERcvPacket | |
| 16 | NDDEXmtPacket | |
| 17 | NDDESetConnectionConfig | |
| 18 | NDDEShutdown | |
| 19 | NDDETimeSlice | |
| 20 | NDDEGetConnectionConfig | |
| 21 | Configure | |
| 22 | LogDebugInfo | |
| 23 | ConfigureDlgProc |
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 | ; | |
| 7 | LIBRARY NDISNPP.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | GetNPPBlobs |
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 | ; | |
| 7 | LIBRARY netcfgx.dll | |
| 8 | EXPORTS | |
| 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 | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer | |
| 15 | HrDiAddComponentToINetCfg | |
| 16 | LanaCfgFromCommandArgs | |
| 17 | ModemClassCoInstaller | |
| 18 | NetCfgDiagFromCommandArgs | |
| 19 | NetCfgDiagRepairRegistryBindings | |
| 20 | NetClassInstaller | |
| 21 | NetPropPageProvider | |
| 22 | RasAddBindings | |
| 23 | RasCountBindings | |
| 24 | RasRemoveBindings | |
| 25 | SvchostChangeSvchostGroup | |
| 26 | UpdateLanaConfigUsingAnswerfile |
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 | ; | |
| 6 | LIBRARY "netjoin.dll" | |
| 7 | EXPORTS | |
| 8 | NetProvisionComputerAccount | |
| 9 | NetRequestOfflineDomainJoin | |
| 10 | NetSetuppCloseLog | |
| 11 | NetSetuppOpenLog | |
| 12 | NetpAvoidNetlogonSpnSet | |
| 13 | NetpChangeMachineName | |
| 14 | NetpCheckOfflineLsaPolicyUpdate | |
| 15 | NetpCompleteOfflineDomainJoin | |
| 16 | NetpControlServices | |
| 17 | NetpCrackNamesStatus2Win32Error | |
| 18 | NetpCreateComputerObjectInDs | |
| 19 | NetpDecodeProvisioningBlob | |
| 20 | NetpDecodeProvisioningData | |
| 21 | NetpDoDomainJoin | |
| 22 | NetpDoInitiateOfflineDomainJoin | |
| 23 | NetpDomainJoinLicensingCheck | |
| 24 | NetpDumpBlobToLog | |
| 25 | NetpDumpDcInfoToLog | |
| 26 | NetpDumpDnsDomainInfoToLog | |
| 27 | NetpEncodeProvisionData | |
| 28 | NetpEncodeProvisioningBlob | |
| 29 | NetpFreeLdapLsaDomainInfo | |
| 30 | NetpFreeODJBlob | |
| 31 | NetpGetJoinInformation | |
| 32 | NetpGetListOfJoinableOUs | |
| 33 | NetpGetLogIndentPrefixString | |
| 34 | NetpGetLsaPrimaryDomain | |
| 35 | NetpGetMachineAccountName | |
| 36 | NetpGetNewMachineName | |
| 37 | NetpInitAndPickleBlobWin7 | |
| 38 | NetpIsSetupInProgress | |
| 39 | NetpLogPrintHelper | |
| 40 | NetpMachineValidToJoin | |
| 41 | NetpManageIPCConnect | |
| 42 | NetpManageMachineAccountWithSid | |
| 43 | NetpProvisionComputerAccount | |
| 44 | NetpQueryService | |
| 45 | NetpSeparateUserAndDomain | |
| 46 | NetpSetComputerAccountPassword | |
| 47 | NetpStopService | |
| 48 | NetpStoreInitialDcRecord | |
| 49 | NetpUnJoinDomain | |
| 50 | NetpUnpickleBlobWin7 | |
| 51 | NetpUpgradePreNT5JoinInfo | |
| 52 | NetpValidateName |
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 | ; | |
| 7 | LIBRARY NETLOGON.dll | |
| 8 | EXPORTS | |
| 9 | DsrGetDcNameEx2 | |
| 10 | I_DsGetDcCache | |
| 11 | I_NetLogonAddressToSiteName | |
| 12 | I_NetLogonAppendChangeLog | |
| 13 | I_NetLogonCloseChangeLog | |
| 14 | I_NetLogonFree | |
| 15 | I_NetLogonGetAuthDataEx | |
| 16 | I_NetLogonGetIpAddresses | |
| 17 | I_NetLogonGetSerialNumber | |
| 18 | I_NetLogonLdapLookupEx | |
| 19 | I_NetLogonMixedDomain | |
| 20 | I_NetLogonNewChangeLog | |
| 21 | I_NetLogonReadChangeLog | |
| 22 | I_NetLogonSendToSamOnPdc | |
| 23 | I_NetLogonSetServiceBits | |
| 24 | I_NetNotifyDelta | |
| 25 | I_NetNotifyDsChange | |
| 26 | I_NetNotifyMachineAccount | |
| 27 | I_NetNotifyNetlogonDllHandle | |
| 28 | I_NetNotifyNtdsDsaDeletion | |
| 29 | I_NetNotifyRole | |
| 30 | I_NetNotifyTrustedDomain | |
| 31 | InitSecurityInterfaceW | |
| 32 | NetILogonSamLogon | |
| 33 | NlNetlogonMain |
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 | ; | |
| 7 | LIBRARY netman.dll | |
| 8 | EXPORTS | |
| 9 | GetClientAdvises | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | HrGetPnpDeviceStatus | |
| 13 | HrLanConnectionNameFromGuidOrPath | |
| 14 | HrPnpInstanceIdFromGuid | |
| 15 | HrQueryLanMediaState | |
| 16 | HrRasConnectionNameFromGuid | |
| 17 | NetManDiagFromCommandArgs | |
| 18 | ProcessQueue | |
| 19 | RasEventNotify | |
| 20 | ServiceMain |
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 | ; | |
| 7 | LIBRARY netoc.dll | |
| 8 | EXPORTS | |
| 9 | NetOcSetupProc |
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 | ; | |
| 7 | LIBRARY NETPLWIZ.dll | |
| 8 | EXPORTS | |
| 9 | AddNetPlaceRunDll | |
| 10 | PassportWizardRunDll | |
| 11 | PublishRunDll | |
| 12 | UsersRunDll | |
| 13 | ClearAutoLogon | |
| 14 | DllCanUnloadNow | |
| 15 | DllGetClassObject | |
| 16 | DllInstall | |
| 17 | DllMain | |
| 18 | DllRegisterServer | |
| 19 | DllUnregisterServer | |
| 20 | NetAccessWizard | |
| 21 | NetPlacesWizardDoModal | |
| 22 | SHDisconnectNetDrives |
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 | ; | |
| 7 | LIBRARY NETRAP.dll | |
| 8 | EXPORTS | |
| 9 | RapArrayLength | |
| 10 | RapAsciiToDecimal | |
| 11 | RapAuxDataCount | |
| 12 | RapAuxDataCountOffset | |
| 13 | RapConvertSingleEntry | |
| 14 | RapConvertSingleEntryEx | |
| 15 | RapExamineDescriptor | |
| 16 | RapGetFieldSize | |
| 17 | RapIsValidDescriptorSmb | |
| 18 | RapLastPointerOffset | |
| 19 | RapParmNumDescriptor | |
| 20 | RapStructureAlignment | |
| 21 | RapStructureSize | |
| 22 | RapTotalSize |
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 | ; | |
| 7 | LIBRARY NETUI0.dll | |
| 8 | EXPORTS | |
| 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 | |
| 1057 | InitCompareParam | |
| 1058 | NETUI_InitIsDBCS | |
| 1059 | NETUI_IsDBCS | |
| 1060 | NETUI_strcmp | |
| 1061 | NETUI_stricmp | |
| 1062 | NETUI_strncmp | |
| 1063 | NETUI_strncmp2 | |
| 1064 | NETUI_strnicmp | |
| 1065 | NETUI_strnicmp2 | |
| 1066 | QueryNocaseCompareParam | |
| 1067 | QueryStdCompareParam | |
| 1068 | QueryUserDefaultLCID | |
| 1069 | UserPreferenceQuery | |
| 1070 | UserPreferenceQueryBool | |
| 1071 | UserPreferenceSet | |
| 1072 | UserPreferenceSetBool | |
| 1073 | UserProfileEnum | |
| 1074 | UserProfileFree | |
| 1075 | UserProfileInit | |
| 1076 | UserProfileQuery | |
| 1077 | UserProfileRead | |
| 1078 | UserProfileSet | |
| 1079 | UserProfileWrite |
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 | ; | |
| 7 | LIBRARY NETUI1.dll | |
| 8 | EXPORTS | |
| 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 | |
| 2951 | DestroySession | |
| 2952 | FreeArgv | |
| 2953 | I_MNetComputerNameCompare | |
| 2954 | I_MNetLogonControl | |
| 2955 | I_MNetNameCanonicalize | |
| 2956 | I_MNetNameCompare | |
| 2957 | I_MNetNameValidate | |
| 2958 | I_MNetPathCanonicalize | |
| 2959 | I_MNetPathCompare | |
| 2960 | I_MNetPathType | |
| 2961 | IsSlowTransport | |
| 2962 | MAllocMem | |
| 2963 | MDosPrintQEnum | |
| 2964 | MFreeMem | |
| 2965 | MNetAccessAdd | |
| 2966 | MNetAccessCheck | |
| 2967 | MNetAccessDel | |
| 2968 | MNetAccessEnum | |
| 2969 | MNetAccessGetInfo | |
| 2970 | MNetAccessGetUserPerms | |
| 2971 | MNetAccessSetInfo | |
| 2972 | MNetApiBufferAlloc | |
| 2973 | MNetApiBufferFree | |
| 2974 | MNetApiBufferReAlloc | |
| 2975 | MNetApiBufferSize | |
| 2976 | MNetAuditClear | |
| 2977 | MNetAuditRead | |
| 2978 | MNetAuditWrite | |
| 2979 | MNetCharDevControl | |
| 2980 | MNetCharDevGetInfo | |
| 2981 | MNetCharDevQEnum | |
| 2982 | MNetCharDevQGetInfo | |
| 2983 | MNetCharDevQPurge | |
| 2984 | MNetCharDevQPurgeSelf | |
| 2985 | MNetCharDevQSetInfo | |
| 2986 | MNetConfigGet | |
| 2987 | MNetConfigGetAll | |
| 2988 | MNetConfigSet | |
| 2989 | MNetConnectionEnum | |
| 2990 | MNetErrorLogClear | |
| 2991 | MNetErrorLogRead | |
| 2992 | MNetErrorLogWrite | |
| 2993 | MNetFileClose | |
| 2994 | MNetFileEnum | |
| 2995 | MNetFileGetInfo | |
| 2996 | MNetGetDCName | |
| 2997 | MNetGroupAdd | |
| 2998 | MNetGroupAddUser | |
| 2999 | MNetGroupDel | |
| 3000 | MNetGroupDelUser | |
| 3001 | MNetGroupEnum | |
| 3002 | MNetGroupGetInfo | |
| 3003 | MNetGroupGetUsers | |
| 3004 | MNetGroupSetInfo | |
| 3005 | MNetGroupSetUsers | |
| 3006 | MNetLocalGroupAddMember | |
| 3007 | MNetLogonEnum | |
| 3008 | MNetMessageBufferSend | |
| 3009 | MNetRemoteTOD | |
| 3010 | MNetServerDiskEnum | |
| 3011 | MNetServerEnum | |
| 3012 | MNetServerGetInfo | |
| 3013 | MNetServerSetInfo | |
| 3014 | MNetServiceControl | |
| 3015 | MNetServiceEnum | |
| 3016 | MNetServiceGetInfo | |
| 3017 | MNetServiceInstall | |
| 3018 | MNetSessionDel | |
| 3019 | MNetSessionEnum | |
| 3020 | MNetSessionGetInfo | |
| 3021 | MNetShareAdd | |
| 3022 | MNetShareCheck | |
| 3023 | MNetShareDel | |
| 3024 | MNetShareDelSticky | |
| 3025 | MNetShareEnum | |
| 3026 | MNetShareEnumSticky | |
| 3027 | MNetShareGetInfo | |
| 3028 | MNetShareSetInfo | |
| 3029 | MNetUseAdd | |
| 3030 | MNetUseDel | |
| 3031 | MNetUseEnum | |
| 3032 | MNetUseGetInfo | |
| 3033 | MNetUserAdd | |
| 3034 | MNetUserDel | |
| 3035 | MNetUserEnum | |
| 3036 | MNetUserGetGroups | |
| 3037 | MNetUserGetInfo | |
| 3038 | MNetUserModalsGet | |
| 3039 | MNetUserModalsSet | |
| 3040 | MNetUserPasswordSet | |
| 3041 | MNetUserSetGroups | |
| 3042 | MNetUserSetInfo | |
| 3043 | MNetWkstaGetInfo | |
| 3044 | MNetWkstaSetInfo | |
| 3045 | MNetWkstaSetUID | |
| 3046 | MNetWkstaUserEnum | |
| 3047 | MNetWkstaUserGetInfo | |
| 3048 | MakeArgvArgc | |
| 3049 | SetupNormalSession | |
| 3050 | SetupNullSession | |
| 3051 | SetupSession | |
| 3052 | SlowTransportWorkerThread |
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 | ; | |
| 7 | LIBRARY NETUI2.dll | |
| 8 | EXPORTS | |
| 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 | |
| 4087 | BltCCWndProc | |
| 4088 | BltDlgProc | |
| 4089 | BltWndProc | |
| 4090 | CloseUserBrowser | |
| 4091 | EnumUserBrowserSelection | |
| 4092 | LongToHandle | |
| 4093 | OpenUserBrowser | |
| 4094 | PtrToUlong | |
| 4095 | ShellDlgProc | |
| 4096 | UIntToPtr |
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 | ; | |
| 7 | LIBRARY NNTPAPI.dll | |
| 8 | EXPORTS | |
| 9 | NntpAddExpire | |
| 10 | NntpAddFeed | |
| 11 | NntpCancelMessageID | |
| 12 | NntpClearStatistics | |
| 13 | NntpCreateNewsgroup | |
| 14 | NntpDeleteExpire | |
| 15 | NntpDeleteFeed | |
| 16 | NntpDeleteNewsgroup | |
| 17 | NntpEnableFeed | |
| 18 | NntpEnumerateExpires | |
| 19 | NntpEnumerateFeeds | |
| 20 | NntpEnumerateSessions | |
| 21 | NntpFindNewsgroup | |
| 22 | NntpGetAdminInformation | |
| 23 | NntpGetBuildStatus | |
| 24 | NntpGetExpireInformation | |
| 25 | NntpGetFeedInformation | |
| 26 | NntpGetNewsgroup | |
| 27 | NntpGetVRootWin32Error | |
| 28 | NntpQueryStatistics | |
| 29 | NntpSetAdminInformation | |
| 30 | NntpSetExpireInformation | |
| 31 | NntpSetFeedInformation | |
| 32 | NntpSetNewsgroup | |
| 33 | NntpStartRebuild | |
| 34 | NntpTerminateSession |
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 | ; | |
| 7 | LIBRARY NPPTools.dll | |
| 8 | EXPORTS | |
| 9 | ClearEventData | |
| 10 | ReleaseEventSystem | |
| 11 | SendEvent | |
| 12 | ConvertHexStringToWString | |
| 13 | ConvertWStringToHexString | |
| 14 | CreateBlob | |
| 15 | CreateNPPInterface | |
| 16 | DestroyBlob | |
| 17 | DuplicateBlob | |
| 18 | FilterNPPBlob | |
| 19 | FindOneOf | |
| 20 | FindUnknownBlobCategories | |
| 21 | FindUnknownBlobTags | |
| 22 | GetBoolFromBlob | |
| 23 | GetClassIDFromBlob | |
| 24 | GetDwordFromBlob | |
| 25 | GetMacAddressFromBlob | |
| 26 | GetNPPAddress2FilterFromBlob | |
| 27 | GetNPPAddressFilterFromBlob | |
| 28 | GetNPPBlobFromUI | |
| 29 | GetNPPBlobTable | |
| 30 | GetNPPEtypeSapFilter | |
| 31 | GetNPPMacTypeAsNumber | |
| 32 | GetNPPPatternFilterFromBlob | |
| 33 | GetNPPTriggerFromBlob | |
| 34 | GetNetworkInfoFromBlob | |
| 35 | GetStringFromBlob | |
| 36 | GetStringsFromBlob | |
| 37 | GetWStringFromBlob | |
| 38 | IsRemoteNPP | |
| 39 | LockBlob | |
| 40 | MarshalBlob | |
| 41 | MergeBlob | |
| 42 | NmAddUsedEntry | |
| 43 | NmHeapAllocate | |
| 44 | NmHeapFree | |
| 45 | NmHeapReallocate | |
| 46 | NmHeapSetMaxSize | |
| 47 | NmHeapSize | |
| 48 | NmRemoveUsedEntry | |
| 49 | RaiseNMEvent | |
| 50 | ReadBlobFromFile | |
| 51 | RegCreateBlobKey | |
| 52 | RegOpenBlobKey | |
| 53 | RemoveFromBlob | |
| 54 | SelectNPPBlobFromTable | |
| 55 | SetBoolInBlob | |
| 56 | SetClassIDInBlob | |
| 57 | SetDwordInBlob | |
| 58 | SetMacAddressInBlob | |
| 59 | SetNPPAddress2FilterInBlob | |
| 60 | SetNPPAddressFilterInBlob | |
| 61 | SetNPPEtypeSapFilter | |
| 62 | SetNPPPatternFilterInBlob | |
| 63 | SetNPPTriggerInBlob | |
| 64 | SetNetworkInfoInBlob | |
| 65 | SetStringInBlob | |
| 66 | SetWStringInBlob | |
| 67 | SubkeyExists | |
| 68 | UnMarshalBlob | |
| 69 | UnlockBlob | |
| 70 | WriteBlobToFile | |
| 71 | WriteCrackedBlobToFile | |
| 72 | recursiveDeleteKey | |
| 73 | setKeyAndValue |
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 | ; | |
| 7 | LIBRARY NSHIPSEC.DLL | |
| 8 | EXPORTS | |
| 9 | GetIpsecLastError | |
| 10 | GetResourceString | |
| 11 | InitHelperDll |
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 | ; | |
| 7 | LIBRARY ntdsbcli.dll | |
| 8 | EXPORTS | |
| 9 | DsBackupClose | |
| 10 | DsBackupEnd | |
| 11 | DsBackupFree | |
| 12 | DsBackupGetBackupLogsA | |
| 13 | DsBackupGetBackupLogsW | |
| 14 | DsBackupGetDatabaseNamesA | |
| 15 | DsBackupGetDatabaseNamesW | |
| 16 | DsBackupOpenFileA | |
| 17 | DsBackupOpenFileW | |
| 18 | DsBackupPrepareA | |
| 19 | DsBackupPrepareW | |
| 20 | DsBackupRead | |
| 21 | DsBackupTruncateLogs | |
| 22 | DsIsNTDSOnlineA | |
| 23 | DsIsNTDSOnlineW | |
| 24 | DsRestoreCheckExpiryToken | |
| 25 | DsRestoreEnd | |
| 26 | DsRestoreGetDatabaseLocationsA | |
| 27 | DsRestoreGetDatabaseLocationsW | |
| 28 | DsRestorePrepareA | |
| 29 | DsRestorePrepareW | |
| 30 | DsRestoreRegisterA | |
| 31 | DsRestoreRegisterComplete | |
| 32 | DsRestoreRegisterW | |
| 33 | DsSetAuthIdentityA | |
| 34 | DsSetAuthIdentityW | |
| 35 | DsSetCurrentBackupLogA | |
| 36 | DsSetCurrentBackupLogW |
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 | ; | |
| 7 | LIBRARY NTLANUI.dll | |
| 8 | EXPORTS | |
| 9 | ShareAsDialogA0 | |
| 10 | StopShareDialogA0 | |
| 11 | DllMain | |
| 12 | I_SystemFocusDialog | |
| 13 | NPGetPropertyText | |
| 14 | NPPropertyDialog | |
| 15 | ServerBrowseDialogA0 | |
| 16 | ShareCreate | |
| 17 | ShareManage | |
| 18 | ShareStop |
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 | ; | |
| 7 | LIBRARY ntlsapi.dll | |
| 8 | EXPORTS | |
| 9 | NtLSFreeHandle | |
| 10 | NtLicenseRequestA | |
| 11 | NtLicenseRequestW |
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 | ; | |
| 7 | LIBRARY NTMARTA.dll | |
| 8 | EXPORTS | |
| 9 | AccFreeIndexArray | |
| 10 | AccGetInheritanceSource | |
| 11 | AccProvHandleGrantAccessRights | |
| 12 | AccRewriteGetExplicitEntriesFromAcl | |
| 13 | AccRewriteGetHandleRights | |
| 14 | AccRewriteGetNamedRights | |
| 15 | AccRewriteSetEntriesInAcl | |
| 16 | AccRewriteSetHandleRights | |
| 17 | AccRewriteSetNamedRights | |
| 18 | AccTreeResetNamedSecurityInfo | |
| 19 | AccConvertAccessMaskToActrlAccess | |
| 20 | AccConvertAccessToSD | |
| 21 | AccConvertAccessToSecurityDescriptor | |
| 22 | AccConvertAclToAccess | |
| 23 | AccConvertSDToAccess | |
| 24 | AccGetAccessForTrustee | |
| 25 | AccGetExplicitEntries | |
| 26 | AccLookupAccountName | |
| 27 | AccLookupAccountSid | |
| 28 | AccLookupAccountTrustee | |
| 29 | AccProvCancelOperation | |
| 30 | AccProvGetAccessInfoPerObjectType | |
| 31 | AccProvGetAllRights | |
| 32 | AccProvGetCapabilities | |
| 33 | AccProvGetOperationResults | |
| 34 | AccProvGetTrusteesAccess | |
| 35 | AccProvGrantAccessRights | |
| 36 | AccProvHandleGetAccessInfoPerObjectType | |
| 37 | AccProvHandleGetAllRights | |
| 38 | AccProvHandleGetTrusteesAccess | |
| 39 | AccProvHandleIsAccessAudited | |
| 40 | AccProvHandleIsObjectAccessible | |
| 41 | AccProvHandleRevokeAccessRights | |
| 42 | AccProvHandleRevokeAuditRights | |
| 43 | AccProvHandleSetAccessRights | |
| 44 | AccProvIsAccessAudited | |
| 45 | AccProvIsObjectAccessible | |
| 46 | AccProvRevokeAccessRights | |
| 47 | AccProvRevokeAuditRights | |
| 48 | AccProvSetAccessRights | |
| 49 | AccSetEntriesInAList | |
| 50 | EventGuidToName | |
| 51 | EventNameFree |
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 | ; | |
| 7 | LIBRARY NTMSAPI.dll | |
| 8 | EXPORTS | |
| 9 | AccessNtmsLibraryDoor | |
| 10 | AddNtmsMediaType | |
| 11 | AllocateNtmsMedia | |
| 12 | BeginNtmsDeviceChangeDetection | |
| 13 | CancelNtmsLibraryRequest | |
| 14 | CancelNtmsOperatorRequest | |
| 15 | ChangeNtmsMediaType | |
| 16 | CleanNtmsDrive | |
| 17 | CloseNtmsNotification | |
| 18 | CloseNtmsSession | |
| 19 | CreateNtmsMediaA | |
| 20 | CreateNtmsMediaPoolA | |
| 21 | CreateNtmsMediaPoolW | |
| 22 | CreateNtmsMediaW | |
| 23 | DeallocateNtmsMedia | |
| 24 | DecommissionNtmsMedia | |
| 25 | DeleteNtmsDrive | |
| 26 | DeleteNtmsLibrary | |
| 27 | DeleteNtmsMedia | |
| 28 | DeleteNtmsMediaPool | |
| 29 | DeleteNtmsMediaType | |
| 30 | DeleteNtmsRequests | |
| 31 | DisableNtmsObject | |
| 32 | DismountNtmsDrive | |
| 33 | DismountNtmsMedia | |
| 34 | DoEjectFromSADriveW | |
| 35 | EjectDiskFromSADriveA | |
| 36 | EjectDiskFromSADriveW | |
| 37 | EjectNtmsCleaner | |
| 38 | EjectNtmsMedia | |
| 39 | EnableNtmsObject | |
| 40 | EndNtmsDeviceChangeDetection | |
| 41 | EnumerateNtmsObject | |
| 42 | ExportNtmsDatabase | |
| 43 | GetNtmsMediaPoolNameA | |
| 44 | GetNtmsMediaPoolNameW | |
| 45 | GetNtmsObjectAttributeA | |
| 46 | GetNtmsObjectAttributeW | |
| 47 | GetNtmsObjectInformationA | |
| 48 | GetNtmsObjectInformationW | |
| 49 | GetNtmsObjectSecurity | |
| 50 | GetNtmsRequestOrder | |
| 51 | GetNtmsUIOptionsA | |
| 52 | GetNtmsUIOptionsW | |
| 53 | GetVolumesFromDriveA | |
| 54 | GetVolumesFromDriveW | |
| 55 | IdentifyNtmsSlot | |
| 56 | ImportNtmsDatabase | |
| 57 | InjectNtmsCleaner | |
| 58 | InjectNtmsMedia | |
| 59 | InventoryNtmsLibrary | |
| 60 | MountNtmsMedia | |
| 61 | MoveToNtmsMediaPool | |
| 62 | OpenNtmsNotification | |
| 63 | OpenNtmsSessionA | |
| 64 | OpenNtmsSessionW | |
| 65 | ReleaseNtmsCleanerSlot | |
| 66 | ReserveNtmsCleanerSlot | |
| 67 | SatisfyNtmsOperatorRequest | |
| 68 | SetNtmsDeviceChangeDetection | |
| 69 | SetNtmsMediaComplete | |
| 70 | SetNtmsObjectAttributeA | |
| 71 | SetNtmsObjectAttributeW | |
| 72 | SetNtmsObjectInformationA | |
| 73 | SetNtmsObjectInformationW | |
| 74 | SetNtmsObjectSecurity | |
| 75 | SetNtmsRequestOrder | |
| 76 | SetNtmsUIOptionsA | |
| 77 | SetNtmsUIOptionsW | |
| 78 | SubmitNtmsOperatorRequestA | |
| 79 | SubmitNtmsOperatorRequestW | |
| 80 | SwapNtmsMedia | |
| 81 | UpdateNtmsOmidInfo | |
| 82 | WaitForNtmsNotification | |
| 83 | WaitForNtmsOperatorRequest |
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 | ; | |
| 7 | LIBRARY NTOC.dll | |
| 8 | EXPORTS | |
| 9 | NtOcSetupProc |
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 | ; | |
| 6 | LIBRARY "ntoskrnl.exe" | |
| 7 | EXPORTS | |
| 8 | AlpcGetHeaderSize | |
| 9 | AlpcGetMessageAttribute | |
| 10 | AlpcInitializeMessageAttribute | |
| 11 | CcCanIWrite | |
| 12 | CcCoherencyFlushAndPurgeCache | |
| 13 | CcCopyRead | |
| 14 | CcCopyWrite | |
| 15 | CcCopyWriteWontFlush | |
| 16 | CcDeferWrite | |
| 17 | CcFastCopyRead | |
| 18 | CcFastCopyWrite | |
| 19 | CcFastMdlReadWait DATA | |
| 20 | CcFastReadNotPossible DATA | |
| 21 | CcFastReadWait DATA | |
| 22 | CcFlushCache | |
| 23 | CcGetDirtyPages | |
| 24 | CcGetFileObjectFromBcb | |
| 25 | CcGetFileObjectFromSectionPtrs | |
| 26 | CcGetFileObjectFromSectionPtrsRef | |
| 27 | CcGetFlushedValidData | |
| 28 | CcGetLsnForFileObject | |
| 29 | CcInitializeCacheMap | |
| 30 | CcIsThereDirtyData | |
| 31 | CcIsThereDirtyDataEx | |
| 32 | CcMapData | |
| 33 | CcMdlRead | |
| 34 | CcMdlReadComplete | |
| 35 | CcMdlWriteAbort | |
| 36 | CcMdlWriteComplete | |
| 37 | CcPinMappedData | |
| 38 | CcPinRead | |
| 39 | CcPrepareMdlWrite | |
| 40 | CcPreparePinWrite | |
| 41 | CcPurgeCacheSection | |
| 42 | CcRemapBcb | |
| 43 | CcRepinBcb | |
| 44 | CcScheduleReadAhead | |
| 45 | CcSetAdditionalCacheAttributes | |
| 46 | CcSetBcbOwnerPointer | |
| 47 | CcSetDirtyPageThreshold | |
| 48 | CcSetDirtyPinnedData | |
| 49 | CcSetFileSizes | |
| 50 | CcSetFileSizesEx | |
| 51 | CcSetLogHandleForFile | |
| 52 | CcSetParallelFlushFile | |
| 53 | CcSetReadAheadGranularity | |
| 54 | CcTestControl | |
| 55 | CcUninitializeCacheMap | |
| 56 | CcUnpinData | |
| 57 | CcUnpinDataForThread | |
| 58 | CcUnpinRepinnedBcb | |
| 59 | CcWaitForCurrentLazyWriterActivity | |
| 60 | CcZeroData | |
| 61 | CmCallbackGetKeyObjectID | |
| 62 | CmGetBoundTransaction | |
| 63 | CmGetCallbackVersion | |
| 64 | CmKeyObjectType DATA | |
| 65 | CmRegisterCallback | |
| 66 | CmRegisterCallbackEx | |
| 67 | CmSetCallbackObjectContext | |
| 68 | CmUnRegisterCallback | |
| 69 | DbgBreakPoint | |
| 70 | DbgBreakPointWithStatus | |
| 71 | DbgCommandString | |
| 72 | DbgLoadImageSymbols | |
| 73 | DbgPrint | |
| 74 | DbgPrintEx | |
| 75 | DbgPrintReturnControlC | |
| 76 | DbgPrompt | |
| 77 | DbgQueryDebugFilterState | |
| 78 | DbgSetDebugFilterState | |
| 79 | DbgSetDebugPrintCallback | |
| 80 | DbgkLkmdRegisterCallback | |
| 81 | DbgkLkmdUnregisterCallback | |
| 82 | EmClientQueryRuleState | |
| 83 | EmClientRuleDeregisterNotification | |
| 84 | EmClientRuleEvaluate | |
| 85 | EmClientRuleRegisterNotification | |
| 86 | EmProviderDeregister | |
| 87 | EmProviderDeregisterEntry | |
| 88 | EmProviderRegister | |
| 89 | EmProviderRegisterEntry | |
| 90 | EmpProviderRegister | |
| 91 | EtwActivityIdControl | |
| 92 | EtwEnableTrace | |
| 93 | EtwEventEnabled | |
| 94 | EtwProviderEnabled | |
| 95 | EtwRegister | |
| 96 | EtwRegisterClassicProvider | |
| 97 | EtwSendTraceBuffer | |
| 98 | EtwUnregister | |
| 99 | EtwWrite | |
| 100 | EtwWriteEndScenario | |
| 101 | EtwWriteEx | |
| 102 | EtwWriteStartScenario | |
| 103 | EtwWriteString | |
| 104 | EtwWriteTransfer | |
| 105 | ExAcquireCacheAwarePushLockExclusive | |
| 106 | ExAcquireFastMutex | |
| 107 | ExAcquireFastMutexUnsafe | |
| 108 | ExAcquireResourceExclusiveLite | |
| 109 | ExAcquireResourceSharedLite | |
| 110 | ExAcquireRundownProtection | |
| 111 | ExAcquireRundownProtectionCacheAware | |
| 112 | ExAcquireRundownProtectionCacheAwareEx | |
| 113 | ExAcquireRundownProtectionEx | |
| 114 | ExAcquireSharedStarveExclusive | |
| 115 | ExAcquireSharedWaitForExclusive | |
| 116 | ExAcquireSpinLockExclusive | |
| 117 | ExAcquireSpinLockExclusiveAtDpcLevel | |
| 118 | ExAcquireSpinLockShared | |
| 119 | ExAcquireSpinLockSharedAtDpcLevel | |
| 120 | ExAllocateCacheAwarePushLock | |
| 121 | ExAllocateCacheAwareRundownProtection | |
| 122 | ExAllocateFromPagedLookasideList | |
| 123 | ExAllocatePool | |
| 124 | ExAllocatePoolWithQuota | |
| 125 | ExAllocatePoolWithQuotaTag | |
| 126 | ExAllocatePoolWithTag | |
| 127 | ExAllocatePoolWithTagPriority | |
| 128 | ExConvertExclusiveToSharedLite | |
| 129 | ExCreateCallback | |
| 130 | ExDeleteLookasideListEx | |
| 131 | ExDeleteNPagedLookasideList | |
| 132 | ExDeletePagedLookasideList | |
| 133 | ExDeleteResourceLite | |
| 134 | ExDesktopObjectType DATA | |
| 135 | ExDisableResourceBoostLite | |
| 136 | ExEnterCriticalRegionAndAcquireFastMutexUnsafe | |
| 137 | ExEnterCriticalRegionAndAcquireResourceExclusive | |
| 138 | ExEnterCriticalRegionAndAcquireResourceShared | |
| 139 | ExEnterCriticalRegionAndAcquireSharedWaitForExclusive | |
| 140 | ExEnterPriorityRegionAndAcquireResourceExclusive | |
| 141 | ExEnterPriorityRegionAndAcquireResourceShared | |
| 142 | ExEnumHandleTable | |
| 143 | ExEventObjectType DATA | |
| 144 | ExExtendZone | |
| 145 | ExFetchLicenseData | |
| 146 | ExFlushLookasideListEx | |
| 147 | ExFreeCacheAwarePushLock | |
| 148 | ExFreeCacheAwareRundownProtection | |
| 149 | ExFreePool | |
| 150 | ExFreePoolWithTag | |
| 151 | ExFreeToPagedLookasideList | |
| 152 | ExGetCurrentProcessorCounts | |
| 153 | ExGetCurrentProcessorCpuUsage | |
| 154 | ExGetExclusiveWaiterCount | |
| 155 | ExGetLicenseTamperState | |
| 156 | ExGetPreviousMode | |
| 157 | ExGetSharedWaiterCount | |
| 158 | ExInitializeLookasideListEx | |
| 159 | ExInitializeNPagedLookasideList | |
| 160 | ExInitializePagedLookasideList | |
| 161 | ExInitializePushLock | |
| 162 | ExInitializeResourceLite | |
| 163 | ExInitializeRundownProtection | |
| 164 | ExInitializeRundownProtectionCacheAware | |
| 165 | ExInitializeZone | |
| 166 | ExInterlockedAddLargeInteger | |
| 167 | ExInterlockedAddUlong | |
| 168 | ExInterlockedExtendZone | |
| 169 | ExInterlockedInsertHeadList | |
| 170 | ExInterlockedInsertTailList | |
| 171 | ExInterlockedPopEntryList | |
| 172 | ExInterlockedPushEntryList | |
| 173 | ExInterlockedRemoveHeadList | |
| 174 | ExIsProcessorFeaturePresent | |
| 175 | ExIsResourceAcquiredExclusiveLite | |
| 176 | ExIsResourceAcquiredSharedLite | |
| 177 | ExLocalTimeToSystemTime | |
| 178 | ExNotifyCallback | |
| 179 | ExQueryAttributeInformation | |
| 180 | ExQueryDepthSList | |
| 181 | ExQueryPoolBlockSize | |
| 182 | ExQueueWorkItem | |
| 183 | ExRaiseAccessViolation | |
| 184 | ExRaiseDatatypeMisalignment | |
| 185 | ExRaiseException | |
| 186 | ExRaiseHardError | |
| 187 | ExRaiseStatus | |
| 188 | ExReInitializeRundownProtection | |
| 189 | ExReInitializeRundownProtectionCacheAware | |
| 190 | ExRegisterAttributeInformationCallback | |
| 191 | ExRegisterCallback | |
| 192 | ExRegisterExtension | |
| 193 | ExReinitializeResourceLite | |
| 194 | ExReleaseCacheAwarePushLockExclusive | |
| 195 | ExReleaseFastMutex | |
| 196 | ExReleaseFastMutexUnsafe | |
| 197 | ExReleaseFastMutexUnsafeAndLeaveCriticalRegion | |
| 198 | ExReleaseResourceAndLeaveCriticalRegion | |
| 199 | ExReleaseResourceAndLeavePriorityRegion | |
| 200 | ExReleaseResourceForThreadLite | |
| 201 | ExReleaseResourceLite | |
| 202 | ExReleaseRundownProtection | |
| 203 | ExReleaseRundownProtectionCacheAware | |
| 204 | ExReleaseRundownProtectionCacheAwareEx | |
| 205 | ExReleaseRundownProtectionEx | |
| 206 | ExReleaseSpinLockExclusive | |
| 207 | ExReleaseSpinLockExclusiveFromDpcLevel | |
| 208 | ExReleaseSpinLockShared | |
| 209 | ExReleaseSpinLockSharedFromDpcLevel | |
| 210 | ExRundownCompleted | |
| 211 | ExRundownCompletedCacheAware | |
| 212 | ExSemaphoreObjectType DATA | |
| 213 | ExSetLicenseTamperState | |
| 214 | ExSetResourceOwnerPointer | |
| 215 | ExSetResourceOwnerPointerEx | |
| 216 | ExSetTimerResolution | |
| 217 | ExSizeOfRundownProtectionCacheAware | |
| 218 | ExSystemExceptionFilter | |
| 219 | ExSystemTimeToLocalTime | |
| 220 | ExTryConvertSharedSpinLockExclusive | |
| 221 | ExTryToAcquireFastMutex | |
| 222 | ExUnregisterAttributeInformationCallback | |
| 223 | ExUnregisterCallback | |
| 224 | ExUnregisterExtension | |
| 225 | ExUpdateLicenseData | |
| 226 | ExUuidCreate | |
| 227 | ExVerifySuite | |
| 228 | ExWaitForRundownProtectionRelease | |
| 229 | ExWaitForRundownProtectionReleaseCacheAware | |
| 230 | ExWindowStationObjectType DATA | |
| 231 | ExfAcquirePushLockExclusive | |
| 232 | ExfAcquirePushLockShared | |
| 233 | ExfReleasePushLock | |
| 234 | ExfReleasePushLockExclusive | |
| 235 | ExfReleasePushLockShared | |
| 236 | ExfTryAcquirePushLockShared | |
| 237 | ExfTryToWakePushLock | |
| 238 | ExfUnblockPushLock | |
| 239 | ExpInterlockedFlushSList | |
| 240 | ExpInterlockedPopEntrySList | |
| 241 | ExpInterlockedPushEntrySList | |
| 242 | FirstEntrySList | |
| 243 | FsRtlAcknowledgeEcp | |
| 244 | FsRtlAcquireFileExclusive | |
| 245 | FsRtlAddBaseMcbEntry | |
| 246 | FsRtlAddBaseMcbEntryEx | |
| 247 | FsRtlAddLargeMcbEntry | |
| 248 | FsRtlAddMcbEntry | |
| 249 | FsRtlAddToTunnelCache | |
| 250 | FsRtlAllocateExtraCreateParameter | |
| 251 | FsRtlAllocateExtraCreateParameterFromLookasideList | |
| 252 | FsRtlAllocateExtraCreateParameterList | |
| 253 | FsRtlAllocateFileLock | |
| 254 | FsRtlAllocatePool | |
| 255 | FsRtlAllocatePoolWithQuota | |
| 256 | FsRtlAllocatePoolWithQuotaTag | |
| 257 | FsRtlAllocatePoolWithTag | |
| 258 | FsRtlAllocateResource | |
| 259 | FsRtlAreNamesEqual | |
| 260 | FsRtlAreThereCurrentOrInProgressFileLocks | |
| 261 | FsRtlAreVolumeStartupApplicationsComplete | |
| 262 | FsRtlBalanceReads | |
| 263 | FsRtlCancellableWaitForMultipleObjects | |
| 264 | FsRtlCancellableWaitForSingleObject | |
| 265 | FsRtlChangeBackingFileObject | |
| 266 | FsRtlCheckLockForReadAccess | |
| 267 | FsRtlCheckLockForWriteAccess | |
| 268 | FsRtlCheckOplock | |
| 269 | FsRtlCheckOplockEx | |
| 270 | FsRtlCopyRead | |
| 271 | FsRtlCopyWrite | |
| 272 | FsRtlCreateSectionForDataScan | |
| 273 | FsRtlCurrentBatchOplock | |
| 274 | FsRtlCurrentOplock | |
| 275 | FsRtlCurrentOplockH | |
| 276 | FsRtlDeleteExtraCreateParameterLookasideList | |
| 277 | FsRtlDeleteKeyFromTunnelCache | |
| 278 | FsRtlDeleteTunnelCache | |
| 279 | FsRtlDeregisterUncProvider | |
| 280 | FsRtlDissectDbcs | |
| 281 | FsRtlDissectName | |
| 282 | FsRtlDoesDbcsContainWildCards | |
| 283 | FsRtlDoesNameContainWildCards | |
| 284 | FsRtlFastCheckLockForRead | |
| 285 | FsRtlFastCheckLockForWrite | |
| 286 | FsRtlFastUnlockAll | |
| 287 | FsRtlFastUnlockAllByKey | |
| 288 | FsRtlFastUnlockSingle | |
| 289 | FsRtlFindExtraCreateParameter | |
| 290 | FsRtlFindInTunnelCache | |
| 291 | FsRtlFreeExtraCreateParameter | |
| 292 | FsRtlFreeExtraCreateParameterList | |
| 293 | FsRtlFreeFileLock | |
| 294 | FsRtlGetEcpListFromIrp | |
| 295 | FsRtlGetFileSize | |
| 296 | FsRtlGetNextBaseMcbEntry | |
| 297 | FsRtlGetNextExtraCreateParameter | |
| 298 | FsRtlGetNextFileLock | |
| 299 | FsRtlGetNextLargeMcbEntry | |
| 300 | FsRtlGetNextMcbEntry | |
| 301 | FsRtlGetVirtualDiskNestingLevel | |
| 302 | FsRtlIncrementCcFastMdlReadWait | |
| 303 | FsRtlIncrementCcFastReadNoWait | |
| 304 | FsRtlIncrementCcFastReadNotPossible | |
| 305 | FsRtlIncrementCcFastReadResourceMiss | |
| 306 | FsRtlIncrementCcFastReadWait | |
| 307 | FsRtlInitExtraCreateParameterLookasideList | |
| 308 | FsRtlInitializeBaseMcb | |
| 309 | FsRtlInitializeBaseMcbEx | |
| 310 | FsRtlInitializeExtraCreateParameter | |
| 311 | FsRtlInitializeExtraCreateParameterList | |
| 312 | FsRtlInitializeFileLock | |
| 313 | FsRtlInitializeLargeMcb | |
| 314 | FsRtlInitializeMcb | |
| 315 | FsRtlInitializeOplock | |
| 316 | FsRtlInitializeTunnelCache | |
| 317 | FsRtlInsertExtraCreateParameter | |
| 318 | FsRtlInsertPerFileContext | |
| 319 | FsRtlInsertPerFileObjectContext | |
| 320 | FsRtlInsertPerStreamContext | |
| 321 | FsRtlIsDbcsInExpression | |
| 322 | FsRtlIsEcpAcknowledged | |
| 323 | FsRtlIsEcpFromUserMode | |
| 324 | FsRtlIsFatDbcsLegal | |
| 325 | FsRtlIsHpfsDbcsLegal | |
| 326 | FsRtlIsNameInExpression | |
| 327 | FsRtlIsNtstatusExpected | |
| 328 | FsRtlIsPagingFile | |
| 329 | FsRtlIsTotalDeviceFailure | |
| 330 | FsRtlLegalAnsiCharacterArray DATA | |
| 331 | FsRtlLogCcFlushError | |
| 332 | FsRtlLookupBaseMcbEntry | |
| 333 | FsRtlLookupLargeMcbEntry | |
| 334 | FsRtlLookupLastBaseMcbEntry | |
| 335 | FsRtlLookupLastBaseMcbEntryAndIndex | |
| 336 | FsRtlLookupLastLargeMcbEntry | |
| 337 | FsRtlLookupLastLargeMcbEntryAndIndex | |
| 338 | FsRtlLookupLastMcbEntry | |
| 339 | FsRtlLookupMcbEntry | |
| 340 | FsRtlLookupPerFileContext | |
| 341 | FsRtlLookupPerFileObjectContext | |
| 342 | FsRtlLookupPerStreamContextInternal | |
| 343 | FsRtlMdlRead | |
| 344 | FsRtlMdlReadComplete | |
| 345 | FsRtlMdlReadCompleteDev | |
| 346 | FsRtlMdlReadDev | |
| 347 | FsRtlMdlWriteComplete | |
| 348 | FsRtlMdlWriteCompleteDev | |
| 349 | FsRtlMupGetProviderIdFromName | |
| 350 | FsRtlMupGetProviderInfoFromFileObject | |
| 351 | FsRtlNormalizeNtstatus | |
| 352 | FsRtlNotifyChangeDirectory | |
| 353 | FsRtlNotifyCleanup | |
| 354 | FsRtlNotifyCleanupAll | |
| 355 | FsRtlNotifyFilterChangeDirectory | |
| 356 | FsRtlNotifyFilterReportChange | |
| 357 | FsRtlNotifyFullChangeDirectory | |
| 358 | FsRtlNotifyFullReportChange | |
| 359 | FsRtlNotifyInitializeSync | |
| 360 | FsRtlNotifyReportChange | |
| 361 | FsRtlNotifyUninitializeSync | |
| 362 | FsRtlNotifyVolumeEvent | |
| 363 | FsRtlNotifyVolumeEventEx | |
| 364 | FsRtlNumberOfRunsInBaseMcb | |
| 365 | FsRtlNumberOfRunsInLargeMcb | |
| 366 | FsRtlNumberOfRunsInMcb | |
| 367 | FsRtlOplockBreakH | |
| 368 | FsRtlOplockBreakToNone | |
| 369 | FsRtlOplockBreakToNoneEx | |
| 370 | FsRtlOplockFsctrl | |
| 371 | FsRtlOplockFsctrlEx | |
| 372 | FsRtlOplockIsFastIoPossible | |
| 373 | FsRtlOplockIsSharedRequest | |
| 374 | FsRtlOplockKeysEqual | |
| 375 | FsRtlPostPagingFileStackOverflow | |
| 376 | FsRtlPostStackOverflow | |
| 377 | FsRtlPrepareMdlWrite | |
| 378 | FsRtlPrepareMdlWriteDev | |
| 379 | FsRtlPrivateLock | |
| 380 | FsRtlProcessFileLock | |
| 381 | FsRtlQueryMaximumVirtualDiskNestingLevel | |
| 382 | FsRtlRegisterFileSystemFilterCallbacks | |
| 383 | FsRtlRegisterFltMgrCalls | |
| 384 | FsRtlRegisterMupCalls | |
| 385 | FsRtlRegisterUncProvider | |
| 386 | FsRtlRegisterUncProviderEx | |
| 387 | FsRtlReleaseFile | |
| 388 | FsRtlRemoveBaseMcbEntry | |
| 389 | FsRtlRemoveDotsFromPath | |
| 390 | FsRtlRemoveExtraCreateParameter | |
| 391 | FsRtlRemoveLargeMcbEntry | |
| 392 | FsRtlRemoveMcbEntry | |
| 393 | FsRtlRemovePerFileContext | |
| 394 | FsRtlRemovePerFileObjectContext | |
| 395 | FsRtlRemovePerStreamContext | |
| 396 | FsRtlResetBaseMcb | |
| 397 | FsRtlResetLargeMcb | |
| 398 | FsRtlSetEcpListIntoIrp | |
| 399 | FsRtlSplitBaseMcb | |
| 400 | FsRtlSplitLargeMcb | |
| 401 | FsRtlSyncVolumes | |
| 402 | FsRtlTeardownPerFileContexts | |
| 403 | FsRtlTeardownPerStreamContexts | |
| 404 | FsRtlTruncateBaseMcb | |
| 405 | FsRtlTruncateLargeMcb | |
| 406 | FsRtlTruncateMcb | |
| 407 | FsRtlUninitializeBaseMcb | |
| 408 | FsRtlUninitializeFileLock | |
| 409 | FsRtlUninitializeLargeMcb | |
| 410 | FsRtlUninitializeMcb | |
| 411 | FsRtlUninitializeOplock | |
| 412 | FsRtlValidateReparsePointBuffer | |
| 413 | HalDispatchTable DATA | |
| 414 | HalExamineMBR | |
| 415 | HalPrivateDispatchTable DATA | |
| 416 | HeadlessDispatch | |
| 417 | HvlQueryConnection | |
| 418 | InbvAcquireDisplayOwnership | |
| 419 | InbvCheckDisplayOwnership | |
| 420 | InbvDisplayString | |
| 421 | InbvEnableBootDriver | |
| 422 | InbvEnableDisplayString | |
| 423 | InbvInstallDisplayStringFilter | |
| 424 | InbvIsBootDriverInstalled | |
| 425 | InbvNotifyDisplayOwnershipLost | |
| 426 | InbvResetDisplay | |
| 427 | InbvSetScrollRegion | |
| 428 | InbvSetTextColor | |
| 429 | InbvSolidColorFill | |
| 430 | InitSafeBootMode DATA | |
| 431 | InitializeSListHead | |
| 432 | IoAcquireCancelSpinLock | |
| 433 | IoAcquireRemoveLockEx | |
| 434 | IoAcquireVpbSpinLock | |
| 435 | IoAdapterObjectType DATA | |
| 436 | IoAdjustStackSizeForRedirection | |
| 437 | IoAllocateAdapterChannel | |
| 438 | IoAllocateController | |
| 439 | IoAllocateDriverObjectExtension | |
| 440 | IoAllocateErrorLogEntry | |
| 441 | IoAllocateIrp | |
| 442 | IoAllocateMdl | |
| 443 | IoAllocateMiniCompletionPacket | |
| 444 | IoAllocateSfioStreamIdentifier | |
| 445 | IoAllocateWorkItem | |
| 446 | IoAssignDriveLetters | |
| 447 | IoApplyPriorityInfoThread | |
| 448 | IoAssignResources | |
| 449 | IoAttachDevice | |
| 450 | IoAttachDeviceByPointer | |
| 451 | IoAttachDeviceToDeviceStack | |
| 452 | IoAttachDeviceToDeviceStackSafe | |
| 453 | IoBuildAsynchronousFsdRequest | |
| 454 | IoBuildDeviceIoControlRequest | |
| 455 | IoBuildPartialMdl | |
| 456 | IoBuildSynchronousFsdRequest | |
| 457 | IoCallDriver | |
| 458 | IoCancelFileOpen | |
| 459 | IoCancelIrp | |
| 460 | IoCheckDesiredAccess | |
| 461 | IoCheckEaBufferValidity | |
| 462 | IoCheckFunctionAccess | |
| 463 | IoCheckQuerySetFileInformation | |
| 464 | IoCheckQuerySetVolumeInformation | |
| 465 | IoCheckQuotaBufferValidity | |
| 466 | IoCheckShareAccess | |
| 467 | IoCheckShareAccessEx | |
| 468 | IoClearDependency | |
| 469 | IoClearIrpExtraCreateParameter | |
| 470 | IoCompleteRequest | |
| 471 | IoConnectInterrupt | |
| 472 | IoConnectInterruptEx | |
| 473 | IoCreateArcName | |
| 474 | IoCreateController | |
| 475 | IoCreateDevice | |
| 476 | IoCreateDisk | |
| 477 | IoCreateDriver | |
| 478 | IoCreateFile | |
| 479 | IoCreateFileEx | |
| 480 | IoCreateFileSpecifyDeviceObjectHint | |
| 481 | IoCreateNotificationEvent | |
| 482 | IoCreateStreamFileObject | |
| 483 | IoCreateStreamFileObjectEx | |
| 484 | IoCreateStreamFileObjectLite | |
| 485 | IoCreateSymbolicLink | |
| 486 | IoCreateSynchronizationEvent | |
| 487 | IoCreateUnprotectedSymbolicLink | |
| 488 | IoCsqInitialize | |
| 489 | IoCsqInitializeEx | |
| 490 | IoCsqInsertIrp | |
| 491 | IoCsqInsertIrpEx | |
| 492 | IoCsqRemoveIrp | |
| 493 | IoCsqRemoveNextIrp | |
| 494 | IoDeleteAllDependencyRelations | |
| 495 | IoDeleteController | |
| 496 | IoDeleteDevice | |
| 497 | IoDeleteDriver | |
| 498 | IoDeleteSymbolicLink | |
| 499 | IoDetachDevice | |
| 500 | IoDeviceHandlerObjectSize DATA | |
| 501 | IoDeviceHandlerObjectType DATA | |
| 502 | IoDeviceObjectType DATA | |
| 503 | IoDisconnectInterrupt | |
| 504 | IoDisconnectInterruptEx | |
| 505 | IoDriverObjectType DATA | |
| 506 | IoDuplicateDependency | |
| 507 | IoEnqueueIrp | |
| 508 | IoEnumerateDeviceObjectList | |
| 509 | IoEnumerateRegisteredFiltersList | |
| 510 | IoFastQueryNetworkAttributes | |
| 511 | IoFileObjectType DATA | |
| 512 | IoForwardAndCatchIrp | |
| 513 | IoForwardIrpSynchronously | |
| 514 | IoFreeController | |
| 515 | IoFreeErrorLogEntry | |
| 516 | IoFreeIrp | |
| 517 | IoFreeMdl | |
| 518 | IoFreeMiniCompletionPacket | |
| 519 | IoFreeSfioStreamIdentifier | |
| 520 | IoFreeWorkItem | |
| 521 | IoGetAffinityInterrupt | |
| 522 | IoGetAttachedDevice | |
| 523 | IoGetAttachedDeviceReference | |
| 524 | IoGetBaseFileSystemDeviceObject | |
| 525 | IoGetBootDiskInformation | |
| 526 | IoGetBootDiskInformationLite | |
| 527 | IoGetConfigurationInformation | |
| 528 | IoGetContainerInformation | |
| 529 | IoGetCurrentProcess | |
| 530 | IoGetDeviceAttachmentBaseRef | |
| 531 | IoGetDeviceInterfaceAlias | |
| 532 | IoGetDeviceInterfaces | |
| 533 | IoGetDeviceNumaNode | |
| 534 | IoGetDeviceObjectPointer | |
| 535 | IoGetDeviceProperty | |
| 536 | IoGetDevicePropertyData | |
| 537 | IoGetDeviceToVerify | |
| 538 | IoGetDiskDeviceObject | |
| 539 | IoGetDmaAdapter | |
| 540 | IoGetDriverObjectExtension | |
| 541 | IoGetFileObjectGenericMapping | |
| 542 | IoGetInitialStack | |
| 543 | IoGetIoPriorityHint | |
| 544 | IoGetIrpExtraCreateParameter | |
| 545 | IoGetLowerDeviceObject | |
| 546 | IoGetOplockKeyContext | |
| 547 | IoGetPagingIoPriority | |
| 548 | IoGetRelatedDeviceObject | |
| 549 | IoGetRequestorProcess | |
| 550 | IoGetRequestorProcessId | |
| 551 | IoGetRequestorSessionId | |
| 552 | IoGetSfioStreamIdentifier | |
| 553 | IoGetStackLimits | |
| 554 | IoGetSymlinkSupportInformation | |
| 555 | IoGetTopLevelIrp | |
| 556 | IoGetTransactionParameterBlock | |
| 557 | IoInitializeIrp | |
| 558 | IoInitializeRemoveLockEx | |
| 559 | IoInitializeTimer | |
| 560 | IoInitializeWorkItem | |
| 561 | IoInvalidateDeviceRelations | |
| 562 | IoInvalidateDeviceState | |
| 563 | IoIs32bitProcess | |
| 564 | IoIsFileObjectIgnoringSharing | |
| 565 | IoIsFileOriginRemote | |
| 566 | IoIsOperationSynchronous | |
| 567 | IoIsSystemThread | |
| 568 | IoIsValidNameGraftingBuffer | |
| 569 | IoIsWdmVersionAvailable | |
| 570 | IoMakeAssociatedIrp | |
| 571 | IoOpenDeviceInterfaceRegistryKey | |
| 572 | IoOpenDeviceRegistryKey | |
| 573 | IoPageRead | |
| 574 | IoPnPDeliverServicePowerNotification | |
| 575 | IoQueryDeviceDescription | |
| 576 | IoQueryFileDosDeviceName | |
| 577 | IoQueryFileInformation | |
| 578 | IoQueryVolumeInformation | |
| 579 | IoQueueThreadIrp | |
| 580 | IoQueueWorkItem | |
| 581 | IoQueueWorkItemEx | |
| 582 | IoRaiseHardError | |
| 583 | IoRaiseInformationalHardError | |
| 584 | IoReadDiskSignature | |
| 585 | IoReadOperationCount DATA | |
| 586 | IoReadPartitionTable | |
| 587 | IoReadPartitionTableEx | |
| 588 | IoReadTransferCount DATA | |
| 589 | IoRegisterBootDriverReinitialization | |
| 590 | IoRegisterContainerNotification | |
| 591 | IoRegisterDeviceInterface | |
| 592 | IoRegisterDriverReinitialization | |
| 593 | IoRegisterFileSystem | |
| 594 | IoRegisterFsRegistrationChange | |
| 595 | IoRegisterFsRegistrationChangeMountAware | |
| 596 | IoRegisterLastChanceShutdownNotification | |
| 597 | IoRegisterPlugPlayNotification | |
| 598 | IoRegisterPriorityCallback | |
| 599 | IoRegisterShutdownNotification | |
| 600 | IoReleaseCancelSpinLock | |
| 601 | IoReleaseRemoveLockAndWaitEx | |
| 602 | IoReleaseRemoveLockEx | |
| 603 | IoReleaseVpbSpinLock | |
| 604 | IoRemoveShareAccess | |
| 605 | IoReplaceFileObjectName | |
| 606 | IoReplacePartitionUnit | |
| 607 | IoReportDetectedDevice | |
| 608 | IoReportHalResourceUsage | |
| 609 | IoReportResourceForDetection | |
| 610 | IoReportResourceUsage | |
| 611 | IoReportRootDevice | |
| 612 | IoReportTargetDeviceChange | |
| 613 | IoReportTargetDeviceChangeAsynchronous | |
| 614 | IoRequestDeviceEject | |
| 615 | IoRequestDeviceEjectEx | |
| 616 | IoRetrievePriorityInfo | |
| 617 | IoReuseIrp | |
| 618 | IoSetCompletionRoutineEx | |
| 619 | IoSetDependency | |
| 620 | IoSetDeviceInterfaceState | |
| 621 | IoSetDevicePropertyData | |
| 622 | IoSetDeviceToVerify | |
| 623 | IoSetFileObjectIgnoreSharing | |
| 624 | IoSetFileOrigin | |
| 625 | IoSetHardErrorOrVerifyDevice | |
| 626 | IoSetInformation | |
| 627 | IoSetIoCompletion | |
| 628 | IoSetIoCompletionEx | |
| 629 | IoSetIoPriorityHint | |
| 630 | IoSetIoPriorityHintIntoFileObject | |
| 631 | IoSetIoPriorityHintIntoThread | |
| 632 | IoSetIrpExtraCreateParameter | |
| 633 | IoSetOplockKeyContext | |
| 634 | IoSetPartitionInformation | |
| 635 | IoSetPartitionInformationEx | |
| 636 | IoSetShareAccess | |
| 637 | IoSetShareAccessEx | |
| 638 | IoSetStartIoAttributes | |
| 639 | IoSetSystemPartition | |
| 640 | IoSetThreadHardErrorMode | |
| 641 | IoSetTopLevelIrp | |
| 642 | IoSizeofWorkItem | |
| 643 | IoStartNextPacket | |
| 644 | IoStartNextPacketByKey | |
| 645 | IoStartPacket | |
| 646 | IoStartTimer | |
| 647 | IoStatisticsLock DATA | |
| 648 | IoStopTimer | |
| 649 | IoSynchronousInvalidateDeviceRelations | |
| 650 | IoSynchronousPageWrite | |
| 651 | IoThreadToProcess | |
| 652 | IoTranslateBusAddress | |
| 653 | IoUninitializeWorkItem | |
| 654 | IoUnregisterContainerNotification | |
| 655 | IoUnregisterFileSystem | |
| 656 | IoUnregisterFsRegistrationChange | |
| 657 | IoUnregisterPlugPlayNotification | |
| 658 | IoUnregisterPlugPlayNotificationEx | |
| 659 | IoUnregisterPriorityCallback | |
| 660 | IoUnregisterShutdownNotification | |
| 661 | IoUpdateShareAccess | |
| 662 | IoValidateDeviceIoControlAccess | |
| 663 | IoVerifyPartitionTable | |
| 664 | IoVerifyVolume | |
| 665 | IoVolumeDeviceToDosName | |
| 666 | IoWMIAllocateInstanceIds | |
| 667 | IoWMIDeviceObjectToInstanceName | |
| 668 | IoWMIDeviceObjectToProviderId | |
| 669 | IoWMIExecuteMethod | |
| 670 | IoWMIHandleToInstanceName | |
| 671 | IoWMIOpenBlock | |
| 672 | IoWMIQueryAllData | |
| 673 | IoWMIQueryAllDataMultiple | |
| 674 | IoWMIQuerySingleInstance | |
| 675 | IoWMIQuerySingleInstanceMultiple | |
| 676 | IoWMIRegistrationControl | |
| 677 | IoWMISetNotificationCallback | |
| 678 | IoWMISetSingleInstance | |
| 679 | IoWMISetSingleItem | |
| 680 | IoWMISuggestInstanceName | |
| 681 | IoWMIWriteEvent | |
| 682 | IoWithinStackLimits | |
| 683 | IoWriteErrorLogEntry | |
| 684 | IoWriteOperationCount DATA | |
| 685 | IoWritePartitionTable | |
| 686 | IoWritePartitionTableEx | |
| 687 | IoWriteTransferCount DATA | |
| 688 | IofCallDriver | |
| 689 | IofCompleteRequest | |
| 690 | KdChangeOption | |
| 691 | KdDebuggerEnabled DATA | |
| 692 | KdDebuggerNotPresent DATA | |
| 693 | KdDisableDebugger | |
| 694 | KdEnableDebugger | |
| 695 | KdEnteredDebugger DATA | |
| 696 | KdPollBreakIn | |
| 697 | KdPowerTransition | |
| 698 | KdRefreshDebuggerNotPresent | |
| 699 | KdSystemDebugControl | |
| 700 | KeAcquireGuardedMutex | |
| 701 | KeAcquireGuardedMutexUnsafe | |
| 702 | KeAcquireInStackQueuedSpinLock | |
| 703 | KeAcquireInStackQueuedSpinLockAtDpcLevel | |
| 704 | KeAcquireInStackQueuedSpinLockForDpc | |
| 705 | KeAcquireInStackQueuedSpinLockRaiseToSynch | |
| 706 | KeAcquireInterruptSpinLock | |
| 707 | KeAcquireQueuedSpinLock | |
| 708 | KeAcquireQueuedSpinLockRaiseToSynch | |
| 709 | KeAcquireSpinLockAtDpcLevel | |
| 710 | KeAcquireSpinLockForDpc | |
| 711 | KeAcquireSpinLockRaiseToDpc | |
| 712 | KeAcquireSpinLockRaiseToSynch | |
| 713 | KeAddGroupAffinityEx | |
| 714 | KeAddProcessorAffinityEx | |
| 715 | KeAddProcessorGroupAffinity | |
| 716 | KeAddSystemServiceTable | |
| 717 | KeAlertThread | |
| 718 | KeAllocateCalloutStack | |
| 719 | KeAllocateCalloutStackEx | |
| 720 | KeAndAffinityEx | |
| 721 | KeAndGroupAffinityEx | |
| 722 | KeAreAllApcsDisabled | |
| 723 | KeAreApcsDisabled | |
| 724 | KeAttachProcess | |
| 725 | KeBugCheck | |
| 726 | KeBugCheckEx | |
| 727 | KeCancelTimer | |
| 728 | KeCapturePersistentThreadState | |
| 729 | KeCheckProcessorAffinityEx | |
| 730 | KeCheckProcessorGroupAffinity | |
| 731 | KeClearEvent | |
| 732 | KeConnectInterrupt | |
| 733 | KeComplementAffinityEx | |
| 734 | KeCopyAffinityEx | |
| 735 | KeCountSetBitsAffinityEx | |
| 736 | KeCountSetBitsGroupAffinity | |
| 737 | KeDelayExecutionThread | |
| 738 | KeDeregisterBugCheckCallback | |
| 739 | KeDeregisterBugCheckReasonCallback | |
| 740 | KeDeregisterNmiCallback | |
| 741 | KeDeregisterProcessorChangeCallback | |
| 742 | KeDetachProcess | |
| 743 | KeDisconnectInterrupt | |
| 744 | KeEnterCriticalRegion | |
| 745 | KeEnterGuardedRegion | |
| 746 | KeEnterKernelDebugger | |
| 747 | KeEnumerateNextProcessor | |
| 748 | KeExpandKernelStackAndCallout | |
| 749 | KeExpandKernelStackAndCalloutEx | |
| 750 | KeFindConfigurationEntry | |
| 751 | KeFindConfigurationNextEntry | |
| 752 | KeFindFirstSetLeftAffinityEx | |
| 753 | KeFindFirstSetLeftGroupAffinity | |
| 754 | KeFindFirstSetRightGroupAffinity | |
| 755 | KeFirstGroupAffinityEx | |
| 756 | KeFlushEntireTb | |
| 757 | KeFlushQueuedDpcs | |
| 758 | KeFreeCalloutStack | |
| 759 | KeGenericCallDpc | |
| 760 | KeGetCurrentIrql | |
| 761 | KeGetCurrentNodeNumber | |
| 762 | KeGetCurrentProcessorNumberEx | |
| 763 | KeGetCurrentThread | |
| 764 | KeGetProcessorIndexFromNumber | |
| 765 | KeGetProcessorNumberFromIndex | |
| 766 | KeGetRecommendedSharedDataAlignment | |
| 767 | KeGetXSaveFeatureFlags | |
| 768 | KeInitializeAffinityEx | |
| 769 | KeInitializeApc | |
| 770 | KeInitializeCrashDumpHeader | |
| 771 | KeInitializeDeviceQueue | |
| 772 | KeInitializeDpc | |
| 773 | KeInitializeEnumerationContext | |
| 774 | KeInitializeEnumerationContextFromGroup | |
| 775 | KeInitializeEvent | |
| 776 | KeInitializeGuardedMutex | |
| 777 | KeInitializeInterrupt | |
| 778 | KeInitializeMutant | |
| 779 | KeInitializeMutex | |
| 780 | KeInitializeQueue | |
| 781 | KeInitializeSemaphore | |
| 782 | KeInitializeThreadedDpc | |
| 783 | KeInitializeTimer | |
| 784 | KeInitializeTimerEx | |
| 785 | KeInsertByKeyDeviceQueue | |
| 786 | KeInsertDeviceQueue | |
| 787 | KeInsertHeadQueue | |
| 788 | KeInsertQueue | |
| 789 | KeInsertQueueApc | |
| 790 | KeInsertQueueDpc | |
| 791 | KeInterlockedClearProcessorAffinityEx | |
| 792 | KeInterlockedSetProcessorAffinityEx | |
| 793 | KeInvalidateAllCaches | |
| 794 | KeInvalidateRangeAllCaches | |
| 795 | KeIpiGenericCall | |
| 796 | KeIsAttachedProcess | |
| 797 | KeIsEmptyAffinityEx | |
| 798 | KeIsEqualAffinityEx | |
| 799 | KeIsExecutingDpc | |
| 800 | KeIsSingleGroupAffinityEx | |
| 801 | KeIsSubsetAffinityEx | |
| 802 | KeIsWaitListEmpty | |
| 803 | KeLastBranchMSR DATA | |
| 804 | KeLeaveCriticalRegion | |
| 805 | KeLeaveGuardedRegion | |
| 806 | KeLoaderBlock DATA | |
| 807 | KeLowerIrql | |
| 808 | KeNumberProcessors DATA | |
| 809 | KeOrAffinityEx | |
| 810 | KeProcessorGroupAffinity | |
| 811 | KeProfileInterruptWithSource | |
| 812 | KePulseEvent | |
| 813 | KeQueryActiveGroupCount | |
| 814 | KeQueryActiveProcessorAffinity | |
| 815 | KeQueryActiveProcessorCount | |
| 816 | KeQueryActiveProcessorCountEx | |
| 817 | KeQueryActiveProcessors | |
| 818 | KeQueryMultiThreadProcessorSet | |
| 819 | KeQueryDpcWatchdogInformation | |
| 820 | KeQueryGroupAffinity | |
| 821 | KeQueryGroupAffinityEx | |
| 822 | KeQueryHardwareCounterConfiguration | |
| 823 | KeQueryHighestNodeNumber | |
| 824 | KeQueryLogicalProcessorRelationship | |
| 825 | KeQueryMaximumGroupCount | |
| 826 | KeQueryMaximumProcessorCount | |
| 827 | KeQueryMaximumProcessorCountEx | |
| 828 | KeQueryNodeActiveAffinity | |
| 829 | KeQueryNodeMaximumProcessorCount | |
| 830 | KeQueryPrcbAddress | |
| 831 | KeQueryPriorityThread | |
| 832 | KeQueryRuntimeThread | |
| 833 | KeQueryTimeIncrement | |
| 834 | KeQueryUnbiasedInterruptTime | |
| 835 | KeRaiseIrqlToDpcLevel | |
| 836 | KeRaiseUserException | |
| 837 | KeReadStateEvent | |
| 838 | KeReadStateMutant | |
| 839 | KeReadStateMutex | |
| 840 | KeReadStateQueue | |
| 841 | KeReadStateSemaphore | |
| 842 | KeReadStateTimer | |
| 843 | KeRegisterBugCheckCallback | |
| 844 | KeRegisterBugCheckReasonCallback | |
| 845 | KeRegisterNmiCallback | |
| 846 | KeRegisterProcessorChangeCallback | |
| 847 | KeReleaseGuardedMutex | |
| 848 | KeReleaseGuardedMutexUnsafe | |
| 849 | KeReleaseInStackQueuedSpinLock | |
| 850 | KeReleaseInStackQueuedSpinLockForDpc | |
| 851 | KeReleaseInStackQueuedSpinLockFromDpcLevel | |
| 852 | KeReleaseInterruptSpinLock | |
| 853 | KeReleaseMutant | |
| 854 | KeReleaseMutex | |
| 855 | KeReleaseQueuedSpinLock | |
| 856 | KeReleaseSemaphore | |
| 857 | KeReleaseSpinLock | |
| 858 | KeReleaseSpinLockForDpc | |
| 859 | KeReleaseSpinLockFromDpcLevel | |
| 860 | KeRemoveByKeyDeviceQueue | |
| 861 | KeRemoveByKeyDeviceQueueIfBusy | |
| 862 | KeRemoveDeviceQueue | |
| 863 | KeRemoveEntryDeviceQueue | |
| 864 | KeRemoveGroupAffinityEx | |
| 865 | KeRemoveProcessorAffinityEx | |
| 866 | KeRemoveProcessorGroupAffinity | |
| 867 | KeRemoveQueue | |
| 868 | KeRemoveQueueDpc | |
| 869 | KeRemoveQueueEx | |
| 870 | KeRemoveSystemServiceTable | |
| 871 | KeResetEvent | |
| 872 | KeRestoreExtendedProcessorState | |
| 873 | KeRestoreFloatingPointState | |
| 874 | KeRevertToUserAffinityThread | |
| 875 | KeRevertToUserAffinityThreadEx | |
| 876 | KeRevertToUserGroupAffinityThread | |
| 877 | KeRundownQueue | |
| 878 | KeSaveExtendedProcessorState | |
| 879 | KeSaveFloatingPointState | |
| 880 | KeSaveStateForHibernate | |
| 881 | KeSetActualBasePriorityThread | |
| 882 | KeSetAffinityThread | |
| 883 | KeSetBasePriorityThread | |
| 884 | KeSetCoalescableTimer | |
| 885 | KeSetDmaIoCoherency | |
| 886 | KeSetEvent | |
| 887 | KeSetEventBoostPriority | |
| 888 | KeSetHardwareCounterConfiguration | |
| 889 | KeSetIdealProcessorThread | |
| 890 | KeSetImportanceDpc | |
| 891 | KeSetKernelStackSwapEnable | |
| 892 | KeSetPriorityThread | |
| 893 | KeSetProfileIrql | |
| 894 | KeSetSystemAffinityThread | |
| 895 | KeSetSystemAffinityThreadEx | |
| 896 | KeSetSystemGroupAffinityThread | |
| 897 | KeSetTargetProcessorDpc | |
| 898 | KeSetTargetProcessorDpcEx | |
| 899 | KeSetTimeIncrement | |
| 900 | KeSetTimer | |
| 901 | KeSetTimerEx | |
| 902 | KeSignalCallDpcDone | |
| 903 | KeSignalCallDpcSynchronize | |
| 904 | KeStackAttachProcess | |
| 905 | KeStartDynamicProcessor | |
| 906 | KeSubtractAffinityEx | |
| 907 | KeSynchronizeExecution | |
| 908 | KeTerminateThread | |
| 909 | KeTestAlertThread | |
| 910 | KeTestSpinLock | |
| 911 | KeTryToAcquireGuardedMutex | |
| 912 | KeTryToAcquireQueuedSpinLock | |
| 913 | KeTryToAcquireQueuedSpinLockRaiseToSynch | |
| 914 | KeTryToAcquireSpinLockAtDpcLevel | |
| 915 | KeUnstackDetachProcess | |
| 916 | KeUpdateRunTime | |
| 917 | KeUpdateSystemTime | |
| 918 | KeUserModeCallback | |
| 919 | KeWaitForMultipleObjects | |
| 920 | KeWaitForMutexObject | |
| 921 | KeWaitForSingleObject | |
| 922 | KfRaiseIrql | |
| 923 | KiBugCheckData DATA | |
| 924 | KiCheckForKernelApcDelivery | |
| 925 | KiCpuId | |
| 926 | LdrAccessResource | |
| 927 | LdrEnumResources | |
| 928 | LdrFindResourceDirectory_U | |
| 929 | LdrFindResourceEx_U | |
| 930 | LdrFindResource_U | |
| 931 | LdrResFindResource | |
| 932 | LdrResFindResourceDirectory | |
| 933 | LdrResSearchResource | |
| 934 | LpcPortObjectType DATA | |
| 935 | LpcReplyWaitReplyPort | |
| 936 | LpcRequestPort | |
| 937 | LpcRequestWaitReplyPort | |
| 938 | LpcRequestWaitReplyPortEx | |
| 939 | LpcSendWaitReceivePort | |
| 940 | LsaCallAuthenticationPackage | |
| 941 | LsaDeregisterLogonProcess | |
| 942 | LsaFreeReturnBuffer | |
| 943 | LsaLogonUser | |
| 944 | LsaLookupAuthenticationPackage | |
| 945 | LsaRegisterLogonProcess | |
| 946 | Mm64BitPhysicalAddress DATA | |
| 947 | MmAddPhysicalMemory | |
| 948 | MmAddVerifierThunks | |
| 949 | MmAdjustWorkingSetSize | |
| 950 | MmAdvanceMdl | |
| 951 | MmAllocateContiguousMemory | |
| 952 | MmAllocateContiguousMemorySpecifyCache | |
| 953 | MmAllocateContiguousMemorySpecifyCacheNode | |
| 954 | MmAllocateMappingAddress | |
| 955 | MmAllocateNonCachedMemory | |
| 956 | MmAllocatePagesForMdl | |
| 957 | MmAllocatePagesForMdlEx | |
| 958 | MmBadPointer DATA | |
| 959 | MmBuildMdlForNonPagedPool | |
| 960 | MmCanFileBeTruncated | |
| 961 | MmCommitSessionMappedView | |
| 962 | MmCopyVirtualMemory | |
| 963 | MmCreateMdl | |
| 964 | MmCreateMirror | |
| 965 | MmCreateSection | |
| 966 | MmDisableModifiedWriteOfSection | |
| 967 | MmDoesFileHaveUserWritableReferences | |
| 968 | MmFlushImageSection | |
| 969 | MmForceSectionClosed | |
| 970 | MmFreeContiguousMemory | |
| 971 | MmFreeContiguousMemorySpecifyCache | |
| 972 | MmFreeMappingAddress | |
| 973 | MmFreeNonCachedMemory | |
| 974 | MmFreePagesFromMdl | |
| 975 | MmGetPhysicalAddress | |
| 976 | MmGetPhysicalMemoryRanges | |
| 977 | MmGetSystemRoutineAddress | |
| 978 | MmGetVirtualForPhysical | |
| 979 | MmGrowKernelStack | |
| 980 | MmHighestUserAddress DATA | |
| 981 | MmIsAddressValid | |
| 982 | MmIsDriverVerifying | |
| 983 | MmIsDriverVerifyingByAddress | |
| 984 | MmIsIoSpaceActive | |
| 985 | MmIsNonPagedSystemAddressValid | |
| 986 | MmIsRecursiveIoFault | |
| 987 | MmIsThisAnNtAsSystem | |
| 988 | MmIsVerifierEnabled | |
| 989 | MmLockPagableDataSection | |
| 990 | MmLockPagableImageSection | |
| 991 | MmLockPagableSectionByHandle | |
| 992 | MmMapIoSpace | |
| 993 | MmMapLockedPages | |
| 994 | MmMapLockedPagesSpecifyCache | |
| 995 | MmMapLockedPagesWithReservedMapping | |
| 996 | MmMapMemoryDumpMdl | |
| 997 | MmMapUserAddressesToPage | |
| 998 | MmMapVideoDisplay | |
| 999 | MmMapViewInSessionSpace | |
| 1000 | MmMapViewInSystemSpace | |
| 1001 | MmMapViewOfSection | |
| 1002 | MmMarkPhysicalMemoryAsBad | |
| 1003 | MmMarkPhysicalMemoryAsGood | |
| 1004 | MmPageEntireDriver | |
| 1005 | MmPrefetchPages | |
| 1006 | MmProbeAndLockPages | |
| 1007 | MmProbeAndLockProcessPages | |
| 1008 | MmProbeAndLockSelectedPages | |
| 1009 | MmProtectMdlSystemAddress | |
| 1010 | MmQuerySystemSize | |
| 1011 | MmRemovePhysicalMemory | |
| 1012 | MmResetDriverPaging | |
| 1013 | MmRotatePhysicalView | |
| 1014 | MmSectionObjectType DATA | |
| 1015 | MmSecureVirtualMemory | |
| 1016 | MmSetAddressRangeModified | |
| 1017 | MmSetBankedSection | |
| 1018 | MmSizeOfMdl | |
| 1019 | MmSystemRangeStart DATA | |
| 1020 | MmTrimAllSystemPagableMemory | |
| 1021 | MmUnlockPagableImageSection | |
| 1022 | MmUnlockPages | |
| 1023 | MmUnmapIoSpace | |
| 1024 | MmUnmapLockedPages | |
| 1025 | MmUnmapReservedMapping | |
| 1026 | MmUnmapVideoDisplay | |
| 1027 | MmUnmapViewInSessionSpace | |
| 1028 | MmUnmapViewInSystemSpace | |
| 1029 | MmUnmapViewOfSection | |
| 1030 | MmUnsecureVirtualMemory | |
| 1031 | MmUserProbeAddress DATA | |
| 1032 | NlsAnsiCodePage DATA | |
| 1033 | NlsLeadByteInfo DATA | |
| 1034 | NlsMbCodePageTag DATA | |
| 1035 | NlsMbOemCodePageTag DATA | |
| 1036 | NlsOemCodePage DATA | |
| 1037 | NlsOemLeadByteInfo DATA | |
| 1038 | NtAddAtom | |
| 1039 | NtAdjustPrivilegesToken | |
| 1040 | NtAllocateLocallyUniqueId | |
| 1041 | NtAllocateUuids | |
| 1042 | NtAllocateVirtualMemory | |
| 1043 | NtBuildGUID DATA | |
| 1044 | NtBuildLab DATA | |
| 1045 | NtBuildNumber DATA | |
| 1046 | NtClose | |
| 1047 | NtCommitComplete | |
| 1048 | NtCommitEnlistment | |
| 1049 | NtCommitTransaction | |
| 1050 | NtConnectPort | |
| 1051 | NtCreateEnlistment | |
| 1052 | NtCreateEvent | |
| 1053 | NtCreateFile | |
| 1054 | NtCreateResourceManager | |
| 1055 | NtCreateSection | |
| 1056 | NtCreateTransaction | |
| 1057 | NtCreateTransactionManager | |
| 1058 | NtDeleteAtom | |
| 1059 | NtDeleteFile | |
| 1060 | NtDeviceIoControlFile | |
| 1061 | NtDuplicateObject | |
| 1062 | NtDuplicateToken | |
| 1063 | NtEnumerateTransactionObject | |
| 1064 | NtFindAtom | |
| 1065 | NtFreeVirtualMemory | |
| 1066 | NtFreezeTransactions | |
| 1067 | NtFsControlFile | |
| 1068 | NtGetEnvironmentVariableEx | |
| 1069 | NtGetNotificationResourceManager | |
| 1070 | NtGlobalFlag DATA | |
| 1071 | NtLockFile | |
| 1072 | NtMakePermanentObject | |
| 1073 | NtMapViewOfSection | |
| 1074 | NtNotifyChangeDirectoryFile | |
| 1075 | NtOpenEnlistment | |
| 1076 | NtOpenFile | |
| 1077 | NtOpenProcess | |
| 1078 | NtOpenProcessToken | |
| 1079 | NtOpenProcessTokenEx | |
| 1080 | NtOpenResourceManager | |
| 1081 | NtOpenThread | |
| 1082 | NtOpenThreadToken | |
| 1083 | NtOpenThreadTokenEx | |
| 1084 | NtOpenTransaction | |
| 1085 | NtOpenTransactionManager | |
| 1086 | NtPrePrepareComplete | |
| 1087 | NtPrePrepareEnlistment | |
| 1088 | NtPrepareComplete | |
| 1089 | NtPrepareEnlistment | |
| 1090 | NtPropagationComplete | |
| 1091 | NtPropagationFailed | |
| 1092 | NtQueryDirectoryFile | |
| 1093 | NtQueryEaFile | |
| 1094 | NtQueryEnvironmentVariableInfoEx | |
| 1095 | NtQueryInformationAtom | |
| 1096 | NtQueryInformationEnlistment | |
| 1097 | NtQueryInformationFile | |
| 1098 | NtQueryInformationProcess | |
| 1099 | NtQueryInformationResourceManager | |
| 1100 | NtQueryInformationThread | |
| 1101 | NtQueryInformationToken | |
| 1102 | NtQueryInformationTransaction | |
| 1103 | NtQueryInformationTransactionManager | |
| 1104 | NtQueryQuotaInformationFile | |
| 1105 | NtQuerySecurityAttributesToken | |
| 1106 | NtQuerySecurityObject | |
| 1107 | NtQuerySystemInformation | |
| 1108 | NtQuerySystemInformationEx | |
| 1109 | NtQueryVolumeInformationFile | |
| 1110 | NtReadFile | |
| 1111 | NtReadOnlyEnlistment | |
| 1112 | NtRecoverEnlistment | |
| 1113 | NtRecoverResourceManager | |
| 1114 | NtRecoverTransactionManager | |
| 1115 | NtRequestPort | |
| 1116 | NtRequestWaitReplyPort | |
| 1117 | NtRollbackComplete | |
| 1118 | NtRollbackEnlistment | |
| 1119 | NtRollbackTransaction | |
| 1120 | NtSetEaFile | |
| 1121 | NtSetEvent | |
| 1122 | NtSetInformationEnlistment | |
| 1123 | NtSetInformationFile | |
| 1124 | NtSetInformationProcess | |
| 1125 | NtSetInformationResourceManager | |
| 1126 | NtSetInformationThread | |
| 1127 | NtSetInformationToken | |
| 1128 | NtSetInformationTransaction | |
| 1129 | NtSetQuotaInformationFile | |
| 1130 | NtSetSecurityObject | |
| 1131 | NtSetVolumeInformationFile | |
| 1132 | NtShutdownSystem | |
| 1133 | NtThawTransactions | |
| 1134 | NtTraceControl | |
| 1135 | NtTraceEvent | |
| 1136 | NtUnlockFile | |
| 1137 | NtVdmControl | |
| 1138 | NtWaitForSingleObject | |
| 1139 | NtWriteFile | |
| 1140 | ObAssignSecurity | |
| 1141 | ObCheckCreateObjectAccess | |
| 1142 | ObCheckObjectAccess | |
| 1143 | ObCloseHandle | |
| 1144 | ObCreateObject | |
| 1145 | ObCreateObjectType | |
| 1146 | ObDeleteCapturedInsertInfo | |
| 1147 | ObDereferenceObject | |
| 1148 | ObDereferenceObjectDeferDelete | |
| 1149 | ObDereferenceObjectDeferDeleteWithTag | |
| 1150 | ObDereferenceSecurityDescriptor | |
| 1151 | ObFindHandleForObject | |
| 1152 | ObGetFilterVersion | |
| 1153 | ObGetObjectSecurity | |
| 1154 | ObGetObjectType | |
| 1155 | ObInsertObject | |
| 1156 | ObIsDosDeviceLocallyMapped | |
| 1157 | ObIsKernelHandle | |
| 1158 | ObLogSecurityDescriptor | |
| 1159 | ObMakeTemporaryObject | |
| 1160 | ObOpenObjectByName | |
| 1161 | ObOpenObjectByPointer | |
| 1162 | ObOpenObjectByPointerWithTag | |
| 1163 | ObQueryNameInfo | |
| 1164 | ObQueryNameString | |
| 1165 | ObQueryObjectAuditingByHandle | |
| 1166 | ObReferenceObjectByHandle | |
| 1167 | ObReferenceObjectByHandleWithTag | |
| 1168 | ObReferenceObjectByName | |
| 1169 | ObReferenceObjectByPointer | |
| 1170 | ObReferenceObjectByPointerWithTag | |
| 1171 | ObReferenceSecurityDescriptor | |
| 1172 | ObRegisterCallbacks | |
| 1173 | ObReleaseObjectSecurity | |
| 1174 | ObSetHandleAttributes | |
| 1175 | ObSetSecurityDescriptorInfo | |
| 1176 | ObSetSecurityObjectByPointer | |
| 1177 | ObUnRegisterCallbacks | |
| 1178 | ObfDereferenceObject | |
| 1179 | ObfDereferenceObjectWithTag | |
| 1180 | ObfReferenceObject | |
| 1181 | ObfReferenceObjectWithTag | |
| 1182 | POGOBuffer DATA | |
| 1183 | PcwAddInstance | |
| 1184 | PcwCloseInstance | |
| 1185 | PcwCreateInstance | |
| 1186 | PcwRegister | |
| 1187 | PcwUnregister | |
| 1188 | PfFileInfoNotify | |
| 1189 | PfxFindPrefix | |
| 1190 | PfxInitialize | |
| 1191 | PfxInsertPrefix | |
| 1192 | PfxRemovePrefix | |
| 1193 | PoCallDriver | |
| 1194 | PoCancelDeviceNotify | |
| 1195 | PoClearPowerRequest | |
| 1196 | PoCreatePowerRequest | |
| 1197 | PoDeletePowerRequest | |
| 1198 | PoDisableSleepStates | |
| 1199 | PoEndDeviceBusy | |
| 1200 | PoGetSystemWake | |
| 1201 | PoQueryWatchdogTime | |
| 1202 | PoQueueShutdownWorkItem | |
| 1203 | PoReenableSleepStates | |
| 1204 | PoRegisterDeviceForIdleDetection | |
| 1205 | PoRegisterDeviceNotify | |
| 1206 | PoRegisterPowerSettingCallback | |
| 1207 | PoRegisterSystemState | |
| 1208 | PoRequestPowerIrp | |
| 1209 | PoRequestShutdownEvent | |
| 1210 | PoSetDeviceBusyEx | |
| 1211 | PoSetFixedWakeSource | |
| 1212 | PoSetHiberRange | |
| 1213 | PoSetPowerRequest | |
| 1214 | PoSetPowerState | |
| 1215 | PoSetSystemState | |
| 1216 | PoSetSystemWake | |
| 1217 | PoShutdownBugCheck | |
| 1218 | PoStartDeviceBusy | |
| 1219 | PoStartNextPowerIrp | |
| 1220 | PoUnregisterPowerSettingCallback | |
| 1221 | PoUnregisterSystemState | |
| 1222 | PoUserShutdownInitiated | |
| 1223 | ProbeForRead | |
| 1224 | ProbeForWrite | |
| 1225 | PsAcquireProcessExitSynchronization | |
| 1226 | PsAssignImpersonationToken | |
| 1227 | PsChargePoolQuota | |
| 1228 | PsChargeProcessNonPagedPoolQuota | |
| 1229 | PsChargeProcessPagedPoolQuota | |
| 1230 | PsChargeProcessPoolQuota | |
| 1231 | PsCreateSystemProcess | |
| 1232 | PsCreateSystemThread | |
| 1233 | PsDereferenceImpersonationToken | |
| 1234 | PsDereferencePrimaryToken | |
| 1235 | PsDisableImpersonation | |
| 1236 | PsEnterPriorityRegion | |
| 1237 | PsEstablishWin32Callouts | |
| 1238 | PsGetContextThread | |
| 1239 | PsGetCurrentProcess | |
| 1240 | PsGetCurrentProcessId | |
| 1241 | PsGetCurrentProcessSessionId | |
| 1242 | PsGetCurrentProcessWin32Process | |
| 1243 | PsGetCurrentProcessWow64Process | |
| 1244 | PsGetCurrentThread | |
| 1245 | PsGetCurrentThreadId | |
| 1246 | PsGetCurrentThreadPreviousMode | |
| 1247 | PsGetCurrentThreadProcess | |
| 1248 | PsGetCurrentThreadProcessId | |
| 1249 | PsGetCurrentThreadStackBase | |
| 1250 | PsGetCurrentThreadStackLimit | |
| 1251 | PsGetCurrentThreadTeb | |
| 1252 | PsGetCurrentThreadWin32Thread | |
| 1253 | PsGetCurrentThreadWin32ThreadAndEnterCriticalRegion | |
| 1254 | PsGetJobLock | |
| 1255 | PsGetJobSessionId | |
| 1256 | PsGetJobUIRestrictionsClass | |
| 1257 | PsGetProcessCreateTimeQuadPart | |
| 1258 | PsGetProcessDebugPort | |
| 1259 | PsGetProcessExitProcessCalled | |
| 1260 | PsGetProcessExitStatus | |
| 1261 | PsGetProcessExitTime | |
| 1262 | PsGetProcessId | |
| 1263 | PsGetProcessImageFileName | |
| 1264 | PsGetProcessInheritedFromUniqueProcessId | |
| 1265 | PsGetProcessJob | |
| 1266 | PsGetProcessPeb | |
| 1267 | PsGetProcessPriorityClass | |
| 1268 | PsGetProcessSectionBaseAddress | |
| 1269 | PsGetProcessSecurityPort | |
| 1270 | PsGetProcessSessionId | |
| 1271 | PsGetProcessSessionIdEx | |
| 1272 | PsGetProcessWin32Process | |
| 1273 | PsGetProcessWin32WindowStation | |
| 1274 | PsGetProcessWow64Process | |
| 1275 | PsGetThreadFreezeCount | |
| 1276 | PsGetThreadHardErrorsAreDisabled | |
| 1277 | PsGetThreadId | |
| 1278 | PsGetThreadProcess | |
| 1279 | PsGetThreadProcessId | |
| 1280 | PsGetThreadSessionId | |
| 1281 | PsGetThreadTeb | |
| 1282 | PsGetThreadWin32Thread | |
| 1283 | PsGetVersion | |
| 1284 | PsImpersonateClient | |
| 1285 | PsInitialSystemProcess DATA | |
| 1286 | PsIsCurrentThreadPrefetching | |
| 1287 | PsIsProcessBeingDebugged | |
| 1288 | PsIsProtectedProcess | |
| 1289 | PsIsSystemProcess | |
| 1290 | PsIsSystemThread | |
| 1291 | PsIsThreadImpersonating | |
| 1292 | PsIsThreadTerminating | |
| 1293 | PsJobType DATA | |
| 1294 | PsLeavePriorityRegion | |
| 1295 | PsLookupProcessByProcessId | |
| 1296 | PsLookupProcessThreadByCid | |
| 1297 | PsLookupThreadByThreadId | |
| 1298 | PsProcessType DATA | |
| 1299 | PsQueryProcessExceptionFlags | |
| 1300 | PsReferenceImpersonationToken | |
| 1301 | PsReferencePrimaryToken | |
| 1302 | PsReferenceProcessFilePointer | |
| 1303 | PsReleaseProcessExitSynchronization | |
| 1304 | PsRemoveCreateThreadNotifyRoutine | |
| 1305 | PsRemoveLoadImageNotifyRoutine | |
| 1306 | PsRestoreImpersonation | |
| 1307 | PsResumeProcess | |
| 1308 | PsReturnPoolQuota | |
| 1309 | PsReturnProcessNonPagedPoolQuota | |
| 1310 | PsReturnProcessPagedPoolQuota | |
| 1311 | PsRevertThreadToSelf | |
| 1312 | PsRevertToSelf | |
| 1313 | PsSetContextThread | |
| 1314 | PsSetCreateProcessNotifyRoutine | |
| 1315 | PsSetCreateProcessNotifyRoutineEx | |
| 1316 | PsSetCreateThreadNotifyRoutine | |
| 1317 | PsSetCurrentThreadPrefetching | |
| 1318 | PsSetJobUIRestrictionsClass | |
| 1319 | PsSetLegoNotifyRoutine | |
| 1320 | PsSetLoadImageNotifyRoutine | |
| 1321 | PsSetProcessPriorityByClass | |
| 1322 | PsSetProcessPriorityClass | |
| 1323 | PsSetProcessSecurityPort | |
| 1324 | PsSetProcessWin32Process | |
| 1325 | PsSetProcessWindowStation | |
| 1326 | PsSetThreadHardErrorsAreDisabled | |
| 1327 | PsSetThreadWin32Thread | |
| 1328 | PsSuspendProcess | |
| 1329 | PsTerminateSystemThread | |
| 1330 | PsThreadType DATA | |
| 1331 | PsUILanguageComitted DATA | |
| 1332 | PsWrapApcWow64Thread | |
| 1333 | RtlAbsoluteToSelfRelativeSD | |
| 1334 | RtlAddAccessAllowedAce | |
| 1335 | RtlAddAccessAllowedAceEx | |
| 1336 | RtlAddAce | |
| 1337 | RtlAddAtomToAtomTable | |
| 1338 | RtlAddRange | |
| 1339 | RtlAllocateHeap | |
| 1340 | RtlAnsiCharToUnicodeChar | |
| 1341 | RtlAnsiStringToUnicodeSize | |
| 1342 | RtlAnsiStringToUnicodeString | |
| 1343 | RtlAppendAsciizToString | |
| 1344 | RtlAppendStringToString | |
| 1345 | RtlAppendUnicodeStringToString | |
| 1346 | RtlAppendUnicodeToString | |
| 1347 | RtlAreAllAccessesGranted | |
| 1348 | RtlAreAnyAccessesGranted | |
| 1349 | RtlAreBitsClear | |
| 1350 | RtlAreBitsSet | |
| 1351 | RtlAssert | |
| 1352 | RtlCaptureContext | |
| 1353 | RtlCaptureStackBackTrace | |
| 1354 | RtlCharToInteger | |
| 1355 | RtlCheckRegistryKey | |
| 1356 | RtlClearAllBits | |
| 1357 | RtlClearBit | |
| 1358 | RtlClearBits | |
| 1359 | RtlCmDecodeMemIoResource | |
| 1360 | RtlCmEncodeMemIoResource | |
| 1361 | RtlCompareAltitudes | |
| 1362 | RtlCompareMemory | |
| 1363 | RtlCompareMemoryUlong | |
| 1364 | RtlCompareString | |
| 1365 | RtlCompareUnicodeString | |
| 1366 | RtlCompareUnicodeStrings | |
| 1367 | RtlCompressBuffer | |
| 1368 | RtlCompressChunks | |
| 1369 | RtlComputeCrc32 | |
| 1370 | RtlContractHashTable | |
| 1371 | RtlConvertSidToUnicodeString | |
| 1372 | RtlCopyLuid | |
| 1373 | RtlCopyLuidAndAttributesArray | |
| 1374 | RtlCopyMemory | |
| 1375 | RtlCopyMemoryNonTemporal | |
| 1376 | RtlCopyRangeList | |
| 1377 | RtlCopySid | |
| 1378 | RtlCopySidAndAttributesArray | |
| 1379 | RtlCopyString | |
| 1380 | RtlCopyUnicodeString | |
| 1381 | RtlCreateAcl | |
| 1382 | RtlCreateAtomTable | |
| 1383 | RtlCreateHashTable | |
| 1384 | RtlCreateHeap | |
| 1385 | RtlCreateRegistryKey | |
| 1386 | RtlCreateSecurityDescriptor | |
| 1387 | RtlCreateSystemVolumeInformationFolder | |
| 1388 | RtlCreateUnicodeString | |
| 1389 | RtlCustomCPToUnicodeN | |
| 1390 | RtlDecompressBuffer | |
| 1391 | RtlDecompressChunks | |
| 1392 | RtlDecompressFragment | |
| 1393 | RtlDelete | |
| 1394 | RtlDeleteAce | |
| 1395 | RtlDeleteAtomFromAtomTable | |
| 1396 | RtlDeleteElementGenericTable | |
| 1397 | RtlDeleteElementGenericTableAvl | |
| 1398 | RtlDeleteHashTable | |
| 1399 | RtlDeleteNoSplay | |
| 1400 | RtlDeleteOwnersRanges | |
| 1401 | RtlDeleteRange | |
| 1402 | RtlDeleteRegistryValue | |
| 1403 | RtlDescribeChunk | |
| 1404 | RtlDestroyAtomTable | |
| 1405 | RtlDestroyHeap | |
| 1406 | RtlDowncaseUnicodeChar | |
| 1407 | RtlDowncaseUnicodeString | |
| 1408 | RtlDuplicateUnicodeString | |
| 1409 | RtlEmptyAtomTable | |
| 1410 | RtlEndEnumerationHashTable | |
| 1411 | RtlEndWeakEnumerationHashTable | |
| 1412 | RtlEnumerateEntryHashTable | |
| 1413 | RtlEnumerateGenericTable | |
| 1414 | RtlEnumerateGenericTableAvl | |
| 1415 | RtlEnumerateGenericTableLikeADirectory | |
| 1416 | RtlEnumerateGenericTableWithoutSplaying | |
| 1417 | RtlEnumerateGenericTableWithoutSplayingAvl | |
| 1418 | RtlEqualLuid | |
| 1419 | RtlEqualSid | |
| 1420 | RtlEqualString | |
| 1421 | RtlEqualUnicodeString | |
| 1422 | RtlEthernetAddressToStringA | |
| 1423 | RtlEthernetAddressToStringW | |
| 1424 | RtlEthernetStringToAddressA | |
| 1425 | RtlEthernetStringToAddressW | |
| 1426 | RtlExpandHashTable | |
| 1427 | RtlFillMemory | |
| 1428 | RtlFindAceByType | |
| 1429 | RtlFindClearBits | |
| 1430 | RtlFindClearBitsAndSet | |
| 1431 | RtlFindClearRuns | |
| 1432 | RtlFindClosestEncodableLength | |
| 1433 | RtlFindFirstRunClear | |
| 1434 | RtlFindLastBackwardRunClear | |
| 1435 | RtlFindLeastSignificantBit | |
| 1436 | RtlFindLongestRunClear | |
| 1437 | RtlFindMessage | |
| 1438 | RtlFindMostSignificantBit | |
| 1439 | RtlFindNextForwardRunClear | |
| 1440 | RtlFindRange | |
| 1441 | RtlFindSetBits | |
| 1442 | RtlFindSetBitsAndClear | |
| 1443 | RtlFindUnicodePrefix | |
| 1444 | RtlFormatCurrentUserKeyPath | |
| 1445 | RtlFormatMessage | |
| 1446 | RtlFreeAnsiString | |
| 1447 | RtlFreeHeap | |
| 1448 | RtlFreeOemString | |
| 1449 | RtlFreeRangeList | |
| 1450 | RtlFreeUnicodeString | |
| 1451 | RtlGUIDFromString | |
| 1452 | RtlGenerate8dot3Name | |
| 1453 | RtlGetAce | |
| 1454 | RtlGetCallersAddress | |
| 1455 | RtlGetCompressionWorkSpaceSize | |
| 1456 | RtlGetDaclSecurityDescriptor | |
| 1457 | RtlGetDefaultCodePage | |
| 1458 | RtlGetElementGenericTable | |
| 1459 | RtlGetElementGenericTableAvl | |
| 1460 | RtlGetEnabledExtendedFeatures | |
| 1461 | RtlGetFirstRange | |
| 1462 | RtlGetGroupSecurityDescriptor | |
| 1463 | RtlGetIntegerAtom | |
| 1464 | RtlGetLastRange | |
| 1465 | RtlGetNextEntryHashTable | |
| 1466 | RtlGetNextRange | |
| 1467 | RtlGetNtGlobalFlags | |
| 1468 | RtlGetOwnerSecurityDescriptor | |
| 1469 | RtlGetProductInfo | |
| 1470 | RtlGetSaclSecurityDescriptor | |
| 1471 | RtlGetSetBootStatusData | |
| 1472 | RtlGetThreadLangIdByIndex | |
| 1473 | RtlGetVersion | |
| 1474 | RtlHashUnicodeString | |
| 1475 | RtlIdnToAscii | |
| 1476 | RtlIdnToNameprepUnicode | |
| 1477 | RtlIdnToUnicode | |
| 1478 | RtlImageDirectoryEntryToData | |
| 1479 | RtlImageNtHeader | |
| 1480 | RtlInitAnsiString | |
| 1481 | RtlInitAnsiStringEx | |
| 1482 | RtlInitCodePageTable | |
| 1483 | RtlInitEnumerationHashTable | |
| 1484 | RtlInitString | |
| 1485 | RtlInitUnicodeString | |
| 1486 | RtlInitUnicodeStringEx | |
| 1487 | RtlInitWeakEnumerationHashTable | |
| 1488 | RtlInitializeBitMap | |
| 1489 | RtlInitializeGenericTable | |
| 1490 | RtlInitializeGenericTableAvl | |
| 1491 | RtlInitializeRangeList | |
| 1492 | RtlInitializeSid | |
| 1493 | RtlInitializeUnicodePrefix | |
| 1494 | RtlInsertElementGenericTable | |
| 1495 | RtlInsertElementGenericTableAvl | |
| 1496 | RtlInsertElementGenericTableFull | |
| 1497 | RtlInsertElementGenericTableFullAvl | |
| 1498 | RtlInsertEntryHashTable | |
| 1499 | RtlInsertUnicodePrefix | |
| 1500 | RtlInt64ToUnicodeString | |
| 1501 | RtlIntegerToChar | |
| 1502 | RtlIntegerToUnicode | |
| 1503 | RtlIntegerToUnicodeString | |
| 1504 | RtlInvertRangeList | |
| 1505 | RtlInvertRangeListEx | |
| 1506 | RtlIoDecodeMemIoResource | |
| 1507 | RtlIoEncodeMemIoResource | |
| 1508 | RtlIpv4AddressToStringA | |
| 1509 | RtlIpv4AddressToStringExA | |
| 1510 | RtlIpv4AddressToStringExW | |
| 1511 | RtlIpv4AddressToStringW | |
| 1512 | RtlIpv4StringToAddressA | |
| 1513 | RtlIpv4StringToAddressExA | |
| 1514 | RtlIpv4StringToAddressExW | |
| 1515 | RtlIpv4StringToAddressW | |
| 1516 | RtlIpv6AddressToStringA | |
| 1517 | RtlIpv6AddressToStringExA | |
| 1518 | RtlIpv6AddressToStringExW | |
| 1519 | RtlIpv6AddressToStringW | |
| 1520 | RtlIpv6StringToAddressA | |
| 1521 | RtlIpv6StringToAddressExA | |
| 1522 | RtlIpv6StringToAddressExW | |
| 1523 | RtlIpv6StringToAddressW | |
| 1524 | RtlIsGenericTableEmpty | |
| 1525 | RtlIsGenericTableEmptyAvl | |
| 1526 | RtlIsNameLegalDOS8Dot3 | |
| 1527 | RtlIsNormalizedString | |
| 1528 | RtlIsNtDdiVersionAvailable | |
| 1529 | RtlIsRangeAvailable | |
| 1530 | RtlIsServicePackVersionInstalled | |
| 1531 | RtlIsValidOemCharacter | |
| 1532 | RtlLengthRequiredSid | |
| 1533 | RtlLengthSecurityDescriptor | |
| 1534 | RtlLengthSid | |
| 1535 | RtlLoadString | |
| 1536 | RtlLocalTimeToSystemTime | |
| 1537 | RtlLockBootStatusData | |
| 1538 | RtlLookupAtomInAtomTable | |
| 1539 | RtlLookupElementGenericTable | |
| 1540 | RtlLookupElementGenericTableAvl | |
| 1541 | RtlLookupElementGenericTableFull | |
| 1542 | RtlLookupElementGenericTableFullAvl | |
| 1543 | RtlLookupEntryHashTable | |
| 1544 | RtlLookupFirstMatchingElementGenericTableAvl | |
| 1545 | RtlLookupFunctionEntry | |
| 1546 | RtlMapGenericMask | |
| 1547 | RtlMapSecurityErrorToNtStatus | |
| 1548 | RtlMergeRangeLists | |
| 1549 | RtlMoveMemory | |
| 1550 | RtlMultiByteToUnicodeN | |
| 1551 | RtlMultiByteToUnicodeSize | |
| 1552 | RtlNextUnicodePrefix | |
| 1553 | RtlNormalizeString | |
| 1554 | RtlNtStatusToDosError | |
| 1555 | RtlNtStatusToDosErrorNoTeb | |
| 1556 | RtlNumberGenericTableElements | |
| 1557 | RtlNumberGenericTableElementsAvl | |
| 1558 | RtlNumberOfClearBits | |
| 1559 | RtlNumberOfSetBits | |
| 1560 | RtlNumberOfSetBitsUlongPtr | |
| 1561 | RtlOemStringToCountedUnicodeString | |
| 1562 | RtlOemStringToUnicodeSize | |
| 1563 | RtlOemStringToUnicodeString | |
| 1564 | RtlOemToUnicodeN | |
| 1565 | RtlOwnerAcesPresent | |
| 1566 | RtlPcToFileHeader | |
| 1567 | RtlPinAtomInAtomTable | |
| 1568 | RtlPrefetchMemoryNonTemporal | |
| 1569 | RtlPrefixString | |
| 1570 | RtlPrefixUnicodeString | |
| 1571 | RtlQueryAtomInAtomTable | |
| 1572 | RtlQueryDynamicTimeZoneInformation | |
| 1573 | RtlQueryElevationFlags | |
| 1574 | RtlQueryModuleInformation | |
| 1575 | RtlQueryRegistryValues | |
| 1576 | RtlQueryTimeZoneInformation | |
| 1577 | RtlRaiseException | |
| 1578 | RtlRandom | |
| 1579 | RtlRandomEx | |
| 1580 | RtlRealPredecessor | |
| 1581 | RtlRealSuccessor | |
| 1582 | RtlRemoveEntryHashTable | |
| 1583 | RtlRemoveUnicodePrefix | |
| 1584 | RtlReplaceSidInSd | |
| 1585 | RtlReserveChunk | |
| 1586 | RtlRestoreContext | |
| 1587 | RtlRunOnceBeginInitialize | |
| 1588 | RtlRunOnceComplete | |
| 1589 | RtlRunOnceExecuteOnce | |
| 1590 | RtlRunOnceInitialize | |
| 1591 | RtlSecondsSince1970ToTime | |
| 1592 | RtlSecondsSince1980ToTime | |
| 1593 | RtlSelfRelativeToAbsoluteSD | |
| 1594 | RtlSelfRelativeToAbsoluteSD2 | |
| 1595 | RtlSetAllBits | |
| 1596 | RtlSetBit | |
| 1597 | RtlSetBits | |
| 1598 | RtlSetDaclSecurityDescriptor | |
| 1599 | RtlSetDynamicTimeZoneInformation | |
| 1600 | RtlSetGroupSecurityDescriptor | |
| 1601 | RtlSetOwnerSecurityDescriptor | |
| 1602 | RtlSetSaclSecurityDescriptor | |
| 1603 | RtlSetTimeZoneInformation | |
| 1604 | RtlSidHashInitialize | |
| 1605 | RtlSidHashLookup | |
| 1606 | RtlSizeHeap | |
| 1607 | RtlSplay | |
| 1608 | RtlStringFromGUID | |
| 1609 | RtlSubAuthorityCountSid | |
| 1610 | RtlSubAuthoritySid | |
| 1611 | RtlSubtreePredecessor | |
| 1612 | RtlSubtreeSuccessor | |
| 1613 | RtlSystemTimeToLocalTime | |
| 1614 | RtlTestBit | |
| 1615 | RtlTimeFieldsToTime | |
| 1616 | RtlTimeToElapsedTimeFields | |
| 1617 | RtlTimeToSecondsSince1970 | |
| 1618 | RtlTimeToSecondsSince1980 | |
| 1619 | RtlTimeToTimeFields | |
| 1620 | RtlTraceDatabaseAdd | |
| 1621 | RtlTraceDatabaseCreate | |
| 1622 | RtlTraceDatabaseDestroy | |
| 1623 | RtlTraceDatabaseEnumerate | |
| 1624 | RtlTraceDatabaseFind | |
| 1625 | RtlTraceDatabaseLock | |
| 1626 | RtlTraceDatabaseUnlock | |
| 1627 | RtlTraceDatabaseValidate | |
| 1628 | RtlUTF8ToUnicodeN | |
| 1629 | RtlUnicodeStringToAnsiSize | |
| 1630 | RtlUnicodeStringToAnsiString | |
| 1631 | RtlUnicodeStringToCountedOemString | |
| 1632 | RtlUnicodeStringToInteger | |
| 1633 | RtlUnicodeStringToOemSize | |
| 1634 | RtlUnicodeStringToOemString | |
| 1635 | RtlUnicodeToCustomCPN | |
| 1636 | RtlUnicodeToMultiByteN | |
| 1637 | RtlUnicodeToMultiByteSize | |
| 1638 | RtlUnicodeToOemN | |
| 1639 | RtlUnicodeToUTF8N | |
| 1640 | RtlUnlockBootStatusData | |
| 1641 | RtlUnwind | |
| 1642 | RtlUnwindEx | |
| 1643 | RtlUpcaseUnicodeChar | |
| 1644 | RtlUpcaseUnicodeString | |
| 1645 | RtlUpcaseUnicodeStringToAnsiString | |
| 1646 | RtlUpcaseUnicodeStringToCountedOemString | |
| 1647 | RtlUpcaseUnicodeStringToOemString | |
| 1648 | RtlUpcaseUnicodeToCustomCPN | |
| 1649 | RtlUpcaseUnicodeToMultiByteN | |
| 1650 | RtlUpcaseUnicodeToOemN | |
| 1651 | RtlUpperChar | |
| 1652 | RtlUpperString | |
| 1653 | RtlValidRelativeSecurityDescriptor | |
| 1654 | RtlValidSecurityDescriptor | |
| 1655 | RtlValidSid | |
| 1656 | RtlValidateUnicodeString | |
| 1657 | RtlVerifyVersionInfo | |
| 1658 | RtlVirtualUnwind | |
| 1659 | RtlVolumeDeviceToDosName | |
| 1660 | RtlWalkFrameChain | |
| 1661 | RtlWeaklyEnumerateEntryHashTable | |
| 1662 | RtlWriteRegistryValue | |
| 1663 | RtlZeroHeap | |
| 1664 | RtlZeroMemory | |
| 1665 | RtlxAnsiStringToUnicodeSize | |
| 1666 | RtlxOemStringToUnicodeSize | |
| 1667 | RtlxUnicodeStringToAnsiSize | |
| 1668 | RtlxUnicodeStringToOemSize | |
| 1669 | SeAccessCheck | |
| 1670 | SeAccessCheckEx | |
| 1671 | SeAccessCheckFromState | |
| 1672 | SeAccessCheckWithHint | |
| 1673 | SeAppendPrivileges | |
| 1674 | SeAssignSecurity | |
| 1675 | SeAssignSecurityEx | |
| 1676 | SeAuditHardLinkCreation | |
| 1677 | SeAuditHardLinkCreationWithTransaction | |
| 1678 | eAuditTransactionStateChange | |
| 1679 | SeAuditingAnyFileEventsWithContext | |
| 1680 | SeAuditingFileEvents | |
| 1681 | SeAuditingFileEventsWithContext | |
| 1682 | SeAuditingFileOrGlobalEvents | |
| 1683 | SeAuditingHardLinkEvents | |
| 1684 | SeAuditingHardLinkEventsWithContext | |
| 1685 | SeAuditingWithTokenForSubcategory | |
| 1686 | SeCaptureSecurityDescriptor | |
| 1687 | SeCaptureSubjectContext | |
| 1688 | SeCaptureSubjectContextEx | |
| 1689 | SeCloseObjectAuditAlarm | |
| 1690 | SeCloseObjectAuditAlarmForNonObObject | |
| 1691 | SeComputeAutoInheritByObjectType | |
| 1692 | SeCreateAccessState | |
| 1693 | SeCreateAccessStateEx | |
| 1694 | SeCreateClientSecurity | |
| 1695 | SeCreateClientSecurityFromSubjectContext | |
| 1696 | SeDeassignSecurity | |
| 1697 | SeDeleteAccessState | |
| 1698 | SeDeleteObjectAuditAlarm | |
| 1699 | SeDeleteObjectAuditAlarmWithTransaction | |
| 1700 | SeExamineSacl | |
| 1701 | SeExports DATA | |
| 1702 | SeFilterToken | |
| 1703 | SeFreePrivileges | |
| 1704 | SeGetLinkedToken | |
| 1705 | SeImpersonateClient | |
| 1706 | SeImpersonateClientEx | |
| 1707 | SeLocateProcessImageName | |
| 1708 | SeLockSubjectContext | |
| 1709 | SeMarkLogonSessionForTerminationNotification | |
| 1710 | SeOpenObjectAuditAlarm | |
| 1711 | SeOpenObjectAuditAlarmForNonObObject | |
| 1712 | SeOpenObjectAuditAlarmWithTransaction | |
| 1713 | SeOpenObjectForDeleteAuditAlarm | |
| 1714 | SeOpenObjectForDeleteAuditAlarmWithTransaction | |
| 1715 | SePrivilegeCheck | |
| 1716 | SePrivilegeObjectAuditAlarm | |
| 1717 | SePublicDefaultDacl DATA | |
| 1718 | SeQueryAuthenticationIdToken | |
| 1719 | SeQueryInformationToken | |
| 1720 | SeQuerySecurityAttributesToken | |
| 1721 | SeQuerySecurityDescriptorInfo | |
| 1722 | SeQuerySessionIdToken | |
| 1723 | SeRegisterLogonSessionTerminatedRoutine | |
| 1724 | SeReleaseSecurityDescriptor | |
| 1725 | SeReleaseSubjectContext | |
| 1726 | SeReportSecurityEvent | |
| 1727 | SeReportSecurityEventWithSubCategory | |
| 1728 | SeSetAccessStateGenericMapping | |
| 1729 | SeSetAuditParameter | |
| 1730 | SeSetSecurityAttributesToken | |
| 1731 | SeSetSecurityDescriptorInfo | |
| 1732 | SeSetSecurityDescriptorInfoEx | |
| 1733 | SeSinglePrivilegeCheck | |
| 1734 | SeSrpAccessCheck | |
| 1735 | SeSystemDefaultDacl DATA | |
| 1736 | SeTokenImpersonationLevel | |
| 1737 | SeTokenIsAdmin | |
| 1738 | SeTokenIsRestricted | |
| 1739 | SeTokenIsWriteRestricted | |
| 1740 | SeTokenObjectType DATA | |
| 1741 | SeTokenType | |
| 1742 | SeUnlockSubjectContext | |
| 1743 | SeUnregisterLogonSessionTerminatedRoutine | |
| 1744 | SeValidSecurityDescriptor | |
| 1745 | TmCancelPropagationRequest | |
| 1746 | TmCommitComplete | |
| 1747 | TmCommitEnlistment | |
| 1748 | TmCommitTransaction | |
| 1749 | TmCreateEnlistment | |
| 1750 | TmCurrentTransaction | |
| 1751 | TmDereferenceEnlistmentKey | |
| 1752 | TmEnableCallbacks | |
| 1753 | TmEndPropagationRequest | |
| 1754 | TmEnlistmentObjectType DATA | |
| 1755 | TmFreezeTransactions | |
| 1756 | TmGetTransactionId | |
| 1757 | TmInitSystem | |
| 1758 | TmInitSystemPhase2 | |
| 1759 | TmInitializeResourceManager | |
| 1760 | TmInitializeTransaction | |
| 1761 | TmIsTransactionActive | |
| 1762 | TmPrePrepareComplete | |
| 1763 | TmPrePrepareEnlistment | |
| 1764 | TmPrepareComplete | |
| 1765 | TmPrepareEnlistment | |
| 1766 | TmPropagationComplete | |
| 1767 | TmPropagationFailed | |
| 1768 | TmReadOnlyEnlistment | |
| 1769 | TmRecoverEnlistment | |
| 1770 | TmRecoverResourceManager | |
| 1771 | TmRecoverTransactionManager | |
| 1772 | TmReferenceEnlistmentKey | |
| 1773 | TmRequestOutcomeEnlistment | |
| 1774 | TmResourceManagerObjectType DATA | |
| 1775 | TmRollbackComplete | |
| 1776 | TmRollbackEnlistment | |
| 1777 | TmRollbackTransaction | |
| 1778 | TmSetCurrentTransaction | |
| 1779 | TmThawTransactions | |
| 1780 | TmTransactionManagerObjectType DATA | |
| 1781 | TmTransactionObjectType DATA | |
| 1782 | TmpIsKTMCommitCoordinator | |
| 1783 | VerSetConditionMask | |
| 1784 | VfFailDeviceNode | |
| 1785 | VfFailDriver | |
| 1786 | VfFailSystemBIOS | |
| 1787 | VfIsVerificationEnabled | |
| 1788 | WmiFlushTrace | |
| 1789 | WheaAddErrorSource | |
| 1790 | WheaAttemptPhysicalPageOffline | |
| 1791 | WheaConfigureErrorSource | |
| 1792 | WheaDeferredRecoveryService | |
| 1793 | WheaGetErrorSource | |
| 1794 | WheaInitializeDeferredRecoveryObject | |
| 1795 | WheaInitializeRecordHeader | |
| 1796 | WheaReportHwError | |
| 1797 | WheaRequestDeferredRecovery | |
| 1798 | WmiGetClock | |
| 1799 | WmiQueryTrace | |
| 1800 | WmiQueryTraceInformation | |
| 1801 | WmiStartTrace | |
| 1802 | WmiStopTrace | |
| 1803 | WmiTraceFastEvent | |
| 1804 | WmiTraceMessage | |
| 1805 | WmiTraceMessageVa | |
| 1806 | WmiUpdateTrace | |
| 1807 | XIPDispatch | |
| 1808 | ZwAccessCheckAndAuditAlarm | |
| 1809 | ZwAddBootEntry | |
| 1810 | ZwAddDriverEntry | |
| 1811 | ZwAdjustPrivilegesToken | |
| 1812 | ZwAlertThread | |
| 1813 | ZwAllocateLocallyUniqueId | |
| 1814 | ZwAllocateVirtualMemory | |
| 1815 | ZwAlpcAcceptConnectPort | |
| 1816 | ZwAlpcCancelMessage | |
| 1817 | ZwAlpcConnectPort | |
| 1818 | ZwAlpcCreatePort | |
| 1819 | ZwAlpcCreatePortSection | |
| 1820 | ZwAlpcCreateResourceReserve | |
| 1821 | ZwAlpcCreateSectionView | |
| 1822 | ZwAlpcCreateSecurityContext | |
| 1823 | ZwAlpcDeletePortSection | |
| 1824 | ZwAlpcDeleteResourceReserve | |
| 1825 | ZwAlpcDeleteSectionView | |
| 1826 | ZwAlpcDeleteSecurityContext | |
| 1827 | ZwAlpcDisconnectPort | |
| 1828 | ZwAlpcQueryInformation | |
| 1829 | ZwAlpcSendWaitReceivePort | |
| 1830 | ZwAlpcSetInformation | |
| 1831 | ZwAssignProcessToJobObject | |
| 1832 | ZwCancelIoFile | |
| 1833 | ZwCancelTimer | |
| 1834 | ZwClearEvent | |
| 1835 | ZwClose | |
| 1836 | ZwCloseObjectAuditAlarm | |
| 1837 | ZwCommitComplete | |
| 1838 | ZwCommitEnlistment | |
| 1839 | ZwCommitTransaction | |
| 1840 | ZwConnectPort | |
| 1841 | ZwCreateDirectoryObject | |
| 1842 | ZwCreateEnlistment | |
| 1843 | ZwCreateEvent | |
| 1844 | ZwCreateFile | |
| 1845 | ZwCreateIoCompletion | |
| 1846 | ZwCreateJobObject | |
| 1847 | ZwCreateKey | |
| 1848 | ZwCreateKeyTransacted | |
| 1849 | ZwCreateResourceManager | |
| 1850 | ZwCreateSection | |
| 1851 | ZwCreateSymbolicLinkObject | |
| 1852 | ZwCreateTimer | |
| 1853 | ZwCreateTransaction | |
| 1854 | ZwCreateTransactionManager | |
| 1855 | ZwDeleteBootEntry | |
| 1856 | ZwDeleteDriverEntry | |
| 1857 | ZwDeleteFile | |
| 1858 | ZwDeleteKey | |
| 1859 | ZwDeleteValueKey | |
| 1860 | ZwDeviceIoControlFile | |
| 1861 | ZwDisplayString | |
| 1862 | ZwDuplicateObject | |
| 1863 | ZwDuplicateToken | |
| 1864 | ZwEnumerateBootEntries | |
| 1865 | ZwEnumerateDriverEntries | |
| 1866 | ZwEnumerateKey | |
| 1867 | ZwEnumerateTransactionObject | |
| 1868 | ZwEnumerateValueKey | |
| 1869 | ZwFlushBuffersFile | |
| 1870 | ZwFlushInstructionCache | |
| 1871 | ZwFlushKey | |
| 1872 | ZwFlushVirtualMemory | |
| 1873 | ZwFreeVirtualMemory | |
| 1874 | ZwFsControlFile | |
| 1875 | ZwGetNotificationResourceManager | |
| 1876 | ZwImpersonateAnonymousToken | |
| 1877 | ZwInitiatePowerAction | |
| 1878 | ZwIsProcessInJob | |
| 1879 | ZwLoadDriver | |
| 1880 | ZwLoadKey | |
| 1881 | ZwLoadKeyEx | |
| 1882 | ZwLockFile | |
| 1883 | ZwLockProductActivationKeys | |
| 1884 | ZwMakeTemporaryObject | |
| 1885 | ZwMapViewOfSection | |
| 1886 | ZwModifyBootEntry | |
| 1887 | ZwModifyDriverEntry | |
| 1888 | ZwNotifyChangeKey | |
| 1889 | ZwNotifyChangeSession | |
| 1890 | ZwOpenDirectoryObject | |
| 1891 | ZwOpenEnlistment | |
| 1892 | ZwOpenEvent | |
| 1893 | ZwOpenFile | |
| 1894 | ZwOpenJobObject | |
| 1895 | ZwOpenKey | |
| 1896 | ZwOpenKeyEx | |
| 1897 | ZwOpenKeyTransacted | |
| 1898 | ZwOpenKeyTransactedEx | |
| 1899 | ZwOpenProcess | |
| 1900 | ZwOpenProcessToken | |
| 1901 | ZwOpenProcessTokenEx | |
| 1902 | ZwOpenResourceManager | |
| 1903 | ZwOpenSection | |
| 1904 | ZwOpenSession | |
| 1905 | ZwOpenSymbolicLinkObject | |
| 1906 | ZwOpenThread | |
| 1907 | ZwOpenThreadToken | |
| 1908 | ZwOpenThreadTokenEx | |
| 1909 | ZwOpenTimer | |
| 1910 | ZwOpenTransaction | |
| 1911 | ZwOpenTransactionManager | |
| 1912 | ZwPowerInformation | |
| 1913 | ZwPrePrepareComplete | |
| 1914 | ZwPrePrepareEnlistment | |
| 1915 | ZwPrepareComplete | |
| 1916 | ZwPrepareEnlistment | |
| 1917 | ZwPropagationComplete | |
| 1918 | ZwPropagationFailed | |
| 1919 | ZwPulseEvent | |
| 1920 | ZwQueryBootEntryOrder | |
| 1921 | ZwQueryBootOptions | |
| 1922 | ZwQueryDefaultLocale | |
| 1923 | ZwQueryDefaultUILanguage | |
| 1924 | ZwQueryDirectoryFile | |
| 1925 | ZwQueryDirectoryObject | |
| 1926 | ZwQueryDriverEntryOrder | |
| 1927 | ZwQueryEaFile | |
| 1928 | ZwQueryFullAttributesFile | |
| 1929 | ZwQueryInformationEnlistment | |
| 1930 | ZwQueryInformationFile | |
| 1931 | ZwQueryInformationJobObject | |
| 1932 | ZwQueryInformationProcess | |
| 1933 | ZwQueryInformationResourceManager | |
| 1934 | ZwQueryInformationThread | |
| 1935 | ZwQueryInformationToken | |
| 1936 | ZwQueryInformationTransaction | |
| 1937 | ZwQueryInformationTransactionManager | |
| 1938 | ZwQueryInstallUILanguage | |
| 1939 | ZwQueryKey | |
| 1940 | ZwQueryLicenseValue | |
| 1941 | ZwQueryObject | |
| 1942 | ZwQueryQuotaInformationFile | |
| 1943 | ZwQuerySection | |
| 1944 | ZwQuerySecurityAttributesToken | |
| 1945 | ZwQuerySecurityObject | |
| 1946 | ZwQuerySymbolicLinkObject | |
| 1947 | ZwQuerySystemInformation | |
| 1948 | ZwQueryValueKey | |
| 1949 | ZwQueryVirtualMemory | |
| 1950 | ZwQueryVolumeInformationFile | |
| 1951 | ZwReadFile | |
| 1952 | ZwReadOnlyEnlistment | |
| 1953 | ZwRecoverEnlistment | |
| 1954 | ZwRecoverResourceManager | |
| 1955 | ZwRecoverTransactionManager | |
| 1956 | ZwRemoveIoCompletion | |
| 1957 | ZwRemoveIoCompletionEx | |
| 1958 | ZwReplaceKey | |
| 1959 | ZwRequestPort | |
| 1960 | ZwRequestWaitReplyPort | |
| 1961 | ZwResetEvent | |
| 1962 | ZwRestoreKey | |
| 1963 | ZwRollbackComplete | |
| 1964 | ZwRollbackEnlistment | |
| 1965 | ZwRollbackTransaction | |
| 1966 | ZwSaveKey | |
| 1967 | ZwSaveKeyEx | |
| 1968 | ZwSecureConnectPort | |
| 1969 | ZwSetBootEntryOrder | |
| 1970 | ZwSetBootOptions | |
| 1971 | ZwSetDefaultLocale | |
| 1972 | ZwSetDefaultUILanguage | |
| 1973 | ZwSetDriverEntryOrder | |
| 1974 | ZwSetEaFile | |
| 1975 | ZwSetEvent | |
| 1976 | ZwSetInformationEnlistment | |
| 1977 | ZwSetInformationFile | |
| 1978 | ZwSetInformationJobObject | |
| 1979 | ZwSetInformationObject | |
| 1980 | ZwSetInformationProcess | |
| 1981 | ZwSetInformationResourceManager | |
| 1982 | ZwSetInformationThread | |
| 1983 | ZwSetInformationToken | |
| 1984 | ZwSetInformationTransaction | |
| 1985 | ZwSetQuotaInformationFile | |
| 1986 | ZwSetSecurityObject | |
| 1987 | ZwSetSystemInformation | |
| 1988 | ZwSetSystemTime | |
| 1989 | ZwSetTimer | |
| 1990 | ZwSetTimerEx | |
| 1991 | ZwSetValueKey | |
| 1992 | ZwSetVolumeInformationFile | |
| 1993 | ZwTerminateJobObject | |
| 1994 | ZwTerminateProcess | |
| 1995 | ZwTraceEvent | |
| 1996 | ZwTranslateFilePath | |
| 1997 | ZwUnloadDriver | |
| 1998 | ZwUnloadKey | |
| 1999 | ZwUnloadKeyEx | |
| 2000 | ZwUnlockFile | |
| 2001 | ZwUnmapViewOfSection | |
| 2002 | ZwWaitForMultipleObjects | |
| 2003 | ZwWaitForSingleObject | |
| 2004 | ZwWriteFile | |
| 2005 | ZwYieldExecution | |
| 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 | |
| 2031 | strlwr == _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 | |
| 2052 | wcslwr == _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 | |
| 2063 | atoi | |
| 2064 | atol | |
| 2065 | bsearch | |
| 2066 | isdigit | |
| 2067 | islower | |
| 2068 | isprint | |
| 2069 | isspace | |
| 2070 | isupper | |
| 2071 | isxdigit | |
| 2072 | longjmp | |
| 2073 | mbstowcs | |
| 2074 | mbtowc | |
| 2075 | memchr | |
| 2076 | memcmp | |
| 2077 | memcpy | |
| 2078 | memcpy_s | |
| 2079 | memmove | |
| 2080 | memmove_s | |
| 2081 | memset | |
| 2082 | psMUITest DATA | |
| 2083 | qsort | |
| 2084 | rand | |
| 2085 | sprintf | |
| 2086 | sprintf_s | |
| 2087 | srand | |
| 2088 | sscanf_s | |
| 2089 | strcat | |
| 2090 | strcat_s | |
| 2091 | strchr | |
| 2092 | strcmp | |
| 2093 | strcpy | |
| 2094 | strcpy_s | |
| 2095 | strlen | |
| 2096 | strncat | |
| 2097 | strncat_s | |
| 2098 | strncmp | |
| 2099 | strncpy | |
| 2100 | strncpy_s | |
| 2101 | strnlen | |
| 2102 | strrchr | |
| 2103 | strspn | |
| 2104 | strstr | |
| 2105 | strtok_s | |
| 2106 | swprintf | |
| 2107 | swprintf_s | |
| 2108 | swscanf_s | |
| 2109 | tolower | |
| 2110 | toupper | |
| 2111 | towlower | |
| 2112 | towupper | |
| 2113 | vDbgPrintEx | |
| 2114 | vDbgPrintExWithPrefix | |
| 2115 | vsprintf | |
| 2116 | vsprintf_s | |
| 2117 | vswprintf_s | |
| 2118 | wcscat | |
| 2119 | wcscat_s | |
| 2120 | wcschr | |
| 2121 | wcscmp | |
| 2122 | wcscpy | |
| 2123 | wcscpy_s | |
| 2124 | wcscspn | |
| 2125 | wcslen | |
| 2126 | wcsncat | |
| 2127 | wcsncat_s | |
| 2128 | wcsncmp | |
| 2129 | wcsncpy | |
| 2130 | wcsncpy_s | |
| 2131 | wcsnlen | |
| 2132 | wcsrchr | |
| 2133 | wcsspn | |
| 2134 | wcsstr | |
| 2135 | wcstombs | |
| 2136 | wcstoul | |
| 2137 | wctomb |
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 | ; | |
| 7 | LIBRARY NTPRINT.dll | |
| 8 | EXPORTS | |
| 9 | IppOcEntry | |
| 10 | PSetupUpgradeClusterDriversW | |
| 11 | ServerInstallW | |
| 12 | SetupInetPrint | |
| 13 | ClassInstall32 | |
| 14 | PSetupAssociateICMProfiles | |
| 15 | PSetupBuildDriversFromPath | |
| 16 | PSetupCreateDrvSetupPage | |
| 17 | PSetupCreateMonitorInfo | |
| 18 | PSetupCreatePrinterDeviceInfoList | |
| 19 | PSetupDestroyDriverInfo3 | |
| 20 | PSetupDestroyMonitorInfo | |
| 21 | PSetupDestroyPrinterDeviceInfoList | |
| 22 | PSetupDestroySelectedDriverInfo | |
| 23 | PSetupDriverInfoFromName | |
| 24 | PSetupEnumMonitor | |
| 25 | PSetupFindMappedDriver | |
| 26 | PSetupFreeDrvField | |
| 27 | PSetupFreeMem | |
| 28 | PSetupGetActualInstallSection | |
| 29 | PSetupGetDriverInfForPrinter | |
| 30 | PSetupGetDriverInfForPrinterEx | |
| 31 | PSetupGetDriverInfo3 | |
| 32 | PSetupGetLocalDataField | |
| 33 | PSetupGetPathToSearch | |
| 34 | PSetupGetSelectedDriverInfo | |
| 35 | PSetupInstallICMProfiles | |
| 36 | PSetupInstallInboxDriverSilently | |
| 37 | PSetupInstallMonitor | |
| 38 | PSetupInstallPrinterDriver | |
| 39 | PSetupInstallPrinterDriverFromTheWeb | |
| 40 | PSetupIsCompatibleDriver | |
| 41 | PSetupIsDriverInstalled | |
| 42 | PSetupIsTheDriverFoundInInfInstalled | |
| 43 | PSetupKillBadUserConnections | |
| 44 | PSetupPreSelectDriver | |
| 45 | PSetupProcessPrinterAdded | |
| 46 | PSetupSelectDeviceButtons | |
| 47 | PSetupSelectDriver | |
| 48 | PSetupSetDriverPlatform | |
| 49 | PSetupSetSelectDevTitleAndInstructions | |
| 50 | PSetupShowBlockedDriverUI | |
| 51 | PSetupThisPlatform |
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 | ; | |
| 7 | LIBRARY ntshrui.dll | |
| 8 | EXPORTS | |
| 9 | CanShareFolderW | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | GetLocalPathFromNetResource | |
| 13 | GetLocalPathFromNetResourceA | |
| 14 | GetLocalPathFromNetResourceW | |
| 15 | GetNetResourceFromLocalPath | |
| 16 | GetNetResourceFromLocalPathA | |
| 17 | GetNetResourceFromLocalPathW | |
| 18 | IsFolderPrivateForUser | |
| 19 | IsPathShared | |
| 20 | IsPathSharedA | |
| 21 | IsPathSharedW | |
| 22 | SetFolderPermissionsForSharing | |
| 23 | SharingDialog | |
| 24 | SharingDialogA | |
| 25 | SharingDialogW | |
| 26 | ShowShareFolderUIW |
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 | ; | |
| 7 | LIBRARY ntvdm64.dll | |
| 8 | EXPORTS | |
| 9 | DllInstall | |
| 10 | NtVdm64CreateProcess | |
| 11 | NtVdm64RaiseInvalid16BitError |
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 | ; | |
| 7 | LIBRARY NWPROVAU.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | GetServiceItemFromList | |
| 12 | InitializePrintProvidor | |
| 13 | LsaApCallPackage | |
| 14 | LsaApInitializePackage | |
| 15 | LsaApLogonTerminated | |
| 16 | LsaApLogonUser | |
| 17 | NPAddConnection | |
| 18 | NPAddConnection3 | |
| 19 | NPCancelConnection | |
| 20 | NPCloseEnum | |
| 21 | NPEnumResource | |
| 22 | NPFormatNetworkName | |
| 23 | NPGetCaps | |
| 24 | NPGetConnection | |
| 25 | NPGetConnectionPerformance | |
| 26 | NPGetResourceInformation | |
| 27 | NPGetResourceParent | |
| 28 | NPGetUniversalName | |
| 29 | NPGetUser | |
| 30 | NPLoadNameSpaces | |
| 31 | NPLogonNotify | |
| 32 | NPOpenEnum | |
| 33 | NPPasswordChangeNotify | |
| 34 | NSPStartup | |
| 35 | NwDeregisterService | |
| 36 | NwEncryptChallenge | |
| 37 | NwEnumConnections | |
| 38 | NwGetService | |
| 39 | NwGetUserNameForServer | |
| 40 | NwInitializeServiceProvider | |
| 41 | NwQueryInfo | |
| 42 | NwQueryLogonOptions | |
| 43 | NwRegisterService | |
| 44 | NwSetInfoInRegistry | |
| 45 | NwSetInfoInWksta | |
| 46 | NwSetLogonOptionsInRegistry | |
| 47 | NwSetLogonScript | |
| 48 | NwTerminateServiceProvider | |
| 49 | NwValidateUser |
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 | ; | |
| 7 | LIBRARY oakley.DLL | |
| 8 | EXPORTS | |
| 9 | IKEQueryStatistics | |
| 10 | IKEEnumMMs | |
| 11 | IKEDeleteAssociation | |
| 12 | IKEInitiateIKENegotiation | |
| 13 | IKEQuerySpiChange | |
| 14 | IKERegisterNotifyClient | |
| 15 | IKEInit | |
| 16 | IKEShutdown | |
| 17 | IKEInterfaceChange | |
| 18 | IKECloseIKENotifyHandle | |
| 19 | IKEQueryIKENegotiationStatus | |
| 20 | IKECloseIKENegotiationHandle | |
| 21 | IKENotifyPolicyChange | |
| 22 | IKEAddSAs | |
| 23 | IKESetConfigurationVariables | |
| 24 | IKEGetConfigurationVariables |
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 | ; | |
| 7 | LIBRARY OCSBS.dll | |
| 8 | EXPORTS | |
| 9 | OcEntry |
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 | ; | |
| 7 | LIBRARY OCMANAGE.dll | |
| 8 | EXPORTS | |
| 9 | OcComponentState | |
| 10 | OcCreateOcPage | |
| 11 | OcCreateSetupPage | |
| 12 | OcGetWizardPages | |
| 13 | OcInitialize | |
| 14 | OcRememberWizardDialogHandle | |
| 15 | OcSubComponentsPresent | |
| 16 | OcTerminate |
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 | ; | |
| 7 | LIBRARY OCMSN.dll | |
| 8 | EXPORTS | |
| 9 | OcEntry |
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 | ; | |
| 7 | LIBRARY odbcbcp.dll | |
| 8 | EXPORTS | |
| 9 | dbprtypeA | |
| 10 | bcp_batch | |
| 11 | bcp_bind | |
| 12 | bcp_colfmt | |
| 13 | bcp_collen | |
| 14 | bcp_colptr | |
| 15 | bcp_columns | |
| 16 | bcp_control | |
| 17 | bcp_done | |
| 18 | bcp_initA | |
| 19 | bcp_exec | |
| 20 | bcp_moretext | |
| 21 | bcp_sendrow | |
| 22 | bcp_readfmtA | |
| 23 | bcp_writefmtA | |
| 24 | dbprtypeW | |
| 25 | bcp_initW | |
| 26 | bcp_readfmtW | |
| 27 | bcp_writefmtW | |
| 28 | SQLLinkedServers | |
| 29 | SQLLinkedCatalogsW | |
| 30 | SQLLinkedCatalogsA | |
| 31 | LibMain | |
| 32 | SQLInitEnumServers | |
| 33 | SQLGetNextEnumeration | |
| 34 | SQLCloseEnumServers | |
| 35 | bcp_getcolfmt | |
| 36 | bcp_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 | ; | |
| 7 | LIBRARY odbcconf.DLL | |
| 8 | EXPORTS | |
| 9 | SetSilent | |
| 10 | SetActionLogFile | |
| 11 | SetActionLogModeSz | |
| 12 | SetActionLogMode | |
| 13 | ExecuteAction | |
| 14 | SetActionEnum | |
| 15 | SetActionName | |
| 16 | ExpandPath | |
| 17 | GetPathFromID | |
| 18 | ApplyW2KXPak | |
| 19 | ApplyMillenCat | |
| 20 | UnregW2KXPak | |
| 21 | AppRegEnum | |
| 22 | CloseAppRegEnum | |
| 23 | OpenAppRegEnum | |
| 24 | QueryApplication | |
| 25 | RefreshAppRegEnum | |
| 26 | RegisterApplication | |
| 27 | RunDLL32_RegisterApplication | |
| 28 | RunDLL32_UnregisterApplication | |
| 29 | UnregisterApplication | |
| 30 | DllCanUnloadNow | |
| 31 | DllGetClassObject | |
| 32 | DllRegisterServer | |
| 33 | SLListCreate | |
| 34 | SLListDestroy | |
| 35 | SLListAddNode | |
| 36 | SLListRemoveNode | |
| 37 | SLListGetHead | |
| 38 | SLListGetNext | |
| 39 | SLListGetData | |
| 40 | SLListSetData | |
| 41 | DllUnregisterServer | |
| 42 | DLListCreate | |
| 43 | DLListDestroy | |
| 44 | DLListAddNode | |
| 45 | DLListRemoveNode | |
| 46 | DLListGetHead | |
| 47 | DLListGetNext | |
| 48 | DLListGetPrev | |
| 49 | DLListGetData | |
| 50 | DLListSetData | |
| 51 | OpenProcessInfo | |
| 52 | CloseProcessInfo | |
| 53 | IsFileLocked | |
| 54 | EnableNTPrivilege | |
| 55 | DisableNTPrivilege | |
| 56 | EnableDebugPrivileges | |
| 57 | DisableDebugPrivileges | |
| 58 | LookupAppFriendlyName | |
| 59 | IsModuleLoadedByProcess | |
| 60 | IsModuleLoadedByProcessEx | |
| 61 | ShutdownProcess | |
| 62 | OpenProcessDisplayNames | |
| 63 | CloseProcessDisplayNames | |
| 64 | GetProcessListFromFileList | |
| 65 | OpenProcessList | |
| 66 | CloseProcessList | |
| 67 | EnumerateProcesses | |
| 68 | AddInfToList | |
| 69 | CreateInfList | |
| 70 | PopulateInfFileList | |
| 71 | DestroyInfList | |
| 72 | OpenDriveSpaceList | |
| 73 | CloseDriveSpaceList | |
| 74 | CalculateRequiredDriveSpace | |
| 75 | OpenDriveSpaceListFromInfList | |
| 76 | RunDLL32_FilterRunOnceExRegistration | |
| 77 | AddFilterRunOnceExRegistrationToRegistry | |
| 78 | RemoveFilterRunOnceExRegistrationFromRegistry | |
| 79 | FilterRunOnceExRegistration | |
| 80 | BackupRegKey | |
| 81 | RestoreRegKey | |
| 82 | RegVersion | |
| 83 | RegVersionEx | |
| 84 | LoadRegVersion | |
| 85 | LoadRegVersionEx | |
| 86 | GetProgramFilesDirectory | |
| 87 | GetProgramFilesCommonFilesDirectory | |
| 88 | OpenPendingRenameList | |
| 89 | ClosePendingRenameList | |
| 90 | ParseVersionDataFromString | |
| 91 | ParseVersionDataFromStringEx | |
| 92 | CompareVersionData | |
| 93 | CompareVersionDataEx | |
| 94 | IsExceptionInf | |
| 95 | IsExceptionInfEx | |
| 96 | CreateRegKeyBackupList | |
| 97 | DestroyRegKeyBackupList | |
| 98 | RegKeyBackup | |
| 99 | RegKeyRestore | |
| 100 | SaveRegKeyBackupToFile | |
| 101 | LoadRegKeyBackupFromFile | |
| 102 | BackupCatalog | |
| 103 | RestoreCatalog | |
| 104 | DoesFileExist |
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 | ; | |
| 7 | LIBRARY ODBCCR32.dll | |
| 8 | EXPORTS | |
| 9 | SQLBindCol | |
| 10 | SQLCancel | |
| 11 | ReleaseCLStmtResources | |
| 12 | SQLExecDirect | |
| 13 | SQLExecute | |
| 14 | SQLFetch | |
| 15 | SQLFreeStmt | |
| 16 | SQLPrepare | |
| 17 | SQLRowCount | |
| 18 | SQLTransact | |
| 19 | SQLCloseCursor | |
| 20 | SQLEndTran | |
| 21 | SQLFetchScroll | |
| 22 | SQLFreeHandle | |
| 23 | SQLGetDescField | |
| 24 | SQLGetDescRec | |
| 25 | SQLGetStmtAttr | |
| 26 | SQLSetConnectAttr | |
| 27 | SQLGetData | |
| 28 | SQLGetInfo | |
| 29 | SQLGetStmtOption | |
| 30 | SQLParamData | |
| 31 | SQLPutData | |
| 32 | SQLSetConnectOption | |
| 33 | SQLSetStmtOption | |
| 34 | SQLExtendedFetch | |
| 35 | SQLMoreResults | |
| 36 | SQLNativeSql | |
| 37 | SQLNumParams | |
| 38 | SQLParamOptions | |
| 39 | SQLSetPos | |
| 40 | SQLSetScrollOptions | |
| 41 | SQLBindParameter | |
| 42 | SQLSetDescField | |
| 43 | SQLSetDescRec | |
| 44 | SQLSetStmtAttr | |
| 45 | SQLBulkOperations |
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 | ; | |
| 7 | LIBRARY ODBCCR32.dll | |
| 8 | EXPORTS | |
| 9 | SQLBindCol | |
| 10 | SQLCancel | |
| 11 | ReleaseCLStmtResources | |
| 12 | SQLExecDirect | |
| 13 | SQLExecute | |
| 14 | SQLFetch | |
| 15 | SQLFreeStmt | |
| 16 | SQLPrepare | |
| 17 | SQLRowCount | |
| 18 | SQLTransact | |
| 19 | SQLCloseCursor | |
| 20 | SQLEndTran | |
| 21 | SQLFetchScroll | |
| 22 | SQLFreeHandle | |
| 23 | SQLGetDescField | |
| 24 | SQLGetDescRec | |
| 25 | SQLGetStmtAttr | |
| 26 | SQLSetConnectAttr | |
| 27 | SQLGetData | |
| 28 | SQLGetInfo | |
| 29 | SQLGetStmtOption | |
| 30 | SQLParamData | |
| 31 | SQLPutData | |
| 32 | SQLSetConnectOption | |
| 33 | SQLSetStmtOption | |
| 34 | SQLExtendedFetch | |
| 35 | SQLMoreResults | |
| 36 | SQLNativeSql | |
| 37 | SQLNumParams | |
| 38 | SQLParamOptions | |
| 39 | SQLSetPos | |
| 40 | SQLSetScrollOptions | |
| 41 | SQLBindParameter | |
| 42 | SQLSetDescField | |
| 43 | SQLSetDescRec | |
| 44 | SQLSetStmtAttr | |
| 45 | SQLBulkOperations |
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 | ; | |
| 7 | LIBRARY ODBCTRAC.dll | |
| 8 | EXPORTS | |
| 9 | TraceSQLAllocConnect | |
| 10 | TraceSQLAllocEnv | |
| 11 | TraceSQLAllocStmt | |
| 12 | TraceSQLBindCol | |
| 13 | TraceSQLCancel | |
| 14 | TraceSQLColAttributes | |
| 15 | TraceSQLConnect | |
| 16 | TraceSQLDescribeCol | |
| 17 | TraceSQLDisconnect | |
| 18 | TraceSQLError | |
| 19 | TraceSQLExecDirect | |
| 20 | TraceSQLExecute | |
| 21 | TraceSQLFetch | |
| 22 | TraceSQLFreeConnect | |
| 23 | TraceSQLFreeEnv | |
| 24 | TraceSQLFreeStmt | |
| 25 | TraceSQLGetCursorName | |
| 26 | TraceSQLNumResultCols | |
| 27 | TraceSQLPrepare | |
| 28 | TraceSQLRowCount | |
| 29 | TraceSQLSetCursorName | |
| 30 | TraceSQLSetParam | |
| 31 | TraceSQLTransact | |
| 32 | TraceSQLAllocHandle | |
| 33 | TraceSQLBindParam | |
| 34 | TraceSQLCloseCursor | |
| 35 | TraceSQLColAttribute | |
| 36 | TraceSQLCopyDesc | |
| 37 | TraceSQLEndTran | |
| 38 | TraceSQLFetchScroll | |
| 39 | TraceSQLFreeHandle | |
| 40 | TraceSQLGetConnectAttr | |
| 41 | TraceSQLGetDescField | |
| 42 | TraceSQLGetDescRec | |
| 43 | TraceSQLGetDiagField | |
| 44 | TraceSQLGetDiagRec | |
| 45 | TraceSQLGetEnvAttr | |
| 46 | TraceSQLGetStmtAttr | |
| 47 | TraceSQLSetConnectAttr | |
| 48 | TraceSQLColumns | |
| 49 | TraceSQLDriverConnect | |
| 50 | TraceSQLGetConnectOption | |
| 51 | TraceSQLGetData | |
| 52 | TraceSQLGetFunctions | |
| 53 | TraceSQLGetInfo | |
| 54 | TraceSQLGetStmtOption | |
| 55 | TraceSQLGetTypeInfo | |
| 56 | TraceSQLParamData | |
| 57 | TraceSQLPutData | |
| 58 | TraceSQLSetConnectOption | |
| 59 | TraceSQLSetStmtOption | |
| 60 | TraceSQLSpecialColumns | |
| 61 | TraceSQLStatistics | |
| 62 | TraceSQLTables | |
| 63 | TraceSQLBrowseConnect | |
| 64 | TraceSQLColumnPrivileges | |
| 65 | TraceSQLDataSources | |
| 66 | TraceSQLDescribeParam | |
| 67 | TraceSQLExtendedFetch | |
| 68 | TraceSQLForeignKeys | |
| 69 | TraceSQLMoreResults | |
| 70 | TraceSQLNativeSql | |
| 71 | TraceSQLNumParams | |
| 72 | TraceSQLParamOptions | |
| 73 | TraceSQLPrimaryKeys | |
| 74 | TraceSQLProcedureColumns | |
| 75 | TraceSQLProcedures | |
| 76 | TraceSQLSetPos | |
| 77 | TraceSQLSetScrollOptions | |
| 78 | TraceSQLTablePrivileges | |
| 79 | TraceSQLDrivers | |
| 80 | TraceSQLBindParameter | |
| 81 | TraceSQLSetDescField | |
| 82 | TraceSQLSetDescRec | |
| 83 | TraceSQLSetEnvAttr | |
| 84 | TraceSQLSetStmtAttr | |
| 85 | TraceSQLAllocHandleStd | |
| 86 | TraceSQLBulkOperations | |
| 87 | FireVSDebugEvent | |
| 88 | TraceVSControl | |
| 89 | TraceSQLColAttributesW | |
| 90 | TraceSQLConnectW | |
| 91 | TraceSQLDescribeColW | |
| 92 | TraceSQLErrorW | |
| 93 | TraceSQLExecDirectW | |
| 94 | TraceSQLGetCursorNameW | |
| 95 | TraceSQLPrepareW | |
| 96 | TraceSQLSetCursorNameW | |
| 97 | TraceSQLColAttributeW | |
| 98 | TraceSQLGetConnectAttrW | |
| 99 | TraceSQLGetDescFieldW | |
| 100 | TraceSQLGetDescRecW | |
| 101 | TraceSQLGetDiagFieldW | |
| 102 | TraceSQLGetDiagRecW | |
| 103 | TraceSQLGetStmtAttrW | |
| 104 | TraceSQLSetConnectAttrW | |
| 105 | TraceSQLColumnsW | |
| 106 | TraceSQLDriverConnectW | |
| 107 | TraceSQLGetConnectOptionW | |
| 108 | TraceSQLGetInfoW | |
| 109 | TraceSQLGetTypeInfoW | |
| 110 | TraceSQLSetConnectOptionW | |
| 111 | TraceSQLSpecialColumnsW | |
| 112 | TraceSQLStatisticsW | |
| 113 | TraceSQLTablesW | |
| 114 | TraceSQLBrowseConnectW | |
| 115 | TraceSQLColumnPrivilegesW | |
| 116 | TraceSQLDataSourcesW | |
| 117 | TraceSQLForeignKeysW | |
| 118 | TraceSQLNativeSqlW | |
| 119 | TraceSQLPrimaryKeysW | |
| 120 | TraceSQLProcedureColumnsW | |
| 121 | TraceSQLProceduresW | |
| 122 | TraceSQLTablePrivilegesW | |
| 123 | TraceSQLDriversW | |
| 124 | TraceSQLSetDescFieldW | |
| 125 | TraceSQLSetStmtAttrW | |
| 126 | TraceSQLAllocHandleStdW | |
| 127 | TraceReturn | |
| 128 | TraceOpenLogFile | |
| 129 | TraceCloseLogFile | |
| 130 | TraceVersion |
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 | ; | |
| 7 | LIBRARY OEIMPORT.dll | |
| 8 | EXPORTS | |
| 9 | PerformImport | |
| 10 | ExportMessages | |
| 11 | PerformMigration | |
| 12 | DllCanUnloadNow | |
| 13 | DllGetClassObject | |
| 14 | DllRegisterServer | |
| 15 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY OEMIGLIB.dll | |
| 8 | EXPORTS | |
| 9 | OE5SimpleCreate | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY OLECLI32.dll | |
| 8 | EXPORTS | |
| 9 | WEP | |
| 10 | OleDelete | |
| 11 | OleSaveToStream | |
| 12 | OleLoadFromStream | |
| 13 | OleClone | |
| 14 | OleCopyFromLink | |
| 15 | OleEqual | |
| 16 | OleQueryLinkFromClip | |
| 17 | OleQueryCreateFromClip | |
| 18 | OleCreateLinkFromClip | |
| 19 | OleCreateFromClip | |
| 20 | OleCopyToClipboard | |
| 21 | OleQueryType | |
| 22 | OleSetHostNames | |
| 23 | OleSetTargetDevice | |
| 24 | OleSetBounds | |
| 25 | OleQueryBounds | |
| 26 | OleDraw | |
| 27 | OleQueryOpen | |
| 28 | OleActivate | |
| 29 | OleUpdate | |
| 30 | OleReconnect | |
| 31 | OleGetLinkUpdateOptions | |
| 32 | OleSetLinkUpdateOptions | |
| 33 | OleEnumFormats | |
| 34 | OleClose | |
| 35 | OleGetData | |
| 36 | OleSetData | |
| 37 | OleQueryProtocol | |
| 38 | OleQueryOutOfDate | |
| 39 | OleObjectConvert | |
| 40 | OleCreateFromTemplate | |
| 41 | OleCreate | |
| 42 | OleQueryReleaseStatus | |
| 43 | OleQueryReleaseError | |
| 44 | OleQueryReleaseMethod | |
| 45 | OleCreateFromFile | |
| 46 | OleCreateLinkFromFile | |
| 47 | OleRelease | |
| 48 | OleRegisterClientDoc | |
| 49 | OleRevokeClientDoc | |
| 50 | OleRenameClientDoc | |
| 51 | OleRevertClientDoc | |
| 52 | OleSavedClientDoc | |
| 53 | OleRename | |
| 54 | OleEnumObjects | |
| 55 | OleQueryName | |
| 56 | OleSetColorScheme | |
| 57 | OleRequestData | |
| 58 | OleLockServer | |
| 59 | OleUnlockServer | |
| 60 | OleQuerySize | |
| 61 | OleExecute | |
| 62 | OleCreateInvisible | |
| 63 | OleQueryClientVersion | |
| 64 | OleIsDcMeta | |
| 65 | DocWndProc | |
| 66 | SrvrWndProc | |
| 67 | MfCallbackFunc | |
| 68 | DefLoadFromStream | |
| 69 | DefCreateFromClip | |
| 70 | DefCreateLinkFromClip | |
| 71 | DefCreateFromTemplate | |
| 72 | DefCreate | |
| 73 | DefCreateFromFile | |
| 74 | DefCreateLinkFromFile | |
| 75 | DefCreateInvisible | |
| 76 | LeRelease | |
| 77 | LeShow | |
| 78 | LeGetData | |
| 79 | LeSetData | |
| 80 | LeSetHostNames | |
| 81 | LeSetTargetDevice | |
| 82 | LeSetBounds | |
| 83 | LeSaveToStream | |
| 84 | LeClone | |
| 85 | LeCopyFromLink | |
| 86 | LeEqual | |
| 87 | LeCopy | |
| 88 | LeQueryType | |
| 89 | LeQueryBounds | |
| 90 | LeDraw | |
| 91 | LeQueryOpen | |
| 92 | LeActivate | |
| 93 | LeUpdate | |
| 94 | LeReconnect | |
| 95 | LeEnumFormat | |
| 96 | LeQueryProtocol | |
| 97 | LeQueryOutOfDate | |
| 98 | LeObjectConvert | |
| 99 | LeChangeData | |
| 100 | LeClose | |
| 101 | LeGetUpdateOptions | |
| 102 | LeSetUpdateOptions | |
| 103 | LeExecute | |
| 104 | LeObjectLong | |
| 105 | LeCreateInvisible | |
| 106 | MfRelease | |
| 107 | MfGetData | |
| 108 | MfSaveToStream | |
| 109 | MfClone | |
| 110 | MfEqual | |
| 111 | MfCopy | |
| 112 | MfQueryBounds | |
| 113 | MfDraw | |
| 114 | MfEnumFormat | |
| 115 | MfChangeData | |
| 116 | BmRelease | |
| 117 | BmGetData | |
| 118 | BmSaveToStream | |
| 119 | BmClone | |
| 120 | BmEqual | |
| 121 | BmCopy | |
| 122 | BmQueryBounds | |
| 123 | BmDraw | |
| 124 | BmEnumFormat | |
| 125 | BmChangeData | |
| 126 | DibRelease | |
| 127 | DibGetData | |
| 128 | DibSaveToStream | |
| 129 | DibClone | |
| 130 | DibEqual | |
| 131 | DibCopy | |
| 132 | DibQueryBounds | |
| 133 | DibDraw | |
| 134 | DibEnumFormat | |
| 135 | DibChangeData | |
| 136 | GenRelease | |
| 137 | GenGetData | |
| 138 | GenSetData | |
| 139 | GenSaveToStream | |
| 140 | GenClone | |
| 141 | GenEqual | |
| 142 | GenCopy | |
| 143 | GenQueryBounds | |
| 144 | GenDraw | |
| 145 | GenEnumFormat | |
| 146 | GenChangeData | |
| 147 | ErrShow | |
| 148 | ErrSetData | |
| 149 | ErrSetHostNames | |
| 150 | ErrSetTargetDevice | |
| 151 | ErrSetBounds | |
| 152 | ErrCopyFromLink | |
| 153 | ErrQueryOpen | |
| 154 | ErrActivate | |
| 155 | ErrClose | |
| 156 | ErrUpdate | |
| 157 | ErrReconnect | |
| 158 | ErrQueryProtocol | |
| 159 | ErrQueryOutOfDate | |
| 160 | ErrObjectConvert | |
| 161 | ErrGetUpdateOptions | |
| 162 | ErrSetUpdateOptions | |
| 163 | ErrExecute | |
| 164 | ErrObjectLong | |
| 165 | PbLoadFromStream | |
| 166 | PbCreateFromClip | |
| 167 | PbCreateLinkFromClip | |
| 168 | PbCreateFromTemplate | |
| 169 | PbCreate | |
| 170 | PbDraw | |
| 171 | PbQueryBounds | |
| 172 | PbCopyToClipboard | |
| 173 | PbCreateFromFile | |
| 174 | PbCreateLinkFromFile | |
| 175 | PbEnumFormats | |
| 176 | PbGetData | |
| 177 | PbCreateInvisible | |
| 178 | ObjQueryName | |
| 179 | ObjRename | |
| 180 | ObjQueryType | |
| 181 | ObjQuerySize | |
| 182 | ConnectDlgProc | |
| 183 | SetNetName | |
| 184 | CheckNetDrive | |
| 185 | SetNextNetDrive | |
| 186 | GetTaskVisibleWindow |
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 | ; | |
| 7 | LIBRARY OLECNV32.dll | |
| 8 | EXPORTS | |
| 9 | QD2GDI |
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 | ; | |
| 7 | LIBRARY OLEDB32.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | OpenDSLFile | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY OLESVR32.dll | |
| 8 | EXPORTS | |
| 9 | WEP | |
| 10 | OleRegisterServer | |
| 11 | OleRevokeServer | |
| 12 | OleBlockServer | |
| 13 | OleUnblockServer | |
| 14 | OleRegisterServerDoc | |
| 15 | OleRevokeServerDoc | |
| 16 | OleRenameServerDoc | |
| 17 | OleRevertServerDoc | |
| 18 | OleSavedServerDoc | |
| 19 | OleRevokeObject | |
| 20 | OleQueryServerVersion | |
| 21 | SrvrWndProc | |
| 22 | DocWndProc | |
| 23 | ItemWndProc | |
| 24 | SendDataMsg | |
| 25 | FindItemWnd | |
| 26 | ItemCallBack | |
| 27 | TerminateClients | |
| 28 | TerminateDocClients | |
| 29 | DeleteClientInfo | |
| 30 | SendRenameMsg | |
| 31 | EnumForTerminate |
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 | ; | |
| 6 | LIBRARY "P2PCOLLAB.dll" | |
| 7 | EXPORTS | |
| 8 | AIApplicationGetRegistrationInfo | |
| 9 | AIApplicationRegister | |
| 10 | AIApplicationUnregister | |
| 11 | AIAsyncSend | |
| 12 | AICancel | |
| 13 | AICloseHandle | |
| 14 | AIEnumApplicationRegistrationInfo | |
| 15 | AIGetApplicationLaunchInfo | |
| 16 | AIGetResponse | |
| 17 | AIRespond | |
| 18 | AIShutdown | |
| 19 | AISpecificStart | |
| 20 | AISpecificStop | |
| 21 | AIStartup | |
| 22 | AISyncSend | |
| 23 | CollabAddContact | |
| 24 | CollabConvertBitmapToPicture | |
| 25 | CollabConvertPicture | |
| 26 | CollabConvertPictureToBitmap | |
| 27 | CollabCreateXMLContactBlob | |
| 28 | CollabDeleteContact | |
| 29 | CollabDisableAutoStart | |
| 30 | CollabDisplayPrivacyWebpage | |
| 31 | CollabEnableAutoStart | |
| 32 | CollabEnumContacts | |
| 33 | CollabExportContact | |
| 34 | CollabExportScopedContact | |
| 35 | CollabGetContact | |
| 36 | CollabGetContactPicture | |
| 37 | CollabGetScopedContact | |
| 38 | CollabGetSignInInfo | |
| 39 | CollabGetUserSettings | |
| 40 | CollabLayerInitialize | |
| 41 | CollabLayerShutdown | |
| 42 | CollabLoadPrivacyStmt | |
| 43 | CollabParseContact | |
| 44 | CollabPublicationInitialize | |
| 45 | CollabPublicationListen | |
| 46 | CollabPublicationPublish | |
| 47 | CollabPublicationShutdown | |
| 48 | CollabPublicationStopListen | |
| 49 | CollabPublicationUnpublish | |
| 50 | CollabRegisterIPAddrChange | |
| 51 | CollabSetSignInInfo | |
| 52 | CollabSetUserSettings | |
| 53 | CollabSetup | |
| 54 | CollabTrimNicknameSpaces | |
| 55 | CollabUnregisterIPAddrChange | |
| 56 | CollabUpdateContact | |
| 57 | ContactManagerCleanup | |
| 58 | ContactManagerInit | |
| 59 | PeopleNearMeGetEndpointsNearMe | |
| 60 | PeopleNearMeInitialize | |
| 61 | PeopleNearMeSignin | |
| 62 | PeopleNearMeSignout | |
| 63 | PeopleNearMeUninitialize | |
| 64 | PeopleNearMeUpdateEndpointName | |
| 65 | PeopleNearMeUpdateFriendlyName | |
| 66 | SPDeleteContact | |
| 67 | SPEndRequest | |
| 68 | SPGetApplications | |
| 69 | SPGetEndpointName | |
| 70 | SPGetEndpoints | |
| 71 | SPGetObjects | |
| 72 | SPGetPresenceInfo | |
| 73 | SPPublishObject | |
| 74 | SPQueryContactData | |
| 75 | SPRegisterApplication | |
| 76 | SPRequestPublishedItems | |
| 77 | SPSetEndpointName | |
| 78 | SPSetPresenceInfo | |
| 79 | SPSubscribeEndpoint | |
| 80 | SPUnpublishObjects | |
| 81 | SPUnregisterApplication | |
| 82 | SPUnsubscribeEndpoint | |
| 83 | SPUnsubscribeOnRundown | |
| 84 | SPUpdateContact | |
| 85 | SPUpdateMeContact | |
| 86 | SPUpdateUserPicture | |
| 87 | SPUpdateUserSettings | |
| 88 | SSPAddCredentials | |
| 89 | SSPRemoveCredentials | |
| 90 | DllMain | |
| 91 | InitSecurityInterfaceW | |
| 92 | QuerySecurityPackageInfoW |
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 | ; | |
| 7 | LIBRARY PAUTOENR.dll | |
| 8 | EXPORTS | |
| 9 | CertAutoEnrollment | |
| 10 | CertAutoRemove | |
| 11 | ProvAutoEnrollment |
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 | ; | |
| 6 | LIBRARY "pdh.dll" | |
| 7 | EXPORTS | |
| 8 | PdhPlaGetLogFileNameA | |
| 9 | DllInstall | |
| 10 | PdhAdd009CounterA | |
| 11 | PdhAdd009CounterW | |
| 12 | PdhAddCounterA | |
| 13 | PdhAddCounterW | |
| 14 | PdhAddEnglishCounterA | |
| 15 | PdhAddEnglishCounterW | |
| 16 | PdhBindInputDataSourceA | |
| 17 | PdhBindInputDataSourceW | |
| 18 | PdhBrowseCountersA | |
| 19 | PdhBrowseCountersHA | |
| 20 | PdhBrowseCountersHW | |
| 21 | PdhBrowseCountersW | |
| 22 | PdhCalculateCounterFromRawValue | |
| 23 | PdhCloseLog | |
| 24 | PdhCloseQuery | |
| 25 | PdhCollectQueryData | |
| 26 | PdhCollectQueryDataEx | |
| 27 | PdhCollectQueryDataWithTime | |
| 28 | PdhComputeCounterStatistics | |
| 29 | PdhConnectMachineA | |
| 30 | PdhConnectMachineW | |
| 31 | PdhCreateSQLTablesA | |
| 32 | PdhCreateSQLTablesW | |
| 33 | PdhEnumLogSetNamesA | |
| 34 | PdhEnumLogSetNamesW | |
| 35 | PdhEnumMachinesA | |
| 36 | PdhEnumMachinesHA | |
| 37 | PdhEnumMachinesHW | |
| 38 | PdhEnumMachinesW | |
| 39 | PdhEnumObjectItemsA | |
| 40 | PdhEnumObjectItemsHA | |
| 41 | PdhEnumObjectItemsHW | |
| 42 | PdhEnumObjectItemsW | |
| 43 | PdhEnumObjectsA | |
| 44 | PdhEnumObjectsHA | |
| 45 | PdhEnumObjectsHW | |
| 46 | PdhEnumObjectsW | |
| 47 | PdhExpandCounterPathA | |
| 48 | PdhExpandCounterPathW | |
| 49 | PdhExpandWildCardPathA | |
| 50 | PdhExpandWildCardPathHA | |
| 51 | PdhExpandWildCardPathHW | |
| 52 | PdhExpandWildCardPathW | |
| 53 | PdhFormatFromRawValue | |
| 54 | PdhGetCounterInfoA | |
| 55 | PdhGetCounterInfoW | |
| 56 | PdhGetCounterTimeBase | |
| 57 | PdhGetDataSourceTimeRangeA | |
| 58 | PdhGetDataSourceTimeRangeH | |
| 59 | PdhGetDataSourceTimeRangeW | |
| 60 | PdhGetDefaultPerfCounterA | |
| 61 | PdhGetDefaultPerfCounterHA | |
| 62 | PdhGetDefaultPerfCounterHW | |
| 63 | PdhGetDefaultPerfCounterW | |
| 64 | PdhGetDefaultPerfObjectA | |
| 65 | PdhGetDefaultPerfObjectHA | |
| 66 | PdhGetDefaultPerfObjectHW | |
| 67 | PdhGetDefaultPerfObjectW | |
| 68 | PdhGetDllVersion | |
| 69 | PdhGetExplainText | |
| 70 | PdhGetFormattedCounterArrayA | |
| 71 | PdhGetFormattedCounterArrayW | |
| 72 | PdhGetFormattedCounterValue | |
| 73 | PdhGetLogFileSize | |
| 74 | PdhGetLogFileTypeA | |
| 75 | PdhGetLogFileTypeW | |
| 76 | PdhGetLogSetGUID | |
| 77 | PdhGetRawCounterArrayA | |
| 78 | PdhGetRawCounterArrayW | |
| 79 | PdhGetRawCounterValue | |
| 80 | PdhIsRealTimeQuery | |
| 81 | PdhListLogFileHeaderA | |
| 82 | PdhListLogFileHeaderW | |
| 83 | PdhLookupPerfIndexByNameA | |
| 84 | PdhLookupPerfIndexByNameW | |
| 85 | PdhLookupPerfNameByIndexA | |
| 86 | PdhLookupPerfNameByIndexW | |
| 87 | PdhMakeCounterPathA | |
| 88 | PdhMakeCounterPathW | |
| 89 | PdhOpenLogA | |
| 90 | PdhOpenLogW | |
| 91 | PdhOpenQuery | |
| 92 | PdhOpenQueryA | |
| 93 | PdhOpenQueryH | |
| 94 | PdhOpenQueryW | |
| 95 | PdhParseCounterPathA | |
| 96 | PdhParseCounterPathW | |
| 97 | PdhParseInstanceNameA | |
| 98 | PdhParseInstanceNameW | |
| 99 | PdhPlaAddItemA | |
| 100 | PdhPlaAddItemW | |
| 101 | PdhPlaCreateA | |
| 102 | PdhPlaCreateW | |
| 103 | PdhPlaDeleteA | |
| 104 | PdhPlaDeleteW | |
| 105 | PdhPlaDowngradeW | |
| 106 | PdhPlaEnumCollectionsA | |
| 107 | PdhPlaEnumCollectionsW | |
| 108 | PdhPlaGetInfoA | |
| 109 | PdhPlaGetInfoW | |
| 110 | PdhPlaGetLogFileNameW | |
| 111 | PdhPlaGetScheduleA | |
| 112 | PdhPlaGetScheduleW | |
| 113 | PdhPlaRemoveAllItemsA | |
| 114 | PdhPlaRemoveAllItemsW | |
| 115 | PdhPlaScheduleA | |
| 116 | PdhPlaScheduleW | |
| 117 | PdhPlaSetInfoA | |
| 118 | PdhPlaSetInfoW | |
| 119 | PdhPlaSetItemListA | |
| 120 | PdhPlaSetItemListW | |
| 121 | PdhPlaSetRunAsA | |
| 122 | PdhPlaSetRunAsW | |
| 123 | PdhPlaStartA | |
| 124 | PdhPlaStartW | |
| 125 | PdhPlaStopA | |
| 126 | PdhPlaStopW | |
| 127 | PdhPlaUpgradeW | |
| 128 | PdhPlaValidateInfoA | |
| 129 | PdhPlaValidateInfoW | |
| 130 | PdhReadRawLogRecord | |
| 131 | PdhRelogA | |
| 132 | PdhRelogW | |
| 133 | PdhRemoveCounter | |
| 134 | PdhSelectDataSourceA | |
| 135 | PdhSelectDataSourceW | |
| 136 | PdhSetCounterScaleFactor | |
| 137 | PdhSetDefaultRealTimeDataSource | |
| 138 | PdhSetLogSetRunID | |
| 139 | PdhSetQueryTimeRange | |
| 140 | PdhTranslate009CounterA | |
| 141 | PdhTranslate009CounterW | |
| 142 | PdhTranslateLocaleCounterA | |
| 143 | PdhTranslateLocaleCounterW | |
| 144 | PdhUpdateLogA | |
| 145 | PdhUpdateLogFileCatalog | |
| 146 | PdhUpdateLogW | |
| 147 | PdhValidatePathA | |
| 148 | PdhValidatePathExA | |
| 149 | PdhValidatePathExW | |
| 150 | PdhValidatePathW | |
| 151 | PdhVbAddCounter | |
| 152 | PdhVbCreateCounterPathList | |
| 153 | PdhVbGetCounterPathElements | |
| 154 | PdhVbGetCounterPathFromList | |
| 155 | PdhVbGetDoubleCounterValue | |
| 156 | PdhVbGetLogFileSize | |
| 157 | PdhVbGetOneCounterPath | |
| 158 | PdhVbIsGoodStatus | |
| 159 | PdhVbOpenLog | |
| 160 | PdhVbOpenQuery | |
| 161 | PdhVbUpdateLog | |
| 162 | PdhVerifySQLDBA | |
| 163 | PdhVerifySQLDBW | |
| 164 | PdhiPla2003SP1Installed | |
| 165 | PdhiPlaDowngrade | |
| 166 | PdhiPlaFormatBlanksA | |
| 167 | PdhiPlaFormatBlanksW | |
| 168 | PdhiPlaGetVersion | |
| 169 | PdhiPlaRunAs | |
| 170 | PdhiPlaSetRunAs | |
| 171 | PdhiPlaUpgrade | |
| 172 | PlaTimeInfoToMilliSeconds | |
| 173 | PdhpGetLoggerName |
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 | ; | |
| 7 | LIBRARY PIDGen.dll | |
| 8 | EXPORTS | |
| 9 | PIDGenA | |
| 10 | PIDGenW | |
| 11 | PIDGenSimpA | |
| 12 | PIDGenSimpW | |
| 13 | SetupPIDGenA | |
| 14 | SetupPIDGenW | |
| 15 | PIDGenExA | |
| 16 | PIDGenExW | |
| 17 | SetupPIDGenExA | |
| 18 | SetupPIDGenExW | |
| 19 | PIDGenEx2A | |
| 20 | PIDGenEx2W |
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 | ; | |
| 7 | LIBRARY IMESKDic.dll | |
| 8 | EXPORTS | |
| 9 | CreateIImeSkdicInstance |
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 | ; | |
| 7 | LIBRARY POLICMAN.DLL | |
| 8 | EXPORTS | |
| 9 | CreateADContainers | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY POLSTORE.DLL | |
| 8 | EXPORTS | |
| 9 | DllRegisterServer | |
| 10 | DllUnregisterServer | |
| 11 | IPSecAllocPolMem | |
| 12 | IPSecAllocPolStr | |
| 13 | IPSecAssignPolicy | |
| 14 | IPSecChooseDriverBootMode | |
| 15 | IPSecClearWMIStore | |
| 16 | IPSecClosePolicyStore | |
| 17 | IPSecCopyAuthMethod | |
| 18 | IPSecCopyFilterData | |
| 19 | IPSecCopyFilterSpec | |
| 20 | IPSecCopyISAKMPData | |
| 21 | IPSecCopyNFAData | |
| 22 | IPSecCopyNegPolData | |
| 23 | IPSecCopyPolicyData | |
| 24 | IPSecCreateFilterData | |
| 25 | IPSecCreateISAKMPData | |
| 26 | IPSecCreateNFAData | |
| 27 | IPSecCreateNegPolData | |
| 28 | IPSecCreatePolicyData | |
| 29 | IPSecDeleteFilterData | |
| 30 | IPSecDeleteISAKMPData | |
| 31 | IPSecDeleteNFAData | |
| 32 | IPSecDeleteNegPolData | |
| 33 | IPSecDeletePolicyData | |
| 34 | IPSecEnumFilterData | |
| 35 | IPSecEnumISAKMPData | |
| 36 | IPSecEnumNFAData | |
| 37 | IPSecEnumNegPolData | |
| 38 | IPSecEnumPolicyData | |
| 39 | IPSecExportPolicies | |
| 40 | IPSecFreeFilterData | |
| 41 | IPSecFreeFilterSpec | |
| 42 | IPSecFreeFilterSpecs | |
| 43 | IPSecFreeISAKMPData | |
| 44 | IPSecFreeMulFilterData | |
| 45 | IPSecFreeMulISAKMPData | |
| 46 | IPSecFreeMulNFAData | |
| 47 | IPSecFreeMulNegPolData | |
| 48 | IPSecFreeMulPolicyData | |
| 49 | IPSecFreeNFAData | |
| 50 | IPSecFreeNegPolData | |
| 51 | IPSecFreePolMem | |
| 52 | IPSecFreePolStr | |
| 53 | IPSecFreePolicyData | |
| 54 | IPSecGetAssignedDomainPolicyName | |
| 55 | IPSecGetAssignedPolicyData | |
| 56 | IPSecGetFilterData | |
| 57 | IPSecGetISAKMPData | |
| 58 | IPSecGetNegPolData | |
| 59 | IPSecImportPolicies | |
| 60 | IPSecIsDomainPolicyAssigned | |
| 61 | IPSecIsLocalPolicyAssigned | |
| 62 | IPSecOpenPolicyStore | |
| 63 | IPSecReallocatePolMem | |
| 64 | IPSecReallocatePolStr | |
| 65 | IPSecRestoreDefaultPolicies | |
| 66 | IPSecSetFilterData | |
| 67 | IPSecSetISAKMPData | |
| 68 | IPSecSetNFAData | |
| 69 | IPSecSetNegPolData | |
| 70 | IPSecSetPolicyData | |
| 71 | IPSecUnassignPolicy | |
| 72 | WriteDirectoryPolicyToWMI |
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 | ; | |
| 7 | LIBRARY PRINTUI.dll | |
| 8 | EXPORTS | |
| 9 | ConstructPrinterFriendlyName | |
| 10 | DocumentPropertiesWrap | |
| 11 | PnPInterface | |
| 12 | PrintUIEntryW | |
| 13 | PrinterPropPageProvider | |
| 14 | ConnectToPrinterDlg | |
| 15 | ConnectToPrinterPropertyPage | |
| 16 | DllCanUnloadNow | |
| 17 | DllGetClassObject | |
| 18 | DllMain | |
| 19 | GetLegacyPrintUI | |
| 20 | PrintNotifyTray_Exit | |
| 21 | PrintNotifyTray_Init | |
| 22 | RegisterPrintNotify | |
| 23 | ShowErrorMessageHR | |
| 24 | ShowErrorMessageSC | |
| 25 | UnregisterPrintNotify | |
| 26 | bFolderEnumPrinters | |
| 27 | bFolderGetPrinter | |
| 28 | bFolderRefresh | |
| 29 | bPrinterSetup | |
| 30 | vDocumentDefaults | |
| 31 | vPrinterPropPages | |
| 32 | vQueueCreate | |
| 33 | vServerPropPages |
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 | ; | |
| 7 | LIBRARY PROFMAP.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | InitializeProfileMappingApi | |
| 11 | RemapAndMoveUserA | |
| 12 | RemapAndMoveUserW | |
| 13 | RemapUserProfileA | |
| 14 | RemapUserProfileW |
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 | ; | |
| 7 | LIBRARY PSBASE.dll | |
| 8 | EXPORTS | |
| 9 | FPasswordChangeNotify | |
| 10 | SPCloseItem | |
| 11 | SPOpenItem | |
| 12 | SPAcquireContext | |
| 13 | SPCreateSubtype | |
| 14 | SPCreateType | |
| 15 | SPDeleteItem | |
| 16 | SPDeleteSubtype | |
| 17 | SPDeleteType | |
| 18 | SPEnumItems | |
| 19 | SPEnumSubtypes | |
| 20 | SPEnumTypes | |
| 21 | SPGetProvInfo | |
| 22 | SPGetProvParam | |
| 23 | SPGetSubtypeInfo | |
| 24 | SPGetTypeInfo | |
| 25 | SPProviderInitialize | |
| 26 | SPReadItem | |
| 27 | SPReleaseContext | |
| 28 | SPSetProvParam | |
| 29 | SPWriteItem |
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 | ; | |
| 7 | LIBRARY PschdPrf.dll | |
| 8 | EXPORTS | |
| 9 | ClosePschedPerformanceData | |
| 10 | CollectPschedPerformanceData | |
| 11 | OpenPschedPerformanceData |
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 | ; | |
| 7 | LIBRARY PSTORSVC.dll | |
| 8 | EXPORTS | |
| 9 | PSTOREServiceMain | |
| 10 | ServiceEntry | |
| 11 | Start |
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 | ; | |
| 7 | LIBRARY qmgr.dll | |
| 8 | EXPORTS | |
| 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 | |
| 33 | ServiceMain | |
| 34 | ; private: static struct GenericStringHandle<unsigned short>::StringData GenericStringHandle<unsigned short>::s_EmptyString | |
| 35 | ?s_EmptyString@?$GenericStringHandle@G@@0UStringData@1@A DATA | |
| 36 | BITSServiceMain | |
| 37 | DllRegisterServer | |
| 38 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY qosname.dll | |
| 8 | EXPORTS | |
| 9 | WPUGetQOSTemplate | |
| 10 | WSCInstallQOSTemplate | |
| 11 | WSCRemoveQOSTemplate |
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 | ; | |
| 7 | LIBRARY rasman.dll | |
| 8 | EXPORTS | |
| 9 | DwRasGetHostByName | |
| 10 | IsRasmanProcess | |
| 11 | RasActivateRoute | |
| 12 | RasActivateRouteEx | |
| 13 | RasAddConnectionPort | |
| 14 | RasAddNotification | |
| 15 | RasAllocateRoute | |
| 16 | RasBundleClearStatistics | |
| 17 | RasBundleClearStatisticsEx | |
| 18 | RasBundleGetPort | |
| 19 | RasBundleGetStatistics | |
| 20 | RasBundleGetStatisticsEx | |
| 21 | RasCompressionGetInfo | |
| 22 | RasCompressionSetInfo | |
| 23 | RasConnectionEnum | |
| 24 | RasConnectionGetStatistics | |
| 25 | RasCreateConnection | |
| 26 | RasDeAllocateRoute | |
| 27 | RasDestroyConnection | |
| 28 | RasDeviceConnect | |
| 29 | RasDeviceEnum | |
| 30 | RasDeviceGetInfo | |
| 31 | RasDeviceSetInfo | |
| 32 | RasDoIke | |
| 33 | RasEnableIpSec | |
| 34 | RasEnumConnectionPorts | |
| 35 | RasEnumLanNets | |
| 36 | RasFindPrerequisiteEntry | |
| 37 | RasFreeBuffer | |
| 38 | RasGetBandwidthUtilization | |
| 39 | RasGetBestInterface | |
| 40 | RasGetBuffer | |
| 41 | RasGetCalledIdInfo | |
| 42 | RasGetConnectInfo | |
| 43 | RasGetConnectionParams | |
| 44 | RasGetConnectionUserData | |
| 45 | RasGetCustomScriptDll | |
| 46 | RasGetDevConfig | |
| 47 | RasGetDevConfigEx | |
| 48 | RasGetDeviceConfigInfo | |
| 49 | RasGetDeviceName | |
| 50 | RasGetDeviceNameW | |
| 51 | RasGetDialParams | |
| 52 | RasGetEapUserInfo | |
| 53 | RasGetFramingCapabilities | |
| 54 | RasGetHConnFromEntry | |
| 55 | RasGetHportFromConnection | |
| 56 | RasGetInfo | |
| 57 | RasGetInfoEx | |
| 58 | RasGetKey | |
| 59 | RasGetNdiswanDriverCaps | |
| 60 | RasGetNumPortOpen | |
| 61 | RasGetPortUserData | |
| 62 | RasGetProtocolInfo | |
| 63 | RasGetTimeSinceLastActivity | |
| 64 | RasGetUnicodeDeviceName | |
| 65 | RasGetUserCredentials | |
| 66 | RasInitialize | |
| 67 | RasInitializeNoWait | |
| 68 | RasIsIpSecEnabled | |
| 69 | RasIsPulseDial | |
| 70 | RasIsTrustedCustomDll | |
| 71 | RasLinkGetStatistics | |
| 72 | RasPnPControl | |
| 73 | RasPortBundle | |
| 74 | RasPortCancelReceive | |
| 75 | RasPortClearStatistics | |
| 76 | RasPortClose | |
| 77 | RasPortConnectComplete | |
| 78 | RasPortDisconnect | |
| 79 | RasPortEnum | |
| 80 | RasPortEnumProtocols | |
| 81 | RasPortFree | |
| 82 | RasPortGetBundle | |
| 83 | RasPortGetBundledPort | |
| 84 | RasPortGetFramingEx | |
| 85 | RasPortGetInfo | |
| 86 | RasPortGetProtocolCompression | |
| 87 | RasPortGetStatistics | |
| 88 | RasPortGetStatisticsEx | |
| 89 | RasPortListen | |
| 90 | RasPortOpen | |
| 91 | RasPortOpenEx | |
| 92 | RasPortReceive | |
| 93 | RasPortReceiveEx | |
| 94 | RasPortRegisterSlip | |
| 95 | RasPortReserve | |
| 96 | RasPortRetrieveUserData | |
| 97 | RasPortSend | |
| 98 | RasPortSetFraming | |
| 99 | RasPortSetFramingEx | |
| 100 | RasPortSetInfo | |
| 101 | RasPortSetProtocolCompression | |
| 102 | RasPortStoreUserData | |
| 103 | RasPppCallback | |
| 104 | RasPppChangePassword | |
| 105 | RasPppGetEapInfo | |
| 106 | RasPppGetInfo | |
| 107 | RasPppRetry | |
| 108 | RasPppSetEapInfo | |
| 109 | RasPppStart | |
| 110 | RasPppStarted | |
| 111 | RasPppStop | |
| 112 | RasProtocolEnum | |
| 113 | RasRPCBind | |
| 114 | RasRefConnection | |
| 115 | RasReferenceCustomCount | |
| 116 | RasReferenceRasman | |
| 117 | RasRegisterPnPEvent | |
| 118 | RasRegisterPnPHandler | |
| 119 | RasRegisterRedialCallback | |
| 120 | RasRequestNotification | |
| 121 | RasRpcConnect | |
| 122 | RasRpcConnectServer | |
| 123 | RasRpcDeleteEntry | |
| 124 | RasRpcDeviceEnum | |
| 125 | RasRpcDisconnect | |
| 126 | RasRpcDisconnectServer | |
| 127 | RasRpcEnumConnections | |
| 128 | RasRpcGetCountryInfo | |
| 129 | RasRpcGetDevConfig | |
| 130 | RasRpcGetErrorString | |
| 131 | RasRpcGetInstalledProtocols | |
| 132 | RasRpcGetInstalledProtocolsEx | |
| 133 | RasRpcGetSystemDirectory | |
| 134 | RasRpcGetUserPreferences | |
| 135 | RasRpcGetVersion | |
| 136 | RasRpcPortEnum | |
| 137 | RasRpcPortGetInfo | |
| 138 | RasRpcRemoteGetSystemDirectory | |
| 139 | RasRpcRemoteGetUserPreferences | |
| 140 | RasRpcRemoteRasDeleteEntry | |
| 141 | RasRpcRemoteSetUserPreferences | |
| 142 | RasRpcSetUserPreferences | |
| 143 | RasRpcUnloadDll | |
| 144 | RasSecurityDialogGetInfo | |
| 145 | RasSecurityDialogReceive | |
| 146 | RasSecurityDialogSend | |
| 147 | RasSendCreds | |
| 148 | RasSendNotification | |
| 149 | RasSendPppMessageToRasman | |
| 150 | RasServerPortClose | |
| 151 | RasSetAddressDisable | |
| 152 | RasSetBapPolicy | |
| 153 | RasSetCachedCredentials | |
| 154 | RasSetCalledIdInfo | |
| 155 | RasSetCommSettings | |
| 156 | RasSetConnectionParams | |
| 157 | RasSetConnectionUserData | |
| 158 | RasSetDevConfig | |
| 159 | RasSetDeviceConfigInfo | |
| 160 | RasSetDialParams | |
| 161 | RasSetEapLogonInfo | |
| 162 | RasSetEapUserInfo | |
| 163 | RasSetIoCompletionPort | |
| 164 | RasSetKey | |
| 165 | RasSetPortUserData | |
| 166 | RasSetRasdialInfo | |
| 167 | RasSetRouterUsage | |
| 168 | RasSignalNewConnection | |
| 169 | RasStartRasAutoIfRequired | |
| 170 | RasmanUninitialize |
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 | ; | |
| 7 | LIBRARY rasmans.dll | |
| 8 | EXPORTS | |
| 9 | ServiceMain | |
| 10 | ServiceRequestInProcess | |
| 11 | SetEntryDialParams | |
| 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 | ; | |
| 7 | LIBRARY rasppp.dll | |
| 8 | EXPORTS | |
| 9 | HelperResetDefaultInterfaceNet | |
| 10 | HelperResetDefaultInterfaceNetEx | |
| 11 | HelperSetDefaultInterfaceNet | |
| 12 | HelperSetDefaultInterfaceNetEx | |
| 13 | IpxCpInit | |
| 14 | IpxcpBind | |
| 15 | PppDdmBapCallbackResult | |
| 16 | PppDdmCallbackDone | |
| 17 | PppDdmChangeNotification | |
| 18 | PppDdmDeInit | |
| 19 | PppDdmInit | |
| 20 | PppDdmRemoveQuarantine | |
| 21 | PppDdmSendInterfaceInfo | |
| 22 | PppDdmStart | |
| 23 | PppDdmStop | |
| 24 | PppStop | |
| 25 | RasCpEnumProtocolIds | |
| 26 | RasCpGetInfo | |
| 27 | RasSrvrAcquireAddress | |
| 28 | RasSrvrActivateIp | |
| 29 | RasSrvrInitialize | |
| 30 | RasSrvrQueryServerAddresses | |
| 31 | RasSrvrReleaseAddress | |
| 32 | RasSrvrUninitialize | |
| 33 | SendPPPMessageToEngine | |
| 34 | StartPPP | |
| 35 | StopPPP |
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 | ; | |
| 7 | LIBRARY RASRAD.dll | |
| 8 | EXPORTS | |
| 9 | Open | |
| 10 | Collect | |
| 11 | Close | |
| 12 | RasAcctConfigChangeNotification | |
| 13 | RasAcctProviderFreeAttributes | |
| 14 | RasAcctProviderInitialize | |
| 15 | RasAcctProviderInterimAccounting | |
| 16 | RasAcctProviderStartAccounting | |
| 17 | RasAcctProviderStopAccounting | |
| 18 | RasAcctProviderTerminate | |
| 19 | RasAuthConfigChangeNotification | |
| 20 | RasAuthProviderAuthenticateUser | |
| 21 | RasAuthProviderFreeAttributes | |
| 22 | RasAuthProviderInitialize | |
| 23 | RasAuthProviderTerminate |
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 | ; | |
| 7 | LIBRARY RASSAPI.dll | |
| 8 | EXPORTS | |
| 9 | RasAdminDLLInit | |
| 10 | RasAdminUserSetInfo | |
| 11 | RasAdminUserGetInfo | |
| 12 | RasAdminGetUserAccountServer | |
| 13 | RasAdminPortEnum | |
| 14 | RasAdminPortGetInfo | |
| 15 | RasAdminPortClearStatistics | |
| 16 | RasAdminServerGetInfo | |
| 17 | RasAdminPortDisconnect | |
| 18 | RasAdminFreeBuffer | |
| 19 | RasAdminSetUserParms | |
| 20 | RasAdminGetUserParms | |
| 21 | RasAdminCompressPhoneNumber | |
| 22 | RasAdminGetErrorString |
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 | ; | |
| 7 | LIBRARY rastls.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | PeapUpdateStateToTLV | |
| 14 | RasEapCreateConnectionProperties | |
| 15 | RasEapCreateUserProperties | |
| 16 | RasEapFreeMemory | |
| 17 | RasEapGetCredentials | |
| 18 | RasEapGetIdentity | |
| 19 | RasEapGetInfo | |
| 20 | RasEapInvokeConfigUI | |
| 21 | RasEapInvokeInteractiveUI | |
| 22 | RasEapUpdateServerConfig |
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 | ; | |
| 7 | LIBRARY RDPSND.dll | |
| 8 | EXPORTS | |
| 9 | DriverProc | |
| 10 | auxMessage | |
| 11 | midMessage | |
| 12 | modMessage | |
| 13 | mxdMessage | |
| 14 | widMessage | |
| 15 | wodMessage |
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 | ; | |
| 7 | LIBRARY RDPWSX.dll | |
| 8 | EXPORTS | |
| 9 | WsxBrokenConnection | |
| 10 | WsxCanLogonProceed | |
| 11 | WsxClearContext | |
| 12 | WsxConnect | |
| 13 | WsxConvertPublishedApp | |
| 14 | WsxCopyContext | |
| 15 | WsxDisconnect | |
| 16 | WsxDuplicateContext | |
| 17 | WsxEscape | |
| 18 | WsxIcaStackIoControl | |
| 19 | WsxInitialize | |
| 20 | WsxInitializeClientData | |
| 21 | WsxLogonNotify | |
| 22 | WsxSendAutoReconnectStatus | |
| 23 | WsxSetErrorInfo | |
| 24 | WsxVirtualChannelSecurity | |
| 25 | WsxWinStationInitialize | |
| 26 | WsxWinStationReInitialize | |
| 27 | WsxWinStationRundown |
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 | ; | |
| 6 | LIBRARY "RESUTILS.dll" | |
| 7 | EXPORTS | |
| 8 | ClusWorkerCheckTerminate | |
| 9 | ClusWorkerCreate | |
| 10 | ClusWorkerStart | |
| 11 | ClusWorkerTerminate | |
| 12 | ResUtilAddUnknownProperties | |
| 13 | ResUtilCreateDirectoryTree | |
| 14 | ResUtilDupParameterBlock | |
| 15 | ResUtilDupString | |
| 16 | ResUtilEnumPrivateProperties | |
| 17 | ResUtilEnumProperties | |
| 18 | ResUtilEnumResources | |
| 19 | ResUtilEnumResourcesEx | |
| 20 | ResUtilExpandEnvironmentStrings | |
| 21 | ResUtilFindBinaryProperty | |
| 22 | ResUtilFindDependentDiskResourceDriveLetter | |
| 23 | ResUtilFindDwordProperty | |
| 24 | ResUtilFindExpandSzProperty | |
| 25 | ResUtilFindExpandedSzProperty | |
| 26 | ResUtilFindFileTimeProperty | |
| 27 | ResUtilFindLongProperty | |
| 28 | ResUtilFindMultiSzProperty | |
| 29 | ResUtilFindSzProperty | |
| 30 | ResUtilFreeEnvironment | |
| 31 | ResUtilFreeParameterBlock | |
| 32 | ResUtilGetAllProperties | |
| 33 | ResUtilGetBinaryProperty | |
| 34 | ResUtilGetBinaryValue | |
| 35 | ResUtilGetClusterRoleState | |
| 36 | ResUtilGetCoreClusterResources | |
| 37 | ResUtilGetDwordProperty | |
| 38 | ResUtilGetDwordValue | |
| 39 | ResUtilGetEnvironmentWithNetName | |
| 40 | ResUtilGetFileTimeProperty | |
| 41 | ResUtilGetLongProperty | |
| 42 | ResUtilGetMultiSzProperty | |
| 43 | ResUtilGetPrivateProperties | |
| 44 | ResUtilGetProperties | |
| 45 | ResUtilGetPropertiesToParameterBlock | |
| 46 | ResUtilGetProperty | |
| 47 | ResUtilGetPropertyFormats | |
| 48 | ResUtilGetPropertySize | |
| 49 | ResUtilGetQwordValue | |
| 50 | ResUtilGetResourceDependency | |
| 51 | ResUtilGetResourceDependencyByClass | |
| 52 | ResUtilGetResourceDependencyByName | |
| 53 | ResUtilGetResourceDependentIPAddressProps | |
| 54 | ResUtilGetResourceName | |
| 55 | ResUtilGetResourceNameDependency | |
| 56 | ResUtilGetSzProperty | |
| 57 | ResUtilGetSzValue | |
| 58 | ResUtilIsPathValid | |
| 59 | ResUtilIsResourceClassEqual | |
| 60 | ResUtilPropertyListFromParameterBlock | |
| 61 | ResUtilRemoveResourceServiceEnvironment | |
| 62 | ResUtilResourceTypesEqual | |
| 63 | ResUtilResourcesEqual | |
| 64 | ResUtilSetBinaryValue | |
| 65 | ResUtilSetDwordValue | |
| 66 | ResUtilSetExpandSzValue | |
| 67 | ResUtilSetMultiSzValue | |
| 68 | ResUtilSetPrivatePropertyList | |
| 69 | ResUtilSetPropertyParameterBlock | |
| 70 | ResUtilSetPropertyParameterBlockEx | |
| 71 | ResUtilSetPropertyTable | |
| 72 | ResUtilSetPropertyTableEx | |
| 73 | ResUtilSetQwordValue | |
| 74 | ResUtilSetResourceServiceEnvironment | |
| 75 | ResUtilSetResourceServiceStartParameters | |
| 76 | ResUtilSetSzValue | |
| 77 | ResUtilSetUnknownProperties | |
| 78 | ResUtilStartResourceService | |
| 79 | ResUtilStopResourceService | |
| 80 | ResUtilStopService | |
| 81 | ResUtilTerminateServiceProcessFromResDll | |
| 82 | ResUtilVerifyPrivatePropertyList | |
| 83 | ResUtilVerifyPropertyTable | |
| 84 | ResUtilVerifyResourceService | |
| 85 | ResUtilVerifyService |
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 | ; | |
| 7 | LIBRARY ROUTETAB.dll | |
| 8 | EXPORTS | |
| 9 | AddRoute | |
| 10 | DeleteRoute | |
| 11 | FreeIPAddressTable | |
| 12 | FreeRouteTable | |
| 13 | GetIPAddressTable | |
| 14 | GetIfEntry | |
| 15 | GetRouteTable | |
| 16 | RefreshAddresses | |
| 17 | ReloadIPAddressTable | |
| 18 | SetAddrChangeNotifyEvent |
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 | ; | |
| 6 | LIBRARY "RpcDiag.dll" | |
| 7 | EXPORTS | |
| 8 | I_RpcSetupDiagCallback | |
| 9 | RpcDiagnoseError |
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 | ; | |
| 6 | LIBRARY "rpchttp.dll" | |
| 7 | EXPORTS | |
| 8 | CompareHttpTransportCredentials | |
| 9 | ConvertToUnicodeHttpTransportCredentials | |
| 10 | DuplicateHttpTransportCredentials | |
| 11 | FreeHttpTransportCredentials | |
| 12 | HTTP2AbortConnection | |
| 13 | HTTP2ChannelDataOriginatorDirectSend | |
| 14 | HTTP2ContinueDrainChannel | |
| 15 | HTTP2DirectReceive | |
| 16 | HTTP2EpRecvFailed | |
| 17 | HTTP2FlowControlChannelDirectSend | |
| 18 | HTTP2IISDirectReceive | |
| 19 | HTTP2IISSenderDirectSend | |
| 20 | HTTP2PlugChannelDirectSend | |
| 21 | HTTP2ProcessComplexTReceive | |
| 22 | HTTP2ProcessComplexTSend | |
| 23 | HTTP2RecycleChannel | |
| 24 | HTTP2TestHook | |
| 25 | HTTP2TimerReschedule | |
| 26 | HTTP2WinHttpDelayedReceive | |
| 27 | HTTP2WinHttpDirectReceive | |
| 28 | HTTP2WinHttpDirectSend | |
| 29 | HTTP_Abort | |
| 30 | HTTP_Close | |
| 31 | HTTP_CopyResolverHint | |
| 32 | HTTP_FreeResolverHint | |
| 33 | HTTP_Initialize | |
| 34 | HTTP_Open | |
| 35 | HTTP_QueryClientAddress | |
| 36 | HTTP_QueryClientId | |
| 37 | HTTP_QueryClientIpAddress | |
| 38 | HTTP_QueryLocalAddress | |
| 39 | HTTP_Recv | |
| 40 | HTTP_Send | |
| 41 | HTTP_ServerListen | |
| 42 | HTTP_SetLastBufferToFree | |
| 43 | HTTP_SyncRecv | |
| 44 | HTTP_SyncSend | |
| 45 | HTTP_TurnOnOffKeepAlives | |
| 46 | HttpParseNetworkOptions | |
| 47 | HttpSendIdentifyResponse | |
| 48 | I_RpcGetRpcProxy | |
| 49 | I_RpcTransFreeHttpCredentials | |
| 50 | I_RpcTransGetHttpCredentials | |
| 51 | WS_HTTP2_CONNECTION__Initialize | |
| 52 | WS_HTTP2_INITIAL_CONNECTION__new | |
| 53 | I_RpcProxyNewConnection | |
| 54 | I_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 | ; | |
| 7 | LIBRARY RPCREF.dll | |
| 8 | EXPORTS | |
| 9 | InetinfoStartRpcServerListen | |
| 10 | InetinfoStopRpcServerListen |
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 | ; | |
| 7 | LIBRARY SAMLIB.dll | |
| 8 | EXPORTS | |
| 9 | SamAddMemberToAlias | |
| 10 | SamAddMemberToGroup | |
| 11 | SamAddMultipleMembersToAlias | |
| 12 | SamChangePasswordUser | |
| 13 | SamChangePasswordUser2 | |
| 14 | SamChangePasswordUser3 | |
| 15 | SamCloseHandle | |
| 16 | SamConnect | |
| 17 | SamConnectWithCreds | |
| 18 | SamCreateAliasInDomain | |
| 19 | SamCreateGroupInDomain | |
| 20 | SamCreateUser2InDomain | |
| 21 | SamCreateUserInDomain | |
| 22 | SamDeleteAlias | |
| 23 | SamDeleteGroup | |
| 24 | SamDeleteUser | |
| 25 | SamEnumerateAliasesInDomain | |
| 26 | SamEnumerateDomainsInSamServer | |
| 27 | SamEnumerateGroupsInDomain | |
| 28 | SamEnumerateUsersInDomain | |
| 29 | SamFreeMemory | |
| 30 | SamGetAliasMembership | |
| 31 | SamGetCompatibilityMode | |
| 32 | SamGetDisplayEnumerationIndex | |
| 33 | SamGetGroupsForUser | |
| 34 | SamGetMembersInAlias | |
| 35 | SamGetMembersInGroup | |
| 36 | SamLookupDomainInSamServer | |
| 37 | SamLookupIdsInDomain | |
| 38 | SamLookupNamesInDomain | |
| 39 | SamOpenAlias | |
| 40 | SamOpenDomain | |
| 41 | SamOpenGroup | |
| 42 | SamOpenUser | |
| 43 | SamQueryDisplayInformation | |
| 44 | SamQueryInformationAlias | |
| 45 | SamQueryInformationDomain | |
| 46 | SamQueryInformationGroup | |
| 47 | SamQueryInformationUser | |
| 48 | SamQuerySecurityObject | |
| 49 | SamRemoveMemberFromAlias | |
| 50 | SamRemoveMemberFromForeignDomain | |
| 51 | SamRemoveMemberFromGroup | |
| 52 | SamRemoveMultipleMembersFromAlias | |
| 53 | SamRidToSid | |
| 54 | SamSetInformationAlias | |
| 55 | SamSetInformationDomain | |
| 56 | SamSetInformationGroup | |
| 57 | SamSetInformationUser | |
| 58 | SamSetMemberAttributesOfGroup | |
| 59 | SamSetSecurityObject | |
| 60 | SamShutdownSamServer | |
| 61 | SamTestPrivateFunctionsDomain | |
| 62 | SamTestPrivateFunctionsUser | |
| 63 | SamValidatePassword | |
| 64 | SamiChangeKeys | |
| 65 | SamiChangePasswordUser | |
| 66 | SamiChangePasswordUser2 | |
| 67 | SamiEncryptPasswords | |
| 68 | SamiGetBootKeyInformation | |
| 69 | SamiLmChangePasswordUser | |
| 70 | SamiOemChangePasswordUser2 | |
| 71 | SamiSetBootKeyInformation | |
| 72 | SamiSetDSRMPassword | |
| 73 | SamiSetDSRMPasswordOWF |
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 | ; | |
| 7 | LIBRARY SAMSRV.dll | |
| 8 | EXPORTS | |
| 9 | SamIAccountRestrictions | |
| 10 | SamIAddDSNameToAlias | |
| 11 | SamIAddDSNameToGroup | |
| 12 | SamIAmIGC | |
| 13 | SamIChangePasswordForeignUser | |
| 14 | SamIChangePasswordForeignUser2 | |
| 15 | SamIConnect | |
| 16 | SamICreateAccountByRid | |
| 17 | SamIDemote | |
| 18 | SamIDemoteUndo | |
| 19 | SamIDoFSMORoleChange | |
| 20 | SamIDsCreateObjectInDomain | |
| 21 | SamIDsSetObjectInformation | |
| 22 | SamIEnumerateAccountRids | |
| 23 | SamIEnumerateInterdomainTrustAccountsForUpgrade | |
| 24 | SamIFloatingSingleMasterOpEx | |
| 25 | SamIFreeSidAndAttributesList | |
| 26 | SamIFreeSidArray | |
| 27 | SamIFreeVoid | |
| 28 | SamIFree_SAMPR_ALIAS_INFO_BUFFER | |
| 29 | SamIFree_SAMPR_DISPLAY_INFO_BUFFER | |
| 30 | SamIFree_SAMPR_DOMAIN_INFO_BUFFER | |
| 31 | SamIFree_SAMPR_ENUMERATION_BUFFER | |
| 32 | SamIFree_SAMPR_GET_GROUPS_BUFFER | |
| 33 | SamIFree_SAMPR_GET_MEMBERS_BUFFER | |
| 34 | SamIFree_SAMPR_GROUP_INFO_BUFFER | |
| 35 | SamIFree_SAMPR_PSID_ARRAY | |
| 36 | SamIFree_SAMPR_RETURNED_USTRING_ARRAY | |
| 37 | SamIFree_SAMPR_SR_SECURITY_DESCRIPTOR | |
| 38 | SamIFree_SAMPR_ULONG_ARRAY | |
| 39 | SamIFree_SAMPR_USER_INFO_BUFFER | |
| 40 | SamIFree_UserInternal6Information | |
| 41 | SamIGCLookupNames | |
| 42 | SamIGCLookupSids | |
| 43 | SamIGetAliasMembership | |
| 44 | SamIGetBootKeyInformation | |
| 45 | SamIGetDefaultAdministratorName | |
| 46 | SamIGetDefaultComputersContainer | |
| 47 | SamIGetFixedAttributes | |
| 48 | SamIGetInterdomainTrustAccountPasswordsForUpgrade | |
| 49 | SamIGetPrivateData | |
| 50 | SamIGetResourceGroupMembershipsTransitive | |
| 51 | SamIGetSerialNumberDomain | |
| 52 | SamIGetUserLogonInformation | |
| 53 | SamIGetUserLogonInformation2 | |
| 54 | SamIGetUserLogonInformationEx | |
| 55 | SamIHandleObjectUpdate | |
| 56 | SamIImpersonateNullSession | |
| 57 | SamIIncrementPerformanceCounter | |
| 58 | SamIInitialize | |
| 59 | SamIIsAttributeProtected | |
| 60 | SamIIsDownlevelDcUpgrade | |
| 61 | SamIIsExtendedSidMode | |
| 62 | SamIIsRebootAfterPromotion | |
| 63 | SamIIsSetupInProgress | |
| 64 | SamILoadDownlevelDatabase | |
| 65 | SamILoopbackConnect | |
| 66 | SamIMixedDomain | |
| 67 | SamIMixedDomain2 | |
| 68 | SamINT4UpgradeInProgress | |
| 69 | SamINetLogonPing | |
| 70 | SamINotifyDelta | |
| 71 | SamINotifyRoleChange | |
| 72 | SamINotifyServerDelta | |
| 73 | SamIOpenAccount | |
| 74 | SamIOpenUserByAlternateId | |
| 75 | SamIPromote | |
| 76 | SamIPromoteUndo | |
| 77 | SamIQueryServerRole | |
| 78 | SamIQueryServerRole2 | |
| 79 | SamIRemoveDSNameFromAlias | |
| 80 | SamIRemoveDSNameFromGroup | |
| 81 | SamIReplaceDownlevelDatabase | |
| 82 | SamIResetBadPwdCountOnPdc | |
| 83 | SamIRetrievePrimaryCredentials | |
| 84 | SamIRevertNullSession | |
| 85 | SamISameSite | |
| 86 | SamISetAuditingInformation | |
| 87 | SamISetMixedDomainFlag | |
| 88 | SamISetPasswordForeignUser | |
| 89 | SamISetPasswordForeignUser2 | |
| 90 | SamISetPasswordInfoOnPdc | |
| 91 | SamISetPrivateData | |
| 92 | SamISetSerialNumberDomain | |
| 93 | SamIStorePrimaryCredentials | |
| 94 | SamIUPNFromUserHandle | |
| 95 | SamIUnLoadDownlevelDatabase | |
| 96 | SamIUpdateLogonStatistics | |
| 97 | SampAbortSingleLoopbackTask | |
| 98 | SampAccountControlToFlags | |
| 99 | SampAcquireSamLockExclusive | |
| 100 | SampAcquireWriteLock | |
| 101 | SampCommitBufferedWrites | |
| 102 | SampConvertNt4SdToNt5Sd | |
| 103 | SampDsChangePasswordUser | |
| 104 | SampFlagsToAccountControl | |
| 105 | SampGetDefaultSecurityDescriptorForClass | |
| 106 | SampGetSerialNumberDomain2 | |
| 107 | SampInitializeRegistry | |
| 108 | SampInitializeSdConversion | |
| 109 | SampInvalidateDomainCache | |
| 110 | SampInvalidateRidRange | |
| 111 | SampIsAuditingEnabled | |
| 112 | SampNetLogonNotificationRequired | |
| 113 | SampNotifyAuditChange | |
| 114 | SampNotifyReplicatedInChange | |
| 115 | SampProcessSingleLoopbackTask | |
| 116 | SampReleaseSamLockExclusive | |
| 117 | SampReleaseWriteLock | |
| 118 | SampRtlConvertUlongToUnicodeString | |
| 119 | SampSetSerialNumberDomain2 | |
| 120 | SampUsingDsData | |
| 121 | SampWriteGroupType | |
| 122 | SamrAddMemberToAlias | |
| 123 | SamrAddMemberToGroup | |
| 124 | SamrAddMultipleMembersToAlias | |
| 125 | SamrChangePasswordUser | |
| 126 | SamrCloseHandle | |
| 127 | SamrCreateAliasInDomain | |
| 128 | SamrCreateGroupInDomain | |
| 129 | SamrCreateUser2InDomain | |
| 130 | SamrCreateUserInDomain | |
| 131 | SamrDeleteAlias | |
| 132 | SamrDeleteGroup | |
| 133 | SamrDeleteUser | |
| 134 | SamrEnumerateAliasesInDomain | |
| 135 | SamrEnumerateDomainsInSamServer | |
| 136 | SamrEnumerateGroupsInDomain | |
| 137 | SamrEnumerateUsersInDomain | |
| 138 | SamrGetAliasMembership | |
| 139 | SamrGetGroupsForUser | |
| 140 | SamrGetMembersInAlias | |
| 141 | SamrGetMembersInGroup | |
| 142 | SamrGetUserDomainPasswordInformation | |
| 143 | SamrLookupDomainInSamServer | |
| 144 | SamrLookupIdsInDomain | |
| 145 | SamrLookupNamesInDomain | |
| 146 | SamrOpenAlias | |
| 147 | SamrOpenDomain | |
| 148 | SamrOpenGroup | |
| 149 | SamrOpenUser | |
| 150 | SamrQueryDisplayInformation | |
| 151 | SamrQueryInformationAlias | |
| 152 | SamrQueryInformationDomain | |
| 153 | SamrQueryInformationGroup | |
| 154 | SamrQueryInformationUser | |
| 155 | SamrQuerySecurityObject | |
| 156 | SamrRemoveMemberFromAlias | |
| 157 | SamrRemoveMemberFromForeignDomain | |
| 158 | SamrRemoveMemberFromGroup | |
| 159 | SamrRemoveMultipleMembersFromAlias | |
| 160 | SamrRidToSid | |
| 161 | SamrSetInformationAlias | |
| 162 | SamrSetInformationDomain | |
| 163 | SamrSetInformationGroup | |
| 164 | SamrSetInformationUser | |
| 165 | SamrSetMemberAttributesOfGroup | |
| 166 | SamrSetSecurityObject | |
| 167 | SamrShutdownSamServer | |
| 168 | SamrTestPrivateFunctionsDomain | |
| 169 | SamrTestPrivateFunctionsUser | |
| 170 | SamrUnicodeChangePasswordUser2 |
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 | ; | |
| 7 | LIBRARY sapi.dll | |
| 8 | EXPORTS | |
| 9 | RunSapiServer | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY SCCBASE.dll | |
| 8 | EXPORTS | |
| 9 | CPAcquireContext | |
| 10 | CPAcquireContextW | |
| 11 | CPCreateHash | |
| 12 | CPDecrypt | |
| 13 | CPDeriveKey | |
| 14 | CPDestroyHash | |
| 15 | CPDestroyKey | |
| 16 | CPEncrypt | |
| 17 | CPExportKey | |
| 18 | CPGenKey | |
| 19 | CPGenRandom | |
| 20 | CPGetHashParam | |
| 21 | CPGetKeyParam | |
| 22 | CPGetProvParam | |
| 23 | CPGetUserKey | |
| 24 | CPHashData | |
| 25 | CPHashSessionKey | |
| 26 | CPImportKey | |
| 27 | CPReleaseContext | |
| 28 | CPSetHashParam | |
| 29 | CPSetKeyParam | |
| 30 | CPSetProvParam | |
| 31 | CPSignHash | |
| 32 | CPVerifySignature | |
| 33 | DllRegisterServer | |
| 34 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY SCECLI.dll | |
| 8 | EXPORTS | |
| 9 | DeltaNotify | |
| 10 | InitializeChangeNotify | |
| 11 | SceConfigureConvertedFileSecurity | |
| 12 | SceGenerateGroupPolicy | |
| 13 | SceNotifyPolicyDelta | |
| 14 | SceOpenPolicy | |
| 15 | SceProcessEFSRecoveryGPO | |
| 16 | SceProcessSecurityPolicyGPO | |
| 17 | SceProcessSecurityPolicyGPOEx | |
| 18 | SceSysPrep | |
| 19 | DllRegisterServer | |
| 20 | DllUnregisterServer | |
| 21 | SceAddToNameList | |
| 22 | SceAddToNameStatusList | |
| 23 | SceAddToObjectList | |
| 24 | SceAnalyzeSystem | |
| 25 | SceAppendSecurityProfileInfo | |
| 26 | SceBrowseDatabaseTable | |
| 27 | SceCloseProfile | |
| 28 | SceCommitTransaction | |
| 29 | SceCompareNameList | |
| 30 | SceCompareSecurityDescriptors | |
| 31 | SceConfigureSystem | |
| 32 | SceCopyBaseProfile | |
| 33 | SceCreateDirectory | |
| 34 | SceDcPromoCreateGPOsInSysvol | |
| 35 | SceDcPromoCreateGPOsInSysvolEx | |
| 36 | SceDcPromoteSecurity | |
| 37 | SceDcPromoteSecurityEx | |
| 38 | SceEnforceSecurityPolicyPropagation | |
| 39 | SceEnumerateServices | |
| 40 | SceFreeMemory | |
| 41 | SceFreeProfileMemory | |
| 42 | SceGenerateRollback | |
| 43 | SceGetAnalysisAreaSummary | |
| 44 | SceGetAreas | |
| 45 | SceGetDatabaseSetting | |
| 46 | SceGetDbTime | |
| 47 | SceGetObjectChildren | |
| 48 | SceGetObjectSecurity | |
| 49 | SceGetScpProfileDescription | |
| 50 | SceGetSecurityProfileInfo | |
| 51 | SceGetServerProductType | |
| 52 | SceGetTimeStamp | |
| 53 | SceIsSystemDatabase | |
| 54 | SceLookupPrivRightName | |
| 55 | SceOpenProfile | |
| 56 | SceRegisterRegValues | |
| 57 | SceRollbackTransaction | |
| 58 | SceSetDatabaseSetting | |
| 59 | SceSetupBackupSecurity | |
| 60 | SceSetupConfigureServices | |
| 61 | SceSetupGenerateTemplate | |
| 62 | SceSetupMoveSecurityFile | |
| 63 | SceSetupRootSecurity | |
| 64 | SceSetupSystemByInfName | |
| 65 | SceSetupUnwindSecurityFile | |
| 66 | SceSetupUpdateSecurityFile | |
| 67 | SceSetupUpdateSecurityKey | |
| 68 | SceSetupUpdateSecurityService | |
| 69 | SceStartTransaction | |
| 70 | SceSvcConvertSDToText | |
| 71 | SceSvcConvertTextToSD | |
| 72 | SceSvcFree | |
| 73 | SceSvcGetInformationTemplate | |
| 74 | SceSvcQueryInfo | |
| 75 | SceSvcSetInfo | |
| 76 | SceSvcSetInformationTemplate | |
| 77 | SceSvcUpdateInfo | |
| 78 | SceUpdateObjectInfo | |
| 79 | SceUpdateSecurityProfile | |
| 80 | SceWriteSecurityProfileInfo |
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 | ; | |
| 7 | LIBRARY schedsvc.dll | |
| 8 | EXPORTS | |
| 9 | SPUninstall | |
| 10 | SPUninstallCallback | |
| 11 | SchedServiceMain | |
| 12 | SysPrepBackup | |
| 13 | SysPrepRestore | |
| 14 | CloseProc | |
| 15 | SysPrepCallback |
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 | ; | |
| 7 | LIBRARY SCLGNTFY.dll | |
| 8 | EXPORTS | |
| 9 | WLEventLock | |
| 10 | WLEventLogoff | |
| 11 | WLEventLogon | |
| 12 | WLEventShutdown | |
| 13 | WLEventStartScreenSaver | |
| 14 | WLEventStartShell | |
| 15 | WLEventStartup | |
| 16 | WLEventStopScreenSaver | |
| 17 | WLEventUnlock | |
| 18 | DllRegisterServer | |
| 19 | DllUnregisterServer | |
| 20 | GenerateDefaultEFSRecoveryPolicy |
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 | ; | |
| 7 | LIBRARY scredir.dll | |
| 8 | EXPORTS | |
| 9 | SCardReleaseBadContext | |
| 10 | DllRegisterServer | |
| 11 | DllUnregisterServer | |
| 12 | SCardAccessStartedEvent | |
| 13 | SCardAddReaderToGroupA | |
| 14 | SCardAddReaderToGroupW | |
| 15 | SCardBeginTransaction | |
| 16 | SCardCancel | |
| 17 | SCardConnectA | |
| 18 | SCardConnectW | |
| 19 | SCardControl | |
| 20 | SCardDisconnect | |
| 21 | SCardEndTransaction | |
| 22 | SCardEstablishContext | |
| 23 | SCardForgetReaderA | |
| 24 | SCardForgetReaderGroupA | |
| 25 | SCardForgetReaderGroupW | |
| 26 | SCardForgetReaderW | |
| 27 | SCardGetAttrib | |
| 28 | SCardGetStatusChangeA | |
| 29 | SCardGetStatusChangeW | |
| 30 | SCardIntroduceReaderA | |
| 31 | SCardIntroduceReaderGroupA | |
| 32 | SCardIntroduceReaderGroupW | |
| 33 | SCardIntroduceReaderW | |
| 34 | SCardIsValidContext | |
| 35 | SCardListReaderGroupsA | |
| 36 | SCardListReaderGroupsW | |
| 37 | SCardListReadersA | |
| 38 | SCardListReadersW | |
| 39 | SCardLocateCardsA | |
| 40 | SCardLocateCardsByATRA | |
| 41 | SCardLocateCardsByATRW | |
| 42 | SCardLocateCardsW | |
| 43 | SCardReconnect | |
| 44 | SCardReleaseContext | |
| 45 | SCardReleaseStartedEvent | |
| 46 | SCardRemoveReaderFromGroupA | |
| 47 | SCardRemoveReaderFromGroupW | |
| 48 | SCardSetAttrib | |
| 49 | SCardState | |
| 50 | SCardStatusA | |
| 51 | SCardStatusW | |
| 52 | SCardTransmit |
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 | ; | |
| 7 | LIBRARY SCRIPT.dll | |
| 8 | EXPORTS | |
| 9 | DestinationModule | |
| 10 | DllMain | |
| 11 | ModuleInitialize | |
| 12 | ModuleTerminate | |
| 13 | SourceModule | |
| 14 | TypeModule | |
| 15 | VirtualComputerModule |
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 | ; | |
| 7 | LIBRARY SensCfg.dll | |
| 8 | EXPORTS | |
| 9 | SensRegister | |
| 10 | SensUnregister |
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 | ; | |
| 7 | LIBRARY SEO.DLL | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | MCISGetBindingInMetabaseA | |
| 14 | MCISGetBindingInMetabaseW | |
| 15 | MCISInitSEOA | |
| 16 | MCISInitSEOW | |
| 17 | SEOCancelListenForEvent | |
| 18 | SEOCopyDictionary | |
| 19 | SEOCreateDictionaryFromIStream | |
| 20 | SEOCreateDictionaryFromMultiSzA | |
| 21 | SEOCreateDictionaryFromMultiSzW | |
| 22 | SEOCreateIStreamFromFileA | |
| 23 | SEOCreateIStreamFromFileW | |
| 24 | SEOCreateMultiSzFromDictionaryA | |
| 25 | SEOCreateMultiSzFromDictionaryW | |
| 26 | SEOListenForEvent | |
| 27 | SEOWriteDictionaryToIStream |
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 | ; | |
| 7 | LIBRARY setupqry.dll | |
| 8 | EXPORTS | |
| 9 | IndexSrv |
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 | ; | |
| 7 | LIBRARY sfc_os.dll | |
| 8 | EXPORTS | |
| 9 | SfcGetNextProtectedFile | |
| 10 | SfcIsFileProtected | |
| 11 | SfcWLEventLogoff | |
| 12 | SfcWLEventLogon |
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 | ; | |
| 7 | LIBRARY sfcfiles.dll | |
| 8 | EXPORTS | |
| 9 | SfcGetFiles |
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 | ; | |
| 7 | LIBRARY SFMAPI.dll | |
| 8 | EXPORTS | |
| 9 | AfpAdminBufferFree | |
| 10 | AfpAdminConnect | |
| 11 | AfpAdminConnectionClose | |
| 12 | AfpAdminConnectionEnum | |
| 13 | AfpAdminDirectoryGetInfo | |
| 14 | AfpAdminDirectorySetInfo | |
| 15 | AfpAdminDisconnect | |
| 16 | AfpAdminETCMapAdd | |
| 17 | AfpAdminETCMapAssociate | |
| 18 | AfpAdminETCMapDelete | |
| 19 | AfpAdminETCMapGetInfo | |
| 20 | AfpAdminETCMapSetInfo | |
| 21 | AfpAdminFileClose | |
| 22 | AfpAdminFileEnum | |
| 23 | AfpAdminFinderSetInfo | |
| 24 | AfpAdminInvalidVolumeDelete | |
| 25 | AfpAdminInvalidVolumeEnum | |
| 26 | AfpAdminMessageSend | |
| 27 | AfpAdminProfileClear | |
| 28 | AfpAdminProfileGet | |
| 29 | AfpAdminServerGetInfo | |
| 30 | AfpAdminServerSetInfo | |
| 31 | AfpAdminSessionClose | |
| 32 | AfpAdminSessionEnum | |
| 33 | AfpAdminStatisticsClear | |
| 34 | AfpAdminStatisticsGet | |
| 35 | AfpAdminStatisticsGetEx | |
| 36 | AfpAdminVolumeAdd | |
| 37 | AfpAdminVolumeDelete | |
| 38 | AfpAdminVolumeEnum | |
| 39 | AfpAdminVolumeGetInfo | |
| 40 | AfpAdminVolumeSetInfo |
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 | ; | |
| 7 | LIBRARY ShimEng.dll | |
| 8 | EXPORTS | |
| 9 | SE_DllLoaded | |
| 10 | SE_DllUnloaded | |
| 11 | SE_DynamicShim | |
| 12 | SE_DynamicUnshim | |
| 13 | SE_InstallAfterInit | |
| 14 | SE_InstallBeforeInit | |
| 15 | SE_IsShimDll | |
| 16 | SE_ProcessDying | |
| 17 | SE_RemoveNTVDMTask | |
| 18 | SE_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 | ; | |
| 7 | LIBRARY SHSCRAP.dll | |
| 8 | EXPORTS | |
| 9 | Scrap_CreateFromDataObject | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | OpenScrap_RunDLL | |
| 13 | OpenScrap_RunDLLA | |
| 14 | OpenScrap_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 | ; | |
| 7 | LIBRARY SIGTAB.DLL | |
| 8 | EXPORTS | |
| 9 | DriverSigningDialog |
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 | ; | |
| 7 | LIBRARY SKDLL.dll | |
| 8 | EXPORTS | |
| 9 | SKEY_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 | ; | |
| 7 | LIBRARY SLBCSP.dll | |
| 8 | EXPORTS | |
| 9 | CPAcquireContext | |
| 10 | CPSetHashParam | |
| 11 | CPSetKeyParam | |
| 12 | CPSetProvParam | |
| 13 | CPCreateHash | |
| 14 | CPDecrypt | |
| 15 | CPDeriveKey | |
| 16 | CPDestroyHash | |
| 17 | CPDestroyKey | |
| 18 | CPDuplicateHash | |
| 19 | CPDuplicateKey | |
| 20 | CPEncrypt | |
| 21 | CPExportKey | |
| 22 | CPGenKey | |
| 23 | CPGenRandom | |
| 24 | CPGetHashParam | |
| 25 | CPGetKeyParam | |
| 26 | CPGetProvParam | |
| 27 | CPGetUserKey | |
| 28 | CPHashData | |
| 29 | CPHashSessionKey | |
| 30 | CPImportKey | |
| 31 | CPReleaseContext | |
| 32 | CPSignHash | |
| 33 | CPVerifySignature | |
| 34 | DllRegisterServer | |
| 35 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY SMTPAPI.dll | |
| 8 | EXPORTS | |
| 9 | SmtpBackupRoutingTable | |
| 10 | SmtpClearStatistics | |
| 11 | SmtpCreateDistList | |
| 12 | SmtpCreateDistListMember | |
| 13 | SmtpCreateUser | |
| 14 | SmtpDeleteDistList | |
| 15 | SmtpDeleteDistListMember | |
| 16 | SmtpDeleteUser | |
| 17 | SmtpDisconnectUser | |
| 18 | SmtpGetAdminInformation | |
| 19 | SmtpGetConnectedUserList | |
| 20 | SmtpGetNameList | |
| 21 | SmtpGetNameListFromList | |
| 22 | SmtpGetUserProps | |
| 23 | SmtpGetVRootSize | |
| 24 | SmtpQueryStatistics | |
| 25 | SmtpSetAdminInformation | |
| 26 | SmtpSetUserProps |
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 | ; | |
| 7 | LIBRARY SMTPCTRS.dll | |
| 8 | EXPORTS | |
| 9 | OpenSmtpPerformanceData | |
| 10 | CollectSmtpPerformanceData | |
| 11 | CloseSmtpPerformanceData |
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 | ; | |
| 7 | LIBRARY SNMPMIB.exe | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionInit | |
| 10 | SnmpExtensionMonitor | |
| 11 | SnmpExtensionQuery | |
| 12 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY ExPrfDll.dll | |
| 8 | EXPORTS | |
| 9 | NTFSDrvClose | |
| 10 | NTFSDrvCollect | |
| 11 | NTFSDrvOpen |
lib/libc/mingw/lib64/spoolss.def-1| ... | ... | @@ -130,7 +130,6 @@ MarshallDownStructuresArray |
| 130 | 130 | MarshallUpStructure |
| 131 | 131 | MarshallUpStructuresArray |
| 132 | 132 | OldGetPrinterDriverW |
| 133 | OpenPrinterExW | |
| 134 | 133 | OpenPrinterPortW |
| 135 | 134 | OpenPrinter2W |
| 136 | 135 | OpenPrinterPort2W |
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 | ; | |
| 7 | LIBRARY SQLXMLX.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | ExecuteToStream | |
| 11 | DllCanUnloadNow | |
| 12 | DllGetClassObject | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY srchctls.dll | |
| 8 | EXPORTS | |
| 9 | InitializeSearchControls | |
| 10 | UninitializeSearchControls | |
| 11 | CreateSpellEdit |
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 | ; | |
| 7 | LIBRARY SRCLIENT.dll | |
| 8 | EXPORTS | |
| 9 | CreateFirstRunRp | |
| 10 | CreateSnapshot | |
| 11 | DisableFIFO | |
| 12 | DisableSR | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer | |
| 17 | EnableFIFO | |
| 18 | EnableSR | |
| 19 | EnableSREx | |
| 20 | ResetSR | |
| 21 | RestoreSnapshot | |
| 22 | SRCompress | |
| 23 | SRFifo | |
| 24 | SRFreeze | |
| 25 | SRNotify | |
| 26 | SRPrintState | |
| 27 | SRRegisterSnapshotCallback | |
| 28 | SRRemoveRestorePoint | |
| 29 | SRSetRestorePointA | |
| 30 | SRSetRestorePointW | |
| 31 | SRSwitchLog | |
| 32 | SRUnregisterSnapshotCallback | |
| 33 | SRUpdateDSSize | |
| 34 | SRUpdateMonitoredListA | |
| 35 | SRUpdateMonitoredListW |
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 | ; | |
| 7 | LIBRARY SRRSTR.dll | |
| 8 | EXPORTS | |
| 9 | DllMain | |
| 10 | IsSRFrozen | |
| 11 | CheckPrivilegesForRestore | |
| 12 | SRGetCplPropPage | |
| 13 | PrepareRestore | |
| 14 | InitiateRestore | |
| 15 | ResumeRestore | |
| 16 | InitializeChangeNotify | |
| 17 | PasswordChangeNotify | |
| 18 | InvokeDiskCleanup |
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 | ; | |
| 7 | LIBRARY SSDPAPI.dll | |
| 8 | EXPORTS | |
| 9 | CleanupCache | |
| 10 | DHDisableDeviceHost | |
| 11 | DHEnableDeviceHost | |
| 12 | DHSetICSInterfaces | |
| 13 | DHSetICSOff | |
| 14 | DeregisterNotification | |
| 15 | DeregisterService | |
| 16 | DeregisterServiceByUSN | |
| 17 | FindServices | |
| 18 | FindServicesCallback | |
| 19 | FindServicesCancel | |
| 20 | FindServicesClose | |
| 21 | FreeSsdpMessage | |
| 22 | GetFirstService | |
| 23 | GetNextService | |
| 24 | RegisterNotification | |
| 25 | RegisterService | |
| 26 | SsdpCleanup | |
| 27 | SsdpStartup |
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 | ; | |
| 7 | LIBRARY SSINC.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 7 | LIBRARY STAXMEM.dll | |
| 8 | EXPORTS | |
| 9 | ExchAlloc | |
| 10 | ExchFree | |
| 11 | ExchHeapAlloc | |
| 12 | ExchHeapCompact | |
| 13 | ExchHeapCreate | |
| 14 | ExchHeapDestroy | |
| 15 | ExchHeapFree | |
| 16 | ExchHeapLock | |
| 17 | ExchHeapReAlloc | |
| 18 | ExchHeapSize | |
| 19 | ExchHeapUnlock | |
| 20 | ExchHeapValidate | |
| 21 | ExchHeapWalk | |
| 22 | ExchMHeapAlloc | |
| 23 | ExchMHeapAllocDebug | |
| 24 | ExchMHeapCreate | |
| 25 | ExchMHeapDestroy | |
| 26 | ExchMHeapFree | |
| 27 | ExchMHeapReAlloc | |
| 28 | ExchMHeapReAllocDebug | |
| 29 | ExchMHeapSize | |
| 30 | ExchReAlloc | |
| 31 | ExchSize | |
| 32 | ExchmemFormatSymbol | |
| 33 | ExchmemGetCallStack | |
| 34 | ExchmemReloadSymbols | |
| 35 | MpHeapAlloc | |
| 36 | MpHeapCompact | |
| 37 | MpHeapCreate | |
| 38 | MpHeapDestroy | |
| 39 | MpHeapFree | |
| 40 | MpHeapGetStatistics | |
| 41 | MpHeapReAlloc | |
| 42 | MpHeapValidate |
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 | ; | |
| 7 | LIBRARY STI.dll | |
| 8 | EXPORTS | |
| 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 | |
| 33 | DllCanUnloadNow | |
| 34 | DllGetClassObject | |
| 35 | DllRegisterServer | |
| 36 | DllUnregisterServer | |
| 37 | GetProxyDllInfo | |
| 38 | MigrateRegisteredSTIAppsForWIAEvents | |
| 39 | RegSTIforWia | |
| 40 | StiCreateInstance | |
| 41 | StiCreateInstanceA | |
| 42 | StiCreateInstanceW |
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 | ; | |
| 7 | LIBRARY sti_ci.dll | |
| 8 | EXPORTS | |
| 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 | AddDevice | |
| 26 | InstallWiaService | |
| 27 | MigrateDevice | |
| 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 | |
| 36 | WiaAddDevice | |
| 37 | WiaCreatePortList | |
| 38 | WiaCreateWizardMenu | |
| 39 | WiaDestroyPortList | |
| 40 | WiaRemoveDevice | |
| 41 | ClassInstall | |
| 42 | CoinstallerEntry | |
| 43 | PTPCoinstallerEntry |
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 | ; | |
| 7 | LIBRARY PROPPAGE.DLL | |
| 8 | EXPORTS | |
| 9 | CdromDisableDigitalPlayback | |
| 10 | CdromEnableDigitalPlayback | |
| 11 | CdromIsDigitalPlaybackEnabled | |
| 12 | CdromKnownGoodDigitalPlayback | |
| 13 | DiskClassInstaller | |
| 14 | DvdClassInstaller | |
| 15 | DvdLauncher | |
| 16 | DvdPropPageProvider | |
| 17 | IdePropPageProvider | |
| 18 | VolumePropPageProvider |
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 | ; | |
| 7 | LIBRARY strmfilt.dll | |
| 8 | EXPORTS | |
| 9 | IsapiFilterInitialize | |
| 10 | IsapiFilterTerminate | |
| 11 | StreamFilterClientInitialize | |
| 12 | StreamFilterClientStart | |
| 13 | StreamFilterClientStop | |
| 14 | StreamFilterClientTerminate | |
| 15 | StreamFilterInitialize | |
| 16 | StreamFilterStart | |
| 17 | StreamFilterStop | |
| 18 | StreamFilterTerminate | |
| 19 | DllMain |
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 | ; | |
| 7 | LIBRARY SVCPACK.dll | |
| 8 | EXPORTS | |
| 9 | SvcPackCallbackRoutine |
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 | ; | |
| 7 | LIBRARY SYNCENG.dll | |
| 8 | EXPORTS | |
| 9 | AddAllTwinsToTwinList | |
| 10 | AddFolderTwin | |
| 11 | AddObjectTwin | |
| 12 | AddTwinToTwinList | |
| 13 | AnyTwins | |
| 14 | BeginReconciliation | |
| 15 | ClearBriefcaseCache | |
| 16 | CloseBriefcase | |
| 17 | CompareFileStamps | |
| 18 | CountSourceFolderTwins | |
| 19 | CreateFolderTwinList | |
| 20 | CreateRecList | |
| 21 | CreateTwinList | |
| 22 | DeleteBriefcase | |
| 23 | DeleteTwin | |
| 24 | DestroyFolderTwinList | |
| 25 | DestroyRecList | |
| 26 | DestroyTwinList | |
| 27 | EndReconciliation | |
| 28 | FindBriefcaseClose | |
| 29 | FindFirstBriefcase | |
| 30 | FindNextBriefcase | |
| 31 | GetFileStamp | |
| 32 | GetFolderTwinStatus | |
| 33 | GetObjectTwinHandle | |
| 34 | GetOpenBriefcaseInfo | |
| 35 | GetVolumeDescription | |
| 36 | IsFolderTwin | |
| 37 | IsOrphanObjectTwin | |
| 38 | IsPathOnVolume | |
| 39 | OpenBriefcase | |
| 40 | ReconcileItem | |
| 41 | ReleaseTwinHandle | |
| 42 | RemoveAllTwinsFromTwinList | |
| 43 | RemoveTwinFromTwinList | |
| 44 | SaveBriefcase |
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 | ; | |
| 7 | LIBRARY SYNCUI.dll | |
| 8 | EXPORTS | |
| 9 | Briefcase_Create | |
| 10 | Briefcase_Intro | |
| 11 | Briefcase_CreateW | |
| 12 | Briefcase_CreateA | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject |
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 | ; | |
| 7 | LIBRARY SysInv.dll | |
| 8 | EXPORTS | |
| 9 | GetSystemInventoryA | |
| 10 | GetSystemInventoryW |
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 | ; | |
| 7 | LIBRARY SYSMOD.dll | |
| 8 | EXPORTS | |
| 9 | DestinationModule | |
| 10 | DllMain | |
| 11 | ModuleInitialize | |
| 12 | ModuleTerminate | |
| 13 | SourceModule | |
| 14 | TypeModule | |
| 15 | VirtualComputerModule |
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 | ; | |
| 7 | LIBRARY SYSSETUP.dll | |
| 8 | EXPORTS | |
| 9 | AsrAddSifEntryA | |
| 10 | AsrAddSifEntryW | |
| 11 | AsrCreateStateFileA | |
| 12 | AsrCreateStateFileW | |
| 13 | AsrFreeContext | |
| 14 | AsrRestorePlugPlayRegistryData | |
| 15 | AsrpGetLocalDiskInfo | |
| 16 | AsrpGetLocalVolumeInfo | |
| 17 | AsrpRestoreNonCriticalDisksW | |
| 18 | ComputerClassInstaller | |
| 19 | CreateLocalAdminAccount | |
| 20 | CreateLocalAdminAccountEx | |
| 21 | CreateLocalUserAccount | |
| 22 | CriticalDeviceCoInstaller | |
| 23 | DevInstallW | |
| 24 | DeviceBayClassInstaller | |
| 25 | DiskPropPageProvider | |
| 26 | DoInstallComponentInfs | |
| 27 | EisaUpHalCoInstaller | |
| 28 | GenerateName | |
| 29 | GetAnswerFileSetting | |
| 30 | HdcClassInstaller | |
| 31 | InitializeSetupLog | |
| 32 | InstallWindowsNt | |
| 33 | InvokeExternalApplicationEx | |
| 34 | KeyboardClassInstaller | |
| 35 | LegacyDriverPropPageProvider | |
| 36 | MigrateExceptionPackages | |
| 37 | MouseClassInstaller | |
| 38 | NtApmClassInstaller | |
| 39 | OpkCheckVersion | |
| 40 | PS2MousePropPageProvider | |
| 41 | PnPInitializationThread | |
| 42 | PrepareForAudit | |
| 43 | RepairStartMenuItems | |
| 44 | ReportError | |
| 45 | RunOEMExtraTasks | |
| 46 | ScsiClassInstaller | |
| 47 | SetAccountsDomainSid | |
| 48 | SetupAddOrRemoveTestCertificate | |
| 49 | SetupChangeFontSize | |
| 50 | SetupChangeLocale | |
| 51 | SetupChangeLocaleEx | |
| 52 | SetupCreateOptionalComponentsPage | |
| 53 | SetupDestroyLanguageList | |
| 54 | SetupDestroyPhoneList | |
| 55 | SetupEnumerateRegisteredOsComponents | |
| 56 | SetupExtendPartition | |
| 57 | SetupGetGeoOptions | |
| 58 | SetupGetInstallMode | |
| 59 | SetupGetKeyboardOptions | |
| 60 | SetupGetLocaleOptions | |
| 61 | SetupGetProductType | |
| 62 | SetupGetSetupInfo | |
| 63 | SetupGetValidEula | |
| 64 | SetupIEHardeningSettings | |
| 65 | SetupInfObjectInstallActionW | |
| 66 | SetupInstallCatalog | |
| 67 | SetupMapTapiToIso | |
| 68 | SetupOobeBnk | |
| 69 | SetupOobeCleanup | |
| 70 | SetupOobeInitDebugLog | |
| 71 | SetupOobeInitPostServices | |
| 72 | SetupOobeInitPreServices | |
| 73 | SetupPidGen3 | |
| 74 | SetupQueryRegisteredOsComponent | |
| 75 | SetupQueryRegisteredOsComponentsOrder | |
| 76 | SetupReadPhoneList | |
| 77 | SetupRegisterOsComponent | |
| 78 | SetupSetAdminPassword | |
| 79 | SetupSetDisplay | |
| 80 | SetupSetIntlOptions | |
| 81 | SetupSetRegisteredOsComponentsOrder | |
| 82 | SetupSetSetupInfo | |
| 83 | SetupShellSettings | |
| 84 | SetupStartService | |
| 85 | SetupUnRegisterOsComponent | |
| 86 | StorageCoInstaller | |
| 87 | SystemUpdateUserProfileDirectory | |
| 88 | TapeClassInstaller | |
| 89 | TapePropPageProvider | |
| 90 | TerminateSetupLog | |
| 91 | UpdatePnpDeviceDrivers | |
| 92 | UpgradePrinters | |
| 93 | ViewSetupActionLog | |
| 94 | VolumeClassInstaller | |
| 95 | pSetupDebugPrint | |
| 96 | pSetuplogSfcError |
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 | ; | |
| 7 | LIBRARY TCPMIB.dll | |
| 8 | EXPORTS | |
| 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 | |
| 71 | GetTcpMibPtr | |
| 72 | Ping |
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 | ; | |
| 7 | LIBRARY TSAPPCMP.dll | |
| 8 | EXPORTS | |
| 9 | TermServPrepareAppInstallDueMSI | |
| 10 | TermServProcessAppInstallDueMSI | |
| 11 | GetTermsrCompatFlags | |
| 12 | GetTermsrCompatFlagsEx | |
| 13 | TermsrvAdjustPhyMemLimits | |
| 14 | TermsrvBuildIniFileName | |
| 15 | TermsrvBuildSysIniPath | |
| 16 | TermsrvCORIniFile | |
| 17 | TermsrvCheckNewIniFiles | |
| 18 | TermsrvConvertSysRootToUserDir | |
| 19 | TermsrvCopyIniFile | |
| 20 | TermsrvCreateRegEntry | |
| 21 | TermsrvDeleteKey | |
| 22 | TermsrvDeleteValue | |
| 23 | TermsrvFormatObjectName | |
| 24 | TermsrvGetComputerName | |
| 25 | TermsrvGetPreSetValue | |
| 26 | TermsrvGetString | |
| 27 | TermsrvGetWindowsDirectoryA | |
| 28 | TermsrvGetWindowsDirectoryW | |
| 29 | TermsrvLogInstallIniFile | |
| 30 | TermsrvLogInstallIniFileEx | |
| 31 | TermsrvOpenRegEntry | |
| 32 | TermsrvOpenUserClasses | |
| 33 | TermsrvRemoveClassesKey | |
| 34 | TermsrvRestoreKey | |
| 35 | TermsrvSetKeySecurity | |
| 36 | TermsrvSetValueKey | |
| 37 | TermsrvUpdateAllUserMenu |
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 | ; | |
| 7 | LIBRARY tsd32.dll | |
| 8 | EXPORTS | |
| 9 | TrueSpeech_Version | |
| 10 | TrueSpeech_Init | |
| 11 | TrueSpeech_Term | |
| 12 | TrueSpeech_Encod | |
| 13 | TrueSpeech_Decod | |
| 14 | TrueSpeech_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 | ; | |
| 7 | LIBRARY tsoc.dll | |
| 8 | EXPORTS | |
| 9 | HydraOc | |
| 10 | SysPrepBackup | |
| 11 | SysPrepRestore |
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 | ; | |
| 7 | LIBRARY isapitst.DLL | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 7 | LIBRARY UFAT.dll | |
| 8 | EXPORTS | |
| 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 | |
| 109 | Chkdsk | |
| 110 | ChkdskEx | |
| 111 | Format | |
| 112 | FormatEx | |
| 113 | Recover |
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 | ; | |
| 7 | LIBRARY UMANDLG.dll | |
| 8 | EXPORTS | |
| 9 | UManDlg |
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 | ; | |
| 7 | LIBRARY umpnpmgr.dll | |
| 8 | EXPORTS | |
| 9 | DeleteServicePlugPlayRegKeys | |
| 10 | PNP_GetDeviceList | |
| 11 | PNP_GetDeviceListSize | |
| 12 | PNP_GetDeviceRegProp | |
| 13 | PNP_HwProfFlags | |
| 14 | PNP_SetActiveService | |
| 15 | RegisterScmCallback | |
| 16 | RegisterServiceNotification | |
| 17 | SvcEntry_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 | ; | |
| 7 | LIBRARY UNIIME.DLL | |
| 8 | EXPORTS | |
| 9 | UniSearchPhrasePredictionA | |
| 10 | UniSearchPhrasePredictionW |
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 | ; | |
| 7 | LIBRARY UNTFS.dll | |
| 8 | EXPORTS | |
| 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 | |
| 295 | Chkdsk | |
| 296 | ChkdskEx | |
| 297 | Extend | |
| 298 | Format | |
| 299 | FormatEx | |
| 300 | Recover |
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 | ; | |
| 7 | LIBRARY upnpui.dll | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | InstallUPnPUI | |
| 14 | IsUPnPUIInstalled | |
| 15 | UnInstallUPnPUI |
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 | ; | |
| 7 | LIBRARY URLAUTH.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 6 | LIBRARY "USBCAMD2.SYS" | |
| 7 | EXPORTS | |
| 8 | DllUnload | |
| 9 | USBCAMD_AdapterReceivePacket | |
| 10 | USBCAMD_ControlVendorCommand | |
| 11 | USBCAMD_Debug_LogEntry | |
| 12 | USBCAMD_DriverEntry | |
| 13 | USBCAMD_GetRegistryKeyValue | |
| 14 | USBCAMD_InitializeNewInterface | |
| 15 | USBCAMD_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 | ; | |
| 6 | LIBRARY "USBD.SYS" | |
| 7 | EXPORTS | |
| 8 | DllInitialize | |
| 9 | DllUnload | |
| 10 | USBD_CalculateUsbBandwidth | |
| 11 | USBD_CreateConfigurationRequest | |
| 12 | USBD_CreateConfigurationRequestEx | |
| 13 | USBD_GetInterfaceLength | |
| 14 | USBD_GetPdoRegistryParameter | |
| 15 | USBD_GetRegistryKeyValue | |
| 16 | USBD_GetUSBDIVersion | |
| 17 | USBD_ParseConfigurationDescriptor | |
| 18 | USBD_ParseConfigurationDescriptorEx | |
| 19 | USBD_ParseDescriptors | |
| 20 | USBD_QueryBusTime | |
| 21 | USBD_RegisterHcFilter | |
| 22 | USBD_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 | ; | |
| 6 | LIBRARY "USBPORT.SYS" | |
| 7 | EXPORTS | |
| 8 | DllInitialize | |
| 9 | DllUnload | |
| 10 | USBPORT_GetHciMn | |
| 11 | USBPORT_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 | ; | |
| 7 | LIBRARY vdsutil.dll | |
| 8 | EXPORTS | |
| 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 | |
| 265 | DllMain | |
| 266 | RegisterVdsFabric | |
| 267 | UnregisterVdsFabric |
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 | ; | |
| 7 | LIBRARY VERIFIER.dll | |
| 8 | EXPORTS | |
| 9 | VerifierAddFreeMemoryCallback | |
| 10 | VerifierCreateRpcPageHeap | |
| 11 | VerifierDeleteFreeMemoryCallback | |
| 12 | VerifierDestroyRpcPageHeap | |
| 13 | VerifierDisableFaultInjectionExclusionRange | |
| 14 | VerifierDisableFaultInjectionTargetRange | |
| 15 | VerifierEnableFaultInjectionExclusionRange | |
| 16 | VerifierEnableFaultInjectionTargetRange | |
| 17 | VerifierEnumerateResource | |
| 18 | VerifierIsCurrentThreadHoldingLocks | |
| 19 | VerifierIsDllEntryActive | |
| 20 | VerifierLogMessage | |
| 21 | VerifierQueryRuntimeFlags | |
| 22 | VerifierSetFaultInjectionProbability | |
| 23 | VerifierSetFlags | |
| 24 | VerifierSetRuntimeFlags | |
| 25 | VerifierStopMessage |
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 | ; | |
| 7 | LIBRARY VGX.DLL | |
| 8 | EXPORTS | |
| 9 | $DllMain$_gdiplus | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer | |
| 14 | MsoAssertSzProcVar | |
| 15 | MsoFFeature | |
| 16 | MsoFInitOffice | |
| 17 | MsoFSetFeature |
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 | ; | |
| 7 | LIBRARY VMX_MODE.dll | |
| 8 | EXPORTS | |
| 9 | VMX_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 | ; | |
| 7 | LIBRARY w3core.dll | |
| 8 | EXPORTS | |
| 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 | |
| 17 | UlW3Start |
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 | ; | |
| 7 | LIBRARY W3CTRS.dll | |
| 8 | EXPORTS | |
| 9 | OpenW3PerformanceData | |
| 10 | CollectW3PerformanceData | |
| 11 | CloseW3PerformanceData |
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 | ; | |
| 7 | LIBRARY w3dt.dll | |
| 8 | EXPORTS | |
| 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 | |
| 11 | UlAtqAddFragmentToCache | |
| 12 | UlAtqAllocateMemory | |
| 13 | UlAtqFlushUlCache | |
| 14 | UlAtqFreeContext | |
| 15 | UlAtqGetContextProperty | |
| 16 | UlAtqInduceShutdown | |
| 17 | UlAtqInitialize | |
| 18 | UlAtqReadFragmentFromCache | |
| 19 | UlAtqReceiveClientCertificate | |
| 20 | UlAtqReceiveEntityBody | |
| 21 | UlAtqRemoveFragmentFromCache | |
| 22 | UlAtqSendEntityBody | |
| 23 | UlAtqSendHttpResponse | |
| 24 | UlAtqSetContextProperty | |
| 25 | UlAtqSetUnhealthy | |
| 26 | UlAtqStartListen | |
| 27 | UlAtqTerminate | |
| 28 | UlAtqWaitForDisconnect |
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 | ; | |
| 7 | LIBRARY w3isapi.dll | |
| 8 | EXPORTS | |
| 9 | InitModule | |
| 10 | ProcessIsapiCompletion | |
| 11 | ProcessIsapiRequest | |
| 12 | TerminateModule |
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 | ; | |
| 7 | LIBRARY w3ssl.dll | |
| 8 | EXPORTS | |
| 9 | HTTPFilterServiceMain | |
| 10 | ServiceEntry |
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 | ; | |
| 7 | LIBRARY W3TP.dll | |
| 8 | EXPORTS | |
| 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 | |
| 25 | ThreadPoolBindIoCompletionCallback | |
| 26 | ThreadPoolGetStats | |
| 27 | ThreadPoolInitialize | |
| 28 | ThreadPoolPostCompletion | |
| 29 | ThreadPoolSetInfo | |
| 30 | ThreadPoolTerminate | |
| 31 | DllMain |
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 | ; | |
| 7 | LIBRARY WAB32.dll | |
| 8 | EXPORTS | |
| 9 | WABOpen | |
| 10 | WABCreateIProp | |
| 11 | WABOpenEx | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY WABIMP.dll | |
| 8 | EXPORTS | |
| 9 | NetscapeImport | |
| 10 | NetscapeExport | |
| 11 | EudoraImport | |
| 12 | EudoraExport | |
| 13 | Athena16Import | |
| 14 | Athena16Export | |
| 15 | PABImport | |
| 16 | PABExport | |
| 17 | CSVImport | |
| 18 | CSVExport | |
| 19 | LDIFImport | |
| 20 | MessengerImport | |
| 21 | DllRegisterServer | |
| 22 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY wamreg.DLL | |
| 8 | EXPORTS | |
| 9 | CreateIISPackage | |
| 10 | DeleteIISPackage | |
| 11 | WamReg_RegisterSinkNotify | |
| 12 | WamReg_UnRegisterSinkNotify | |
| 13 | InstallWam | |
| 14 | UnInstallWam | |
| 15 | CreateCOMPlusApplication | |
| 16 | DllCanUnloadNow | |
| 17 | DllGetClassObject | |
| 18 | DllRegisterServer | |
| 19 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY WBEMCORE.DLL | |
| 8 | EXPORTS | |
| 9 | DllCanUnloadNow | |
| 10 | DllGetClassObject | |
| 11 | DllRegisterServer | |
| 12 | DllUnregisterServer | |
| 13 | Reinitialize | |
| 14 | Shutdown |
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 | ; | |
| 7 | LIBRARY WbemUpgd.dll | |
| 8 | EXPORTS | |
| 9 | CheckWMISetup | |
| 10 | LoadMofFiles | |
| 11 | MUI_InstallMFLFiles | |
| 12 | OcEntry | |
| 13 | RepairWMISetup | |
| 14 | DllInstall | |
| 15 | DllRegisterServer |
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 | ; | |
| 7 | LIBRARY WDMAUD.DRV | |
| 8 | EXPORTS | |
| 9 | DriverProc | |
| 10 | auxMessage | |
| 11 | midMessage | |
| 12 | modMessage | |
| 13 | mxdMessage | |
| 14 | widMessage | |
| 15 | wodMessage |
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 | ; | |
| 6 | LIBRARY "WdsClient.dll" | |
| 7 | EXPORTS | |
| 8 | CallBack_WdsClient_ConnectToImageStore | |
| 9 | CallBack_WdsClient_DetectWdsMode | |
| 10 | CallBack_WdsClient_GetImageList | |
| 11 | CallBack_WdsClient_ImageSelectionDone | |
| 12 | CallBack_WdsClient_ProcessCmdLine | |
| 13 | GetServerParamsFromBootPacket | |
| 14 | Module_Init_WdsClient | |
| 15 | g_Kernel32 DATA | |
| 16 | g_Mpr DATA | |
| 17 | g_Wdscore DATA | |
| 18 | g_Wdslib DATA | |
| 19 | g_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 | ; | |
| 6 | LIBRARY "WDSCORE.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 140 | WdsGetPointer | |
| 141 | g_Kernel32 DATA | |
| 142 | g_bEnableDiagnosticMode DATA | |
| 143 | ConstructPartialMsgIfA | |
| 144 | ConstructPartialMsgIfW | |
| 145 | ConstructPartialMsgVA | |
| 146 | ConstructPartialMsgVW | |
| 147 | CurrentIP | |
| 148 | EndMajorTask | |
| 149 | EndMinorTask | |
| 150 | GetMajorTask | |
| 151 | GetMajorTaskA | |
| 152 | GetMinorTask | |
| 153 | GetMinorTaskA | |
| 154 | StartMajorTask | |
| 155 | StartMinorTask | |
| 156 | WdsAbortBlackboardItemEnum | |
| 157 | WdsAddModule | |
| 158 | WdsAddUsmtLogStack | |
| 159 | WdsAllocCollection | |
| 160 | WdsCollectionAddValue | |
| 161 | WdsCollectionGetValue | |
| 162 | WdsCopyBlackboardItems | |
| 163 | WdsCopyBlackboardItemsEx | |
| 164 | WdsCreateBlackboard | |
| 165 | WdsDeleteBlackboardValue | |
| 166 | WdsDeleteEvent | |
| 167 | WdsDestroyBlackboard | |
| 168 | WdsDuplicateData | |
| 169 | WdsEnableDiagnosticMode | |
| 170 | WdsEnableExit | |
| 171 | WdsEnableExitEx | |
| 172 | WdsEnumFirstBlackboardItem | |
| 173 | WdsEnumFirstCollectionValue | |
| 174 | WdsEnumNextBlackboardItem | |
| 175 | WdsEnumNextCollectionValue | |
| 176 | WdsExecuteWorkQueue | |
| 177 | WdsExecuteWorkQueue2 | |
| 178 | WdsExecuteWorkQueueEx | |
| 179 | WdsExitImmediately | |
| 180 | WdsExitImmediatelyEx | |
| 181 | WdsFreeCollection | |
| 182 | WdsFreeData | |
| 183 | WdsGenericSetupLogInit | |
| 184 | WdsGetAssertFlags | |
| 185 | WdsGetBlackboardBinaryData | |
| 186 | WdsGetBlackboardStringA | |
| 187 | WdsGetBlackboardStringW | |
| 188 | WdsGetBlackboardUintPtr | |
| 189 | WdsGetBlackboardValue | |
| 190 | WdsGetCurrentExecutionGroup | |
| 191 | WdsGetSetupLog | |
| 192 | WdsGetTempDir | |
| 193 | WdsInitialize | |
| 194 | WdsInitializeCallbackArray | |
| 195 | WdsInitializeDataBinary | |
| 196 | WdsInitializeDataStringA | |
| 197 | WdsInitializeDataStringW | |
| 198 | WdsInitializeDataUInt32 | |
| 199 | WdsInitializeDataUInt64 | |
| 200 | WdsIsDiagnosticModeEnabled | |
| 201 | WdsIterateOfflineQueue | |
| 202 | WdsIterateQueue | |
| 203 | WdsLockBlackboardValue | |
| 204 | WdsLockExecutionGroup | |
| 205 | WdsLogCreate | |
| 206 | WdsLogDestroy | |
| 207 | WdsLogRegStockProviders | |
| 208 | WdsLogRegisterProvider | |
| 209 | WdsLogStructuredException | |
| 210 | WdsLogUnRegStockProviders | |
| 211 | WdsLogUnRegisterProvider | |
| 212 | WdsPackCollection | |
| 213 | WdsPublish | |
| 214 | WdsPublishEx | |
| 215 | WdsPublishImmediateAsync | |
| 216 | WdsPublishImmediateEx | |
| 217 | WdsPublishOffline | |
| 218 | WdsSeqAlloc | |
| 219 | WdsSeqFree | |
| 220 | WdsSetAssertFlags | |
| 221 | WdsSetBlackboardValue | |
| 222 | WdsSetNextExecutionGroup | |
| 223 | WdsSetUILanguage | |
| 224 | WdsSetupLogDestroy | |
| 225 | WdsSetupLogInit | |
| 226 | WdsSetupLogMessageA | |
| 227 | WdsSetupLogMessageW | |
| 228 | WdsSubscribeEx | |
| 229 | WdsTerminate | |
| 230 | WdsUnlockExecutionGroup | |
| 231 | WdsUnpackCollection | |
| 232 | WdsUnsubscribe | |
| 233 | WdsUnsubscribeEx | |
| 234 | WdsValidBlackboard |
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 | ; | |
| 6 | LIBRARY "WDSCSL.dll" | |
| 7 | EXPORTS | |
| 8 | WdsClientExecute | |
| 9 | WdsClientInitializeLibrary | |
| 10 | WdsClientPacketAllocate | |
| 11 | WdsClientPacketFree | |
| 12 | WdsClientRegisterTrace | |
| 13 | WdsClientSessionCreate | |
| 14 | WdsClientSessionExecute | |
| 15 | WdsClientSessionShutdown | |
| 16 | WdsCpPacketGetBuffer | |
| 17 | WdsCpPacketInitialize | |
| 18 | WdsCpPacketRelease | |
| 19 | WdsCpParameterAdd | |
| 20 | WdsCpParameterDelete | |
| 21 | WdsCpParameterQuery | |
| 22 | WdsCpParameterValidate | |
| 23 | WdsCpRecvPacketInitialize |
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 | ; | |
| 6 | LIBRARY "WdsImage.dll" | |
| 7 | EXPORTS | |
| 8 | FindFirstImage | |
| 9 | FindNextImage | |
| 10 | WDSFreeImageInformation | |
| 11 | WDSGetImageInformation | |
| 12 | WDSInitializeEmptyImageInformation | |
| 13 | WDSParseImageInformation | |
| 14 | WDSSetImageInformation | |
| 15 | WdsImgAddReference | |
| 16 | WdsImgApplyImage | |
| 17 | WdsImgCaptureImage | |
| 18 | WdsImgClose | |
| 19 | WdsImgCopyImage | |
| 20 | WdsImgCreateImageGroup | |
| 21 | WdsImgDeleteImage | |
| 22 | WdsImgDeleteImageGroup | |
| 23 | WdsImgDeleteUnattendFile | |
| 24 | WdsImgExportImage | |
| 25 | WdsImgExtractFiles | |
| 26 | WdsImgFindFirstImage | |
| 27 | WdsImgFindFirstImageGroup | |
| 28 | WdsImgFindNextImage | |
| 29 | WdsImgFindNextImageGroup | |
| 30 | WdsImgGetArchitecture | |
| 31 | WdsImgGetBootIndex | |
| 32 | WdsImgGetCompressionType | |
| 33 | WdsImgGetCreationTime | |
| 34 | WdsImgGetDependantFiles | |
| 35 | WdsImgGetDescription | |
| 36 | WdsImgGetEnabled | |
| 37 | WdsImgGetExFlags | |
| 38 | WdsImgGetFlags | |
| 39 | WdsImgGetHalName | |
| 40 | WdsImgGetHandleFromFindHandle | |
| 41 | WdsImgGetImageType | |
| 42 | WdsImgGetIndex | |
| 43 | WdsImgGetLanguage | |
| 44 | WdsImgGetLanguages | |
| 45 | WdsImgGetLastModifiedTime | |
| 46 | WdsImgGetName | |
| 47 | WdsImgGetPartitionStyle | |
| 48 | WdsImgGetPath | |
| 49 | WdsImgGetProductFamily | |
| 50 | WdsImgGetProductName | |
| 51 | WdsImgGetResourcePath | |
| 52 | WdsImgGetSecurity | |
| 53 | WdsImgGetServicePackLevel | |
| 54 | WdsImgGetSize | |
| 55 | WdsImgGetSystemRoot | |
| 56 | WdsImgGetUnattendFilePresent | |
| 57 | WdsImgGetVersion | |
| 58 | WdsImgGetXml | |
| 59 | WdsImgGroupCanImportImage | |
| 60 | WdsImgGroupGetName | |
| 61 | WdsImgGroupGetSecurity | |
| 62 | WdsImgGroupSetName | |
| 63 | WdsImgGroupSetSecurity | |
| 64 | WdsImgImportImage | |
| 65 | WdsImgIsAccessible | |
| 66 | WdsImgIsBootImage | |
| 67 | WdsImgIsFoundationImage | |
| 68 | WdsImgIsValidImageFile | |
| 69 | WdsImgOpenBootImageGroup | |
| 70 | WdsImgOpenImage | |
| 71 | WdsImgOpenImageGroup | |
| 72 | WdsImgOpenImageStore | |
| 73 | WdsImgRefreshData | |
| 74 | WdsImgReplaceImage | |
| 75 | WdsImgSetBootImage | |
| 76 | WdsImgSetDescription | |
| 77 | WdsImgSetEnabled | |
| 78 | WdsImgSetName | |
| 79 | WdsImgSetSecurity | |
| 80 | WdsImgSetUnattendFile | |
| 81 | WdsImgVerifyImageFile |
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 | ; | |
| 6 | LIBRARY "WdsUpgCompl.dll" | |
| 7 | EXPORTS | |
| 8 | WdsUpgradeComplianceCheck |
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 | ; | |
| 6 | LIBRARY "WDSUTIL.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 348 | DiskRegionSupportsCapabilityForType | |
| 349 | DiskSupportsCapabilityForType | |
| 350 | FreeReason | |
| 351 | GetApplicableDiskReason | |
| 352 | GetApplicableDiskRegionReason | |
| 353 | ; protected: struct _BLACKBOARD *__ptr64 __cdecl CUserSetting::GetBlackboard(void)__ptr64 | |
| 354 | ?GetBlackboard@CUserSetting@@IEAAPEAU_BLACKBOARD@@XZ | |
| 355 | GetDiskKey | |
| 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 | |
| 360 | GetRegionKey | |
| 361 | ; public: static int __cdecl CUpgradeUserSetting::IsUpgrade(void) | |
| 362 | ?IsUpgrade@CUpgradeUserSetting@@SAHXZ | |
| 363 | LogDiskReasons | |
| 364 | LogDiskRegionReasons | |
| 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 | |
| 515 | CallbackGetArgumentInt32 | |
| 516 | CallbackGetArgumentString | |
| 517 | CallbackGetArgumentUInt64 | |
| 518 | IsCrossArchitectureInstall | |
| 519 | PublishMessage | |
| 520 | SignalSetupComplianceBlock | |
| 521 | WdsCollectionAddString | |
| 522 | WdsCollectionAddUInt32 | |
| 523 | WdsCollectionAddUInt64 | |
| 524 | WdsPickTempDriveBasedOnInstallDrive | |
| 525 | WdsValidateInstallDrive |
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 | ; | |
| 7 | LIBRARY WebCheck.dll | |
| 8 | EXPORTS | |
| 9 | XMLScheduleElementToTaskTrigger | |
| 10 | DllCanUnloadNow | |
| 11 | DllGetClassObject | |
| 12 | DllInstall | |
| 13 | DllRegisterServer | |
| 14 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY WEBHITS.dll | |
| 8 | EXPORTS | |
| 9 | GetExtensionVersion | |
| 10 | HttpExtensionProc | |
| 11 | TerminateExtension |
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 | ; | |
| 6 | LIBRARY "wer.dll" | |
| 7 | EXPORTS | |
| 8 | WerSysprepCleanup | |
| 9 | WerSysprepGeneralize | |
| 10 | WerSysprepSpecialize | |
| 11 | WerUnattendedSetup | |
| 12 | WerpAddAppCompatData | |
| 13 | WerpAddFile | |
| 14 | WerpAddMemoryBlock | |
| 15 | WerpAddRegisteredDataToReport | |
| 16 | WerpAddSecondaryParameter | |
| 17 | WerpAddTextToReport | |
| 18 | WerpArchiveReport | |
| 19 | WerpCancelResponseDownload | |
| 20 | WerpCancelUpload | |
| 21 | WerpCloseStore | |
| 22 | WerpCreateMachineStore | |
| 23 | WerpDeleteReport | |
| 24 | WerpDestroyWerString | |
| 25 | WerpDownloadResponse | |
| 26 | WerpDownloadResponseTemplate | |
| 27 | WerpEnumerateStoreNext | |
| 28 | WerpEnumerateStoreStart | |
| 29 | WerpExtractReportFiles | |
| 30 | WerpGetBucketId | |
| 31 | WerpGetDynamicParameter | |
| 32 | WerpGetEventType | |
| 33 | WerpGetFileByIndex | |
| 34 | WerpGetFilePathByIndex | |
| 35 | WerpGetNumFiles | |
| 36 | WerpGetNumSecParams | |
| 37 | WerpGetNumSigParams | |
| 38 | WerpGetReportFinalConsent | |
| 39 | WerpGetReportFlags | |
| 40 | WerpGetReportInformation | |
| 41 | WerpGetReportTime | |
| 42 | WerpGetReportType | |
| 43 | WerpGetResponseId | |
| 44 | WerpGetResponseUrl | |
| 45 | WerpGetSecParamByIndex | |
| 46 | WerpGetSigParamByIndex | |
| 47 | WerpGetStoreLocation | |
| 48 | WerpGetStoreType | |
| 49 | WerpGetTextFromReport | |
| 50 | WerpGetUIParamByIndex | |
| 51 | WerpGetUploadTime | |
| 52 | WerpGetWerStringData | |
| 53 | WerpIsTransportAvailable | |
| 54 | WerpLoadReport | |
| 55 | WerpOpenMachineArchive | |
| 56 | WerpOpenMachineQueue | |
| 57 | WerpOpenUserArchive | |
| 58 | WerpReportCancel | |
| 59 | WerpRestartApplication | |
| 60 | WerpSetDynamicParameter | |
| 61 | WerpSetEventName | |
| 62 | WerpSetReportFlags | |
| 63 | WerpSetReportInformation | |
| 64 | WerpSetReportTime | |
| 65 | WerpSetReportUploadContextToken | |
| 66 | WerpShowNXNotification | |
| 67 | WerpShowSecondLevelConsent | |
| 68 | WerpShowUpsellUI | |
| 69 | WerpSubmitReportFromStore | |
| 70 | WerpSvcReportFromMachineQueue | |
| 71 | WerAddExcludedApplication | |
| 72 | WerRemoveExcludedApplication | |
| 73 | WerReportAddDump | |
| 74 | WerReportAddFile | |
| 75 | WerReportCloseHandle | |
| 76 | WerReportCreate | |
| 77 | WerReportSetParameter | |
| 78 | WerReportSetUIOption | |
| 79 | WerReportSubmit | |
| 80 | WerpGetReportConsent | |
| 81 | WerpIsDisabled | |
| 82 | WerpOpenUserQueue | |
| 83 | WerpPromtUser | |
| 84 | WerpSetCallBack |
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 | ; | |
| 6 | LIBRARY "WEVTFWD.DLL" | |
| 7 | EXPORTS | |
| 8 | WSManProvPullEvents | |
| 9 | WSManProvShutdown | |
| 10 | WSManProvStartup | |
| 11 | WSManProvSubscribe | |
| 12 | WSManProvUnsubscribe |
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 | ; | |
| 7 | LIBRARY WIADSS.DLL | |
| 8 | EXPORTS | |
| 9 | FindFirstImportDS | |
| 10 | FindNextImportDS | |
| 11 | CloseFindContext | |
| 12 | LoadImportDS | |
| 13 | UnloadImportDS | |
| 14 | GetLoaderStatus | |
| 15 | FindImportDSByDeviceName | |
| 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 | ; | |
| 7 | LIBRARY wiarpc.dll | |
| 8 | EXPORTS | |
| 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 | |
| 33 | WiaEventsInitialize | |
| 34 | WiaEventsTerminate |
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 | ; | |
| 7 | LIBRARY wiaservc.dll | |
| 8 | EXPORTS | |
| 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 | ServiceMain | |
| 32 | ; public: void __cdecl BUFFER_CHAIN_ITEM::SetUsed(unsigned long) __ptr64 | |
| 33 | ?SetUsed@BUFFER_CHAIN_ITEM@@QEAAXK@Z | |
| 34 | SvchostPushServiceGlobals | |
| 35 | DllEntryPoint | |
| 36 | DllRegisterServer | |
| 37 | DllUnregisterServer | |
| 38 | wiasCreateChildAppItem | |
| 39 | wiasCreateDrvItem | |
| 40 | wiasCreateLogInstance | |
| 41 | wiasCreatePropContext | |
| 42 | wiasDebugError | |
| 43 | wiasDebugTrace | |
| 44 | wiasDownSampleBuffer | |
| 45 | wiasFormatArgs | |
| 46 | wiasFreePropContext | |
| 47 | wiasGetChangedValueFloat | |
| 48 | wiasGetChangedValueGuid | |
| 49 | wiasGetChangedValueLong | |
| 50 | wiasGetChangedValueStr | |
| 51 | wiasGetChildrenContexts | |
| 52 | wiasGetContextFromName | |
| 53 | wiasGetDrvItem | |
| 54 | wiasGetImageInformation | |
| 55 | wiasGetItemType | |
| 56 | wiasGetPropertyAttributes | |
| 57 | wiasGetRootItem | |
| 58 | wiasIsPropChanged | |
| 59 | wiasParseEndorserString | |
| 60 | wiasPrintDebugHResult | |
| 61 | wiasQueueEvent | |
| 62 | wiasReadMultiple | |
| 63 | wiasReadPropBin | |
| 64 | wiasReadPropFloat | |
| 65 | wiasReadPropGuid | |
| 66 | wiasReadPropLong | |
| 67 | wiasReadPropStr | |
| 68 | wiasSendEndOfPage | |
| 69 | wiasSetItemPropAttribs | |
| 70 | wiasSetItemPropNames | |
| 71 | wiasSetPropChanged | |
| 72 | wiasSetPropertyAttributes | |
| 73 | wiasSetValidFlag | |
| 74 | wiasSetValidListFloat | |
| 75 | wiasSetValidListGuid | |
| 76 | wiasSetValidListLong | |
| 77 | wiasSetValidListStr | |
| 78 | wiasSetValidRangeFloat | |
| 79 | wiasSetValidRangeLong | |
| 80 | wiasUpdateScanRect | |
| 81 | wiasUpdateValidFormat | |
| 82 | wiasValidateItemProperties | |
| 83 | wiasWriteBufToFile | |
| 84 | wiasWriteMultiple | |
| 85 | wiasWritePageBufToFile | |
| 86 | wiasWritePropBin | |
| 87 | wiasWritePropFloat | |
| 88 | wiasWritePropGuid | |
| 89 | wiasWritePropLong | |
| 90 | wiasWritePropStr |
lib/libc/mingw/lib64/winhvemulation.def created+6| ... | ... | @@ -0,0 +1,6 @@ |
| 1 | LIBRARY "winhvemulation.dll" | |
| 2 | EXPORTS | |
| 3 | WHvEmulatorCreateEmulator | |
| 4 | WHvEmulatorDestroyEmulator | |
| 5 | WHvEmulatorTryIoEmulation | |
| 6 | WHvEmulatorTryMmioEmulation |
lib/libc/mingw/lib64/winhvplatform.def created+68| ... | ... | @@ -0,0 +1,68 @@ |
| 1 | LIBRARY "winhvplatform.dll" | |
| 2 | EXPORTS | |
| 3 | WHvAcceptPartitionMigration | |
| 4 | WHvAdviseGpaRange | |
| 5 | WHvAllocateVpciResource | |
| 6 | WHvCancelPartitionMigration | |
| 7 | WHvCancelRunVirtualProcessor | |
| 8 | WHvCompletePartitionMigration | |
| 9 | WHvCreateNotificationPort | |
| 10 | WHvCreatePartition | |
| 11 | WHvCreateTrigger | |
| 12 | WHvCreateVirtualProcessor | |
| 13 | WHvCreateVirtualProcessor2 | |
| 14 | WHvCreateVpciDevice | |
| 15 | WHvDeleteNotificationPort | |
| 16 | WHvDeletePartition | |
| 17 | WHvDeleteTrigger | |
| 18 | WHvDeleteVirtualProcessor | |
| 19 | WHvDeleteVpciDevice | |
| 20 | WHvGetCapability | |
| 21 | WHvGetInterruptTargetVpSet | |
| 22 | WHvGetPartitionCounters | |
| 23 | WHvGetPartitionProperty | |
| 24 | WHvGetVirtualProcessorCounters | |
| 25 | WHvGetVirtualProcessorCpuidOutput | |
| 26 | WHvGetVirtualProcessorInterruptControllerState | |
| 27 | WHvGetVirtualProcessorInterruptControllerState2 | |
| 28 | WHvGetVirtualProcessorRegisters | |
| 29 | WHvGetVirtualProcessorState | |
| 30 | WHvGetVirtualProcessorXsaveState | |
| 31 | WHvGetVpciDeviceInterruptTarget | |
| 32 | WHvGetVpciDeviceNotification | |
| 33 | WHvGetVpciDeviceProperty | |
| 34 | WHvMapGpaRange | |
| 35 | WHvMapGpaRange2 | |
| 36 | WHvMapVpciDeviceInterrupt | |
| 37 | WHvMapVpciDeviceMmioRanges | |
| 38 | WHvPostVirtualProcessorSynicMessage | |
| 39 | WHvQueryGpaRangeDirtyBitmap | |
| 40 | WHvReadGpaRange | |
| 41 | WHvReadVpciDeviceRegister | |
| 42 | WHvRegisterPartitionDoorbellEvent | |
| 43 | WHvRequestInterrupt | |
| 44 | WHvRequestVpciDeviceInterrupt | |
| 45 | WHvResetPartition | |
| 46 | WHvResumePartitionTime | |
| 47 | WHvRetargetVpciDeviceInterrupt | |
| 48 | WHvRunVirtualProcessor | |
| 49 | WHvSetNotificationPortProperty | |
| 50 | WHvSetPartitionProperty | |
| 51 | WHvSetVirtualProcessorInterruptControllerState | |
| 52 | WHvSetVirtualProcessorInterruptControllerState2 | |
| 53 | WHvSetVirtualProcessorRegisters | |
| 54 | WHvSetVirtualProcessorState | |
| 55 | WHvSetVirtualProcessorXsaveState | |
| 56 | WHvSetVpciDevicePowerState | |
| 57 | WHvSetupPartition | |
| 58 | WHvSignalVirtualProcessorSynicEvent | |
| 59 | WHvStartPartitionMigration | |
| 60 | WHvSuspendPartitionTime | |
| 61 | WHvTranslateGva | |
| 62 | WHvUnmapGpaRange | |
| 63 | WHvUnmapVpciDeviceInterrupt | |
| 64 | WHvUnmapVpciDeviceMmioRanges | |
| 65 | WHvUnregisterPartitionDoorbellEvent | |
| 66 | WHvUpdateTriggerParameters | |
| 67 | WHvWriteGpaRange | |
| 68 | WHvWriteVpciDeviceRegister |
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 | ; | |
| 7 | LIBRARY WINIPSEC.DLL | |
| 8 | EXPORTS | |
| 9 | SPDApiBufferAllocate | |
| 10 | SPDApiBufferFree | |
| 11 | AddTransportFilter | |
| 12 | DeleteTransportFilter | |
| 13 | EnumTransportFilters | |
| 14 | SetTransportFilter | |
| 15 | GetTransportFilter | |
| 16 | AddQMPolicy | |
| 17 | DeleteQMPolicy | |
| 18 | EnumQMPolicies | |
| 19 | SetQMPolicy | |
| 20 | GetQMPolicy | |
| 21 | AddMMPolicy | |
| 22 | DeleteMMPolicy | |
| 23 | EnumMMPolicies | |
| 24 | SetMMPolicy | |
| 25 | GetMMPolicy | |
| 26 | AddMMFilter | |
| 27 | DeleteMMFilter | |
| 28 | EnumMMFilters | |
| 29 | SetMMFilter | |
| 30 | GetMMFilter | |
| 31 | MatchMMFilter | |
| 32 | MatchTransportFilter | |
| 33 | GetQMPolicyByID | |
| 34 | GetMMPolicyByID | |
| 35 | AddMMAuthMethods | |
| 36 | DeleteMMAuthMethods | |
| 37 | EnumMMAuthMethods | |
| 38 | SetMMAuthMethods | |
| 39 | GetMMAuthMethods | |
| 40 | InitiateIKENegotiation | |
| 41 | QueryIKENegotiationStatus | |
| 42 | CloseIKENegotiationHandle | |
| 43 | EnumMMSAs | |
| 44 | QueryIKEStatistics | |
| 45 | DeleteMMSAs | |
| 46 | RegisterIKENotifyClient | |
| 47 | QueryIKENotifyData | |
| 48 | CloseIKENotifyHandle | |
| 49 | QueryIPSecStatistics | |
| 50 | EnumQMSAs | |
| 51 | AddTunnelFilter | |
| 52 | DeleteTunnelFilter | |
| 53 | EnumTunnelFilters | |
| 54 | SetTunnelFilter | |
| 55 | GetTunnelFilter | |
| 56 | MatchTunnelFilter | |
| 57 | OpenMMFilterHandle | |
| 58 | CloseMMFilterHandle | |
| 59 | OpenTransportFilterHandle | |
| 60 | CloseTransportFilterHandle | |
| 61 | OpenTunnelFilterHandle | |
| 62 | CloseTunnelFilterHandle | |
| 63 | EnumIPSecInterfaces | |
| 64 | AddSAs | |
| 65 | DeleteQMSAs | |
| 66 | GetConfigurationVariables | |
| 67 | SetConfigurationVariables | |
| 68 | QuerySpdPolicyState | |
| 69 | OpenIPSecPerformanceData | |
| 70 | CollectIPSecPerformanceData | |
| 71 | CloseIPSecPerformanceData |
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 | ; | |
| 7 | LIBRARY WlNotify.dll | |
| 8 | EXPORTS | |
| 9 | RegisterTicketExpiredNotificationEvent | |
| 10 | SCardResumeCertProp | |
| 11 | SCardStartCertProp | |
| 12 | SCardStopCertProp | |
| 13 | SCardSuspendCertProp | |
| 14 | SchedEventLogOff | |
| 15 | SchedStartShell | |
| 16 | ShowNotificationBalloonW | |
| 17 | UnregisterTicketExpiredNotificationEvent | |
| 18 | SensDisconnectEvent | |
| 19 | SensLockEvent | |
| 20 | SensLogoffEvent | |
| 21 | SensLogonEvent | |
| 22 | SensPostShellEvent | |
| 23 | SensReconnectEvent | |
| 24 | SensShutdownEvent | |
| 25 | SensStartScreenSaverEvent | |
| 26 | SensStartShellEvent | |
| 27 | SensStartupEvent | |
| 28 | SensStopScreenSaverEvent | |
| 29 | SensUnlockEvent | |
| 30 | TSEventDisconnect | |
| 31 | TSEventLogoff | |
| 32 | TSEventLogon | |
| 33 | TSEventPostShell | |
| 34 | TSEventReconnect | |
| 35 | TSEventShutdown | |
| 36 | TSEventStartShell | |
| 37 | TSEventStartup | |
| 38 | TermsrvCreateTempDir |
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 | ; | |
| 7 | LIBRARY WLSTORE.DLL | |
| 8 | EXPORTS | |
| 9 | DllRegisterServer | |
| 10 | DllUnregisterServer | |
| 11 | UpdateWirelessPSData | |
| 12 | WirelessAddPSToPolicy | |
| 13 | WirelessAllocPolMem | |
| 14 | WirelessAllocPolStr | |
| 15 | WirelessClearWMIStore | |
| 16 | WirelessClosePolicyStore | |
| 17 | WirelessCopyPolicyData | |
| 18 | WirelessCreatePolicyData | |
| 19 | WirelessDeletePolicyData | |
| 20 | WirelessEnumPolicyData | |
| 21 | WirelessFreeMulPolicyData | |
| 22 | WirelessFreePolMem | |
| 23 | WirelessFreePolStr | |
| 24 | WirelessFreePolicyData | |
| 25 | WirelessGPOOpenPolicyStore | |
| 26 | WirelessPolicyPSId | |
| 27 | WirelessReallocatePolMem | |
| 28 | WirelessReallocatePolStr | |
| 29 | WirelessRemovePSFromPolicy | |
| 30 | WirelessRemovePSFromPolicyId | |
| 31 | WirelessSetPSDataInPolicy | |
| 32 | WirelessSetPolicyData | |
| 33 | WirelessWriteDirectoryPolicyToWMI |
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 | ; | |
| 7 | LIBRARY wmi2xml.dll | |
| 8 | EXPORTS | |
| 9 | CloseWbemTextSource | |
| 10 | OpenWbemTextSource | |
| 11 | TextToWbemObject | |
| 12 | WbemObjectToText | |
| 13 | DllCanUnloadNow | |
| 14 | DllGetClassObject | |
| 15 | DllRegisterServer | |
| 16 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY WmiApRpl.dll | |
| 8 | EXPORTS | |
| 9 | WmiClosePerfData | |
| 10 | WmiCollectPerfData | |
| 11 | WmiOpenPerfData | |
| 12 | DllRegisterServer | |
| 13 | DllUnregisterServer |
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 | ; | |
| 6 | LIBRARY "WMILIB.SYS" | |
| 7 | EXPORTS | |
| 8 | WmiCompleteRequest | |
| 9 | WmiFireEvent | |
| 10 | WmiSystemControl |
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 | ; | |
| 7 | LIBRARY WMIsvc.DLL | |
| 8 | EXPORTS | |
| 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 | |
| 121 | DredgeRA | |
| 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 | |
| 186 | IsShutDown | |
| 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 | |
| 199 | MoveToAlone | |
| 200 | MoveToShared | |
| 201 | ; public: virtual void * __ptr64 __cdecl CWin32DefaultArena::Realloc(void * __ptr64,unsigned __int64) __ptr64 | |
| 202 | ?Realloc@CWin32DefaultArena@@UEAAPEAXPEAX_K@Z | |
| 203 | ServiceMain | |
| 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 | |
| 224 | DllRegisterServer | |
| 225 | DllUnregisterServer |
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 | ; | |
| 7 | LIBRARY wow64.dll | |
| 8 | EXPORTS | |
| 9 | Wow64AllocateHeap | |
| 10 | Wow64AllocateTemp | |
| 11 | Wow64ApcRoutine | |
| 12 | Wow64Assert | |
| 13 | Wow64CheckIfNXEnabled | |
| 14 | Wow64EmulateAtlThunk | |
| 15 | Wow64ExecuteFlags DATA | |
| 16 | Wow64FreeHeap | |
| 17 | Wow64GetWow64ImageOption | |
| 18 | Wow64KiUserCallbackDispatcher | |
| 19 | Wow64LdrpInitialize | |
| 20 | Wow64LogPrint | |
| 21 | Wow64OpenConfigKey | |
| 22 | Wow64PrepareForDebuggerAttach | |
| 23 | Wow64PrepareForException | |
| 24 | Wow64RaiseException | |
| 25 | Wow64ShallowThunkAllocObjectAttributes32TO64_FNC | |
| 26 | Wow64ShallowThunkAllocSecurityQualityOfService32TO64_FNC | |
| 27 | Wow64ShallowThunkSIZE_T32TO64 | |
| 28 | Wow64ShallowThunkSIZE_T64TO32 | |
| 29 | Wow64StartupContextToContextX86 | |
| 30 | Wow64SystemService | |
| 31 | Wow64SystemServiceEx | |
| 32 | pfnWow64PerfMonitorCall 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 | ; | |
| 7 | LIBRARY wow64cpu.dll | |
| 8 | EXPORTS | |
| 9 | CpuFlushInstructionCache | |
| 10 | CpuGetContext | |
| 11 | CpuGetStackPointer | |
| 12 | CpuInitializeStartupContext | |
| 13 | CpuNotifyDllLoad | |
| 14 | CpuNotifyDllUnload | |
| 15 | CpuPrepareForDebuggerAttach | |
| 16 | CpuProcessDebugEvent | |
| 17 | CpuProcessInit | |
| 18 | CpuProcessTerm | |
| 19 | CpuResetFloatingPoint | |
| 20 | CpuResetToConsistentState | |
| 21 | CpuSetContext | |
| 22 | CpuSetInstructionPointer | |
| 23 | CpuSetStackPointer | |
| 24 | CpuSimulate | |
| 25 | CpuSuspendThread | |
| 26 | CpuThreadInit | |
| 27 | CpuThreadTerm | |
| 28 | TurboDispatchJumpAddressEnd | |
| 29 | TurboDispatchJumpAddressStart |
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 | ; | |
| 7 | LIBRARY wow64mib.dll | |
| 8 | EXPORTS | |
| 9 | SnmpExtensionClose | |
| 10 | SnmpExtensionInit | |
| 11 | SnmpExtensionInitEx | |
| 12 | SnmpExtensionQuery | |
| 13 | SnmpExtensionTrap |
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 | ; | |
| 7 | LIBRARY wow64win.dll | |
| 8 | EXPORTS | |
| 9 | Win32kCallbackTable | |
| 10 | ptcbc DATA | |
| 11 | sdwhcon DATA | |
| 12 | sdwhwin32 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 | ; | |
| 7 | LIBRARY wshatm.dll | |
| 8 | EXPORTS | |
| 9 | WSHAddressToString | |
| 10 | WSHEnumProtocols | |
| 11 | WSHGetBroadcastSockaddr | |
| 12 | WSHGetProviderGuid | |
| 13 | WSHGetSockaddrType | |
| 14 | WSHGetSocketInformation | |
| 15 | WSHGetWSAProtocolInfo | |
| 16 | WSHGetWildcardSockaddr | |
| 17 | WSHGetWinsockMapping | |
| 18 | WSHIoctl | |
| 19 | WSHJoinLeaf | |
| 20 | WSHNotify | |
| 21 | WSHOpenSocket | |
| 22 | WSHOpenSocket2 | |
| 23 | WSHSetSocketInformation | |
| 24 | WSHStringToAddress |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_2.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_3.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_4.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_5.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_6.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudio1_7.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize |
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 | ; | |
| 6 | LIBRARY "X3DAudioD1_7.dll" | |
| 7 | EXPORTS | |
| 8 | X3DAudioCalculate | |
| 9 | X3DAudioInitialize | |
| 10 | X3DAudioSetValidationCallback |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_0.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_1.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_2.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_3.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_4.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFX1_5.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XAPOFXd1_5.dll" | |
| 7 | EXPORTS | |
| 8 | CreateFX |
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 | ; | |
| 6 | LIBRARY "XINPUT1_1.dll" | |
| 7 | EXPORTS | |
| 8 | DllMain | |
| 9 | XInputEnable | |
| 10 | XInputGetCapabilities | |
| 11 | XInputGetDSoundAudioDeviceGuids | |
| 12 | XInputGetState | |
| 13 | XInputSetState |
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 | ; | |
| 6 | LIBRARY "XINPUT1_2.dll" | |
| 7 | EXPORTS | |
| 8 | DllMain | |
| 9 | XInputEnable | |
| 10 | XInputGetCapabilities | |
| 11 | XInputGetDSoundAudioDeviceGuids | |
| 12 | XInputGetState | |
| 13 | XInputSetState |
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 | ; | |
| 6 | LIBRARY "XINPUT1_3.dll" | |
| 7 | EXPORTS | |
| 8 | DllMain | |
| 9 | XInputGetState | |
| 10 | XInputSetState | |
| 11 | XInputGetCapabilities | |
| 12 | XInputEnable | |
| 13 | XInputGetDSoundAudioDeviceGuids | |
| 14 | XInputGetBatteryInformation | |
| 15 | XInputGetKeystroke | |
| 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 | ; | |
| 6 | LIBRARY "XINPUT9_1_0.dll" | |
| 7 | EXPORTS | |
| 8 | ;DllMain | |
| 9 | XInputGetCapabilities | |
| 10 | XInputGetDSoundAudioDeviceGuids | |
| 11 | XInputGetState | |
| 12 | XInputSetState |
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 | ; | |
| 7 | LIBRARY ZoneOC.dll | |
| 8 | EXPORTS | |
| 9 | ZoneSetupProc |
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 | ; | |
| 6 | LIBRARY "acppage.dll" | |
| 7 | EXPORTS | |
| 8 | GetExeFromLnk |
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 | ; | |
| 6 | LIBRARY "ACPROXY.dll" | |
| 7 | EXPORTS | |
| 8 | PerformAutochkOperations |
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 | ; | |
| 6 | LIBRARY "ActionQueue.dll" | |
| 7 | EXPORTS | |
| 8 | GenerateActionQueue | |
| 9 | ProcessActionQueue |
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 | ; | |
| 6 | LIBRARY "AdhApi.dll" | |
| 7 | EXPORTS | |
| 8 | AdhEngineClose | |
| 9 | AdhEngineOpen | |
| 10 | AdhGetConfig | |
| 11 | AdhGetEvidenceCollectorResult | |
| 12 | AdhStatusEventSubscribe | |
| 13 | AdhStatusEventUnsubscribe |
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 | ; | |
| 6 | LIBRARY "adhsvc.dll" | |
| 7 | EXPORTS | |
| 8 | SubServiceScmNotification | |
| 9 | SubServiceStart | |
| 10 | SubServiceStop |
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 | ; | |
| 6 | LIBRARY "ADMTMPL.DLL" | |
| 7 | EXPORTS | |
| 8 | CreateCmtStoreObject | |
| 9 | CreateParserObject |
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 | ; | |
| 6 | LIBRARY "adsldpc.dll" | |
| 7 | EXPORTS | |
| 8 | ??0CLexer@@QAA@XZ | |
| 9 | ??1CLexer@@QAA@XZ | |
| 10 | ADSIPrint | |
| 11 | ADsAbandonSearch | |
| 12 | ADsCloseSearchHandle | |
| 13 | ADsCreateAttributeDefinition | |
| 14 | ADsCreateClassDefinition | |
| 15 | ADsCreateDSObject | |
| 16 | ADsCreateDSObjectExt | |
| 17 | ADsDeleteAttributeDefinition | |
| 18 | ADsDeleteClassDefinition | |
| 19 | ADsDeleteDSObject | |
| 20 | ADsEnumAttributes | |
| 21 | ADsEnumClasses | |
| 22 | ADsExecuteSearch | |
| 23 | ADsFreeColumn | |
| 24 | ADsGetColumn | |
| 25 | ADsGetFirstRow | |
| 26 | ADsGetNextColumnName | |
| 27 | ADsGetNextRow | |
| 28 | ADsGetObjectAttributes | |
| 29 | ADsGetPreviousRow | |
| 30 | ADsHelperGetCurrentRowMessage | |
| 31 | ADsObject | |
| 32 | ADsSetObjectAttributes | |
| 33 | ADsSetSearchPreference | |
| 34 | ADsWriteAttributeDefinition | |
| 35 | ADsWriteClassDefinition | |
| 36 | AdsTypeToLdapTypeCopyConstruct | |
| 37 | AdsTypeToLdapTypeCopyDNWithBinary | |
| 38 | AdsTypeToLdapTypeCopyDNWithString | |
| 39 | AdsTypeToLdapTypeCopyGeneralizedTime | |
| 40 | AdsTypeToLdapTypeCopyTime | |
| 41 | BerBvFree | |
| 42 | BerEncodingQuotaControl | |
| 43 | BuildADsParentPath | |
| 44 | BuildADsParentPathFromObjectInfo2 | |
| 45 | BuildADsParentPathFromObjectInfo | |
| 46 | BuildADsPathFromLDAPPath2 | |
| 47 | BuildADsPathFromLDAPPath | |
| 48 | BuildADsPathFromParent | |
| 49 | BuildLDAPPathFromADsPath2 | |
| 50 | BuildLDAPPathFromADsPath | |
| 51 | ChangeSeparator | |
| 52 | Component | |
| 53 | ConvertSidToString | |
| 54 | ConvertSidToU2Trustee | |
| 55 | ConvertU2TrusteeToSid | |
| 56 | FindEntryInSearchTable | |
| 57 | FindSearchTableIndex | |
| 58 | FreeObjectInfo | |
| 59 | GetDefaultServer | |
| 60 | GetDisplayName | |
| 61 | GetDomainDNSNameForDomain | |
| 62 | GetLDAPTypeName | |
| 63 | ?GetNextToken@CLexer@@QAAJPAGPAK@Z | |
| 64 | GetServerAndPort | |
| 65 | GetSyntaxOfAttribute | |
| 66 | InitObjectInfo | |
| 67 | ?InitializePath@CLexer@@QAAJPAG@Z | |
| 68 | IsGCNamespace | |
| 69 | LdapAddExtS | |
| 70 | LdapAddS | |
| 71 | LdapAttributeFree | |
| 72 | LdapCacheAddRef | |
| 73 | LdapCloseObject | |
| 74 | LdapCompareExt | |
| 75 | LdapControlFree | |
| 76 | LdapControlsFree | |
| 77 | LdapCountEntries | |
| 78 | LdapCrackUserDNtoNTLMUser2 | |
| 79 | LdapCreatePageControl | |
| 80 | LdapDeleteExtS | |
| 81 | LdapDeleteS | |
| 82 | LdapFirstAttribute | |
| 83 | LdapFirstEntry | |
| 84 | LdapGetDn | |
| 85 | LdapGetNextPageS | |
| 86 | LdapGetSchemaObjectCount | |
| 87 | LdapGetSubSchemaSubEntryPath | |
| 88 | LdapGetSyntaxIdOfAttribute | |
| 89 | LdapGetSyntaxOfAttributeOnServer | |
| 90 | LdapGetValues | |
| 91 | LdapGetValuesLen | |
| 92 | LdapInitializeSearchPreferences | |
| 93 | LdapIsClassNameValidOnServer | |
| 94 | LdapMakeSchemaCacheObsolete | |
| 95 | LdapMemFree | |
| 96 | LdapModDnS | |
| 97 | LdapModifyExtS | |
| 98 | LdapModifyS | |
| 99 | LdapMsgFree | |
| 100 | LdapNextAttribute | |
| 101 | LdapNextEntry | |
| 102 | LdapOpenObject2 | |
| 103 | LdapOpenObject | |
| 104 | LdapParsePageControl | |
| 105 | LdapParseResult | |
| 106 | LdapReadAttribute2 | |
| 107 | LdapReadAttribute | |
| 108 | LdapReadAttributeFast | |
| 109 | LdapRenameExtS | |
| 110 | LdapResult | |
| 111 | LdapSearch | |
| 112 | LdapSearchAbandonPage | |
| 113 | LdapSearchExtS | |
| 114 | LdapSearchInitPage | |
| 115 | LdapSearchS | |
| 116 | LdapSearchST | |
| 117 | LdapTypeBinaryToString | |
| 118 | LdapTypeCopyConstruct | |
| 119 | LdapTypeFreeLdapModList | |
| 120 | LdapTypeFreeLdapModObject | |
| 121 | LdapTypeFreeLdapObjects | |
| 122 | LdapTypeToAdsTypeDNWithBinary | |
| 123 | LdapTypeToAdsTypeDNWithString | |
| 124 | LdapTypeToAdsTypeGeneralizedTime | |
| 125 | LdapTypeToAdsTypeUTCTime | |
| 126 | LdapValueFree | |
| 127 | LdapValueFreeLen | |
| 128 | LdapcKeepHandleAround | |
| 129 | LdapcSetStickyServer | |
| 130 | PathName | |
| 131 | ReadPagingSupportedAttr | |
| 132 | ReadSecurityDescriptorControlType | |
| 133 | ReadServerSupportsIsADAMControl | |
| 134 | ReadServerSupportsIsADControl | |
| 135 | SchemaAddRef | |
| 136 | SchemaClose | |
| 137 | SchemaGetClassInfo | |
| 138 | SchemaGetClassInfoByIndex | |
| 139 | SchemaGetObjectCount | |
| 140 | SchemaGetPropertyInfo | |
| 141 | SchemaGetPropertyInfoByIndex | |
| 142 | SchemaGetStringsFromStringTable | |
| 143 | SchemaGetSyntaxOfAttribute | |
| 144 | SchemaIsClassAContainer | |
| 145 | SchemaOpen | |
| 146 | ?SetAtDisabler@CLexer@@QAAXH@Z | |
| 147 | ?SetExclaimnationDisabler@CLexer@@QAAXH@Z | |
| 148 | ?SetFSlashDisabler@CLexer@@QAAXH@Z | |
| 149 | SortAndRemoveDuplicateOIDs | |
| 150 | UnMarshallLDAPToLDAPSynID | |
| 151 | intcmp | |
| 152 | ADSIAbandonSearch | |
| 153 | ADSICloseDSObject | |
| 154 | ADSICloseSearchHandle | |
| 155 | ADSICreateDSObject | |
| 156 | ADSIDeleteDSObject | |
| 157 | ADSIExecuteSearch | |
| 158 | ADSIFreeColumn | |
| 159 | ADSIGetColumn | |
| 160 | ADSIGetFirstRow | |
| 161 | ADSIGetNextColumnName | |
| 162 | ADSIGetNextRow | |
| 163 | ADSIGetObjectAttributes | |
| 164 | ADSIGetPreviousRow | |
| 165 | ADSIModifyRdn | |
| 166 | ADSIOpenDSObject | |
| 167 | ADSISetObjectAttributes | |
| 168 | ADSISetSearchPreference | |
| 169 | ADsDecodeBinaryData | |
| 170 | ADsEncodeBinaryData | |
| 171 | ADsGetLastError | |
| 172 | ADsSetLastError | |
| 173 | AdsTypeFreeAdsObjects | |
| 174 | AllocADsMem | |
| 175 | AllocADsStr | |
| 176 | FreeADsMem | |
| 177 | FreeADsStr | |
| 178 | LdapTypeToAdsTypeCopyConstruct | |
| 179 | MapADSTypeToLDAPType | |
| 180 | MapLDAPTypeToADSType | |
| 181 | ReallocADsMem | |
| 182 | ReallocADsStr |
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 | ; | |
| 6 | LIBRARY "AECache.dll" | |
| 7 | EXPORTS | |
| 8 | AeCachePrep |
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 | ; | |
| 6 | LIBRARY "aeinv.dll" | |
| 7 | EXPORTS | |
| 8 | CollectMatchingInfo | |
| 9 | CollectMatchingInformation | |
| 10 | CreateAppxPackageInventory | |
| 11 | CreateSoftwareInventory | |
| 12 | SetFileExtensionList | |
| 13 | UpdateSoftwareInventoryW |
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 | ; | |
| 6 | LIBRARY "AELUPSVC.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "AEPDU.dll" | |
| 7 | EXPORTS | |
| 8 | AePduRunUpdateW |
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 | ; | |
| 6 | LIBRARY "AEPIC.dll" | |
| 7 | EXPORTS | |
| 8 | PicAmiClose | |
| 9 | PicAmiInitialize | |
| 10 | PicFreeFileInfo | |
| 11 | PicRetrieveFileInfo | |
| 12 | PicRetrieveFileInfoAppx |
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 | ; | |
| 6 | LIBRARY "Apphlpdm.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "appinfo.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "apprepapi.dll" | |
| 7 | EXPORTS | |
| 8 | AppRepComputeImageHash | |
| 9 | AppRepComputeSignatureInfo | |
| 10 | AppRepFreeAttributeLib | |
| 11 | AppRepInitializeAttributeLib | |
| 12 | AppRepParameterCleanup | |
| 13 | RepGetFileInformation | |
| 14 | RepGetFileReputation | |
| 15 | RepInformUserAction |
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 | ; | |
| 6 | LIBRARY "AppSruProv.dll" | |
| 7 | EXPORTS | |
| 8 | PsmQueryApplicationPerformanceInformation | |
| 9 | PsmQueryQuotaInformation | |
| 10 | SruInitializeProvider | |
| 11 | SruUninitializeProvider |
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 | ; | |
| 6 | LIBRARY "AppXAllUserStore.dll" | |
| 7 | EXPORTS | |
| 8 | AddPackageToRegistryStore | |
| 9 | AddStagedPackageToRegistryStore | |
| 10 | CheckPackagePreinstallPolicy | |
| 11 | CommitTakeOwnershipSession | |
| 12 | DeleteAllPackagesFromMainPackageArray | |
| 13 | DeleteAllPackagesFromPackageArray | |
| 14 | DeletePackageInfo | |
| 15 | DeleteUserRegistryKeyFromAllUserStore | |
| 16 | DidAppSurviveOSUpgradeForUser | |
| 17 | DoesPerUserStoreExist | |
| 18 | FamilyMonikerStringToSid | |
| 19 | FindExistingVersionInRegistryStore | |
| 20 | GetAllNonInboxPackagesFromRegistryStore | |
| 21 | GetAllPackagesToBeInstalledForUser | |
| 22 | GetAllStagedPackagesForMainPackageFromRegistryStore | |
| 23 | GetAppxProvisionFactory | |
| 24 | HasStagedPackages | |
| 25 | IsEnterprisePolicyEnabled | |
| 26 | IsInboxPackage | |
| 27 | IsNonInboxAllUserPackage | |
| 28 | IsPackageInUpgradeKey | |
| 29 | IsSystemInAuditBoot | |
| 30 | MarkStatusOfMainPackageForUser | |
| 31 | PackageFamilyNameFromId | |
| 32 | PackageIdBasicFromFullName | |
| 33 | PackageSidToPackageCapabilitySid | |
| 34 | RemovePackageFromRegistryStore | |
| 35 | RemoveStagedPackageFromRegistryStore | |
| 36 | RollbackTakeOwnershipSession | |
| 37 | TakeOwnershipOnFolder | |
| 38 | UpdateFrameworkPackageInRegistryStore | |
| 39 | UpdatePackageInRegistryStore |
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 | ; | |
| 6 | LIBRARY "AppxApplicabilityEngine.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 502 | GetApplicabilityContext | |
| 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 | |
| 983 | CreateApplicabilityContext | |
| 984 | FreeApplicabilityContext | |
| 985 | FreeApplicablePackages | |
| 986 | GetApplicablePackages | |
| 987 | GetApplicablePackagesForUser |
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 | ; | |
| 6 | LIBRARY "AppXDeploymentClient.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | GetApplicability | |
| 10 | AppxGetPackageType | |
| 11 | AppxPackageRepositoryRecoverStagedPackages | |
| 12 | AppxPackageRepositoryRecoverUserInstalls | |
| 13 | AppxRecoverUserInstallsForUpgrade | |
| 14 | AppxDeletePackageFiles | |
| 15 | AppxRequestRemovePackageForUser | |
| 16 | IsPackageInstalled | |
| 17 | RDSRecoverRequests | |
| 18 | AppxPreStageCleanupRunTask | |
| 19 | AppxPreRegisterPackage | |
| 20 | ReArmAppxPreStageCleanupTask | |
| 21 | AppxAddPackageToAllUserStoreForPbr | |
| 22 | GetPackageApplicabilityForUserLogon | |
| 23 | ord_16 @16 | |
| 24 | AppxValidatePackages |
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 | ; | |
| 6 | LIBRARY "AppxDeploymentExtensions.dll" | |
| 7 | EXPORTS | |
| 8 | LoadCategoryNameTable | |
| 9 | LoadExtensionRegistrationTable | |
| 10 | ShellRefresh |
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 | ; | |
| 6 | LIBRARY "AppxDeploymentServer.dll" | |
| 7 | EXPORTS | |
| 8 | CancelDeploymentImplementation | |
| 9 | CreateWnfStateNameImplementation | |
| 10 | EnumPackagesByUserSidInternal | |
| 11 | EnumPackagesByUserSidNamePublisherInternal | |
| 12 | EnumPackagesByUserSidPackageFamilyNameInternal | |
| 13 | EnumVisibilityByPackageFullNameInternal | |
| 14 | FindPackageByUserSidPackageFullNameInternal | |
| 15 | FixStagedPackagesImplementation | |
| 16 | GenerateBytecodeForPackageImplementation | |
| 17 | GenerateBytecodeForPackagesImplementation | |
| 18 | GetApplicabilityImplementation | |
| 19 | GetDeploymentError | |
| 20 | GetPackageFilesDiskUsageImplementation | |
| 21 | GetPackageTypeImplementation | |
| 22 | GetSortedRegisterPackageListImplementation | |
| 23 | IsPackageInstalledInternal | |
| 24 | PackageRepositoryAllocate | |
| 25 | PackageRepositoryFree | |
| 26 | RDSRecoverRequestsImplementation | |
| 27 | RequestPackageOperationImplementation | |
| 28 | ServiceMain | |
| 29 | SetDeploymentError | |
| 30 | SetPackageStateImplementation | |
| 31 | StartDeploymentImplementation | |
| 32 | AddToPurgeList | |
| 33 | AppXSetTrustLabelOnPackage | |
| 34 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "AppxSip.dll" | |
| 7 | EXPORTS | |
| 8 | AppxSipIsFileSupportedName | |
| 9 | AppxSipGetSignedDataMsg | |
| 10 | AppxSipPutSignedDataMsg | |
| 11 | AppxSipRemoveSignedDataMsg | |
| 12 | AppxSipCreateIndirectData | |
| 13 | AppxSipVerifyIndirectData | |
| 14 | P7xSipIsFileSupportedName | |
| 15 | P7xSipGetSignedDataMsg | |
| 16 | P7xSipPutSignedDataMsg | |
| 17 | P7xSipRemoveSignedDataMsg | |
| 18 | P7xSipCreateIndirectData | |
| 19 | P7xSipVerifyIndirectData | |
| 20 | AppxBundleSipIsFileSupportedName | |
| 21 | AppxBundleSipGetSignedDataMsg | |
| 22 | AppxBundleSipPutSignedDataMsg | |
| 23 | AppxBundleSipRemoveSignedDataMsg | |
| 24 | AppxBundleSipCreateIndirectData | |
| 25 | AppxBundleSipVerifyIndirectData |
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 | ; | |
| 6 | LIBRARY "AppxSysprep.dll" | |
| 7 | EXPORTS | |
| 8 | AppxSysprepSpecialize | |
| 9 | SysprepGeneralize |
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 | ; | |
| 6 | LIBRARY "atl110.DLL" | |
| 7 | EXPORTS | |
| 8 | AtlAdvise | |
| 9 | AtlUnadvise | |
| 10 | AtlFreeMarshalStream | |
| 11 | AtlMarshalPtrInProc | |
| 12 | AtlUnmarshalPtr | |
| 13 | AtlComModuleGetClassObject | |
| 14 | AtlComModuleRegisterClassObjects | |
| 15 | AtlComModuleRevokeClassObjects | |
| 16 | AtlComModuleUnregisterServer | |
| 17 | AtlUpdateRegistryFromResourceD | |
| 18 | AtlWaitWithMessageLoop | |
| 19 | AtlSetErrorInfo | |
| 20 | AtlCreateTargetDC | |
| 21 | AtlHiMetricToPixel | |
| 22 | AtlPixelToHiMetric | |
| 23 | AtlDevModeW2A | |
| 24 | AtlComPtrAssign | |
| 25 | AtlComQIPtrAssign | |
| 26 | AtlInternalQueryInterface | |
| 27 | AtlGetVersion | |
| 28 | AtlAxDialogBoxW | |
| 29 | AtlAxDialogBoxA | |
| 30 | AtlAxCreateDialogW | |
| 31 | AtlAxCreateDialogA | |
| 32 | AtlAxCreateControl | |
| 33 | AtlAxCreateControlEx | |
| 34 | AtlAxAttachControl | |
| 35 | AtlAxWinInit | |
| 36 | AtlWinModuleAddCreateWndData | |
| 37 | AtlWinModuleExtractCreateWndData | |
| 38 | AtlWinModuleRegisterWndClassInfoW | |
| 39 | AtlWinModuleRegisterWndClassInfoA | |
| 40 | AtlAxGetControl | |
| 41 | AtlAxGetHost | |
| 42 | AtlRegisterClassCategoriesHelper | |
| 43 | AtlIPersistStreamInit_Load | |
| 44 | AtlIPersistStreamInit_Save | |
| 45 | AtlIPersistPropertyBag_Load | |
| 46 | AtlIPersistPropertyBag_Save | |
| 47 | AtlGetObjectSourceInterface | |
| 48 | AtlLoadTypeLib | |
| 49 | AtlModuleAddTermFunc | |
| 50 | AtlAxCreateControlLic | |
| 51 | AtlAxCreateControlLicEx | |
| 52 | AtlCreateRegistrar | |
| 53 | AtlWinModuleRegisterClassExW | |
| 54 | AtlWinModuleRegisterClassExA | |
| 55 | AtlCallTermFunc | |
| 56 | AtlWinModuleInit | |
| 57 | AtlWinModuleTerm | |
| 58 | AtlSetPerUserRegistration | |
| 59 | AtlGetPerUserRegistration |
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 | ; | |
| 6 | LIBRARY "AUDIOEPB.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "audioeng.dll" | |
| 7 | EXPORTS | |
| 8 | AERT_Allocate | |
| 9 | AERT_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 | ; | |
| 6 | LIBRARY "AUDITCSE.dll" | |
| 7 | EXPORTS | |
| 8 | GenerateGroupPolicy | |
| 9 | GenerateGroupPolicyCap | |
| 10 | ProcessGroupPolicyEx | |
| 11 | ProcessGroupPolicyExCap |
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 | ; | |
| 6 | LIBRARY "AuthBroker.dll" | |
| 7 | EXPORTS | |
| 8 | AuthBrokerClearThreadClientContext | |
| 9 | AuthBrokerCreateClientContext | |
| 10 | AuthBrokerFreeClientContext | |
| 11 | AuthBrokerSetThreadClientContext | |
| 12 | PurgeAuthHostSsoCache |
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 | ; | |
| 6 | LIBRARY "AzSqlExt.dll" | |
| 7 | EXPORTS | |
| 8 | AzGenerateAudit | |
| 9 | __GetXpVersion | |
| 10 | xp_AzManAddRole | |
| 11 | xp_AzManAddUserToRole | |
| 12 | xp_AzManDeleteRole | |
| 13 | xp_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 | ; | |
| 6 | LIBRARY "BaseCSP.dll" | |
| 7 | EXPORTS | |
| 8 | CPAcquireContext | |
| 9 | CPAcquireContextW | |
| 10 | CPCreateHash | |
| 11 | CPDecrypt | |
| 12 | CPDeriveKey | |
| 13 | CPDestroyHash | |
| 14 | CPDestroyKey | |
| 15 | CPDuplicateHash | |
| 16 | CPDuplicateKey | |
| 17 | CPEncrypt | |
| 18 | CPExportKey | |
| 19 | CPGenKey | |
| 20 | CPGenRandom | |
| 21 | CPGetHashParam | |
| 22 | CPGetKeyParam | |
| 23 | CPGetProvParam | |
| 24 | CPGetUserKey | |
| 25 | CPHashData | |
| 26 | CPHashSessionKey | |
| 27 | CPImportKey | |
| 28 | CPReleaseContext | |
| 29 | CPSetHashParam | |
| 30 | CPSetKeyParam | |
| 31 | CPSetProvParam | |
| 32 | CPSignHash | |
| 33 | CPVerifySignature |
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 | ; | |
| 6 | LIBRARY "BatMeter.dll" | |
| 7 | EXPORTS | |
| 8 | ord_999 @999 | |
| 9 | BatMeterIconAnimationReset | |
| 10 | BatMeterIconThemeReset | |
| 11 | BatMeterOnDeviceChange | |
| 12 | CleanupBatteryData | |
| 13 | CreateBatteryData | |
| 14 | GetBatMeterIconAnimationState | |
| 15 | GetBatMeterIconAnimationTimeDelay | |
| 16 | GetBatMeterIconAnimationUpdate | |
| 17 | GetBatteryCapacityInfo | |
| 18 | GetBatteryDetails | |
| 19 | GetBatteryImmersiveIcon | |
| 20 | GetBatteryInfo | |
| 21 | GetBatteryStatusText | |
| 22 | GetBatteryWorkingState | |
| 23 | IsBatteryBad | |
| 24 | IsBatteryHealthWarningEnabled | |
| 25 | IsBatteryLevelCritical | |
| 26 | IsBatteryLevelLow | |
| 27 | IsBatteryLevelReserve | |
| 28 | PowerCapabilities | |
| 29 | QueryBatteryData | |
| 30 | SetBatteryHealthWarningState | |
| 31 | SetBatteryLevel | |
| 32 | SetBatteryWorkingState | |
| 33 | SubscribeBatteryUpdateNotification | |
| 34 | UnsubscribeBatteryUpdateNotification | |
| 35 | UpdateBatteryData | |
| 36 | UpdateBatteryDataAsync |
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 | ; | |
| 6 | LIBRARY "bcd.dll" | |
| 7 | EXPORTS | |
| 8 | BcdCloseObject | |
| 9 | BcdCloseStore | |
| 10 | BcdCopyObject | |
| 11 | BcdCopyObjectEx | |
| 12 | BcdCopyObjects | |
| 13 | BcdCreateObject | |
| 14 | BcdCreateStore | |
| 15 | BcdDeleteElement | |
| 16 | BcdDeleteObject | |
| 17 | BcdDeleteObjectReferences | |
| 18 | BcdDeleteSystemStore | |
| 19 | BcdEnumerateAndUnpackElements | |
| 20 | BcdEnumerateElementTypes | |
| 21 | BcdEnumerateElements | |
| 22 | BcdEnumerateElementsWithFlags | |
| 23 | BcdEnumerateObjects | |
| 24 | BcdExportStore | |
| 25 | BcdForciblyUnloadStore | |
| 26 | BcdGetElementData | |
| 27 | BcdGetElementDataWithFlags | |
| 28 | BcdImportStore | |
| 29 | BcdImportStoreWithFlags | |
| 30 | BcdMarkAsSystemStore | |
| 31 | BcdOpenObject | |
| 32 | BcdOpenStoreFromFile | |
| 33 | BcdOpenSystemStore | |
| 34 | BcdQueryObject | |
| 35 | BcdSetElementData | |
| 36 | BcdSetElementDataWithFlags | |
| 37 | BcdSetSystemStoreDevice | |
| 38 | GUID_BAD_MEMORY_GROUP | |
| 39 | GUID_BOOT_LOADER_SETTINGS_GROUP | |
| 40 | GUID_CURRENT_BOOT_ENTRY | |
| 41 | GUID_DEBUGGER_SETTINGS_GROUP | |
| 42 | GUID_DEFAULT_BOOT_ENTRY | |
| 43 | GUID_EMS_SETTINGS_GROUP | |
| 44 | GUID_FIRMWARE_BOOTMGR | |
| 45 | GUID_GLOBAL_SETTINGS_GROUP | |
| 46 | GUID_HYPERVISOR_SETTINGS_GROUP | |
| 47 | GUID_KERNEL_DEBUGGER_SETTINGS_GROUP | |
| 48 | GUID_RESUME_LOADER_SETTINGS_GROUP | |
| 49 | GUID_WINDOWS_BOOTMGR | |
| 50 | GUID_WINDOWS_LEGACY_NTLDR | |
| 51 | GUID_WINDOWS_MEMORY_TESTER | |
| 52 | GUID_WINDOWS_OS_TARGET_TEMPLATE_EFI | |
| 53 | GUID_WINDOWS_OS_TARGET_TEMPLATE_PCAT | |
| 54 | GUID_WINDOWS_RESUME_TARGET_TEMPLATE_EFI | |
| 55 | GUID_WINDOWS_RESUME_TARGET_TEMPLATE_PCAT | |
| 56 | GUID_WINDOWS_SETUP_EFI | |
| 57 | GUID_WINDOWS_SETUP_PCAT | |
| 58 | GUID_WINDOWS_SETUP_RAMDISK_OPTIONS | |
| 59 | PARTITION_BASIC_DATA_GUID | |
| 60 | PARTITION_CLUSTER_GUID | |
| 61 | PARTITION_ENTRY_UNUSED_GUID | |
| 62 | PARTITION_LDM_DATA_GUID | |
| 63 | PARTITION_LDM_METADATA_GUID | |
| 64 | PARTITION_MSFT_RECOVERY_GUID | |
| 65 | PARTITION_MSFT_RESERVED_GUID | |
| 66 | PARTITION_MSFT_SNAPSHOT_GUID | |
| 67 | PARTITION_SPACES_GUID | |
| 68 | PARTITION_SYSTEM_GUID | |
| 69 | SyspartDirectGetSystemDisk | |
| 70 | SyspartDirectGetSystemPartition | |
| 71 | SyspartDirectSetSystemDevice | |
| 72 | SyspartGetSystemDisk | |
| 73 | SyspartGetSystemPartition |
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 | ; | |
| 6 | LIBRARY "Bcp47Langs.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 70 | AppendUserLanguageInputMethods | |
| 71 | AppendUserLanguageInternal | |
| 72 | AppendUserLanguages | |
| 73 | Bcp47BufferFromLcid | |
| 74 | Bcp47FromCompactTagInternal | |
| 75 | Bcp47FromHkl | |
| 76 | Bcp47FromLcid | |
| 77 | Bcp47GetAbbreviation | |
| 78 | Bcp47GetDirectionality | |
| 79 | Bcp47GetDistance | |
| 80 | Bcp47GetExtensionSingletons | |
| 81 | Bcp47GetExtensionSubstring | |
| 82 | Bcp47GetIsoLanguageCode | |
| 83 | Bcp47GetIsoScriptCode | |
| 84 | Bcp47GetLanguageName | |
| 85 | Bcp47GetMuiForm | |
| 86 | Bcp47GetNeutralForm | |
| 87 | Bcp47GetNlsForm | |
| 88 | Bcp47GetSubtagMapInternal | |
| 89 | Bcp47GetUnIsoRegionCode | |
| 90 | Bcp47IsInstalledAndLicensedAsSystemLanguage | |
| 91 | Bcp47IsValid | |
| 92 | Bcp47IsWellFormed | |
| 93 | Bcp47Normalize | |
| 94 | Bcp47RequiresTransientLcid | |
| 95 | ClearApplicationLanguageOverride | |
| 96 | ClearApplicationManifestLanguages | |
| 97 | ClearHttpAcceptLanguageOptOut | |
| 98 | ClearUserDisplayLanguageOverride | |
| 99 | ClearUserLocaleFromLanguageProfileOptOut | |
| 100 | CompactTagFromBcp47Internal | |
| 101 | FilterLanguageListOnInstalledMuiLanguages | |
| 102 | GetApplicationLanguageOverride | |
| 103 | GetApplicationLanguages | |
| 104 | GetApplicationLayoutDirection | |
| 105 | GetApplicationManifestLanguages | |
| 106 | GetAppropriateUserLocaleForUserLanguages | |
| 107 | GetAvailableTransientLcidCount | |
| 108 | GetHttpAcceptLanguageOptOut | |
| 109 | GetInputMethodOverrideForUser | |
| 110 | GetPendingUserDisplayLanguage | |
| 111 | GetSerializedUserLanguageProfile | |
| 112 | GetUserDisplayLanguageOverride | |
| 113 | GetUserLanguageInputMethods | |
| 114 | GetUserLanguageInputMethodsForUser | |
| 115 | GetUserLanguages | |
| 116 | GetUserLanguagesForUser | |
| 117 | GetUserLocaleFromLanguageProfileOptOut | |
| 118 | IsTransientLcid | |
| 119 | IsValidBcp47RegionSubtag | |
| 120 | LanguageListAsHttpAcceptHeader | |
| 121 | LanguageListAsMuiForm | |
| 122 | LcidFromBcp47 | |
| 123 | RemoveInputsForAllLanguagesInternal | |
| 124 | RemoveUserLanguageInputMethods | |
| 125 | ResolveLanguages | |
| 126 | SetApplicationLanguageOverride | |
| 127 | SetApplicationManifestLanguages | |
| 128 | SetHttpAcceptLanguageOptOut | |
| 129 | SetInputMethodOverride | |
| 130 | SetUserDisplayLanguageOverride | |
| 131 | SetUserLanguageInputMethods | |
| 132 | SetUserLanguagesInternal | |
| 133 | SetUserLocaleFromLanguageProfileOptOut | |
| 134 | SqmLanguageProfileData |
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 | ; | |
| 6 | LIBRARY "bcryptPrimitives.dll" | |
| 7 | EXPORTS | |
| 8 | GetAsymmetricEncryptionInterface | |
| 9 | GetCipherInterface | |
| 10 | GetHashInterface | |
| 11 | GetKeyDerivationInterface | |
| 12 | GetRngInterface | |
| 13 | GetSecretAgreementInterface | |
| 14 | GetSignatureInterface | |
| 15 | ProcessPrng |
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 | ; | |
| 6 | LIBRARY "BDEHDCFGLIB.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 27 | BdeCfgCalculateSizeRequirements | |
| 28 | BdeCfgCanCreateActivePartOnDisk | |
| 29 | BdeCfgCheckAndGetBootVolume | |
| 30 | BdeCfgCheckGPTRecoveryPartition | |
| 31 | BdeCfgCheckVolumeAsCandidate | |
| 32 | BdeCfgCleanupOldBootFiles | |
| 33 | BdeCfgCountGPTPartitions | |
| 34 | BdeCfgCreateWinREPartitionGPT | |
| 35 | BdeCfgDetectWinRESize | |
| 36 | BdeCfgDetectWinREVolumeName | |
| 37 | BdeCfgDisableWinRE | |
| 38 | BdeCfgFindBasicVolumeExtent | |
| 39 | BdeCfgFindCandidateVolumes | |
| 40 | BdeCfgFindGPTRecoveryPartitionCandidate | |
| 41 | BdeCfgFindLargestUnallocatedExtent | |
| 42 | BdeCfgFindRecoveryPartitionGPT | |
| 43 | BdeCfgFindVolumeWithName | |
| 44 | BdeCfgFindVolumeWithProp | |
| 45 | BdeCfgGetBootVolume | |
| 46 | BdeCfgGetDeviceNameFromVolume | |
| 47 | BdeCfgGetMaxShrinkSize | |
| 48 | BdeCfgGetNtfsVolumeSize | |
| 49 | BdeCfgGetVolumeDisk | |
| 50 | BdeCfgGetVolumeDriveLetter | |
| 51 | BdeCfgGetVolumeFromId | |
| 52 | BdeCfgInitialize | |
| 53 | BdeCfgIsDiskConfiguredForBitLocker | |
| 54 | BdeCfgIsElevated | |
| 55 | BdeCfgIsWinREOnOSVolume | |
| 56 | BdeCfgLoadErrorString | |
| 57 | BdeCfgLoadResourceString | |
| 58 | BdeCfgMigrateBootHive | |
| 59 | BdeCfgMoveWinRE | |
| 60 | BdeCfgRestart | |
| 61 | BdeCfgSecureFormatPartition | |
| 62 | BdeCfgShrinkSimpleVolume | |
| 63 | BdeCfgUninitialize | |
| 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 | |
| 108 | BdeCfgLogCandidateDrive | |
| 109 | BdeCfgLogClose | |
| 110 | BdeCfgLogCommandLineParams | |
| 111 | BdeCfgLogDetectedWinRE | |
| 112 | BdeCfgLogEnumExtent | |
| 113 | BdeCfgLogError | |
| 114 | BdeCfgLogFailedTarget | |
| 115 | BdeCfgLogFoundUnallocatedExtent | |
| 116 | BdeCfgLogInit | |
| 117 | BdeCfgLogWarning |
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 | ; | |
| 6 | LIBRARY "BDEREPAIR.dll" | |
| 7 | EXPORTS | |
| 8 | FveAuthWithClearKey | |
| 9 | FveAuthWithKey | |
| 10 | FveAuthWithPassphraseW | |
| 11 | FveAuthWithPasswordW | |
| 12 | FveCreateRestoreContext | |
| 13 | FveDecryptData | |
| 14 | FveDestroyRestoreContext | |
| 15 | FveGetConvLogOffset | |
| 16 | FveGetInterruptedRangeOffset | |
| 17 | FveGetMetadataFromRestoreContext | |
| 18 | FveLoadConvLog | |
| 19 | FveRecoverBlock | |
| 20 | FveSupplyInformationBlock | |
| 21 | FveSupplyKeyPackage | |
| 22 | FveSupplyWatermark |
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 | ; | |
| 6 | LIBRARY "bdesvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "bfe.dll" | |
| 7 | EXPORTS | |
| 8 | BfeGetDirectDispatchTable | |
| 9 | BfeOnServiceStartTypeChange | |
| 10 | BfeServiceMain | |
| 11 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "bi.dll" | |
| 7 | EXPORTS | |
| 8 | BiActivateDeferredWorkItem | |
| 9 | BiActivateInBackground | |
| 10 | BiActivateWorkItem | |
| 11 | BiAssociateActivationProxy | |
| 12 | BiAssociateApplicationExtensionClass | |
| 13 | BiCancelWorkItem | |
| 14 | BiCreateEventForPackageName | |
| 15 | BiDeleteEvent | |
| 16 | BiDisassociateWorkItem | |
| 17 | BiDiscardPendingActivations | |
| 18 | BiEnumerateBrokeredEvents | |
| 19 | BiEnumerateUserSessions | |
| 20 | BiEnumerateWorkItemsForPackageName | |
| 21 | BiFreeMemory | |
| 22 | BiQueryBrokeredEvent | |
| 23 | BiQuerySystemStateBroadcastChannels | |
| 24 | BiQueryUserSession | |
| 25 | BiQueryWorkItem | |
| 26 | BiSignalEvent | |
| 27 | BiSignalMultipleEvents | |
| 28 | BiUpdateEventFlags | |
| 29 | BiUpdateEventInformation |
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 | ; | |
| 6 | LIBRARY "bisrv.dll" | |
| 7 | EXPORTS | |
| 8 | BipMain | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "bitsigd.dll" | |
| 7 | EXPORTS | |
| 8 | ?s_EmptyString@?$GenericStringHandle@G@@0UStringData@1@A DATA | |
| 9 | InitializeEx | |
| 10 | UninitializeEx |
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 | ; | |
| 6 | LIBRARY "bitsperf.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 37 | PerfMon_Close | |
| 38 | PerfMon_Collect | |
| 39 | PerfMon_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 | ; | |
| 6 | LIBRARY "BootMenuUX.dll" | |
| 7 | EXPORTS | |
| 8 | CreateAdvancedOptionsButton | |
| 9 | CreateAdvancedRecoveryToolsButtonCollection | |
| 10 | CreateAdvancedStartupButton | |
| 11 | CreateAdvancedStartupLaunchPage | |
| 12 | CreateBasicResetFinalChecksPage | |
| 13 | CreateBasicResetLandingPage | |
| 14 | CreateBasicSystemResetButton | |
| 15 | CreateBasicSystemResetLaunchPage | |
| 16 | CreateBitlockerLandingPage | |
| 17 | CreateBlackWallpaperButton | |
| 18 | CreateBootableDeviceButtonCollection | |
| 19 | CreateBootableOSButtonCollection | |
| 20 | CreateCSRTFinalPage | |
| 21 | CreateClearWallpaperPage | |
| 22 | CreateDefaultOSButton | |
| 23 | CreateDefaultOSButtonCollection | |
| 24 | CreateDefaultOSListButton | |
| 25 | CreateDeviceListButton | |
| 26 | CreateFactoryResetFinalChecksPage | |
| 27 | CreateFactoryResetLandingPage | |
| 28 | CreateFactorySystemResetButton | |
| 29 | CreateFactorySystemResetLaunchPage | |
| 30 | CreateFirmwareSettingsButton | |
| 31 | CreateFiveMinuteTimeoutAction | |
| 32 | CreateFiveSecondTimeoutAction | |
| 33 | CreateKeyboardLayoutButtonCollection | |
| 34 | CreateLanguageButtonCollection | |
| 35 | CreateOSListButton | |
| 36 | CreateOneMinuteTimeoutAction | |
| 37 | CreatePBRCancelButton | |
| 38 | CreatePBRFinalPage | |
| 39 | CreatePBRStartPage | |
| 40 | CreatePBRfactoryResetAllVolumesButton | |
| 41 | CreatePBRfactoryResetBareMetalDisabled | |
| 42 | CreatePBRfactoryResetBareMetalEnabled | |
| 43 | CreatePBRfactoryResetCancelOperationButton | |
| 44 | CreatePBRfactoryResetContinueChecksButton | |
| 45 | CreatePBRfactoryResetDataEraseDisabled | |
| 46 | CreatePBRfactoryResetDataEraseEnabled | |
| 47 | CreatePBRfactoryResetOsOnlyButton | |
| 48 | CreatePasswordButton | |
| 49 | CreatePasswordPage | |
| 50 | CreateRecoveryToolsListButton | |
| 51 | CreateRestartButton | |
| 52 | CreateSelectOSPage | |
| 53 | CreateSetWallpaperPage | |
| 54 | CreateShutdownButton | |
| 55 | CreateSkippableSelectOSPage | |
| 56 | CreateTenSecondTimeoutAction | |
| 57 | CreateThirtySecondTimeoutAction | |
| 58 | CreateTopLevelRecoveryToolsButtonCollection | |
| 59 | CreateTopLevelRecoveryToolsPage | |
| 60 | CreateUserNameButtonCollection | |
| 61 | CreateUserSelectionPage | |
| 62 | CreateWinReTargetOSButtonCollection | |
| 63 | CreateWinReTargetOSPage | |
| 64 | CreateZeroSecondTimeoutAction | |
| 65 | InitializePasswordDatabase | |
| 66 | InitializeSRTSyncInterface | |
| 67 | InitializeSyncInterface | |
| 68 | UtilBcdCloseSystemStore | |
| 69 | UtilGetCurrentKeyboardLayout |
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 | ; | |
| 6 | LIBRARY "BrokerLib.dll" | |
| 7 | EXPORTS | |
| 8 | BrBufferFree | |
| 9 | BrCheckCallerCapabilities | |
| 10 | BrCheckCallerIsAppContainer | |
| 11 | BrCreateBrokerInstance | |
| 12 | BrCreateBrokeredEvent | |
| 13 | BrDecQuota | |
| 14 | BrDeleteBrokerInstance | |
| 15 | BrDeleteBrokeredEvent | |
| 16 | BrFindBrokeredEvent | |
| 17 | BrGetBrokeredAppState | |
| 18 | BrGetQuota | |
| 19 | BrIncQuota | |
| 20 | BrInitializeBrokerInstance | |
| 21 | BrLockBroker | |
| 22 | BrQueryBrokeredApplicationState | |
| 23 | BrQueryBrokeredEvents | |
| 24 | BrRegisterBrokeredEvent | |
| 25 | BrSignalBrokerEvent | |
| 26 | BrUnlockBroker | |
| 27 | BrUnregisterBrokeredEvent |
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 | ; | |
| 6 | LIBRARY "bthpanapi.dll" | |
| 7 | EXPORTS | |
| 8 | BluetoothCloseNetworkHandle | |
| 9 | BluetoothConnectToNetwork | |
| 10 | BluetoothCreateNetworkHandle | |
| 11 | BluetoothDisconnectFromNetwork | |
| 12 | BluetoothDuplicateNetworkHandle | |
| 13 | BluetoothFindFirstNetwork | |
| 14 | BluetoothFindNetworkClose | |
| 15 | BluetoothFindNextNetwork | |
| 16 | BluetoothGetIncompleteConnectedNetworkHandle | |
| 17 | BluetoothGetNetworkAddress | |
| 18 | BluetoothGetNetworkAvailableRoles | |
| 19 | BluetoothGetNetworkContainerId | |
| 20 | BluetoothGetNetworkInterfaceId | |
| 21 | BluetoothGetNetworkName | |
| 22 | BluetoothGetNetworkStatus | |
| 23 | BluetoothRegisterNetworkNotifications | |
| 24 | BluetoothUnregisterNetworkNotifications |
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 | ; | |
| 6 | LIBRARY "BthSQM.dll" | |
| 7 | EXPORTS | |
| 8 | BthSqmRunTask |
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 | ; | |
| 6 | LIBRARY "capisp.dll" | |
| 7 | EXPORTS | |
| 8 | CAPISysPrep_Generalize | |
| 9 | CryptoSysPrep_Clean | |
| 10 | CryptoSysPrep_Specialize | |
| 11 | CryptoSysPrep_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 | ; | |
| 6 | LIBRARY "catsrv.dll" | |
| 7 | EXPORTS | |
| 8 | ?CancelWriteICR@@YAJPAPAUIComponentRecords@@@Z | |
| 9 | CreateComponentLibraryTS | |
| 10 | GetCatalogCRMClerk | |
| 11 | ?GetReadICR@@YAJHPAPAUIComponentRecords@@@Z | |
| 12 | ?GetWriteICR@@YAJPAPAUIComponentRecords@@@Z | |
| 13 | OpenComponentLibraryTS | |
| 14 | ?ReleaseReadICR@@YAXPAPAUIComponentRecords@@@Z | |
| 15 | ?SaveWriteICR@@YAJPAPAUIComponentRecords@@@Z | |
| 16 | GetAppImport |
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 | ; | |
| 6 | LIBRARY "catsrvut.DLL" | |
| 7 | EXPORTS | |
| 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 | |
| 24 | RegDBBackup | |
| 25 | RegDBRestore | |
| 26 | StartMTSTOCOM | |
| 27 | WinlogonHandlePendingInfOperations | |
| 28 | CGMIsAdministrator | |
| 29 | COMPlusUninstallActionW | |
| 30 | CreateComRegDBWriter | |
| 31 | DestroyComRegDBWriter | |
| 32 | FindAssemblyModulesW | |
| 33 | ManagedRequestW | |
| 34 | QueryUserDllW | |
| 35 | RunMTSToCom | |
| 36 | SysprepComplus | |
| 37 | SysprepComplus2 |
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 | ; | |
| 6 | LIBRARY "certca.dll" | |
| 7 | EXPORTS | |
| 8 | CAFindByName | |
| 9 | CAFindByCertType | |
| 10 | CAFindByIssuerDN | |
| 11 | CAEnumFirstCA | |
| 12 | CAEnumNextCA | |
| 13 | CACreateNewCA | |
| 14 | CAUpdateCA | |
| 15 | CAUpdateCAEx | |
| 16 | CADeleteCA | |
| 17 | CADeleteCAEx | |
| 18 | CACountCAs | |
| 19 | CACloseCA | |
| 20 | CAGetCAProperty | |
| 21 | CAFreeCAProperty | |
| 22 | CASetCAProperty | |
| 23 | CAGetCACertificate | |
| 24 | CASetCACertificate | |
| 25 | CAGetCAExpiration | |
| 26 | CASetCAExpiration | |
| 27 | CAGetCASecurity | |
| 28 | CASetCASecurity | |
| 29 | CAAccessCheck | |
| 30 | CAAccessCheckEx | |
| 31 | CAEnumCertTypesForCA | |
| 32 | CAEnumCertTypesForCAEx | |
| 33 | CAAddCACertificateType | |
| 34 | CAAddCACertificateTypeEx | |
| 35 | CARemoveCACertificateType | |
| 36 | CARemoveCACertificateTypeEx | |
| 37 | CAGetCAFlags | |
| 38 | CASetCAFlags | |
| 39 | CAGetDN | |
| 40 | CAEnumCertTypes | |
| 41 | CAEnumCertTypesEx | |
| 42 | CAFindCertTypeByName | |
| 43 | CACreateCertType | |
| 44 | CAUpdateCertType | |
| 45 | CAUpdateCertTypeEx | |
| 46 | CADeleteCertType | |
| 47 | CADeleteCertTypeEx | |
| 48 | CACloneCertType | |
| 49 | CAEnumNextCertType | |
| 50 | CACountCertTypes | |
| 51 | CACloseCertType | |
| 52 | CAGetCertTypeProperty | |
| 53 | CAGetCertTypePropertyEx | |
| 54 | CASetCertTypeProperty | |
| 55 | CASetCertTypePropertyEx | |
| 56 | CADCSetCertTypePropertyEx | |
| 57 | CAFreeCertTypeProperty | |
| 58 | CAGetCertTypeExtensions | |
| 59 | CAGetCertTypeExtensionsEx | |
| 60 | CAFreeCertTypeExtensions | |
| 61 | CASetCertTypeExtension | |
| 62 | CAGetCertTypeKeySpec | |
| 63 | CASetCertTypeKeySpec | |
| 64 | CAGetCertTypeExpiration | |
| 65 | CASetCertTypeExpiration | |
| 66 | CAGetCertTypeFlags | |
| 67 | CAGetCertTypeFlagsEx | |
| 68 | CASetCertTypeFlags | |
| 69 | CASetCertTypeFlagsEx | |
| 70 | CAInstallDefaultCertType | |
| 71 | CAInstallDefaultCertTypeEx | |
| 72 | CAIsCertTypeCurrent | |
| 73 | CAIsCertTypeCurrentEx | |
| 74 | CACertTypeGetSecurity | |
| 75 | CACertTypeSetSecurity | |
| 76 | CACertTypeAccessCheck | |
| 77 | CACertTypeAccessCheckEx | |
| 78 | CACertTypeAuthzAccessCheck | |
| 79 | CAOIDCreateNew | |
| 80 | CAOIDCreateNewEx | |
| 81 | CAOIDSetProperty | |
| 82 | CAOIDSetPropertyEx | |
| 83 | CAOIDAdd | |
| 84 | CAOIDAddEx | |
| 85 | CAOIDDelete | |
| 86 | CAOIDDeleteEx | |
| 87 | CAOIDGetProperty | |
| 88 | CAOIDGetPropertyEx | |
| 89 | CAOIDFreeProperty | |
| 90 | CAOIDGetLdapURL | |
| 91 | CAOIDFreeLdapURL | |
| 92 | CACertTypeRegisterQuery | |
| 93 | CACertTypeQuery | |
| 94 | CACertTypeUnregisterQuery | |
| 95 | CACreateLocalAutoEnrollmentObject | |
| 96 | CADeleteLocalAutoEnrollmentObject | |
| 97 | CACreateAutoEnrollmentObjectEx | |
| 98 | CAEnumCertTypesEx2 | |
| 99 | CAFindCertTypeByName2 | |
| 100 | ord_601 @601 | |
| 101 | ord_602 @602 | |
| 102 | ord_603 @603 | |
| 103 | ord_604 @604 | |
| 104 | ord_701 @701 | |
| 105 | ord_702 @702 | |
| 106 | ord_703 @703 | |
| 107 | ord_704 @704 | |
| 108 | ord_705 @705 | |
| 109 | ord_706 @706 | |
| 110 | ord_707 @707 | |
| 111 | ord_708 @708 | |
| 112 | ord_801 @801 | |
| 113 | ord_802 @802 | |
| 114 | ord_803 @803 | |
| 115 | ord_804 @804 | |
| 116 | ord_805 @805 | |
| 117 | ord_806 @806 | |
| 118 | ord_807 @807 | |
| 119 | ord_808 @808 | |
| 120 | ord_809 @809 | |
| 121 | ord_810 @810 | |
| 122 | ord_811 @811 | |
| 123 | ord_812 @812 | |
| 124 | ord_813 @813 | |
| 125 | ord_814 @814 | |
| 126 | ord_815 @815 | |
| 127 | ord_816 @816 | |
| 128 | ord_817 @817 | |
| 129 | ord_818 @818 | |
| 130 | ord_819 @819 | |
| 131 | ord_820 @820 | |
| 132 | ord_821 @821 | |
| 133 | ord_822 @822 | |
| 134 | ord_823 @823 | |
| 135 | ord_824 @824 | |
| 136 | ord_825 @825 | |
| 137 | ord_826 @826 | |
| 138 | ord_827 @827 | |
| 139 | ord_828 @828 | |
| 140 | ord_829 @829 | |
| 141 | ord_830 @830 | |
| 142 | ord_831 @831 | |
| 143 | ord_832 @832 | |
| 144 | ord_833 @833 | |
| 145 | ord_834 @834 | |
| 146 | ord_835 @835 | |
| 147 | ord_836 @836 | |
| 148 | ord_837 @837 | |
| 149 | ord_838 @838 | |
| 150 | ord_839 @839 | |
| 151 | ord_840 @840 | |
| 152 | ord_841 @841 | |
| 153 | ord_842 @842 | |
| 154 | ord_843 @843 | |
| 155 | ord_844 @844 | |
| 156 | ord_845 @845 | |
| 157 | ord_846 @846 | |
| 158 | ord_847 @847 | |
| 159 | ord_848 @848 | |
| 160 | ord_849 @849 | |
| 161 | ord_850 @850 | |
| 162 | ord_851 @851 | |
| 163 | ord_852 @852 | |
| 164 | ord_853 @853 | |
| 165 | ord_854 @854 | |
| 166 | ord_855 @855 | |
| 167 | ord_856 @856 | |
| 168 | ord_857 @857 | |
| 169 | ord_858 @858 | |
| 170 | ord_859 @859 | |
| 171 | CCFindCertificateBuildFilter | |
| 172 | CCFindCertificateFreeFilter | |
| 173 | CCFindCertificateFromFilter | |
| 174 | CCGetCertNameList | |
| 175 | CCFreeStringArray | |
| 176 | ord_865 @865 | |
| 177 | ord_866 @866 | |
| 178 | ord_867 @867 | |
| 179 | ord_868 @868 | |
| 180 | ord_869 @869 | |
| 181 | ord_870 @870 | |
| 182 | ord_871 @871 | |
| 183 | ord_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 | ; | |
| 6 | LIBRARY "certcli.dll" | |
| 7 | EXPORTS | |
| 8 | CSPrintAssert | |
| 9 | CSPrintError | |
| 10 | DbgPrintf | |
| 11 | DbgPrintfInit | |
| 12 | DbgIsSSActive | |
| 13 | myHResultToString | |
| 14 | myGetErrorMessageText | |
| 15 | myHResultToStringRaw | |
| 16 | CAAccessCheck | |
| 17 | ord_210 @210 | |
| 18 | CAAccessCheckEx | |
| 19 | CAAddCACertificateType | |
| 20 | myFreeColumnDisplayNames | |
| 21 | myRobustLdapBind | |
| 22 | myIsDelayLoadHResult | |
| 23 | myHExceptionCode | |
| 24 | myJetHResult | |
| 25 | myModifyVirtualRootsAndFileShares | |
| 26 | ord_219 @219 | |
| 27 | ord_220 @220 | |
| 28 | ord_221 @221 | |
| 29 | CAAddCACertificateTypeEx | |
| 30 | DecodeFileW | |
| 31 | CACertTypeAccessCheck | |
| 32 | EncodeToFileW | |
| 33 | CACertTypeAccessCheckEx | |
| 34 | CACertTypeAuthzAccessCheck | |
| 35 | CACertTypeGetSecurity | |
| 36 | CACertTypeQuery | |
| 37 | CACertTypeRegisterQuery | |
| 38 | CACertTypeSetSecurity | |
| 39 | CACertTypeUnregisterQuery | |
| 40 | CACloneCertType | |
| 41 | CACloseCA | |
| 42 | CACloseCertType | |
| 43 | CACountCAs | |
| 44 | CACountCertTypes | |
| 45 | CACreateAutoEnrollmentObjectEx | |
| 46 | CACreateCertType | |
| 47 | myAddShare | |
| 48 | ord_241 @241 | |
| 49 | DbgLogStringInit | |
| 50 | CACreateLocalAutoEnrollmentObject | |
| 51 | CACreateNewCA | |
| 52 | WszToMultiByteIntegerBuf | |
| 53 | WszToMultiByteInteger | |
| 54 | myGetErrorMessageText1 | |
| 55 | myGetErrorMessageTextEx | |
| 56 | myCAPropGetDisplayName | |
| 57 | myCAPropInfoUnmarshal | |
| 58 | myCAPropInfoLookup | |
| 59 | myRobustLdapBindEx | |
| 60 | caTranslateFileTimePeriodToPeriodUnits | |
| 61 | myCryptBinaryToString | |
| 62 | myCryptBinaryToStringA | |
| 63 | myCryptStringToBinary | |
| 64 | myCryptStringToBinaryA | |
| 65 | myOIDHashOIDToString | |
| 66 | myLogExceptionInit | |
| 67 | myHExceptionCodePrint | |
| 68 | DbgPrintfW | |
| 69 | IsASPEnabledInIIS | |
| 70 | EnableASPInIIS | |
| 71 | IsISAPIExtensionEnabled | |
| 72 | EnableISAPIExtension | |
| 73 | myGetSidFromDomain | |
| 74 | IsASPEnabledInIIS_New | |
| 75 | CADCSetCertTypePropertyEx | |
| 76 | CADeleteCA | |
| 77 | CADeleteCAEx | |
| 78 | CADeleteCertType | |
| 79 | CADeleteCertTypeEx | |
| 80 | CADeleteLocalAutoEnrollmentObject | |
| 81 | CAEnumCertTypes | |
| 82 | CAEnumCertTypesEx | |
| 83 | CAEnumCertTypesForCA | |
| 84 | CAEnumCertTypesForCAEx | |
| 85 | CAEnumFirstCA | |
| 86 | CAEnumNextCA | |
| 87 | CAEnumNextCertType | |
| 88 | CAFindByCertType | |
| 89 | CAFindByIssuerDN | |
| 90 | CAFindByName | |
| 91 | CAFindCertTypeByName | |
| 92 | CAFreeCAProperty | |
| 93 | CAFreeCertTypeExtensions | |
| 94 | CAFreeCertTypeProperty | |
| 95 | CAGetCACertificate | |
| 96 | CAGetCAExpiration | |
| 97 | CAGetCAFlags | |
| 98 | CAGetCAProperty | |
| 99 | CAGetCASecurity | |
| 100 | CAGetCertTypeExpiration | |
| 101 | CAGetCertTypeExtensions | |
| 102 | CAGetCertTypeExtensionsEx | |
| 103 | CAGetCertTypeFlags | |
| 104 | CAGetCertTypeFlagsEx | |
| 105 | CAGetCertTypeKeySpec | |
| 106 | CAGetCertTypeProperty | |
| 107 | CAGetCertTypePropertyEx | |
| 108 | CAGetDN | |
| 109 | CAInstallDefaultCertType | |
| 110 | CAInstallDefaultCertTypeEx | |
| 111 | CAIsCertTypeCurrent | |
| 112 | CAIsCertTypeCurrentEx | |
| 113 | CAOIDAdd | |
| 114 | CAOIDAddEx | |
| 115 | CAOIDCreateNew | |
| 116 | CAOIDCreateNewEx | |
| 117 | CAOIDDelete | |
| 118 | CAOIDDeleteEx | |
| 119 | CAOIDFreeLdapURL | |
| 120 | CAOIDFreeProperty | |
| 121 | CAOIDGetLdapURL | |
| 122 | CAOIDGetProperty | |
| 123 | CAOIDGetPropertyEx | |
| 124 | CAOIDSetProperty | |
| 125 | CAOIDSetPropertyEx | |
| 126 | CARemoveCACertificateType | |
| 127 | CARemoveCACertificateTypeEx | |
| 128 | CASetCACertificate | |
| 129 | CASetCAExpiration | |
| 130 | CASetCAFlags | |
| 131 | CASetCAProperty | |
| 132 | CASetCASecurity | |
| 133 | CASetCertTypeExpiration | |
| 134 | CASetCertTypeExtension | |
| 135 | CASetCertTypeFlags | |
| 136 | CASetCertTypeFlagsEx | |
| 137 | CASetCertTypeKeySpec | |
| 138 | CASetCertTypeProperty | |
| 139 | CASetCertTypePropertyEx | |
| 140 | CAUpdateCA | |
| 141 | CAUpdateCAEx | |
| 142 | CAUpdateCertType | |
| 143 | CAUpdateCertTypeEx | |
| 144 | myDoesDSExist@209 | |
| 145 | mySanitizeName | |
| 146 | mySanitizedNameToDSName | |
| 147 | mySanitizedNameToShortName | |
| 148 | myRevertSanitizeName | |
| 149 | myGenerateGuidString | |
| 150 | myGenerateGuidSerialNumber | |
| 151 | mylstrcmpiL | |
| 152 | myHGetLastError | |
| 153 | CSPrintErrorLineFile | |
| 154 | CSPrintErrorLineFile2 | |
| 155 | CSPrintErrorLineFileData | |
| 156 | CSPrintErrorLineFileData2 | |
| 157 | CAGetAccessRights | |
| 158 | CAIsValid | |
| 159 | CAGetCertTypeAccessRights | |
| 160 | CAIsCertTypeValid | |
| 161 | ord_365 @365 | |
| 162 | DbgLogStringInit2 | |
| 163 | ord_367 @367 | |
| 164 | RemoveISAPIExtension | |
| 165 | RemoveVDir | |
| 166 | SplitConfigString | |
| 167 | AddOrRemoveOCSPISAPIExtension | |
| 168 | myGetTargetMachineDomainDnsName | |
| 169 | ord_374 @374 | |
| 170 | myNetLogonUser | |
| 171 | CertcliGetDetailedCertcliVersionString | |
| 172 | myGetHashAlgorithmOIDInfoFromSignatureAlgorithm | |
| 173 | myEnablePrivilege | |
| 174 | CAGetConfigStringFromUIPicker |
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 | ; | |
| 6 | LIBRARY "certenroll.dll" | |
| 7 | EXPORTS | |
| 8 | ord_15 @15 | |
| 9 | ord_16 @16 | |
| 10 | ord_18 @18 | |
| 11 | ord_19 @19 | |
| 12 | ord_20 @20 | |
| 13 | ord_21 @21 | |
| 14 | ord_22 @22 | |
| 15 | ord_23 @23 | |
| 16 | ord_24 @24 | |
| 17 | ord_25 @25 | |
| 18 | ord_26 @26 | |
| 19 | ord_27 @27 | |
| 20 | ord_28 @28 | |
| 21 | ord_29 @29 | |
| 22 | ord_30 @30 | |
| 23 | ord_31 @31 | |
| 24 | LogCertReplace | |
| 25 | LogCertDelete | |
| 26 | LogCertArchive | |
| 27 | LogCertExpire | |
| 28 | ord_36 @36 | |
| 29 | ord_37 @37 | |
| 30 | ord_38 @38 | |
| 31 | LogCertInstall | |
| 32 | LogCertCopy | |
| 33 | LogCertImport | |
| 34 | LogCertExport |
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 | ; | |
| 6 | LIBRARY "CertEnrollUI.dll" | |
| 7 | EXPORTS | |
| 8 | CreateUIObject |
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 | ; | |
| 6 | LIBRARY "certprop.dll" | |
| 7 | EXPORTS | |
| 8 | CertPropServiceMain | |
| 9 | ScPolicyServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "CHARTV.dll" | |
| 7 | EXPORTS | |
| 8 | CvCloseDataSource | |
| 9 | CvCreateDataSource | |
| 10 | CvGetData | |
| 11 | CvGetDataSourceName | |
| 12 | CvInitialize | |
| 13 | CvSetData | |
| 14 | CvSetDataSourceName | |
| 15 | CvUninitialize |
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 | ; | |
| 6 | LIBRARY "chkwudrv.dll" | |
| 7 | EXPORTS | |
| 8 | CancelWUOperation | |
| 9 | IsWUAvailable | |
| 10 | OpenWUContext | |
| 11 | ReleaseWUContext | |
| 12 | RemoveWUDirectory | |
| 13 | WUDownloadUpdatedFiles | |
| 14 | WUExpandUpdateToPath | |
| 15 | WUFindMatchingDriver | |
| 16 | WUInstallBestUpdate |
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 | ; | |
| 6 | LIBRARY "CHxReadingStringIME.dll" | |
| 7 | EXPORTS | |
| 8 | GetReadingString | |
| 9 | ShowReadingWindow |
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 | ; | |
| 6 | LIBRARY "CI.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | ord_2 @2 | |
| 10 | ord_3 @3 | |
| 11 | CiCheckSignedFile | |
| 12 | CiFindPageHashesInCatalog | |
| 13 | CiFindPageHashesInSignedFile | |
| 14 | CiFreePolicyInfo | |
| 15 | CiGetPEInformation | |
| 16 | CiInitialize | |
| 17 | CiVerifyHashInCatalog |
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 | ; | |
| 6 | LIBRARY "CMDEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CmdBatNotificationStub | |
| 9 | DoSHChangeNotify | |
| 10 | FindFirstStreamWStub | |
| 11 | FindNextStreamWStub | |
| 12 | GetBinaryTypeWStub | |
| 13 | GetVDMCurrentDirectoriesStub | |
| 14 | LookupAccountSidWStub | |
| 15 | MessageBeepStub | |
| 16 | QueryFullProcessImageNameWStub | |
| 17 | SaferWorker | |
| 18 | ShellExecuteWorker | |
| 19 | WNetAddConnection2WStub | |
| 20 | WNetCancelConnection2WStub | |
| 21 | WNetGetConnectionWStub |
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 | ; | |
| 6 | LIBRARY "cmifw.DLL" | |
| 7 | EXPORTS | |
| 8 | EnableGroupW | |
| 9 | unattendW |
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 | ; | |
| 6 | LIBRARY "cmipnpinstall.DLL" | |
| 7 | EXPORTS | |
| 8 | OnlineSetupPNPInstall |
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 | ; | |
| 6 | LIBRARY "cofiredm.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "colorui.dll" | |
| 7 | EXPORTS | |
| 8 | LaunchColorCpl |
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 | ; | |
| 6 | LIBRARY "combase.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | ObjectStublessClient3 | |
| 10 | ObjectStublessClient4 | |
| 11 | ObjectStublessClient5 | |
| 12 | ObjectStublessClient6 | |
| 13 | ObjectStublessClient7 | |
| 14 | ObjectStublessClient8 | |
| 15 | ObjectStublessClient9 | |
| 16 | ObjectStublessClient10 | |
| 17 | ObjectStublessClient11 | |
| 18 | ObjectStublessClient12 | |
| 19 | ObjectStublessClient13 | |
| 20 | ObjectStublessClient14 | |
| 21 | ObjectStublessClient15 | |
| 22 | ObjectStublessClient16 | |
| 23 | ObjectStublessClient17 | |
| 24 | ObjectStublessClient18 | |
| 25 | ObjectStublessClient19 | |
| 26 | ObjectStublessClient20 | |
| 27 | ObjectStublessClient21 | |
| 28 | ObjectStublessClient22 | |
| 29 | ObjectStublessClient23 | |
| 30 | ObjectStublessClient24 | |
| 31 | ObjectStublessClient25 | |
| 32 | ObjectStublessClient26 | |
| 33 | ObjectStublessClient27 | |
| 34 | ObjectStublessClient28 | |
| 35 | ObjectStublessClient29 | |
| 36 | ObjectStublessClient30 | |
| 37 | ObjectStublessClient31 | |
| 38 | ObjectStublessClient32 | |
| 39 | NdrProxyForwardingFunction3 | |
| 40 | NdrProxyForwardingFunction4 | |
| 41 | NdrProxyForwardingFunction5 | |
| 42 | NdrProxyForwardingFunction6 | |
| 43 | NdrProxyForwardingFunction7 | |
| 44 | NdrProxyForwardingFunction8 | |
| 45 | NdrProxyForwardingFunction9 | |
| 46 | NdrProxyForwardingFunction10 | |
| 47 | NdrProxyForwardingFunction11 | |
| 48 | NdrProxyForwardingFunction12 | |
| 49 | NdrProxyForwardingFunction13 | |
| 50 | NdrProxyForwardingFunction14 | |
| 51 | NdrProxyForwardingFunction15 | |
| 52 | NdrProxyForwardingFunction16 | |
| 53 | NdrProxyForwardingFunction17 | |
| 54 | NdrProxyForwardingFunction18 | |
| 55 | NdrProxyForwardingFunction19 | |
| 56 | NdrProxyForwardingFunction20 | |
| 57 | NdrProxyForwardingFunction21 | |
| 58 | NdrProxyForwardingFunction22 | |
| 59 | NdrProxyForwardingFunction23 | |
| 60 | NdrProxyForwardingFunction24 | |
| 61 | NdrProxyForwardingFunction25 | |
| 62 | NdrProxyForwardingFunction26 | |
| 63 | NdrProxyForwardingFunction27 | |
| 64 | NdrProxyForwardingFunction28 | |
| 65 | NdrProxyForwardingFunction29 | |
| 66 | NdrProxyForwardingFunction30 | |
| 67 | NdrProxyForwardingFunction31 | |
| 68 | NdrProxyForwardingFunction32 | |
| 69 | NdrOleInitializeExtension | |
| 70 | ord_63 @63 | |
| 71 | ord_64 @64 | |
| 72 | ord_65 @65 | |
| 73 | ord_66 @66 | |
| 74 | ord_67 @67 | |
| 75 | ord_68 @68 | |
| 76 | ord_69 @69 | |
| 77 | ord_70 @70 | |
| 78 | ord_71 @71 | |
| 79 | RoFailFastWithErrorContextInternal2 | |
| 80 | RoFailFastWithErrorContextInternal | |
| 81 | UpdateProcessTracing | |
| 82 | CLSIDFromOle1Class | |
| 83 | CLSIDFromProgID | |
| 84 | CLSIDFromString | |
| 85 | CleanupOleStateInAllTls | |
| 86 | ord_79 @79 | |
| 87 | ord_80 @80 | |
| 88 | ord_81 @81 | |
| 89 | CleanupTlsOleState | |
| 90 | ClearCleanupFlag | |
| 91 | CoAddRefServerProcess | |
| 92 | CoAllowUnmarshalerCLSID | |
| 93 | ord_86 @86 | |
| 94 | ord_87 @87 | |
| 95 | ord_88 @88 | |
| 96 | CoCancelCall | |
| 97 | ord_90 @90 | |
| 98 | ord_91 @91 | |
| 99 | ord_92 @92 | |
| 100 | ord_93 @93 | |
| 101 | CoCopyProxy | |
| 102 | ord_95 @95 | |
| 103 | ord_96 @96 | |
| 104 | ord_97 @97 | |
| 105 | ord_98 @98 | |
| 106 | ord_99 @99 | |
| 107 | ord_100 @100 | |
| 108 | ord_101 @101 | |
| 109 | ord_102 @102 | |
| 110 | ord_103 @103 | |
| 111 | ord_104 @104 | |
| 112 | CoCreateErrorInfo | |
| 113 | CoCreateFreeThreadedMarshaler | |
| 114 | CoCreateGuid | |
| 115 | CoCreateInstance | |
| 116 | CoCreateInstanceEx | |
| 117 | ord_110 @110 | |
| 118 | ord_111 @111 | |
| 119 | ord_112 @112 | |
| 120 | CoCreateInstanceFromApp | |
| 121 | CoCreateObjectInContext | |
| 122 | CoDeactivateObject | |
| 123 | CoDecodeProxy | |
| 124 | CoDecrementMTAUsage | |
| 125 | CoDisableCallCancellation | |
| 126 | CoDisconnectContext | |
| 127 | ord_120 @120 | |
| 128 | ord_121 @121 | |
| 129 | ord_122 @122 | |
| 130 | ord_123 @123 | |
| 131 | ord_124 @124 | |
| 132 | ord_125 @125 | |
| 133 | ord_126 @126 | |
| 134 | ord_127 @127 | |
| 135 | ord_128 @128 | |
| 136 | ord_129 @129 | |
| 137 | ord_130 @130 | |
| 138 | CoDisconnectObject | |
| 139 | CoEnableCallCancellation | |
| 140 | ord_133 @133 | |
| 141 | ord_134 @134 | |
| 142 | ord_135 @135 | |
| 143 | ord_136 @136 | |
| 144 | ord_137 @137 | |
| 145 | ord_138 @138 | |
| 146 | ord_139 @139 | |
| 147 | CoFreeUnusedLibraries | |
| 148 | CoFreeUnusedLibrariesEx | |
| 149 | CoGetActivationState | |
| 150 | CoGetApartmentID | |
| 151 | CoGetApartmentType | |
| 152 | CoGetCallContext | |
| 153 | CoGetCallState | |
| 154 | CoGetCallerTID | |
| 155 | CoGetCancelObject | |
| 156 | CoGetClassObject | |
| 157 | CoGetClassVersion | |
| 158 | CoGetContextToken | |
| 159 | CoGetCurrentLogicalThreadId | |
| 160 | CoGetCurrentProcess | |
| 161 | CoGetDefaultContext | |
| 162 | CoGetErrorInfo | |
| 163 | CoGetInstanceFromFile | |
| 164 | CoGetInstanceFromIStorage | |
| 165 | CoGetInterfaceAndReleaseStream | |
| 166 | CoGetMalloc | |
| 167 | CoGetMarshalSizeMax | |
| 168 | CoGetModuleType | |
| 169 | CoGetObjectContext | |
| 170 | CoGetPSClsid | |
| 171 | CoGetProcessIdentifier | |
| 172 | CoGetStandardMarshal | |
| 173 | CoGetStdMarshalEx | |
| 174 | CoGetSystemSecurityPermissions | |
| 175 | CoGetTreatAsClass | |
| 176 | CoImpersonateClient | |
| 177 | CoIncrementMTAUsage | |
| 178 | CoInitializeEx | |
| 179 | CoInitializeSecurity | |
| 180 | CoInitializeWOW | |
| 181 | CoInvalidateRemoteMachineBindings | |
| 182 | CoIsHandlerConnected | |
| 183 | CoLockObjectExternal | |
| 184 | CoMarshalHresult | |
| 185 | CoMarshalInterThreadInterfaceInStream | |
| 186 | CoMarshalInterface | |
| 187 | CoPopServiceDomain | |
| 188 | CoPushServiceDomain | |
| 189 | CoQueryAuthenticationServices | |
| 190 | CoQueryClientBlanket | |
| 191 | CoQueryProxyBlanket | |
| 192 | CoReactivateObject | |
| 193 | CoRegisterActivationFilter | |
| 194 | CoRegisterClassObject | |
| 195 | CoRegisterInitializeSpy | |
| 196 | CoRegisterMallocSpy | |
| 197 | CoRegisterMessageFilter | |
| 198 | CoRegisterPSClsid | |
| 199 | CoRegisterSurrogate | |
| 200 | CoRegisterSurrogateEx | |
| 201 | CoReleaseMarshalData | |
| 202 | CoReleaseServerProcess | |
| 203 | CoResumeClassObjects | |
| 204 | CoRetireServer | |
| 205 | CoRevertToSelf | |
| 206 | CoRevokeClassObject | |
| 207 | CoRevokeInitializeSpy | |
| 208 | CoRevokeMallocSpy | |
| 209 | CoSetCancelObject | |
| 210 | CoSetErrorInfo | |
| 211 | CoSetProxyBlanket | |
| 212 | CoSuspendClassObjects | |
| 213 | CoSwitchCallContext | |
| 214 | CoTaskMemAlloc | |
| 215 | CoTaskMemFree | |
| 216 | CoTaskMemRealloc | |
| 217 | CoTestCancel | |
| 218 | CoUninitialize | |
| 219 | CoUnloadingWOW | |
| 220 | CoUnmarshalHresult | |
| 221 | CoUnmarshalInterface | |
| 222 | CoVrfCheckThreadState | |
| 223 | CoVrfGetThreadState | |
| 224 | CoVrfReleaseThreadState | |
| 225 | CoWaitForMultipleHandles | |
| 226 | CoWaitForMultipleObjects | |
| 227 | CreateErrorInfo | |
| 228 | CreateStreamOnHGlobal | |
| 229 | DcomChannelSetHResult | |
| 230 | DllDebugObjectRPCHook | |
| 231 | EnableHookObject | |
| 232 | FreePropVariantArray | |
| 233 | FreePropVariantArrayWorker | |
| 234 | GetCatalogHelper | |
| 235 | GetErrorInfo | |
| 236 | GetFuncDescs | |
| 237 | GetHGlobalFromStream | |
| 238 | GetHookInterface | |
| 239 | GetRestrictedErrorInfo | |
| 240 | HSTRING_UserFree | |
| 241 | HSTRING_UserMarshal | |
| 242 | HSTRING_UserSize | |
| 243 | HSTRING_UserUnmarshal | |
| 244 | HkOleRegisterObject | |
| 245 | IIDFromString | |
| 246 | InternalAppInvokeExceptionFilter | |
| 247 | InternalCCFreeUnused | |
| 248 | InternalCCGetClassInformationForDde | |
| 249 | InternalCCGetClassInformationFromKey | |
| 250 | InternalCCSetDdeServerWindow | |
| 251 | InternalCMLSendReceive | |
| 252 | InternalCallAsProxyExceptionFilter | |
| 253 | InternalCallFrameExceptionFilter | |
| 254 | InternalCallerIsAppContainer | |
| 255 | InternalCanMakeOutCall | |
| 256 | InternalCoIsSurrogateProcess | |
| 257 | InternalCoRegisterDisconnectCallback | |
| 258 | InternalCoRegisterSurrogatedObject | |
| 259 | InternalCoStdMarshalObject | |
| 260 | InternalCoUnregisterDisconnectCallback | |
| 261 | InternalCompleteObjRef | |
| 262 | InternalCreateCAggId | |
| 263 | InternalCreateIdentityHandler | |
| 264 | InternalDoATClassCreate | |
| 265 | InternalFillLocalOXIDInfo | |
| 266 | InternalFreeObjRef | |
| 267 | InternalGetWindowPropInterface | |
| 268 | InternalIrotEnumRunning | |
| 269 | InternalIrotGetObject | |
| 270 | InternalIrotGetTimeOfLastChange | |
| 271 | InternalIrotIsRunning | |
| 272 | InternalIrotNoteChangeTime | |
| 273 | InternalIrotRegister | |
| 274 | InternalIrotRevoke | |
| 275 | InternalIsApartmentInitialized | |
| 276 | InternalIsProcessInitialized | |
| 277 | InternalMarshalObjRef | |
| 278 | InternalNotifyDDStartOrStop | |
| 279 | InternalOleModalLoopBlockFn | |
| 280 | InternalRegisterWindowPropInterface | |
| 281 | InternalReleaseMarshalObjRef | |
| 282 | InternalSTAInvoke | |
| 283 | InternalServerExceptionFilter | |
| 284 | InternalSetAptCallCtrlOnTlsIfRequired | |
| 285 | InternalSetOleThunkWowPtr | |
| 286 | InternalStubInvoke | |
| 287 | InternalTlsAllocData | |
| 288 | InternalUnmarshalObjRef | |
| 289 | IsErrorPropagationEnabled | |
| 290 | NdrExtStubInitialize | |
| 291 | NdrOleDllGetClassObject | |
| 292 | NdrpFindInterface | |
| 293 | ProgIDFromCLSID | |
| 294 | PropVariantClear | |
| 295 | PropVariantCopy | |
| 296 | ReleaseFuncDescs | |
| 297 | RoActivateInstance | |
| 298 | RoCaptureErrorContext | |
| 299 | RoClearError | |
| 300 | RoFailFastWithErrorContext | |
| 301 | RoFreeParameterizedTypeExtra | |
| 302 | RoGetActivatableClassRegistration | |
| 303 | RoGetActivationFactory | |
| 304 | RoGetAgileReference | |
| 305 | RoGetApartmentIdentifier | |
| 306 | RoGetErrorReportingFlags | |
| 307 | RoGetMatchingRestrictedErrorInfo | |
| 308 | RoGetParameterizedTypeInstanceIID | |
| 309 | RoGetServerActivatableClasses | |
| 310 | RoInitialize | |
| 311 | RoInspectCapturedStackBackTrace | |
| 312 | RoInspectThreadErrorInfo | |
| 313 | RoOriginateError | |
| 314 | RoOriginateErrorW | |
| 315 | RoOriginateLanguageException | |
| 316 | RoParameterizedTypeExtraGetTypeSignature | |
| 317 | RoRegisterActivationFactories | |
| 318 | RoRegisterForApartmentShutdown | |
| 319 | RoReportCapabilityCheckFailure | |
| 320 | RoReportFailedDelegate | |
| 321 | RoReportUnhandledError | |
| 322 | RoResolveRestrictedErrorInfoReference | |
| 323 | RoRevokeActivationFactories | |
| 324 | RoSetErrorReportingFlags | |
| 325 | RoTransformError | |
| 326 | RoTransformErrorW | |
| 327 | RoUninitialize | |
| 328 | RoUnregisterForApartmentShutdown | |
| 329 | SetCleanupFlag | |
| 330 | SetErrorInfo | |
| 331 | SetRestrictedErrorInfo | |
| 332 | StringFromCLSID | |
| 333 | StringFromGUID2 | |
| 334 | StringFromIID | |
| 335 | UpdateDCOMSettings | |
| 336 | WdtpInterfacePointer_UserMarshal | |
| 337 | WdtpInterfacePointer_UserSize | |
| 338 | WdtpInterfacePointer_UserUnmarshal | |
| 339 | WindowsCompareStringOrdinal | |
| 340 | WindowsConcatString | |
| 341 | WindowsCreateString | |
| 342 | WindowsCreateStringReference | |
| 343 | WindowsDeleteString | |
| 344 | WindowsDeleteStringBuffer | |
| 345 | WindowsDuplicateString | |
| 346 | WindowsGetStringLen | |
| 347 | WindowsGetStringRawBuffer | |
| 348 | WindowsInspectString | |
| 349 | WindowsIsStringEmpty | |
| 350 | WindowsPreallocateStringBuffer | |
| 351 | WindowsPromoteStringBuffer | |
| 352 | WindowsReplaceString | |
| 353 | WindowsStringHasEmbeddedNull | |
| 354 | WindowsSubstring | |
| 355 | WindowsSubstringWithSpecifiedLength | |
| 356 | WindowsTrimStringEnd | |
| 357 | WindowsTrimStringStart |
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 | ; | |
| 6 | LIBRARY "CompPkgSup.DLL" | |
| 7 | EXPORTS | |
| 8 | InstantiateComponentFromPackage |
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 | ; | |
| 6 | LIBRARY "ConnectedAccountState.dll" | |
| 7 | EXPORTS | |
| 8 | ActionCenterRunDllW |
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 | ; | |
| 6 | LIBRARY "CREDSSP.dll" | |
| 7 | EXPORTS | |
| 8 | InitSecurityInterfaceW | |
| 9 | SpAcceptSecurityContext | |
| 10 | SpAcquireCredentialsHandleW | |
| 11 | SpAddCredentialsW | |
| 12 | SpApplyControlToken | |
| 13 | SpChangeAccountPasswordW | |
| 14 | SpCompleteAuthToken | |
| 15 | SpDecryptMessage | |
| 16 | SpDeleteSecurityContext | |
| 17 | SpEncryptMessage | |
| 18 | SpEnumerateSecurityPackagesW | |
| 19 | SpExportSecurityContext | |
| 20 | SpFreeContextBuffer | |
| 21 | SpFreeCredentialsHandle | |
| 22 | SpImpersonateSecurityContext | |
| 23 | SpImportSecurityContextW | |
| 24 | SpInitializeSecurityContextW | |
| 25 | SpMakeSignature | |
| 26 | SpQueryContextAttributesW | |
| 27 | SpQueryCredentialsAttributesW | |
| 28 | SpQuerySecurityContextToken | |
| 29 | SpQuerySecurityPackageInfoW | |
| 30 | SpRevertSecurityContext | |
| 31 | SpSetContextAttributesW | |
| 32 | SpSetCredentialsAttributesW | |
| 33 | SpVerifySignature |
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 | ; | |
| 6 | LIBRARY "CRYPTCATSVC.dll" | |
| 7 | EXPORTS | |
| 8 | CryptsvcDllCtrl |
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 | ; | |
| 6 | LIBRARY "CRYPTTPMEKSVC.dll" | |
| 7 | EXPORTS | |
| 8 | CryptsvcDllCtrl | |
| 9 | FreeCMCResponse | |
| 10 | IsCmcResponseForAttestation | |
| 11 | ParseCMCResponse |
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 | ; | |
| 6 | LIBRARY "CRYPTUIWIZARD.dll" | |
| 7 | EXPORTS | |
| 8 | GetFunctionTable | |
| 9 | CryptUIWizBuildCTL | |
| 10 | CryptUIWizDigitalSign | |
| 11 | CryptUIWizExport | |
| 12 | CryptUIWizFreeDigitalSignContext | |
| 13 | CryptUIWizImport | |
| 14 | CryptUIWizImportInternal |
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 | ; | |
| 6 | LIBRARY "CSCDLL.dll" | |
| 7 | EXPORTS | |
| 8 | CSCIsCSCEnabled | |
| 9 | CSCFindClose | |
| 10 | CSCSetMaxSpace | |
| 11 | CSCDoEnableDisable | |
| 12 | CSCPinFileW | |
| 13 | CSCUnpinFileW | |
| 14 | CSCQueryFileStatusW | |
| 15 | CSCFindFirstFileW | |
| 16 | CSCFindNextFileW | |
| 17 | CSCDeleteW | |
| 18 | CSCEnumForStatsW | |
| 19 | CSCIsServerOfflineW | |
| 20 | CSCTransitionServerOnlineW | |
| 21 | CSCEnumForStatsExW | |
| 22 | CSCFindFirstFileForSidW | |
| 23 | CSCDisconnectPath | |
| 24 | CSCIsPathOffline | |
| 25 | CSCTransitionPathOnline |
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 | ; | |
| 6 | LIBRARY "CSRSRV.dll" | |
| 7 | EXPORTS | |
| 8 | CsrAddStaticServerThread | |
| 9 | CsrCallServerFromServer | |
| 10 | CsrConnectToUser | |
| 11 | CsrCreateProcess | |
| 12 | CsrCreateRemoteThread | |
| 13 | CsrCreateThread | |
| 14 | CsrDeferredCreateProcess | |
| 15 | CsrDereferenceProcess | |
| 16 | CsrDereferenceThread | |
| 17 | CsrDestroyProcess | |
| 18 | CsrDestroyThread | |
| 19 | CsrExecServerThread | |
| 20 | CsrGetProcessLuid | |
| 21 | CsrImpersonateClient | |
| 22 | CsrLockProcessByClientId | |
| 23 | CsrLockThreadByClientId | |
| 24 | CsrLockedReferenceProcess | |
| 25 | CsrQueryApiPort | |
| 26 | CsrReferenceThread | |
| 27 | CsrRegisterClientThreadSetup | |
| 28 | CsrReplyToMessage | |
| 29 | CsrRevertToSelf | |
| 30 | CsrServerInitialization | |
| 31 | CsrSetBackgroundPriority | |
| 32 | CsrSetForegroundPriority | |
| 33 | CsrShutdownProcesses | |
| 34 | CsrUnhandledExceptionFilter | |
| 35 | CsrUnlockProcess | |
| 36 | CsrUnlockThread | |
| 37 | CsrValidateMessageBuffer | |
| 38 | CsrValidateMessageString |
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 | ; | |
| 6 | LIBRARY "CSystemEventsBrokerClient.dll" | |
| 7 | EXPORTS | |
| 8 | CSebCreatePrivateEvent | |
| 9 | CSebCreateWellKnownEvent | |
| 10 | CSebDeleteEvent | |
| 11 | CSebEnumerateEvents | |
| 12 | CSebQueryEventData |
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 | ; | |
| 6 | LIBRARY "d3d10_1core.dll" | |
| 7 | EXPORTS | |
| 8 | D3DKMTCloseAdapter | |
| 9 | D3DKMTDestroyAllocation | |
| 10 | D3DKMTDestroyContext | |
| 11 | D3DKMTDestroyDevice | |
| 12 | D3DKMTDestroySynchronizationObject | |
| 13 | D3DKMTQueryAdapterInfo | |
| 14 | D3DKMTSetDisplayPrivateDriverFormat | |
| 15 | D3DKMTSignalSynchronizationObject | |
| 16 | D3DKMTUnlock | |
| 17 | D3DKMTWaitForSynchronizationObject | |
| 18 | OpenAdapter10 | |
| 19 | OpenAdapter10_2 | |
| 20 | D3D10CoreCreateDevice1 | |
| 21 | D3D10CoreGetSupportedVersions | |
| 22 | D3D10CoreGetVersion | |
| 23 | D3D10CoreRegisterLayers | |
| 24 | D3DKMTCreateAllocation | |
| 25 | D3DKMTCreateContext | |
| 26 | D3DKMTCreateDevice | |
| 27 | D3DKMTCreateSynchronizationObject | |
| 28 | D3DKMTEscape | |
| 29 | D3DKMTGetContextSchedulingPriority | |
| 30 | D3DKMTGetDeviceState | |
| 31 | D3DKMTGetDisplayModeList | |
| 32 | D3DKMTGetMultisampleMethodList | |
| 33 | D3DKMTGetRuntimeData | |
| 34 | D3DKMTGetSharedPrimaryHandle | |
| 35 | D3DKMTLock | |
| 36 | D3DKMTOpenAdapterFromHdc | |
| 37 | D3DKMTOpenResource | |
| 38 | D3DKMTPresent | |
| 39 | D3DKMTQueryAllocationResidency | |
| 40 | D3DKMTQueryResourceInfo | |
| 41 | D3DKMTRender | |
| 42 | D3DKMTSetAllocationPriority | |
| 43 | D3DKMTSetContextSchedulingPriority | |
| 44 | D3DKMTSetDisplayMode | |
| 45 | D3DKMTSetGammaRamp | |
| 46 | D3DKMTSetVidPnSourceOwner | |
| 47 | D3DKMTWaitForVerticalBlankEvent |
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 | ; | |
| 6 | LIBRARY "d3d10core.dll" | |
| 7 | EXPORTS | |
| 8 | D3DKMTCloseAdapter | |
| 9 | D3DKMTDestroyAllocation | |
| 10 | D3DKMTDestroyContext | |
| 11 | D3DKMTDestroyDevice | |
| 12 | D3DKMTDestroySynchronizationObject | |
| 13 | D3DKMTQueryAdapterInfo | |
| 14 | D3DKMTSetDisplayPrivateDriverFormat | |
| 15 | D3DKMTSignalSynchronizationObject | |
| 16 | D3DKMTUnlock | |
| 17 | D3DKMTWaitForSynchronizationObject | |
| 18 | OpenAdapter10 | |
| 19 | OpenAdapter10_2 | |
| 20 | D3D10CoreCreateDevice | |
| 21 | D3D10CoreGetSupportedVersions | |
| 22 | D3D10CoreGetVersion | |
| 23 | D3D10CoreRegisterLayers | |
| 24 | D3DKMTCreateAllocation | |
| 25 | D3DKMTCreateContext | |
| 26 | D3DKMTCreateDevice | |
| 27 | D3DKMTCreateSynchronizationObject | |
| 28 | D3DKMTEscape | |
| 29 | D3DKMTGetContextSchedulingPriority | |
| 30 | D3DKMTGetDeviceState | |
| 31 | D3DKMTGetDisplayModeList | |
| 32 | D3DKMTGetMultisampleMethodList | |
| 33 | D3DKMTGetRuntimeData | |
| 34 | D3DKMTGetSharedPrimaryHandle | |
| 35 | D3DKMTLock | |
| 36 | D3DKMTOpenAdapterFromHdc | |
| 37 | D3DKMTOpenResource | |
| 38 | D3DKMTPresent | |
| 39 | D3DKMTQueryAllocationResidency | |
| 40 | D3DKMTQueryResourceInfo | |
| 41 | D3DKMTRender | |
| 42 | D3DKMTSetAllocationPriority | |
| 43 | D3DKMTSetContextSchedulingPriority | |
| 44 | D3DKMTSetDisplayMode | |
| 45 | D3DKMTSetGammaRamp | |
| 46 | D3DKMTSetVidPnSourceOwner | |
| 47 | D3DKMTWaitForVerticalBlankEvent |
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 | ; | |
| 6 | LIBRARY "d3d10level9.dll" | |
| 7 | EXPORTS | |
| 8 | D3D10CheckLevel9Hardware | |
| 9 | D3D10CreateDeviceExternalImplementation | |
| 10 | D3D10Level9DumpJournal | |
| 11 | D3D11CreateDeviceExternalImplementation | |
| 12 | D3DKMTCloseAdapter | |
| 13 | D3DKMTConfigureSharedResource | |
| 14 | D3DKMTDestroyAllocation | |
| 15 | D3DKMTDestroyContext | |
| 16 | D3DKMTDestroyDevice | |
| 17 | D3DKMTDestroyKeyedMutex | |
| 18 | D3DKMTDestroySynchronizationObject | |
| 19 | D3DKMTGetContextInProcessSchedulingPriority | |
| 20 | D3DKMTGetThunkVersion | |
| 21 | D3DKMTOfferAllocations | |
| 22 | D3DKMTOutputDuplPresent | |
| 23 | D3DKMTPinDirectFlipResources | |
| 24 | D3DKMTPresentMultiPlaneOverlay | |
| 25 | D3DKMTQueryAdapterInfo | |
| 26 | D3DKMTReclaimAllocations | |
| 27 | D3DKMTSetContextInProcessSchedulingPriority | |
| 28 | D3DKMTSetDisplayPrivateDriverFormat | |
| 29 | D3DKMTSetQueuedLimit | |
| 30 | D3DKMTSetVidPnSourceOwner1 | |
| 31 | D3DKMTSignalSynchronizationObject2 | |
| 32 | D3DKMTSignalSynchronizationObject | |
| 33 | D3DKMTUnlock | |
| 34 | D3DKMTUnpinDirectFlipResources | |
| 35 | D3DKMTWaitForSynchronizationObject2 | |
| 36 | D3DKMTWaitForSynchronizationObject | |
| 37 | D3DKMTWaitForVerticalBlankEvent2 | |
| 38 | LogMarkerStringTable | |
| 39 | OpenAdapter10 | |
| 40 | OpenAdapter10_2 | |
| 41 | RetrieveFilteredOpenAdapter | |
| 42 | D3DKMTAcquireKeyedMutex | |
| 43 | D3DKMTAcquireKeyedMutex2 | |
| 44 | D3DKMTCheckMultiPlaneOverlaySupport | |
| 45 | D3DKMTCreateAllocation | |
| 46 | D3DKMTCreateAllocation2 | |
| 47 | D3DKMTCreateContext | |
| 48 | D3DKMTCreateDevice | |
| 49 | D3DKMTCreateKeyedMutex | |
| 50 | D3DKMTCreateKeyedMutex2 | |
| 51 | D3DKMTCreateSynchronizationObject | |
| 52 | D3DKMTCreateSynchronizationObject2 | |
| 53 | D3DKMTEscape | |
| 54 | D3DKMTGetContextSchedulingPriority | |
| 55 | D3DKMTGetDeviceSchedulingPriority | |
| 56 | D3DKMTGetDeviceState | |
| 57 | D3DKMTGetDisplayModeList | |
| 58 | D3DKMTGetMultisampleMethodList | |
| 59 | D3DKMTGetRuntimeData | |
| 60 | D3DKMTGetSharedPrimaryHandle | |
| 61 | D3DKMTLock | |
| 62 | D3DKMTOpenAdapterFromDeviceName | |
| 63 | D3DKMTOpenAdapterFromGdiDisplayName | |
| 64 | D3DKMTOpenKeyedMutex | |
| 65 | D3DKMTOpenKeyedMutex2 | |
| 66 | D3DKMTOpenNtHandleFromName | |
| 67 | D3DKMTOpenResource | |
| 68 | D3DKMTOpenResource2 | |
| 69 | D3DKMTOpenResourceFromNtHandle | |
| 70 | D3DKMTOpenSyncObjectFromNtHandle | |
| 71 | D3DKMTOpenSynchronizationObject | |
| 72 | D3DKMTPresent | |
| 73 | D3DKMTQueryAllocationResidency | |
| 74 | D3DKMTQueryResourceInfo | |
| 75 | D3DKMTQueryResourceInfoFromNtHandle | |
| 76 | D3DKMTReleaseKeyedMutex | |
| 77 | D3DKMTReleaseKeyedMutex2 | |
| 78 | D3DKMTRender | |
| 79 | D3DKMTSetAllocationPriority | |
| 80 | D3DKMTSetContextSchedulingPriority | |
| 81 | D3DKMTSetDeviceSchedulingPriority | |
| 82 | D3DKMTSetDisplayMode | |
| 83 | D3DKMTSetGammaRamp | |
| 84 | D3DKMTSetVidPnSourceOwner | |
| 85 | D3DKMTShareObjects | |
| 86 | D3DKMTWaitForVerticalBlankEvent |
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 | ; | |
| 6 | LIBRARY "d3d10warp.dll" | |
| 7 | EXPORTS | |
| 8 | ord_199 @199 | |
| 9 | VSD3DDebugConnectionBuffer DATA | |
| 10 | D3D11RefGetLastCreation | |
| 11 | D3DLayerGetInterface | |
| 12 | OpenAdapter | |
| 13 | OpenAdapter10_2 | |
| 14 | QueryDListForApplication1 |
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 | ; | |
| 6 | LIBRARY "DAB.dll" | |
| 7 | EXPORTS | |
| 8 | DabInitialize | |
| 9 | DabPowerStateChanged | |
| 10 | DabSessionStateChanged | |
| 11 | DabTerminate |
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 | ; | |
| 6 | LIBRARY "DABAPI.dll" | |
| 7 | EXPORTS | |
| 8 | DabApiBufferFree | |
| 9 | DabRegisterTriggerConsumer | |
| 10 | DabUnregisterTriggerConsumer |
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 | ; | |
| 6 | LIBRARY "DatUsage.dll" | |
| 7 | EXPORTS | |
| 8 | CreateDataUsageHelper | |
| 9 | SetRealTimeUsage | |
| 10 | SetUsageHistory |
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 | ; | |
| 6 | LIBRARY "DevDispItemProvider.dll" | |
| 7 | EXPORTS | |
| 8 | DevQueryEntry |
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 | ; | |
| 6 | LIBRARY "deviceassociation.dll" | |
| 7 | EXPORTS | |
| 8 | DafAepExport | |
| 9 | DafAepImport | |
| 10 | DafChallengeDevicePresence | |
| 11 | DafCloseAssociationContext | |
| 12 | DafCloseChallengeContext | |
| 13 | DafCloseImportExportContext | |
| 14 | DafCreateAssociationContext | |
| 15 | DafCreateAssociationContextFromOobBlob | |
| 16 | DafCreateChallengeContext | |
| 17 | DafCreateDeviceChallengeContext | |
| 18 | DafCreateDeviceInterfaceChallengeContext | |
| 19 | DafCreateImportExportContext | |
| 20 | DafMemFree | |
| 21 | DafSelectCeremony | |
| 22 | DafStartAepExport | |
| 23 | DafStartAepImport | |
| 24 | DafStartDeviceStatusNotification | |
| 25 | DafStartEnumCeremonies | |
| 26 | DafStartFinalize | |
| 27 | DafStartReadCeremonyData | |
| 28 | DafStartRemoveAssociation | |
| 29 | DafStartWriteCeremonyData |
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 | ; | |
| 6 | LIBRARY "DeviceRegistration.DLL" | |
| 7 | EXPORTS | |
| 8 | RegisterDevice | |
| 9 | UnRegisterDevice | |
| 10 | DiscoverRegistrationService | |
| 11 | GetRegistrationInfo | |
| 12 | IsRegistrationAvailable |
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 | ; | |
| 6 | LIBRARY "devinv.dll" | |
| 7 | EXPORTS | |
| 8 | RunDeviceInventoryW | |
| 9 | CreateDeviceInventory |
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 | ; | |
| 6 | LIBRARY "DFDTS.dll" | |
| 7 | EXPORTS | |
| 8 | DfdGetDefaultPolicyAndSMART | |
| 9 | WdiDiagnosticModuleMain | |
| 10 | WdiGetDiagnosticModuleInterfaceVersion | |
| 11 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "DfpCommon.dll" | |
| 7 | EXPORTS | |
| 8 | Anonymize | |
| 9 | ClearPIIFilter | |
| 10 | FreePathAnonymizer | |
| 11 | IsRunningElevated | |
| 12 | LogMessage | |
| 13 | MakeConfigService | |
| 14 | MakeDriveStudyTask | |
| 15 | MakeFolderStudyTask | |
| 16 | MakeLogger | |
| 17 | MakeMaintenanceService | |
| 18 | MakePathAnonymizer | |
| 19 | MakeStudyService | |
| 20 | OutputMessage |
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 | ; | |
| 6 | LIBRARY "dhcpcore.DLL" | |
| 7 | EXPORTS | |
| 8 | DhcpGlobalIsShuttingDown DATA | |
| 9 | DhcpGlobalServiceSyncEvent DATA | |
| 10 | DhcpGlobalTerminateEvent DATA | |
| 11 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "dhcpcore6.DLL" | |
| 7 | EXPORTS | |
| 8 | Dhcpv6Main |
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 | ; | |
| 6 | LIBRARY "dhcpcsvc6.DLL" | |
| 7 | EXPORTS | |
| 8 | Dhcpv6AcquireParameters | |
| 9 | Dhcpv6CApiCleanup | |
| 10 | Dhcpv6CApiInitialize | |
| 11 | Dhcpv6CancelOperation | |
| 12 | Dhcpv6EnableDhcp | |
| 13 | Dhcpv6EnableTracing | |
| 14 | Dhcpv6FreeLeaseInfo | |
| 15 | Dhcpv6FreeLeaseInfoArray | |
| 16 | Dhcpv6GetTraceArray | |
| 17 | Dhcpv6GetUserClasses | |
| 18 | Dhcpv6IsEnabled | |
| 19 | Dhcpv6QueryLeaseInfo | |
| 20 | Dhcpv6QueryLeaseInfoArray | |
| 21 | Dhcpv6ReleaseParameters | |
| 22 | Dhcpv6ReleasePrefix | |
| 23 | Dhcpv6ReleasePrefixEx | |
| 24 | Dhcpv6RenewPrefix | |
| 25 | Dhcpv6RenewPrefixEx | |
| 26 | Dhcpv6RequestParams | |
| 27 | Dhcpv6RequestPrefix | |
| 28 | Dhcpv6RequestPrefixEx | |
| 29 | Dhcpv6SetUserClass |
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 | ; | |
| 6 | LIBRARY "DhcpQEC.dll" | |
| 7 | EXPORTS | |
| 8 | DhcpQecEnableTracing | |
| 9 | InitializeQec | |
| 10 | UninitializeQec |
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 | ; | |
| 6 | LIBRARY "official.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "DispCI.dll" | |
| 7 | EXPORTS | |
| 8 | DisplayClassInstaller |
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 | ; | |
| 6 | LIBRARY "DISPLAY.dll" | |
| 7 | EXPORTS | |
| 8 | DisplaySaveSettingsEx |
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 | ; | |
| 6 | LIBRARY "DMDskMgr.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 139 | GetPropertyPageData | |
| 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 | |
| 208 | IsRequestPending | |
| 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 | |
| 219 | LoadPropertyPageData | |
| 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 | ; | |
| 6 | LIBRARY "dmivcitf.dll" | |
| 7 | EXPORTS | |
| 8 | ?AddLDMObjMapEntry@CDataCache@@QAAXPAU_LDM_OBJ_MAP_ENTRY@@@Z | |
| 9 | CreateDataCacheZ | |
| 10 | CreateServerRequestsZ | |
| 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 | |
| 18 | LoadPropertyPageData |
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 | ; | |
| 6 | LIBRARY "dot3api.dll" | |
| 7 | EXPORTS | |
| 8 | Dot3CancelPlap | |
| 9 | Dot3CloseHandle | |
| 10 | Dot3DeinitPlapParams | |
| 11 | Dot3DeleteProfile | |
| 12 | Dot3DoPlap | |
| 13 | Dot3EnumInterfaces | |
| 14 | Dot3FreeMemory | |
| 15 | Dot3GetCurrentProfile | |
| 16 | Dot3GetInterfaceState | |
| 17 | Dot3GetProfile | |
| 18 | Dot3GetProfileEapUserDataInfo | |
| 19 | Dot3InitPlapParams | |
| 20 | Dot3OpenHandle | |
| 21 | Dot3QueryAutoConfigParameter | |
| 22 | Dot3QueryPlapCredentials | |
| 23 | Dot3QueryUIRequest | |
| 24 | Dot3ReConnect | |
| 25 | Dot3ReasonCodeToString | |
| 26 | Dot3RegisterNotification | |
| 27 | Dot3SetAutoConfigParameter | |
| 28 | Dot3SetInterface | |
| 29 | Dot3SetProfile | |
| 30 | Dot3SetProfileEapUserData | |
| 31 | Dot3SetProfileEapXmlUserData | |
| 32 | Dot3UIResponse | |
| 33 | QueryNetconStatus |
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 | ; | |
| 6 | LIBRARY "dot3dlg.dll" | |
| 7 | EXPORTS | |
| 8 | Dot3ACOnBalloonClick | |
| 9 | Dot3ACCanShowBalloon |
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 | ; | |
| 6 | LIBRARY "dot3gpclnt.dll" | |
| 7 | EXPORTS | |
| 8 | DeserializeLANPolicy | |
| 9 | GenerateLANPolicy | |
| 10 | ProcessLANPolicyEx | |
| 11 | LANGPADeInit | |
| 12 | LANGPAInit |
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 | ; | |
| 6 | LIBRARY "dot3msm.dll" | |
| 7 | EXPORTS | |
| 8 | Dot3MsmConnect | |
| 9 | Dot3MsmCreateDefaultProfile | |
| 10 | Dot3MsmDeInit | |
| 11 | Dot3MsmDeInitAdapter | |
| 12 | Dot3MsmDisconnect | |
| 13 | Dot3MsmFreeMemory | |
| 14 | Dot3MsmFreeProfile | |
| 15 | Dot3MsmIndicateSessionChange | |
| 16 | Dot3MsmInit | |
| 17 | Dot3MsmInitAdapter | |
| 18 | Dot3MsmQueryMediaState | |
| 19 | Dot3MsmQueryPendingUIRequest | |
| 20 | Dot3MsmQueryState | |
| 21 | Dot3MsmReAuthenticate | |
| 22 | Dot3MsmSetRuntimeState | |
| 23 | Dot3MsmUIResponse | |
| 24 | Dot3MsmValidateProfile | |
| 25 | Dot3ReasonCodeMsmToString | |
| 26 | Dot3SetPortAuthenticationState |
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 | ; | |
| 6 | LIBRARY "Dot3svc.dll" | |
| 7 | EXPORTS | |
| 8 | Dot3SvcMain | |
| 9 | LanNotifyOnLogoff | |
| 10 | LanNotifyOnLogon | |
| 11 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "dot3ui.dll" | |
| 7 | EXPORTS | |
| 8 | Dot3CreatePsPage |
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 | ; | |
| 6 | LIBRARY "DPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | CryptProtectDataNoUI | |
| 9 | CryptProtectMemory | |
| 10 | CryptResetMachineCredentials | |
| 11 | CryptUnprotectDataNoUI | |
| 12 | CryptUnprotectMemory | |
| 13 | CryptUpdateProtectedState | |
| 14 | iCryptIdentifyProtection |
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 | ; | |
| 6 | LIBRARY "dpapisrv.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeLsaExtension | |
| 9 | QueryLsaInterface |
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 | ; | |
| 6 | LIBRARY "dpx.dll" | |
| 7 | EXPORTS | |
| 8 | DpxFreeMemory | |
| 9 | DpxNewJob | |
| 10 | DpxNewJobEx | |
| 11 | DpxRestoreJob | |
| 12 | DpxRestoreJobEx |
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 | ; | |
| 6 | LIBRARY "drvstore.dll" | |
| 7 | EXPORTS | |
| 8 | DriverPackageClose | |
| 9 | DriverPackageEnumClassesW | |
| 10 | DriverPackageEnumConfigurationsW | |
| 11 | DriverPackageEnumDevicesW | |
| 12 | DriverPackageEnumDriversW | |
| 13 | DriverPackageEnumFilesW | |
| 14 | DriverPackageEnumInterfacesW | |
| 15 | DriverPackageEnumPropertiesW | |
| 16 | DriverPackageEnumRegKeysW | |
| 17 | DriverPackageEnumServicesW | |
| 18 | DriverPackageGetVersionInfoW | |
| 19 | DriverPackageOpenW | |
| 20 | DriverStoreClose | |
| 21 | DriverStoreConfigureW | |
| 22 | DriverStoreCopyW | |
| 23 | DriverStoreDeleteW | |
| 24 | DriverStoreDriverPackageResolveCallbackW | |
| 25 | DriverStoreEnumObjectsW | |
| 26 | DriverStoreEnumW | |
| 27 | DriverStoreFindW | |
| 28 | DriverStoreGetObjectPropertyKeysW | |
| 29 | DriverStoreGetObjectPropertyW | |
| 30 | DriverStoreImportW | |
| 31 | DriverStoreOfflineAddDriverPackageA | |
| 32 | DriverStoreOfflineAddDriverPackageW | |
| 33 | DriverStoreOfflineDeleteDriverPackageA | |
| 34 | DriverStoreOfflineDeleteDriverPackageW | |
| 35 | DriverStoreOfflineEnumDriverPackageA | |
| 36 | DriverStoreOfflineEnumDriverPackageW | |
| 37 | DriverStoreOfflineFindDriverPackageA | |
| 38 | DriverStoreOfflineFindDriverPackageW | |
| 39 | DriverStoreOpenW | |
| 40 | DriverStorePublishW | |
| 41 | DriverStoreReflectCriticalW | |
| 42 | DriverStoreReflectW | |
| 43 | DriverStoreSetLogContext | |
| 44 | DriverStoreSetObjectPropertyW | |
| 45 | DriverStoreUnconfigureW | |
| 46 | DriverStoreUnpublishW | |
| 47 | DriverStoreUnreflectCriticalW | |
| 48 | DriverStoreUnreflectW | |
| 49 | pServerDeleteDriverPackage | |
| 50 | pServerImportDriverPackage |
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 | ; | |
| 6 | LIBRARY "DUI70.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 1140 | CreateDUIWrapperTouchEx | |
| 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 | |
| 1204 | DUIStopPVLAnimation | |
| 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 | |
| 1307 | DuiCreateObject | |
| 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 | |
| 4082 | ARGBColorFromEnumI | |
| 4083 | BlurBitmap | |
| 4084 | BrushFromEnumI | |
| 4085 | ColorFromEnumI | |
| 4086 | CreateDUIWrapper | |
| 4087 | CreateDUIWrapperEx | |
| 4088 | CreateDUIWrapperFromResource | |
| 4089 | CreateTouchTooltip | |
| 4090 | DUIDrawShadowText | |
| 4091 | DisableAnimations | |
| 4092 | DisableInitCallstackTracking | |
| 4093 | DrawShadowTextEx | |
| 4094 | ElementFromGadget | |
| 4095 | EnableAnimations | |
| 4096 | FlushThemeHandles | |
| 4097 | ForceDebugBreak | |
| 4098 | GetElementDataEntry | |
| 4099 | GetElementMacro | |
| 4100 | GetFontCache | |
| 4101 | GetScaleFactor | |
| 4102 | GetThemeHandle | |
| 4103 | HStrDup | |
| 4104 | HrSysAllocString | |
| 4105 | InitPreprocessor | |
| 4106 | InitProcessPriv | |
| 4107 | InitThread | |
| 4108 | IsAnimationsEnabled | |
| 4109 | IsPalette | |
| 4110 | IsUIAutomationProviderEnabled | |
| 4111 | MultiByteToUnicode | |
| 4112 | NotifyAccessibilityEvent | |
| 4113 | PreprocessBuffer | |
| 4114 | ProcessAlphaBitmapI | |
| 4115 | PurgeThemeHandles | |
| 4116 | RegisterAllControls | |
| 4117 | RegisterBaseControls | |
| 4118 | RegisterBrowserControls | |
| 4119 | RegisterCommonControls | |
| 4120 | RegisterExtendedControls | |
| 4121 | RegisterMacroControls | |
| 4122 | RegisterMiscControls | |
| 4123 | RegisterPVLBehaviorFactory | |
| 4124 | RegisterStandardControls | |
| 4125 | RegisterXControls | |
| 4126 | SetDefAction | |
| 4127 | SkipDLLUnloadInitChecks | |
| 4128 | StartMessagePump | |
| 4129 | StopMessagePump | |
| 4130 | StrToID | |
| 4131 | UiaHideOnGetObject | |
| 4132 | UiaOnDestroySink | |
| 4133 | UiaOnGetObject | |
| 4134 | UiaOnToolTip | |
| 4135 | UnInitProcessPriv | |
| 4136 | UnInitThread | |
| 4137 | UnicodeToMultiByte |
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 | ; | |
| 6 | LIBRARY "dwmcore.dll" | |
| 7 | EXPORTS | |
| 8 | MIL3DCalcBrushToIdealSampleSpace | |
| 9 | MIL3DCalcProjected2DBounds | |
| 10 | MilChannel_AppendCommandData | |
| 11 | MilChannel_BeginCommand | |
| 12 | MilChannel_CommitChannel | |
| 13 | MilChannel_EndCommand | |
| 14 | MilChannel_FreeSyncCommandReplay | |
| 15 | MilChannel_GetMarshalType | |
| 16 | MilChannel_SendSyncCommand | |
| 17 | MilChannel_SetNotificationWindow | |
| 18 | MilChannel_SetReceiveBroadcastMessages | |
| 19 | MilCommandTransport_AddRef | |
| 20 | MilCommandTransport_Release | |
| 21 | MilCompositionEngine_DeinitializePartitionManager | |
| 22 | MilCompositionEngine_GetComposedEventId | |
| 23 | MilCompositionEngine_GetFeedbackReader | |
| 24 | MilCompositionEngine_InitializePartitionManager | |
| 25 | MilCompositionEngine_UpdateSchedulerSettings | |
| 26 | MilComposition_PeekNextMessage | |
| 27 | MilComposition_SyncFlush | |
| 28 | MilComposition_WaitForNextMessage | |
| 29 | MilConnectionManager_NotifyHostEvent | |
| 30 | MilConnection_CreateChannel | |
| 31 | MilConnection_DestroyChannel | |
| 32 | MilConnection_GetChannelKernelHandle | |
| 33 | MilCoreClientIsDwm | |
| 34 | MilCrossThreadPacketTransport_Create | |
| 35 | MilResource_CreateOrAddRefOnChannel | |
| 36 | MilResource_DuplicateHandle | |
| 37 | MilResource_DuplicateHandleOnTarget | |
| 38 | MilResource_ReleaseOnChannel | |
| 39 | MilResource_SendCommand | |
| 40 | MilResource_SendCommandBitmapSource | |
| 41 | MilResource_SendCommandBitmapSourceEx | |
| 42 | MilTransport_AddRef | |
| 43 | MilTransport_Close | |
| 44 | MilTransport_Create | |
| 45 | MilTransport_CreateFromPacketTransport | |
| 46 | MilTransport_CreateTransportParameters | |
| 47 | MilTransport_DisconnectTransport | |
| 48 | MilTransport_InitializeConnectionManager | |
| 49 | MilTransport_Open | |
| 50 | MilTransport_PostPacket | |
| 51 | MilTransport_Release | |
| 52 | MilTransport_ShutDownConnectionManager | |
| 53 | MilUtility_GetTileBrushMapping | |
| 54 | MilVersionCheck | |
| 55 | MilVisualTarget_AttachToHwnd | |
| 56 | MilVisualTarget_DetachFromHwnd | |
| 57 | SetMilPerfInstrumentationFlags | |
| 58 | MILCreateFactory |
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 | ; | |
| 6 | LIBRARY "dwmredir.dll" | |
| 7 | EXPORTS | |
| 8 | DwmInitializeTransport | |
| 9 | DwmRedirectionManagerDispatchMessage | |
| 10 | DwmRedirectionManagerEnableMMCSS | |
| 11 | DwmRedirectionManagerFailMessage | |
| 12 | DwmRedirectionManagerInitialize | |
| 13 | DwmRedirectionManagerLockMemoryAllocations | |
| 14 | DwmRedirectionManagerPlayingVideo | |
| 15 | DwmRedirectionManagerSetClientChannel | |
| 16 | DwmRedirectionManagerSetClientRenderTarget | |
| 17 | DwmRedirectionManagerShouldRemainOnHibernate | |
| 18 | DwmRedirectionManagerShutdown | |
| 19 | DwmRedirectionManagerWaitForMultipleObjects | |
| 20 | DwmRenderDesktopForDDA | |
| 21 | DwmShutdownTransport | |
| 22 | DwmVersionCheck |
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 | ; | |
| 6 | LIBRARY "dxgwdi.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "eapprovp.dll" | |
| 7 | EXPORTS | |
| 8 | EapProvPlugGetInfo | |
| 9 | EapProvPluginDeinitialize | |
| 10 | EapProvPluginInitialize | |
| 11 | EapProvPluginTestForAuthenticatingWlanInterfaces | |
| 12 | EapProvPluginWlanCloseHandle | |
| 13 | EapProvPluginWlanOpenHandle | |
| 14 | EapProvPluginWlanRegisterNotification |
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 | ; | |
| 6 | LIBRARY "EapQec.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeQec | |
| 9 | UninitializeQec |
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 | ; | |
| 6 | LIBRARY "easwrt.dll" | |
| 7 | EXPORTS | |
| 8 | EasClientSecurityPolicyApply | |
| 9 | EasClientSecurityPolicyCheckCompliance | |
| 10 | EasGetClientDeviceInformation |
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 | ; | |
| 6 | LIBRARY "EFSCORE.dll" | |
| 7 | EXPORTS | |
| 8 | EfsDllAddUsersToFileSrv | |
| 9 | EfsDllAllocateHeap | |
| 10 | EfsDllCloseFileRaw | |
| 11 | EfsDllConstructEFS | |
| 12 | EfsDllDecryptFek | |
| 13 | EfsDllDecryptFileSrv | |
| 14 | EfsDllDisabled | |
| 15 | EfsDllDuplicateEncryptionInfoFileSrv | |
| 16 | EfsDllEncryptFileSrv | |
| 17 | EfsDllErrorToNtStatus | |
| 18 | EfsDllFileKeyInfoSrv | |
| 19 | EfsDllFreeHeap | |
| 20 | EfsDllFreeUserInfo | |
| 21 | EfsDllGetLocalFileName | |
| 22 | EfsDllGetLogFile | |
| 23 | EfsDllGetUserInfo | |
| 24 | EfsDllGetVolumeRoot | |
| 25 | EfsDllIsNonEfsSKU | |
| 26 | EfsDllLoadUserProfile | |
| 27 | EfsDllMarkFileForDelete | |
| 28 | EfsDllOnSessionChange | |
| 29 | EfsDllOpenFileRaw | |
| 30 | EfsDllQueryProtectorsSrv | |
| 31 | EfsDllQueryRecoveryAgentsSrv | |
| 32 | EfsDllQueryUsersOnFileSrv | |
| 33 | EfsDllReadFileRaw | |
| 34 | EfsDllRemoveUsersFromFileSrv | |
| 35 | EfsDllSetFileEncryptionKeySrv | |
| 36 | EfsDllShareDecline | |
| 37 | EfsDllSsoFlushUserCache | |
| 38 | EfsDllUnloadUserProfile | |
| 39 | EfsDllUsePinForEncryptedFilesSrv | |
| 40 | EfsDllValidateEfsStream | |
| 41 | EfsDllWriteFileRaw | |
| 42 | EfsInitialize | |
| 43 | EfsUnInitialize |
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 | ; | |
| 6 | LIBRARY "efslsaext.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeLsaExtension |
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 | ; | |
| 6 | LIBRARY "efssvc.dll" | |
| 7 | EXPORTS | |
| 8 | EfsServiceMain |
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 | ; | |
| 6 | LIBRARY "EFSUTIL.dll" | |
| 7 | EXPORTS | |
| 8 | EfsUtilApplyGroupPolicy | |
| 9 | EfsUtilCheckCurrentKeyCapabilities | |
| 10 | EfsUtilCreateSelfSignedCertificate | |
| 11 | EfsUtilGetCertContextFromCertHash | |
| 12 | EfsUtilGetCurrentKey | |
| 13 | EfsUtilGetCurrentKey_Deprecated | |
| 14 | EfsUtilGetCurrentUserInformation | |
| 15 | EfsUtilGetProvider | |
| 16 | EfsUtilGetSmartcardProviderName | |
| 17 | EfsUtilGetUserKey | |
| 18 | EfsUtilIsSmartcardKey | |
| 19 | EfsUtilIsSmartcardProvider | |
| 20 | EfsUtilReleaseProvider | |
| 21 | EfsUtilReleaseUserKey | |
| 22 | EfsUtilSetCurrentKey | |
| 23 | EfsUtilSetSmartcardPin | |
| 24 | EfsUtilSmartcardCredsNeededError |
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 | ; | |
| 6 | LIBRARY "EhStorPwdMgr.DLL" | |
| 7 | EXPORTS | |
| 8 | EnhancedStoragePasswordInitDisk | |
| 9 | EnhancedStoragePasswordConfig |
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 | ; | |
| 6 | LIBRARY "elshyph.dll" | |
| 7 | EXPORTS | |
| 8 | DoAction | |
| 9 | FreePropertyBag | |
| 10 | FreeService | |
| 11 | InitService | |
| 12 | RecognizeText |
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 | ; | |
| 6 | LIBRARY "elslad.dll" | |
| 7 | EXPORTS | |
| 8 | DoAction | |
| 9 | FreePropertyBag | |
| 10 | FreeService | |
| 11 | InitService | |
| 12 | RecognizeText |
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 | ; | |
| 6 | LIBRARY "elstrans.dll" | |
| 7 | EXPORTS | |
| 8 | DoAction | |
| 9 | EnumServices | |
| 10 | FreePropertyBag | |
| 11 | FreeService | |
| 12 | InitService | |
| 13 | RecognizeText |
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 | ; | |
| 6 | LIBRARY "EmbeddedAppLauncherConfig.dll" | |
| 7 | EXPORTS | |
| 8 | EmbeddedAppLauncherSysprepCleanup | |
| 9 | EmbeddedAppLauncherSysprepGeneralize | |
| 10 | EmbeddedAppLauncherSysprepSpecialize | |
| 11 | ExePassThrough |
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 | ; | |
| 6 | LIBRARY "EncDump.dll" | |
| 7 | EXPORTS | |
| 8 | EncryptDumpFile |
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 | ; | |
| 6 | LIBRARY "ENERGY.dll" | |
| 7 | EXPORTS | |
| 8 | SaveBatteryReport | |
| 9 | SqmSleepStudyReport | |
| 10 | EnergyWizard_Analyze | |
| 11 | EnergyWizard_CancelTrace | |
| 12 | EnergyWizard_CollectTrace | |
| 13 | EnergyWizard_CreateEnergyWizard | |
| 14 | EnergyWizard_DefaultTraceDuration | |
| 15 | EnergyWizard_DestroyEnergyWizard | |
| 16 | EnergyWizard_GetLogEntryCounts | |
| 17 | EnergyWizard_SaveReport | |
| 18 | EnergyWizard_SqmAnalysis | |
| 19 | EnergyWizard_TransformReport | |
| 20 | SaveSleepStudyReport | |
| 21 | TransformBatteryReport | |
| 22 | TransformSleepStudyReport |
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 | ; | |
| 6 | LIBRARY "EnergyProv.dll" | |
| 7 | EXPORTS | |
| 8 | SruInitializeProvider | |
| 9 | SruUninitializeProvider |
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 | ; | |
| 6 | LIBRARY "ES.dll" | |
| 7 | EXPORTS | |
| 8 | SvchostPushServiceGlobals | |
| 9 | LCEControlServer | |
| 10 | NotifyLogoffUser | |
| 11 | NotifyLogonUser | |
| 12 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "ESENT.dll" | |
| 7 | EXPORTS | |
| 8 | DebugExtensionInitialize | |
| 9 | DebugExtensionNotify | |
| 10 | DebugExtensionUninitialize | |
| 11 | JetAddColumn | |
| 12 | JetAddColumnA | |
| 13 | JetAddColumnW | |
| 14 | JetAttachDatabase | |
| 15 | JetAttachDatabase2 | |
| 16 | JetAttachDatabase2A | |
| 17 | JetAttachDatabase2W | |
| 18 | JetAttachDatabaseA | |
| 19 | JetAttachDatabaseW | |
| 20 | JetAttachDatabaseWithStreaming | |
| 21 | JetAttachDatabaseWithStreamingA | |
| 22 | JetAttachDatabaseWithStreamingW | |
| 23 | JetBackup | |
| 24 | JetBackupA | |
| 25 | JetBackupInstance | |
| 26 | JetBackupInstanceA | |
| 27 | JetBackupInstanceW | |
| 28 | JetBackupW | |
| 29 | JetBeginDatabaseIncrementalReseed | |
| 30 | JetBeginDatabaseIncrementalReseedA | |
| 31 | JetBeginDatabaseIncrementalReseedW | |
| 32 | JetBeginExternalBackup | |
| 33 | JetBeginExternalBackupInstance | |
| 34 | JetBeginSession | |
| 35 | JetBeginSessionA | |
| 36 | JetBeginSessionW | |
| 37 | JetBeginSurrogateBackup | |
| 38 | JetBeginTransaction | |
| 39 | JetBeginTransaction2 | |
| 40 | JetBeginTransaction3 | |
| 41 | JetCloseDatabase | |
| 42 | JetCloseFile | |
| 43 | JetCloseFileInstance | |
| 44 | JetCloseTable | |
| 45 | JetCommitTransaction | |
| 46 | JetCommitTransaction2 | |
| 47 | JetCompact | |
| 48 | JetCompactA | |
| 49 | JetCompactW | |
| 50 | JetComputeStats | |
| 51 | JetConfigureProcessForCrashDump | |
| 52 | JetConsumeLogData | |
| 53 | JetConvertDDL | |
| 54 | JetConvertDDLA | |
| 55 | JetConvertDDLW | |
| 56 | JetCreateDatabase | |
| 57 | JetCreateDatabase2 | |
| 58 | JetCreateDatabase2A | |
| 59 | JetCreateDatabase2W | |
| 60 | JetCreateDatabaseA | |
| 61 | JetCreateDatabaseW | |
| 62 | JetCreateDatabaseWithStreaming | |
| 63 | JetCreateDatabaseWithStreamingA | |
| 64 | JetCreateDatabaseWithStreamingW | |
| 65 | JetCreateIndex | |
| 66 | JetCreateIndex2 | |
| 67 | JetCreateIndex2A | |
| 68 | JetCreateIndex2W | |
| 69 | JetCreateIndex3A | |
| 70 | JetCreateIndex3W | |
| 71 | JetCreateIndex4A | |
| 72 | JetCreateIndex4W | |
| 73 | JetCreateIndexA | |
| 74 | JetCreateIndexW | |
| 75 | JetCreateInstance | |
| 76 | JetCreateInstance2 | |
| 77 | JetCreateInstance2A | |
| 78 | JetCreateInstance2W | |
| 79 | JetCreateInstanceA | |
| 80 | JetCreateInstanceW | |
| 81 | JetCreateTable | |
| 82 | JetCreateTableA | |
| 83 | JetCreateTableColumnIndex | |
| 84 | JetCreateTableColumnIndex2 | |
| 85 | JetCreateTableColumnIndex2A | |
| 86 | JetCreateTableColumnIndex2W | |
| 87 | JetCreateTableColumnIndex3A | |
| 88 | JetCreateTableColumnIndex3W | |
| 89 | JetCreateTableColumnIndex4A | |
| 90 | JetCreateTableColumnIndex4W | |
| 91 | JetCreateTableColumnIndexA | |
| 92 | JetCreateTableColumnIndexW | |
| 93 | JetCreateTableW | |
| 94 | JetDBUtilities | |
| 95 | JetDBUtilitiesA | |
| 96 | JetDBUtilitiesW | |
| 97 | JetDatabaseScan | |
| 98 | JetDefragment | |
| 99 | JetDefragment2 | |
| 100 | JetDefragment2A | |
| 101 | JetDefragment2W | |
| 102 | JetDefragment3 | |
| 103 | JetDefragment3A | |
| 104 | JetDefragment3W | |
| 105 | JetDefragmentA | |
| 106 | JetDefragmentW | |
| 107 | JetDelete | |
| 108 | JetDeleteColumn | |
| 109 | JetDeleteColumn2 | |
| 110 | JetDeleteColumn2A | |
| 111 | JetDeleteColumn2W | |
| 112 | JetDeleteColumnA | |
| 113 | JetDeleteColumnW | |
| 114 | JetDeleteIndex | |
| 115 | JetDeleteIndexA | |
| 116 | JetDeleteIndexW | |
| 117 | JetDeleteTable | |
| 118 | JetDeleteTableA | |
| 119 | JetDeleteTableW | |
| 120 | JetDetachDatabase | |
| 121 | JetDetachDatabase2 | |
| 122 | JetDetachDatabase2A | |
| 123 | JetDetachDatabase2W | |
| 124 | JetDetachDatabaseA | |
| 125 | JetDetachDatabaseW | |
| 126 | JetDupCursor | |
| 127 | JetDupSession | |
| 128 | JetEnableMultiInstance | |
| 129 | JetEnableMultiInstanceA | |
| 130 | JetEnableMultiInstanceW | |
| 131 | JetEndDatabaseIncrementalReseed | |
| 132 | JetEndDatabaseIncrementalReseedA | |
| 133 | JetEndDatabaseIncrementalReseedW | |
| 134 | JetEndExternalBackup | |
| 135 | JetEndExternalBackupInstance | |
| 136 | JetEndExternalBackupInstance2 | |
| 137 | JetEndSession | |
| 138 | JetEndSurrogateBackup | |
| 139 | JetEnumerateColumns | |
| 140 | JetEscrowUpdate | |
| 141 | JetExternalRestore | |
| 142 | JetExternalRestore2 | |
| 143 | JetExternalRestore2A | |
| 144 | JetExternalRestore2W | |
| 145 | JetExternalRestoreA | |
| 146 | JetExternalRestoreW | |
| 147 | JetFreeBuffer | |
| 148 | JetGetAttachInfo | |
| 149 | JetGetAttachInfoA | |
| 150 | JetGetAttachInfoInstance | |
| 151 | JetGetAttachInfoInstanceA | |
| 152 | JetGetAttachInfoInstanceW | |
| 153 | JetGetAttachInfoW | |
| 154 | JetGetBookmark | |
| 155 | JetGetColumnInfo | |
| 156 | JetGetColumnInfoA | |
| 157 | JetGetColumnInfoW | |
| 158 | JetGetCounter | |
| 159 | JetGetCurrentIndex | |
| 160 | JetGetCurrentIndexA | |
| 161 | JetGetCurrentIndexW | |
| 162 | JetGetCursorInfo | |
| 163 | JetGetDatabaseFileInfo | |
| 164 | JetGetDatabaseFileInfoA | |
| 165 | JetGetDatabaseFileInfoW | |
| 166 | JetGetDatabaseInfo | |
| 167 | JetGetDatabaseInfoA | |
| 168 | JetGetDatabaseInfoW | |
| 169 | JetGetDatabasePages | |
| 170 | JetGetErrorInfoW | |
| 171 | JetGetIndexInfo | |
| 172 | JetGetIndexInfoA | |
| 173 | JetGetIndexInfoW | |
| 174 | JetGetInstanceInfo | |
| 175 | JetGetInstanceInfoA | |
| 176 | JetGetInstanceInfoW | |
| 177 | JetGetInstanceMiscInfo | |
| 178 | JetGetLS | |
| 179 | JetGetLock | |
| 180 | JetGetLogFileInfo | |
| 181 | JetGetLogFileInfoA | |
| 182 | JetGetLogFileInfoW | |
| 183 | JetGetLogInfo | |
| 184 | JetGetLogInfoA | |
| 185 | JetGetLogInfoInstance | |
| 186 | JetGetLogInfoInstance2 | |
| 187 | JetGetLogInfoInstance2A | |
| 188 | JetGetLogInfoInstance2W | |
| 189 | JetGetLogInfoInstanceA | |
| 190 | JetGetLogInfoInstanceW | |
| 191 | JetGetLogInfoW | |
| 192 | JetGetMaxDatabaseSize | |
| 193 | JetGetObjectInfo | |
| 194 | JetGetObjectInfoA | |
| 195 | JetGetObjectInfoW | |
| 196 | JetGetPageInfo | |
| 197 | JetGetPageInfo2 | |
| 198 | JetGetRecordPosition | |
| 199 | JetGetRecordSize | |
| 200 | JetGetRecordSize2 | |
| 201 | JetGetResourceParam | |
| 202 | JetGetSecondaryIndexBookmark | |
| 203 | JetGetSessionInfo | |
| 204 | JetGetSessionParameter | |
| 205 | JetGetSystemParameter | |
| 206 | JetGetSystemParameterA | |
| 207 | JetGetSystemParameterW | |
| 208 | JetGetTableColumnInfo | |
| 209 | JetGetTableColumnInfoA | |
| 210 | JetGetTableColumnInfoW | |
| 211 | JetGetTableIndexInfo | |
| 212 | JetGetTableIndexInfoA | |
| 213 | JetGetTableIndexInfoW | |
| 214 | JetGetTableInfo | |
| 215 | JetGetTableInfoA | |
| 216 | JetGetTableInfoW | |
| 217 | JetGetThreadStats | |
| 218 | JetGetTruncateLogInfoInstance | |
| 219 | JetGetTruncateLogInfoInstanceA | |
| 220 | JetGetTruncateLogInfoInstanceW | |
| 221 | JetGetVersion | |
| 222 | JetGotoBookmark | |
| 223 | JetGotoPosition | |
| 224 | JetGotoSecondaryIndexBookmark | |
| 225 | JetGrowDatabase | |
| 226 | JetIdle | |
| 227 | JetIndexRecordCount | |
| 228 | JetInit | |
| 229 | JetInit2 | |
| 230 | JetInit3 | |
| 231 | JetInit3A | |
| 232 | JetInit3W | |
| 233 | JetInit4 | |
| 234 | JetInit4A | |
| 235 | JetInit4W | |
| 236 | JetIntersectIndexes | |
| 237 | JetMakeKey | |
| 238 | JetMove | |
| 239 | JetOSSnapshotAbort | |
| 240 | JetOSSnapshotEnd | |
| 241 | JetOSSnapshotFreeze | |
| 242 | JetOSSnapshotFreezeA | |
| 243 | JetOSSnapshotFreezeW | |
| 244 | JetOSSnapshotGetFreezeInfo | |
| 245 | JetOSSnapshotGetFreezeInfoA | |
| 246 | JetOSSnapshotGetFreezeInfoW | |
| 247 | JetOSSnapshotPrepare | |
| 248 | JetOSSnapshotPrepareInstance | |
| 249 | JetOSSnapshotThaw | |
| 250 | JetOSSnapshotTruncateLog | |
| 251 | JetOSSnapshotTruncateLogInstance | |
| 252 | JetOnlinePatchDatabasePage | |
| 253 | JetOpenDatabase | |
| 254 | JetOpenDatabaseA | |
| 255 | JetOpenDatabaseW | |
| 256 | JetOpenFile | |
| 257 | JetOpenFileA | |
| 258 | JetOpenFileInstance | |
| 259 | JetOpenFileInstanceA | |
| 260 | JetOpenFileInstanceW | |
| 261 | JetOpenFileSectionInstance | |
| 262 | JetOpenFileSectionInstanceA | |
| 263 | JetOpenFileSectionInstanceW | |
| 264 | JetOpenFileW | |
| 265 | JetOpenTable | |
| 266 | JetOpenTableA | |
| 267 | JetOpenTableW | |
| 268 | JetOpenTempTable | |
| 269 | JetOpenTempTable2 | |
| 270 | JetOpenTempTable3 | |
| 271 | JetOpenTemporaryTable | |
| 272 | JetOpenTemporaryTable2 | |
| 273 | JetPatchDatabasePages | |
| 274 | JetPatchDatabasePagesA | |
| 275 | JetPatchDatabasePagesW | |
| 276 | JetPrepareToCommitTransaction | |
| 277 | JetPrepareUpdate | |
| 278 | JetPrereadIndexRanges | |
| 279 | JetPrereadKeys | |
| 280 | JetPrereadTablesW | |
| 281 | JetReadFile | |
| 282 | JetReadFileInstance | |
| 283 | JetRegisterCallback | |
| 284 | JetRemoveLogfileA | |
| 285 | JetRemoveLogfileW | |
| 286 | JetRenameColumn | |
| 287 | JetRenameColumnA | |
| 288 | JetRenameColumnW | |
| 289 | JetRenameTable | |
| 290 | JetRenameTableA | |
| 291 | JetRenameTableW | |
| 292 | JetResetCounter | |
| 293 | JetResetSessionContext | |
| 294 | JetResetTableSequential | |
| 295 | JetResizeDatabase | |
| 296 | JetRestore | |
| 297 | JetRestore2 | |
| 298 | JetRestore2A | |
| 299 | JetRestore2W | |
| 300 | JetRestoreA | |
| 301 | JetRestoreInstance | |
| 302 | JetRestoreInstanceA | |
| 303 | JetRestoreInstanceW | |
| 304 | JetRestoreW | |
| 305 | JetRetrieveColumn | |
| 306 | JetRetrieveColumns | |
| 307 | JetRetrieveKey | |
| 308 | JetRetrieveTaggedColumnList | |
| 309 | JetRollback | |
| 310 | JetSeek | |
| 311 | JetSetColumn | |
| 312 | JetSetColumnDefaultValue | |
| 313 | JetSetColumnDefaultValueA | |
| 314 | JetSetColumnDefaultValueW | |
| 315 | JetSetColumns | |
| 316 | JetSetCurrentIndex | |
| 317 | JetSetCurrentIndex2 | |
| 318 | JetSetCurrentIndex2A | |
| 319 | JetSetCurrentIndex2W | |
| 320 | JetSetCurrentIndex3 | |
| 321 | JetSetCurrentIndex3A | |
| 322 | JetSetCurrentIndex3W | |
| 323 | JetSetCurrentIndex4 | |
| 324 | JetSetCurrentIndex4A | |
| 325 | JetSetCurrentIndex4W | |
| 326 | JetSetCurrentIndexA | |
| 327 | JetSetCurrentIndexW | |
| 328 | JetSetCursorFilter | |
| 329 | JetSetDatabaseSize | |
| 330 | JetSetDatabaseSizeA | |
| 331 | JetSetDatabaseSizeW | |
| 332 | JetSetIndexRange | |
| 333 | JetSetLS | |
| 334 | JetSetMaxDatabaseSize | |
| 335 | JetSetResourceParam | |
| 336 | JetSetSessionContext | |
| 337 | JetSetSessionParameter | |
| 338 | JetSetSystemParameter | |
| 339 | JetSetSystemParameterA | |
| 340 | JetSetSystemParameterW | |
| 341 | JetSetTableSequential | |
| 342 | JetSnapshotStart | |
| 343 | JetSnapshotStartA | |
| 344 | JetSnapshotStartW | |
| 345 | JetSnapshotStop | |
| 346 | JetStopBackup | |
| 347 | JetStopBackupInstance | |
| 348 | JetStopService | |
| 349 | JetStopServiceInstance | |
| 350 | JetStopServiceInstance2 | |
| 351 | JetTerm | |
| 352 | JetTerm2 | |
| 353 | JetTestHook | |
| 354 | JetTracing | |
| 355 | JetTruncateLog | |
| 356 | JetTruncateLogInstance | |
| 357 | JetUnregisterCallback | |
| 358 | JetUpdate | |
| 359 | JetUpdate2 | |
| 360 | JetUpgradeDatabase | |
| 361 | JetUpgradeDatabaseA | |
| 362 | JetUpgradeDatabaseW | |
| 363 | ese |
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 | ; | |
| 6 | LIBRARY "EventAggregation.dll" | |
| 7 | EXPORTS | |
| 8 | EACreateAggregateEvent | |
| 9 | EADeleteAggregateEvent | |
| 10 | EAEnumerateAggregateEvents | |
| 11 | EAQueryAggregateEventData |
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 | ; | |
| 6 | LIBRARY "fdPHost.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "fdprint.dll" | |
| 7 | EXPORTS | |
| 8 | InvokeTaskW |
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 | ; | |
| 6 | LIBRARY "respub.DLL" | |
| 7 | EXPORTS | |
| 8 | FDResPub_MainHosted | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "fdSSDP.dll" | |
| 7 | EXPORTS | |
| 8 | FdphostSessionChange | |
| 9 | FdphostSetComContext | |
| 10 | FdphostSetSharedService |
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 | ; | |
| 6 | LIBRARY "fdWSD.dll" | |
| 7 | EXPORTS | |
| 8 | FdphostSessionChange | |
| 9 | FdphostSetComContext | |
| 10 | FdphostSetSharedService |
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 | ; | |
| 6 | LIBRARY "FHEVENTS.dll" | |
| 7 | EXPORTS | |
| 8 | DpElGetNextEvent | |
| 9 | DpElReleaseObjects | |
| 10 | DpElScanEvents |
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 | ; | |
| 6 | LIBRARY "dll.dll" | |
| 7 | EXPORTS | |
| 8 | CreateCatalog | |
| 9 | CreateSearchBindCtx | |
| 10 | CreateVirtualItem | |
| 11 | FreeCatalog | |
| 12 | GetBackupPathFromPidl | |
| 13 | ParsePIDL |
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 | ; | |
| 6 | LIBRARY "fhsvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "FirewallAPI.dll" | |
| 7 | EXPORTS | |
| 8 | CreateDefaultPerInterfaceIcmpRule | |
| 9 | CreateDefaultPerInterfaceOpenPortRule | |
| 10 | FwAdvPolicyDecodeFirewallRule | |
| 11 | FwAdvPolicyEncodeRule | |
| 12 | FwBstrToPorts | |
| 13 | FwGetCurrentProfile | |
| 14 | FwGetVersionField | |
| 15 | FwPortsToString | |
| 16 | GetDisabledInterfaces | |
| 17 | NetworkIsolationEnumerateAppContainerRules | |
| 18 | NetworkIsolationFreeAppContainers | |
| 19 | CalculateOpenPortOrAuthAppAddrStringSize | |
| 20 | FWAddAuthenticationSet | |
| 21 | FWAddConnectionSecurityRule | |
| 22 | FWAddCryptoSet | |
| 23 | FWAddFirewallRule | |
| 24 | FWAddMainModeRule | |
| 25 | FWChangeNotificationCreate | |
| 26 | FWChangeNotificationDestroy | |
| 27 | FWChangeTransactionalState | |
| 28 | FWClosePolicyStore | |
| 29 | FWCopyAuthenticationSet | |
| 30 | FWCopyConnectionSecurityRule | |
| 31 | FWCopyCryptoSet | |
| 32 | FWCopyFirewallRule | |
| 33 | FWDeleteAllAuthenticationSets | |
| 34 | FWDeleteAllConnectionSecurityRules | |
| 35 | FWDeleteAllCryptoSets | |
| 36 | FWDeleteAllFirewallRules | |
| 37 | FWDeleteAllMainModeRules | |
| 38 | FWDeleteAuthenticationSet | |
| 39 | FWDeleteConnectionSecurityRule | |
| 40 | FWDeleteCryptoSet | |
| 41 | FWDeleteFirewallRule | |
| 42 | FWDeleteMainModeRule | |
| 43 | FWDeletePhase1SAs | |
| 44 | FWDeletePhase2SAs | |
| 45 | FWDiagGetAppList | |
| 46 | FWEnumAdapters | |
| 47 | FWEnumAuthenticationSets | |
| 48 | FWEnumConnectionSecurityRules | |
| 49 | FWEnumCryptoSets | |
| 50 | FWEnumFirewallRules | |
| 51 | FWEnumMainModeRules | |
| 52 | FWEnumNetworks | |
| 53 | FWEnumPhase1SAs | |
| 54 | FWEnumPhase2SAs | |
| 55 | FWEnumProducts | |
| 56 | FWExportPolicy | |
| 57 | FWFreeAdapters | |
| 58 | FWFreeAuthenticationSet | |
| 59 | FWFreeAuthenticationSets | |
| 60 | FWFreeAuthenticationSetsByHandle | |
| 61 | FWFreeConnectionSecurityRule | |
| 62 | FWFreeConnectionSecurityRules | |
| 63 | FWFreeConnectionSecurityRulesByHandle | |
| 64 | FWFreeCryptoSet | |
| 65 | FWFreeCryptoSets | |
| 66 | FWFreeCryptoSetsByHandle | |
| 67 | FWFreeDiagAppList | |
| 68 | FWFreeFirewallRule | |
| 69 | FWFreeFirewallRules | |
| 70 | FWFreeFirewallRulesByHandle | |
| 71 | FWFreeFirewallRulesOld | |
| 72 | FWFreeMainModeRule | |
| 73 | FWFreeMainModeRules | |
| 74 | FWFreeMainModeRulesByHandle | |
| 75 | FWFreeNetworks | |
| 76 | FWFreePhase1SAs | |
| 77 | FWFreePhase2SAs | |
| 78 | FWFreeProducts | |
| 79 | FWGPLock | |
| 80 | FWGPUnlock | |
| 81 | FWGetConfig | |
| 82 | FWGetConfig2 | |
| 83 | FWGetGlobalConfig | |
| 84 | FWGetGlobalConfig2 | |
| 85 | FWGetGlobalConfig3 | |
| 86 | FWGetIndicatedPortInUse | |
| 87 | FWImportPolicy | |
| 88 | FWIndicatePortInUse | |
| 89 | FWIndicateProxyForUrl | |
| 90 | FWIndicateProxyResolverRefresh | |
| 91 | FWIndicateTupleInUse | |
| 92 | FWIsTargetAProxy | |
| 93 | FWOpenPolicyStore | |
| 94 | FWQueryAuthenticationSets | |
| 95 | FWQueryConnectionSecurityRules | |
| 96 | FWQueryCryptoSets | |
| 97 | FWQueryFirewallRules | |
| 98 | FWQueryIsolationType | |
| 99 | FWQueryMainModeRules | |
| 100 | FWRegisterProduct | |
| 101 | FWResetIndicatedPortInUse | |
| 102 | FWResetIndicatedTupleInUse | |
| 103 | FWResolveGPONames | |
| 104 | FWRestoreDefaults | |
| 105 | FWRestoreGPODefaults | |
| 106 | FWRevertTransaction | |
| 107 | FWSelectConSecRule | |
| 108 | FWSetAuthenticationSet | |
| 109 | FWSetConfig | |
| 110 | FWSetConnectionSecurityRule | |
| 111 | FWSetCryptoSet | |
| 112 | FWSetFirewallRule | |
| 113 | FWSetGPHelperFnPtrs | |
| 114 | FWSetGlobalConfig | |
| 115 | FWSetGlobalConfig2 | |
| 116 | FWSetMainModeRule | |
| 117 | FWStatusMessageFromStatusCode | |
| 118 | FWUnregisterProduct | |
| 119 | FWVerifyAuthenticationSet | |
| 120 | FWVerifyAuthenticationSetQuery | |
| 121 | FWVerifyConnectionSecurityRule | |
| 122 | FWVerifyConnectionSecurityRuleQuery | |
| 123 | FWVerifyCryptoSet | |
| 124 | FWVerifyCryptoSetQuery | |
| 125 | FWVerifyFirewallRule | |
| 126 | FWVerifyFirewallRuleQuery | |
| 127 | FWVerifyMainModeRule | |
| 128 | FWVerifyMainModeRuleQuery | |
| 129 | FreeAbsoluteInterfaces | |
| 130 | FwActivate | |
| 131 | FwAddRule | |
| 132 | FwAddSet | |
| 133 | FwAddrChangeSourceInitialize | |
| 134 | FwAddrChangeSourceShutdown | |
| 135 | FwAddrChangeSourceSignal | |
| 136 | FwAlloc | |
| 137 | FwAllocCheckSize | |
| 138 | FwAnalyzeFirewallPolicy | |
| 139 | FwAnalyzeFirewallPolicyOnProfile | |
| 140 | FwAppContainerChangeFree | |
| 141 | FwAreAllContainedInAddresses | |
| 142 | FwBinariesFree | |
| 143 | FwCSRuleEmpty | |
| 144 | FwCSRuleVerify | |
| 145 | FwCanonizeAuthorizedApps | |
| 146 | FwChangeSourceInitialize | |
| 147 | FwChangeSourceShutdown | |
| 148 | FwChangeSourceSignal | |
| 149 | FwChangeSourceSignalStart | |
| 150 | FwChkBuildSidAndAttributesFree | |
| 151 | FwClosePolicyStore | |
| 152 | FwConvertIPv6SubNetToRange | |
| 153 | FwCopyAuthSet | |
| 154 | FwCopyAuthSetListToLowerVersion | |
| 155 | FwCopyAuthsetToHigherVersion | |
| 156 | FwCopyCSRule | |
| 157 | FwCopyCryptoSet | |
| 158 | FwCopyICMPTypeCode | |
| 159 | FwCopyInterfaceLuids | |
| 160 | FwCopyLUID | |
| 161 | FwCopyMMRule | |
| 162 | FwCopyMainModeRule | |
| 163 | FwCopyPlatform | |
| 164 | FwCopyPortRange | |
| 165 | FwCopyPortsContents | |
| 166 | FwCopyRule | |
| 167 | FwCopyWFAddressesContents | |
| 168 | FwCreateLocalTempStore | |
| 169 | FwDeleteAllRules | |
| 170 | FwDeleteAllSets | |
| 171 | FwDeleteRule | |
| 172 | FwDeleteSet | |
| 173 | FwDestroyLocalTempStore | |
| 174 | FwDoNothingOnObject | |
| 175 | FwEmptyWFAddresses | |
| 176 | FwEmptyWFRule | |
| 177 | FwEnableMemTracing | |
| 178 | FwEnumRules | |
| 179 | FwEnumSets | |
| 180 | FwFree | |
| 181 | FwFreeAddresses | |
| 182 | FwFreeRules | |
| 183 | FwFreeSets | |
| 184 | FwFreeWFRule | |
| 185 | FwGetAddressesAsString | |
| 186 | FwGetAppBlockList | |
| 187 | FwGetConfig | |
| 188 | FwGetGlobalConfig | |
| 189 | FwGetGlobalConfigFromLocalTempStore | |
| 190 | FwGetRule | |
| 191 | FwICFProfileToWfProfile | |
| 192 | FwICFProtocolToWfProtocol | |
| 193 | FwIPV4RangeContainsMulticast | |
| 194 | FwIPV6RangeContainsMulticast | |
| 195 | FwImageListDestroy | |
| 196 | FwImageListHasImage | |
| 197 | FwIsGroupPolicyEnforced | |
| 198 | FwIsRemoteManagementEnabled | |
| 199 | FwIsV6AddrLoopback | |
| 200 | FwMMRuleVerify | |
| 201 | FwMergeAddresses | |
| 202 | FwMigrateLegacyAuthenticatedBypassSddl | |
| 203 | FwMigrateLegacySettings | |
| 204 | FwNegateAddresses | |
| 205 | FwOpenAppCDbPolicyStore | |
| 206 | FwOpenPolicyStore | |
| 207 | FwParseAddressToken | |
| 208 | FwReduceObjectsToVersion | |
| 209 | FwRemoveDuplicateAddresses | |
| 210 | FwResolveIndirectString | |
| 211 | FwRuleResolveFlags | |
| 212 | FwSddlStringVerify | |
| 213 | FwSetConfig | |
| 214 | FwSetGlobalConfig | |
| 215 | FwSetMemLeakPolicy | |
| 216 | FwSetResolveFlags | |
| 217 | FwSetRule | |
| 218 | FwSetSet | |
| 219 | FwSidAndAttributesCopy | |
| 220 | FwSidAndAttributesFree | |
| 221 | FwSidCopy | |
| 222 | FwSidsToString | |
| 223 | FwStringToAddresses | |
| 224 | FwStringToSids | |
| 225 | FwSubtractAddresses | |
| 226 | FwUniteWFAddressesContents | |
| 227 | FwVerifyNoHeapLeaks | |
| 228 | FwVerifyWFRuleSemantics | |
| 229 | FwWfProtocolToICFProtocol | |
| 230 | GetOpenPortOrAuthAppAddrScope | |
| 231 | IcfAddrChangeNotificationCreate | |
| 232 | IcfChangeNotificationCreate | |
| 233 | IcfChangeNotificationDestroy | |
| 234 | IcfConnect | |
| 235 | IcfDisconnect | |
| 236 | IcfFreeDynamicFwPorts | |
| 237 | IcfFreeProfile | |
| 238 | IcfFreeTickets | |
| 239 | IcfGetCurrentProfileType | |
| 240 | IcfGetDynamicFwPorts | |
| 241 | IcfGetOperationalMode | |
| 242 | IcfGetProfile | |
| 243 | IcfGetTickets | |
| 244 | IcfIsPortAllowed | |
| 245 | IcfOpenDynamicFwPortWithoutSocket | |
| 246 | IcfSubNetsGetScope | |
| 247 | IsAddressesEmpty | |
| 248 | IsEqualAddresses | |
| 249 | IsFirewallInCoExistanceMode | |
| 250 | IsPortOrICMPAllowed | |
| 251 | IsPortsEmpty | |
| 252 | IsRuleOldAuthApp | |
| 253 | IsRuleOldGlobalOpenPort | |
| 254 | IsRuleOpenPortOrAuthApp | |
| 255 | IsRulePerInterfaceIcmp | |
| 256 | IsRulePerInterfaceOpenPort | |
| 257 | IsUnicastExplicitAddressesEmpty | |
| 258 | Isv4Orv6AddressesEmpty | |
| 259 | LoadGPExtensionDll | |
| 260 | MakeAbsoluteInterfaces | |
| 261 | NetworkIsolationCreateAppContainer | |
| 262 | NetworkIsolationDeleteAppContainer | |
| 263 | NetworkIsolationDiagnoseConnectFailure | |
| 264 | NetworkIsolationDiagnoseConnectFailureAndGetInfo | |
| 265 | NetworkIsolationDiagnoseListen | |
| 266 | NetworkIsolationDiagnoseSocketCreation | |
| 267 | NetworkIsolationEnumAppContainers | |
| 268 | NetworkIsolationGetAppContainerConfig | |
| 269 | NetworkIsolationRegisterForAppContainerChanges | |
| 270 | NetworkIsolationSetAppContainerConfig | |
| 271 | NetworkIsolationSetupAppContainerBinaries | |
| 272 | NetworkIsolationUnregisterForAppContainerChanges | |
| 273 | OpenPortOrAuthAppAddrToString | |
| 274 | ValidatePortOrAppAddressString |
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 | ; | |
| 6 | LIBRARY "FIREWALLCONTROLPANEL.dll" | |
| 7 | EXPORTS | |
| 8 | ShowNotificationDialogW | |
| 9 | ShowWarningDialogW |
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 | ; | |
| 6 | LIBRARY "fm20.dll" | |
| 7 | EXPORTS | |
| 8 | ord_29 @29 | |
| 9 | ord_30 @30 | |
| 10 | ChooseColorA | |
| 11 | ChooseColorW | |
| 12 | ChooseFontA | |
| 13 | ChooseFontW | |
| 14 | CommDlgExtendedError | |
| 15 | DllRegisterServerSetup | |
| 16 | ExtractIconA | |
| 17 | ExtractIconW | |
| 18 | FormsCheckUFIControls | |
| 19 | FormsCloseParentUnit | |
| 20 | FormsOpenParentUnit | |
| 21 | FormsSetLCID | |
| 22 | GetOpenFileNameA | |
| 23 | GetOpenFileNameW | |
| 24 | GetSaveFileNameA | |
| 25 | ord_50 @50 | |
| 26 | ord_51 @51 | |
| 27 | ord_52 @52 | |
| 28 | GetSaveFileNameW | |
| 29 | PrintDlgW | |
| 30 | ord_100 @100 | |
| 31 | ord_101 @101 | |
| 32 | ord_102 @102 | |
| 33 | ord_103 @103 | |
| 34 | ord_104 @104 | |
| 35 | ord_105 @105 | |
| 36 | ord_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 | ; | |
| 6 | LIBRARY "fmapi.dll" | |
| 7 | EXPORTS | |
| 8 | CloseFileRestoreContext | |
| 9 | CreateFileRestoreContext | |
| 10 | DetectBootSector | |
| 11 | DetectEncryptedVolume | |
| 12 | DetectEncryptedVolumeEx | |
| 13 | RestoreFile | |
| 14 | ScanRestorableFiles | |
| 15 | SupplyDecryptionInfo |
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 | ; | |
| 6 | LIBRARY "fms.dll" | |
| 7 | EXPORTS | |
| 8 | FmsActivateFonts | |
| 9 | FmsAddFilter | |
| 10 | FmsDeactivateFonts | |
| 11 | FmsFreeEnumerator | |
| 12 | FmsGetBestMatchInFamily | |
| 13 | FmsGetCurrentFilter | |
| 14 | FmsGetDirectWriteLogFont | |
| 15 | FmsGetFilteredFontList | |
| 16 | FmsGetFilteredPropertyList | |
| 17 | FmsGetFontAutoActivationMode | |
| 18 | FmsGetFontProperty | |
| 19 | FmsGetGDILogFont | |
| 20 | FmsGetGdiLogicalFont | |
| 21 | FmsInitializeEnumerator | |
| 22 | FmsMapGdiLogicalFont | |
| 23 | FmsMapLogicalFont | |
| 24 | FmsResetEnumerator | |
| 25 | FmsResetFontsActivationState | |
| 26 | FmsSetDefaultFilter | |
| 27 | FmsSetFilter | |
| 28 | FmsSetFontAutoActivationMode | |
| 29 | FmsSetTextFilter | |
| 30 | FmsToggleOnDesignAxis |
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 | ; | |
| 6 | LIBRARY "FntCache.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "fontext.DLL" | |
| 7 | EXPORTS | |
| 8 | InstallFontFile |
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 | ; | |
| 6 | LIBRARY "framedyn.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 619 | DoCmd |
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 | ; | |
| 6 | LIBRARY "framedynos.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 616 | DoCmd |
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 | ; | |
| 6 | LIBRARY "FSUTILEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CheckSonyMSWorker | |
| 9 | DeviceInstIsRemovableWorker | |
| 10 | FindFirstVolumeMountPointWStub | |
| 11 | FindNextVolumeMountPointWStub | |
| 12 | FindVolumeMountPointCloseStub | |
| 13 | GetDeviceIDDiskFromDeviceIDVolumeWorker | |
| 14 | GetDeviceInstanceWorker | |
| 15 | GetRemovableDeviceInstRecursWorker | |
| 16 | GetWidgetWorker | |
| 17 | InvalidateFveWorker | |
| 18 | SendWithSenseParseWorker | |
| 19 | SetThreadUILanguageStub | |
| 20 | SystemParametersInfoWStub | |
| 21 | WaitForUnitAndReportProgressWorker |
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 | ; | |
| 6 | LIBRARY "FVEAPI.dll" | |
| 7 | EXPORTS | |
| 8 | InternalFveIsVolumeEncrypted | |
| 9 | FveAddAuthMethodInformation | |
| 10 | FveAddAuthMethodSid | |
| 11 | FveApplyGroupPolicy | |
| 12 | FveApplyNkpCertChanges | |
| 13 | FveAttemptAutoUnlock | |
| 14 | FveAuthElementFromPassPhraseW | |
| 15 | FveAuthElementFromPinW | |
| 16 | FveAuthElementFromRecoveryPasswordW | |
| 17 | FveAuthElementGetKeyFileNameW | |
| 18 | FveAuthElementReadExternalKeyW | |
| 19 | FveAuthElementToRecoveryPasswordW | |
| 20 | FveAuthElementWriteExternalKeyW | |
| 21 | FveBackupRecoveryInformationToAD | |
| 22 | FveBindDataVolume | |
| 23 | FveCanStandardUsersChangePassphraseByProxy | |
| 24 | FveCanStandardUsersChangePin | |
| 25 | FveCheckPassphrasePolicy | |
| 26 | FveCheckTpmCapability | |
| 27 | FveClearUserFlags | |
| 28 | FveCloseHandle | |
| 29 | FveCloseVolume | |
| 30 | FveCommitChanges | |
| 31 | FveConversionDecrypt | |
| 32 | FveConversionDecryptEx | |
| 33 | FveConversionEncrypt | |
| 34 | FveConversionEncryptEx | |
| 35 | FveConversionEncryptPendingReboot | |
| 36 | FveConversionEncryptPendingRebootEx | |
| 37 | FveConversionPause | |
| 38 | FveConversionResume | |
| 39 | FveConversionStop | |
| 40 | FveConversionStopEx | |
| 41 | FveDecrementClearKeyCounter | |
| 42 | FveDeleteAuthMethod | |
| 43 | FveDisableDeviceLockoutState | |
| 44 | FveDiscardChanges | |
| 45 | FveDraCertPresentInRegistry | |
| 46 | FveEnableRawAccess | |
| 47 | FveEnableRawAccessEx | |
| 48 | FveEnableRawAccessW | |
| 49 | FveEraseDrive | |
| 50 | FveFindFirstVolume | |
| 51 | FveFindNextVolume | |
| 52 | FveFlagsToProtectorType | |
| 53 | FveGenerateNkpSessionKeys | |
| 54 | FveGetAllowKeyExport | |
| 55 | FveGetAuthMethodGuids | |
| 56 | FveGetAuthMethodInformation | |
| 57 | FveGetAuthMethodSid | |
| 58 | FveGetAuthMethodSidInformation | |
| 59 | FveGetClearKeyCounter | |
| 60 | FveGetDataSet | |
| 61 | FveGetDescriptionW | |
| 62 | FveGetDeviceLockoutData | |
| 63 | FveGetFipsAllowDisabled | |
| 64 | FveGetFveMethod | |
| 65 | FveGetFveMethodEDrv | |
| 66 | FveGetIdentificationFieldW | |
| 67 | FveGetIdentity | |
| 68 | FveGetKeyPackage | |
| 69 | FveGetSecureBootBindingState | |
| 70 | FveGetStatus | |
| 71 | FveGetStatusW | |
| 72 | FveGetUserFlags | |
| 73 | FveGetVolumeNameW | |
| 74 | FveInitVolume | |
| 75 | FveInitVolumeEx | |
| 76 | FveInitializeDeviceEncryption | |
| 77 | FveInitializeDeviceEncryption2 | |
| 78 | FveIsAnyDataVolumeBoundToOSVolume | |
| 79 | FveIsBoundDataVolume | |
| 80 | FveIsBoundDataVolumeToOSVolume | |
| 81 | FveIsDeviceLockable | |
| 82 | FveIsDeviceLockedOut | |
| 83 | FveIsHardwareReadyForConversion | |
| 84 | FveIsHybridVolume | |
| 85 | FveIsHybridVolumeW | |
| 86 | FveIsPassphraseCompatibleW | |
| 87 | FveIsRecoveryPasswordGroupValidW | |
| 88 | FveIsRecoveryPasswordValidW | |
| 89 | FveIsSchemaExtInstalled | |
| 90 | FveIsVolumeEncryptable | |
| 91 | FveKeyManagement | |
| 92 | FveLockDevice | |
| 93 | FveLockVolume | |
| 94 | FveLogRecoveryReason | |
| 95 | FveNeedsDiscoveryVolumeUpdate | |
| 96 | FveNotifyVolumeAfterFormat | |
| 97 | FveOpenVolumeByHandle | |
| 98 | FveOpenVolumeExW | |
| 99 | FveOpenVolumeW | |
| 100 | FveProtectorTypeToFlags | |
| 101 | FveQuery | |
| 102 | FveQueryDeviceEncryptionSupport | |
| 103 | FveRevertVolume | |
| 104 | FveServiceDiscoveryVolume | |
| 105 | FveSetAllowKeyExport | |
| 106 | FveSetDescriptionW | |
| 107 | FveSetFipsAllowDisabled | |
| 108 | FveSetFveMethod | |
| 109 | FveSetIdentificationFieldW | |
| 110 | FveSetUserFlags | |
| 111 | FveSysClearUserFlags | |
| 112 | FveSysCloseVolume | |
| 113 | FveSysGetUserFlags | |
| 114 | FveSysOpenVolumeW | |
| 115 | FveSysSetUserFlags | |
| 116 | FveUnbindAllDataVolumeFromOSVolume | |
| 117 | FveUnbindDataVolume | |
| 118 | FveUnlockVolume | |
| 119 | FveUnlockVolumeAuthMethodSid | |
| 120 | FveUnlockVolumeWithAccessMode | |
| 121 | FveUpdateBandIdBcd | |
| 122 | FveUpdateDeviceLockoutState | |
| 123 | FveUpdateDeviceLockoutStateEx | |
| 124 | FveUpdatePinW | |
| 125 | FveUpgradeVolume | |
| 126 | FveValidateDeviceLockoutState | |
| 127 | FveValidateExistingPassphraseW | |
| 128 | FveValidateExistingPinW |
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 | ; | |
| 6 | LIBRARY "FVEAPIBASE.dll" | |
| 7 | EXPORTS | |
| 8 | InternalFveIsVolumeEncrypted | |
| 9 | FveAuthElementFromPassPhraseW | |
| 10 | FveAuthElementFromPinW | |
| 11 | FveAuthElementFromRecoveryPasswordW | |
| 12 | FveAuthElementGetKeyFileNameW | |
| 13 | FveAuthElementReadExternalKeyW | |
| 14 | FveAuthElementToRecoveryPasswordW | |
| 15 | FveAuthElementWriteExternalKeyW | |
| 16 | FveClearUserFlags | |
| 17 | FveCloseHandle | |
| 18 | FveCloseVolume | |
| 19 | FveCommitChanges | |
| 20 | FveConversionDecrypt | |
| 21 | FveConversionDecryptEx | |
| 22 | FveConversionPause | |
| 23 | FveConversionResume | |
| 24 | FveConversionStop | |
| 25 | FveConversionStopEx | |
| 26 | FveDiscardChanges | |
| 27 | FveEnableRawAccess | |
| 28 | FveEraseDrive | |
| 29 | FveFindFirstVolume | |
| 30 | FveFindNextVolume | |
| 31 | FveGetAllowKeyExport | |
| 32 | FveGetAuthMethodGuids | |
| 33 | FveGetAuthMethodInformation | |
| 34 | FveGetDataSet | |
| 35 | FveGetFipsAllowDisabled | |
| 36 | FveGetFveMethod | |
| 37 | FveGetFveMethodEDrv | |
| 38 | FveGetIdentity | |
| 39 | FveGetKeyPackage | |
| 40 | FveGetStatus | |
| 41 | FveGetStatusW | |
| 42 | FveGetUserFlags | |
| 43 | FveGetVolumeNameW | |
| 44 | FveIsHardwareReadyForConversion | |
| 45 | FveIsRecoveryPasswordGroupValidW | |
| 46 | FveIsRecoveryPasswordValidW | |
| 47 | FveIsVolumeEncryptable | |
| 48 | FveLockVolume | |
| 49 | FveNotifyVolumeAfterFormat | |
| 50 | FveOpenVolumeByHandle | |
| 51 | FveOpenVolumeExW | |
| 52 | FveOpenVolumeW | |
| 53 | FveQuery | |
| 54 | FveRevertVolume | |
| 55 | FveSetAllowKeyExport | |
| 56 | FveSetFipsAllowDisabled | |
| 57 | FveSetFveMethod | |
| 58 | FveSetUserFlags | |
| 59 | FveUpgradeVolume |
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 | ; | |
| 6 | LIBRARY "FVECERTS.dll" | |
| 7 | EXPORTS | |
| 8 | FveCertCanCertificateBeAdded | |
| 9 | FveCertCreateCertInfo | |
| 10 | FveCertCreateSelfSignedCertificate | |
| 11 | FveCertFilterForValidCertificates | |
| 12 | FveCertFindValidCertificates | |
| 13 | FveCertFreeCertInfo | |
| 14 | FveCertGetCertContextFromCert | |
| 15 | FveCertGetCertContextFromPfx | |
| 16 | FveCertGetCertHashFromCertContext | |
| 17 | FveCertGetPrivateKeyHandle | |
| 18 | FveCertGetPublicKeyHandle | |
| 19 | FveCertIsAlternateCert | |
| 20 | FveCertIsValidCertInfo | |
| 21 | FveCertSignData | |
| 22 | FveCertWritePfxFromCertContext |
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 | ; | |
| 6 | LIBRARY "FVESKYBACKUP.dll" | |
| 7 | EXPORTS | |
| 8 | FveBackupRecoveryPasswordToSkyDrive |
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 | ; | |
| 6 | LIBRARY "FVEUI.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 46 | FveuiEnumSmartCardCerts | |
| 47 | FveuiUserSelectCert | |
| 48 | FveuiUserSelectSmartCard |
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 | ; | |
| 6 | LIBRARY "FVEWIZ.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 46 | FveuiWizard | |
| 47 | FveuipClearFveWizOnStartup |
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 | ; | |
| 6 | LIBRARY "FwRemoteSvr.DLL" | |
| 7 | EXPORTS | |
| 8 | FwRpcAPIsInitialize | |
| 9 | FwRpcAPIsShutdown |
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 | ; | |
| 6 | LIBRARY "gameux.dll" | |
| 7 | EXPORTS | |
| 8 | GameUXShimW |
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 | ; | |
| 6 | LIBRARY "GeofenceMonitorService.dll" | |
| 7 | EXPORTS | |
| 8 | GeofenceSettingsIsSimulator | |
| 9 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "globcollationhost.dll" | |
| 7 | EXPORTS | |
| 8 | WGCGetCharacterGroupDisplayName | |
| 9 | WGCGetDefaultGroupingLetters | |
| 10 | WGCGetGroupingLetter |
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 | ; | |
| 6 | LIBRARY "globinputhost.dll" | |
| 7 | EXPORTS | |
| 8 | WGIEnsureLanguageProfileExists | |
| 9 | WGIGetCompatibleInputMethodsForLanguage | |
| 10 | WGIGetCurrentInputLanguage | |
| 11 | WGIGetDefaultInputMethodForLanguage | |
| 12 | WGIGetInputMethodDescription | |
| 13 | WGIGetInputMethodProperties | |
| 14 | WGIGetInputMethodTileName | |
| 15 | WGIIsImeInputMethod | |
| 16 | WGIIsImeScript | |
| 17 | WGIIsImmersiveInputMethod | |
| 18 | WGIIsTouchEnabledInputMethod | |
| 19 | WGITransformInputMethodsForLanguage | |
| 20 | WGITransformInputMethodsForLanguageId | |
| 21 | WGIUpdateGlobalSpellerKey |
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 | ; | |
| 6 | LIBRARY "GPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | ord_107 @107 | |
| 9 | AreThereVisibleLogoffScriptsInternalWorker | |
| 10 | ord_109 @109 | |
| 11 | ord_110 @110 | |
| 12 | AreThereVisibleShutdownScriptsInternalWorker | |
| 13 | EnterCriticalPolicySectionExStub | |
| 14 | ord_113 @113 | |
| 15 | ord_114 @114 | |
| 16 | ord_115 @115 | |
| 17 | ord_116 @116 | |
| 18 | EnterCriticalPolicySectionInternalWorker | |
| 19 | FreeGPOListInternalAWorker | |
| 20 | GenerateGPNotificationInternalWorker | |
| 21 | GetAppliedGPOListInternalAWorker | |
| 22 | GetAppliedGPOListInternalWWorker | |
| 23 | GetGPOListInternalAWorker | |
| 24 | GetGPOListInternalWWorker | |
| 25 | HasPolicyForegroundProcessingCompletedInternalWorker | |
| 26 | LeaveCriticalPolicySectionInternalWorker | |
| 27 | RefreshPolicyExInternalWorker | |
| 28 | RefreshPolicyInternalWorker | |
| 29 | RegisterGPNotificationInternalWorker | |
| 30 | RsopLoggingEnabledInternalWorker | |
| 31 | UnregisterGPNotificationInternalWorker | |
| 32 | AreThereVisibleLogoffScriptsInternal | |
| 33 | AreThereVisibleShutdownScriptsInternal | |
| 34 | EnterCriticalPolicySectionInternal | |
| 35 | ForceSyncFgPolicyInternal | |
| 36 | ForceSyncFgPolicyInternalWorker | |
| 37 | FreeGPOListInternalA | |
| 38 | FreeGPOListInternalW | |
| 39 | FreeGPOListInternalWWorker | |
| 40 | GenerateGPNotificationInternal | |
| 41 | GetAppliedGPOListInternalA | |
| 42 | GetAppliedGPOListInternalW | |
| 43 | GetGPOListInternalA | |
| 44 | GetGPOListInternalW | |
| 45 | GetNextFgPolicyRefreshInfoInternal | |
| 46 | GetNextFgPolicyRefreshInfoInternalWorker | |
| 47 | GetPreviousFgPolicyRefreshInfoInternal | |
| 48 | GetPreviousFgPolicyRefreshInfoInternalWorker | |
| 49 | HasPolicyForegroundProcessingCompletedInternal | |
| 50 | IsSyncForegroundPolicyRefreshWorker | |
| 51 | LeaveCriticalPolicySectionInternal | |
| 52 | RefreshPolicyExInternal | |
| 53 | RefreshPolicyInternal | |
| 54 | RegisterGPNotificationInternal | |
| 55 | RsopLoggingEnabledInternal | |
| 56 | UnregisterGPNotificationInternal | |
| 57 | WaitForMachinePolicyForegroundProcessingInternal | |
| 58 | WaitForMachinePolicyForegroundProcessingInternalWorker | |
| 59 | WaitForUserPolicyForegroundProcessingInternal | |
| 60 | WaitForUserPolicyForegroundProcessingInternalWorker |
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 | ; | |
| 6 | LIBRARY "polprocl.dll" | |
| 7 | EXPORTS | |
| 8 | GenerateGroupPolicyApplications | |
| 9 | GenerateGroupPolicyDataSources | |
| 10 | GenerateGroupPolicyDevices | |
| 11 | GenerateGroupPolicyDrives | |
| 12 | GenerateGroupPolicyEnviron | |
| 13 | GenerateGroupPolicyFiles | |
| 14 | GenerateGroupPolicyFolderOptions | |
| 15 | GenerateGroupPolicyFolders | |
| 16 | GenerateGroupPolicyIniFile | |
| 17 | GenerateGroupPolicyInternet | |
| 18 | GenerateGroupPolicyLocUsAndGroups | |
| 19 | GenerateGroupPolicyNetShares | |
| 20 | GenerateGroupPolicyNetworkOptions | |
| 21 | GenerateGroupPolicyPowerOptions | |
| 22 | GenerateGroupPolicyPrinters | |
| 23 | GenerateGroupPolicyRegionOptions | |
| 24 | GenerateGroupPolicyRegistry | |
| 25 | GenerateGroupPolicySchedTasks | |
| 26 | GenerateGroupPolicyServices | |
| 27 | GenerateGroupPolicyShortcuts | |
| 28 | GenerateGroupPolicyStartMenu | |
| 29 | ProcessGroupPolicyApplications | |
| 30 | ProcessGroupPolicyDataSources | |
| 31 | ProcessGroupPolicyDevices | |
| 32 | ProcessGroupPolicyDrives | |
| 33 | ProcessGroupPolicyEnviron | |
| 34 | ProcessGroupPolicyExApplications | |
| 35 | ProcessGroupPolicyExDataSources | |
| 36 | ProcessGroupPolicyExDevices | |
| 37 | ProcessGroupPolicyExDrives | |
| 38 | ProcessGroupPolicyExEnviron | |
| 39 | ProcessGroupPolicyExFiles | |
| 40 | ProcessGroupPolicyExFolderOptions | |
| 41 | ProcessGroupPolicyExFolders | |
| 42 | ProcessGroupPolicyExIniFile | |
| 43 | ProcessGroupPolicyExInternet | |
| 44 | ProcessGroupPolicyExLocUsAndGroups | |
| 45 | ProcessGroupPolicyExNetShares | |
| 46 | ProcessGroupPolicyExNetworkOptions | |
| 47 | ProcessGroupPolicyExPowerOptions | |
| 48 | ProcessGroupPolicyExPrinters | |
| 49 | ProcessGroupPolicyExRegionOptions | |
| 50 | ProcessGroupPolicyExRegistry | |
| 51 | ProcessGroupPolicyExSchedTasks | |
| 52 | ProcessGroupPolicyExServices | |
| 53 | ProcessGroupPolicyExShortcuts | |
| 54 | ProcessGroupPolicyExStartMenu | |
| 55 | ProcessGroupPolicyFiles | |
| 56 | ProcessGroupPolicyFolderOptions | |
| 57 | ProcessGroupPolicyFolders | |
| 58 | ProcessGroupPolicyIniFile | |
| 59 | ProcessGroupPolicyInternet | |
| 60 | ProcessGroupPolicyLocUsAndGroups | |
| 61 | ProcessGroupPolicyNetShares | |
| 62 | ProcessGroupPolicyNetworkOptions | |
| 63 | ProcessGroupPolicyPowerOptions | |
| 64 | ProcessGroupPolicyPrinters | |
| 65 | ProcessGroupPolicyRegionOptions | |
| 66 | ProcessGroupPolicyRegistry | |
| 67 | ProcessGroupPolicySchedTasks | |
| 68 | ProcessGroupPolicyServices | |
| 69 | ProcessGroupPolicyShortcuts | |
| 70 | ProcessGroupPolicyStartMenu |
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 | ; | |
| 6 | LIBRARY "gpprnext.dll" | |
| 7 | EXPORTS | |
| 8 | PrinterGenerateGroupPolicy | |
| 9 | PrinterProcessGroupPolicy | |
| 10 | PrinterProcessGroupPolicyEx |
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 | ; | |
| 6 | LIBRARY "GPSCRIPT.DLL" | |
| 7 | EXPORTS | |
| 8 | GenerateScriptsGroupPolicy | |
| 9 | ProcessScriptsGroupPolicy | |
| 10 | ProcessScriptsGroupPolicyEx | |
| 11 | ScrRegGPOListToWbem |
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 | ; | |
| 6 | LIBRARY "GPSVC.dll" | |
| 7 | EXPORTS | |
| 8 | ord_106 @106 | |
| 9 | GroupPolicyClientServiceMain | |
| 10 | SvchostPushServiceGlobals | |
| 11 | GenerateRsopPolicy | |
| 12 | ProcessGroupPolicyCompletedExInternal | |
| 13 | ProcessGroupPolicyCompletedInternal | |
| 14 | RsopAccessCheckByTypeInternal | |
| 15 | RsopFileAccessCheckInternal | |
| 16 | RsopResetPolicySettingStatusInternal | |
| 17 | RsopSetPolicySettingStatusInternal |
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 | ; | |
| 6 | LIBRARY "GPTEXT.DLL" | |
| 7 | EXPORTS | |
| 8 | ProcessConnectivityPlatformPolicy | |
| 9 | ProcessEQoSPolicy | |
| 10 | ProcessPSCHEDPolicy | |
| 11 | ProcessTCPIPPolicy |
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 | ; | |
| 6 | LIBRARY "HAL.dll" | |
| 7 | EXPORTS | |
| 8 | HalAcpiGetTableEx | |
| 9 | HalAllProcessorsStarted | |
| 10 | HalAllocateCrashDumpRegisters | |
| 11 | HalAllocateHardwareCounters | |
| 12 | HalBeginSystemInterruptUnspecified | |
| 13 | HalBugCheckSystem | |
| 14 | HalCalibratePerformanceCounter | |
| 15 | HalConvertDeviceIdtToIrql | |
| 16 | HalDisableInterrupt | |
| 17 | HalDmaAllocateCrashDumpRegistersEx | |
| 18 | HalDmaFreeCrashDumpRegistersEx | |
| 19 | HalEnableInterrupt | |
| 20 | HalEndSystemInterrupt | |
| 21 | HalEnumerateEnvironmentVariablesEx | |
| 22 | HalEnumerateProcessors | |
| 23 | HalFreeHardwareCounters | |
| 24 | HalGetBusDataByOffset | |
| 25 | HalGetEnvironmentVariable | |
| 26 | HalGetEnvironmentVariableEx | |
| 27 | HalGetInterruptTargetInformation | |
| 28 | HalGetMemoryCachingRequirements | |
| 29 | HalGetMessageRoutingInfo | |
| 30 | HalGetProcessorIdByNtNumber | |
| 31 | HalGetVectorInput | |
| 32 | HalInitSystem | |
| 33 | HalInitializeOnResume | |
| 34 | HalInitializeProcessor | |
| 35 | HalProcessorIdle | |
| 36 | HalQueryEnvironmentVariableInfoEx | |
| 37 | HalQueryMaximumProcessorCount | |
| 38 | HalQueryRealTimeClock | |
| 39 | HalRegisterDynamicProcessor | |
| 40 | HalRegisterErrataCallbacks | |
| 41 | HalReportResourceUsage | |
| 42 | HalRequestClockInterrupt | |
| 43 | HalRequestIpi | |
| 44 | HalRequestIpiSpecifyVector | |
| 45 | HalRequestSoftwareInterrupt | |
| 46 | HalReturnToFirmware | |
| 47 | HalSendSoftwareInterrupt | |
| 48 | HalSetBusDataByOffset | |
| 49 | HalSetEnvironmentVariable | |
| 50 | HalSetEnvironmentVariableEx | |
| 51 | HalSetProfileInterval | |
| 52 | HalSetRealTimeClock | |
| 53 | HalStartDynamicProcessor | |
| 54 | HalStartNextProcessor | |
| 55 | HalStartProfileInterrupt | |
| 56 | HalStopProfileInterrupt | |
| 57 | HalTranslateBusAddress | |
| 58 | KdComPortInUse DATA | |
| 59 | KdHvComPortInUse DATA | |
| 60 | KeFlushWriteBuffer | |
| 61 | KeGetCurrentIrql | |
| 62 | KeQueryPerformanceCounter | |
| 63 | KeStallExecutionProcessor | |
| 64 | KfLowerIrql | |
| 65 | KfRaiseIrql | |
| 66 | READ_PORT_BUFFER_UCHAR | |
| 67 | READ_PORT_BUFFER_ULONG | |
| 68 | READ_PORT_BUFFER_USHORT | |
| 69 | READ_PORT_UCHAR | |
| 70 | READ_PORT_ULONG | |
| 71 | READ_PORT_USHORT | |
| 72 | WRITE_PORT_BUFFER_UCHAR | |
| 73 | WRITE_PORT_BUFFER_ULONG | |
| 74 | WRITE_PORT_BUFFER_USHORT | |
| 75 | WRITE_PORT_UCHAR | |
| 76 | WRITE_PORT_ULONG | |
| 77 | WRITE_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 | ; | |
| 6 | LIBRARY "HIDSERV.dll" | |
| 7 | EXPORTS | |
| 8 | InstallHidserv | |
| 9 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "HNetCfg.dll" | |
| 7 | EXPORTS | |
| 8 | HNetDeleteRasConnection | |
| 9 | HNetFreeSharingServicesPage | |
| 10 | HNetGetSharingServicesPage | |
| 11 | HNetGetFirewallSettingsPage | |
| 12 | HNetSharedAccessSettingsDlg | |
| 13 | HNetSharingAndFirewallSettingsDlg | |
| 14 | RegisterClassObjects | |
| 15 | ReleaseSingletons | |
| 16 | RevokeClassObjects | |
| 17 | WinBomConfigureWindowsFirewall |
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 | ; | |
| 6 | LIBRARY "httpprxm.dll" | |
| 7 | EXPORTS | |
| 8 | SubServiceScmNotification | |
| 9 | SubServiceStart | |
| 10 | SubServiceStop |
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 | ; | |
| 6 | LIBRARY "httpprxp.dll" | |
| 7 | EXPORTS | |
| 8 | ProxyHelperGetProxyEventInformation | |
| 9 | ProxyHelperProviderConnectToServer | |
| 10 | ProxyHelperProviderDisconnectFromServer | |
| 11 | ProxyHelperProviderFreeMemory | |
| 12 | ProxyHelperProviderRegisterForEventNotification | |
| 13 | ProxyHelperProviderSetProxyConfiguration | |
| 14 | ProxyHelperProviderSetProxyCredentials | |
| 15 | ProxyHelperProviderUnregisterEventNotification |
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 | ; | |
| 6 | LIBRARY "IcfUpgd.dll" | |
| 7 | EXPORTS | |
| 8 | MigrateSettingsW |
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 | ; | |
| 6 | LIBRARY "IdnDl.dll" | |
| 7 | EXPORTS | |
| 8 | DownlevelGetLocaleScripts | |
| 9 | DownlevelGetStringScripts | |
| 10 | DownlevelVerifyScripts |
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 | ; | |
| 6 | LIBRARY "IEADVPACK.dll" | |
| 7 | EXPORTS | |
| 8 | DelNodeRunDLL32 | |
| 9 | DelNodeRunDLL32A | |
| 10 | DoInfInstall | |
| 11 | DoInfInstallA | |
| 12 | DoInfInstallW | |
| 13 | FileSaveRestore | |
| 14 | FileSaveRestoreA | |
| 15 | LaunchINFSectionA | |
| 16 | LaunchINFSectionEx | |
| 17 | LaunchINFSectionExA | |
| 18 | RegisterOCX | |
| 19 | RegisterOCXW | |
| 20 | AddDelBackupEntry | |
| 21 | AddDelBackupEntryA | |
| 22 | AddDelBackupEntryW | |
| 23 | AdvInstallFile | |
| 24 | AdvInstallFileA | |
| 25 | AdvInstallFileW | |
| 26 | CloseINFEngine | |
| 27 | DelNode | |
| 28 | DelNodeA | |
| 29 | DelNodeRunDLL32W | |
| 30 | DelNodeW | |
| 31 | ExecuteCab | |
| 32 | ExecuteCabA | |
| 33 | ExecuteCabW | |
| 34 | ExtractFiles | |
| 35 | ExtractFilesA | |
| 36 | ExtractFilesW | |
| 37 | FileSaveMarkNotExist | |
| 38 | FileSaveMarkNotExistA | |
| 39 | FileSaveMarkNotExistW | |
| 40 | FileSaveRestoreOnINF | |
| 41 | FileSaveRestoreOnINFA | |
| 42 | FileSaveRestoreOnINFW | |
| 43 | FileSaveRestoreW | |
| 44 | GetVersionFromFile | |
| 45 | GetVersionFromFileA | |
| 46 | GetVersionFromFileEx | |
| 47 | GetVersionFromFileExA | |
| 48 | GetVersionFromFileExW | |
| 49 | GetVersionFromFileW | |
| 50 | IsNTAdmin | |
| 51 | LaunchINFSection | |
| 52 | LaunchINFSectionExW | |
| 53 | LaunchINFSectionW | |
| 54 | NeedReboot | |
| 55 | NeedRebootInit | |
| 56 | OpenINFEngine | |
| 57 | OpenINFEngineA | |
| 58 | OpenINFEngineW | |
| 59 | RebootCheckOnInstall | |
| 60 | RebootCheckOnInstallA | |
| 61 | RebootCheckOnInstallW | |
| 62 | RegInstall | |
| 63 | RegInstallA | |
| 64 | RegInstallW | |
| 65 | RegRestoreAll | |
| 66 | RegRestoreAllA | |
| 67 | RegRestoreAllW | |
| 68 | RegSaveRestore | |
| 69 | RegSaveRestoreA | |
| 70 | RegSaveRestoreOnINF | |
| 71 | RegSaveRestoreOnINFA | |
| 72 | RegSaveRestoreOnINFW | |
| 73 | RegSaveRestoreW | |
| 74 | RunSetupCommand | |
| 75 | RunSetupCommandA | |
| 76 | RunSetupCommandW | |
| 77 | SetPerUserSecValues | |
| 78 | SetPerUserSecValuesA | |
| 79 | SetPerUserSecValuesW | |
| 80 | TranslateInfString | |
| 81 | TranslateInfStringA | |
| 82 | TranslateInfStringEx | |
| 83 | TranslateInfStringExA | |
| 84 | TranslateInfStringExW | |
| 85 | TranslateInfStringW | |
| 86 | UserInstStubWrapper | |
| 87 | UserInstStubWrapperA | |
| 88 | UserInstStubWrapperW | |
| 89 | UserUnInstStubWrapper | |
| 90 | UserUnInstStubWrapperA | |
| 91 | UserUnInstStubWrapperW |
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 | ; | |
| 6 | LIBRARY "iedkcs32.dll" | |
| 7 | EXPORTS | |
| 8 | CloseRASConnections | |
| 9 | ProcessGroupPolicyForActivities | |
| 10 | ProcessGroupPolicyForActivitiesEx | |
| 11 | ProcessGroupPolicyForZoneMap | |
| 12 | BrandCleanInstallStubs | |
| 13 | BrandICW | |
| 14 | BrandICW2 | |
| 15 | BrandIE4 | |
| 16 | BrandIEActiveSetup | |
| 17 | BrandInternetExplorer | |
| 18 | BrandIntra | |
| 19 | BrandMe | |
| 20 | Clear | |
| 21 | InternetInitializeAutoProxyDll |
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 | ; | |
| 6 | LIBRARY "IEFRAME.dll" | |
| 7 | EXPORTS | |
| 8 | ord_91 @91 | |
| 9 | ord_92 @92 | |
| 10 | ord_93 @93 | |
| 11 | ord_94 @94 | |
| 12 | ord_95 @95 | |
| 13 | CreateExtensionGuidEnumerator | |
| 14 | ExportCookieFileByProcessW | |
| 15 | IECreateDirectory | |
| 16 | IECreateFile | |
| 17 | IEDeleteFile | |
| 18 | ord_101 @101 | |
| 19 | ord_102 @102 | |
| 20 | ord_103 @103 | |
| 21 | IEFindFirstFile | |
| 22 | ord_105 @105 | |
| 23 | IEGetFileAttributesEx | |
| 24 | IEInPrivateFilteringEnabled | |
| 25 | IEIsInPrivateBrowsing | |
| 26 | IELaunchManageAddOnsUI | |
| 27 | IEMoveFileEx | |
| 28 | IERemoveDirectory | |
| 29 | IETrackingProtectionEnabled | |
| 30 | ImportCookieFileByProcessW | |
| 31 | SetQueryNetSessionCount | |
| 32 | AddUrlToFavorites | |
| 33 | CORLockDownProvider | |
| 34 | DoAddToFavDlg | |
| 35 | DoAddToFavDlgW | |
| 36 | DoBlobDownload | |
| 37 | DoFileDownload | |
| 38 | DoFileDownloadEx | |
| 39 | DoOrganizeFavDlg | |
| 40 | DoOrganizeFavDlgW | |
| 41 | DoPrivacyDlg | |
| 42 | HlinkFindFrame | |
| 43 | HlinkFrameNavigate | |
| 44 | HlinkFrameNavigateNHL | |
| 45 | IEAssociateThreadWithTab | |
| 46 | ord_135 @135 | |
| 47 | IECancelSaveFile | |
| 48 | ord_137 @137 | |
| 49 | IEDisassociateThreadWithTab | |
| 50 | IEGetProtectedModeCookie | |
| 51 | IEGetWriteableFolderPath | |
| 52 | ord_141 @141 | |
| 53 | ord_142 @142 | |
| 54 | ord_143 @143 | |
| 55 | IEGetWriteableHKCU | |
| 56 | IEIsProtectedModeProcess | |
| 57 | IEIsProtectedModeURL | |
| 58 | IELaunchURL | |
| 59 | IERefreshElevationPolicy | |
| 60 | IERegCreateKeyEx | |
| 61 | ord_150 @150 | |
| 62 | ord_151 @151 | |
| 63 | ord_152 @152 | |
| 64 | ord_153 @153 | |
| 65 | IERegSetValueEx | |
| 66 | IERegisterWritableRegistryKey | |
| 67 | IERegisterWritableRegistryValue | |
| 68 | IESaveFile | |
| 69 | ord_158 @158 | |
| 70 | ord_159 @159 | |
| 71 | ord_160 @160 | |
| 72 | IESetProtectedModeCookie | |
| 73 | ord_162 @162 | |
| 74 | SHAddSubscribeFavorite | |
| 75 | IESetProtectedModeCookieEx | |
| 76 | ord_165 @165 | |
| 77 | ord_166 @166 | |
| 78 | ord_167 @167 | |
| 79 | ord_168 @168 | |
| 80 | IEShowOpenFileDialog | |
| 81 | ord_170 @170 | |
| 82 | IEShowSaveFileDialog | |
| 83 | ord_172 @172 | |
| 84 | IEUnregisterWritableRegistry | |
| 85 | ImportPrivacySettings | |
| 86 | OpenURL | |
| 87 | SoftwareUpdateMessageBox | |
| 88 | TriggerFileDownload | |
| 89 | URLQualifyA | |
| 90 | URLQualifyW | |
| 91 | ord_199 @199 | |
| 92 | ord_211 @211 | |
| 93 | ord_212 @212 | |
| 94 | ord_218 @218 | |
| 95 | ord_222 @222 | |
| 96 | ord_223 @223 | |
| 97 | ord_224 @224 | |
| 98 | ord_231 @231 | |
| 99 | ord_232 @232 | |
| 100 | ord_233 @233 | |
| 101 | ord_234 @234 | |
| 102 | ord_235 @235 | |
| 103 | ord_236 @236 | |
| 104 | ord_238 @238 | |
| 105 | ord_240 @240 | |
| 106 | ord_241 @241 | |
| 107 | ord_242 @242 | |
| 108 | ord_243 @243 | |
| 109 | ord_244 @244 | |
| 110 | ord_245 @245 | |
| 111 | ord_246 @246 | |
| 112 | ord_247 @247 | |
| 113 | ord_251 @251 | |
| 114 | ord_252 @252 | |
| 115 | ord_253 @253 | |
| 116 | ord_254 @254 | |
| 117 | ord_255 @255 | |
| 118 | ord_256 @256 | |
| 119 | ord_257 @257 | |
| 120 | ord_258 @258 | |
| 121 | ord_259 @259 | |
| 122 | ord_260 @260 | |
| 123 | ord_261 @261 | |
| 124 | ord_262 @262 | |
| 125 | ord_263 @263 | |
| 126 | ord_264 @264 | |
| 127 | ord_265 @265 | |
| 128 | ord_303 @303 | |
| 129 | ord_315 @315 | |
| 130 | ord_316 @316 | |
| 131 | ord_317 @317 | |
| 132 | ord_318 @318 | |
| 133 | ord_319 @319 | |
| 134 | ord_320 @320 | |
| 135 | ord_321 @321 | |
| 136 | ord_322 @322 | |
| 137 | ord_324 @324 | |
| 138 | ord_325 @325 | |
| 139 | ord_326 @326 | |
| 140 | ord_327 @327 | |
| 141 | ord_328 @328 | |
| 142 | ord_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 | ; | |
| 6 | LIBRARY "iertutil.dll" | |
| 7 | EXPORTS | |
| 8 | IERT_DelayLoadFailureHook | |
| 9 | CreateStringHashN | |
| 10 | GetIDNSettingsForIE | |
| 11 | IEGetFrameUtilExports | |
| 12 | IEGetProcessModule | |
| 13 | IEGetTabWindowExports | |
| 14 | IUriBuilderInternalCreateDomain | |
| 15 | ord_16 @16 | |
| 16 | ord_17 @17 | |
| 17 | ord_18 @18 | |
| 18 | ord_19 @19 | |
| 19 | ord_20 @20 | |
| 20 | ord_21 @21 | |
| 21 | ResetIDNLanguageData | |
| 22 | ResetIEExtensibility | |
| 23 | ord_24 @24 | |
| 24 | ord_25 @25 | |
| 25 | ord_26 @26 | |
| 26 | ResetIERegistrySettings | |
| 27 | ord_28 @28 | |
| 28 | ord_29 @29 | |
| 29 | ord_30 @30 | |
| 30 | ord_31 @31 | |
| 31 | ord_32 @32 | |
| 32 | ord_33 @33 | |
| 33 | ord_34 @34 | |
| 34 | ord_35 @35 | |
| 35 | ord_36 @36 | |
| 36 | ord_37 @37 | |
| 37 | ord_38 @38 | |
| 38 | ord_39 @39 | |
| 39 | ord_40 @40 | |
| 40 | ord_41 @41 | |
| 41 | ord_42 @42 | |
| 42 | ord_43 @43 | |
| 43 | ord_44 @44 | |
| 44 | ord_45 @45 | |
| 45 | ord_46 @46 | |
| 46 | UriFromHostAndScheme | |
| 47 | ord_48 @48 | |
| 48 | ord_49 @49 | |
| 49 | ord_50 @50 | |
| 50 | ord_51 @51 | |
| 51 | ord_52 @52 | |
| 52 | ord_53 @53 | |
| 53 | ord_54 @54 | |
| 54 | ord_55 @55 | |
| 55 | ord_56 @56 | |
| 56 | ord_57 @57 | |
| 57 | ord_58 @58 | |
| 58 | ord_59 @59 | |
| 59 | ord_60 @60 | |
| 60 | ord_61 @61 | |
| 61 | ord_62 @62 | |
| 62 | ord_63 @63 | |
| 63 | ord_64 @64 | |
| 64 | ord_65 @65 | |
| 65 | ord_66 @66 | |
| 66 | ord_67 @67 | |
| 67 | ord_68 @68 | |
| 68 | ord_69 @69 | |
| 69 | ord_70 @70 | |
| 70 | ord_71 @71 | |
| 71 | ord_72 @72 | |
| 72 | ord_73 @73 | |
| 73 | ord_74 @74 | |
| 74 | ord_75 @75 | |
| 75 | ord_76 @76 | |
| 76 | ord_77 @77 | |
| 77 | ord_78 @78 | |
| 78 | ord_79 @79 | |
| 79 | ord_80 @80 | |
| 80 | ord_81 @81 | |
| 81 | ord_82 @82 | |
| 82 | ord_83 @83 | |
| 83 | ord_84 @84 | |
| 84 | ord_85 @85 | |
| 85 | ord_86 @86 | |
| 86 | ord_87 @87 | |
| 87 | ord_88 @88 | |
| 88 | ord_89 @89 | |
| 89 | ord_90 @90 | |
| 90 | ord_91 @91 | |
| 91 | ord_92 @92 | |
| 92 | ord_93 @93 | |
| 93 | ord_94 @94 | |
| 94 | ord_95 @95 | |
| 95 | ord_96 @96 | |
| 96 | ord_97 @97 | |
| 97 | ord_98 @98 | |
| 98 | ord_99 @99 | |
| 99 | ord_100 @100 | |
| 100 | ord_101 @101 | |
| 101 | CreateIUriBuilder | |
| 102 | CreateUri | |
| 103 | CreateUriFromMultiByteString | |
| 104 | CreateUriPriv | |
| 105 | CreateUriWithFragment | |
| 106 | ord_110 @110 | |
| 107 | ord_111 @111 | |
| 108 | ord_112 @112 | |
| 109 | FastMimeGetFileExtension | |
| 110 | FastMimeGetIsMimeFilterEnabled | |
| 111 | FastMimeLookupKnownType | |
| 112 | FastMimeSetIsMimeFilterEnabled | |
| 113 | GetIUriPriv | |
| 114 | GetIUriPriv2 | |
| 115 | GetPortFromUrlScheme | |
| 116 | GetPropertyFromName | |
| 117 | GetPropertyName | |
| 118 | IEDllLoader | |
| 119 | ord_123 @123 | |
| 120 | ord_124 @124 | |
| 121 | ord_125 @125 | |
| 122 | ord_126 @126 | |
| 123 | ord_127 @127 | |
| 124 | ord_128 @128 | |
| 125 | ord_129 @129 | |
| 126 | ord_130 @130 | |
| 127 | ord_131 @131 | |
| 128 | ord_132 @132 | |
| 129 | ord_133 @133 | |
| 130 | ord_134 @134 | |
| 131 | ord_135 @135 | |
| 132 | ord_136 @136 | |
| 133 | ord_137 @137 | |
| 134 | ord_138 @138 | |
| 135 | ord_139 @139 | |
| 136 | ord_140 @140 | |
| 137 | ord_141 @141 | |
| 138 | ord_142 @142 | |
| 139 | ord_143 @143 | |
| 140 | ImpersonateUser | |
| 141 | IntlPercentEncodeNormalize | |
| 142 | IsDWORDProperty | |
| 143 | IsStringProperty | |
| 144 | PrivateCoInternetCanonicalizeIUri | |
| 145 | PrivateCoInternetCombineIUri | |
| 146 | ord_150 @150 | |
| 147 | ord_151 @151 | |
| 148 | ord_152 @152 | |
| 149 | ord_153 @153 | |
| 150 | ord_154 @154 | |
| 151 | ord_155 @155 | |
| 152 | ord_156 @156 | |
| 153 | ord_157 @157 | |
| 154 | ord_158 @158 | |
| 155 | ord_159 @159 | |
| 156 | ord_160 @160 | |
| 157 | ord_161 @161 | |
| 158 | ord_162 @162 | |
| 159 | ord_163 @163 | |
| 160 | ord_164 @164 | |
| 161 | ord_165 @165 | |
| 162 | ord_166 @166 | |
| 163 | ord_167 @167 | |
| 164 | ord_168 @168 | |
| 165 | ord_169 @169 | |
| 166 | ord_170 @170 | |
| 167 | ord_171 @171 | |
| 168 | ord_172 @172 | |
| 169 | ord_173 @173 | |
| 170 | ord_174 @174 | |
| 171 | ord_175 @175 | |
| 172 | ord_176 @176 | |
| 173 | ord_177 @177 | |
| 174 | PrivateCoInternetParseIUri | |
| 175 | RevertImpersonate | |
| 176 | ord_200 @200 | |
| 177 | ord_201 @201 | |
| 178 | ord_202 @202 | |
| 179 | ord_203 @203 | |
| 180 | ord_204 @204 | |
| 181 | ord_205 @205 | |
| 182 | ord_206 @206 | |
| 183 | ord_207 @207 | |
| 184 | ord_208 @208 | |
| 185 | ord_209 @209 | |
| 186 | ord_210 @210 | |
| 187 | ord_211 @211 | |
| 188 | ord_220 @220 | |
| 189 | ord_221 @221 | |
| 190 | ord_222 @222 | |
| 191 | ord_223 @223 | |
| 192 | ord_224 @224 | |
| 193 | ord_225 @225 | |
| 194 | ord_230 @230 | |
| 195 | ord_231 @231 | |
| 196 | ord_232 @232 | |
| 197 | ord_280 @280 | |
| 198 | ord_281 @281 | |
| 199 | ord_282 @282 | |
| 200 | ord_300 @300 | |
| 201 | ord_301 @301 | |
| 202 | ord_302 @302 | |
| 203 | ord_303 @303 | |
| 204 | ord_311 @311 | |
| 205 | ord_312 @312 | |
| 206 | ord_314 @314 | |
| 207 | ord_325 @325 | |
| 208 | ord_326 @326 | |
| 209 | ord_327 @327 | |
| 210 | ord_328 @328 | |
| 211 | ord_329 @329 | |
| 212 | ord_330 @330 | |
| 213 | ord_331 @331 | |
| 214 | ord_332 @332 | |
| 215 | ord_334 @334 | |
| 216 | ord_335 @335 | |
| 217 | ord_336 @336 | |
| 218 | ord_337 @337 | |
| 219 | ord_338 @338 | |
| 220 | ord_340 @340 | |
| 221 | ord_341 @341 | |
| 222 | ord_342 @342 | |
| 223 | ord_343 @343 | |
| 224 | ord_345 @345 | |
| 225 | ord_346 @346 | |
| 226 | ord_347 @347 | |
| 227 | ord_350 @350 | |
| 228 | ord_351 @351 | |
| 229 | ord_352 @352 | |
| 230 | ord_353 @353 | |
| 231 | ord_354 @354 | |
| 232 | ord_355 @355 | |
| 233 | ord_356 @356 | |
| 234 | ord_357 @357 | |
| 235 | ord_358 @358 | |
| 236 | ord_359 @359 | |
| 237 | ord_364 @364 | |
| 238 | ord_365 @365 | |
| 239 | ord_366 @366 | |
| 240 | ord_367 @367 | |
| 241 | ord_368 @368 | |
| 242 | ord_369 @369 | |
| 243 | ord_370 @370 | |
| 244 | ord_371 @371 | |
| 245 | ord_372 @372 | |
| 246 | ord_375 @375 | |
| 247 | ord_376 @376 | |
| 248 | ord_377 @377 | |
| 249 | ord_378 @378 | |
| 250 | ord_379 @379 | |
| 251 | ord_380 @380 | |
| 252 | ord_381 @381 | |
| 253 | ord_382 @382 | |
| 254 | ord_384 @384 | |
| 255 | ord_385 @385 | |
| 256 | ord_386 @386 | |
| 257 | ord_387 @387 | |
| 258 | ord_388 @388 | |
| 259 | ord_389 @389 | |
| 260 | ord_390 @390 | |
| 261 | ord_391 @391 | |
| 262 | ord_392 @392 | |
| 263 | ord_393 @393 | |
| 264 | LCIECalculatePackedStringSize | |
| 265 | LCIEPackString | |
| 266 | LCIEUnpackString | |
| 267 | ord_397 @397 | |
| 268 | ord_398 @398 | |
| 269 | ord_399 @399 | |
| 270 | ord_400 @400 | |
| 271 | ord_401 @401 | |
| 272 | ord_402 @402 | |
| 273 | ord_403 @403 | |
| 274 | ord_404 @404 | |
| 275 | ord_405 @405 | |
| 276 | ord_406 @406 | |
| 277 | ord_410 @410 | |
| 278 | ord_411 @411 | |
| 279 | ord_412 @412 | |
| 280 | ord_413 @413 | |
| 281 | ord_414 @414 | |
| 282 | ord_415 @415 | |
| 283 | ord_416 @416 | |
| 284 | ord_417 @417 | |
| 285 | ord_420 @420 | |
| 286 | ord_421 @421 | |
| 287 | ord_422 @422 | |
| 288 | ord_423 @423 | |
| 289 | ord_424 @424 | |
| 290 | ord_425 @425 | |
| 291 | ord_430 @430 | |
| 292 | ord_431 @431 | |
| 293 | ord_432 @432 | |
| 294 | ord_433 @433 | |
| 295 | ord_434 @434 | |
| 296 | ord_435 @435 | |
| 297 | ord_436 @436 | |
| 298 | ord_437 @437 | |
| 299 | ord_438 @438 | |
| 300 | ord_440 @440 | |
| 301 | ord_441 @441 | |
| 302 | ord_442 @442 | |
| 303 | ord_443 @443 | |
| 304 | ord_444 @444 | |
| 305 | ord_445 @445 | |
| 306 | ord_450 @450 | |
| 307 | ord_451 @451 | |
| 308 | ord_452 @452 | |
| 309 | ord_453 @453 | |
| 310 | ord_454 @454 | |
| 311 | ord_455 @455 | |
| 312 | ord_456 @456 | |
| 313 | ord_457 @457 | |
| 314 | ord_458 @458 | |
| 315 | ord_459 @459 | |
| 316 | ord_460 @460 | |
| 317 | ord_461 @461 | |
| 318 | ord_462 @462 | |
| 319 | ord_463 @463 | |
| 320 | ord_464 @464 | |
| 321 | ord_465 @465 | |
| 322 | ord_466 @466 | |
| 323 | ord_467 @467 | |
| 324 | ord_470 @470 | |
| 325 | ord_471 @471 | |
| 326 | ord_472 @472 | |
| 327 | ord_473 @473 | |
| 328 | ord_474 @474 | |
| 329 | ord_475 @475 | |
| 330 | ord_476 @476 | |
| 331 | ord_477 @477 | |
| 332 | ord_478 @478 | |
| 333 | ord_480 @480 | |
| 334 | ord_481 @481 | |
| 335 | ord_482 @482 | |
| 336 | ord_500 @500 | |
| 337 | ord_501 @501 | |
| 338 | ord_502 @502 | |
| 339 | ord_503 @503 | |
| 340 | ord_504 @504 | |
| 341 | ord_505 @505 | |
| 342 | ord_506 @506 | |
| 343 | ord_507 @507 | |
| 344 | ord_508 @508 | |
| 345 | ord_509 @509 | |
| 346 | ord_510 @510 | |
| 347 | ord_511 @511 | |
| 348 | ord_512 @512 | |
| 349 | ord_514 @514 | |
| 350 | ord_515 @515 | |
| 351 | ord_516 @516 | |
| 352 | ord_517 @517 | |
| 353 | ord_518 @518 | |
| 354 | ord_519 @519 | |
| 355 | ord_520 @520 | |
| 356 | ord_521 @521 | |
| 357 | ord_525 @525 | |
| 358 | ord_526 @526 | |
| 359 | ord_527 @527 | |
| 360 | ord_528 @528 | |
| 361 | ord_529 @529 | |
| 362 | ord_530 @530 | |
| 363 | ord_531 @531 | |
| 364 | ord_533 @533 | |
| 365 | ord_534 @534 | |
| 366 | ord_535 @535 | |
| 367 | ord_536 @536 | |
| 368 | ord_537 @537 | |
| 369 | ord_538 @538 | |
| 370 | ord_539 @539 | |
| 371 | ord_540 @540 | |
| 372 | ord_541 @541 | |
| 373 | ord_550 @550 | |
| 374 | ord_551 @551 | |
| 375 | ord_552 @552 | |
| 376 | ord_553 @553 | |
| 377 | ord_554 @554 | |
| 378 | ord_555 @555 | |
| 379 | ord_556 @556 | |
| 380 | ord_557 @557 | |
| 381 | ord_558 @558 | |
| 382 | ord_559 @559 | |
| 383 | ord_560 @560 | |
| 384 | ord_561 @561 | |
| 385 | ord_562 @562 | |
| 386 | ord_563 @563 | |
| 387 | ord_564 @564 | |
| 388 | ord_565 @565 | |
| 389 | ord_566 @566 | |
| 390 | ord_567 @567 | |
| 391 | ord_568 @568 | |
| 392 | ord_569 @569 | |
| 393 | ord_570 @570 | |
| 394 | ord_574 @574 | |
| 395 | ord_575 @575 | |
| 396 | ord_576 @576 | |
| 397 | ord_577 @577 | |
| 398 | ord_578 @578 | |
| 399 | ord_579 @579 | |
| 400 | ord_580 @580 | |
| 401 | ord_581 @581 | |
| 402 | ord_582 @582 | |
| 403 | ord_583 @583 | |
| 404 | ord_584 @584 | |
| 405 | ord_590 @590 | |
| 406 | ord_591 @591 | |
| 407 | ord_592 @592 | |
| 408 | ord_593 @593 | |
| 409 | ord_594 @594 | |
| 410 | ord_600 @600 | |
| 411 | ord_601 @601 | |
| 412 | ord_602 @602 | |
| 413 | ord_603 @603 | |
| 414 | ord_604 @604 | |
| 415 | ord_605 @605 | |
| 416 | ord_606 @606 | |
| 417 | ord_607 @607 | |
| 418 | ord_608 @608 | |
| 419 | ord_609 @609 | |
| 420 | ord_650 @650 | |
| 421 | ord_651 @651 | |
| 422 | ord_652 @652 | |
| 423 | ord_653 @653 | |
| 424 | ord_654 @654 | |
| 425 | ord_655 @655 | |
| 426 | ord_656 @656 | |
| 427 | ord_657 @657 | |
| 428 | ord_658 @658 | |
| 429 | ord_659 @659 | |
| 430 | ord_660 @660 | |
| 431 | ord_661 @661 | |
| 432 | ord_662 @662 | |
| 433 | ord_663 @663 | |
| 434 | ord_664 @664 | |
| 435 | ord_665 @665 | |
| 436 | ord_666 @666 | |
| 437 | ord_667 @667 | |
| 438 | ord_668 @668 | |
| 439 | ord_669 @669 | |
| 440 | ord_670 @670 | |
| 441 | ord_671 @671 | |
| 442 | ord_672 @672 | |
| 443 | ord_673 @673 | |
| 444 | ord_674 @674 | |
| 445 | ord_675 @675 | |
| 446 | ord_676 @676 | |
| 447 | ord_677 @677 | |
| 448 | ord_678 @678 | |
| 449 | ord_679 @679 | |
| 450 | ord_680 @680 | |
| 451 | ord_681 @681 | |
| 452 | ord_682 @682 | |
| 453 | ord_683 @683 | |
| 454 | ord_684 @684 | |
| 455 | ord_685 @685 | |
| 456 | ord_686 @686 | |
| 457 | ord_687 @687 | |
| 458 | ord_688 @688 | |
| 459 | ord_689 @689 | |
| 460 | ord_700 @700 | |
| 461 | ord_701 @701 | |
| 462 | ord_702 @702 | |
| 463 | ord_703 @703 | |
| 464 | ord_705 @705 | |
| 465 | ord_706 @706 | |
| 466 | ord_707 @707 | |
| 467 | ord_750 @750 | |
| 468 | ord_751 @751 | |
| 469 | ord_752 @752 | |
| 470 | ord_753 @753 | |
| 471 | ord_754 @754 | |
| 472 | ord_763 @763 | |
| 473 | ord_764 @764 | |
| 474 | ord_765 @765 | |
| 475 | ord_771 @771 | |
| 476 | ord_772 @772 | |
| 477 | ord_774 @774 | |
| 478 | ord_775 @775 | |
| 479 | ord_776 @776 | |
| 480 | ord_779 @779 | |
| 481 | ord_780 @780 | |
| 482 | ord_781 @781 | |
| 483 | ord_782 @782 | |
| 484 | ord_783 @783 | |
| 485 | ord_790 @790 | |
| 486 | ord_791 @791 | |
| 487 | ord_792 @792 | |
| 488 | ord_793 @793 | |
| 489 | ord_794 @794 | |
| 490 | ord_795 @795 | |
| 491 | ord_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 | ; | |
| 6 | LIBRARY "iesetup.dll" | |
| 7 | EXPORTS | |
| 8 | IEApplyCurrentHardening | |
| 9 | IEHardenAdmin | |
| 10 | IEHardenAdminNow | |
| 11 | IEHardenLMSettings | |
| 12 | IEHardenMachineNow | |
| 13 | IEHardenUser | |
| 14 | IEShowHardeningDialog |
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 | ; | |
| 6 | LIBRARY "iesysprep.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_Cleanup_IE | |
| 9 | Sysprep_Generalize_IE | |
| 10 | Sysprep_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 | ; | |
| 6 | LIBRARY "IEUI.dll" | |
| 7 | EXPORTS | |
| 8 | DUserCastHandle | |
| 9 | DUserDeleteGadget | |
| 10 | GetStdColorBrushF | |
| 11 | GetStdColorF | |
| 12 | GetStdColorPenF | |
| 13 | UtilDrawOutlineRect | |
| 14 | AddGadgetMessageHandler | |
| 15 | AddLayeredRef | |
| 16 | AdjustClipInsideRef | |
| 17 | AttachWndProcA | |
| 18 | AttachWndProcW | |
| 19 | AutoTrace | |
| 20 | BeginHideInputPaneAnimation | |
| 21 | BeginShowInputPaneAnimation | |
| 22 | BuildAnimation | |
| 23 | BuildDropTarget | |
| 24 | BuildInterpolation | |
| 25 | CacheDWriteRenderTarget | |
| 26 | ChangeCurrentAnimationScenario | |
| 27 | ClearPushedOpacitiesFromGadgetTree | |
| 28 | ClearTopmostVisual | |
| 29 | CreateAction | |
| 30 | CreateGadget | |
| 31 | CustomGadgetHitTestQuery | |
| 32 | DUserBuildGadget | |
| 33 | DUserCastClass | |
| 34 | DUserCastDirect | |
| 35 | DUserFindClass | |
| 36 | DUserFlushDeferredMessages | |
| 37 | DUserFlushMessages | |
| 38 | DUserGetAlphaPRID | |
| 39 | DUserGetGutsData | |
| 40 | DUserGetRectPRID | |
| 41 | DUserGetRotatePRID | |
| 42 | DUserGetScalePRID | |
| 43 | DUserInstanceOf | |
| 44 | DUserPostEvent | |
| 45 | DUserPostMethod | |
| 46 | DUserRegisterGuts | |
| 47 | DUserRegisterStub | |
| 48 | DUserRegisterSuper | |
| 49 | DUserSendEvent | |
| 50 | DUserSendMethod | |
| 51 | DUserStopAnimation | |
| 52 | DUserStopPVLAnimation | |
| 53 | DeleteHandle | |
| 54 | DestroyPendingDCVisuals | |
| 55 | DetachGadgetVisuals | |
| 56 | DetachWndProc | |
| 57 | DisableContainerHwnd | |
| 58 | DrawGadgetTree | |
| 59 | EndInputPaneAnimation | |
| 60 | EnsureAnimationsEnabled | |
| 61 | EnsureGadgetTransInitialized | |
| 62 | EnumGadgets | |
| 63 | FindGadgetFromPoint | |
| 64 | FindGadgetMessages | |
| 65 | FindGadgetTargetingInfo | |
| 66 | FindStdColor | |
| 67 | FireGadgetMessages | |
| 68 | ForwardGadgetMessage | |
| 69 | GadgetTransCompositionChanged | |
| 70 | GadgetTransSettingChanged | |
| 71 | GetActionTimeslice | |
| 72 | GetCachedDWriteRenderTarget | |
| 73 | GetDUserModule | |
| 74 | GetDebug | |
| 75 | GetFinalAnimatingPosition | |
| 76 | GetGadget | |
| 77 | GetGadgetAnimation | |
| 78 | GetGadgetBitmap | |
| 79 | GetGadgetBufferInfo | |
| 80 | GetGadgetCenterPoint | |
| 81 | GetGadgetFlags | |
| 82 | GetGadgetFocus | |
| 83 | GetGadgetLayerInfo | |
| 84 | GetGadgetMessageFilter | |
| 85 | GetGadgetProperty | |
| 86 | GetGadgetRect | |
| 87 | GetGadgetRgn | |
| 88 | GetGadgetRootInfo | |
| 89 | GetGadgetRotation | |
| 90 | GetGadgetScale | |
| 91 | GetGadgetSize | |
| 92 | GetGadgetStyle | |
| 93 | GetGadgetTicket | |
| 94 | GetGadgetVisual | |
| 95 | GetMessageExA | |
| 96 | GetMessageExW | |
| 97 | GetStdColorBrushI | |
| 98 | GetStdColorI | |
| 99 | GetStdColorName | |
| 100 | GetStdColorPenI | |
| 101 | GetStdPalette | |
| 102 | InitGadgetComponent | |
| 103 | InitGadgets | |
| 104 | InvalidateGadget | |
| 105 | InvalidateLayeredDescendants | |
| 106 | IsGadgetParentChainStyle | |
| 107 | IsInsideContext | |
| 108 | IsStartDelete | |
| 109 | LookupGadgetTicket | |
| 110 | MapGadgetPoints | |
| 111 | PeekMessageExA | |
| 112 | PeekMessageExW | |
| 113 | RegisterGadgetMessage | |
| 114 | RegisterGadgetMessageString | |
| 115 | RegisterGadgetProperty | |
| 116 | ReleaseDetachedObjects | |
| 117 | ReleaseLayeredRef | |
| 118 | ReleaseMouseCapture | |
| 119 | RemoveClippingImmunityFromVisual | |
| 120 | RemoveGadgetMessageHandler | |
| 121 | RemoveGadgetProperty | |
| 122 | ResetDUserDevice | |
| 123 | ScheduleGadgetTransitions | |
| 124 | SetActionTimeslice | |
| 125 | SetAtlasingHints | |
| 126 | SetGadgetBufferInfo | |
| 127 | SetGadgetCenterPoint | |
| 128 | SetGadgetFillF | |
| 129 | SetGadgetFillI | |
| 130 | SetGadgetFlags | |
| 131 | SetGadgetFocus | |
| 132 | SetGadgetFocusEx | |
| 133 | SetGadgetLayerInfo | |
| 134 | SetGadgetMessageFilter | |
| 135 | SetGadgetOrder | |
| 136 | SetGadgetParent | |
| 137 | SetGadgetProperty | |
| 138 | SetGadgetRect | |
| 139 | SetGadgetRootInfo | |
| 140 | SetGadgetRotation | |
| 141 | SetGadgetScale | |
| 142 | SetGadgetStyle | |
| 143 | SetHardwareDeviceUsage | |
| 144 | SetMinimumDCompVersion | |
| 145 | SetRestoreCachedLayeredRefFlag | |
| 146 | SetTransitionVisualProperties | |
| 147 | SetWindowResizeFlag | |
| 148 | UnregisterGadgetMessage | |
| 149 | UnregisterGadgetMessageString | |
| 150 | UnregisterGadgetProperty | |
| 151 | UtilBuildFont | |
| 152 | UtilDrawBlendRect | |
| 153 | UtilGetColor | |
| 154 | UtilSetBackground | |
| 155 | WaitMessageEx |
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 | ; | |
| 6 | LIBRARY "igdDiag.DLL" | |
| 7 | EXPORTS | |
| 8 | DetectNAT |
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 | ; | |
| 6 | LIBRARY "ikeext.dll" | |
| 7 | EXPORTS | |
| 8 | IkeServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "iphlpsvc.dll" | |
| 7 | EXPORTS | |
| 8 | IphlpsvcSysprepGeneralize | |
| 9 | ServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "IPSECSVC.DLL" | |
| 7 | EXPORTS | |
| 8 | SpdServiceMain |
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 | ; | |
| 6 | LIBRARY "iuilp.dll" | |
| 7 | EXPORTS | |
| 8 | GetDefaultLauncherLayout | |
| 9 | GetDefaultAppsList | |
| 10 | GetLayoutPolicyCheckerInstance | |
| 11 | GetLayoutPolicy | |
| 12 | CloseLayoutPolicyCheckerInstance | |
| 13 | GetAllDefaultApps | |
| 14 | GetCategoryForAppUserModelID | |
| 15 | GetUpgradeHighlightStatusForAppID | |
| 16 | GetWindows8UpgradeReplacementAppID |
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 | ; | |
| 6 | LIBRARY "JSCRIPT9.dll" | |
| 7 | EXPORTS | |
| 8 | JsAddRef | |
| 9 | JsBoolToBoolean | |
| 10 | JsBooleanToBool | |
| 11 | JsCallFunction | |
| 12 | JsCollectGarbage | |
| 13 | JsConstructObject | |
| 14 | JsConvertValueToBoolean | |
| 15 | JsConvertValueToNumber | |
| 16 | JsConvertValueToObject | |
| 17 | JsConvertValueToString | |
| 18 | JsCreateArray | |
| 19 | JsCreateContext | |
| 20 | JsCreateError | |
| 21 | JsCreateExternalObject | |
| 22 | JsCreateExternalType | |
| 23 | JsCreateFunction | |
| 24 | JsCreateObject | |
| 25 | JsCreateRangeError | |
| 26 | JsCreateReferenceError | |
| 27 | JsCreateRuntime | |
| 28 | JsCreateSyntaxError | |
| 29 | JsCreateTypeError | |
| 30 | JsCreateTypedExternalObject | |
| 31 | JsCreateURIError | |
| 32 | JsDefineProperty | |
| 33 | JsDeleteIndexedProperty | |
| 34 | JsDeleteProperty | |
| 35 | JsDisableRuntimeExecution | |
| 36 | JsDisposeRuntime | |
| 37 | JsDoubleToNumber | |
| 38 | JsEnableRuntimeExecution | |
| 39 | JsEnumerateHeap | |
| 40 | JsEquals | |
| 41 | JsGetAndClearException | |
| 42 | JsGetCurrentContext | |
| 43 | JsGetDefaultTypeDescription | |
| 44 | JsGetExtensionAllowed | |
| 45 | JsGetExternalData | |
| 46 | JsGetExternalType | |
| 47 | JsGetFalseValue | |
| 48 | JsGetGlobalObject | |
| 49 | JsGetIndexedProperty | |
| 50 | JsGetNullValue | |
| 51 | JsGetOwnPropertyDescriptor | |
| 52 | JsGetOwnPropertyNames | |
| 53 | JsGetProperty | |
| 54 | JsGetPropertyIdFromName | |
| 55 | JsGetPropertyNameFromId | |
| 56 | JsGetPrototype | |
| 57 | JsGetRuntime | |
| 58 | JsGetRuntimeMemoryLimit | |
| 59 | JsGetRuntimeMemoryUsage | |
| 60 | JsGetStringLength | |
| 61 | JsGetTrueValue | |
| 62 | JsGetUndefinedValue | |
| 63 | JsGetValueType | |
| 64 | JsHasException | |
| 65 | JsHasExternalData | |
| 66 | JsHasIndexedProperty | |
| 67 | JsHasProperty | |
| 68 | JsIdle | |
| 69 | JsIntToNumber | |
| 70 | JsIsEnumeratingHeap | |
| 71 | JsIsRuntimeExecutionDisabled | |
| 72 | JsNumberToDouble | |
| 73 | JsParseScript | |
| 74 | JsParseSerializedScript | |
| 75 | JsPointerToString | |
| 76 | JsPreventExtension | |
| 77 | JsRelease | |
| 78 | JsRunScript | |
| 79 | JsRunSerializedScript | |
| 80 | JsSerializeScript | |
| 81 | JsSetCurrentContext | |
| 82 | JsSetException | |
| 83 | JsSetExternalData | |
| 84 | JsSetIndexedProperty | |
| 85 | JsSetProperty | |
| 86 | JsSetPrototype | |
| 87 | JsSetRuntimeBeforeCollectCallback | |
| 88 | JsSetRuntimeMemoryAllocationCallback | |
| 89 | JsSetRuntimeMemoryLimit | |
| 90 | JsStartDebugging | |
| 91 | JsStartProfiling | |
| 92 | JsStopProfiling | |
| 93 | JsStrictEquals | |
| 94 | JsStringToPointer | |
| 95 | JsValueToVariant | |
| 96 | JsVarAddRef | |
| 97 | JsVarRelease | |
| 98 | JsVarToExtension | |
| 99 | JsVarToScriptDirect | |
| 100 | JsVariantToValue |
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 | ; | |
| 6 | LIBRARY "JSCRIPT9DIAG.dll" | |
| 7 | EXPORTS | |
| 8 | FreeDumpStreams | |
| 9 | GetDumpStreams |
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 | ; | |
| 6 | LIBRARY "KD.dll" | |
| 7 | EXPORTS | |
| 8 | KdD0Transition | |
| 9 | KdD3Transition | |
| 10 | KdDebuggerInitialize0 | |
| 11 | KdDebuggerInitialize1 | |
| 12 | KdReceivePacket | |
| 13 | KdRestore | |
| 14 | KdSave | |
| 15 | KdSendPacket | |
| 16 | KdSetHiberRange |
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 | ; | |
| 6 | LIBRARY "KdsCli.dll" | |
| 7 | EXPORTS | |
| 8 | CreateRootKey | |
| 9 | DeleteAllCachedKeys | |
| 10 | FindAndReadSIDKeyInCache | |
| 11 | FindKeyForOfflineUsage | |
| 12 | FreeRootKey | |
| 13 | FreeRootKeyConfig | |
| 14 | FreeRootKeyMetaDataList | |
| 15 | FreeServerConfig | |
| 16 | GenerateDerivedKey | |
| 17 | GenerateEphemeralKeyPair | |
| 18 | GenerateKDFContext | |
| 19 | GenerateSIDPublicKeyBlob | |
| 20 | GenerateSecretAgreementPrivateKey | |
| 21 | GetAllRootKeys | |
| 22 | GetAllRootKeysMetaData | |
| 23 | GetAndLockCachedRPCBinding | |
| 24 | GetCachedMachineDomainInfo | |
| 25 | GetCurrentIntervalID | |
| 26 | GetCurrentL0ID | |
| 27 | GetCurrentTimeInULL | |
| 28 | GetDCInfo | |
| 29 | GetDefaultServerConfig | |
| 30 | GetFullDCName | |
| 31 | GetIntervalStartTime | |
| 32 | GetKDSSrvConfigPath | |
| 33 | GetKdsKeyCycleDuration | |
| 34 | GetKey | |
| 35 | GetLdapBinding | |
| 36 | GetMRKPath | |
| 37 | GetRootKey | |
| 38 | GetSIDKeyCacheFolder | |
| 39 | GetSIDKeyFileName | |
| 40 | GetServerConfig | |
| 41 | GetUserSidStr | |
| 42 | KdsCreateClientBinding | |
| 43 | KdsGetEpochLength | |
| 44 | KdsGetGmsaPasswordBasedOnKeyId | |
| 45 | KdsGetGmsaPasswordBasedOnTimestamp | |
| 46 | KdsGetKeyStartTime | |
| 47 | SIDKeyProtect | |
| 48 | SIDKeyProvAlloc | |
| 49 | SIDKeyProvFree | |
| 50 | SIDKeyUnprotect | |
| 51 | SetServerConfig | |
| 52 | TestServerConfig | |
| 53 | UnlockRpcCache | |
| 54 | ValidateSrvConfig | |
| 55 | WriteSIDKeyInCache |
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 | ; | |
| 6 | LIBRARY "KDUSB.dll" | |
| 7 | EXPORTS | |
| 8 | KdD0Transition | |
| 9 | KdD3Transition | |
| 10 | KdDebuggerInitialize0 | |
| 11 | KdDebuggerInitialize1 | |
| 12 | KdReceivePacket | |
| 13 | KdRestore | |
| 14 | KdSave | |
| 15 | KdSendPacket | |
| 16 | KdSetHiberRange |
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 | ; | |
| 6 | LIBRARY "KEEPALIVEPROVIDER.DLL" | |
| 7 | EXPORTS | |
| 8 | KAMSS_DeregisterProvider | |
| 9 | KAMSS_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 | ; | |
| 6 | LIBRARY "Kerberos.dll" | |
| 7 | EXPORTS | |
| 8 | SpInitialize | |
| 9 | KerbDomainChangeCallback | |
| 10 | SpLsaModeInitialize | |
| 11 | SpUserModeInitialize | |
| 12 | KerbCreateTokenFromTicket | |
| 13 | KerbIsInitialized | |
| 14 | KerbKdcCallBack | |
| 15 | KerbMakeKdcCall | |
| 16 | Kerberos | |
| 17 | SpInstanceInit |
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 | ; | |
| 6 | LIBRARY "AppCore.dll" | |
| 7 | EXPORTS | |
| 8 | AcquireStateLock | |
| 9 | AppContainerDeriveSidFromMoniker | |
| 10 | AppContainerFreeMemory | |
| 11 | AppContainerLookupDisplayNameMrtReference | |
| 12 | AppContainerLookupMoniker | |
| 13 | AppContainerRegisterSid | |
| 14 | AppContainerUnregisterSid | |
| 15 | AppXFreeMemory | |
| 16 | AppXGetApplicationData | |
| 17 | AppXGetDevelopmentMode | |
| 18 | AppXGetOSMaxVersionTested | |
| 19 | AppXGetOSMinVersion | |
| 20 | AppXGetPackageCapabilities | |
| 21 | AppXGetPackageSid | |
| 22 | AppXGetPackageState | |
| 23 | AppXLookupDisplayName | |
| 24 | AppXLookupMoniker | |
| 25 | AppXSetPackageState | |
| 26 | CheckIfStateChangeNotificationExists | |
| 27 | ClosePackageInfo | |
| 28 | CloseState | |
| 29 | CloseStateAtom | |
| 30 | CloseStateChangeNotification | |
| 31 | CloseStateContainer | |
| 32 | CloseStateLock | |
| 33 | CommitStateAtom | |
| 34 | CreateStateAtom | |
| 35 | CreateStateChangeNotification | |
| 36 | CreateStateContainer | |
| 37 | CreateStateLock | |
| 38 | CreateStateSubcontainer | |
| 39 | DeleteStateAtomValue | |
| 40 | DeleteStateContainer | |
| 41 | DeleteStateContainerValue | |
| 42 | DuplicateStateContainerHandle | |
| 43 | EnumerateStateAtomValues | |
| 44 | EnumerateStateContainerItems | |
| 45 | FindPackagesByPackageFamily | |
| 46 | FormatApplicationUserModelId | |
| 47 | GetAppModelVersion | |
| 48 | GetApplicationUserModelId | |
| 49 | GetCurrentApplicationUserModelId | |
| 50 | GetCurrentPackageApplicationContext | |
| 51 | GetCurrentPackageApplicationResourcesContext | |
| 52 | GetCurrentPackageContext | |
| 53 | GetCurrentPackageFamilyName | |
| 54 | GetCurrentPackageFullName | |
| 55 | GetCurrentPackageId | |
| 56 | GetCurrentPackageInfo | |
| 57 | GetCurrentPackagePath | |
| 58 | GetCurrentPackageResourcesContext | |
| 59 | GetCurrentPackageSecurityContext | |
| 60 | GetHivePath | |
| 61 | GetPackageApplicationContext | |
| 62 | GetPackageApplicationIds | |
| 63 | GetPackageApplicationProperty | |
| 64 | GetPackageApplicationPropertyString | |
| 65 | GetPackageApplicationResourcesContext | |
| 66 | GetPackageContext | |
| 67 | GetPackageFamilyName | |
| 68 | GetPackageFullName | |
| 69 | GetPackageId | |
| 70 | GetPackageInfo | |
| 71 | GetPackageInstallTime | |
| 72 | GetPackageOSMaxVersionTested | |
| 73 | GetPackagePath | |
| 74 | GetPackagePathByFullName | |
| 75 | GetPackageProperty | |
| 76 | GetPackagePropertyString | |
| 77 | GetPackageResourcesContext | |
| 78 | GetPackageResourcesProperty | |
| 79 | GetPackageSecurityContext | |
| 80 | GetPackageSecurityProperty | |
| 81 | GetPackagesByPackageFamily | |
| 82 | GetRoamingLastObservedChangeTime | |
| 83 | GetSerializedAtomBytes | |
| 84 | GetStagedPackageOrigin | |
| 85 | GetStagedPackagePathByFullName | |
| 86 | GetStateContainerDepth | |
| 87 | GetStateFolder | |
| 88 | GetStateRootFolder | |
| 89 | GetStateSettingsFolder | |
| 90 | GetStateVersion | |
| 91 | GetSystemAppDataFolder | |
| 92 | GetSystemAppDataKey | |
| 93 | InvalidateAppModelVersionCache | |
| 94 | OpenPackageInfoByFullName | |
| 95 | OpenState | |
| 96 | OpenStateAtom | |
| 97 | OpenStateExplicit | |
| 98 | OverrideRoamingDataModificationTimesInRange | |
| 99 | PackageFamilyNameFromFullName | |
| 100 | PackageFamilyNameFromId | |
| 101 | PackageFullNameFromId | |
| 102 | PackageIdFromFullName | |
| 103 | PackageNameAndPublisherIdFromFamilyName | |
| 104 | ParseApplicationUserModelId | |
| 105 | PsmActivateApplicationByToken | |
| 106 | PsmAdjustActivationToken | |
| 107 | PsmCreateMatchToken | |
| 108 | PsmQueryBackgroundActivationType | |
| 109 | PsmRegisterApplicationProcess | |
| 110 | PublishStateChangeNotification | |
| 111 | QueryStateAtomValueInfo | |
| 112 | QueryStateContainerItemInfo | |
| 113 | ReadStateAtomValue | |
| 114 | ReadStateContainerValue | |
| 115 | RegisterStateChangeNotification | |
| 116 | RegisterStateLock | |
| 117 | ReleaseStateLock | |
| 118 | ResetState | |
| 119 | SetRoamingLastObservedChangeTime | |
| 120 | SetStateVersion | |
| 121 | SubscribeStateChangeNotification | |
| 122 | UnregisterStateChangeNotification | |
| 123 | UnregisterStateLock | |
| 124 | UnsubscribeStateChangeNotification | |
| 125 | WriteStateAtomValue | |
| 126 | WriteStateContainerValue |
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 | ; | |
| 6 | LIBRARY "KERNELBASE.dll" | |
| 7 | EXPORTS | |
| 8 | PackageSidFromProductId | |
| 9 | AccessCheck | |
| 10 | AccessCheckAndAuditAlarmW | |
| 11 | AccessCheckByType | |
| 12 | AccessCheckByTypeAndAuditAlarmW | |
| 13 | AccessCheckByTypeResultList | |
| 14 | AccessCheckByTypeResultListAndAuditAlarmByHandleW | |
| 15 | AccessCheckByTypeResultListAndAuditAlarmW | |
| 16 | AcquireSRWLockExclusive | |
| 17 | AcquireSRWLockShared | |
| 18 | AcquireStateLock | |
| 19 | ActivateActCtx | |
| 20 | AddAccessAllowedAce | |
| 21 | AddAccessAllowedAceEx | |
| 22 | AddAccessAllowedObjectAce | |
| 23 | AddAccessDeniedAce | |
| 24 | AddAccessDeniedAceEx | |
| 25 | AddAccessDeniedObjectAce | |
| 26 | AddAce | |
| 27 | AddAuditAccessAce | |
| 28 | AddAuditAccessAceEx | |
| 29 | AddAuditAccessObjectAce | |
| 30 | AddConsoleAliasA | |
| 31 | AddConsoleAliasW | |
| 32 | AddDllDirectory | |
| 33 | AddExtensionProgId | |
| 34 | AddMandatoryAce | |
| 35 | AddPackageToFamilyXref | |
| 36 | AddRefActCtx | |
| 37 | AddResourceAttributeAce | |
| 38 | AddSIDToBoundaryDescriptor | |
| 39 | AddScopedPolicyIDAce | |
| 40 | AddVectoredContinueHandler | |
| 41 | AddVectoredExceptionHandler | |
| 42 | AdjustTokenGroups | |
| 43 | AdjustTokenPrivileges | |
| 44 | AllocConsole | |
| 45 | AllocateAndInitializeSid | |
| 46 | AllocateLocallyUniqueId | |
| 47 | AllocateUserPhysicalPages | |
| 48 | AllocateUserPhysicalPagesNuma | |
| 49 | AppContainerDeriveSidFromMoniker | |
| 50 | AppContainerFreeMemory | |
| 51 | AppContainerLookupDisplayNameMrtReference | |
| 52 | AppContainerLookupMoniker | |
| 53 | AppContainerRegisterSid | |
| 54 | AppContainerUnregisterSid | |
| 55 | AppPolicyGetClrCompat | |
| 56 | AppPolicyGetCreateFileAccess | |
| 57 | AppPolicyGetLifecycleManagement | |
| 58 | AppPolicyGetMediaFoundationCodecLoading | |
| 59 | AppPolicyGetProcessTerminationMethod | |
| 60 | AppPolicyGetShowDeveloperDiagnostic | |
| 61 | AppPolicyGetThreadInitializationType | |
| 62 | AppPolicyGetWindowingModel | |
| 63 | AppXFreeMemory | |
| 64 | AppXGetApplicationData | |
| 65 | AppXGetDevelopmentMode | |
| 66 | AppXGetOSMaxVersionTested | |
| 67 | AppXGetOSMinVersion | |
| 68 | AppXGetPackageCapabilities | |
| 69 | AppXGetPackageSid | |
| 70 | AppXGetPackageState | |
| 71 | AppXLookupDisplayName | |
| 72 | AppXLookupMoniker | |
| 73 | AppXPostSuccessExtension | |
| 74 | AppXPreCreationExtension | |
| 75 | AppXReleaseAppXContext | |
| 76 | AppXSetPackageState | |
| 77 | AppXUpdatePackageCapabilities | |
| 78 | ApplicationUserModelIdFromProductId | |
| 79 | AreAllAccessesGranted | |
| 80 | AreAnyAccessesGranted | |
| 81 | AreFileApisANSI | |
| 82 | AreThereVisibleLogoffScriptsInternal | |
| 83 | AreThereVisibleShutdownScriptsInternal | |
| 84 | AttachConsole | |
| 85 | BaseCheckAppcompatCache | |
| 86 | BaseCheckAppcompatCacheEx | |
| 87 | BaseCleanupAppcompatCacheSupport | |
| 88 | BaseDllFreeResourceId | |
| 89 | BaseDllMapResourceIdW | |
| 90 | BaseDumpAppcompatCache | |
| 91 | BaseFlushAppcompatCache | |
| 92 | BaseFormatObjectAttributes | |
| 93 | BaseFreeAppCompatDataForProcess | |
| 94 | BaseGetConsoleReference | |
| 95 | BaseGetNamedObjectDirectory | |
| 96 | BaseInitAppcompatCacheSupport | |
| 97 | BaseIsAppcompatInfrastructureDisabled | |
| 98 | BaseMarkFileForDelete | |
| 99 | BaseReadAppCompatDataForProcess | |
| 100 | BaseUpdateAppcompatCache | |
| 101 | BasepAdjustObjectAttributesForPrivateNamespace | |
| 102 | BasepCopyFileCallback | |
| 103 | BasepCopyFileExW | |
| 104 | BasepNotifyTrackingService | |
| 105 | Beep | |
| 106 | BemCopyReference | |
| 107 | BemCreateContractFrom | |
| 108 | BemCreateReference | |
| 109 | BemFreeContract | |
| 110 | BemFreeReference | |
| 111 | CLOSE_LOCAL_HANDLE_INTERNAL | |
| 112 | CallEnclave | |
| 113 | CallNamedPipeW | |
| 114 | CallbackMayRunLong | |
| 115 | CancelIo | |
| 116 | CancelIoEx | |
| 117 | CancelSynchronousIo | |
| 118 | CancelThreadpoolIo | |
| 119 | CancelWaitableTimer | |
| 120 | CeipIsOptedIn | |
| 121 | ChangeTimerQueueTimer | |
| 122 | CharLowerA | |
| 123 | CharLowerBuffA | |
| 124 | CharLowerBuffW | |
| 125 | CharLowerW | |
| 126 | CharNextA | |
| 127 | CharNextExA | |
| 128 | CharNextW | |
| 129 | CharPrevA | |
| 130 | CharPrevExA | |
| 131 | CharPrevW | |
| 132 | CharUpperA | |
| 133 | CharUpperBuffA | |
| 134 | CharUpperBuffW | |
| 135 | CharUpperW | |
| 136 | CheckAllowDecryptedRemoteDestinationPolicy | |
| 137 | CheckGroupPolicyEnabled | |
| 138 | CheckIfStateChangeNotificationExists | |
| 139 | CheckRemoteDebuggerPresent | |
| 140 | CheckTokenCapability | |
| 141 | CheckTokenMembership | |
| 142 | CheckTokenMembershipEx | |
| 143 | ChrCmpIA | |
| 144 | ChrCmpIW | |
| 145 | ClearCommBreak | |
| 146 | ClearCommError | |
| 147 | CloseHandle | |
| 148 | ClosePackageInfo | |
| 149 | ClosePrivateNamespace | |
| 150 | ClosePseudoConsole | |
| 151 | CloseState | |
| 152 | CloseStateAtom | |
| 153 | CloseStateChangeNotification | |
| 154 | CloseStateContainer | |
| 155 | CloseStateLock | |
| 156 | CloseThreadpool | |
| 157 | CloseThreadpoolCleanupGroup | |
| 158 | CloseThreadpoolCleanupGroupMembers | |
| 159 | CloseThreadpoolIo | |
| 160 | CloseThreadpoolTimer | |
| 161 | CloseThreadpoolWait | |
| 162 | CloseThreadpoolWork | |
| 163 | CommitStateAtom | |
| 164 | CompareFileTime | |
| 165 | CompareObjectHandles | |
| 166 | CompareStringA | |
| 167 | CompareStringEx | |
| 168 | CompareStringOrdinal | |
| 169 | CompareStringW | |
| 170 | ConnectNamedPipe | |
| 171 | ContinueDebugEvent | |
| 172 | ConvertAuxiliaryCounterToPerformanceCounter | |
| 173 | ConvertDefaultLocale | |
| 174 | ConvertFiberToThread | |
| 175 | ConvertPerformanceCounterToAuxiliaryCounter | |
| 176 | ConvertThreadToFiber | |
| 177 | ConvertThreadToFiberEx | |
| 178 | ConvertToAutoInheritPrivateObjectSecurity | |
| 179 | CopyContext | |
| 180 | CopyFile2 | |
| 181 | CopyFileExW | |
| 182 | CopyFileW | |
| 183 | CopySid | |
| 184 | CouldMultiUserAppsBehaviorBePossibleForPackage | |
| 185 | CreateActCtxW | |
| 186 | CreateAppContainerToken | |
| 187 | CreateBoundaryDescriptorW | |
| 188 | CreateConsoleScreenBuffer | |
| 189 | CreateDirectoryA | |
| 190 | CreateDirectoryExW | |
| 191 | CreateDirectoryW | |
| 192 | CreateEnclave | |
| 193 | CreateEventA | |
| 194 | CreateEventExA | |
| 195 | CreateEventExW | |
| 196 | CreateEventW | |
| 197 | CreateFiber | |
| 198 | CreateFiberEx | |
| 199 | CreateFile2 | |
| 200 | CreateFileA | |
| 201 | CreateFileMapping2 | |
| 202 | CreateFileMappingFromApp | |
| 203 | CreateFileMappingNumaW | |
| 204 | CreateFileMappingW | |
| 205 | CreateFileW | |
| 206 | CreateHardLinkA | |
| 207 | CreateHardLinkW | |
| 208 | CreateIoCompletionPort | |
| 209 | CreateMemoryResourceNotification | |
| 210 | CreateMutexA | |
| 211 | CreateMutexExA | |
| 212 | CreateMutexExW | |
| 213 | CreateMutexW | |
| 214 | CreateNamedPipeW | |
| 215 | CreatePipe | |
| 216 | CreatePrivateNamespaceW | |
| 217 | CreatePrivateObjectSecurity | |
| 218 | CreatePrivateObjectSecurityEx | |
| 219 | CreatePrivateObjectSecurityWithMultipleInheritance | |
| 220 | CreateProcessA | |
| 221 | CreateProcessAsUserA | |
| 222 | CreateProcessAsUserW | |
| 223 | CreateProcessInternalA | |
| 224 | CreateProcessInternalW | |
| 225 | CreateProcessW | |
| 226 | CreatePseudoConsole | |
| 227 | CreatePseudoConsoleAsUser | |
| 228 | CreateRemoteThread | |
| 229 | CreateRemoteThreadEx | |
| 230 | CreateRestrictedToken | |
| 231 | CreateSemaphoreExW | |
| 232 | CreateSemaphoreW | |
| 233 | CreateStateAtom | |
| 234 | CreateStateChangeNotification | |
| 235 | CreateStateContainer | |
| 236 | CreateStateLock | |
| 237 | CreateStateSubcontainer | |
| 238 | CreateSymbolicLinkW | |
| 239 | CreateThread | |
| 240 | CreateThreadpool | |
| 241 | CreateThreadpoolCleanupGroup | |
| 242 | CreateThreadpoolIo | |
| 243 | CreateThreadpoolTimer | |
| 244 | CreateThreadpoolWait | |
| 245 | CreateThreadpoolWork | |
| 246 | CreateTimerQueue | |
| 247 | CreateTimerQueueTimer | |
| 248 | CreateWaitableTimerExW | |
| 249 | CreateWaitableTimerW | |
| 250 | CreateWellKnownSid | |
| 251 | CtrlRoutine | |
| 252 | CveEventWrite | |
| 253 | DeactivateActCtx | |
| 254 | DebugActiveProcess | |
| 255 | DebugActiveProcessStop | |
| 256 | DebugBreak | |
| 257 | DecodePointer | |
| 258 | DecodeRemotePointer | |
| 259 | DecodeSystemPointer | |
| 260 | DefineDosDeviceW | |
| 261 | DelayLoadFailureHook | |
| 262 | DelayLoadFailureHookLookup | |
| 263 | DeleteAce | |
| 264 | DeleteBoundaryDescriptor | |
| 265 | DeleteCriticalSection | |
| 266 | DeleteEnclave | |
| 267 | DeleteFiber | |
| 268 | DeleteFileA | |
| 269 | DeleteFileW | |
| 270 | DeleteProcThreadAttributeList | |
| 271 | DeleteStateAtomValue | |
| 272 | DeleteStateContainer | |
| 273 | DeleteStateContainerValue | |
| 274 | DeleteSynchronizationBarrier | |
| 275 | DeleteTimerQueueEx | |
| 276 | DeleteTimerQueueTimer | |
| 277 | DeleteVolumeMountPointW | |
| 278 | DeriveCapabilitySidsFromName | |
| 279 | DestroyPrivateObjectSecurity | |
| 280 | DeviceIoControl | |
| 281 | DisablePredefinedHandleTableInternal | |
| 282 | DisableThreadLibraryCalls | |
| 283 | DisassociateCurrentThreadFromCallback | |
| 284 | DiscardVirtualMemory | |
| 285 | DisconnectNamedPipe | |
| 286 | DnsHostnameToComputerNameExW | |
| 287 | DsBindWithSpnExW | |
| 288 | DsCrackNamesW | |
| 289 | DsFreeDomainControllerInfoW | |
| 290 | DsFreeNameResultW | |
| 291 | DsFreeNgcKey | |
| 292 | DsFreePasswordCredentials | |
| 293 | DsGetDomainControllerInfoW | |
| 294 | DsMakePasswordCredentialsW | |
| 295 | DsReadNgcKeyW | |
| 296 | DsUnBindW | |
| 297 | DsWriteNgcKeyW | |
| 298 | DuplicateHandle | |
| 299 | DuplicateStateContainerHandle | |
| 300 | DuplicateToken | |
| 301 | DuplicateTokenEx | |
| 302 | EmptyWorkingSet | |
| 303 | EncodePointer | |
| 304 | EncodeRemotePointer | |
| 305 | EncodeSystemPointer | |
| 306 | EnterCriticalPolicySectionInternal | |
| 307 | EnterCriticalSection | |
| 308 | EnterSynchronizationBarrier | |
| 309 | EnumCalendarInfoExEx | |
| 310 | EnumCalendarInfoExW | |
| 311 | EnumCalendarInfoW | |
| 312 | EnumDateFormatsExEx | |
| 313 | EnumDateFormatsExW | |
| 314 | EnumDateFormatsW | |
| 315 | EnumDeviceDrivers | |
| 316 | EnumDynamicTimeZoneInformation | |
| 317 | EnumLanguageGroupLocalesW | |
| 318 | EnumPageFilesA | |
| 319 | EnumPageFilesW | |
| 320 | EnumProcessModules | |
| 321 | EnumProcessModulesEx | |
| 322 | EnumProcesses | |
| 323 | EnumResourceLanguagesExA | |
| 324 | EnumResourceLanguagesExW | |
| 325 | EnumResourceNamesExA | |
| 326 | EnumResourceNamesExW | |
| 327 | EnumResourceNamesW | |
| 328 | EnumResourceTypesExA | |
| 329 | EnumResourceTypesExW | |
| 330 | EnumSystemCodePagesW | |
| 331 | EnumSystemFirmwareTables | |
| 332 | EnumSystemGeoID | |
| 333 | EnumSystemGeoNames | |
| 334 | EnumSystemLanguageGroupsW | |
| 335 | EnumSystemLocalesA | |
| 336 | EnumSystemLocalesEx | |
| 337 | EnumSystemLocalesW | |
| 338 | EnumTimeFormatsEx | |
| 339 | EnumTimeFormatsW | |
| 340 | EnumUILanguagesW | |
| 341 | EnumerateExtensionNames | |
| 342 | EnumerateStateAtomValues | |
| 343 | EnumerateStateContainerItems | |
| 344 | EqualDomainSid | |
| 345 | EqualPrefixSid | |
| 346 | EqualSid | |
| 347 | EscapeCommFunction | |
| 348 | EventActivityIdControl | |
| 349 | EventEnabled | |
| 350 | EventProviderEnabled | |
| 351 | EventRegister | |
| 352 | EventSetInformation | |
| 353 | EventUnregister | |
| 354 | EventWrite | |
| 355 | EventWriteEx | |
| 356 | EventWriteString | |
| 357 | EventWriteTransfer | |
| 358 | ExitProcess | |
| 359 | ExitThread | |
| 360 | ExpandEnvironmentStringsA | |
| 361 | ExpandEnvironmentStringsW | |
| 362 | ExpungeConsoleCommandHistoryA | |
| 363 | ExpungeConsoleCommandHistoryW | |
| 364 | ExtensionProgIdExists | |
| 365 | FatalAppExitA | |
| 366 | FatalAppExitW | |
| 367 | FileTimeToLocalFileTime | |
| 368 | FileTimeToSystemTime | |
| 369 | FillConsoleOutputAttribute | |
| 370 | FillConsoleOutputCharacterA | |
| 371 | FillConsoleOutputCharacterW | |
| 372 | FindActCtxSectionGuid | |
| 373 | FindActCtxSectionStringW | |
| 374 | FindClose | |
| 375 | FindCloseChangeNotification | |
| 376 | FindFirstChangeNotificationA | |
| 377 | FindFirstChangeNotificationW | |
| 378 | FindFirstFileA | |
| 379 | FindFirstFileExA | |
| 380 | FindFirstFileExW | |
| 381 | FindFirstFileNameW | |
| 382 | FindFirstFileW | |
| 383 | FindFirstFreeAce | |
| 384 | FindFirstStreamW | |
| 385 | FindFirstVolumeW | |
| 386 | FindNLSString | |
| 387 | FindNLSStringEx | |
| 388 | FindNextChangeNotification | |
| 389 | FindNextFileA | |
| 390 | FindNextFileNameW | |
| 391 | FindNextFileW | |
| 392 | FindNextStreamW | |
| 393 | FindNextVolumeW | |
| 394 | FindPackagesByPackageFamily | |
| 395 | FindResourceExW | |
| 396 | FindResourceW | |
| 397 | FindStringOrdinal | |
| 398 | FindVolumeClose | |
| 399 | FlsAlloc | |
| 400 | FlsFree | |
| 401 | FlsGetValue | |
| 402 | FlsSetValue | |
| 403 | FlushConsoleInputBuffer | |
| 404 | FlushFileBuffers | |
| 405 | FlushInstructionCache | |
| 406 | FlushProcessWriteBuffers | |
| 407 | FlushViewOfFile | |
| 408 | FoldStringW | |
| 409 | ForceSyncFgPolicyInternal | |
| 410 | FormatApplicationUserModelId | |
| 411 | FormatApplicationUserModelIdA | |
| 412 | FormatMessageA | |
| 413 | FormatMessageW | |
| 414 | FreeConsole | |
| 415 | FreeEnvironmentStringsA | |
| 416 | FreeEnvironmentStringsW | |
| 417 | FreeGPOListInternalA | |
| 418 | FreeGPOListInternalW | |
| 419 | FreeLibrary | |
| 420 | FreeLibraryAndExitThread | |
| 421 | FreeLibraryWhenCallbackReturns | |
| 422 | FreeResource | |
| 423 | FreeSid | |
| 424 | FreeUserPhysicalPages | |
| 425 | GenerateConsoleCtrlEvent | |
| 426 | GenerateGPNotificationInternal | |
| 427 | GetACP | |
| 428 | GetAcceptLanguagesA | |
| 429 | GetAcceptLanguagesW | |
| 430 | GetAce | |
| 431 | GetAclInformation | |
| 432 | GetAdjustObjectAttributesForPrivateNamespaceRoutine | |
| 433 | GetAlternatePackageRoots | |
| 434 | GetAppContainerAce | |
| 435 | GetAppContainerNamedObjectPath | |
| 436 | GetAppDataFolder | |
| 437 | GetAppModelVersion | |
| 438 | GetApplicationRecoveryCallback | |
| 439 | GetApplicationRestartSettings | |
| 440 | GetApplicationUserModelId | |
| 441 | GetApplicationUserModelIdFromToken | |
| 442 | GetAppliedGPOListInternalA | |
| 443 | GetAppliedGPOListInternalW | |
| 444 | GetCPFileNameFromRegistry | |
| 445 | GetCPHashNode | |
| 446 | GetCPInfo | |
| 447 | GetCPInfoExW | |
| 448 | GetCachedSigningLevel | |
| 449 | GetCalendar | |
| 450 | GetCalendarInfoEx | |
| 451 | GetCalendarInfoW | |
| 452 | GetCommConfig | |
| 453 | GetCommMask | |
| 454 | GetCommModemStatus | |
| 455 | GetCommPorts | |
| 456 | GetCommProperties | |
| 457 | GetCommState | |
| 458 | GetCommTimeouts | |
| 459 | GetCommandLineA | |
| 460 | GetCommandLineW | |
| 461 | GetCompressedFileSizeA | |
| 462 | GetCompressedFileSizeW | |
| 463 | GetComputerNameExA | |
| 464 | GetComputerNameExW | |
| 465 | GetConsoleAliasA | |
| 466 | GetConsoleAliasExesA | |
| 467 | GetConsoleAliasExesLengthA | |
| 468 | GetConsoleAliasExesLengthW | |
| 469 | GetConsoleAliasExesW | |
| 470 | GetConsoleAliasW | |
| 471 | GetConsoleAliasesA | |
| 472 | GetConsoleAliasesLengthA | |
| 473 | GetConsoleAliasesLengthW | |
| 474 | GetConsoleAliasesW | |
| 475 | GetConsoleCP | |
| 476 | GetConsoleCommandHistoryA | |
| 477 | GetConsoleCommandHistoryLengthA | |
| 478 | GetConsoleCommandHistoryLengthW | |
| 479 | GetConsoleCommandHistoryW | |
| 480 | GetConsoleCursorInfo | |
| 481 | GetConsoleDisplayMode | |
| 482 | GetConsoleFontSize | |
| 483 | GetConsoleHistoryInfo | |
| 484 | GetConsoleInputExeNameA | |
| 485 | GetConsoleInputExeNameW | |
| 486 | GetConsoleMode | |
| 487 | GetConsoleOriginalTitleA | |
| 488 | GetConsoleOriginalTitleW | |
| 489 | GetConsoleOutputCP | |
| 490 | GetConsoleProcessList | |
| 491 | GetConsoleScreenBufferInfo | |
| 492 | GetConsoleScreenBufferInfoEx | |
| 493 | GetConsoleSelectionInfo | |
| 494 | GetConsoleTitleA | |
| 495 | GetConsoleTitleW | |
| 496 | GetConsoleWindow | |
| 497 | GetCurrencyFormatEx | |
| 498 | GetCurrencyFormatW | |
| 499 | GetCurrentActCtx | |
| 500 | GetCurrentApplicationUserModelId | |
| 501 | GetCurrentConsoleFont | |
| 502 | GetCurrentConsoleFontEx | |
| 503 | GetCurrentDirectoryA | |
| 504 | GetCurrentDirectoryW | |
| 505 | GetCurrentPackageApplicationContext | |
| 506 | GetCurrentPackageApplicationResourcesContext | |
| 507 | GetCurrentPackageContext | |
| 508 | GetCurrentPackageFamilyName | |
| 509 | GetCurrentPackageFullName | |
| 510 | GetCurrentPackageId | |
| 511 | GetCurrentPackageInfo | |
| 512 | GetCurrentPackageInfo2 | |
| 513 | GetCurrentPackagePath | |
| 514 | GetCurrentPackagePath2 | |
| 515 | GetCurrentPackageResourcesContext | |
| 516 | GetCurrentPackageSecurityContext | |
| 517 | GetCurrentProcess | |
| 518 | GetCurrentProcessId | |
| 519 | GetCurrentProcessorNumber | |
| 520 | GetCurrentProcessorNumberEx | |
| 521 | GetCurrentTargetPlatformContext | |
| 522 | GetCurrentThread | |
| 523 | GetCurrentThreadId | |
| 524 | GetCurrentThreadStackLimits | |
| 525 | GetDateFormatA | |
| 526 | GetDateFormatEx | |
| 527 | GetDateFormatW | |
| 528 | GetDeviceDriverBaseNameA | |
| 529 | GetDeviceDriverBaseNameW | |
| 530 | GetDeviceDriverFileNameA | |
| 531 | GetDeviceDriverFileNameW | |
| 532 | GetDiskFreeSpaceA | |
| 533 | GetDiskFreeSpaceExA | |
| 534 | GetDiskFreeSpaceExW | |
| 535 | GetDiskFreeSpaceW | |
| 536 | GetDiskSpaceInformationA | |
| 537 | GetDiskSpaceInformationW | |
| 538 | GetDriveTypeA | |
| 539 | GetDriveTypeW | |
| 540 | GetDurationFormatEx | |
| 541 | GetDynamicTimeZoneInformation | |
| 542 | GetDynamicTimeZoneInformationEffectiveYears | |
| 543 | GetEffectivePackageStatusForUser | |
| 544 | GetEffectivePackageStatusForUserSid | |
| 545 | GetEightBitStringToUnicodeSizeRoutine | |
| 546 | GetEightBitStringToUnicodeStringRoutine | |
| 547 | GetEnvironmentStrings | |
| 548 | GetEnvironmentStringsA | |
| 549 | GetEnvironmentStringsW | |
| 550 | GetEnvironmentVariableA | |
| 551 | GetEnvironmentVariableW | |
| 552 | GetEraNameCountedString | |
| 553 | GetErrorMode | |
| 554 | GetExitCodeProcess | |
| 555 | GetExitCodeThread | |
| 556 | GetExtensionApplicationUserModelId | |
| 557 | GetExtensionProgIds | |
| 558 | GetExtensionProperty | |
| 559 | GetExtensionProperty2 | |
| 560 | GetFallbackDisplayName | |
| 561 | GetFileAttributesA | |
| 562 | GetFileAttributesExA | |
| 563 | GetFileAttributesExW | |
| 564 | GetFileAttributesW | |
| 565 | GetFileInformationByHandle | |
| 566 | GetFileInformationByHandleEx | |
| 567 | GetFileMUIInfo | |
| 568 | GetFileMUIPath | |
| 569 | GetFileSecurityW | |
| 570 | GetFileSize | |
| 571 | GetFileSizeEx | |
| 572 | GetFileTime | |
| 573 | GetFileType | |
| 574 | GetFileVersionInfoA | |
| 575 | GetFileVersionInfoByHandle | |
| 576 | GetFileVersionInfoExA | |
| 577 | GetFileVersionInfoExW | |
| 578 | GetFileVersionInfoSizeA | |
| 579 | GetFileVersionInfoSizeExA | |
| 580 | GetFileVersionInfoSizeExW | |
| 581 | GetFileVersionInfoSizeW | |
| 582 | GetFileVersionInfoW | |
| 583 | GetFinalPathNameByHandleA | |
| 584 | GetFinalPathNameByHandleW | |
| 585 | GetFullPathNameA | |
| 586 | GetFullPathNameW | |
| 587 | GetGPOListInternalA | |
| 588 | GetGPOListInternalW | |
| 589 | GetGamingDeviceModelInformation | |
| 590 | GetGeoInfoEx | |
| 591 | GetGeoInfoW | |
| 592 | GetHandleInformation | |
| 593 | GetHivePath | |
| 594 | GetIntegratedDisplaySize | |
| 595 | GetIsEdpEnabled | |
| 596 | GetIsWdagEnabled | |
| 597 | GetKernelObjectSecurity | |
| 598 | GetLargePageMinimum | |
| 599 | GetLargestConsoleWindowSize | |
| 600 | GetLastError | |
| 601 | GetLengthSid | |
| 602 | GetLocalTime | |
| 603 | GetLocaleInfoA | |
| 604 | GetLocaleInfoEx | |
| 605 | GetLocaleInfoHelper | |
| 606 | GetLocaleInfoW | |
| 607 | GetLogicalDriveStringsW | |
| 608 | GetLogicalDrives | |
| 609 | GetLogicalProcessorInformation | |
| 610 | GetLogicalProcessorInformationEx | |
| 611 | GetLongPathNameA | |
| 612 | GetLongPathNameW | |
| 613 | GetMappedFileNameA | |
| 614 | GetMappedFileNameW | |
| 615 | GetMemoryErrorHandlingCapabilities | |
| 616 | GetModuleBaseNameA | |
| 617 | GetModuleBaseNameW | |
| 618 | GetModuleFileNameA | |
| 619 | GetModuleFileNameExA | |
| 620 | GetModuleFileNameExW | |
| 621 | GetModuleFileNameW | |
| 622 | GetModuleHandleA | |
| 623 | GetModuleHandleExA | |
| 624 | GetModuleHandleExW | |
| 625 | GetModuleHandleW | |
| 626 | GetModuleInformation | |
| 627 | GetNLSVersion | |
| 628 | GetNLSVersionEx | |
| 629 | GetNamedLocaleHashNode | |
| 630 | GetNamedPipeAttribute | |
| 631 | GetNamedPipeClientComputerNameW | |
| 632 | GetNamedPipeHandleStateW | |
| 633 | GetNamedPipeInfo | |
| 634 | GetNativeSystemInfo | |
| 635 | GetNextFgPolicyRefreshInfoInternal | |
| 636 | GetNumaHighestNodeNumber | |
| 637 | GetNumaNodeProcessorMaskEx | |
| 638 | GetNumaProximityNodeEx | |
| 639 | GetNumberFormatEx | |
| 640 | GetNumberFormatW | |
| 641 | GetNumberOfConsoleInputEvents | |
| 642 | GetNumberOfConsoleMouseButtons | |
| 643 | GetOEMCP | |
| 644 | GetOsManufacturingMode | |
| 645 | GetOsSafeBootMode | |
| 646 | GetOverlappedResult | |
| 647 | GetOverlappedResultEx | |
| 648 | GetPackageApplicationContext | |
| 649 | GetPackageApplicationIds | |
| 650 | GetPackageApplicationProperty | |
| 651 | GetPackageApplicationPropertyString | |
| 652 | GetPackageApplicationResourcesContext | |
| 653 | GetPackageContext | |
| 654 | GetPackageFamilyName | |
| 655 | GetPackageFamilyNameFromProgId | |
| 656 | GetPackageFamilyNameFromToken | |
| 657 | GetPackageFullName | |
| 658 | GetPackageFullNameFromToken | |
| 659 | GetPackageId | |
| 660 | GetPackageInfo | |
| 661 | GetPackageInfo2 | |
| 662 | GetPackageInstallTime | |
| 663 | GetPackageOSMaxVersionTested | |
| 664 | GetPackagePath | |
| 665 | GetPackagePathByFullName | |
| 666 | GetPackagePathByFullName2 | |
| 667 | GetPackagePathOnVolume | |
| 668 | GetPackageProperty | |
| 669 | GetPackagePropertyString | |
| 670 | GetPackageResourcesContext | |
| 671 | GetPackageResourcesProperty | |
| 672 | GetPackageSecurityContext | |
| 673 | GetPackageSecurityProperty | |
| 674 | GetPackageStatus | |
| 675 | GetPackageStatusForUser | |
| 676 | GetPackageStatusForUserSid | |
| 677 | GetPackageTargetPlatformProperty | |
| 678 | GetPackageVolumeSisPath | |
| 679 | GetPackagesByPackageFamily | |
| 680 | GetPerformanceInfo | |
| 681 | GetPersistedFileLocationW | |
| 682 | GetPersistedRegistryLocationW | |
| 683 | GetPersistedRegistryValueW | |
| 684 | GetPhysicallyInstalledSystemMemory | |
| 685 | GetPreviousFgPolicyRefreshInfoInternal | |
| 686 | GetPriorityClass | |
| 687 | GetPrivateObjectSecurity | |
| 688 | GetProcAddress | |
| 689 | GetProcAddressForCaller | |
| 690 | GetProcessDefaultCpuSets | |
| 691 | GetProcessGroupAffinity | |
| 692 | GetProcessHandleCount | |
| 693 | GetProcessHeap | |
| 694 | GetProcessHeaps | |
| 695 | GetProcessId | |
| 696 | GetProcessIdOfThread | |
| 697 | GetProcessImageFileNameA | |
| 698 | GetProcessImageFileNameW | |
| 699 | GetProcessInformation | |
| 700 | GetProcessMemoryInfo | |
| 701 | GetProcessMitigationPolicy | |
| 702 | GetProcessPreferredUILanguages | |
| 703 | GetProcessPriorityBoost | |
| 704 | GetProcessShutdownParameters | |
| 705 | GetProcessTimes | |
| 706 | GetProcessVersion | |
| 707 | GetProcessWorkingSetSizeEx | |
| 708 | GetProcessorSystemCycleTime | |
| 709 | GetProductInfo | |
| 710 | GetProtocolAumid | |
| 711 | GetProtocolProperty | |
| 712 | GetPtrCalData | |
| 713 | GetPtrCalDataArray | |
| 714 | GetPublisherCacheFolder | |
| 715 | GetPublisherRootFolder | |
| 716 | GetQueuedCompletionStatus | |
| 717 | GetQueuedCompletionStatusEx | |
| 718 | GetRegistryExtensionFlags | |
| 719 | GetRegistryValueWithFallbackW | |
| 720 | GetRoamingLastObservedChangeTime | |
| 721 | GetSecureSystemAppDataFolder | |
| 722 | GetSecurityDescriptorControl | |
| 723 | GetSecurityDescriptorDacl | |
| 724 | GetSecurityDescriptorGroup | |
| 725 | GetSecurityDescriptorLength | |
| 726 | GetSecurityDescriptorOwner | |
| 727 | GetSecurityDescriptorRMControl | |
| 728 | GetSecurityDescriptorSacl | |
| 729 | GetSerializedAtomBytes | |
| 730 | GetSharedLocalFolder | |
| 731 | GetShortPathNameW | |
| 732 | GetSidIdentifierAuthority | |
| 733 | GetSidLengthRequired | |
| 734 | GetSidSubAuthority | |
| 735 | GetSidSubAuthorityCount | |
| 736 | GetStagedPackageOrigin | |
| 737 | GetStagedPackagePathByFullName | |
| 738 | GetStagedPackagePathByFullName2 | |
| 739 | GetStartupInfoW | |
| 740 | GetStateContainerDepth | |
| 741 | GetStateFolder | |
| 742 | GetStateRootFolder | |
| 743 | GetStateRootFolderBase | |
| 744 | GetStateSettingsFolder | |
| 745 | GetStateVersion | |
| 746 | GetStdHandle | |
| 747 | GetStringScripts | |
| 748 | GetStringTableEntry | |
| 749 | GetStringTypeA | |
| 750 | GetStringTypeExW | |
| 751 | GetStringTypeW | |
| 752 | GetSystemAppDataFolder | |
| 753 | GetSystemAppDataKey | |
| 754 | GetSystemCpuSetInformation | |
| 755 | GetSystemDefaultLCID | |
| 756 | GetSystemDefaultLangID | |
| 757 | GetSystemDefaultLocaleName | |
| 758 | GetSystemDefaultUILanguage | |
| 759 | GetSystemDirectoryA | |
| 760 | GetSystemDirectoryW | |
| 761 | GetSystemFileCacheSize | |
| 762 | GetSystemFirmwareTable | |
| 763 | GetSystemInfo | |
| 764 | GetSystemLeapSecondInformation | |
| 765 | GetSystemMetadataPath | |
| 766 | GetSystemMetadataPathForPackage | |
| 767 | GetSystemMetadataPathForPackageFamily | |
| 768 | GetSystemPreferredUILanguages | |
| 769 | GetSystemStateRootFolder | |
| 770 | GetSystemTime | |
| 771 | GetSystemTimeAdjustment | |
| 772 | GetSystemTimeAdjustmentPrecise | |
| 773 | GetSystemTimeAsFileTime | |
| 774 | GetSystemTimePreciseAsFileTime | |
| 775 | GetSystemTimes | |
| 776 | GetSystemWindowsDirectoryA | |
| 777 | GetSystemWindowsDirectoryW | |
| 778 | GetSystemWow64Directory2A | |
| 779 | GetSystemWow64Directory2W | |
| 780 | GetSystemWow64DirectoryA | |
| 781 | GetSystemWow64DirectoryW | |
| 782 | GetTargetPlatformContext | |
| 783 | GetTempFileNameA | |
| 784 | GetTempFileNameW | |
| 785 | GetTempPathA | |
| 786 | GetTempPathW | |
| 787 | GetThreadContext | |
| 788 | GetThreadDescription | |
| 789 | GetThreadErrorMode | |
| 790 | GetThreadGroupAffinity | |
| 791 | GetThreadIOPendingFlag | |
| 792 | GetThreadId | |
| 793 | GetThreadIdealProcessorEx | |
| 794 | GetThreadInformation | |
| 795 | GetThreadLocale | |
| 796 | GetThreadPreferredUILanguages | |
| 797 | GetThreadPriority | |
| 798 | GetThreadPriorityBoost | |
| 799 | GetThreadSelectedCpuSets | |
| 800 | GetThreadTimes | |
| 801 | GetThreadUILanguage | |
| 802 | GetTickCount | |
| 803 | GetTickCount64 | |
| 804 | GetTimeFormatA | |
| 805 | GetTimeFormatEx | |
| 806 | GetTimeFormatW | |
| 807 | GetTimeZoneInformation | |
| 808 | GetTimeZoneInformationForYear | |
| 809 | GetTokenInformation | |
| 810 | GetTraceEnableFlags | |
| 811 | GetTraceEnableLevel | |
| 812 | GetTraceLoggerHandle | |
| 813 | GetUILanguageInfo | |
| 814 | GetUnicodeStringToEightBitSizeRoutine | |
| 815 | GetUnicodeStringToEightBitStringRoutine | |
| 816 | GetUserDefaultGeoName | |
| 817 | GetUserDefaultLCID | |
| 818 | GetUserDefaultLangID | |
| 819 | GetUserDefaultLocaleName | |
| 820 | GetUserDefaultUILanguage | |
| 821 | GetUserGeoID | |
| 822 | GetUserInfo | |
| 823 | GetUserInfoWord | |
| 824 | GetUserOverrideString | |
| 825 | GetUserOverrideWord | |
| 826 | GetUserPreferredUILanguages | |
| 827 | GetVersion | |
| 828 | GetVersionExA | |
| 829 | GetVersionExW | |
| 830 | GetVolumeInformationA | |
| 831 | GetVolumeInformationByHandleW | |
| 832 | GetVolumeInformationW | |
| 833 | GetVolumeNameForVolumeMountPointW | |
| 834 | GetVolumePathNameW | |
| 835 | GetVolumePathNamesForVolumeNameW | |
| 836 | GetWindowsAccountDomainSid | |
| 837 | GetWindowsDirectoryA | |
| 838 | GetWindowsDirectoryW | |
| 839 | GetWriteWatch | |
| 840 | GetWsChanges | |
| 841 | GetWsChangesEx | |
| 842 | GlobalAlloc | |
| 843 | GlobalFree | |
| 844 | GlobalMemoryStatusEx | |
| 845 | GuardCheckLongJumpTarget | |
| 846 | HasPolicyForegroundProcessingCompletedInternal | |
| 847 | HashData | |
| 848 | HeapAlloc | |
| 849 | HeapCompact | |
| 850 | HeapCreate | |
| 851 | HeapDestroy | |
| 852 | HeapFree | |
| 853 | HeapLock | |
| 854 | HeapQueryInformation | |
| 855 | HeapReAlloc | |
| 856 | HeapSetInformation | |
| 857 | HeapSize | |
| 858 | HeapSummary | |
| 859 | HeapUnlock | |
| 860 | HeapValidate | |
| 861 | HeapWalk | |
| 862 | IdnToAscii | |
| 863 | IdnToNameprepUnicode | |
| 864 | IdnToUnicode | |
| 865 | ImpersonateAnonymousToken | |
| 866 | ImpersonateLoggedOnUser | |
| 867 | ImpersonateNamedPipeClient | |
| 868 | ImpersonateSelf | |
| 869 | IncrementPackageStatusVersion | |
| 870 | InitOnceBeginInitialize | |
| 871 | InitOnceComplete | |
| 872 | InitOnceExecuteOnce | |
| 873 | InitOnceInitialize | |
| 874 | InitializeAcl | |
| 875 | InitializeConditionVariable | |
| 876 | InitializeContext | |
| 877 | InitializeContext2 | |
| 878 | InitializeCriticalSection | |
| 879 | InitializeCriticalSectionAndSpinCount | |
| 880 | InitializeCriticalSectionEx | |
| 881 | InitializeEnclave | |
| 882 | InitializeProcThreadAttributeList | |
| 883 | InitializeProcessForWsWatch | |
| 884 | InitializeSListHead | |
| 885 | InitializeSRWLock | |
| 886 | InitializeSecurityDescriptor | |
| 887 | InitializeSid | |
| 888 | InitializeSynchronizationBarrier | |
| 889 | InstallELAMCertificateInfo | |
| 890 | InterlockedFlushSList | |
| 891 | InterlockedPopEntrySList | |
| 892 | InterlockedPushEntrySList | |
| 893 | InterlockedPushListSList | |
| 894 | InterlockedPushListSListEx | |
| 895 | InternalLcidToName | |
| 896 | Internal_EnumCalendarInfo | |
| 897 | Internal_EnumDateFormats | |
| 898 | Internal_EnumLanguageGroupLocales | |
| 899 | Internal_EnumSystemCodePages | |
| 900 | Internal_EnumSystemLanguageGroups | |
| 901 | Internal_EnumSystemLocales | |
| 902 | Internal_EnumTimeFormats | |
| 903 | Internal_EnumUILanguages | |
| 904 | InternetTimeFromSystemTimeA | |
| 905 | InternetTimeFromSystemTimeW | |
| 906 | InternetTimeToSystemTimeA | |
| 907 | InternetTimeToSystemTimeW | |
| 908 | InvalidateAppModelVersionCache | |
| 909 | IsApiSetImplemented | |
| 910 | IsCharAlphaA | |
| 911 | IsCharAlphaNumericA | |
| 912 | IsCharAlphaNumericW | |
| 913 | IsCharAlphaW | |
| 914 | IsCharBlankW | |
| 915 | IsCharCntrlW | |
| 916 | IsCharDigitW | |
| 917 | IsCharLowerA | |
| 918 | IsCharLowerW | |
| 919 | IsCharPunctW | |
| 920 | IsCharSpaceA | |
| 921 | IsCharSpaceW | |
| 922 | IsCharUpperA | |
| 923 | IsCharUpperW | |
| 924 | IsCharXDigitW | |
| 925 | IsDBCSLeadByte | |
| 926 | IsDBCSLeadByteEx | |
| 927 | IsDebuggerPresent | |
| 928 | IsDeveloperModeEnabled | |
| 929 | IsDeveloperModePolicyApplied | |
| 930 | IsEnclaveTypeSupported | |
| 931 | IsInternetESCEnabled | |
| 932 | IsNLSDefinedString | |
| 933 | IsNormalizedString | |
| 934 | IsOnDemandRegistrationSupportedForExtensionCategory | |
| 935 | IsProcessCritical | |
| 936 | IsProcessInJob | |
| 937 | IsProcessorFeaturePresent | |
| 938 | IsSideloadingEnabled | |
| 939 | IsSideloadingPolicyApplied | |
| 940 | IsSyncForegroundPolicyRefresh | |
| 941 | IsThreadAFiber | |
| 942 | IsThreadpoolTimerSet | |
| 943 | IsTimeZoneRedirectionEnabled | |
| 944 | IsTokenRestricted | |
| 945 | IsValidAcl | |
| 946 | IsValidCodePage | |
| 947 | IsValidLanguageGroup | |
| 948 | IsValidLocale | |
| 949 | IsValidLocaleName | |
| 950 | IsValidNLSVersion | |
| 951 | IsValidRelativeSecurityDescriptor | |
| 952 | IsValidSecurityDescriptor | |
| 953 | IsValidSid | |
| 954 | IsWellKnownSid | |
| 955 | IsWow64GuestMachineSupported | |
| 956 | IsWow64Process | |
| 957 | IsWow64Process2 | |
| 958 | K32EmptyWorkingSet | |
| 959 | K32EnumDeviceDrivers | |
| 960 | K32EnumPageFilesA | |
| 961 | K32EnumPageFilesW | |
| 962 | K32EnumProcessModules | |
| 963 | K32EnumProcessModulesEx | |
| 964 | K32EnumProcesses | |
| 965 | K32GetDeviceDriverBaseNameA | |
| 966 | K32GetDeviceDriverBaseNameW | |
| 967 | K32GetDeviceDriverFileNameA | |
| 968 | K32GetDeviceDriverFileNameW | |
| 969 | K32GetMappedFileNameA | |
| 970 | K32GetMappedFileNameW | |
| 971 | K32GetModuleBaseNameA | |
| 972 | K32GetModuleBaseNameW | |
| 973 | K32GetModuleFileNameExA | |
| 974 | K32GetModuleFileNameExW | |
| 975 | K32GetModuleInformation | |
| 976 | K32GetPerformanceInfo | |
| 977 | K32GetProcessImageFileNameA | |
| 978 | K32GetProcessImageFileNameW | |
| 979 | K32GetProcessMemoryInfo | |
| 980 | K32GetWsChanges | |
| 981 | K32GetWsChangesEx | |
| 982 | K32InitializeProcessForWsWatch | |
| 983 | K32QueryWorkingSet | |
| 984 | K32QueryWorkingSetEx | |
| 985 | KernelBaseGetGlobalData | |
| 986 | KernelbasePostInit | |
| 987 | LCIDToLocaleName | |
| 988 | LCMapStringA | |
| 989 | LCMapStringEx | |
| 990 | LCMapStringW | |
| 991 | LeaveCriticalPolicySectionInternal | |
| 992 | LeaveCriticalSection | |
| 993 | LeaveCriticalSectionWhenCallbackReturns | |
| 994 | LoadAppInitDlls | |
| 995 | LoadEnclaveData | |
| 996 | LoadEnclaveImageA | |
| 997 | LoadEnclaveImageW | |
| 998 | LoadLibraryA | |
| 999 | LoadLibraryExA | |
| 1000 | LoadLibraryExW | |
| 1001 | LoadLibraryW | |
| 1002 | LoadPackagedLibrary | |
| 1003 | LoadResource | |
| 1004 | LoadStringA | |
| 1005 | LoadStringBaseExW | |
| 1006 | LoadStringByReference | |
| 1007 | LoadStringW | |
| 1008 | LocalAlloc | |
| 1009 | LocalFileTimeToFileTime | |
| 1010 | LocalFileTimeToLocalSystemTime | |
| 1011 | LocalFree | |
| 1012 | LocalLock | |
| 1013 | LocalReAlloc | |
| 1014 | LocalSystemTimeToLocalFileTime | |
| 1015 | LocalUnlock | |
| 1016 | LocaleNameToLCID | |
| 1017 | LockFile | |
| 1018 | LockFileEx | |
| 1019 | LockResource | |
| 1020 | MakeAbsoluteSD | |
| 1021 | MakeAbsoluteSD2 | |
| 1022 | MakeSelfRelativeSD | |
| 1023 | MapGenericMask | |
| 1024 | MapPredefinedHandleInternal | |
| 1025 | MapUserPhysicalPages | |
| 1026 | MapViewOfFile | |
| 1027 | MapViewOfFile3 | |
| 1028 | MapViewOfFile3FromApp | |
| 1029 | MapViewOfFileEx | |
| 1030 | MapViewOfFileExNuma | |
| 1031 | MapViewOfFileFromApp | |
| 1032 | MapViewOfFileNuma2 | |
| 1033 | MoveFileExW | |
| 1034 | MoveFileWithProgressTransactedW | |
| 1035 | MoveFileWithProgressW | |
| 1036 | MulDiv | |
| 1037 | MultiByteToWideChar | |
| 1038 | NamedPipeEventEnum | |
| 1039 | NamedPipeEventSelect | |
| 1040 | NeedCurrentDirectoryForExePathA | |
| 1041 | NeedCurrentDirectoryForExePathW | |
| 1042 | NlsCheckPolicy | |
| 1043 | NlsDispatchAnsiEnumProc | |
| 1044 | NlsEventDataDescCreate | |
| 1045 | NlsGetACPFromLocale | |
| 1046 | NlsGetCacheUpdateCount | |
| 1047 | NlsIsUserDefaultLocale | |
| 1048 | NlsUpdateLocale | |
| 1049 | NlsUpdateSystemLocale | |
| 1050 | NlsValidateLocale | |
| 1051 | NlsWriteEtwEvent | |
| 1052 | NormalizeString | |
| 1053 | NotifyMountMgr | |
| 1054 | NotifyRedirectedStringChange | |
| 1055 | ObjectCloseAuditAlarmW | |
| 1056 | ObjectDeleteAuditAlarmW | |
| 1057 | ObjectOpenAuditAlarmW | |
| 1058 | ObjectPrivilegeAuditAlarmW | |
| 1059 | OfferVirtualMemory | |
| 1060 | OpenCommPort | |
| 1061 | OpenEventA | |
| 1062 | OpenEventW | |
| 1063 | OpenFileById | |
| 1064 | OpenFileMappingFromApp | |
| 1065 | OpenFileMappingW | |
| 1066 | OpenGlobalizationUserSettingsKey | |
| 1067 | OpenMutexW | |
| 1068 | OpenPackageInfoByFullName | |
| 1069 | OpenPackageInfoByFullNameForMachine | |
| 1070 | OpenPackageInfoByFullNameForUser | |
| 1071 | OpenPrivateNamespaceW | |
| 1072 | OpenProcess | |
| 1073 | OpenProcessToken | |
| 1074 | OpenRegKey | |
| 1075 | OpenSemaphoreW | |
| 1076 | OpenState | |
| 1077 | OpenStateAtom | |
| 1078 | OpenStateExplicit | |
| 1079 | OpenStateExplicitForUserSid | |
| 1080 | OpenStateExplicitForUserSidString | |
| 1081 | OpenThread | |
| 1082 | OpenThreadToken | |
| 1083 | OpenWaitableTimerW | |
| 1084 | OutputDebugStringA | |
| 1085 | OutputDebugStringW | |
| 1086 | OverrideRoamingDataModificationTimesInRange | |
| 1087 | PackageFamilyNameFromFullName | |
| 1088 | PackageFamilyNameFromFullNameA | |
| 1089 | PackageFamilyNameFromId | |
| 1090 | PackageFamilyNameFromIdA | |
| 1091 | PackageFamilyNameFromProductId | |
| 1092 | PackageFullNameFromId | |
| 1093 | PackageFullNameFromIdA | |
| 1094 | PackageFullNameFromProductId | |
| 1095 | PackageIdFromFullName | |
| 1096 | PackageIdFromFullNameA | |
| 1097 | PackageIdFromProductId | |
| 1098 | PackageNameAndPublisherIdFromFamilyName | |
| 1099 | PackageNameAndPublisherIdFromFamilyNameA | |
| 1100 | PackageRelativeApplicationIdFromProductId | |
| 1101 | PackageSidFromFamilyName | |
| 1102 | ParseApplicationUserModelId | |
| 1103 | ParseApplicationUserModelIdA | |
| 1104 | ParseURLA | |
| 1105 | ParseURLW | |
| 1106 | PathAddBackslashA | |
| 1107 | PathAddBackslashW | |
| 1108 | PathAddExtensionA | |
| 1109 | PathAddExtensionW | |
| 1110 | PathAllocCanonicalize | |
| 1111 | PathAllocCombine | |
| 1112 | PathAppendA | |
| 1113 | PathAppendW | |
| 1114 | PathCanonicalizeA | |
| 1115 | PathCanonicalizeW | |
| 1116 | PathCchAddBackslash | |
| 1117 | PathCchAddBackslashEx | |
| 1118 | PathCchAddExtension | |
| 1119 | PathCchAppend | |
| 1120 | PathCchAppendEx | |
| 1121 | PathCchCanonicalize | |
| 1122 | PathCchCanonicalizeEx | |
| 1123 | PathCchCombine | |
| 1124 | PathCchCombineEx | |
| 1125 | PathCchFindExtension | |
| 1126 | PathCchIsRoot | |
| 1127 | PathCchRemoveBackslash | |
| 1128 | PathCchRemoveBackslashEx | |
| 1129 | PathCchRemoveExtension | |
| 1130 | PathCchRemoveFileSpec | |
| 1131 | PathCchRenameExtension | |
| 1132 | PathCchSkipRoot | |
| 1133 | PathCchStripPrefix | |
| 1134 | PathCchStripToRoot | |
| 1135 | PathCleanupSpec | |
| 1136 | PathCombineA | |
| 1137 | PathCombineW | |
| 1138 | PathCommonPrefixA | |
| 1139 | PathCommonPrefixW | |
| 1140 | PathCreateFromUrlA | |
| 1141 | PathCreateFromUrlAlloc | |
| 1142 | PathCreateFromUrlW | |
| 1143 | PathFileExistsA | |
| 1144 | PathFileExistsW | |
| 1145 | PathFindExtensionA | |
| 1146 | PathFindExtensionW | |
| 1147 | PathFindFileNameA | |
| 1148 | PathFindFileNameW | |
| 1149 | PathFindNextComponentA | |
| 1150 | PathFindNextComponentW | |
| 1151 | PathGetArgsA | |
| 1152 | PathGetArgsW | |
| 1153 | PathGetCharTypeA | |
| 1154 | PathGetCharTypeW | |
| 1155 | PathGetDriveNumberA | |
| 1156 | PathGetDriveNumberW | |
| 1157 | PathIsExe | |
| 1158 | PathIsFileSpecA | |
| 1159 | PathIsFileSpecW | |
| 1160 | PathIsLFNFileSpecA | |
| 1161 | PathIsLFNFileSpecW | |
| 1162 | PathIsPrefixA | |
| 1163 | PathIsPrefixW | |
| 1164 | PathIsRelativeA | |
| 1165 | PathIsRelativeW | |
| 1166 | PathIsRootA | |
| 1167 | PathIsRootW | |
| 1168 | PathIsSameRootA | |
| 1169 | PathIsSameRootW | |
| 1170 | PathIsUNCA | |
| 1171 | PathIsUNCEx | |
| 1172 | PathIsUNCServerA | |
| 1173 | PathIsUNCServerShareA | |
| 1174 | PathIsUNCServerShareW | |
| 1175 | PathIsUNCServerW | |
| 1176 | PathIsUNCW | |
| 1177 | PathIsURLA | |
| 1178 | PathIsURLW | |
| 1179 | PathIsValidCharA | |
| 1180 | PathIsValidCharW | |
| 1181 | PathMatchSpecA | |
| 1182 | PathMatchSpecExA | |
| 1183 | PathMatchSpecExW | |
| 1184 | PathMatchSpecW | |
| 1185 | PathParseIconLocationA | |
| 1186 | PathParseIconLocationW | |
| 1187 | PathQuoteSpacesA | |
| 1188 | PathQuoteSpacesW | |
| 1189 | PathRelativePathToA | |
| 1190 | PathRelativePathToW | |
| 1191 | PathRemoveBackslashA | |
| 1192 | PathRemoveBackslashW | |
| 1193 | PathRemoveBlanksA | |
| 1194 | PathRemoveBlanksW | |
| 1195 | PathRemoveExtensionA | |
| 1196 | PathRemoveExtensionW | |
| 1197 | PathRemoveFileSpecA | |
| 1198 | PathRemoveFileSpecW | |
| 1199 | PathRenameExtensionA | |
| 1200 | PathRenameExtensionW | |
| 1201 | PathSearchAndQualifyA | |
| 1202 | PathSearchAndQualifyW | |
| 1203 | PathSkipRootA | |
| 1204 | PathSkipRootW | |
| 1205 | PathStripPathA | |
| 1206 | PathStripPathW | |
| 1207 | PathStripToRootA | |
| 1208 | PathStripToRootW | |
| 1209 | PathUnExpandEnvStringsA | |
| 1210 | PathUnExpandEnvStringsW | |
| 1211 | PathUnquoteSpacesA | |
| 1212 | PathUnquoteSpacesW | |
| 1213 | PcwAddQueryItem | |
| 1214 | PcwClearCounterSetSecurity | |
| 1215 | PcwCollectData | |
| 1216 | PcwCompleteNotification | |
| 1217 | PcwCreateNotifier | |
| 1218 | PcwCreateQuery | |
| 1219 | PcwDisconnectCounterSet | |
| 1220 | PcwEnumerateInstances | |
| 1221 | PcwIsNotifierAlive | |
| 1222 | PcwQueryCounterSetSecurity | |
| 1223 | PcwReadNotificationData | |
| 1224 | PcwRegisterCounterSet | |
| 1225 | PcwRemoveQueryItem | |
| 1226 | PcwSendNotification | |
| 1227 | PcwSendStatelessNotification | |
| 1228 | PcwSetCounterSetSecurity | |
| 1229 | PcwSetQueryItemUserData | |
| 1230 | PeekConsoleInputA | |
| 1231 | PeekConsoleInputW | |
| 1232 | PeekNamedPipe | |
| 1233 | PerfCreateInstance | |
| 1234 | PerfDecrementULongCounterValue | |
| 1235 | PerfDecrementULongLongCounterValue | |
| 1236 | PerfDeleteInstance | |
| 1237 | PerfIncrementULongCounterValue | |
| 1238 | PerfIncrementULongLongCounterValue | |
| 1239 | PerfQueryInstance | |
| 1240 | PerfSetCounterRefValue | |
| 1241 | PerfSetCounterSetInfo | |
| 1242 | PerfSetULongCounterValue | |
| 1243 | PerfSetULongLongCounterValue | |
| 1244 | PerfStartProvider | |
| 1245 | PerfStartProviderEx | |
| 1246 | PerfStopProvider | |
| 1247 | PoolPerAppKeyStateInternal | |
| 1248 | PostQueuedCompletionStatus | |
| 1249 | PrefetchVirtualMemory | |
| 1250 | PrivCopyFileExW | |
| 1251 | PrivilegeCheck | |
| 1252 | PrivilegedServiceAuditAlarmW | |
| 1253 | ProcessIdToSessionId | |
| 1254 | ProductIdFromPackageFamilyName | |
| 1255 | PsmCreateKey | |
| 1256 | PsmCreateKeyWithDynamicId | |
| 1257 | PsmEqualApplication | |
| 1258 | PsmEqualPackage | |
| 1259 | PsmGetApplicationNameFromKey | |
| 1260 | PsmGetDynamicIdFromKey | |
| 1261 | PsmGetKeyFromProcess | |
| 1262 | PsmGetKeyFromToken | |
| 1263 | PsmGetPackageFullNameFromKey | |
| 1264 | PsmIsChildKey | |
| 1265 | PsmIsDynamicKey | |
| 1266 | PsmIsValidKey | |
| 1267 | PssCaptureSnapshot | |
| 1268 | PssDuplicateSnapshot | |
| 1269 | PssFreeSnapshot | |
| 1270 | PssQuerySnapshot | |
| 1271 | PssWalkMarkerCreate | |
| 1272 | PssWalkMarkerFree | |
| 1273 | PssWalkMarkerGetPosition | |
| 1274 | PssWalkMarkerSeekToBeginning | |
| 1275 | PssWalkMarkerSetPosition | |
| 1276 | PssWalkSnapshot | |
| 1277 | PublishStateChangeNotification | |
| 1278 | PulseEvent | |
| 1279 | PurgeComm | |
| 1280 | QISearch | |
| 1281 | QueryActCtxSettingsW | |
| 1282 | QueryActCtxW | |
| 1283 | QueryAuxiliaryCounterFrequency | |
| 1284 | QueryDepthSList | |
| 1285 | QueryDosDeviceW | |
| 1286 | QueryFullProcessImageNameA | |
| 1287 | QueryFullProcessImageNameW | |
| 1288 | QueryGlobalizationUserSettingsStatus | |
| 1289 | QueryIdleProcessorCycleTime | |
| 1290 | QueryIdleProcessorCycleTimeEx | |
| 1291 | QueryInterruptTime | |
| 1292 | QueryInterruptTimePrecise | |
| 1293 | QueryMemoryResourceNotification | |
| 1294 | QueryOptionalDelayLoadedAPI | |
| 1295 | QueryPerformanceCounter | |
| 1296 | QueryPerformanceFrequency | |
| 1297 | QueryProcessAffinityUpdateMode | |
| 1298 | QueryProcessCycleTime | |
| 1299 | QueryProtectedPolicy | |
| 1300 | QuerySecurityAccessMask | |
| 1301 | QueryStateAtomValueInfo | |
| 1302 | QueryStateContainerCreatedNew | |
| 1303 | QueryStateContainerItemInfo | |
| 1304 | QueryThreadCycleTime | |
| 1305 | QueryThreadpoolStackInformation | |
| 1306 | QueryUnbiasedInterruptTime | |
| 1307 | QueryUnbiasedInterruptTimePrecise | |
| 1308 | QueryVirtualMemoryInformation | |
| 1309 | QueryWorkingSet | |
| 1310 | QueryWorkingSetEx | |
| 1311 | QueueUserAPC | |
| 1312 | QueueUserWorkItem | |
| 1313 | QuirkGetData | |
| 1314 | QuirkGetData2 | |
| 1315 | QuirkIsEnabled | |
| 1316 | QuirkIsEnabled2 | |
| 1317 | QuirkIsEnabled3 | |
| 1318 | QuirkIsEnabledForPackage | |
| 1319 | QuirkIsEnabledForPackage2 | |
| 1320 | QuirkIsEnabledForPackage3 | |
| 1321 | QuirkIsEnabledForPackage4 | |
| 1322 | QuirkIsEnabledForProcess | |
| 1323 | RaiseCustomSystemEventTrigger | |
| 1324 | RaiseException | |
| 1325 | RaiseFailFastException | |
| 1326 | ReOpenFile | |
| 1327 | ReadConsoleA | |
| 1328 | ReadConsoleInputA | |
| 1329 | ReadConsoleInputExA | |
| 1330 | ReadConsoleInputExW | |
| 1331 | ReadConsoleInputW | |
| 1332 | ReadConsoleOutputA | |
| 1333 | ReadConsoleOutputAttribute | |
| 1334 | ReadConsoleOutputCharacterA | |
| 1335 | ReadConsoleOutputCharacterW | |
| 1336 | ReadConsoleOutputW | |
| 1337 | ReadConsoleW | |
| 1338 | ReadDirectoryChangesExW | |
| 1339 | ReadDirectoryChangesW | |
| 1340 | ReadFile | |
| 1341 | ReadFileEx | |
| 1342 | ReadFileScatter | |
| 1343 | ReadProcessMemory | |
| 1344 | ReadStateAtomValue | |
| 1345 | ReadStateContainerValue | |
| 1346 | ReclaimVirtualMemory | |
| 1347 | RefreshPackageInfo | |
| 1348 | RefreshPolicyExInternal | |
| 1349 | RefreshPolicyInternal | |
| 1350 | RegCloseKey | |
| 1351 | RegCopyTreeW | |
| 1352 | RegCreateKeyExA | |
| 1353 | RegCreateKeyExInternalA | |
| 1354 | RegCreateKeyExInternalW | |
| 1355 | RegCreateKeyExW | |
| 1356 | RegDeleteKeyExA | |
| 1357 | RegDeleteKeyExInternalA | |
| 1358 | RegDeleteKeyExInternalW | |
| 1359 | RegDeleteKeyExW | |
| 1360 | RegDeleteKeyValueA | |
| 1361 | RegDeleteKeyValueW | |
| 1362 | RegDeleteTreeA | |
| 1363 | RegDeleteTreeW | |
| 1364 | RegDeleteValueA | |
| 1365 | RegDeleteValueW | |
| 1366 | RegDisablePredefinedCacheEx | |
| 1367 | RegEnumKeyExA | |
| 1368 | RegEnumKeyExW | |
| 1369 | RegEnumValueA | |
| 1370 | RegEnumValueW | |
| 1371 | RegFlushKey | |
| 1372 | RegGetKeySecurity | |
| 1373 | RegGetValueA | |
| 1374 | RegGetValueW | |
| 1375 | RegKrnGetAppKeyEventAddressInternal | |
| 1376 | RegKrnGetAppKeyLoaded | |
| 1377 | RegKrnGetClassesEnumTableAddressInternal | |
| 1378 | RegKrnGetHKEY_ClassesRootAddress | |
| 1379 | RegKrnGetTermsrvRegistryExtensionFlags | |
| 1380 | RegKrnResetAppKeyLoaded | |
| 1381 | RegKrnSetDllHasThreadStateGlobal | |
| 1382 | RegKrnSetTermsrvRegistryExtensionFlags | |
| 1383 | RegLoadAppKeyA | |
| 1384 | RegLoadAppKeyW | |
| 1385 | RegLoadKeyA | |
| 1386 | RegLoadKeyW | |
| 1387 | RegLoadMUIStringA | |
| 1388 | RegLoadMUIStringW | |
| 1389 | RegNotifyChangeKeyValue | |
| 1390 | RegOpenCurrentUser | |
| 1391 | RegOpenKeyExA | |
| 1392 | RegOpenKeyExInternalA | |
| 1393 | RegOpenKeyExInternalW | |
| 1394 | RegOpenKeyExW | |
| 1395 | RegOpenUserClassesRoot | |
| 1396 | RegQueryInfoKeyA | |
| 1397 | RegQueryInfoKeyW | |
| 1398 | RegQueryMultipleValuesA | |
| 1399 | RegQueryMultipleValuesW | |
| 1400 | RegQueryValueExA | |
| 1401 | RegQueryValueExW | |
| 1402 | RegRestoreKeyA | |
| 1403 | RegRestoreKeyW | |
| 1404 | RegSaveKeyExA | |
| 1405 | RegSaveKeyExW | |
| 1406 | RegSetKeySecurity | |
| 1407 | RegSetKeyValueA | |
| 1408 | RegSetKeyValueW | |
| 1409 | RegSetValueExA | |
| 1410 | RegSetValueExW | |
| 1411 | RegUnLoadKeyA | |
| 1412 | RegUnLoadKeyW | |
| 1413 | RegisterBadMemoryNotification | |
| 1414 | RegisterGPNotificationInternal | |
| 1415 | RegisterStateChangeNotification | |
| 1416 | RegisterStateLock | |
| 1417 | RegisterTraceGuidsW | |
| 1418 | RegisterWaitForSingleObjectEx | |
| 1419 | ReleaseActCtx | |
| 1420 | ReleaseMutex | |
| 1421 | ReleaseMutexWhenCallbackReturns | |
| 1422 | ReleaseSRWLockExclusive | |
| 1423 | ReleaseSRWLockShared | |
| 1424 | ReleaseSemaphore | |
| 1425 | ReleaseSemaphoreWhenCallbackReturns | |
| 1426 | ReleaseStateLock | |
| 1427 | RemapPredefinedHandleInternal | |
| 1428 | RemoveDirectoryA | |
| 1429 | RemoveDirectoryW | |
| 1430 | RemoveDllDirectory | |
| 1431 | RemoveExtensionProgIds | |
| 1432 | RemovePackageFromFamilyXref | |
| 1433 | RemovePackageStatus | |
| 1434 | RemovePackageStatusForUser | |
| 1435 | RemoveVectoredContinueHandler | |
| 1436 | RemoveVectoredExceptionHandler | |
| 1437 | ReplaceFileExInternal | |
| 1438 | ReplaceFileW | |
| 1439 | ResetEvent | |
| 1440 | ResetState | |
| 1441 | ResetWriteWatch | |
| 1442 | ResizePseudoConsole | |
| 1443 | ResolveDelayLoadedAPI | |
| 1444 | ResolveDelayLoadsFromDll | |
| 1445 | ResolveLocaleName | |
| 1446 | RestoreLastError | |
| 1447 | ResumeThread | |
| 1448 | RevertToSelf | |
| 1449 | RsopLoggingEnabledInternal | |
| 1450 | SHCoCreateInstance | |
| 1451 | SHCreateDirectoryExW | |
| 1452 | SHExpandEnvironmentStringsA | |
| 1453 | SHExpandEnvironmentStringsW | |
| 1454 | SHGetDesktopFolder | |
| 1455 | SHGetFileInfoW | |
| 1456 | SHGetFolderLocation | |
| 1457 | SHGetFolderPathA | |
| 1458 | SHGetFolderPathAndSubDirW | |
| 1459 | SHGetFolderPathW | |
| 1460 | SHGetInstanceExplorer | |
| 1461 | SHGetKnownFolderPath | |
| 1462 | SHGetSpecialFolderPathA | |
| 1463 | SHGetSpecialFolderPathW | |
| 1464 | SHLoadIndirectString | |
| 1465 | SHLoadIndirectStringInternal | |
| 1466 | SHRegCloseUSKey | |
| 1467 | SHRegCreateUSKeyA | |
| 1468 | SHRegCreateUSKeyW | |
| 1469 | SHRegDeleteEmptyUSKeyA | |
| 1470 | SHRegDeleteEmptyUSKeyW | |
| 1471 | SHRegDeleteUSValueA | |
| 1472 | SHRegDeleteUSValueW | |
| 1473 | SHRegEnumUSKeyA | |
| 1474 | SHRegEnumUSKeyW | |
| 1475 | SHRegEnumUSValueA | |
| 1476 | SHRegEnumUSValueW | |
| 1477 | SHRegGetBoolUSValueA | |
| 1478 | SHRegGetBoolUSValueW | |
| 1479 | SHRegGetUSValueA | |
| 1480 | SHRegGetUSValueW | |
| 1481 | SHRegOpenUSKeyA | |
| 1482 | SHRegOpenUSKeyW | |
| 1483 | SHRegQueryInfoUSKeyA | |
| 1484 | SHRegQueryInfoUSKeyW | |
| 1485 | SHRegQueryUSValueA | |
| 1486 | SHRegQueryUSValueW | |
| 1487 | SHRegSetUSValueA | |
| 1488 | SHRegSetUSValueW | |
| 1489 | SHRegWriteUSValueA | |
| 1490 | SHRegWriteUSValueW | |
| 1491 | SHSetKnownFolderPath | |
| 1492 | SHTruncateString | |
| 1493 | SaveAlternatePackageRootPath | |
| 1494 | SaveStateRootFolderPath | |
| 1495 | ScrollConsoleScreenBufferA | |
| 1496 | ScrollConsoleScreenBufferW | |
| 1497 | SearchPathA | |
| 1498 | SearchPathW | |
| 1499 | SetAclInformation | |
| 1500 | SetCachedSigningLevel | |
| 1501 | SetCalendarInfoW | |
| 1502 | SetClientDynamicTimeZoneInformation | |
| 1503 | SetClientTimeZoneInformation | |
| 1504 | SetCommBreak | |
| 1505 | SetCommConfig | |
| 1506 | SetCommMask | |
| 1507 | SetCommState | |
| 1508 | SetCommTimeouts | |
| 1509 | SetComputerNameA | |
| 1510 | SetComputerNameEx2W | |
| 1511 | SetComputerNameExA | |
| 1512 | SetComputerNameExW | |
| 1513 | SetComputerNameW | |
| 1514 | SetConsoleActiveScreenBuffer | |
| 1515 | SetConsoleCP | |
| 1516 | SetConsoleCtrlHandler | |
| 1517 | SetConsoleCursorInfo | |
| 1518 | SetConsoleCursorPosition | |
| 1519 | SetConsoleDisplayMode | |
| 1520 | SetConsoleHistoryInfo | |
| 1521 | SetConsoleInputExeNameA | |
| 1522 | SetConsoleInputExeNameW | |
| 1523 | SetConsoleMode | |
| 1524 | SetConsoleNumberOfCommandsA | |
| 1525 | SetConsoleNumberOfCommandsW | |
| 1526 | SetConsoleOutputCP | |
| 1527 | SetConsoleScreenBufferInfoEx | |
| 1528 | SetConsoleScreenBufferSize | |
| 1529 | SetConsoleTextAttribute | |
| 1530 | SetConsoleTitleA | |
| 1531 | SetConsoleTitleW | |
| 1532 | SetConsoleWindowInfo | |
| 1533 | SetCriticalSectionSpinCount | |
| 1534 | SetCurrentConsoleFontEx | |
| 1535 | SetCurrentDirectoryA | |
| 1536 | SetCurrentDirectoryW | |
| 1537 | SetDefaultDllDirectories | |
| 1538 | SetDynamicTimeZoneInformation | |
| 1539 | SetEndOfFile | |
| 1540 | SetEnvironmentStringsW | |
| 1541 | SetEnvironmentVariableA | |
| 1542 | SetEnvironmentVariableW | |
| 1543 | SetErrorMode | |
| 1544 | SetEvent | |
| 1545 | SetEventWhenCallbackReturns | |
| 1546 | SetExtensionProperty | |
| 1547 | SetFileApisToANSI | |
| 1548 | SetFileApisToOEM | |
| 1549 | SetFileAttributesA | |
| 1550 | SetFileAttributesW | |
| 1551 | SetFileInformationByHandle | |
| 1552 | SetFileIoOverlappedRange | |
| 1553 | SetFilePointer | |
| 1554 | SetFilePointerEx | |
| 1555 | SetFileSecurityW | |
| 1556 | SetFileTime | |
| 1557 | SetFileValidData | |
| 1558 | SetHandleCount | |
| 1559 | SetHandleInformation | |
| 1560 | SetIsDeveloperModeEnabled | |
| 1561 | SetIsSideloadingEnabled | |
| 1562 | SetKernelObjectSecurity | |
| 1563 | SetLastConsoleEventActive | |
| 1564 | SetLastError | |
| 1565 | SetLocalTime | |
| 1566 | SetLocaleInfoW | |
| 1567 | SetNamedPipeHandleState | |
| 1568 | SetPriorityClass | |
| 1569 | SetPrivateObjectSecurity | |
| 1570 | SetPrivateObjectSecurityEx | |
| 1571 | SetProcessAffinityUpdateMode | |
| 1572 | SetProcessDefaultCpuSets | |
| 1573 | SetProcessGroupAffinity | |
| 1574 | SetProcessInformation | |
| 1575 | SetProcessMitigationPolicy | |
| 1576 | SetProcessPreferredUILanguages | |
| 1577 | SetProcessPriorityBoost | |
| 1578 | SetProcessShutdownParameters | |
| 1579 | SetProcessValidCallTargets | |
| 1580 | SetProcessValidCallTargetsForMappedView | |
| 1581 | SetProcessWorkingSetSizeEx | |
| 1582 | SetProtectedPolicy | |
| 1583 | SetProtocolProperty | |
| 1584 | SetRoamingLastObservedChangeTime | |
| 1585 | SetSecurityAccessMask | |
| 1586 | SetSecurityDescriptorControl | |
| 1587 | SetSecurityDescriptorDacl | |
| 1588 | SetSecurityDescriptorGroup | |
| 1589 | SetSecurityDescriptorOwner | |
| 1590 | SetSecurityDescriptorRMControl | |
| 1591 | SetSecurityDescriptorSacl | |
| 1592 | SetStateVersion | |
| 1593 | SetStdHandle | |
| 1594 | SetStdHandleEx | |
| 1595 | SetSystemFileCacheSize | |
| 1596 | SetSystemTime | |
| 1597 | SetSystemTimeAdjustment | |
| 1598 | SetSystemTimeAdjustmentPrecise | |
| 1599 | SetThreadContext | |
| 1600 | SetThreadDescription | |
| 1601 | SetThreadErrorMode | |
| 1602 | SetThreadGroupAffinity | |
| 1603 | SetThreadIdealProcessor | |
| 1604 | SetThreadIdealProcessorEx | |
| 1605 | SetThreadInformation | |
| 1606 | SetThreadLocale | |
| 1607 | SetThreadPreferredUILanguages | |
| 1608 | SetThreadPriority | |
| 1609 | SetThreadPriorityBoost | |
| 1610 | SetThreadSelectedCpuSets | |
| 1611 | SetThreadStackGuarantee | |
| 1612 | SetThreadToken | |
| 1613 | SetThreadUILanguage | |
| 1614 | SetThreadpoolStackInformation | |
| 1615 | SetThreadpoolThreadMaximum | |
| 1616 | SetThreadpoolThreadMinimum | |
| 1617 | SetThreadpoolTimer | |
| 1618 | SetThreadpoolTimerEx | |
| 1619 | SetThreadpoolWait | |
| 1620 | SetThreadpoolWaitEx | |
| 1621 | SetTimeZoneInformation | |
| 1622 | SetTokenInformation | |
| 1623 | SetUnhandledExceptionFilter | |
| 1624 | SetUserGeoID | |
| 1625 | SetUserGeoName | |
| 1626 | SetWaitableTimer | |
| 1627 | SetWaitableTimerEx | |
| 1628 | SetupComm | |
| 1629 | SharedLocalIsEnabled | |
| 1630 | SignalObjectAndWait | |
| 1631 | SizeofResource | |
| 1632 | Sleep | |
| 1633 | SleepConditionVariableCS | |
| 1634 | SleepConditionVariableSRW | |
| 1635 | SleepEx | |
| 1636 | SpecialMBToWC | |
| 1637 | StartThreadpoolIo | |
| 1638 | StmAlignSize | |
| 1639 | StmAllocateFlat | |
| 1640 | StmCoalesceChunks | |
| 1641 | StmDeinitialize | |
| 1642 | StmInitialize | |
| 1643 | StmReduceSize | |
| 1644 | StmReserve | |
| 1645 | StmWrite | |
| 1646 | StrCSpnA | |
| 1647 | StrCSpnIA | |
| 1648 | StrCSpnIW | |
| 1649 | StrCSpnW | |
| 1650 | StrCatBuffA | |
| 1651 | StrCatBuffW | |
| 1652 | StrCatChainW | |
| 1653 | StrChrA | |
| 1654 | StrChrA_MB | |
| 1655 | StrChrIA | |
| 1656 | StrChrIW | |
| 1657 | StrChrNIW | |
| 1658 | StrChrNW | |
| 1659 | StrChrW | |
| 1660 | StrCmpCA | |
| 1661 | StrCmpCW | |
| 1662 | StrCmpICA | |
| 1663 | StrCmpICW | |
| 1664 | StrCmpIW | |
| 1665 | StrCmpLogicalW | |
| 1666 | StrCmpNA | |
| 1667 | StrCmpNCA | |
| 1668 | StrCmpNCW | |
| 1669 | StrCmpNIA | |
| 1670 | StrCmpNICA | |
| 1671 | StrCmpNICW | |
| 1672 | StrCmpNIW | |
| 1673 | StrCmpNW | |
| 1674 | StrCmpW | |
| 1675 | StrCpyNW | |
| 1676 | StrCpyNXA | |
| 1677 | StrCpyNXW | |
| 1678 | StrDupA | |
| 1679 | StrDupW | |
| 1680 | StrIsIntlEqualA | |
| 1681 | StrIsIntlEqualW | |
| 1682 | StrPBrkA | |
| 1683 | StrPBrkW | |
| 1684 | StrRChrA | |
| 1685 | StrRChrIA | |
| 1686 | StrRChrIW | |
| 1687 | StrRChrW | |
| 1688 | StrRStrIA | |
| 1689 | StrRStrIW | |
| 1690 | StrSpnA | |
| 1691 | StrSpnW | |
| 1692 | StrStrA | |
| 1693 | StrStrIA | |
| 1694 | StrStrIW | |
| 1695 | StrStrNIW | |
| 1696 | StrStrNW | |
| 1697 | StrStrW | |
| 1698 | StrToInt64ExA | |
| 1699 | StrToInt64ExW | |
| 1700 | StrToIntA | |
| 1701 | StrToIntExA | |
| 1702 | StrToIntExW | |
| 1703 | StrToIntW | |
| 1704 | StrTrimA | |
| 1705 | StrTrimW | |
| 1706 | SubmitThreadpoolWork | |
| 1707 | SubscribeEdpEnabledStateChange | |
| 1708 | SubscribeStateChangeNotification | |
| 1709 | SubscribeWdagEnabledStateChange | |
| 1710 | SuspendThread | |
| 1711 | SwitchToFiber | |
| 1712 | SwitchToThread | |
| 1713 | SystemTimeToFileTime | |
| 1714 | SystemTimeToTzSpecificLocalTime | |
| 1715 | SystemTimeToTzSpecificLocalTimeEx | |
| 1716 | TerminateEnclave | |
| 1717 | TerminateProcess | |
| 1718 | TerminateProcessOnMemoryExhaustion | |
| 1719 | TerminateThread | |
| 1720 | TlsAlloc | |
| 1721 | TlsFree | |
| 1722 | TlsGetValue | |
| 1723 | TlsSetValue | |
| 1724 | TraceEvent | |
| 1725 | TraceMessage | |
| 1726 | TraceMessageVa | |
| 1727 | TransactNamedPipe | |
| 1728 | TransmitCommChar | |
| 1729 | TryAcquireSRWLockExclusive | |
| 1730 | TryAcquireSRWLockShared | |
| 1731 | TryEnterCriticalSection | |
| 1732 | TrySubmitThreadpoolCallback | |
| 1733 | TzSpecificLocalTimeToSystemTime | |
| 1734 | TzSpecificLocalTimeToSystemTimeEx | |
| 1735 | UnhandledExceptionFilter | |
| 1736 | UnlockFile | |
| 1737 | UnlockFileEx | |
| 1738 | UnmapViewOfFile | |
| 1739 | UnmapViewOfFile2 | |
| 1740 | UnmapViewOfFileEx | |
| 1741 | UnregisterBadMemoryNotification | |
| 1742 | UnregisterGPNotificationInternal | |
| 1743 | UnregisterStateChangeNotification | |
| 1744 | UnregisterStateLock | |
| 1745 | UnregisterTraceGuids | |
| 1746 | UnregisterWaitEx | |
| 1747 | UnsubscribeEdpEnabledStateChange | |
| 1748 | UnsubscribeStateChangeNotification | |
| 1749 | UnsubscribeWdagEnabledStateChange | |
| 1750 | UpdatePackageStatus | |
| 1751 | UpdatePackageStatusForUser | |
| 1752 | UpdatePackageStatusForUserSid | |
| 1753 | UpdateProcThreadAttribute | |
| 1754 | UrlApplySchemeA | |
| 1755 | UrlApplySchemeW | |
| 1756 | UrlCanonicalizeA | |
| 1757 | UrlCanonicalizeW | |
| 1758 | UrlCombineA | |
| 1759 | UrlCombineW | |
| 1760 | UrlCompareA | |
| 1761 | UrlCompareW | |
| 1762 | UrlCreateFromPathA | |
| 1763 | UrlCreateFromPathW | |
| 1764 | UrlEscapeA | |
| 1765 | UrlEscapeW | |
| 1766 | UrlFixupW | |
| 1767 | UrlGetLocationA | |
| 1768 | UrlGetLocationW | |
| 1769 | UrlGetPartA | |
| 1770 | UrlGetPartW | |
| 1771 | UrlHashA | |
| 1772 | UrlHashW | |
| 1773 | UrlIsA | |
| 1774 | UrlIsNoHistoryA | |
| 1775 | UrlIsNoHistoryW | |
| 1776 | UrlIsOpaqueA | |
| 1777 | UrlIsOpaqueW | |
| 1778 | UrlIsW | |
| 1779 | UrlUnescapeA | |
| 1780 | UrlUnescapeW | |
| 1781 | VerFindFileA | |
| 1782 | VerFindFileW | |
| 1783 | VerLanguageNameA | |
| 1784 | VerLanguageNameW | |
| 1785 | VerQueryValueA | |
| 1786 | VerQueryValueW | |
| 1787 | VerSetConditionMask | |
| 1788 | VerifyApplicationUserModelId | |
| 1789 | VerifyApplicationUserModelIdA | |
| 1790 | VerifyPackageFamilyName | |
| 1791 | VerifyPackageFamilyNameA | |
| 1792 | VerifyPackageFullName | |
| 1793 | VerifyPackageFullNameA | |
| 1794 | VerifyPackageId | |
| 1795 | VerifyPackageIdA | |
| 1796 | VerifyPackageRelativeApplicationId | |
| 1797 | VerifyPackageRelativeApplicationIdA | |
| 1798 | VerifyScripts | |
| 1799 | VirtualAlloc | |
| 1800 | VirtualAlloc2 | |
| 1801 | VirtualAlloc2FromApp | |
| 1802 | VirtualAllocEx | |
| 1803 | VirtualAllocExNuma | |
| 1804 | VirtualAllocFromApp | |
| 1805 | VirtualFree | |
| 1806 | VirtualFreeEx | |
| 1807 | VirtualLock | |
| 1808 | VirtualProtect | |
| 1809 | VirtualProtectEx | |
| 1810 | VirtualProtectFromApp | |
| 1811 | VirtualQuery | |
| 1812 | VirtualQueryEx | |
| 1813 | VirtualUnlock | |
| 1814 | VirtualUnlockEx | |
| 1815 | WTSGetServiceSessionId | |
| 1816 | WTSIsServerContainer | |
| 1817 | WaitCommEvent | |
| 1818 | WaitForDebugEvent | |
| 1819 | WaitForDebugEventEx | |
| 1820 | WaitForMachinePolicyForegroundProcessingInternal | |
| 1821 | WaitForMultipleObjects | |
| 1822 | WaitForMultipleObjectsEx | |
| 1823 | WaitForSingleObject | |
| 1824 | WaitForSingleObjectEx | |
| 1825 | WaitForThreadpoolIoCallbacks | |
| 1826 | WaitForThreadpoolTimerCallbacks | |
| 1827 | WaitForThreadpoolWaitCallbacks | |
| 1828 | WaitForThreadpoolWorkCallbacks | |
| 1829 | WaitForUserPolicyForegroundProcessingInternal | |
| 1830 | WaitNamedPipeW | |
| 1831 | WaitOnAddress | |
| 1832 | WakeAllConditionVariable | |
| 1833 | WakeByAddressAll | |
| 1834 | WakeByAddressSingle | |
| 1835 | WakeConditionVariable | |
| 1836 | WerGetFlags | |
| 1837 | WerRegisterAdditionalProcess | |
| 1838 | WerRegisterAppLocalDump | |
| 1839 | WerRegisterCustomMetadata | |
| 1840 | WerRegisterExcludedMemoryBlock | |
| 1841 | WerRegisterFile | |
| 1842 | WerRegisterMemoryBlock | |
| 1843 | WerRegisterRuntimeExceptionModule | |
| 1844 | WerSetFlags | |
| 1845 | WerUnregisterAdditionalProcess | |
| 1846 | WerUnregisterAppLocalDump | |
| 1847 | WerUnregisterCustomMetadata | |
| 1848 | WerUnregisterExcludedMemoryBlock | |
| 1849 | WerUnregisterFile | |
| 1850 | WerUnregisterMemoryBlock | |
| 1851 | WerUnregisterRuntimeExceptionModule | |
| 1852 | WerpNotifyLoadStringResource | |
| 1853 | WerpNotifyUseStringResource | |
| 1854 | WideCharToMultiByte | |
| 1855 | Wow64DisableWow64FsRedirection | |
| 1856 | Wow64RevertWow64FsRedirection | |
| 1857 | Wow64SetThreadDefaultGuestMachine | |
| 1858 | WriteConsoleA | |
| 1859 | WriteConsoleInputA | |
| 1860 | WriteConsoleInputW | |
| 1861 | WriteConsoleOutputA | |
| 1862 | WriteConsoleOutputAttribute | |
| 1863 | WriteConsoleOutputCharacterA | |
| 1864 | WriteConsoleOutputCharacterW | |
| 1865 | WriteConsoleOutputW | |
| 1866 | WriteConsoleW | |
| 1867 | WriteFile | |
| 1868 | WriteFileEx | |
| 1869 | WriteFileGather | |
| 1870 | WriteProcessMemory | |
| 1871 | WriteStateAtomValue | |
| 1872 | WriteStateContainerValue | |
| 1873 | ZombifyActCtx | |
| 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 | |
| 1892 | atexit | |
| 1893 | exit | |
| 1894 | hgets | |
| 1895 | hwprintf | |
| 1896 | lstrcmp | |
| 1897 | lstrcmpA | |
| 1898 | lstrcmpW | |
| 1899 | lstrcmpi | |
| 1900 | lstrcmpiA | |
| 1901 | lstrcmpiW | |
| 1902 | lstrcpyn | |
| 1903 | lstrcpynA | |
| 1904 | lstrcpynW | |
| 1905 | lstrlen | |
| 1906 | lstrlenA | |
| 1907 | lstrlenW | |
| 1908 | time | |
| 1909 | wprintf |
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 | ; | |
| 6 | LIBRARY "KeyboardFilterCore.DLL" | |
| 7 | EXPORTS | |
| 8 | HookMain |
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 | ; | |
| 6 | LIBRARY "keyiso.dll" | |
| 7 | EXPORTS | |
| 8 | KeyIsoServiceMain | |
| 9 | KeyIsoSetAuditingInterface |
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 | ; | |
| 6 | LIBRARY "l2gpstore.dll" | |
| 7 | EXPORTS | |
| 8 | L2GPPolicyDataDelete | |
| 9 | L2GPPolicyDataDeleteAll | |
| 10 | L2GPPolicyDataRead | |
| 11 | L2GPPolicyDataWrite | |
| 12 | L2GPPolicyFreeMem | |
| 13 | L2GPPolicyStoreClose | |
| 14 | L2GPPolicyStoreOpen |
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 | ; | |
| 6 | LIBRARY "LangCleanupSysprepAction.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_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 | ; | |
| 6 | LIBRARY "HOMEGROUPLISTENER.dll" | |
| 7 | EXPORTS | |
| 8 | ListenerServiceMain |
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 | ; | |
| 6 | LIBRARY "LIVESSP.dll" | |
| 7 | EXPORTS | |
| 8 | SpLsaModeInitialize | |
| 9 | SpUserModeInitialize |
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 | ; | |
| 6 | LIBRARY "LLTDAPI.DLL" | |
| 7 | EXPORTS | |
| 8 | LLTDCreateEnumerator | |
| 9 | LLTDCreateMapFromXML | |
| 10 | LLTDCreateMapper | |
| 11 | LLTDCreateNode |
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 | ; | |
| 6 | LIBRARY "LLTDSVC.DLL" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "LocalSpl.dll" | |
| 7 | EXPORTS | |
| 8 | ord_400 @400 | |
| 9 | LclIsSessionZero | |
| 10 | LclPromptUIPerSessionUser | |
| 11 | SplAddCSRPrinter | |
| 12 | SplDoesCSRPrinterDevnodeExist | |
| 13 | SplEnumJobNamedProperties | |
| 14 | SplGetDriverUpdateStatus | |
| 15 | SplGetJobExtra | |
| 16 | SplGetLocalDevMode | |
| 17 | SplIsDriverInstalled | |
| 18 | SplIsLocalDriverAvailable | |
| 19 | SplIsValidUserPropertyBag | |
| 20 | SplNotifyServerStatus | |
| 21 | SplReenumeratePorts | |
| 22 | SplSetCSRPrinterDevnode | |
| 23 | SplSetDriverUpdateStatus | |
| 24 | SplSetJobError | |
| 25 | SplSetJobExtra | |
| 26 | ClosePrintProcessor | |
| 27 | ControlPrintProcessor | |
| 28 | EnumPrintProcessorDatatypesW | |
| 29 | GetPrintProcessorCapabilities | |
| 30 | InitializePrintMonitor2 | |
| 31 | InitializePrintProvidor | |
| 32 | LocalAddForm | |
| 33 | LocalDeleteForm | |
| 34 | LocalEnumForms | |
| 35 | LocalReadPrinter | |
| 36 | LocalSetForm | |
| 37 | OpenPrintProcessor | |
| 38 | PrintDocumentOnPrintProcessor | |
| 39 | SplAbortPrinter | |
| 40 | SplAddForm | |
| 41 | SplAddJob | |
| 42 | SplAddMonitor | |
| 43 | SplAddPort | |
| 44 | SplAddPortEx | |
| 45 | SplAddPrintProcessor | |
| 46 | SplAddPrinter | |
| 47 | SplAddPrinterDriverEx | |
| 48 | SplClosePrinter | |
| 49 | SplCloseSpooler | |
| 50 | SplConfigChange | |
| 51 | SplCopyFileEvent | |
| 52 | SplCopyNumberOfFiles | |
| 53 | SplCreatePrinterIC | |
| 54 | SplCreateSpooler | |
| 55 | SplDeleteForm | |
| 56 | SplDeleteJobNamedProperty | |
| 57 | SplDeleteMonitor | |
| 58 | SplDeletePort | |
| 59 | SplDeletePrintProcCacheData | |
| 60 | SplDeletePrintProcessor | |
| 61 | SplDeletePrinter | |
| 62 | SplDeletePrinterData | |
| 63 | SplDeletePrinterDataEx | |
| 64 | SplDeletePrinterDriverEx | |
| 65 | SplDeletePrinterIC | |
| 66 | SplDeletePrinterKey | |
| 67 | SplDeletePrinterWithJobs | |
| 68 | SplDeleteSpooler | |
| 69 | SplDriverEvent | |
| 70 | SplEndDocPrinter | |
| 71 | SplEndPagePrinter | |
| 72 | SplEnumForms | |
| 73 | SplEnumJobs | |
| 74 | SplEnumMonitors | |
| 75 | SplEnumPorts | |
| 76 | SplEnumPrintProcCacheData | |
| 77 | SplEnumPrintProcessorDatatypes | |
| 78 | SplEnumPrintProcessors | |
| 79 | SplEnumPrinterData | |
| 80 | SplEnumPrinterDataEx | |
| 81 | SplEnumPrinterDrivers | |
| 82 | SplEnumPrinterKey | |
| 83 | SplEnumPrinters | |
| 84 | SplGetDriverDir | |
| 85 | SplGetForm | |
| 86 | SplGetJob | |
| 87 | SplGetJobNamedPropertyValue | |
| 88 | SplGetPrintClassObject | |
| 89 | SplGetPrintClassObject_4CSR | |
| 90 | SplGetPrintProcCacheData | |
| 91 | SplGetPrintProcessorDirectory | |
| 92 | SplGetPrinter | |
| 93 | SplGetPrinterData | |
| 94 | SplGetPrinterDataEx | |
| 95 | SplGetPrinterDriver | |
| 96 | SplGetPrinterDriverDirectory | |
| 97 | SplGetPrinterDriverEx | |
| 98 | SplGetPrinterExtra | |
| 99 | SplGetPrinterExtraEx | |
| 100 | SplGetUserPropertyBag | |
| 101 | SplIsCompatibleDriver | |
| 102 | SplLoadLibraryTheCopyFileModule | |
| 103 | SplMonitorIsInstalled | |
| 104 | SplOpenPrinter | |
| 105 | SplPlayGdiScriptOnPrinterIC | |
| 106 | SplReportJobProcessingProgress | |
| 107 | SplResetPrinter | |
| 108 | SplScheduleJob | |
| 109 | SplSetForm | |
| 110 | SplSetJob | |
| 111 | SplSetJobNamedProperty | |
| 112 | SplSetPrintProcCacheData | |
| 113 | SplSetPrinter | |
| 114 | SplSetPrinterData | |
| 115 | SplSetPrinterDataEx | |
| 116 | SplSetPrinterExtra | |
| 117 | SplSetPrinterExtraEx | |
| 118 | SplStartDocPrinter | |
| 119 | SplStartPagePrinter | |
| 120 | SplWritePrinter | |
| 121 | SplXcvData |
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 | ; | |
| 6 | LIBRARY "lpk.dll" | |
| 7 | EXPORTS | |
| 8 | LpkDrawTextEx | |
| 9 | LpkEditControl DATA | |
| 10 | LpkExtTextOut | |
| 11 | LpkGetCharacterPlacement | |
| 12 | LpkGetTextExtentExPoint | |
| 13 | LpkInitialize | |
| 14 | LpkPSMTextOut | |
| 15 | LpkTabbedTextOut | |
| 16 | LpkUseGDIWidthCache | |
| 17 | ftsWordBreak |
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 | ; | |
| 6 | LIBRARY "LSASRV.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeLsaExtension | |
| 9 | QueryLsaInterface | |
| 10 | LsaDbLookupSidChainRequest | |
| 11 | LsaIAddCredentialKeys | |
| 12 | LsaIAddNamesToLogonSession | |
| 13 | LsaIAdjustTokenObjectIntegrity | |
| 14 | LsaIAdtAuditingEnabledByCategory | |
| 15 | LsaIAdtAuditingEnabledBySubCategory | |
| 16 | LsaIAllocateHeap | |
| 17 | LsaIAllocateHeapZero | |
| 18 | LsaIAuditAccountLogon | |
| 19 | LsaIAuditAccountLogonEx | |
| 20 | LsaIAuditInitializeParametersAndWriteEvent | |
| 21 | LsaIAuditKdcEvent | |
| 22 | LsaIAuditKerberosLogon | |
| 23 | LsaIAuditLogonEx | |
| 24 | LsaIAuditLogonUsingExplicitCreds | |
| 25 | LsaIAuditNotifyPackageLoad | |
| 26 | LsaIAuditPasswordAccessEvent | |
| 27 | LsaIAuditReplay | |
| 28 | LsaIAuditSamEvent | |
| 29 | LsaICallPackage | |
| 30 | LsaICallPackageEx | |
| 31 | LsaICallPackagePassthrough | |
| 32 | LsaICancelNotification | |
| 33 | LsaIChangeSecretCipherKey | |
| 34 | LsaICheckProtectedUserByTokenInfo | |
| 35 | LsaIClearOldSyskey | |
| 36 | LsaICryptProtectData | |
| 37 | LsaICryptProtectDataEx | |
| 38 | LsaICryptUnprotectData | |
| 39 | LsaICryptUnprotectDataEx | |
| 40 | LsaIDereferenceCredHandle | |
| 41 | LsaIDeriveAndEncodeCredentialKeys | |
| 42 | LsaIDsNotifiedObjectChange | |
| 43 | LsaIEfsAcceptSmartcardCredentials | |
| 44 | LsaIEqualLogonProcessName | |
| 45 | LsaIEqualSupplementalTokenInfo | |
| 46 | LsaIEventWritePackageNoCredential | |
| 47 | LsaIEventWritePackageNotCacheLogonUser | |
| 48 | LsaIFilterNamespace | |
| 49 | LsaIFilterSids | |
| 50 | LsaIForestTrustFindMatch | |
| 51 | LsaIFreeForestTrustInfo | |
| 52 | LsaIFreeHeap | |
| 53 | LsaIFreeReturnBuffer | |
| 54 | LsaIFreeSupplementalTokenInfo | |
| 55 | LsaIFree_LSAI_PRIVATE_DATA | |
| 56 | LsaIFree_LSAI_SECRET_ENUM_BUFFER | |
| 57 | LsaIFree_LSAPR_ACCOUNT_ENUM_BUFFER | |
| 58 | LsaIFree_LSAPR_CR_CIPHER_VALUE | |
| 59 | LsaIFree_LSAPR_POLICY_DOMAIN_INFORMATION | |
| 60 | LsaIFree_LSAPR_POLICY_INFORMATION | |
| 61 | LsaIFree_LSAPR_PRIVILEGE_ENUM_BUFFER | |
| 62 | LsaIFree_LSAPR_PRIVILEGE_SET | |
| 63 | LsaIFree_LSAPR_REFERENCED_DOMAIN_LIST | |
| 64 | LsaIFree_LSAPR_SR_SECURITY_DESCRIPTOR | |
| 65 | LsaIFree_LSAPR_TRANSLATED_NAMES | |
| 66 | LsaIFree_LSAPR_TRANSLATED_SIDS | |
| 67 | LsaIFree_LSAPR_TRUSTED_DOMAIN_INFO | |
| 68 | LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER | |
| 69 | LsaIFree_LSAPR_TRUSTED_ENUM_BUFFER_EX | |
| 70 | LsaIFree_LSAPR_TRUST_INFORMATION | |
| 71 | LsaIFree_LSAPR_UNICODE_STRING | |
| 72 | LsaIFree_LSAPR_UNICODE_STRING_BUFFER | |
| 73 | LsaIFree_LSAP_SITENAME_INFO | |
| 74 | LsaIFree_LSAP_SITE_INFO | |
| 75 | LsaIFree_LSAP_SUBNET_INFO | |
| 76 | LsaIFree_LSAP_UPN_SUFFIXES | |
| 77 | LsaIFree_LSA_FOREST_TRUST_COLLISION_INFORMATION | |
| 78 | LsaIFree_LSA_FOREST_TRUST_INFORMATION | |
| 79 | LsaIGetCallInfo | |
| 80 | LsaIGetForestTrustInformation | |
| 81 | LsaIGetLogonGuid | |
| 82 | LsaIGetNameFromLuid | |
| 83 | LsaIGetNbAndDnsDomainNames | |
| 84 | LsaIGetNego2Package | |
| 85 | LsaIGetSiteName | |
| 86 | LsaIGetSupplementalTokenInfo | |
| 87 | LsaIHealthCheck | |
| 88 | LsaIImpersonateClient | |
| 89 | LsaIInitializeNetlogonFuncPtrs | |
| 90 | LsaIIsDomainWithinForest | |
| 91 | LsaIIsDsPaused | |
| 92 | LsaIIsLastInteractiveLogonInfoEnabled | |
| 93 | LsaIIsLocalHost | |
| 94 | LsaIIsSuppressChannelBindingInfo | |
| 95 | LsaIIsTrustedDomainsEnabled | |
| 96 | LsaIKerberosRegisterTrustNotification | |
| 97 | LsaILookupWellKnownName | |
| 98 | LsaIModifyPerformanceCounter | |
| 99 | LsaINoConnectedUserPolicy | |
| 100 | LsaINoMoreWin2KDomain | |
| 101 | LsaINotifyChangeNotification | |
| 102 | LsaINotifyGCStatusChange | |
| 103 | LsaINotifyNetlogonParametersChangeW | |
| 104 | LsaINotifyNewPassword | |
| 105 | LsaINotifyPasswordChanged | |
| 106 | LsaIOpenPolicyTrusted | |
| 107 | LsaIQueryForestTrustInfo | |
| 108 | LsaIQueryInformationPolicyTrusted | |
| 109 | LsaIQueryPackageAttrInLogonSession | |
| 110 | LsaIQuerySiteInfo | |
| 111 | LsaIQuerySubnetInfo | |
| 112 | LsaIQueryUpnSuffixes | |
| 113 | LsaIReferenceCredHandle | |
| 114 | LsaIRegisterLogonSessionCallback | |
| 115 | LsaIRegisterNotification | |
| 116 | LsaIRegisterPolicyChangeNotificationCallback | |
| 117 | LsaIReplicateClientObject | |
| 118 | LsaIRetrieveCurrentUserSid | |
| 119 | LsaISafeMode | |
| 120 | LsaISamIndicatedDsStarted | |
| 121 | LsaISetClientDnsHostName | |
| 122 | LsaISetLogonGuidInLogonSession | |
| 123 | LsaISetLogonInfo | |
| 124 | LsaISetNewSyskey | |
| 125 | LsaISetPackageAttrInLogonSession | |
| 126 | LsaISetSupplementalTokenInfo | |
| 127 | LsaISetTokenDacl | |
| 128 | LsaISetUserFlags | |
| 129 | LsaISetupWasRun | |
| 130 | LsaITransformAuthorizationData | |
| 131 | LsaIUnregisterAllPolicyChangeNotificationCallback | |
| 132 | LsaIUnregisterLogonSessionCallback | |
| 133 | LsaIUnregisterPolicyChangeNotificationCallback | |
| 134 | LsaIUpdateForestTrustInformation | |
| 135 | LsaIUpdateKerbMaxTokenSize | |
| 136 | LsaIUpdateLogonSession | |
| 137 | LsaIValidateTargetInfo | |
| 138 | LsaIVerifyCachability | |
| 139 | LsaIWriteAuditEvent | |
| 140 | LsaIWriteKdcAuthenticationEvent | |
| 141 | LsapAdtAuditingEnabledByLogonId | |
| 142 | LsapAdtAuditingEnabledBySubCategory | |
| 143 | LsapAdtAuditingEnabledHint | |
| 144 | LsapAdtInitParametersArray | |
| 145 | LsapAdtWriteLog | |
| 146 | LsapAllocateLsaHeap | |
| 147 | LsapAllocatePrivateHeap | |
| 148 | LsapAuOpenSam | |
| 149 | LsapAuditFailed | |
| 150 | LsapBuildPrivilegeAuditString | |
| 151 | LsapCheckBootMode | |
| 152 | LsapCloseHandle | |
| 153 | LsapCompareDomainNames | |
| 154 | LsapCrServerGetSessionKey | |
| 155 | LsapCrServerGetSessionKeySafe | |
| 156 | LsapDbAcquireLockEx | |
| 157 | LsapDbApplyTransaction | |
| 158 | LsapDbBuildObjectCaches | |
| 159 | LsapDbCloseHandle | |
| 160 | LsapDbCloseObject | |
| 161 | LsapDbCopyUnicodeAttribute | |
| 162 | LsapDbCopyUnicodeAttributeNoAlloc | |
| 163 | LsapDbCreateObject | |
| 164 | LsapDbDeleteAttributesObject | |
| 165 | LsapDbDeleteObject | |
| 166 | LsapDbDereferenceHandle | |
| 167 | LsapDbDereferenceObject | |
| 168 | LsapDbEnumerateSids | |
| 169 | LsapDbEnumerateTrustedDomainsEx | |
| 170 | LsapDbExpAcquireReadLockTrustedDomainList | |
| 171 | LsapDbExpAcquireWriteLockTrustedDomainList | |
| 172 | LsapDbExpConvertReadLockTrustedDomainListToExclusive | |
| 173 | LsapDbExpConvertWriteLockTrustedDomainListToShared | |
| 174 | LsapDbExpIsCacheBuilding | |
| 175 | LsapDbExpIsCacheValid | |
| 176 | LsapDbExpIsLockedTrustedDomainList | |
| 177 | LsapDbExpMakeCacheBuilding | |
| 178 | LsapDbExpMakeCacheInvalid | |
| 179 | LsapDbExpMakeCacheValid | |
| 180 | LsapDbExpReleaseLockTrustedDomainList | |
| 181 | LsapDbFreeAttributes | |
| 182 | LsapDbFreeTrustedDomainsEx | |
| 183 | LsapDbGetDbObjectTypeName | |
| 184 | LsapDbGetDbPolicyHandle | |
| 185 | LsapDbGetSecretType | |
| 186 | LsapDbInitializeAttribute | |
| 187 | LsapDbIsStatusConnectionFailure | |
| 188 | LsapDbLookupAddListReferencedDomains | |
| 189 | LsapDbLookupCreateListReferencedDomains | |
| 190 | LsapDbLookupGetDomainInfo | |
| 191 | LsapDbLookupListReferencedDomains | |
| 192 | LsapDbLookupMergeDisjointReferencedDomains | |
| 193 | LsapDbLookupNameChainRequest | |
| 194 | LsapDbLookupNamesInPrimaryDomain | |
| 195 | LsapDbLookupSidsInPrimaryDomain | |
| 196 | LsapDbMakeGuidAttribute | |
| 197 | LsapDbMakeSidAttribute | |
| 198 | LsapDbMakeUnicodeAttribute | |
| 199 | LsapDbOpenObject | |
| 200 | LsapDbQueryInformationPolicy | |
| 201 | LsapDbReadAttribute | |
| 202 | LsapDbReadAttributesObject | |
| 203 | LsapDbReferenceObject | |
| 204 | LsapDbReleaseLockEx | |
| 205 | LsapDbSecretIsMachineAcc | |
| 206 | LsapDbSidToLogicalNameObject | |
| 207 | LsapDbSlowEnumerateTrustedDomains | |
| 208 | LsapDbUpdateCountCompUnmappedNames | |
| 209 | LsapDbVerifyHandle | |
| 210 | LsapDbVerifyInfoQueryTrustedDomain | |
| 211 | LsapDbVerifyInfoSetTrustedDomain | |
| 212 | LsapDbWriteAttributesObject | |
| 213 | LsapDomainRenameHandlerForLogonSessions | |
| 214 | LsapDsInitializeDsStateInfo | |
| 215 | LsapDsUnitializeDsStateInfo | |
| 216 | LsapDssetupInitializeGetPrimaryDomainInformationOpState | |
| 217 | LsapDuplicateSid | |
| 218 | LsapDuplicateString | |
| 219 | LsapFreeLsaHeap | |
| 220 | LsapFreePrivateHeap | |
| 221 | LsapFreeString | |
| 222 | LsapGetAccountDomainHandle | |
| 223 | LsapGetCapeNamesForCap | |
| 224 | LsapGetGlobalRestrictAnonymous | |
| 225 | LsapGetHourlyLogLevel | |
| 226 | LsapGetLogonSessionAccountInfoEx | |
| 227 | LsapGetLookupRestrictIsolatedNameLevel | |
| 228 | LsapGetPolicyHandle | |
| 229 | LsapGetWellKnownSid | |
| 230 | LsapInitLsa | |
| 231 | LsapInitializeLsaDb | |
| 232 | LsapIsBuiltinDomain | |
| 233 | LsapIsSamOpened | |
| 234 | LsapOpenSam | |
| 235 | LsapQueryClientInfo | |
| 236 | LsapRemoveTrailingDot | |
| 237 | LsapRpcCopySid | |
| 238 | LsapRpcCopyUnicodeString | |
| 239 | LsapRtlValidateControllerTrustedDomain | |
| 240 | LsapRtlValidateControllerTrustedDomainByHandle | |
| 241 | LsapSetErrorInfo | |
| 242 | LsapSidListSize | |
| 243 | LsapTraceEvent | |
| 244 | LsapTraceEventWithData | |
| 245 | LsapTruncateUnicodeString | |
| 246 | LsarClose | |
| 247 | LsarCreateSecret | |
| 248 | LsarDeleteObject | |
| 249 | LsarEnumerateTrustedDomainsEx | |
| 250 | LsarLookupSids | |
| 251 | LsarOpenPolicy | |
| 252 | LsarOpenSecret | |
| 253 | LsarQueryDomainInformationPolicy | |
| 254 | LsarQueryInformationPolicy | |
| 255 | LsarQuerySecret | |
| 256 | LsarQueryTrustedDomainInfoByName | |
| 257 | LsarRetrievePrivateData | |
| 258 | LsarSetInformationPolicy | |
| 259 | LsarSetSecret | |
| 260 | LsarSetTrustedDomainInfoByName | |
| 261 | LsarStorePrivateData | |
| 262 | ServiceInit | |
| 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 | ; | |
| 6 | LIBRARY "MaintenanceUI.dll" | |
| 7 | EXPORTS | |
| 8 | StartMaintenance | |
| 9 | StopMaintenance |
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 | ; | |
| 6 | LIBRARY "McxDriv.dll" | |
| 7 | EXPORTS | |
| 8 | Mcx2Install |
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 | ; | |
| 6 | LIBRARY "mfasfsrcsnk.dll" | |
| 7 | EXPORTS | |
| 8 | MFCreateASFContentInfo | |
| 9 | MFCreateASFIndexer | |
| 10 | MFCreateASFIndexerByteStream | |
| 11 | MFCreateASFMediaSink | |
| 12 | MFCreateASFMediaSinkActivate | |
| 13 | MFCreateASFMediaSinkActivateFromByteStream | |
| 14 | MFCreateASFMediaSinkActivateNoInit | |
| 15 | MFCreateASFMultiplexer | |
| 16 | MFCreateASFMutex | |
| 17 | MFCreateASFProfile | |
| 18 | MFCreateASFProfileFromPresentationDescriptor | |
| 19 | MFCreateASFSplitter | |
| 20 | MFCreateASFStreamConfig | |
| 21 | MFCreateASFStreamPrioritization | |
| 22 | MFCreateASFStreamSelector | |
| 23 | MFCreateASFStreamingMediaSink | |
| 24 | MFCreateASFStreamingMediaSinkActivate | |
| 25 | MFCreateASFStreamingMediaSinkActivateNoInit | |
| 26 | MFCreatePresentationDescriptorFromASFProfile |
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 | ; | |
| 6 | LIBRARY "MFCaptureEngine.DLL" | |
| 7 | EXPORTS | |
| 8 | MFCreateCaptureEngine |
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 | ; | |
| 6 | LIBRARY "mfnetcore.dll" | |
| 7 | EXPORTS | |
| 8 | MFCreateCredentialCache | |
| 9 | MFCreatePartialSeekableByteStream | |
| 10 | MFCreateProxyLocator |
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 | ; | |
| 6 | LIBRARY "mfnetsrc.dll" | |
| 7 | EXPORTS | |
| 8 | MFCreateByteCacheFile | |
| 9 | MFCreateCacheManager | |
| 10 | MFCreateFileBlockMap |
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 | ; | |
| 6 | LIBRARY "MFTranscode.dll" | |
| 7 | EXPORTS | |
| 8 | GetTranscodeComponentCreator | |
| 9 | MFCreateSmartRemuxEngine | |
| 10 | MFCreateTranscodeEngine | |
| 11 | MFCreateTranscodeProfile | |
| 12 | MFCreateTranscodeSinkActivate | |
| 13 | MFCreateTranscodeTopology | |
| 14 | MFCreateTranscodeTopologyFromByteStream | |
| 15 | MFTranscodeGetAudioOutputAvailableTypes |
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 | ; | |
| 6 | LIBRARY "mibincodec.dll" | |
| 7 | EXPORTS | |
| 8 | MI_Application_NewDeserializer_Binary | |
| 9 | MI_Application_NewSerializer_Binary | |
| 10 | SyncBmilReader_Create | |
| 11 | SyncBmilReader_Delete | |
| 12 | SyncBmilReader_ReadInstance | |
| 13 | SyncBmilWriter_Create | |
| 14 | SyncBmilWriter_Delete | |
| 15 | SyncBmilWriter_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 | ; | |
| 6 | LIBRARY "Microsoft.Management.Infrastructure.Native.Unmanaged.DLL" | |
| 7 | EXPORTS | |
| 8 | GetAddr_OperationCallbacks_ClassObjectNeededCallback | |
| 9 | GetAddr_OperationCallbacks_FreeIncludedFileBufferCallback | |
| 10 | GetAddr_OperationCallbacks_GetIncludedFileBufferCallback | |
| 11 | GetAddr_OperationCallbacks_NativeClassCallback | |
| 12 | GetAddr_OperationCallbacks_NativeIndicationCallback | |
| 13 | GetAddr_OperationCallbacks_NativeInstanceCallback | |
| 14 | GetAddr_OperationCallbacks_NativePromptUserCallback | |
| 15 | GetAddr_OperationCallbacks_NativeStreamedParameterResultCallback | |
| 16 | GetAddr_OperationCallbacks_NativeWriteErrorCallback | |
| 17 | GetAddr_OperationCallbacks_NativeWriteMessageCallback | |
| 18 | GetAddr_OperationCallbacks_NativeWriteProgressCallback | |
| 19 | GetAddr_SessionHandle_OnReleaseHandleCompleted | |
| 20 | MI_ApplicationWrapper_Initialize | |
| 21 | MI_ApplicationWrapper_ScheduleCleanupCallback | |
| 22 | MI_ApplicationWrapper_SetAppDomainIsUnloading | |
| 23 | MI_Helpers_GetCurrentSecurityToken | |
| 24 | MI_Helpers_IsClrShuttingDown | |
| 25 | MI_Helpers_SetClrIsNotShuttingDown | |
| 26 | MI_Helpers_SetClrIsShuttingDown | |
| 27 | MI_OperationWrapper_DecrementCount_AndDontWorryAboutLifetimeOfMiDotNetDll | |
| 28 | MI_OperationWrapper_DecrementCount_AndManageLifetimeOfMiDotNetDll | |
| 29 | MI_OperationWrapper_GetClass | |
| 30 | MI_OperationWrapper_GetIndication | |
| 31 | MI_OperationWrapper_GetInstance | |
| 32 | MI_OperationWrapper_Initialize | |
| 33 | MI_OperationWrapper_ScheduleDrainingWorkIfNeeded | |
| 34 | MI_OperationWrapper_SetupDrainingIfNeeded | |
| 35 | UnmanagedMI_GetMiClientFT_V1 | |
| 36 | UnmanagedMI_GetMiEvaluatorFT_V1 | |
| 37 | UnmanagedMI_GetMiMonitoringFT_V1 | |
| 38 | UnmanagedMI_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 | ; | |
| 6 | LIBRARY "mimofcodec.dll" | |
| 7 | EXPORTS | |
| 8 | MI_Application_NewDeserializer_Mof | |
| 9 | MI_Application_NewSerializer_Mof | |
| 10 | MI_MOFParser_Delete | |
| 11 | MI_MOFParser_Init | |
| 12 | MI_MOFParser_Lex | |
| 13 | MI_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 | ; | |
| 6 | LIBRARY "MirrorDrvCompat.dll" | |
| 7 | EXPORTS | |
| 8 | MirrorDrvLoadedNotify |
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 | ; | |
| 6 | LIBRARY "miutils.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 33 | CimErrorFromErrorCode | |
| 34 | CimError_Construct | |
| 35 | CimStatusCodeFromWindowsError | |
| 36 | CimTypeToType | |
| 37 | ClassCache_AddClass | |
| 38 | ClassCache_Delete | |
| 39 | ClassCache_GetClass | |
| 40 | ClassCache_New | |
| 41 | Class_New | |
| 42 | CompareInstance | |
| 43 | CompareValue | |
| 44 | Config_GetProtocolHandlerDetails | |
| 45 | Config_GetRegString | |
| 46 | CreateConversionContext | |
| 47 | DestinationOptions_Create | |
| 48 | DestinationOptions_Duplicate | |
| 49 | DestinationOptions_MigrateOptions | |
| 50 | FindClassDecl | |
| 51 | FindMethodDecl | |
| 52 | FindQualifierInWMIObject | |
| 53 | GetCorrelationId | |
| 54 | GetMethodParameters | |
| 55 | GetReferenceFromWMIObjectPath | |
| 56 | InstanceToWMIEvent | |
| 57 | InstanceToWMIExtendedStatus | |
| 58 | InstanceToWMIObject | |
| 59 | Instance_Clone | |
| 60 | Instance_Construct | |
| 61 | Instance_GetResourceURI | |
| 62 | Instance_InitDynamic | |
| 63 | Instance_IsDynamic | |
| 64 | Instance_MatchKeys | |
| 65 | Instance_New | |
| 66 | Instance_SetElementArray | |
| 67 | Instance_SetElementArrayItem | |
| 68 | Instance_SetResourceURI | |
| 69 | Instance_SetServerName | |
| 70 | IsLifeCycleIndicationQuery | |
| 71 | MI_Hash | |
| 72 | MiErrorCategoryFromWindowsError | |
| 73 | OSC_Batch_Destroy | |
| 74 | OSC_Batch_Get | |
| 75 | OSC_Batch_Strdup | |
| 76 | OSC_StringToMiValue | |
| 77 | OSC_Type_GetSize | |
| 78 | OperationOptions_CopyOptions | |
| 79 | OperationOptions_Create | |
| 80 | OperationOptions_MigrateOptions | |
| 81 | OptionsValueToContextValue | |
| 82 | Options_FindValue | |
| 83 | ParametersToWMIObject | |
| 84 | PropertySet_New | |
| 85 | PropertyToVariant | |
| 86 | PublishClientOperationInfo | |
| 87 | PublishDebugInfo | |
| 88 | PublishDebugMessage | |
| 89 | PublishProviderResult | |
| 90 | PublishProviderWriteError | |
| 91 | PublishProviderWriteMessage | |
| 92 | QualifierFlavorToWMI | |
| 93 | RCClass_AddClassQualifier | |
| 94 | RCClass_AddClassQualifierArray | |
| 95 | RCClass_AddClassQualifierArrayItem | |
| 96 | RCClass_AddElement | |
| 97 | RCClass_AddElementArray | |
| 98 | RCClass_AddElementArrayItem | |
| 99 | RCClass_AddElementQualifier | |
| 100 | RCClass_AddElementQualifierArray | |
| 101 | RCClass_AddElementQualifierArrayItem | |
| 102 | RCClass_AddMethod | |
| 103 | RCClass_AddMethodParameter | |
| 104 | RCClass_AddMethodParameterQualifier | |
| 105 | RCClass_AddMethodParameterQualifierArray | |
| 106 | RCClass_AddMethodParameterQualifierArrayItem | |
| 107 | RCClass_AddMethodQualifier | |
| 108 | RCClass_AddMethodQualifierArray | |
| 109 | RCClass_AddMethodQualifierArrayItem | |
| 110 | RCClass_New | |
| 111 | ResultFromHRESULT | |
| 112 | ResultToHRESULT | |
| 113 | RtlDeleteCachedFastLock | |
| 114 | RtlInitializeCachedFastLock | |
| 115 | RtlInterlockedCompareWait | |
| 116 | RtlInterlockedWakeAll | |
| 117 | RtlQueueAcquireCachedFastLockExclusive | |
| 118 | RtlQueueAcquireCachedFastLockShared | |
| 119 | RtlQueueAcquireFastLockExclusive | |
| 120 | RtlQueueAcquireFastLockShared | |
| 121 | RtlReleaseCachedFastLockExclusive | |
| 122 | RtlReleaseCachedFastLockShared | |
| 123 | RtlReleaseFastLockExclusive | |
| 124 | RtlReleaseFastLockShared | |
| 125 | RtlTryAcquireCachedFastLockShared | |
| 126 | RtlTryAcquireFastLockExclusive | |
| 127 | RtlTryAcquireFastLockShared | |
| 128 | RtlpInitFastLock | |
| 129 | SetCorrelationIdToWbemContext | |
| 130 | SetModifiedPropertyNamesToContext | |
| 131 | SetProperties | |
| 132 | SubscriptionDeliveryOptions_Create | |
| 133 | SubscriptionDeliveryOptions_MigrateOptions | |
| 134 | TypeToCimType | |
| 135 | ValueClear | |
| 136 | ValueToVariant | |
| 137 | VariantArrayToSafeArray | |
| 138 | VariantToValue | |
| 139 | WMIEventToCIMIndication | |
| 140 | WMIExtendedObjectToInstance | |
| 141 | WMIObjectToClass | |
| 142 | WMIObjectToInstance | |
| 143 | WMIQualifierFlavorToMI | |
| 144 | WriteWBEM_MC_CLIENT_REQUEST_FAILURE | |
| 145 | XMLDOM_Free | |
| 146 | XMLDOM_Parse | |
| 147 | XML_FormatError | |
| 148 | XML_Init | |
| 149 | XML_Next | |
| 150 | XML_PutError | |
| 151 | XML_RegisterNameSpace | |
| 152 | XML_SetText | |
| 153 | XML_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 | ; | |
| 6 | LIBRARY "mmcbase.DLL" | |
| 7 | EXPORTS | |
| 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 | |
| 135 | EnterModalLoop | |
| 136 | InsideModalLoop | |
| 137 | LeaveModalLoop | |
| 138 | ReportFxSnapinException |
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 | ; | |
| 6 | LIBRARY "MMCI.DLL" | |
| 7 | EXPORTS | |
| 8 | MediaClassInstaller | |
| 9 | mmWOW64MediaClassInstallerA |
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 | ; | |
| 6 | LIBRARY "mmcico.dll" | |
| 7 | EXPORTS | |
| 8 | MediaClassCoInstaller |
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 | ; | |
| 6 | LIBRARY "MMCNDMGR.DLL" | |
| 7 | EXPORTS | |
| 8 | CreateExecutivePlatform |
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 | ; | |
| 6 | LIBRARY "MMCSS.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | ToServiceMain |
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 | ; | |
| 6 | LIBRARY "Montr_CI.dll" | |
| 7 | EXPORTS | |
| 8 | MonitorClassInstaller |
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 | ; | |
| 6 | LIBRARY "MPREXT.dll" | |
| 7 | EXPORTS | |
| 8 | DoBroadcastSystemMessageWorker | |
| 9 | DoCommandLinePromptWorker | |
| 10 | DoPasswordDialogWorker | |
| 11 | DoProfileErrorDialogWorker | |
| 12 | ShowReconnectDialogEndWorker | |
| 13 | ShowReconnectDialogUIWorker | |
| 14 | ShowReconnectDialogWorker | |
| 15 | WNetConnectionDialog1WWorker | |
| 16 | WNetConnectionDialogWorker | |
| 17 | WNetDisconnectDialog1WWorker | |
| 18 | WNetDisconnectDialogWorker |
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 | ; | |
| 6 | LIBRARY "MPRMSG.dll" | |
| 7 | EXPORTS | |
| 8 | MprmsgGetErrorString |
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 | ; | |
| 6 | LIBRARY "MPSSVC.DLL" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "MrmCoreR.dll" | |
| 7 | EXPORTS | |
| 8 | GetInternalReferenceBlobForManifestValue | |
| 9 | GetMergedSystemPri | |
| 10 | GetStringValueForManifestField | |
| 11 | MergeResourcePackPri | |
| 12 | MergeSystemPriFiles | |
| 13 | ResourceManagerQueueGetCurrentDepth | |
| 14 | ResourceManagerQueueGetString | |
| 15 | ResourceManagerQueueGetStringDirect | |
| 16 | ResourceManagerQueueIsResourceReference | |
| 17 | ResourceManagerQueueReset |
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 | ; | |
| 6 | LIBRARY "mrt100.dll" | |
| 7 | EXPORTS | |
| 8 | GetManagedRuntimeService |
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 | ; | |
| 6 | LIBRARY "MSASN1.dll" | |
| 7 | EXPORTS | |
| 8 | ASN1BERDecBitString | |
| 9 | ASN1BERDecBitString2 | |
| 10 | ASN1BERDecBool | |
| 11 | ASN1BERDecChar16String | |
| 12 | ASN1BERDecChar32String | |
| 13 | ASN1BERDecCharString | |
| 14 | ASN1BERDecCheck | |
| 15 | ASN1BERDecDouble | |
| 16 | ASN1BERDecEndOfContents | |
| 17 | ASN1BERDecEoid | |
| 18 | ASN1BERDecExplicitTag | |
| 19 | ASN1BERDecFlush | |
| 20 | ASN1BERDecGeneralizedTime | |
| 21 | ASN1BERDecLength | |
| 22 | ASN1BERDecMultibyteString | |
| 23 | ASN1BERDecNotEndOfContents | |
| 24 | ASN1BERDecNull | |
| 25 | ASN1BERDecObjectIdentifier | |
| 26 | ASN1BERDecObjectIdentifier2 | |
| 27 | ASN1BERDecOctetString | |
| 28 | ASN1BERDecOctetString2 | |
| 29 | ASN1BERDecOpenType | |
| 30 | ASN1BERDecOpenType2 | |
| 31 | ASN1BERDecPeekTag | |
| 32 | ASN1BERDecS16Val | |
| 33 | ASN1BERDecS32Val | |
| 34 | ASN1BERDecS8Val | |
| 35 | ASN1BERDecSXVal | |
| 36 | ASN1BERDecSkip | |
| 37 | ASN1BERDecTag | |
| 38 | ASN1BERDecU16Val | |
| 39 | ASN1BERDecU32Val | |
| 40 | ASN1BERDecU8Val | |
| 41 | ASN1BERDecUTCTime | |
| 42 | ASN1BERDecUTF8String | |
| 43 | ASN1BERDecZeroChar16String | |
| 44 | ASN1BERDecZeroChar32String | |
| 45 | ASN1BERDecZeroCharString | |
| 46 | ASN1BERDecZeroMultibyteString | |
| 47 | ASN1BERDotVal2Eoid | |
| 48 | ASN1BEREncBitString | |
| 49 | ASN1BEREncBool | |
| 50 | ASN1BEREncChar16String | |
| 51 | ASN1BEREncChar32String | |
| 52 | ASN1BEREncCharString | |
| 53 | ASN1BEREncCheck | |
| 54 | ASN1BEREncDouble | |
| 55 | ASN1BEREncEndOfContents | |
| 56 | ASN1BEREncEoid | |
| 57 | ASN1BEREncExplicitTag | |
| 58 | ASN1BEREncFlush | |
| 59 | ASN1BEREncGeneralizedTime | |
| 60 | ASN1BEREncLength | |
| 61 | ASN1BEREncMultibyteString | |
| 62 | ASN1BEREncNull | |
| 63 | ASN1BEREncObjectIdentifier | |
| 64 | ASN1BEREncObjectIdentifier2 | |
| 65 | ASN1BEREncOctetString | |
| 66 | ASN1BEREncOpenType | |
| 67 | ASN1BEREncRemoveZeroBits | |
| 68 | ASN1BEREncRemoveZeroBits2 | |
| 69 | ASN1BEREncS32 | |
| 70 | ASN1BEREncSX | |
| 71 | ASN1BEREncTag | |
| 72 | ASN1BEREncU32 | |
| 73 | ASN1BEREncUTCTime | |
| 74 | ASN1BEREncUTF8String | |
| 75 | ASN1BEREncZeroMultibyteString | |
| 76 | ASN1BEREoid2DotVal | |
| 77 | ASN1BEREoid_free | |
| 78 | ASN1CEREncBeginBlk | |
| 79 | ASN1CEREncBitString | |
| 80 | ASN1CEREncChar16String | |
| 81 | ASN1CEREncChar32String | |
| 82 | ASN1CEREncCharString | |
| 83 | ASN1CEREncEndBlk | |
| 84 | ASN1CEREncFlushBlkElement | |
| 85 | ASN1CEREncGeneralizedTime | |
| 86 | ASN1CEREncMultibyteString | |
| 87 | ASN1CEREncNewBlkElement | |
| 88 | ASN1CEREncOctetString | |
| 89 | ASN1CEREncUTCTime | |
| 90 | ASN1CEREncZeroMultibyteString | |
| 91 | ASN1DEREncBeginBlk | |
| 92 | ASN1DEREncBitString | |
| 93 | ASN1DEREncChar16String | |
| 94 | ASN1DEREncChar32String | |
| 95 | ASN1DEREncCharString | |
| 96 | ASN1DEREncEndBlk | |
| 97 | ASN1DEREncFlushBlkElement | |
| 98 | ASN1DEREncGeneralizedTime | |
| 99 | ASN1DEREncMultibyteString | |
| 100 | ASN1DEREncNewBlkElement | |
| 101 | ASN1DEREncOctetString | |
| 102 | ASN1DEREncUTCTime | |
| 103 | ASN1DEREncUTF8String | |
| 104 | ASN1DEREncZeroMultibyteString | |
| 105 | ASN1DecAlloc | |
| 106 | ASN1DecRealloc | |
| 107 | ASN1DecSetError | |
| 108 | ASN1EncSetError | |
| 109 | ASN1Free | |
| 110 | ASN1_CloseDecoder | |
| 111 | ASN1_CloseEncoder | |
| 112 | ASN1_CloseEncoder2 | |
| 113 | ASN1_CloseModule | |
| 114 | ASN1_CreateDecoder | |
| 115 | ASN1_CreateDecoderEx | |
| 116 | ASN1_CreateEncoder | |
| 117 | ASN1_CreateModule | |
| 118 | ASN1_Decode | |
| 119 | ASN1_Encode | |
| 120 | ASN1_FreeDecoded | |
| 121 | ASN1_FreeEncoded | |
| 122 | ASN1_GetDecoderOption | |
| 123 | ASN1_GetEncoderOption | |
| 124 | ASN1_SetDecoderOption | |
| 125 | ASN1_SetEncoderOption | |
| 126 | ASN1bitstring_cmp | |
| 127 | ASN1bitstring_free | |
| 128 | ASN1char16string_cmp | |
| 129 | ASN1char16string_free | |
| 130 | ASN1char32string_cmp | |
| 131 | ASN1char32string_free | |
| 132 | ASN1charstring_cmp | |
| 133 | ASN1charstring_free | |
| 134 | ASN1generalizedtime_cmp | |
| 135 | ASN1intx2int32 | |
| 136 | ASN1intx2uint32 | |
| 137 | ASN1intx_add | |
| 138 | ASN1intx_cmp | |
| 139 | ASN1intx_free | |
| 140 | ASN1intx_setuint32 | |
| 141 | ASN1intx_sub | |
| 142 | ASN1intx_uoctets | |
| 143 | ASN1intxisuint32 | |
| 144 | ASN1objectidentifier2_cmp | |
| 145 | ASN1objectidentifier_cmp | |
| 146 | ASN1objectidentifier_free | |
| 147 | ASN1octetstring_cmp | |
| 148 | ASN1octetstring_free | |
| 149 | ASN1open_cmp | |
| 150 | ASN1open_free | |
| 151 | ASN1uint32_uoctets | |
| 152 | ASN1utctime_cmp | |
| 153 | ASN1utf8string_free | |
| 154 | ASN1ztchar16string_cmp | |
| 155 | ASN1ztchar16string_free | |
| 156 | ASN1ztchar32string_cmp | |
| 157 | ASN1ztchar32string_free | |
| 158 | ASN1ztcharstring_cmp | |
| 159 | ASN1ztcharstring_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 | ; | |
| 6 | LIBRARY "MSAUSEREXT.dll" | |
| 7 | EXPORTS | |
| 8 | MsaUI_ClearThreadClientContext | |
| 9 | MsaUI_CloseClientContext | |
| 10 | MsaUI_CreateClientContext | |
| 11 | MsaUI_CredUIPromptForWindowsCredentials | |
| 12 | MsaUI_LaunchWebAuthFlow | |
| 13 | MsaUI_RunWizard | |
| 14 | MsaUI_SetThreadClientContext | |
| 15 | MsaUi_CreateClientContextFromWab | |
| 16 | MsaUser_FormatUserDisplayName | |
| 17 | MsaUser_GetPlatformQualifier | |
| 18 | MsaUser_IsChildAccount | |
| 19 | MsaUser_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 | ; | |
| 6 | LIBRARY "Msclmd.dll" | |
| 7 | EXPORTS | |
| 8 | CardAcquireContext |
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 | ; | |
| 6 | LIBRARY "mscms.dll" | |
| 7 | EXPORTS | |
| 8 | AssociateColorProfileWithDeviceA | |
| 9 | AssociateColorProfileWithDeviceW | |
| 10 | CheckBitmapBits | |
| 11 | CheckColors | |
| 12 | CloseColorProfile | |
| 13 | CloseDisplay | |
| 14 | ColorCplGetDefaultProfileScope | |
| 15 | ColorCplGetDefaultRenderingIntentScope | |
| 16 | ColorCplGetProfileProperties | |
| 17 | ColorCplHasSystemWideAssociationListChanged | |
| 18 | ColorCplInitialize | |
| 19 | ColorCplLoadAssociationList | |
| 20 | ColorCplMergeAssociationLists | |
| 21 | ColorCplOverwritePerUserAssociationList | |
| 22 | ColorCplReleaseProfileProperties | |
| 23 | ColorCplResetSystemWideAssociationListChangedWarning | |
| 24 | ColorCplSaveAssociationList | |
| 25 | ColorCplSetUsePerUserProfiles | |
| 26 | ColorCplUninitialize | |
| 27 | ConvertColorNameToIndex | |
| 28 | ConvertIndexToColorName | |
| 29 | CreateColorTransformA | |
| 30 | CreateColorTransformW | |
| 31 | CreateDeviceLinkProfile | |
| 32 | CreateMultiProfileTransform | |
| 33 | CreateProfileFromLogColorSpaceA | |
| 34 | CreateProfileFromLogColorSpaceW | |
| 35 | DccwCreateDisplayProfileAssociationList | |
| 36 | DccwGetDisplayProfileAssociationList | |
| 37 | DccwGetGamutSize | |
| 38 | DccwReleaseDisplayProfileAssociationList | |
| 39 | DccwSetDisplayProfileAssociationList | |
| 40 | DeleteColorTransform | |
| 41 | DeviceRenameEvent | |
| 42 | DisassociateColorProfileFromDeviceA | |
| 43 | DisassociateColorProfileFromDeviceW | |
| 44 | EnumColorProfilesA | |
| 45 | EnumColorProfilesW | |
| 46 | GenerateCopyFilePaths | |
| 47 | GetCMMInfo | |
| 48 | GetColorDirectoryA | |
| 49 | GetColorDirectoryW | |
| 50 | GetColorProfileElement | |
| 51 | GetColorProfileElementTag | |
| 52 | GetColorProfileFromHandle | |
| 53 | GetColorProfileHeader | |
| 54 | GetCountColorProfileElements | |
| 55 | GetNamedProfileInfo | |
| 56 | GetPS2ColorRenderingDictionary | |
| 57 | GetPS2ColorRenderingIntent | |
| 58 | GetPS2ColorSpaceArray | |
| 59 | GetStandardColorSpaceProfileA | |
| 60 | GetStandardColorSpaceProfileW | |
| 61 | InstallColorProfileA | |
| 62 | InstallColorProfileW | |
| 63 | InternalGetDeviceConfig | |
| 64 | InternalGetPS2CSAFromLCS | |
| 65 | InternalGetPS2ColorRenderingDictionary | |
| 66 | InternalGetPS2ColorSpaceArray | |
| 67 | InternalGetPS2PreviewCRD | |
| 68 | InternalRefreshCalibration | |
| 69 | InternalSetDeviceConfig | |
| 70 | InternalWcsAssociateColorProfileWithDevice | |
| 71 | IsColorProfileTagPresent | |
| 72 | IsColorProfileValid | |
| 73 | OpenColorProfileA | |
| 74 | OpenColorProfileW | |
| 75 | OpenDisplay | |
| 76 | RegisterCMMA | |
| 77 | RegisterCMMW | |
| 78 | SelectCMM | |
| 79 | SetColorProfileElement | |
| 80 | SetColorProfileElementReference | |
| 81 | SetColorProfileElementSize | |
| 82 | SetColorProfileHeader | |
| 83 | SetStandardColorSpaceProfileA | |
| 84 | SetStandardColorSpaceProfileW | |
| 85 | SpoolerCopyFileEvent | |
| 86 | TranslateBitmapBits | |
| 87 | TranslateColors | |
| 88 | UninstallColorProfileA | |
| 89 | UninstallColorProfileW | |
| 90 | UnregisterCMMA | |
| 91 | UnregisterCMMW | |
| 92 | WcsAssociateColorProfileWithDevice | |
| 93 | WcsCheckColors | |
| 94 | WcsCreateIccProfile | |
| 95 | WcsDisassociateColorProfileFromDevice | |
| 96 | WcsEnumColorProfiles | |
| 97 | WcsEnumColorProfilesSize | |
| 98 | WcsGetCalibrationManagementState | |
| 99 | WcsGetDefaultColorProfile | |
| 100 | WcsGetDefaultColorProfileSize | |
| 101 | WcsGetDefaultRenderingIntent | |
| 102 | WcsGetUsePerUserProfiles | |
| 103 | WcsGpCanInstallOrUninstallProfiles | |
| 104 | WcsOpenColorProfileA | |
| 105 | WcsOpenColorProfileW | |
| 106 | WcsSetCalibrationManagementState | |
| 107 | WcsSetDefaultColorProfile | |
| 108 | WcsSetDefaultRenderingIntent | |
| 109 | WcsSetUsePerUserProfiles | |
| 110 | WcsTranslateColors | |
| 111 | InternalGetPS2ColorRenderingDictionary2 | |
| 112 | InternalGetPS2PreviewCRD2 | |
| 113 | InternalGetPS2ColorSpaceArray2 |
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 | ; | |
| 6 | LIBRARY "mscoree.dll" | |
| 7 | EXPORTS | |
| 8 | InitErrors | |
| 9 | PostError | |
| 10 | InitSSAutoEnterThread | |
| 11 | UpdateError | |
| 12 | CloseCtrs | |
| 13 | LoadStringRC | |
| 14 | ReOpenMetaDataWithMemory | |
| 15 | ord_24 @24 | |
| 16 | CollectCtrs | |
| 17 | CorDllMainWorker | |
| 18 | EEDllGetClassObjectFromClass | |
| 19 | GetPrivateContextsPerfCounters | |
| 20 | GetProcessExecutableHeap | |
| 21 | GetStartupFlags | |
| 22 | GetTargetForVTableEntry | |
| 23 | GetTokenForVTableEntry | |
| 24 | LogHelp_LogAssert | |
| 25 | LogHelp_NoGuiOnAssert | |
| 26 | LogHelp_TerminateOnAssert | |
| 27 | OpenCtrs | |
| 28 | SetTargetForVTableEntry | |
| 29 | CLRCreateInstance | |
| 30 | CallFunctionShim | |
| 31 | ClrCreateManagedInstance | |
| 32 | CoEEShutDownCOM | |
| 33 | CoInitializeCor | |
| 34 | CoInitializeEE | |
| 35 | CoUninitializeCor | |
| 36 | CoUninitializeEE | |
| 37 | CorBindToCurrentRuntime | |
| 38 | CorBindToRuntime | |
| 39 | CorBindToRuntimeByCfg | |
| 40 | CorBindToRuntimeByPath | |
| 41 | CorBindToRuntimeByPathEx | |
| 42 | CorBindToRuntimeEx | |
| 43 | CorBindToRuntimeHost | |
| 44 | CorExitProcess | |
| 45 | CorGetSvc | |
| 46 | CorIsLatestSvc | |
| 47 | CorMarkThreadInThreadPool | |
| 48 | CorTickleSvc | |
| 49 | CreateConfigStream | |
| 50 | CreateDebuggingInterfaceFromVersion | |
| 51 | CreateInterface | |
| 52 | EEDllRegisterServer | |
| 53 | EEDllUnregisterServer | |
| 54 | GetAssemblyMDImport | |
| 55 | GetCLRMetaHost | |
| 56 | GetCORRequiredVersion | |
| 57 | GetCORRootDirectory | |
| 58 | GetCORSystemDirectory | |
| 59 | GetCORVersion | |
| 60 | GetCompileInfo | |
| 61 | GetFileVersion | |
| 62 | GetHashFromAssemblyFile | |
| 63 | GetHashFromAssemblyFileW | |
| 64 | GetHashFromBlob | |
| 65 | GetHashFromFile | |
| 66 | GetHashFromFileW | |
| 67 | GetHashFromHandle | |
| 68 | GetHostConfigurationFile | |
| 69 | GetMetaDataInternalInterface | |
| 70 | GetMetaDataInternalInterfaceFromPublic | |
| 71 | GetMetaDataPublicInterfaceFromInternal | |
| 72 | GetPermissionRequests | |
| 73 | GetRealProcAddress | |
| 74 | GetRequestedRuntimeInfo | |
| 75 | GetRequestedRuntimeVersion | |
| 76 | GetRequestedRuntimeVersionForCLSID | |
| 77 | GetVersionFromProcess | |
| 78 | GetXMLElement | |
| 79 | GetXMLElementAttribute | |
| 80 | GetXMLObject | |
| 81 | IEE | |
| 82 | LoadLibraryShim | |
| 83 | LoadLibraryWithPolicyShim | |
| 84 | LoadStringRCEx | |
| 85 | LockClrVersion | |
| 86 | MetaDataGetDispenser | |
| 87 | ND_CopyObjDst | |
| 88 | ND_CopyObjSrc | |
| 89 | ND_RI2 | |
| 90 | ND_RI4 | |
| 91 | ND_RI8 | |
| 92 | ND_RU1 | |
| 93 | ND_WI2 | |
| 94 | ND_WI4 | |
| 95 | ND_WI8 | |
| 96 | ND_WU1 | |
| 97 | ReOpenMetaDataWithMemoryEx | |
| 98 | RunDll32ShimW | |
| 99 | RuntimeOSHandle | |
| 100 | RuntimeOpenImage | |
| 101 | RuntimeReleaseHandle | |
| 102 | StrongNameCompareAssemblies | |
| 103 | StrongNameErrorInfo | |
| 104 | StrongNameFreeBuffer | |
| 105 | StrongNameGetBlob | |
| 106 | StrongNameGetBlobFromImage | |
| 107 | StrongNameGetPublicKey | |
| 108 | StrongNameHashSize | |
| 109 | StrongNameKeyDelete | |
| 110 | StrongNameKeyGen | |
| 111 | StrongNameKeyGenEx | |
| 112 | StrongNameKeyInstall | |
| 113 | StrongNameSignatureGeneration | |
| 114 | StrongNameSignatureGenerationEx | |
| 115 | StrongNameSignatureSize | |
| 116 | StrongNameSignatureVerification | |
| 117 | StrongNameSignatureVerificationEx | |
| 118 | StrongNameSignatureVerificationFromImage | |
| 119 | StrongNameTokenFromAssembly | |
| 120 | StrongNameTokenFromAssemblyEx | |
| 121 | StrongNameTokenFromPublicKey | |
| 122 | TranslateSecurityAttributes | |
| 123 | _CorDllMain | |
| 124 | _CorExeMain | |
| 125 | _CorExeMain2 | |
| 126 | _CorImageUnloading | |
| 127 | _CorValidateImage | |
| 128 | ord_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 | ; | |
| 6 | LIBRARY "MSDART.DLL" | |
| 7 | EXPORTS | |
| 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 | |
| 581 | DllBidEntryPoint | |
| 582 | FXMemAttach | |
| 583 | FXMemDetach | |
| 584 | GetAllocCounters | |
| 585 | GetIUMS | |
| 586 | IrtlAssert | |
| 587 | IrtlTrace | |
| 588 | MPCSInitialize | |
| 589 | MPCSUninitialize | |
| 590 | MPDeleteCriticalSection | |
| 591 | MPInitializeCriticalSection | |
| 592 | MPInitializeCriticalSectionAndSpinCount | |
| 593 | MpGetHeapHandle | |
| 594 | MpHeapAlloc | |
| 595 | MpHeapCreate | |
| 596 | MpHeapDestroy | |
| 597 | MpHeapFree | |
| 598 | MpHeapReAlloc | |
| 599 | MpHeapSize | |
| 600 | MpHeapValidate | |
| 601 | SetIUMS | |
| 602 | SetMemHook | |
| 603 | UMSEnterCSWraper | |
| 604 | mpCalloc | |
| 605 | mpFree | |
| 606 | mpMalloc | |
| 607 | mpRealloc |
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 | ; | |
| 6 | LIBRARY "msdelta.dll" | |
| 7 | EXPORTS | |
| 8 | ApplyDeltaA | |
| 9 | ApplyDeltaB | |
| 10 | ApplyDeltaProvidedB | |
| 11 | ApplyDeltaW | |
| 12 | CreateDeltaA | |
| 13 | CreateDeltaB | |
| 14 | CreateDeltaW | |
| 15 | DeltaFree | |
| 16 | DeltaNormalizeProvidedB | |
| 17 | GetDeltaInfoA | |
| 18 | GetDeltaInfoB | |
| 19 | GetDeltaInfoW | |
| 20 | GetDeltaSignatureA | |
| 21 | GetDeltaSignatureB | |
| 22 | GetDeltaSignatureW |
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 | ; | |
| 6 | LIBRARY "msfeeds.dll" | |
| 7 | EXPORTS | |
| 8 | MsfeedsCreateInstance |
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 | ; | |
| 6 | LIBRARY "MSFTEDIT.dll" | |
| 7 | EXPORTS | |
| 8 | IID_IRichEditOle | |
| 9 | IID_IRichEditOleCallback | |
| 10 | CreateTextServices | |
| 11 | IID_ITextServices | |
| 12 | IID_ITextHost | |
| 13 | IID_ITextHost2 | |
| 14 | DisableOleinitCheck | |
| 15 | RichEditANSIWndProc | |
| 16 | RichEdit10ANSIWndProc | |
| 17 | SetCustomTextOutHandlerEx | |
| 18 | RichEditWndProc | |
| 19 | MathBuildUp | |
| 20 | MathBuildDown | |
| 21 | MathTranslate | |
| 22 | GetMathAlphanumericCode | |
| 23 | GetMathAlphanumeric | |
| 24 | IID_ITextDocument2 | |
| 25 | IID_ITextServices2 | |
| 26 | IID_IRicheditWindowlessAccessibility | |
| 27 | IID_IRicheditUiaOverrides | |
| 28 | ShutdownTextServices | |
| 29 | SetTextServicesDpiCalculationOverride |
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 | ; | |
| 6 | LIBRARY "MSHTML.dll" | |
| 7 | EXPORTS | |
| 8 | ord_100 @100 | |
| 9 | ord_101 @101 | |
| 10 | ord_102 @102 | |
| 11 | ord_103 @103 | |
| 12 | ord_104 @104 | |
| 13 | ord_105 @105 | |
| 14 | ord_106 @106 | |
| 15 | ord_107 @107 | |
| 16 | ClearPhishingFilterData | |
| 17 | ConvertAndEscapePostData | |
| 18 | CreateCoreWebView | |
| 19 | CreateHTMLPropertyPage | |
| 20 | GetColorValueFromString | |
| 21 | GetWebPlatformObject | |
| 22 | IEIsXMLNSRegistered | |
| 23 | IERegisterXMLNS | |
| 24 | MatchExactGetIDsOfNames | |
| 25 | ord_120 @120 | |
| 26 | ord_121 @121 | |
| 27 | ord_122 @122 | |
| 28 | ord_123 @123 | |
| 29 | ord_124 @124 | |
| 30 | ord_125 @125 | |
| 31 | ord_126 @126 | |
| 32 | ord_127 @127 | |
| 33 | ord_128 @128 | |
| 34 | ord_129 @129 | |
| 35 | ord_130 @130 | |
| 36 | PrintHTML | |
| 37 | ShowHTMLDialog | |
| 38 | ShowHTMLDialogEx | |
| 39 | ShowModalDialog | |
| 40 | ShowModelessHTMLDialog | |
| 41 | TravelLogCreateInstance | |
| 42 | TravelLogStgCreateInstance |
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 | ; | |
| 6 | LIBRARY "msire.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "msidcrl40.dll" | |
| 7 | EXPORTS | |
| 8 | Initialize | |
| 9 | Uninitialize | |
| 10 | PassportFreeMemory | |
| 11 | CreateIdentityHandle | |
| 12 | SetCredential | |
| 13 | GetIdentityProperty | |
| 14 | SetIdentityProperty | |
| 15 | CloseIdentityHandle | |
| 16 | AuthIdentityToService | |
| 17 | PersistCredential | |
| 18 | RemovePersistedCredential | |
| 19 | EnumIdentitiesWithCachedCredentials | |
| 20 | NextIdentity | |
| 21 | CloseEnumIdentitiesHandle | |
| 22 | GetAuthState | |
| 23 | LogonIdentity | |
| 24 | HasPersistedCredential | |
| 25 | SetIdentityCallback | |
| 26 | InitializeEx | |
| 27 | GetWebAuthUrl | |
| 28 | LogonIdentityEx | |
| 29 | AuthIdentityToServiceEx | |
| 30 | GetAuthStateEx | |
| 31 | GetCertificate | |
| 32 | CancelPendingRequest | |
| 33 | VerifyCertificate | |
| 34 | GetIdentityPropertyByName | |
| 35 | SetExtendedProperty | |
| 36 | GetExtendedProperty | |
| 37 | GetServiceConfig | |
| 38 | SetIdcrlOptions | |
| 39 | GetWebAuthUrlEx | |
| 40 | EncryptWithSessionKey | |
| 41 | DecryptWithSessionKey | |
| 42 | SetUserExtendedProperty | |
| 43 | GetUserExtendedProperty | |
| 44 | SetChangeNotificationCallback | |
| 45 | RemoveChangeNotificationCallback | |
| 46 | GetExtendedError | |
| 47 | InitializeApp | |
| 48 | EnumerateCertificates | |
| 49 | GenerateCertToken | |
| 50 | GetDeviceId | |
| 51 | SetDeviceConsent | |
| 52 | GenerateDeviceToken | |
| 53 | CreateLinkedIdentityHandle | |
| 54 | IsDeviceIDAdmin | |
| 55 | EnumerateDeviceID | |
| 56 | GetAssertion | |
| 57 | VerifyAssertion | |
| 58 | OpenAuthenticatedBrowser | |
| 59 | LogonIdentityExWithUI | |
| 60 | GetResponseForHttpChallenge | |
| 61 | GetDeviceShortLivedToken | |
| 62 | GetHIPChallenge | |
| 63 | SetHIPSolution | |
| 64 | SetDefaultUserForTarget | |
| 65 | GetDefaultUserForTarget | |
| 66 | UICollectCredential | |
| 67 | AssociateDeviceToUser | |
| 68 | DisassociateDeviceFromUser | |
| 69 | EnumerateUserAssociatedDevices | |
| 70 | UpdateUserAssociatedDeviceProperties | |
| 71 | UIShowWaitDialog | |
| 72 | UIEndWaitDialog | |
| 73 | InitializeIDCRLTraceBuffer | |
| 74 | FlushIDCRLTraceBuffer | |
| 75 | IsMappedError | |
| 76 | GetAuthenticationStatus | |
| 77 | GetConfigDWORDValue | |
| 78 | ProvisionDeviceId | |
| 79 | GetDeviceIdEx | |
| 80 | RenewDeviceId | |
| 81 | DeProvisionDeviceId | |
| 82 | UnPackErrorBlob | |
| 83 | GetDefaultNoUISSOUser | |
| 84 | LogonIdentityExSSO | |
| 85 | StartTracing | |
| 86 | StopTracing | |
| 87 | GetRealmInfo | |
| 88 | CreateIdentityHandleEx | |
| 89 | AddUserToSsoGroup | |
| 90 | GetUsersFromSsoGroup | |
| 91 | RemoveUserFromSsoGroup | |
| 92 | SendOneTimeCode |
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 | ; | |
| 6 | LIBRARY "msiltcfg.dll" | |
| 7 | EXPORTS | |
| 8 | MsiDecomposeDescriptorW | |
| 9 | MsiGetComponentPathW | |
| 10 | MsiGetProductInfoW | |
| 11 | MsiProvideComponentFromDescriptorW | |
| 12 | MsiQueryFeatureStateW | |
| 13 | MsiQueryFeatureStateFromDescriptorW | |
| 14 | MsiSetInternalUI | |
| 15 | MsiAdvertiseScriptW | |
| 16 | MsiQueryProductStateW | |
| 17 | MsiIsProductElevatedW | |
| 18 | MsiReinstallProductW | |
| 19 | MsiConfigureProductExW | |
| 20 | ShutdownMsi | |
| 21 | RestartMsi |
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 | ; | |
| 6 | LIBRARY "msiwer.dll" | |
| 7 | EXPORTS | |
| 8 | OutOfProcessExceptionEventCallback | |
| 9 | OutOfProcessExceptionEventDebuggerLaunchCallback | |
| 10 | OutOfProcessExceptionEventSignatureCallback |
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 | ; | |
| 6 | LIBRARY "mskeyprotcli.dll" | |
| 7 | EXPORTS | |
| 8 | GetKeyProtectionInterface |
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 | ; | |
| 6 | LIBRARY "mskeyprotect.dll" | |
| 7 | EXPORTS | |
| 8 | GetKeyProtectionInterface |
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 | ; | |
| 6 | LIBRARY "MSOEACCT.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | ord_2 @2 | |
| 10 | ord_3 @3 | |
| 11 | ord_4 @4 | |
| 12 | ord_5 @5 | |
| 13 | GetDllMajorVersion | |
| 14 | PropUtil_HrAddBinaryToSTRW | |
| 15 | PropUtil_HrAddDWORDToSTRW | |
| 16 | PropUtil_HrAddSZToSTRW | |
| 17 | HrCreateAccountManager | |
| 18 | ValidEmailAddress |
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 | ; | |
| 6 | LIBRARY "MSOERT2.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | CreateSystemHandleName | |
| 10 | ord_3 @3 | |
| 11 | ord_4 @4 | |
| 12 | ord_5 @5 | |
| 13 | ord_6 @6 | |
| 14 | ord_7 @7 | |
| 15 | ord_8 @8 | |
| 16 | CryptAllocFunc | |
| 17 | ord_10 @10 | |
| 18 | ord_11 @11 | |
| 19 | ord_12 @12 | |
| 20 | CryptFreeFunc | |
| 21 | FInitializeRichEdit | |
| 22 | GetDllMajorVersion | |
| 23 | ord_16 @16 | |
| 24 | ord_17 @17 | |
| 25 | ord_18 @18 | |
| 26 | GetHtmlCharset | |
| 27 | GetRichEdClassStringW | |
| 28 | ord_21 @21 | |
| 29 | ord_22 @22 | |
| 30 | GetStoreRootDirectoryFromRegistryEntry | |
| 31 | ord_24 @24 | |
| 32 | ord_25 @25 | |
| 33 | ord_26 @26 | |
| 34 | ord_27 @27 | |
| 35 | GetStoreRootDirectoryFromRegistryEntryW | |
| 36 | HrGetCertKeyUsage | |
| 37 | IUnknownList_CreateInstance | |
| 38 | IVoidPtrList_CreateInstance | |
| 39 | IsHttpUrlA | |
| 40 | IsHttpUrlW | |
| 41 | SetFontOnRichEd | |
| 42 | StrTokExA | |
| 43 | AppendTempFileList | |
| 44 | BrowseForFolder | |
| 45 | ord_38 @38 | |
| 46 | ord_39 @39 | |
| 47 | ord_40 @40 | |
| 48 | ord_41 @41 | |
| 49 | ord_42 @42 | |
| 50 | ord_43 @43 | |
| 51 | ord_44 @44 | |
| 52 | ord_45 @45 | |
| 53 | ord_46 @46 | |
| 54 | BrowseForFolderW | |
| 55 | CchFileTimeToDateTimeSz | |
| 56 | ord_49 @49 | |
| 57 | ord_50 @50 | |
| 58 | CchFileTimeToDateTimeW | |
| 59 | ord_52 @52 | |
| 60 | ord_53 @53 | |
| 61 | ord_54 @54 | |
| 62 | ord_55 @55 | |
| 63 | ord_56 @56 | |
| 64 | ord_57 @57 | |
| 65 | ord_58 @58 | |
| 66 | ord_59 @59 | |
| 67 | ord_60 @60 | |
| 68 | ord_61 @61 | |
| 69 | ord_62 @62 | |
| 70 | ord_63 @63 | |
| 71 | ord_64 @64 | |
| 72 | ord_65 @65 | |
| 73 | CenterDialog | |
| 74 | ord_67 @67 | |
| 75 | ord_68 @68 | |
| 76 | ord_69 @69 | |
| 77 | ord_70 @70 | |
| 78 | ChConvertFromHex | |
| 79 | CleanupFileNameInPlaceA | |
| 80 | CleanupFileNameInPlaceW | |
| 81 | CleanupGlobalTempFiles | |
| 82 | CopyRegistry | |
| 83 | CrackNotificationPackage | |
| 84 | CreateDataObject | |
| 85 | CreateEnumFormatEtc | |
| 86 | CreateLogFile | |
| 87 | CreateNotify | |
| 88 | CreateStreamOnHFile | |
| 89 | CreateStreamOnHFileW | |
| 90 | CreateTempFile | |
| 91 | CreateTempFileStream | |
| 92 | CreateTempFileW | |
| 93 | DeleteTempFile | |
| 94 | DeleteTempFileOnShutdownEx | |
| 95 | FBuildTempPath | |
| 96 | FBuildTempPathW | |
| 97 | FIsEmptyA | |
| 98 | FIsEmptyW | |
| 99 | FIsHTMLFile | |
| 100 | FIsHTMLFileW | |
| 101 | FIsSpaceA | |
| 102 | FIsSpaceW | |
| 103 | FIsValidFileNameCharA | |
| 104 | FIsValidFileNameCharW | |
| 105 | FMissingCert | |
| 106 | FreeTempFileList | |
| 107 | GenerateUniqueFileName | |
| 108 | GenerateUniqueFileNameW | |
| 109 | GetExePath | |
| 110 | GetTopMostParent | |
| 111 | HrBSTRToLPSZ | |
| 112 | HrCheckTridentMenu | |
| 113 | HrCopyLockBytesToStream | |
| 114 | HrCopyStream | |
| 115 | HrCopyStreamCB | |
| 116 | HrCopyStreamCBEndOnCRLF | |
| 117 | HrCopyStreamToByte | |
| 118 | HrCreatePhonebookEntry | |
| 119 | HrCreateTridentMenu | |
| 120 | HrDecodeObject | |
| 121 | HrEditPhonebookEntryW | |
| 122 | HrFillRasCombo | |
| 123 | HrFindInetTimeZone | |
| 124 | HrGetBodyElement | |
| 125 | HrGetCertificateParam | |
| 126 | HrGetElementImpl | |
| 127 | HrGetMsgParam | |
| 128 | HrGetStreamPos | |
| 129 | HrGetStreamSize | |
| 130 | HrGetStyleSheet | |
| 131 | HrIStreamToBSTR | |
| 132 | HrIStreamWToBSTR | |
| 133 | HrIndexOfMonth | |
| 134 | HrIndexOfWeek | |
| 135 | HrIsStreamUnicode | |
| 136 | HrLPSZCPToBSTR | |
| 137 | HrLPSZToBSTR | |
| 138 | HrRewindStream | |
| 139 | HrSafeGetStreamSize | |
| 140 | HrSetDirtyFlagImpl | |
| 141 | HrStreamSeekBegin | |
| 142 | HrStreamSeekCur | |
| 143 | HrStreamSeekEnd | |
| 144 | HrStreamSeekSet | |
| 145 | HrStreamToByte | |
| 146 | IDrawText | |
| 147 | IsDigit | |
| 148 | IsPrint | |
| 149 | IsUpper | |
| 150 | IsValidFileIfFileUrlW | |
| 151 | MessageBoxInst | |
| 152 | MessageBoxInstW | |
| 153 | OpenFileStream | |
| 154 | OpenFileStreamShare | |
| 155 | ord_150 @150 | |
| 156 | ord_151 @151 | |
| 157 | ord_152 @152 | |
| 158 | ord_153 @153 | |
| 159 | ord_154 @154 | |
| 160 | ord_155 @155 | |
| 161 | ord_156 @156 | |
| 162 | OpenFileStreamShareW | |
| 163 | ord_158 @158 | |
| 164 | ord_159 @159 | |
| 165 | ord_160 @160 | |
| 166 | OpenFileStreamW | |
| 167 | OpenFileStreamWithFlagsW | |
| 168 | PVDecodeObject | |
| 169 | PVGetCertificateParam | |
| 170 | PVGetMsgParam | |
| 171 | PszAllocA | |
| 172 | PszAllocW | |
| 173 | PszDayFromIndex | |
| 174 | PszDupA | |
| 175 | PszDupW | |
| 176 | PszEscapeMenuStringA | |
| 177 | PszEscapeMenuStringW | |
| 178 | PszFromANSIStreamA | |
| 179 | PszMonthFromIndex | |
| 180 | PszScanToCharA | |
| 181 | PszScanToWhiteA | |
| 182 | PszSkipWhiteA | |
| 183 | PszSkipWhiteW | |
| 184 | PszToANSI | |
| 185 | PszToUnicode | |
| 186 | ReplaceChars | |
| 187 | ReplaceCharsW | |
| 188 | RicheditStreamIn | |
| 189 | RicheditStreamOut | |
| 190 | ShellUtil_GetSpecialFolderPath | |
| 191 | StrToUintA | |
| 192 | StrToUintW | |
| 193 | StrTokExW | |
| 194 | StreamSubStringMatchW | |
| 195 | StripCRLF | |
| 196 | SzGetCertificateEmailAddress | |
| 197 | UlStripWhitespace | |
| 198 | UlStripWhitespaceW | |
| 199 | UnlocStrEqNW | |
| 200 | UpdateRebarBandColors | |
| 201 | WriteStreamToFile | |
| 202 | WriteStreamToFileHandle | |
| 203 | WriteStreamToFileW | |
| 204 | _MSG | |
| 205 | ord_200 @200 | |
| 206 | ord_201 @201 | |
| 207 | fGetBrowserUrlEncoding | |
| 208 | strtrim | |
| 209 | strtrimW | |
| 210 | ord_210 @210 | |
| 211 | ord_211 @211 | |
| 212 | ord_214 @214 | |
| 213 | ord_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 | ; | |
| 6 | LIBRARY "mspatchc.dll" | |
| 7 | EXPORTS | |
| 8 | CreatePatchFileA | |
| 9 | CreatePatchFileByHandles | |
| 10 | CreatePatchFileByHandlesEx | |
| 11 | CreatePatchFileExA | |
| 12 | CreatePatchFileExW | |
| 13 | CreatePatchFileW | |
| 14 | ExtractPatchHeaderToFileA | |
| 15 | ExtractPatchHeaderToFileByHandles | |
| 16 | ExtractPatchHeaderToFileW | |
| 17 | GetFilePatchSignatureA | |
| 18 | GetFilePatchSignatureByBuffer | |
| 19 | GetFilePatchSignatureByHandle | |
| 20 | GetFilePatchSignatureW | |
| 21 | NormalizeFileForPatchSignature |
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 | ; | |
| 6 | LIBRARY "pkmcntrs.dll" | |
| 7 | EXPORTS | |
| 8 | Close | |
| 9 | Collect | |
| 10 | Open |
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 | ; | |
| 6 | LIBRARY "MSSHA.dll" | |
| 7 | EXPORTS | |
| 8 | MsShaInitialize | |
| 9 | MsShaUnInitialize |
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 | ; | |
| 6 | LIBRARY "MSSHooks.dll" | |
| 7 | EXPORTS | |
| 8 | LoadMSSearchHooks |
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 | ; | |
| 6 | LIBRARY "MSSRCH.DLL" | |
| 7 | EXPORTS | |
| 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 | |
| 22 | GetCatalogManager | |
| 23 | MSSrch_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 | ; | |
| 6 | LIBRARY "apis.dll" | |
| 7 | EXPORTS | |
| 8 | NIFTE_AbortTrainer | |
| 9 | NIFTE_CreateTrainer | |
| 10 | NIFTE_DestroyTrainer | |
| 11 | NIFTE_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 | ; | |
| 6 | LIBRARY "MSUTB.dll" | |
| 7 | EXPORTS | |
| 8 | ClosePopupTipbar | |
| 9 | GetChildTipbar | |
| 10 | GetPopupTipbar | |
| 11 | SetRegisterLangBand |
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 | ; | |
| 6 | LIBRARY "msvcirt.dll" | |
| 7 | EXPORTS | |
| 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 | ; | |
| 6 | LIBRARY "MSXML6.dll" | |
| 7 | EXPORTS | |
| 8 | DllSetProperty |
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 | ; | |
| 6 | LIBRARY "mtxex.dll" | |
| 7 | EXPORTS | |
| 8 | GetObjectContext | |
| 9 | SafeRef | |
| 10 | MTSCreateActivity |
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 | ; | |
| 6 | LIBRARY "muifontsetup.dll" | |
| 7 | EXPORTS | |
| 8 | OnMachineUILanguageInit | |
| 9 | OnMachineUILanguageSwitch |
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 | ; | |
| 6 | LIBRARY "MUILanguageCleanup.dll" | |
| 7 | EXPORTS | |
| 8 | OnMachineUILanguageClear | |
| 9 | OnMachineUILanguageInit | |
| 10 | OnMachineUILanguageSwitch | |
| 11 | OnUILanguageAdd | |
| 12 | OnUILanguageRemove |
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 | ; | |
| 6 | LIBRARY "mvbtrc.dll" | |
| 7 | EXPORTS | |
| 8 | BluetoothEnableRadio | |
| 9 | IsBluetoothRadioEnabled |
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 | ; | |
| 6 | LIBRARY "NAPINSP.dll" | |
| 7 | EXPORTS | |
| 8 | NSPStartup |
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 | ; | |
| 6 | LIBRARY "NapIpsec.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeNapIpsecRp | |
| 9 | UninitializeNapIpsecRp |
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 | ; | |
| 6 | LIBRARY "NcaApi.dll" | |
| 7 | EXPORTS | |
| 8 | NcaEngineClose | |
| 9 | NcaEngineOpen | |
| 10 | NcaExecuteAndCaptureLogs | |
| 11 | NcaGetConfig | |
| 12 | NcaGetEvidenceCollectorResult | |
| 13 | NcaNetworkClose | |
| 14 | NcaNetworkOpen | |
| 15 | NcaStatusEventSubscribe | |
| 16 | NcaStatusEventUnsubscribe | |
| 17 | NcaToggleNamePreferenceState |
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 | ; | |
| 6 | LIBRARY "NcaSvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "ncbservice.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "NcdAutoSetup.dll" | |
| 7 | EXPORTS | |
| 8 | NcdAutoSetup_Generalize | |
| 9 | SvchostPushServiceGlobals | |
| 10 | SvchostMain |
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 | ; | |
| 6 | LIBRARY "NCI.dll" | |
| 7 | EXPORTS | |
| 8 | NciGetConnectionName | |
| 9 | NciSetConnectionName | |
| 10 | UpdateAdvancedParameter |
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 | ; | |
| 6 | LIBRARY "ncryptprov.dll" | |
| 7 | EXPORTS | |
| 8 | GetKeyStorageInterface | |
| 9 | SKCacheFlush | |
| 10 | SetAuditingInterface |
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 | ; | |
| 6 | LIBRARY "ncryptsslp.dll" | |
| 7 | EXPORTS | |
| 8 | GetSChannelInterface |
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 | ; | |
| 6 | LIBRARY "ncsi.dll" | |
| 7 | EXPORTS | |
| 8 | NcsiAllocateAndGetConnectivityStatusSet | |
| 9 | NcsiDeregisterConnectivityStatusChange | |
| 10 | NcsiFreeConnectivityStatusSet | |
| 11 | NcsiIdentifyUserSpecificProxies | |
| 12 | NcsiNotifySessionChange | |
| 13 | NcsiPerformRefresh | |
| 14 | NcsiRegisterConnectivityStatusChange | |
| 15 | NcsiUpdateClientPresence |
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 | ; | |
| 6 | LIBRARY "NcuProv.dll" | |
| 7 | EXPORTS | |
| 8 | SruInitializeProvider | |
| 9 | SruUninitializeProvider |
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 | ; | |
| 6 | LIBRARY "NduProv.dll" | |
| 7 | EXPORTS | |
| 8 | SruInitializeProvider | |
| 9 | SruUninitializeProvider |
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 | ; | |
| 6 | LIBRARY "NEGOEXTS.dll" | |
| 7 | EXPORTS | |
| 8 | SpLsaModeInitialize | |
| 9 | SpUserModeInitialize |
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 | ; | |
| 6 | LIBRARY "netbios.dll" | |
| 7 | EXPORTS | |
| 8 | Netbios |
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 | ; | |
| 6 | LIBRARY "netcfgx.dll" | |
| 7 | EXPORTS | |
| 8 | LanaCfgFromCommandArgs | |
| 9 | NetCfgDiagFromCommandArgs | |
| 10 | NetCfgDiagRepairRegistryBindings | |
| 11 | NetClassInstaller | |
| 12 | NetPropPageProvider | |
| 13 | OnMachineUILanguageInit | |
| 14 | OnMachineUILanguageSwitch |
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 | ; | |
| 6 | LIBRARY "netdiagfx.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance | |
| 11 | HelperTraceEvent | |
| 12 | HelperTraceInitialize | |
| 13 | HelperTraceUninitialize |
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 | ; | |
| 6 | LIBRARY "netfxperf.dll" | |
| 7 | EXPORTS | |
| 8 | ClosePerformanceData | |
| 9 | CollectPerformanceData | |
| 10 | OpenPerformanceData |
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 | ; | |
| 6 | LIBRARY "netjoin.dll" | |
| 7 | EXPORTS | |
| 8 | NetCreateProvisioningPackage | |
| 9 | NetProvisionComputerAccount | |
| 10 | NetRequestOfflineDomainJoin | |
| 11 | NetRequestProvisioningPackageInstall | |
| 12 | NetSetuppCloseLog | |
| 13 | NetSetuppOpenLog | |
| 14 | NetpAnalyzeProvisioningPackage | |
| 15 | NetpAvoidNetlogonSpnSet | |
| 16 | NetpChangeMachineName | |
| 17 | NetpCheckOfflineLsaPolicyUpdate | |
| 18 | NetpCompleteOfflineDomainJoin | |
| 19 | NetpContinueProvisioningPackageInstall | |
| 20 | NetpControlServices | |
| 21 | NetpCrackNamesStatus2Win32Error | |
| 22 | NetpCreateComputerObjectInDs | |
| 23 | NetpDoDomainJoin | |
| 24 | NetpDomainJoinLicensingCheck | |
| 25 | NetpFreeLdapLsaDomainInfo | |
| 26 | NetpGetJoinInformation | |
| 27 | NetpGetListOfJoinableOUs | |
| 28 | NetpGetLsaPrimaryDomain | |
| 29 | NetpGetMachineAccountName | |
| 30 | NetpGetNewMachineName | |
| 31 | NetpIsSetupInProgress | |
| 32 | NetpLogPrintHelper | |
| 33 | NetpMachineValidToJoin | |
| 34 | NetpManageIPCConnect | |
| 35 | NetpManageMachineAccountWithSid | |
| 36 | NetpQueryService | |
| 37 | NetpSeparateUserAndDomain | |
| 38 | NetpSetComputerAccountPassword | |
| 39 | NetpStopService | |
| 40 | NetpStoreInitialDcRecord | |
| 41 | NetpUnJoinDomain | |
| 42 | NetpUpgradePreNT5JoinInfo | |
| 43 | NetpValidateName |
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 | ; | |
| 6 | LIBRARY "NETLOGON.dll" | |
| 7 | EXPORTS | |
| 8 | DsrGetDcNameEx2 | |
| 9 | I_NetLogonAddressToSiteName | |
| 10 | I_NetLogonAppendChangeLog | |
| 11 | I_NetLogonCloseChangeLog | |
| 12 | I_NetLogonFree | |
| 13 | I_NetLogonGetAuthDataEx | |
| 14 | I_NetLogonGetSerialNumber | |
| 15 | I_NetLogonLdapLookupEx | |
| 16 | I_NetLogonMixedDomain | |
| 17 | I_NetLogonNewChangeLog | |
| 18 | I_NetLogonReadChangeLog | |
| 19 | I_NetLogonSendToSamOnDc | |
| 20 | I_NetLogonSetServiceBits | |
| 21 | I_NetNotifyDelta | |
| 22 | I_NetNotifyDsChange | |
| 23 | I_NetNotifyMachineAccount | |
| 24 | I_NetNotifyNetlogonDllHandle | |
| 25 | I_NetNotifyNtdsDsaDeletion | |
| 26 | I_NetNotifyRole | |
| 27 | I_NetNotifyTrustedDomain | |
| 28 | InitSecurityInterfaceW | |
| 29 | NetIGetEncTypes | |
| 30 | NetILogonSamLogon | |
| 31 | NlNetlogonMain |
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 | ; | |
| 6 | LIBRARY "netman.dll" | |
| 7 | EXPORTS | |
| 8 | HrGetPnpDeviceStatus | |
| 9 | HrLanConnectionNameFromGuidOrPath | |
| 10 | HrPnpInstanceIdFromGuid | |
| 11 | HrQueryLanMediaState | |
| 12 | NetManDiagFromCommandArgs | |
| 13 | ServiceMain | |
| 14 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "NETPLWIZ.dll" | |
| 7 | EXPORTS | |
| 8 | ClearAutoLogon | |
| 9 | NetAccessWizard | |
| 10 | NetPlacesWizardDoModal | |
| 11 | SHDisconnectNetDrives | |
| 12 | UsersRunDllW |
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 | ; | |
| 6 | LIBRARY "netprofm.dll" | |
| 7 | EXPORTS | |
| 8 | SvchostPushServiceGlobals | |
| 9 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "NetProvisionSp.dll" | |
| 7 | EXPORTS | |
| 8 | NetpCertProviderInitialize | |
| 9 | NetpPolProviderInitialize |
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 | ; | |
| 6 | LIBRARY "nlaapi.dll" | |
| 7 | EXPORTS | |
| 8 | LANIdFreeCollection | |
| 9 | LANIdRetrieveCollection | |
| 10 | NSPStartup | |
| 11 | NlaAddToPluginRequests | |
| 12 | NlaAddToTypeSet | |
| 13 | NlaAnd | |
| 14 | NlaCloseQuery | |
| 15 | NlaComposeNetSignature | |
| 16 | NlaCreateFilter | |
| 17 | NlaCreatePluginRequests | |
| 18 | NlaCreateTypeSet | |
| 19 | NlaDecomposeNetSignature | |
| 20 | NlaDeleteDataSet | |
| 21 | NlaDeleteFilter | |
| 22 | NlaDeletePluginRequests | |
| 23 | NlaDeleteTypeSet | |
| 24 | NlaEqual | |
| 25 | NlaEqualNetSignatures | |
| 26 | NlaGetInternetCapability | |
| 27 | NlaGetIntranetCapability | |
| 28 | NlaNotEqual | |
| 29 | NlaOpenQuery | |
| 30 | NlaOr | |
| 31 | NlaQueryNetData | |
| 32 | NlaQueryNetDataEx | |
| 33 | NlaQueryNetSignatures | |
| 34 | NlaRefreshQuery | |
| 35 | NlaRegisterQuery |
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 | ; | |
| 6 | LIBRARY "nlasvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "nlmsprep.dll" | |
| 7 | EXPORTS | |
| 8 | NetworkListManager_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 | ; | |
| 6 | LIBRARY "Nlsdl.dll" | |
| 7 | EXPORTS | |
| 8 | DownlevelGetParentLocaleLCID | |
| 9 | DownlevelGetParentLocaleName | |
| 10 | DownlevelLCIDToLocaleName | |
| 11 | DownlevelLocaleNameToLCID |
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 | ; | |
| 6 | LIBRARY "nrpsrv.DLL" | |
| 7 | EXPORTS | |
| 8 | NrpStartRpcServer | |
| 9 | NrpStopRpcServer |
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 | ; | |
| 6 | LIBRARY "NSHWFP.DLL" | |
| 7 | EXPORTS | |
| 8 | IdpConfigAddPolicy | |
| 9 | IdpConfigAllocateAndGetPolicy | |
| 10 | IdpConfigFreePolicy | |
| 11 | IdpConfigInitDefaultPolicy | |
| 12 | IdpConfigRemovePolicy | |
| 13 | InitHelperDll | |
| 14 | WfpCaptureExportedW | |
| 15 | WfpCaptureStop |
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 | ; | |
| 6 | LIBRARY "NSI.dll" | |
| 7 | EXPORTS | |
| 8 | NsiAllocateAndGetPersistentDataWithMaskTable | |
| 9 | NsiAllocateAndGetTable | |
| 10 | NsiCancelChangeNotification | |
| 11 | NsiDeregisterChangeNotification | |
| 12 | NsiDeregisterChangeNotificationEx | |
| 13 | NsiEnumerateObjectsAllParameters | |
| 14 | NsiEnumerateObjectsAllParametersEx | |
| 15 | NsiEnumerateObjectsAllPersistentParametersWithMask | |
| 16 | NsiFreePersistentDataWithMaskTable | |
| 17 | NsiFreeTable | |
| 18 | NsiGetAllParameters | |
| 19 | NsiGetAllParametersEx | |
| 20 | NsiGetAllPersistentParametersWithMask | |
| 21 | NsiGetObjectSecurity | |
| 22 | NsiGetParameter | |
| 23 | NsiGetParameterEx | |
| 24 | NsiRegisterChangeNotification | |
| 25 | NsiRegisterChangeNotificationEx | |
| 26 | NsiRequestChangeNotification | |
| 27 | NsiRequestChangeNotificationEx | |
| 28 | NsiSetAllParameters | |
| 29 | NsiSetAllParametersEx | |
| 30 | NsiSetAllPersistentParametersWithMask | |
| 31 | NsiSetObjectSecurity | |
| 32 | NsiSetParameter | |
| 33 | NsiSetParameterEx |
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 | ; | |
| 6 | LIBRARY "nsisvc.DLL" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "NTMARTA.dll" | |
| 7 | EXPORTS | |
| 8 | AccProvHandleGrantAccessRights | |
| 9 | GetMartaExtensionInterface | |
| 10 | AccConvertAccessMaskToActrlAccess | |
| 11 | AccConvertAccessToSD | |
| 12 | AccConvertAccessToSecurityDescriptor | |
| 13 | AccConvertAclToAccess | |
| 14 | AccConvertSDToAccess | |
| 15 | AccFreeIndexArray | |
| 16 | AccGetAccessForTrustee | |
| 17 | AccGetExplicitEntries | |
| 18 | AccGetInheritanceSource | |
| 19 | AccLookupAccountName | |
| 20 | AccLookupAccountSid | |
| 21 | AccLookupAccountTrustee | |
| 22 | AccProvCancelOperation | |
| 23 | AccProvGetAccessInfoPerObjectType | |
| 24 | AccProvGetAllRights | |
| 25 | AccProvGetCapabilities | |
| 26 | AccProvGetOperationResults | |
| 27 | AccProvGetTrusteesAccess | |
| 28 | AccProvGrantAccessRights | |
| 29 | AccProvHandleGetAccessInfoPerObjectType | |
| 30 | AccProvHandleGetAllRights | |
| 31 | AccProvHandleGetTrusteesAccess | |
| 32 | AccProvHandleIsAccessAudited | |
| 33 | AccProvHandleIsObjectAccessible | |
| 34 | AccProvHandleRevokeAccessRights | |
| 35 | AccProvHandleRevokeAuditRights | |
| 36 | AccProvHandleSetAccessRights | |
| 37 | AccProvIsAccessAudited | |
| 38 | AccProvIsObjectAccessible | |
| 39 | AccProvRevokeAccessRights | |
| 40 | AccProvRevokeAuditRights | |
| 41 | AccProvSetAccessRights | |
| 42 | AccRewriteGetExplicitEntriesFromAcl | |
| 43 | AccRewriteGetHandleRights | |
| 44 | AccRewriteGetNamedRights | |
| 45 | AccRewriteSetEntriesInAcl | |
| 46 | AccRewriteSetHandleRights | |
| 47 | AccRewriteSetNamedRights | |
| 48 | AccSetEntriesInAList | |
| 49 | AccTreeResetNamedSecurityInfo | |
| 50 | EventGuidToName | |
| 51 | EventNameFree | |
| 52 | GetExplicitEntriesFromAclW | |
| 53 | GetNamedSecurityInfoW | |
| 54 | GetSecurityInfo | |
| 55 | SetEntriesInAclW | |
| 56 | SetNamedSecurityInfoW | |
| 57 | SetSecurityInfo |
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 | ; | |
| 6 | LIBRARY "ntoskrnl.exe" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | ord_2 @2 | |
| 10 | ord_3 @3 | |
| 11 | AlpcGetHeaderSize | |
| 12 | AlpcGetMessageAttribute | |
| 13 | AlpcInitializeMessageAttribute | |
| 14 | BgkDisplayCharacter | |
| 15 | BgkGetConsoleState | |
| 16 | BgkGetCursorState | |
| 17 | BgkSetCursor | |
| 18 | CcAddDirtyPagesToExternalCache | |
| 19 | CcCanIWrite | |
| 20 | CcCoherencyFlushAndPurgeCache | |
| 21 | CcCopyRead | |
| 22 | CcCopyReadEx | |
| 23 | CcCopyWrite | |
| 24 | CcCopyWriteEx | |
| 25 | CcCopyWriteWontFlush | |
| 26 | CcDeductDirtyPagesFromExternalCache | |
| 27 | CcDeferWrite | |
| 28 | CcFastCopyRead | |
| 29 | CcFastCopyWrite | |
| 30 | CcFastMdlReadWait DATA | |
| 31 | CcFlushCache | |
| 32 | CcFlushCacheToLsn | |
| 33 | CcGetDirtyPages | |
| 34 | CcGetFileObjectFromBcb | |
| 35 | CcGetFileObjectFromSectionPtrs | |
| 36 | CcGetFileObjectFromSectionPtrsRef | |
| 37 | CcGetFlushedValidData | |
| 38 | CcGetLsnForFileObject | |
| 39 | CcInitializeCacheMap | |
| 40 | CcIsThereDirtyData | |
| 41 | CcIsThereDirtyDataEx | |
| 42 | CcIsThereDirtyLoggedPages | |
| 43 | CcMapData | |
| 44 | CcMdlRead | |
| 45 | CcMdlReadComplete | |
| 46 | CcMdlWriteAbort | |
| 47 | CcMdlWriteComplete | |
| 48 | CcPinMappedData | |
| 49 | CcPinRead | |
| 50 | CcPrepareMdlWrite | |
| 51 | CcPreparePinWrite | |
| 52 | CcPurgeCacheSection | |
| 53 | CcRegisterExternalCache | |
| 54 | CcRemapBcb | |
| 55 | CcRepinBcb | |
| 56 | CcScheduleReadAhead | |
| 57 | CcScheduleReadAheadEx | |
| 58 | CcSetAdditionalCacheAttributes | |
| 59 | CcSetAdditionalCacheAttributesEx | |
| 60 | CcSetBcbOwnerPointer | |
| 61 | CcSetDirtyPageThreshold | |
| 62 | CcSetDirtyPinnedData | |
| 63 | CcSetFileSizes | |
| 64 | CcSetFileSizesEx | |
| 65 | CcSetLogHandleForFile | |
| 66 | CcSetLogHandleForFileEx | |
| 67 | CcSetLoggedDataThreshold | |
| 68 | CcSetParallelFlushFile | |
| 69 | CcSetReadAheadGranularity | |
| 70 | CcSetReadAheadGranularityEx | |
| 71 | CcTestControl | |
| 72 | CcUninitializeCacheMap | |
| 73 | CcUnmapFileOffsetFromSystemCache | |
| 74 | CcUnpinData | |
| 75 | CcUnpinDataForThread | |
| 76 | CcUnpinRepinnedBcb | |
| 77 | CcUnregisterExternalCache | |
| 78 | CcWaitForCurrentLazyWriterActivity | |
| 79 | CcZeroData | |
| 80 | CcZeroDataOnDisk | |
| 81 | CmCallbackGetKeyObjectID | |
| 82 | CmCallbackGetKeyObjectIDEx | |
| 83 | CmCallbackReleaseKeyObjectIDEx | |
| 84 | CmGetBoundTransaction | |
| 85 | CmGetCallbackVersion | |
| 86 | CmKeyObjectType DATA | |
| 87 | CmRegisterCallback | |
| 88 | CmRegisterCallbackEx | |
| 89 | CmSetCallbackObjectContext | |
| 90 | CmUnRegisterCallback | |
| 91 | DbgBreakPoint | |
| 92 | DbgBreakPointWithStatus | |
| 93 | DbgCommandString | |
| 94 | DbgLoadImageSymbols | |
| 95 | DbgPrint | |
| 96 | DbgPrintEx | |
| 97 | DbgPrintReturnControlC | |
| 98 | DbgPrompt | |
| 99 | DbgQueryDebugFilterState | |
| 100 | DbgSetDebugFilterState | |
| 101 | DbgSetDebugPrintCallback | |
| 102 | DbgkLkmdRegisterCallback | |
| 103 | DbgkLkmdUnregisterCallback | |
| 104 | DbgkWerCaptureLiveKernelDump | |
| 105 | EmClientQueryRuleState | |
| 106 | EmClientRuleDeregisterNotification | |
| 107 | EmClientRuleEvaluate | |
| 108 | EmClientRuleRegisterNotification | |
| 109 | EmProviderDeregister | |
| 110 | EmProviderDeregisterEntry | |
| 111 | EmProviderRegister | |
| 112 | EmProviderRegisterEntry | |
| 113 | EmpProviderRegister | |
| 114 | EtwActivityIdControl | |
| 115 | EtwEnableTrace | |
| 116 | EtwEventEnabled | |
| 117 | EtwProviderEnabled | |
| 118 | EtwRegister | |
| 119 | EtwRegisterClassicProvider | |
| 120 | EtwSendTraceBuffer | |
| 121 | EtwUnregister | |
| 122 | EtwWrite | |
| 123 | EtwWriteEndScenario | |
| 124 | EtwWriteEx | |
| 125 | EtwWriteStartScenario | |
| 126 | EtwWriteString | |
| 127 | EtwWriteTransfer | |
| 128 | ExAcquireCacheAwarePushLockExclusive | |
| 129 | ExAcquireCacheAwarePushLockExclusiveEx | |
| 130 | ExAcquireCacheAwarePushLockSharedEx | |
| 131 | ExAcquireFastMutex | |
| 132 | ExAcquireFastMutexUnsafe | |
| 133 | ExAcquirePushLockExclusiveEx | |
| 134 | ExAcquirePushLockSharedEx | |
| 135 | ExAcquireResourceExclusiveLite | |
| 136 | ExAcquireResourceSharedLite | |
| 137 | ExAcquireRundownProtection | |
| 138 | ExAcquireRundownProtectionCacheAware | |
| 139 | ExAcquireRundownProtectionCacheAwareEx | |
| 140 | ExAcquireRundownProtectionEx | |
| 141 | ExAcquireSharedStarveExclusive | |
| 142 | ExAcquireSharedWaitForExclusive | |
| 143 | ExAcquireSpinLockExclusive | |
| 144 | ExAcquireSpinLockExclusiveAtDpcLevel | |
| 145 | ExAcquireSpinLockShared | |
| 146 | ExAcquireSpinLockSharedAtDpcLevel | |
| 147 | ExAllocateCacheAwarePushLock | |
| 148 | ExAllocateCacheAwareRundownProtection | |
| 149 | ExAllocatePool | |
| 150 | ExAllocatePoolWithQuota | |
| 151 | ExAllocatePoolWithQuotaTag | |
| 152 | ExAllocatePoolWithTag | |
| 153 | ExAllocatePoolWithTagPriority | |
| 154 | ExAllocateTimer | |
| 155 | ExBlockOnAddressPushLock | |
| 156 | ExBlockPushLock | |
| 157 | ExCancelTimer | |
| 158 | ExCompositionObjectType DATA | |
| 159 | ExConvertExclusiveToSharedLite | |
| 160 | ExCreateCallback | |
| 161 | ExDeleteLookasideListEx | |
| 162 | ExDeleteNPagedLookasideList | |
| 163 | ExDeletePagedLookasideList | |
| 164 | ExDeleteResourceLite | |
| 165 | ExDeleteTimer | |
| 166 | ExDesktopObjectType DATA | |
| 167 | ExDisableResourceBoostLite | |
| 168 | ExEnterCriticalRegionAndAcquireFastMutexUnsafe | |
| 169 | ExEnterCriticalRegionAndAcquireResourceExclusive | |
| 170 | ExEnterCriticalRegionAndAcquireResourceShared | |
| 171 | ExEnterCriticalRegionAndAcquireSharedWaitForExclusive | |
| 172 | ExEnterPriorityRegionAndAcquireResourceExclusive | |
| 173 | ExEnterPriorityRegionAndAcquireResourceShared | |
| 174 | ExEnumHandleTable | |
| 175 | ExEventObjectType DATA | |
| 176 | ExExtendZone | |
| 177 | ExFetchLicenseData | |
| 178 | ExFlushLookasideListEx | |
| 179 | ExFreeCacheAwarePushLock | |
| 180 | ExFreeCacheAwareRundownProtection | |
| 181 | ExFreePool | |
| 182 | ExFreePoolWithTag | |
| 183 | ExGetCurrentProcessorCounts | |
| 184 | ExGetCurrentProcessorCpuUsage | |
| 185 | ExGetExclusiveWaiterCount | |
| 186 | ExGetFirmwareEnvironmentVariable | |
| 187 | ExGetLicenseTamperState | |
| 188 | ExGetPreviousMode | |
| 189 | ExGetSharedWaiterCount | |
| 190 | ExInitializeLookasideListEx | |
| 191 | ExInitializeNPagedLookasideList | |
| 192 | ExInitializePagedLookasideList | |
| 193 | ExInitializePushLock | |
| 194 | ExInitializeResourceLite | |
| 195 | ExInitializeRundownProtection | |
| 196 | ExInitializeRundownProtectionCacheAware | |
| 197 | ExInitializeZone | |
| 198 | ExInterlockedAddLargeInteger | |
| 199 | ExInterlockedAddUlong | |
| 200 | ExInterlockedExtendZone | |
| 201 | ExInterlockedInsertHeadList | |
| 202 | ExInterlockedInsertTailList | |
| 203 | ExInterlockedPopEntryList | |
| 204 | ExInterlockedPushEntryList | |
| 205 | ExInterlockedRemoveHeadList | |
| 206 | ExIsProcessorFeaturePresent | |
| 207 | ExIsResourceAcquiredExclusiveLite | |
| 208 | ExIsResourceAcquiredSharedLite | |
| 209 | ExLocalTimeToSystemTime | |
| 210 | ExNotifyBootDeviceRemoval | |
| 211 | ExNotifyCallback | |
| 212 | ExQueryDepthSList | |
| 213 | ExQueryFastCacheAppOrigin | |
| 214 | ExQueryFastCacheDevLicense | |
| 215 | ExQueryPoolBlockSize | |
| 216 | ExQueryTimerResolution | |
| 217 | ExQueryWnfStateData | |
| 218 | ExQueueWorkItem | |
| 219 | ExRaiseAccessViolation | |
| 220 | ExRaiseDatatypeMisalignment | |
| 221 | ExRaiseException | |
| 222 | ExRaiseHardError | |
| 223 | ExRaiseStatus | |
| 224 | ExReInitializeRundownProtection | |
| 225 | ExReInitializeRundownProtectionCacheAware | |
| 226 | ExRealTimeIsUniversal | |
| 227 | ExRegisterBootDevice | |
| 228 | ExRegisterCallback | |
| 229 | ExRegisterExtension | |
| 230 | ExReinitializeResourceLite | |
| 231 | ExReleaseCacheAwarePushLockExclusive | |
| 232 | ExReleaseCacheAwarePushLockExclusiveEx | |
| 233 | ExReleaseCacheAwarePushLockSharedEx | |
| 234 | ExReleaseFastMutex | |
| 235 | ExReleaseFastMutexUnsafe | |
| 236 | ExReleaseFastMutexUnsafeAndLeaveCriticalRegion | |
| 237 | ExReleasePushLockEx | |
| 238 | ExReleasePushLockExclusiveEx | |
| 239 | ExReleasePushLockSharedEx | |
| 240 | ExReleaseResourceAndLeaveCriticalRegion | |
| 241 | ExReleaseResourceAndLeavePriorityRegion | |
| 242 | ExReleaseResourceForThreadLite | |
| 243 | ExReleaseResourceLite | |
| 244 | ExReleaseRundownProtection | |
| 245 | ExReleaseRundownProtectionCacheAware | |
| 246 | ExReleaseRundownProtectionCacheAwareEx | |
| 247 | ExReleaseRundownProtectionEx | |
| 248 | ExReleaseSpinLockExclusive | |
| 249 | ExReleaseSpinLockExclusiveFromDpcLevel | |
| 250 | ExReleaseSpinLockShared | |
| 251 | ExReleaseSpinLockSharedFromDpcLevel | |
| 252 | ExRundownCompleted | |
| 253 | ExRundownCompletedCacheAware | |
| 254 | ExSemaphoreObjectType DATA | |
| 255 | ExSetFirmwareEnvironmentVariable | |
| 256 | ExSetLicenseTamperState | |
| 257 | ExSetResourceOwnerPointer | |
| 258 | ExSetResourceOwnerPointerEx | |
| 259 | ExSetTimer | |
| 260 | ExSetTimerResolution | |
| 261 | ExSizeOfRundownProtectionCacheAware | |
| 262 | ExSubscribeWnfStateChange | |
| 263 | ExSystemExceptionFilter | |
| 264 | ExSystemTimeToLocalTime | |
| 265 | ExTimedWaitForUnblockPushLock | |
| 266 | ExTryAcquirePushLockExclusiveEx | |
| 267 | ExTryAcquirePushLockSharedEx | |
| 268 | ExTryConvertPushLockSharedToExclusiveEx | |
| 269 | ExTryConvertSharedSpinLockExclusive | |
| 270 | ExTryQueueWorkItem | |
| 271 | ExTryToAcquireFastMutex | |
| 272 | ExTryToAcquireResourceExclusiveLite | |
| 273 | ExUnblockOnAddressPushLockEx | |
| 274 | ExUnblockPushLockEx | |
| 275 | ExUnregisterCallback | |
| 276 | ExUnregisterExtension | |
| 277 | ExUnsubscribeWnfStateChange | |
| 278 | ExUuidCreate | |
| 279 | ExVerifySuite | |
| 280 | ExWaitForRundownProtectionRelease | |
| 281 | ExWaitForRundownProtectionReleaseCacheAware | |
| 282 | ExWaitForUnblockPushLock | |
| 283 | ExWindowStationObjectType DATA | |
| 284 | ExfAcquirePushLockExclusive | |
| 285 | ExfAcquirePushLockShared | |
| 286 | ExfReleasePushLock | |
| 287 | ExfReleasePushLockExclusive | |
| 288 | ExfReleasePushLockShared | |
| 289 | ExfTryAcquirePushLockShared | |
| 290 | ExfTryToWakePushLock | |
| 291 | ExfUnblockPushLock | |
| 292 | ExpInterlockedFlushSList | |
| 293 | ExpInterlockedPopEntrySList | |
| 294 | ExpInterlockedPushEntrySList | |
| 295 | FirstEntrySList | |
| 296 | FsRtlAcknowledgeEcp | |
| 297 | FsRtlAcquireEofLock | |
| 298 | FsRtlAcquireFileExclusive | |
| 299 | FsRtlAcquireHeaderMutex | |
| 300 | FsRtlAddBaseMcbEntry | |
| 301 | FsRtlAddBaseMcbEntryEx | |
| 302 | FsRtlAddLargeMcbEntry | |
| 303 | FsRtlAddMcbEntry | |
| 304 | FsRtlAddToTunnelCache | |
| 305 | FsRtlAllocateExtraCreateParameter | |
| 306 | FsRtlAllocateExtraCreateParameterFromLookasideList | |
| 307 | FsRtlAllocateExtraCreateParameterList | |
| 308 | FsRtlAllocateFileLock | |
| 309 | FsRtlAllocatePool | |
| 310 | FsRtlAllocatePoolWithQuota | |
| 311 | FsRtlAllocatePoolWithQuotaTag | |
| 312 | FsRtlAllocatePoolWithTag | |
| 313 | FsRtlAllocateResource | |
| 314 | FsRtlAreNamesEqual | |
| 315 | FsRtlAreThereCurrentOrInProgressFileLocks | |
| 316 | FsRtlAreThereWaitingFileLocks | |
| 317 | FsRtlAreVolumeStartupApplicationsComplete | |
| 318 | FsRtlBalanceReads | |
| 319 | FsRtlCancellableWaitForMultipleObjects | |
| 320 | FsRtlCancellableWaitForSingleObject | |
| 321 | FsRtlChangeBackingFileObject | |
| 322 | FsRtlCheckLockForOplockRequest | |
| 323 | FsRtlCheckLockForReadAccess | |
| 324 | FsRtlCheckLockForWriteAccess | |
| 325 | FsRtlCheckOplock | |
| 326 | FsRtlCheckOplockEx | |
| 327 | FsRtlCheckUpperOplock | |
| 328 | FsRtlCopyRead | |
| 329 | FsRtlCopyWrite | |
| 330 | FsRtlCreateSectionForDataScan | |
| 331 | FsRtlCurrentBatchOplock | |
| 332 | FsRtlCurrentOplock | |
| 333 | FsRtlCurrentOplockH | |
| 334 | FsRtlDeleteExtraCreateParameterLookasideList | |
| 335 | FsRtlDeleteKeyFromTunnelCache | |
| 336 | FsRtlDeleteTunnelCache | |
| 337 | FsRtlDeregisterUncProvider | |
| 338 | FsRtlDismountComplete | |
| 339 | FsRtlDissectDbcs | |
| 340 | FsRtlDissectName | |
| 341 | FsRtlDoesDbcsContainWildCards | |
| 342 | FsRtlDoesNameContainWildCards | |
| 343 | FsRtlFastCheckLockForRead | |
| 344 | FsRtlFastCheckLockForWrite | |
| 345 | FsRtlFastUnlockAll | |
| 346 | FsRtlFastUnlockAllByKey | |
| 347 | FsRtlFastUnlockSingle | |
| 348 | FsRtlFindExtraCreateParameter | |
| 349 | FsRtlFindInTunnelCache | |
| 350 | FsRtlFreeExtraCreateParameter | |
| 351 | FsRtlFreeExtraCreateParameterList | |
| 352 | FsRtlFreeFileLock | |
| 353 | FsRtlGetEcpListFromIrp | |
| 354 | FsRtlGetFileNameInformation | |
| 355 | FsRtlGetFileSize | |
| 356 | FsRtlGetIoAtEof | |
| 357 | FsRtlGetNextBaseMcbEntry | |
| 358 | FsRtlGetNextExtraCreateParameter | |
| 359 | FsRtlGetNextFileLock | |
| 360 | FsRtlGetNextLargeMcbEntry | |
| 361 | FsRtlGetNextMcbEntry | |
| 362 | FsRtlGetSectorSizeInformation | |
| 363 | FsRtlGetSupportedFeatures | |
| 364 | FsRtlGetVirtualDiskNestingLevel | |
| 365 | FsRtlHeatInit | |
| 366 | FsRtlHeatLogIo | |
| 367 | FsRtlHeatLogTierMove | |
| 368 | FsRtlHeatUninit | |
| 369 | FsRtlIncrementCcFastMdlReadWait | |
| 370 | FsRtlIncrementCcFastReadNoWait | |
| 371 | FsRtlIncrementCcFastReadNotPossible | |
| 372 | FsRtlIncrementCcFastReadResourceMiss | |
| 373 | FsRtlIncrementCcFastReadWait | |
| 374 | FsRtlInitExtraCreateParameterLookasideList | |
| 375 | FsRtlInitializeBaseMcb | |
| 376 | FsRtlInitializeBaseMcbEx | |
| 377 | FsRtlInitializeEofLock | |
| 378 | FsRtlInitializeExtraCreateParameter | |
| 379 | FsRtlInitializeExtraCreateParameterList | |
| 380 | FsRtlInitializeFileLock | |
| 381 | FsRtlInitializeLargeMcb | |
| 382 | FsRtlInitializeMcb | |
| 383 | FsRtlInitializeOplock | |
| 384 | FsRtlInitializeTunnelCache | |
| 385 | FsRtlInsertExtraCreateParameter | |
| 386 | FsRtlInsertPerFileContext | |
| 387 | FsRtlInsertPerFileObjectContext | |
| 388 | FsRtlInsertPerStreamContext | |
| 389 | FsRtlInsertReservedPerFileContext | |
| 390 | FsRtlInsertReservedPerStreamContext | |
| 391 | FsRtlIsDbcsInExpression | |
| 392 | FsRtlIsEcpAcknowledged | |
| 393 | FsRtlIsEcpFromUserMode | |
| 394 | FsRtlIsFatDbcsLegal | |
| 395 | FsRtlIsHpfsDbcsLegal | |
| 396 | FsRtlIsNameInExpression | |
| 397 | FsRtlIsNtstatusExpected | |
| 398 | FsRtlIsPagingFile | |
| 399 | FsRtlIsSystemPagingFile | |
| 400 | FsRtlIsTotalDeviceFailure | |
| 401 | FsRtlIssueDeviceIoControl | |
| 402 | FsRtlKernelFsControlFile | |
| 403 | FsRtlLegalAnsiCharacterArray DATA | |
| 404 | FsRtlLogCcFlushError | |
| 405 | FsRtlLookupBaseMcbEntry | |
| 406 | FsRtlLookupLargeMcbEntry | |
| 407 | FsRtlLookupLastBaseMcbEntry | |
| 408 | FsRtlLookupLastBaseMcbEntryAndIndex | |
| 409 | FsRtlLookupLastLargeMcbEntry | |
| 410 | FsRtlLookupLastLargeMcbEntryAndIndex | |
| 411 | FsRtlLookupLastMcbEntry | |
| 412 | FsRtlLookupMcbEntry | |
| 413 | FsRtlLookupPerFileContext | |
| 414 | FsRtlLookupPerFileObjectContext | |
| 415 | FsRtlLookupPerStreamContextInternal | |
| 416 | FsRtlLookupReservedPerFileContext | |
| 417 | FsRtlLookupReservedPerStreamContext | |
| 418 | FsRtlMdlRead | |
| 419 | FsRtlMdlReadComplete | |
| 420 | FsRtlMdlReadCompleteDev | |
| 421 | FsRtlMdlReadDev | |
| 422 | FsRtlMdlReadEx | |
| 423 | FsRtlMdlWriteComplete | |
| 424 | FsRtlMdlWriteCompleteDev | |
| 425 | FsRtlMupGetProviderIdFromName | |
| 426 | FsRtlMupGetProviderInfoFromFileObject | |
| 427 | FsRtlNormalizeNtstatus | |
| 428 | FsRtlNotifyChangeDirectory | |
| 429 | FsRtlNotifyCleanup | |
| 430 | FsRtlNotifyCleanupAll | |
| 431 | FsRtlNotifyFilterChangeDirectory | |
| 432 | FsRtlNotifyFilterReportChange | |
| 433 | FsRtlNotifyFullChangeDirectory | |
| 434 | FsRtlNotifyFullReportChange | |
| 435 | FsRtlNotifyInitializeSync | |
| 436 | FsRtlNotifyReportChange | |
| 437 | FsRtlNotifyUninitializeSync | |
| 438 | FsRtlNotifyVolumeEvent | |
| 439 | FsRtlNotifyVolumeEventEx | |
| 440 | FsRtlNumberOfRunsInBaseMcb | |
| 441 | FsRtlNumberOfRunsInLargeMcb | |
| 442 | FsRtlNumberOfRunsInMcb | |
| 443 | FsRtlOplockBreakH | |
| 444 | FsRtlOplockBreakToNone | |
| 445 | FsRtlOplockBreakToNoneEx | |
| 446 | FsRtlOplockFsctrl | |
| 447 | FsRtlOplockFsctrlEx | |
| 448 | FsRtlOplockIsFastIoPossible | |
| 449 | FsRtlOplockIsSharedRequest | |
| 450 | FsRtlOplockKeysEqual | |
| 451 | FsRtlPostPagingFileStackOverflow | |
| 452 | FsRtlPostStackOverflow | |
| 453 | FsRtlPrepareMdlWrite | |
| 454 | FsRtlPrepareMdlWriteDev | |
| 455 | FsRtlPrepareMdlWriteEx | |
| 456 | FsRtlPrepareToReuseEcp | |
| 457 | FsRtlPrivateLock | |
| 458 | FsRtlProcessFileLock | |
| 459 | FsRtlQueryCachedVdl | |
| 460 | FsRtlQueryKernelEaFile | |
| 461 | FsRtlQueryMaximumVirtualDiskNestingLevel | |
| 462 | FsRtlRegisterFileSystemFilterCallbacks | |
| 463 | FsRtlRegisterFltMgrCalls | |
| 464 | FsRtlRegisterMupCalls | |
| 465 | FsRtlRegisterUncProvider | |
| 466 | FsRtlRegisterUncProviderEx | |
| 467 | FsRtlReleaseEofLock | |
| 468 | FsRtlReleaseFile | |
| 469 | FsRtlReleaseFileNameInformation | |
| 470 | FsRtlReleaseHeaderMutex | |
| 471 | FsRtlRemoveBaseMcbEntry | |
| 472 | FsRtlRemoveDotsFromPath | |
| 473 | FsRtlRemoveExtraCreateParameter | |
| 474 | FsRtlRemoveLargeMcbEntry | |
| 475 | FsRtlRemoveMcbEntry | |
| 476 | FsRtlRemovePerFileContext | |
| 477 | FsRtlRemovePerFileObjectContext | |
| 478 | FsRtlRemovePerStreamContext | |
| 479 | FsRtlRemoveReservedPerFileContext | |
| 480 | FsRtlRemoveReservedPerStreamContext | |
| 481 | FsRtlResetBaseMcb | |
| 482 | FsRtlResetLargeMcb | |
| 483 | FsRtlSendModernAppTermination | |
| 484 | FsRtlSetEcpListIntoIrp | |
| 485 | FsRtlSetKernelEaFile | |
| 486 | FsRtlSplitBaseMcb | |
| 487 | FsRtlSplitLargeMcb | |
| 488 | FsRtlSyncVolumes | |
| 489 | FsRtlTeardownPerFileContexts | |
| 490 | FsRtlTeardownPerStreamContexts | |
| 491 | FsRtlTruncateBaseMcb | |
| 492 | FsRtlTruncateLargeMcb | |
| 493 | FsRtlTruncateMcb | |
| 494 | FsRtlTryToAcquireHeaderMutex | |
| 495 | FsRtlUninitializeBaseMcb | |
| 496 | FsRtlUninitializeFileLock | |
| 497 | FsRtlUninitializeLargeMcb | |
| 498 | FsRtlUninitializeMcb | |
| 499 | FsRtlUninitializeOplock | |
| 500 | FsRtlUpdateDiskCounters | |
| 501 | FsRtlUpperOplockFsctrl | |
| 502 | FsRtlValidateReparsePointBuffer | |
| 503 | HalDispatchTable DATA | |
| 504 | HalExamineMBR | |
| 505 | HalFlushIoBuffers | |
| 506 | HalPrivateDispatchTable DATA | |
| 507 | HeadlessDispatch | |
| 508 | HvlGetLpIndexFromApicId | |
| 509 | HvlQueryActiveHypervisorProcessorCount | |
| 510 | HvlQueryActiveProcessors | |
| 511 | HvlQueryConnection | |
| 512 | HvlQueryHypervisorProcessorNodeNumber | |
| 513 | HvlQueryNumaDistance | |
| 514 | HvlQueryProcessorTopology | |
| 515 | HvlQueryProcessorTopologyCount | |
| 516 | HvlQueryProcessorTopologyHighestId | |
| 517 | HvlRegisterInterruptCallback | |
| 518 | HvlRegisterWheaErrorNotification | |
| 519 | HvlUnregisterInterruptCallback | |
| 520 | HvlUnregisterWheaErrorNotification | |
| 521 | InbvAcquireDisplayOwnership | |
| 522 | InbvCheckDisplayOwnership | |
| 523 | InbvDisplayString | |
| 524 | InbvEnableBootDriver | |
| 525 | InbvEnableDisplayString | |
| 526 | InbvInstallDisplayStringFilter | |
| 527 | InbvIsBootDriverInstalled | |
| 528 | InbvNotifyDisplayOwnershipChange | |
| 529 | InbvNotifyDisplayOwnershipLost | |
| 530 | InbvResetDisplay | |
| 531 | InbvSetScrollRegion | |
| 532 | InbvSetTextColor | |
| 533 | InbvSolidColorFill | |
| 534 | InitSafeBootMode DATA | |
| 535 | InitializeSListHead | |
| 536 | InterlockedPushListSList | |
| 537 | IoAcquireCancelSpinLock | |
| 538 | IoAcquireRemoveLockEx | |
| 539 | IoAcquireVpbSpinLock | |
| 540 | IoAdapterObjectType DATA | |
| 541 | IoAdjustStackSizeForRedirection | |
| 542 | IoAllocateAdapterChannel | |
| 543 | IoAllocateController | |
| 544 | IoAllocateDriverObjectExtension | |
| 545 | IoAllocateErrorLogEntry | |
| 546 | IoAllocateIrp | |
| 547 | IoAllocateMdl | |
| 548 | IoAllocateMiniCompletionPacket | |
| 549 | IoAllocateSfioStreamIdentifier | |
| 550 | IoAllocateWorkItem | |
| 551 | IoApplyPriorityInfoThread | |
| 552 | IoAssignResources | |
| 553 | IoAttachDevice | |
| 554 | IoAttachDeviceByPointer | |
| 555 | IoAttachDeviceToDeviceStack | |
| 556 | IoAttachDeviceToDeviceStackSafe | |
| 557 | IoBoostThreadIo | |
| 558 | IoBuildAsynchronousFsdRequest | |
| 559 | IoBuildDeviceIoControlRequest | |
| 560 | IoBuildPartialMdl | |
| 561 | IoBuildSynchronousFsdRequest | |
| 562 | IoCallDriver | |
| 563 | IoCancelFileOpen | |
| 564 | IoCancelIrp | |
| 565 | IoCheckDesiredAccess | |
| 566 | IoCheckEaBufferValidity | |
| 567 | IoCheckFunctionAccess | |
| 568 | IoCheckQuerySetFileInformation | |
| 569 | IoCheckQuerySetVolumeInformation | |
| 570 | IoCheckQuotaBufferValidity | |
| 571 | IoCheckShareAccess | |
| 572 | IoCheckShareAccessEx | |
| 573 | IoClearActivityIdThread | |
| 574 | IoClearDependency | |
| 575 | IoClearIrpExtraCreateParameter | |
| 576 | IoCompleteRequest | |
| 577 | IoCompletionObjectType DATA | |
| 578 | IoConnectInterrupt | |
| 579 | IoConnectInterruptEx | |
| 580 | IoConvertFileHandleToKernelHandle | |
| 581 | IoCopyDeviceObjectHint | |
| 582 | IoCreateArcName | |
| 583 | IoCreateController | |
| 584 | IoCreateDevice | |
| 585 | IoCreateDisk | |
| 586 | IoCreateDriver | |
| 587 | IoCreateFile | |
| 588 | IoCreateFileEx | |
| 589 | IoCreateFileSpecifyDeviceObjectHint | |
| 590 | IoCreateNotificationEvent | |
| 591 | IoCreateStreamFileObject | |
| 592 | IoCreateStreamFileObjectEx | |
| 593 | IoCreateStreamFileObjectEx2 | |
| 594 | IoCreateStreamFileObjectLite | |
| 595 | IoCreateSymbolicLink | |
| 596 | IoCreateSynchronizationEvent | |
| 597 | IoCreateSystemThread | |
| 598 | IoCreateUnprotectedSymbolicLink | |
| 599 | IoCsqInitialize | |
| 600 | IoCsqInitializeEx | |
| 601 | IoCsqInsertIrp | |
| 602 | IoCsqInsertIrpEx | |
| 603 | IoCsqRemoveIrp | |
| 604 | IoCsqRemoveNextIrp | |
| 605 | IoDecrementKeepAliveCount | |
| 606 | IoDeleteAllDependencyRelations | |
| 607 | IoDeleteController | |
| 608 | IoDeleteDevice | |
| 609 | IoDeleteDriver | |
| 610 | IoDeleteSymbolicLink | |
| 611 | IoDetachDevice | |
| 612 | IoDeviceHandlerObjectSize DATA | |
| 613 | IoDeviceHandlerObjectType DATA | |
| 614 | IoDeviceObjectType DATA | |
| 615 | IoDisconnectInterrupt | |
| 616 | IoDisconnectInterruptEx | |
| 617 | IoDriverObjectType DATA | |
| 618 | IoDuplicateDependency | |
| 619 | IoEnqueueIrp | |
| 620 | IoEnumerateDeviceObjectList | |
| 621 | IoEnumerateRegisteredFiltersList | |
| 622 | IoFastQueryNetworkAttributes | |
| 623 | IoFileObjectType DATA | |
| 624 | IoForwardAndCatchIrp | |
| 625 | IoForwardIrpSynchronously | |
| 626 | IoFreeController | |
| 627 | IoFreeErrorLogEntry | |
| 628 | IoFreeIrp | |
| 629 | IoFreeMdl | |
| 630 | IoFreeMiniCompletionPacket | |
| 631 | IoFreeSfioStreamIdentifier | |
| 632 | IoFreeWorkItem | |
| 633 | IoGetActivityIdIrp | |
| 634 | IoGetActivityIdThread | |
| 635 | IoGetAffinityInterrupt | |
| 636 | IoGetAttachedDevice | |
| 637 | IoGetAttachedDeviceReference | |
| 638 | IoGetBaseFileSystemDeviceObject | |
| 639 | IoGetBootDiskInformation | |
| 640 | IoGetBootDiskInformationLite | |
| 641 | IoGetConfigurationInformation | |
| 642 | IoGetContainerInformation | |
| 643 | IoGetCurrentProcess | |
| 644 | IoGetDeviceAttachmentBaseRef | |
| 645 | IoGetDeviceInterfaceAlias | |
| 646 | IoGetDeviceInterfacePropertyData | |
| 647 | IoGetDeviceInterfaces | |
| 648 | IoGetDeviceNumaNode | |
| 649 | IoGetDeviceObjectPointer | |
| 650 | IoGetDeviceProperty | |
| 651 | IoGetDevicePropertyData | |
| 652 | IoGetDeviceToVerify | |
| 653 | IoGetDiskDeviceObject | |
| 654 | IoGetDmaAdapter | |
| 655 | IoGetDriverObjectExtension | |
| 656 | IoGetFileObjectGenericMapping | |
| 657 | IoGetGenericIrpExtension | |
| 658 | IoGetInitialStack | |
| 659 | IoGetInitiatorProcess | |
| 660 | IoGetIoPriorityHint | |
| 661 | IoGetIrpExtraCreateParameter | |
| 662 | IoGetLowerDeviceObject | |
| 663 | IoGetOplockKeyContext | |
| 664 | IoGetOplockKeyContextEx | |
| 665 | IoGetPagingIoPriority | |
| 666 | IoGetRelatedDeviceObject | |
| 667 | IoGetRequestorProcess | |
| 668 | IoGetRequestorProcessId | |
| 669 | IoGetRequestorSessionId | |
| 670 | IoGetSfioStreamIdentifier | |
| 671 | IoGetStackLimits | |
| 672 | IoGetSymlinkSupportInformation | |
| 673 | IoGetTopLevelIrp | |
| 674 | IoGetTransactionParameterBlock | |
| 675 | IoIncrementKeepAliveCount | |
| 676 | IoInitializeIrp | |
| 677 | IoInitializeMiniCompletionPacket | |
| 678 | IoInitializeRemoveLockEx | |
| 679 | IoInitializeWorkItem | |
| 680 | IoInvalidateDeviceRelations | |
| 681 | IoInvalidateDeviceState | |
| 682 | IoIsActivityTracingEnabled | |
| 683 | IoIsFileObjectIgnoringSharing | |
| 684 | IoIsFileOriginRemote | |
| 685 | IoIsOperationSynchronous | |
| 686 | IoIsSystemThread | |
| 687 | IoIsValidIrpStatus | |
| 688 | IoIsWdmVersionAvailable | |
| 689 | IoMakeAssociatedIrp | |
| 690 | IoOpenDeviceInterfaceRegistryKey | |
| 691 | IoOpenDeviceRegistryKey | |
| 692 | IoPageRead | |
| 693 | IoPropagateActivityIdToThread | |
| 694 | IoPropagateIrpExtension | |
| 695 | IoQueryDeviceDescription | |
| 696 | IoQueryFileDosDeviceName | |
| 697 | IoQueryFileInformation | |
| 698 | IoQueryFullDriverPath | |
| 699 | IoQueryVolumeInformation | |
| 700 | IoQueueThreadIrp | |
| 701 | IoQueueWorkItem | |
| 702 | IoQueueWorkItemEx | |
| 703 | IoQueueWorkItemToNode | |
| 704 | IoRaiseHardError | |
| 705 | IoRaiseInformationalHardError | |
| 706 | IoReadDiskSignature | |
| 707 | IoReadOperationCount DATA | |
| 708 | IoReadPartitionTable | |
| 709 | IoReadPartitionTableEx | |
| 710 | IoReadTransferCount DATA | |
| 711 | IoRegisterBootDriverCallback | |
| 712 | IoRegisterBootDriverReinitialization | |
| 713 | IoRegisterContainerNotification | |
| 714 | IoRegisterDeviceInterface | |
| 715 | IoRegisterDriverReinitialization | |
| 716 | IoRegisterFileSystem | |
| 717 | IoRegisterFsRegistrationChange | |
| 718 | IoRegisterFsRegistrationChangeMountAware | |
| 719 | IoRegisterIoTracking | |
| 720 | IoRegisterLastChanceShutdownNotification | |
| 721 | IoRegisterPlugPlayNotification | |
| 722 | IoRegisterPriorityCallback | |
| 723 | IoRegisterShutdownNotification | |
| 724 | IoReleaseCancelSpinLock | |
| 725 | IoReleaseRemoveLockAndWaitEx | |
| 726 | IoReleaseRemoveLockEx | |
| 727 | IoReleaseVpbSpinLock | |
| 728 | IoRemoveShareAccess | |
| 729 | IoReplaceFileObjectName | |
| 730 | IoReplacePartitionUnit | |
| 731 | IoReportDetectedDevice | |
| 732 | IoReportHalResourceUsage | |
| 733 | IoReportInterruptActive | |
| 734 | IoReportInterruptInactive | |
| 735 | IoReportResourceForDetection | |
| 736 | IoReportResourceUsage | |
| 737 | IoReportRootDevice | |
| 738 | IoReportTargetDeviceChange | |
| 739 | IoReportTargetDeviceChangeAsynchronous | |
| 740 | IoRequestDeviceEject | |
| 741 | IoRequestDeviceEjectEx | |
| 742 | IoReserveDependency | |
| 743 | IoResolveDependency | |
| 744 | IoRetrievePriorityInfo | |
| 745 | IoReuseIrp | |
| 746 | IoSetActivityIdIrp | |
| 747 | IoSetActivityIdThread | |
| 748 | IoSetCompletionRoutineEx | |
| 749 | IoSetDependency | |
| 750 | IoSetDeviceInterfacePropertyData | |
| 751 | IoSetDeviceInterfaceState | |
| 752 | IoSetDevicePropertyData | |
| 753 | IoSetDeviceToVerify | |
| 754 | IoSetFileObjectIgnoreSharing | |
| 755 | IoSetFileOrigin | |
| 756 | IoSetGenericIrpExtension | |
| 757 | IoSetHardErrorOrVerifyDevice | |
| 758 | IoSetInformation | |
| 759 | IoSetIoCompletion | |
| 760 | IoSetIoCompletionEx | |
| 761 | IoSetIoPriorityHint | |
| 762 | IoSetIoPriorityHintIntoFileObject | |
| 763 | IoSetIoPriorityHintIntoThread | |
| 764 | IoSetIrpExtraCreateParameter | |
| 765 | IoSetMasterIrpStatus | |
| 766 | IoSetPartitionInformation | |
| 767 | IoSetPartitionInformationEx | |
| 768 | IoSetShareAccess | |
| 769 | IoSetShareAccessEx | |
| 770 | IoSetStartIoAttributes | |
| 771 | IoSetSystemPartition | |
| 772 | IoSetThreadHardErrorMode | |
| 773 | IoSetTopLevelIrp | |
| 774 | IoSizeofGenericIrpExtension | |
| 775 | IoSizeofWorkItem | |
| 776 | IoStartNextPacket | |
| 777 | IoStartNextPacketByKey | |
| 778 | IoStartPacket | |
| 779 | IoStatisticsLock DATA | |
| 780 | IoSynchronousCallDriver | |
| 781 | IoSynchronousInvalidateDeviceRelations | |
| 782 | IoSynchronousPageWrite | |
| 783 | IoTestDependency | |
| 784 | IoThreadToProcess | |
| 785 | IoTransferActivityId | |
| 786 | IoTranslateBusAddress | |
| 787 | IoTryQueueWorkItem | |
| 788 | IoUninitializeWorkItem | |
| 789 | IoUnregisterBootDriverCallback | |
| 790 | IoUnregisterContainerNotification | |
| 791 | IoUnregisterFileSystem | |
| 792 | IoUnregisterFsRegistrationChange | |
| 793 | IoUnregisterIoTracking | |
| 794 | IoUnregisterPlugPlayNotification | |
| 795 | IoUnregisterPlugPlayNotificationEx | |
| 796 | IoUnregisterPriorityCallback | |
| 797 | IoUnregisterShutdownNotification | |
| 798 | IoUpdateShareAccess | |
| 799 | IoValidateDeviceIoControlAccess | |
| 800 | IoVerifyPartitionTable | |
| 801 | IoVerifyVolume | |
| 802 | IoVolumeDeviceToDosName | |
| 803 | IoVolumeDeviceToGuid | |
| 804 | IoVolumeDeviceToGuidPath | |
| 805 | IoWMIAllocateInstanceIds | |
| 806 | IoWMIDeviceObjectToInstanceName | |
| 807 | IoWMIExecuteMethod | |
| 808 | IoWMIHandleToInstanceName | |
| 809 | IoWMIOpenBlock | |
| 810 | IoWMIQueryAllData | |
| 811 | IoWMIQueryAllDataMultiple | |
| 812 | IoWMIQuerySingleInstance | |
| 813 | IoWMIQuerySingleInstanceMultiple | |
| 814 | IoWMIRegistrationControl | |
| 815 | IoWMISetNotificationCallback | |
| 816 | IoWMISetSingleInstance | |
| 817 | IoWMISetSingleItem | |
| 818 | IoWMISuggestInstanceName | |
| 819 | IoWMIWriteEvent | |
| 820 | IoWithinStackLimits | |
| 821 | IoWriteErrorLogEntry | |
| 822 | IoWriteOperationCount DATA | |
| 823 | IoWritePartitionTable | |
| 824 | IoWritePartitionTableEx | |
| 825 | IoWriteTransferCount DATA | |
| 826 | IofCallDriver | |
| 827 | IofCompleteRequest | |
| 828 | KdAcquireDebuggerLock | |
| 829 | KdChangeOption | |
| 830 | KdDebuggerEnabled DATA | |
| 831 | KdDebuggerNotPresent DATA | |
| 832 | KdDeregisterPowerHandler | |
| 833 | KdDisableDebugger | |
| 834 | KdEnableDebugger | |
| 835 | KdEnteredDebugger DATA | |
| 836 | KdLogDbgPrint | |
| 837 | KdPollBreakIn | |
| 838 | KdPowerTransition | |
| 839 | KdRefreshDebuggerNotPresent | |
| 840 | KdRegisterPowerHandler | |
| 841 | KdReleaseDebuggerLock | |
| 842 | KdSystemDebugControl | |
| 843 | KeAcquireGuardedMutex | |
| 844 | KeAcquireGuardedMutexUnsafe | |
| 845 | KeAcquireInStackQueuedSpinLock | |
| 846 | KeAcquireInStackQueuedSpinLockAtDpcLevel | |
| 847 | KeAcquireInStackQueuedSpinLockForDpc | |
| 848 | KeAcquireInterruptSpinLock | |
| 849 | KeAcquireQueuedSpinLock | |
| 850 | KeAcquireSpinLockAtDpcLevel | |
| 851 | KeAcquireSpinLockForDpc | |
| 852 | KeAcquireSpinLockRaiseToDpc | |
| 853 | KeAcquireSpinLockRaiseToSynch | |
| 854 | KeAddGroupAffinityEx | |
| 855 | KeAddProcessorAffinityEx | |
| 856 | KeAddProcessorGroupAffinity | |
| 857 | KeAddSystemServiceTable | |
| 858 | KeAlertThread | |
| 859 | KeAllocateCalloutStack | |
| 860 | KeAllocateCalloutStackEx | |
| 861 | KeAndAffinityEx | |
| 862 | KeAndGroupAffinityEx | |
| 863 | KeAreAllApcsDisabled | |
| 864 | KeAreApcsDisabled | |
| 865 | KeAttachProcess | |
| 866 | KeBugCheck | |
| 867 | KeBugCheckEx | |
| 868 | KeCancelTimer | |
| 869 | KeCapturePersistentThreadState | |
| 870 | KeCheckProcessorAffinityEx | |
| 871 | KeCheckProcessorGroupAffinity | |
| 872 | KeClearEvent | |
| 873 | KeClockInterruptNotify | |
| 874 | KeClockTimerPowerChange | |
| 875 | KeComplementAffinityEx | |
| 876 | KeCopyAffinityEx | |
| 877 | KeCountSetBitsAffinityEx | |
| 878 | KeCountSetBitsGroupAffinity | |
| 879 | KeDelayExecutionThread | |
| 880 | KeDeregisterBugCheckCallback | |
| 881 | KeDeregisterBugCheckReasonCallback | |
| 882 | KeDeregisterNmiCallback | |
| 883 | KeDeregisterProcessorChangeCallback | |
| 884 | KeDetachProcess | |
| 885 | KeDispatchSecondaryInterrupt | |
| 886 | KeEnterCriticalRegion | |
| 887 | KeEnterGuardedRegion | |
| 888 | KeEnterKernelDebugger | |
| 889 | KeEnumerateNextProcessor | |
| 890 | KeExpandKernelStackAndCallout | |
| 891 | KeExpandKernelStackAndCalloutEx | |
| 892 | KeFindConfigurationEntry | |
| 893 | KeFindConfigurationNextEntry | |
| 894 | KeFindFirstSetLeftAffinityEx | |
| 895 | KeFindFirstSetLeftGroupAffinity | |
| 896 | KeFindFirstSetRightAffinityEx | |
| 897 | KeFindFirstSetRightGroupAffinity | |
| 898 | KeFirstGroupAffinityEx | |
| 899 | KeFlushEntireTb | |
| 900 | KeFlushIoBuffers | |
| 901 | KeFlushIoRectangle | |
| 902 | KeFlushQueuedDpcs | |
| 903 | KeFreeCalloutStack | |
| 904 | KeGenericCallDpc | |
| 905 | KeGetClockOwner | |
| 906 | KeGetClockTimerResolution | |
| 907 | KeGetCurrentNodeNumber | |
| 908 | KeGetCurrentProcessorNumberEx | |
| 909 | KeGetCurrentThread | |
| 910 | KeGetNextClockTickDuration | |
| 911 | KeGetProcessorIndexFromNumber | |
| 912 | KeGetProcessorNumberFromIndex | |
| 913 | KeGetRecommendedSharedDataAlignment | |
| 914 | KeHwPolicyLocateResource | |
| 915 | KeInitializeAffinityEx | |
| 916 | KeInitializeApc | |
| 917 | KeInitializeCrashDumpHeader | |
| 918 | KeInitializeDeviceQueue | |
| 919 | KeInitializeDpc | |
| 920 | KeInitializeEnumerationContext | |
| 921 | KeInitializeEnumerationContextFromGroup | |
| 922 | KeInitializeEvent | |
| 923 | KeInitializeGuardedMutex | |
| 924 | KeInitializeInterrupt | |
| 925 | KeInitializeMutant | |
| 926 | KeInitializeMutex | |
| 927 | KeInitializeQueue | |
| 928 | KeInitializeSecondaryInterruptServices | |
| 929 | KeInitializeSemaphore | |
| 930 | KeInitializeSpinLock | |
| 931 | KeInitializeThreadedDpc | |
| 932 | KeInitializeTimer | |
| 933 | KeInitializeTimerEx | |
| 934 | KeInsertByKeyDeviceQueue | |
| 935 | KeInsertDeviceQueue | |
| 936 | KeInsertHeadQueue | |
| 937 | KeInsertQueue | |
| 938 | KeInsertQueueApc | |
| 939 | KeInsertQueueDpc | |
| 940 | KeInterlockedClearProcessorAffinityEx | |
| 941 | KeInterlockedSetProcessorAffinityEx | |
| 942 | KeInvalidateAllCaches | |
| 943 | KeInvalidateRangeAllCaches | |
| 944 | KeIpiGenericCall | |
| 945 | KeIsAttachedProcess | |
| 946 | KeIsEmptyAffinityEx | |
| 947 | KeIsEqualAffinityEx | |
| 948 | KeIsExecutingDpc | |
| 949 | KeIsSingleGroupAffinityEx | |
| 950 | KeIsSubsetAffinityEx | |
| 951 | KeIsWaitListEmpty | |
| 952 | KeLeaveCriticalRegion | |
| 953 | KeLeaveGuardedRegion | |
| 954 | KeLoaderBlock DATA | |
| 955 | KeNumberProcessors DATA | |
| 956 | KeOrAffinityEx | |
| 957 | KeProcessorGroupAffinity | |
| 958 | KeProfileInterruptWithSource | |
| 959 | KePulseEvent | |
| 960 | KeQueryActiveGroupCount | |
| 961 | KeQueryActiveProcessorAffinity | |
| 962 | KeQueryActiveProcessorCount | |
| 963 | KeQueryActiveProcessorCountEx | |
| 964 | KeQueryActiveProcessors | |
| 965 | KeQueryDpcWatchdogInformation | |
| 966 | KeQueryEffectivePriorityThread | |
| 967 | KeQueryGroupAffinity | |
| 968 | KeQueryGroupAffinityEx | |
| 969 | KeQueryHardwareCounterConfiguration | |
| 970 | KeQueryHighestNodeNumber | |
| 971 | KeQueryInterruptTime | |
| 972 | KeQueryInterruptTimePrecise | |
| 973 | KeQueryLogicalProcessorRelationship | |
| 974 | KeQueryMaximumGroupCount | |
| 975 | KeQueryMaximumProcessorCount | |
| 976 | KeQueryMaximumProcessorCountEx | |
| 977 | KeQueryNodeActiveAffinity | |
| 978 | KeQueryNodeMaximumProcessorCount | |
| 979 | KeQueryPrcbAddress | |
| 980 | KeQueryPriorityThread | |
| 981 | KeQueryRuntimeThread | |
| 982 | KeQuerySystemTime | |
| 983 | KeQuerySystemTimePrecise | |
| 984 | KeQueryTickCount | |
| 985 | KeQueryTimeIncrement | |
| 986 | KeQueryTotalCycleTimeThread | |
| 987 | KeQueryUnbiasedInterruptTime | |
| 988 | KeRaiseUserException | |
| 989 | KeReadStateEvent | |
| 990 | KeReadStateMutant | |
| 991 | KeReadStateMutex | |
| 992 | KeReadStateQueue | |
| 993 | KeReadStateSemaphore | |
| 994 | KeReadStateTimer | |
| 995 | KeRegisterBugCheckCallback | |
| 996 | KeRegisterBugCheckReasonCallback | |
| 997 | KeRegisterNmiCallback | |
| 998 | KeRegisterProcessorChangeCallback | |
| 999 | KeReleaseGuardedMutex | |
| 1000 | KeReleaseGuardedMutexUnsafe | |
| 1001 | KeReleaseInStackQueuedSpinLock | |
| 1002 | KeReleaseInStackQueuedSpinLockForDpc | |
| 1003 | KeReleaseInStackQueuedSpinLockFromDpcLevel | |
| 1004 | KeReleaseInterruptSpinLock | |
| 1005 | KeReleaseMutant | |
| 1006 | KeReleaseMutex | |
| 1007 | KeReleaseQueuedSpinLock | |
| 1008 | KeReleaseSemaphore | |
| 1009 | KeReleaseSpinLock | |
| 1010 | KeReleaseSpinLockForDpc | |
| 1011 | KeReleaseSpinLockFromDpcLevel | |
| 1012 | KeRemoveByKeyDeviceQueue | |
| 1013 | KeRemoveByKeyDeviceQueueIfBusy | |
| 1014 | KeRemoveDeviceQueue | |
| 1015 | KeRemoveEntryDeviceQueue | |
| 1016 | KeRemoveGroupAffinityEx | |
| 1017 | KeRemoveProcessorAffinityEx | |
| 1018 | KeRemoveProcessorGroupAffinity | |
| 1019 | KeRemoveQueue | |
| 1020 | KeRemoveQueueDpc | |
| 1021 | KeRemoveQueueDpcEx | |
| 1022 | KeRemoveQueueEx | |
| 1023 | KeRemoveSystemServiceTable | |
| 1024 | KeResetEvent | |
| 1025 | KeRestoreExtendedProcessorState | |
| 1026 | KeRestoreFloatingPointState | |
| 1027 | KeRestoreProcessorState | |
| 1028 | KeRevertToUserAffinityThread | |
| 1029 | KeRevertToUserAffinityThreadEx | |
| 1030 | KeRevertToUserGroupAffinityThread | |
| 1031 | KeRundownQueue | |
| 1032 | KeSaveExtendedProcessorState | |
| 1033 | KeSaveFloatingPointState | |
| 1034 | KeSaveStateForHibernate | |
| 1035 | KeSetActualBasePriorityThread | |
| 1036 | KeSetAffinityThread | |
| 1037 | KeSetBasePriorityThread | |
| 1038 | KeSetCoalescableTimer | |
| 1039 | KeSetEvent | |
| 1040 | KeSetEventBoostPriority | |
| 1041 | KeSetHardwareCounterConfiguration | |
| 1042 | KeSetIdealProcessorThread | |
| 1043 | KeSetImportanceDpc | |
| 1044 | KeSetKernelStackSwapEnable | |
| 1045 | KeSetPriorityThread | |
| 1046 | KeSetProfileIrql | |
| 1047 | KeSetSystemAffinityThread | |
| 1048 | KeSetSystemAffinityThreadEx | |
| 1049 | KeSetSystemGroupAffinityThread | |
| 1050 | KeSetTargetProcessorDpc | |
| 1051 | KeSetTargetProcessorDpcEx | |
| 1052 | KeSetTimer | |
| 1053 | KeSetTimerEx | |
| 1054 | KeSignalCallDpcDone | |
| 1055 | KeSignalCallDpcSynchronize | |
| 1056 | KeStackAttachProcess | |
| 1057 | KeStallWhileFrozen | |
| 1058 | KeStartDynamicProcessor | |
| 1059 | KeSubtractAffinityEx | |
| 1060 | KeSweepIcacheRange | |
| 1061 | KeSweepLocalCaches | |
| 1062 | KeSynchronizeExecution | |
| 1063 | KeTestAlertThread | |
| 1064 | KeTestSpinLock | |
| 1065 | KeTickCount DATA | |
| 1066 | KeTryToAcquireGuardedMutex | |
| 1067 | KeTryToAcquireQueuedSpinLock | |
| 1068 | KeTryToAcquireSpinLockAtDpcLevel | |
| 1069 | KeUnstackDetachProcess | |
| 1070 | KeUserModeCallback | |
| 1071 | KeWaitForMultipleObjects | |
| 1072 | KeWaitForMutexObject | |
| 1073 | KeWaitForSingleObject | |
| 1074 | KiBugCheckData DATA | |
| 1075 | KiCheckForKernelApcDelivery | |
| 1076 | KiConnectHalInterrupt | |
| 1077 | KiDeliverApc | |
| 1078 | KiDispatchInterrupt | |
| 1079 | KiIpiServiceRoutine | |
| 1080 | KiReplayInterrupt | |
| 1081 | KitLogFeatureUsage | |
| 1082 | KseQueryDeviceData | |
| 1083 | KseQueryDeviceDataList | |
| 1084 | KseQueryDeviceFlags | |
| 1085 | KseRegisterShim | |
| 1086 | KseRegisterShimEx | |
| 1087 | KseSetDeviceFlags | |
| 1088 | KseUnregisterShim | |
| 1089 | LdrAccessResource | |
| 1090 | LdrEnumResources | |
| 1091 | LdrFindResourceDirectory_U | |
| 1092 | LdrFindResourceEx_U | |
| 1093 | LdrFindResource_U | |
| 1094 | LdrResFindResource | |
| 1095 | LdrResFindResourceDirectory | |
| 1096 | LdrResSearchResource | |
| 1097 | LpcPortObjectType DATA | |
| 1098 | LpcReplyWaitReplyPort | |
| 1099 | LpcRequestPort | |
| 1100 | LpcRequestWaitReplyPort | |
| 1101 | LpcRequestWaitReplyPortEx | |
| 1102 | LpcSendWaitReceivePort | |
| 1103 | LsaCallAuthenticationPackage | |
| 1104 | LsaDeregisterLogonProcess | |
| 1105 | LsaFreeReturnBuffer | |
| 1106 | LsaLogonUser | |
| 1107 | LsaLookupAuthenticationPackage | |
| 1108 | LsaRegisterLogonProcess | |
| 1109 | Mm64BitPhysicalAddress DATA | |
| 1110 | MmAddPhysicalMemory | |
| 1111 | MmAddVerifierThunks | |
| 1112 | MmAdjustWorkingSetSize | |
| 1113 | MmAdvanceMdl | |
| 1114 | MmAllocateContiguousMemory | |
| 1115 | MmAllocateContiguousMemorySpecifyCache | |
| 1116 | MmAllocateContiguousMemorySpecifyCacheNode | |
| 1117 | MmAllocateContiguousNodeMemory | |
| 1118 | MmAllocateMappingAddress | |
| 1119 | MmAllocateMdlForIoSpace | |
| 1120 | MmAllocateNodePagesForMdlEx | |
| 1121 | MmAllocateNonCachedMemory | |
| 1122 | MmAllocatePagesForMdl | |
| 1123 | MmAllocatePagesForMdlEx | |
| 1124 | MmAreMdlPagesCached | |
| 1125 | MmBadPointer DATA | |
| 1126 | MmBuildMdlForNonPagedPool | |
| 1127 | MmCanFileBeTruncated | |
| 1128 | MmCommitSessionMappedView | |
| 1129 | MmCopyMemory | |
| 1130 | MmCopyVirtualMemory | |
| 1131 | MmCreateMdl | |
| 1132 | MmCreateMirror | |
| 1133 | MmCreateSection | |
| 1134 | MmDisableModifiedWriteOfSection | |
| 1135 | MmDoesFileHaveUserWritableReferences | |
| 1136 | MmFlushImageSection | |
| 1137 | MmForceSectionClosed | |
| 1138 | MmFreeContiguousMemory | |
| 1139 | MmFreeContiguousMemorySpecifyCache | |
| 1140 | MmFreeMappingAddress | |
| 1141 | MmFreeNonCachedMemory | |
| 1142 | MmFreePagesFromMdl | |
| 1143 | MmGetCacheAttribute | |
| 1144 | MmGetMaximumFileSectionSize | |
| 1145 | MmGetPhysicalAddress | |
| 1146 | MmGetPhysicalMemoryRanges | |
| 1147 | MmGetSystemRoutineAddress | |
| 1148 | MmGetVirtualForPhysical | |
| 1149 | MmGrowKernelStack | |
| 1150 | MmHighestUserAddress DATA | |
| 1151 | MmIsAddressValid | |
| 1152 | MmIsDriverSuspectForVerifier | |
| 1153 | MmIsDriverVerifying | |
| 1154 | MmIsDriverVerifyingByAddress | |
| 1155 | MmIsIoSpaceActive | |
| 1156 | MmIsNonPagedSystemAddressValid | |
| 1157 | MmIsRecursiveIoFault | |
| 1158 | MmIsThisAnNtAsSystem | |
| 1159 | MmIsVerifierEnabled | |
| 1160 | MmLockPagableDataSection | |
| 1161 | MmLockPagableImageSection | |
| 1162 | MmLockPagableSectionByHandle | |
| 1163 | MmMapIoSpace | |
| 1164 | MmMapLockedPages | |
| 1165 | MmMapLockedPagesSpecifyCache | |
| 1166 | MmMapLockedPagesWithReservedMapping | |
| 1167 | MmMapMemoryDumpMdl | |
| 1168 | MmMapUserAddressesToPage | |
| 1169 | MmMapViewInSessionSpace | |
| 1170 | MmMapViewInSessionSpaceEx | |
| 1171 | MmMapViewInSystemSpace | |
| 1172 | MmMapViewInSystemSpaceEx | |
| 1173 | MmMapViewOfSection | |
| 1174 | MmMarkPhysicalMemoryAsBad | |
| 1175 | MmMarkPhysicalMemoryAsGood | |
| 1176 | MmMdlPageContentsState | |
| 1177 | MmMdlPagesAreZero | |
| 1178 | MmPageEntireDriver | |
| 1179 | MmPrefetchPages | |
| 1180 | MmPrefetchVirtualAddresses | |
| 1181 | MmProbeAndLockPages | |
| 1182 | MmProbeAndLockProcessPages | |
| 1183 | MmProbeAndLockSelectedPages | |
| 1184 | MmProtectMdlSystemAddress | |
| 1185 | MmQuerySystemSize | |
| 1186 | MmRemovePhysicalMemory | |
| 1187 | MmResetDriverPaging | |
| 1188 | MmRotatePhysicalView | |
| 1189 | MmSectionObjectType DATA | |
| 1190 | MmSecureVirtualMemory | |
| 1191 | MmSetAddressRangeModified | |
| 1192 | MmSizeOfMdl | |
| 1193 | MmSystemRangeStart DATA | |
| 1194 | MmTrimAllSystemPagableMemory | |
| 1195 | MmUnlockPagableImageSection | |
| 1196 | MmUnlockPages | |
| 1197 | MmUnmapIoSpace | |
| 1198 | MmUnmapLockedPages | |
| 1199 | MmUnmapReservedMapping | |
| 1200 | MmUnmapViewInSessionSpace | |
| 1201 | MmUnmapViewInSystemSpace | |
| 1202 | MmUnmapViewOfSection | |
| 1203 | MmUnsecureVirtualMemory | |
| 1204 | MmUserProbeAddress DATA | |
| 1205 | NlsAnsiCodePage DATA | |
| 1206 | NlsLeadByteInfo DATA | |
| 1207 | NlsMbCodePageTag DATA | |
| 1208 | NlsMbOemCodePageTag DATA | |
| 1209 | NlsOemCodePage DATA | |
| 1210 | NlsOemLeadByteInfo DATA | |
| 1211 | NtAdjustPrivilegesToken | |
| 1212 | NtAllocateLocallyUniqueId | |
| 1213 | NtAllocateUuids | |
| 1214 | NtAllocateVirtualMemory | |
| 1215 | NtBuildGUID | |
| 1216 | NtBuildLab | |
| 1217 | NtBuildNumber | |
| 1218 | NtClose | |
| 1219 | NtCommitComplete | |
| 1220 | NtCommitEnlistment | |
| 1221 | NtCommitTransaction | |
| 1222 | NtConnectPort | |
| 1223 | NtCreateEnlistment | |
| 1224 | NtCreateEvent | |
| 1225 | NtCreateFile | |
| 1226 | NtCreateResourceManager | |
| 1227 | NtCreateSection | |
| 1228 | NtCreateTransaction | |
| 1229 | NtCreateTransactionManager | |
| 1230 | NtDeleteAtom | |
| 1231 | NtDeleteFile | |
| 1232 | NtDeviceIoControlFile | |
| 1233 | NtDuplicateObject | |
| 1234 | NtDuplicateToken | |
| 1235 | NtEnumerateTransactionObject | |
| 1236 | NtFindAtom | |
| 1237 | NtFreeVirtualMemory | |
| 1238 | NtFreezeTransactions | |
| 1239 | NtFsControlFile | |
| 1240 | NtGetEnvironmentVariableEx | |
| 1241 | NtGetNotificationResourceManager | |
| 1242 | NtGlobalFlag DATA | |
| 1243 | NtLockFile | |
| 1244 | NtMakePermanentObject | |
| 1245 | NtMapViewOfSection | |
| 1246 | NtNotifyChangeDirectoryFile | |
| 1247 | NtOpenEnlistment | |
| 1248 | NtOpenFile | |
| 1249 | NtOpenProcess | |
| 1250 | NtOpenProcessToken | |
| 1251 | NtOpenProcessTokenEx | |
| 1252 | NtOpenResourceManager | |
| 1253 | NtOpenThread | |
| 1254 | NtOpenThreadToken | |
| 1255 | NtOpenThreadTokenEx | |
| 1256 | NtOpenTransaction | |
| 1257 | NtOpenTransactionManager | |
| 1258 | NtPrePrepareComplete | |
| 1259 | NtPrePrepareEnlistment | |
| 1260 | NtPrepareComplete | |
| 1261 | NtPrepareEnlistment | |
| 1262 | NtPropagationComplete | |
| 1263 | NtPropagationFailed | |
| 1264 | NtQueryDirectoryFile | |
| 1265 | NtQueryEaFile | |
| 1266 | NtQueryEnvironmentVariableInfoEx | |
| 1267 | NtQueryInformationAtom | |
| 1268 | NtQueryInformationEnlistment | |
| 1269 | NtQueryInformationFile | |
| 1270 | NtQueryInformationProcess | |
| 1271 | NtQueryInformationResourceManager | |
| 1272 | NtQueryInformationThread | |
| 1273 | NtQueryInformationToken | |
| 1274 | NtQueryInformationTransaction | |
| 1275 | NtQueryInformationTransactionManager | |
| 1276 | NtQueryQuotaInformationFile | |
| 1277 | NtQuerySecurityAttributesToken | |
| 1278 | NtQuerySecurityObject | |
| 1279 | NtQuerySystemInformation | |
| 1280 | NtQuerySystemInformationEx | |
| 1281 | NtQueryVolumeInformationFile | |
| 1282 | NtReadFile | |
| 1283 | NtReadOnlyEnlistment | |
| 1284 | NtRecoverEnlistment | |
| 1285 | NtRecoverResourceManager | |
| 1286 | NtRecoverTransactionManager | |
| 1287 | NtRequestPort | |
| 1288 | NtRequestWaitReplyPort | |
| 1289 | NtRollbackComplete | |
| 1290 | NtRollbackEnlistment | |
| 1291 | NtRollbackTransaction | |
| 1292 | NtSetCachedSigningLevel | |
| 1293 | NtSetEaFile | |
| 1294 | NtSetEvent | |
| 1295 | NtSetInformationEnlistment | |
| 1296 | NtSetInformationFile | |
| 1297 | NtSetInformationProcess | |
| 1298 | NtSetInformationResourceManager | |
| 1299 | NtSetInformationThread | |
| 1300 | NtSetInformationToken | |
| 1301 | NtSetInformationTransaction | |
| 1302 | NtSetInformationVirtualMemory | |
| 1303 | NtSetQuotaInformationFile | |
| 1304 | NtSetSecurityObject | |
| 1305 | NtSetVolumeInformationFile | |
| 1306 | NtShutdownSystem | |
| 1307 | NtThawTransactions | |
| 1308 | NtTraceControl | |
| 1309 | NtTraceEvent | |
| 1310 | NtUnlockFile | |
| 1311 | NtVdmControl | |
| 1312 | NtWaitForSingleObject | |
| 1313 | NtWriteFile | |
| 1314 | ObAssignSecurity | |
| 1315 | ObCheckCreateObjectAccess | |
| 1316 | ObCheckObjectAccess | |
| 1317 | ObCloseHandle | |
| 1318 | ObCreateObject | |
| 1319 | ObCreateObjectType | |
| 1320 | ObDeleteCapturedInsertInfo | |
| 1321 | ObDereferenceObject | |
| 1322 | ObDereferenceObjectDeferDelete | |
| 1323 | ObDereferenceObjectDeferDeleteWithTag | |
| 1324 | ObDereferenceSecurityDescriptor | |
| 1325 | ObDuplicateObject | |
| 1326 | ObFindHandleForObject | |
| 1327 | ObGetFilterVersion | |
| 1328 | ObGetObjectSecurity | |
| 1329 | ObGetObjectType | |
| 1330 | ObInsertObject | |
| 1331 | ObIsDosDeviceLocallyMapped | |
| 1332 | ObIsKernelHandle | |
| 1333 | ObLogSecurityDescriptor | |
| 1334 | ObMakeTemporaryObject | |
| 1335 | ObOpenObjectByName | |
| 1336 | ObOpenObjectByPointer | |
| 1337 | ObOpenObjectByPointerWithTag | |
| 1338 | ObQueryNameInfo | |
| 1339 | ObQueryNameString | |
| 1340 | ObQueryObjectAuditingByHandle | |
| 1341 | ObReferenceObjectByHandle | |
| 1342 | ObReferenceObjectByHandleWithTag | |
| 1343 | ObReferenceObjectByName | |
| 1344 | ObReferenceObjectByPointer | |
| 1345 | ObReferenceObjectByPointerWithTag | |
| 1346 | ObReferenceObjectSafe | |
| 1347 | ObReferenceObjectSafeWithTag | |
| 1348 | ObReferenceSecurityDescriptor | |
| 1349 | ObRegisterCallbacks | |
| 1350 | ObReleaseObjectSecurity | |
| 1351 | ObSetHandleAttributes | |
| 1352 | ObSetSecurityDescriptorInfo | |
| 1353 | ObSetSecurityObjectByPointer | |
| 1354 | ObUnRegisterCallbacks | |
| 1355 | ObWaitForMultipleObjects | |
| 1356 | ObWaitForSingleObject | |
| 1357 | ObfDereferenceObject | |
| 1358 | ObfDereferenceObjectWithTag | |
| 1359 | ObfReferenceObject | |
| 1360 | ObfReferenceObjectWithTag | |
| 1361 | POGOBuffer DATA | |
| 1362 | PcwAddInstance | |
| 1363 | PcwCloseInstance | |
| 1364 | PcwCreateInstance | |
| 1365 | PcwRegister | |
| 1366 | PcwUnregister | |
| 1367 | PfFileInfoNotify | |
| 1368 | PfxFindPrefix | |
| 1369 | PfxInitialize | |
| 1370 | PfxInsertPrefix | |
| 1371 | PfxRemovePrefix | |
| 1372 | PoCallDriver | |
| 1373 | PoCancelDeviceNotify | |
| 1374 | PoClearPowerRequest | |
| 1375 | PoCreatePowerRequest | |
| 1376 | PoDeletePowerRequest | |
| 1377 | PoDisableSleepStates | |
| 1378 | PoEndDeviceBusy | |
| 1379 | PoFxActivateComponent | |
| 1380 | PoFxCompleteDevicePowerNotRequired | |
| 1381 | PoFxCompleteIdleCondition | |
| 1382 | PoFxCompleteIdleState | |
| 1383 | PoFxIdleComponent | |
| 1384 | PoFxNotifySurprisePowerOn | |
| 1385 | PoFxPowerControl | |
| 1386 | PoFxPowerOnCrashdumpDevice | |
| 1387 | PoFxProcessorNotification | |
| 1388 | PoFxRegisterCoreDevice | |
| 1389 | PoFxRegisterCrashdumpDevice | |
| 1390 | PoFxRegisterDevice | |
| 1391 | PoFxRegisterPlugin | |
| 1392 | PoFxRegisterPluginEx | |
| 1393 | PoFxRegisterPrimaryDevice | |
| 1394 | PoFxReportDevicePoweredOn | |
| 1395 | PoFxSetComponentLatency | |
| 1396 | PoFxSetComponentResidency | |
| 1397 | PoFxSetComponentWake | |
| 1398 | PoFxSetDeviceIdleTimeout | |
| 1399 | PoFxStartDevicePowerManagement | |
| 1400 | PoFxUnregisterDevice | |
| 1401 | PoGetProcessorIdleAccounting | |
| 1402 | PoGetSystemWake | |
| 1403 | PoInitiateProcessorWake | |
| 1404 | PoLatencySensitivityHint | |
| 1405 | PoNotifyVSyncChange | |
| 1406 | PoQueryWatchdogTime | |
| 1407 | PoQueueShutdownWorkItem | |
| 1408 | PoReenableSleepStates | |
| 1409 | PoRegisterCoalescingCallback | |
| 1410 | PoRegisterDeviceForIdleDetection | |
| 1411 | PoRegisterDeviceNotify | |
| 1412 | PoRegisterPowerSettingCallback | |
| 1413 | PoRegisterSystemState | |
| 1414 | PoRequestPowerIrp | |
| 1415 | PoRequestShutdownEvent | |
| 1416 | PoSetDeviceBusyEx | |
| 1417 | PoSetFixedWakeSource | |
| 1418 | PoSetHiberRange | |
| 1419 | PoSetPowerRequest | |
| 1420 | PoSetPowerState | |
| 1421 | PoSetSystemState | |
| 1422 | PoSetSystemWake | |
| 1423 | PoSetUserPresent | |
| 1424 | PoShutdownBugCheck | |
| 1425 | PoStartDeviceBusy | |
| 1426 | PoStartNextPowerIrp | |
| 1427 | PoUnregisterCoalescingCallback | |
| 1428 | PoUnregisterPowerSettingCallback | |
| 1429 | PoUnregisterSystemState | |
| 1430 | PoUserShutdownCancelled | |
| 1431 | PoUserShutdownInitiated | |
| 1432 | ProbeForRead | |
| 1433 | ProbeForWrite | |
| 1434 | PsAcquireProcessExitSynchronization | |
| 1435 | PsAssignImpersonationToken | |
| 1436 | PsChargePoolQuota | |
| 1437 | PsChargeProcessNonPagedPoolQuota | |
| 1438 | PsChargeProcessPagedPoolQuota | |
| 1439 | PsChargeProcessPoolQuota | |
| 1440 | PsChargeProcessWakeCounter | |
| 1441 | PsCreateSystemThread | |
| 1442 | PsCreateSystemThreadEx | |
| 1443 | PsDereferenceImpersonationToken | |
| 1444 | PsDereferenceKernelStack | |
| 1445 | PsDereferencePrimaryToken | |
| 1446 | PsDisableImpersonation | |
| 1447 | PsEnterPriorityRegion | |
| 1448 | PsEstablishWin32Callouts | |
| 1449 | PsGetContextThread | |
| 1450 | PsGetCurrentProcess | |
| 1451 | PsGetCurrentProcessId | |
| 1452 | PsGetCurrentProcessSessionId | |
| 1453 | PsGetCurrentProcessWin32Process | |
| 1454 | PsGetCurrentThread | |
| 1455 | PsGetCurrentThreadId | |
| 1456 | PsGetCurrentThreadPreviousMode | |
| 1457 | PsGetCurrentThreadProcess | |
| 1458 | PsGetCurrentThreadProcessId | |
| 1459 | PsGetCurrentThreadStackBase | |
| 1460 | PsGetCurrentThreadStackLimit | |
| 1461 | PsGetCurrentThreadTeb | |
| 1462 | PsGetCurrentThreadWin32Thread | |
| 1463 | PsGetCurrentThreadWin32ThreadAndEnterCriticalRegion | |
| 1464 | PsGetJobLock | |
| 1465 | PsGetJobSessionId | |
| 1466 | PsGetJobUIRestrictionsClass | |
| 1467 | PsGetProcessCommonJob | |
| 1468 | PsGetProcessCreateTimeQuadPart | |
| 1469 | PsGetProcessDebugPort | |
| 1470 | PsGetProcessExitProcessCalled | |
| 1471 | PsGetProcessExitStatus | |
| 1472 | PsGetProcessExitTime | |
| 1473 | PsGetProcessId | |
| 1474 | PsGetProcessImageFileName | |
| 1475 | PsGetProcessInheritedFromUniqueProcessId | |
| 1476 | PsGetProcessJob | |
| 1477 | PsGetProcessPeb | |
| 1478 | PsGetProcessPriorityClass | |
| 1479 | PsGetProcessProtection | |
| 1480 | PsGetProcessSectionBaseAddress | |
| 1481 | PsGetProcessSecurityPort | |
| 1482 | PsGetProcessSessionId | |
| 1483 | PsGetProcessSessionIdEx | |
| 1484 | PsGetProcessSignatureLevel | |
| 1485 | PsGetProcessWin32Process | |
| 1486 | PsGetProcessWin32WindowStation | |
| 1487 | PsGetThreadExitStatus | |
| 1488 | PsGetThreadFreezeCount | |
| 1489 | PsGetThreadHardErrorsAreDisabled | |
| 1490 | PsGetThreadId | |
| 1491 | PsGetThreadProcess | |
| 1492 | PsGetThreadProcessId | |
| 1493 | PsGetThreadSessionId | |
| 1494 | PsGetThreadTeb | |
| 1495 | PsGetThreadWin32Thread | |
| 1496 | PsGetVersion | |
| 1497 | PsImpersonateClient | |
| 1498 | PsInitialSystemProcess DATA | |
| 1499 | PsIsCurrentThreadPrefetching | |
| 1500 | PsIsDiskCountersEnabled | |
| 1501 | PsIsProcessBeingDebugged | |
| 1502 | PsIsProtectedProcess | |
| 1503 | PsIsProtectedProcessLight | |
| 1504 | PsIsSystemProcess | |
| 1505 | PsIsSystemThread | |
| 1506 | PsIsThreadImpersonating | |
| 1507 | PsIsThreadTerminating | |
| 1508 | PsJobType DATA | |
| 1509 | PsLeavePriorityRegion | |
| 1510 | PsLookupProcessByProcessId | |
| 1511 | PsLookupProcessThreadByCid | |
| 1512 | PsLookupThreadByThreadId | |
| 1513 | PsProcessType DATA | |
| 1514 | PsQueryProcessAttributesByToken | |
| 1515 | PsQueryProcessExceptionFlags | |
| 1516 | PsQueryTotalCycleTimeProcess | |
| 1517 | PsReferenceImpersonationToken | |
| 1518 | PsReferenceKernelStack | |
| 1519 | PsReferencePrimaryToken | |
| 1520 | PsReferenceProcessFilePointer | |
| 1521 | PsReleaseProcessExitSynchronization | |
| 1522 | PsReleaseProcessWakeCounter | |
| 1523 | PsRemoveCreateThreadNotifyRoutine | |
| 1524 | PsRemoveLoadImageNotifyRoutine | |
| 1525 | PsRestoreImpersonation | |
| 1526 | PsResumeProcess | |
| 1527 | PsReturnPoolQuota | |
| 1528 | PsReturnProcessNonPagedPoolQuota | |
| 1529 | PsReturnProcessPagedPoolQuota | |
| 1530 | PsRevertThreadToSelf | |
| 1531 | PsRevertToSelf | |
| 1532 | PsSetContextThread | |
| 1533 | PsSetCreateProcessNotifyRoutine | |
| 1534 | PsSetCreateProcessNotifyRoutineEx | |
| 1535 | PsSetCreateThreadNotifyRoutine | |
| 1536 | PsSetCurrentThreadPrefetching | |
| 1537 | PsSetLegoNotifyRoutine | |
| 1538 | PsSetLoadImageNotifyRoutine | |
| 1539 | PsSetProcessPriorityByClass | |
| 1540 | PsSetProcessPriorityClass | |
| 1541 | PsSetProcessSecurityPort | |
| 1542 | PsSetProcessWin32Process | |
| 1543 | PsSetProcessWindowStation | |
| 1544 | PsSetThreadHardErrorsAreDisabled | |
| 1545 | PsSetThreadWin32Thread | |
| 1546 | PsSuspendProcess | |
| 1547 | PsTerminateSystemThread | |
| 1548 | PsThreadType DATA | |
| 1549 | PsUILanguageComitted DATA | |
| 1550 | PsUpdateDiskCounters | |
| 1551 | PsWrapApcWow64Thread | |
| 1552 | ReadTimeStampCounter | |
| 1553 | RtlAbsoluteToSelfRelativeSD | |
| 1554 | RtlAddAccessAllowedAce | |
| 1555 | RtlAddAccessAllowedAceEx | |
| 1556 | RtlAddAce | |
| 1557 | RtlAddAtomToAtomTable | |
| 1558 | RtlAddAtomToAtomTableEx | |
| 1559 | RtlAddRange | |
| 1560 | RtlAddResourceAttributeAce | |
| 1561 | RtlAllocateHeap | |
| 1562 | RtlAnsiCharToUnicodeChar | |
| 1563 | RtlAnsiStringToUnicodeSize | |
| 1564 | RtlAnsiStringToUnicodeString | |
| 1565 | RtlAppendAsciizToString | |
| 1566 | RtlAppendStringToString | |
| 1567 | RtlAppendUnicodeStringToString | |
| 1568 | RtlAppendUnicodeToString | |
| 1569 | RtlAreAllAccessesGranted | |
| 1570 | RtlAreAnyAccessesGranted | |
| 1571 | RtlAreBitsClear | |
| 1572 | RtlAreBitsSet | |
| 1573 | RtlAssert | |
| 1574 | RtlAvlInsertNodeEx | |
| 1575 | RtlAvlRemoveNode | |
| 1576 | RtlCaptureContext | |
| 1577 | RtlCaptureStackBackTrace | |
| 1578 | RtlCharToInteger | |
| 1579 | RtlCheckPortableOperatingSystem | |
| 1580 | RtlCheckRegistryKey | |
| 1581 | RtlCheckTokenCapability | |
| 1582 | RtlCheckTokenMembership | |
| 1583 | RtlCheckTokenMembershipEx | |
| 1584 | RtlClearAllBits | |
| 1585 | RtlClearBit | |
| 1586 | RtlClearBits | |
| 1587 | RtlCmDecodeMemIoResource | |
| 1588 | RtlCmEncodeMemIoResource | |
| 1589 | RtlCompareAltitudes | |
| 1590 | RtlCompareMemory | |
| 1591 | RtlCompareMemoryUlong | |
| 1592 | RtlCompareString | |
| 1593 | RtlCompareUnicodeString | |
| 1594 | RtlCompareUnicodeStrings | |
| 1595 | RtlCompressBuffer | |
| 1596 | RtlCompressChunks | |
| 1597 | RtlComputeCrc32 | |
| 1598 | RtlContractHashTable | |
| 1599 | RtlConvertSidToUnicodeString | |
| 1600 | RtlCopyBitMap | |
| 1601 | RtlCopyLuid | |
| 1602 | RtlCopyLuidAndAttributesArray | |
| 1603 | RtlCopyMemory | |
| 1604 | RtlCopyRangeList | |
| 1605 | RtlCopySid | |
| 1606 | RtlCopySidAndAttributesArray | |
| 1607 | RtlCopyString | |
| 1608 | RtlCopyUnicodeString | |
| 1609 | RtlCrc32 | |
| 1610 | RtlCrc64 | |
| 1611 | RtlCreateAcl | |
| 1612 | RtlCreateAtomTable | |
| 1613 | RtlCreateAtomTableEx | |
| 1614 | RtlCreateHashTable | |
| 1615 | RtlCreateHashTableEx | |
| 1616 | RtlCreateHeap | |
| 1617 | RtlCreateRegistryKey | |
| 1618 | RtlCreateSecurityDescriptor | |
| 1619 | RtlCreateSystemVolumeInformationFolder | |
| 1620 | RtlCreateUnicodeString | |
| 1621 | RtlCreateUserThread | |
| 1622 | RtlCultureNameToLCID | |
| 1623 | RtlCustomCPToUnicodeN | |
| 1624 | RtlDecompressBuffer | |
| 1625 | RtlDecompressBufferEx | |
| 1626 | RtlDecompressChunks | |
| 1627 | RtlDecompressFragment | |
| 1628 | RtlDelete | |
| 1629 | RtlDeleteAce | |
| 1630 | RtlDeleteAtomFromAtomTable | |
| 1631 | RtlDeleteElementGenericTable | |
| 1632 | RtlDeleteElementGenericTableAvl | |
| 1633 | RtlDeleteElementGenericTableAvlEx | |
| 1634 | RtlDeleteHashTable | |
| 1635 | RtlDeleteNoSplay | |
| 1636 | RtlDeleteOwnersRanges | |
| 1637 | RtlDeleteRange | |
| 1638 | RtlDeleteRegistryValue | |
| 1639 | RtlDescribeChunk | |
| 1640 | RtlDestroyAtomTable | |
| 1641 | RtlDestroyHeap | |
| 1642 | RtlDowncaseUnicodeChar | |
| 1643 | RtlDowncaseUnicodeString | |
| 1644 | RtlDuplicateUnicodeString | |
| 1645 | RtlEmptyAtomTable | |
| 1646 | RtlEndEnumerationHashTable | |
| 1647 | RtlEndWeakEnumerationHashTable | |
| 1648 | RtlEnumerateEntryHashTable | |
| 1649 | RtlEnumerateGenericTable | |
| 1650 | RtlEnumerateGenericTableAvl | |
| 1651 | RtlEnumerateGenericTableLikeADirectory | |
| 1652 | RtlEnumerateGenericTableWithoutSplaying | |
| 1653 | RtlEnumerateGenericTableWithoutSplayingAvl | |
| 1654 | RtlEqualLuid | |
| 1655 | RtlEqualSid | |
| 1656 | RtlEqualString | |
| 1657 | RtlEqualUnicodeString | |
| 1658 | RtlEqualWnfChangeStamps | |
| 1659 | RtlEthernetAddressToStringA | |
| 1660 | RtlEthernetAddressToStringW | |
| 1661 | RtlEthernetStringToAddressA | |
| 1662 | RtlEthernetStringToAddressW | |
| 1663 | RtlExpandHashTable | |
| 1664 | RtlExtendedMagicDivide | |
| 1665 | RtlExtractBitMap | |
| 1666 | RtlFillMemory | |
| 1667 | RtlFillMemoryUlong | |
| 1668 | RtlFillMemoryUlonglong | |
| 1669 | RtlFindAceByType | |
| 1670 | RtlFindClearBits | |
| 1671 | RtlFindClearBitsAndSet | |
| 1672 | RtlFindClearRuns | |
| 1673 | RtlFindClosestEncodableLength | |
| 1674 | RtlFindFirstRunClear | |
| 1675 | RtlFindLastBackwardRunClear | |
| 1676 | RtlFindLeastSignificantBit | |
| 1677 | RtlFindLongestRunClear | |
| 1678 | RtlFindMessage | |
| 1679 | RtlFindMostSignificantBit | |
| 1680 | RtlFindNextForwardRunClear | |
| 1681 | RtlFindRange | |
| 1682 | RtlFindSetBits | |
| 1683 | RtlFindSetBitsAndClear | |
| 1684 | RtlFindUnicodePrefix | |
| 1685 | RtlFormatCurrentUserKeyPath | |
| 1686 | RtlFormatMessage | |
| 1687 | RtlFreeAnsiString | |
| 1688 | RtlFreeHeap | |
| 1689 | RtlFreeOemString | |
| 1690 | RtlFreeRangeList | |
| 1691 | RtlFreeUnicodeString | |
| 1692 | RtlGUIDFromString | |
| 1693 | RtlGenerate8dot3Name | |
| 1694 | RtlGenerateClass5Guid | |
| 1695 | RtlGetAce | |
| 1696 | RtlGetAppContainerNamedObjectPath | |
| 1697 | RtlGetAppContainerParent | |
| 1698 | RtlGetAppContainerSidType | |
| 1699 | RtlGetCallersAddress | |
| 1700 | RtlGetCompressionWorkSpaceSize | |
| 1701 | RtlGetDaclSecurityDescriptor | |
| 1702 | RtlGetDefaultCodePage | |
| 1703 | RtlGetElementGenericTable | |
| 1704 | RtlGetElementGenericTableAvl | |
| 1705 | RtlGetEnabledExtendedFeatures | |
| 1706 | RtlGetFirstRange | |
| 1707 | RtlGetGroupSecurityDescriptor | |
| 1708 | RtlGetIntegerAtom | |
| 1709 | RtlGetLastRange | |
| 1710 | RtlGetNextEntryHashTable | |
| 1711 | RtlGetNextRange | |
| 1712 | RtlGetNtGlobalFlags | |
| 1713 | RtlGetOwnerSecurityDescriptor | |
| 1714 | RtlGetProductInfo | |
| 1715 | RtlGetSaclSecurityDescriptor | |
| 1716 | RtlGetSetBootStatusData | |
| 1717 | RtlGetThreadLangIdByIndex | |
| 1718 | RtlGetVersion | |
| 1719 | RtlHashUnicodeString | |
| 1720 | RtlIdnToAscii | |
| 1721 | RtlIdnToNameprepUnicode | |
| 1722 | RtlIdnToUnicode | |
| 1723 | RtlImageDirectoryEntryToData | |
| 1724 | RtlImageNtHeader | |
| 1725 | RtlImageNtHeaderEx | |
| 1726 | RtlInitAnsiString | |
| 1727 | RtlInitAnsiStringEx | |
| 1728 | RtlInitCodePageTable | |
| 1729 | RtlInitEnumerationHashTable | |
| 1730 | RtlInitString | |
| 1731 | RtlInitUnicodeString | |
| 1732 | RtlInitUnicodeStringEx | |
| 1733 | RtlInitWeakEnumerationHashTable | |
| 1734 | RtlInitializeBitMap | |
| 1735 | RtlInitializeGenericTable | |
| 1736 | RtlInitializeGenericTableAvl | |
| 1737 | RtlInitializeRangeList | |
| 1738 | RtlInitializeSid | |
| 1739 | RtlInitializeUnicodePrefix | |
| 1740 | RtlInsertElementGenericTable | |
| 1741 | RtlInsertElementGenericTableAvl | |
| 1742 | RtlInsertElementGenericTableFull | |
| 1743 | RtlInsertElementGenericTableFullAvl | |
| 1744 | RtlInsertEntryHashTable | |
| 1745 | RtlInsertUnicodePrefix | |
| 1746 | RtlInt64ToUnicodeString | |
| 1747 | RtlIntegerToChar | |
| 1748 | RtlIntegerToUnicode | |
| 1749 | RtlIntegerToUnicodeString | |
| 1750 | RtlInterlockedClearBitRun | |
| 1751 | RtlInterlockedSetBitRun | |
| 1752 | RtlInterlockedSetClearRun | |
| 1753 | RtlInvertRangeList | |
| 1754 | RtlInvertRangeListEx | |
| 1755 | RtlIoDecodeMemIoResource | |
| 1756 | RtlIoEncodeMemIoResource | |
| 1757 | RtlIpv4AddressToStringA | |
| 1758 | RtlIpv4AddressToStringExA | |
| 1759 | RtlIpv4AddressToStringExW | |
| 1760 | RtlIpv4AddressToStringW | |
| 1761 | RtlIpv4StringToAddressA | |
| 1762 | RtlIpv4StringToAddressExA | |
| 1763 | RtlIpv4StringToAddressExW | |
| 1764 | RtlIpv4StringToAddressW | |
| 1765 | RtlIpv6AddressToStringA | |
| 1766 | RtlIpv6AddressToStringExA | |
| 1767 | RtlIpv6AddressToStringExW | |
| 1768 | RtlIpv6AddressToStringW | |
| 1769 | RtlIpv6StringToAddressA | |
| 1770 | RtlIpv6StringToAddressExA | |
| 1771 | RtlIpv6StringToAddressExW | |
| 1772 | RtlIpv6StringToAddressW | |
| 1773 | RtlIsGenericTableEmpty | |
| 1774 | RtlIsGenericTableEmptyAvl | |
| 1775 | RtlIsNameLegalDOS8Dot3 | |
| 1776 | RtlIsNormalizedString | |
| 1777 | RtlIsNtDdiVersionAvailable | |
| 1778 | RtlIsRangeAvailable | |
| 1779 | RtlIsServicePackVersionInstalled | |
| 1780 | RtlIsUntrustedObject | |
| 1781 | RtlIsValidOemCharacter | |
| 1782 | RtlLCIDToCultureName | |
| 1783 | RtlLengthRequiredSid | |
| 1784 | RtlLengthSecurityDescriptor | |
| 1785 | RtlLengthSid | |
| 1786 | RtlLoadString | |
| 1787 | RtlLocalTimeToSystemTime | |
| 1788 | RtlLockBootStatusData | |
| 1789 | RtlLookupAtomInAtomTable | |
| 1790 | RtlLookupElementGenericTable | |
| 1791 | RtlLookupElementGenericTableAvl | |
| 1792 | RtlLookupElementGenericTableFull | |
| 1793 | RtlLookupElementGenericTableFullAvl | |
| 1794 | RtlLookupEntryHashTable | |
| 1795 | RtlLookupFirstMatchingElementGenericTableAvl | |
| 1796 | RtlLookupFunctionEntry | |
| 1797 | RtlMapGenericMask | |
| 1798 | RtlMapSecurityErrorToNtStatus | |
| 1799 | RtlMergeRangeLists | |
| 1800 | RtlMoveMemory | |
| 1801 | RtlMultiByteToUnicodeN | |
| 1802 | RtlMultiByteToUnicodeSize | |
| 1803 | RtlNextUnicodePrefix | |
| 1804 | RtlNormalizeString | |
| 1805 | RtlNtStatusToDosError | |
| 1806 | RtlNtStatusToDosErrorNoTeb | |
| 1807 | RtlNumberGenericTableElements | |
| 1808 | RtlNumberGenericTableElementsAvl | |
| 1809 | RtlNumberOfClearBits | |
| 1810 | RtlNumberOfClearBitsInRange | |
| 1811 | RtlNumberOfSetBits | |
| 1812 | RtlNumberOfSetBitsInRange | |
| 1813 | RtlNumberOfSetBitsUlongPtr | |
| 1814 | RtlOemStringToCountedUnicodeString | |
| 1815 | RtlOemStringToUnicodeSize | |
| 1816 | RtlOemStringToUnicodeString | |
| 1817 | RtlOemToUnicodeN | |
| 1818 | RtlOpenCurrentUser | |
| 1819 | RtlOwnerAcesPresent | |
| 1820 | RtlPcToFileHeader | |
| 1821 | RtlPinAtomInAtomTable | |
| 1822 | RtlPrefetchMemoryNonTemporal | |
| 1823 | RtlPrefixString | |
| 1824 | RtlPrefixUnicodeString | |
| 1825 | RtlQueryAtomInAtomTable | |
| 1826 | RtlQueryDynamicTimeZoneInformation | |
| 1827 | RtlQueryElevationFlags | |
| 1828 | RtlQueryInformationAcl | |
| 1829 | RtlQueryModuleInformation | |
| 1830 | RtlQueryPackageIdentity | |
| 1831 | RtlQueryRegistryValues | |
| 1832 | RtlQueryRegistryValuesEx | |
| 1833 | RtlQueryTimeZoneInformation | |
| 1834 | RtlQueryValidationRunlevel | |
| 1835 | RtlRaiseException | |
| 1836 | RtlRandom | |
| 1837 | RtlRandomEx | |
| 1838 | RtlRbInsertNodeEx | |
| 1839 | RtlRbRemoveNode | |
| 1840 | RtlRealPredecessor | |
| 1841 | RtlRealSuccessor | |
| 1842 | RtlRemoveEntryHashTable | |
| 1843 | RtlRemoveUnicodePrefix | |
| 1844 | RtlReplaceSidInSd | |
| 1845 | RtlReserveChunk | |
| 1846 | RtlRestoreContext | |
| 1847 | RtlRunOnceBeginInitialize | |
| 1848 | RtlRunOnceComplete | |
| 1849 | RtlRunOnceExecuteOnce | |
| 1850 | RtlRunOnceInitialize | |
| 1851 | RtlSecondsSince1970ToTime | |
| 1852 | RtlSecondsSince1980ToTime | |
| 1853 | RtlSelfRelativeToAbsoluteSD | |
| 1854 | RtlSelfRelativeToAbsoluteSD2 | |
| 1855 | RtlSetAllBits | |
| 1856 | RtlSetBit | |
| 1857 | RtlSetBits | |
| 1858 | RtlSetControlSecurityDescriptor | |
| 1859 | RtlSetDaclSecurityDescriptor | |
| 1860 | RtlSetDynamicTimeZoneInformation | |
| 1861 | RtlSetGroupSecurityDescriptor | |
| 1862 | RtlSetOwnerSecurityDescriptor | |
| 1863 | RtlSetPortableOperatingSystem | |
| 1864 | RtlSetSaclSecurityDescriptor | |
| 1865 | RtlSetTimeZoneInformation | |
| 1866 | RtlSidHashInitialize | |
| 1867 | RtlSidHashLookup | |
| 1868 | RtlSizeHeap | |
| 1869 | RtlSplay | |
| 1870 | RtlStringFromGUID | |
| 1871 | RtlSubAuthorityCountSid | |
| 1872 | RtlSubAuthoritySid | |
| 1873 | RtlSubtreePredecessor | |
| 1874 | RtlSubtreeSuccessor | |
| 1875 | RtlSystemTimeToLocalTime | |
| 1876 | RtlTestBit | |
| 1877 | RtlTimeFieldsToTime | |
| 1878 | RtlTimeToElapsedTimeFields | |
| 1879 | RtlTimeToSecondsSince1970 | |
| 1880 | RtlTimeToSecondsSince1980 | |
| 1881 | RtlTimeToTimeFields | |
| 1882 | RtlTraceDatabaseAdd | |
| 1883 | RtlTraceDatabaseCreate | |
| 1884 | RtlTraceDatabaseDestroy | |
| 1885 | RtlTraceDatabaseEnumerate | |
| 1886 | RtlTraceDatabaseFind | |
| 1887 | RtlTraceDatabaseLock | |
| 1888 | RtlTraceDatabaseUnlock | |
| 1889 | RtlTraceDatabaseValidate | |
| 1890 | RtlUTF8ToUnicodeN | |
| 1891 | RtlUlongByteSwap | |
| 1892 | RtlUlonglongByteSwap | |
| 1893 | RtlUnicodeStringToAnsiSize | |
| 1894 | RtlUnicodeStringToAnsiString | |
| 1895 | RtlUnicodeStringToCountedOemString | |
| 1896 | RtlUnicodeStringToInteger | |
| 1897 | RtlUnicodeStringToOemSize | |
| 1898 | RtlUnicodeStringToOemString | |
| 1899 | RtlUnicodeToCustomCPN | |
| 1900 | RtlUnicodeToMultiByteN | |
| 1901 | RtlUnicodeToMultiByteSize | |
| 1902 | RtlUnicodeToOemN | |
| 1903 | RtlUnicodeToUTF8N | |
| 1904 | RtlUnlockBootStatusData | |
| 1905 | RtlUnwind | |
| 1906 | RtlUnwindEx | |
| 1907 | RtlUpcaseUnicodeChar | |
| 1908 | RtlUpcaseUnicodeString | |
| 1909 | RtlUpcaseUnicodeStringToAnsiString | |
| 1910 | RtlUpcaseUnicodeStringToCountedOemString | |
| 1911 | RtlUpcaseUnicodeStringToOemString | |
| 1912 | RtlUpcaseUnicodeToCustomCPN | |
| 1913 | RtlUpcaseUnicodeToMultiByteN | |
| 1914 | RtlUpcaseUnicodeToOemN | |
| 1915 | RtlUpperChar | |
| 1916 | RtlUpperString | |
| 1917 | RtlUshortByteSwap | |
| 1918 | RtlValidRelativeSecurityDescriptor | |
| 1919 | RtlValidSecurityDescriptor | |
| 1920 | RtlValidSid | |
| 1921 | RtlValidateUnicodeString | |
| 1922 | RtlVerifyVersionInfo | |
| 1923 | RtlVirtualUnwind | |
| 1924 | RtlVolumeDeviceToDosName | |
| 1925 | RtlWalkFrameChain | |
| 1926 | RtlWeaklyEnumerateEntryHashTable | |
| 1927 | RtlWriteRegistryValue | |
| 1928 | RtlZeroHeap | |
| 1929 | RtlZeroMemory | |
| 1930 | RtlxAnsiStringToUnicodeSize | |
| 1931 | RtlxOemStringToUnicodeSize | |
| 1932 | RtlxUnicodeStringToAnsiSize | |
| 1933 | RtlxUnicodeStringToOemSize | |
| 1934 | SeAccessCheck | |
| 1935 | SeAccessCheckEx | |
| 1936 | SeAccessCheckFromState | |
| 1937 | SeAccessCheckFromStateEx | |
| 1938 | SeAccessCheckWithHint | |
| 1939 | SeAdjustAccessStateForTrustLabel | |
| 1940 | SeAppendPrivileges | |
| 1941 | SeAssignSecurity | |
| 1942 | SeAssignSecurityEx | |
| 1943 | SeAuditHardLinkCreation | |
| 1944 | SeAuditHardLinkCreationWithTransaction | |
| 1945 | SeAuditTransactionStateChange | |
| 1946 | SeAuditingAnyFileEventsWithContext | |
| 1947 | SeAuditingAnyFileEventsWithContextEx | |
| 1948 | SeAuditingFileEvents | |
| 1949 | SeAuditingFileEventsWithContext | |
| 1950 | SeAuditingFileEventsWithContextEx | |
| 1951 | SeAuditingFileOrGlobalEvents | |
| 1952 | SeAuditingHardLinkEvents | |
| 1953 | SeAuditingHardLinkEventsWithContext | |
| 1954 | SeAuditingWithTokenForSubcategory | |
| 1955 | SeCaptureSecurityDescriptor | |
| 1956 | SeCaptureSubjectContext | |
| 1957 | SeCaptureSubjectContextEx | |
| 1958 | SeCloseObjectAuditAlarm | |
| 1959 | SeCloseObjectAuditAlarmForNonObObject | |
| 1960 | SeComputeAutoInheritByObjectType | |
| 1961 | SeCreateAccessState | |
| 1962 | SeCreateAccessStateEx | |
| 1963 | SeCreateClientSecurity | |
| 1964 | SeCreateClientSecurityEx | |
| 1965 | SeCreateClientSecurityFromSubjectContext | |
| 1966 | SeCreateClientSecurityFromSubjectContextEx | |
| 1967 | SeDeassignSecurity | |
| 1968 | SeDeleteAccessState | |
| 1969 | SeDeleteObjectAuditAlarm | |
| 1970 | SeDeleteObjectAuditAlarmWithTransaction | |
| 1971 | SeExamineSacl | |
| 1972 | SeExports DATA | |
| 1973 | SeFilterToken | |
| 1974 | SeFreePrivileges | |
| 1975 | SeGetCachedSigningLevel | |
| 1976 | SeGetLinkedToken | |
| 1977 | SeGetLogonSessionToken | |
| 1978 | SeImpersonateClient | |
| 1979 | SeImpersonateClientEx | |
| 1980 | SeIsParentOfChildAppContainer | |
| 1981 | SeLocateProcessImageName | |
| 1982 | SeLockSubjectContext | |
| 1983 | SeMarkLogonSessionForTerminationNotification | |
| 1984 | SeOpenObjectAuditAlarm | |
| 1985 | SeOpenObjectAuditAlarmForNonObObject | |
| 1986 | SeOpenObjectAuditAlarmWithTransaction | |
| 1987 | SeOpenObjectForDeleteAuditAlarm | |
| 1988 | SeOpenObjectForDeleteAuditAlarmWithTransaction | |
| 1989 | SePrivilegeCheck | |
| 1990 | SePrivilegeObjectAuditAlarm | |
| 1991 | SePublicDefaultDacl DATA | |
| 1992 | SeQueryAuthenticationIdToken | |
| 1993 | SeQueryInformationToken | |
| 1994 | SeQuerySecureBootPolicyValue | |
| 1995 | SeQuerySecurityAttributesToken | |
| 1996 | SeQuerySecurityDescriptorInfo | |
| 1997 | SeQuerySessionIdToken | |
| 1998 | SeRegisterImageVerificationCallback | |
| 1999 | SeRegisterLogonSessionTerminatedRoutine | |
| 2000 | SeReleaseSecurityDescriptor | |
| 2001 | SeReleaseSubjectContext | |
| 2002 | SeReportSecurityEvent | |
| 2003 | SeReportSecurityEventWithSubCategory | |
| 2004 | SeSecurityAttributePresent | |
| 2005 | SeSetAccessStateGenericMapping | |
| 2006 | SeSetAuditParameter | |
| 2007 | SeSetSecurityAttributesToken | |
| 2008 | SeSetSecurityDescriptorInfo | |
| 2009 | SeSetSecurityDescriptorInfoEx | |
| 2010 | SeShouldCheckForAccessRightsFromParent | |
| 2011 | SeSinglePrivilegeCheck | |
| 2012 | SeSrpAccessCheck | |
| 2013 | SeSystemDefaultDacl DATA | |
| 2014 | SeSystemDefaultSd DATA | |
| 2015 | SeTokenFromAccessInformation | |
| 2016 | SeTokenImpersonationLevel | |
| 2017 | SeTokenIsAdmin | |
| 2018 | SeTokenIsRestricted | |
| 2019 | SeTokenIsWriteRestricted | |
| 2020 | SeTokenObjectType DATA | |
| 2021 | SeTokenType | |
| 2022 | SeUnlockSubjectContext | |
| 2023 | SeUnregisterImageVerificationCallback | |
| 2024 | SeUnregisterLogonSessionTerminatedRoutine | |
| 2025 | SeValidSecurityDescriptor | |
| 2026 | TmCancelPropagationRequest | |
| 2027 | TmCommitComplete | |
| 2028 | TmCommitEnlistment | |
| 2029 | TmCommitTransaction | |
| 2030 | TmCreateEnlistment | |
| 2031 | TmCurrentTransaction | |
| 2032 | TmDereferenceEnlistmentKey | |
| 2033 | TmEnableCallbacks | |
| 2034 | TmEndPropagationRequest | |
| 2035 | TmEnlistmentObjectType DATA | |
| 2036 | TmFreezeTransactions | |
| 2037 | TmGetTransactionId | |
| 2038 | TmInitSystem | |
| 2039 | TmInitSystemPhase2 | |
| 2040 | TmInitializeTransactionManager | |
| 2041 | TmIsKTMCommitCoordinator | |
| 2042 | TmIsTransactionActive | |
| 2043 | TmPrePrepareComplete | |
| 2044 | TmPrePrepareEnlistment | |
| 2045 | TmPrepareComplete | |
| 2046 | TmPrepareEnlistment | |
| 2047 | TmPropagationComplete | |
| 2048 | TmPropagationFailed | |
| 2049 | TmReadOnlyEnlistment | |
| 2050 | TmRecoverEnlistment | |
| 2051 | TmRecoverResourceManager | |
| 2052 | TmRecoverTransactionManager | |
| 2053 | TmReferenceEnlistmentKey | |
| 2054 | TmRenameTransactionManager | |
| 2055 | TmRequestOutcomeEnlistment | |
| 2056 | TmResourceManagerObjectType DATA | |
| 2057 | TmRollbackComplete | |
| 2058 | TmRollbackEnlistment | |
| 2059 | TmRollbackTransaction | |
| 2060 | TmSetCurrentTransaction | |
| 2061 | TmSinglePhaseReject | |
| 2062 | TmThawTransactions | |
| 2063 | TmTransactionManagerObjectType DATA | |
| 2064 | TmTransactionObjectType DATA | |
| 2065 | VerSetConditionMask | |
| 2066 | VfFailDeviceNode | |
| 2067 | VfFailDriver | |
| 2068 | VfFailSystemBIOS | |
| 2069 | VfInsertContext | |
| 2070 | VfIsVerificationEnabled | |
| 2071 | VfQueryDeviceContext | |
| 2072 | VfQueryDispatchTable | |
| 2073 | VfQueryDriverContext | |
| 2074 | VfQueryIrpContext | |
| 2075 | VfQueryThreadContext | |
| 2076 | VfRemoveContext | |
| 2077 | WheaAddErrorSource | |
| 2078 | WheaConfigureErrorSource | |
| 2079 | WheaGetErrorSource | |
| 2080 | WheaInitializeRecordHeader | |
| 2081 | WheaReportHwError | |
| 2082 | WmiGetClock | |
| 2083 | WmiQueryTraceInformation | |
| 2084 | WmiTraceMessage | |
| 2085 | WmiTraceMessageVa | |
| 2086 | XIPDispatch | |
| 2087 | ZwAccessCheckAndAuditAlarm | |
| 2088 | ZwAddBootEntry | |
| 2089 | ZwAddDriverEntry | |
| 2090 | ZwAdjustPrivilegesToken | |
| 2091 | ZwAlertThread | |
| 2092 | ZwAllocateLocallyUniqueId | |
| 2093 | ZwAllocateVirtualMemory | |
| 2094 | ZwAlpcAcceptConnectPort | |
| 2095 | ZwAlpcCancelMessage | |
| 2096 | ZwAlpcConnectPort | |
| 2097 | ZwAlpcConnectPortEx | |
| 2098 | ZwAlpcCreatePort | |
| 2099 | ZwAlpcCreatePortSection | |
| 2100 | ZwAlpcCreateResourceReserve | |
| 2101 | ZwAlpcCreateSectionView | |
| 2102 | ZwAlpcCreateSecurityContext | |
| 2103 | ZwAlpcDeletePortSection | |
| 2104 | ZwAlpcDeleteResourceReserve | |
| 2105 | ZwAlpcDeleteSectionView | |
| 2106 | ZwAlpcDeleteSecurityContext | |
| 2107 | ZwAlpcDisconnectPort | |
| 2108 | ZwAlpcQueryInformation | |
| 2109 | ZwAlpcSendWaitReceivePort | |
| 2110 | ZwAlpcSetInformation | |
| 2111 | ZwAssignProcessToJobObject | |
| 2112 | ZwAssociateWaitCompletionPacket | |
| 2113 | ZwCancelIoFile | |
| 2114 | ZwCancelIoFileEx | |
| 2115 | ZwCancelTimer | |
| 2116 | ZwClearEvent | |
| 2117 | ZwClose | |
| 2118 | ZwCloseObjectAuditAlarm | |
| 2119 | ZwCommitComplete | |
| 2120 | ZwCommitEnlistment | |
| 2121 | ZwCommitTransaction | |
| 2122 | ZwConnectPort | |
| 2123 | ZwCreateDirectoryObject | |
| 2124 | ZwCreateEnlistment | |
| 2125 | ZwCreateEvent | |
| 2126 | ZwCreateFile | |
| 2127 | ZwCreateIoCompletion | |
| 2128 | ZwCreateJobObject | |
| 2129 | ZwCreateKey | |
| 2130 | ZwCreateKeyTransacted | |
| 2131 | ZwCreateResourceManager | |
| 2132 | ZwCreateSection | |
| 2133 | ZwCreateSymbolicLinkObject | |
| 2134 | ZwCreateTimer | |
| 2135 | ZwCreateTransaction | |
| 2136 | ZwCreateTransactionManager | |
| 2137 | ZwCreateWaitCompletionPacket | |
| 2138 | ZwCreateWnfStateName | |
| 2139 | ZwDeleteBootEntry | |
| 2140 | ZwDeleteDriverEntry | |
| 2141 | ZwDeleteFile | |
| 2142 | ZwDeleteKey | |
| 2143 | ZwDeleteValueKey | |
| 2144 | ZwDeleteWnfStateData | |
| 2145 | ZwDeleteWnfStateName | |
| 2146 | ZwDeviceIoControlFile | |
| 2147 | ZwDisplayString | |
| 2148 | ZwDuplicateObject | |
| 2149 | ZwDuplicateToken | |
| 2150 | ZwEnumerateBootEntries | |
| 2151 | ZwEnumerateDriverEntries | |
| 2152 | ZwEnumerateKey | |
| 2153 | ZwEnumerateTransactionObject | |
| 2154 | ZwEnumerateValueKey | |
| 2155 | ZwFlushBuffersFile | |
| 2156 | ZwFlushBuffersFileEx | |
| 2157 | ZwFlushInstructionCache | |
| 2158 | ZwFlushKey | |
| 2159 | ZwFlushVirtualMemory | |
| 2160 | ZwFreeVirtualMemory | |
| 2161 | ZwFsControlFile | |
| 2162 | ZwGetNotificationResourceManager | |
| 2163 | ZwImpersonateAnonymousToken | |
| 2164 | ZwInitiatePowerAction | |
| 2165 | ZwIsProcessInJob | |
| 2166 | ZwLoadDriver | |
| 2167 | ZwLoadKey | |
| 2168 | ZwLoadKeyEx | |
| 2169 | ZwLockFile | |
| 2170 | ZwLockProductActivationKeys | |
| 2171 | ZwLockVirtualMemory | |
| 2172 | ZwMakeTemporaryObject | |
| 2173 | ZwMapViewOfSection | |
| 2174 | ZwModifyBootEntry | |
| 2175 | ZwModifyDriverEntry | |
| 2176 | ZwNotifyChangeKey | |
| 2177 | ZwNotifyChangeSession | |
| 2178 | ZwOpenDirectoryObject | |
| 2179 | ZwOpenEnlistment | |
| 2180 | ZwOpenEvent | |
| 2181 | ZwOpenFile | |
| 2182 | ZwOpenJobObject | |
| 2183 | ZwOpenKey | |
| 2184 | ZwOpenKeyEx | |
| 2185 | ZwOpenKeyTransacted | |
| 2186 | ZwOpenKeyTransactedEx | |
| 2187 | ZwOpenProcess | |
| 2188 | ZwOpenProcessToken | |
| 2189 | ZwOpenProcessTokenEx | |
| 2190 | ZwOpenResourceManager | |
| 2191 | ZwOpenSection | |
| 2192 | ZwOpenSession | |
| 2193 | ZwOpenSymbolicLinkObject | |
| 2194 | ZwOpenThread | |
| 2195 | ZwOpenThreadToken | |
| 2196 | ZwOpenThreadTokenEx | |
| 2197 | ZwOpenTimer | |
| 2198 | ZwOpenTransaction | |
| 2199 | ZwOpenTransactionManager | |
| 2200 | ZwPowerInformation | |
| 2201 | ZwPrePrepareComplete | |
| 2202 | ZwPrePrepareEnlistment | |
| 2203 | ZwPrepareComplete | |
| 2204 | ZwPrepareEnlistment | |
| 2205 | ZwPropagationComplete | |
| 2206 | ZwPropagationFailed | |
| 2207 | ZwProtectVirtualMemory | |
| 2208 | ZwPulseEvent | |
| 2209 | ZwQueryBootEntryOrder | |
| 2210 | ZwQueryBootOptions | |
| 2211 | ZwQueryDefaultLocale | |
| 2212 | ZwQueryDefaultUILanguage | |
| 2213 | ZwQueryDirectoryFile | |
| 2214 | ZwQueryDirectoryObject | |
| 2215 | ZwQueryDriverEntryOrder | |
| 2216 | ZwQueryEaFile | |
| 2217 | ZwQueryFullAttributesFile | |
| 2218 | ZwQueryInformationEnlistment | |
| 2219 | ZwQueryInformationFile | |
| 2220 | ZwQueryInformationJobObject | |
| 2221 | ZwQueryInformationProcess | |
| 2222 | ZwQueryInformationResourceManager | |
| 2223 | ZwQueryInformationThread | |
| 2224 | ZwQueryInformationToken | |
| 2225 | ZwQueryInformationTransaction | |
| 2226 | ZwQueryInformationTransactionManager | |
| 2227 | ZwQueryInstallUILanguage | |
| 2228 | ZwQueryKey | |
| 2229 | ZwQueryLicenseValue | |
| 2230 | ZwQueryObject | |
| 2231 | ZwQueryQuotaInformationFile | |
| 2232 | ZwQuerySection | |
| 2233 | ZwQuerySecurityAttributesToken | |
| 2234 | ZwQuerySecurityObject | |
| 2235 | ZwQuerySymbolicLinkObject | |
| 2236 | ZwQuerySystemEnvironmentValueEx | |
| 2237 | ZwQuerySystemInformation | |
| 2238 | ZwQuerySystemInformationEx | |
| 2239 | ZwQueryValueKey | |
| 2240 | ZwQueryVirtualMemory | |
| 2241 | ZwQueryVolumeInformationFile | |
| 2242 | ZwQueryWnfStateData | |
| 2243 | ZwQueryWnfStateNameInformation | |
| 2244 | ZwReadFile | |
| 2245 | ZwReadOnlyEnlistment | |
| 2246 | ZwRecoverEnlistment | |
| 2247 | ZwRecoverResourceManager | |
| 2248 | ZwRecoverTransactionManager | |
| 2249 | ZwRemoveIoCompletion | |
| 2250 | ZwRemoveIoCompletionEx | |
| 2251 | ZwRenameKey | |
| 2252 | ZwReplaceKey | |
| 2253 | ZwRequestPort | |
| 2254 | ZwRequestWaitReplyPort | |
| 2255 | ZwResetEvent | |
| 2256 | ZwRestoreKey | |
| 2257 | ZwRollbackComplete | |
| 2258 | ZwRollbackEnlistment | |
| 2259 | ZwRollbackTransaction | |
| 2260 | ZwSaveKey | |
| 2261 | ZwSaveKeyEx | |
| 2262 | ZwSecureConnectPort | |
| 2263 | ZwSetBootEntryOrder | |
| 2264 | ZwSetBootOptions | |
| 2265 | ZwSetCachedSigningLevel | |
| 2266 | ZwSetDefaultLocale | |
| 2267 | ZwSetDefaultUILanguage | |
| 2268 | ZwSetDriverEntryOrder | |
| 2269 | ZwSetEaFile | |
| 2270 | ZwSetEvent | |
| 2271 | ZwSetInformationEnlistment | |
| 2272 | ZwSetInformationFile | |
| 2273 | ZwSetInformationJobObject | |
| 2274 | ZwSetInformationKey | |
| 2275 | ZwSetInformationObject | |
| 2276 | ZwSetInformationProcess | |
| 2277 | ZwSetInformationResourceManager | |
| 2278 | ZwSetInformationThread | |
| 2279 | ZwSetInformationToken | |
| 2280 | ZwSetInformationTransaction | |
| 2281 | ZwSetInformationVirtualMemory | |
| 2282 | ZwSetQuotaInformationFile | |
| 2283 | ZwSetSecurityObject | |
| 2284 | ZwSetSystemEnvironmentValueEx | |
| 2285 | ZwSetSystemInformation | |
| 2286 | ZwSetSystemTime | |
| 2287 | ZwSetTimer | |
| 2288 | ZwSetTimerEx | |
| 2289 | ZwSetValueKey | |
| 2290 | ZwSetVolumeInformationFile | |
| 2291 | ZwTerminateJobObject | |
| 2292 | ZwTerminateProcess | |
| 2293 | ZwTraceEvent | |
| 2294 | ZwTranslateFilePath | |
| 2295 | ZwUnloadDriver | |
| 2296 | ZwUnloadKey | |
| 2297 | ZwUnloadKeyEx | |
| 2298 | ZwUnlockFile | |
| 2299 | ZwUnlockVirtualMemory | |
| 2300 | ZwUnmapViewOfSection | |
| 2301 | ZwUpdateWnfStateData | |
| 2302 | ZwWaitForMultipleObjects | |
| 2303 | ZwWaitForSingleObject | |
| 2304 | ZwWriteFile | |
| 2305 | ZwYieldExecution | |
| 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 | |
| 2330 | strlwr == _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 | |
| 2351 | wcslwr == _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 | |
| 2362 | atoi | |
| 2363 | atol | |
| 2364 | bsearch | |
| 2365 | bsearch_s | |
| 2366 | isdigit | |
| 2367 | islower | |
| 2368 | isprint | |
| 2369 | isspace | |
| 2370 | isupper | |
| 2371 | isxdigit | |
| 2372 | longjmp | |
| 2373 | mbstowcs | |
| 2374 | mbtowc | |
| 2375 | memchr | |
| 2376 | memcmp | |
| 2377 | memcpy | |
| 2378 | memcpy_s | |
| 2379 | memmove | |
| 2380 | memmove_s | |
| 2381 | memset | |
| 2382 | psMUITest DATA | |
| 2383 | qsort | |
| 2384 | rand | |
| 2385 | sprintf | |
| 2386 | sprintf_s | |
| 2387 | srand | |
| 2388 | sscanf_s | |
| 2389 | strcat | |
| 2390 | strcat_s | |
| 2391 | strchr | |
| 2392 | strcmp | |
| 2393 | strcpy | |
| 2394 | strcpy_s | |
| 2395 | strlen | |
| 2396 | strncat | |
| 2397 | strncat_s | |
| 2398 | strncmp | |
| 2399 | strncpy | |
| 2400 | strncpy_s | |
| 2401 | strnlen | |
| 2402 | strrchr | |
| 2403 | strspn | |
| 2404 | strstr | |
| 2405 | strtok_s | |
| 2406 | swprintf | |
| 2407 | swprintf_s | |
| 2408 | swscanf_s | |
| 2409 | tolower | |
| 2410 | toupper | |
| 2411 | towlower | |
| 2412 | towupper | |
| 2413 | vDbgPrintEx | |
| 2414 | vDbgPrintExWithPrefix | |
| 2415 | vsprintf | |
| 2416 | vsprintf_s | |
| 2417 | vswprintf_s | |
| 2418 | wcscat | |
| 2419 | wcscat_s | |
| 2420 | wcschr | |
| 2421 | wcscmp | |
| 2422 | wcscpy | |
| 2423 | wcscpy_s | |
| 2424 | wcscspn | |
| 2425 | wcslen | |
| 2426 | wcsncat | |
| 2427 | wcsncat_s | |
| 2428 | wcsncmp | |
| 2429 | wcsncpy | |
| 2430 | wcsncpy_s | |
| 2431 | wcsnlen | |
| 2432 | wcsrchr | |
| 2433 | wcsspn | |
| 2434 | wcsstr | |
| 2435 | wcstombs | |
| 2436 | wcstoul | |
| 2437 | wctomb |
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 | ; | |
| 6 | LIBRARY "NTPRINT.dll" | |
| 7 | EXPORTS | |
| 8 | ord_103 @103 | |
| 9 | ord_104 @104 | |
| 10 | ClassInstall32 | |
| 11 | ord_106 @106 | |
| 12 | ord_107 @107 | |
| 13 | PSetupCheckForDriversInDriverStore | |
| 14 | PSetupDownloadAndInstallLegacyDriverW | |
| 15 | PSetupDriverStoreFindDriverPackageW | |
| 16 | PSetupElevateAndCallDriverStoreAddDriverPackage | |
| 17 | PSetupElevatedDriverStoreAddDriverPackageW | |
| 18 | PSetupElevatedInstallDownloadedLegacyDriverW | |
| 19 | PSetupElevatedInstallPrinterDriverFromTheWebW | |
| 20 | PSetupElevatedLegacyPrintDriverInstallW | |
| 21 | PSetupGetActualInstallSection | |
| 22 | PSetupGetCatalogNameFromInfW | |
| 23 | PSetupWebPnpGenerateDownLevelInfForInboxDriver | |
| 24 | ServerInstallW | |
| 25 | PSetupAssociateICMProfiles | |
| 26 | PSetupBuildDriverList | |
| 27 | PSetupBuildDriversFromPath | |
| 28 | PSetupCopyDriverPackageFiles | |
| 29 | PSetupCreateDrvSetupPage | |
| 30 | PSetupCreateMonitorInfo | |
| 31 | PSetupCreatePrinterDeviceInfoList | |
| 32 | PSetupDestroyDriverInfo3 | |
| 33 | PSetupDestroyMonitorInfo | |
| 34 | PSetupDestroyPrinterDeviceInfoList | |
| 35 | PSetupDestroySelectedDriverInfo | |
| 36 | PSetupDisassociateICMProfiles | |
| 37 | PSetupDriverInfoFromDeviceID | |
| 38 | PSetupDriverInfoFromName | |
| 39 | PSetupDriverStoreAddDriverPackage | |
| 40 | PSetupEnumMonitor | |
| 41 | PSetupFindCompatibleDriverFromName | |
| 42 | PSetupFreeDrvField | |
| 43 | PSetupFreeMem | |
| 44 | PSetupGetDriverInfo3 | |
| 45 | PSetupGetInfDriverStoreLocation | |
| 46 | PSetupGetLocalDataField | |
| 47 | PSetupGetPathToSearch | |
| 48 | PSetupGetSelectedDriverInfo | |
| 49 | PSetupInstallICMProfiles | |
| 50 | PSetupInstallInboxDriverSilently | |
| 51 | PSetupInstallMonitor | |
| 52 | PSetupInstallPrinterDriver | |
| 53 | PSetupIsCompatibleDriver | |
| 54 | PSetupIsDriverInstalled | |
| 55 | PSetupIsTheDriverFoundInInfInstalled | |
| 56 | PSetupParseInfAndCommitFileQueue | |
| 57 | PSetupPreSelectDriver | |
| 58 | PSetupProcessPrinterAdded | |
| 59 | PSetupSelectDeviceButtons | |
| 60 | PSetupSelectDriver | |
| 61 | PSetupSetCoreInboxDriverPath | |
| 62 | PSetupSetDriverPlatform | |
| 63 | PSetupSetNonInteractiveMode | |
| 64 | PSetupSetSelectDevTitleAndInstructions | |
| 65 | PSetupShowBlockedDriverUI | |
| 66 | PSetupThisPlatform |
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 | ; | |
| 6 | LIBRARY "ntshrui.dll" | |
| 7 | EXPORTS | |
| 8 | CanShareFolder | |
| 9 | GetLocalPathFromNetResource | |
| 10 | GetLocalPathFromNetResourceA | |
| 11 | GetLocalPathFromNetResourceW | |
| 12 | GetNetResourceFromLocalPath | |
| 13 | GetNetResourceFromLocalPathA | |
| 14 | GetNetResourceFromLocalPathW | |
| 15 | IsFolderPrivateForUser | |
| 16 | IsPathShared | |
| 17 | IsPathSharedA | |
| 18 | IsPathSharedW | |
| 19 | SetFolderPermissionsForSharing | |
| 20 | ShowShareFolderUI |
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 | ; | |
| 6 | LIBRARY "nvCameraISP.dll" | |
| 7 | EXPORTS | |
| 8 | CISP_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 | ; | |
| 6 | LIBRARY "nvCameraISPb.dll" | |
| 7 | EXPORTS | |
| 8 | CISP_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 | ; | |
| 6 | LIBRARY "NVD3DUM.dll" | |
| 7 | EXPORTS | |
| 8 | OpenAdapter | |
| 9 | QueryOglResource |
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 | ; | |
| 6 | LIBRARY "nvEncodeAPI.dll" | |
| 7 | EXPORTS | |
| 8 | NvEncodeAPICreateInstance |
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 | ; | |
| 6 | LIBRARY "ODBCTRAC.dll" | |
| 7 | EXPORTS | |
| 8 | TraceSQLAllocConnect | |
| 9 | TraceSQLAllocEnv | |
| 10 | TraceSQLAllocStmt | |
| 11 | TraceSQLBindCol | |
| 12 | TraceSQLCancel | |
| 13 | TraceSQLColAttributes | |
| 14 | TraceSQLConnect | |
| 15 | TraceSQLDescribeCol | |
| 16 | TraceSQLDisconnect | |
| 17 | TraceSQLError | |
| 18 | TraceSQLExecDirect | |
| 19 | TraceSQLExecute | |
| 20 | TraceSQLFetch | |
| 21 | TraceSQLFreeConnect | |
| 22 | TraceSQLFreeEnv | |
| 23 | TraceSQLFreeStmt | |
| 24 | TraceSQLGetCursorName | |
| 25 | TraceSQLNumResultCols | |
| 26 | TraceSQLPrepare | |
| 27 | TraceSQLRowCount | |
| 28 | TraceSQLSetCursorName | |
| 29 | TraceSQLSetParam | |
| 30 | TraceSQLTransact | |
| 31 | TraceSQLAllocHandle | |
| 32 | TraceSQLBindParam | |
| 33 | TraceSQLCloseCursor | |
| 34 | TraceSQLColAttribute | |
| 35 | TraceSQLCopyDesc | |
| 36 | TraceSQLEndTran | |
| 37 | TraceSQLFetchScroll | |
| 38 | TraceSQLFreeHandle | |
| 39 | TraceSQLGetConnectAttr | |
| 40 | TraceSQLGetDescField | |
| 41 | TraceSQLGetDescRec | |
| 42 | TraceSQLGetDiagField | |
| 43 | TraceSQLGetDiagRec | |
| 44 | TraceSQLGetEnvAttr | |
| 45 | TraceSQLGetStmtAttr | |
| 46 | TraceSQLSetConnectAttr | |
| 47 | TraceSQLColumns | |
| 48 | TraceSQLDriverConnect | |
| 49 | TraceSQLGetConnectOption | |
| 50 | TraceSQLGetData | |
| 51 | TraceSQLGetFunctions | |
| 52 | TraceSQLGetInfo | |
| 53 | TraceSQLGetStmtOption | |
| 54 | TraceSQLGetTypeInfo | |
| 55 | TraceSQLParamData | |
| 56 | TraceSQLPutData | |
| 57 | TraceSQLSetConnectOption | |
| 58 | TraceSQLSetStmtOption | |
| 59 | TraceSQLSpecialColumns | |
| 60 | TraceSQLStatistics | |
| 61 | TraceSQLTables | |
| 62 | TraceSQLBrowseConnect | |
| 63 | TraceSQLColumnPrivileges | |
| 64 | TraceSQLDataSources | |
| 65 | TraceSQLDescribeParam | |
| 66 | TraceSQLExtendedFetch | |
| 67 | TraceSQLForeignKeys | |
| 68 | TraceSQLMoreResults | |
| 69 | TraceSQLNativeSql | |
| 70 | TraceSQLNumParams | |
| 71 | TraceSQLParamOptions | |
| 72 | TraceSQLPrimaryKeys | |
| 73 | TraceSQLProcedureColumns | |
| 74 | TraceSQLProcedures | |
| 75 | TraceSQLSetPos | |
| 76 | TraceSQLSetScrollOptions | |
| 77 | TraceSQLTablePrivileges | |
| 78 | TraceSQLDrivers | |
| 79 | TraceSQLBindParameter | |
| 80 | TraceSQLSetDescField | |
| 81 | TraceSQLSetDescRec | |
| 82 | TraceSQLSetEnvAttr | |
| 83 | TraceSQLSetStmtAttr | |
| 84 | TraceSQLAllocHandleStd | |
| 85 | TraceSQLBulkOperations | |
| 86 | TraceSQLCancelHandle | |
| 87 | TraceSQLCompleteAsync | |
| 88 | TraceSQLCompleteAsyncW | |
| 89 | TraceVSControl | |
| 90 | TraceSQLColAttributesW | |
| 91 | TraceSQLConnectW | |
| 92 | TraceSQLDescribeColW | |
| 93 | TraceSQLErrorW | |
| 94 | TraceSQLExecDirectW | |
| 95 | TraceSQLGetCursorNameW | |
| 96 | TraceSQLPrepareW | |
| 97 | TraceSQLSetCursorNameW | |
| 98 | TraceSQLColAttributeW | |
| 99 | TraceSQLGetConnectAttrW | |
| 100 | TraceSQLGetDescFieldW | |
| 101 | TraceSQLGetDescRecW | |
| 102 | TraceSQLGetDiagFieldW | |
| 103 | TraceSQLGetDiagRecW | |
| 104 | TraceSQLGetStmtAttrW | |
| 105 | TraceSQLSetConnectAttrW | |
| 106 | TraceSQLColumnsW | |
| 107 | TraceSQLDriverConnectW | |
| 108 | TraceSQLGetConnectOptionW | |
| 109 | TraceSQLGetInfoW | |
| 110 | TraceSQLGetTypeInfoW | |
| 111 | TraceSQLSetConnectOptionW | |
| 112 | TraceSQLSpecialColumnsW | |
| 113 | TraceSQLStatisticsW | |
| 114 | TraceSQLTablesW | |
| 115 | TraceSQLBrowseConnectW | |
| 116 | TraceSQLColumnPrivilegesW | |
| 117 | TraceSQLDataSourcesW | |
| 118 | TraceSQLForeignKeysW | |
| 119 | TraceSQLNativeSqlW | |
| 120 | TraceSQLPrimaryKeysW | |
| 121 | TraceSQLProcedureColumnsW | |
| 122 | TraceSQLProceduresW | |
| 123 | TraceSQLTablePrivilegesW | |
| 124 | TraceSQLDriversW | |
| 125 | TraceSQLSetDescFieldW | |
| 126 | TraceSQLSetStmtAttrW | |
| 127 | TraceSQLAllocHandleStdW | |
| 128 | TraceReturn | |
| 129 | TraceOpenLogFile | |
| 130 | TraceCloseLogFile | |
| 131 | TraceVersion |
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 | ; | |
| 6 | LIBRARY "oemlicense.dll" | |
| 7 | EXPORTS | |
| 8 | HrAddAppxLicense | |
| 9 | HrRemoveAppxLicense | |
| 10 | AddDemoAppLicense | |
| 11 | RemoveDemoAppLicense |
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 | ; | |
| 6 | LIBRARY "OFFREG.dll" | |
| 7 | EXPORTS | |
| 8 | ORCloseHive | |
| 9 | ORCloseKey | |
| 10 | ORCreateHive | |
| 11 | ORCreateKey | |
| 12 | ORDeleteKey | |
| 13 | ORDeleteValue | |
| 14 | OREnumKey | |
| 15 | OREnumValue | |
| 16 | ORGetKeySecurity | |
| 17 | ORGetValue | |
| 18 | ORGetVersion | |
| 19 | ORGetVirtualFlags | |
| 20 | OROpenHive | |
| 21 | OROpenHiveByHandle | |
| 22 | OROpenKey | |
| 23 | ORQueryInfoKey | |
| 24 | ORSaveHive | |
| 25 | ORSetKeySecurity | |
| 26 | ORSetValue | |
| 27 | ORSetVirtualFlags |
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 | ; | |
| 6 | LIBRARY "OneX.DLL" | |
| 7 | EXPORTS | |
| 8 | OneXAddEapAttributes | |
| 9 | OneXAddTLV | |
| 10 | OneXCompareAuthParams | |
| 11 | OneXCopyAuthParams | |
| 12 | OneXCreateDefaultProfile | |
| 13 | OneXCreateDiscoveryProfiles | |
| 14 | OneXCreateSupplicantPort | |
| 15 | OneXDeInitialize | |
| 16 | OneXDestroySupplicantPort | |
| 17 | OneXForceAuthenticatedState | |
| 18 | OneXFreeAuthParams | |
| 19 | OneXFreeMemory | |
| 20 | OneXIndicatePacket | |
| 21 | OneXIndicateSessionChange | |
| 22 | OneXInitialize | |
| 23 | OneXQueryAuthParams | |
| 24 | OneXQueryPendingUIRequest | |
| 25 | OneXQueryState | |
| 26 | OneXQueryStatistics | |
| 27 | OneXReasonCodeToString | |
| 28 | OneXRestartReasonCodeToString | |
| 29 | OneXSetAuthParams | |
| 30 | OneXSetRuntimeState | |
| 31 | OneXStartAuthentication | |
| 32 | OneXStopAuthentication | |
| 33 | OneXUIResponse | |
| 34 | OneXUpdatePortProfile | |
| 35 | OneXUpdateProfilePostDiscovery |
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 | ; | |
| 6 | LIBRARY "OneXUI.DLL" | |
| 7 | EXPORTS | |
| 8 | OneXGetUserFriendlyText | |
| 9 | OneXMapEAPHostInteractiveUIToOneXUIResponse | |
| 10 | OneXShowUI | |
| 11 | OneXShowUIFromEAPCreds |
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 | ; | |
| 6 | LIBRARY "OOBEFLDR.dll" | |
| 7 | EXPORTS | |
| 8 | ShowWelcomeCenter |
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 | ; | |
| 6 | LIBRARY "osbaseln.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | CloseOsBaseline | |
| 10 | EnumOsBaselineComponentsA | |
| 11 | EnumOsBaselineComponentsW | |
| 12 | EnumOsOutOfDateComponentsA | |
| 13 | EnumOsOutOfDateComponentsW | |
| 14 | GetOsBaselineComponentInfoA | |
| 15 | GetOsBaselineComponentInfoW | |
| 16 | GetOsInstalledComponentInfoA | |
| 17 | GetOsInstalledComponentInfoW | |
| 18 | GetOsLatestBaselineServicePack | |
| 19 | OpenOsBaseline | |
| 20 | pGetOsBaselineCurrentVersion | |
| 21 | pGetOsCurrentBaselineServicePack | |
| 22 | pOpenOsBaselineByVersion |
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 | ; | |
| 6 | LIBRARY "OskSupport.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeOSKSupport | |
| 9 | UninitializeOSKSupport |
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 | ; | |
| 6 | LIBRARY "p2psvc.dll" | |
| 7 | EXPORTS | |
| 8 | GroupServiceMain | |
| 9 | SvchostPushServiceGlobals | |
| 10 | InitSecurityInterfaceW |
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 | ; | |
| 6 | LIBRARY "PAUTOENR.dll" | |
| 7 | EXPORTS | |
| 8 | DimsProvEntry | |
| 9 | CertAutoEnrollment | |
| 10 | CertAutoRemove |
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 | ; | |
| 6 | LIBRARY "pcacli.dll" | |
| 7 | EXPORTS | |
| 8 | PcaGetFileInfoFromPath | |
| 9 | PcaIsPcaDisabled | |
| 10 | PcaLinkChildProcessToParent | |
| 11 | PcaMonitorProcess | |
| 12 | PcaNotifyMsiInstall | |
| 13 | PcaNotifyStatusIcon | |
| 14 | PcaSendToService |
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 | ; | |
| 6 | LIBRARY "pcaui.dll" | |
| 7 | EXPORTS | |
| 8 | DisplayApphelpDialog | |
| 9 | PcaLaunchApplicationWithConsent | |
| 10 | PcaPersistSettingsAndLaunchApplication | |
| 11 | PcaShowDialog |
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 | ; | |
| 6 | LIBRARY "PCPKsp.dll" | |
| 7 | EXPORTS | |
| 8 | GetAsymmetricEncryptionInterface | |
| 9 | GetKeyStorageInterface | |
| 10 | GetRngInterface |
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 | ; | |
| 6 | LIBRARY "PCPTpm12.dll" | |
| 7 | EXPORTS | |
| 8 | GetAsymmetricEncryptionInterface | |
| 9 | GetRngInterface |
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 | ; | |
| 6 | LIBRARY "pcwutl.dll" | |
| 7 | EXPORTS | |
| 8 | LaunchApplicationW | |
| 9 | GetAppInformationFromCOS | |
| 10 | GetLayerFromGenome | |
| 11 | GetMatchingInfo | |
| 12 | GetTempFile | |
| 13 | LogAeEvent | |
| 14 | LogPCWDebugEvent | |
| 15 | RetrieveFileAndProgramId | |
| 16 | SendPcwWerReport | |
| 17 | SendSQMForTSRun |
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 | ; | |
| 6 | LIBRARY "pdh.dll" | |
| 7 | EXPORTS | |
| 8 | PdhAdd009CounterA | |
| 9 | PdhAdd009CounterW | |
| 10 | PdhAddCounterA | |
| 11 | PdhAddCounterW | |
| 12 | PdhAddEnglishCounterA | |
| 13 | PdhAddEnglishCounterW | |
| 14 | PdhAddRelogCounter | |
| 15 | PdhAddV1Counter | |
| 16 | PdhAddV2Counter | |
| 17 | PdhBindInputDataSourceA | |
| 18 | PdhBindInputDataSourceW | |
| 19 | PdhBrowseCountersA | |
| 20 | PdhBrowseCountersHA | |
| 21 | PdhBrowseCountersHW | |
| 22 | PdhBrowseCountersW | |
| 23 | PdhCalculateCounterFromRawValue | |
| 24 | PdhCloseLog | |
| 25 | PdhCloseQuery | |
| 26 | PdhCollectQueryData | |
| 27 | PdhCollectQueryDataEx | |
| 28 | PdhCollectQueryDataWithTime | |
| 29 | PdhComputeCounterStatistics | |
| 30 | PdhConnectMachineA | |
| 31 | PdhConnectMachineW | |
| 32 | PdhCreateSQLTablesA | |
| 33 | PdhCreateSQLTablesW | |
| 34 | PdhEnumLogSetNamesA | |
| 35 | PdhEnumLogSetNamesW | |
| 36 | PdhEnumMachinesA | |
| 37 | PdhEnumMachinesHA | |
| 38 | PdhEnumMachinesHW | |
| 39 | PdhEnumMachinesW | |
| 40 | PdhEnumObjectItemsA | |
| 41 | PdhEnumObjectItemsHA | |
| 42 | PdhEnumObjectItemsHW | |
| 43 | PdhEnumObjectItemsW | |
| 44 | PdhEnumObjectsA | |
| 45 | PdhEnumObjectsHA | |
| 46 | PdhEnumObjectsHW | |
| 47 | PdhEnumObjectsW | |
| 48 | PdhExpandCounterPathA | |
| 49 | PdhExpandCounterPathW | |
| 50 | PdhExpandWildCardPathA | |
| 51 | PdhExpandWildCardPathHA | |
| 52 | PdhExpandWildCardPathHW | |
| 53 | PdhExpandWildCardPathW | |
| 54 | PdhFormatFromRawValue | |
| 55 | PdhGetCounterInfoA | |
| 56 | PdhGetCounterInfoW | |
| 57 | PdhGetCounterTimeBase | |
| 58 | PdhGetDataSourceTimeRangeA | |
| 59 | PdhGetDataSourceTimeRangeH | |
| 60 | PdhGetDataSourceTimeRangeW | |
| 61 | PdhGetDefaultPerfCounterA | |
| 62 | PdhGetDefaultPerfCounterHA | |
| 63 | PdhGetDefaultPerfCounterHW | |
| 64 | PdhGetDefaultPerfCounterW | |
| 65 | PdhGetDefaultPerfObjectA | |
| 66 | PdhGetDefaultPerfObjectHA | |
| 67 | PdhGetDefaultPerfObjectHW | |
| 68 | PdhGetDefaultPerfObjectW | |
| 69 | PdhGetDllVersion | |
| 70 | PdhGetExplainText | |
| 71 | PdhGetFormattedCounterArrayA | |
| 72 | PdhGetFormattedCounterArrayW | |
| 73 | PdhGetFormattedCounterValue | |
| 74 | PdhGetLogFileSize | |
| 75 | PdhGetLogFileTypeA | |
| 76 | PdhGetLogFileTypeW | |
| 77 | PdhGetLogSetGUID | |
| 78 | PdhGetRawCounterArrayA | |
| 79 | PdhGetRawCounterArrayW | |
| 80 | PdhGetRawCounterValue | |
| 81 | PdhIsRealTimeQuery | |
| 82 | PdhListLogFileHeaderA | |
| 83 | PdhListLogFileHeaderW | |
| 84 | PdhLookupPerfIndexByNameA | |
| 85 | PdhLookupPerfIndexByNameW | |
| 86 | PdhLookupPerfNameByIndexA | |
| 87 | PdhLookupPerfNameByIndexW | |
| 88 | PdhMakeCounterPathA | |
| 89 | PdhMakeCounterPathW | |
| 90 | PdhOpenLogA | |
| 91 | PdhOpenLogW | |
| 92 | PdhOpenQuery | |
| 93 | PdhOpenQueryA | |
| 94 | PdhOpenQueryH | |
| 95 | PdhOpenQueryW | |
| 96 | PdhParseCounterPathA | |
| 97 | PdhParseCounterPathW | |
| 98 | PdhParseInstanceNameA | |
| 99 | PdhParseInstanceNameW | |
| 100 | PdhReadRawLogRecord | |
| 101 | PdhRelogA | |
| 102 | PdhRelogW | |
| 103 | PdhRemoveCounter | |
| 104 | PdhResetRelogCounterValues | |
| 105 | PdhSelectDataSourceA | |
| 106 | PdhSelectDataSourceW | |
| 107 | PdhSetCounterScaleFactor | |
| 108 | PdhSetCounterValue | |
| 109 | PdhSetDefaultRealTimeDataSource | |
| 110 | PdhSetLogSetRunID | |
| 111 | PdhSetQueryTimeRange | |
| 112 | PdhTranslate009CounterA | |
| 113 | PdhTranslate009CounterW | |
| 114 | PdhTranslateLocaleCounterA | |
| 115 | PdhTranslateLocaleCounterW | |
| 116 | PdhUpdateLogA | |
| 117 | PdhUpdateLogFileCatalog | |
| 118 | PdhUpdateLogW | |
| 119 | PdhValidatePathA | |
| 120 | PdhValidatePathExA | |
| 121 | PdhValidatePathExW | |
| 122 | PdhValidatePathW | |
| 123 | PdhVbAddCounter | |
| 124 | PdhVbCreateCounterPathList | |
| 125 | PdhVbGetCounterPathElements | |
| 126 | PdhVbGetCounterPathFromList | |
| 127 | PdhVbGetDoubleCounterValue | |
| 128 | PdhVbGetLogFileSize | |
| 129 | PdhVbGetOneCounterPath | |
| 130 | PdhVbIsGoodStatus | |
| 131 | PdhVbOpenLog | |
| 132 | PdhVbOpenQuery | |
| 133 | PdhVbUpdateLog | |
| 134 | PdhVerifySQLDBA | |
| 135 | PdhVerifySQLDBW | |
| 136 | PdhWriteRelogSample |
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 | ; | |
| 6 | LIBRARY "pdhui.dll" | |
| 7 | EXPORTS | |
| 8 | PdhUiBrowseCountersA | |
| 9 | PdhUiBrowseCountersExA | |
| 10 | PdhUiBrowseCountersExHA | |
| 11 | PdhUiBrowseCountersExHW | |
| 12 | PdhUiBrowseCountersExW | |
| 13 | PdhUiBrowseCountersHA | |
| 14 | PdhUiBrowseCountersHW | |
| 15 | PdhUiBrowseCountersW | |
| 16 | PdhUiSelectDataSourceA | |
| 17 | PdhUiSelectDataSourceW |
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 | ; | |
| 6 | LIBRARY "perftrack.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "pidgenx.dll" | |
| 7 | EXPORTS | |
| 8 | ord_117 @117 | |
| 9 | PidGenX | |
| 10 | PidGenX2 |
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 | ; | |
| 6 | LIBRARY "pku2u.dll" | |
| 7 | EXPORTS | |
| 8 | SpLsaModeInitialize | |
| 9 | SpUserModeInitialize |
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 | ; | |
| 6 | LIBRARY "PLA.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals | |
| 10 | PlaDeleteReport | |
| 11 | PlaExpandTaskArguments | |
| 12 | PlaExtractCabinet | |
| 13 | PlaGetLegacyAlertActionsFlagsFromString | |
| 14 | PlaGetLegacyAlertActionsStringFromFlags | |
| 15 | PlaGetServerCapabilities | |
| 16 | PlaHost | |
| 17 | PlaServer | |
| 18 | PlaUpgrade |
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 | ; | |
| 6 | LIBRARY "PlaySndSrv.DLL" | |
| 7 | EXPORTS | |
| 8 | PlaySoundServerInitialize | |
| 9 | PlaySoundServerTerminate |
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 | ; | |
| 6 | LIBRARY "ploptin.dll" | |
| 7 | EXPORTS | |
| 8 | IsApplicationEligibleForPrelaunch |
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 | ; | |
| 6 | LIBRARY "PNPCLEAN.dll" | |
| 7 | EXPORTS | |
| 8 | RunDLL_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 | ; | |
| 6 | LIBRARY "pnpts.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "pnpui.dll" | |
| 7 | EXPORTS | |
| 8 | InstallSecurityPrompt | |
| 9 | InstallSecurityPromptRunDllW | |
| 10 | SimplifiedDINotificationW |
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 | ; | |
| 6 | LIBRARY "pnrpauto.dll" | |
| 7 | EXPORTS | |
| 8 | PnrpAutoSVCServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "PNRPNSP.dll" | |
| 7 | EXPORTS | |
| 8 | NSPStartup |
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 | ; | |
| 6 | LIBRARY "pnrpsvc.dll" | |
| 7 | EXPORTS | |
| 8 | IMServiceMain | |
| 9 | SVCServiceMain | |
| 10 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "POLSTORE.DLL" | |
| 7 | EXPORTS | |
| 8 | GenerateIPSECPolicy | |
| 9 | ProcessIPSECPolicyEx | |
| 10 | WriteDirectoryPolicyToWMI | |
| 11 | IPSecAllocPolMem | |
| 12 | IPSecAllocPolStr | |
| 13 | IPSecAssignPolicy | |
| 14 | IPSecClearWMIStore | |
| 15 | IPSecClosePolicyStore | |
| 16 | IPSecCopyAuthMethod | |
| 17 | IPSecCopyFilterData | |
| 18 | IPSecCopyFilterSpec | |
| 19 | IPSecCopyISAKMPData | |
| 20 | IPSecCopyNFAData | |
| 21 | IPSecCopyNegPolData | |
| 22 | IPSecCopyPolicyData | |
| 23 | IPSecCreateFilterData | |
| 24 | IPSecCreateISAKMPData | |
| 25 | IPSecCreateNFAData | |
| 26 | IPSecCreateNegPolData | |
| 27 | IPSecCreatePolicyData | |
| 28 | IPSecDeleteFilterData | |
| 29 | IPSecDeleteISAKMPData | |
| 30 | IPSecDeleteNFAData | |
| 31 | IPSecDeleteNegPolData | |
| 32 | IPSecDeletePolicyData | |
| 33 | IPSecEnumFilterData | |
| 34 | IPSecEnumISAKMPData | |
| 35 | IPSecEnumNFAData | |
| 36 | IPSecEnumNegPolData | |
| 37 | IPSecEnumPolicyData | |
| 38 | IPSecExportPolicies | |
| 39 | IPSecFreeFilterData | |
| 40 | IPSecFreeFilterSpec | |
| 41 | IPSecFreeFilterSpecs | |
| 42 | IPSecFreeISAKMPData | |
| 43 | IPSecFreeMulFilterData | |
| 44 | IPSecFreeMulISAKMPData | |
| 45 | IPSecFreeMulNFAData | |
| 46 | IPSecFreeMulNegPolData | |
| 47 | IPSecFreeMulPolicyData | |
| 48 | IPSecFreeNFAData | |
| 49 | IPSecFreeNegPolData | |
| 50 | IPSecFreePolStr | |
| 51 | IPSecFreePolicyData | |
| 52 | IPSecGetAssignedPolicyData | |
| 53 | IPSecGetFilterData | |
| 54 | IPSecGetISAKMPData | |
| 55 | IPSecGetNegPolData | |
| 56 | IPSecImportPolicies | |
| 57 | IPSecIsDomainPolicyAssigned | |
| 58 | IPSecOpenPolicyStore | |
| 59 | IPSecSetFilterData | |
| 60 | IPSecSetISAKMPData | |
| 61 | IPSecSetNFAData | |
| 62 | IPSecSetNegPolData | |
| 63 | IPSecSetPolicyData | |
| 64 | IPSecUnassignPolicy | |
| 65 | RegCreateNFAData | |
| 66 | RegCreatePolicyData |
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 | ; | |
| 6 | LIBRARY "PORTABLEDEVICECLASSEXTENSION.dll" | |
| 7 | EXPORTS | |
| 8 | Microsoft_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 | ; | |
| 6 | LIBRARY "pots.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "PowerWmiProvider.dll" | |
| 7 | EXPORTS | |
| 8 | GetProviderClassID | |
| 9 | MI_Main | |
| 10 | t100 DATA | |
| 11 | t101 DATA | |
| 12 | t102 DATA | |
| 13 | t103 DATA | |
| 14 | t104 DATA | |
| 15 | t105 DATA | |
| 16 | t106 DATA | |
| 17 | t107 DATA | |
| 18 | t108 DATA | |
| 19 | t109 DATA | |
| 20 | t110 DATA | |
| 21 | t111 DATA | |
| 22 | t112 DATA | |
| 23 | t113 DATA | |
| 24 | t114 DATA | |
| 25 | t115 DATA | |
| 26 | t116 DATA | |
| 27 | t117 DATA | |
| 28 | t118 DATA | |
| 29 | t119 DATA | |
| 30 | t120 DATA | |
| 31 | t121 DATA | |
| 32 | t122 DATA | |
| 33 | t123 DATA | |
| 34 | t124 DATA | |
| 35 | t125 DATA | |
| 36 | t126 DATA | |
| 37 | t127 DATA | |
| 38 | t128 DATA | |
| 39 | t129 DATA | |
| 40 | t130 DATA | |
| 41 | t131 DATA | |
| 42 | t132 DATA | |
| 43 | t133 DATA | |
| 44 | t134 DATA | |
| 45 | t135 DATA | |
| 46 | t136 DATA | |
| 47 | t137 DATA | |
| 48 | t138 DATA | |
| 49 | t139 DATA | |
| 50 | t140 DATA | |
| 51 | t141 DATA | |
| 52 | t142 DATA | |
| 53 | t143 DATA | |
| 54 | t144 DATA | |
| 55 | t145 DATA | |
| 56 | t146 DATA | |
| 57 | t147 DATA | |
| 58 | t148 DATA | |
| 59 | t149 DATA | |
| 60 | t150 DATA | |
| 61 | t151 DATA | |
| 62 | t152 DATA | |
| 63 | t152.m1 | |
| 64 | t152.m2 | |
| 65 | t152.m3 | |
| 66 | t152.m4 | |
| 67 | t153 DATA | |
| 68 | t153.m0 | |
| 69 | t153.m1 | |
| 70 | t153.m2 | |
| 71 | t154 DATA | |
| 72 | t155 DATA | |
| 73 | t156 DATA | |
| 74 | t157 DATA | |
| 75 | t158 DATA | |
| 76 | t159 DATA | |
| 77 | t160 DATA | |
| 78 | t161 DATA | |
| 79 | t162 DATA | |
| 80 | t163 DATA | |
| 81 | t164 DATA | |
| 82 | t165 DATA | |
| 83 | t166 DATA | |
| 84 | t21 DATA | |
| 85 | t22 DATA | |
| 86 | t23 DATA | |
| 87 | t24 DATA | |
| 88 | t25 DATA | |
| 89 | t26 DATA | |
| 90 | t27 DATA | |
| 91 | t28 DATA | |
| 92 | t283 DATA | |
| 93 | t29 DATA | |
| 94 | t30 DATA | |
| 95 | t304 DATA | |
| 96 | t305 DATA | |
| 97 | t306 DATA | |
| 98 | t307 DATA | |
| 99 | t307.m1 | |
| 100 | t307.m2 | |
| 101 | t308 DATA | |
| 102 | t309 DATA | |
| 103 | t31 DATA | |
| 104 | t310 DATA | |
| 105 | t312 DATA | |
| 106 | t313 DATA | |
| 107 | t314 DATA | |
| 108 | t315 DATA | |
| 109 | t316 DATA | |
| 110 | t317 DATA | |
| 111 | t318 DATA | |
| 112 | t319 DATA | |
| 113 | t32 DATA | |
| 114 | t320 DATA | |
| 115 | t321 DATA | |
| 116 | t322 DATA | |
| 117 | t323 DATA | |
| 118 | t324 DATA | |
| 119 | t325 DATA | |
| 120 | t326 DATA | |
| 121 | t327 DATA | |
| 122 | t328 DATA | |
| 123 | t329 DATA | |
| 124 | t33 DATA | |
| 125 | t330 DATA | |
| 126 | t331 DATA | |
| 127 | t332 DATA | |
| 128 | t333 DATA | |
| 129 | t333.m1 | |
| 130 | t333.m2 | |
| 131 | t334 DATA | |
| 132 | t335 DATA | |
| 133 | t336 DATA | |
| 134 | t338 DATA | |
| 135 | t339 DATA | |
| 136 | t339.m1 | |
| 137 | t339.m2 | |
| 138 | t34 DATA | |
| 139 | t340 DATA | |
| 140 | t341 DATA | |
| 141 | t342 DATA | |
| 142 | t343 DATA | |
| 143 | t344 DATA | |
| 144 | t345 DATA | |
| 145 | t347 DATA | |
| 146 | t348 DATA | |
| 147 | t349 DATA | |
| 148 | t35 DATA | |
| 149 | t350 DATA | |
| 150 | t351 DATA | |
| 151 | t353 DATA | |
| 152 | t354 DATA | |
| 153 | t354.m1 | |
| 154 | t354.m2 | |
| 155 | t355 DATA | |
| 156 | t356 DATA | |
| 157 | t357 DATA | |
| 158 | t359 DATA | |
| 159 | t36 DATA | |
| 160 | t360 DATA | |
| 161 | t361 DATA | |
| 162 | t362 DATA | |
| 163 | t363 DATA | |
| 164 | t364 DATA | |
| 165 | t365 DATA | |
| 166 | t366 DATA | |
| 167 | t367 DATA | |
| 168 | t368 DATA | |
| 169 | t368.m1 | |
| 170 | t368.m2 | |
| 171 | t369 DATA | |
| 172 | t37 DATA | |
| 173 | t370 DATA | |
| 174 | t371 DATA | |
| 175 | t372 DATA | |
| 176 | t373 DATA | |
| 177 | t375 DATA | |
| 178 | t376 DATA | |
| 179 | t376.m1 | |
| 180 | t376.m2 | |
| 181 | t377 DATA | |
| 182 | t378 DATA | |
| 183 | t379 DATA | |
| 184 | t38 DATA | |
| 185 | t380 DATA | |
| 186 | t381 DATA | |
| 187 | t382 DATA | |
| 188 | t383 DATA | |
| 189 | t384 DATA | |
| 190 | t385 DATA | |
| 191 | t387 DATA | |
| 192 | t388 DATA | |
| 193 | t389 DATA | |
| 194 | t39 DATA | |
| 195 | t390 DATA | |
| 196 | t391 DATA | |
| 197 | t392 DATA | |
| 198 | t393 DATA | |
| 199 | t394 DATA | |
| 200 | t395 DATA | |
| 201 | t396 DATA | |
| 202 | t397 DATA | |
| 203 | t398 DATA | |
| 204 | t399 DATA | |
| 205 | t40 DATA | |
| 206 | t400 DATA | |
| 207 | t401 DATA | |
| 208 | t402 DATA | |
| 209 | t402.m1 | |
| 210 | t402.m2 | |
| 211 | t403 DATA | |
| 212 | t404 DATA | |
| 213 | t405 DATA | |
| 214 | t406 DATA | |
| 215 | t407 DATA | |
| 216 | t409 DATA | |
| 217 | t41 DATA | |
| 218 | t410 DATA | |
| 219 | t410.m1 | |
| 220 | t410.m2 | |
| 221 | t411 DATA | |
| 222 | t412 DATA | |
| 223 | t413 DATA | |
| 224 | t414 DATA | |
| 225 | t415 DATA | |
| 226 | t416 DATA | |
| 227 | t417 DATA | |
| 228 | t418 DATA | |
| 229 | t419 DATA | |
| 230 | t42 DATA | |
| 231 | t420 DATA | |
| 232 | t421 DATA | |
| 233 | t422 DATA | |
| 234 | t423 DATA | |
| 235 | t425 DATA | |
| 236 | t426 DATA | |
| 237 | t426.m1 | |
| 238 | t426.m2 | |
| 239 | t427 DATA | |
| 240 | t428 DATA | |
| 241 | t429 DATA | |
| 242 | t43 DATA | |
| 243 | t431 DATA | |
| 244 | t432 DATA | |
| 245 | t433 DATA | |
| 246 | t434 DATA | |
| 247 | t435 DATA | |
| 248 | t436 DATA | |
| 249 | t437 DATA | |
| 250 | t438 DATA | |
| 251 | t439 DATA | |
| 252 | t44 DATA | |
| 253 | t440 DATA | |
| 254 | t441 DATA | |
| 255 | t442 DATA | |
| 256 | t442.m1 | |
| 257 | t442.m2 | |
| 258 | t443 DATA | |
| 259 | t444 DATA | |
| 260 | t445 DATA | |
| 261 | t446 DATA | |
| 262 | t447 DATA | |
| 263 | t449 DATA | |
| 264 | t45 DATA | |
| 265 | t450 DATA | |
| 266 | t451 DATA | |
| 267 | t452 DATA | |
| 268 | t453 DATA | |
| 269 | t454 DATA | |
| 270 | t455 DATA | |
| 271 | t456 DATA | |
| 272 | t457 DATA | |
| 273 | t458 DATA | |
| 274 | t459 DATA | |
| 275 | t46 DATA | |
| 276 | t460 DATA | |
| 277 | t461 DATA | |
| 278 | t462 DATA | |
| 279 | t463 DATA | |
| 280 | t464 DATA | |
| 281 | t465 DATA | |
| 282 | t466 DATA | |
| 283 | t467 DATA | |
| 284 | t468 DATA | |
| 285 | t469 DATA | |
| 286 | t47 DATA | |
| 287 | t470 DATA | |
| 288 | t471 DATA | |
| 289 | t472 DATA | |
| 290 | t472.m1 | |
| 291 | t472.m2 | |
| 292 | t473 DATA | |
| 293 | t474 DATA | |
| 294 | t475 DATA | |
| 295 | t476 DATA | |
| 296 | t477 DATA | |
| 297 | t478 DATA | |
| 298 | t479 DATA | |
| 299 | t48 DATA | |
| 300 | t481 DATA | |
| 301 | t482 DATA | |
| 302 | t483 DATA | |
| 303 | t484 DATA | |
| 304 | t485 DATA | |
| 305 | t486 DATA | |
| 306 | t487 DATA | |
| 307 | t488 DATA | |
| 308 | t489 DATA | |
| 309 | t49 DATA | |
| 310 | t490 DATA | |
| 311 | t490.m1 | |
| 312 | t490.m2 | |
| 313 | t491 DATA | |
| 314 | t492 DATA | |
| 315 | t493 DATA | |
| 316 | t494 DATA | |
| 317 | t495 DATA | |
| 318 | t496 DATA | |
| 319 | t497 DATA | |
| 320 | t499 DATA | |
| 321 | t50 DATA | |
| 322 | t500 DATA | |
| 323 | t501 DATA | |
| 324 | t501.m31 | |
| 325 | t501.m32 | |
| 326 | t501.m33 | |
| 327 | t501.m34 | |
| 328 | t501.m35 | |
| 329 | t501.m36 | |
| 330 | t501.m37 | |
| 331 | t501.m38 | |
| 332 | t501.m39 | |
| 333 | t501.m4 | |
| 334 | t501.m40 | |
| 335 | t501.m41 | |
| 336 | t501.m42 | |
| 337 | t501.m5 | |
| 338 | t501.m6 | |
| 339 | t502 DATA | |
| 340 | t503 DATA | |
| 341 | t504 DATA | |
| 342 | t504.m0 | |
| 343 | t505 DATA | |
| 344 | t506 DATA | |
| 345 | t507 DATA | |
| 346 | t508 DATA | |
| 347 | t508.m0 | |
| 348 | t509 DATA | |
| 349 | t51 DATA | |
| 350 | t510 DATA | |
| 351 | t510.m0 | |
| 352 | t510.m1 | |
| 353 | t511 DATA | |
| 354 | t512 DATA | |
| 355 | t512.m0 | |
| 356 | t512.m1 | |
| 357 | t513 DATA | |
| 358 | t514 DATA | |
| 359 | t514.m0 | |
| 360 | t514.m1 | |
| 361 | t515 DATA | |
| 362 | t516 DATA | |
| 363 | t517 DATA | |
| 364 | t517.m0 | |
| 365 | t517.m1 | |
| 366 | t518 DATA | |
| 367 | t519 DATA | |
| 368 | t52 DATA | |
| 369 | t520 DATA | |
| 370 | t521 DATA | |
| 371 | t522 DATA | |
| 372 | t522.m0 | |
| 373 | t523 DATA | |
| 374 | t524 DATA | |
| 375 | t525 DATA | |
| 376 | t526 DATA | |
| 377 | t526.m0 | |
| 378 | t527 DATA | |
| 379 | t528 DATA | |
| 380 | t528.m0 | |
| 381 | t528.m1 | |
| 382 | t529 DATA | |
| 383 | t53 DATA | |
| 384 | t530 DATA | |
| 385 | t531 DATA | |
| 386 | t532 DATA | |
| 387 | t533 DATA | |
| 388 | t534 DATA | |
| 389 | t535 DATA | |
| 390 | t536 DATA | |
| 391 | t537 DATA | |
| 392 | t538 DATA | |
| 393 | t539 DATA | |
| 394 | t54 DATA | |
| 395 | t540 DATA | |
| 396 | t541 DATA | |
| 397 | t542 DATA | |
| 398 | t543 DATA | |
| 399 | t543.m2 | |
| 400 | t543.m21 | |
| 401 | t543.m22 | |
| 402 | t543.m23 | |
| 403 | t543.m24 | |
| 404 | t543.m25 | |
| 405 | t543.m26 | |
| 406 | t543.m27 | |
| 407 | t544 DATA | |
| 408 | t545 DATA | |
| 409 | t545.m1 | |
| 410 | t546 DATA | |
| 411 | t547 DATA | |
| 412 | t547.m2 | |
| 413 | t547.m4 | |
| 414 | t547.m5 | |
| 415 | t548 DATA | |
| 416 | t549 DATA | |
| 417 | t55 DATA | |
| 418 | t550 DATA | |
| 419 | t550.m19 | |
| 420 | t550.m2 | |
| 421 | t550.m20 | |
| 422 | t550.m21 | |
| 423 | t550.m22 | |
| 424 | t550.m23 | |
| 425 | t550.m24 | |
| 426 | t550.m25 | |
| 427 | t551 DATA | |
| 428 | t552 DATA | |
| 429 | t552.m1 | |
| 430 | t553 DATA | |
| 431 | t554 DATA | |
| 432 | t554.m2 | |
| 433 | t554.m4 | |
| 434 | t554.m5 | |
| 435 | t555 DATA | |
| 436 | t556 DATA | |
| 437 | t557 DATA | |
| 438 | t557.m16 | |
| 439 | t557.m17 | |
| 440 | t557.m18 | |
| 441 | t557.m19 | |
| 442 | t557.m2 | |
| 443 | t557.m3 | |
| 444 | t558 DATA | |
| 445 | t559 DATA | |
| 446 | t559.m1 | |
| 447 | t56 DATA | |
| 448 | t560 DATA | |
| 449 | t561 DATA | |
| 450 | t561.m2 | |
| 451 | t561.m4 | |
| 452 | t561.m5 | |
| 453 | t562 DATA | |
| 454 | t563 DATA | |
| 455 | t564 DATA | |
| 456 | t564.m2 | |
| 457 | t564.m21 | |
| 458 | t564.m22 | |
| 459 | t564.m23 | |
| 460 | t564.m24 | |
| 461 | t564.m25 | |
| 462 | t564.m26 | |
| 463 | t564.m27 | |
| 464 | t565 DATA | |
| 465 | t566 DATA | |
| 466 | t566.m1 | |
| 467 | t567 DATA | |
| 468 | t568 DATA | |
| 469 | t568.m2 | |
| 470 | t568.m4 | |
| 471 | t568.m5 | |
| 472 | t569 DATA | |
| 473 | t57 DATA | |
| 474 | t570 DATA | |
| 475 | t571 DATA | |
| 476 | t571.m10 | |
| 477 | t571.m11 | |
| 478 | t571.m2 | |
| 479 | t571.m3 | |
| 480 | t571.m4 | |
| 481 | t571.m5 | |
| 482 | t571.m7 | |
| 483 | t571.m8 | |
| 484 | t571.m9 | |
| 485 | t572 DATA | |
| 486 | t573 DATA | |
| 487 | t574 DATA | |
| 488 | t575 DATA | |
| 489 | t575.m2 | |
| 490 | t575.m4 | |
| 491 | t575.m5 | |
| 492 | t576 DATA | |
| 493 | t577 DATA | |
| 494 | t578 DATA | |
| 495 | t578.m10 | |
| 496 | t578.m11 | |
| 497 | t578.m12 | |
| 498 | t578.m13 | |
| 499 | t578.m2 | |
| 500 | t578.m24 | |
| 501 | t578.m25 | |
| 502 | t578.m26 | |
| 503 | t578.m27 | |
| 504 | t578.m28 | |
| 505 | t578.m29 | |
| 506 | t578.m30 | |
| 507 | t578.m31 | |
| 508 | t579 DATA | |
| 509 | t58 DATA | |
| 510 | t580 DATA | |
| 511 | t580.m1 | |
| 512 | t581 DATA | |
| 513 | t582 DATA | |
| 514 | t582.m2 | |
| 515 | t582.m4 | |
| 516 | t582.m5 | |
| 517 | t583 DATA | |
| 518 | t584 DATA | |
| 519 | t585 DATA | |
| 520 | t585.m19 | |
| 521 | t585.m2 | |
| 522 | t585.m20 | |
| 523 | t585.m21 | |
| 524 | t585.m22 | |
| 525 | t585.m23 | |
| 526 | t585.m24 | |
| 527 | t585.m25 | |
| 528 | t586 DATA | |
| 529 | t587 DATA | |
| 530 | t587.m1 | |
| 531 | t588 DATA | |
| 532 | t589 DATA | |
| 533 | t589.m2 | |
| 534 | t589.m4 | |
| 535 | t589.m5 | |
| 536 | t59 DATA | |
| 537 | t590 DATA | |
| 538 | t591 DATA | |
| 539 | t592 DATA | |
| 540 | t592.m2 | |
| 541 | t592.m29 | |
| 542 | t592.m30 | |
| 543 | t592.m31 | |
| 544 | t592.m32 | |
| 545 | t592.m33 | |
| 546 | t592.m34 | |
| 547 | t592.m35 | |
| 548 | t593 DATA | |
| 549 | t594 DATA | |
| 550 | t594.m1 | |
| 551 | t595 DATA | |
| 552 | t596 DATA | |
| 553 | t596.m2 | |
| 554 | t596.m4 | |
| 555 | t596.m5 | |
| 556 | t597 DATA | |
| 557 | t598 DATA | |
| 558 | t599 DATA | |
| 559 | t599.m2 | |
| 560 | t599.m21 | |
| 561 | t599.m22 | |
| 562 | t599.m23 | |
| 563 | t599.m24 | |
| 564 | t599.m25 | |
| 565 | t599.m26 | |
| 566 | t599.m27 | |
| 567 | t60 DATA | |
| 568 | t600 DATA | |
| 569 | t601 DATA | |
| 570 | t601.m1 | |
| 571 | t602 DATA | |
| 572 | t603 DATA | |
| 573 | t603.m2 | |
| 574 | t603.m4 | |
| 575 | t603.m5 | |
| 576 | t604 DATA | |
| 577 | t605 DATA | |
| 578 | t606 DATA | |
| 579 | t606.m12 | |
| 580 | t606.m13 | |
| 581 | t606.m2 | |
| 582 | t606.m24 | |
| 583 | t606.m25 | |
| 584 | t606.m26 | |
| 585 | t606.m27 | |
| 586 | t606.m28 | |
| 587 | t606.m29 | |
| 588 | t606.m3 | |
| 589 | t607 DATA | |
| 590 | t608 DATA | |
| 591 | t608.m1 | |
| 592 | t609 DATA | |
| 593 | t61 DATA | |
| 594 | t610 DATA | |
| 595 | t610.m2 | |
| 596 | t610.m4 | |
| 597 | t610.m5 | |
| 598 | t611 DATA | |
| 599 | t612 DATA | |
| 600 | t613 DATA | |
| 601 | t614 DATA | |
| 602 | t614.m10 | |
| 603 | t614.m11 | |
| 604 | t614.m2 | |
| 605 | t614.m3 | |
| 606 | t614.m4 | |
| 607 | t614.m5 | |
| 608 | t614.m7 | |
| 609 | t614.m8 | |
| 610 | t614.m9 | |
| 611 | t615 DATA | |
| 612 | t616 DATA | |
| 613 | t617 DATA | |
| 614 | t618 DATA | |
| 615 | t618.m2 | |
| 616 | t618.m4 | |
| 617 | t618.m5 | |
| 618 | t619 DATA | |
| 619 | t62 DATA | |
| 620 | t620 DATA | |
| 621 | t621 DATA | |
| 622 | t621.m19 | |
| 623 | t621.m2 | |
| 624 | t621.m20 | |
| 625 | t621.m21 | |
| 626 | t621.m22 | |
| 627 | t621.m23 | |
| 628 | t621.m24 | |
| 629 | t621.m25 | |
| 630 | t622 DATA | |
| 631 | t623 DATA | |
| 632 | t623.m1 | |
| 633 | t624 DATA | |
| 634 | t625 DATA | |
| 635 | t625.m2 | |
| 636 | t625.m4 | |
| 637 | t625.m5 | |
| 638 | t626 DATA | |
| 639 | t627 DATA | |
| 640 | t628 DATA | |
| 641 | t629 DATA | |
| 642 | t63 DATA | |
| 643 | t630 DATA | |
| 644 | t631 DATA | |
| 645 | t631.m0 | |
| 646 | t632 DATA | |
| 647 | t633 DATA | |
| 648 | t634 DATA | |
| 649 | t635 DATA | |
| 650 | t635.m1 | |
| 651 | t635.m2 | |
| 652 | t635.m3 | |
| 653 | t635.m4 | |
| 654 | t635.m5 | |
| 655 | t635.m6 | |
| 656 | t636 DATA | |
| 657 | t637 DATA | |
| 658 | t638 DATA | |
| 659 | t638.m1 | |
| 660 | t638.m2 | |
| 661 | t638.m3 | |
| 662 | t638.m4 | |
| 663 | t638.m5 | |
| 664 | t638.m6 | |
| 665 | t638.m7 | |
| 666 | t638.m8 | |
| 667 | t638.m9 | |
| 668 | t639 DATA | |
| 669 | t639.m1 | |
| 670 | t639.m2 | |
| 671 | t639.m3 | |
| 672 | t639.m4 | |
| 673 | t639.m5 | |
| 674 | t639.m6 | |
| 675 | t639.m7 | |
| 676 | t639.m8 | |
| 677 | t639.m9 | |
| 678 | t64 DATA | |
| 679 | t640 DATA | |
| 680 | t640.m1 | |
| 681 | t640.m2 | |
| 682 | t640.m3 | |
| 683 | t640.m4 | |
| 684 | t640.m5 | |
| 685 | t640.m6 | |
| 686 | t641 DATA | |
| 687 | t641.m1 | |
| 688 | t641.m2 | |
| 689 | t641.m3 | |
| 690 | t641.m4 | |
| 691 | t641.m5 | |
| 692 | t641.m6 | |
| 693 | t641.m7 | |
| 694 | t641.m8 | |
| 695 | t641.m9 | |
| 696 | t642 DATA | |
| 697 | t642.m1 | |
| 698 | t642.m2 | |
| 699 | t642.m3 | |
| 700 | t642.m4 | |
| 701 | t642.m5 | |
| 702 | t643 DATA | |
| 703 | t643.m1 | |
| 704 | t643.m2 | |
| 705 | t643.m3 | |
| 706 | t643.m4 | |
| 707 | t643.m5 | |
| 708 | t644 DATA | |
| 709 | t644.m1 | |
| 710 | t644.m2 | |
| 711 | t644.m3 | |
| 712 | t644.m4 | |
| 713 | t644.m5 | |
| 714 | t645 DATA | |
| 715 | t645.m1 | |
| 716 | t645.m2 | |
| 717 | t645.m3 | |
| 718 | t645.m4 | |
| 719 | t645.m5 | |
| 720 | t645.m6 | |
| 721 | t645.m7 | |
| 722 | t645.m8 | |
| 723 | t645.m9 | |
| 724 | t646 DATA | |
| 725 | t646.m1 | |
| 726 | t646.m2 | |
| 727 | t646.m3 | |
| 728 | t646.m4 | |
| 729 | t646.m5 | |
| 730 | t646.m6 | |
| 731 | t646.m7 | |
| 732 | t646.m8 | |
| 733 | t646.m9 | |
| 734 | t647 DATA | |
| 735 | t647.m1 | |
| 736 | t647.m2 | |
| 737 | t647.m3 | |
| 738 | t647.m4 | |
| 739 | t647.m5 | |
| 740 | t648 DATA | |
| 741 | t648.m1 | |
| 742 | t648.m2 | |
| 743 | t648.m3 | |
| 744 | t648.m4 | |
| 745 | t648.m5 | |
| 746 | t65 DATA | |
| 747 | t650 DATA | |
| 748 | t650.m0 | |
| 749 | t650.m1 | |
| 750 | t650.m10 | |
| 751 | t650.m11 | |
| 752 | t650.m2 | |
| 753 | t650.m3 | |
| 754 | t650.m4 | |
| 755 | t650.m5 | |
| 756 | t650.m6 | |
| 757 | t650.m7 | |
| 758 | t650.m8 | |
| 759 | t650.m9 | |
| 760 | t651 DATA | |
| 761 | t651.m0 | |
| 762 | t651.m1 | |
| 763 | t651.m2 | |
| 764 | t651.m3 | |
| 765 | t651.m4 | |
| 766 | t652 DATA | |
| 767 | t652.m0 | |
| 768 | t652.m1 | |
| 769 | t652.m2 | |
| 770 | t652.m3 | |
| 771 | t652.m4 | |
| 772 | t653 DATA | |
| 773 | t653.m0 | |
| 774 | t653.m1 | |
| 775 | t653.m2 | |
| 776 | t653.m3 | |
| 777 | t653.m4 | |
| 778 | t654 DATA | |
| 779 | t654.m0 | |
| 780 | t654.m1 | |
| 781 | t654.m2 | |
| 782 | t654.m3 | |
| 783 | t654.m4 | |
| 784 | t655 DATA | |
| 785 | t655.m0 | |
| 786 | t655.m1 | |
| 787 | t655.m2 | |
| 788 | t655.m3 | |
| 789 | t655.m4 | |
| 790 | t656 DATA | |
| 791 | t656.m0 | |
| 792 | t656.m1 | |
| 793 | t656.m2 | |
| 794 | t656.m3 | |
| 795 | t656.m4 | |
| 796 | t657 DATA | |
| 797 | t657.m0 | |
| 798 | t657.m1 | |
| 799 | t657.m2 | |
| 800 | t657.m3 | |
| 801 | t657.m4 | |
| 802 | t658 DATA | |
| 803 | t658.m0 | |
| 804 | t658.m1 | |
| 805 | t658.m2 | |
| 806 | t658.m3 | |
| 807 | t658.m4 | |
| 808 | t659 DATA | |
| 809 | t659.m0 | |
| 810 | t659.m1 | |
| 811 | t659.m2 | |
| 812 | t659.m3 | |
| 813 | t659.m4 | |
| 814 | t66 DATA | |
| 815 | t660 DATA | |
| 816 | t660.m0 | |
| 817 | t660.m1 | |
| 818 | t660.m2 | |
| 819 | t660.m3 | |
| 820 | t660.m4 | |
| 821 | t661 DATA | |
| 822 | t661.m0 | |
| 823 | t661.m1 | |
| 824 | t661.m2 | |
| 825 | t661.m3 | |
| 826 | t661.m4 | |
| 827 | t662 DATA | |
| 828 | t662.m0 | |
| 829 | t662.m1 | |
| 830 | t662.m2 | |
| 831 | t662.m3 | |
| 832 | t662.m4 | |
| 833 | t663 DATA | |
| 834 | t663.m0 | |
| 835 | t663.m1 | |
| 836 | t663.m2 | |
| 837 | t663.m3 | |
| 838 | t663.m4 | |
| 839 | t664 DATA | |
| 840 | t664.m0 | |
| 841 | t664.m1 | |
| 842 | t664.m2 | |
| 843 | t664.m3 | |
| 844 | t664.m4 | |
| 845 | t665 DATA | |
| 846 | t665.m0 | |
| 847 | t665.m1 | |
| 848 | t665.m2 | |
| 849 | t665.m3 | |
| 850 | t665.m4 | |
| 851 | t666 DATA | |
| 852 | t666.m0 | |
| 853 | t666.m1 | |
| 854 | t666.m2 | |
| 855 | t666.m3 | |
| 856 | t666.m4 | |
| 857 | t667 DATA | |
| 858 | t667.m0 | |
| 859 | t667.m1 | |
| 860 | t667.m2 | |
| 861 | t667.m3 | |
| 862 | t667.m4 | |
| 863 | t668 DATA | |
| 864 | t668.m0 | |
| 865 | t668.m1 | |
| 866 | t668.m2 | |
| 867 | t668.m3 | |
| 868 | t668.m4 | |
| 869 | t669 DATA | |
| 870 | t669.m0 | |
| 871 | t669.m1 | |
| 872 | t669.m2 | |
| 873 | t669.m3 | |
| 874 | t669.m4 | |
| 875 | t67 DATA | |
| 876 | t670 DATA | |
| 877 | t670.m0 | |
| 878 | t670.m1 | |
| 879 | t670.m2 | |
| 880 | t670.m3 | |
| 881 | t670.m4 | |
| 882 | t671 DATA | |
| 883 | t671.m0 | |
| 884 | t671.m1 | |
| 885 | t671.m2 | |
| 886 | t671.m3 | |
| 887 | t671.m4 | |
| 888 | t672 DATA | |
| 889 | t672.m0 | |
| 890 | t672.m1 | |
| 891 | t672.m2 | |
| 892 | t672.m3 | |
| 893 | t672.m4 | |
| 894 | t673 DATA | |
| 895 | t673.m0 | |
| 896 | t673.m1 | |
| 897 | t673.m2 | |
| 898 | t673.m3 | |
| 899 | t673.m4 | |
| 900 | t674 DATA | |
| 901 | t674.m0 | |
| 902 | t674.m1 | |
| 903 | t674.m2 | |
| 904 | t674.m3 | |
| 905 | t674.m4 | |
| 906 | t675 DATA | |
| 907 | t675.m0 | |
| 908 | t675.m1 | |
| 909 | t675.m2 | |
| 910 | t675.m3 | |
| 911 | t675.m4 | |
| 912 | t676 DATA | |
| 913 | t676.m0 | |
| 914 | t676.m1 | |
| 915 | t676.m2 | |
| 916 | t676.m3 | |
| 917 | t676.m4 | |
| 918 | t677 DATA | |
| 919 | t677.m0 | |
| 920 | t677.m1 | |
| 921 | t677.m2 | |
| 922 | t677.m3 | |
| 923 | t677.m4 | |
| 924 | t678 DATA | |
| 925 | t678.m0 | |
| 926 | t678.m1 | |
| 927 | t678.m2 | |
| 928 | t678.m3 | |
| 929 | t678.m4 | |
| 930 | t679 DATA | |
| 931 | t679.m0 | |
| 932 | t679.m1 | |
| 933 | t679.m2 | |
| 934 | t679.m3 | |
| 935 | t679.m4 | |
| 936 | t68 DATA | |
| 937 | t680 DATA | |
| 938 | t680.m0 | |
| 939 | t680.m1 | |
| 940 | t680.m2 | |
| 941 | t680.m3 | |
| 942 | t680.m4 | |
| 943 | t681 DATA | |
| 944 | t681.m0 | |
| 945 | t681.m1 | |
| 946 | t681.m2 | |
| 947 | t681.m3 | |
| 948 | t681.m4 | |
| 949 | t682 DATA | |
| 950 | t682.m0 | |
| 951 | t682.m1 | |
| 952 | t682.m2 | |
| 953 | t682.m3 | |
| 954 | t682.m4 | |
| 955 | t683 DATA | |
| 956 | t683.m0 | |
| 957 | t683.m1 | |
| 958 | t683.m2 | |
| 959 | t683.m3 | |
| 960 | t683.m4 | |
| 961 | t69 DATA | |
| 962 | t70 DATA | |
| 963 | t71 DATA | |
| 964 | t72 DATA | |
| 965 | t73 DATA | |
| 966 | t74 DATA | |
| 967 | t75 DATA | |
| 968 | t76 DATA | |
| 969 | t77 DATA | |
| 970 | t78 DATA | |
| 971 | t79 DATA | |
| 972 | t80 DATA | |
| 973 | t81 DATA | |
| 974 | t82 DATA | |
| 975 | t83 DATA | |
| 976 | t84 DATA | |
| 977 | t85 DATA | |
| 978 | t86 DATA | |
| 979 | t87 DATA | |
| 980 | t88 DATA | |
| 981 | t89 DATA | |
| 982 | t90 DATA | |
| 983 | t91 DATA | |
| 984 | t92 DATA | |
| 985 | t93 DATA | |
| 986 | t94 DATA | |
| 987 | t95 DATA | |
| 988 | t96 DATA | |
| 989 | t97 DATA | |
| 990 | t98 DATA | |
| 991 | t99 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 | ; | |
| 6 | LIBRARY "PrintFilterPipelinePrxy.DLL" | |
| 7 | EXPORTS | |
| 8 | GetPrintProcessorCapabilities | |
| 9 | ClosePrintProcessor | |
| 10 | ControlPrintProcessor | |
| 11 | EnumPrintProcessorDatatypesW | |
| 12 | OpenPrintProcessor | |
| 13 | PrintDocumentOnPrintProcessor |
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 | ; | |
| 6 | LIBRARY "PRINTUI.dll" | |
| 7 | EXPORTS | |
| 8 | ConstructPrinterFriendlyName | |
| 9 | PnPInterface | |
| 10 | PrintUIEntryW | |
| 11 | PrinterPropPageProvider | |
| 12 | ReleaseArgv | |
| 13 | StringToArgv | |
| 14 | ConnectToPrinterDlg | |
| 15 | DocumentPropertiesWrap | |
| 16 | LaunchPlatformHelp | |
| 17 | PrintNotifyTray_Exit | |
| 18 | PrintNotifyTray_Init | |
| 19 | PrintUIDownloadAndInstallLegacyDriver | |
| 20 | RegisterPrintNotify | |
| 21 | ShowErrorMessageHR | |
| 22 | ShowErrorMessageSC | |
| 23 | ShowHelpLinkDialog | |
| 24 | UnregisterPrintNotify | |
| 25 | bFolderEnumPrinters | |
| 26 | bFolderGetPrinter | |
| 27 | bFolderRefresh | |
| 28 | bPrinterSetup | |
| 29 | vDocumentDefaults | |
| 30 | vPrinterPropPages | |
| 31 | vQueueCreate | |
| 32 | vServerPropPages | |
| 33 | ord_32 @32 | |
| 34 | PrintUIEntryDPIAwareW |
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 | ; | |
| 6 | LIBRARY "prnntfy.dll" | |
| 7 | EXPORTS | |
| 8 | AsyncUILoaderEntryW | |
| 9 | PrintNotifyTray_Exit | |
| 10 | PrintNotifyTray_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 | ; | |
| 6 | LIBRARY "procinst.dll" | |
| 7 | EXPORTS | |
| 8 | ProcessorClassInstall |
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 | ; | |
| 6 | LIBRARY "PROFEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CreateAppContainerProfileWorker | |
| 9 | CreateDirectoryJunctionsForSystemWorker | |
| 10 | CreateDirectoryJunctionsForUserProfileWorker | |
| 11 | CreateGroupExWorker | |
| 12 | CreateLinkFileExWorker | |
| 13 | DeleteAppContainerProfileWorker | |
| 14 | DeleteGroupWorker | |
| 15 | DeleteLinkFileWorker | |
| 16 | DeriveAppContainerSidFromAppContainerNameWorker | |
| 17 | DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedNameWorker | |
| 18 | GetAppContainerFolderPathWorker | |
| 19 | GetAppContainerRegistryLocationWorker | |
| 20 | LookupAppContainerDisplayNameWorker | |
| 21 | ProcessGroupPolicyCompletedExWorker | |
| 22 | ProcessGroupPolicyCompletedWorker | |
| 23 | RsopAccessCheckByTypeWorker | |
| 24 | RsopFileAccessCheckWorker | |
| 25 | RsopResetPolicySettingStatusWorker | |
| 26 | RsopSetPolicySettingStatusWorker | |
| 27 | UpdateAppContainerProfileWorker |
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 | ; | |
| 6 | LIBRARY "PROFSVC.dll" | |
| 7 | EXPORTS | |
| 8 | UserProfileServiceMain | |
| 9 | GetExclusionListFromRegistry | |
| 10 | GetUserChoiceForSlowLink | |
| 11 | GetUserPreferenceValue |
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 | ; | |
| 6 | LIBRARY "PROFSVCEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CreateRoamingProviderInstance | |
| 9 | ConnectToRoamingVhdProfile | |
| 10 | InitializeSuspendFolderPolicyAndUploadTaskConfig | |
| 11 | RefreshSuspendFolderPolicyAndUploadTaskConfig | |
| 12 | StartRoamingClassFactories | |
| 13 | StopRoamingClassFactories | |
| 14 | WaitForNetworkForRoamingProfile |
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 | ; | |
| 6 | LIBRARY "PROVIDER.dll" | |
| 7 | EXPORTS | |
| 8 | ProviderServiceMain |
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 | ; | |
| 6 | LIBRARY "ProximityCommonPal.dll" | |
| 7 | EXPORTS | |
| 8 | PAL_AppHasPackage | |
| 9 | PAL_FreeTransientObjectSecurityAttribute | |
| 10 | PAL_GetAppPlatformQualifier | |
| 11 | PAL_GetSupportedBrowseTypes | |
| 12 | PAL_HoldReferenceUntilAppExit | |
| 13 | PAL_QueryTransientObjectSecurityAttribute | |
| 14 | PAL_RegisterAppSuspendResumeCallback | |
| 15 | PAL_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 | ; | |
| 6 | LIBRARY "ProximityRtapiPal.dll" | |
| 7 | EXPORTS | |
| 8 | PAL_App2DeviceFindAllPeers | |
| 9 | PAL_CheckForApp2DeviceAlternateId | |
| 10 | PAL_CheckForBluetoothSupport | |
| 11 | PAL_GetCurrentProcessExplicitAppUserModelID | |
| 12 | PAL_ParseAppUserModelId | |
| 13 | PAL_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 | ; | |
| 6 | LIBRARY "ProximityService.dll" | |
| 7 | EXPORTS | |
| 8 | InitProximityService | |
| 9 | SessionChangedEvent | |
| 10 | GetProximityClientCount | |
| 11 | CleanupProximityService | |
| 12 | ord_14 @14 | |
| 13 | InitProximityServiceEx |
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 | ; | |
| 6 | LIBRARY "ProximityServicePAL.dll" | |
| 7 | EXPORTS | |
| 8 | PAL_AllowNetworkInterface | |
| 9 | PAL_BluetoothEnableDiscovery | |
| 10 | PAL_BluetoothFindDeviceClose | |
| 11 | PAL_BluetoothFindFirstDevice | |
| 12 | PAL_BluetoothFindFirstRadio | |
| 13 | PAL_BluetoothFindRadioClose | |
| 14 | PAL_BluetoothOpenFirewall | |
| 15 | PAL_ConvertAppIdToPackageName | |
| 16 | PAL_CreateForegroundNotifier | |
| 17 | PAL_CreateUnicastIpAddressEntry | |
| 18 | PAL_DeleteUnicastIpAddressEntry | |
| 19 | PAL_FWIndicateTupleInUse | |
| 20 | PAL_FWResetIndicatedTupleInUse | |
| 21 | PAL_GetCallingApplicationInfo | |
| 22 | PAL_GetConsoleSessionInfo | |
| 23 | PAL_HasWFDHardwareSupport | |
| 24 | PAL_IsInteractiveApplicationId | |
| 25 | PAL_IsMachineDomainJoined | |
| 26 | PAL_OpenProcessForQuery | |
| 27 | PAL_RegisterConnectedStandbyNotification | |
| 28 | PAL_RegisterConsoleDisplayStateNotifications | |
| 29 | PAL_ServiceFreeTransientObjectSecurityAttribute | |
| 30 | PAL_ServiceQueryTransientObjectSecurityAttribute | |
| 31 | PAL_UnregisterConnectedStandbyNotification | |
| 32 | PAL_UnregisterConsoleDisplayStateNotifications | |
| 33 | PAL_VerifyCallerIsElevated | |
| 34 | PAL_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 | ; | |
| 6 | LIBRARY "prvdmofcomp.dll" | |
| 7 | EXPORTS | |
| 8 | ??0MIFree@@QAA@PAX@Z | |
| 9 | ??1MIFree@@QAA@XZ | |
| 10 | ??4MIServer@@QAAAAV0@ABV0@@Z | |
| 11 | CompileSchemaToWMI | |
| 12 | CreateRegisterParameter | |
| 13 | GetProviderSchema | |
| 14 | GetProviderSchemaFile |
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 | ; | |
| 6 | LIBRARY "PSHED.dll" | |
| 7 | EXPORTS | |
| 8 | PshedAllocateMemory | |
| 9 | PshedArePluginsPresent | |
| 10 | PshedAttemptErrorRecovery | |
| 11 | PshedBugCheckSystem | |
| 12 | PshedClearErrorRecord | |
| 13 | PshedDisableErrorSource | |
| 14 | PshedEnableErrorSource | |
| 15 | PshedFinalizeErrorRecord | |
| 16 | PshedFreeMemory | |
| 17 | PshedGetAllErrorSources | |
| 18 | PshedGetBootErrorPacket | |
| 19 | PshedGetErrorSourceInfo | |
| 20 | PshedGetInjectionCapabilities | |
| 21 | PshedInitialize | |
| 22 | PshedInjectError | |
| 23 | PshedIsSystemWheaEnabled | |
| 24 | PshedMarkHiberPhase | |
| 25 | PshedReadErrorRecord | |
| 26 | PshedRegisterPlugin | |
| 27 | PshedRetrieveErrorInfo | |
| 28 | PshedSetErrorSourceInfo | |
| 29 | PshedSynchronizeExecution | |
| 30 | PshedWriteErrorRecord |
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 | ; | |
| 6 | LIBRARY "PSModuleDiscoveryProvider.DLL" | |
| 7 | EXPORTS | |
| 8 | GetProviderClassID | |
| 9 | MI_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 | ; | |
| 6 | LIBRARY "puiapi.dll" | |
| 7 | EXPORTS | |
| 8 | PUIAPI_CreateInstance | |
| 9 | PUIAPI_GetErrorString | |
| 10 | PUIAPI_GetPrinter | |
| 11 | PUIAPI_IWaitNotify_CreateInstance | |
| 12 | PUIAPI_IWaitNotify_RegisterTimer | |
| 13 | PUIAPI_IWaitNotify_RegisterWaitObject | |
| 14 | PUIAPI_IWaitNotify_UnregisterCookie | |
| 15 | PUIAPI_ShowBrowseForPrinterDialog | |
| 16 | PUIAPI_ShowDetailsMessageBox | |
| 17 | PUIAPI_ShowDriverPackageRemovalUI | |
| 18 | STRAPI_ConvertCase | |
| 19 | STRAPI_CrackPrintUNCName | |
| 20 | STRAPI_FindAndReplace | |
| 21 | STRAPI_Format | |
| 22 | STRAPI_FormatMsg | |
| 23 | STRAPI_FormatMsgV | |
| 24 | STRAPI_FormatV | |
| 25 | STRAPI_GUID2String | |
| 26 | STRAPI_GetJobStatusString | |
| 27 | STRAPI_GetPrinterStatusString | |
| 28 | STRAPI_LoadString | |
| 29 | STRAPI_MultiCat | |
| 30 | STRAPI_String2GUID | |
| 31 | STRAPI_TrimString | |
| 32 | STRAPI_XMLSafeText | |
| 33 | STRBUF_AppendString | |
| 34 | STRBUF_Create | |
| 35 | STRBUF_CreateBSTR | |
| 36 | STRBUF_DeleteSubstring | |
| 37 | STRBUF_Destroy | |
| 38 | STRBUF_FindAndReplace | |
| 39 | STRBUF_Format | |
| 40 | STRBUF_InsertString | |
| 41 | STRBUF_MultiCat | |
| 42 | STRBUF_ToLower | |
| 43 | STRBUF_ToUpper | |
| 44 | STRBUF_TrimLeft | |
| 45 | STRBUF_TrimRight | |
| 46 | STRBUF_Truncate | |
| 47 | STRBUF_Update | |
| 48 | XMLAPI_GetAttributeDouble | |
| 49 | XMLAPI_GetAttributeLong | |
| 50 | XMLAPI_GetAttributeString | |
| 51 | XMLAPI_GetAttributeULongLong | |
| 52 | XMLAPI_SetAttributeDouble | |
| 53 | XMLAPI_SetAttributeLong | |
| 54 | XMLAPI_SetAttributeString | |
| 55 | XMLAPI_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 | ; | |
| 6 | LIBRARY "pwlauncher.dll" | |
| 7 | EXPORTS | |
| 8 | ShowPortableWorkspaceLauncherConfigurationUX |
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 | ; | |
| 6 | LIBRARY "pwrshplugin.dll" | |
| 7 | EXPORTS | |
| 8 | GetCLRVersionForPSVersion | |
| 9 | PerformWSManPluginReportCompletion | |
| 10 | WSManPluginCommand | |
| 11 | WSManPluginConnect | |
| 12 | WSManPluginReceive | |
| 13 | WSManPluginReleaseCommandContext | |
| 14 | WSManPluginReleaseShellContext | |
| 15 | WSManPluginSend | |
| 16 | WSManPluginShell | |
| 17 | WSManPluginShutdown | |
| 18 | WSManPluginSignal | |
| 19 | WSManPluginStartup |
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 | ; | |
| 6 | LIBRARY "qmgr.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 27 | ServiceMain | |
| 28 | ?s_EmptyString@?$GenericStringHandle@G@@0UStringData@1@A DATA | |
| 29 | BITSServiceMain |
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 | ; | |
| 6 | LIBRARY "QShvHost.dll" | |
| 7 | EXPORTS | |
| 8 | QuarCreateSession | |
| 9 | QuarDestroySession | |
| 10 | QuarFreeMemory | |
| 11 | QuarInitialize | |
| 12 | QuarSessionEvaluateClientMachineHealth | |
| 13 | QuarSessionGetFixupServerList | |
| 14 | QuarSessionGetId | |
| 15 | QuarSessionGetMachineInventory | |
| 16 | QuarSessionGetShvResultList | |
| 17 | QuarSessionGetSoHResponse | |
| 18 | QuarSessionSetNewQuarantineStatus | |
| 19 | QuarUninitialize |
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 | ; | |
| 6 | LIBRARY "RacEngn.DLL" | |
| 7 | EXPORTS | |
| 8 | RacSysprepGeneralize | |
| 9 | RacSysprepSpecialize |
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 | ; | |
| 6 | LIBRARY "RESMON.dll" | |
| 7 | EXPORTS | |
| 8 | ShowPasswordDialog |
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 | ; | |
| 6 | LIBRARY "radardt.dll" | |
| 7 | EXPORTS | |
| 8 | RdrSysprepSpecialize | |
| 9 | WdiDiagnosticModuleMain | |
| 10 | WdiGetDiagnosticModuleInterfaceVersion | |
| 11 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "radarrs.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "RADCUI.dll" | |
| 7 | EXPORTS | |
| 8 | DUISubscribeWizardModal | |
| 9 | DUIRemoveSubscriptionDialogModal |
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 | ; | |
| 6 | LIBRARY "rascfg.dll" | |
| 7 | EXPORTS | |
| 8 | ModemClassCoInstaller |
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 | ; | |
| 6 | LIBRARY "RASCHAPEXT.dll" | |
| 7 | EXPORTS | |
| 8 | RasChapExt_FreeMemory | |
| 9 | RasChapExt_GetConfigForceNotDomainJoined | |
| 10 | RasChapExt_GetConfigIgnoreIASLogon | |
| 11 | RasChapExt_GetConfigKeepCredentialsOnFailure | |
| 12 | RasChapExt_GetUserCredentials | |
| 13 | RasChapExt_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 | ; | |
| 6 | LIBRARY "RASCUSTOM.DLL" | |
| 7 | EXPORTS | |
| 8 | InitializeProtocolEngine | |
| 9 | SendMessageToProtocolEngine | |
| 10 | UninitializeProtocolEngine | |
| 11 | VpnBrokerPluginIsInstalled | |
| 12 | VpnBrokerRegisterForPluginInstallations | |
| 13 | VpnSmCommsPluginsNotifyLogOff | |
| 14 | VpnSmCommsPluginsRoamToBestCostInterface |
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 | ; | |
| 6 | LIBRARY "rasman.dll" | |
| 7 | EXPORTS | |
| 8 | IsRasmanProcess | |
| 9 | RasActivateRoute | |
| 10 | RasActivateRouteEx | |
| 11 | RasAddConnectionPort | |
| 12 | RasAddNotification | |
| 13 | RasAddNotificationEx | |
| 14 | RasAllocInterfaceLuidIndex | |
| 15 | RasAllocateRoute | |
| 16 | RasApplyPostConnectActions | |
| 17 | RasAutoTriggerSaveCachedCreds | |
| 18 | RasBundleClearStatistics | |
| 19 | RasBundleClearStatisticsEx | |
| 20 | RasBundleGetPort | |
| 21 | RasBundleGetStatistics | |
| 22 | RasBundleGetStatisticsEx | |
| 23 | RasClearPortUserData | |
| 24 | RasCompressionGetInfo | |
| 25 | RasCompressionSetInfo | |
| 26 | RasConnectionEnum | |
| 27 | RasConnectionGetStatistics | |
| 28 | RasCreateConnection | |
| 29 | RasDeAllocateRoute | |
| 30 | RasDeleteIkev2PskPolicy | |
| 31 | RasDestroyConnection | |
| 32 | RasDeviceConnect | |
| 33 | RasDeviceEnum | |
| 34 | RasDeviceGetInfo | |
| 35 | RasDeviceSetInfo | |
| 36 | RasDeviceSetInfoSafe | |
| 37 | RasDoIke | |
| 38 | RasEnableIpSec | |
| 39 | RasEnumConnectionPorts | |
| 40 | RasEnumLanNets | |
| 41 | RasFindPrerequisiteEntry | |
| 42 | RasFreeBuffer | |
| 43 | RasFreeInterfaceLuidIndex | |
| 44 | RasGetAutoTriggerData | |
| 45 | RasGetBuffer | |
| 46 | RasGetCalledIdInfo | |
| 47 | RasGetCompartmentInfo | |
| 48 | RasGetConnectInfo | |
| 49 | RasGetConnectionParams | |
| 50 | RasGetConnectionUserData | |
| 51 | RasGetCustomScriptDll | |
| 52 | RasGetDevConfig | |
| 53 | RasGetDevConfigEx | |
| 54 | RasGetDeviceConfigInfo | |
| 55 | RasGetDeviceName | |
| 56 | RasGetDeviceNameW | |
| 57 | RasGetDialMachineEventContext | |
| 58 | RasGetDialParams | |
| 59 | RasGetEapUIData | |
| 60 | RasGetEapUserInfo | |
| 61 | RasGetFramingCapabilities | |
| 62 | RasGetHConnFromEntry | |
| 63 | RasGetHportFromConnection | |
| 64 | RasGetInfo | |
| 65 | RasGetInfoEx | |
| 66 | RasGetKey | |
| 67 | RasGetNdiswanDriverCaps | |
| 68 | RasGetNotificationEntry | |
| 69 | RasGetNumPortOpen | |
| 70 | RasGetPortDialParams | |
| 71 | RasGetPortUserData | |
| 72 | RasGetProtocolInfo | |
| 73 | RasGetTimeSinceLastActivity | |
| 74 | RasGetTriggerAuthData | |
| 75 | RasGetUnicodeDeviceName | |
| 76 | RasGetUserCredentials | |
| 77 | RasInitialize | |
| 78 | RasInitializeNoWait | |
| 79 | RasIsPulseDial | |
| 80 | RasIsTrustedCustomDll | |
| 81 | RasLinkGetStatistics | |
| 82 | RasPlumbIkev2PskPolicy | |
| 83 | RasPortBundle | |
| 84 | RasPortCancelReceive | |
| 85 | RasPortClearStatistics | |
| 86 | RasPortClose | |
| 87 | RasPortConnectComplete | |
| 88 | RasPortDisconnect | |
| 89 | RasPortEnum | |
| 90 | RasPortEnumProtocols | |
| 91 | RasPortFree | |
| 92 | RasPortGetBundle | |
| 93 | RasPortGetBundledPort | |
| 94 | RasPortGetFramingEx | |
| 95 | RasPortGetInfo | |
| 96 | RasPortGetProtocolCompression | |
| 97 | RasPortGetStatistics | |
| 98 | RasPortGetStatisticsEx | |
| 99 | RasPortListen | |
| 100 | RasPortOpen | |
| 101 | RasPortOpenEx | |
| 102 | RasPortReceive | |
| 103 | RasPortReceiveEx | |
| 104 | RasPortReserve | |
| 105 | RasPortRetrieveUserData | |
| 106 | RasPortSend | |
| 107 | RasPortSetFraming | |
| 108 | RasPortSetFramingEx | |
| 109 | RasPortSetInfo | |
| 110 | RasPortSetProtocolCompression | |
| 111 | RasPortStoreUserData | |
| 112 | RasProtocolCallback | |
| 113 | RasProtocolChangePassword | |
| 114 | RasProtocolEnum | |
| 115 | RasProtocolGetInfo | |
| 116 | RasProtocolRetry | |
| 117 | RasProtocolStart | |
| 118 | RasProtocolStarted | |
| 119 | RasProtocolStop | |
| 120 | RasProtocolUpdateConnection | |
| 121 | RasRPCBind | |
| 122 | RasRefConnection | |
| 123 | RasReferenceCustomCount | |
| 124 | RasReferenceRasman | |
| 125 | RasRegisterPnPEvent | |
| 126 | RasRegisterPnPHandler | |
| 127 | RasRegisterRedialCallback | |
| 128 | RasRemoveNotificationEx | |
| 129 | RasRequestNotification | |
| 130 | RasRpcConnect | |
| 131 | RasRpcConnectServer | |
| 132 | RasRpcDeleteEntry | |
| 133 | RasRpcDeviceEnum | |
| 134 | RasRpcDisconnect | |
| 135 | RasRpcDisconnectServer | |
| 136 | RasRpcEnumConnections | |
| 137 | RasRpcGetCountryInfo | |
| 138 | RasRpcGetDevConfig | |
| 139 | RasRpcGetErrorString | |
| 140 | RasRpcGetInstalledProtocols | |
| 141 | RasRpcGetInstalledProtocolsEx | |
| 142 | RasRpcGetSystemDirectory | |
| 143 | RasRpcGetUserPreferences | |
| 144 | RasRpcGetVersion | |
| 145 | RasRpcPortEnum | |
| 146 | RasRpcPortGetInfo | |
| 147 | RasRpcRemoteGetSystemDirectory | |
| 148 | RasRpcRemoteGetUserPreferences | |
| 149 | RasRpcRemoteRasDeleteEntry | |
| 150 | RasRpcRemoteSetUserPreferences | |
| 151 | RasRpcSetUserPreferences | |
| 152 | RasRpcUnloadDll | |
| 153 | RasSecurityDialogGetInfo | |
| 154 | RasSecurityDialogReceive | |
| 155 | RasSecurityDialogSend | |
| 156 | RasSendCreds | |
| 157 | RasSendNotification | |
| 158 | RasSendProtocolResultToRasman | |
| 159 | RasServerPortClose | |
| 160 | RasSetAddressDisable | |
| 161 | RasSetAdvConnectionParams | |
| 162 | RasSetCachedCredentials | |
| 163 | RasSetCalledIdInfo | |
| 164 | RasSetCommSettings | |
| 165 | RasSetConnectionParams | |
| 166 | RasSetConnectionUserData | |
| 167 | RasSetDevConfig | |
| 168 | RasSetDeviceConfigInfo | |
| 169 | RasSetDialMachineEventHandle | |
| 170 | RasSetDialParams | |
| 171 | RasSetEapInfo | |
| 172 | RasSetEapUIData | |
| 173 | RasSetEapUserInfo | |
| 174 | RasSetEncPassword | |
| 175 | RasSetIPAddresses | |
| 176 | RasSetKey | |
| 177 | RasSetNetworkInfo | |
| 178 | RasSetPortUserData | |
| 179 | RasSetRouterUsage | |
| 180 | RasSetTriggerAuthData | |
| 181 | RasSetTunnelEndPoints | |
| 182 | RasSetVpnClientConnectionType | |
| 183 | RasSetupSstpServerConfig | |
| 184 | RasSignalActionRequired | |
| 185 | RasSignalMonitorThreadExit | |
| 186 | RasSignalNewConnection | |
| 187 | RasStartProtocolRenegotiation | |
| 188 | RasStartRasAutoIfRequired | |
| 189 | RasUpdateAutoTriggerRegKeys | |
| 190 | RasUpdateDefaultRouteSettings | |
| 191 | RasUpdateQoSPolicies | |
| 192 | RasmanUninitialize |
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 | ; | |
| 6 | LIBRARY "rasmans.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | ServiceRequestInProcess | |
| 10 | SetEntryDialParams | |
| 11 | VpnProfileMatchingNrpt | |
| 12 | VpnProfileNrptHasExemptions |
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 | ; | |
| 6 | LIBRARY "rasppp.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeProtocolEngine | |
| 9 | InitializeServerProtocolEngine | |
| 10 | PppStop | |
| 11 | RasCpEnumProtocolIds | |
| 12 | RasCpGetInfo | |
| 13 | SendMessageToProtocolEngine | |
| 14 | UninitializeProtocolEngine | |
| 15 | UninitializeServerProtocolEngine |
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 | ; | |
| 6 | LIBRARY "rastls.dll" | |
| 7 | EXPORTS | |
| 8 | RasEapCreateConnectionProperties2 | |
| 9 | RasEapCreateConnectionPropertiesXml | |
| 10 | RasEapCreateMethodConfiguration | |
| 11 | RasEapCreateUserProperties2 | |
| 12 | RasEapCreateConnectionProperties | |
| 13 | RasEapCreateUserProperties | |
| 14 | RasEapFreeMemory | |
| 15 | RasEapGetConfigBlobAndUserBlob | |
| 16 | RasEapGetCredentials | |
| 17 | RasEapGetIdentity | |
| 18 | RasEapGetIdentityPageGuid | |
| 19 | RasEapGetInfo | |
| 20 | RasEapGetMethodProperties | |
| 21 | RasEapGetNextPageGuid | |
| 22 | RasEapInvokeConfigUI | |
| 23 | RasEapInvokeInteractiveUI | |
| 24 | RasEapQueryCredentialInputFields | |
| 25 | RasEapQueryInteractiveUIInputFields | |
| 26 | RasEapQueryUIBlobFromInteractiveUIInputFields | |
| 27 | RasEapQueryUserBlobFromCredentialInputFields | |
| 28 | RasEapUpdateServerConfig |
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 | ; | |
| 6 | LIBRARY "RASTLSEXT.dll" | |
| 7 | EXPORTS | |
| 8 | RasTlsExt_FreeMemory | |
| 9 | RasTlsExt_GetConfigCacheOnlyCertValidation | |
| 10 | RasTlsExt_GetConfigForceNotDomainJoined | |
| 11 | RasTlsExt_GetPinUserBlob | |
| 12 | RasTlsExt_GetServerCertDetails | |
| 13 | RasTlsExt_PackUserBlob | |
| 14 | RasTlsExt_SelectCertificate | |
| 15 | RasTlsExt_ShowHelp | |
| 16 | RasTlsExt_UnpackUserBlob | |
| 17 | RasTlsExt_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 | ; | |
| 6 | LIBRARY "rdbui.dll" | |
| 7 | EXPORTS | |
| 8 | RDBMgmtLaunchPropertiesW |
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 | ; | |
| 6 | LIBRARY "RDPCORE.dll" | |
| 7 | EXPORTS | |
| 8 | RDPAPI_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 | ; | |
| 6 | LIBRARY "RdpEndpoint.dll" | |
| 7 | EXPORTS | |
| 8 | GetTSAudioEndpointEnumeratorForSession |
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 | ; | |
| 6 | LIBRARY "RDSAppXHelper.dll" | |
| 7 | EXPORTS | |
| 8 | DestroyAppXHelper | |
| 9 | GetInstanceOfAppXPackageManager | |
| 10 | InitializeAppXHelper |
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 | ; | |
| 6 | LIBRARY "rdsdwmdr.dll" | |
| 7 | EXPORTS | |
| 8 | DwmIndirectCreate | |
| 9 | DwmIndirectOutput | |
| 10 | DwmIndirectSetDebugFlag |
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 | ; | |
| 6 | LIBRARY "rdvidcrl.dll" | |
| 7 | EXPORTS | |
| 8 | Initialize | |
| 9 | Uninitialize | |
| 10 | PassportFreeMemory | |
| 11 | CreateIdentityHandle | |
| 12 | SetCredential | |
| 13 | GetIdentityProperty | |
| 14 | SetIdentityProperty | |
| 15 | CloseIdentityHandle | |
| 16 | AuthIdentityToService | |
| 17 | GetAuthState | |
| 18 | LogonIdentity | |
| 19 | InitializeEx | |
| 20 | LogonIdentityEx | |
| 21 | AuthIdentityToServiceEx | |
| 22 | GetAuthStateEx | |
| 23 | CancelPendingRequest | |
| 24 | GetIdentityPropertyByName | |
| 25 | SetIdcrlOptions | |
| 26 | GetExtendedError | |
| 27 | GetAuthenticationStatus | |
| 28 | GetRealmInfo | |
| 29 | CreateIdentityHandleEx | |
| 30 | GetToken | |
| 31 | CreateIdentityHandle2 | |
| 32 | GetRealmInfo2 |
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 | ; | |
| 6 | LIBRARY "rdvvmtransport.dll" | |
| 7 | EXPORTS | |
| 8 | RdvTransport_CreateInstance | |
| 9 | RdvTransport_GetInstance | |
| 10 | RdvTransport_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 | ; | |
| 6 | LIBRARY "ReAgent.dll" | |
| 7 | EXPORTS | |
| 8 | WinRE_Specialize | |
| 9 | WinReClearOemImagePath | |
| 10 | WinReRestoreConfigAfterPBR | |
| 11 | WinReServiceBootUxFiles | |
| 12 | WinReServicePbrFiles | |
| 13 | winreCollectAuxiliaryData | |
| 14 | WinRECheckGuid | |
| 15 | WinREUseNewPBRImage | |
| 16 | WinRE_Generalize | |
| 17 | WinReAddLogFile | |
| 18 | WinReClearBootApp | |
| 19 | WinReClearError | |
| 20 | WinReCompleteRecovery | |
| 21 | WinReConfigureTask | |
| 22 | WinReCopyLogFilesToRamdisk | |
| 23 | WinReCopySetupFiles | |
| 24 | WinReCreateLogInstance | |
| 25 | WinReCreateLogInstanceEx | |
| 26 | WinReDeleteLogFiles | |
| 27 | WinReGetConfig | |
| 28 | WinReGetCustomization | |
| 29 | WinReGetError | |
| 30 | WinReGetGroupPolicies | |
| 31 | WinReGetLogDirPath | |
| 32 | WinReGetLogFile | |
| 33 | WinReGetWIMInfo | |
| 34 | WinReInstall | |
| 35 | WinReInstallOnTargetOS | |
| 36 | WinReIsInstallMedia | |
| 37 | WinReIsWimBootEnabled | |
| 38 | WinReIsWinPE | |
| 39 | WinReOobeInstall | |
| 40 | WinReOpenLogInstance | |
| 41 | WinRePostBCDRepair | |
| 42 | WinRePostRecovery | |
| 43 | WinReRepair | |
| 44 | WinReRestoreLogFiles | |
| 45 | WinReSetBootApp | |
| 46 | WinReSetConfig | |
| 47 | WinReSetCustomization | |
| 48 | WinReSetError | |
| 49 | WinReSetRecoveryAction | |
| 50 | WinReSetRecoveryActionEx | |
| 51 | WinReSetTriggerFile | |
| 52 | WinReSetupBackupWinRE | |
| 53 | WinReSetupCheckWinRE | |
| 54 | WinReSetupInstall | |
| 55 | WinReSetupMigrateDrivers | |
| 56 | WinReSetupRestoreWinRE | |
| 57 | WinReSetupRestoreWinREEx | |
| 58 | WinReSetupSetImage | |
| 59 | WinReUnInstall | |
| 60 | WinReUpdateLogInstance | |
| 61 | WinReValidateRecoveryWim | |
| 62 | winreFindInstallMedia | |
| 63 | winreGetBinaryArch |
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 | ; | |
| 6 | LIBRARY "ReInfo.dll" | |
| 7 | EXPORTS | |
| 8 | WinReGetConfig |
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 | ; | |
| 6 | LIBRARY "ResetEng.dll" | |
| 7 | EXPORTS | |
| 8 | RjvApplyData | |
| 9 | RjvApplyDataEntryPoint | |
| 10 | RjvBasicReset | |
| 11 | RjvBasicResetChecks | |
| 12 | RjvCheckBattery | |
| 13 | RjvCheckBitLocker | |
| 14 | RjvCheckDiskSpace | |
| 15 | RjvCheckOsHealth | |
| 16 | RjvCheckRecoveryImage | |
| 17 | RjvCheckWinRE | |
| 18 | RjvCleanup | |
| 19 | RjvCommitReset | |
| 20 | RjvDelayedCleanup | |
| 21 | RjvDelayedCleanupEntryPoint | |
| 22 | RjvFactoryReset | |
| 23 | RjvFactoryResetChecks | |
| 24 | RjvFinalize | |
| 25 | RjvGenerateBMRConfigData | |
| 26 | RjvGetVolumeInfo | |
| 27 | RjvInitializeEngine | |
| 28 | RjvLoadState | |
| 29 | RjvLogFailureEntryPoint | |
| 30 | RjvLogSuccessEntryPoint | |
| 31 | RjvOfflineCleanup | |
| 32 | RjvPBCDClearRollBackEntry | |
| 33 | RjvPBCDSetRollBackEntry | |
| 34 | RjvPDeleteFilesFromVolume | |
| 35 | RjvPEraseVolume | |
| 36 | RjvPostApplyDataEntryPoint | |
| 37 | RjvPreApplyDataEntryPoint | |
| 38 | RjvPrepareForReset | |
| 39 | RjvReInitializeEngine | |
| 40 | RjvRollBack | |
| 41 | RjvSaveState | |
| 42 | RjvSendFailureReport | |
| 43 | RjvStageBasicReset | |
| 44 | RjvSysResetErrBasicEntryPoint | |
| 45 | RjvSysResetErrFactoryEntryPoint | |
| 46 | RjvTestFunction | |
| 47 | RjvUndoPrepareForReset | |
| 48 | RjvUninitializeEngine | |
| 49 | RjvVerifySystemDiskInfo |
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 | ; | |
| 6 | LIBRARY "rgbrast.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 37 | D3D9GetSWInfo |
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 | ; | |
| 6 | LIBRARY "RoMetadata.dll" | |
| 7 | EXPORTS | |
| 8 | MetaDataGetDispenser |
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 | ; | |
| 6 | LIBRARY "rpchttp.dll" | |
| 7 | EXPORTS | |
| 8 | CompareHttpTransportCredentials | |
| 9 | ConvertToUnicodeHttpTransportCredentials | |
| 10 | DuplicateHttpTransportCredentials | |
| 11 | FreeHttpTransportCredentials | |
| 12 | HTTP2GetRpcConnectionTransport | |
| 13 | HTTP2ProcessComplexTReceive | |
| 14 | HTTP2ProcessComplexTSend | |
| 15 | HTTP2ProcessRuntimePostedEvent | |
| 16 | HTTP2TestHook | |
| 17 | HttpParseNetworkOptions | |
| 18 | HttpSendIdentifyResponse | |
| 19 | I_RpcGetRpcProxy | |
| 20 | I_RpcTransFreeHttpCredentials | |
| 21 | I_RpcTransGetHttpCredentials | |
| 22 | WS_HTTP2_CONNECTION__Initialize | |
| 23 | WS_HTTP2_INITIAL_CONNECTION__new | |
| 24 | I_RpcProxyNewConnection | |
| 25 | I_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 | ; | |
| 6 | LIBRARY "RpcRtRemote.dll" | |
| 7 | EXPORTS | |
| 8 | DllGetContractDescription | |
| 9 | I_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 | ; | |
| 6 | LIBRARY "RSHX32.dll" | |
| 7 | EXPORTS | |
| 8 | EditFSSecurity |
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 | ; | |
| 6 | LIBRARY "RTWorkQ.DLL" | |
| 7 | EXPORTS | |
| 8 | RtwqAddPeriodicCallback | |
| 9 | RtwqAllocateSerialWorkQueue | |
| 10 | RtwqAllocateWorkQueue | |
| 11 | RtwqBeginRegisterWorkQueueWithMMCSS | |
| 12 | RtwqBeginUnregisterWorkQueueWithMMCSS | |
| 13 | RtwqCancelWorkItem | |
| 14 | RtwqCreateAsyncResult | |
| 15 | RtwqEndRegisterWorkQueueWithMMCSS | |
| 16 | RtwqEndUnregisterWorkQueueWithMMCSS | |
| 17 | RtwqGetWorkQueueMMCSSClass | |
| 18 | RtwqGetWorkQueueMMCSSPriority | |
| 19 | RtwqGetWorkQueueMMCSSTaskId | |
| 20 | RtwqInvokeCallback | |
| 21 | RtwqJoinWorkQueue | |
| 22 | RtwqLockPlatform | |
| 23 | RtwqLockSharedWorkQueue | |
| 24 | RtwqLockWorkQueue | |
| 25 | RtwqPutWaitingWorkItem | |
| 26 | RtwqPutWorkItem | |
| 27 | RtwqRegisterPlatformEvents | |
| 28 | RtwqRegisterPlatformWithMMCSS | |
| 29 | RtwqRemovePeriodicCallback | |
| 30 | RtwqScheduleWorkItem | |
| 31 | RtwqSetLongRunning | |
| 32 | RtwqShutdown | |
| 33 | RtwqStartup | |
| 34 | RtwqUnjoinWorkQueue | |
| 35 | RtwqUnlockPlatform | |
| 36 | RtwqUnlockWorkQueue | |
| 37 | RtwqUnregisterPlatformEvents | |
| 38 | RtwqUnregisterPlatformFromMMCSS |
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 | ; | |
| 6 | LIBRARY "SAMLIB.dll" | |
| 7 | EXPORTS | |
| 8 | OnMachineUILanguageInit | |
| 9 | SamAddMemberToAlias | |
| 10 | SamAddMemberToGroup | |
| 11 | SamAddMultipleMembersToAlias | |
| 12 | SamChangePasswordUser | |
| 13 | SamChangePasswordUser2 | |
| 14 | SamCloseHandle | |
| 15 | SamConnect | |
| 16 | SamConnectWithCreds | |
| 17 | SamCreateAliasInDomain | |
| 18 | SamCreateGroupInDomain | |
| 19 | SamCreateUser2InDomain | |
| 20 | SamCreateUserInDomain | |
| 21 | SamDeleteAlias | |
| 22 | SamDeleteGroup | |
| 23 | SamDeleteUser | |
| 24 | SamEnumerateAliasesInDomain | |
| 25 | SamEnumerateDomainsInSamServer | |
| 26 | SamEnumerateGroupsInDomain | |
| 27 | SamEnumerateUsersInDomain | |
| 28 | SamEnumerateUsersInDomain2 | |
| 29 | SamFreeMemory | |
| 30 | SamGetAliasMembership | |
| 31 | SamGetCompatibilityMode | |
| 32 | SamGetDisplayEnumerationIndex | |
| 33 | SamGetGroupsForUser | |
| 34 | SamGetMembersInAlias | |
| 35 | SamGetMembersInGroup | |
| 36 | SamLookupDomainInSamServer | |
| 37 | SamLookupIdsInDomain | |
| 38 | SamLookupNamesInDomain | |
| 39 | SamLookupNamesInDomain2 | |
| 40 | SamOpenAlias | |
| 41 | SamOpenDomain | |
| 42 | SamOpenGroup | |
| 43 | SamOpenUser | |
| 44 | SamPerformGenericOperation | |
| 45 | SamQueryDisplayInformation | |
| 46 | SamQueryInformationAlias | |
| 47 | SamQueryInformationDomain | |
| 48 | SamQueryInformationGroup | |
| 49 | SamQueryInformationUser | |
| 50 | SamQueryLocalizableAccountsInDomain | |
| 51 | SamQuerySecurityObject | |
| 52 | SamRegisterObjectChangeNotification | |
| 53 | SamRemoveMemberFromAlias | |
| 54 | SamRemoveMemberFromForeignDomain | |
| 55 | SamRemoveMemberFromGroup | |
| 56 | SamRemoveMultipleMembersFromAlias | |
| 57 | SamRidToSid | |
| 58 | SamSetInformationAlias | |
| 59 | SamSetInformationDomain | |
| 60 | SamSetInformationGroup | |
| 61 | SamSetInformationUser | |
| 62 | SamSetMemberAttributesOfGroup | |
| 63 | SamSetSecurityObject | |
| 64 | SamShutdownSamServer | |
| 65 | SamTestPrivateFunctionsDomain | |
| 66 | SamTestPrivateFunctionsUser | |
| 67 | SamUnregisterObjectChangeNotification | |
| 68 | SamValidatePassword | |
| 69 | SamiChangeKeys | |
| 70 | SamiChangePasswordUser | |
| 71 | SamiChangePasswordUser2 | |
| 72 | SamiEncryptPasswords | |
| 73 | SamiLmChangePasswordUser | |
| 74 | SamiSetBootKeyInformation | |
| 75 | SamiSetDSRMPassword | |
| 76 | SamiSetDSRMPasswordOWF | |
| 77 | SamiSyncDSRMPasswordFromAccount |
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 | ; | |
| 6 | LIBRARY "SAMSRV.dll" | |
| 7 | EXPORTS | |
| 8 | RtlDeleteElementGenericTable2 | |
| 9 | RtlInitializeGenericTable2 | |
| 10 | RtlInsertElementGenericTable2 | |
| 11 | RtlLookupElementGenericTable2 | |
| 12 | SAM_MIDL_user_allocate | |
| 13 | SAM_MIDL_user_free | |
| 14 | SamDsExtAlloc | |
| 15 | SamDsExtFree | |
| 16 | SamIAccountRestrictions | |
| 17 | SamIAddDSNameToAlias | |
| 18 | SamIChangePasswordForeignUser | |
| 19 | SamIClaimIsValid | |
| 20 | SamIConnect | |
| 21 | SamIConvertSecurityAttributesToClaimsBlob | |
| 22 | SamICopyCurrentDomainAccountSettings | |
| 23 | SamICreateKrbTgt | |
| 24 | SamIDecodeClaimsBlob | |
| 25 | SamIDecodeClaimsBlobIntoClaimsSet | |
| 26 | SamIDecodeClaimsBlobToAuthz | |
| 27 | SamIDemote | |
| 28 | SamIDemoteUndo | |
| 29 | SamIDoFSMORoleChange | |
| 30 | SamIFreeAuthzSecurityAttributesInfo | |
| 31 | SamIFreeClaimsBlob | |
| 32 | SamIFreeDecodedClaimsSet | |
| 33 | SamIFreeLookupNamesInfo | |
| 34 | SamIFreeLookupSidsInfo | |
| 35 | SamIFreeOidList | |
| 36 | SamIFreeRealmList | |
| 37 | SamIFreeSecurityAttributesInfo | |
| 38 | SamIFreeSidAndAttributesList | |
| 39 | SamIFreeSidArray | |
| 40 | SamIFreeVoid | |
| 41 | SamIFree_SAMPR_DISPLAY_INFO_BUFFER | |
| 42 | SamIFree_SAMPR_DOMAIN_INFO_BUFFER | |
| 43 | SamIFree_SAMPR_ENUMERATION_BUFFER | |
| 44 | SamIFree_SAMPR_GET_GROUPS_BUFFER | |
| 45 | SamIFree_SAMPR_RETURNED_USTRING_ARRAY | |
| 46 | SamIFree_SAMPR_ULONG_ARRAY | |
| 47 | SamIFree_SAMPR_USER_INFO_BUFFER | |
| 48 | SamIFree_UserInternal6Information | |
| 49 | SamIGetAliasMembership | |
| 50 | SamIGetConfigurationOidList | |
| 51 | SamIGetDefaultAdministratorName | |
| 52 | SamIGetResourceGroupMembershipsTransitive | |
| 53 | SamIGetUserLogonInformation | |
| 54 | SamIGetUserLogonInformation2 | |
| 55 | SamIGetUserLogonInformation3 | |
| 56 | SamIGetUserLogonInformationEx | |
| 57 | SamIHandleObjectUpdate | |
| 58 | SamIImpersonateNullSession | |
| 59 | SamIInitialize | |
| 60 | SamIIsDownlevelDcUpgrade | |
| 61 | SamIIsExtendedSidMode | |
| 62 | SamIIsRebootAfterPromotion | |
| 63 | SamIIsSetupInProgress | |
| 64 | SamILoadDownlevelDatabase | |
| 65 | SamILookupNamesBySid | |
| 66 | SamILookupNamesInDomain | |
| 67 | SamILookupSidsByName | |
| 68 | SamILoopbackConnect | |
| 69 | SamIMixedDomain | |
| 70 | SamIMixedDomain2 | |
| 71 | SamINT4UpgradeInProgress | |
| 72 | SamINetLogonPing | |
| 73 | SamINotifyRoleChange | |
| 74 | SamIOpenUserByAlternateId | |
| 75 | SamIPromote | |
| 76 | SamIPromoteUndo | |
| 77 | SamIPurgeSecrets | |
| 78 | SamIQueryAccountSecretsCachability | |
| 79 | SamIQueryCapabilities | |
| 80 | SamIQueryRealmList | |
| 81 | SamIQueryServerRole | |
| 82 | SamIQueryServerRole2 | |
| 83 | SamIRemoveDSNameFromAlias | |
| 84 | SamIReplaceDownlevelDatabase | |
| 85 | SamIReplicateAccountData | |
| 86 | SamIResetBadPwdCountOnPdc | |
| 87 | SamIRetrieveMultiplePrimaryCredentials | |
| 88 | SamIRetrievePrimaryCredentials | |
| 89 | SamIRevertNullSession | |
| 90 | SamIScorePassword | |
| 91 | SamISetAuditingInformation | |
| 92 | SamISetMachinePassword | |
| 93 | SamISetPasswordForeignUser2 | |
| 94 | SamISetPasswordForeignUser3 | |
| 95 | SamISetPasswordInfoOnDc | |
| 96 | SamIStorePrimaryCredentials | |
| 97 | SamITransformClaims | |
| 98 | SamIUPNFromUserHandle | |
| 99 | SamIUnLoadDownlevelDatabase | |
| 100 | SamIUninitialize | |
| 101 | SamIUpdateLogonStatistics | |
| 102 | SamIValidateAccountName | |
| 103 | SamIValidateNewAccountName | |
| 104 | SampAccountControlToFlags | |
| 105 | SampAcquireReadLock | |
| 106 | SampAcquireSamLockExclusive | |
| 107 | SampAcquireWriteLock | |
| 108 | SampAddAccountToGroupMembers | |
| 109 | SampAddAccountsAndApplyMemberships | |
| 110 | SampAddDeltaTime | |
| 111 | SampAddNonLocalDomainRelativeMemberships | |
| 112 | SampAddSameDomainMemberToGlobalOrUniversalGroup | |
| 113 | SampAddUserToGroup | |
| 114 | SampAlInvalidateAliasInformation | |
| 115 | SampAllocateNextCurrentRidFromIndex | |
| 116 | SampApplyDomainUpdatesForAllDomains | |
| 117 | SampAssignPrimaryGroup | |
| 118 | SampAuditAccountEnableDisableChange | |
| 119 | SampAuditAccountNameChange | |
| 120 | SampAuditAnyEvent | |
| 121 | SampAuditGroupTypeChange | |
| 122 | SampAuditSidHistory | |
| 123 | SampBuildDsNameFromSid | |
| 124 | SampBuildSamProtection | |
| 125 | SampCalculateLmAndNtOwfPasswords | |
| 126 | SampChangeAliasAccountName | |
| 127 | SampChangeGroupAccountName | |
| 128 | SampChangeUserAccountName | |
| 129 | SampCheckForAccountLockout | |
| 130 | SampCheckGroupTypeBits | |
| 131 | SampCheckSidType | |
| 132 | SampCommitBufferedWrites | |
| 133 | SampCompareDisplayStrings | |
| 134 | SampComputePasswordExpired | |
| 135 | SampConnect | |
| 136 | SampConvertUiListToApiList | |
| 137 | SampCreateAccountContext2 | |
| 138 | SampCreateAliasInDomain | |
| 139 | SampCreateContextEx | |
| 140 | SampCreateDefaultUPN | |
| 141 | SampCreateFullSid | |
| 142 | SampCreateGroupInDomain | |
| 143 | SampCreateUserInDomain | |
| 144 | SampCurrentThreadOwnsLock | |
| 145 | SampDeReferenceContext | |
| 146 | SampDecrementActiveThreads | |
| 147 | SampDecryptCredentialData | |
| 148 | SampDeleteContext | |
| 149 | SampDeleteDsDirsToDeleteKey | |
| 150 | SampDeleteKeyForPostBootPromote | |
| 151 | SampDeltaChangeNotify | |
| 152 | SampDsChangePasswordUser | |
| 153 | SampDsConvertReadAttrBlock | |
| 154 | SampDsGetPrimaryDomainStart | |
| 155 | SampDsInitializeSingleDomain | |
| 156 | SampDsIsRunning | |
| 157 | SampDsMakeAttrBlock | |
| 158 | SampDsSetBuiltinDomainPolicy | |
| 159 | SampDsSetDomainPolicy | |
| 160 | SampDsSetPasswordUser | |
| 161 | SampDsUpdateContextAttributes | |
| 162 | SampDuplicateGroupInfo | |
| 163 | SampDuplicateMachineInfo | |
| 164 | SampDuplicateOemGroupInfo | |
| 165 | SampDuplicateOemUserInfo | |
| 166 | SampDuplicateUnicodeString | |
| 167 | SampDuplicateUserInfo | |
| 168 | SampEncryptCredentialData | |
| 169 | SampExamineSid | |
| 170 | SampExtendDefinedDomains | |
| 171 | SampFlagsToAccountControl | |
| 172 | SampFreeGroupInfo | |
| 173 | SampFreeMachineInfo | |
| 174 | SampFreeOemGroupInfo | |
| 175 | SampFreeOemUserInfo | |
| 176 | SampFreeUnicodeString | |
| 177 | SampFreeUserInfo | |
| 178 | SampGenerateRandomPassword | |
| 179 | SampGetAccessAttribute | |
| 180 | SampGetAccountDomainInfo | |
| 181 | SampGetBehaviorVersion | |
| 182 | SampGetCurrentOwnerAndPrimaryGroup | |
| 183 | SampGetDisableOutboundRSO | |
| 184 | SampGetDisableRSOOnPDCForward | |
| 185 | SampGetDisableResetBadPwdCountForward | |
| 186 | SampGetDisableSingleObjectRepl | |
| 187 | SampGetDnsDomainNameFromIndex | |
| 188 | SampGetDomainContextFromIndex | |
| 189 | SampGetDomainObjectFromAccountContext | |
| 190 | SampGetDomainObjectFromIndex | |
| 191 | SampGetDomainServerRoleFromIndex | |
| 192 | SampGetDomainSidFromAccountContext | |
| 193 | SampGetDomainSidFromIndex | |
| 194 | SampGetDomainSidListForSam | |
| 195 | SampGetDomainUpgradeTasks | |
| 196 | SampGetDownLevelDomainControllersPresent | |
| 197 | SampGetExtendedAttribute | |
| 198 | SampGetExternalNameFromIndex | |
| 199 | SampGetFixedAttributes | |
| 200 | SampGetHasNeverTime | |
| 201 | SampGetIgnoreGCFailures | |
| 202 | SampGetLogLevel | |
| 203 | SampGetNT4UpgradeInProgress | |
| 204 | SampGetNewAccountSecurityNt4 | |
| 205 | SampGetNextUnmodifiedRidFromIndex | |
| 206 | SampGetNoGcLogonEnforceKerberosIpCheck | |
| 207 | SampGetNoGcLogonEnforceNTLMCheck | |
| 208 | SampGetObjectSD | |
| 209 | SampGetObjectTypeNameFromIndex | |
| 210 | SampGetPasswordMustChangeWithUF_UAC | |
| 211 | SampGetReverseMembershipTransitive | |
| 212 | SampGetSamSubsystemName | |
| 213 | SampGetSerialNumberDomain2 | |
| 214 | SampGetServerObjectName | |
| 215 | SampGetSidArrayAttribute | |
| 216 | SampGetSidAttribute | |
| 217 | SampGetSuccessAccountAuditingEnabled | |
| 218 | SampGetUlongArrayAttribute | |
| 219 | SampGetUnicodeStringAttribute | |
| 220 | SampGetUserAccountControlComputed | |
| 221 | SampGetUserAccountSettings | |
| 222 | SampGetWillNeverTime | |
| 223 | SampImpersonateClient | |
| 224 | SampIncreaseBadPwdCountLoopback | |
| 225 | SampIncrementActiveThreads | |
| 226 | SampIncrementNetlogonChangeLogSerialNumber | |
| 227 | SampInvalidateDomainCache | |
| 228 | SampIsAccountBuiltIn | |
| 229 | SampIsAuditingEnabled | |
| 230 | SampIsBuiltinDomain | |
| 231 | SampIsDomainHosted | |
| 232 | SampIsServiceRunning | |
| 233 | SampIsSetupInProgress | |
| 234 | SampLogPrint | |
| 235 | SampLookupContext | |
| 236 | SampMarkPerAttributeInvalidFromWhichFields | |
| 237 | SampNeedUserAccountSettingsDuringQuery | |
| 238 | SampNetLogonNotificationRequired | |
| 239 | SampNotifyAuditChange | |
| 240 | SampNotifyReplicatedInChange | |
| 241 | SampPasswordChangeNotify | |
| 242 | SampPasswordChangeNotifyWorker | |
| 243 | SampPositionOfHighestBit | |
| 244 | SampQueryCapabilities | |
| 245 | SampQueryInformationUserInternal | |
| 246 | SampReadExtendedAttributes | |
| 247 | SampRecordSystemSchemaVerisonInRegistry | |
| 248 | SampReferenceContext | |
| 249 | SampRegObjToDsObj | |
| 250 | SampReleaseReadLock | |
| 251 | SampReleaseSamLockExclusive | |
| 252 | SampReleaseWriteLock | |
| 253 | SampRemoveAccountFromGroupMembers | |
| 254 | SampRemoveSameDomainMemberFromGlobalOrUniversalGroup | |
| 255 | SampRemoveUserFromGroup | |
| 256 | SampRenameKrbtgtAccount | |
| 257 | SampReplaceUserLogonHours | |
| 258 | SampReplaceUserV1aFixed | |
| 259 | SampRetrieveGroupV1Fixed | |
| 260 | SampRetrieveMultipleCredentials | |
| 261 | SampRetrieveUserPasswords | |
| 262 | SampRetrieveUserV1aFixed | |
| 263 | SampRevertToSelf | |
| 264 | SampRtlWellKnownPrivilegeCheck | |
| 265 | SampSetAccessAttribute | |
| 266 | SampSetAdminPassword | |
| 267 | SampSetAttributeAccess | |
| 268 | SampSetComputerObjectDsName | |
| 269 | SampSetDSRMPasswordWorker | |
| 270 | SampSetExtendedAttributeAccess | |
| 271 | SampSetFixedAttributes | |
| 272 | SampSetGlobalDsSids | |
| 273 | SampSetPassword | |
| 274 | SampSetPasswordInfoOnPdcByHandle | |
| 275 | SampSetPasswordInfoOnPdcByIndex | |
| 276 | SampSetSerialNumberDomain2 | |
| 277 | SampSetTransactionDomain | |
| 278 | SampSetTransactionWithinDomain | |
| 279 | SampSetUnicodeStringAttribute | |
| 280 | SampSetUserAccountControl | |
| 281 | SampSplitSid | |
| 282 | SampStoreObjectAttributes | |
| 283 | SampStringFromGuid | |
| 284 | SampTraceEvent | |
| 285 | SampUpdateAccountDisabledFlag | |
| 286 | SampUpdateComputedUserAccountControlBits | |
| 287 | SampUpdateMixedModeAndFindDomain | |
| 288 | SampUpdatePerformanceCounters | |
| 289 | SampUpgradeUserParmsActual | |
| 290 | SampUsingDsData | |
| 291 | SampValidateDomainCacheCallback | |
| 292 | SampValidateDomainControllerCreation | |
| 293 | SampValidatePwdSettingAttempt | |
| 294 | SampValidateRegAttributes | |
| 295 | SampWriteEventLog | |
| 296 | SampWriteGroupType | |
| 297 | SamrAddMemberToAlias | |
| 298 | SamrAddMemberToGroup | |
| 299 | SamrCloseHandle | |
| 300 | SamrCreateUser2InDomain | |
| 301 | SamrCreateUserInDomain | |
| 302 | SamrDeleteAlias | |
| 303 | SamrDeleteGroup | |
| 304 | SamrDeleteUser | |
| 305 | SamrEnumerateUsersInDomain | |
| 306 | SamrEnumerateUsersInDomain2 | |
| 307 | SamrGetAliasMembership | |
| 308 | SamrGetGroupsForUser | |
| 309 | SamrLookupIdsInDomain | |
| 310 | SamrLookupNamesInDomain | |
| 311 | SamrLookupNamesInDomain2 | |
| 312 | SamrOpenAlias | |
| 313 | SamrOpenDomain | |
| 314 | SamrOpenGroup | |
| 315 | SamrOpenUser | |
| 316 | SamrQueryDisplayInformation | |
| 317 | SamrQueryInformationDomain | |
| 318 | SamrQueryInformationUser | |
| 319 | SamrQueryInformationUser2 | |
| 320 | SamrQuerySecurityObject | |
| 321 | SamrRemoveMemberFromAlias | |
| 322 | SamrRemoveMemberFromGroup | |
| 323 | SamrRidToSid | |
| 324 | SamrSetInformationAlias | |
| 325 | SamrSetInformationGroup | |
| 326 | SamrSetInformationUser | |
| 327 | SamrSetSecurityObject | |
| 328 | SamrValidatePassword |
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 | ; | |
| 6 | LIBRARY "sbeio.dll" | |
| 7 | EXPORTS | |
| 8 | DVRCreateDVRFileSink | |
| 9 | DVRCreateDVRFileSource |
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 | ; | |
| 6 | LIBRARY "ScanSetting.DLL" | |
| 7 | EXPORTS | |
| 8 | GetDefaultProfileScan | |
| 9 | GetImageDialog | |
| 10 | ProfilesDialog | |
| 11 | ProgDlgTakeFgIfShowing |
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 | ; | |
| 6 | LIBRARY "SCardSvr.dll" | |
| 7 | EXPORTS | |
| 8 | CalaisMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "SCCLS.dll" | |
| 7 | EXPORTS | |
| 8 | ScClassInstaller |
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 | ; | |
| 6 | LIBRARY "ScDeviceEnum.dll" | |
| 7 | EXPORTS | |
| 8 | ScDeviceEnumServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "SCECLI.dll" | |
| 7 | EXPORTS | |
| 8 | ConvertSecurityDescriptorToText | |
| 9 | DeltaNotify | |
| 10 | InitializeChangeNotify | |
| 11 | SceConfigureConvertedFileSecurity | |
| 12 | SceGenerateGroupPolicy | |
| 13 | SceNotifyPolicyDelta | |
| 14 | SceOpenPolicy | |
| 15 | SceProcessSecurityPolicyGPO | |
| 16 | SceProcessSecurityPolicyGPOEx | |
| 17 | SceSysPrep | |
| 18 | SceAddToNameList | |
| 19 | SceAddToNameStatusList | |
| 20 | SceAddToObjectList | |
| 21 | SceAnalyzeSystem | |
| 22 | SceAppendSecurityProfileInfo | |
| 23 | SceBrowseDatabaseTable | |
| 24 | SceCloseProfile | |
| 25 | SceCommitTransaction | |
| 26 | SceCompareNameList | |
| 27 | SceCompareSecurityDescriptors | |
| 28 | SceConfigureSystem | |
| 29 | SceCopyBaseProfile | |
| 30 | SceCreateDirectory | |
| 31 | SceDcPromoCreateGPOsInSysvol | |
| 32 | SceDcPromoCreateGPOsInSysvolEx | |
| 33 | SceDcPromoteSecurity | |
| 34 | SceDcPromoteSecurityEx | |
| 35 | SceEnforceSecurityPolicyPropagation | |
| 36 | SceEnumerateServices | |
| 37 | SceFreeMemory | |
| 38 | SceFreeProfileMemory | |
| 39 | SceGenerateRollback | |
| 40 | SceGetAnalysisAreaSummary | |
| 41 | SceGetAreas | |
| 42 | SceGetDatabaseSetting | |
| 43 | SceGetDbTime | |
| 44 | SceGetObjectChildren | |
| 45 | SceGetObjectSecurity | |
| 46 | SceGetScpProfileDescription | |
| 47 | SceGetSecurityProfileInfo | |
| 48 | SceGetServerProductType | |
| 49 | SceGetTimeStamp | |
| 50 | SceIsSystemDatabase | |
| 51 | SceLookupPrivRightName | |
| 52 | SceOpenProfile | |
| 53 | SceRegisterRegValues | |
| 54 | SceRollbackTransaction | |
| 55 | SceSetDatabaseSetting | |
| 56 | SceSetupBackupSecurity | |
| 57 | SceSetupConfigureServices | |
| 58 | SceSetupGenerateTemplate | |
| 59 | SceSetupMoveSecurityFile | |
| 60 | SceSetupRootSecurity | |
| 61 | SceSetupSystemByInfName | |
| 62 | SceSetupUnwindSecurityFile | |
| 63 | SceSetupUpdateSecurityFile | |
| 64 | SceSetupUpdateSecurityKey | |
| 65 | SceSetupUpdateSecurityService | |
| 66 | SceStartTransaction | |
| 67 | SceSvcConvertSDToText | |
| 68 | SceSvcConvertTextToSD | |
| 69 | SceSvcFree | |
| 70 | SceSvcGetInformationTemplate | |
| 71 | SceSvcQueryInfo | |
| 72 | SceSvcSetInfo | |
| 73 | SceSvcSetInformationTemplate | |
| 74 | SceSvcUpdateInfo | |
| 75 | SceUpdateObjectInfo | |
| 76 | SceUpdateSecurityProfile | |
| 77 | SceWriteSecurityProfileInfo |
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 | ; | |
| 6 | LIBRARY "SCEXT.dll" | |
| 7 | EXPORTS | |
| 8 | ScExtInitialize |
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 | ; | |
| 6 | LIBRARY "SCKsp.dll" | |
| 7 | EXPORTS | |
| 8 | GetKeyStorageInterface |
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 | ; | |
| 6 | LIBRARY "SCRPTADM.DLL" | |
| 7 | EXPORTS | |
| 8 | CreateParserObject |
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 | ; | |
| 6 | LIBRARY "sdiagschd.dll" | |
| 7 | EXPORTS | |
| 8 | EnableScheduledDiagnostics | |
| 9 | GetScheduledDiagnosticsExecutionLevel |
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 | ; | |
| 6 | LIBRARY "SECHOST.dll" | |
| 7 | EXPORTS | |
| 8 | I_ScSetServiceBitsA | |
| 9 | I_ScSetServiceBitsW | |
| 10 | AuditComputeEffectivePolicyBySid | |
| 11 | AuditEnumerateCategories | |
| 12 | AuditEnumeratePerUserPolicy | |
| 13 | AuditEnumerateSubCategories | |
| 14 | AuditFree | |
| 15 | AuditLookupCategoryNameW | |
| 16 | AuditLookupSubCategoryNameW | |
| 17 | AuditQueryGlobalSaclW | |
| 18 | AuditQueryPerUserPolicy | |
| 19 | AuditQuerySecurity | |
| 20 | AuditQuerySystemPolicy | |
| 21 | AuditSetGlobalSaclW | |
| 22 | AuditSetPerUserPolicy | |
| 23 | AuditSetSecurity | |
| 24 | AuditSetSystemPolicy | |
| 25 | ChangeServiceConfig2A | |
| 26 | ChangeServiceConfig2W | |
| 27 | ChangeServiceConfigA | |
| 28 | ChangeServiceConfigW | |
| 29 | CloseServiceHandle | |
| 30 | CloseTrace | |
| 31 | ControlService | |
| 32 | ControlServiceExA | |
| 33 | ControlServiceExW | |
| 34 | ControlTraceA | |
| 35 | ControlTraceW | |
| 36 | ConvertSecurityDescriptorToStringSecurityDescriptorW | |
| 37 | ConvertSidToStringSidW | |
| 38 | ConvertStringSecurityDescriptorToSecurityDescriptorW | |
| 39 | ConvertStringSidToSidW | |
| 40 | CreateServiceA | |
| 41 | CreateServiceW | |
| 42 | CredBackupCredentials | |
| 43 | CredDeleteA | |
| 44 | CredDeleteW | |
| 45 | CredEncryptAndMarshalBinaryBlob | |
| 46 | CredEnumerateA | |
| 47 | CredEnumerateW | |
| 48 | CredFindBestCredentialA | |
| 49 | CredFindBestCredentialW | |
| 50 | CredFree | |
| 51 | CredGetSessionTypes | |
| 52 | CredGetTargetInfoA | |
| 53 | CredGetTargetInfoW | |
| 54 | CredIsMarshaledCredentialW | |
| 55 | CredIsProtectedA | |
| 56 | CredIsProtectedW | |
| 57 | CredMarshalCredentialA | |
| 58 | CredMarshalCredentialW | |
| 59 | CredParseUserNameWithType | |
| 60 | CredProfileLoaded | |
| 61 | CredProfileLoadedEx | |
| 62 | CredProfileUnloaded | |
| 63 | CredProtectA | |
| 64 | CredProtectW | |
| 65 | CredReadA | |
| 66 | CredReadByTokenHandle | |
| 67 | CredReadDomainCredentialsA | |
| 68 | CredReadDomainCredentialsW | |
| 69 | CredReadW | |
| 70 | CredRestoreCredentials | |
| 71 | CredUnmarshalCredentialA | |
| 72 | CredUnmarshalCredentialW | |
| 73 | CredUnprotectA | |
| 74 | CredUnprotectW | |
| 75 | CredWriteA | |
| 76 | CredWriteDomainCredentialsA | |
| 77 | CredWriteDomainCredentialsW | |
| 78 | CredWriteW | |
| 79 | CredpConvertCredential | |
| 80 | CredpConvertOneCredentialSize | |
| 81 | CredpConvertTargetInfo | |
| 82 | CredpDecodeCredential | |
| 83 | CredpEncodeCredential | |
| 84 | CredpEncodeSecret | |
| 85 | DeleteService | |
| 86 | EnableTraceEx2 | |
| 87 | EnumDependentServicesW | |
| 88 | EnumServicesStatusExW | |
| 89 | EnumerateIdentityProviders | |
| 90 | EnumerateTraceGuidsEx | |
| 91 | EtwQueryRealtimeConsumer | |
| 92 | EventAccessControl | |
| 93 | EventAccessQuery | |
| 94 | EventAccessRemove | |
| 95 | GetDefaultIdentityProvider | |
| 96 | GetIdentityProviderInfoByGUID | |
| 97 | GetIdentityProviderInfoByName | |
| 98 | I_QueryTagInformation | |
| 99 | I_ScBroadcastServiceControlMessage | |
| 100 | I_ScIsSecurityProcess | |
| 101 | I_ScPnPGetServiceName | |
| 102 | I_ScQueryServiceConfig | |
| 103 | I_ScRegisterDeviceNotification | |
| 104 | I_ScRegisterPreshutdownRestart | |
| 105 | I_ScRpcBindA | |
| 106 | I_ScRpcBindW | |
| 107 | I_ScSendPnPMessage | |
| 108 | I_ScSendTSMessage | |
| 109 | I_ScUnregisterDeviceNotification | |
| 110 | I_ScValidatePnPService | |
| 111 | LocalGetConditionForString | |
| 112 | LocalGetReferencedTokenTypesForCondition | |
| 113 | LocalGetStringForCondition | |
| 114 | LookupAccountNameLocalA | |
| 115 | LookupAccountNameLocalW | |
| 116 | LookupAccountSidLocalA | |
| 117 | LookupAccountSidLocalW | |
| 118 | LsaAddAccountRights | |
| 119 | LsaClose | |
| 120 | LsaCreateSecret | |
| 121 | LsaEnumerateAccountRights | |
| 122 | LsaEnumerateAccountsWithUserRight | |
| 123 | LsaFreeMemory | |
| 124 | LsaICLookupNames | |
| 125 | LsaICLookupNamesWithCreds | |
| 126 | LsaICLookupSids | |
| 127 | LsaICLookupSidsWithCreds | |
| 128 | LsaLookupClose | |
| 129 | LsaLookupFreeMemory | |
| 130 | LsaLookupGetDomainInfo | |
| 131 | LsaLookupManageSidNameMapping | |
| 132 | LsaLookupNames2 | |
| 133 | LsaLookupOpenLocalPolicy | |
| 134 | LsaLookupSids | |
| 135 | LsaLookupSids2 | |
| 136 | LsaLookupTranslateNames | |
| 137 | LsaLookupTranslateSids | |
| 138 | LsaOpenPolicy | |
| 139 | LsaOpenSecret | |
| 140 | LsaQueryInformationPolicy | |
| 141 | LsaQuerySecret | |
| 142 | LsaRemoveAccountRights | |
| 143 | LsaRetrievePrivateData | |
| 144 | LsaSetInformationPolicy | |
| 145 | LsaSetSecret | |
| 146 | LsaStorePrivateData | |
| 147 | NotifyServiceStatusChange | |
| 148 | NotifyServiceStatusChangeA | |
| 149 | NotifyServiceStatusChangeW | |
| 150 | OpenSCManagerA | |
| 151 | OpenSCManagerW | |
| 152 | OpenServiceA | |
| 153 | OpenServiceW | |
| 154 | OpenTraceW | |
| 155 | ProcessTrace | |
| 156 | QueryAllTracesA | |
| 157 | QueryAllTracesW | |
| 158 | QueryServiceConfig2A | |
| 159 | QueryServiceConfig2W | |
| 160 | QueryServiceConfigA | |
| 161 | QueryServiceConfigW | |
| 162 | QueryServiceDynamicInformation | |
| 163 | QueryServiceObjectSecurity | |
| 164 | QueryServiceStatus | |
| 165 | QueryServiceStatusEx | |
| 166 | RegisterServiceCtrlHandlerA | |
| 167 | RegisterServiceCtrlHandlerExA | |
| 168 | RegisterServiceCtrlHandlerExW | |
| 169 | RegisterServiceCtrlHandlerW | |
| 170 | RegisterTraceGuidsA | |
| 171 | ReleaseIdentityProviderEnumContext | |
| 172 | RemoveTraceCallback | |
| 173 | SetServiceObjectSecurity | |
| 174 | SetServiceStatus | |
| 175 | SetTraceCallback | |
| 176 | StartServiceA | |
| 177 | StartServiceCtrlDispatcherA | |
| 178 | StartServiceCtrlDispatcherW | |
| 179 | StartServiceW | |
| 180 | StartTraceA | |
| 181 | StartTraceW | |
| 182 | StopTraceW | |
| 183 | SubscribeServiceChangeNotifications | |
| 184 | TraceQueryInformation | |
| 185 | TraceSetInformation | |
| 186 | UnsubscribeServiceChangeNotifications | |
| 187 | WaitServiceState |
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 | ; | |
| 6 | LIBRARY "iwb.dll" | |
| 7 | EXPORTS | |
| 8 | SPAttest | |
| 9 | SPBindLicense | |
| 10 | SPCheckEnvironmentSecurity | |
| 11 | SPCommit | |
| 12 | SPCreateDecryptor | |
| 13 | SPCreateEnablingPrincipal | |
| 14 | SPCreateEncryptor | |
| 15 | SPCreatePCE | |
| 16 | SPCreateSecurityProcessor | |
| 17 | SPDecrypt | |
| 18 | SPDecryptFinal | |
| 19 | SPDecryptUpdate | |
| 20 | SPEnableAndEncrypt | |
| 21 | SPEnablePublishingLicense | |
| 22 | SPEncrypt | |
| 23 | SPEncryptFinal | |
| 24 | SPEncryptUpdate | |
| 25 | SPGetBoundRightKey | |
| 26 | SPGetCurrentTime | |
| 27 | SPGetInfo | |
| 28 | SPGetLicenseAttribute | |
| 29 | SPGetLicenseAttributeCount | |
| 30 | SPGetLicenseObject | |
| 31 | SPGetLicenseObjectCount | |
| 32 | SPGetProcAddress | |
| 33 | SPIsActivated | |
| 34 | SPLoadLibrary | |
| 35 | SPRegisterRevocationList | |
| 36 | SPSign | |
| 37 | SPCloseHandle |
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 | ; | |
| 6 | LIBRARY "iwb.dll" | |
| 7 | EXPORTS | |
| 8 | SPAttest | |
| 9 | SPBindLicense | |
| 10 | SPCheckEnvironmentSecurity | |
| 11 | SPCommit | |
| 12 | SPCreateDecryptor | |
| 13 | SPCreateEnablingPrincipal | |
| 14 | SPCreateEncryptor | |
| 15 | SPCreatePCE | |
| 16 | SPCreateSecurityProcessor | |
| 17 | SPDecrypt | |
| 18 | SPDecryptFinal | |
| 19 | SPDecryptUpdate | |
| 20 | SPEnableAndEncrypt | |
| 21 | SPEnablePublishingLicense | |
| 22 | SPEncrypt | |
| 23 | SPEncryptFinal | |
| 24 | SPEncryptUpdate | |
| 25 | SPGetBoundRightKey | |
| 26 | SPGetCurrentTime | |
| 27 | SPGetInfo | |
| 28 | SPGetLicenseAttribute | |
| 29 | SPGetLicenseAttributeCount | |
| 30 | SPGetLicenseObject | |
| 31 | SPGetLicenseObjectCount | |
| 32 | SPGetProcAddress | |
| 33 | SPIsActivated | |
| 34 | SPLoadLibrary | |
| 35 | SPRegisterRevocationList | |
| 36 | SPSign | |
| 37 | SPCloseHandle |
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 | ; | |
| 6 | LIBRARY "sb.dll" | |
| 7 | EXPORTS | |
| 8 | SPAttest | |
| 9 | SPBindLicense | |
| 10 | SPCheckEnvironmentSecurity | |
| 11 | SPCommit | |
| 12 | SPCreateDecryptor | |
| 13 | SPCreateEnablingPrincipal | |
| 14 | SPCreateEncryptor | |
| 15 | SPCreatePCE | |
| 16 | SPCreateSecurityProcessor | |
| 17 | SPDecrypt | |
| 18 | SPDecryptFinal | |
| 19 | SPDecryptUpdate | |
| 20 | SPEnableAndEncrypt | |
| 21 | SPEnablePublishingLicense | |
| 22 | SPEncrypt | |
| 23 | SPEncryptFinal | |
| 24 | SPEncryptUpdate | |
| 25 | SPGetBoundRightKey | |
| 26 | SPGetCurrentTime | |
| 27 | SPGetInfo | |
| 28 | SPGetLicenseAttribute | |
| 29 | SPGetLicenseAttributeCount | |
| 30 | SPGetLicenseObject | |
| 31 | SPGetLicenseObjectCount | |
| 32 | SPGetProcAddress | |
| 33 | SPIsActivated | |
| 34 | SPLoadLibrary | |
| 35 | SPRegisterRevocationList | |
| 36 | SPSign | |
| 37 | SPCloseHandle |
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 | ; | |
| 6 | LIBRARY "sb.dll" | |
| 7 | EXPORTS | |
| 8 | SPAttest | |
| 9 | SPBindLicense | |
| 10 | SPCheckEnvironmentSecurity | |
| 11 | SPCommit | |
| 12 | SPCreateDecryptor | |
| 13 | SPCreateEnablingPrincipal | |
| 14 | SPCreateEncryptor | |
| 15 | SPCreatePCE | |
| 16 | SPCreateSecurityProcessor | |
| 17 | SPDecrypt | |
| 18 | SPDecryptFinal | |
| 19 | SPDecryptUpdate | |
| 20 | SPEnableAndEncrypt | |
| 21 | SPEnablePublishingLicense | |
| 22 | SPEncrypt | |
| 23 | SPEncryptFinal | |
| 24 | SPEncryptUpdate | |
| 25 | SPGetBoundRightKey | |
| 26 | SPGetCurrentTime | |
| 27 | SPGetInfo | |
| 28 | SPGetLicenseAttribute | |
| 29 | SPGetLicenseAttributeCount | |
| 30 | SPGetLicenseObject | |
| 31 | SPGetLicenseObjectCount | |
| 32 | SPGetProcAddress | |
| 33 | SPIsActivated | |
| 34 | SPLoadLibrary | |
| 35 | SPRegisterRevocationList | |
| 36 | SPSign | |
| 37 | SPCloseHandle |
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 | ; | |
| 6 | LIBRARY "SensorsApi.DLL" | |
| 7 | EXPORTS | |
| 8 | SensorPermissionsHandler | |
| 9 | SensorPermissionsHandlerA | |
| 10 | SensorPermissionsHandlerW |
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 | ; | |
| 6 | LIBRARY "SensorDriverClassExtension.dll" | |
| 7 | EXPORTS | |
| 8 | Microsoft_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 | ; | |
| 6 | LIBRARY "SensrSvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceCtrlHandler | |
| 9 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "SessEnv.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "setbcdlocale.dll" | |
| 7 | EXPORTS | |
| 8 | OnMachineUILanguageSwitch |
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 | ; | |
| 6 | LIBRARY "SETTINGSYNCPOLICY.dll" | |
| 7 | EXPORTS | |
| 8 | SettingSync_IsAllowedByGroupPolicy | |
| 9 | SettingSync_IsSyncAllowedOnCurrentNetwork | |
| 10 | SettingSync_IsCollectionAllowedToSync | |
| 11 | SettingSync_ShouldInlineBlobsOnFindChanges | |
| 12 | SettingSync_IsCollectionPermittedToUploadOrDownload | |
| 13 | SettingSync_CreateDirectory | |
| 14 | SettingSync_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 | ; | |
| 6 | LIBRARY "sfc_os.dll" | |
| 7 | EXPORTS | |
| 8 | BeginFileMapEnumeration | |
| 9 | CloseFileMapEnumeration | |
| 10 | GetNextFileMapContent | |
| 11 | SRSetRestorePointA | |
| 12 | SRSetRestorePointW | |
| 13 | SfcClose | |
| 14 | SfcConnectToServer | |
| 15 | SfcFileException | |
| 16 | SfcGetNextProtectedFile | |
| 17 | SfcInitProt | |
| 18 | SfcInitiateScan | |
| 19 | SfcInstallProtectedFiles | |
| 20 | SfcIsFileProtected | |
| 21 | SfcIsKeyProtected | |
| 22 | SfcTerminateWatcherThread | |
| 23 | SfpDeleteCatalog | |
| 24 | SfpInstallCatalog | |
| 25 | SfpVerifyFile |
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 | ; | |
| 6 | LIBRARY "ShimEng.dll" | |
| 7 | EXPORTS | |
| 8 | SE_DllLoaded | |
| 9 | SE_DllUnloaded | |
| 10 | SE_DynamicShim | |
| 11 | SE_GetHookAPIs | |
| 12 | SE_GetMaxShimCount | |
| 13 | SE_GetProcAddressIgnoreIncExc | |
| 14 | SE_GetShimCount | |
| 15 | SE_InstallAfterInit | |
| 16 | SE_InstallBeforeInit | |
| 17 | SE_IsShimDll | |
| 18 | SE_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 | ; | |
| 6 | LIBRARY "shsetup.dll" | |
| 7 | EXPORTS | |
| 8 | SHUnattendedSetup | |
| 9 | SHUnattendedSetupA | |
| 10 | SHUnattendedSetupW | |
| 11 | Sysprep_Cleanup_Shell | |
| 12 | Sysprep_Generalize_Shell | |
| 13 | Sysprep_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 | ; | |
| 6 | LIBRARY "SHWEBSVC.dll" | |
| 7 | EXPORTS | |
| 8 | AddNetPlaceRunDll | |
| 9 | PublishRunDll |
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 | ; | |
| 6 | LIBRARY "Simauth.dll" | |
| 7 | EXPORTS | |
| 8 | EapPeerFreeErrorMemory | |
| 9 | EapPeerFreeMemory | |
| 10 | EapPeerGetInfo |
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 | ; | |
| 6 | LIBRARY "SimPeerConfigDll.dll" | |
| 7 | EXPORTS | |
| 8 | EapPeerGetIdentityPageGuid | |
| 9 | InternalFunction01 | |
| 10 | InternalFunction02 | |
| 11 | EapPeerConfigBlob2Xml | |
| 12 | EapPeerConfigXml2Blob | |
| 13 | EapPeerCredentialsXml2Blob | |
| 14 | EapPeerFreeErrorMemory | |
| 15 | EapPeerFreeMemory | |
| 16 | EapPeerGetConfigBlobAndUserBlob | |
| 17 | EapPeerInvokeConfigUI | |
| 18 | EapPeerInvokeIdentityUI | |
| 19 | EapPeerInvokeInteractiveUI |
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 | ; | |
| 6 | LIBRARY "slpts.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "slr.dll" | |
| 7 | EXPORTS | |
| 8 | RhpResolveInterfaceMethod | |
| 9 | GetRuntimeException | |
| 10 | ProcessFinalizers | |
| 11 | RhCanUnloadModule | |
| 12 | RhCollect | |
| 13 | RhExceptionHandling_FailedAllocation | |
| 14 | RhExceptionHandling_ThrowClasslibArithmeticException | |
| 15 | RhExceptionHandling_ThrowClasslibDivideByZeroException | |
| 16 | RhExceptionHandling_ThrowClasslibIndexOutOfRangeException | |
| 17 | RhExceptionHandling_ThrowClasslibOverflowException | |
| 18 | RhExceptionHandling_ThrowInter | |
| 19 | RhExceptionHandling_ThrowIntra | |
| 20 | RhGcStress_Initialize | |
| 21 | RhHandleAlloc | |
| 22 | RhHandleFree | |
| 23 | RhHandleGet | |
| 24 | RhHandleSet | |
| 25 | RhMemberwiseClone | |
| 26 | RhNewArray | |
| 27 | RhNewObject | |
| 28 | RhSuppressFinalize | |
| 29 | RhTypeCast_AreTypesEquivalent | |
| 30 | RhTypeCast_CheckArrayStore | |
| 31 | RhTypeCast_CheckCastArray | |
| 32 | RhTypeCast_CheckCastClass | |
| 33 | RhTypeCast_CheckCastInterface | |
| 34 | RhTypeCast_CheckUnbox | |
| 35 | RhTypeCast_CheckVectorElemAddr | |
| 36 | RhTypeCast_IsInstanceOfArray | |
| 37 | RhTypeCast_IsInstanceOfClass | |
| 38 | RhTypeCast_IsInstanceOfInterface | |
| 39 | RhWaitForPendingFinalizers | |
| 40 | RhpCheckedAssignRefR1 | |
| 41 | RhpCheckedLockCmpXchg | |
| 42 | RhpCheckedXchg | |
| 43 | RhpCollect | |
| 44 | RhpCopyObjectContents | |
| 45 | RhpDbl2IntOvf | |
| 46 | RhpDbl2Lng | |
| 47 | RhpDbl2LngOvf | |
| 48 | RhpDbl2ULng | |
| 49 | RhpDbl2ULngOvf | |
| 50 | RhpDblRemRev | |
| 51 | RhpEHJumpByref | |
| 52 | RhpEHJumpByrefGCStress | |
| 53 | RhpEHJumpObject | |
| 54 | RhpEHJumpObjectGCStress | |
| 55 | RhpEHJumpScalar | |
| 56 | RhpEHJumpScalarGCStress | |
| 57 | RhpFlt2IntOvf | |
| 58 | RhpFlt2LngOvf | |
| 59 | RhpFltRemRev | |
| 60 | RhpGcPoll | |
| 61 | RhpGcPollStress | |
| 62 | RhpGetClasslibFunction | |
| 63 | RhpGetEHInfo | |
| 64 | RhpGetNextFinalizableObject | |
| 65 | RhpGetThread | |
| 66 | RhpHandleAlloc | |
| 67 | RhpHandleFree | |
| 68 | RhpHandleGet | |
| 69 | RhpHandleSet | |
| 70 | RhpHijackForGcStress | |
| 71 | RhpIDiv | |
| 72 | RhpIMod | |
| 73 | RhpInitialVSDTarget | |
| 74 | RhpInitializeGcStress | |
| 75 | RhpLDiv | |
| 76 | RhpLMod | |
| 77 | RhpLMul | |
| 78 | RhpLMulOvf | |
| 79 | RhpLng2Dbl | |
| 80 | RhpLoopHijack | |
| 81 | RhpNewArray | |
| 82 | RhpNewArrayAlign8 | |
| 83 | RhpNewFast | |
| 84 | RhpNewFastAlign8 | |
| 85 | RhpNewFastMisalign | |
| 86 | RhpNewFinalizable | |
| 87 | RhpNewFinalizableAlign8 | |
| 88 | RhpRegisterModule | |
| 89 | RhpReversePInvoke | |
| 90 | RhpReversePInvokeBadTransition | |
| 91 | RhpReversePInvokeReturn | |
| 92 | RhpShutdown | |
| 93 | RhpSignalFinalizationComplete | |
| 94 | RhpSuppressFinalize | |
| 95 | RhpSuppressGcStress | |
| 96 | RhpTrapThreads DATA | |
| 97 | RhpUDiv | |
| 98 | RhpULDiv | |
| 99 | RhpULMod | |
| 100 | RhpULMul | |
| 101 | RhpULMulOvf | |
| 102 | RhpULng2Dbl | |
| 103 | RhpUMod | |
| 104 | RhpUnsuppressGcStress | |
| 105 | RhpWaitForFinalizerRequest | |
| 106 | RhpWaitForGC | |
| 107 | RhpWaitForPendingFinalizers | |
| 108 | RhpWaitForSuspend | |
| 109 | t101 DATA | |
| 110 | t12 DATA | |
| 111 | t2 DATA | |
| 112 | t2.m1 | |
| 113 | t26 DATA | |
| 114 | t3 DATA | |
| 115 | t3.m1 | |
| 116 | t30 DATA | |
| 117 | t33 DATA | |
| 118 | t36 DATA | |
| 119 | t42 DATA | |
| 120 | t48 DATA | |
| 121 | t63 DATA | |
| 122 | t64 DATA | |
| 123 | t71 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 | ; | |
| 6 | LIBRARY "SmartCardSimulator.dll" | |
| 7 | EXPORTS | |
| 8 | VGidsSimulatorCreate | |
| 9 | VGidsSimulatorDestroy | |
| 10 | VGidsSimulatorReadProperties | |
| 11 | VGidsSimulatorWriteProperties | |
| 12 | VTransportClose | |
| 13 | VTransportDeinitialize | |
| 14 | VTransportInitialize | |
| 15 | VTransportOpen | |
| 16 | VTransportReceive | |
| 17 | VTransportTransmit | |
| 18 | Microsoft_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 | ; | |
| 6 | LIBRARY "SMBWMIV2.DLL" | |
| 7 | EXPORTS | |
| 8 | GetProviderClassID | |
| 9 | MI_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 | ; | |
| 6 | LIBRARY "SmiEngine.dll" | |
| 7 | EXPORTS | |
| 8 | ConstructHiveLocation | |
| 9 | CreateSettingsEnginePriv | |
| 10 | ConstructRegLocation | |
| 11 | CreateLalInstance | |
| 12 | CreateWcmEngineCore | |
| 13 | DeleteCompilerObject | |
| 14 | GetCompilerObject | |
| 15 | GetItemFromCoreObject | |
| 16 | SetLalCreator |
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 | ; | |
| 6 | LIBRARY "smsrouter.DLL" | |
| 7 | EXPORTS | |
| 8 | InitSmsRouter | |
| 9 | SmsRouterNotify | |
| 10 | UnInitSmsRouter |
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 | ; | |
| 6 | LIBRARY "sysbcd.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_Generalize_Bcd | |
| 9 | Sysprep_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 | ; | |
| 6 | LIBRARY "SPFILEQ.dll" | |
| 7 | EXPORTS | |
| 8 | SpFileQueueClose | |
| 9 | SpFileQueueCommit | |
| 10 | SpFileQueueCopy | |
| 11 | SpFileQueueDelete | |
| 12 | SpFileQueueFileInUse | |
| 13 | SpFileQueueGetFlags | |
| 14 | SpFileQueueGetQueueCount | |
| 15 | SpFileQueueNodeGetSecurityDescriptor | |
| 16 | SpFileQueueNodeGetSourceFilename | |
| 17 | SpFileQueueNodeGetSourcePath | |
| 18 | SpFileQueueNodeGetSourceRootPath | |
| 19 | SpFileQueueNodeGetStyleFlags | |
| 20 | SpFileQueueNodeGetTargetDirectory | |
| 21 | SpFileQueueNodeGetTargetFilename | |
| 22 | SpFileQueueNodeRemove | |
| 23 | SpFileQueueOpen | |
| 24 | SpFileQueueRename | |
| 25 | SpFileQueueSetFlags |
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 | ; | |
| 6 | LIBRARY "SPINF.dll" | |
| 7 | EXPORTS | |
| 8 | SpInfDetermineInfStyle | |
| 9 | SpInfDoesInfContainString | |
| 10 | SpInfEnumInfSections | |
| 11 | SpInfFileFullPathFromLineContext | |
| 12 | SpInfFindFirstLine | |
| 13 | SpInfFindNextMatchLine | |
| 14 | SpInfFindValueInSectionList | |
| 15 | SpInfFreeInfFile | |
| 16 | SpInfGetBestInstallSection | |
| 17 | SpInfGetBestModelsSection | |
| 18 | SpInfGetDirIdHandler | |
| 19 | SpInfGetDriverVer | |
| 20 | SpInfGetField | |
| 21 | SpInfGetIndirectString | |
| 22 | SpInfGetInfInformation | |
| 23 | SpInfGetInfLineNumber | |
| 24 | SpInfGetInfSections | |
| 25 | SpInfGetInfStyle | |
| 26 | SpInfGetLanguageId | |
| 27 | SpInfGetLineByIndex | |
| 28 | SpInfGetLineCount | |
| 29 | SpInfGetLineCountFromSection | |
| 30 | SpInfGetLineFieldCount | |
| 31 | SpInfGetLineTextWithKey | |
| 32 | SpInfGetLogToken | |
| 33 | SpInfGetNextInf | |
| 34 | SpInfGetOriginalInfName | |
| 35 | SpInfGetPathFromDirId | |
| 36 | SpInfGetPrevInf | |
| 37 | SpInfGetStringField | |
| 38 | SpInfGetStringsSection | |
| 39 | SpInfGetTargetPath | |
| 40 | SpInfGetVersionDatum | |
| 41 | SpInfGetVersionNode | |
| 42 | SpInfIsIndirectString | |
| 43 | SpInfLineFromContext | |
| 44 | SpInfLineIsSearchable | |
| 45 | SpInfLoadInfFile | |
| 46 | SpInfLocateLine | |
| 47 | SpInfLocateSection | |
| 48 | SpInfLockInf | |
| 49 | SpInfQueryInfFileInformation | |
| 50 | SpInfQueryInfVersionInformation | |
| 51 | SpInfSectionNameFromLineContext | |
| 52 | SpInfSetDirIdHandler | |
| 53 | SpInfSetDirectoryId | |
| 54 | SpInfSourcePathFromHandle | |
| 55 | SpInfUnlockInf | |
| 56 | SpInfVersionNodeFromInfInformation |
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 | ; | |
| 6 | LIBRARY "spmpm.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_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 | ; | |
| 6 | LIBRARY "sysnet.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_Clean_Net | |
| 9 | Sysprep_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 | ; | |
| 6 | LIBRARY "sysopk.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_Clean_Opk | |
| 9 | Sysprep_Clean_Validate_Opk | |
| 10 | Sysprep_Generalize_Opk | |
| 11 | Sysprep_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 | ; | |
| 6 | LIBRARY "sppc.dll" | |
| 7 | EXPORTS | |
| 8 | SLCallServer | |
| 9 | SLpAuthenticateGenuineTicketResponse | |
| 10 | SLpBeginGenuineTicketTransaction | |
| 11 | SLpClearActivationInProgress | |
| 12 | SLpDepositDownlevelGenuineTicket | |
| 13 | SLpDepositTokenActivationResponse | |
| 14 | SLpGenerateTokenActivationChallenge | |
| 15 | SLpGetGenuineBlob | |
| 16 | SLpGetGenuineLocal | |
| 17 | SLpGetLicenseAcquisitionInfo | |
| 18 | SLpGetMSPidInformation | |
| 19 | SLpGetMachineUGUID | |
| 20 | SLpGetTokenActivationGrantInfo | |
| 21 | SLpIAActivateProduct | |
| 22 | SLpProcessVMPipeMessage | |
| 23 | SLpSetActivationInProgress | |
| 24 | SLpTriggerServiceWorker | |
| 25 | SLpVLActivateProduct | |
| 26 | SLClose | |
| 27 | SLConsumeRight | |
| 28 | SLDepositMigrationBlob | |
| 29 | SLDepositOfflineConfirmationId | |
| 30 | SLDepositOfflineConfirmationIdEx | |
| 31 | SLDepositStoreToken | |
| 32 | SLFireEvent | |
| 33 | SLGatherMigrationBlob | |
| 34 | SLGatherMigrationBlobEx | |
| 35 | SLGenerateOfflineInstallationId | |
| 36 | SLGenerateOfflineInstallationIdEx | |
| 37 | SLGetActiveLicenseInfo | |
| 38 | SLGetApplicationInformation | |
| 39 | SLGetApplicationPolicy | |
| 40 | SLGetAuthenticationResult | |
| 41 | SLGetEncryptedPIDEx | |
| 42 | SLGetGenuineInformation | |
| 43 | SLGetInstalledProductKeyIds | |
| 44 | SLGetLicense | |
| 45 | SLGetLicenseFileId | |
| 46 | SLGetLicenseInformation | |
| 47 | SLGetLicensingStatusInformation | |
| 48 | SLGetPKeyId | |
| 49 | SLGetPKeyInformation | |
| 50 | SLGetPolicyInformation | |
| 51 | SLGetPolicyInformationDWORD | |
| 52 | SLGetProductSkuInformation | |
| 53 | SLGetSLIDList | |
| 54 | SLGetServiceInformation | |
| 55 | SLInstallLicense | |
| 56 | SLInstallProofOfPurchase | |
| 57 | SLInstallProofOfPurchaseEx | |
| 58 | SLIsGenuineLocalEx | |
| 59 | SLLoadApplicationPolicies | |
| 60 | SLOpen | |
| 61 | SLPersistApplicationPolicies | |
| 62 | SLPersistRTSPayloadOverride | |
| 63 | SLReArm | |
| 64 | SLRegisterEvent | |
| 65 | SLRegisterPlugin | |
| 66 | SLSetAuthenticationData | |
| 67 | SLSetCurrentProductKey | |
| 68 | SLSetGenuineInformation | |
| 69 | SLUninstallLicense | |
| 70 | SLUninstallProofOfPurchase | |
| 71 | SLUnloadApplicationPolicies | |
| 72 | SLUnregisterEvent | |
| 73 | SLUnregisterPlugin |
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 | ; | |
| 6 | LIBRARY "sppcext.dll" | |
| 7 | EXPORTS | |
| 8 | SLAcquireGenuineTicketForAppId | |
| 9 | SLAcquireGenuineTicket | |
| 10 | SLActivateProduct | |
| 11 | SLDepositTokenActivationResponse | |
| 12 | SLFreeTokenActivationCertificates | |
| 13 | SLFreeTokenActivationGrants | |
| 14 | SLGenerateTokenActivationChallenge | |
| 15 | SLGetGenuineInformationEx | |
| 16 | SLGetPackageProductKey | |
| 17 | SLGetPackageProperties | |
| 18 | SLGetPackageToken | |
| 19 | SLGetReferralInformation | |
| 20 | SLGetServerStatus | |
| 21 | SLGetTokenActivationCertificates | |
| 22 | SLGetTokenActivationGrants | |
| 23 | SLInitialize | |
| 24 | SLInstallPackage | |
| 25 | SLSignTokenActivationChallenge | |
| 26 | SLUninstallPackage |
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 | ; | |
| 6 | LIBRARY "sppcommdlg.dll" | |
| 7 | EXPORTS | |
| 8 | SLUXActivationWizard |
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 | ; | |
| 6 | LIBRARY "syspnp.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_Generalize_Pnp | |
| 9 | Sysprep_Generalize_Pnp_Drivers | |
| 10 | Sysprep_Respecialize_Pnp | |
| 11 | Sysprep_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 | ; | |
| 6 | LIBRARY "sppobjs.dll" | |
| 7 | EXPORTS | |
| 8 | SppPluginCanUnloadNow | |
| 9 | SppPluginCreateInstance | |
| 10 | SppPluginInitialize | |
| 11 | SppPluginShutdown | |
| 12 | SppPluginVersion |
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 | ; | |
| 6 | LIBRARY "sppwinob.dll" | |
| 7 | EXPORTS | |
| 8 | SppPluginCanUnloadNow | |
| 9 | SppPluginCreateInstance | |
| 10 | SppPluginInitialize | |
| 11 | SppPluginShutdown | |
| 12 | SppPluginVersion |
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 | ; | |
| 6 | LIBRARY "sysoobe.dll" | |
| 7 | EXPORTS | |
| 8 | Sysprep_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 | ; | |
| 6 | LIBRARY "SQLCECOMPACT40.dll" | |
| 7 | EXPORTS | |
| 8 | SeRebuild |
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 | ; | |
| 6 | LIBRARY "SQLCESE40.dll" | |
| 7 | EXPORTS | |
| 8 | EnableStorePlayback | |
| 9 | EnableStoreTracing | |
| 10 | InitSerialization | |
| 11 | SuspendStoreOperation | |
| 12 | EnableCedbFailpoint | |
| 13 | SqlCeAddDatabaseProps | |
| 14 | SqlCeAddSyncPartner | |
| 15 | SqlCeAttachCustomTrackingData | |
| 16 | SqlCeBeginSyncSession | |
| 17 | SqlCeBeginTransaction | |
| 18 | SqlCeChangeDatabaseLCID | |
| 19 | SqlCeCloseHandle | |
| 20 | SqlCeCreateDatabase | |
| 21 | SqlCeCreateSession | |
| 22 | SqlCeDeleteDatabase | |
| 23 | SqlCeDeleteRecord | |
| 24 | SqlCeEndSyncSession | |
| 25 | SqlCeEndTransaction | |
| 26 | SqlCeEnumDBVolumes | |
| 27 | SqlCeFindFirstDatabase | |
| 28 | SqlCeFindNextChangedRecord | |
| 29 | SqlCeFindNextDatabase | |
| 30 | SqlCeFlushDBVol | |
| 31 | SqlCeFreeNotification | |
| 32 | SqlCeGetChangedRecordCnt | |
| 33 | SqlCeGetChangedRecords | |
| 34 | SqlCeGetCustomTrackingData | |
| 35 | SqlCeGetDBInformationByHandle | |
| 36 | SqlCeGetDatabaseProps | |
| 37 | SqlCeGetDatabaseSession | |
| 38 | SqlCeGetPropChangeInfo | |
| 39 | SqlCeGetRecordChangeInfo | |
| 40 | SqlCeMarkRecord | |
| 41 | SqlCeMountDBVol | |
| 42 | SqlCeOidGetInfo | |
| 43 | SqlCeOnServerLoad | |
| 44 | SqlCeOpenDatabase | |
| 45 | SqlCeOpenDatabaseEx | |
| 46 | SqlCeOpenStream | |
| 47 | SqlCePurgeTrackingData | |
| 48 | SqlCePurgeTrackingGenerations | |
| 49 | SqlCeReadRecordProps | |
| 50 | SqlCeRemoveDatabaseProps | |
| 51 | SqlCeRemoveDatabaseTracking | |
| 52 | SqlCeRemoveSyncPartner | |
| 53 | SqlCeSeekDatabase | |
| 54 | SqlCeSetDatabaseInfo | |
| 55 | SqlCeSetSessionOption | |
| 56 | SqlCeStreamRead | |
| 57 | SqlCeStreamSaveChanges | |
| 58 | SqlCeStreamSeek | |
| 59 | SqlCeStreamSetSize | |
| 60 | SqlCeStreamWrite | |
| 61 | SqlCeTrackDatabase | |
| 62 | SqlCeTrackProperty | |
| 63 | SqlCeUninitialize | |
| 64 | SqlCeUnmountDBVol | |
| 65 | SqlCeWriteRecordProps |
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 | ; | |
| 6 | LIBRARY "sqmapi.dll" | |
| 7 | EXPORTS | |
| 8 | SqmCheckEscalationAddToStreamDWord64 | |
| 9 | SqmCheckEscalationAddToStreamDWord | |
| 10 | SqmCheckEscalationAddToStreamString | |
| 11 | SqmCheckEscalationSetDWord64 | |
| 12 | SqmCheckEscalationSetDWord | |
| 13 | SqmCheckEscalationSetString | |
| 14 | SqmGetEscalationRuleStatus | |
| 15 | SqmGetInstrumentationProperty | |
| 16 | SqmLoadEscalationManifest | |
| 17 | SqmSetEscalationInfo | |
| 18 | SqmUnloadEscalationManifest | |
| 19 | SqmAddToAverage | |
| 20 | SqmAddToStream | |
| 21 | SqmAddToStreamDWord | |
| 22 | SqmAddToStreamDWord64 | |
| 23 | SqmAddToStreamString | |
| 24 | SqmAddToStreamV | |
| 25 | SqmCleanup | |
| 26 | SqmClearFlags | |
| 27 | SqmCreateNewId | |
| 28 | SqmEndSession | |
| 29 | SqmEndSessionEx | |
| 30 | SqmFlushSession | |
| 31 | SqmGetEnabled | |
| 32 | SqmGetFlags | |
| 33 | SqmGetLastUploadTime | |
| 34 | SqmGetMachineId | |
| 35 | SqmGetSession | |
| 36 | SqmGetSessionStartTime | |
| 37 | SqmGetUserId | |
| 38 | SqmIncrement | |
| 39 | SqmIsNamespaceEnabled | |
| 40 | SqmIsWindowsOptedIn | |
| 41 | SqmReadSharedMachineId | |
| 42 | SqmReadSharedUserId | |
| 43 | SqmSet | |
| 44 | SqmSetAppId | |
| 45 | SqmSetAppVersion | |
| 46 | SqmSetBits | |
| 47 | SqmSetBool | |
| 48 | SqmSetCurrentTimeAsUploadTime | |
| 49 | SqmSetDWord64 | |
| 50 | SqmSetEnabled | |
| 51 | SqmSetFlags | |
| 52 | SqmSetIfMax | |
| 53 | SqmSetIfMin | |
| 54 | SqmSetMachineId | |
| 55 | SqmSetString | |
| 56 | SqmSetUserId | |
| 57 | SqmStartSession | |
| 58 | SqmStartUpload | |
| 59 | SqmStartUploadEx | |
| 60 | SqmSysprepCleanup | |
| 61 | SqmSysprepGeneralize | |
| 62 | SqmSysprepSpecialize | |
| 63 | SqmTimerAccumulate | |
| 64 | SqmTimerAddToAverage | |
| 65 | SqmTimerRecord | |
| 66 | SqmTimerStart | |
| 67 | SqmUnattendedSetup | |
| 68 | SqmWaitForUploadComplete | |
| 69 | SqmWriteSharedMachineId | |
| 70 | SqmWriteSharedUserId |
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 | ; | |
| 6 | LIBRARY "SRCHADMIN.dll" | |
| 7 | EXPORTS | |
| 8 | ProcessGroupPolicy | |
| 9 | CPlApplet |
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 | ; | |
| 6 | LIBRARY "SRCLIENT.dll" | |
| 7 | EXPORTS | |
| 8 | SysprepCleanup | |
| 9 | SysprepGeneralize | |
| 10 | DisableSR | |
| 11 | DisableSRInternal | |
| 12 | EnableSR | |
| 13 | EnableSREx | |
| 14 | EnableSRInternal | |
| 15 | SRNewSystemId | |
| 16 | SRRemoveRestorePoint | |
| 17 | SRSetRestorePointA | |
| 18 | SRSetRestorePointInternal | |
| 19 | SRSetRestorePointW | |
| 20 | SetSRStateAfterSetup |
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 | ; | |
| 6 | LIBRARY "SrumAPI.dll" | |
| 7 | EXPORTS | |
| 8 | SruFreeRecordSet | |
| 9 | SruQueryStats | |
| 10 | SruRegisterRealTimeStats | |
| 11 | SruUnregisterRealTimeStats | |
| 12 | SruUpdateStats |
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 | ; | |
| 6 | LIBRARY "SrumSvc.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "sscore.dll" | |
| 7 | EXPORTS | |
| 8 | SsCoreAliasAdd | |
| 9 | SsCoreAliasAddEx | |
| 10 | SsCoreAliasDel | |
| 11 | SsCoreAliasDelEx | |
| 12 | SsCoreCloseInstance | |
| 13 | SsCoreDeregisterNetnameForMultichannel | |
| 14 | SsCoreFileDel | |
| 15 | SsCoreFileDelForInstance | |
| 16 | SsCoreFileEnum | |
| 17 | SsCoreFileEnumForInstance | |
| 18 | SsCoreFileNotifyClose | |
| 19 | SsCoreFileNotifyCloseForInstance | |
| 20 | SsCoreFreeBuffer | |
| 21 | SsCoreInitialize | |
| 22 | SsCoreInitializeEx | |
| 23 | SsCoreInvalidationRequest | |
| 24 | SsCoreLockVolumes | |
| 25 | SsCoreMarkAsClusterSvc | |
| 26 | SsCoreNodeSetInfo | |
| 27 | SsCoreOpenInstance | |
| 28 | SsCoreRegisterNetnameForMultichannel | |
| 29 | SsCoreServerTransportSetInfo | |
| 30 | SsCoreSessionDel | |
| 31 | SsCoreSessionDelForInstance | |
| 32 | SsCoreSessionEnlist | |
| 33 | SsCoreSessionEnum | |
| 34 | SsCoreSessionEnumForInstance | |
| 35 | SsCoreShareAdd | |
| 36 | SsCoreShareAddEx | |
| 37 | SsCoreShareAddForInstance | |
| 38 | SsCoreShareCleanup | |
| 39 | SsCoreShareDel | |
| 40 | SsCoreShareDelForInstance | |
| 41 | SsCoreShareGetInfo | |
| 42 | SsCoreShareGetInfoForInstance | |
| 43 | SsCoreShareSetInfo | |
| 44 | SsCoreShareSetInfoForInstance | |
| 45 | SsCoreShareShutdownForScope | |
| 46 | SsCoreStartInstance | |
| 47 | SsCoreStopInstance | |
| 48 | SsCoreUninitialize | |
| 49 | SsCoreUnlockVolumes |
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 | ; | |
| 6 | LIBRARY "sscoreext.dll" | |
| 7 | EXPORTS | |
| 8 | SsCoreExtMiApplicationClose | |
| 9 | SsCoreExtMiApplicationInitialize | |
| 10 | SsCoreExtMiApplicationNewOperationOptions | |
| 11 | SsCoreExtMiApplicationNewParameterSet | |
| 12 | SsCoreExtMiApplicationNewSession | |
| 13 | SsCoreExtMiInstanceAddElement | |
| 14 | SsCoreExtMiInstanceDelete | |
| 15 | SsCoreExtMiOperationClose | |
| 16 | SsCoreExtMiOperationGetInstance | |
| 17 | SsCoreExtMiOperationOptionsDelete | |
| 18 | SsCoreExtMiOperationOptionsSetResourceUriPrefix | |
| 19 | SsCoreExtMiSessionClose | |
| 20 | SsCoreExtMiSessionInvoke |
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 | ; | |
| 6 | LIBRARY "SSDPAPI.dll" | |
| 7 | EXPORTS | |
| 8 | BeginRegisterPropChangeNotificationEx | |
| 9 | CleanupCache | |
| 10 | DHSetICSInterfaces | |
| 11 | DHSetICSOff | |
| 12 | DeregisterNotification | |
| 13 | DeregisterService | |
| 14 | DisableFirewallRule | |
| 15 | EnableFirewallRule | |
| 16 | EndRegisterPropChangeNotificationEx | |
| 17 | FindServices | |
| 18 | FindServicesCallback | |
| 19 | FindServicesCallbackEx | |
| 20 | FindServicesCancel | |
| 21 | FindServicesClose | |
| 22 | FindServicesEx | |
| 23 | FindServicesOnNetworkCallbackEx | |
| 24 | FreeSsdpMessage | |
| 25 | FreeSsdpMessageEx | |
| 26 | GetFirstService | |
| 27 | GetFirstServiceEx | |
| 28 | GetNextService | |
| 29 | GetNextServiceEx | |
| 30 | RegisterAliveNotificationOnNetworkEx | |
| 31 | RegisterNotification | |
| 32 | RegisterNotificationEx | |
| 33 | RegisterService | |
| 34 | RegisterServiceEx | |
| 35 | SsdpCleanup | |
| 36 | SsdpStartup |
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 | ; | |
| 6 | LIBRARY "ssdpsrv.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "SspiSrv.dll" | |
| 7 | EXPORTS | |
| 8 | SspiSrvClientCallback | |
| 9 | SspiSrvInitialize |
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 | ; | |
| 6 | LIBRARY "ssshim.dll" | |
| 7 | EXPORTS | |
| 8 | SssBindServicingStack | |
| 9 | SssGetServicingStackFilePath | |
| 10 | SssGetServicingStackFilePathLength | |
| 11 | SssPreloadDownlevelDependencies | |
| 12 | SssReleaseServicingStack |
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 | ; | |
| 6 | LIBRARY "sstpsvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "STI.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 20 | GetProxyDllInfo | |
| 21 | MigrateRegisteredSTIAppsForWIAEvents | |
| 22 | SelectDeviceDialog2 | |
| 23 | StiCreateInstance | |
| 24 | StiCreateInstanceW |
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 | ; | |
| 6 | LIBRARY "sti_ci.dll" | |
| 7 | EXPORTS | |
| 8 | AddDevice | |
| 9 | CreateWiaDeviceList | |
| 10 | DestroyWiaDeviceList | |
| 11 | DisableWiaDevice | |
| 12 | EnableWiaDevice | |
| 13 | GetWiaDeviceProperty | |
| 14 | InstallWiaDevice | |
| 15 | InstallWiaService | |
| 16 | SetWiaDeviceProperty | |
| 17 | UninstallWiaDevice | |
| 18 | WiaAddDevice | |
| 19 | WiaCreatePortList | |
| 20 | WiaDestroyPortList | |
| 21 | ?WiaDeviceEnum@@YAHXZ | |
| 22 | WiaRemoveDevice | |
| 23 | ClassInstall | |
| 24 | CoinstallerEntry |
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 | ; | |
| 6 | LIBRARY "STORAGEWMI.DLL" | |
| 7 | EXPORTS | |
| 8 | GetProviderClassID | |
| 9 | MI_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 | ; | |
| 6 | LIBRARY "storagewmi_passthru.dll" | |
| 7 | EXPORTS | |
| 8 | CreatePassThrough |
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 | ; | |
| 6 | LIBRARY "PROPPAGE.DLL" | |
| 7 | EXPORTS | |
| 8 | AtaPropPageProvider | |
| 9 | CdromDisableDigitalPlayback | |
| 10 | CdromEnableDigitalPlayback | |
| 11 | CdromIsDigitalPlaybackEnabled | |
| 12 | CdromKnownGoodDigitalPlayback | |
| 13 | CdromSetDefaultDvdRegion | |
| 14 | DiskClassInstaller | |
| 15 | DiskPropPageProvider | |
| 16 | DvdClassInstaller | |
| 17 | DvdLauncher | |
| 18 | DvdPropPageProvider | |
| 19 | HdcCoInstaller |
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 | ; | |
| 6 | LIBRARY "StorSvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "SubscriptionMgr.dll" | |
| 7 | EXPORTS | |
| 8 | SubscriptionManagerDeinit | |
| 9 | SubscriptionManagerInit | |
| 10 | SubscriptionManagerNotify | |
| 11 | SubscriptionManagerQueryParameter | |
| 12 | SubscriptionManagerSetParameter | |
| 13 | g_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 | ; | |
| 6 | LIBRARY "SVSVC.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceCtrlHandler | |
| 9 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "SXSHARED.dll" | |
| 7 | EXPORTS | |
| 8 | GetLastFailureAsHRESULT | |
| 9 | HRESULTFromNTSTATUS | |
| 10 | SxTracerDebuggerBreak | |
| 11 | SxTracerGetThreadContextDebug | |
| 12 | SxTracerGetThreadContextRetail | |
| 13 | SxTracerShouldTrackFailure | |
| 14 | Win32FromHRESULT | |
| 15 | Win32FromNTSTATUS |
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 | ; | |
| 6 | LIBRARY "SXSSRV.dll" | |
| 7 | EXPORTS | |
| 8 | ServerDllInitialization |
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 | ; | |
| 6 | LIBRARY "SxsStore.DLL" | |
| 7 | EXPORTS | |
| 8 | SxsStoreFinalize | |
| 9 | SxsStoreInitialize |
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 | ; | |
| 6 | LIBRARY "sysclass.dll" | |
| 7 | EXPORTS | |
| 8 | StorageCoInstaller |
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 | ; | |
| 6 | LIBRARY "sysmain.dll" | |
| 7 | EXPORTS | |
| 8 | PfSvWsSwapAssessmentTask | |
| 9 | AgGlLoad | |
| 10 | AgPdLoad | |
| 11 | AgTwLoad | |
| 12 | CloseReadyBoostPerfData | |
| 13 | CollectReadyBoostPerfData | |
| 14 | GetProviderClassID | |
| 15 | MI_Main | |
| 16 | OpenReadyBoostPerfData | |
| 17 | PfSvSysprepCleanup | |
| 18 | PfSvUnattendCallback | |
| 19 | SysMtServiceMain |
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 | ; | |
| 6 | LIBRARY "SYSNTFY.dll" | |
| 7 | EXPORTS | |
| 8 | SysNotifyStartServer | |
| 9 | SysNotifyStopServer |
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 | ; | |
| 6 | LIBRARY "SYSSETUP.dll" | |
| 7 | EXPORTS | |
| 8 | AsrAddSifEntryA | |
| 9 | AsrAddSifEntryW | |
| 10 | AsrCreateStateFileA | |
| 11 | AsrCreateStateFileW | |
| 12 | AsrFreeContext | |
| 13 | AsrRestorePlugPlayRegistryData | |
| 14 | GetAnswerFileSetting | |
| 15 | SetupChangeFontSize | |
| 16 | SetupInfObjectInstallActionW | |
| 17 | SetupSetDisplay | |
| 18 | WaitForSamService |
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 | ; | |
| 6 | LIBRARY "SystemEventsBrokerClient.dll" | |
| 7 | EXPORTS | |
| 8 | SebCreateBackgroundDownloadEvent | |
| 9 | SebCreateDeviceServicingEvent | |
| 10 | SebCreateDeviceUseEvent | |
| 11 | SebCreateDisplayOnEvent | |
| 12 | SebCreateInfrastructureConditionEvent | |
| 13 | SebCreateLocationEvent | |
| 14 | SebCreateLockScreenAppAddedEvent | |
| 15 | SebCreateLockScreenAppRemovedEvent | |
| 16 | SebCreateNetOperatorHotSpotAuthEvent | |
| 17 | SebCreateOEMPreInstallEvent | |
| 18 | SebCreateSessionConnectedEvent | |
| 19 | SebCreateSessionStartEvent | |
| 20 | SebCreateUnconstrainedBackgroundDownloadEvent | |
| 21 | SebCreateUserPresentEvent | |
| 22 | SebDeleteEvent | |
| 23 | SebEnumerateEvents | |
| 24 | SebQueryEventData | |
| 25 | SebRegisterPrivateEvent | |
| 26 | SebRegisterWellKnownEvent | |
| 27 | SebRegisterWellKnownFilteredEvent | |
| 28 | SebSignalBackgroundDownloadEvent | |
| 29 | SebSignalDeviceEvent | |
| 30 | SebSignalOEMPreInstallEvent |
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 | ; | |
| 6 | LIBRARY "SystemEventsBrokerServer.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "SystemSettings.DeviceEncryptionHandlers.dll" | |
| 7 | EXPORTS | |
| 8 | GetActualDeviceEncryptionUIState | |
| 9 | GetSetting |
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 | ; | |
| 6 | LIBRARY "SystemSettings.Handlers.dll" | |
| 7 | EXPORTS | |
| 8 | GetSetting |
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 | ; | |
| 6 | LIBRARY "SystemSettingsAdminFlowUI.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeXamlCustomResourceLoader | |
| 9 | InitializeXamlRuntime | |
| 10 | UninitializeXamlCustomResourceLoader | |
| 11 | UninitializeXamlRuntime | |
| 12 | AddDomainUserPage_CreateInstance | |
| 13 | CorpDeviceConfirmationPage_CreateInstance | |
| 14 | CorpDeviceManagementPage_CreateInstance | |
| 15 | DeviceEncryptionPage_CreateInstance | |
| 16 | EditUserPage_CreateInstance | |
| 17 | JoinDomainPage_CreateInstance | |
| 18 | LeaveDomainPage_CreateInstance | |
| 19 | LockdownAppPage_CreateInstance | |
| 20 | LockdownUserPage_CreateInstance | |
| 21 | RemoveUserPage_CreateInstance | |
| 22 | RenamePCPage_CreateInstance | |
| 23 | SetDateTimePage_CreateInstance | |
| 24 | UnblockSimPinPage_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 | ; | |
| 6 | LIBRARY "SystemSettingsDatabase.dll" | |
| 7 | EXPORTS | |
| 8 | GetSettingsDatabase |
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 | ; | |
| 6 | LIBRARY "TabBtn.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 134 | HandleTabletButtonMessages | |
| 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 | |
| 141 | InitializeTabletButtons | |
| 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 | |
| 225 | UninitializeTabletButtons | |
| 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 | ; | |
| 6 | LIBRARY "TabSvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "tapisrv.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "tapisysprep.dll" | |
| 7 | EXPORTS | |
| 8 | TapiSysPrepClean |
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 | ; | |
| 6 | LIBRARY "taskcomp.dll" | |
| 7 | EXPORTS | |
| 8 | DeleteTaskNotification | |
| 9 | InitializeAdapter | |
| 10 | IsRegistering | |
| 11 | RegisterTaskNotification | |
| 12 | SetSdNotification | |
| 13 | ShutdownAdapter | |
| 14 | UpdateJobStatus |
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 | ; | |
| 6 | LIBRARY "TcpipSetup.dll" | |
| 7 | EXPORTS | |
| 8 | DllRegisterNetSetupPlugin |
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 | ; | |
| 6 | LIBRARY "TCPMIB.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 42 | GetTcpMibPtr |
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 | ; | |
| 6 | LIBRARY "TCPMonUI.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 18 | InitializePrintMonitorUI2 | |
| 19 | ?Read@CPortABC@@UAAKQAXPAEKPAK@Z | |
| 20 | InitializePrintMonitorUI | |
| 21 | LocalAddPortUI | |
| 22 | LocalConfigurePortUI |
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 | ; | |
| 6 | LIBRARY "TermSrv.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "TetheringIeProvider.dll" | |
| 7 | EXPORTS | |
| 8 | VsIeProviderGetFunctionTable |
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 | ; | |
| 6 | LIBRARY "TetheringMgr.dll" | |
| 7 | EXPORTS | |
| 8 | TetheringManagerDeinit | |
| 9 | TetheringManagerInit | |
| 10 | TetheringManagerNotify | |
| 11 | TetheringManagerQueryParameter | |
| 12 | TetheringManagerSetParameter |
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 | ; | |
| 6 | LIBRARY "TetheringStation.dll" | |
| 7 | EXPORTS | |
| 8 | TetheringStationConnect | |
| 9 | TetheringStationDeinitialize | |
| 10 | TetheringStationDisconnect | |
| 11 | TetheringStationEnumerate | |
| 12 | TetheringStationFreeMemory | |
| 13 | TetheringStationInitialize | |
| 14 | TetheringStationRegisterForNotification | |
| 15 | TetheringStationUnregisterForNotification |
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 | ; | |
| 6 | LIBRARY "THEMECPL.dll" | |
| 7 | EXPORTS | |
| 8 | OpenThemeActionW |
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 | ; | |
| 6 | LIBRARY "THEMESERVICE.dll" | |
| 7 | EXPORTS | |
| 8 | ThemeServiceMain |
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 | ; | |
| 6 | LIBRARY "TimeBrokerClient.dll" | |
| 7 | EXPORTS | |
| 8 | TbCreateCEvent | |
| 9 | TbCreateEvent | |
| 10 | TbDeleteCEvent | |
| 11 | TbDeleteEvent | |
| 12 | TbEnumerateCEvents | |
| 13 | TbEnumerateEvents | |
| 14 | TbQueryCEventData | |
| 15 | TbQueryEventData | |
| 16 | TbUpdateCEvent | |
| 17 | TbUpdateEvent |
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 | ; | |
| 6 | LIBRARY "TimeBrokerServer.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "TIMEDATEMUICALLBACK.dll" | |
| 7 | EXPORTS | |
| 8 | OnMachineUILanguageSwitch |
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 | ; | |
| 6 | LIBRARY "tlscsp.dll" | |
| 7 | EXPORTS | |
| 8 | TLSCspInit | |
| 9 | TLSCspShutdown | |
| 10 | TLSGetTSCertificate | |
| 11 | TLSFreeTSCertificate | |
| 12 | LsCsp_GetServerData | |
| 13 | LsCsp_EncryptHwid | |
| 14 | LsCsp_DecryptEnvelopedData | |
| 15 | LsCsp_StoreSecret | |
| 16 | LsCsp_RetrieveSecret | |
| 17 | TLSCspStartInstallCertificateThread |
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 | ; | |
| 6 | LIBRARY "tpmcc.dll" | |
| 7 | EXPORTS | |
| 8 | CHOOSER2_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 | ; | |
| 6 | LIBRARY "tpmvsc.dll" | |
| 7 | EXPORTS | |
| 8 | TpmVCardCreate | |
| 9 | TpmVCardCreateInProc | |
| 10 | TpmVCardDestroy | |
| 11 | TpmVCardDestroyInProc | |
| 12 | VCardAuthenticatePin | |
| 13 | VCardChangePin | |
| 14 | VCardClose | |
| 15 | VCardCreateKey | |
| 16 | VCardDeauthenticate | |
| 17 | VCardDecrypt | |
| 18 | VCardDeinitialize | |
| 19 | VCardDeleteKey | |
| 20 | VCardEncrypt | |
| 21 | VCardExportRsaPubKey | |
| 22 | VCardGetChallenge | |
| 23 | VCardGetKeyType | |
| 24 | VCardGetPinLength | |
| 25 | VCardGetRemainingRetryCount | |
| 26 | VCardGetTransportKeyAlg | |
| 27 | VCardImportRsaKey | |
| 28 | VCardImportSymKey | |
| 29 | VCardInitialize | |
| 30 | VCardInvalidateChallenge | |
| 31 | VCardOpen | |
| 32 | VCardResetPin | |
| 33 | VCardSetResponse | |
| 34 | VCardSignHash | |
| 35 | VCardUnblockPin |
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 | ; | |
| 6 | LIBRARY "TQUERY.DLL" | |
| 7 | EXPORTS | |
| 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 | |
| 22 | CreatePropMapperStorage | |
| 23 | CreateSecurityStoreStorage | |
| 24 | ?EnumerateProperty@CPidLookupTable@@QAAKAAVCFullPropSpec@@AAI@Z | |
| 25 | ExceptInitialize | |
| 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 | |
| 75 | UseLowFragmentationHeap | |
| 76 | ?ciDelete@@YAXPAX@Z | |
| 77 | ?ciNew@@YAPAXI@Z | |
| 78 | ?ciNewNoThrow@@YAPAXI@Z | |
| 79 | AccessDebugTracer | |
| 80 | AccessRetailTracer | |
| 81 | CIState | |
| 82 | ExternPropagateEventToOpenQueries | |
| 83 | ForceMasterMerge | |
| 84 | PerfmonClose | |
| 85 | PerfmonCollect | |
| 86 | PerfmonIDXClose | |
| 87 | PerfmonIDXCollect | |
| 88 | PerfmonIDXOpen | |
| 89 | PerfmonOpen | |
| 90 | RetailTracerDisable | |
| 91 | RetailTracerEnable | |
| 92 | RetailTracerReleaseAll |
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 | ; | |
| 6 | LIBRARY "trkwks.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "tsgQec.dll" | |
| 7 | EXPORTS | |
| 8 | InitializeQec | |
| 9 | UninitializeQec |
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 | ; | |
| 6 | LIBRARY "TSPKG.dll" | |
| 7 | EXPORTS | |
| 8 | SpLsaModeInitialize | |
| 9 | SpUserModeInitialize |
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 | ; | |
| 6 | LIBRARY "TsPnPRdrCoInstaller.dll" | |
| 7 | EXPORTS | |
| 8 | TsPnPRdrCoInstaller |
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 | ; | |
| 6 | LIBRARY "TsUsbGDCoInstaller.dll" | |
| 7 | EXPORTS | |
| 8 | TsUsbGDCoInstaller |
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 | ; | |
| 6 | LIBRARY "TsUsbRedirectionGroupPolicyExtension.dll" | |
| 7 | EXPORTS | |
| 8 | ExecuteProcessGroupPolicyEx | |
| 9 | ExecuteProcessGroupPolicyExWithError | |
| 10 | ProcessGroupPolicyEx |
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 | ; | |
| 6 | LIBRARY "tsworkspace.dll" | |
| 7 | EXPORTS | |
| 8 | RADCUISupportCreateSubscriptionClient | |
| 9 | RADCUISupportCreateDiscoveryStrategy | |
| 10 | RADCProcessGroupPolicyEx | |
| 11 | TaskUpdateWorkspaces2 | |
| 12 | TaskUpdateWorkspaces | |
| 13 | TaskUpdateWorkspacesIfNeeded | |
| 14 | WorkspaceSilentSetupW | |
| 15 | WorkspaceStatusNotify2 | |
| 16 | WorkspaceStatusNotify |
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 | ; | |
| 6 | LIBRARY "TtlsAuth.dll" | |
| 7 | EXPORTS | |
| 8 | EapPeerFreeErrorMemory | |
| 9 | EapPeerFreeMemory | |
| 10 | EapPeerGetInfo |
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 | ; | |
| 6 | LIBRARY "TtlsCfg.dll" | |
| 7 | EXPORTS | |
| 8 | EapPeerCreateMethodConfiguration | |
| 9 | EapPeerGetIdentityPageGuid | |
| 10 | EapPeerGetMethodProperties | |
| 11 | EapPeerGetNextPageGuid | |
| 12 | EapPeerConfigBlob2Xml | |
| 13 | EapPeerConfigXml2Blob | |
| 14 | EapPeerCredentialsXml2Blob | |
| 15 | EapPeerFreeErrorMemory | |
| 16 | EapPeerFreeMemory | |
| 17 | EapPeerGetConfigBlobAndUserBlob | |
| 18 | EapPeerInvokeConfigUI | |
| 19 | EapPeerInvokeIdentityUI | |
| 20 | EapPeerInvokeInteractiveUI | |
| 21 | EapPeerQueryCredentialInputFields | |
| 22 | EapPeerQueryInteractiveUIInputFields | |
| 23 | EapPeerQueryUIBlobFromInteractiveUIInputFields | |
| 24 | EapPeerQueryUserBlobFromCredentialInputFields |
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 | ; | |
| 6 | LIBRARY "TTLSEXT.dll" | |
| 7 | EXPORTS | |
| 8 | TtlsExt_FreeMemoryExt | |
| 9 | TtlsExt_GetConfigCacheOnlyCertValidation | |
| 10 | TtlsExt_GetConfigForceNotDomainJoined | |
| 11 | TtlsExt_GetContextData | |
| 12 | TtlsExt_GetUserCredentials | |
| 13 | TtlsExt_InvokeServerAuthentication | |
| 14 | TtlsExt_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 | ; | |
| 6 | LIBRARY "twinapi.appcore.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | ord_2 @2 | |
| 10 | ord_3 @3 | |
| 11 | ord_4 @4 | |
| 12 | ord_5 @5 | |
| 13 | ord_6 @6 | |
| 14 | ord_7 @7 | |
| 15 | ord_8 @8 | |
| 16 | ord_9 @9 | |
| 17 | ord_10 @10 | |
| 18 | ord_11 @11 | |
| 19 | ord_12 @12 | |
| 20 | BiChangeApplicationStateForPackageName | |
| 21 | BiChangeApplicationStateForPsmKey | |
| 22 | BiChangeSessionState | |
| 23 | BiGetActiveBackgroundTasksEvent | |
| 24 | BiIsApplicationTerminateSensitive | |
| 25 | BiNotifyNewSession | |
| 26 | BiPtActivateDeferredWorkItem | |
| 27 | BiPtActivateInBackground | |
| 28 | BiPtActivateWorkItem | |
| 29 | BiPtAssociateActivationProxy | |
| 30 | BiPtAssociateApplicationExtensionClass | |
| 31 | BiPtCancelWorkItem | |
| 32 | BiPtCreateEventForPackageName | |
| 33 | BiPtDeleteEvent | |
| 34 | BiPtDisassociateWorkItem | |
| 35 | BiPtEnumerateBrokeredEvents | |
| 36 | BiPtEnumerateWorkItemsForPackageName | |
| 37 | BiPtFreeMemory | |
| 38 | BiPtQueryBrokeredEvent | |
| 39 | BiPtQuerySystemStateBroadcastChannels | |
| 40 | BiPtQueryWorkItem | |
| 41 | BiPtSignalEvent | |
| 42 | BiPtSignalMultipleEvents | |
| 43 | BiResetActiveSessionForPackage | |
| 44 | BiSetActiveSessionForPackage | |
| 45 | BiUpdateLockScreenApplications | |
| 46 | PsmApplyTaskCompletion | |
| 47 | PsmBlockAppStateChangeCompletion | |
| 48 | PsmDisconnect | |
| 49 | PsmIsProcessInApplication | |
| 50 | PsmQueryApplicationInformation | |
| 51 | PsmQueryApplicationInterferenceCount | |
| 52 | PsmQueryApplicationList | |
| 53 | PsmQueryApplicationProperties | |
| 54 | PsmQueryApplicationResourceUsage | |
| 55 | PsmQueryCurrentAppState | |
| 56 | PsmQueryMaxMemoryUsage | |
| 57 | PsmQueryProcessList | |
| 58 | PsmQueryTaskCompletionInformation | |
| 59 | PsmRegisterAppStateChangeNotification | |
| 60 | PsmRegisterApplicationNotification | |
| 61 | PsmRegisterDynamicProcess | |
| 62 | PsmRegisterKeyNotification | |
| 63 | PsmSetApplicationPriority | |
| 64 | PsmSetApplicationProperties | |
| 65 | PsmSetApplicationState | |
| 66 | PsmShutdownApplication | |
| 67 | PsmUnblockAppStateChangeCompletion | |
| 68 | PsmUnregisterAppStateChangeNotification | |
| 69 | PsmWaitForAppResume | |
| 70 | RegisterAppStateChangeNotification | |
| 71 | UnregisterAppStateChangeNotification |
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 | ; | |
| 6 | LIBRARY "UBPM.dll" | |
| 7 | EXPORTS | |
| 8 | UbpmAcquireJobBackgroundMode | |
| 9 | UbpmApiBufferFree | |
| 10 | UbpmCloseTriggerConsumer | |
| 11 | UbpmInitialize | |
| 12 | UbpmOpenTriggerConsumer | |
| 13 | UbpmReleaseJobBackgroundMode | |
| 14 | UbpmSessionStateChanged | |
| 15 | UbpmTerminate | |
| 16 | UbpmTriggerConsumerConfigure | |
| 17 | UbpmTriggerConsumerControl | |
| 18 | UbpmTriggerConsumerControlNotifications | |
| 19 | UbpmTriggerConsumerQueryStatus | |
| 20 | UbpmTriggerConsumerRegister | |
| 21 | UbpmTriggerConsumerSetStatePublishingSecurity | |
| 22 | UbpmTriggerConsumerUnregister |
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 | ; | |
| 6 | LIBRARY "udhisapi.DLL" | |
| 7 | EXPORTS | |
| 8 | GetExtensionVersion | |
| 9 | HttpExtensionProc | |
| 10 | TerminateExtension |
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 | ; | |
| 6 | LIBRARY "UEXFAT.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 19 | Chkdsk | |
| 20 | ChkdskEx | |
| 21 | Format | |
| 22 | FormatEx | |
| 23 | ?FreeChain@FAT@@QAAXPAVEXFATBITMAP@@K@Z | |
| 24 | GetFilesystemInformation | |
| 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 | |
| 37 | Recover | |
| 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 | ; | |
| 6 | LIBRARY "UFAT.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 58 | Chkdsk | |
| 59 | ChkdskEx | |
| 60 | Format | |
| 61 | FormatEx | |
| 62 | GetFilesystemInformation | |
| 63 | Recover |
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 | ; | |
| 6 | LIBRARY "UIAutomationCore.DLL" | |
| 7 | EXPORTS | |
| 8 | DockPattern_SetDockPosition | |
| 9 | ExpandCollapsePattern_Collapse | |
| 10 | ExpandCollapsePattern_Expand | |
| 11 | GridPattern_GetItem | |
| 12 | InvokePattern_Invoke | |
| 13 | ItemContainerPattern_FindItemByProperty | |
| 14 | LegacyIAccessiblePattern_DoDefaultAction | |
| 15 | LegacyIAccessiblePattern_GetIAccessible | |
| 16 | LegacyIAccessiblePattern_Select | |
| 17 | LegacyIAccessiblePattern_SetValue | |
| 18 | MultipleViewPattern_GetViewName | |
| 19 | MultipleViewPattern_SetCurrentView | |
| 20 | RangeValuePattern_SetValue | |
| 21 | ScrollItemPattern_ScrollIntoView | |
| 22 | ScrollPattern_Scroll | |
| 23 | ScrollPattern_SetScrollPercent | |
| 24 | SelectionItemPattern_AddToSelection | |
| 25 | SelectionItemPattern_RemoveFromSelection | |
| 26 | SelectionItemPattern_Select | |
| 27 | SynchronizedInputPattern_Cancel | |
| 28 | SynchronizedInputPattern_StartListening | |
| 29 | TextPattern_GetSelection | |
| 30 | TextPattern_GetVisibleRanges | |
| 31 | TextPattern_RangeFromChild | |
| 32 | TextPattern_RangeFromPoint | |
| 33 | TextPattern_get_DocumentRange | |
| 34 | TextPattern_get_SupportedTextSelection | |
| 35 | TextRange_AddToSelection | |
| 36 | TextRange_Clone | |
| 37 | TextRange_Compare | |
| 38 | TextRange_CompareEndpoints | |
| 39 | TextRange_ExpandToEnclosingUnit | |
| 40 | TextRange_FindAttribute | |
| 41 | TextRange_FindText | |
| 42 | TextRange_GetAttributeValue | |
| 43 | TextRange_GetBoundingRectangles | |
| 44 | TextRange_GetChildren | |
| 45 | TextRange_GetEnclosingElement | |
| 46 | TextRange_GetText | |
| 47 | TextRange_Move | |
| 48 | TextRange_MoveEndpointByRange | |
| 49 | TextRange_MoveEndpointByUnit | |
| 50 | TextRange_RemoveFromSelection | |
| 51 | TextRange_ScrollIntoView | |
| 52 | TextRange_Select | |
| 53 | TogglePattern_Toggle | |
| 54 | TransformPattern_Move | |
| 55 | TransformPattern_Resize | |
| 56 | TransformPattern_Rotate | |
| 57 | UiaAddEvent | |
| 58 | UiaClientsAreListening | |
| 59 | UiaDisconnectAllProviders | |
| 60 | UiaDisconnectProvider | |
| 61 | UiaEventAddWindow | |
| 62 | UiaEventRemoveWindow | |
| 63 | UiaFind | |
| 64 | UiaGetErrorDescription | |
| 65 | UiaGetPatternProvider | |
| 66 | UiaGetPropertyValue | |
| 67 | UiaGetReservedMixedAttributeValue | |
| 68 | UiaGetReservedNotSupportedValue | |
| 69 | UiaGetRootNode | |
| 70 | UiaGetRuntimeId | |
| 71 | UiaGetUpdatedCache | |
| 72 | UiaHPatternObjectFromVariant | |
| 73 | UiaHTextRangeFromVariant | |
| 74 | UiaHUiaNodeFromVariant | |
| 75 | UiaHasServerSideProvider | |
| 76 | UiaHostProviderFromHwnd | |
| 77 | UiaIAccessibleFromProvider | |
| 78 | UiaLookupId | |
| 79 | UiaNavigate | |
| 80 | UiaNodeFromFocus | |
| 81 | UiaNodeFromHandle | |
| 82 | UiaNodeFromPoint | |
| 83 | UiaNodeFromProvider | |
| 84 | UiaNodeRelease | |
| 85 | UiaPatternRelease | |
| 86 | UiaProviderForNonClient | |
| 87 | UiaProviderFromIAccessible | |
| 88 | UiaRaiseAsyncContentLoadedEvent | |
| 89 | UiaRaiseAutomationEvent | |
| 90 | UiaRaiseAutomationPropertyChangedEvent | |
| 91 | UiaRaiseStructureChangedEvent | |
| 92 | UiaRaiseTextEditTextChangedEvent | |
| 93 | UiaRegisterProviderCallback | |
| 94 | UiaRemoveEvent | |
| 95 | UiaReturnRawElementProvider | |
| 96 | UiaSetFocus | |
| 97 | UiaTextRangeRelease | |
| 98 | ValuePattern_SetValue | |
| 99 | VirtualizedItemPattern_Realize | |
| 100 | WindowPattern_Close | |
| 101 | WindowPattern_SetWindowVisualState | |
| 102 | WindowPattern_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 | ; | |
| 6 | LIBRARY "uireng.dll" | |
| 7 | EXPORTS | |
| 8 | UirGetScreenComment | |
| 9 | UirInitializeEngine | |
| 10 | UirPauseRecordingSession | |
| 11 | UirResumeRecordingSession | |
| 12 | UirStartRecordingSession | |
| 13 | UirStopRecordingSession | |
| 14 | UirUninitializeEngine | |
| 15 | UirUpdateRecordingSession |
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 | ; | |
| 6 | LIBRARY "umpnpmgr.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "umpo.dll" | |
| 7 | EXPORTS | |
| 8 | PtrUmpoOnAcPower DATA | |
| 9 | PtrUmpoProviderHandle DATA | |
| 10 | UmpoAllocate | |
| 11 | UmpoAlpcSendPowerMessage | |
| 12 | UmpoFree | |
| 13 | UmpoGetActiveScheme | |
| 14 | UmpoInternalCloseUserPowerKey | |
| 15 | UmpoInternalConvertGuidToString | |
| 16 | UmpoInternalDataAccessorToString | |
| 17 | UmpoInternalGetActiveSchemeGuid | |
| 18 | UmpoInternalOpenGUIDSubKey | |
| 19 | UmpoInternalOpenUserPowerKey | |
| 20 | UmpoMain | |
| 21 | UmpoNotificationHandler | |
| 22 | UmpoNotifyKernelAllPowerPolicyChanged | |
| 23 | UmpoNotifyKernelPowerPolicyChanged | |
| 24 | UmpoWriteToUserPowerKey |
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 | ; | |
| 6 | LIBRARY "umpoext.dll" | |
| 7 | EXPORTS | |
| 8 | ExtensionInit |
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 | ; | |
| 6 | LIBRARY "UMRDP.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "UNATTEND.DLL" | |
| 7 | EXPORTS | |
| 8 | UnattendAddResults | |
| 9 | UnattendCleanup | |
| 10 | UnattendCtxAddOrModifyNodeText | |
| 11 | UnattendCtxBeginModify | |
| 12 | UnattendCtxCancelModify | |
| 13 | UnattendCtxCleanup | |
| 14 | UnattendCtxCommitModify | |
| 15 | UnattendCtxCompareNodes | |
| 16 | UnattendCtxDeserialize | |
| 17 | UnattendCtxDeserializeBuffer | |
| 18 | UnattendCtxDeserializeFile | |
| 19 | UnattendCtxDeserializeString | |
| 20 | UnattendCtxDeserializeWithResults | |
| 21 | UnattendCtxEnumGet | |
| 22 | UnattendCtxEnumOrderedSubNodes | |
| 23 | UnattendCtxGetCount | |
| 24 | UnattendCtxGetCountByNode | |
| 25 | UnattendCtxGetEnumValue | |
| 26 | UnattendCtxGetEnumValueByNode | |
| 27 | UnattendCtxGetExpandedString | |
| 28 | UnattendCtxGetExpandedStringByNode | |
| 29 | UnattendCtxGetFlag | |
| 30 | UnattendCtxGetFlagByNode | |
| 31 | UnattendCtxGetLong | |
| 32 | UnattendCtxGetLongByNode | |
| 33 | UnattendCtxGetNodeAttr | |
| 34 | UnattendCtxGetNodeChild | |
| 35 | UnattendCtxGetNodeValue | |
| 36 | UnattendCtxGetRootNode | |
| 37 | UnattendCtxGetShowUI | |
| 38 | UnattendCtxGetShowUIFromNode | |
| 39 | UnattendCtxGetString | |
| 40 | UnattendCtxGetStringByNode | |
| 41 | UnattendCtxGetUlong | |
| 42 | UnattendCtxGetUlongByNode | |
| 43 | UnattendCtxOpenNode | |
| 44 | UnattendCtxOpenNodeByNode | |
| 45 | UnattendCtxPrettyPrint | |
| 46 | UnattendCtxRemoveAttr | |
| 47 | UnattendCtxRemoveNode | |
| 48 | UnattendCtxReplaceMatchedNodesWithText | |
| 49 | UnattendCtxReplaceNode | |
| 50 | UnattendCtxSerialize | |
| 51 | UnattendCtxSerializeSettingsStream | |
| 52 | UnattendCtxSerializeToBuffer | |
| 53 | UnattendCtxSerializeToBufferFromNode | |
| 54 | UnattendCtxSerializeToStream | |
| 55 | UnattendCtxSerializeToStreamFromNode | |
| 56 | UnattendCtxSetNodeName | |
| 57 | UnattendCtxSetString | |
| 58 | UnattendCtxSetStringByNode | |
| 59 | UnattendCtxSpliceTrees | |
| 60 | UnattendDeserializeWithResults | |
| 61 | UnattendEnumFree | |
| 62 | UnattendFindAnswerFile | |
| 63 | UnattendFindAnswerFileSkipPantherFolder | |
| 64 | UnattendFindAnswerFileWithResults | |
| 65 | UnattendFindFileFromCmdLine | |
| 66 | UnattendFormatPath | |
| 67 | UnattendFreeNode | |
| 68 | UnattendFreeResults | |
| 69 | UnattendFreeSetting | |
| 70 | UnattendGetCount | |
| 71 | UnattendGetFirstFailingSetting | |
| 72 | UnattendGetFlag | |
| 73 | UnattendGetImplicitContext | |
| 74 | UnattendGetString | |
| 75 | UnattendIsNodeValid | |
| 76 | UnattendIsPassUnusedInCtx | |
| 77 | UnattendMarkPassUsedInCtx | |
| 78 | UnattendUsedPassesExistInCtx |
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 | ; | |
| 6 | LIBRARY "UNTFS.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 148 | SetOriginalVolumeName | |
| 149 | ?SetSparse@NTFS_ATTRIBUTE@@UAAEVBIG_INT@@PAVNTFS_BITMAP@@E@Z | |
| 150 | ?SetVolumeFlag@NTFS_SA@@QAAEGPAE@Z | |
| 151 | SetWriteViewCacheVolumeName | |
| 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 | |
| 159 | Chkdsk | |
| 160 | ChkdskEx | |
| 161 | CreateFormatCorruptionRecordContext | |
| 162 | DeleteFormatCorruptionRecordContext | |
| 163 | Extend | |
| 164 | Format | |
| 165 | FormatCorruptionRecordA | |
| 166 | FormatCorruptionRecordW | |
| 167 | FormatEx | |
| 168 | GetFilesystemInformation | |
| 169 | Recover |
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 | ; | |
| 6 | LIBRARY "upnphost.dll" | |
| 7 | EXPORTS | |
| 8 | SvchostPushServiceGlobals | |
| 9 | ServiceMain |
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 | ; | |
| 6 | LIBRARY "usbceip.dll" | |
| 7 | EXPORTS | |
| 8 | UsbCeip_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 | ; | |
| 6 | LIBRARY "USBPERF.dll" | |
| 7 | EXPORTS | |
| 8 | CloseUsbPerformanceData | |
| 9 | CollectUsbPerformanceData | |
| 10 | OpenUsbPerformanceData |
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 | ; | |
| 6 | LIBRARY "usbui.dll" | |
| 7 | EXPORTS | |
| 8 | CPlApplet | |
| 9 | USBControllerBandwidthPage | |
| 10 | USBControllerPropPageProvider | |
| 11 | USBDevicePropPageProvider | |
| 12 | USBErrorHandler | |
| 13 | USBHubPowerPage | |
| 14 | USBHubPropPageProvider | |
| 15 | UsbControlPanelApplet |
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 | ; | |
| 6 | LIBRARY "USERINITEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CreateExplorerSessionKey | |
| 9 | DisplayMessageAndExitWindows | |
| 10 | ImmWorker | |
| 11 | IsSubDesktopSession | |
| 12 | IsTSAppCompatOn | |
| 13 | LoadRemoteFontsAndInitMiscWorker | |
| 14 | PerformXForestLogonCheck | |
| 15 | ProcesRemoteSessionInitialCommand | |
| 16 | ProcessTermSrvIniFiles | |
| 17 | SetShellDesktopSwitchEvent | |
| 18 | SetupHotKeyForKeyboardLayout | |
| 19 | UserinitExt |
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 | ; | |
| 6 | LIBRARY "UserLanguageProfileCallback.dll" | |
| 7 | EXPORTS | |
| 8 | OnUserProfileChanged |
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 | ; | |
| 6 | LIBRARY "UUDF.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 20 | Chkdsk | |
| 21 | ChkdskEx | |
| 22 | Format | |
| 23 | FormatEx | |
| 24 | GetFilesystemInformation | |
| 25 | Recover |
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 | ; | |
| 6 | LIBRARY "UXINIT.dll" | |
| 7 | EXPORTS | |
| 8 | ThemeWatchForStart | |
| 9 | ord_2 @2 | |
| 10 | ThemeUserLogoff | |
| 11 | ThemeUserLogon | |
| 12 | ThemeUserStartShell | |
| 13 | ThemeUserTSReconnect | |
| 14 | ThemesOnCreateSession | |
| 15 | ThemesOnTerminateSession | |
| 16 | ThemesOnLogon | |
| 17 | ThemesOnLogoff | |
| 18 | ThemesOnReconnect | |
| 19 | ThemesOnDisconnect | |
| 20 | ThemesOnEarlyCreateSession |
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 | ; | |
| 6 | LIBRARY "van.dll" | |
| 7 | EXPORTS | |
| 8 | HideVAN | |
| 9 | ShowVAN | |
| 10 | ShutdownVAN | |
| 11 | VanUIManager_CreateInstance | |
| 12 | RunVANW |
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 | ; | |
| 6 | LIBRARY "VAULTCLI.dll" | |
| 7 | EXPORTS | |
| 8 | ord_101 @101 | |
| 9 | ord_102 @102 | |
| 10 | ord_103 @103 | |
| 11 | ord_104 @104 | |
| 12 | ord_105 @105 | |
| 13 | ord_106 @106 | |
| 14 | VaultAddItem | |
| 15 | VaultCloseVault | |
| 16 | VaultCreateItemType | |
| 17 | VaultDeleteItemType | |
| 18 | VaultEnumerateItemTypes | |
| 19 | VaultEnumerateItems | |
| 20 | VaultEnumerateVaults | |
| 21 | VaultFindItems | |
| 22 | VaultFree | |
| 23 | VaultGetInformation | |
| 24 | VaultGetItem | |
| 25 | VaultGetItemType | |
| 26 | VaultOpenVault | |
| 27 | VaultRemoveItem |
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 | ; | |
| 6 | LIBRARY "vaultsvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | VaultSvcStopCallback |
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 | ; | |
| 6 | LIBRARY "vdsutil.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 249 | VdsDisableCOMFatalExceptionHandling |
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 | ; | |
| 6 | LIBRARY "VERIFIER.dll" | |
| 7 | EXPORTS | |
| 8 | AVrfAPILookupCallback | |
| 9 | VerifierAddFreeMemoryCallback | |
| 10 | VerifierCheckPageHeapAllocation | |
| 11 | VerifierCreateRpcPageHeap | |
| 12 | VerifierDeleteFreeMemoryCallback | |
| 13 | VerifierDestroyRpcPageHeap | |
| 14 | VerifierDisableFaultInjectionExclusionRange | |
| 15 | VerifierDisableFaultInjectionTargetRange | |
| 16 | VerifierEnableFaultInjectionExclusionRange | |
| 17 | VerifierEnableFaultInjectionTargetRange | |
| 18 | VerifierEnumerateResource | |
| 19 | VerifierForceNormalHeap | |
| 20 | VerifierGetInfoForException | |
| 21 | VerifierGetMemoryForDump | |
| 22 | VerifierGetPropertyValueByName | |
| 23 | VerifierGetProviderHelper | |
| 24 | VerifierIsAddressInAnyPageHeap | |
| 25 | VerifierIsCurrentThreadHoldingLocks | |
| 26 | VerifierIsDllEntryActive | |
| 27 | VerifierIsPerUserSettingsEnabled | |
| 28 | VerifierQueryRuntimeFlags | |
| 29 | VerifierRedirectStopFunctions | |
| 30 | VerifierSetFaultInjectionProbability | |
| 31 | VerifierSetFlags | |
| 32 | VerifierSetRuntimeFlags | |
| 33 | VerifierStopMessage |
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 | ; | |
| 6 | LIBRARY "VPNIKE.DLL" | |
| 7 | EXPORTS | |
| 8 | InitializeProtocolEngine | |
| 9 | InitializeServerProtocolEngine | |
| 10 | SendMessageToProtocolEngine | |
| 11 | UninitializeProtocolEngine | |
| 12 | UninitializeServerProtocolEngine |
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 | ; | |
| 6 | LIBRARY "VPNIKEAPI.DLL" | |
| 7 | EXPORTS | |
| 8 | CancelProcessEapAuthPacket | |
| 9 | CloseTunnel | |
| 10 | CreateTunnel | |
| 11 | FreeConfigurationPayloadBuffer | |
| 12 | FreeEapAuthAttributes | |
| 13 | FreeEapAuthPacket | |
| 14 | FreeIDPayloadBuffer | |
| 15 | FreeTrafficSelectors | |
| 16 | GetConfigurationPayloadRequest | |
| 17 | GetIDPayload | |
| 18 | GetNewTunnelID | |
| 19 | GetServerEapAuthRequestPacket | |
| 20 | GetTrafficSelectorsRequest | |
| 21 | NewRasIncomingCall | |
| 22 | ProcessAdditionalAddressNotification | |
| 23 | ProcessConfigurationPayloadReply | |
| 24 | ProcessConfigurationPayloadRequest | |
| 25 | ProcessEapAuthPacket | |
| 26 | ProcessTrafficSelectorsReply | |
| 27 | ProcessTrafficSelectorsRequest | |
| 28 | QueryEapAuthAttributes | |
| 29 | RemoveTrafficSelectors | |
| 30 | TunnelAuthDone | |
| 31 | UpdateTunnel |
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 | ; | |
| 6 | LIBRARY "VssTrace.DLL" | |
| 7 | EXPORTS | |
| 8 | VssTraceInitialize | |
| 9 | VssTraceUninitialize | |
| 10 | VssTraceMessage | |
| 11 | VssTraceBinary | |
| 12 | VssIsTracingEnabled | |
| 13 | VssIsTracingEnabledPerThread | |
| 14 | VssIsTracingEnabledOnModule | |
| 15 | VssIsTracingEnabledOnFunction | |
| 16 | VssSetTracingContextPerThread | |
| 17 | VssGetTracingContextPerThread | |
| 18 | VssGetTracingSequenceNumber | |
| 19 | VssGetTracingModuleInfo | |
| 20 | AssertFail | |
| 21 | VssSetDebugReport | |
| 22 | VssIsKernelDebuggerAttached |
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 | ; | |
| 6 | LIBRARY "wbiosrvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals | |
| 10 | WbioEasPolicyBiometricLogonsAllowed | |
| 11 | WbioEasPolicyCheckProtectionAndRemoveCredentials |
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 | ; | |
| 6 | LIBRARY "Wcl.dll" | |
| 7 | EXPORTS | |
| 8 | CreateCommandLine | |
| 9 | FailFast | |
| 10 | GetRuntimeException | |
| 11 | t10 DATA | |
| 12 | t100 DATA | |
| 13 | t100.m0 | |
| 14 | t101 DATA | |
| 15 | t101.m0 | |
| 16 | t101.m1 | |
| 17 | t102 DATA | |
| 18 | t103.m19 | |
| 19 | t104 DATA | |
| 20 | t105 DATA | |
| 21 | t106 DATA | |
| 22 | t107 DATA | |
| 23 | t107.m0 | |
| 24 | t108 DATA | |
| 25 | t109 DATA | |
| 26 | t109.m0 | |
| 27 | t109.m1 | |
| 28 | t109.m2 | |
| 29 | t109.m3 | |
| 30 | t109.m4 | |
| 31 | t11 DATA | |
| 32 | t11.m0 | |
| 33 | t11.m1 | |
| 34 | t110 DATA | |
| 35 | t110.m0 | |
| 36 | t110.m1 | |
| 37 | t110.m2 | |
| 38 | t111 DATA | |
| 39 | t111.m0 | |
| 40 | t111.m1 | |
| 41 | t111.m2 | |
| 42 | t111.m3 | |
| 43 | t111.m4 | |
| 44 | t111.m5 | |
| 45 | t111.m6 | |
| 46 | t111.m7 | |
| 47 | t112 DATA | |
| 48 | t112.m0 | |
| 49 | t112.m1 | |
| 50 | t112.m2 | |
| 51 | t113 DATA | |
| 52 | t113.m0 | |
| 53 | t113.m1 | |
| 54 | t113.m2 | |
| 55 | t114 DATA | |
| 56 | t115 DATA | |
| 57 | t116 DATA | |
| 58 | t117.m0 | |
| 59 | t118 DATA | |
| 60 | t119 DATA | |
| 61 | t12 DATA | |
| 62 | t12.m0 | |
| 63 | t12.m1 | |
| 64 | t12.m10 | |
| 65 | t12.m11 | |
| 66 | t12.m12 | |
| 67 | t12.m13 | |
| 68 | t12.m14 | |
| 69 | t12.m15 | |
| 70 | t12.m2 | |
| 71 | t12.m3 | |
| 72 | t12.m4 | |
| 73 | t12.m5 | |
| 74 | t12.m6 | |
| 75 | t12.m7 | |
| 76 | t12.m8 | |
| 77 | t12.m9 | |
| 78 | t120 DATA | |
| 79 | t121 DATA | |
| 80 | t122 DATA | |
| 81 | t123 DATA | |
| 82 | t123.m0 | |
| 83 | t123.m1 | |
| 84 | t124 DATA | |
| 85 | t125 DATA | |
| 86 | t126 DATA | |
| 87 | t127 DATA | |
| 88 | t128 DATA | |
| 89 | t128.m0 | |
| 90 | t129 DATA | |
| 91 | t13 DATA | |
| 92 | t13.m0 | |
| 93 | t13.m1 | |
| 94 | t13.m2 | |
| 95 | t13.m3 | |
| 96 | t13.m4 | |
| 97 | t13.m5 | |
| 98 | t130 DATA | |
| 99 | t131 DATA | |
| 100 | t131.m0 | |
| 101 | t132 DATA | |
| 102 | t132.m0 | |
| 103 | t133 DATA | |
| 104 | t133.m0 | |
| 105 | t134 DATA | |
| 106 | t134.m0 | |
| 107 | t135 DATA | |
| 108 | t135.m0 | |
| 109 | t136 DATA | |
| 110 | t136.m0 | |
| 111 | t137 DATA | |
| 112 | t137.m0 | |
| 113 | t138 DATA | |
| 114 | t138.m0 | |
| 115 | t139 DATA | |
| 116 | t139.m0 | |
| 117 | t14 DATA | |
| 118 | t14.m0 | |
| 119 | t14.m1 | |
| 120 | t14.m10 | |
| 121 | t14.m11 | |
| 122 | t14.m12 | |
| 123 | t14.m13 | |
| 124 | t14.m14 | |
| 125 | t14.m15 | |
| 126 | t14.m16 | |
| 127 | t14.m17 | |
| 128 | t14.m18 | |
| 129 | t14.m19 | |
| 130 | t14.m2 | |
| 131 | t14.m20 | |
| 132 | t14.m21 | |
| 133 | t14.m22 | |
| 134 | t14.m23 | |
| 135 | t14.m24 | |
| 136 | t14.m25 | |
| 137 | t14.m26 | |
| 138 | t14.m27 | |
| 139 | t14.m28 | |
| 140 | t14.m29 | |
| 141 | t14.m3 | |
| 142 | t14.m30 | |
| 143 | t14.m31 | |
| 144 | t14.m32 | |
| 145 | t14.m33 | |
| 146 | t14.m34 | |
| 147 | t14.m4 | |
| 148 | t14.m5 | |
| 149 | t14.m6 | |
| 150 | t14.m7 | |
| 151 | t14.m8 | |
| 152 | t14.m9 | |
| 153 | t140 DATA | |
| 154 | t140.m0 | |
| 155 | t141 DATA | |
| 156 | t141.m0 | |
| 157 | t142 DATA | |
| 158 | t142.m0 | |
| 159 | t142.m1 | |
| 160 | t143.m0 | |
| 161 | t143.m1 | |
| 162 | t143.m15 | |
| 163 | t143.m16 | |
| 164 | t143.m17 | |
| 165 | t143.m19 | |
| 166 | t143.m2 | |
| 167 | t143.m21 | |
| 168 | t143.m3 | |
| 169 | t143.m4 | |
| 170 | t143.m5 | |
| 171 | t143.m8 | |
| 172 | t143.m9 | |
| 173 | t144 DATA | |
| 174 | t145.m0 | |
| 175 | t145.m1 | |
| 176 | t146.m0 | |
| 177 | t146.m1 | |
| 178 | t146.m2 | |
| 179 | t146.m3 | |
| 180 | t146.m4 | |
| 181 | t147 DATA | |
| 182 | t147.m0 | |
| 183 | t148 DATA | |
| 184 | t148.m0 | |
| 185 | t148.m1 | |
| 186 | t148.m2 | |
| 187 | t148.m3 | |
| 188 | t148.m4 | |
| 189 | t148.m5 | |
| 190 | t148.m6 | |
| 191 | t148.m7 | |
| 192 | t148.m8 | |
| 193 | t148.m9 | |
| 194 | t149 DATA | |
| 195 | t149.m0 | |
| 196 | t15 DATA | |
| 197 | t15.m0 | |
| 198 | t15.m1 | |
| 199 | t15.m2 | |
| 200 | t15.m3 | |
| 201 | t15.m4 | |
| 202 | t15.m5 | |
| 203 | t15.m6 | |
| 204 | t15.m7 | |
| 205 | t15.m8 | |
| 206 | t150 DATA | |
| 207 | t150.m0 | |
| 208 | t151 DATA | |
| 209 | t151.m0 | |
| 210 | t151.m1 | |
| 211 | t152.m0 | |
| 212 | t152.m1 | |
| 213 | t152.m2 | |
| 214 | t152.m3 | |
| 215 | t152.m4 | |
| 216 | t152.m5 | |
| 217 | t153 DATA | |
| 218 | t154 DATA | |
| 219 | t154.m0 | |
| 220 | t154.m1 | |
| 221 | t155 DATA | |
| 222 | t155.m0 | |
| 223 | t155.m1 | |
| 224 | t155.m2 | |
| 225 | t155.m3 | |
| 226 | t155.m4 | |
| 227 | t155.m5 | |
| 228 | t156 DATA | |
| 229 | t156.m0 | |
| 230 | t156.m1 | |
| 231 | t156.m2 | |
| 232 | t156.m3 | |
| 233 | t156.m4 | |
| 234 | t156.m5 | |
| 235 | t157 DATA | |
| 236 | t157.m0 | |
| 237 | t157.m1 | |
| 238 | t157.m2 | |
| 239 | t157.m3 | |
| 240 | t157.m4 | |
| 241 | t157.m5 | |
| 242 | t158 DATA | |
| 243 | t159 DATA | |
| 244 | t159.m0 | |
| 245 | t159.m1 | |
| 246 | t16 DATA | |
| 247 | t16.m0 | |
| 248 | t16.m1 | |
| 249 | t16.m2 | |
| 250 | t16.m3 | |
| 251 | t16.m4 | |
| 252 | t16.m5 | |
| 253 | t16.m7 | |
| 254 | t16.m8 | |
| 255 | t160.m0 | |
| 256 | t160.m1 | |
| 257 | t160.m10 | |
| 258 | t160.m11 | |
| 259 | t160.m12 | |
| 260 | t160.m13 | |
| 261 | t160.m14 | |
| 262 | t160.m15 | |
| 263 | t160.m2 | |
| 264 | t160.m3 | |
| 265 | t160.m4 | |
| 266 | t160.m5 | |
| 267 | t160.m6 | |
| 268 | t160.m7 | |
| 269 | t160.m8 | |
| 270 | t160.m9 | |
| 271 | t161 DATA | |
| 272 | t161.m0 | |
| 273 | t162 DATA | |
| 274 | t163 DATA | |
| 275 | t163.m0 | |
| 276 | t164 DATA | |
| 277 | t165 DATA | |
| 278 | t166 DATA | |
| 279 | t166.m0 | |
| 280 | t167 DATA | |
| 281 | t167.m0 | |
| 282 | t168 DATA | |
| 283 | t168.m0 | |
| 284 | t168.m1 | |
| 285 | t169 DATA | |
| 286 | t169.m0 | |
| 287 | t169.m1 | |
| 288 | t17 DATA | |
| 289 | t17.m0 | |
| 290 | t17.m1 | |
| 291 | t17.m2 | |
| 292 | t170 DATA | |
| 293 | t170.m0 | |
| 294 | t171 DATA | |
| 295 | t171.m0 | |
| 296 | t171.m1 | |
| 297 | t171.m2 | |
| 298 | t171.m3 | |
| 299 | t171.m4 | |
| 300 | t171.m5 | |
| 301 | t172 DATA | |
| 302 | t172.m0 | |
| 303 | t177 DATA | |
| 304 | t177.m0 | |
| 305 | t178 DATA | |
| 306 | t178.m0 | |
| 307 | t179 DATA | |
| 308 | t179.m0 | |
| 309 | t18 DATA | |
| 310 | t18.m0 | |
| 311 | t18.m1 | |
| 312 | t18.m10 | |
| 313 | t18.m11 | |
| 314 | t18.m12 | |
| 315 | t18.m13 | |
| 316 | t18.m14 | |
| 317 | t18.m15 | |
| 318 | t18.m16 | |
| 319 | t18.m17 | |
| 320 | t18.m2 | |
| 321 | t18.m3 | |
| 322 | t18.m4 | |
| 323 | t18.m5 | |
| 324 | t18.m6 | |
| 325 | t18.m7 | |
| 326 | t18.m8 | |
| 327 | t18.m9 | |
| 328 | t180 DATA | |
| 329 | t180.m0 | |
| 330 | t181 DATA | |
| 331 | t181.m0 | |
| 332 | t182 DATA | |
| 333 | t182.m0 | |
| 334 | t183 DATA | |
| 335 | t183.m0 | |
| 336 | t185 DATA | |
| 337 | t185.m0 | |
| 338 | t186 DATA | |
| 339 | t186.m0 | |
| 340 | t187 DATA | |
| 341 | t187.m0 | |
| 342 | t188 DATA | |
| 343 | t188.m0 | |
| 344 | t188.m1 | |
| 345 | t189 DATA | |
| 346 | t190 DATA | |
| 347 | t190.m0 | |
| 348 | t191 DATA | |
| 349 | t191.m0 | |
| 350 | t192.m0 | |
| 351 | t193 DATA | |
| 352 | t193.m0 | |
| 353 | t194 DATA | |
| 354 | t195 DATA | |
| 355 | t195.m0 | |
| 356 | t196 DATA | |
| 357 | t197 DATA | |
| 358 | t198 DATA | |
| 359 | t199 DATA | |
| 360 | t199.m0 | |
| 361 | t2 DATA | |
| 362 | t2.m0 | |
| 363 | t2.m1 | |
| 364 | t2.m2 | |
| 365 | t2.m3 | |
| 366 | t20.m0 | |
| 367 | t200 DATA | |
| 368 | t201 DATA | |
| 369 | t201.m0 | |
| 370 | t201.m1 | |
| 371 | t201.m2 | |
| 372 | t201.m3 | |
| 373 | t201.m4 | |
| 374 | t201.m5 | |
| 375 | t202 DATA | |
| 376 | t203 DATA | |
| 377 | t204 DATA | |
| 378 | t204.m0 | |
| 379 | t205 DATA | |
| 380 | t205.m0 | |
| 381 | t206 DATA | |
| 382 | t206.m0 | |
| 383 | t207 DATA | |
| 384 | t207.m0 | |
| 385 | t208 DATA | |
| 386 | t208.m0 | |
| 387 | t209 DATA | |
| 388 | t21.m0 | |
| 389 | t21.m1 | |
| 390 | t21.m2 | |
| 391 | t21.m3 | |
| 392 | t210 DATA | |
| 393 | t211 DATA | |
| 394 | t212 DATA | |
| 395 | t212.m0 | |
| 396 | t213 DATA | |
| 397 | t213.m0 | |
| 398 | t214 DATA | |
| 399 | t214.m0 | |
| 400 | t215 DATA | |
| 401 | t215.m0 | |
| 402 | t216 DATA | |
| 403 | t216.m0 | |
| 404 | t216.m1 | |
| 405 | t217 DATA | |
| 406 | t218 DATA | |
| 407 | t219 DATA | |
| 408 | t219.m0 | |
| 409 | t219.m1 | |
| 410 | t219.m2 | |
| 411 | t22.m0 | |
| 412 | t22.m1 | |
| 413 | t220 DATA | |
| 414 | t220.m0 | |
| 415 | t220.m1 | |
| 416 | t220.m2 | |
| 417 | t220.m3 | |
| 418 | t220.m4 | |
| 419 | t220.m5 | |
| 420 | t221 DATA | |
| 421 | t222 DATA | |
| 422 | t222.m0 | |
| 423 | t223 DATA | |
| 424 | t223.m0 | |
| 425 | t224 DATA | |
| 426 | t224.m0 | |
| 427 | t224.m1 | |
| 428 | t224.m10 | |
| 429 | t224.m11 | |
| 430 | t224.m2 | |
| 431 | t224.m4 | |
| 432 | t224.m5 | |
| 433 | t224.m6 | |
| 434 | t224.m7 | |
| 435 | t224.m8 | |
| 436 | t224.m9 | |
| 437 | t225 DATA | |
| 438 | t226.m0 | |
| 439 | t226.m1 | |
| 440 | t226.m2 | |
| 441 | t226.m3 | |
| 442 | t227 DATA | |
| 443 | t227.m0 | |
| 444 | t228 DATA | |
| 445 | t228.m0 | |
| 446 | t228.m1 | |
| 447 | t228.m10 | |
| 448 | t228.m11 | |
| 449 | t228.m12 | |
| 450 | t228.m13 | |
| 451 | t228.m14 | |
| 452 | t228.m15 | |
| 453 | t228.m16 | |
| 454 | t228.m17 | |
| 455 | t228.m18 | |
| 456 | t228.m19 | |
| 457 | t228.m2 | |
| 458 | t228.m20 | |
| 459 | t228.m21 | |
| 460 | t228.m22 | |
| 461 | t228.m23 | |
| 462 | t228.m24 | |
| 463 | t228.m25 | |
| 464 | t228.m26 | |
| 465 | t228.m27 | |
| 466 | t228.m28 | |
| 467 | t228.m29 | |
| 468 | t228.m3 | |
| 469 | t228.m30 | |
| 470 | t228.m31 | |
| 471 | t228.m32 | |
| 472 | t228.m33 | |
| 473 | t228.m34 | |
| 474 | t228.m35 | |
| 475 | t228.m36 | |
| 476 | t228.m37 | |
| 477 | t228.m38 | |
| 478 | t228.m39 | |
| 479 | t228.m4 | |
| 480 | t228.m5 | |
| 481 | t228.m6 | |
| 482 | t228.m7 | |
| 483 | t228.m8 | |
| 484 | t228.m9 | |
| 485 | t228static_gcdata DATA | |
| 486 | t23 DATA | |
| 487 | t23.m0 | |
| 488 | t23.m1 | |
| 489 | t230 DATA | |
| 490 | t231 DATA | |
| 491 | t232 DATA | |
| 492 | t233 DATA | |
| 493 | t234 DATA | |
| 494 | t235 DATA | |
| 495 | t236 DATA | |
| 496 | t237 DATA | |
| 497 | t238 DATA | |
| 498 | t238.m0 | |
| 499 | t238.m1 | |
| 500 | t239 DATA | |
| 501 | t239.m0 | |
| 502 | t239.m1 | |
| 503 | t239.m2 | |
| 504 | t239.m3 | |
| 505 | t239.m4 | |
| 506 | t239.m5 | |
| 507 | t239.m6 | |
| 508 | t239.m7 | |
| 509 | t24 DATA | |
| 510 | t240 DATA | |
| 511 | t240.m0 | |
| 512 | t240.m1 | |
| 513 | t240.m2 | |
| 514 | t240.m3 | |
| 515 | t240.m4 | |
| 516 | t240.m5 | |
| 517 | t240.m6 | |
| 518 | t240.m7 | |
| 519 | t241 DATA | |
| 520 | t241.m0 | |
| 521 | t241.m1 | |
| 522 | t241.m2 | |
| 523 | t241.m3 | |
| 524 | t241.m4 | |
| 525 | t241.m5 | |
| 526 | t241.m6 | |
| 527 | t241.m7 | |
| 528 | t241.m8 | |
| 529 | t242 DATA | |
| 530 | t243 DATA | |
| 531 | t244 DATA | |
| 532 | t245.m0 | |
| 533 | t245.m1 | |
| 534 | t245.m2 | |
| 535 | t245.m3 | |
| 536 | t245.m4 | |
| 537 | t246 DATA | |
| 538 | t247 DATA | |
| 539 | t248 DATA | |
| 540 | t249 DATA | |
| 541 | t249.m0 | |
| 542 | t249.m1 | |
| 543 | t249.m2 | |
| 544 | t249.m3 | |
| 545 | t249.m4 | |
| 546 | t249.m5 | |
| 547 | t25 DATA | |
| 548 | t250 DATA | |
| 549 | t250.m0 | |
| 550 | t250.m1 | |
| 551 | t251 DATA | |
| 552 | t251.m0 | |
| 553 | t251.m1 | |
| 554 | t252 DATA | |
| 555 | t253 DATA | |
| 556 | t254 DATA | |
| 557 | t255 DATA | |
| 558 | t256 DATA | |
| 559 | t257 DATA | |
| 560 | t258 DATA | |
| 561 | t259 DATA | |
| 562 | t26 DATA | |
| 563 | t26.m0 | |
| 564 | t26.m1 | |
| 565 | t26.m2 | |
| 566 | t26.m3 | |
| 567 | t26.m4 | |
| 568 | t26.m5 | |
| 569 | t260 DATA | |
| 570 | t260.m0 | |
| 571 | t260.m1 | |
| 572 | t260.m2 | |
| 573 | t260.m3 | |
| 574 | t261 DATA | |
| 575 | t262 DATA | |
| 576 | t262.m0 | |
| 577 | t262.m1 | |
| 578 | t263 DATA | |
| 579 | t263.m0 | |
| 580 | t263.m1 | |
| 581 | t263.m2 | |
| 582 | t263.m3 | |
| 583 | t263.m4 | |
| 584 | t263.m5 | |
| 585 | t263.m6 | |
| 586 | t264 DATA | |
| 587 | t264.m0 | |
| 588 | t264.m1 | |
| 589 | t264.m2 | |
| 590 | t264.m3 | |
| 591 | t265 DATA | |
| 592 | t265.m0 | |
| 593 | t265.m1 | |
| 594 | t265.m2 | |
| 595 | t265.m3 | |
| 596 | t265.m4 | |
| 597 | t265.m5 | |
| 598 | t265.m6 | |
| 599 | t266 DATA | |
| 600 | t267.m0 | |
| 601 | t267.m1 | |
| 602 | t267.m2 | |
| 603 | t267.m3 | |
| 604 | t267.m4 | |
| 605 | t267.m5 | |
| 606 | t267.m6 | |
| 607 | t267.m7 | |
| 608 | t267.m8 | |
| 609 | t268 DATA | |
| 610 | t269 DATA | |
| 611 | t27 DATA | |
| 612 | t270 DATA | |
| 613 | t271 DATA | |
| 614 | t272 DATA | |
| 615 | t272.m0 | |
| 616 | t272.m1 | |
| 617 | t272.m2 | |
| 618 | t272.m3 | |
| 619 | t272.m4 | |
| 620 | t272.m5 | |
| 621 | t273.m0 | |
| 622 | t273.m1 | |
| 623 | t273.m2 | |
| 624 | t273.m3 | |
| 625 | t273.m4 | |
| 626 | t273.m5 | |
| 627 | t274 DATA | |
| 628 | t274.m0 | |
| 629 | t274.m1 | |
| 630 | t275 DATA | |
| 631 | t275.m0 | |
| 632 | t276 DATA | |
| 633 | t276.m0 | |
| 634 | t277 DATA | |
| 635 | t277.m0 | |
| 636 | t278 DATA | |
| 637 | t278.m0 | |
| 638 | t279 DATA | |
| 639 | t279.m0 | |
| 640 | t28 DATA | |
| 641 | t280 DATA | |
| 642 | t280.m0 | |
| 643 | t281 DATA | |
| 644 | t281.m0 | |
| 645 | t282 DATA | |
| 646 | t282.m0 | |
| 647 | t283 DATA | |
| 648 | t283.m0 | |
| 649 | t283.m1 | |
| 650 | t284 DATA | |
| 651 | t285 DATA | |
| 652 | t286 DATA | |
| 653 | t287 DATA | |
| 654 | t288 DATA | |
| 655 | t289 DATA | |
| 656 | t29 DATA | |
| 657 | t290 DATA | |
| 658 | t290.m0 | |
| 659 | t290.m1 | |
| 660 | t290.m10 | |
| 661 | t290.m11 | |
| 662 | t290.m12 | |
| 663 | t290.m13 | |
| 664 | t290.m14 | |
| 665 | t290.m15 | |
| 666 | t290.m16 | |
| 667 | t290.m17 | |
| 668 | t290.m18 | |
| 669 | t290.m19 | |
| 670 | t290.m2 | |
| 671 | t290.m20 | |
| 672 | t290.m21 | |
| 673 | t290.m22 | |
| 674 | t290.m23 | |
| 675 | t290.m3 | |
| 676 | t290.m4 | |
| 677 | t290.m5 | |
| 678 | t290.m6 | |
| 679 | t290.m7 | |
| 680 | t290.m8 | |
| 681 | t290.m9 | |
| 682 | t291 DATA | |
| 683 | t291.m0 | |
| 684 | t291.m1 | |
| 685 | t291.m2 | |
| 686 | t292 DATA | |
| 687 | t293 DATA | |
| 688 | t294 DATA | |
| 689 | t294.m0 | |
| 690 | t295 DATA | |
| 691 | t295.m0 | |
| 692 | t295.m1 | |
| 693 | t295.m2 | |
| 694 | t295.m3 | |
| 695 | t295.m4 | |
| 696 | t295.m5 | |
| 697 | t295.m6 | |
| 698 | t295.m7 | |
| 699 | t296 DATA | |
| 700 | t297 DATA | |
| 701 | t297.m0 | |
| 702 | t297.m1 | |
| 703 | t297.m2 | |
| 704 | t297.m3 | |
| 705 | t297.m4 | |
| 706 | t297.m5 | |
| 707 | t297.m6 | |
| 708 | t298 DATA | |
| 709 | t298.m0 | |
| 710 | t298.m1 | |
| 711 | t298.m2 | |
| 712 | t298.m3 | |
| 713 | t298.m4 | |
| 714 | t298.m5 | |
| 715 | t299 DATA | |
| 716 | t3 DATA | |
| 717 | t30 DATA | |
| 718 | t300 DATA | |
| 719 | t300.m0 | |
| 720 | t300.m1 | |
| 721 | t300.m2 | |
| 722 | t300.m3 | |
| 723 | t300.m4 | |
| 724 | t300.m5 | |
| 725 | t300.m6 | |
| 726 | t300.m7 | |
| 727 | t301 DATA | |
| 728 | t301.m0 | |
| 729 | t301.m1 | |
| 730 | t301.m2 | |
| 731 | t301.m3 | |
| 732 | t301.m4 | |
| 733 | t301.m5 | |
| 734 | t301.m6 | |
| 735 | t302 DATA | |
| 736 | t302.m0 | |
| 737 | t303 DATA | |
| 738 | t303.m0 | |
| 739 | t303.m1 | |
| 740 | t304 DATA | |
| 741 | t304.m0 | |
| 742 | t305 DATA | |
| 743 | t305.m0 | |
| 744 | t305.m1 | |
| 745 | t305.m3 | |
| 746 | t306 DATA | |
| 747 | t306.m0 | |
| 748 | t307 DATA | |
| 749 | t307.m0 | |
| 750 | t307.m1 | |
| 751 | t308 DATA | |
| 752 | t308.m0 | |
| 753 | t308.m1 | |
| 754 | t308.m2 | |
| 755 | t309 DATA | |
| 756 | t309.m0 | |
| 757 | t309.m1 | |
| 758 | t309.m2 | |
| 759 | t309.m3 | |
| 760 | t309.m4 | |
| 761 | t31 DATA | |
| 762 | t310 DATA | |
| 763 | t311 DATA | |
| 764 | t311.m0 | |
| 765 | t311.m1 | |
| 766 | t311.m2 | |
| 767 | t311.m3 | |
| 768 | t311.m4 | |
| 769 | t311.m5 | |
| 770 | t311.m6 | |
| 771 | t311.m7 | |
| 772 | t312 DATA | |
| 773 | t313 DATA | |
| 774 | t313.m0 | |
| 775 | t313.m1 | |
| 776 | t313.m2 | |
| 777 | t313.m3 | |
| 778 | t314 DATA | |
| 779 | t315 DATA | |
| 780 | t316 DATA | |
| 781 | t317 DATA | |
| 782 | t318 DATA | |
| 783 | t318.m0 | |
| 784 | t318.m1 | |
| 785 | t319 DATA | |
| 786 | t319.m0 | |
| 787 | t32 DATA | |
| 788 | t32.m0 | |
| 789 | t32.m1 | |
| 790 | t32.m10 | |
| 791 | t32.m11 | |
| 792 | t32.m12 | |
| 793 | t32.m13 | |
| 794 | t32.m14 | |
| 795 | t32.m15 | |
| 796 | t32.m16 | |
| 797 | t32.m17 | |
| 798 | t32.m18 | |
| 799 | t32.m19 | |
| 800 | t32.m2 | |
| 801 | t32.m3 | |
| 802 | t32.m4 | |
| 803 | t32.m5 | |
| 804 | t32.m6 | |
| 805 | t32.m7 | |
| 806 | t32.m8 | |
| 807 | t32.m9 | |
| 808 | t320 DATA | |
| 809 | t320.m0 | |
| 810 | t320.m1 | |
| 811 | t321 DATA | |
| 812 | t321.m0 | |
| 813 | t322 DATA | |
| 814 | t322.m0 | |
| 815 | t323 DATA | |
| 816 | t323.m0 | |
| 817 | t324 DATA | |
| 818 | t324.m0 | |
| 819 | t325 DATA | |
| 820 | t325.m0 | |
| 821 | t325.m1 | |
| 822 | t326 DATA | |
| 823 | t326.m0 | |
| 824 | t327 DATA | |
| 825 | t327.m0 | |
| 826 | t328 DATA | |
| 827 | t328.m0 | |
| 828 | t328.m1 | |
| 829 | t328.m2 | |
| 830 | t328.m3 | |
| 831 | t329 DATA | |
| 832 | t329.m0 | |
| 833 | t33 DATA | |
| 834 | t330 DATA | |
| 835 | t330.m0 | |
| 836 | t330.m2 | |
| 837 | t330.m3 | |
| 838 | t330.m4 | |
| 839 | t330.m5 | |
| 840 | t331 DATA | |
| 841 | t332 DATA | |
| 842 | t332.m1 | |
| 843 | t332.m2 | |
| 844 | t332.m3 | |
| 845 | t332.m4 | |
| 846 | t333 DATA | |
| 847 | t334 DATA | |
| 848 | t335 DATA | |
| 849 | t335.m0 | |
| 850 | t335.m1 | |
| 851 | t336 DATA | |
| 852 | t337 DATA | |
| 853 | t337.m0 | |
| 854 | t337.m1 | |
| 855 | t337.m2 | |
| 856 | t337.m3 | |
| 857 | t337.m4 | |
| 858 | t337.m5 | |
| 859 | t337.m6 | |
| 860 | t337.m7 | |
| 861 | t338 DATA | |
| 862 | t339 DATA | |
| 863 | t34 DATA | |
| 864 | t340 DATA | |
| 865 | t341 DATA | |
| 866 | t342 DATA | |
| 867 | t343 DATA | |
| 868 | t344 DATA | |
| 869 | t345 DATA | |
| 870 | t349 DATA | |
| 871 | t35 DATA | |
| 872 | t35.m10 | |
| 873 | t35.m11 | |
| 874 | t35.m28 | |
| 875 | t35.m29 | |
| 876 | t35.m30 | |
| 877 | t35.m4 | |
| 878 | t350 DATA | |
| 879 | t351 DATA | |
| 880 | t352 DATA | |
| 881 | t354 DATA | |
| 882 | t354.m1 | |
| 883 | t355 DATA | |
| 884 | t356 DATA | |
| 885 | t357 DATA | |
| 886 | t359 DATA | |
| 887 | t359.m3 | |
| 888 | t35static_data DATA | |
| 889 | t36 DATA | |
| 890 | t36.m0 | |
| 891 | t36.m1 | |
| 892 | t36.m7 | |
| 893 | t36.m8 | |
| 894 | t36.m9 | |
| 895 | t360 DATA | |
| 896 | t360.m1 | |
| 897 | t361 DATA | |
| 898 | t361.m1 | |
| 899 | t362 DATA | |
| 900 | t362.m1 | |
| 901 | t363 DATA | |
| 902 | t363.m1 | |
| 903 | t363.m2 | |
| 904 | t369 DATA | |
| 905 | t37 DATA | |
| 906 | t370 DATA | |
| 907 | t371 DATA | |
| 908 | t372 DATA | |
| 909 | t373 DATA | |
| 910 | t374 DATA | |
| 911 | t375 DATA | |
| 912 | t376 DATA | |
| 913 | t377 DATA | |
| 914 | t378 DATA | |
| 915 | t379 DATA | |
| 916 | t38 DATA | |
| 917 | t380 DATA | |
| 918 | t381 DATA | |
| 919 | t382 DATA | |
| 920 | t383 DATA | |
| 921 | t39 DATA | |
| 922 | t4 DATA | |
| 923 | t4.m0 | |
| 924 | t4.m1 | |
| 925 | t4.m10 | |
| 926 | t4.m11 | |
| 927 | t4.m12 | |
| 928 | t4.m13 | |
| 929 | t4.m14 | |
| 930 | t4.m2 | |
| 931 | t4.m3 | |
| 932 | t4.m4 | |
| 933 | t4.m6 | |
| 934 | t4.m7 | |
| 935 | t4.m9 | |
| 936 | t40 DATA | |
| 937 | t40.m0 | |
| 938 | t40.m1 | |
| 939 | t40.m2 | |
| 940 | t41 DATA | |
| 941 | t41.m0 | |
| 942 | t416 DATA | |
| 943 | t417 DATA | |
| 944 | t418 DATA | |
| 945 | t419 DATA | |
| 946 | t42 DATA | |
| 947 | t42.m0 | |
| 948 | t42.m1 | |
| 949 | t42.m2 | |
| 950 | t42.m3 | |
| 951 | t42.m4 | |
| 952 | t42.m5 | |
| 953 | t42.m6 | |
| 954 | t420 DATA | |
| 955 | t421 DATA | |
| 956 | t422 DATA | |
| 957 | t423 DATA | |
| 958 | t424 DATA | |
| 959 | t425 DATA | |
| 960 | t426 DATA | |
| 961 | t427 DATA | |
| 962 | t428 DATA | |
| 963 | t429 DATA | |
| 964 | t43 DATA | |
| 965 | t43.m0 | |
| 966 | t43.m1 | |
| 967 | t43.m2 | |
| 968 | t43.m3 | |
| 969 | t43.m4 | |
| 970 | t43.m5 | |
| 971 | t43.m6 | |
| 972 | t43.m7 | |
| 973 | t430 DATA | |
| 974 | t431 DATA | |
| 975 | t432 DATA | |
| 976 | t433 DATA | |
| 977 | t434 DATA | |
| 978 | t435 DATA | |
| 979 | t436 DATA | |
| 980 | t437 DATA | |
| 981 | t438 DATA | |
| 982 | t44 DATA | |
| 983 | t44.m0 | |
| 984 | t44.m1 | |
| 985 | t44.m2 | |
| 986 | t44.m3 | |
| 987 | t44.m4 | |
| 988 | t442 DATA | |
| 989 | t442.m1 | |
| 990 | t442.m2 | |
| 991 | t443 DATA | |
| 992 | t443.m1 | |
| 993 | t443.m2 | |
| 994 | t444 DATA | |
| 995 | t445 DATA | |
| 996 | t446 DATA | |
| 997 | t45 DATA | |
| 998 | t450 DATA | |
| 999 | t451 DATA | |
| 1000 | t454 DATA | |
| 1001 | t456 DATA | |
| 1002 | t457 DATA | |
| 1003 | t458 DATA | |
| 1004 | t459 DATA | |
| 1005 | t459.m1 | |
| 1006 | t459.m2 | |
| 1007 | t46 DATA | |
| 1008 | t460 DATA | |
| 1009 | t461 DATA | |
| 1010 | t464 DATA | |
| 1011 | t465 DATA | |
| 1012 | t466 DATA | |
| 1013 | t466.m1 | |
| 1014 | t466.m2 | |
| 1015 | t466.m3 | |
| 1016 | t467 DATA | |
| 1017 | t468 DATA | |
| 1018 | t469 DATA | |
| 1019 | t47 DATA | |
| 1020 | t474 DATA | |
| 1021 | t475 DATA | |
| 1022 | t476 DATA | |
| 1023 | t476.m6 | |
| 1024 | t476.m7 | |
| 1025 | t477 DATA | |
| 1026 | t478 DATA | |
| 1027 | t478.m2 | |
| 1028 | t478.m3 | |
| 1029 | t479 DATA | |
| 1030 | t48 DATA | |
| 1031 | t480 DATA | |
| 1032 | t480.m5 | |
| 1033 | t480.m6 | |
| 1034 | t481 DATA | |
| 1035 | t482 DATA | |
| 1036 | t482.m1 | |
| 1037 | t483 DATA | |
| 1038 | t483.m1 | |
| 1039 | t484 DATA | |
| 1040 | t484.m1 | |
| 1041 | t485 DATA | |
| 1042 | t485.m1 | |
| 1043 | t487 DATA | |
| 1044 | t488 DATA | |
| 1045 | t489 DATA | |
| 1046 | t49 DATA | |
| 1047 | t490 DATA | |
| 1048 | t491 DATA | |
| 1049 | t492 DATA | |
| 1050 | t493 DATA | |
| 1051 | t494 DATA | |
| 1052 | t495 DATA | |
| 1053 | t496 DATA | |
| 1054 | t498 DATA | |
| 1055 | t499 DATA | |
| 1056 | t5 DATA | |
| 1057 | t5.m0 | |
| 1058 | t50 DATA | |
| 1059 | t500 DATA | |
| 1060 | t501 DATA | |
| 1061 | t502 DATA | |
| 1062 | t502.m1 | |
| 1063 | t503 DATA | |
| 1064 | t503.m1 | |
| 1065 | t503.m2 | |
| 1066 | t503.m3 | |
| 1067 | t504 DATA | |
| 1068 | t505 DATA | |
| 1069 | t505.m1 | |
| 1070 | t506 DATA | |
| 1071 | t507 DATA | |
| 1072 | t508 DATA | |
| 1073 | t51 DATA | |
| 1074 | t52.m0 | |
| 1075 | t52.m1 | |
| 1076 | t52.m2 | |
| 1077 | t52.m3 | |
| 1078 | t52.m4 | |
| 1079 | t52.m5 | |
| 1080 | t52.m6 | |
| 1081 | t52.m7 | |
| 1082 | t52.m8 | |
| 1083 | t53 DATA | |
| 1084 | t53.m0 | |
| 1085 | t53.m1 | |
| 1086 | t53.m10 | |
| 1087 | t53.m11 | |
| 1088 | t53.m12 | |
| 1089 | t53.m13 | |
| 1090 | t53.m14 | |
| 1091 | t53.m2 | |
| 1092 | t53.m3 | |
| 1093 | t53.m4 | |
| 1094 | t53.m5 | |
| 1095 | t53.m6 | |
| 1096 | t53.m7 | |
| 1097 | t53.m8 | |
| 1098 | t53.m9 | |
| 1099 | t54 DATA | |
| 1100 | t54.m0 | |
| 1101 | t54.m1 | |
| 1102 | t54.m2 | |
| 1103 | t54.m3 | |
| 1104 | t54.m4 | |
| 1105 | t54.m5 | |
| 1106 | t55 DATA | |
| 1107 | t55.m0 | |
| 1108 | t55.m1 | |
| 1109 | t55.m10 | |
| 1110 | t55.m11 | |
| 1111 | t55.m12 | |
| 1112 | t55.m13 | |
| 1113 | t55.m14 | |
| 1114 | t55.m15 | |
| 1115 | t55.m16 | |
| 1116 | t55.m17 | |
| 1117 | t55.m18 | |
| 1118 | t55.m19 | |
| 1119 | t55.m2 | |
| 1120 | t55.m20 | |
| 1121 | t55.m21 | |
| 1122 | t55.m22 | |
| 1123 | t55.m23 | |
| 1124 | t55.m24 | |
| 1125 | t55.m25 | |
| 1126 | t55.m26 | |
| 1127 | t55.m27 | |
| 1128 | t55.m28 | |
| 1129 | t55.m29 | |
| 1130 | t55.m3 | |
| 1131 | t55.m30 | |
| 1132 | t55.m31 | |
| 1133 | t55.m32 | |
| 1134 | t55.m33 | |
| 1135 | t55.m34 | |
| 1136 | t55.m35 | |
| 1137 | t55.m36 | |
| 1138 | t55.m37 | |
| 1139 | t55.m38 | |
| 1140 | t55.m39 | |
| 1141 | t55.m4 | |
| 1142 | t55.m40 | |
| 1143 | t55.m41 | |
| 1144 | t55.m42 | |
| 1145 | t55.m43 | |
| 1146 | t55.m44 | |
| 1147 | t55.m45 | |
| 1148 | t55.m46 | |
| 1149 | t55.m47 | |
| 1150 | t55.m48 | |
| 1151 | t55.m49 | |
| 1152 | t55.m5 | |
| 1153 | t55.m50 | |
| 1154 | t55.m51 | |
| 1155 | t55.m52 | |
| 1156 | t55.m53 | |
| 1157 | t55.m54 | |
| 1158 | t55.m55 | |
| 1159 | t55.m56 | |
| 1160 | t55.m57 | |
| 1161 | t55.m58 | |
| 1162 | t55.m59 | |
| 1163 | t55.m6 | |
| 1164 | t55.m60 | |
| 1165 | t55.m61 | |
| 1166 | t55.m62 | |
| 1167 | t55.m63 | |
| 1168 | t55.m64 | |
| 1169 | t55.m65 | |
| 1170 | t55.m66 | |
| 1171 | t55.m67 | |
| 1172 | t55.m68 | |
| 1173 | t55.m69 | |
| 1174 | t55.m7 | |
| 1175 | t55.m70 | |
| 1176 | t55.m71 | |
| 1177 | t55.m72 | |
| 1178 | t55.m73 | |
| 1179 | t55.m74 | |
| 1180 | t55.m75 | |
| 1181 | t55.m8 | |
| 1182 | t55.m9 | |
| 1183 | t55.m99 | |
| 1184 | t56 DATA | |
| 1185 | t56.m10 | |
| 1186 | t56.m11 | |
| 1187 | t56.m37 | |
| 1188 | t56.m38 | |
| 1189 | t56.m4 | |
| 1190 | t56static_data DATA | |
| 1191 | t57 DATA | |
| 1192 | t57.m0 | |
| 1193 | t57.m1 | |
| 1194 | t57.m10 | |
| 1195 | t57.m11 | |
| 1196 | t57.m12 | |
| 1197 | t57.m13 | |
| 1198 | t57.m14 | |
| 1199 | t57.m15 | |
| 1200 | t57.m2 | |
| 1201 | t57.m3 | |
| 1202 | t57.m4 | |
| 1203 | t57.m5 | |
| 1204 | t57.m6 | |
| 1205 | t57.m7 | |
| 1206 | t57.m8 | |
| 1207 | t57.m9 | |
| 1208 | t58 DATA | |
| 1209 | t58.m0 | |
| 1210 | t58.m1 | |
| 1211 | t58.m2 | |
| 1212 | t58.m3 | |
| 1213 | t58.m4 | |
| 1214 | t58.m5 | |
| 1215 | t59 DATA | |
| 1216 | t59.m0 | |
| 1217 | t59.m1 | |
| 1218 | t59.m10 | |
| 1219 | t59.m11 | |
| 1220 | t59.m12 | |
| 1221 | t59.m13 | |
| 1222 | t59.m14 | |
| 1223 | t59.m15 | |
| 1224 | t59.m16 | |
| 1225 | t59.m17 | |
| 1226 | t59.m18 | |
| 1227 | t59.m19 | |
| 1228 | t59.m2 | |
| 1229 | t59.m20 | |
| 1230 | t59.m21 | |
| 1231 | t59.m22 | |
| 1232 | t59.m23 | |
| 1233 | t59.m24 | |
| 1234 | t59.m25 | |
| 1235 | t59.m26 | |
| 1236 | t59.m27 | |
| 1237 | t59.m28 | |
| 1238 | t59.m29 | |
| 1239 | t59.m3 | |
| 1240 | t59.m30 | |
| 1241 | t59.m31 | |
| 1242 | t59.m32 | |
| 1243 | t59.m33 | |
| 1244 | t59.m34 | |
| 1245 | t59.m35 | |
| 1246 | t59.m36 | |
| 1247 | t59.m4 | |
| 1248 | t59.m5 | |
| 1249 | t59.m6 | |
| 1250 | t59.m7 | |
| 1251 | t59.m8 | |
| 1252 | t59.m9 | |
| 1253 | t6 DATA | |
| 1254 | t6.m0 | |
| 1255 | t60 DATA | |
| 1256 | t60.m0 | |
| 1257 | t60.m1 | |
| 1258 | t60.m10 | |
| 1259 | t60.m11 | |
| 1260 | t60.m12 | |
| 1261 | t60.m13 | |
| 1262 | t60.m2 | |
| 1263 | t60.m3 | |
| 1264 | t60.m4 | |
| 1265 | t60.m5 | |
| 1266 | t60.m6 | |
| 1267 | t60.m7 | |
| 1268 | t60.m8 | |
| 1269 | t60.m9 | |
| 1270 | t61 DATA | |
| 1271 | t61.m0 | |
| 1272 | t61.m1 | |
| 1273 | t61.m2 | |
| 1274 | t61.m3 | |
| 1275 | t61.m4 | |
| 1276 | t61.m5 | |
| 1277 | t61.m6 | |
| 1278 | t62 DATA | |
| 1279 | t63 DATA | |
| 1280 | t64 DATA | |
| 1281 | t64.m0 | |
| 1282 | t64.m1 | |
| 1283 | t64.m4 | |
| 1284 | t64.m5 | |
| 1285 | t64.m6 | |
| 1286 | t64.m7 | |
| 1287 | t64.m8 | |
| 1288 | t65 DATA | |
| 1289 | t65.m0 | |
| 1290 | t65.m1 | |
| 1291 | t65.m10 | |
| 1292 | t65.m11 | |
| 1293 | t65.m12 | |
| 1294 | t65.m13 | |
| 1295 | t65.m14 | |
| 1296 | t65.m15 | |
| 1297 | t65.m16 | |
| 1298 | t65.m17 | |
| 1299 | t65.m18 | |
| 1300 | t65.m19 | |
| 1301 | t65.m2 | |
| 1302 | t65.m20 | |
| 1303 | t65.m3 | |
| 1304 | t65.m4 | |
| 1305 | t65.m5 | |
| 1306 | t65.m6 | |
| 1307 | t65.m7 | |
| 1308 | t65.m8 | |
| 1309 | t65.m9 | |
| 1310 | t66 DATA | |
| 1311 | t66.m0 | |
| 1312 | t66.m1 | |
| 1313 | t66.m2 | |
| 1314 | t66.m3 | |
| 1315 | t66.m4 | |
| 1316 | t66.m5 | |
| 1317 | t66.m6 | |
| 1318 | t66.m7 | |
| 1319 | t67 DATA | |
| 1320 | t68 DATA | |
| 1321 | t68.m0 | |
| 1322 | t68.m1 | |
| 1323 | t68.m2 | |
| 1324 | t68.m3 | |
| 1325 | t68.m4 | |
| 1326 | t68.m5 | |
| 1327 | t68.m6 | |
| 1328 | t68.m7 | |
| 1329 | t68.m8 | |
| 1330 | t69 DATA | |
| 1331 | t7 DATA | |
| 1332 | t7.m0 | |
| 1333 | t7.m1 | |
| 1334 | t7.m2 | |
| 1335 | t7.m3 | |
| 1336 | t7.m4 | |
| 1337 | t7.m5 | |
| 1338 | t7.m6 | |
| 1339 | t7.m7 | |
| 1340 | t7.m8 | |
| 1341 | t70.m0 | |
| 1342 | t70.m1 | |
| 1343 | t70.m11 | |
| 1344 | t70.m12 | |
| 1345 | t70.m13 | |
| 1346 | t70.m14 | |
| 1347 | t70.m15 | |
| 1348 | t70.m16 | |
| 1349 | t70.m2 | |
| 1350 | t70.m3 | |
| 1351 | t70.m4 | |
| 1352 | t70.m5 | |
| 1353 | t70.m7 | |
| 1354 | t70.m8 | |
| 1355 | t70.m9 | |
| 1356 | t71 DATA | |
| 1357 | t72 DATA | |
| 1358 | t72.m0 | |
| 1359 | t72.m1 | |
| 1360 | t73 DATA | |
| 1361 | t73.m0 | |
| 1362 | t73.m1 | |
| 1363 | t73.m2 | |
| 1364 | t74 DATA | |
| 1365 | t74.m0 | |
| 1366 | t74.m1 | |
| 1367 | t75 DATA | |
| 1368 | t75.m0 | |
| 1369 | t75.m1 | |
| 1370 | t75.m2 | |
| 1371 | t75.m3 | |
| 1372 | t75.m4 | |
| 1373 | t75.m5 | |
| 1374 | t76 DATA | |
| 1375 | t76.m0 | |
| 1376 | t76.m1 | |
| 1377 | t76.m2 | |
| 1378 | t76.m3 | |
| 1379 | t77 DATA | |
| 1380 | t77.m0 | |
| 1381 | t77.m1 | |
| 1382 | t78 DATA | |
| 1383 | t79 DATA | |
| 1384 | t8 DATA | |
| 1385 | t8.m0 | |
| 1386 | t8.m1 | |
| 1387 | t8.m11 | |
| 1388 | t8.m2 | |
| 1389 | t8.m3 | |
| 1390 | t8.m4 | |
| 1391 | t8.m7 | |
| 1392 | t80 DATA | |
| 1393 | t81 DATA | |
| 1394 | t82 DATA | |
| 1395 | t83 DATA | |
| 1396 | t84 DATA | |
| 1397 | t85 DATA | |
| 1398 | t86 DATA | |
| 1399 | t87 DATA | |
| 1400 | t88 DATA | |
| 1401 | t89 DATA | |
| 1402 | t9 DATA | |
| 1403 | t9.m0 | |
| 1404 | t90 DATA | |
| 1405 | t91 DATA | |
| 1406 | t91.m0 | |
| 1407 | t92 DATA | |
| 1408 | t93 DATA | |
| 1409 | t93.m0 | |
| 1410 | t93.m1 | |
| 1411 | t94 DATA | |
| 1412 | t94.m0 | |
| 1413 | t94.m1 | |
| 1414 | t95 DATA | |
| 1415 | t96 DATA | |
| 1416 | t97 DATA | |
| 1417 | t98 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 | ; | |
| 6 | LIBRARY "wclEtw.dll" | |
| 7 | EXPORTS | |
| 8 | t10 DATA | |
| 9 | t11 DATA | |
| 10 | t12 DATA | |
| 11 | t14 DATA | |
| 12 | t14.m0 | |
| 13 | t14.m1 | |
| 14 | t15 DATA | |
| 15 | t16 DATA | |
| 16 | t17 DATA | |
| 17 | t17.m0 | |
| 18 | t17.m1 | |
| 19 | t17.m2 | |
| 20 | t17.m3 | |
| 21 | t18 DATA | |
| 22 | t19 DATA | |
| 23 | t2 DATA | |
| 24 | t2.m0 | |
| 25 | t2.m1 | |
| 26 | t2.m10 | |
| 27 | t2.m11 | |
| 28 | t2.m12 | |
| 29 | t2.m13 | |
| 30 | t2.m14 | |
| 31 | t2.m15 | |
| 32 | t2.m16 | |
| 33 | t2.m2 | |
| 34 | t2.m3 | |
| 35 | t2.m4 | |
| 36 | t2.m5 | |
| 37 | t2.m6 | |
| 38 | t2.m7 | |
| 39 | t2.m8 | |
| 40 | t2.m9 | |
| 41 | t20 DATA | |
| 42 | t21 DATA | |
| 43 | t21.m0 | |
| 44 | t21.m1 | |
| 45 | t21.m2 | |
| 46 | t22 DATA | |
| 47 | t23 DATA | |
| 48 | t24 DATA | |
| 49 | t24.m0 | |
| 50 | t24.m1 | |
| 51 | t25 DATA | |
| 52 | t25.m0 | |
| 53 | t25.m2 | |
| 54 | t25.m3 | |
| 55 | t25.m4 | |
| 56 | t26 DATA | |
| 57 | t26.m0 | |
| 58 | t26.m1 | |
| 59 | t26.m2 | |
| 60 | t26.m3 | |
| 61 | t27 DATA | |
| 62 | t27.m0 | |
| 63 | t27.m1 | |
| 64 | t27.m2 | |
| 65 | t28 DATA | |
| 66 | t29 DATA | |
| 67 | t3 DATA | |
| 68 | t3.m0 | |
| 69 | t3.m5 | |
| 70 | t3.m6 | |
| 71 | t3.m8 | |
| 72 | t30 DATA | |
| 73 | t30.m0 | |
| 74 | t31 DATA | |
| 75 | t32 DATA | |
| 76 | t33 DATA | |
| 77 | t34 DATA | |
| 78 | t35 DATA | |
| 79 | t35.m1 | |
| 80 | t35.m2 | |
| 81 | t35.m3 | |
| 82 | t35.m4 | |
| 83 | t35.m5 | |
| 84 | t36 DATA | |
| 85 | t36.m2 | |
| 86 | t37 DATA | |
| 87 | t38 DATA | |
| 88 | t4 DATA | |
| 89 | t40 DATA | |
| 90 | t41 DATA | |
| 91 | t42 DATA | |
| 92 | t43 DATA | |
| 93 | t44 DATA | |
| 94 | t45 DATA | |
| 95 | t46 DATA | |
| 96 | t47 DATA | |
| 97 | t48 DATA | |
| 98 | t48.m1 | |
| 99 | t49 DATA | |
| 100 | t5 DATA | |
| 101 | t5.m0 | |
| 102 | t5.m1 | |
| 103 | t5.m10 | |
| 104 | t5.m11 | |
| 105 | t5.m12 | |
| 106 | t5.m13 | |
| 107 | t5.m14 | |
| 108 | t5.m15 | |
| 109 | t5.m16 | |
| 110 | t5.m17 | |
| 111 | t5.m18 | |
| 112 | t5.m19 | |
| 113 | t5.m2 | |
| 114 | t5.m20 | |
| 115 | t5.m21 | |
| 116 | t5.m22 | |
| 117 | t5.m3 | |
| 118 | t5.m4 | |
| 119 | t5.m5 | |
| 120 | t5.m6 | |
| 121 | t5.m7 | |
| 122 | t5.m8 | |
| 123 | t5.m9 | |
| 124 | t50 DATA | |
| 125 | t51 DATA | |
| 126 | t52 DATA | |
| 127 | t53 DATA | |
| 128 | t54 DATA | |
| 129 | t55 DATA | |
| 130 | t56 DATA | |
| 131 | t57 DATA | |
| 132 | t58 DATA | |
| 133 | t59 DATA | |
| 134 | t6 DATA | |
| 135 | t60 DATA | |
| 136 | t61 DATA | |
| 137 | t62 DATA | |
| 138 | t63 DATA | |
| 139 | t64 DATA | |
| 140 | t65 DATA | |
| 141 | t66 DATA | |
| 142 | t67 DATA | |
| 143 | t68 DATA | |
| 144 | t7 DATA | |
| 145 | t7.m0 | |
| 146 | t7.m1 | |
| 147 | t7.m2 | |
| 148 | t7.m3 | |
| 149 | t76 DATA | |
| 150 | t77 DATA | |
| 151 | t78 DATA | |
| 152 | t79 DATA | |
| 153 | t8 DATA | |
| 154 | t80 DATA | |
| 155 | t81 DATA | |
| 156 | t82 DATA | |
| 157 | t83 DATA | |
| 158 | t84 DATA | |
| 159 | t87 DATA | |
| 160 | t88 DATA | |
| 161 | t89 DATA | |
| 162 | t9 DATA | |
| 163 | t90 DATA | |
| 164 | t91 DATA | |
| 165 | t92 DATA | |
| 166 | t93 DATA | |
| 167 | t94 DATA | |
| 168 | t95 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 | ; | |
| 6 | LIBRARY "WclPowrProf.dll" | |
| 7 | EXPORTS | |
| 8 | t10 DATA | |
| 9 | t11 DATA | |
| 10 | t11.m0 | |
| 11 | t11.m1 | |
| 12 | t11.m2 | |
| 13 | t11.m3 | |
| 14 | t12 DATA | |
| 15 | t12.m0 | |
| 16 | t12.m1 | |
| 17 | t12.m10 | |
| 18 | t12.m11 | |
| 19 | t12.m12 | |
| 20 | t12.m2 | |
| 21 | t12.m3 | |
| 22 | t12.m4 | |
| 23 | t12.m5 | |
| 24 | t12.m6 | |
| 25 | t12.m7 | |
| 26 | t12.m8 | |
| 27 | t12.m9 | |
| 28 | t13 DATA | |
| 29 | t13.m0 | |
| 30 | t13.m1 | |
| 31 | t13.m10 | |
| 32 | t13.m11 | |
| 33 | t13.m12 | |
| 34 | t13.m13 | |
| 35 | t13.m2 | |
| 36 | t13.m3 | |
| 37 | t13.m4 | |
| 38 | t13.m5 | |
| 39 | t13.m6 | |
| 40 | t13.m7 | |
| 41 | t13.m8 | |
| 42 | t13.m9 | |
| 43 | t14 DATA | |
| 44 | t15 DATA | |
| 45 | t15.m0 | |
| 46 | t15.m1 | |
| 47 | t16 DATA | |
| 48 | t16.m0 | |
| 49 | t16.m1 | |
| 50 | t16.m2 | |
| 51 | t16.m3 | |
| 52 | t17 DATA | |
| 53 | t17.m0 | |
| 54 | t17.m1 | |
| 55 | t17.m2 | |
| 56 | t17.m3 | |
| 57 | t17.m4 | |
| 58 | t17.m5 | |
| 59 | t17.m6 | |
| 60 | t17.m7 | |
| 61 | t17.m8 | |
| 62 | t18 DATA | |
| 63 | t18.m0 | |
| 64 | t18.m1 | |
| 65 | t18.m10 | |
| 66 | t18.m11 | |
| 67 | t18.m12 | |
| 68 | t18.m13 | |
| 69 | t18.m14 | |
| 70 | t18.m15 | |
| 71 | t18.m2 | |
| 72 | t18.m3 | |
| 73 | t18.m4 | |
| 74 | t18.m5 | |
| 75 | t18.m6 | |
| 76 | t18.m7 | |
| 77 | t18.m8 | |
| 78 | t18.m9 | |
| 79 | t19 DATA | |
| 80 | t19.m0 | |
| 81 | t19.m1 | |
| 82 | t19.m2 | |
| 83 | t19.m3 | |
| 84 | t19.m4 | |
| 85 | t19.m5 | |
| 86 | t20.m0 | |
| 87 | t20.m1 | |
| 88 | t20.m2 | |
| 89 | t20.m3 | |
| 90 | t20.m4 | |
| 91 | t20.m5 | |
| 92 | t20.m6 | |
| 93 | t20.m7 | |
| 94 | t20.m8 | |
| 95 | t20.m9 | |
| 96 | t22 DATA | |
| 97 | t23 DATA | |
| 98 | t24 DATA | |
| 99 | t25 DATA | |
| 100 | t26 DATA | |
| 101 | t27 DATA | |
| 102 | t28 DATA | |
| 103 | t29 DATA | |
| 104 | t3 DATA | |
| 105 | t3.m0 | |
| 106 | t3.m1 | |
| 107 | t3.m10 | |
| 108 | t3.m11 | |
| 109 | t3.m12 | |
| 110 | t3.m13 | |
| 111 | t3.m14 | |
| 112 | t3.m15 | |
| 113 | t3.m16 | |
| 114 | t3.m2 | |
| 115 | t3.m3 | |
| 116 | t3.m4 | |
| 117 | t3.m5 | |
| 118 | t3.m6 | |
| 119 | t3.m7 | |
| 120 | t3.m8 | |
| 121 | t3.m9 | |
| 122 | t30 DATA | |
| 123 | t31 DATA | |
| 124 | t32 DATA | |
| 125 | t33 DATA | |
| 126 | t4 DATA | |
| 127 | t4.m0 | |
| 128 | t4.m1 | |
| 129 | t4.m2 | |
| 130 | t4.m3 | |
| 131 | t43 DATA | |
| 132 | t44 DATA | |
| 133 | t45 DATA | |
| 134 | t46 DATA | |
| 135 | t5 DATA | |
| 136 | t50 DATA | |
| 137 | t51 DATA | |
| 138 | t52 DATA | |
| 139 | t53 DATA | |
| 140 | t54 DATA | |
| 141 | t55 DATA | |
| 142 | t56 DATA | |
| 143 | t57 DATA | |
| 144 | t58 DATA | |
| 145 | t59 DATA | |
| 146 | t6 DATA | |
| 147 | t60 DATA | |
| 148 | t61 DATA | |
| 149 | t63 DATA | |
| 150 | t7 DATA | |
| 151 | t7.m0 | |
| 152 | t7.m1 | |
| 153 | t7.m2 | |
| 154 | t7.m3 | |
| 155 | t7.m4 | |
| 156 | t7.m5 | |
| 157 | t7.m6 | |
| 158 | t7.m7 | |
| 159 | t8 DATA | |
| 160 | t9 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 | ; | |
| 6 | LIBRARY "wclSqm.dll" | |
| 7 | EXPORTS | |
| 8 | t10 DATA | |
| 9 | t11 DATA | |
| 10 | t11.m2 | |
| 11 | t11.m3 | |
| 12 | t12 DATA | |
| 13 | t13 DATA | |
| 14 | t14 DATA | |
| 15 | t15 DATA | |
| 16 | t16 DATA | |
| 17 | t19 DATA | |
| 18 | t2 DATA | |
| 19 | t2.m0 | |
| 20 | t2.m1 | |
| 21 | t2.m2 | |
| 22 | t2.m3 | |
| 23 | t2.m4 | |
| 24 | t2.m5 | |
| 25 | t20 DATA | |
| 26 | t21 DATA | |
| 27 | t22 DATA | |
| 28 | t23 DATA | |
| 29 | t25 DATA | |
| 30 | t3.m0 | |
| 31 | t5 DATA | |
| 32 | t6 DATA | |
| 33 | t7 DATA | |
| 34 | t7.m0 | |
| 35 | t7.m1 | |
| 36 | t7.m10 | |
| 37 | t7.m11 | |
| 38 | t7.m12 | |
| 39 | t7.m13 | |
| 40 | t7.m14 | |
| 41 | t7.m15 | |
| 42 | t7.m16 | |
| 43 | t7.m17 | |
| 44 | t7.m2 | |
| 45 | t7.m3 | |
| 46 | t7.m4 | |
| 47 | t7.m5 | |
| 48 | t7.m6 | |
| 49 | t7.m7 | |
| 50 | t7.m8 | |
| 51 | t7.m9 | |
| 52 | t8 DATA | |
| 53 | t9 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 | ; | |
| 6 | LIBRARY "wclUnicode.dll" | |
| 7 | EXPORTS | |
| 8 | t2.m0 | |
| 9 | t2.m1 | |
| 10 | t2.m10 | |
| 11 | t2.m11 | |
| 12 | t2.m12 | |
| 13 | t2.m2 | |
| 14 | t2.m3 | |
| 15 | t2.m4 | |
| 16 | t2.m5 | |
| 17 | t2.m6 | |
| 18 | t2.m7 | |
| 19 | t2.m8 | |
| 20 | t2.m9 | |
| 21 | t3.m0 | |
| 22 | t3.m1 | |
| 23 | t3.m2 | |
| 24 | t3.m3 | |
| 25 | t3.m4 | |
| 26 | t3.m5 | |
| 27 | t4 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 | ; | |
| 6 | LIBRARY "wclWdi.dll" | |
| 7 | EXPORTS | |
| 8 | t10 DATA | |
| 9 | t11 DATA | |
| 10 | t12 DATA | |
| 11 | t16 DATA | |
| 12 | t17 DATA | |
| 13 | t2 DATA | |
| 14 | t2.m7 | |
| 15 | t2.m8 | |
| 16 | t3 DATA | |
| 17 | t3.m0 | |
| 18 | t3.m1 | |
| 19 | t4 DATA | |
| 20 | t4.m0 | |
| 21 | t4.m1 | |
| 22 | t4.m2 | |
| 23 | t5 DATA | |
| 24 | t7 DATA | |
| 25 | t8 DATA | |
| 26 | t9 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 | ; | |
| 6 | LIBRARY "Wcmcsp.dll" | |
| 7 | EXPORTS | |
| 8 | EthernetCspDeInit | |
| 9 | EthernetCspInit | |
| 10 | WlanCspDeInit | |
| 11 | WlanCspInit | |
| 12 | WwanCspDeInit | |
| 13 | WwanCspInit |
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 | ; | |
| 6 | LIBRARY "Wcmsvc.dll" | |
| 7 | EXPORTS | |
| 8 | CdeCancelOnDemandRequest | |
| 9 | CdeCloseOnDemandRequestHandle | |
| 10 | CdeOpenOnDemandRequestHandle | |
| 11 | CdeOpenOnDemandRequestHandleByWwanProfileName | |
| 12 | CdeQueryOnDemandRequestStateInfo | |
| 13 | CdeQueryParameter | |
| 14 | CdeSetParameter | |
| 15 | CdeStartOnDemandRequest | |
| 16 | SvchostPushServiceGlobals | |
| 17 | WcmSvcMain | |
| 18 | CdeGetEntireProfileList | |
| 19 | CdeGetProfileList | |
| 20 | CdeGetProfileListForInterface |
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 | ; | |
| 6 | LIBRARY "wcncsvc.dll" | |
| 7 | EXPORTS | |
| 8 | SvchostPushServiceGlobals | |
| 9 | WcnServiceMain |
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 | ; | |
| 6 | LIBRARY "WcnEapAuthProxy.dll" | |
| 7 | EXPORTS | |
| 8 | WcnEapPluginGetInfo |
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 | ; | |
| 6 | LIBRARY "WcnEapPeerProxy.dll" | |
| 7 | EXPORTS | |
| 8 | EapPeerFreeErrorMemory | |
| 9 | EapPeerFreeMemory | |
| 10 | EapPeerGetInfo | |
| 11 | EapPeerGetMethodProperties |
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 | ; | |
| 6 | LIBRARY "PMONT.dll" | |
| 7 | EXPORTS | |
| 8 | WdcParseLegacyFile | |
| 9 | WdcRunTaskAsInteractiveUser |
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 | ; | |
| 6 | LIBRARY "wdi.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | WdipLaunchRunDLLUserHost | |
| 10 | WdiAddFileToInstance | |
| 11 | WdiAddParameter | |
| 12 | WdiCancel | |
| 13 | WdiCloseInstance | |
| 14 | WdiCreateInstance | |
| 15 | WdiDeleteQueuedResolution | |
| 16 | WdiDiagnose | |
| 17 | WdiGetClientActivityId | |
| 18 | WdiGetClientLCID | |
| 19 | WdiGetDiagnosticModuleId | |
| 20 | WdiGetEvent | |
| 21 | WdiGetInstanceFilePath | |
| 22 | WdiGetInstanceId | |
| 23 | WdiGetLoggerSnapshotPath | |
| 24 | WdiGetParameterByIndex | |
| 25 | WdiGetParameterByName | |
| 26 | WdiGetParameterCount | |
| 27 | WdiGetParameterData | |
| 28 | WdiGetParameterDataLength | |
| 29 | WdiGetParameterDiagnosticModuleId | |
| 30 | WdiGetParameterFlags | |
| 31 | WdiGetParameterName | |
| 32 | WdiGetProgress | |
| 33 | WdiGetQueuedResolutionAudience | |
| 34 | WdiGetQueuedResolutionExpirationDate | |
| 35 | WdiGetQueuedResolutionId | |
| 36 | WdiGetQueuedResolutionName | |
| 37 | WdiGetQueuedResolutionPriority | |
| 38 | WdiGetResult | |
| 39 | WdiGetScenarioIcon | |
| 40 | WdiGetScenarioInfo | |
| 41 | WdiGetScenarioInstanceCreatedDate | |
| 42 | WdiGetScenarioInstanceFilePath | |
| 43 | WdiGetScenarioInstanceId | |
| 44 | WdiGetScenarioInstances | |
| 45 | WdiGetScenarioSourceName | |
| 46 | WdiGetScenarioTypeName | |
| 47 | WdiImpersonateClient | |
| 48 | WdiIsQueuedResolutionAdmin | |
| 49 | WdiLaunchQueuedResolution | |
| 50 | WdiOpenInstance | |
| 51 | WdiQueueCurrentResolution | |
| 52 | WdiResolve | |
| 53 | WdiRevertToSelf | |
| 54 | WdiSetFeedback | |
| 55 | WdiSetProblemDetectionResult | |
| 56 | WdiSetProgress | |
| 57 | WdiSetResolution | |
| 58 | WdipLaunchLocalHost |
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 | ; | |
| 6 | LIBRARY "WDIASqmModule.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance |
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 | ; | |
| 6 | LIBRARY "WDSCORE.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 74 | WdsGetPointer | |
| 75 | g_Kernel32 DATA | |
| 76 | g_bEnableDiagnosticMode DATA | |
| 77 | ConstructPartialMsgIfA | |
| 78 | ConstructPartialMsgIfW | |
| 79 | ConstructPartialMsgVA | |
| 80 | ConstructPartialMsgVW | |
| 81 | CurrentIP | |
| 82 | EndMajorTask | |
| 83 | EndMinorTask | |
| 84 | GetMajorTask | |
| 85 | GetMajorTaskA | |
| 86 | GetMinorTask | |
| 87 | GetMinorTaskA | |
| 88 | StartMajorTask | |
| 89 | StartMinorTask | |
| 90 | WdsAbortBlackboardItemEnum | |
| 91 | WdsAddModule | |
| 92 | WdsAddUsmtLogStack | |
| 93 | WdsAllocCollection | |
| 94 | WdsCollectionAddValue | |
| 95 | WdsCollectionGetValue | |
| 96 | WdsCopyBlackboardItems | |
| 97 | WdsCopyBlackboardItemsEx | |
| 98 | WdsCreateBlackboard | |
| 99 | WdsDeleteBlackboardValue | |
| 100 | WdsDeleteEvent | |
| 101 | WdsDestroyBlackboard | |
| 102 | WdsDuplicateData | |
| 103 | WdsEnableDiagnosticMode | |
| 104 | WdsEnableExit | |
| 105 | WdsEnableExitEx | |
| 106 | WdsEnumFirstBlackboardItem | |
| 107 | WdsEnumFirstCollectionValue | |
| 108 | WdsEnumNextBlackboardItem | |
| 109 | WdsEnumNextCollectionValue | |
| 110 | WdsExecuteWorkQueue | |
| 111 | WdsExecuteWorkQueue2 | |
| 112 | WdsExecuteWorkQueueEx | |
| 113 | WdsExitImmediately | |
| 114 | WdsExitImmediatelyEx | |
| 115 | WdsFreeCollection | |
| 116 | WdsFreeData | |
| 117 | WdsGenericSetupLogInit | |
| 118 | WdsGetAssertFlags | |
| 119 | WdsGetBlackboardBinaryData | |
| 120 | WdsGetBlackboardStringA | |
| 121 | WdsGetBlackboardStringW | |
| 122 | WdsGetBlackboardUintPtr | |
| 123 | WdsGetBlackboardValue | |
| 124 | WdsGetCurrentExecutionGroup | |
| 125 | WdsGetSetupLog | |
| 126 | WdsGetTempDir | |
| 127 | WdsInitialize | |
| 128 | WdsInitializeCallbackArray | |
| 129 | WdsInitializeDataBinary | |
| 130 | WdsInitializeDataStringA | |
| 131 | WdsInitializeDataStringW | |
| 132 | WdsInitializeDataUInt32 | |
| 133 | WdsInitializeDataUInt64 | |
| 134 | WdsIsDiagnosticModeEnabled | |
| 135 | WdsIterateOfflineQueue | |
| 136 | WdsIterateQueue | |
| 137 | WdsLockBlackboardValue | |
| 138 | WdsLockExecutionGroup | |
| 139 | WdsLogCreate | |
| 140 | WdsLogDestroy | |
| 141 | WdsLogRegStockProviders | |
| 142 | WdsLogRegisterProvider | |
| 143 | WdsLogStructuredException | |
| 144 | WdsLogUnRegStockProviders | |
| 145 | WdsLogUnRegisterProvider | |
| 146 | WdsPackCollection | |
| 147 | WdsPublish | |
| 148 | WdsPublishEx | |
| 149 | WdsPublishImmediateAsync | |
| 150 | WdsPublishImmediateEx | |
| 151 | WdsPublishOffline | |
| 152 | WdsSeqAlloc | |
| 153 | WdsSeqFree | |
| 154 | WdsSetAssertFlags | |
| 155 | WdsSetBlackboardValue | |
| 156 | WdsSetNextExecutionGroup | |
| 157 | WdsSetUILanguage | |
| 158 | WdsSetupLogDestroy | |
| 159 | WdsSetupLogInit | |
| 160 | WdsSetupLogMessageA | |
| 161 | WdsSetupLogMessageW | |
| 162 | WdsSubscribeEx | |
| 163 | WdsTerminate | |
| 164 | WdsUnlockExecutionGroup | |
| 165 | WdsUnpackCollection | |
| 166 | WdsUnsubscribe | |
| 167 | WdsUnsubscribeEx | |
| 168 | WdsValidBlackboard |
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 | ; | |
| 6 | LIBRARY "webio.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | WebPalCanScavengeDnsCache | |
| 10 | WebPalCancelTwTimer | |
| 11 | ord_4 @4 | |
| 12 | ord_5 @5 | |
| 13 | WebPalCreateDnsCacheCtx | |
| 14 | WebPalCreateSocketCtx | |
| 15 | ord_8 @8 | |
| 16 | ord_9 @9 | |
| 17 | ord_10 @10 | |
| 18 | ord_11 @11 | |
| 19 | WebPalFreeDnsCacheCtx | |
| 20 | WebPalFreeSocketCtx | |
| 21 | ord_14 @14 | |
| 22 | ord_15 @15 | |
| 23 | WebPalInitializeTwTimer | |
| 24 | ord_17 @17 | |
| 25 | ord_18 @18 | |
| 26 | ord_19 @19 | |
| 27 | ord_20 @20 | |
| 28 | ord_21 @21 | |
| 29 | ord_22 @22 | |
| 30 | ord_23 @23 | |
| 31 | ord_24 @24 | |
| 32 | ord_25 @25 | |
| 33 | ord_26 @26 | |
| 34 | ord_27 @27 | |
| 35 | ord_28 @28 | |
| 36 | ord_29 @29 | |
| 37 | WebPalIsImplemented | |
| 38 | ord_31 @31 | |
| 39 | ord_32 @32 | |
| 40 | ord_33 @33 | |
| 41 | WebPalOverrideConnectResult | |
| 42 | ord_35 @35 | |
| 43 | ord_36 @36 | |
| 44 | ord_37 @37 | |
| 45 | ord_38 @38 | |
| 46 | ord_39 @39 | |
| 47 | ord_40 @40 | |
| 48 | ord_41 @41 | |
| 49 | ord_42 @42 | |
| 50 | WebPalSetTwTimer | |
| 51 | WebPalTerminateTwTimer |
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 | ; | |
| 6 | LIBRARY "webservices.dll" | |
| 7 | EXPORTS | |
| 8 | WsAbandonCall | |
| 9 | WsAbandonMessage | |
| 10 | WsAbortChannel | |
| 11 | WsAbortListener | |
| 12 | WsAbortServiceHost | |
| 13 | WsAbortServiceProxy | |
| 14 | WsAcceptChannel | |
| 15 | WsAddCustomHeader | |
| 16 | WsAddErrorString | |
| 17 | WsAddMappedHeader | |
| 18 | WsAddressMessage | |
| 19 | WsAlloc | |
| 20 | WsAsyncExecute | |
| 21 | WsCall | |
| 22 | WsCheckMustUnderstandHeaders | |
| 23 | WsCloseChannel | |
| 24 | WsCloseListener | |
| 25 | WsCloseServiceHost | |
| 26 | WsCloseServiceProxy | |
| 27 | WsCombineUrl | |
| 28 | WsCopyError | |
| 29 | WsCopyNode | |
| 30 | WsCreateChannel | |
| 31 | WsCreateChannelForListener | |
| 32 | WsCreateError | |
| 33 | WsCreateFaultFromError | |
| 34 | WsCreateHeap | |
| 35 | WsCreateListener | |
| 36 | WsCreateMessage | |
| 37 | WsCreateMessageForChannel | |
| 38 | WsCreateMetadata | |
| 39 | WsCreateReader | |
| 40 | WsCreateServiceEndpointFromTemplate | |
| 41 | WsCreateServiceHost | |
| 42 | WsCreateServiceProxy | |
| 43 | WsCreateServiceProxyFromTemplate | |
| 44 | WsCreateWriter | |
| 45 | WsCreateXmlBuffer | |
| 46 | WsCreateXmlSecurityToken | |
| 47 | WsDateTimeToFileTime | |
| 48 | WsDecodeUrl | |
| 49 | WsEncodeUrl | |
| 50 | WsEndReaderCanonicalization | |
| 51 | WsEndWriterCanonicalization | |
| 52 | WsFileTimeToDateTime | |
| 53 | WsFillBody | |
| 54 | WsFillReader | |
| 55 | WsFindAttribute | |
| 56 | WsFlushBody | |
| 57 | WsFlushWriter | |
| 58 | WsFreeChannel | |
| 59 | WsFreeError | |
| 60 | WsFreeHeap | |
| 61 | WsFreeListener | |
| 62 | WsFreeMessage | |
| 63 | WsFreeMetadata | |
| 64 | WsFreeReader | |
| 65 | WsFreeSecurityToken | |
| 66 | WsFreeServiceHost | |
| 67 | WsFreeServiceProxy | |
| 68 | WsFreeWriter | |
| 69 | WsGetChannelProperty | |
| 70 | WsGetCustomHeader | |
| 71 | WsGetDictionary | |
| 72 | WsGetErrorProperty | |
| 73 | WsGetErrorString | |
| 74 | WsGetFaultErrorDetail | |
| 75 | WsGetFaultErrorProperty | |
| 76 | WsGetHeader | |
| 77 | WsGetHeaderAttributes | |
| 78 | WsGetHeapProperty | |
| 79 | WsGetListenerProperty | |
| 80 | WsGetMappedHeader | |
| 81 | WsGetMessageProperty | |
| 82 | WsGetMetadataEndpoints | |
| 83 | WsGetMetadataProperty | |
| 84 | WsGetMissingMetadataDocumentAddress | |
| 85 | WsGetNamespaceFromPrefix | |
| 86 | WsGetOperationContextProperty | |
| 87 | WsGetPolicyAlternativeCount | |
| 88 | WsGetPolicyProperty | |
| 89 | WsGetPrefixFromNamespace | |
| 90 | WsGetReaderNode | |
| 91 | WsGetReaderPosition | |
| 92 | WsGetReaderProperty | |
| 93 | WsGetSecurityContextProperty | |
| 94 | WsGetSecurityTokenProperty | |
| 95 | WsGetServiceHostProperty | |
| 96 | WsGetServiceProxyProperty | |
| 97 | WsGetWriterPosition | |
| 98 | WsGetWriterProperty | |
| 99 | WsGetXmlAttribute | |
| 100 | WsInitializeMessage | |
| 101 | WsMarkHeaderAsUnderstood | |
| 102 | WsMatchPolicyAlternative | |
| 103 | WsMoveReader | |
| 104 | WsMoveWriter | |
| 105 | WsOpenChannel | |
| 106 | WsOpenListener | |
| 107 | WsOpenServiceHost | |
| 108 | WsOpenServiceProxy | |
| 109 | WsPullBytes | |
| 110 | WsPushBytes | |
| 111 | WsReadArray | |
| 112 | WsReadAttribute | |
| 113 | WsReadBody | |
| 114 | WsReadBytes | |
| 115 | WsReadChars | |
| 116 | WsReadCharsUtf8 | |
| 117 | WsReadElement | |
| 118 | WsReadEndAttribute | |
| 119 | WsReadEndElement | |
| 120 | WsReadEndpointAddressExtension | |
| 121 | WsReadEnvelopeEnd | |
| 122 | WsReadEnvelopeStart | |
| 123 | WsReadMessageEnd | |
| 124 | WsReadMessageStart | |
| 125 | WsReadMetadata | |
| 126 | WsReadNode | |
| 127 | WsReadQualifiedName | |
| 128 | WsReadStartAttribute | |
| 129 | WsReadStartElement | |
| 130 | WsReadToStartElement | |
| 131 | WsReadType | |
| 132 | WsReadValue | |
| 133 | WsReadXmlBuffer | |
| 134 | WsReadXmlBufferFromBytes | |
| 135 | WsReceiveMessage | |
| 136 | WsRegisterOperationForCancel | |
| 137 | WsRemoveCustomHeader | |
| 138 | WsRemoveHeader | |
| 139 | WsRemoveMappedHeader | |
| 140 | WsRemoveNode | |
| 141 | WsRequestReply | |
| 142 | WsRequestSecurityToken | |
| 143 | WsResetChannel | |
| 144 | WsResetError | |
| 145 | WsResetHeap | |
| 146 | WsResetListener | |
| 147 | WsResetMessage | |
| 148 | WsResetMetadata | |
| 149 | WsResetServiceHost | |
| 150 | WsResetServiceProxy | |
| 151 | WsRevokeSecurityContext | |
| 152 | WsSendFaultMessageForError | |
| 153 | WsSendMessage | |
| 154 | WsSendReplyMessage | |
| 155 | WsSetChannelProperty | |
| 156 | WsSetErrorProperty | |
| 157 | WsSetFaultErrorDetail | |
| 158 | WsSetFaultErrorProperty | |
| 159 | WsSetHeader | |
| 160 | WsSetInput | |
| 161 | WsSetInputToBuffer | |
| 162 | WsSetListenerProperty | |
| 163 | WsSetMessageProperty | |
| 164 | WsSetOutput | |
| 165 | WsSetOutputToBuffer | |
| 166 | WsSetReaderPosition | |
| 167 | WsSetWriterPosition | |
| 168 | WsShutdownSessionChannel | |
| 169 | WsSkipNode | |
| 170 | WsStartReaderCanonicalization | |
| 171 | WsStartWriterCanonicalization | |
| 172 | WsTrimXmlWhitespace | |
| 173 | WsVerifyXmlNCName | |
| 174 | WsWriteArray | |
| 175 | WsWriteAttribute | |
| 176 | WsWriteBody | |
| 177 | WsWriteBytes | |
| 178 | WsWriteChars | |
| 179 | WsWriteCharsUtf8 | |
| 180 | WsWriteElement | |
| 181 | WsWriteEndAttribute | |
| 182 | WsWriteEndCData | |
| 183 | WsWriteEndElement | |
| 184 | WsWriteEndStartElement | |
| 185 | WsWriteEnvelopeEnd | |
| 186 | WsWriteEnvelopeStart | |
| 187 | WsWriteMessageEnd | |
| 188 | WsWriteMessageStart | |
| 189 | WsWriteNode | |
| 190 | WsWriteQualifiedName | |
| 191 | WsWriteStartAttribute | |
| 192 | WsWriteStartCData | |
| 193 | WsWriteStartElement | |
| 194 | WsWriteText | |
| 195 | WsWriteType | |
| 196 | WsWriteValue | |
| 197 | WsWriteXmlBuffer | |
| 198 | WsWriteXmlBufferToBytes | |
| 199 | WsWriteXmlnsAttribute | |
| 200 | WsXmlStringEquals |
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 | ; | |
| 6 | LIBRARY "collsvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "wer.dll" | |
| 7 | EXPORTS | |
| 8 | WerSysprepCleanup | |
| 9 | WerSysprepGeneralize | |
| 10 | WerSysprepSpecialize | |
| 11 | WerUnattendedSetup | |
| 12 | WerpAddAppCompatData | |
| 13 | WerpAddMemoryBlock | |
| 14 | WerpAddRegisteredDataToReport | |
| 15 | WerpArchiveReport | |
| 16 | WerpCancelResponseDownload | |
| 17 | WerpCancelUpload | |
| 18 | WerpCloseStore | |
| 19 | WerpCreateMachineStore | |
| 20 | WerpCreateUserStore | |
| 21 | WerpDeleteReport | |
| 22 | WerpDestroyWerString | |
| 23 | WerpDownloadResponse | |
| 24 | WerpDownloadResponseTemplate | |
| 25 | WerpEnumerateStoreNext | |
| 26 | WerpEnumerateStoreStart | |
| 27 | WerpExtractReportFiles | |
| 28 | WerpFlushImageCache | |
| 29 | WerpForceDeferredCollection | |
| 30 | WerpFreeUnmappedVaRanges | |
| 31 | WerpGetBucketId | |
| 32 | WerpGetDynamicParameter | |
| 33 | WerpGetEventType | |
| 34 | WerpGetExtendedDiagData | |
| 35 | WerpGetFileByIndex | |
| 36 | WerpGetFilePathByIndex | |
| 37 | WerpGetLegacyBucketId | |
| 38 | WerpGetLoadedModuleByIndex | |
| 39 | WerpGetNumFiles | |
| 40 | WerpGetNumLoadedModules | |
| 41 | WerpGetNumSigParams | |
| 42 | WerpGetReportFinalConsent | |
| 43 | WerpGetReportFlags | |
| 44 | WerpGetReportInformation | |
| 45 | WerpGetReportSettings | |
| 46 | WerpGetReportTime | |
| 47 | WerpGetReportType | |
| 48 | WerpGetResponseId | |
| 49 | WerpGetResponseUrl | |
| 50 | WerpGetSigParamByIndex | |
| 51 | WerpGetStorePath | |
| 52 | WerpGetStoreType | |
| 53 | WerpGetTextFromReport | |
| 54 | WerpGetUIParamByIndex | |
| 55 | WerpGetUploadTime | |
| 56 | WerpGetWerStringData | |
| 57 | WerpGetWow64Process | |
| 58 | WerpHashApplicationParameters | |
| 59 | WerpInitializeImageCache | |
| 60 | WerpIsOnBattery | |
| 61 | WerpIsTransportAvailable | |
| 62 | WerpLoadReport | |
| 63 | WerpLoadReportFromBuffer | |
| 64 | WerpOpenMachineArchive | |
| 65 | WerpOpenMachineQueue | |
| 66 | WerpOpenUserArchive | |
| 67 | WerpPromptUser | |
| 68 | WerpPruneStore | |
| 69 | WerpReportCancel | |
| 70 | WerpReportSprintfParameter | |
| 71 | WerpReserveMachineQueueReportDir | |
| 72 | WerpResetTransientImageCacheStatistics | |
| 73 | WerpRestartApplication | |
| 74 | WerpSetDynamicParameter | |
| 75 | WerpSetEventName | |
| 76 | WerpSetReportApplicationIdentity | |
| 77 | WerpSetReportFlags | |
| 78 | WerpSetReportInformation | |
| 79 | WerpSetReportNamespaceParameter | |
| 80 | WerpSetReportTime | |
| 81 | WerpSetReportUploadContextToken | |
| 82 | WerpShowUpsellUI | |
| 83 | WerpStitchedMinidumpVmPostReadCallback | |
| 84 | WerpStitchedMinidumpVmPreReadCallback | |
| 85 | WerpStitchedMinidumpVmQueryCallback | |
| 86 | WerpSubmitReportFromStore | |
| 87 | WerpSvcReportFromMachineQueue | |
| 88 | WerpTraceAuxMemDumpStatistics | |
| 89 | WerpTraceDuration | |
| 90 | WerpTraceImageCacheStatistics | |
| 91 | WerpTraceSnapshotStatistics | |
| 92 | WerpTraceStitchedDumpWriterStatistics | |
| 93 | WerpTraceUnmappedVaRangesStatistics | |
| 94 | WerpUnmapProcessViews | |
| 95 | WerpUpdateReportResponse | |
| 96 | WerpValidateReportKey | |
| 97 | WerpWalkGatherBlocks | |
| 98 | WerAddExcludedApplication | |
| 99 | WerRemoveExcludedApplication | |
| 100 | WerReportAddDump | |
| 101 | WerReportAddFile | |
| 102 | WerReportCloseHandle | |
| 103 | WerReportCreate | |
| 104 | WerReportSetParameter | |
| 105 | WerReportSetUIOption | |
| 106 | WerReportSubmit | |
| 107 | WerpAddFile | |
| 108 | WerpAddFileBuffer | |
| 109 | WerpAddFileCallback | |
| 110 | WerpAuxmdDumpProcessImages | |
| 111 | WerpAuxmdDumpRegisteredBlocks | |
| 112 | WerpAuxmdFree | |
| 113 | WerpAuxmdFreeCopyBuffer | |
| 114 | WerpAuxmdHashVaRanges | |
| 115 | WerpAuxmdInitialize | |
| 116 | WerpAuxmdMapFile | |
| 117 | WerpCreateIntegratorReportId | |
| 118 | WerpDownloadResponseOnly | |
| 119 | WerpFreeString | |
| 120 | WerpGetIntegratorReportId | |
| 121 | WerpGetReportConsent | |
| 122 | WerpGetStoreLocation | |
| 123 | WerpIsDisabled | |
| 124 | WerpLaunchResponse | |
| 125 | WerpOpenUserQueue | |
| 126 | WerpSetAuxiliaryArchivePath | |
| 127 | WerpSetCallBack | |
| 128 | WerpSetDefaultUserConsent | |
| 129 | WerpSetIntegratorReportId |
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 | ; | |
| 6 | LIBRARY "WERCONCPL.dll" | |
| 7 | EXPORTS | |
| 8 | LaunchErcAppW | |
| 9 | ShowCEIPDialogW | |
| 10 | WerpIsResponseApplicable |
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 | ; | |
| 6 | LIBRARY "wercplsupport.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals | |
| 10 | WerComGetAdminStores | |
| 11 | WerComGetUserStores |
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 | ; | |
| 6 | LIBRARY "WerDiagController.dll" | |
| 7 | EXPORTS | |
| 8 | QueryOriginalBucket | |
| 9 | StartAppRecorder | |
| 10 | StartFDR |
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 | ; | |
| 6 | LIBRARY "NULL.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "werui.dll" | |
| 7 | EXPORTS | |
| 8 | WerUICreate | |
| 9 | WerUIDelete | |
| 10 | WerUIGetUserSelection | |
| 11 | WerUIPromptForSecondLevel | |
| 12 | WerUIPromptUser | |
| 13 | WerUIShowUpsell | |
| 14 | WerUIStart | |
| 15 | WerUITerminate | |
| 16 | WerUIUpdateStateProgress | |
| 17 | WerUIUpdateUIForState | |
| 18 | WerUIWaitForUserAction |
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 | ; | |
| 6 | LIBRARY "WEVTFWD.DLL" | |
| 7 | EXPORTS | |
| 8 | WSManPluginShutdown | |
| 9 | WSManPluginStartup | |
| 10 | WSManProvPullEvents | |
| 11 | WSManProvSubscribe | |
| 12 | WSManProvUnsubscribe |
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 | ; | |
| 6 | LIBRARY "wevtsvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "Wfdprov.dll" | |
| 7 | EXPORTS | |
| 8 | WFDProvConfigureAndProvisionDevice | |
| 9 | WFDProvDeinitialize | |
| 10 | WFDProvGetInfo | |
| 11 | WFDProvInitialize |
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 | ; | |
| 6 | LIBRARY "Whealogr.dll" | |
| 7 | EXPORTS | |
| 8 | WdiDiagnosticModuleMain | |
| 9 | WdiGetDiagnosticModuleInterfaceVersion | |
| 10 | WdiHandleInstance | |
| 11 | t10 DATA | |
| 12 | t11 DATA | |
| 13 | t12 DATA | |
| 14 | t13 DATA | |
| 15 | t14 DATA | |
| 16 | t15 DATA | |
| 17 | t16 DATA | |
| 18 | t17 DATA | |
| 19 | t18 DATA | |
| 20 | t19 DATA | |
| 21 | t2 DATA | |
| 22 | t2.m1 | |
| 23 | t20 DATA | |
| 24 | t21 DATA | |
| 25 | t22 DATA | |
| 26 | t23 DATA | |
| 27 | t24 DATA | |
| 28 | t25 DATA | |
| 29 | t26 DATA | |
| 30 | t27 DATA | |
| 31 | t28 DATA | |
| 32 | t3 DATA | |
| 33 | t30 DATA | |
| 34 | t31 DATA | |
| 35 | t32 DATA | |
| 36 | t33 DATA | |
| 37 | t34 DATA | |
| 38 | t36 DATA | |
| 39 | t37 DATA | |
| 40 | t38 DATA | |
| 41 | t39 DATA | |
| 42 | t4 DATA | |
| 43 | t40 DATA | |
| 44 | t41 DATA | |
| 45 | t42 DATA | |
| 46 | t43 DATA | |
| 47 | t44 DATA | |
| 48 | t45 DATA | |
| 49 | t46 DATA | |
| 50 | t47 DATA | |
| 51 | t48 DATA | |
| 52 | t49 DATA | |
| 53 | t5 DATA | |
| 54 | t50 DATA | |
| 55 | t51 DATA | |
| 56 | t52 DATA | |
| 57 | t53 DATA | |
| 58 | t54 DATA | |
| 59 | t55 DATA | |
| 60 | t56 DATA | |
| 61 | t57 DATA | |
| 62 | t58 DATA | |
| 63 | t59 DATA | |
| 64 | t6 DATA | |
| 65 | t60 DATA | |
| 66 | t61 DATA | |
| 67 | t62 DATA | |
| 68 | t63 DATA | |
| 69 | t64 DATA | |
| 70 | t65 DATA | |
| 71 | t66 DATA | |
| 72 | t67 DATA | |
| 73 | t68 DATA | |
| 74 | t69 DATA | |
| 75 | t7 DATA | |
| 76 | t71 DATA | |
| 77 | t72 DATA | |
| 78 | t72.m0 | |
| 79 | t72.m1 | |
| 80 | t72.m2 | |
| 81 | t72.m3 | |
| 82 | t72.m4 | |
| 83 | t72.m5 | |
| 84 | t72.m6 | |
| 85 | t73 DATA | |
| 86 | t74 DATA | |
| 87 | t74.m1 | |
| 88 | t75 DATA | |
| 89 | t75.m1 | |
| 90 | t76 DATA | |
| 91 | t76.m1 | |
| 92 | t77 DATA | |
| 93 | t77.m1 | |
| 94 | t78 DATA | |
| 95 | t78.m1 | |
| 96 | t79 DATA | |
| 97 | t79.m1 | |
| 98 | t8 DATA | |
| 99 | t80 DATA | |
| 100 | t80.m10 | |
| 101 | t81 DATA | |
| 102 | t81.m0 | |
| 103 | t82 DATA | |
| 104 | t82.m9 | |
| 105 | t83 DATA | |
| 106 | t84 DATA | |
| 107 | t85 DATA | |
| 108 | t86 DATA | |
| 109 | t87 DATA | |
| 110 | t88 DATA | |
| 111 | t89 DATA | |
| 112 | t9 DATA | |
| 113 | t90 DATA | |
| 114 | t91 DATA | |
| 115 | t92 DATA | |
| 116 | t93 DATA | |
| 117 | t93.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 | ; | |
| 6 | LIBRARY "wiaservc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | wiasCreateChildAppItem | |
| 10 | wiasCreateDrvItem | |
| 11 | wiasCreateLogInstance | |
| 12 | wiasCreatePropContext | |
| 13 | wiasDebugError | |
| 14 | wiasDebugTrace | |
| 15 | wiasDownSampleBuffer | |
| 16 | wiasFormatArgs | |
| 17 | wiasFreePropContext | |
| 18 | wiasGetChangedValueFloat | |
| 19 | wiasGetChangedValueGuid | |
| 20 | wiasGetChangedValueLong | |
| 21 | wiasGetChangedValueStr | |
| 22 | wiasGetChildrenContexts | |
| 23 | wiasGetContextFromName | |
| 24 | wiasGetDrvItem | |
| 25 | wiasGetImageInformation | |
| 26 | wiasGetItemType | |
| 27 | wiasGetPropertyAttributes | |
| 28 | wiasGetRootItem | |
| 29 | wiasIsPropChanged | |
| 30 | wiasParseEndorserString | |
| 31 | wiasPrintDebugHResult | |
| 32 | wiasQueueEvent | |
| 33 | wiasReadMultiple | |
| 34 | wiasReadPropBin | |
| 35 | wiasReadPropFloat | |
| 36 | wiasReadPropGuid | |
| 37 | wiasReadPropLong | |
| 38 | wiasReadPropStr | |
| 39 | wiasSendEndOfPage | |
| 40 | wiasSetItemPropAttribs | |
| 41 | wiasSetItemPropNames | |
| 42 | wiasSetPropChanged | |
| 43 | wiasSetPropertyAttributes | |
| 44 | wiasSetValidFlag | |
| 45 | wiasSetValidListFloat | |
| 46 | wiasSetValidListGuid | |
| 47 | wiasSetValidListLong | |
| 48 | wiasSetValidListStr | |
| 49 | wiasSetValidRangeFloat | |
| 50 | wiasSetValidRangeLong | |
| 51 | wiasUpdateScanRect | |
| 52 | wiasUpdateValidFormat | |
| 53 | wiasValidateItemProperties | |
| 54 | wiasWriteBufToFile | |
| 55 | wiasWriteMultiple | |
| 56 | wiasWritePageBufToFile | |
| 57 | wiasWritePageBufToStream | |
| 58 | wiasWritePropBin | |
| 59 | wiasWritePropFloat | |
| 60 | wiasWritePropGuid | |
| 61 | wiasWritePropLong | |
| 62 | wiasWritePropStr |
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 | ; | |
| 6 | LIBRARY "wiatrace.dll" | |
| 7 | EXPORTS | |
| 8 | WIATRACE_DecrementIndentLevel | |
| 9 | WIATRACE_GetIndentLevel | |
| 10 | WIATRACE_GetTraceSettings | |
| 11 | WIATRACE_IncrementIndentLevel | |
| 12 | WIATRACE_Init | |
| 13 | WIATRACE_OutputString | |
| 14 | WIATRACE_SetTraceSettings | |
| 15 | WIATRACE_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 | ; | |
| 6 | LIBRARY "WiFiDisplay.dll" | |
| 7 | EXPORTS | |
| 8 | CloseMiracastSession | |
| 9 | CreateDAFProviderMiracastHelper | |
| 10 | CreateWiFiDisplayEtwProvider | |
| 11 | IsMiracastSupportedByWlan | |
| 12 | MiracastFreeMemory | |
| 13 | MiracastIeDecode | |
| 14 | MiracastIeEncode | |
| 15 | OpenMiracastSession | |
| 16 | VsIeProviderGetFunctionTable |
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 | ; | |
| 6 | LIBRARY "winbici.dll" | |
| 7 | EXPORTS | |
| 8 | AbortExperience | |
| 9 | AddDwordToDatapointValueList | |
| 10 | AddStringToDatapointValueList | |
| 11 | AddToStream | |
| 12 | ContinueExperience | |
| 13 | CreateBase64StringFromTransactionContext | |
| 14 | CreateDatapointValueList | |
| 15 | CreateTransactionContext | |
| 16 | CreateTransactionContextFromBase64String | |
| 17 | DestroyDatapointValueList | |
| 18 | DestroyTransactionContext | |
| 19 | DestroyTransactionId | |
| 20 | EndExperience | |
| 21 | GetApplicationId | |
| 22 | GetExperienceId | |
| 23 | GetIsMsftInternal | |
| 24 | GetNextTransactionContext | |
| 25 | GetTransactionContextExperienceId | |
| 26 | GetTransactionContextIsEqual | |
| 27 | GetTransactionContextMarket | |
| 28 | GetTransactionContextScenarioId | |
| 29 | GetTransactionContextTransactionId | |
| 30 | GetUserAnid | |
| 31 | Increment | |
| 32 | MakeSnapshotAndAttemptUpload | |
| 33 | PauseExperience | |
| 34 | RecordDependentApiQos | |
| 35 | RecordIncomingApiQos | |
| 36 | RecordInternalApiQos | |
| 37 | RecordScenarioQos | |
| 38 | RegisterNoOptDatapoint | |
| 39 | ResetSettings | |
| 40 | Set | |
| 41 | SetApplicationEnvironment | |
| 42 | SetDataExpiration | |
| 43 | SetDataPath | |
| 44 | SetDefaultSnapshotInterval | |
| 45 | SetDependentQosSnapshotInterval | |
| 46 | SetRetryFileCountLimit | |
| 47 | SetRetryInterval | |
| 48 | SetRetryThrottleIntervalSeconds | |
| 49 | SetSnapshotThrottleIntervalSeconds | |
| 50 | SetStorageFileCountLimit | |
| 51 | SetStorageSizeLimitBytes | |
| 52 | SetStorageTemporaryFileCountLimit | |
| 53 | SetStorageTimeLimitHours | |
| 54 | SetString | |
| 55 | SetUploadUrl | |
| 56 | SetUploadsEnabled | |
| 57 | SetUserAnid | |
| 58 | SetUserBetaState | |
| 59 | SetUserCid | |
| 60 | SetUserId | |
| 61 | StartExperience | |
| 62 | UploadPendingFiles |
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 | ; | |
| 6 | LIBRARY "WINBRAND.dll" | |
| 7 | EXPORTS | |
| 8 | BrandingFormatString | |
| 9 | BrandingLoadBitmap | |
| 10 | BrandingLoadCursor | |
| 11 | BrandingLoadIcon | |
| 12 | BrandingLoadImage | |
| 13 | BrandingLoadString | |
| 14 | EulaFreeBuffer | |
| 15 | GetEULAFile | |
| 16 | GetEULAInCurrentUILanguage | |
| 17 | GetHinstanceByNameSpace | |
| 18 | GetInstalledEULAPath | |
| 19 | InstallEULA |
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 | ; | |
| 6 | LIBRARY "windows.globalization.fontgroups.dll" | |
| 7 | EXPORTS | |
| 8 | GetPreferredFont |
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 | ; | |
| 6 | LIBRARY "Windows.Networking.Connectivity.dll" | |
| 7 | EXPORTS | |
| 8 | SetHostNameMediaStreamingMode |
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 | ; | |
| 6 | LIBRARY "Windows.Networking.HostName.dll" | |
| 7 | EXPORTS | |
| 8 | CreateEndpointPairFromSockAddrs | |
| 9 | CreateHostNameFromSockAddr | |
| 10 | CreateHostNameFromString | |
| 11 | CreateNetworkAdapterFromGuid | |
| 12 | GetAllHostNames | |
| 13 | GetSortedEndpointPairs |
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 | ; | |
| 6 | LIBRARY "module.dll" | |
| 7 | EXPORTS | |
| 8 | CleanupHotspotProfiles | |
| 9 | RegisterHotspotProfile |
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 | ; | |
| 6 | LIBRARY "dll.dll" | |
| 7 | EXPORTS | |
| 8 | ProximityConnect |
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 | ; | |
| 6 | LIBRARY "Windows.Networking.Vpn.dll" | |
| 7 | EXPORTS | |
| 8 | VpnClientPluginGetSecurity | |
| 9 | VpnClientPluginInstall | |
| 10 | VpnClientPluginManifestFind | |
| 11 | VpnClientPluginUninstall | |
| 12 | VpnPluginEnumerate | |
| 13 | VpnPluginListFree |
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 | ; | |
| 6 | LIBRARY "Windows.Storage.ApplicationData.dll" | |
| 7 | EXPORTS | |
| 8 | CleanupTemporaryState |
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 | ; | |
| 6 | LIBRARY "Windows.UI.dll" | |
| 7 | EXPORTS | |
| 8 | ord_1500 @1500 | |
| 9 | ord_1600 @1600 | |
| 10 | CreateControlInput |
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 | ; | |
| 6 | LIBRARY "windows.ui.xaml.dll" | |
| 7 | EXPORTS | |
| 8 | CreateString | |
| 9 | CreateXamlUIPresenter | |
| 10 | DeleteString | |
| 11 | FreeBinaryGenericXaml | |
| 12 | GenerateBinaryGenericXaml | |
| 13 | GetDependencyObjectAddress | |
| 14 | GetStringLen | |
| 15 | GetStringRawBuffer |
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 | ; | |
| 6 | LIBRARY "WindowsCodecsExt.dll" | |
| 7 | EXPORTS | |
| 8 | IWICColorTransform_Initialize_Proxy | |
| 9 | WICCreateColorTransform_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 | ; | |
| 6 | LIBRARY "winetHC.DLL" | |
| 7 | EXPORTS | |
| 8 | ForceProxyDetectionOnNextRun | |
| 9 | SetAutoDetectProxyFlagForUser |
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 | ; | |
| 6 | LIBRARY "WININITEXT.dll" | |
| 7 | EXPORTS | |
| 8 | GetLoggedOnUserCount | |
| 9 | PrimaryTerminalAndHookWorker | |
| 10 | StartLoadingFontsWorker | |
| 11 | UIStartupWorker | |
| 12 | UnregisterSession0ViewerWindowHookDll | |
| 13 | WaitForWinstationShutdown | |
| 14 | WinStationSystemShutdownStartedWorker |
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 | ; | |
| 6 | LIBRARY "WINIPSEC.DLL" | |
| 7 | EXPORTS | |
| 8 | SPDApiBufferAllocate | |
| 9 | SPDApiBufferFree | |
| 10 | AddTransportFilter | |
| 11 | DeleteTransportFilter | |
| 12 | EnumTransportFilters | |
| 13 | SetTransportFilter | |
| 14 | GetTransportFilter | |
| 15 | AddQMPolicy | |
| 16 | DeleteQMPolicy | |
| 17 | EnumQMPolicies | |
| 18 | SetQMPolicy | |
| 19 | GetQMPolicy | |
| 20 | AddMMPolicy | |
| 21 | DeleteMMPolicy | |
| 22 | EnumMMPolicies | |
| 23 | SetMMPolicy | |
| 24 | GetMMPolicy | |
| 25 | AddMMFilter | |
| 26 | DeleteMMFilter | |
| 27 | EnumMMFilters | |
| 28 | SetMMFilter | |
| 29 | GetMMFilter | |
| 30 | MatchMMFilter | |
| 31 | MatchTransportFilter | |
| 32 | GetQMPolicyByID | |
| 33 | GetMMPolicyByID | |
| 34 | AddMMAuthMethods | |
| 35 | DeleteMMAuthMethods | |
| 36 | EnumMMAuthMethods | |
| 37 | SetMMAuthMethods | |
| 38 | GetMMAuthMethods | |
| 39 | InitiateIKENegotiation | |
| 40 | QueryIKENegotiationStatus | |
| 41 | CloseIKENegotiationHandle | |
| 42 | EnumMMSAs | |
| 43 | QueryIKEStatistics | |
| 44 | DeleteMMSAs | |
| 45 | RegisterIKENotifyClient | |
| 46 | QueryIKENotifyData | |
| 47 | CloseIKENotifyHandle | |
| 48 | QueryIPSecStatistics | |
| 49 | EnumQMSAs | |
| 50 | AddTunnelFilter | |
| 51 | DeleteTunnelFilter | |
| 52 | EnumTunnelFilters | |
| 53 | SetTunnelFilter | |
| 54 | GetTunnelFilter | |
| 55 | MatchTunnelFilter | |
| 56 | OpenMMFilterHandle | |
| 57 | CloseMMFilterHandle | |
| 58 | OpenTransportFilterHandle | |
| 59 | CloseTransportFilterHandle | |
| 60 | OpenTunnelFilterHandle | |
| 61 | CloseTunnelFilterHandle | |
| 62 | EnumIPSecInterfaces | |
| 63 | AddSAs | |
| 64 | DeleteQMSAs | |
| 65 | GetConfigurationVariables | |
| 66 | SetConfigurationVariables | |
| 67 | QuerySpdPolicyState | |
| 68 | OpenMMFilterHandleEx | |
| 69 | AddMMFilterEx | |
| 70 | EnumMMFiltersEx | |
| 71 | SetMMFilterEx | |
| 72 | GetMMFilterEx | |
| 73 | MatchMMFilterEx | |
| 74 | OpenTransportFilterHandleEx | |
| 75 | AddTransportFilterEx | |
| 76 | EnumTransportFiltersEx | |
| 77 | SetTransportFilterEx | |
| 78 | GetTransportFilterEx | |
| 79 | MatchTransportFilterEx |
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 | ; | |
| 6 | LIBRARY "WinLangdb.dll" | |
| 7 | EXPORTS | |
| 8 | Bcp47GetEnglishName | |
| 9 | Bcp47GetLocalizedName | |
| 10 | Bcp47GetLocalizedScript | |
| 11 | Bcp47GetNativeName | |
| 12 | Bcp47GetSerializedUserLanguageProfile | |
| 13 | EnsureLanguageProfileExists | |
| 14 | GetCompatibleInputMethodsForLanguage | |
| 15 | GetDefaultInputMethodForLanguage | |
| 16 | GetInputMethodDescription | |
| 17 | GetInputMethodProperties | |
| 18 | GetInputMethodTileName | |
| 19 | GetLanguageNames | |
| 20 | IsImeInputMethod | |
| 21 | IsImmersiveInputMethod | |
| 22 | IsTouchEnabledInputMethod | |
| 23 | IsoScriptGetLocalizedName | |
| 24 | LanguagesDatabaseGetChildLanguages | |
| 25 | LanguagesDatabaseHasChildren | |
| 26 | SetUserLanguages | |
| 27 | TransformInputMethodsForLanguage | |
| 28 | TransformInputMethodsForLanguageId |
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 | ; | |
| 6 | LIBRARY "WINLOGONEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CanRunSetupWorker | |
| 9 | EnableDisableElevationForSessionWorker | |
| 10 | ExecuteSetupWorker | |
| 11 | InitWinLogonExt | |
| 12 | IsMiniNTModeWorker | |
| 13 | IsSetupCleanInstallWorker | |
| 14 | IsThisSetupWorker | |
| 15 | NotifyInteractiveSessionLogoff | |
| 16 | PrepareSetupExecutionWorker | |
| 17 | SetSetupShutdownActionWorker | |
| 18 | SetupCreateSplashScreenWorker | |
| 19 | SetupDestroySplashScreenWorker | |
| 20 | ShouldSetupExecuteWorker | |
| 21 | WinLogonExt |
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 | ; | |
| 6 | LIBRARY "winmde.dll" | |
| 7 | EXPORTS | |
| 8 | MFCreateNetVRoot | |
| 9 | MFCreateWinMDEOpCenter |
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 | ; | |
| 6 | LIBRARY "WINMMBASE.dll" | |
| 7 | EXPORTS | |
| 8 | CloseDriver | |
| 9 | DefDriverProc | |
| 10 | DriverCallback | |
| 11 | DrvGetModuleHandle | |
| 12 | GetDriverModuleHandle | |
| 13 | OpenDriver | |
| 14 | SendDriverMessage | |
| 15 | auxGetDevCapsA | |
| 16 | auxGetDevCapsW | |
| 17 | auxGetNumDevs | |
| 18 | auxGetVolume | |
| 19 | auxOutMessage | |
| 20 | auxSetVolume | |
| 21 | joyConfigChanged | |
| 22 | joyGetDevCapsA | |
| 23 | joyGetDevCapsW | |
| 24 | joyGetNumDevs | |
| 25 | joyGetPos | |
| 26 | joyGetPosEx | |
| 27 | joyGetThreshold | |
| 28 | joyReleaseCapture | |
| 29 | joySetCapture | |
| 30 | joySetThreshold | |
| 31 | midiConnect | |
| 32 | midiDisconnect | |
| 33 | midiInAddBuffer | |
| 34 | midiInClose | |
| 35 | midiInGetDevCapsA | |
| 36 | midiInGetDevCapsW | |
| 37 | midiInGetErrorTextA | |
| 38 | midiInGetErrorTextW | |
| 39 | midiInGetID | |
| 40 | midiInGetNumDevs | |
| 41 | midiInMessage | |
| 42 | midiInOpen | |
| 43 | midiInPrepareHeader | |
| 44 | midiInReset | |
| 45 | midiInStart | |
| 46 | midiInStop | |
| 47 | midiInUnprepareHeader | |
| 48 | midiOutCacheDrumPatches | |
| 49 | midiOutCachePatches | |
| 50 | midiOutClose | |
| 51 | midiOutGetDevCapsA | |
| 52 | midiOutGetDevCapsW | |
| 53 | midiOutGetErrorTextA | |
| 54 | midiOutGetErrorTextW | |
| 55 | midiOutGetID | |
| 56 | midiOutGetNumDevs | |
| 57 | midiOutGetVolume | |
| 58 | midiOutLongMsg | |
| 59 | midiOutMessage | |
| 60 | midiOutOpen | |
| 61 | midiOutPrepareHeader | |
| 62 | midiOutReset | |
| 63 | midiOutSetVolume | |
| 64 | midiOutShortMsg | |
| 65 | midiOutUnprepareHeader | |
| 66 | midiStreamClose | |
| 67 | midiStreamOpen | |
| 68 | midiStreamOut | |
| 69 | midiStreamPause | |
| 70 | midiStreamPosition | |
| 71 | midiStreamProperty | |
| 72 | midiStreamRestart | |
| 73 | midiStreamStop | |
| 74 | mixerClose | |
| 75 | mixerGetControlDetailsA | |
| 76 | mixerGetControlDetailsW | |
| 77 | mixerGetDevCapsA | |
| 78 | mixerGetDevCapsW | |
| 79 | mixerGetID | |
| 80 | mixerGetLineControlsA | |
| 81 | mixerGetLineControlsW | |
| 82 | mixerGetLineInfoA | |
| 83 | mixerGetLineInfoW | |
| 84 | mixerGetNumDevs | |
| 85 | mixerMessage | |
| 86 | mixerOpen | |
| 87 | mixerSetControlDetails | |
| 88 | mmDrvInstall | |
| 89 | mmGetCurrentTask | |
| 90 | mmTaskBlock | |
| 91 | mmTaskCreate | |
| 92 | mmTaskSignal | |
| 93 | mmTaskYield | |
| 94 | mmioAdvance | |
| 95 | mmioAscend | |
| 96 | mmioClose | |
| 97 | mmioCreateChunk | |
| 98 | mmioDescend | |
| 99 | mmioFlush | |
| 100 | mmioGetInfo | |
| 101 | mmioInstallIOProcA | |
| 102 | mmioInstallIOProcW | |
| 103 | mmioOpenA | |
| 104 | mmioOpenW | |
| 105 | mmioRead | |
| 106 | mmioRenameA | |
| 107 | mmioRenameW | |
| 108 | mmioSeek | |
| 109 | mmioSendMessage | |
| 110 | mmioSetBuffer | |
| 111 | mmioSetInfo | |
| 112 | mmioStringToFOURCCA | |
| 113 | mmioStringToFOURCCW | |
| 114 | mmioWrite | |
| 115 | sndOpenSound | |
| 116 | waveInAddBuffer | |
| 117 | waveInClose | |
| 118 | waveInGetDevCapsA | |
| 119 | waveInGetDevCapsW | |
| 120 | waveInGetErrorTextA | |
| 121 | waveInGetErrorTextW | |
| 122 | waveInGetID | |
| 123 | waveInGetNumDevs | |
| 124 | waveInGetPosition | |
| 125 | waveInMessage | |
| 126 | waveInOpen | |
| 127 | waveInPrepareHeader | |
| 128 | waveInReset | |
| 129 | waveInStart | |
| 130 | waveInStop | |
| 131 | waveInUnprepareHeader | |
| 132 | waveOutBreakLoop | |
| 133 | waveOutClose | |
| 134 | waveOutGetDevCapsA | |
| 135 | waveOutGetDevCapsW | |
| 136 | waveOutGetErrorTextA | |
| 137 | waveOutGetErrorTextW | |
| 138 | waveOutGetID | |
| 139 | waveOutGetNumDevs | |
| 140 | waveOutGetPitch | |
| 141 | waveOutGetPlaybackRate | |
| 142 | waveOutGetPosition | |
| 143 | waveOutGetVolume | |
| 144 | waveOutMessage | |
| 145 | waveOutOpen | |
| 146 | waveOutPause | |
| 147 | waveOutPrepareHeader | |
| 148 | waveOutReset | |
| 149 | waveOutRestart | |
| 150 | waveOutSetPitch | |
| 151 | waveOutSetPlaybackRate | |
| 152 | waveOutSetVolume | |
| 153 | waveOutUnprepareHeader | |
| 154 | waveOutWrite | |
| 155 | winmmbaseFreeMMEHandles | |
| 156 | winmmbaseGetWOWHandle | |
| 157 | winmmbaseHandle32FromHandle16 | |
| 158 | winmmbaseSetWOWHandle |
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 | ; | |
| 6 | LIBRARY "WINNSI.DLL" | |
| 7 | EXPORTS | |
| 8 | NsiConnectToServer | |
| 9 | NsiDisconnectFromServer | |
| 10 | NsiRpcDeregisterChangeNotification | |
| 11 | NsiRpcDeregisterChangeNotificationEx | |
| 12 | NsiRpcEnumerateObjectsAllParameters | |
| 13 | NsiRpcGetAllParameters | |
| 14 | NsiRpcGetAllParametersEx | |
| 15 | NsiRpcGetParameter | |
| 16 | NsiRpcGetParameterEx | |
| 17 | NsiRpcRegisterChangeNotification | |
| 18 | NsiRpcRegisterChangeNotificationEx | |
| 19 | NsiRpcSetAllParameters | |
| 20 | NsiRpcSetAllParametersEx | |
| 21 | NsiRpcSetParameter | |
| 22 | NsiRpcSetParameterEx |
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 | ; | |
| 6 | LIBRARY "winrscmd.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 30 | WSManPluginCommand | |
| 31 | WSManPluginReceive | |
| 32 | WSManPluginReleaseCommandContext | |
| 33 | WSManPluginReleaseShellContext | |
| 34 | WSManPluginSend | |
| 35 | WSManPluginShell | |
| 36 | WSManPluginShutdown | |
| 37 | WSManPluginSignal | |
| 38 | WSManPluginStartup |
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 | ; | |
| 6 | LIBRARY "WinSetupUI.dll" | |
| 7 | EXPORTS | |
| 8 | CreateWinSetupUI |
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 | ; | |
| 6 | LIBRARY "winshfhc.dll" | |
| 7 | EXPORTS | |
| 8 | ord_101 @101 | |
| 9 | MRTComponent_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 | ; | |
| 6 | LIBRARY "WINSKU.dll" | |
| 7 | EXPORTS | |
| 8 | SkuFreeBuffer | |
| 9 | SkuGetEditionEulaFilePath |
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 | ; | |
| 6 | LIBRARY "winsrpc.dll" | |
| 7 | EXPORTS | |
| 8 | WinsABind | |
| 9 | WinsAllocMem | |
| 10 | WinsBackup | |
| 11 | WinsCheckAccess | |
| 12 | WinsDelDbRecs | |
| 13 | WinsDeleteWins | |
| 14 | WinsDoScavenging | |
| 15 | WinsDoScavengingNew | |
| 16 | WinsDoStaticInit | |
| 17 | WinsFreeMem | |
| 18 | WinsGetBrowserNames | |
| 19 | WinsGetDbRecs | |
| 20 | WinsGetDbRecsByName | |
| 21 | WinsGetNameAndAdd | |
| 22 | WinsPullRange | |
| 23 | WinsRecordAction | |
| 24 | WinsResetCounters | |
| 25 | WinsRestore | |
| 26 | WinsRestoreEx | |
| 27 | WinsSetFlags | |
| 28 | WinsSetPriorityClass | |
| 29 | WinsStatus | |
| 30 | WinsStatusNew | |
| 31 | WinsStatusWHdl | |
| 32 | WinsSyncUp | |
| 33 | WinsTerm | |
| 34 | WinsTombstoneDbRecs | |
| 35 | WinsTrigger | |
| 36 | WinsUBind | |
| 37 | WinsUnbind | |
| 38 | WinsWorkerThdUpd |
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 | ; | |
| 6 | LIBRARY "WinTypes.dll" | |
| 7 | EXPORTS | |
| 8 | RoCreateNonAgilePropertySet | |
| 9 | RoGetBufferMarshaler | |
| 10 | RoGetMetaDataFile | |
| 11 | RoParseTypeName | |
| 12 | RoResolveNamespace |
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 | ; | |
| 6 | LIBRARY "WitnessWmiv2Provider.dll" | |
| 7 | EXPORTS | |
| 8 | GetProviderClassID | |
| 9 | MI_Main | |
| 10 | WitnessWmiInitialize | |
| 11 | WitnessWmiTerminate |
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 | ; | |
| 6 | LIBRARY "WLSNP.DLL" | |
| 7 | EXPORTS | |
| 8 | GetAdPolicyAsXML | |
| 9 | GetWmiPolicyAsXML |
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 | ; | |
| 6 | LIBRARY "wlanhlp.dll" | |
| 7 | EXPORTS | |
| 8 | WFDGetSessionEndpointPairsInt | |
| 9 | QueryNetconStatus | |
| 10 | QueryNetconVirtualCharacteristic | |
| 11 | WFDAcceptConnectRequestAndOpenSessionInt | |
| 12 | WFDAcceptGroupRequestAndOpenSessionInt | |
| 13 | WFDCancelConnectorPairWithOOB | |
| 14 | WFDCancelListenerPairWithOOB | |
| 15 | WFDCancelOpenSessionInt | |
| 16 | WFDCloseHandleInt | |
| 17 | WFDCloseLegacySessionInt | |
| 18 | WFDCloseOOBPairingSession | |
| 19 | WFDCloseSessionInt | |
| 20 | WFDConfigureFirewallForSessionInt | |
| 21 | WFDDeclineConnectRequestInt | |
| 22 | WFDDeclineGroupRequestInt | |
| 23 | WFDDiscoverDevicesInt | |
| 24 | WFDFlushVisibleDeviceListInt | |
| 25 | WFDForceDisconnectInt | |
| 26 | WFDForceDisconnectLegacyPeerInt | |
| 27 | WFDFreeMemoryInt | |
| 28 | WFDGetDefaultGroupProfileInt | |
| 29 | WFDGetOOBBlob | |
| 30 | WFDGetProfileKeyInfoInt | |
| 31 | WFDGetVisibleDevicesInt | |
| 32 | WFDIsInterfaceWiFiDirect | |
| 33 | WFDIsWiFiDirectRunningOnWiFiAdapter | |
| 34 | WFDLowPrivCancelOpenSessionInt | |
| 35 | WFDLowPrivCloseHandleInt | |
| 36 | WFDLowPrivCloseSessionInt | |
| 37 | WFDLowPrivConfigureFirewallForSessionInt | |
| 38 | WFDLowPrivGetSessionEndpointPairsInt | |
| 39 | WFDLowPrivIsWfdSupportedInt | |
| 40 | WFDLowPrivOpenHandleInt | |
| 41 | WFDLowPrivRegisterNotificationInt | |
| 42 | WFDLowPrivStartOpenSessionByInterfaceIdInt | |
| 43 | WFDOpenHandleInt | |
| 44 | WFDOpenLegacySessionInt | |
| 45 | WFDPairCancelByDeviceAddressInt | |
| 46 | WFDPairCancelInt | |
| 47 | WFDPairEnumerateCeremoniesInt | |
| 48 | WFDPairSelectCeremonyInt | |
| 49 | WFDPairWithDeviceAndOpenSessionExInt | |
| 50 | WFDPairWithDeviceAndOpenSessionInt | |
| 51 | WFDParseOOBBlob | |
| 52 | WFDParseProfileXmlInt | |
| 53 | WFDQueryPropertyInt | |
| 54 | WFDRegisterNotificationInt | |
| 55 | WFDSetAdditionalIEsInt | |
| 56 | WFDSetPropertyInt | |
| 57 | WFDSetSecondaryDeviceTypeListInt | |
| 58 | WFDStartConnectorPairWithOOB | |
| 59 | WFDStartListenerPairWithOOB | |
| 60 | WFDStartOpenSessionInt | |
| 61 | WFDStartUsingGroupInt | |
| 62 | WFDStopDiscoverDevicesInt | |
| 63 | WFDStopUsingGroupInt | |
| 64 | WlanCancelPlap | |
| 65 | WlanConnectWithInput | |
| 66 | WlanDeinitPlapParams | |
| 67 | WlanDoPlap | |
| 68 | WlanDoesBssMatchSecurity | |
| 69 | WlanEnumAllInterfaces | |
| 70 | WlanGenerateProfileXmlBasicSettings | |
| 71 | WlanGetMFPNegotiated | |
| 72 | WlanGetProfileEapUserDataInfo | |
| 73 | WlanGetProfileIndex | |
| 74 | WlanGetProfileKeyInfo | |
| 75 | WlanGetProfileMetadata | |
| 76 | WlanGetProfileSsidList | |
| 77 | WlanGetRadioInformation | |
| 78 | WlanGetStoredRadioState | |
| 79 | WlanHostedNetworkFreeWCNSettings | |
| 80 | WlanHostedNetworkHlpQueryEverUsed | |
| 81 | WlanHostedNetworkQueryWCNSettings | |
| 82 | WlanHostedNetworkSetWCNSettings | |
| 83 | WlanInitPlapParams | |
| 84 | WlanInternalScan | |
| 85 | WlanIsNetworkSuppressed | |
| 86 | WlanIsUIRequestPending | |
| 87 | WlanLowPrivCloseHandle | |
| 88 | WlanLowPrivEnumInterfaces | |
| 89 | WlanLowPrivFreeMemory | |
| 90 | WlanLowPrivOpenHandle | |
| 91 | WlanLowPrivQueryInterface | |
| 92 | WlanLowPrivSetInterface | |
| 93 | WlanNotifyVsIeProviderInt | |
| 94 | WlanParseProfileXmlBasicSettings | |
| 95 | WlanPrivateGetAvailableNetworkList | |
| 96 | WlanQueryCreateAllUserProfileRestricted | |
| 97 | WlanQueryPlapCredentials | |
| 98 | WlanQueryPreConnectInput | |
| 99 | WlanQueryVirtualInterfaceType | |
| 100 | WlanRefreshConnections | |
| 101 | WlanRemoveUIForwardingNetworkList | |
| 102 | WlanSendUIResponse | |
| 103 | WlanSetAllUserProfileRestricted | |
| 104 | WlanSetProfileMetadata | |
| 105 | WlanSetUIForwardingNetworkList | |
| 106 | WlanStartAP | |
| 107 | WlanStopAP | |
| 108 | WlanStoreRadioStateOnEnteringAirPlaneMode | |
| 109 | WlanTryUpgradeCurrentConnectionAuthCipher | |
| 110 | WlanUpdateProfileWithAuthCipher | |
| 111 | WlanWcmGetInterface | |
| 112 | WlanWcmGetProfileList | |
| 113 | WlanWcmSetInterface | |
| 114 | WlanWfdGOSetWCNSettings | |
| 115 | WlanWfdGetPeerInfo | |
| 116 | WlanWfdStartGO | |
| 117 | WlanWfdStopGO |
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 | ; | |
| 6 | LIBRARY "wlaninst.dll" | |
| 7 | EXPORTS | |
| 8 | WlanDeviceClassCoInstaller |
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 | ; | |
| 6 | LIBRARY "WlanMM.dll" | |
| 7 | EXPORTS | |
| 8 | StartDiagnosticsW |
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 | ; | |
| 6 | LIBRARY "WLANMSM.DLL" | |
| 7 | EXPORTS | |
| 8 | Dot11MsmDeInit | |
| 9 | Dot11MsmInit | |
| 10 | InitializeDll |
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 | ; | |
| 6 | LIBRARY "WLANSEC.dll" | |
| 7 | EXPORTS | |
| 8 | MSMSecConnectionHealthCheck | |
| 9 | MSMSecCreateDiscoveryProfiles | |
| 10 | MSMSecDeinitialize | |
| 11 | MSMSecDeinitializeAdapter | |
| 12 | MSMSecFreeIntfState | |
| 13 | MSMSecFreeMemory | |
| 14 | MSMSecFreePeerState | |
| 15 | MSMSecFreeProfile | |
| 16 | MSMSecInitialize | |
| 17 | MSMSecInitializeAdapter | |
| 18 | MSMSecIsUIRequestPending | |
| 19 | MSMSecPerformCapabilityMatch | |
| 20 | MSMSecPerformPostAssociateSecurity | |
| 21 | MSMSecPerformPreAssociateSecurity | |
| 22 | MSMSecProcessSessionChange | |
| 23 | MSMSecQueryAPPeerPSKIndex | |
| 24 | MSMSecQueryIntfState | |
| 25 | MSMSecQueryPeerState | |
| 26 | MSMSecRecvIndication | |
| 27 | MSMSecRecvPacket | |
| 28 | MSMSecRedoSecurity | |
| 29 | MSMSecRemoveAPPeerKey | |
| 30 | MSMSecSendPktCompletion | |
| 31 | MSMSecSetAPPeerKey | |
| 32 | MSMSecSetAPSecondaryPSK | |
| 33 | MSMSecSetRuntimeState | |
| 34 | MSMSecSetWcnOneXEnable | |
| 35 | MSMSecStopPostAssociateSecurity | |
| 36 | MSMSecStopSecurity | |
| 37 | MSMSecUIResponse |
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 | ; | |
| 6 | LIBRARY "Wlansvc.dll" | |
| 7 | EXPORTS | |
| 8 | SvchostPushServiceGlobals | |
| 9 | WLNotifyOnLogoff | |
| 10 | WLNotifyOnLogon | |
| 11 | WlanSvcMain |
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 | ; | |
| 6 | LIBRARY "wlansvcpal.dll" | |
| 7 | EXPORTS | |
| 8 | WlanSvcPAL_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 | ; | |
| 6 | LIBRARY "wlgpclnt.dll" | |
| 7 | EXPORTS | |
| 8 | GenerateWLANPolicy | |
| 9 | ProcessWLANPolicyEx | |
| 10 | WLGPADeInit | |
| 11 | WLGPAInit |
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 | ; | |
| 6 | LIBRARY "wlidcli.dll" | |
| 7 | EXPORTS | |
| 8 | Initialize | |
| 9 | Uninitialize | |
| 10 | PassportFreeMemory | |
| 11 | CreateIdentityHandle | |
| 12 | SetCredential | |
| 13 | GetIdentityProperty | |
| 14 | SetIdentityProperty | |
| 15 | CloseIdentityHandle | |
| 16 | AuthIdentityToService | |
| 17 | PersistCredential | |
| 18 | RemovePersistedCredential | |
| 19 | EnumIdentitiesWithCachedCredentials | |
| 20 | NextIdentity | |
| 21 | CloseEnumIdentitiesHandle | |
| 22 | GetAuthState | |
| 23 | LogonIdentity | |
| 24 | HasPersistedCredential | |
| 25 | SetIdentityCallback | |
| 26 | InitializeEx | |
| 27 | GetWebAuthUrl | |
| 28 | LogonIdentityEx | |
| 29 | AuthIdentityToServiceEx | |
| 30 | GetAuthStateEx | |
| 31 | GetCertificate | |
| 32 | CancelPendingRequest | |
| 33 | VerifyCertificate | |
| 34 | GetIdentityPropertyByName | |
| 35 | SetExtendedProperty | |
| 36 | GetExtendedProperty | |
| 37 | GetServiceConfig | |
| 38 | SetIdcrlOptions | |
| 39 | GetWebAuthUrlEx | |
| 40 | EncryptWithSessionKey | |
| 41 | DecryptWithSessionKey | |
| 42 | SetUserExtendedProperty | |
| 43 | GetUserExtendedProperty | |
| 44 | SetChangeNotificationCallback | |
| 45 | RemoveChangeNotificationCallback | |
| 46 | GetExtendedError | |
| 47 | InitializeApp | |
| 48 | EnumerateCertificates | |
| 49 | GenerateCertToken | |
| 50 | GetDeviceId | |
| 51 | SetDeviceConsent | |
| 52 | GenerateDeviceToken | |
| 53 | CreateLinkedIdentityHandle | |
| 54 | IsDeviceIDAdmin | |
| 55 | EnumerateDeviceID | |
| 56 | GetAssertion | |
| 57 | VerifyAssertion | |
| 58 | OpenAuthenticatedBrowser | |
| 59 | LogonIdentityExWithUI | |
| 60 | GetResponseForHttpChallenge | |
| 61 | GetDeviceShortLivedToken | |
| 62 | GetHIPChallenge | |
| 63 | SetHIPSolution | |
| 64 | SetDefaultUserForTarget | |
| 65 | GetDefaultUserForTarget | |
| 66 | UICollectCredential | |
| 67 | AssociateDeviceToUser | |
| 68 | DisassociateDeviceFromUser | |
| 69 | EnumerateUserAssociatedDevices | |
| 70 | UpdateUserAssociatedDeviceProperties | |
| 71 | UIShowWaitDialog | |
| 72 | UIEndWaitDialog | |
| 73 | InitializeIDCRLTraceBuffer | |
| 74 | FlushIDCRLTraceBuffer | |
| 75 | IsMappedError | |
| 76 | GetAuthenticationStatus | |
| 77 | GetConfigDWORDValue | |
| 78 | ProvisionDeviceId | |
| 79 | GetDeviceIdEx | |
| 80 | RenewDeviceId | |
| 81 | DeProvisionDeviceId | |
| 82 | UnPackErrorBlob | |
| 83 | GetDefaultNoUISSOUser | |
| 84 | LogonIdentityExSSO | |
| 85 | StartTracing | |
| 86 | StopTracing | |
| 87 | GetRealmInfo | |
| 88 | CreateIdentityHandleEx | |
| 89 | AddUserToSsoGroup | |
| 90 | GetUsersFromSsoGroup | |
| 91 | RemoveUserFromSsoGroup | |
| 92 | SendOneTimeCode | |
| 93 | EncryptWithSessionKeyEx | |
| 94 | DecryptWithSessionKeyEx | |
| 95 | GetErrorMessage | |
| 96 | SendWatsonReport | |
| 97 | IDCRL_GetSpecifiedProtectionKey | |
| 98 | IDCRL_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 | ; | |
| 6 | LIBRARY "WLIDNSP.dll" | |
| 7 | EXPORTS | |
| 8 | NSPCleanup | |
| 9 | NSPStartup |
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 | ; | |
| 6 | LIBRARY "WLIDSVC.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "WMICLNT.dll" | |
| 7 | EXPORTS | |
| 8 | WmiCloseBlock | |
| 9 | WmiDevInstToInstanceNameA | |
| 10 | WmiDevInstToInstanceNameW | |
| 11 | WmiEnumerateGuids | |
| 12 | WmiExecuteMethodA | |
| 13 | WmiExecuteMethodW | |
| 14 | WmiFileHandleToInstanceNameA | |
| 15 | WmiFileHandleToInstanceNameW | |
| 16 | WmiFreeBuffer | |
| 17 | WmiMofEnumerateResourcesA | |
| 18 | WmiMofEnumerateResourcesW | |
| 19 | WmiNotificationRegistrationA | |
| 20 | WmiNotificationRegistrationW | |
| 21 | WmiOpenBlock | |
| 22 | WmiQueryAllDataA | |
| 23 | WmiQueryAllDataMultipleA | |
| 24 | WmiQueryAllDataMultipleW | |
| 25 | WmiQueryAllDataW | |
| 26 | WmiQueryGuidInformation | |
| 27 | WmiQuerySingleInstanceA | |
| 28 | WmiQuerySingleInstanceMultipleA | |
| 29 | WmiQuerySingleInstanceMultipleW | |
| 30 | WmiQuerySingleInstanceW | |
| 31 | WmiReceiveNotificationsA | |
| 32 | WmiReceiveNotificationsW | |
| 33 | WmiSetSingleInstanceA | |
| 34 | WmiSetSingleInstanceW | |
| 35 | WmiSetSingleItemA | |
| 36 | WmiSetSingleItemW |
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 | ; | |
| 6 | LIBRARY "wmidcom.dll" | |
| 7 | EXPORTS | |
| 8 | ??0CCritSec@@QAA@XZ | |
| 9 | ??1CCritSec@@QAA@XZ | |
| 10 | ??4CAutoSetActivityId@@QAAAAV0@ABV0@@Z | |
| 11 | ??4CCritSec@@QAAAAV0@ABV0@@Z | |
| 12 | MI_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 | ; | |
| 6 | LIBRARY "wmitomi.dll" | |
| 7 | EXPORTS | |
| 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 | |
| 15 | Adapter_CreateAdapterObject | |
| 16 | Adapter_DllCanUnloadNow | |
| 17 | Adapter_DllGetClassObject | |
| 18 | Adapter_RegisterDLL | |
| 19 | Adapter_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 | ; | |
| 6 | LIBRARY "wmpdui.dll" | |
| 7 | EXPORTS | |
| 8 | DUserCastHandle | |
| 9 | DUserDeleteGadget | |
| 10 | GetStdColorBrushF | |
| 11 | GetStdColorF | |
| 12 | GetStdColorPenF | |
| 13 | UtilDrawOutlineRect | |
| 14 | AddGadgetMessageHandler | |
| 15 | AddLayeredRef | |
| 16 | AdjustClipInsideRef | |
| 17 | AttachWndProcA | |
| 18 | AttachWndProcW | |
| 19 | AutoTrace | |
| 20 | BuildAnimation | |
| 21 | BuildDropTarget | |
| 22 | BuildInterpolation | |
| 23 | CacheDWriteRenderTarget | |
| 24 | ChangeCurrentAnimationScenario | |
| 25 | ClearPushedOpacitiesFromGadgetTree | |
| 26 | ClearTopmostVisual | |
| 27 | CreateAction | |
| 28 | CreateGadget | |
| 29 | CustomGadgetHitTestQuery | |
| 30 | DUserBuildGadget | |
| 31 | DUserCastClass | |
| 32 | DUserCastDirect | |
| 33 | DUserFindClass | |
| 34 | DUserFlushDeferredMessages | |
| 35 | DUserFlushMessages | |
| 36 | DUserGetAlphaPRID | |
| 37 | DUserGetGutsData | |
| 38 | DUserGetRectPRID | |
| 39 | DUserGetRotatePRID | |
| 40 | DUserGetScalePRID | |
| 41 | DUserInstanceOf | |
| 42 | DUserPostEvent | |
| 43 | DUserPostMethod | |
| 44 | DUserRegisterGuts | |
| 45 | DUserRegisterStub | |
| 46 | DUserRegisterSuper | |
| 47 | DUserSendEvent | |
| 48 | DUserSendMethod | |
| 49 | DUserStopAnimation | |
| 50 | DUserStopPVLAnimation | |
| 51 | DeleteHandle | |
| 52 | DestroyPendingDCVisuals | |
| 53 | DetachGadgetVisuals | |
| 54 | DetachWndProc | |
| 55 | DisableContainerHwnd | |
| 56 | DrawGadgetTree | |
| 57 | EnsureAnimationsEnabled | |
| 58 | EnsureGadgetTransInitialized | |
| 59 | EnumGadgets | |
| 60 | FindGadgetFromPoint | |
| 61 | FindGadgetMessages | |
| 62 | FindStdColor | |
| 63 | FireGadgetMessages | |
| 64 | ForwardGadgetMessage | |
| 65 | GadgetTransCompositionChanged | |
| 66 | GadgetTransSettingChanged | |
| 67 | GetActionTimeslice | |
| 68 | GetCachedDWriteRenderTarget | |
| 69 | GetDUserModule | |
| 70 | GetDebug | |
| 71 | GetFinalAnimatingPosition | |
| 72 | GetGadget | |
| 73 | GetGadgetAnimation | |
| 74 | GetGadgetBitmap | |
| 75 | GetGadgetBufferInfo | |
| 76 | GetGadgetCenterPoint | |
| 77 | GetGadgetFlags | |
| 78 | GetGadgetFocus | |
| 79 | GetGadgetLayerInfo | |
| 80 | GetGadgetMessageFilter | |
| 81 | GetGadgetProperty | |
| 82 | GetGadgetRect | |
| 83 | GetGadgetRgn | |
| 84 | GetGadgetRootInfo | |
| 85 | GetGadgetRotation | |
| 86 | GetGadgetScale | |
| 87 | GetGadgetSize | |
| 88 | GetGadgetStyle | |
| 89 | GetGadgetTicket | |
| 90 | GetGadgetVisual | |
| 91 | GetMessageExA | |
| 92 | GetMessageExW | |
| 93 | GetStdColorBrushI | |
| 94 | GetStdColorI | |
| 95 | GetStdColorName | |
| 96 | GetStdColorPenI | |
| 97 | GetStdPalette | |
| 98 | InitGadgetComponent | |
| 99 | InitGadgets | |
| 100 | InvalidateGadget | |
| 101 | InvalidateLayeredDescendants | |
| 102 | IsGadgetParentChainStyle | |
| 103 | IsInsideContext | |
| 104 | IsStartDelete | |
| 105 | LookupGadgetTicket | |
| 106 | MapGadgetPoints | |
| 107 | PeekMessageExA | |
| 108 | PeekMessageExW | |
| 109 | RegisterGadgetMessage | |
| 110 | RegisterGadgetMessageString | |
| 111 | RegisterGadgetProperty | |
| 112 | ReleaseDetachedObjects | |
| 113 | ReleaseLayeredRef | |
| 114 | ReleaseMouseCapture | |
| 115 | RemoveClippingImmunityFromVisual | |
| 116 | RemoveGadgetMessageHandler | |
| 117 | RemoveGadgetProperty | |
| 118 | ResetDUserDevice | |
| 119 | ScheduleGadgetTransitions | |
| 120 | SetActionTimeslice | |
| 121 | SetAtlasingHints | |
| 122 | SetGadgetBufferInfo | |
| 123 | SetGadgetCenterPoint | |
| 124 | SetGadgetFillF | |
| 125 | SetGadgetFillI | |
| 126 | SetGadgetFlags | |
| 127 | SetGadgetFocus | |
| 128 | SetGadgetFocusEx | |
| 129 | SetGadgetLayerInfo | |
| 130 | SetGadgetMessageFilter | |
| 131 | SetGadgetOrder | |
| 132 | SetGadgetParent | |
| 133 | SetGadgetProperty | |
| 134 | SetGadgetRect | |
| 135 | SetGadgetRootInfo | |
| 136 | SetGadgetRotation | |
| 137 | SetGadgetScale | |
| 138 | SetGadgetStyle | |
| 139 | SetHardwareDeviceUsage | |
| 140 | SetMinimumDCompVersion | |
| 141 | SetRestoreCachedLayeredRefFlag | |
| 142 | SetTransitionVisualProperties | |
| 143 | SetWindowResizeFlag | |
| 144 | UnregisterGadgetMessage | |
| 145 | UnregisterGadgetMessageString | |
| 146 | UnregisterGadgetProperty | |
| 147 | UtilBuildFont | |
| 148 | UtilDrawBlendRect | |
| 149 | UtilGetColor | |
| 150 | UtilSetBackground | |
| 151 | WaitMessageEx |
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 | ; | |
| 6 | LIBRARY "WMsgAPI.dll" | |
| 7 | EXPORTS | |
| 8 | WmsgBroadcastMessage | |
| 9 | WmsgBroadcastNotifyMessage | |
| 10 | WmsgPostMessage | |
| 11 | WmsgPostNotifyMessage | |
| 12 | WmsgSendMessage | |
| 13 | WmsgSendPSPMessage |
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 | ; | |
| 6 | LIBRARY "WorkFoldersGPExt.dll" | |
| 7 | EXPORTS | |
| 8 | ProcessGroupPolicy |
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 | ; | |
| 6 | LIBRARY "workfolderssvc.DLL" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | ClientInitEcsLib | |
| 10 | ClientUnInitEcsLib | |
| 11 | CreateSyncClientCoreInstance | |
| 12 | CreateSyncServiceCoreInstance | |
| 13 | SyncChangeBatchEnumCreateInstance |
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 | ; | |
| 6 | LIBRARY "WpdBusEnum.DLL" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "WPDSHEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CDefFolderMenu_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 | ; | |
| 6 | LIBRARY "wpnsruprov.dll" | |
| 7 | EXPORTS | |
| 8 | SruInitializeProvider | |
| 9 | SruUninitializeProvider |
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 | ; | |
| 6 | LIBRARY "WSDChngr.dll" | |
| 7 | EXPORTS | |
| 8 | WSDCHNGRChallengeDeviceClass | |
| 9 | WSDCHNGRInitialize | |
| 10 | WSDCHNGRRegisterDeviceToChallenge | |
| 11 | WSDCHNGRRemoveDevice | |
| 12 | WSDCHNGRShutdown |
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 | ; | |
| 6 | LIBRARY "WSECEDIT.DLL" | |
| 7 | EXPORTS | |
| 8 | InvokeCAPEACLEditor | |
| 9 | TranslateAceMasksAndCondition |
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 | ; | |
| 6 | LIBRARY "WSHEXT.dll" | |
| 7 | EXPORTS | |
| 8 | CreateIndirectData | |
| 9 | GetSignedDataMsg | |
| 10 | IsFileSupportedName | |
| 11 | PutSignedDataMsg | |
| 12 | RemoveSignedDataMsg | |
| 13 | VerifyIndirectData |
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 | ; | |
| 6 | LIBRARY "WSHIP6.dll" | |
| 7 | EXPORTS | |
| 8 | WSHAddressToString | |
| 9 | WSHEnumProtocols | |
| 10 | WSHGetProviderGuid | |
| 11 | WSHGetSockaddrType | |
| 12 | WSHGetSocketInformation | |
| 13 | WSHGetWSAProtocolInfo | |
| 14 | WSHGetWildcardSockaddr | |
| 15 | WSHGetWinsockMapping | |
| 16 | WSHIoctl | |
| 17 | WSHJoinLeaf | |
| 18 | WSHNotify | |
| 19 | WSHOpenSocket | |
| 20 | WSHOpenSocket2 | |
| 21 | WSHSetSocketInformation | |
| 22 | WSHStringToAddress |
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 | ; | |
| 6 | LIBRARY "wshnetbs.dll" | |
| 7 | EXPORTS | |
| 8 | WSHEnumProtocols | |
| 9 | WSHGetProviderGuid | |
| 10 | WSHGetSockaddrType | |
| 11 | WSHGetSocketInformation | |
| 12 | WSHGetWildcardSockaddr | |
| 13 | WSHGetWinsockMapping | |
| 14 | WSHNotify | |
| 15 | WSHOpenSocket | |
| 16 | WSHSetSocketInformation |
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 | ; | |
| 6 | LIBRARY "WSHTCPIP.dll" | |
| 7 | EXPORTS | |
| 8 | WSHAddressToString | |
| 9 | WSHEnumProtocols | |
| 10 | WSHGetProviderGuid | |
| 11 | WSHGetSockaddrType | |
| 12 | WSHGetSocketInformation | |
| 13 | WSHGetWSAProtocolInfo | |
| 14 | WSHGetWildcardSockaddr | |
| 15 | WSHGetWinsockMapping | |
| 16 | WSHIoctl | |
| 17 | WSHJoinLeaf | |
| 18 | WSHNotify | |
| 19 | WSHOpenSocket | |
| 20 | WSHOpenSocket2 | |
| 21 | WSHSetSocketInformation | |
| 22 | WSHStringToAddress |
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 | ; | |
| 6 | LIBRARY "WSHRM.dll" | |
| 7 | EXPORTS | |
| 8 | WSHAddressToString | |
| 9 | WSHEnumProtocols | |
| 10 | WSHGetBroadcastSockaddr | |
| 11 | WSHGetProviderGuid | |
| 12 | WSHGetSockaddrType | |
| 13 | WSHGetSocketInformation | |
| 14 | WSHGetWSAProtocolInfo | |
| 15 | WSHGetWildcardSockaddr | |
| 16 | WSHGetWinsockMapping | |
| 17 | WSHIoctl | |
| 18 | WSHJoinLeaf | |
| 19 | WSHNotify | |
| 20 | WSHOpenSocket | |
| 21 | WSHOpenSocket2 | |
| 22 | WSHSetSocketInformation | |
| 23 | WSHStringToAddress |
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 | ; | |
| 6 | LIBRARY "WSHTCPIP.dll" | |
| 7 | EXPORTS | |
| 8 | WSHAddressToString | |
| 9 | WSHEnumProtocols | |
| 10 | WSHGetBroadcastSockaddr | |
| 11 | WSHGetProviderGuid | |
| 12 | WSHGetSockaddrType | |
| 13 | WSHGetSocketInformation | |
| 14 | WSHGetWSAProtocolInfo | |
| 15 | WSHGetWildcardSockaddr | |
| 16 | WSHGetWinsockMapping | |
| 17 | WSHIoctl | |
| 18 | WSHJoinLeaf | |
| 19 | WSHNotify | |
| 20 | WSHOpenSocket | |
| 21 | WSHOpenSocket2 | |
| 22 | WSHSetSocketInformation | |
| 23 | WSHStringToAddress |
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 | ; | |
| 6 | LIBRARY "wsmagent.DLL" | |
| 7 | EXPORTS | |
| 8 | ??1CWSManCriticalSectionWithConditionVar@@QAA@XZ | |
| 9 | ?GetInitError@CWSManCriticalSection@@QBAKXZ | |
| 10 | GetProviderClassID | |
| 11 | MI_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 | ; | |
| 6 | LIBRARY "WsmWmiPl.DLL" | |
| 7 | EXPORTS | |
| 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 | |
| 35 | WSManPluginShutdown | |
| 36 | WSManPluginStartup | |
| 37 | WSManProvCreate | |
| 38 | WSManProvDelete | |
| 39 | WSManProvEnumerate | |
| 40 | WSManProvGet | |
| 41 | WSManProvIdentify | |
| 42 | WSManProvInvoke | |
| 43 | WSManProvPullEvents | |
| 44 | WSManProvPut | |
| 45 | WSManProvSubscribe | |
| 46 | WSManProvUnsubscribe |
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 | ; | |
| 6 | LIBRARY "WsService.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "WSSync.dll" | |
| 7 | EXPORTS | |
| 8 | WSAcquireLicense | |
| 9 | WSAcquireWindowsUpgradeLicense | |
| 10 | WSCallActivateAppxLOBSKU | |
| 11 | WSCreateAcquireLicenseChallenge | |
| 12 | WSEvaluatePackageRemediationState | |
| 13 | WSFulfillProduct | |
| 14 | WSGetAddonKeyInstalledFlag | |
| 15 | WSGetBase64EncodedActiveLicenseData | |
| 16 | WSGetDebuggingHeader | |
| 17 | WSGetLOBEnabledSKUFlag | |
| 18 | WSGetLastSyncTime | |
| 19 | WSGetLocalHardwareId | |
| 20 | WSGetWindowsUpgradeToken | |
| 21 | WSIsWindowsUpgradeLicensed | |
| 22 | WSLicenseFree | |
| 23 | WSLicenseGetDeviceList | |
| 24 | WSLicenseGetMachineID | |
| 25 | WSLicenseGetMyAppsList | |
| 26 | WSLicenseGetOemLicenseList | |
| 27 | WSLicenseInitialize | |
| 28 | WSLicenseParseReceiptResponse | |
| 29 | WSLicenseRemoveDevice | |
| 30 | WSParseLicenseResponse | |
| 31 | WSSetDebuggingHeader | |
| 32 | WSSyncLicenses | |
| 33 | WSSyncMachineLicenses | |
| 34 | g_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 | ; | |
| 6 | LIBRARY "wuaext.dll" | |
| 7 | EXPORTS | |
| 8 | IsWuAppDisabledByPolicy | |
| 9 | GetAutoUpdateNotification | |
| 10 | AutoUpdateNotificationSkipped | |
| 11 | GetDaysWaitedForAutoUpdateNotification |
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 | ; | |
| 6 | LIBRARY "wuaueng.dll" | |
| 7 | EXPORTS | |
| 8 | GetAUOptionsEx | |
| 9 | GeneralizeForImaging | |
| 10 | ord_3 @3 | |
| 11 | WUCheckForUpdatesAtShutdown | |
| 12 | WUAutoUpdateAtShutdown | |
| 13 | GetEngineStatusInfo | |
| 14 | RegisterServiceVersion | |
| 15 | ServiceHandler | |
| 16 | ServiceMain | |
| 17 | WUServiceMain |
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 | ; | |
| 6 | LIBRARY "WUDFCoinstaller.dll" | |
| 7 | EXPORTS | |
| 8 | CoDeviceInstall |
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 | ; | |
| 6 | LIBRARY "WUDFPlatform.dll" | |
| 7 | EXPORTS | |
| 8 | GetPlatformObject | |
| 9 | ClearPlatformTestingCallbacks | |
| 10 | GetAndInitializePlatformObject | |
| 11 | InitializePlatformLibrary | |
| 12 | PlatformUnhandledExceptionFilter | |
| 13 | SetPlatformTestingCallbacks | |
| 14 | ShutdownPlatformLibrary | |
| 15 | WdfGetLpcInterface | |
| 16 | WudfDebugBreakPoint | |
| 17 | WudfIsAnyDebuggerPresent | |
| 18 | WudfIsKernelDebuggerPresent | |
| 19 | WudfIsUserDebuggerPresent | |
| 20 | WudfWaitForDebugger |
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 | ; | |
| 6 | LIBRARY "WUDFSvc.dll" | |
| 7 | EXPORTS | |
| 8 | ServiceMain | |
| 9 | SvchostPushServiceGlobals |
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 | ; | |
| 6 | LIBRARY "WUDFx.DLL" | |
| 7 | EXPORTS | |
| 8 | Microsoft_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 | ; | |
| 6 | LIBRARY "WUDFx02000.DLL" | |
| 7 | EXPORTS | |
| 8 | FxFrameworkEntryUm | |
| 9 | Microsoft_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 | ; | |
| 6 | LIBRARY "WUDriver.dll" | |
| 7 | EXPORTS | |
| 8 | CancelCDMOperation | |
| 9 | CloseCDMContext | |
| 10 | DetFilesDownloaded | |
| 11 | DownloadIsInternetAvailable | |
| 12 | DownloadUpdatedFiles | |
| 13 | FindMatchingDriver | |
| 14 | LogDriverNotFound | |
| 15 | OpenCDMContext | |
| 16 | OpenCDMContextEx | |
| 17 | QueryDetectionFiles |
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 | ; | |
| 6 | LIBRARY "WUSettingsProvider.dll" | |
| 7 | EXPORTS | |
| 8 | GetSetting |
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 | ; | |
| 6 | LIBRARY "wwaninst.dll" | |
| 7 | EXPORTS | |
| 8 | WwanDeviceClassCoInstaller |
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 | ; | |
| 6 | LIBRARY "WWanMM.dll" | |
| 7 | EXPORTS | |
| 8 | StartDiagnosticsW |
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 | ; | |
| 6 | LIBRARY "NDIS_60_WMI.DLL" | |
| 7 | EXPORTS | |
| 8 | DimInitialize |
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 | ; | |
| 6 | LIBRARY "WWANSVC.DLL" | |
| 7 | EXPORTS | |
| 8 | SvchostPushServiceGlobals | |
| 9 | WwanSvcMain |
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 | ; | |
| 6 | LIBRARY "wwapi.dll" | |
| 7 | EXPORTS | |
| 8 | Wwan2CloseDeviceServiceCommandSession | |
| 9 | Wwan2CloseDeviceServiceDataSession | |
| 10 | Wwan2CloseHandle | |
| 11 | Wwan2EnumerateDeviceServices | |
| 12 | Wwan2OpenDeviceServiceCommandSession | |
| 13 | Wwan2OpenDeviceServiceDataSession | |
| 14 | Wwan2OpenHandle | |
| 15 | Wwan2QueryDeviceServiceSupportedCommands | |
| 16 | Wwan2QueryInterfaces | |
| 17 | Wwan2RegisterNotification | |
| 18 | Wwan2SendDeviceServiceCommand | |
| 19 | Wwan2SubscribePowerStateEvents | |
| 20 | Wwan2WriteDeviceServiceData | |
| 21 | WwanAllocateMemory | |
| 22 | WwanAuthChallenge | |
| 23 | WwanCloseHandle | |
| 24 | WwanConnect | |
| 25 | WwanConnectAdditionalPdpContext | |
| 26 | WwanConnectByActivityId | |
| 27 | WwanConvertToInterfaceObject | |
| 28 | WwanDeleteProfile | |
| 29 | WwanDisconnect | |
| 30 | WwanEnumerateInterfaces | |
| 31 | WwanFreeMemory | |
| 32 | WwanGetProfile | |
| 33 | WwanGetProfileHomeProviderName | |
| 34 | WwanGetProfileIndex | |
| 35 | WwanGetProfileIstream | |
| 36 | WwanGetProfileList | |
| 37 | WwanGetProfileMetaData | |
| 38 | WwanOpenHandle | |
| 39 | WwanQueryInterface | |
| 40 | WwanRegister | |
| 41 | WwanRegisterNotification | |
| 42 | WwanScan | |
| 43 | WwanSetInterface | |
| 44 | WwanSetProfile | |
| 45 | WwanSetProfileMetaData | |
| 46 | WwanSetSmsConfiguration | |
| 47 | WwanSmsDelete | |
| 48 | WwanSmsRead | |
| 49 | WwanSmsSend | |
| 50 | WwanUssdRequest |
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 | ; | |
| 6 | LIBRARY "XmlLite.dll" | |
| 7 | EXPORTS | |
| 8 | CreateXmlReader | |
| 9 | CreateXmlReaderInputWithEncodingCodePage | |
| 10 | CreateXmlReaderInputWithEncodingName | |
| 11 | CreateXmlWriter | |
| 12 | CreateXmlWriterOutputWithEncodingCodePage | |
| 13 | CreateXmlWriterOutputWithEncodingName |
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 | ; | |
| 6 | LIBRARY "XPSPRINT.DLL" | |
| 7 | EXPORTS | |
| 8 | ord_3 @3 | |
| 9 | ord_5 @5 | |
| 10 | ord_7 @7 | |
| 11 | ord_9 @9 | |
| 12 | StartXpsPrintJob | |
| 13 | StartXpsPrintJob1 |
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 | ; | |
| 6 | LIBRARY "XpsRasterService.DLL" | |
| 7 | EXPORTS | |
| 8 | ord_1 @1 | |
| 9 | DrvPopulateFilterServices |
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 | ; | |
| 6 | LIBRARY "XpsSvcs.DLL" | |
| 7 | EXPORTS | |
| 8 | DDLogHelper | |
| 9 | CreateContainerConsumer | |
| 10 | CreateContainerProducer | |
| 11 | CreateReachPackageReceiver | |
| 12 | CreateReachPackageSender | |
| 13 | CreateSeekableBuffer | |
| 14 | CreateStreamReceiverOnFileHandle | |
| 15 | CreateStreamSenderOnFileHandle | |
| 16 | CreateStreamSenderOnIStream |
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 | ; | |
| 6 | LIBRARY "xwizards.dll" | |
| 7 | EXPORTS | |
| 8 | ProcessXMLFileA | |
| 9 | ProcessXMLFileW | |
| 10 | ResetRegistrationA | |
| 11 | ResetRegistrationW | |
| 12 | RunPropertySheetA | |
| 13 | RunPropertySheetW | |
| 14 | RunWizardA | |
| 15 | RunWizardW | |
| 16 | XWProcessXMLFile | |
| 17 | XWRegisterHost | |
| 18 | XWRegisterPageWithPage | |
| 19 | XWRegisterPageWithTask | |
| 20 | XWRegisterTaskWithHost | |
| 21 | XWUnregisterHost | |
| 22 | XWUnregisterHostTaskLink | |
| 23 | XWUnregisterPage | |
| 24 | XWUnregisterPagesLink | |
| 25 | XWUnregisterTask | |
| 26 | XWUnregisterTaskPageLink |
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 | ; | |
| 6 | LIBRARY "ZIPFLDR.dll" | |
| 7 | EXPORTS | |
| 8 | RouteTheCall |
lib/libc/mingw/libsrc/uuid.c+10| ... | ... | @@ -14,6 +14,7 @@ |
| 14 | 14 | #define INITGUID |
| 15 | 15 | #include <basetyps.h> |
| 16 | 16 | |
| 17 | #include <credentialprovider.h> | |
| 17 | 18 | #include <textstor.h> |
| 18 | 19 | #include <shobjidl.h> |
| 19 | 20 | #include <propkey.h> |
| ... | ... | @@ -24,7 +25,16 @@ |
| 24 | 25 | #include <oledb.h> |
| 25 | 26 | #include <uiautomation.h> |
| 26 | 27 | #include <urlmon.h> |
| 28 | ||
| 27 | 29 | #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 | ||
| 28 | 38 | #include <d3d11_1.h> |
| 29 | 39 | #include <directmanipulation.h> |
| 30 | 40 | #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 |
| 12 | 12 | values and initial significand bit of 0 (with one or more other |
| 13 | 13 | significand bits of 1). An Inf has significand of 0 and |
| 14 | 14 | exponent of all 1 values. A denormal value has all exponent bits of 0. |
| 15 | ||
| 16 | The following does _not_ follow those rules, but uses values | |
| 17 | equal to those exported from MS C++ runtime lib, msvcprt.dll | |
| 18 | for float and double. MSVC however, does not have long doubles. | |
| 19 | 15 | */ |
| 20 | 16 | |
| 21 | 17 | |
| 22 | 18 | #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 } | |
| 25 | 21 | #define __DOUBLE_DENORM_REP {1, 0, 0, 0} |
| 26 | 22 | |
| 27 | 23 | #define D_NAN_MASK 0x7ff0000000000000LL /* this will mask NaN's and Inf's */ |
| 28 | 24 | |
| 29 | 25 | #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 } | |
| 32 | 28 | #define __FLOAT_DENORM_REP {1,0} |
| 33 | 29 | |
| 34 | 30 | #define F_NAN_MASK 0x7f800000 |
| ... | ... | @@ -38,8 +34,8 @@ for float and double. MSVC however, does not have long doubles. |
| 38 | 34 | Padded to 96 bits |
| 39 | 35 | */ |
| 40 | 36 | #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 } | |
| 43 | 39 | #define __LONG_DOUBLE_DENORM_REP {1, 0, 0, 0, 0, 0} |
| 44 | 40 | |
| 45 | 41 | union _ieee_rep |
lib/libc/mingw/math/lrint.c+7-1| ... | ... | @@ -5,10 +5,16 @@ |
| 5 | 5 | */ |
| 6 | 6 | #include <math.h> |
| 7 | 7 | |
| 8 | #if defined(_AMD64_) || defined(__x86_64__) | |
| 9 | #include <xmmintrin.h> | |
| 10 | #endif | |
| 11 | ||
| 8 | 12 | long lrint (double x) |
| 9 | 13 | { |
| 10 | 14 | 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__) | |
| 12 | 18 | __asm__ __volatile__ ("fistpl %0" : "=m" (retval) : "t" (x) : "st"); |
| 13 | 19 | #elif defined(__arm__) || defined(_ARM_) |
| 14 | 20 | float temp; |
lib/libc/mingw/math/lrintf.c+7-1| ... | ... | @@ -5,10 +5,16 @@ |
| 5 | 5 | */ |
| 6 | 6 | #include <math.h> |
| 7 | 7 | |
| 8 | #if defined(_AMD64_) || defined(__x86_64__) | |
| 9 | #include <xmmintrin.h> | |
| 10 | #endif | |
| 11 | ||
| 8 | 12 | long lrintf (float x) |
| 9 | 13 | { |
| 10 | 14 | 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__) | |
| 12 | 18 | __asm__ __volatile__ ("fistpl %0" : "=m" (retval) : "t" (x) : "st"); |
| 13 | 19 | #elif defined(__arm__) || defined(_ARM_) |
| 14 | 20 | __asm__ __volatile__ ( |
lib/libc/mingw/math/powi.def.h+33-12| ... | ... | @@ -68,6 +68,22 @@ |
| 68 | 68 | #include <math.h> |
| 69 | 69 | #include <errno.h> |
| 70 | 70 | |
| 71 | static __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 | ||
| 71 | 87 | __FLT_TYPE __cdecl |
| 72 | 88 | __FLT_ABI(__powi) (__FLT_TYPE x, int y); |
| 73 | 89 | |
| ... | ... | @@ -76,6 +92,7 @@ __FLT_ABI(__powi) (__FLT_TYPE x, int y) |
| 76 | 92 | { |
| 77 | 93 | int x_class = fpclassify (x); |
| 78 | 94 | int odd_y = y & 1; |
| 95 | int recip = 0; | |
| 79 | 96 | __FLT_TYPE d, rslt; |
| 80 | 97 | |
| 81 | 98 | if (y == 0 || x == __FLT_CST(1.0)) |
| ... | ... | @@ -125,7 +142,8 @@ __FLT_ABI(__powi) (__FLT_TYPE x, int y) |
| 125 | 142 | |
| 126 | 143 | if (y < 0) |
| 127 | 144 | { |
| 128 | d = __FLT_CST(1.0) / d; | |
| 145 | /* By default, do the reciprocal of the result. */ | |
| 146 | recip = 1; | |
| 129 | 147 | y = -y; |
| 130 | 148 | } |
| 131 | 149 | |
| ... | ... | @@ -135,18 +153,21 @@ __FLT_ABI(__powi) (__FLT_TYPE x, int y) |
| 135 | 153 | rslt = d; |
| 136 | 154 | else |
| 137 | 155 | { |
| 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 | } | |
| 149 | 168 | } |
| 169 | if (recip) | |
| 170 | rslt = __FLT_CST(1.0) / rslt; | |
| 150 | 171 | if (signbit (x) && odd_y) |
| 151 | 172 | rslt = -rslt; |
| 152 | 173 | 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 | ||
| 9 | static char ** local__initenv; | |
| 10 | static wchar_t ** local__winitenv; | |
| 11 | char *** __MINGW_IMP_SYMBOL(__initenv) = &local__initenv; | |
| 12 | wchar_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 | ||
| 32 | char * __cdecl | |
| 33 | basename (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 |
| 47 | 47 | return (unsigned) (pitdCur - pitdBase); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | #define __ImageBase __MINGW_LSYMBOL(_image_base__) | |
| 51 | 50 | extern IMAGE_DOS_HEADER __ImageBase; |
| 52 | 51 | |
| 53 | 52 | #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. | |
| 2 | 19 | * |
| 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. | |
| 4 | 25 | * |
| 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. | |
| 8 | 28 | * |
| 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. | |
| 10 | 32 | * |
| 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. | |
| 13 | 35 | * |
| 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.) | |
| 19 | 38 | * |
| 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` | |
| 20 | 62 | */ |
| 21 | 63 | |
| 22 | #include <stdio.h> | |
| 23 | #include <stdlib.h> | |
| 24 | #include <string.h> | |
| 25 | #include <libgen.h> | |
| 26 | #include <locale.h> | |
| 64 | struct path_info | |
| 65 | { | |
| 66 | /* This points to end of the UNC prefix and drive letter, if any. */ | |
| 67 | char* prefix_end; | |
| 27 | 68 | |
| 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; | |
| 31 | 73 | |
| 32 | char * __cdecl | |
| 33 | dirname(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 | ||
| 84 | static | |
| 85 | void | |
| 86 | do_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; | |
| 170 | 129 | } |
| 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 | ||
| 186 | char* | |
| 187 | dirname(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; | |
| 172 | 210 | } |
| 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 | ||
| 241 | char* | |
| 242 | basename(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 @@ |
| 16 | 16 | #include <inttypes.h> |
| 17 | 17 | |
| 18 | 18 | intmax_t |
| 19 | __cdecl | |
| 19 | 20 | imaxabs (intmax_t _j) |
| 20 | 21 | { return	_j >= 0 ? _j : -_j; } |
| 22 | intmax_t (__cdecl *__MINGW_IMP_SYMBOL(imaxabs))(intmax_t) = imaxabs; | |
| 21 | 23 | |
| 22 | long long __attribute__ ((alias ("imaxabs")))	llabs (long long); | |
| 24 | long long __attribute__ ((alias ("imaxabs"))) __cdecl llabs (long long); | |
| 25 | long 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 @@ |
| 19 | 19 | #include	<stdlib.h> |
| 20 | 20 | |
| 21 | 21 | imaxdiv_t |
| 22 | __cdecl | |
| 22 | 23 | imaxdiv(intmax_t numer, intmax_t denom) |
| 23 | 24 | { |
| 24 | 25 | imaxdiv_t	result; |
| ... | ... | @@ -26,6 +27,9 @@ imaxdiv(intmax_t numer, intmax_t denom) |
| 26 | 27 | result.rem = numer % denom; |
| 27 | 28 | return result; |
| 28 | 29 | } |
| 30 | imaxdiv_t (__cdecl *__MINGW_IMP_SYMBOL(imaxdiv))(intmax_t, intmax_t) = imaxdiv; | |
| 29 | 31 | |
| 30 | 32 | lldiv_t __attribute__ ((alias ("imaxdiv"))) |
| 33 | __cdecl | |
| 31 | 34 | lldiv (long long, long long); |
| 35 | lldiv_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) |
| 49 | 49 | } |
| 50 | 50 | fd = _sopen(template_name, |
| 51 | 51 | _O_RDWR | _O_CREAT | _O_EXCL | _O_BINARY, |
| 52 | _SH_DENYRW, _S_IREAD | _S_IWRITE); | |
| 52 | _SH_DENYNO, _S_IREAD | _S_IWRITE); | |
| 53 | 53 | if (fd != -1) return fd; |
| 54 | 54 | if (fd == -1 && errno != EEXIST) return -1; |
| 55 | 55 | } |
lib/libc/mingw/misc/strtoimax.c+9| ... | ... | @@ -31,6 +31,7 @@ |
| 31 | 31 | #define valid(n, b)	((n) >= 0 && (n) < (b)) |
| 32 | 32 | |
| 33 | 33 | intmax_t |
| 34 | __cdecl | |
| 34 | 35 | strtoimax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base) |
| 35 | 36 | 	{ |
| 36 | 37 | 	register uintmax_t	accum;	/* accumulates converted value */ |
| ... | ... | @@ -109,6 +110,14 @@ strtoimax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base) |
| 109 | 110 | 	else |
| 110 | 111 | 		return (intmax_t)(minus ? -accum : accum); |
| 111 | 112 | 	} |
| 113 | intmax_t (__cdecl *__MINGW_IMP_SYMBOL(strtoimax))(const char* __restrict__, char ** __restrict__, int) = strtoimax; | |
| 112 | 114 | |
| 113 | 115 | long long __attribute__ ((alias ("strtoimax"))) |
| 116 | __cdecl | |
| 114 | 117 | strtoll (const char* __restrict__ nptr, char ** __restrict__ endptr, int base); |
| 118 | long 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 @@ |
| 31 | 31 | #define valid(n, b)	((n) >= 0 && (n) < (b)) |
| 32 | 32 | |
| 33 | 33 | uintmax_t |
| 34 | __cdecl | |
| 34 | 35 | strtoumax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base) |
| 35 | 36 | 	{ |
| 36 | 37 | 	register uintmax_t	accum;	/* accumulates converted value */ |
| ... | ... | @@ -107,6 +108,14 @@ strtoumax(const char * __restrict__ nptr, char ** __restrict__ endptr, int base) |
| 107 | 108 | 	else |
| 108 | 109 | 		return minus ? -accum : accum;	/* (yes!) */ |
| 109 | 110 | 	} |
| 111 | uintmax_t (__cdecl *__MINGW_IMP_SYMBOL(strtoumax))(const char* __restrict__, char ** __restrict__, int) = strtoumax; | |
| 110 | 112 | |
| 111 | 113 | unsigned long long __attribute__ ((alias ("strtoumax"))) |
| 114 | __cdecl | |
| 112 | 115 | strtoull (const char* __restrict__ nptr, char ** __restrict__ endptr, int base); |
| 116 | unsigned long long (__cdecl *__MINGW_IMP_SYMBOL(strtoull))(const char* __restrict__, char ** __restrict__, int) = strtoull; | |
| 117 | ||
| 118 | unsigned __int64 __attribute__ ((alias ("strtoumax"))) | |
| 119 | __cdecl | |
| 120 | _strtoui64 (const char* __restrict__ nptr, char ** __restrict__ endptr, int base); | |
| 121 | unsigned __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 | ||
| 25 | size_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 | ||
| 25 | size_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 | ||
| 25 | size_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 | ||
| 25 | size_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*); |
| 16 | 16 | |
| 17 | 17 | errno_t (__cdecl *__MINGW_IMP_SYMBOL(rand_s))(unsigned int*) = init_rand_s; |
| 18 | 18 | |
| 19 | errno_t __cdecl | |
| 20 | rand_s(unsigned int *val) | |
| 21 | { | |
| 22 | return __MINGW_IMP_SYMBOL(rand_s)(val); | |
| 23 | } | |
| 24 | ||
| 19 | 25 | static errno_t __cdecl init_rand_s(unsigned int *val) |
| 20 | 26 | { |
| 21 | 27 | 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) |
| 19 | 19 | f = (errno_t __cdecl (*)(char *, size_t, int)) |
| 20 | 20 | GetProcAddress (__mingw_get_msvcrt_handle (), "strerror_s"); |
| 21 | 21 | if (!f) |
| 22 | { | |
| 22 | 23 | f = _int_strerror_s; |
| 23 | __MINGW_IMP_SYMBOL(strerror_s) = f; | |
| 24 | } | |
| 25 | __MINGW_IMP_SYMBOL(strerror_s) = f; | |
| 24 | 26 | } |
| 25 | 27 | return (*f)(buffer, numberOfElements, errnum); |
| 26 | 28 | } |
lib/libc/mingw/stdio/_vscprintf.c+1-1| ... | ... | @@ -15,7 +15,7 @@ static int __cdecl emu_vscprintf(const char * __restrict__ format, va_list argli |
| 15 | 15 | { |
| 16 | 16 | char *buffer, *new_buffer; |
| 17 | 17 | size_t size; |
| 18 | int ret; | |
| 18 | int ret = -1; | |
| 19 | 19 | |
| 20 | 20 | /* if format is a null pointer, _vscprintf() returns -1 and sets errno to EINVAL */ |
| 21 | 21 | if (!format) { |
lib/libc/mingw/stdio/atoll.c+5-2| ... | ... | @@ -6,5 +6,8 @@ |
| 6 | 6 | #define __CRT__NO_INLINE |
| 7 | 7 | #include <stdlib.h> |
| 8 | 8 | |
| 9 | long long atoll (const char * _c) | |
| 10 | 	{ return _atoi64 (_c); } | |
| 9 | long long __cdecl atoll(const char * nptr) { return strtoll(nptr, NULL, 10); } | |
| 10 | long 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 | ||
| 8 | int __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 | ||
| 47 | int __cdecl __fprintf (FILE *, const APICHAR *, ...) __MINGW_NOTHROW; | |
| 48 | ||
| 49 | int __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 | ||
| 5 | extern int __mingw_vfscanf (FILE *stream, const char *format, va_list argp); | |
| 6 | ||
| 7 | int __mingw_fscanf (FILE *stream, const char *format, ...); | |
| 8 | ||
| 9 | int | |
| 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 | ||
| 5 | extern int __mingw_vfwscanf (FILE *stream, const wchar_t *format, va_list argp); | |
| 6 | ||
| 7 | int __mingw_fwscanf (FILE *stream, const wchar_t *format, ...); | |
| 8 | ||
| 9 | int | |
| 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 | ||
| 36 | void __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 | ||
| 60 | void *__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 | ||
| 78 | void __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 | ||
| 102 | void *__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 | |
| 93 | typedef struct ATTRIB_GCC_STRUCT __tI128 { | |
| 94 | int64_t digits[2]; | |
| 95 | } __tI128; | |
| 96 | ||
| 97 | typedef struct ATTRIB_GCC_STRUCT __tI128_2 { | |
| 98 | uint32_t digits32[4]; | |
| 99 | } __tI128_2; | |
| 100 | ||
| 101 | typedef 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 | ||
| 187 | typedef 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 | ||
| 204 | typedef 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 | ||
| 216 | typedef 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 | ||
| 279 | typedef 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 */ | |
| 301 | static 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 */ | |
| 312 | static | |
| 313 | void __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 */ | |
| 347 | static | |
| 348 | void __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 */ | |
| 365 | static | |
| 366 | void __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 | ||
| 387 | static | |
| 388 | void __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 | ||
| 412 | static | |
| 413 | void __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 | ||
| 538 | static | |
| 539 | void __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 | ||
| 561 | static | |
| 562 | void __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 | ||
| 672 | static | |
| 673 | void __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 | ||
| 696 | static | |
| 697 | int __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 | ||
| 710 | static | |
| 711 | void __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 | } | |
| 786 | while( 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 | ||
| 884 | static | |
| 885 | void __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 | ||
| 1029 | typedef 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 | ||
| 1051 | static __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 | ||
| 1090 | static | |
| 1091 | char *__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 | ||
| 1146 | static | |
| 1147 | char *__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 | ||
| 1155 | static | |
| 1156 | char *__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 | */ | |
| 1175 | static | |
| 1176 | char *__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 | ||
| 1196 | static | |
| 1197 | char *__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 | ||
| 1225 | static | |
| 1226 | void __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 | ||
| 1294 | static | |
| 1295 | void __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 | ||
| 1318 | static | |
| 1319 | void __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 | ||
| 1366 | static | |
| 1367 | void __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 | ||
| 1529 | static | |
| 1530 | void __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 | ||
| 1597 | static | |
| 1598 | void __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 | ||
| 1644 | typedef struct decimal128_decode { | |
| 1645 | int64_t significand[2]; | |
| 1646 | int32_t exponent; | |
| 1647 | int sig_neg; | |
| 1648 | int exp_neg; | |
| 1649 | } decimal128_decode; | |
| 1650 | ||
| 1651 | static 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 | ||
| 1682 | static | |
| 1683 | void __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 | ||
| 1761 | static | |
| 1762 | void __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 | ||
| 1845 | static | |
| 1846 | void __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 | ||
| 1857 | static | |
| 1858 | void __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 | ||
| 1894 | static | |
| 1895 | void __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 | ||
| 2006 | static | |
| 2007 | void __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 | ||
| 2271 | static | |
| 2272 | void __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 | ||
| 2333 | static | |
| 2334 | void __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 | ||
| 2411 | int | |
| 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 | ||
| 98 | int __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 | ||
| 47 | int __cdecl __printf(const APICHAR *, ...) __MINGW_NOTHROW; | |
| 48 | ||
| 49 | int __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 | ||
| 5 | extern int __mingw_vfscanf (FILE *stream, const char *format, va_list argp); | |
| 6 | ||
| 7 | int __mingw_scanf (const char *format, ...); | |
| 8 | int __mingw_vscanf (const char *format, va_list argp); | |
| 9 | ||
| 10 | int | |
| 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 | ||
| 23 | int | |
| 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 | ||
| 31 | int __cdecl __snprintf (APICHAR *, size_t, const APICHAR *fmt, ...) __MINGW_NOTHROW; | |
| 32 | int __cdecl __vsnprintf (APICHAR *, size_t, const APICHAR *fmt, va_list) __MINGW_NOTHROW; | |
| 33 | ||
| 34 | int __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 | ||
| 47 | int __cdecl __sprintf (APICHAR *, const APICHAR *, ...) __MINGW_NOTHROW; | |
| 48 | ||
| 49 | int __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 | ||
| 4 | extern int __mingw_vsscanf (const char *buf, const char *format, va_list argp); | |
| 5 | ||
| 6 | int __mingw_sscanf (const char *buf, const char *format, ...); | |
| 7 | ||
| 8 | int | |
| 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 | ||
| 4 | extern int __mingw_vswscanf (const wchar_t *buf, const wchar_t *format, va_list argp); | |
| 5 | ||
| 6 | int __mingw_swscanf (const wchar_t *buf, const wchar_t *format, ...); | |
| 7 | ||
| 8 | int | |
| 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 | ||
| 8 | int __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 | ||
| 47 | int __cdecl __vfprintf (FILE *, const APICHAR *, va_list) __MINGW_NOTHROW; | |
| 48 | ||
| 49 | int __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. */ | |
| 76 | typedef 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 | ||
| 88 | static void * | |
| 89 | get_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 | ||
| 99 | static void | |
| 100 | optimize_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 | ||
| 116 | static void | |
| 117 | back_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 | ||
| 133 | static int | |
| 134 | in_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 | ||
| 172 | static int | |
| 173 | match_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 | ||
| 202 | struct gcollect | |
| 203 | { | |
| 204 | size_t count; | |
| 205 | struct gcollect *next; | |
| 206 | char **ptrs[32]; | |
| 207 | }; | |
| 208 | ||
| 209 | static void | |
| 210 | release_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 | ||
| 236 | static int | |
| 237 | cleanup_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 | ||
| 268 | static struct gcollect * | |
| 269 | resize_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 | ||
| 280 | static char * | |
| 281 | resize_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 | ||
| 302 | static 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 | ||
| 1614 | int | |
| 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 | ||
| 1623 | int | |
| 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 | ||
| 47 | int __cdecl __vprintf (const APICHAR *, va_list) __MINGW_NOTHROW; | |
| 48 | ||
| 49 | int __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 | ||
| 31 | int __cdecl __vsnprintf (APICHAR *, size_t, const APICHAR *fmt, va_list) __MINGW_NOTHROW; | |
| 32 | int __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 | ||
| 47 | int __cdecl __vsprintf (APICHAR *, const APICHAR *, va_list) __MINGW_NOTHROW; | |
| 48 | ||
| 49 | int __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 | ||
| 5 | extern int __mingw_vfwscanf (FILE *stream, const wchar_t *format, va_list argp); | |
| 6 | ||
| 7 | int __mingw_wscanf (const wchar_t *format, ...); | |
| 8 | int __mingw_vwscanf (const wchar_t *format, va_list argp); | |
| 9 | ||
| 10 | int | |
| 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 | ||
| 23 | int | |
| 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. */ | |
| 84 | typedef 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 | ||
| 96 | static void * | |
| 97 | get_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 | ||
| 108 | static void | |
| 109 | optimize_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 | ||
| 125 | static void | |
| 126 | back_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 | ||
| 142 | static int | |
| 143 | in_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 | ||
| 181 | static int | |
| 182 | match_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 | ||
| 211 | struct gcollect | |
| 212 | { | |
| 213 | size_t count; | |
| 214 | struct gcollect *next; | |
| 215 | char **ptrs[32]; | |
| 216 | }; | |
| 217 | ||
| 218 | static void | |
| 219 | release_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 | ||
| 245 | static int | |
| 246 | cleanup_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 | ||
| 277 | static struct gcollect * | |
| 278 | resize_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 | ||
| 289 | static wchar_t * | |
| 290 | resize_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 | ||
| 311 | static 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 | ||
| 1613 | int | |
| 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 | ||
| 1622 | int | |
| 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 | ||
| 26 | int __cdecl _snwprintf(wchar_t * restrict _Dest, size_t _Count, const wchar_t * restrict _Format, ...); | |
| 27 | ||
| 28 | int __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 | ||
| 38 | int __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 | ||
| 11 | int __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 | } | |
| 15 | int __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 | ||
| 11 | int __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 | } | |
| 15 | int __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 | ||
| 11 | int __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 | } | |
| 15 | int __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 | ||
| 11 | int __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 | } | |
| 20 | int __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 | ||
| 11 | int __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 | } | |
| 19 | int __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 | ||
| 26 | int __cdecl fwprintf(FILE *ptr, const wchar_t *fmt, ...); | |
| 27 | ||
| 28 | int __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 | ||
| 38 | int __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 | ||
| 11 | int __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 | } | |
| 20 | int __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 | ||
| 11 | int __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 | } | |
| 19 | int __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 | ||
| 11 | int __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 | } | |
| 20 | int __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 | ||
| 11 | int __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 | } | |
| 20 | int __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 | ||
| 11 | int __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 | ||
| 20 | int __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 | ||
| 11 | int __cdecl vfprintf(FILE * __restrict__ _File,const char * __restrict__ _Format,va_list _ArgList) | |
| 12 | { | |
| 13 | return __stdio_common_vfprintf(0, _File, _Format, NULL, _ArgList); | |
| 14 | } | |
| 15 | int __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 | ||
| 11 | int __cdecl vfscanf (FILE *__stream, const char *__format, __builtin_va_list __local_argv) { | |
| 12 | return __stdio_common_vfscanf(0, __stream, __format, NULL, __local_argv); | |
| 13 | } | |
| 14 | int __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 | ||
| 11 | int __cdecl vprintf(const char * __restrict__ _Format,va_list _ArgList) | |
| 12 | { | |
| 13 | return __stdio_common_vfprintf(0, stdout, _Format, NULL, _ArgList); | |
| 14 | } | |
| 15 | int __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 | ||
| 11 | int __cdecl vscanf(const char *__format, __builtin_va_list __local_argv) { | |
| 12 | return __stdio_common_vfscanf(0, stdin, __format, NULL, __local_argv); | |
| 13 | } | |
| 14 | int __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 | ||
| 11 | int __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 | } | |
| 15 | int __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 | ||
| 11 | int __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 | } | |
| 15 | int __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 | ||
| 11 | int __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 | } | |
| 14 | int __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( |
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | const mingw32_lib_deps = [_][]const u8{ |
| 516 | "crt0_c.c", | |
| 517 | 516 | "dll_argv.c", |
| 518 | 517 | "gccmain.c", |
| 519 | 518 | "natstart.c", |
| 520 | 519 | "pseudo-reloc-list.c", |
| 521 | 520 | "wildcard.c", |
| 522 | 521 | "charmax.c", |
| 523 | "crt0_w.c", | |
| 524 | 522 | "dllargv.c", |
| 525 | 523 | "_newmode.c", |
| 526 | 524 | "tlssup.c", |
| ... | ... | @@ -692,7 +690,6 @@ const mingwex_generic_src = [_][]const u8{ |
| 692 | 690 | "gdtoa" ++ path.sep_str ++ "strtopx.c", |
| 693 | 691 | "gdtoa" ++ path.sep_str ++ "sum.c", |
| 694 | 692 | "gdtoa" ++ path.sep_str ++ "ulp.c", |
| 695 | "math" ++ path.sep_str ++ "abs64.c", | |
| 696 | 693 | "math" ++ path.sep_str ++ "cbrt.c", |
| 697 | 694 | "math" ++ path.sep_str ++ "cbrtf.c", |
| 698 | 695 | "math" ++ path.sep_str ++ "cbrtl.c", |
| ... | ... | @@ -832,10 +829,6 @@ const mingwex_generic_src = [_][]const u8{ |
| 832 | 829 | "misc" ++ path.sep_str ++ "tfind.c", |
| 833 | 830 | "misc" ++ path.sep_str ++ "tsearch.c", |
| 834 | 831 | "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", | |
| 839 | 832 | "misc" ++ path.sep_str ++ "wcrtomb.c", |
| 840 | 833 | "misc" ++ path.sep_str ++ "wcsnlen.c", |
| 841 | 834 | "misc" ++ path.sep_str ++ "wcstof.c", |