| author | |
| committer | |
| log | 6671442a7c42ab9d7e74fe0e5a184c0a210c6112 |
| tree | 253d43cbd74e9420b9b1688cf7273270f2629d19 |
| parent | 4d79806459618f1830772ed6dfbb82059589aaa4 |
| signature |
19 files changed, 664 insertions(+), 2679 deletions(-)
lib/libc/mingw/def-include/crt-aliases.def.in+56-26| ... | @@ -137,8 +137,11 @@ ADD_UNDERSCORE(spawnve) | ... | @@ -137,8 +137,11 @@ ADD_UNDERSCORE(spawnve) |
| 137 | ADD_UNDERSCORE(spawnvp) | 137 | ADD_UNDERSCORE(spawnvp) |
| 138 | ADD_UNDERSCORE(spawnvpe) | 138 | ADD_UNDERSCORE(spawnvpe) |
| 139 | #endif | 139 | #endif |
| 140 | #ifndef CRTDLL | 140 | #ifdef UCRTBASE |
| 141 | ; stat is provided by mingw to workaround trailing slash issue in _stat | 141 | F32(stat == _stat32) |
| 142 | F64(stat == _stat64i32) | ||
| 143 | #else | ||
| 144 | ; stat for non-UCRT is provided by mingw to workaround trailing slash issue in _stat | ||
| 142 | #endif | 145 | #endif |
| 143 | #ifdef NO_STRCMPI_ALIAS | 146 | #ifdef NO_STRCMPI_ALIAS |
| 144 | ; Symbol _strcmpi is natively present and defined in the library def file | 147 | ; Symbol _strcmpi is natively present and defined in the library def file |
| ... | @@ -208,7 +211,11 @@ ADD_UNDERSCORE(write) | ... | @@ -208,7 +211,11 @@ ADD_UNDERSCORE(write) |
| 208 | ; This is list of symbol aliases added in the Visual C++ 2.0 oldnames.lib library | 211 | ; This is list of symbol aliases added in the Visual C++ 2.0 oldnames.lib library |
| 209 | ; All these symbols with leading underscore are present also in pre-2.0 CRT versions: crtdll.dll and msvcrt10.dll | 212 | ; All these symbols with leading underscore are present also in pre-2.0 CRT versions: crtdll.dll and msvcrt10.dll |
| 210 | ; ADD_UNDERSCORE(control87) | 213 | ; ADD_UNDERSCORE(control87) |
| 214 | #if __SIZEOF_LONG_DOUBLE__ == __SIZEOF_DOUBLE__ | ||
| 215 | ADD_UNDERSCORE(fpreset) | ||
| 216 | #else | ||
| 211 | ; ADD_UNDERSCORE(fpreset) ; Alias fpreset is set in CRT_fp10.c and CRT_fp8.c | 217 | ; ADD_UNDERSCORE(fpreset) ; Alias fpreset is set in CRT_fp10.c and CRT_fp8.c |
| 218 | #endif | ||
| 212 | ADD_UNDERSCORE(wcsdup) | 219 | ADD_UNDERSCORE(wcsdup) |
| 213 | ADD_UNDERSCORE(wcsicmp) | 220 | ADD_UNDERSCORE(wcsicmp) |
| 214 | ADD_UNDERSCORE(wcsicoll) | 221 | ADD_UNDERSCORE(wcsicoll) |
| ... | @@ -222,7 +229,11 @@ ADD_UNDERSCORE(wcsupr) | ... | @@ -222,7 +229,11 @@ ADD_UNDERSCORE(wcsupr) |
| 222 | ; This is list of symbol aliases added in the Visual C++ 4.0 oldnames.lib library | 229 | ; This is list of symbol aliases added in the Visual C++ 4.0 oldnames.lib library |
| 223 | ; All these symbols with leading underscore are present also in pre-4.0 CRT versions: crtdll.dll, msvcrt10.dll and msvcrt20.dll | 230 | ; All these symbols with leading underscore are present also in pre-4.0 CRT versions: crtdll.dll, msvcrt10.dll and msvcrt20.dll |
| 224 | ; ADD_UNDERSCORE(cabs) | 231 | ; ADD_UNDERSCORE(cabs) |
| 232 | #ifdef UCRTBASE | ||
| 233 | ; hypot is natively exported from UCRT | ||
| 234 | #else | ||
| 225 | ADD_UNDERSCORE(hypot) | 235 | ADD_UNDERSCORE(hypot) |
| 236 | #endif | ||
| 226 | ADD_UNDERSCORE(j0) | 237 | ADD_UNDERSCORE(j0) |
| 227 | ADD_UNDERSCORE(j1) | 238 | ADD_UNDERSCORE(j1) |
| 228 | ADD_UNDERSCORE(jn) | 239 | ADD_UNDERSCORE(jn) |
| ... | @@ -247,27 +258,26 @@ wcstok == wcstok_s | ... | @@ -247,27 +258,26 @@ wcstok == wcstok_s |
| 247 | ADD_UNDERSCORE(nextafter) | 258 | ADD_UNDERSCORE(nextafter) |
| 248 | #endif | 259 | #endif |
| 249 | 260 | ||
| 250 | #if defined(DEF_ARM32) || defined(DEF_ARM64) | ||
| 251 | ; This is list of symbol aliases for C99 ARM long double functions | 261 | ; This is list of symbol aliases for C99 ARM long double functions |
| 252 | ; They are defined as aliases to regular double symbols as on ARM, long double is equal to regular double | 262 | ; They are defined as aliases to regular double symbols as on ARM, long double is equal to regular double |
| 253 | acosl == acos | 263 | F_LD64(acosl == acos) |
| 254 | asinl == asin | 264 | F_LD64(asinl == asin) |
| 255 | atan2l == atan2 | 265 | F_LD64(atan2l == atan2) |
| 256 | atanl == atan | 266 | F_LD64(atanl == atan) |
| 257 | ceill == ceil | 267 | F_LD64(ceill == ceil) |
| 258 | cosl == cos | 268 | F_LD64(cosl == cos) |
| 259 | expl == exp | 269 | F_LD64(expl == exp) |
| 260 | floorl == floor | 270 | F_LD64(floorl == floor) |
| 261 | fmodl == fmod | 271 | F_LD64(fmodl == fmod) |
| 262 | log10l == log10 | 272 | F_LD64(log10l == log10) |
| 263 | logl == log | 273 | F_LD64(logl == log) |
| 264 | ; FIXME: Why is powl alias defined only for UCRT? | 274 | ; FIXME: Why is powl alias defined only for UCRT? |
| 265 | #ifdef UCRTBASE | 275 | #ifdef UCRTBASE |
| 266 | powl == pow | 276 | F_LD64(powl == pow) |
| 267 | #endif | ||
| 268 | sinl == sin | ||
| 269 | tanl == tan | ||
| 270 | #endif | 277 | #endif |
| 278 | F_LD64(sinl == sin) | ||
| 279 | F_LD64(tanl == tan) | ||
| 280 | F_LD64(_chgsignl == _chgsign) | ||
| 271 | 281 | ||
| 272 | ; This is list of symbol aliases for C11 functions | 282 | ; This is list of symbol aliases for C11 functions |
| 273 | #ifdef UCRTBASE | 283 | #ifdef UCRTBASE |
| ... | @@ -290,6 +300,22 @@ ADD_UNDERSCORE(popen) | ... | @@ -290,6 +300,22 @@ ADD_UNDERSCORE(popen) |
| 290 | fgetpos64 == fgetpos | 300 | fgetpos64 == fgetpos |
| 291 | fsetpos64 == fsetpos | 301 | fsetpos64 == fsetpos |
| 292 | #endif | 302 | #endif |
| 303 | #ifdef UCRTBASE | ||
| 304 | stat32 == _stat32 | ||
| 305 | stat32i64 == _stat32i64 | ||
| 306 | stat64 == _stat64 | ||
| 307 | stat64i32 == _stat64i32 | ||
| 308 | #else | ||
| 309 | ; stat for non-UCRT is provided by mingw to workaround trailing slash issue in _stat | ||
| 310 | #endif | ||
| 311 | #ifdef FIXED_SIZE_SYMBOLS | ||
| 312 | // NO_FIXED_SIZE_64_ALIAS means that DLL provides the native _fstat64 symbol | ||
| 313 | #if defined(NO_FIXED_SIZE_64_ALIAS) && !defined(NO_FSTAT64_ALIAS) | ||
| 314 | fstat64 == _fstat64 | ||
| 315 | #endif | ||
| 316 | #else | ||
| 317 | fstat64 == _fstat64 | ||
| 318 | #endif | ||
| 293 | 319 | ||
| 294 | ; This is list of symbol aliases for GNU functions which are not part of POSIX or ISO C | 320 | ; This is list of symbol aliases for GNU functions which are not part of POSIX or ISO C |
| 295 | strcasecmp == _stricmp | 321 | strcasecmp == _stricmp |
| ... | @@ -545,19 +571,23 @@ __ms_vsprintf == vsprintf | ... | @@ -545,19 +571,23 @@ __ms_vsprintf == vsprintf |
| 545 | __ms_vwprintf == vwprintf | 571 | __ms_vwprintf == vwprintf |
| 546 | __ms_wprintf == wprintf | 572 | __ms_wprintf == wprintf |
| 547 | __ms_wscanf == wscanf | 573 | __ms_wscanf == wscanf |
| 548 | #ifdef WITH_MS_VSCANF_ALIASES | ||
| 549 | __ms_vfscanf == vfscanf | ||
| 550 | __ms_vfwscanf == vfwscanf | ||
| 551 | __ms_vscanf == vscanf | ||
| 552 | __ms_vsscanf == vsscanf | ||
| 553 | __ms_vswscanf == vswscanf | ||
| 554 | __ms_vwscanf == vwscanf | ||
| 555 | #endif | ||
| 556 | #endif | 574 | #endif |
| 557 | 575 | ||
| 558 | ; This is list of additional symbol aliases not available in any library as neither native symbols nor aliases | 576 | ; This is list of additional symbol aliases not available in any library as neither native symbols nor aliases |
| 559 | ; FIXME: check if these really are needed | 577 | ; FIXME: check if these really are needed |
| 560 | 578 | ||
| 579 | ; This is wstat and wstat64 symbol available only in mingw but for a long time | ||
| 580 | #ifdef UCRTBASE | ||
| 581 | F32(wstat == _wstat32) | ||
| 582 | F64(wstat == _wstat64i32) | ||
| 583 | wstat32 == _wstat32 | ||
| 584 | wstat32i64 == _wstat32i64 | ||
| 585 | wstat64 == _wstat64 | ||
| 586 | wstat64i32 == _wstat64i32 | ||
| 587 | #else | ||
| 588 | ; wstat for non-UCRT is provided by mingw to workaround trailing slash issue in _wstat | ||
| 589 | #endif | ||
| 590 | |||
| 561 | ; Origin of the symbol wcscmpi is unknown. This symbol is not present in | 591 | ; Origin of the symbol wcscmpi is unknown. This symbol is not present in |
| 562 | ; crtdll.dll and neither in any msvcr* version. The only source of wcscmpi is | 592 | ; crtdll.dll and neither in any msvcr* version. The only source of wcscmpi is |
| 563 | ; wcstr.h header file from the Microsoft Visual C++ 1.0 (32-bit for NT) and | 593 | ; wcstr.h header file from the Microsoft Visual C++ 1.0 (32-bit for NT) and |
lib/libc/mingw/def-include/func.def.in+13-5| ... | @@ -12,26 +12,26 @@ | ... | @@ -12,26 +12,26 @@ |
| 12 | // F_NON_I386 - function available on everything but i386 | 12 | // F_NON_I386 - function available on everything but i386 |
| 13 | // F_NON_X64 - function available on everything but x86_64 | 13 | // F_NON_X64 - function available on everything but x86_64 |
| 14 | // F_NON_ARM64 - function available on everything but arm64 | 14 | // F_NON_ARM64 - function available on everything but arm64 |
| 15 | #if defined(DEF_X64) | 15 | #if defined(__x86_64__) |
| 16 | #define F64(x) x | 16 | #define F64(x) x |
| 17 | #define F_X64(x) x | 17 | #define F_X64(x) x |
| 18 | #define F_X86_ANY(x) x | 18 | #define F_X86_ANY(x) x |
| 19 | #define F_NON_I386(x) x | 19 | #define F_NON_I386(x) x |
| 20 | #define F_NON_ARM64(x) x | 20 | #define F_NON_ARM64(x) x |
| 21 | #elif defined(DEF_I386) | 21 | #elif defined(__i386__) |
| 22 | #define F32(x) x | 22 | #define F32(x) x |
| 23 | #define F_I386(x) x | 23 | #define F_I386(x) x |
| 24 | #define F_X86_ANY(x) x | 24 | #define F_X86_ANY(x) x |
| 25 | #define F_NON_X64(x) x | 25 | #define F_NON_X64(x) x |
| 26 | #define F_NON_ARM64(x) x | 26 | #define F_NON_ARM64(x) x |
| 27 | #elif defined(DEF_ARM32) | 27 | #elif defined(__arm__) |
| 28 | #define F32(x) x | 28 | #define F32(x) x |
| 29 | #define F_ARM32(x) x | 29 | #define F_ARM32(x) x |
| 30 | #define F_ARM_ANY(x) x | 30 | #define F_ARM_ANY(x) x |
| 31 | #define F_NON_I386(x) x | 31 | #define F_NON_I386(x) x |
| 32 | #define F_NON_X64(x) x | 32 | #define F_NON_X64(x) x |
| 33 | #define F_NON_ARM64(x) x | 33 | #define F_NON_ARM64(x) x |
| 34 | #elif defined(DEF_ARM64) | 34 | #elif defined(__aarch64__) |
| 35 | #define F64(x) x | 35 | #define F64(x) x |
| 36 | #define F_ARM64(x) x | 36 | #define F_ARM64(x) x |
| 37 | #define F_ARM_ANY(x) x | 37 | #define F_ARM_ANY(x) x |
| ... | @@ -75,9 +75,17 @@ | ... | @@ -75,9 +75,17 @@ |
| 75 | #define F_NON_ARM64(x) | 75 | #define F_NON_ARM64(x) |
| 76 | #endif | 76 | #endif |
| 77 | 77 | ||
| 78 | #if defined(DEF_I386) | 78 | #if defined(__i386__) |
| 79 | #define STDCALL_DECORATED_EXPORT(symbol) symbol == _ ## symbol | 79 | #define STDCALL_DECORATED_EXPORT(symbol) symbol == _ ## symbol |
| 80 | #define FASTCALL_DECORATED_EXPORT(symbol) symbol == symbol | 80 | #define FASTCALL_DECORATED_EXPORT(symbol) symbol == symbol |
| 81 | #endif | 81 | #endif |
| 82 | 82 | ||
| 83 | #if __SIZEOF_LONG_DOUBLE__ == __SIZEOF_DOUBLE__ | ||
| 84 | #define F_LD64(x) x | ||
| 85 | #define F_LD80(x) | ||
| 86 | #else | ||
| 87 | #define F_LD64(x) | ||
| 88 | #define F_LD80(x) x | ||
| 89 | #endif | ||
| 90 | |||
| 83 | #endif // FUNC_DEF_IN | 91 | #endif // FUNC_DEF_IN |
lib/libc/mingw/lib-common/api-ms-win-crt-convert-l1-1-0.def.in+4-4| ... | @@ -47,7 +47,7 @@ _strtoi64 | ... | @@ -47,7 +47,7 @@ _strtoi64 |
| 47 | _strtoi64_l | 47 | _strtoi64_l |
| 48 | _strtoimax_l | 48 | _strtoimax_l |
| 49 | _strtol_l | 49 | _strtol_l |
| 50 | F_ARM_ANY(_strtold_l) ; Can't use long double functions from the CRT on x86 | 50 | F_LD64(_strtold_l) ; Can't use long double functions from the CRT on x86 |
| 51 | _strtoll_l | 51 | _strtoll_l |
| 52 | _strtoui64 | 52 | _strtoui64 |
| 53 | _strtoui64_l | 53 | _strtoui64_l |
| ... | @@ -68,7 +68,7 @@ _wcstoi64 | ... | @@ -68,7 +68,7 @@ _wcstoi64 |
| 68 | _wcstoi64_l | 68 | _wcstoi64_l |
| 69 | _wcstoimax_l | 69 | _wcstoimax_l |
| 70 | _wcstol_l | 70 | _wcstol_l |
| 71 | F_ARM_ANY(_wcstold_l) ; Can't use long double functions from the CRT on x86 | 71 | F_LD64(_wcstold_l) ; Can't use long double functions from the CRT on x86 |
| 72 | _wcstoll_l | 72 | _wcstoll_l |
| 73 | _wcstombs_l | 73 | _wcstombs_l |
| 74 | _wcstombs_s_l | 74 | _wcstombs_s_l |
| ... | @@ -108,7 +108,7 @@ strtod | ... | @@ -108,7 +108,7 @@ strtod |
| 108 | strtof | 108 | strtof |
| 109 | strtoimax | 109 | strtoimax |
| 110 | strtol | 110 | strtol |
| 111 | F_ARM_ANY(strtold) ; Can't use long double functions from the CRT on x86 | 111 | F_LD64(strtold) ; Can't use long double functions from the CRT on x86 |
| 112 | strtoll | 112 | strtoll |
| 113 | strtoul | 113 | strtoul |
| 114 | strtoull | 114 | strtoull |
| ... | @@ -121,7 +121,7 @@ wcstod | ... | @@ -121,7 +121,7 @@ wcstod |
| 121 | wcstof | 121 | wcstof |
| 122 | wcstoimax | 122 | wcstoimax |
| 123 | wcstol | 123 | wcstol |
| 124 | F_ARM_ANY(wcstold) ; Can't use long double functions from the CRT on x86 | 124 | F_LD64(wcstold) ; Can't use long double functions from the CRT on x86 |
| 125 | wcstoll | 125 | wcstoll |
| 126 | wcstombs | 126 | wcstombs |
| 127 | wcstombs_s | 127 | wcstombs_s |
lib/libc/mingw/lib-common/api-ms-win-crt-filesystem-l1-1-0.def.in+13| ... | @@ -39,6 +39,7 @@ F64(_fstati64 == _fstat64) | ... | @@ -39,6 +39,7 @@ F64(_fstati64 == _fstat64) |
| 39 | _fstat32 | 39 | _fstat32 |
| 40 | _fstat32i64 | 40 | _fstat32i64 |
| 41 | _fstat64 | 41 | _fstat64 |
| 42 | fstat64 == _fstat64 | ||
| 42 | _fstat64i32 | 43 | _fstat64i32 |
| 43 | _fullpath | 44 | _fullpath |
| 44 | _getdiskfree | 45 | _getdiskfree |
| ... | @@ -53,14 +54,20 @@ _rmdir | ... | @@ -53,14 +54,20 @@ _rmdir |
| 53 | rmdir == _rmdir | 54 | rmdir == _rmdir |
| 54 | _splitpath | 55 | _splitpath |
| 55 | _splitpath_s | 56 | _splitpath_s |
| 57 | F32(stat == _stat32) | ||
| 58 | F64(stat == _stat64i32) | ||
| 56 | F32(_stat == _stat32) | 59 | F32(_stat == _stat32) |
| 57 | F64(_stat == _stat64i32) | 60 | F64(_stat == _stat64i32) |
| 58 | F32(_stati64 == _stat32i64) | 61 | F32(_stati64 == _stat32i64) |
| 59 | F64(_stati64 == _stat64) | 62 | F64(_stati64 == _stat64) |
| 60 | _stat32 | 63 | _stat32 |
| 64 | stat32 == _stat32 | ||
| 61 | _stat32i64 | 65 | _stat32i64 |
| 66 | stat32i64 == _stat32i64 | ||
| 62 | _stat64 | 67 | _stat64 |
| 68 | stat64 == _stat64 | ||
| 63 | _stat64i32 | 69 | _stat64i32 |
| 70 | stat64i32 == _stat64i32 | ||
| 64 | _umask | 71 | _umask |
| 65 | umask == _umask | 72 | umask == _umask |
| 66 | _umask_s | 73 | _umask_s |
| ... | @@ -96,14 +103,20 @@ _wrename | ... | @@ -96,14 +103,20 @@ _wrename |
| 96 | _wrmdir | 103 | _wrmdir |
| 97 | _wsplitpath | 104 | _wsplitpath |
| 98 | _wsplitpath_s | 105 | _wsplitpath_s |
| 106 | F32(wstat == _wstat32) | ||
| 107 | F64(wstat == _wstat64i32) | ||
| 99 | F32(_wstat == _wstat32) | 108 | F32(_wstat == _wstat32) |
| 100 | F64(_wstat == _wstat64i32) | 109 | F64(_wstat == _wstat64i32) |
| 101 | F32(_wstati64 == _wstat32i64) | 110 | F32(_wstati64 == _wstat32i64) |
| 102 | F64(_wstati64 == _wstat64) | 111 | F64(_wstati64 == _wstat64) |
| 103 | _wstat32 | 112 | _wstat32 |
| 113 | wstat32 == _wstat32 | ||
| 104 | _wstat32i64 | 114 | _wstat32i64 |
| 115 | wstat32i64 == _wstat32i64 | ||
| 105 | _wstat64 | 116 | _wstat64 |
| 117 | wstat64 == _wstat64 | ||
| 106 | _wstat64i32 | 118 | _wstat64i32 |
| 119 | wstat64i32 == _wstat64i32 | ||
| 107 | _wunlink | 120 | _wunlink |
| 108 | remove | 121 | remove |
| 109 | rename | 122 | rename |
lib/libc/mingw/lib-common/api-ms-win-crt-math-l1-1-0.def.in+80-79| ... | @@ -4,7 +4,7 @@ EXPORTS | ... | @@ -4,7 +4,7 @@ EXPORTS |
| 4 | 4 | ||
| 5 | #include "func.def.in" | 5 | #include "func.def.in" |
| 6 | 6 | ||
| 7 | #ifdef DEF_I386 | 7 | #ifdef __i386__ |
| 8 | _CIacos | 8 | _CIacos |
| 9 | _CIasin | 9 | _CIasin |
| 10 | _CIatan | 10 | _CIatan |
| ... | @@ -31,7 +31,7 @@ _FCmulcr | ... | @@ -31,7 +31,7 @@ _FCmulcr |
| 31 | _LCbuild | 31 | _LCbuild |
| 32 | _LCmulcc | 32 | _LCmulcc |
| 33 | _LCmulcr | 33 | _LCmulcr |
| 34 | #ifdef DEF_I386 | 34 | #ifdef __i386__ |
| 35 | __libm_sse2_acos | 35 | __libm_sse2_acos |
| 36 | __libm_sse2_acosf | 36 | __libm_sse2_acosf |
| 37 | __libm_sse2_asin | 37 | __libm_sse2_asin |
| ... | @@ -59,6 +59,7 @@ __setusermatherr | ... | @@ -59,6 +59,7 @@ __setusermatherr |
| 59 | _cabs DATA | 59 | _cabs DATA |
| 60 | _chgsign | 60 | _chgsign |
| 61 | chgsign == _chgsign | 61 | chgsign == _chgsign |
| 62 | F_LD64(_chgsignl == _chgsign) | ||
| 62 | _chgsignf | 63 | _chgsignf |
| 63 | _copysign | 64 | _copysign |
| 64 | _copysignf | 65 | _copysignf |
| ... | @@ -94,9 +95,9 @@ finite == _finite | ... | @@ -94,9 +95,9 @@ finite == _finite |
| 94 | F_NON_I386(_finitef) | 95 | F_NON_I386(_finitef) |
| 95 | _fpclass | 96 | _fpclass |
| 96 | fpclass == _fpclass | 97 | fpclass == _fpclass |
| 97 | _fpclassf | 98 | F_X64(_fpclassf) |
| 98 | F_I386(_ftol) | 99 | F_I386(_ftol) |
| 99 | _get_FMA3_enable | 100 | F_X64(_get_FMA3_enable) |
| 100 | _hypot | 101 | _hypot |
| 101 | _hypotf | 102 | _hypotf |
| 102 | _isnan | 103 | _isnan |
| ... | @@ -118,7 +119,7 @@ _ldsign | ... | @@ -118,7 +119,7 @@ _ldsign |
| 118 | _ldsin | 119 | _ldsin |
| 119 | _ldtest | 120 | _ldtest |
| 120 | _ldunscale | 121 | _ldunscale |
| 121 | #ifdef DEF_I386 | 122 | #ifdef __i386__ |
| 122 | _libm_sse2_acos_precise | 123 | _libm_sse2_acos_precise |
| 123 | _libm_sse2_asin_precise | 124 | _libm_sse2_asin_precise |
| 124 | _libm_sse2_atan_precise | 125 | _libm_sse2_atan_precise |
| ... | @@ -137,7 +138,7 @@ _nextafter | ... | @@ -137,7 +138,7 @@ _nextafter |
| 137 | F_X64(_nextafterf) | 138 | F_X64(_nextafterf) |
| 138 | _scalb | 139 | _scalb |
| 139 | F_X64(_scalbf) | 140 | F_X64(_scalbf) |
| 140 | F64(_set_FMA3_enable) | 141 | F_X64(_set_FMA3_enable) |
| 141 | F_I386(_set_SSE2_enable) | 142 | F_I386(_set_SSE2_enable) |
| 142 | _y0 | 143 | _y0 |
| 143 | y0 == _y0 | 144 | y0 == _y0 |
| ... | @@ -147,224 +148,224 @@ _yn | ... | @@ -147,224 +148,224 @@ _yn |
| 147 | yn == _yn | 148 | yn == _yn |
| 148 | acos | 149 | acos |
| 149 | F_NON_I386(acosf) | 150 | F_NON_I386(acosf) |
| 150 | F_ARM_ANY(acosl == acos) | 151 | F_LD64(acosl == acos) |
| 151 | acosh | 152 | acosh |
| 152 | acoshf | 153 | acoshf |
| 153 | F_ARM_ANY(acoshl) ; Can't use long double functions from the CRT on x86 | 154 | F_LD64(acoshl) ; Can't use long double functions from the CRT on x86 |
| 154 | asin | 155 | asin |
| 155 | F_NON_I386(asinf) | 156 | F_NON_I386(asinf) |
| 156 | F_ARM_ANY(asinl == asin) | 157 | F_LD64(asinl == asin) |
| 157 | asinh | 158 | asinh |
| 158 | asinhf | 159 | asinhf |
| 159 | F_ARM_ANY(asinhl) ; Can't use long double functions from the CRT on x86 | 160 | F_LD64(asinhl) ; Can't use long double functions from the CRT on x86 |
| 160 | atan | 161 | atan |
| 161 | atan2 | 162 | atan2 |
| 162 | F_NON_I386(atan2f) | 163 | F_NON_I386(atan2f) |
| 163 | F_ARM_ANY(atan2l == atan2) | 164 | F_LD64(atan2l == atan2) |
| 164 | F_NON_I386(atanf) | 165 | F_NON_I386(atanf) |
| 165 | F_ARM_ANY(atanl == atan) | 166 | F_LD64(atanl == atan) |
| 166 | atanh | 167 | atanh |
| 167 | atanhf | 168 | atanhf |
| 168 | F_ARM_ANY(atanhl) ; Can't use long double functions from the CRT on x86 | 169 | F_LD64(atanhl) ; Can't use long double functions from the CRT on x86 |
| 169 | cabs | 170 | cabs |
| 170 | cabsf | 171 | cabsf |
| 171 | F_ARM_ANY(cabsl) ; Can't use long double functions from the CRT on x86 | 172 | F_LD64(cabsl) ; Can't use long double functions from the CRT on x86 |
| 172 | cacos | 173 | cacos |
| 173 | cacosf | 174 | cacosf |
| 174 | cacosh | 175 | cacosh |
| 175 | cacoshf | 176 | cacoshf |
| 176 | F_ARM_ANY(cacoshl) ; Can't use long double functions from the CRT on x86 | 177 | F_LD64(cacoshl) ; Can't use long double functions from the CRT on x86 |
| 177 | F_ARM_ANY(cacosl) ; Can't use long double functions from the CRT on x86 | 178 | F_LD64(cacosl) ; Can't use long double functions from the CRT on x86 |
| 178 | carg | 179 | carg |
| 179 | cargf | 180 | cargf |
| 180 | F_ARM_ANY(cargl) ; Can't use long double functions from the CRT on x86 | 181 | F_LD64(cargl) ; Can't use long double functions from the CRT on x86 |
| 181 | casin | 182 | casin |
| 182 | casinf | 183 | casinf |
| 183 | casinh | 184 | casinh |
| 184 | casinhf | 185 | casinhf |
| 185 | F_ARM_ANY(casinhl) ; Can't use long double functions from the CRT on x86 | 186 | F_LD64(casinhl) ; Can't use long double functions from the CRT on x86 |
| 186 | F_ARM_ANY(casinl) ; Can't use long double functions from the CRT on x86 | 187 | F_LD64(casinl) ; Can't use long double functions from the CRT on x86 |
| 187 | catan | 188 | catan |
| 188 | catanf | 189 | catanf |
| 189 | catanh | 190 | catanh |
| 190 | catanhf | 191 | catanhf |
| 191 | F_ARM_ANY(catanhl) ; Can't use long double functions from the CRT on x86 | 192 | F_LD64(catanhl) ; Can't use long double functions from the CRT on x86 |
| 192 | F_ARM_ANY(catanl) ; Can't use long double functions from the CRT on x86 | 193 | F_LD64(catanl) ; Can't use long double functions from the CRT on x86 |
| 193 | cbrt | 194 | cbrt |
| 194 | cbrtf | 195 | cbrtf |
| 195 | F_ARM_ANY(cbrtl) ; Can't use long double functions from the CRT on x86 | 196 | F_LD64(cbrtl) ; Can't use long double functions from the CRT on x86 |
| 196 | ccos | 197 | ccos |
| 197 | ccosf | 198 | ccosf |
| 198 | ccosh | 199 | ccosh |
| 199 | ccoshf | 200 | ccoshf |
| 200 | F_ARM_ANY(ccoshl) ; Can't use long double functions from the CRT on x86 | 201 | F_LD64(ccoshl) ; Can't use long double functions from the CRT on x86 |
| 201 | F_ARM_ANY(ccosl) ; Can't use long double functions from the CRT on x86 | 202 | F_LD64(ccosl) ; Can't use long double functions from the CRT on x86 |
| 202 | ceil | 203 | ceil |
| 203 | F_NON_I386(ceilf) | 204 | F_NON_I386(ceilf) |
| 204 | F_ARM_ANY(ceill == ceil) | 205 | F_LD64(ceill == ceil) |
| 205 | cexp | 206 | cexp |
| 206 | cexpf | 207 | cexpf |
| 207 | F_ARM_ANY(cexpl) ; Can't use long double functions from the CRT on x86 | 208 | F_LD64(cexpl) ; Can't use long double functions from the CRT on x86 |
| 208 | cimag | 209 | cimag |
| 209 | cimagf | 210 | cimagf |
| 210 | F_ARM_ANY(cimagl) ; Can't use long double functions from the CRT on x86 | 211 | F_LD64(cimagl) ; Can't use long double functions from the CRT on x86 |
| 211 | clog | 212 | clog |
| 212 | clog10 | 213 | clog10 |
| 213 | clog10f | 214 | clog10f |
| 214 | F_ARM_ANY(clog10l) ; Can't use long double functions from the CRT on x86 | 215 | F_LD64(clog10l) ; Can't use long double functions from the CRT on x86 |
| 215 | clogf | 216 | clogf |
| 216 | F_ARM_ANY(clogl) ; Can't use long double functions from the CRT on x86 | 217 | F_LD64(clogl) ; Can't use long double functions from the CRT on x86 |
| 217 | conj | 218 | conj |
| 218 | conjf | 219 | conjf |
| 219 | F_ARM_ANY(conjl) ; Can't use long double functions from the CRT on x86 | 220 | F_LD64(conjl) ; Can't use long double functions from the CRT on x86 |
| 220 | copysign | 221 | copysign |
| 221 | copysignf | 222 | copysignf |
| 222 | F_ARM_ANY(copysignl) ; Can't use long double functions from the CRT on x86 | 223 | F_LD64(copysignl) ; Can't use long double functions from the CRT on x86 |
| 223 | cos | 224 | cos |
| 224 | F_NON_I386(cosf) | 225 | F_NON_I386(cosf) |
| 225 | F_ARM_ANY(cosl == cos) | 226 | F_LD64(cosl == cos) |
| 226 | cosh | 227 | cosh |
| 227 | F_NON_I386(coshf) | 228 | F_NON_I386(coshf) |
| 228 | cpow | 229 | cpow |
| 229 | cpowf | 230 | cpowf |
| 230 | F_ARM_ANY(cpowl) ; Can't use long double functions from the CRT on x86 | 231 | F_LD64(cpowl) ; Can't use long double functions from the CRT on x86 |
| 231 | cproj | 232 | cproj |
| 232 | cprojf | 233 | cprojf |
| 233 | F_ARM_ANY(cprojl) ; Can't use long double functions from the CRT on x86 | 234 | F_LD64(cprojl) ; Can't use long double functions from the CRT on x86 |
| 234 | creal | 235 | creal |
| 235 | crealf | 236 | crealf |
| 236 | F_ARM_ANY(creall) ; Can't use long double functions from the CRT on x86 | 237 | F_LD64(creall) ; Can't use long double functions from the CRT on x86 |
| 237 | csin | 238 | csin |
| 238 | csinf | 239 | csinf |
| 239 | csinh | 240 | csinh |
| 240 | csinhf | 241 | csinhf |
| 241 | F_ARM_ANY(csinhl) ; Can't use long double functions from the CRT on x86 | 242 | F_LD64(csinhl) ; Can't use long double functions from the CRT on x86 |
| 242 | F_ARM_ANY(csinl) ; Can't use long double functions from the CRT on x86 | 243 | F_LD64(csinl) ; Can't use long double functions from the CRT on x86 |
| 243 | csqrt | 244 | csqrt |
| 244 | csqrtf | 245 | csqrtf |
| 245 | F_ARM_ANY(csqrtl) ; Can't use long double functions from the CRT on x86 | 246 | F_LD64(csqrtl) ; Can't use long double functions from the CRT on x86 |
| 246 | ctan | 247 | ctan |
| 247 | ctanf | 248 | ctanf |
| 248 | ctanh | 249 | ctanh |
| 249 | ctanhf | 250 | ctanhf |
| 250 | F_ARM_ANY(ctanhl) ; Can't use long double functions from the CRT on x86 | 251 | F_LD64(ctanhl) ; Can't use long double functions from the CRT on x86 |
| 251 | F_ARM_ANY(ctanl) ; Can't use long double functions from the CRT on x86 | 252 | F_LD64(ctanl) ; Can't use long double functions from the CRT on x86 |
| 252 | erf | 253 | erf |
| 253 | erfc | 254 | erfc |
| 254 | erfcf | 255 | erfcf |
| 255 | F_ARM_ANY(erfcl) ; Can't use long double functions from the CRT on x86 | 256 | F_LD64(erfcl) ; Can't use long double functions from the CRT on x86 |
| 256 | erff | 257 | erff |
| 257 | F_ARM_ANY(erfl) ; Can't use long double functions from the CRT on x86 | 258 | F_LD64(erfl) ; Can't use long double functions from the CRT on x86 |
| 258 | exp | 259 | exp |
| 259 | exp2 | 260 | exp2 |
| 260 | exp2f | 261 | exp2f |
| 261 | F_ARM_ANY(exp2l) ; Can't use long double functions from the CRT on x86 | 262 | F_LD64(exp2l) ; Can't use long double functions from the CRT on x86 |
| 262 | F_NON_I386(expf) | 263 | F_NON_I386(expf) |
| 263 | F_ARM_ANY(expl == exp) | 264 | F_LD64(expl == exp) |
| 264 | expm1 | 265 | expm1 |
| 265 | expm1f | 266 | expm1f |
| 266 | F_ARM_ANY(expm1l) ; Can't use long double functions from the CRT on x86 | 267 | F_LD64(expm1l) ; Can't use long double functions from the CRT on x86 |
| 267 | fabs | 268 | fabs |
| 268 | F_ARM_ANY(fabsf) | 269 | F_ARM_ANY(fabsf) |
| 269 | fdim | 270 | fdim |
| 270 | fdimf | 271 | fdimf |
| 271 | F_ARM_ANY(fdiml) ; Can't use long double functions from the CRT on x86 | 272 | F_LD64(fdiml) ; Can't use long double functions from the CRT on x86 |
| 272 | floor | 273 | floor |
| 273 | F_NON_I386(floorf) | 274 | F_NON_I386(floorf) |
| 274 | F_ARM_ANY(floorl == floor) | 275 | F_LD64(floorl == floor) |
| 275 | fma | 276 | fma |
| 276 | fmaf | 277 | fmaf |
| 277 | F_ARM_ANY(fmal) ; Can't use long double functions from the CRT on x86 | 278 | F_LD64(fmal) ; Can't use long double functions from the CRT on x86 |
| 278 | fmax | 279 | fmax |
| 279 | fmaxf | 280 | fmaxf |
| 280 | F_ARM_ANY(fmaxl) ; Can't use long double functions from the CRT on x86 | 281 | F_LD64(fmaxl) ; Can't use long double functions from the CRT on x86 |
| 281 | fmin | 282 | fmin |
| 282 | fminf | 283 | fminf |
| 283 | F_ARM_ANY(fminl) ; Can't use long double functions from the CRT on x86 | 284 | F_LD64(fminl) ; Can't use long double functions from the CRT on x86 |
| 284 | fmod | 285 | fmod |
| 285 | F_NON_I386(fmodf) | 286 | F_NON_I386(fmodf) |
| 286 | F_ARM_ANY(fmodl == fmod) | 287 | F_LD64(fmodl == fmod) |
| 287 | frexp | 288 | frexp |
| 288 | hypot | 289 | hypot |
| 289 | ilogb | 290 | ilogb |
| 290 | ilogbf | 291 | ilogbf |
| 291 | F_ARM_ANY(ilogbl) ; Can't use long double functions from the CRT on x86 | 292 | F_LD64(ilogbl) ; Can't use long double functions from the CRT on x86 |
| 292 | ldexp | 293 | ldexp |
| 293 | ; The UCRT lgamma functions don't set/provide the signgam variable like | 294 | ; The UCRT lgamma functions don't set/provide the signgam variable like |
| 294 | ; the mingw ones do. Therefore prefer the libmingwex version instead. | 295 | ; the mingw ones do. Therefore prefer the libmingwex version instead. |
| 295 | lgamma DATA | 296 | lgamma DATA |
| 296 | lgammaf DATA | 297 | lgammaf DATA |
| 297 | F_ARM_ANY(lgammal DATA) ; Can't use long double functions from the CRT on x86 | 298 | F_LD64(lgammal DATA) ; Can't use long double functions from the CRT on x86 |
| 298 | llrint | 299 | llrint |
| 299 | llrintf | 300 | llrintf |
| 300 | F_ARM_ANY(llrintl) ; Can't use long double functions from the CRT on x86 | 301 | F_LD64(llrintl) ; Can't use long double functions from the CRT on x86 |
| 301 | llround | 302 | llround |
| 302 | llroundf | 303 | llroundf |
| 303 | F_ARM_ANY(llroundl) ; Can't use long double functions from the CRT on x86 | 304 | F_LD64(llroundl) ; Can't use long double functions from the CRT on x86 |
| 304 | log | 305 | log |
| 305 | log10 | 306 | log10 |
| 306 | F_NON_I386(log10f) | 307 | F_NON_I386(log10f) |
| 307 | F_ARM_ANY(log10l == log10) | 308 | F_LD64(log10l == log10) |
| 308 | log1p | 309 | log1p |
| 309 | log1pf | 310 | log1pf |
| 310 | F_ARM_ANY(log1pl) ; Can't use long double functions from the CRT on x86 | 311 | F_LD64(log1pl) ; Can't use long double functions from the CRT on x86 |
| 311 | log2 | 312 | log2 |
| 312 | log2f | 313 | log2f |
| 313 | F_ARM_ANY(log2l) ; Can't use long double functions from the CRT on x86 | 314 | F_LD64(log2l) ; Can't use long double functions from the CRT on x86 |
| 314 | logb | 315 | logb |
| 315 | logbf | 316 | logbf |
| 316 | F_ARM_ANY(logbl) ; Can't use long double functions from the CRT on x86 | 317 | F_LD64(logbl) ; Can't use long double functions from the CRT on x86 |
| 317 | F_NON_I386(logf) | 318 | F_NON_I386(logf) |
| 318 | F_ARM_ANY(logl == log) | 319 | F_LD64(logl == log) |
| 319 | lrint | 320 | lrint |
| 320 | lrintf | 321 | lrintf |
| 321 | F_ARM_ANY(lrintl) ; Can't use long double functions from the CRT on x86 | 322 | F_LD64(lrintl) ; Can't use long double functions from the CRT on x86 |
| 322 | lround | 323 | lround |
| 323 | lroundf | 324 | lroundf |
| 324 | F_ARM_ANY(lroundl) ; Can't use long double functions from the CRT on x86 | 325 | F_LD64(lroundl) ; Can't use long double functions from the CRT on x86 |
| 325 | modf | 326 | modf |
| 326 | F_NON_I386(modff) | 327 | F_NON_I386(modff) |
| 327 | nan | 328 | nan |
| 328 | nanf | 329 | nanf |
| 329 | F_ARM_ANY(nanl) ; Can't use long double functions from the CRT on x86 | 330 | F_LD64(nanl) ; Can't use long double functions from the CRT on x86 |
| 330 | nearbyint | 331 | nearbyint |
| 331 | nearbyintf | 332 | nearbyintf |
| 332 | F_ARM_ANY(nearbyintl) ; Can't use long double functions from the CRT on x86 | 333 | F_LD64(nearbyintl) ; Can't use long double functions from the CRT on x86 |
| 333 | nextafter | 334 | nextafter |
| 334 | nextafterf | 335 | nextafterf |
| 335 | F_ARM_ANY(nextafterl) ; Can't use long double functions from the CRT on x86 | 336 | F_LD64(nextafterl) ; Can't use long double functions from the CRT on x86 |
| 336 | ; All of the nexttoward functions take the second parameter as long double, | 337 | ; All of the nexttoward functions take the second parameter as long double, |
| 337 | ; making them unusable for x86. | 338 | ; making them unusable for x86. |
| 338 | F_ARM_ANY(nexttoward) ; Can't use long double functions from the CRT on x86 | 339 | F_LD64(nexttoward) ; Can't use long double functions from the CRT on x86 |
| 339 | F_ARM_ANY(nexttowardf) ; Can't use long double functions from the CRT on x86 | 340 | F_LD64(nexttowardf) ; Can't use long double functions from the CRT on x86 |
| 340 | F_ARM_ANY(nexttowardl) ; Can't use long double functions from the CRT on x86 | 341 | F_LD64(nexttowardl) ; Can't use long double functions from the CRT on x86 |
| 341 | norm | 342 | norm |
| 342 | normf | 343 | normf |
| 343 | norml | 344 | norml |
| 344 | pow | 345 | pow |
| 345 | F_NON_I386(powf) ; Missing in Wine's ucrtbase.dll for i386 in Wine 9.15 and older | 346 | F_NON_I386(powf) ; Missing in Wine's ucrtbase.dll for i386 in Wine 9.15 and older |
| 346 | F_ARM_ANY(powl == pow) | 347 | F_LD64(powl == pow) |
| 347 | remainder | 348 | remainder |
| 348 | remainderf | 349 | remainderf |
| 349 | F_ARM_ANY(remainderl) ; Can't use long double functions from the CRT on x86 | 350 | F_LD64(remainderl) ; Can't use long double functions from the CRT on x86 |
| 350 | remquo | 351 | remquo |
| 351 | remquof | 352 | remquof |
| 352 | F_ARM_ANY(remquol) ; Can't use long double functions from the CRT on x86 | 353 | F_LD64(remquol) ; Can't use long double functions from the CRT on x86 |
| 353 | rint | 354 | rint |
| 354 | rintf | 355 | rintf |
| 355 | F_ARM_ANY(rintl) ; Can't use long double functions from the CRT on x86 | 356 | F_LD64(rintl) ; Can't use long double functions from the CRT on x86 |
| 356 | round | 357 | round |
| 357 | roundf | 358 | roundf |
| 358 | F_ARM_ANY(roundl) ; Can't use long double functions from the CRT on x86 | 359 | F_LD64(roundl) ; Can't use long double functions from the CRT on x86 |
| 359 | scalbln | 360 | scalbln |
| 360 | scalblnf | 361 | scalblnf |
| 361 | F_ARM_ANY(scalblnl) ; Can't use long double functions from the CRT on x86 | 362 | F_LD64(scalblnl) ; Can't use long double functions from the CRT on x86 |
| 362 | scalbn | 363 | scalbn |
| 363 | scalbnf | 364 | scalbnf |
| 364 | F_ARM_ANY(scalbnl) ; Can't use long double functions from the CRT on x86 | 365 | F_LD64(scalbnl) ; Can't use long double functions from the CRT on x86 |
| 365 | sin | 366 | sin |
| 366 | F_NON_I386(sinf) | 367 | F_NON_I386(sinf) |
| 367 | F_ARM_ANY(sinl == sin) | 368 | F_LD64(sinl == sin) |
| 368 | ; if we implement sinh, we can set it DATA only. | 369 | ; if we implement sinh, we can set it DATA only. |
| 369 | sinh | 370 | sinh |
| 370 | F_NON_I386(sinhf) | 371 | F_NON_I386(sinhf) |
| ... | @@ -372,13 +373,13 @@ sqrt | ... | @@ -372,13 +373,13 @@ sqrt |
| 372 | F_NON_I386(sqrtf) | 373 | F_NON_I386(sqrtf) |
| 373 | tan | 374 | tan |
| 374 | F_NON_I386(tanf) | 375 | F_NON_I386(tanf) |
| 375 | F_ARM_ANY(tanl == tan) | 376 | F_LD64(tanl == tan) |
| 376 | ; if we implement tanh, we can set it to DATA only. | 377 | ; if we implement tanh, we can set it to DATA only. |
| 377 | tanh | 378 | tanh |
| 378 | F_NON_I386(tanhf) | 379 | F_NON_I386(tanhf) |
| 379 | tgamma | 380 | tgamma |
| 380 | tgammaf | 381 | tgammaf |
| 381 | F_ARM_ANY(tgammal) ; Can't use long double functions from the CRT on x86 | 382 | F_LD64(tgammal) ; Can't use long double functions from the CRT on x86 |
| 382 | trunc | 383 | trunc |
| 383 | truncf | 384 | truncf |
| 384 | F_ARM_ANY(truncl) ; Can't use long double functions from the CRT on x86 | 385 | F_LD64(truncl) ; Can't use long double functions from the CRT on x86 |
lib/libc/mingw/lib-common/api-ms-win-crt-private-l1-1-0.def.in+144-114| ... | @@ -9,14 +9,14 @@ F_I386(_CxxThrowException@8) | ... | @@ -9,14 +9,14 @@ F_I386(_CxxThrowException@8) |
| 9 | F_NON_I386(_CxxThrowException) | 9 | F_NON_I386(_CxxThrowException) |
| 10 | F_I386(_EH_prolog) | 10 | F_I386(_EH_prolog) |
| 11 | _FindAndUnlinkFrame | 11 | _FindAndUnlinkFrame |
| 12 | _GetImageBase | 12 | F_X64(_GetImageBase) |
| 13 | _GetThrowImageBase | 13 | F_X64(_GetThrowImageBase) |
| 14 | _IsExceptionObjectToBeDestroyed | 14 | _IsExceptionObjectToBeDestroyed |
| 15 | _NLG_Dispatch2 | 15 | F_I386(_NLG_Dispatch2@4) |
| 16 | _NLG_Return | 16 | F_I386(_NLG_Return@12) |
| 17 | _NLG_Return2 | 17 | F_I386(_NLG_Return2) |
| 18 | _SetImageBase | 18 | F_X64(_SetImageBase) |
| 19 | _SetThrowImageBase | 19 | F_X64(_SetThrowImageBase) |
| 20 | _SetWinRTOutOfMemoryExceptionCallback | 20 | _SetWinRTOutOfMemoryExceptionCallback |
| 21 | __AdjustPointer | 21 | __AdjustPointer |
| 22 | __BuildCatchObject | 22 | __BuildCatchObject |
| ... | @@ -34,8 +34,8 @@ __CxxUnregisterExceptionObject | ... | @@ -34,8 +34,8 @@ __CxxUnregisterExceptionObject |
| 34 | __DestructExceptionObject | 34 | __DestructExceptionObject |
| 35 | __FrameUnwindFilter | 35 | __FrameUnwindFilter |
| 36 | __GetPlatformExceptionInfo | 36 | __GetPlatformExceptionInfo |
| 37 | __NLG_Dispatch2 | 37 | F_NON_I386(__NLG_Dispatch2) |
| 38 | __NLG_Return2 | 38 | F_NON_I386(__NLG_Return2) |
| 39 | __RTCastToVoid | 39 | __RTCastToVoid |
| 40 | __RTDynamicCast | 40 | __RTDynamicCast |
| 41 | __RTtypeid | 41 | __RTtypeid |
| ... | @@ -44,8 +44,8 @@ __current_exception | ... | @@ -44,8 +44,8 @@ __current_exception |
| 44 | __current_exception_context | 44 | __current_exception_context |
| 45 | __dcrt_get_wide_environment_from_os | 45 | __dcrt_get_wide_environment_from_os |
| 46 | __dcrt_initial_narrow_environment DATA | 46 | __dcrt_initial_narrow_environment DATA |
| 47 | __intrinsic_abnormal_termination | 47 | F_I386(__intrinsic_abnormal_termination) |
| 48 | __intrinsic_setjmp | 48 | F_NON_ARM64(__intrinsic_setjmp) |
| 49 | F64(__intrinsic_setjmpex) | 49 | F64(__intrinsic_setjmpex) |
| 50 | __processing_throw | 50 | __processing_throw |
| 51 | __report_gsfailure | 51 | __report_gsfailure |
| ... | @@ -66,26 +66,26 @@ _get_purecall_handler | ... | @@ -66,26 +66,26 @@ _get_purecall_handler |
| 66 | _get_unexpected | 66 | _get_unexpected |
| 67 | F_I386(_global_unwind2) | 67 | F_I386(_global_unwind2) |
| 68 | _is_exception_typeof | 68 | _is_exception_typeof |
| 69 | F_X64(_local_unwind) | 69 | F64(_local_unwind) |
| 70 | F_I386(_local_unwind2) | 70 | F_I386(_local_unwind2) |
| 71 | F_I386(_local_unwind4) | 71 | F_I386(_local_unwind4) |
| 72 | F_I386(_longjmpex) | 72 | F_I386(_longjmpex) |
| 73 | _o__CIacos | 73 | F_I386(_o__CIacos) |
| 74 | _o__CIasin | 74 | F_I386(_o__CIasin) |
| 75 | _o__CIatan | 75 | F_I386(_o__CIatan) |
| 76 | _o__CIatan2 | 76 | F_I386(_o__CIatan2) |
| 77 | _o__CIcos | 77 | F_I386(_o__CIcos) |
| 78 | _o__CIcosh | 78 | F_I386(_o__CIcosh) |
| 79 | _o__CIexp | 79 | F_I386(_o__CIexp) |
| 80 | _o__CIfmod | 80 | F_I386(_o__CIfmod) |
| 81 | _o__CIlog | 81 | F_I386(_o__CIlog) |
| 82 | _o__CIlog10 | 82 | F_I386(_o__CIlog10) |
| 83 | _o__CIpow | 83 | F_I386(_o__CIpow) |
| 84 | _o__CIsin | 84 | F_I386(_o__CIsin) |
| 85 | _o__CIsinh | 85 | F_I386(_o__CIsinh) |
| 86 | _o__CIsqrt | 86 | F_I386(_o__CIsqrt) |
| 87 | _o__CItan | 87 | F_I386(_o__CItan) |
| 88 | _o__CItanh | 88 | F_I386(_o__CItanh) |
| 89 | _o__Getdays | 89 | _o__Getdays |
| 90 | _o__Getmonths | 90 | _o__Getmonths |
| 91 | _o__Gettnames | 91 | _o__Gettnames |
| ... | @@ -106,27 +106,27 @@ _o___conio_common_vcwscanf | ... | @@ -106,27 +106,27 @@ _o___conio_common_vcwscanf |
| 106 | _o___daylight | 106 | _o___daylight |
| 107 | _o___dstbias | 107 | _o___dstbias |
| 108 | _o___fpe_flt_rounds | 108 | _o___fpe_flt_rounds |
| 109 | _o___libm_sse2_acos | 109 | F_I386(_o___libm_sse2_acos) |
| 110 | _o___libm_sse2_acosf | 110 | F_I386(_o___libm_sse2_acosf) |
| 111 | _o___libm_sse2_asin | 111 | F_I386(_o___libm_sse2_asin) |
| 112 | _o___libm_sse2_asinf | 112 | F_I386(_o___libm_sse2_asinf) |
| 113 | _o___libm_sse2_atan | 113 | F_I386(_o___libm_sse2_atan) |
| 114 | _o___libm_sse2_atan2 | 114 | F_I386(_o___libm_sse2_atan2) |
| 115 | _o___libm_sse2_atanf | 115 | F_I386(_o___libm_sse2_atanf) |
| 116 | _o___libm_sse2_cos | 116 | F_I386(_o___libm_sse2_cos) |
| 117 | _o___libm_sse2_cosf | 117 | F_I386(_o___libm_sse2_cosf) |
| 118 | _o___libm_sse2_exp | 118 | F_I386(_o___libm_sse2_exp) |
| 119 | _o___libm_sse2_expf | 119 | F_I386(_o___libm_sse2_expf) |
| 120 | _o___libm_sse2_log | 120 | F_I386(_o___libm_sse2_log) |
| 121 | _o___libm_sse2_log10 | 121 | F_I386(_o___libm_sse2_log10) |
| 122 | _o___libm_sse2_log10f | 122 | F_I386(_o___libm_sse2_log10f) |
| 123 | _o___libm_sse2_logf | 123 | F_I386(_o___libm_sse2_logf) |
| 124 | _o___libm_sse2_pow | 124 | F_I386(_o___libm_sse2_pow) |
| 125 | _o___libm_sse2_powf | 125 | F_I386(_o___libm_sse2_powf) |
| 126 | _o___libm_sse2_sin | 126 | F_I386(_o___libm_sse2_sin) |
| 127 | _o___libm_sse2_sinf | 127 | F_I386(_o___libm_sse2_sinf) |
| 128 | _o___libm_sse2_tan | 128 | F_I386(_o___libm_sse2_tan) |
| 129 | _o___libm_sse2_tanf | 129 | F_I386(_o___libm_sse2_tanf) |
| 130 | _o___p___argc | 130 | _o___p___argc |
| 131 | _o___p___argv | 131 | _o___p___argv |
| 132 | _o___p___wargv | 132 | _o___p___wargv |
| ... | @@ -272,7 +272,7 @@ _o__findnext64 | ... | @@ -272,7 +272,7 @@ _o__findnext64 |
| 272 | _o__findnext64i32 | 272 | _o__findnext64i32 |
| 273 | _o__flushall | 273 | _o__flushall |
| 274 | _o__fpclass | 274 | _o__fpclass |
| 275 | _o__fpclassf | 275 | F_X64(_o__fpclassf) |
| 276 | _o__fputc_nolock | 276 | _o__fputc_nolock |
| 277 | _o__fputchar | 277 | _o__fputchar |
| 278 | _o__fputwc_nolock | 278 | _o__fputwc_nolock |
| ... | @@ -443,17 +443,17 @@ _o__ldtest | ... | @@ -443,17 +443,17 @@ _o__ldtest |
| 443 | _o__ldunscale | 443 | _o__ldunscale |
| 444 | _o__lfind | 444 | _o__lfind |
| 445 | _o__lfind_s | 445 | _o__lfind_s |
| 446 | _o__libm_sse2_acos_precise | 446 | F_I386(_o__libm_sse2_acos_precise) |
| 447 | _o__libm_sse2_asin_precise | 447 | F_I386(_o__libm_sse2_asin_precise) |
| 448 | _o__libm_sse2_atan_precise | 448 | F_I386(_o__libm_sse2_atan_precise) |
| 449 | _o__libm_sse2_cos_precise | 449 | F_I386(_o__libm_sse2_cos_precise) |
| 450 | _o__libm_sse2_exp_precise | 450 | F_I386(_o__libm_sse2_exp_precise) |
| 451 | _o__libm_sse2_log10_precise | 451 | F_I386(_o__libm_sse2_log10_precise) |
| 452 | _o__libm_sse2_log_precise | 452 | F_I386(_o__libm_sse2_log_precise) |
| 453 | _o__libm_sse2_pow_precise | 453 | F_I386(_o__libm_sse2_pow_precise) |
| 454 | _o__libm_sse2_sin_precise | 454 | F_I386(_o__libm_sse2_sin_precise) |
| 455 | _o__libm_sse2_sqrt_precise | 455 | F_I386(_o__libm_sse2_sqrt_precise) |
| 456 | _o__libm_sse2_tan_precise | 456 | F_I386(_o__libm_sse2_tan_precise) |
| 457 | _o__loaddll | 457 | _o__loaddll |
| 458 | _o__localtime32 | 458 | _o__localtime32 |
| 459 | _o__localtime32_s | 459 | _o__localtime32_s |
| ... | @@ -462,7 +462,7 @@ _o__localtime64_s | ... | @@ -462,7 +462,7 @@ _o__localtime64_s |
| 462 | _o__lock_file | 462 | _o__lock_file |
| 463 | _o__locking | 463 | _o__locking |
| 464 | _o__logb | 464 | _o__logb |
| 465 | _o__logbf | 465 | F_NON_I386(_o__logbf) |
| 466 | _o__lsearch | 466 | _o__lsearch |
| 467 | _o__lsearch_s | 467 | _o__lsearch_s |
| 468 | _o__lseek | 468 | _o__lseek |
| ... | @@ -619,7 +619,7 @@ _o__mktime32 | ... | @@ -619,7 +619,7 @@ _o__mktime32 |
| 619 | _o__mktime64 | 619 | _o__mktime64 |
| 620 | _o__msize | 620 | _o__msize |
| 621 | _o__nextafter | 621 | _o__nextafter |
| 622 | _o__nextafterf | 622 | F_X64(_o__nextafterf) |
| 623 | _o__open_osfhandle | 623 | _o__open_osfhandle |
| 624 | _o__pclose | 624 | _o__pclose |
| 625 | _o__pipe | 625 | _o__pipe |
| ... | @@ -642,7 +642,7 @@ _o__resetstkoflw | ... | @@ -642,7 +642,7 @@ _o__resetstkoflw |
| 642 | _o__rmdir | 642 | _o__rmdir |
| 643 | _o__rmtmp | 643 | _o__rmtmp |
| 644 | _o__scalb | 644 | _o__scalb |
| 645 | _o__scalbf | 645 | F_X64(_o__scalbf) |
| 646 | _o__searchenv | 646 | _o__searchenv |
| 647 | _o__searchenv_s | 647 | _o__searchenv_s |
| 648 | _o__set_abort_behavior | 648 | _o__set_abort_behavior |
| ... | @@ -700,7 +700,7 @@ _o__strtof_l | ... | @@ -700,7 +700,7 @@ _o__strtof_l |
| 700 | _o__strtoi64 | 700 | _o__strtoi64 |
| 701 | _o__strtoi64_l | 701 | _o__strtoi64_l |
| 702 | _o__strtol_l | 702 | _o__strtol_l |
| 703 | _o__strtold_l | 703 | F_LD64(_o__strtold_l) ; Can't use long double functions from the CRT on x86 |
| 704 | _o__strtoll_l | 704 | _o__strtoll_l |
| 705 | _o__strtoui64 | 705 | _o__strtoui64 |
| 706 | _o__strtoui64_l | 706 | _o__strtoui64_l |
| ... | @@ -780,7 +780,7 @@ _o__wcstof_l | ... | @@ -780,7 +780,7 @@ _o__wcstof_l |
| 780 | _o__wcstoi64 | 780 | _o__wcstoi64 |
| 781 | _o__wcstoi64_l | 781 | _o__wcstoi64_l |
| 782 | _o__wcstol_l | 782 | _o__wcstol_l |
| 783 | _o__wcstold_l | 783 | F_LD64(_o__wcstold_l) ; Can't use long double functions from the CRT on x86 |
| 784 | _o__wcstoll_l | 784 | _o__wcstoll_l |
| 785 | _o__wcstombs_l | 785 | _o__wcstombs_l |
| 786 | _o__wcstombs_s_l | 786 | _o__wcstombs_s_l |
| ... | @@ -875,24 +875,24 @@ _o__y1 | ... | @@ -875,24 +875,24 @@ _o__y1 |
| 875 | _o__yn | 875 | _o__yn |
| 876 | _o_abort | 876 | _o_abort |
| 877 | _o_acos | 877 | _o_acos |
| 878 | _o_acosf | 878 | F_NON_I386(_o_acosf) |
| 879 | _o_acosh | 879 | _o_acosh |
| 880 | _o_acoshf | 880 | _o_acoshf |
| 881 | _o_acoshl | 881 | F_LD64(_o_acoshl) ; Can't use long double functions from the CRT on x86 |
| 882 | _o_asctime | 882 | _o_asctime |
| 883 | _o_asctime_s | 883 | _o_asctime_s |
| 884 | _o_asin | 884 | _o_asin |
| 885 | _o_asinf | 885 | F_NON_I386(_o_asinf) |
| 886 | _o_asinh | 886 | _o_asinh |
| 887 | _o_asinhf | 887 | _o_asinhf |
| 888 | _o_asinhl | 888 | F_LD64(_o_asinhl) ; Can't use long double functions from the CRT on x86 |
| 889 | _o_atan | 889 | _o_atan |
| 890 | _o_atan2 | 890 | _o_atan2 |
| 891 | _o_atan2f | 891 | F_NON_I386(_o_atan2f) |
| 892 | _o_atanf | 892 | F_NON_I386(_o_atanf) |
| 893 | _o_atanh | 893 | _o_atanh |
| 894 | _o_atanhf | 894 | _o_atanhf |
| 895 | _o_atanhl | 895 | F_LD64(_o_atanhl) ; Can't use long double functions from the CRT on x86 |
| 896 | _o_atof | 896 | _o_atof |
| 897 | _o_atoi | 897 | _o_atoi |
| 898 | _o_atol | 898 | _o_atol |
| ... | @@ -904,24 +904,24 @@ _o_calloc | ... | @@ -904,24 +904,24 @@ _o_calloc |
| 904 | _o_cbrt | 904 | _o_cbrt |
| 905 | _o_cbrtf | 905 | _o_cbrtf |
| 906 | _o_ceil | 906 | _o_ceil |
| 907 | _o_ceilf | 907 | F_NON_I386(_o_ceilf) |
| 908 | _o_clearerr | 908 | _o_clearerr |
| 909 | _o_clearerr_s | 909 | _o_clearerr_s |
| 910 | _o_cos | 910 | _o_cos |
| 911 | _o_cosf | 911 | F_NON_I386(_o_cosf) |
| 912 | _o_cosh | 912 | _o_cosh |
| 913 | _o_coshf | 913 | F_NON_I386(_o_coshf) |
| 914 | _o_erf | 914 | _o_erf |
| 915 | _o_erfc | 915 | _o_erfc |
| 916 | _o_erfcf | 916 | _o_erfcf |
| 917 | _o_erfcl | 917 | F_LD64(_o_erfcl) ; Can't use long double functions from the CRT on x86 |
| 918 | _o_erff | 918 | _o_erff |
| 919 | _o_erfl | 919 | F_LD64(_o_erfl) ; Can't use long double functions from the CRT on x86 |
| 920 | _o_exp | 920 | _o_exp |
| 921 | _o_exp2 | 921 | _o_exp2 |
| 922 | _o_exp2f | 922 | _o_exp2f |
| 923 | _o_exp2l | 923 | F_LD64(_o_exp2l) ; Can't use long double functions from the CRT on x86 |
| 924 | _o_expf | 924 | F_NON_I386(_o_expf) |
| 925 | _o_fabs | 925 | _o_fabs |
| 926 | _o_fclose | 926 | _o_fclose |
| 927 | _o_feof | 927 | _o_feof |
| ... | @@ -933,12 +933,12 @@ _o_fgets | ... | @@ -933,12 +933,12 @@ _o_fgets |
| 933 | _o_fgetwc | 933 | _o_fgetwc |
| 934 | _o_fgetws | 934 | _o_fgetws |
| 935 | _o_floor | 935 | _o_floor |
| 936 | _o_floorf | 936 | F_NON_I386(_o_floorf) |
| 937 | _o_fma | 937 | _o_fma |
| 938 | _o_fmaf | 938 | _o_fmaf |
| 939 | _o_fmal | 939 | F_LD64(_o_fmal) ; Can't use long double functions from the CRT on x86 |
| 940 | _o_fmod | 940 | _o_fmod |
| 941 | _o_fmodf | 941 | F_NON_I386(_o_fmodf) |
| 942 | _o_fopen | 942 | _o_fopen |
| 943 | _o_fopen_s | 943 | _o_fopen_s |
| 944 | _o_fputc | 944 | _o_fputc |
| ... | @@ -995,33 +995,33 @@ _o_isxdigit | ... | @@ -995,33 +995,33 @@ _o_isxdigit |
| 995 | _o_ldexp | 995 | _o_ldexp |
| 996 | _o_lgamma | 996 | _o_lgamma |
| 997 | _o_lgammaf | 997 | _o_lgammaf |
| 998 | _o_lgammal | 998 | F_LD64(_o_lgammal) ; Can't use long double functions from the CRT on x86 |
| 999 | _o_llrint | 999 | _o_llrint |
| 1000 | _o_llrintf | 1000 | _o_llrintf |
| 1001 | _o_llrintl | 1001 | F_LD64(_o_llrintl) ; Can't use long double functions from the CRT on x86 |
| 1002 | _o_llround | 1002 | _o_llround |
| 1003 | _o_llroundf | 1003 | _o_llroundf |
| 1004 | _o_llroundl | 1004 | F_LD64(_o_llroundl) ; Can't use long double functions from the CRT on x86 |
| 1005 | _o_localeconv | 1005 | _o_localeconv |
| 1006 | _o_log | 1006 | _o_log |
| 1007 | _o_log10 | 1007 | _o_log10 |
| 1008 | _o_log10f | 1008 | F_NON_I386(_o_log10f) |
| 1009 | _o_log1p | 1009 | _o_log1p |
| 1010 | _o_log1pf | 1010 | _o_log1pf |
| 1011 | _o_log1pl | 1011 | F_LD64(_o_log1pl) ; Can't use long double functions from the CRT on x86 |
| 1012 | _o_log2 | 1012 | _o_log2 |
| 1013 | _o_log2f | 1013 | _o_log2f |
| 1014 | _o_log2l | 1014 | F_LD64(_o_log2l) ; Can't use long double functions from the CRT on x86 |
| 1015 | _o_logb | 1015 | _o_logb |
| 1016 | _o_logbf | 1016 | _o_logbf |
| 1017 | _o_logbl | 1017 | F_LD64(_o_logbl) ; Can't use long double functions from the CRT on x86 |
| 1018 | _o_logf | 1018 | F_NON_I386(_o_logf) |
| 1019 | _o_lrint | 1019 | _o_lrint |
| 1020 | _o_lrintf | 1020 | _o_lrintf |
| 1021 | _o_lrintl | 1021 | F_LD64(_o_lrintl) ; Can't use long double functions from the CRT on x86 |
| 1022 | _o_lround | 1022 | _o_lround |
| 1023 | _o_lroundf | 1023 | _o_lroundf |
| 1024 | _o_lroundl | 1024 | F_LD64(_o_lroundl) ; Can't use long double functions from the CRT on x86 |
| 1025 | _o_malloc | 1025 | _o_malloc |
| 1026 | _o_mblen | 1026 | _o_mblen |
| 1027 | _o_mbrlen | 1027 | _o_mbrlen |
| ... | @@ -1035,19 +1035,19 @@ _o_mbstowcs_s | ... | @@ -1035,19 +1035,19 @@ _o_mbstowcs_s |
| 1035 | _o_mbtowc | 1035 | _o_mbtowc |
| 1036 | _o_memset | 1036 | _o_memset |
| 1037 | _o_modf | 1037 | _o_modf |
| 1038 | _o_modff | 1038 | F_NON_I386(_o_modff) |
| 1039 | _o_nan | 1039 | _o_nan |
| 1040 | _o_nanf | 1040 | _o_nanf |
| 1041 | _o_nanl | 1041 | F_LD64(_o_nanl) ; Can't use long double functions from the CRT on x86 |
| 1042 | _o_nearbyint | 1042 | _o_nearbyint |
| 1043 | _o_nearbyintf | 1043 | _o_nearbyintf |
| 1044 | _o_nearbyintl | 1044 | F_LD64(_o_nearbyintl) ; Can't use long double functions from the CRT on x86 |
| 1045 | _o_nextafter | 1045 | _o_nextafter |
| 1046 | _o_nextafterf | 1046 | _o_nextafterf |
| 1047 | _o_nextafterl | 1047 | F_LD64(_o_nextafterl) ; Can't use long double functions from the CRT on x86 |
| 1048 | _o_nexttoward | 1048 | F_LD64(_o_nexttoward) ; Can't use long double functions from the CRT on x86 |
| 1049 | _o_nexttowardf | 1049 | F_LD64(_o_nexttowardf) ; Can't use long double functions from the CRT on x86 |
| 1050 | _o_nexttowardl | 1050 | F_LD64(_o_nexttowardl) ; Can't use long double functions from the CRT on x86 |
| 1051 | _o_pow | 1051 | _o_pow |
| 1052 | _o_powf | 1052 | _o_powf |
| 1053 | _o_putc | 1053 | _o_putc |
| ... | @@ -1063,33 +1063,33 @@ _o_rand_s | ... | @@ -1063,33 +1063,33 @@ _o_rand_s |
| 1063 | _o_realloc | 1063 | _o_realloc |
| 1064 | _o_remainder | 1064 | _o_remainder |
| 1065 | _o_remainderf | 1065 | _o_remainderf |
| 1066 | _o_remainderl | 1066 | F_LD64(_o_remainderl) ; Can't use long double functions from the CRT on x86 |
| 1067 | _o_remove | 1067 | _o_remove |
| 1068 | _o_remquo | 1068 | _o_remquo |
| 1069 | _o_remquof | 1069 | _o_remquof |
| 1070 | _o_remquol | 1070 | F_LD64(_o_remquol) ; Can't use long double functions from the CRT on x86 |
| 1071 | _o_rewind | 1071 | _o_rewind |
| 1072 | _o_rint | 1072 | _o_rint |
| 1073 | _o_rintf | 1073 | _o_rintf |
| 1074 | _o_rintl | 1074 | F_LD64(_o_rintl) ; Can't use long double functions from the CRT on x86 |
| 1075 | _o_round | 1075 | _o_round |
| 1076 | _o_roundf | 1076 | _o_roundf |
| 1077 | _o_roundl | 1077 | F_LD64(_o_roundl) ; Can't use long double functions from the CRT on x86 |
| 1078 | _o_scalbln | 1078 | _o_scalbln |
| 1079 | _o_scalblnf | 1079 | _o_scalblnf |
| 1080 | _o_scalblnl | 1080 | F_LD64(_o_scalblnl) ; Can't use long double functions from the CRT on x86 |
| 1081 | _o_scalbn | 1081 | _o_scalbn |
| 1082 | _o_scalbnf | 1082 | _o_scalbnf |
| 1083 | _o_scalbnl | 1083 | F_LD64(_o_scalbnl) ; Can't use long double functions from the CRT on x86 |
| 1084 | _o_set_terminate | 1084 | _o_set_terminate |
| 1085 | _o_setbuf | 1085 | _o_setbuf |
| 1086 | _o_setvbuf | 1086 | _o_setvbuf |
| 1087 | _o_sin | 1087 | _o_sin |
| 1088 | _o_sinf | 1088 | F_NON_I386(_o_sinf) |
| 1089 | _o_sinh | 1089 | _o_sinh |
| 1090 | _o_sinhf | 1090 | F_NON_I386(_o_sinhf) |
| 1091 | _o_sqrt | 1091 | _o_sqrt |
| 1092 | _o_sqrtf | 1092 | F_NON_I386(_o_sqrtf) |
| 1093 | _o_srand | 1093 | _o_srand |
| 1094 | _o_strcat_s | 1094 | _o_strcat_s |
| 1095 | _o_strcoll | 1095 | _o_strcoll |
| ... | @@ -1104,19 +1104,19 @@ _o_strtof | ... | @@ -1104,19 +1104,19 @@ _o_strtof |
| 1104 | _o_strtok | 1104 | _o_strtok |
| 1105 | _o_strtok_s | 1105 | _o_strtok_s |
| 1106 | _o_strtol | 1106 | _o_strtol |
| 1107 | _o_strtold | 1107 | F_LD64(_o_strtold) ; Can't use long double functions from the CRT on x86 |
| 1108 | _o_strtoll | 1108 | _o_strtoll |
| 1109 | _o_strtoul | 1109 | _o_strtoul |
| 1110 | _o_strtoull | 1110 | _o_strtoull |
| 1111 | _o_system | 1111 | _o_system |
| 1112 | _o_tan | 1112 | _o_tan |
| 1113 | _o_tanf | 1113 | F_NON_I386(_o_tanf) |
| 1114 | _o_tanh | 1114 | _o_tanh |
| 1115 | _o_tanhf | 1115 | F_NON_I386(_o_tanhf) |
| 1116 | _o_terminate | 1116 | _o_terminate |
| 1117 | _o_tgamma | 1117 | _o_tgamma |
| 1118 | _o_tgammaf | 1118 | _o_tgammaf |
| 1119 | _o_tgammal | 1119 | F_LD64(_o_tgammal) ; Can't use long double functions from the CRT on x86 |
| 1120 | _o_tmpfile_s | 1120 | _o_tmpfile_s |
| 1121 | _o_tmpnam_s | 1121 | _o_tmpnam_s |
| 1122 | _o_tolower | 1122 | _o_tolower |
| ... | @@ -1141,7 +1141,7 @@ _o_wcstof | ... | @@ -1141,7 +1141,7 @@ _o_wcstof |
| 1141 | _o_wcstok | 1141 | _o_wcstok |
| 1142 | _o_wcstok_s | 1142 | _o_wcstok_s |
| 1143 | _o_wcstol | 1143 | _o_wcstol |
| 1144 | _o_wcstold | 1144 | F_LD64(_o_wcstold) ; Can't use long double functions from the CRT on x86 |
| 1145 | _o_wcstoll | 1145 | _o_wcstoll |
| 1146 | _o_wcstombs | 1146 | _o_wcstombs |
| 1147 | _o_wcstombs_s | 1147 | _o_wcstombs_s |
| ... | @@ -1172,3 +1172,33 @@ unexpected | ... | @@ -1172,3 +1172,33 @@ unexpected |
| 1172 | wcschr | 1172 | wcschr |
| 1173 | wcsrchr | 1173 | wcsrchr |
| 1174 | wcsstr | 1174 | wcsstr |
| 1175 | |||
| 1176 | ; These symbols were added in api-ms-win-crt-private-l1-1-0.dll version 10.0.10563.0 | ||
| 1177 | ; It is part of the Microsoft Visual C++ 2015 Redistributable version 14.0.23506.0 | ||
| 1178 | _o____lc_codepage_func | ||
| 1179 | _o____lc_collate_cp_func | ||
| 1180 | _o____lc_locale_name_func | ||
| 1181 | _o____mb_cur_max_func | ||
| 1182 | _o___std_exception_copy | ||
| 1183 | _o___std_exception_destroy | ||
| 1184 | _o___std_type_info_destroy_list | ||
| 1185 | _o___std_type_info_name | ||
| 1186 | _o__cexit | ||
| 1187 | _o__configthreadlocale | ||
| 1188 | _o__configure_narrow_argv | ||
| 1189 | _o__controlfp_s | ||
| 1190 | _o__crt_atexit | ||
| 1191 | _o__exit | ||
| 1192 | _o__get_initial_narrow_environment | ||
| 1193 | _o__get_initial_wide_environment | ||
| 1194 | _o__initialize_narrow_environment | ||
| 1195 | _o__initialize_wide_environment | ||
| 1196 | _o__purecall | ||
| 1197 | _o__seh_filter_dll | ||
| 1198 | _o__seh_filter_exe | ||
| 1199 | _o__set_app_type | ||
| 1200 | _o__set_fmode | ||
| 1201 | _o_exit | ||
| 1202 | _o_memcpy_s | ||
| 1203 | _o_rename | ||
| 1204 | _o_setlocale |
lib/libc/mingw/lib-common/api-ms-win-crt-runtime-l1-1-0.def.in+3-4| ... | @@ -37,15 +37,14 @@ _controlfp | ... | @@ -37,15 +37,14 @@ _controlfp |
| 37 | _controlfp_s | 37 | _controlfp_s |
| 38 | _crt_at_quick_exit | 38 | _crt_at_quick_exit |
| 39 | _crt_atexit | 39 | _crt_atexit |
| 40 | _crt_debugger_hook | 40 | F_I386(_crt_debugger_hook) |
| 41 | _endthread | 41 | _endthread |
| 42 | _endthreadex | 42 | _endthreadex |
| 43 | _errno | 43 | _errno |
| 44 | _execute_onexit_table | 44 | _execute_onexit_table |
| 45 | _exit | 45 | _exit |
| 46 | F_NON_I386(_fpieee_flt) | 46 | _fpieee_flt |
| 47 | ; DATA added manually | 47 | _fpreset F_LD80(DATA) ; DATA added manually |
| 48 | _fpreset DATA | ||
| 49 | _get_doserrno | 48 | _get_doserrno |
| 50 | _get_errno | 49 | _get_errno |
| 51 | _get_initial_narrow_environment | 50 | _get_initial_narrow_environment |
lib/libc/mingw/lib-common/api-ms-win-crt-time-l1-1-0.def.in+6| ... | @@ -5,9 +5,13 @@ EXPORTS | ... | @@ -5,9 +5,13 @@ EXPORTS |
| 5 | #include "func.def.in" | 5 | #include "func.def.in" |
| 6 | 6 | ||
| 7 | __daylight | 7 | __daylight |
| 8 | __p__daylight == __daylight | ||
| 8 | __dstbias | 9 | __dstbias |
| 10 | __p__dstbias == __dstbias | ||
| 9 | __timezone | 11 | __timezone |
| 12 | __p__timezone == __timezone | ||
| 10 | __tzname | 13 | __tzname |
| 14 | __p__tzname == __tzname | ||
| 11 | _ctime32 | 15 | _ctime32 |
| 12 | _ctime32_s | 16 | _ctime32_s |
| 13 | _ctime64 | 17 | _ctime64 |
| ... | @@ -18,6 +22,8 @@ _difftime32 | ... | @@ -18,6 +22,8 @@ _difftime32 |
| 18 | _difftime64 | 22 | _difftime64 |
| 19 | F32(_ftime == _ftime32) | 23 | F32(_ftime == _ftime32) |
| 20 | F64(_ftime == _ftime64) | 24 | F64(_ftime == _ftime64) |
| 25 | F32(ftime == _ftime32) | ||
| 26 | F64(ftime == _ftime64) | ||
| 21 | _ftime32 | 27 | _ftime32 |
| 22 | _ftime32_s | 28 | _ftime32_s |
| 23 | _ftime64 | 29 | _ftime64 |
lib/libc/mingw/lib-common/ntdll.def.in+14-14| ... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | ||
| 3 | LIBRARY "ntdll.dll" | 3 | LIBRARY "ntdll.dll" |
| 4 | EXPORTS | 4 | EXPORTS |
| 5 | #ifdef DEF_X64 | 5 | #ifdef __x86_64__ |
| 6 | PropertyLengthAsVariant | 6 | PropertyLengthAsVariant |
| 7 | RtlConvertPropertyToVariant | 7 | RtlConvertPropertyToVariant |
| 8 | RtlConvertVariantToProperty | 8 | RtlConvertVariantToProperty |
| ... | @@ -38,7 +38,7 @@ CsrClientConnectToServer | ... | @@ -38,7 +38,7 @@ CsrClientConnectToServer |
| 38 | CsrFreeCaptureBuffer | 38 | CsrFreeCaptureBuffer |
| 39 | CsrGetProcessId | 39 | CsrGetProcessId |
| 40 | CsrIdentifyAlertableThread | 40 | CsrIdentifyAlertableThread |
| 41 | #if defined(DEF_I386) || defined(DEF_X64) | 41 | #if defined(__i386__) || defined(__x86_64__) |
| 42 | CsrNewThread | 42 | CsrNewThread |
| 43 | CsrProbeForRead | 43 | CsrProbeForRead |
| 44 | CsrProbeForWrite | 44 | CsrProbeForWrite |
| ... | @@ -65,12 +65,12 @@ DbgUiStopDebugging | ... | @@ -65,12 +65,12 @@ DbgUiStopDebugging |
| 65 | DbgUiWaitStateChange | 65 | DbgUiWaitStateChange |
| 66 | DbgUserBreakPoint | 66 | DbgUserBreakPoint |
| 67 | EtwCheckCoverage | 67 | EtwCheckCoverage |
| 68 | #ifdef DEF_X64 | 68 | #ifdef __x86_64__ |
| 69 | EtwControlTraceA | 69 | EtwControlTraceA |
| 70 | EtwControlTraceW | 70 | EtwControlTraceW |
| 71 | #endif | 71 | #endif |
| 72 | EtwCreateTraceInstanceId | 72 | EtwCreateTraceInstanceId |
| 73 | #ifdef DEF_X64 | 73 | #ifdef __x86_64__ |
| 74 | EtwEnableTrace | 74 | EtwEnableTrace |
| 75 | EtwEnumerateTraceGuids | 75 | EtwEnumerateTraceGuids |
| 76 | EtwFlushTraceA | 76 | EtwFlushTraceA |
| ... | @@ -95,7 +95,7 @@ EtwEventWriteTransfer | ... | @@ -95,7 +95,7 @@ EtwEventWriteTransfer |
| 95 | EtwGetTraceEnableFlags | 95 | EtwGetTraceEnableFlags |
| 96 | EtwGetTraceEnableLevel | 96 | EtwGetTraceEnableLevel |
| 97 | EtwGetTraceLoggerHandle | 97 | EtwGetTraceLoggerHandle |
| 98 | #ifdef DEF_X64 | 98 | #ifdef __x86_64__ |
| 99 | EtwNotificationRegistrationA | 99 | EtwNotificationRegistrationA |
| 100 | EtwNotificationRegistrationW | 100 | EtwNotificationRegistrationW |
| 101 | EtwQueryAllTracesA | 101 | EtwQueryAllTracesA |
| ... | @@ -112,7 +112,7 @@ EtwProcessPrivateLoggerRequest | ... | @@ -112,7 +112,7 @@ EtwProcessPrivateLoggerRequest |
| 112 | EtwRegisterSecurityProvider | 112 | EtwRegisterSecurityProvider |
| 113 | EtwRegisterTraceGuidsA | 113 | EtwRegisterTraceGuidsA |
| 114 | EtwRegisterTraceGuidsW | 114 | EtwRegisterTraceGuidsW |
| 115 | #ifdef DEF_X64 | 115 | #ifdef __x86_64__ |
| 116 | EtwStartTraceA | 116 | EtwStartTraceA |
| 117 | EtwStartTraceW | 117 | EtwStartTraceW |
| 118 | EtwStopTraceA | 118 | EtwStopTraceA |
| ... | @@ -126,7 +126,7 @@ EtwTraceEventInstance | ... | @@ -126,7 +126,7 @@ EtwTraceEventInstance |
| 126 | EtwTraceMessage | 126 | EtwTraceMessage |
| 127 | EtwTraceMessageVa | 127 | EtwTraceMessageVa |
| 128 | EtwUnregisterTraceGuids | 128 | EtwUnregisterTraceGuids |
| 129 | #ifdef DEF_X64 | 129 | #ifdef __x86_64__ |
| 130 | EtwUpdateTraceA | 130 | EtwUpdateTraceA |
| 131 | EtwUpdateTraceW | 131 | EtwUpdateTraceW |
| 132 | EtwpGetTraceBuffer | 132 | EtwpGetTraceBuffer |
| ... | @@ -138,7 +138,7 @@ EtwpGetCpuSpeed | ... | @@ -138,7 +138,7 @@ EtwpGetCpuSpeed |
| 138 | F_X64(EtwpNotificationThread) | 138 | F_X64(EtwpNotificationThread) |
| 139 | EvtIntReportAuthzEventAndSourceAsync | 139 | EvtIntReportAuthzEventAndSourceAsync |
| 140 | EvtIntReportEventAndSourceAsync | 140 | EvtIntReportEventAndSourceAsync |
| 141 | #ifndef DEF_ARM32 | 141 | #ifndef __arm__ |
| 142 | ExpInterlockedPopEntrySListEnd | 142 | ExpInterlockedPopEntrySListEnd |
| 143 | F_X64(ExpInterlockedPopEntrySListEnd16) | 143 | F_X64(ExpInterlockedPopEntrySListEnd16) |
| 144 | ExpInterlockedPopEntrySListFault | 144 | ExpInterlockedPopEntrySListFault |
| ... | @@ -729,7 +729,7 @@ NtWaitForWorkViaWorkerFactory | ... | @@ -729,7 +729,7 @@ NtWaitForWorkViaWorkerFactory |
| 729 | NtWaitHighEventPair | 729 | NtWaitHighEventPair |
| 730 | NtWaitLowEventPair | 730 | NtWaitLowEventPair |
| 731 | NtWorkerFactoryWorkerReady | 731 | NtWorkerFactoryWorkerReady |
| 732 | #ifdef DEF_ARM32 | 732 | #ifdef __arm__ |
| 733 | NtWow64AllocateVirtualMemory64 | 733 | NtWow64AllocateVirtualMemory64 |
| 734 | NtWow64CallFunction64 | 734 | NtWow64CallFunction64 |
| 735 | NtWow64CsrAllocateCaptureBuffer | 735 | NtWow64CsrAllocateCaptureBuffer |
| ... | @@ -946,7 +946,7 @@ RtlCreateSystemVolumeInformationFolder | ... | @@ -946,7 +946,7 @@ RtlCreateSystemVolumeInformationFolder |
| 946 | RtlCreateTagHeap | 946 | RtlCreateTagHeap |
| 947 | RtlCreateTimer | 947 | RtlCreateTimer |
| 948 | RtlCreateTimerQueue | 948 | RtlCreateTimerQueue |
| 949 | #ifdef DEF_X64 | 949 | #ifdef __x86_64__ |
| 950 | RtlCreateUmsCompletionList | 950 | RtlCreateUmsCompletionList |
| 951 | RtlCreateUmsThread | 951 | RtlCreateUmsThread |
| 952 | RtlCreateUmsThreadContext | 952 | RtlCreateUmsThreadContext |
| ... | @@ -995,7 +995,7 @@ RtlDeleteSecurityObject | ... | @@ -995,7 +995,7 @@ RtlDeleteSecurityObject |
| 995 | RtlDeleteTimer | 995 | RtlDeleteTimer |
| 996 | RtlDeleteTimerQueue | 996 | RtlDeleteTimerQueue |
| 997 | RtlDeleteTimerQueueEx | 997 | RtlDeleteTimerQueueEx |
| 998 | #ifdef DEF_X64 | 998 | #ifdef __x86_64__ |
| 999 | RtlDeleteUmsCompletionList | 999 | RtlDeleteUmsCompletionList |
| 1000 | RtlDeleteUmsThreadContext | 1000 | RtlDeleteUmsThreadContext |
| 1001 | RtlDequeueUmsCompletionListItems | 1001 | RtlDequeueUmsCompletionListItems |
| ... | @@ -1732,7 +1732,7 @@ F64(RtlWow64GetThreadContext) | ... | @@ -1732,7 +1732,7 @@ F64(RtlWow64GetThreadContext) |
| 1732 | F64(RtlWow64GetThreadSelectorEntry) | 1732 | F64(RtlWow64GetThreadSelectorEntry) |
| 1733 | RtlWow64IsWowGuestMachineSupported | 1733 | RtlWow64IsWowGuestMachineSupported |
| 1734 | RtlWow64LogMessageInEventLogger | 1734 | RtlWow64LogMessageInEventLogger |
| 1735 | #if defined(DEF_X64) || defined(DEF_ARM64) | 1735 | #if defined(__x86_64__) || defined(__aarch64__) |
| 1736 | RtlWow64PopAllCrossProcessWorkFromWorkList | 1736 | RtlWow64PopAllCrossProcessWorkFromWorkList |
| 1737 | RtlWow64PopCrossProcessWorkFromFreeList | 1737 | RtlWow64PopCrossProcessWorkFromFreeList |
| 1738 | RtlWow64PushCrossProcessWorkOntoFreeList | 1738 | RtlWow64PushCrossProcessWorkOntoFreeList |
| ... | @@ -1794,7 +1794,7 @@ F_X64(RtlpUmsThreadYield) | ... | @@ -1794,7 +1794,7 @@ F_X64(RtlpUmsThreadYield) |
| 1794 | RtlpUnWaitCriticalSection | 1794 | RtlpUnWaitCriticalSection |
| 1795 | RtlpVerifyAndCommitUILanguageSettings | 1795 | RtlpVerifyAndCommitUILanguageSettings |
| 1796 | RtlpWaitForCriticalSection | 1796 | RtlpWaitForCriticalSection |
| 1797 | #ifdef DEF_X64 | 1797 | #ifdef __x86_64__ |
| 1798 | RtlpWow64CtxFromAmd64 | 1798 | RtlpWow64CtxFromAmd64 |
| 1799 | RtlpWow64GetContextOnAmd64 | 1799 | RtlpWow64GetContextOnAmd64 |
| 1800 | RtlpWow64SetContextOnAmd64 | 1800 | RtlpWow64SetContextOnAmd64 |
| ... | @@ -2388,7 +2388,7 @@ ZwWaitForWorkViaWorkerFactory | ... | @@ -2388,7 +2388,7 @@ ZwWaitForWorkViaWorkerFactory |
| 2388 | ZwWaitHighEventPair | 2388 | ZwWaitHighEventPair |
| 2389 | ZwWaitLowEventPair | 2389 | ZwWaitLowEventPair |
| 2390 | ZwWorkerFactoryWorkerReady | 2390 | ZwWorkerFactoryWorkerReady |
| 2391 | #ifdef DEF_ARM32 | 2391 | #ifdef __arm__ |
| 2392 | ZwWow64AllocateVirtualMemory64 | 2392 | ZwWow64AllocateVirtualMemory64 |
| 2393 | ZwWow64CallFunction64 | 2393 | ZwWow64CallFunction64 |
| 2394 | ZwWow64CsrAllocateCaptureBuffer | 2394 | ZwWow64CsrAllocateCaptureBuffer |
lib/libc/mingw/lib-common/ntdllcrt.def.in+4-4| ... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | ||
| 3 | LIBRARY "ntdll.dll" | 3 | LIBRARY "ntdll.dll" |
| 4 | EXPORTS | 4 | EXPORTS |
| 5 | #ifdef DEF_I386 | 5 | #ifdef __i386__ |
| 6 | _CIcos | 6 | _CIcos |
| 7 | _CIlog | 7 | _CIlog |
| 8 | _CIpow | 8 | _CIpow |
| ... | @@ -17,7 +17,7 @@ __iscsymf | ... | @@ -17,7 +17,7 @@ __iscsymf |
| 17 | F_X64(__misaligned_access) | 17 | F_X64(__misaligned_access) |
| 18 | F_ARM32(__jump_unwind) | 18 | F_ARM32(__jump_unwind) |
| 19 | __toascii | 19 | __toascii |
| 20 | #ifdef DEF_I386 | 20 | #ifdef __i386__ |
| 21 | _alldiv | 21 | _alldiv |
| 22 | _alldvrm@16 | 22 | _alldvrm@16 |
| 23 | _allmul@16 | 23 | _allmul@16 |
| ... | @@ -29,7 +29,7 @@ _allshl | ... | @@ -29,7 +29,7 @@ _allshl |
| 29 | _allshr | 29 | _allshr |
| 30 | #endif | 30 | #endif |
| 31 | _atoi64 | 31 | _atoi64 |
| 32 | #ifdef DEF_I386 | 32 | #ifdef __i386__ |
| 33 | _aulldiv@16 | 33 | _aulldiv@16 |
| 34 | _aulldvrm@16 | 34 | _aulldvrm@16 |
| 35 | _aullrem@16 | 35 | _aullrem@16 |
| ... | @@ -39,7 +39,7 @@ _aullshr | ... | @@ -39,7 +39,7 @@ _aullshr |
| 39 | _errno | 39 | _errno |
| 40 | F_I386(_except_handler4_common) | 40 | F_I386(_except_handler4_common) |
| 41 | _fltused DATA | 41 | _fltused DATA |
| 42 | #ifdef DEF_I386 | 42 | #ifdef __i386__ |
| 43 | _ftol | 43 | _ftol |
| 44 | _ftol2 | 44 | _ftol2 |
| 45 | _ftol2_sse | 45 | _ftol2_sse |
lib/libc/mingw/lib-common/ole32.def.in+3| ... | @@ -390,7 +390,9 @@ OleBuildVersion | ... | @@ -390,7 +390,9 @@ OleBuildVersion |
| 390 | OleConvertIStorageToOLESTREAM | 390 | OleConvertIStorageToOLESTREAM |
| 391 | OleConvertIStorageToOLESTREAMEx | 391 | OleConvertIStorageToOLESTREAMEx |
| 392 | OleConvertOLESTREAMToIStorage | 392 | OleConvertOLESTREAMToIStorage |
| 393 | OleConvertOLESTREAMToIStorage2 | ||
| 393 | OleConvertOLESTREAMToIStorageEx | 394 | OleConvertOLESTREAMToIStorageEx |
| 395 | OleConvertOLESTREAMToIStorageEx2 | ||
| 394 | OleCreate | 396 | OleCreate |
| 395 | OleCreateDefaultHandler | 397 | OleCreateDefaultHandler |
| 396 | OleCreateEmbeddingHelper | 398 | OleCreateEmbeddingHelper |
| ... | @@ -417,6 +419,7 @@ OleDuplicateData | ... | @@ -417,6 +419,7 @@ OleDuplicateData |
| 417 | OleFlushClipboard | 419 | OleFlushClipboard |
| 418 | OleGetAutoConvert | 420 | OleGetAutoConvert |
| 419 | OleGetClipboard | 421 | OleGetClipboard |
| 422 | OleGetClipboardWithEnterpriseInfo | ||
| 420 | OleGetIconOfClass | 423 | OleGetIconOfClass |
| 421 | OleGetIconOfFile | 424 | OleGetIconOfFile |
| 422 | OleIconToCursorExt | 425 | OleIconToCursorExt |
lib/libc/mingw/lib-common/quartz.def created+17| ... | @@ -0,0 +1,17 @@ | ||
| 1 | ; | ||
| 2 | ; Exports of file QUARTZ.dll | ||
| 3 | ; | ||
| 4 | ; Autogenerated by gen_exportdef | ||
| 5 | ; Written by Kai Tietz, 2007 | ||
| 6 | ; | ||
| 7 | LIBRARY QUARTZ.dll | ||
| 8 | EXPORTS | ||
| 9 | AMGetErrorTextA | ||
| 10 | AMGetErrorTextW | ||
| 11 | AmpFactorToDB | ||
| 12 | DBToAmpFactor | ||
| 13 | DllCanUnloadNow | ||
| 14 | DllGetClassObject | ||
| 15 | DllRegisterServer | ||
| 16 | DllUnregisterServer | ||
| 17 | GetProxyDllInfo | ||
lib/libc/mingw/lib-common/ucrtbase-common.def.in+98-98| ... | @@ -218,7 +218,7 @@ __threadid | ... | @@ -218,7 +218,7 @@ __threadid |
| 218 | __timezone | 218 | __timezone |
| 219 | __toascii | 219 | __toascii |
| 220 | __tzname | 220 | __tzname |
| 221 | #if !defined(DEF_DEBUG) || !defined(DEF_ARM64) | 221 | #if !defined(DEF_DEBUG) || !defined(__aarch64__) |
| 222 | ; symbols __unDName and __unDNameEx are available in all versions except ARM64 ucrtbased.dll | 222 | ; symbols __unDName and __unDNameEx are available in all versions except ARM64 ucrtbased.dll |
| 223 | __unDName | 223 | __unDName |
| 224 | __unDNameEx | 224 | __unDNameEx |
| ... | @@ -388,7 +388,7 @@ _flushall | ... | @@ -388,7 +388,7 @@ _flushall |
| 388 | _fpclass | 388 | _fpclass |
| 389 | F_X64(_fpclassf) | 389 | F_X64(_fpclassf) |
| 390 | _fpieee_flt | 390 | _fpieee_flt |
| 391 | _fpreset DATA ; DATA added manually | 391 | _fpreset F_LD80(DATA) ; DATA added manually |
| 392 | _fputc_nolock | 392 | _fputc_nolock |
| 393 | _fputchar | 393 | _fputchar |
| 394 | _fputwc_nolock | 394 | _fputwc_nolock |
| ... | @@ -493,7 +493,7 @@ F_DEBUG(_invalid_parameter) | ... | @@ -493,7 +493,7 @@ F_DEBUG(_invalid_parameter) |
| 493 | _invalid_parameter_noinfo | 493 | _invalid_parameter_noinfo |
| 494 | _invalid_parameter_noinfo_noreturn | 494 | _invalid_parameter_noinfo_noreturn |
| 495 | _invoke_watson | 495 | _invoke_watson |
| 496 | #if !defined(DEF_DEBUG) || !defined(DEF_ARM64) | 496 | #if !defined(DEF_DEBUG) || !defined(__aarch64__) |
| 497 | ; symbol _is_exception_typeof is available in all versions except ARM64 ucrtbased.dll | 497 | ; symbol _is_exception_typeof is available in all versions except ARM64 ucrtbased.dll |
| 498 | _is_exception_typeof | 498 | _is_exception_typeof |
| 499 | #endif | 499 | #endif |
| ... | @@ -1433,7 +1433,7 @@ _o__strtof_l | ... | @@ -1433,7 +1433,7 @@ _o__strtof_l |
| 1433 | _o__strtoi64 | 1433 | _o__strtoi64 |
| 1434 | _o__strtoi64_l | 1434 | _o__strtoi64_l |
| 1435 | _o__strtol_l | 1435 | _o__strtol_l |
| 1436 | F_ARM_ANY(_o__strtold_l) ; Can't use long double functions from the CRT on x86 | 1436 | F_LD64(_o__strtold_l) ; Can't use long double functions from the CRT on x86 |
| 1437 | _o__strtoll_l | 1437 | _o__strtoll_l |
| 1438 | _o__strtoui64 | 1438 | _o__strtoui64 |
| 1439 | _o__strtoui64_l | 1439 | _o__strtoui64_l |
| ... | @@ -1513,7 +1513,7 @@ _o__wcstof_l | ... | @@ -1513,7 +1513,7 @@ _o__wcstof_l |
| 1513 | _o__wcstoi64 | 1513 | _o__wcstoi64 |
| 1514 | _o__wcstoi64_l | 1514 | _o__wcstoi64_l |
| 1515 | _o__wcstol_l | 1515 | _o__wcstol_l |
| 1516 | F_ARM_ANY(_o__wcstold_l) ; Can't use long double functions from the CRT on x86 | 1516 | F_LD64(_o__wcstold_l) ; Can't use long double functions from the CRT on x86 |
| 1517 | _o__wcstoll_l | 1517 | _o__wcstoll_l |
| 1518 | _o__wcstombs_l | 1518 | _o__wcstombs_l |
| 1519 | _o__wcstombs_s_l | 1519 | _o__wcstombs_s_l |
| ... | @@ -1611,21 +1611,21 @@ _o_acos | ... | @@ -1611,21 +1611,21 @@ _o_acos |
| 1611 | F_NON_I386(_o_acosf) | 1611 | F_NON_I386(_o_acosf) |
| 1612 | _o_acosh | 1612 | _o_acosh |
| 1613 | _o_acoshf | 1613 | _o_acoshf |
| 1614 | F_ARM_ANY(_o_acoshl) ; Can't use long double functions from the CRT on x86 | 1614 | F_LD64(_o_acoshl) ; Can't use long double functions from the CRT on x86 |
| 1615 | _o_asctime | 1615 | _o_asctime |
| 1616 | _o_asctime_s | 1616 | _o_asctime_s |
| 1617 | _o_asin | 1617 | _o_asin |
| 1618 | F_NON_I386(_o_asinf) | 1618 | F_NON_I386(_o_asinf) |
| 1619 | _o_asinh | 1619 | _o_asinh |
| 1620 | _o_asinhf | 1620 | _o_asinhf |
| 1621 | F_ARM_ANY(_o_asinhl) ; Can't use long double functions from the CRT on x86 | 1621 | F_LD64(_o_asinhl) ; Can't use long double functions from the CRT on x86 |
| 1622 | _o_atan | 1622 | _o_atan |
| 1623 | _o_atan2 | 1623 | _o_atan2 |
| 1624 | F_NON_I386(_o_atan2f) | 1624 | F_NON_I386(_o_atan2f) |
| 1625 | F_NON_I386(_o_atanf) | 1625 | F_NON_I386(_o_atanf) |
| 1626 | _o_atanh | 1626 | _o_atanh |
| 1627 | _o_atanhf | 1627 | _o_atanhf |
| 1628 | F_ARM_ANY(_o_atanhl) ; Can't use long double functions from the CRT on x86 | 1628 | F_LD64(_o_atanhl) ; Can't use long double functions from the CRT on x86 |
| 1629 | _o_atof | 1629 | _o_atof |
| 1630 | _o_atoi | 1630 | _o_atoi |
| 1631 | _o_atol | 1631 | _o_atol |
| ... | @@ -1647,13 +1647,13 @@ F_NON_I386(_o_coshf) | ... | @@ -1647,13 +1647,13 @@ F_NON_I386(_o_coshf) |
| 1647 | _o_erf | 1647 | _o_erf |
| 1648 | _o_erfc | 1648 | _o_erfc |
| 1649 | _o_erfcf | 1649 | _o_erfcf |
| 1650 | F_ARM_ANY(_o_erfcl) ; Can't use long double functions from the CRT on x86 | 1650 | F_LD64(_o_erfcl) ; Can't use long double functions from the CRT on x86 |
| 1651 | _o_erff | 1651 | _o_erff |
| 1652 | F_ARM_ANY(_o_erfl) ; Can't use long double functions from the CRT on x86 | 1652 | F_LD64(_o_erfl) ; Can't use long double functions from the CRT on x86 |
| 1653 | _o_exp | 1653 | _o_exp |
| 1654 | _o_exp2 | 1654 | _o_exp2 |
| 1655 | _o_exp2f | 1655 | _o_exp2f |
| 1656 | F_ARM_ANY(_o_exp2l) ; Can't use long double functions from the CRT on x86 | 1656 | F_LD64(_o_exp2l) ; Can't use long double functions from the CRT on x86 |
| 1657 | F_NON_I386(_o_expf) | 1657 | F_NON_I386(_o_expf) |
| 1658 | _o_fabs | 1658 | _o_fabs |
| 1659 | F_ARM_ANY(_o_fabsf) | 1659 | F_ARM_ANY(_o_fabsf) |
| ... | @@ -1670,7 +1670,7 @@ _o_floor | ... | @@ -1670,7 +1670,7 @@ _o_floor |
| 1670 | F_NON_I386(_o_floorf) | 1670 | F_NON_I386(_o_floorf) |
| 1671 | _o_fma | 1671 | _o_fma |
| 1672 | _o_fmaf | 1672 | _o_fmaf |
| 1673 | F_ARM_ANY(_o_fmal) ; Can't use long double functions from the CRT on x86 | 1673 | F_LD64(_o_fmal) ; Can't use long double functions from the CRT on x86 |
| 1674 | _o_fmod | 1674 | _o_fmod |
| 1675 | F_NON_I386(_o_fmodf) | 1675 | F_NON_I386(_o_fmodf) |
| 1676 | _o_fopen | 1676 | _o_fopen |
| ... | @@ -1729,33 +1729,33 @@ _o_isxdigit | ... | @@ -1729,33 +1729,33 @@ _o_isxdigit |
| 1729 | _o_ldexp | 1729 | _o_ldexp |
| 1730 | _o_lgamma | 1730 | _o_lgamma |
| 1731 | _o_lgammaf | 1731 | _o_lgammaf |
| 1732 | F_ARM_ANY(_o_lgammal) ; Can't use long double functions from the CRT on x86 | 1732 | F_LD64(_o_lgammal) ; Can't use long double functions from the CRT on x86 |
| 1733 | _o_llrint | 1733 | _o_llrint |
| 1734 | _o_llrintf | 1734 | _o_llrintf |
| 1735 | F_ARM_ANY(_o_llrintl) ; Can't use long double functions from the CRT on x86 | 1735 | F_LD64(_o_llrintl) ; Can't use long double functions from the CRT on x86 |
| 1736 | _o_llround | 1736 | _o_llround |
| 1737 | _o_llroundf | 1737 | _o_llroundf |
| 1738 | F_ARM_ANY(_o_llroundl) ; Can't use long double functions from the CRT on x86 | 1738 | F_LD64(_o_llroundl) ; Can't use long double functions from the CRT on x86 |
| 1739 | _o_localeconv | 1739 | _o_localeconv |
| 1740 | _o_log | 1740 | _o_log |
| 1741 | _o_log10 | 1741 | _o_log10 |
| 1742 | F_NON_I386(_o_log10f) | 1742 | F_NON_I386(_o_log10f) |
| 1743 | _o_log1p | 1743 | _o_log1p |
| 1744 | _o_log1pf | 1744 | _o_log1pf |
| 1745 | F_ARM_ANY(_o_log1pl) ; Can't use long double functions from the CRT on x86 | 1745 | F_LD64(_o_log1pl) ; Can't use long double functions from the CRT on x86 |
| 1746 | _o_log2 | 1746 | _o_log2 |
| 1747 | _o_log2f | 1747 | _o_log2f |
| 1748 | F_ARM_ANY(_o_log2l) ; Can't use long double functions from the CRT on x86 | 1748 | F_LD64(_o_log2l) ; Can't use long double functions from the CRT on x86 |
| 1749 | _o_logb | 1749 | _o_logb |
| 1750 | _o_logbf | 1750 | _o_logbf |
| 1751 | F_ARM_ANY(_o_logbl) ; Can't use long double functions from the CRT on x86 | 1751 | F_LD64(_o_logbl) ; Can't use long double functions from the CRT on x86 |
| 1752 | F_NON_I386(_o_logf) | 1752 | F_NON_I386(_o_logf) |
| 1753 | _o_lrint | 1753 | _o_lrint |
| 1754 | _o_lrintf | 1754 | _o_lrintf |
| 1755 | F_ARM_ANY(_o_lrintl) ; Can't use long double functions from the CRT on x86 | 1755 | F_LD64(_o_lrintl) ; Can't use long double functions from the CRT on x86 |
| 1756 | _o_lround | 1756 | _o_lround |
| 1757 | _o_lroundf | 1757 | _o_lroundf |
| 1758 | F_ARM_ANY(_o_lroundl) ; Can't use long double functions from the CRT on x86 | 1758 | F_LD64(_o_lroundl) ; Can't use long double functions from the CRT on x86 |
| 1759 | _o_malloc | 1759 | _o_malloc |
| 1760 | _o_mblen | 1760 | _o_mblen |
| 1761 | _o_mbrlen | 1761 | _o_mbrlen |
| ... | @@ -1772,16 +1772,16 @@ _o_modf | ... | @@ -1772,16 +1772,16 @@ _o_modf |
| 1772 | F_NON_I386(_o_modff) | 1772 | F_NON_I386(_o_modff) |
| 1773 | _o_nan | 1773 | _o_nan |
| 1774 | _o_nanf | 1774 | _o_nanf |
| 1775 | F_ARM_ANY(_o_nanl) ; Can't use long double functions from the CRT on x86 | 1775 | F_LD64(_o_nanl) ; Can't use long double functions from the CRT on x86 |
| 1776 | _o_nearbyint | 1776 | _o_nearbyint |
| 1777 | _o_nearbyintf | 1777 | _o_nearbyintf |
| 1778 | F_ARM_ANY(_o_nearbyintl) ; Can't use long double functions from the CRT on x86 | 1778 | F_LD64(_o_nearbyintl) ; Can't use long double functions from the CRT on x86 |
| 1779 | _o_nextafter | 1779 | _o_nextafter |
| 1780 | _o_nextafterf | 1780 | _o_nextafterf |
| 1781 | F_ARM_ANY(_o_nextafterl) ; Can't use long double functions from the CRT on x86 | 1781 | F_LD64(_o_nextafterl) ; Can't use long double functions from the CRT on x86 |
| 1782 | F_ARM_ANY(_o_nexttoward) ; Can't use long double functions from the CRT on x86 | 1782 | F_LD64(_o_nexttoward) ; Can't use long double functions from the CRT on x86 |
| 1783 | F_ARM_ANY(_o_nexttowardf) ; Can't use long double functions from the CRT on x86 | 1783 | F_LD64(_o_nexttowardf) ; Can't use long double functions from the CRT on x86 |
| 1784 | F_ARM_ANY(_o_nexttowardl) ; Can't use long double functions from the CRT on x86 | 1784 | F_LD64(_o_nexttowardl) ; Can't use long double functions from the CRT on x86 |
| 1785 | _o_pow | 1785 | _o_pow |
| 1786 | _o_powf | 1786 | _o_powf |
| 1787 | _o_putc | 1787 | _o_putc |
| ... | @@ -1797,24 +1797,24 @@ _o_rand_s | ... | @@ -1797,24 +1797,24 @@ _o_rand_s |
| 1797 | _o_realloc | 1797 | _o_realloc |
| 1798 | _o_remainder | 1798 | _o_remainder |
| 1799 | _o_remainderf | 1799 | _o_remainderf |
| 1800 | F_ARM_ANY(_o_remainderl) ; Can't use long double functions from the CRT on x86 | 1800 | F_LD64(_o_remainderl) ; Can't use long double functions from the CRT on x86 |
| 1801 | _o_remove | 1801 | _o_remove |
| 1802 | _o_remquo | 1802 | _o_remquo |
| 1803 | _o_remquof | 1803 | _o_remquof |
| 1804 | F_ARM_ANY(_o_remquol) ; Can't use long double functions from the CRT on x86 | 1804 | F_LD64(_o_remquol) ; Can't use long double functions from the CRT on x86 |
| 1805 | _o_rewind | 1805 | _o_rewind |
| 1806 | _o_rint | 1806 | _o_rint |
| 1807 | _o_rintf | 1807 | _o_rintf |
| 1808 | F_ARM_ANY(_o_rintl) ; Can't use long double functions from the CRT on x86 | 1808 | F_LD64(_o_rintl) ; Can't use long double functions from the CRT on x86 |
| 1809 | _o_round | 1809 | _o_round |
| 1810 | _o_roundf | 1810 | _o_roundf |
| 1811 | F_ARM_ANY(_o_roundl) ; Can't use long double functions from the CRT on x86 | 1811 | F_LD64(_o_roundl) ; Can't use long double functions from the CRT on x86 |
| 1812 | _o_scalbln | 1812 | _o_scalbln |
| 1813 | _o_scalblnf | 1813 | _o_scalblnf |
| 1814 | F_ARM_ANY(_o_scalblnl) ; Can't use long double functions from the CRT on x86 | 1814 | F_LD64(_o_scalblnl) ; Can't use long double functions from the CRT on x86 |
| 1815 | _o_scalbn | 1815 | _o_scalbn |
| 1816 | _o_scalbnf | 1816 | _o_scalbnf |
| 1817 | F_ARM_ANY(_o_scalbnl) ; Can't use long double functions from the CRT on x86 | 1817 | F_LD64(_o_scalbnl) ; Can't use long double functions from the CRT on x86 |
| 1818 | _o_set_terminate | 1818 | _o_set_terminate |
| 1819 | _o_setbuf | 1819 | _o_setbuf |
| 1820 | _o_setvbuf | 1820 | _o_setvbuf |
| ... | @@ -1838,7 +1838,7 @@ _o_strtof | ... | @@ -1838,7 +1838,7 @@ _o_strtof |
| 1838 | _o_strtok | 1838 | _o_strtok |
| 1839 | _o_strtok_s | 1839 | _o_strtok_s |
| 1840 | _o_strtol | 1840 | _o_strtol |
| 1841 | F_ARM_ANY(_o_strtold) ; Can't use long double functions from the CRT on x86 | 1841 | F_LD64(_o_strtold) ; Can't use long double functions from the CRT on x86 |
| 1842 | _o_strtoll | 1842 | _o_strtoll |
| 1843 | _o_strtoul | 1843 | _o_strtoul |
| 1844 | _o_strtoull | 1844 | _o_strtoull |
| ... | @@ -1850,7 +1850,7 @@ F_NON_I386(_o_tanhf) | ... | @@ -1850,7 +1850,7 @@ F_NON_I386(_o_tanhf) |
| 1850 | _o_terminate | 1850 | _o_terminate |
| 1851 | _o_tgamma | 1851 | _o_tgamma |
| 1852 | _o_tgammaf | 1852 | _o_tgammaf |
| 1853 | F_ARM_ANY(_o_tgammal) ; Can't use long double functions from the CRT on x86 | 1853 | F_LD64(_o_tgammal) ; Can't use long double functions from the CRT on x86 |
| 1854 | _o_tmpfile_s | 1854 | _o_tmpfile_s |
| 1855 | _o_tmpnam_s | 1855 | _o_tmpnam_s |
| 1856 | _o_tolower | 1856 | _o_tolower |
| ... | @@ -1875,7 +1875,7 @@ _o_wcstof | ... | @@ -1875,7 +1875,7 @@ _o_wcstof |
| 1875 | _o_wcstok | 1875 | _o_wcstok |
| 1876 | _o_wcstok_s | 1876 | _o_wcstok_s |
| 1877 | _o_wcstol | 1877 | _o_wcstol |
| 1878 | F_ARM_ANY(_o_wcstold) ; Can't use long double functions from the CRT on x86 | 1878 | F_LD64(_o_wcstold) ; Can't use long double functions from the CRT on x86 |
| 1879 | _o_wcstoll | 1879 | _o_wcstoll |
| 1880 | _o_wcstombs | 1880 | _o_wcstombs |
| 1881 | _o_wcstombs_s | 1881 | _o_wcstombs_s |
| ... | @@ -2004,7 +2004,7 @@ _strtoi64 | ... | @@ -2004,7 +2004,7 @@ _strtoi64 |
| 2004 | _strtoi64_l | 2004 | _strtoi64_l |
| 2005 | _strtoimax_l | 2005 | _strtoimax_l |
| 2006 | _strtol_l | 2006 | _strtol_l |
| 2007 | F_ARM_ANY(_strtold_l) ; Can't use long double functions from the CRT on x86 | 2007 | F_LD64(_strtold_l) ; Can't use long double functions from the CRT on x86 |
| 2008 | _strtoll_l | 2008 | _strtoll_l |
| 2009 | _strtoui64 | 2009 | _strtoui64 |
| 2010 | _strtoui64_l | 2010 | _strtoui64_l |
| ... | @@ -2094,7 +2094,7 @@ _wcstoi64 | ... | @@ -2094,7 +2094,7 @@ _wcstoi64 |
| 2094 | _wcstoi64_l | 2094 | _wcstoi64_l |
| 2095 | _wcstoimax_l | 2095 | _wcstoimax_l |
| 2096 | _wcstol_l | 2096 | _wcstol_l |
| 2097 | F_ARM_ANY(_wcstold_l) ; Can't use long double functions from the CRT on x86 | 2097 | F_LD64(_wcstold_l) ; Can't use long double functions from the CRT on x86 |
| 2098 | _wcstoll_l | 2098 | _wcstoll_l |
| 2099 | _wcstombs_l | 2099 | _wcstombs_l |
| 2100 | _wcstombs_s_l | 2100 | _wcstombs_s_l |
| ... | @@ -2212,21 +2212,21 @@ acos | ... | @@ -2212,21 +2212,21 @@ acos |
| 2212 | F_NON_I386(acosf) | 2212 | F_NON_I386(acosf) |
| 2213 | acosh | 2213 | acosh |
| 2214 | acoshf | 2214 | acoshf |
| 2215 | F_ARM_ANY(acoshl) ; Can't use long double functions from the CRT on x86 | 2215 | F_LD64(acoshl) ; Can't use long double functions from the CRT on x86 |
| 2216 | asctime | 2216 | asctime |
| 2217 | asctime_s | 2217 | asctime_s |
| 2218 | asin | 2218 | asin |
| 2219 | F_NON_I386(asinf) | 2219 | F_NON_I386(asinf) |
| 2220 | asinh | 2220 | asinh |
| 2221 | asinhf | 2221 | asinhf |
| 2222 | F_ARM_ANY(asinhl) ; Can't use long double functions from the CRT on x86 | 2222 | F_LD64(asinhl) ; Can't use long double functions from the CRT on x86 |
| 2223 | atan | 2223 | atan |
| 2224 | atan2 | 2224 | atan2 |
| 2225 | F_NON_I386(atan2f) | 2225 | F_NON_I386(atan2f) |
| 2226 | F_NON_I386(atanf) | 2226 | F_NON_I386(atanf) |
| 2227 | atanh | 2227 | atanh |
| 2228 | atanhf | 2228 | atanhf |
| 2229 | F_ARM_ANY(atanhl) ; Can't use long double functions from the CRT on x86 | 2229 | F_LD64(atanhl) ; Can't use long double functions from the CRT on x86 |
| 2230 | atof | 2230 | atof |
| 2231 | atoi | 2231 | atoi |
| 2232 | atol | 2232 | atol |
| ... | @@ -2238,111 +2238,111 @@ c16rtomb | ... | @@ -2238,111 +2238,111 @@ c16rtomb |
| 2238 | c32rtomb | 2238 | c32rtomb |
| 2239 | cabs | 2239 | cabs |
| 2240 | cabsf | 2240 | cabsf |
| 2241 | F_ARM_ANY(cabsl) ; Can't use long double functions from the CRT on x86 | 2241 | F_LD64(cabsl) ; Can't use long double functions from the CRT on x86 |
| 2242 | cacos | 2242 | cacos |
| 2243 | cacosf | 2243 | cacosf |
| 2244 | cacosh | 2244 | cacosh |
| 2245 | cacoshf | 2245 | cacoshf |
| 2246 | F_ARM_ANY(cacoshl) ; Can't use long double functions from the CRT on x86 | 2246 | F_LD64(cacoshl) ; Can't use long double functions from the CRT on x86 |
| 2247 | F_ARM_ANY(cacosl) ; Can't use long double functions from the CRT on x86 | 2247 | F_LD64(cacosl) ; Can't use long double functions from the CRT on x86 |
| 2248 | calloc | 2248 | calloc |
| 2249 | carg | 2249 | carg |
| 2250 | cargf | 2250 | cargf |
| 2251 | F_ARM_ANY(cargl) ; Can't use long double functions from the CRT on x86 | 2251 | F_LD64(cargl) ; Can't use long double functions from the CRT on x86 |
| 2252 | casin | 2252 | casin |
| 2253 | casinf | 2253 | casinf |
| 2254 | casinh | 2254 | casinh |
| 2255 | casinhf | 2255 | casinhf |
| 2256 | F_ARM_ANY(casinhl) ; Can't use long double functions from the CRT on x86 | 2256 | F_LD64(casinhl) ; Can't use long double functions from the CRT on x86 |
| 2257 | F_ARM_ANY(casinl) ; Can't use long double functions from the CRT on x86 | 2257 | F_LD64(casinl) ; Can't use long double functions from the CRT on x86 |
| 2258 | catan | 2258 | catan |
| 2259 | catanf | 2259 | catanf |
| 2260 | catanh | 2260 | catanh |
| 2261 | catanhf | 2261 | catanhf |
| 2262 | F_ARM_ANY(catanhl) ; Can't use long double functions from the CRT on x86 | 2262 | F_LD64(catanhl) ; Can't use long double functions from the CRT on x86 |
| 2263 | F_ARM_ANY(catanl) ; Can't use long double functions from the CRT on x86 | 2263 | F_LD64(catanl) ; Can't use long double functions from the CRT on x86 |
| 2264 | cbrt | 2264 | cbrt |
| 2265 | cbrtf | 2265 | cbrtf |
| 2266 | F_ARM_ANY(cbrtl) ; Can't use long double functions from the CRT on x86 | 2266 | F_LD64(cbrtl) ; Can't use long double functions from the CRT on x86 |
| 2267 | ccos | 2267 | ccos |
| 2268 | ccosf | 2268 | ccosf |
| 2269 | ccosh | 2269 | ccosh |
| 2270 | ccoshf | 2270 | ccoshf |
| 2271 | F_ARM_ANY(ccoshl) ; Can't use long double functions from the CRT on x86 | 2271 | F_LD64(ccoshl) ; Can't use long double functions from the CRT on x86 |
| 2272 | F_ARM_ANY(ccosl) ; Can't use long double functions from the CRT on x86 | 2272 | F_LD64(ccosl) ; Can't use long double functions from the CRT on x86 |
| 2273 | ceil | 2273 | ceil |
| 2274 | F_NON_I386(ceilf) | 2274 | F_NON_I386(ceilf) |
| 2275 | cexp | 2275 | cexp |
| 2276 | cexpf | 2276 | cexpf |
| 2277 | F_ARM_ANY(cexpl) ; Can't use long double functions from the CRT on x86 | 2277 | F_LD64(cexpl) ; Can't use long double functions from the CRT on x86 |
| 2278 | cimag | 2278 | cimag |
| 2279 | cimagf | 2279 | cimagf |
| 2280 | F_ARM_ANY(cimagl) ; Can't use long double functions from the CRT on x86 | 2280 | F_LD64(cimagl) ; Can't use long double functions from the CRT on x86 |
| 2281 | clearerr | 2281 | clearerr |
| 2282 | clearerr_s | 2282 | clearerr_s |
| 2283 | clock | 2283 | clock |
| 2284 | clog | 2284 | clog |
| 2285 | clog10 | 2285 | clog10 |
| 2286 | clog10f | 2286 | clog10f |
| 2287 | F_ARM_ANY(clog10l) ; Can't use long double functions from the CRT on x86 | 2287 | F_LD64(clog10l) ; Can't use long double functions from the CRT on x86 |
| 2288 | clogf | 2288 | clogf |
| 2289 | F_ARM_ANY(clogl) ; Can't use long double functions from the CRT on x86 | 2289 | F_LD64(clogl) ; Can't use long double functions from the CRT on x86 |
| 2290 | conj | 2290 | conj |
| 2291 | conjf | 2291 | conjf |
| 2292 | F_ARM_ANY(conjl) ; Can't use long double functions from the CRT on x86 | 2292 | F_LD64(conjl) ; Can't use long double functions from the CRT on x86 |
| 2293 | copysign | 2293 | copysign |
| 2294 | copysignf | 2294 | copysignf |
| 2295 | F_ARM_ANY(copysignl) ; Can't use long double functions from the CRT on x86 | 2295 | F_LD64(copysignl) ; Can't use long double functions from the CRT on x86 |
| 2296 | cos | 2296 | cos |
| 2297 | F_NON_I386(cosf) | 2297 | F_NON_I386(cosf) |
| 2298 | cosh | 2298 | cosh |
| 2299 | F_NON_I386(coshf) | 2299 | F_NON_I386(coshf) |
| 2300 | cpow | 2300 | cpow |
| 2301 | cpowf | 2301 | cpowf |
| 2302 | F_ARM_ANY(cpowl) ; Can't use long double functions from the CRT on x86 | 2302 | F_LD64(cpowl) ; Can't use long double functions from the CRT on x86 |
| 2303 | cproj | 2303 | cproj |
| 2304 | cprojf | 2304 | cprojf |
| 2305 | F_ARM_ANY(cprojl) ; Can't use long double functions from the CRT on x86 | 2305 | F_LD64(cprojl) ; Can't use long double functions from the CRT on x86 |
| 2306 | creal | 2306 | creal |
| 2307 | crealf | 2307 | crealf |
| 2308 | F_ARM_ANY(creall) ; Can't use long double functions from the CRT on x86 | 2308 | F_LD64(creall) ; Can't use long double functions from the CRT on x86 |
| 2309 | csin | 2309 | csin |
| 2310 | csinf | 2310 | csinf |
| 2311 | csinh | 2311 | csinh |
| 2312 | csinhf | 2312 | csinhf |
| 2313 | F_ARM_ANY(csinhl) ; Can't use long double functions from the CRT on x86 | 2313 | F_LD64(csinhl) ; Can't use long double functions from the CRT on x86 |
| 2314 | F_ARM_ANY(csinl) ; Can't use long double functions from the CRT on x86 | 2314 | F_LD64(csinl) ; Can't use long double functions from the CRT on x86 |
| 2315 | csqrt | 2315 | csqrt |
| 2316 | csqrtf | 2316 | csqrtf |
| 2317 | F_ARM_ANY(csqrtl) ; Can't use long double functions from the CRT on x86 | 2317 | F_LD64(csqrtl) ; Can't use long double functions from the CRT on x86 |
| 2318 | ctan | 2318 | ctan |
| 2319 | ctanf | 2319 | ctanf |
| 2320 | ctanh | 2320 | ctanh |
| 2321 | ctanhf | 2321 | ctanhf |
| 2322 | F_ARM_ANY(ctanhl) ; Can't use long double functions from the CRT on x86 | 2322 | F_LD64(ctanhl) ; Can't use long double functions from the CRT on x86 |
| 2323 | F_ARM_ANY(ctanl) ; Can't use long double functions from the CRT on x86 | 2323 | F_LD64(ctanl) ; Can't use long double functions from the CRT on x86 |
| 2324 | div | 2324 | div |
| 2325 | erf | 2325 | erf |
| 2326 | erfc | 2326 | erfc |
| 2327 | erfcf | 2327 | erfcf |
| 2328 | F_ARM_ANY(erfcl) ; Can't use long double functions from the CRT on x86 | 2328 | F_LD64(erfcl) ; Can't use long double functions from the CRT on x86 |
| 2329 | erff | 2329 | erff |
| 2330 | F_ARM_ANY(erfl) ; Can't use long double functions from the CRT on x86 | 2330 | F_LD64(erfl) ; Can't use long double functions from the CRT on x86 |
| 2331 | exit | 2331 | exit |
| 2332 | exp | 2332 | exp |
| 2333 | exp2 | 2333 | exp2 |
| 2334 | exp2f | 2334 | exp2f |
| 2335 | F_ARM_ANY(exp2l) ; Can't use long double functions from the CRT on x86 | 2335 | F_LD64(exp2l) ; Can't use long double functions from the CRT on x86 |
| 2336 | F_NON_I386(expf) | 2336 | F_NON_I386(expf) |
| 2337 | expm1 | 2337 | expm1 |
| 2338 | expm1f | 2338 | expm1f |
| 2339 | F_ARM_ANY(expm1l) ; Can't use long double functions from the CRT on x86 | 2339 | F_LD64(expm1l) ; Can't use long double functions from the CRT on x86 |
| 2340 | fabs | 2340 | fabs |
| 2341 | F_ARM_ANY(fabsf) | 2341 | F_ARM_ANY(fabsf) |
| 2342 | fclose | 2342 | fclose |
| 2343 | fdim | 2343 | fdim |
| 2344 | fdimf | 2344 | fdimf |
| 2345 | F_ARM_ANY(fdiml) ; Can't use long double functions from the CRT on x86 | 2345 | F_LD64(fdiml) ; Can't use long double functions from the CRT on x86 |
| 2346 | ; Don't use the float env functions from UCRT; fesetround doesn't seem to have | 2346 | ; Don't use the float env functions from UCRT; fesetround doesn't seem to have |
| 2347 | ; any effect on the FPU control word as required by other libmingwex math | 2347 | ; any effect on the FPU control word as required by other libmingwex math |
| 2348 | ; routines. | 2348 | ; routines. |
| ... | @@ -2367,13 +2367,13 @@ floor | ... | @@ -2367,13 +2367,13 @@ floor |
| 2367 | F_NON_I386(floorf) | 2367 | F_NON_I386(floorf) |
| 2368 | fma | 2368 | fma |
| 2369 | fmaf | 2369 | fmaf |
| 2370 | F_ARM_ANY(fmal) ; Can't use long double functions from the CRT on x86 | 2370 | F_LD64(fmal) ; Can't use long double functions from the CRT on x86 |
| 2371 | fmax | 2371 | fmax |
| 2372 | fmaxf | 2372 | fmaxf |
| 2373 | F_ARM_ANY(fmaxl) ; Can't use long double functions from the CRT on x86 | 2373 | F_LD64(fmaxl) ; Can't use long double functions from the CRT on x86 |
| 2374 | fmin | 2374 | fmin |
| 2375 | fminf | 2375 | fminf |
| 2376 | F_ARM_ANY(fminl) ; Can't use long double functions from the CRT on x86 | 2376 | F_LD64(fminl) ; Can't use long double functions from the CRT on x86 |
| 2377 | fmod | 2377 | fmod |
| 2378 | F_NON_I386(fmodf) | 2378 | F_NON_I386(fmodf) |
| 2379 | fopen | 2379 | fopen |
| ... | @@ -2403,7 +2403,7 @@ getwchar | ... | @@ -2403,7 +2403,7 @@ getwchar |
| 2403 | hypot | 2403 | hypot |
| 2404 | ilogb | 2404 | ilogb |
| 2405 | ilogbf | 2405 | ilogbf |
| 2406 | F_ARM_ANY(ilogbl) ; Can't use long double functions from the CRT on x86 | 2406 | F_LD64(ilogbl) ; Can't use long double functions from the CRT on x86 |
| 2407 | imaxabs | 2407 | imaxabs |
| 2408 | imaxdiv | 2408 | imaxdiv |
| 2409 | is_wctype | 2409 | is_wctype |
| ... | @@ -2441,36 +2441,36 @@ ldiv | ... | @@ -2441,36 +2441,36 @@ ldiv |
| 2441 | ; the mingw ones do. Therefore prefer the libmingwex version instead. | 2441 | ; the mingw ones do. Therefore prefer the libmingwex version instead. |
| 2442 | lgamma DATA | 2442 | lgamma DATA |
| 2443 | lgammaf DATA | 2443 | lgammaf DATA |
| 2444 | F_ARM_ANY(lgammal DATA) ; Can't use long double functions from the CRT on x86 | 2444 | F_LD64(lgammal DATA) ; Can't use long double functions from the CRT on x86 |
| 2445 | llabs | 2445 | llabs |
| 2446 | lldiv | 2446 | lldiv |
| 2447 | llrint | 2447 | llrint |
| 2448 | llrintf | 2448 | llrintf |
| 2449 | F_ARM_ANY(llrintl) ; Can't use long double functions from the CRT on x86 | 2449 | F_LD64(llrintl) ; Can't use long double functions from the CRT on x86 |
| 2450 | llround | 2450 | llround |
| 2451 | llroundf | 2451 | llroundf |
| 2452 | F_ARM_ANY(llroundl) ; Can't use long double functions from the CRT on x86 | 2452 | F_LD64(llroundl) ; Can't use long double functions from the CRT on x86 |
| 2453 | localeconv | 2453 | localeconv |
| 2454 | log | 2454 | log |
| 2455 | log10 | 2455 | log10 |
| 2456 | F_NON_I386(log10f) | 2456 | F_NON_I386(log10f) |
| 2457 | log1p | 2457 | log1p |
| 2458 | log1pf | 2458 | log1pf |
| 2459 | F_ARM_ANY(log1pl) ; Can't use long double functions from the CRT on x86 | 2459 | F_LD64(log1pl) ; Can't use long double functions from the CRT on x86 |
| 2460 | log2 | 2460 | log2 |
| 2461 | log2f | 2461 | log2f |
| 2462 | F_ARM_ANY(log2l) ; Can't use long double functions from the CRT on x86 | 2462 | F_LD64(log2l) ; Can't use long double functions from the CRT on x86 |
| 2463 | logb | 2463 | logb |
| 2464 | logbf | 2464 | logbf |
| 2465 | F_ARM_ANY(logbl) ; Can't use long double functions from the CRT on x86 | 2465 | F_LD64(logbl) ; Can't use long double functions from the CRT on x86 |
| 2466 | F_NON_I386(logf) | 2466 | F_NON_I386(logf) |
| 2467 | longjmp | 2467 | longjmp |
| 2468 | lrint | 2468 | lrint |
| 2469 | lrintf | 2469 | lrintf |
| 2470 | F_ARM_ANY(lrintl) ; Can't use long double functions from the CRT on x86 | 2470 | F_LD64(lrintl) ; Can't use long double functions from the CRT on x86 |
| 2471 | lround | 2471 | lround |
| 2472 | lroundf | 2472 | lroundf |
| 2473 | F_ARM_ANY(lroundl) ; Can't use long double functions from the CRT on x86 | 2473 | F_LD64(lroundl) ; Can't use long double functions from the CRT on x86 |
| 2474 | malloc | 2474 | malloc |
| 2475 | mblen | 2475 | mblen |
| 2476 | mbrlen | 2476 | mbrlen |
| ... | @@ -2493,18 +2493,18 @@ modf | ... | @@ -2493,18 +2493,18 @@ modf |
| 2493 | F_NON_I386(modff) | 2493 | F_NON_I386(modff) |
| 2494 | nan | 2494 | nan |
| 2495 | nanf | 2495 | nanf |
| 2496 | F_ARM_ANY(nanl) ; Can't use long double functions from the CRT on x86 | 2496 | F_LD64(nanl) ; Can't use long double functions from the CRT on x86 |
| 2497 | nearbyint | 2497 | nearbyint |
| 2498 | nearbyintf | 2498 | nearbyintf |
| 2499 | F_ARM_ANY(nearbyintl) ; Can't use long double functions from the CRT on x86 | 2499 | F_LD64(nearbyintl) ; Can't use long double functions from the CRT on x86 |
| 2500 | nextafter | 2500 | nextafter |
| 2501 | nextafterf | 2501 | nextafterf |
| 2502 | F_ARM_ANY(nextafterl) ; Can't use long double functions from the CRT on x86 | 2502 | F_LD64(nextafterl) ; Can't use long double functions from the CRT on x86 |
| 2503 | ; All of the nexttoward functions take the second parameter as long double, | 2503 | ; All of the nexttoward functions take the second parameter as long double, |
| 2504 | ; making them unusable for x86. | 2504 | ; making them unusable for x86. |
| 2505 | F_ARM_ANY(nexttoward) ; Can't use long double functions from the CRT on x86 | 2505 | F_LD64(nexttoward) ; Can't use long double functions from the CRT on x86 |
| 2506 | F_ARM_ANY(nexttowardf) ; Can't use long double functions from the CRT on x86 | 2506 | F_LD64(nexttowardf) ; Can't use long double functions from the CRT on x86 |
| 2507 | F_ARM_ANY(nexttowardl) ; Can't use long double functions from the CRT on x86 | 2507 | F_LD64(nexttowardl) ; Can't use long double functions from the CRT on x86 |
| 2508 | norm | 2508 | norm |
| 2509 | normf | 2509 | normf |
| 2510 | norml | 2510 | norml |
| ... | @@ -2525,25 +2525,25 @@ rand_s | ... | @@ -2525,25 +2525,25 @@ rand_s |
| 2525 | realloc | 2525 | realloc |
| 2526 | remainder | 2526 | remainder |
| 2527 | remainderf | 2527 | remainderf |
| 2528 | F_ARM_ANY(remainderl) ; Can't use long double functions from the CRT on x86 | 2528 | F_LD64(remainderl) ; Can't use long double functions from the CRT on x86 |
| 2529 | remove | 2529 | remove |
| 2530 | remquo | 2530 | remquo |
| 2531 | remquof | 2531 | remquof |
| 2532 | F_ARM_ANY(remquol) ; Can't use long double functions from the CRT on x86 | 2532 | F_LD64(remquol) ; Can't use long double functions from the CRT on x86 |
| 2533 | rename | 2533 | rename |
| 2534 | rewind | 2534 | rewind |
| 2535 | rint | 2535 | rint |
| 2536 | rintf | 2536 | rintf |
| 2537 | F_ARM_ANY(rintl) ; Can't use long double functions from the CRT on x86 | 2537 | F_LD64(rintl) ; Can't use long double functions from the CRT on x86 |
| 2538 | round | 2538 | round |
| 2539 | roundf | 2539 | roundf |
| 2540 | F_ARM_ANY(roundl) ; Can't use long double functions from the CRT on x86 | 2540 | F_LD64(roundl) ; Can't use long double functions from the CRT on x86 |
| 2541 | scalbln | 2541 | scalbln |
| 2542 | scalblnf | 2542 | scalblnf |
| 2543 | F_ARM_ANY(scalblnl) ; Can't use long double functions from the CRT on x86 | 2543 | F_LD64(scalblnl) ; Can't use long double functions from the CRT on x86 |
| 2544 | scalbn | 2544 | scalbn |
| 2545 | scalbnf | 2545 | scalbnf |
| 2546 | F_ARM_ANY(scalbnl) ; Can't use long double functions from the CRT on x86 | 2546 | F_LD64(scalbnl) ; Can't use long double functions from the CRT on x86 |
| 2547 | set_terminate | 2547 | set_terminate |
| 2548 | set_unexpected | 2548 | set_unexpected |
| 2549 | setbuf | 2549 | setbuf |
| ... | @@ -2587,7 +2587,7 @@ strtoimax | ... | @@ -2587,7 +2587,7 @@ strtoimax |
| 2587 | strtok | 2587 | strtok |
| 2588 | strtok_s | 2588 | strtok_s |
| 2589 | strtol | 2589 | strtol |
| 2590 | F_ARM_ANY(strtold) ; Can't use long double functions from the CRT on x86 | 2590 | F_LD64(strtold) ; Can't use long double functions from the CRT on x86 |
| 2591 | strtoll | 2591 | strtoll |
| 2592 | strtoul | 2592 | strtoul |
| 2593 | strtoull | 2593 | strtoull |
| ... | @@ -2602,7 +2602,7 @@ F_NON_I386(tanhf) | ... | @@ -2602,7 +2602,7 @@ F_NON_I386(tanhf) |
| 2602 | terminate | 2602 | terminate |
| 2603 | tgamma | 2603 | tgamma |
| 2604 | tgammaf | 2604 | tgammaf |
| 2605 | F_ARM_ANY(tgammal) ; Can't use long double functions from the CRT on x86 | 2605 | F_LD64(tgammal) ; Can't use long double functions from the CRT on x86 |
| 2606 | tmpfile | 2606 | tmpfile |
| 2607 | tmpfile_s | 2607 | tmpfile_s |
| 2608 | tmpnam | 2608 | tmpnam |
| ... | @@ -2614,7 +2614,7 @@ towlower | ... | @@ -2614,7 +2614,7 @@ towlower |
| 2614 | towupper | 2614 | towupper |
| 2615 | trunc | 2615 | trunc |
| 2616 | truncf | 2616 | truncf |
| 2617 | F_ARM_ANY(truncl) ; Can't use long double functions from the CRT on x86 | 2617 | F_LD64(truncl) ; Can't use long double functions from the CRT on x86 |
| 2618 | unexpected | 2618 | unexpected |
| 2619 | ungetc | 2619 | ungetc |
| 2620 | ungetwc | 2620 | ungetwc |
| ... | @@ -2648,7 +2648,7 @@ wcstoimax | ... | @@ -2648,7 +2648,7 @@ wcstoimax |
| 2648 | wcstok | 2648 | wcstok |
| 2649 | wcstok_s | 2649 | wcstok_s |
| 2650 | wcstol | 2650 | wcstol |
| 2651 | F_ARM_ANY(wcstold) ; Can't use long double functions from the CRT on x86 | 2651 | F_LD64(wcstold) ; Can't use long double functions from the CRT on x86 |
| 2652 | wcstoll | 2652 | wcstoll |
| 2653 | wcstombs | 2653 | wcstombs |
| 2654 | wcstombs_s | 2654 | wcstombs_s |
lib/libc/mingw/lib-common/ws2_32.def.in+181-181| ... | @@ -2,200 +2,200 @@ | ... | @@ -2,200 +2,200 @@ |
| 2 | 2 | ||
| 3 | LIBRARY "WS2_32.dll" | 3 | LIBRARY "WS2_32.dll" |
| 4 | EXPORTS | 4 | EXPORTS |
| 5 | accept | 5 | __WSAFDIsSet@8 |
| 6 | bind | 6 | FreeAddrInfoEx@4 |
| 7 | closesocket | 7 | FreeAddrInfoExW@4 |
| 8 | connect | 8 | FreeAddrInfoW@4 |
| 9 | getpeername | 9 | GetAddrInfoExA@40 |
| 10 | getsockname | 10 | GetAddrInfoExCancel@4 |
| 11 | getsockopt | 11 | GetAddrInfoExOverlappedResult@4 |
| 12 | htonl | 12 | GetAddrInfoExW@40 |
| 13 | htons | 13 | GetAddrInfoW@16 |
| 14 | ioctlsocket | 14 | GetHostNameW@8 |
| 15 | inet_addr | 15 | GetNameInfoW@28 |
| 16 | inet_ntoa | 16 | InetNtopW@16 |
| 17 | listen | 17 | InetPtonW@12 |
| 18 | ntohl | 18 | ProcessSocketNotifications@28 |
| 19 | ntohs | 19 | SetAddrInfoExA@48 |
| 20 | recv | 20 | SetAddrInfoExW@48 |
| 21 | recvfrom | 21 | WEP@0 |
| 22 | select | 22 | WPUCompleteOverlappedRequest@20 |
| 23 | send | 23 | WPUGetProviderPathEx@20 |
| 24 | sendto | 24 | WSAAccept@20 |
| 25 | setsockopt | 25 | WSAAddressToStringA@20 |
| 26 | shutdown | 26 | WSAAddressToStringW@20 |
| 27 | socket | 27 | WSAAdvertiseProvider@8 |
| 28 | WSApSetPostRoutine | 28 | WSAAsyncGetHostByAddr@28 |
| 29 | FreeAddrInfoEx | 29 | WSAAsyncGetHostByName@20 |
| 30 | FreeAddrInfoExW | 30 | WSAAsyncGetProtoByName@20 |
| 31 | FreeAddrInfoW | 31 | WSAAsyncGetProtoByNumber@20 |
| 32 | GetAddrInfoExA | 32 | WSAAsyncGetServByName@24 |
| 33 | GetAddrInfoExCancel | 33 | WSAAsyncGetServByPort@24 |
| 34 | GetAddrInfoExOverlappedResult | 34 | WSAAsyncSelect@16 |
| 35 | GetAddrInfoExW | 35 | WSACancelAsyncRequest@4 |
| 36 | GetAddrInfoW | 36 | WSACancelBlockingCall@0 |
| 37 | GetHostNameW | 37 | WSACleanup@0 |
| 38 | GetNameInfoW | 38 | WSACloseEvent@4 |
| 39 | InetNtopW | 39 | WSAConnect@28 |
| 40 | InetPtonW | 40 | WSAConnectByList@32 |
| 41 | ProcessSocketNotifications | 41 | WSAConnectByNameA@36 |
| 42 | SetAddrInfoExA | 42 | WSAConnectByNameW@36 |
| 43 | SetAddrInfoExW | 43 | WSACreateEvent@0 |
| 44 | WPUCompleteOverlappedRequest | 44 | WSADuplicateSocketA@12 |
| 45 | WPUGetProviderPathEx | 45 | WSADuplicateSocketW@12 |
| 46 | WSAAccept | 46 | WSAEnumNameSpaceProvidersA@8 |
| 47 | WSAAddressToStringA | 47 | WSAEnumNameSpaceProvidersExA@8 |
| 48 | WSAAddressToStringW | 48 | WSAEnumNameSpaceProvidersExW@8 |
| 49 | WSAAdvertiseProvider | 49 | WSAEnumNameSpaceProvidersW@8 |
| 50 | WSACloseEvent | 50 | WSAEnumNetworkEvents@12 |
| 51 | WSAConnect | 51 | WSAEnumProtocolsA@12 |
| 52 | WSAConnectByList | 52 | WSAEnumProtocolsW@12 |
| 53 | WSAConnectByNameA | 53 | WSAEventSelect@12 |
| 54 | WSAConnectByNameW | 54 | WSAGetLastError@0 |
| 55 | WSACreateEvent | 55 | WSAGetOverlappedResult@20 |
| 56 | gethostbyaddr | 56 | WSAGetQOSByName@12 |
| 57 | gethostbyname | 57 | WSAGetServiceClassInfoA@16 |
| 58 | getprotobyname | 58 | WSAGetServiceClassInfoW@16 |
| 59 | getprotobynumber | 59 | WSAGetServiceClassNameByClassIdA@12 |
| 60 | getservbyname | 60 | WSAGetServiceClassNameByClassIdW@12 |
| 61 | getservbyport | 61 | WSAHtonl@12 |
| 62 | gethostname | 62 | WSAHtons@12 |
| 63 | WSADuplicateSocketA | 63 | WSAInstallServiceClassA@4 |
| 64 | WSADuplicateSocketW | 64 | WSAInstallServiceClassW@4 |
| 65 | WSAEnumNameSpaceProvidersA | 65 | WSAIoctl@36 |
| 66 | WSAEnumNameSpaceProvidersExA | 66 | WSAIsBlocking@0 |
| 67 | WSAEnumNameSpaceProvidersExW | 67 | WSAJoinLeaf@32 |
| 68 | WSAEnumNameSpaceProvidersW | 68 | WSALookupServiceBeginA@12 |
| 69 | WSAEnumNetworkEvents | 69 | WSALookupServiceBeginW@12 |
| 70 | WSAEnumProtocolsA | 70 | WSALookupServiceEnd@4 |
| 71 | WSAEnumProtocolsW | 71 | WSALookupServiceNextA@16 |
| 72 | WSAEventSelect | 72 | WSALookupServiceNextW@16 |
| 73 | WSAGetOverlappedResult | 73 | WSANSPIoctl@32 |
| 74 | WSAGetQOSByName | 74 | WSANtohl@12 |
| 75 | WSAGetServiceClassInfoA | 75 | WSANtohs@12 |
| 76 | WSAGetServiceClassInfoW | 76 | WSAPoll@12 |
| 77 | WSAGetServiceClassNameByClassIdA | 77 | WSAProviderCompleteAsyncCall@8 |
| 78 | WSAGetServiceClassNameByClassIdW | 78 | WSAProviderConfigChange@12 |
| 79 | WSAHtonl | 79 | WSARecv@28 |
| 80 | WSAHtons | 80 | WSARecvDisconnect@8 |
| 81 | WSAInstallServiceClassA | 81 | WSARecvFrom@36 |
| 82 | WSAInstallServiceClassW | 82 | WSARemoveServiceClass@4 |
| 83 | WSAIoctl | 83 | WSAResetEvent@4 |
| 84 | WSAJoinLeaf | 84 | WSASend@28 |
| 85 | WSALookupServiceBeginA | 85 | WSASendDisconnect@8 |
| 86 | WSALookupServiceBeginW | 86 | WSASendMsg@24 |
| 87 | WSALookupServiceEnd | 87 | WSASendTo@36 |
| 88 | WSALookupServiceNextA | 88 | WSASetBlockingHook@4 |
| 89 | WSALookupServiceNextW | 89 | WSASetEvent@4 |
| 90 | WSANSPIoctl | 90 | WSASetLastError@4 |
| 91 | WSANtohl | 91 | WSASetServiceA@12 |
| 92 | WSANtohs | 92 | WSASetServiceW@12 |
| 93 | WSAPoll | 93 | WSASocketA@24 |
| 94 | WSAProviderCompleteAsyncCall | 94 | WSASocketW@24 |
| 95 | WSAProviderConfigChange | 95 | WSAStartup@8 |
| 96 | WSARecv | 96 | WSAStringToAddressA@20 |
| 97 | WSARecvDisconnect | 97 | WSAStringToAddressW@20 |
| 98 | WSARecvFrom | 98 | WSAUnadvertiseProvider@4 |
| 99 | WSARemoveServiceClass | 99 | WSAUnhookBlockingHook@0 |
| 100 | WSAResetEvent | 100 | WSAWaitForMultipleEvents@20 |
| 101 | WSASend | 101 | WSApSetPostRoutine@4 |
| 102 | WSASendDisconnect | 102 | WSCDeinstallProvider@8 |
| 103 | WSASendMsg | ||
| 104 | WSASendTo | ||
| 105 | WSASetEvent | ||
| 106 | WSAAsyncSelect | ||
| 107 | WSAAsyncGetHostByAddr | ||
| 108 | WSAAsyncGetHostByName | ||
| 109 | WSAAsyncGetProtoByNumber | ||
| 110 | WSAAsyncGetProtoByName | ||
| 111 | WSAAsyncGetServByPort | ||
| 112 | WSAAsyncGetServByName | ||
| 113 | WSACancelAsyncRequest | ||
| 114 | WSASetBlockingHook | ||
| 115 | WSAUnhookBlockingHook | ||
| 116 | WSAGetLastError | ||
| 117 | WSASetLastError | ||
| 118 | WSACancelBlockingCall | ||
| 119 | WSAIsBlocking | ||
| 120 | WSAStartup | ||
| 121 | WSACleanup | ||
| 122 | WSASetServiceA | ||
| 123 | WSASetServiceW | ||
| 124 | WSASocketA | ||
| 125 | WSASocketW | ||
| 126 | WSAStringToAddressA | ||
| 127 | WSAStringToAddressW | ||
| 128 | WSAUnadvertiseProvider | ||
| 129 | WSAWaitForMultipleEvents | ||
| 130 | WSCDeinstallProvider | ||
| 131 | F64(WSCDeinstallProvider32) | 103 | F64(WSCDeinstallProvider32) |
| 132 | WSCDeinstallProviderEx | 104 | WSCDeinstallProviderEx@12 |
| 133 | WSCEnableNSProvider | 105 | WSCEnableNSProvider@8 |
| 134 | F64(WSCEnableNSProvider32) | 106 | F64(WSCEnableNSProvider32) |
| 135 | F64(WSCEnumNameSpaceProviders32) | 107 | F64(WSCEnumNameSpaceProviders32) |
| 136 | F64(WSCEnumNameSpaceProvidersEx32) | 108 | F64(WSCEnumNameSpaceProvidersEx32) |
| 137 | WSCEnumProtocols | 109 | WSCEnumProtocols@16 |
| 138 | WSCEnumProtocolsEx | ||
| 139 | F64(WSCEnumProtocols32) | 110 | F64(WSCEnumProtocols32) |
| 140 | WSCGetApplicationCategory | 111 | WSCEnumProtocolsEx@20 |
| 141 | WSCGetApplicationCategoryEx | 112 | WSCGetApplicationCategory@24 |
| 142 | WSCGetProviderInfo | 113 | WSCGetApplicationCategoryEx@28 |
| 114 | WSCGetProviderInfo@24 | ||
| 143 | F64(WSCGetProviderInfo32) | 115 | F64(WSCGetProviderInfo32) |
| 144 | WSCGetProviderPath | 116 | WSCGetProviderPath@16 |
| 145 | F64(WSCGetProviderPath32) | 117 | F64(WSCGetProviderPath32) |
| 146 | WSCInstallNameSpace | 118 | WSCInstallNameSpace@20 |
| 147 | F64(WSCInstallNameSpace32) | 119 | F64(WSCInstallNameSpace32) |
| 148 | WSCInstallNameSpaceEx | 120 | WSCInstallNameSpaceEx@24 |
| 149 | WSCInstallNameSpaceEx2 | 121 | WSCInstallNameSpaceEx2@28 |
| 150 | F64(WSCInstallNameSpaceEx32) | 122 | F64(WSCInstallNameSpaceEx32) |
| 151 | WSCInstallProvider | 123 | WSCInstallProvider@20 |
| 152 | F64(WSCInstallProvider64_32) | 124 | F64(WSCInstallProvider64_32) |
| 153 | WSCInstallProviderAndChains | 125 | WSCInstallProviderAndChains@32 |
| 154 | F64(WSCInstallProviderAndChains64_32) | 126 | F64(WSCInstallProviderAndChains64_32) |
| 155 | WSCInstallProviderEx | 127 | WSCInstallProviderEx@28 |
| 156 | WSCSetApplicationCategory | 128 | WSCSetApplicationCategory@28 |
| 157 | WSCSetApplicationCategoryEx | 129 | WSCSetApplicationCategoryEx@32 |
| 158 | WSCSetProviderInfo | 130 | WSCSetProviderInfo@24 |
| 159 | F64(WSCSetProviderInfo32) | 131 | F64(WSCSetProviderInfo32) |
| 160 | WSCUnInstallNameSpace | 132 | WSCUnInstallNameSpace@4 |
| 161 | F64(WSCUnInstallNameSpace32) | 133 | F64(WSCUnInstallNameSpace32) |
| 162 | WSCUnInstallNameSpaceEx2 | 134 | WSCUnInstallNameSpaceEx2@8 |
| 163 | WSCUpdateProvider | 135 | WSCUpdateProvider@20 |
| 164 | F64(WSCUpdateProvider32) | 136 | F64(WSCUpdateProvider32) |
| 165 | WSCUpdateProviderEx | 137 | WSCUpdateProviderEx@24 |
| 166 | WSCWriteNameSpaceOrder | 138 | WSCWriteNameSpaceOrder@8 |
| 167 | F64(WSCWriteNameSpaceOrder32) | 139 | F64(WSCWriteNameSpaceOrder32) |
| 168 | WSCWriteProviderOrder | 140 | WSCWriteProviderOrder@8 |
| 169 | F64(WSCWriteProviderOrder32) | 141 | F64(WSCWriteProviderOrder32) |
| 170 | WSCWriteProviderOrderEx | 142 | WSCWriteProviderOrderEx@12 |
| 171 | WahCloseApcHelper | 143 | WahCloseApcHelper@4 |
| 172 | __WSAFDIsSet | 144 | WahCloseHandleHelper@4 |
| 173 | WahCloseHandleHelper | 145 | WahCloseNotificationHandleHelper@4 |
| 174 | WahCloseNotificationHandleHelper | 146 | WahCloseSocketHandle@8 |
| 175 | WahCloseSocketHandle | 147 | WahCloseThread@8 |
| 176 | WahCloseThread | 148 | WahCompleteRequest@20 |
| 177 | WahCompleteRequest | 149 | WahCreateHandleContextTable@4 |
| 178 | WahCreateHandleContextTable | 150 | WahCreateNotificationHandle@8 |
| 179 | WahCreateNotificationHandle | 151 | WahCreateSocketHandle@8 |
| 180 | WahCreateSocketHandle | 152 | WahDestroyHandleContextTable@4 |
| 181 | WahDestroyHandleContextTable | 153 | WahDisableNonIFSHandleSupport@0 |
| 182 | WahDisableNonIFSHandleSupport | 154 | WahEnableNonIFSHandleSupport@0 |
| 183 | WahEnableNonIFSHandleSupport | 155 | WahEnumerateHandleContexts@12 |
| 184 | WahEnumerateHandleContexts | 156 | WahInsertHandleContext@8 |
| 185 | WahInsertHandleContext | 157 | WahNotifyAllProcesses@4 |
| 186 | WahNotifyAllProcesses | 158 | WahOpenApcHelper@4 |
| 187 | WahOpenApcHelper | 159 | WahOpenCurrentThread@8 |
| 188 | WahOpenCurrentThread | 160 | WahOpenHandleHelper@4 |
| 189 | WahOpenHandleHelper | 161 | WahOpenNotificationHandleHelper@4 |
| 190 | WahOpenNotificationHandleHelper | 162 | WahQueueUserApc@16 |
| 191 | WahQueueUserApc | 163 | WahReferenceContextByHandle@8 |
| 192 | WahReferenceContextByHandle | 164 | WahRemoveHandleContext@8 |
| 193 | WahRemoveHandleContext | 165 | WahWaitForNotification@16 |
| 194 | WahWaitForNotification | 166 | WahWriteLSPEvent@8 |
| 195 | WahWriteLSPEvent | 167 | accept@12 |
| 196 | freeaddrinfo | 168 | bind@12 |
| 197 | getaddrinfo | 169 | closesocket@4 |
| 198 | getnameinfo | 170 | connect@12 |
| 199 | inet_ntop | 171 | freeaddrinfo@4 |
| 200 | inet_pton | 172 | getaddrinfo@16 |
| 201 | WEP | 173 | gethostbyaddr@12 |
| 174 | gethostbyname@4 | ||
| 175 | gethostname@8 | ||
| 176 | getnameinfo@28 | ||
| 177 | getpeername@12 | ||
| 178 | getprotobyname@4 | ||
| 179 | getprotobynumber@4 | ||
| 180 | getservbyname@8 | ||
| 181 | getservbyport@8 | ||
| 182 | getsockname@12 | ||
| 183 | getsockopt@20 | ||
| 184 | htonl@4 | ||
| 185 | htons@4 | ||
| 186 | inet_addr@4 | ||
| 187 | inet_ntoa@4 | ||
| 188 | inet_ntop@16 | ||
| 189 | inet_pton@12 | ||
| 190 | ioctlsocket@12 | ||
| 191 | listen@8 | ||
| 192 | ntohl@4 | ||
| 193 | ntohs@4 | ||
| 194 | recv@16 | ||
| 195 | recvfrom@24 | ||
| 196 | select@20 | ||
| 197 | send@16 | ||
| 198 | sendto@24 | ||
| 199 | setsockopt@20 | ||
| 200 | shutdown@8 | ||
| 201 | socket@12 |
lib/libc/mingw/lib32/ole32.def+28| ... | @@ -25,6 +25,7 @@ CLSIDFromProgIDEx@8 | ... | @@ -25,6 +25,7 @@ CLSIDFromProgIDEx@8 |
| 25 | CLSIDFromString@8 | 25 | CLSIDFromString@8 |
| 26 | CoAddRefServerProcess@0 | 26 | CoAddRefServerProcess@0 |
| 27 | CoAllowSetForegroundWindow@8 | 27 | CoAllowSetForegroundWindow@8 |
| 28 | CoAllowUnmarshalerCLSID@4 | ||
| 28 | CoBuildVersion@0 | 29 | CoBuildVersion@0 |
| 29 | CoCancelCall@8 | 30 | CoCancelCall@8 |
| 30 | CoCopyProxy@8 | 31 | CoCopyProxy@8 |
| ... | @@ -35,6 +36,8 @@ CoCreateInstanceEx@24 | ... | @@ -35,6 +36,8 @@ CoCreateInstanceEx@24 |
| 35 | CoCreateInstanceFromApp@24 | 36 | CoCreateInstanceFromApp@24 |
| 36 | CoCreateObjectInContext@16 | 37 | CoCreateObjectInContext@16 |
| 37 | CoDeactivateObject@8 | 38 | CoDeactivateObject@8 |
| 39 | CoDecodeProxy@16 | ||
| 40 | CoDecrementMTAUsage@4 | ||
| 38 | CoDisableCallCancellation@4 | 41 | CoDisableCallCancellation@4 |
| 39 | CoDisconnectContext@4 | 42 | CoDisconnectContext@4 |
| 40 | CoDisconnectObject@8 | 43 | CoDisconnectObject@8 |
| ... | @@ -77,7 +80,9 @@ CoGetState@4 | ... | @@ -77,7 +80,9 @@ CoGetState@4 |
| 77 | CoGetStdMarshalEx@12 | 80 | CoGetStdMarshalEx@12 |
| 78 | CoGetSystemSecurityPermissions@8 | 81 | CoGetSystemSecurityPermissions@8 |
| 79 | CoGetTreatAsClass@8 | 82 | CoGetTreatAsClass@8 |
| 83 | CoHandlePriorityEventsFromMessagePump@0 | ||
| 80 | CoImpersonateClient@0 | 84 | CoImpersonateClient@0 |
| 85 | CoIncrementMTAUsage@4 | ||
| 81 | CoInitialize@4 | 86 | CoInitialize@4 |
| 82 | CoInitializeEx@8 | 87 | CoInitializeEx@8 |
| 83 | CoInitializeSecurity@36 | 88 | CoInitializeSecurity@36 |
| ... | @@ -98,6 +103,7 @@ CoQueryClientBlanket@28 | ... | @@ -98,6 +103,7 @@ CoQueryClientBlanket@28 |
| 98 | CoQueryProxyBlanket@32 | 103 | CoQueryProxyBlanket@32 |
| 99 | CoQueryReleaseObject@4 | 104 | CoQueryReleaseObject@4 |
| 100 | CoReactivateObject@8 | 105 | CoReactivateObject@8 |
| 106 | CoRegisterActivationFilter@4 | ||
| 101 | CoRegisterChannelHook@8 | 107 | CoRegisterChannelHook@8 |
| 102 | CoRegisterClassObject@20 | 108 | CoRegisterClassObject@20 |
| 103 | CoRegisterInitializeSpy@8 | 109 | CoRegisterInitializeSpy@8 |
| ... | @@ -115,6 +121,7 @@ CoRevokeClassObject@4 | ... | @@ -115,6 +121,7 @@ CoRevokeClassObject@4 |
| 115 | CoRevokeInitializeSpy@8 | 121 | CoRevokeInitializeSpy@8 |
| 116 | CoRevokeMallocSpy@0 | 122 | CoRevokeMallocSpy@0 |
| 117 | CoSetCancelObject@4 | 123 | CoSetCancelObject@4 |
| 124 | CoSetMessageDispatcher@4 | ||
| 118 | CoSetProxyBlanket@32 | 125 | CoSetProxyBlanket@32 |
| 119 | CoSetState@4 | 126 | CoSetState@4 |
| 120 | CoSuspendClassObjects@0 | 127 | CoSuspendClassObjects@0 |
| ... | @@ -129,6 +136,7 @@ CoUnloadingWOW@4 | ... | @@ -129,6 +136,7 @@ CoUnloadingWOW@4 |
| 129 | CoUnmarshalHresult@8 | 136 | CoUnmarshalHresult@8 |
| 130 | CoUnmarshalInterface@12 | 137 | CoUnmarshalInterface@12 |
| 131 | CoWaitForMultipleHandles@20 | 138 | CoWaitForMultipleHandles@20 |
| 139 | CoWaitForMultipleObjects@20 | ||
| 132 | ComPs_NdrDllCanUnloadNow@4 | 140 | ComPs_NdrDllCanUnloadNow@4 |
| 133 | ComPs_NdrDllGetClassObject@24 | 141 | ComPs_NdrDllGetClassObject@24 |
| 134 | ComPs_NdrDllRegisterProxy@20 | 142 | ComPs_NdrDllRegisterProxy@20 |
| ... | @@ -157,6 +165,7 @@ DoDragDrop@16 | ... | @@ -157,6 +165,7 @@ DoDragDrop@16 |
| 157 | EnableHookObject@8 | 165 | EnableHookObject@8 |
| 158 | FmtIdToPropStgName@8 | 166 | FmtIdToPropStgName@8 |
| 159 | FreePropVariantArray@8 | 167 | FreePropVariantArray@8 |
| 168 | GetActiveObjectExt@12 | ||
| 160 | GetClassFile@8 | 169 | GetClassFile@8 |
| 161 | GetConvertStg@4 | 170 | GetConvertStg@4 |
| 162 | GetDocumentBitStg@4 | 171 | GetDocumentBitStg@4 |
| ... | @@ -205,6 +214,10 @@ HMETAFILE_UserFree@8 | ... | @@ -205,6 +214,10 @@ HMETAFILE_UserFree@8 |
| 205 | HMETAFILE_UserMarshal@12 | 214 | HMETAFILE_UserMarshal@12 |
| 206 | HMETAFILE_UserSize@12 | 215 | HMETAFILE_UserSize@12 |
| 207 | HMETAFILE_UserUnmarshal@12 | 216 | HMETAFILE_UserUnmarshal@12 |
| 217 | HMONITOR_UserFree@8 | ||
| 218 | HMONITOR_UserMarshal@12 | ||
| 219 | HMONITOR_UserSize@12 | ||
| 220 | HMONITOR_UserUnmarshal@12 | ||
| 208 | HPALETTE_UserFree@8 | 221 | HPALETTE_UserFree@8 |
| 209 | HPALETTE_UserMarshal@12 | 222 | HPALETTE_UserMarshal@12 |
| 210 | HPALETTE_UserSize@12 | 223 | HPALETTE_UserSize@12 |
| ... | @@ -288,11 +301,14 @@ OleBuildVersion@0 | ... | @@ -288,11 +301,14 @@ OleBuildVersion@0 |
| 288 | OleConvertIStorageToOLESTREAM@8 | 301 | OleConvertIStorageToOLESTREAM@8 |
| 289 | OleConvertIStorageToOLESTREAMEx@28 | 302 | OleConvertIStorageToOLESTREAMEx@28 |
| 290 | OleConvertOLESTREAMToIStorage@12 | 303 | OleConvertOLESTREAMToIStorage@12 |
| 304 | OleConvertOLESTREAMToIStorage2@24 | ||
| 291 | OleConvertOLESTREAMToIStorageEx@28 | 305 | OleConvertOLESTREAMToIStorageEx@28 |
| 306 | OleConvertOLESTREAMToIStorageEx2@40 | ||
| 292 | OleCreate@28 | 307 | OleCreate@28 |
| 293 | OleCreateDefaultHandler@16 | 308 | OleCreateDefaultHandler@16 |
| 294 | OleCreateEmbeddingHelper@24 | 309 | OleCreateEmbeddingHelper@24 |
| 295 | OleCreateEx@48 | 310 | OleCreateEx@48 |
| 311 | OleCreateFontIndirectExt@12 | ||
| 296 | OleCreateFromData@28 | 312 | OleCreateFromData@28 |
| 297 | OleCreateFromDataEx@48 | 313 | OleCreateFromDataEx@48 |
| 298 | OleCreateFromFile@32 | 314 | OleCreateFromFile@32 |
| ... | @@ -304,6 +320,8 @@ OleCreateLinkFromDataEx@48 | ... | @@ -304,6 +320,8 @@ OleCreateLinkFromDataEx@48 |
| 304 | OleCreateLinkToFile@28 | 320 | OleCreateLinkToFile@28 |
| 305 | OleCreateLinkToFileEx@48 | 321 | OleCreateLinkToFileEx@48 |
| 306 | OleCreateMenuDescriptor@8 | 322 | OleCreateMenuDescriptor@8 |
| 323 | OleCreatePictureIndirectExt@16 | ||
| 324 | OleCreatePropertyFrameIndirectExt@4 | ||
| 307 | OleCreateStaticFromData@28 | 325 | OleCreateStaticFromData@28 |
| 308 | OleDestroyMenuDescriptor@4 | 326 | OleDestroyMenuDescriptor@4 |
| 309 | OleDoAutoConvert@8 | 327 | OleDoAutoConvert@8 |
| ... | @@ -312,14 +330,19 @@ OleDuplicateData@12 | ... | @@ -312,14 +330,19 @@ OleDuplicateData@12 |
| 312 | OleFlushClipboard@0 | 330 | OleFlushClipboard@0 |
| 313 | OleGetAutoConvert@8 | 331 | OleGetAutoConvert@8 |
| 314 | OleGetClipboard@4 | 332 | OleGetClipboard@4 |
| 333 | OleGetClipboardWithEnterpriseInfo@20 | ||
| 315 | OleGetIconOfClass@12 | 334 | OleGetIconOfClass@12 |
| 316 | OleGetIconOfFile@8 | 335 | OleGetIconOfFile@8 |
| 336 | OleIconToCursorExt@8 | ||
| 317 | OleInitialize@4 | 337 | OleInitialize@4 |
| 318 | OleInitializeWOW@8 | 338 | OleInitializeWOW@8 |
| 319 | OleIsCurrentClipboard@4 | 339 | OleIsCurrentClipboard@4 |
| 320 | OleIsRunning@4 | 340 | OleIsRunning@4 |
| 321 | OleLoad@16 | 341 | OleLoad@16 |
| 322 | OleLoadFromStream@12 | 342 | OleLoadFromStream@12 |
| 343 | OleLoadPictureExt@32 | ||
| 344 | OleLoadPictureFileExt@32 | ||
| 345 | OleLoadPicturePathExt@24 | ||
| 323 | OleLockRunning@12 | 346 | OleLockRunning@12 |
| 324 | OleMetafilePictFromIconAndLabel@16 | 347 | OleMetafilePictFromIconAndLabel@16 |
| 325 | OleNoteObjectVisible@8 | 348 | OleNoteObjectVisible@8 |
| ... | @@ -331,12 +354,14 @@ OleRegGetMiscStatus@12 | ... | @@ -331,12 +354,14 @@ OleRegGetMiscStatus@12 |
| 331 | OleRegGetUserType@12 | 354 | OleRegGetUserType@12 |
| 332 | OleRun@4 | 355 | OleRun@4 |
| 333 | OleSave@12 | 356 | OleSave@12 |
| 357 | OleSavePictureFileExt@8 | ||
| 334 | OleSaveToStream@8 | 358 | OleSaveToStream@8 |
| 335 | OleSetAutoConvert@8 | 359 | OleSetAutoConvert@8 |
| 336 | OleSetClipboard@4 | 360 | OleSetClipboard@4 |
| 337 | OleSetContainedObject@8 | 361 | OleSetContainedObject@8 |
| 338 | OleSetMenuDescriptor@20 | 362 | OleSetMenuDescriptor@20 |
| 339 | OleTranslateAccelerator@12 | 363 | OleTranslateAccelerator@12 |
| 364 | OleTranslateColorExt@12 | ||
| 340 | OleUninitialize@0 | 365 | OleUninitialize@0 |
| 341 | OpenOrCreateStream@12 | 366 | OpenOrCreateStream@12 |
| 342 | ProgIDFromCLSID@8 | 367 | ProgIDFromCLSID@8 |
| ... | @@ -350,9 +375,12 @@ ReadClassStm@8 | ... | @@ -350,9 +375,12 @@ ReadClassStm@8 |
| 350 | ReadFmtUserTypeStg@12 | 375 | ReadFmtUserTypeStg@12 |
| 351 | ReadOleStg@24 | 376 | ReadOleStg@24 |
| 352 | ReadStringStream@8 | 377 | ReadStringStream@8 |
| 378 | RegisterActiveObjectExt@16 | ||
| 353 | RegisterDragDrop@8 | 379 | RegisterDragDrop@8 |
| 354 | ReleaseStgMedium@4 | 380 | ReleaseStgMedium@4 |
| 381 | RevokeActiveObjectExt@8 | ||
| 355 | RevokeDragDrop@4 | 382 | RevokeDragDrop@4 |
| 383 | RoGetAgileReference@16 | ||
| 356 | SNB_UserFree@8 | 384 | SNB_UserFree@8 |
| 357 | SNB_UserMarshal@12 | 385 | SNB_UserMarshal@12 |
| 358 | SNB_UserSize@12 | 386 | SNB_UserSize@12 |
lib/libc/mingw/lib32/ws2_32.def deleted-188| ... | @@ -1,188 +0,0 @@ | ||
| 1 | ; | ||
| 2 | ; Definition file of WS2_32.dll | ||
| 3 | ; Automatic generated by gendef | ||
| 4 | ; written by Kai Tietz 2008 | ||
| 5 | ; | ||
| 6 | LIBRARY "WS2_32.dll" | ||
| 7 | EXPORTS | ||
| 8 | accept@12 | ||
| 9 | bind@12 | ||
| 10 | closesocket@4 | ||
| 11 | connect@12 | ||
| 12 | getpeername@12 | ||
| 13 | getsockname@12 | ||
| 14 | getsockopt@20 | ||
| 15 | htonl@4 | ||
| 16 | htons@4 | ||
| 17 | ioctlsocket@12 | ||
| 18 | inet_addr@4 | ||
| 19 | inet_ntoa@4 | ||
| 20 | listen@8 | ||
| 21 | ntohl@4 | ||
| 22 | ntohs@4 | ||
| 23 | recv@16 | ||
| 24 | recvfrom@24 | ||
| 25 | select@20 | ||
| 26 | send@16 | ||
| 27 | sendto@24 | ||
| 28 | setsockopt@20 | ||
| 29 | shutdown@8 | ||
| 30 | socket@12 | ||
| 31 | WSApSetPostRoutine@4 | ||
| 32 | FreeAddrInfoEx@4 | ||
| 33 | FreeAddrInfoExW@4 | ||
| 34 | FreeAddrInfoW@4 | ||
| 35 | GetAddrInfoExA@40 | ||
| 36 | GetAddrInfoExCancel@4 | ||
| 37 | GetAddrInfoExOverlappedResult@4 | ||
| 38 | GetAddrInfoExW@40 | ||
| 39 | GetAddrInfoW@16 | ||
| 40 | GetHostNameW@8 | ||
| 41 | GetNameInfoW@28 | ||
| 42 | InetNtopW@16 | ||
| 43 | InetPtonW@12 | ||
| 44 | ProcessSocketNotifications@28 | ||
| 45 | SetAddrInfoExA@48 | ||
| 46 | SetAddrInfoExW@48 | ||
| 47 | WPUCompleteOverlappedRequest@20 | ||
| 48 | WPUGetProviderPathEx@20 | ||
| 49 | WSAAccept@20 | ||
| 50 | WSAAddressToStringA@20 | ||
| 51 | WSAAddressToStringW@20 | ||
| 52 | WSAAdvertiseProvider@8 | ||
| 53 | WSACloseEvent@4 | ||
| 54 | WSAConnect@28 | ||
| 55 | WSAConnectByList@32 | ||
| 56 | WSAConnectByNameA@36 | ||
| 57 | WSAConnectByNameW@36 | ||
| 58 | WSACreateEvent@0 | ||
| 59 | WSADuplicateSocketA@12 | ||
| 60 | WSADuplicateSocketW@12 | ||
| 61 | WSAEnumNameSpaceProvidersA@8 | ||
| 62 | WSAEnumNameSpaceProvidersExA@8 | ||
| 63 | gethostbyaddr@12 | ||
| 64 | gethostbyname@4 | ||
| 65 | getprotobyname@4 | ||
| 66 | getprotobynumber@4 | ||
| 67 | getservbyname@8 | ||
| 68 | getservbyport@8 | ||
| 69 | gethostname@8 | ||
| 70 | WSAEnumNameSpaceProvidersExW@8 | ||
| 71 | WSAEnumNameSpaceProvidersW@8 | ||
| 72 | WSAEnumNetworkEvents@12 | ||
| 73 | WSAEnumProtocolsA@12 | ||
| 74 | WSAEnumProtocolsW@12 | ||
| 75 | WSAEventSelect@12 | ||
| 76 | WSAGetOverlappedResult@20 | ||
| 77 | WSAGetQOSByName@12 | ||
| 78 | WSAGetServiceClassInfoA@16 | ||
| 79 | WSAGetServiceClassInfoW@16 | ||
| 80 | WSAGetServiceClassNameByClassIdA@12 | ||
| 81 | WSAGetServiceClassNameByClassIdW@12 | ||
| 82 | WSAHtonl@12 | ||
| 83 | WSAHtons@12 | ||
| 84 | WSAInstallServiceClassA@4 | ||
| 85 | WSAInstallServiceClassW@4 | ||
| 86 | WSAIoctl@36 | ||
| 87 | WSAJoinLeaf@32 | ||
| 88 | WSALookupServiceBeginA@12 | ||
| 89 | WSALookupServiceBeginW@12 | ||
| 90 | WSALookupServiceEnd@4 | ||
| 91 | WSALookupServiceNextA@16 | ||
| 92 | WSALookupServiceNextW@16 | ||
| 93 | WSANSPIoctl@32 | ||
| 94 | WSANtohl@12 | ||
| 95 | WSANtohs@12 | ||
| 96 | WSAPoll@12 | ||
| 97 | WSAProviderCompleteAsyncCall@8 | ||
| 98 | WSAProviderConfigChange@12 | ||
| 99 | WSARecv@28 | ||
| 100 | WSARecvDisconnect@8 | ||
| 101 | WSARecvFrom@36 | ||
| 102 | WSARemoveServiceClass@4 | ||
| 103 | WSAResetEvent@4 | ||
| 104 | WSASend@28 | ||
| 105 | WSASendDisconnect@8 | ||
| 106 | WSASendMsg@24 | ||
| 107 | WSASendTo@36 | ||
| 108 | WSASetEvent@4 | ||
| 109 | WSASetServiceA@12 | ||
| 110 | WSASetServiceW@12 | ||
| 111 | WSASocketA@24 | ||
| 112 | WSASocketW@24 | ||
| 113 | WSAAsyncSelect@16 | ||
| 114 | WSAAsyncGetHostByAddr@28 | ||
| 115 | WSAAsyncGetHostByName@20 | ||
| 116 | WSAAsyncGetProtoByNumber@20 | ||
| 117 | WSAAsyncGetProtoByName@20 | ||
| 118 | WSAAsyncGetServByPort@24 | ||
| 119 | WSAAsyncGetServByName@24 | ||
| 120 | WSACancelAsyncRequest@4 | ||
| 121 | WSASetBlockingHook@4 | ||
| 122 | WSAUnhookBlockingHook@0 | ||
| 123 | WSAGetLastError@0 | ||
| 124 | WSASetLastError@4 | ||
| 125 | WSACancelBlockingCall@0 | ||
| 126 | WSAIsBlocking@0 | ||
| 127 | WSAStartup@8 | ||
| 128 | WSACleanup@0 | ||
| 129 | WSAStringToAddressA@20 | ||
| 130 | WSAStringToAddressW@20 | ||
| 131 | WSAUnadvertiseProvider@4 | ||
| 132 | WSAWaitForMultipleEvents@20 | ||
| 133 | WSCDeinstallProvider@8 | ||
| 134 | WSCDeinstallProviderEx@12 | ||
| 135 | WSCEnableNSProvider@8 | ||
| 136 | WSCEnumProtocols@16 | ||
| 137 | WSCEnumProtocolsEx@20 | ||
| 138 | WSCGetApplicationCategory@24 | ||
| 139 | WSCGetApplicationCategoryEx@28 | ||
| 140 | WSCGetProviderInfo@24 | ||
| 141 | WSCGetProviderPath@16 | ||
| 142 | WSCInstallNameSpace@20 | ||
| 143 | WSCInstallNameSpaceEx2@28 | ||
| 144 | WSCInstallNameSpaceEx@24 | ||
| 145 | WSCInstallProvider@20 | ||
| 146 | WSCInstallProviderAndChains@32 | ||
| 147 | WSCInstallProviderEx@28 | ||
| 148 | WSCSetApplicationCategory@28 | ||
| 149 | WSCSetApplicationCategoryEx@32 | ||
| 150 | WSCSetProviderInfo@24 | ||
| 151 | WSCUnInstallNameSpace@4 | ||
| 152 | WSCUnInstallNameSpaceEx2@8 | ||
| 153 | WSCUpdateProvider@20 | ||
| 154 | WSCUpdateProviderEx@24 | ||
| 155 | WSCWriteNameSpaceOrder@8 | ||
| 156 | WSCWriteProviderOrder@8 | ||
| 157 | WSCWriteProviderOrderEx@12 | ||
| 158 | WahCloseApcHelper@4 | ||
| 159 | WahCloseHandleHelper@4 | ||
| 160 | WahCloseNotificationHandleHelper@4 | ||
| 161 | WahCloseSocketHandle@8 | ||
| 162 | WahCloseThread@8 | ||
| 163 | WahCompleteRequest@20 | ||
| 164 | WahCreateHandleContextTable@4 | ||
| 165 | WahCreateNotificationHandle@8 | ||
| 166 | WahCreateSocketHandle@8 | ||
| 167 | WahDestroyHandleContextTable@4 | ||
| 168 | WahDisableNonIFSHandleSupport@0 | ||
| 169 | WahEnableNonIFSHandleSupport@0 | ||
| 170 | WahEnumerateHandleContexts@12 | ||
| 171 | WahInsertHandleContext@8 | ||
| 172 | __WSAFDIsSet@8 | ||
| 173 | WahNotifyAllProcesses@4 | ||
| 174 | WahOpenApcHelper@4 | ||
| 175 | WahOpenCurrentThread@8 | ||
| 176 | WahOpenHandleHelper@4 | ||
| 177 | WahOpenNotificationHandleHelper@4 | ||
| 178 | WahQueueUserApc@16 | ||
| 179 | WahReferenceContextByHandle@8 | ||
| 180 | WahRemoveHandleContext@8 | ||
| 181 | WahWaitForNotification@16 | ||
| 182 | WahWriteLSPEvent@8 | ||
| 183 | freeaddrinfo@4 | ||
| 184 | getaddrinfo@16 | ||
| 185 | getnameinfo@28 | ||
| 186 | inet_ntop@16 | ||
| 187 | inet_pton@12 | ||
| 188 | WEP@0 | ||
lib/libc/mingw/lib64/kernel32.def deleted-1745| ... | @@ -1,1745 +0,0 @@ | ||
| 1 | |||
| 2 | LIBRARY "KERNEL32.dll" | ||
| 3 | EXPORTS | ||
| 4 | AcquireSRWLockExclusive | ||
| 5 | AcquireSRWLockShared | ||
| 6 | ActivateActCtx | ||
| 7 | ActivateActCtxWorker | ||
| 8 | ActivatePackageVirtualizationContext | ||
| 9 | AddAtomA | ||
| 10 | AddAtomW | ||
| 11 | AddConsoleAliasA | ||
| 12 | AddConsoleAliasW | ||
| 13 | AddDllDirectory | ||
| 14 | AddIntegrityLabelToBoundaryDescriptor | ||
| 15 | AddLocalAlternateComputerNameA | ||
| 16 | AddLocalAlternateComputerNameW | ||
| 17 | AddRefActCtx | ||
| 18 | AddRefActCtxWorker | ||
| 19 | AddResourceAttributeAce | ||
| 20 | AddSIDToBoundaryDescriptor | ||
| 21 | AddScopedPolicyIDAce | ||
| 22 | AddSecureMemoryCacheCallback | ||
| 23 | AddVectoredContinueHandler | ||
| 24 | AddVectoredExceptionHandler | ||
| 25 | AdjustCalendarDate | ||
| 26 | AllocConsole | ||
| 27 | AllocConsoleWithOptions | ||
| 28 | AllocateUserPhysicalPages | ||
| 29 | AllocateUserPhysicalPagesNuma | ||
| 30 | AppPolicyGetClrCompat | ||
| 31 | AppPolicyGetCreateFileAccess | ||
| 32 | AppPolicyGetLifecycleManagement | ||
| 33 | AppPolicyGetMediaFoundationCodecLoading | ||
| 34 | AppPolicyGetProcessTerminationMethod | ||
| 35 | AppPolicyGetShowDeveloperDiagnostic | ||
| 36 | AppPolicyGetThreadInitializationType | ||
| 37 | AppPolicyGetWindowingModel | ||
| 38 | AppXGetOSMaxVersionTested | ||
| 39 | ApplicationRecoveryFinished | ||
| 40 | ApplicationRecoveryInProgress | ||
| 41 | AreFileApisANSI | ||
| 42 | AreShortNamesEnabled | ||
| 43 | AssignProcessToJobObject | ||
| 44 | AttachConsole | ||
| 45 | BackupRead | ||
| 46 | BackupSeek | ||
| 47 | BackupWrite | ||
| 48 | BaseCheckAppcompatCache | ||
| 49 | BaseCheckAppcompatCacheEx | ||
| 50 | BaseCheckAppcompatCacheExWorker | ||
| 51 | BaseCheckAppcompatCacheWorker | ||
| 52 | BaseCheckElevation | ||
| 53 | BaseCheckRunApp | ||
| 54 | BaseCleanupAppcompatCacheSupport | ||
| 55 | BaseCleanupAppcompatCacheSupportWorker | ||
| 56 | BaseDestroyVDMEnvironment | ||
| 57 | BaseDllReadWriteIniFile | ||
| 58 | BaseDumpAppcompatCache | ||
| 59 | BaseDumpAppcompatCacheWorker | ||
| 60 | BaseElevationPostProcessing | ||
| 61 | BaseFlushAppcompatCache | ||
| 62 | BaseFlushAppcompatCacheWorker | ||
| 63 | BaseFormatObjectAttributes | ||
| 64 | BaseFormatTimeOut | ||
| 65 | BaseFreeAppCompatDataForProcessWorker | ||
| 66 | BaseGenerateAppCompatData | ||
| 67 | BaseGetNamedObjectDirectory | ||
| 68 | BaseInitAppcompatCacheSupport | ||
| 69 | BaseInitAppcompatCacheSupportWorker | ||
| 70 | BaseIsAppcompatInfrastructureDisabled | ||
| 71 | BaseIsAppcompatInfrastructureDisabledWorker | ||
| 72 | BaseIsDosApplication | ||
| 73 | BaseProcessInitPostImport | ||
| 74 | BaseProcessStart | ||
| 75 | BaseQueryModuleData | ||
| 76 | BaseReadAppCompatDataForProcessWorker | ||
| 77 | BaseThreadStart | ||
| 78 | BaseSetLastNTError | ||
| 79 | BaseThreadInitThunk | ||
| 80 | BaseUpdateAppcompatCache | ||
| 81 | BaseUpdateAppcompatCacheWorker | ||
| 82 | BaseUpdateVDMEntry | ||
| 83 | BaseVerifyUnicodeString | ||
| 84 | BaseWriteErrorElevationRequiredEvent | ||
| 85 | Basep8BitStringToDynamicUnicodeString | ||
| 86 | BasepAllocateActivationContextActivationBlock | ||
| 87 | BasepAnsiStringToDynamicUnicodeString | ||
| 88 | BasepAppContainerEnvironmentExtension | ||
| 89 | BasepAppXExtension | ||
| 90 | BasepCheckAppCompat | ||
| 91 | BasepCheckBadapp | ||
| 92 | BasepCheckWebBladeHashes | ||
| 93 | BasepCheckWinSaferRestrictions | ||
| 94 | BasepConstructSxsCreateProcessMessage | ||
| 95 | BasepCopyEncryption | ||
| 96 | BasepFreeActivationContextActivationBlock | ||
| 97 | BasepFreeAppCompatData | ||
| 98 | BasepGetAppCompatData | ||
| 99 | BasepGetComputerNameFromNtPath | ||
| 100 | BasepGetExeArchType | ||
| 101 | BasepInitAppCompatData | ||
| 102 | BasepIsProcessAllowed | ||
| 103 | BasepMapModuleHandle | ||
| 104 | BasepNotifyLoadStringResource | ||
| 105 | BasepPostSuccessAppXExtension | ||
| 106 | BasepProcessInvalidImage | ||
| 107 | BasepQueryAppCompat | ||
| 108 | BasepQueryModuleChpeSettings | ||
| 109 | BasepReleaseAppXContext | ||
| 110 | BasepReleaseSxsCreateProcessUtilityStruct | ||
| 111 | BasepReportFault | ||
| 112 | BasepSetFileEncryptionCompression | ||
| 113 | Beep | ||
| 114 | BeginUpdateResourceA | ||
| 115 | BeginUpdateResourceW | ||
| 116 | BindIoCompletionCallback | ||
| 117 | BuildCommDCBA | ||
| 118 | BuildCommDCBAndTimeoutsA | ||
| 119 | BuildCommDCBAndTimeoutsW | ||
| 120 | BuildCommDCBW | ||
| 121 | BuildIoRingCancelRequest | ||
| 122 | BuildIoRingFlushFile | ||
| 123 | BuildIoRingReadFile | ||
| 124 | BuildIoRingReadFileScatter | ||
| 125 | BuildIoRingRegisterBuffers | ||
| 126 | BuildIoRingRegisterFileHandles | ||
| 127 | BuildIoRingWriteFile | ||
| 128 | BuildIoRingWriteFileGather | ||
| 129 | CallNamedPipeA | ||
| 130 | CallNamedPipeW | ||
| 131 | CallbackMayRunLong | ||
| 132 | CalloutOnFiberStack | ||
| 133 | CancelDeviceWakeupRequest | ||
| 134 | CancelIo | ||
| 135 | CancelIoEx | ||
| 136 | CancelSynchronousIo | ||
| 137 | CancelThreadpoolIo | ||
| 138 | CancelTimerQueueTimer | ||
| 139 | CancelWaitableTimer | ||
| 140 | CeipIsOptedIn | ||
| 141 | ChangeTimerQueueTimer | ||
| 142 | CheckAllowDecryptedRemoteDestinationPolicy | ||
| 143 | CheckElevation | ||
| 144 | CheckElevationEnabled | ||
| 145 | CheckForReadOnlyResource | ||
| 146 | CheckForReadOnlyResourceFilter | ||
| 147 | CheckNameLegalDOS8Dot3A | ||
| 148 | CheckNameLegalDOS8Dot3W | ||
| 149 | CheckRemoteDebuggerPresent | ||
| 150 | CheckTokenCapability | ||
| 151 | CheckTokenMembershipEx | ||
| 152 | ClearCommBreak | ||
| 153 | ClearCommError | ||
| 154 | CloseConsoleHandle | ||
| 155 | CloseHandle | ||
| 156 | CloseIoRing | ||
| 157 | ClosePackageInfo | ||
| 158 | ClosePrivateNamespace | ||
| 159 | CloseProfileUserMapping | ||
| 160 | ClosePseudoConsole | ||
| 161 | CloseState | ||
| 162 | CloseThreadpool | ||
| 163 | CloseThreadpoolCleanupGroup | ||
| 164 | CloseThreadpoolCleanupGroupMembers | ||
| 165 | CloseThreadpoolIo | ||
| 166 | CloseThreadpoolTimer | ||
| 167 | CloseThreadpoolWait | ||
| 168 | CloseThreadpoolWork | ||
| 169 | CmdBatNotification | ||
| 170 | CommConfigDialogA | ||
| 171 | CommConfigDialogW | ||
| 172 | CompareCalendarDates | ||
| 173 | CompareFileTime | ||
| 174 | CompareStringA | ||
| 175 | CompareStringEx | ||
| 176 | CompareStringOrdinal | ||
| 177 | CompareStringW | ||
| 178 | ConnectNamedPipe | ||
| 179 | ConsoleIMERoutine | ||
| 180 | ConsoleMenuControl | ||
| 181 | ContinueDebugEvent | ||
| 182 | ConvertCalDateTimeToSystemTime | ||
| 183 | ConvertDefaultLocale | ||
| 184 | ConvertFiberToThread | ||
| 185 | ConvertNLSDayOfWeekToWin32DayOfWeek | ||
| 186 | ConvertSystemTimeToCalDateTime | ||
| 187 | ConvertThreadToFiber | ||
| 188 | ConvertThreadToFiberEx | ||
| 189 | CopyContext | ||
| 190 | CopyExtendedContext | ||
| 191 | CopyFile2 | ||
| 192 | CopyFileA | ||
| 193 | CopyFileExA | ||
| 194 | CopyFileExW | ||
| 195 | CopyFileTransactedA | ||
| 196 | CopyFileTransactedW | ||
| 197 | CopyFileW | ||
| 198 | CopyLZFile | ||
| 199 | CreateActCtxA | ||
| 200 | CreateActCtxW | ||
| 201 | CreateActCtxWWorker | ||
| 202 | CreateBoundaryDescriptorA | ||
| 203 | CreateBoundaryDescriptorW | ||
| 204 | CreateConsoleScreenBuffer | ||
| 205 | CreateDirectoryA | ||
| 206 | CreateDirectoryExA | ||
| 207 | CreateDirectoryExW | ||
| 208 | CreateDirectoryTransactedA | ||
| 209 | CreateDirectoryTransactedW | ||
| 210 | CreateDirectoryW | ||
| 211 | CreateEnclave | ||
| 212 | CreateEventA | ||
| 213 | CreateEventExA | ||
| 214 | CreateEventExW | ||
| 215 | CreateEventW | ||
| 216 | CreateFiber | ||
| 217 | CreateFiberEx | ||
| 218 | CreateFile2 | ||
| 219 | CreateFileA | ||
| 220 | CreateFileMappingA | ||
| 221 | CreateFileMappingFromApp | ||
| 222 | CreateFileMappingNumaA | ||
| 223 | CreateFileMappingNumaW | ||
| 224 | CreateFileMappingW | ||
| 225 | CreateFileTransactedA | ||
| 226 | CreateFileTransactedW | ||
| 227 | CreateFileW | ||
| 228 | CreateHardLinkA | ||
| 229 | CreateHardLinkTransactedA | ||
| 230 | CreateHardLinkTransactedW | ||
| 231 | CreateHardLinkW | ||
| 232 | CreateIoCompletionPort | ||
| 233 | CreateIoRing | ||
| 234 | CreateJobObjectA | ||
| 235 | CreateJobObjectW | ||
| 236 | CreateJobSet | ||
| 237 | CreateMailslotA | ||
| 238 | CreateMailslotW | ||
| 239 | CreateMemoryResourceNotification | ||
| 240 | CreateMutexA | ||
| 241 | CreateMutexExA | ||
| 242 | CreateMutexExW | ||
| 243 | CreateMutexW | ||
| 244 | CreateNamedPipeA | ||
| 245 | CreateNamedPipeW | ||
| 246 | CreateNlsSecurityDescriptor | ||
| 247 | CreatePackageVirtualizationContext | ||
| 248 | CreatePipe | ||
| 249 | CreatePrivateNamespaceA | ||
| 250 | CreatePrivateNamespaceW | ||
| 251 | CreateProcessA | ||
| 252 | ; MSDN says these are exported from ADVAPI32.DLL. | ||
| 253 | ; CreateProcessAsUserA | ||
| 254 | ; CreateProcessAsUserW | ||
| 255 | CreateProcessInternalA | ||
| 256 | CreateProcessInternalW | ||
| 257 | CreateProcessW | ||
| 258 | CreatePseudoConsole | ||
| 259 | CreateRemoteThread | ||
| 260 | CreateRemoteThreadEx | ||
| 261 | CreateSemaphoreA | ||
| 262 | CreateSemaphoreExA | ||
| 263 | CreateSemaphoreExW | ||
| 264 | CreateSemaphoreW | ||
| 265 | CreateSymbolicLinkA | ||
| 266 | CreateSymbolicLinkTransactedA | ||
| 267 | CreateSymbolicLinkTransactedW | ||
| 268 | CreateSymbolicLinkW | ||
| 269 | CreateTapePartition | ||
| 270 | CreateThread | ||
| 271 | CreateThreadpool | ||
| 272 | CreateThreadpoolCleanupGroup | ||
| 273 | CreateThreadpoolIo | ||
| 274 | CreateThreadpoolTimer | ||
| 275 | CreateThreadpoolWait | ||
| 276 | CreateThreadpoolWork | ||
| 277 | CreateTimerQueue | ||
| 278 | CreateTimerQueueTimer | ||
| 279 | CreateToolhelp32Snapshot | ||
| 280 | CreateUmsCompletionList | ||
| 281 | CreateUmsThreadContext | ||
| 282 | CreateWaitableTimerA | ||
| 283 | CreateWaitableTimerExA | ||
| 284 | CreateWaitableTimerExW | ||
| 285 | CreateWaitableTimerW | ||
| 286 | CtrlRoutine | ||
| 287 | DeactivateActCtx | ||
| 288 | DeactivateActCtxWorker | ||
| 289 | DeactivatePackageVirtualizationContext | ||
| 290 | DebugActiveProcess | ||
| 291 | DebugActiveProcessStop | ||
| 292 | DebugBreak | ||
| 293 | DebugBreakProcess | ||
| 294 | DebugSetProcessKillOnExit | ||
| 295 | DecodePointer | ||
| 296 | DecodeSystemPointer | ||
| 297 | DefineDosDeviceA | ||
| 298 | DefineDosDeviceW | ||
| 299 | DelayLoadFailureHook | ||
| 300 | DeleteAtom | ||
| 301 | DeleteBoundaryDescriptor | ||
| 302 | DeleteCriticalSection | ||
| 303 | DeleteFiber | ||
| 304 | DeleteFileA | ||
| 305 | DeleteFileTransactedA | ||
| 306 | DeleteFileTransactedW | ||
| 307 | DeleteFileW | ||
| 308 | DeleteProcThreadAttributeList | ||
| 309 | DeleteSynchronizationBarrier | ||
| 310 | DeleteTimerQueue | ||
| 311 | DeleteTimerQueueEx | ||
| 312 | DeleteTimerQueueTimer | ||
| 313 | DeleteUmsCompletionList | ||
| 314 | DeleteUmsThreadContext | ||
| 315 | DeleteVolumeMountPointA | ||
| 316 | DeleteVolumeMountPointW | ||
| 317 | DequeueUmsCompletionListItems | ||
| 318 | DeviceIoControl | ||
| 319 | DisableThreadLibraryCalls | ||
| 320 | DisableThreadProfiling | ||
| 321 | DisassociateCurrentThreadFromCallback | ||
| 322 | DiscardVirtualMemory | ||
| 323 | DisconnectNamedPipe | ||
| 324 | DnsHostnameToComputerNameA | ||
| 325 | DnsHostnameToComputerNameExW | ||
| 326 | DnsHostnameToComputerNameW | ||
| 327 | DosDateTimeToFileTime | ||
| 328 | DosPathToSessionPathA | ||
| 329 | DosPathToSessionPathW | ||
| 330 | DuplicateConsoleHandle | ||
| 331 | DuplicateEncryptionInfoFileExt | ||
| 332 | DuplicateHandle | ||
| 333 | DuplicatePackageVirtualizationContext | ||
| 334 | EnableProcessOptionalXStateFeatures | ||
| 335 | EnableThreadProfiling | ||
| 336 | EncodePointer | ||
| 337 | EncodeSystemPointer | ||
| 338 | EndUpdateResourceA | ||
| 339 | EndUpdateResourceW | ||
| 340 | EnterCriticalSection | ||
| 341 | EnterUmsSchedulingMode | ||
| 342 | EnterSynchronizationBarrier | ||
| 343 | EnumCalendarInfoA | ||
| 344 | EnumCalendarInfoExA | ||
| 345 | EnumCalendarInfoExEx | ||
| 346 | EnumCalendarInfoExW | ||
| 347 | EnumCalendarInfoW | ||
| 348 | EnumDateFormatsA | ||
| 349 | EnumDateFormatsExA | ||
| 350 | EnumDateFormatsExEx | ||
| 351 | EnumDateFormatsExW | ||
| 352 | EnumDateFormatsW | ||
| 353 | EnumLanguageGroupLocalesA | ||
| 354 | EnumLanguageGroupLocalesW | ||
| 355 | EnumResourceLanguagesA | ||
| 356 | EnumResourceLanguagesExA | ||
| 357 | EnumResourceLanguagesExW | ||
| 358 | EnumResourceLanguagesW | ||
| 359 | EnumResourceNamesA | ||
| 360 | EnumResourceNamesExA | ||
| 361 | EnumResourceNamesExW | ||
| 362 | EnumResourceNamesW | ||
| 363 | EnumResourceTypesA | ||
| 364 | EnumResourceTypesExA | ||
| 365 | EnumResourceTypesExW | ||
| 366 | EnumResourceTypesW | ||
| 367 | EnumSystemCodePagesA | ||
| 368 | EnumSystemCodePagesW | ||
| 369 | EnumSystemFirmwareTables | ||
| 370 | EnumSystemGeoID | ||
| 371 | EnumSystemGeoNames | ||
| 372 | EnumSystemLanguageGroupsA | ||
| 373 | EnumSystemLanguageGroupsW | ||
| 374 | EnumSystemLocalesA | ||
| 375 | EnumSystemLocalesEx | ||
| 376 | EnumSystemLocalesW | ||
| 377 | EnumTimeFormatsA | ||
| 378 | EnumTimeFormatsEx | ||
| 379 | EnumTimeFormatsW | ||
| 380 | EnumUILanguagesA | ||
| 381 | EnumUILanguagesW | ||
| 382 | EnumerateLocalComputerNamesA | ||
| 383 | EnumerateLocalComputerNamesW | ||
| 384 | EraseTape | ||
| 385 | EscapeCommFunction | ||
| 386 | ExecuteUmsThread | ||
| 387 | ExitProcess | ||
| 388 | ExitThread | ||
| 389 | ExitVDM | ||
| 390 | ExpandEnvironmentStringsA | ||
| 391 | ExpandEnvironmentStringsW | ||
| 392 | ExpungeConsoleCommandHistoryA | ||
| 393 | ExpungeConsoleCommandHistoryW | ||
| 394 | FatalAppExitA | ||
| 395 | FatalAppExitW | ||
| 396 | FatalExit | ||
| 397 | FileTimeToDosDateTime | ||
| 398 | FileTimeToLocalFileTime | ||
| 399 | FileTimeToSystemTime | ||
| 400 | FillConsoleOutputAttribute | ||
| 401 | FillConsoleOutputCharacterA | ||
| 402 | FillConsoleOutputCharacterW | ||
| 403 | FindActCtxSectionGuid | ||
| 404 | FindActCtxSectionGuidWorker | ||
| 405 | FindActCtxSectionStringA | ||
| 406 | FindActCtxSectionStringW | ||
| 407 | FindActCtxSectionStringWWorker | ||
| 408 | FindAtomA | ||
| 409 | FindAtomW | ||
| 410 | FindClose | ||
| 411 | FindCloseChangeNotification | ||
| 412 | FindFirstChangeNotificationA | ||
| 413 | FindFirstChangeNotificationW | ||
| 414 | FindFirstFileA | ||
| 415 | FindFirstFileExA | ||
| 416 | FindFirstFileExW | ||
| 417 | FindFirstFileNameTransactedW | ||
| 418 | FindFirstFileNameW | ||
| 419 | FindFirstFileTransactedA | ||
| 420 | FindFirstFileTransactedW | ||
| 421 | FindFirstFileW | ||
| 422 | FindFirstStreamTransactedW | ||
| 423 | FindFirstStreamW | ||
| 424 | FindFirstVolumeA | ||
| 425 | FindFirstVolumeMountPointA | ||
| 426 | FindFirstVolumeMountPointW | ||
| 427 | FindFirstVolumeW | ||
| 428 | FindNLSString | ||
| 429 | FindNLSStringEx | ||
| 430 | FindNextChangeNotification | ||
| 431 | FindNextFileA | ||
| 432 | FindNextFileNameW | ||
| 433 | FindNextFileW | ||
| 434 | FindNextStreamW | ||
| 435 | FindNextVolumeA | ||
| 436 | FindNextVolumeMountPointA | ||
| 437 | FindNextVolumeMountPointW | ||
| 438 | FindNextVolumeW | ||
| 439 | FindPackagesByPackageFamily | ||
| 440 | FindResourceA | ||
| 441 | FindResourceExA | ||
| 442 | FindResourceExW | ||
| 443 | FindResourceW | ||
| 444 | FindStringOrdinal | ||
| 445 | FindVolumeClose | ||
| 446 | FindVolumeMountPointClose | ||
| 447 | FlsAlloc | ||
| 448 | FlsFree | ||
| 449 | FlsGetValue | ||
| 450 | FlsGetValue2 | ||
| 451 | FlsSetValue | ||
| 452 | FlushConsoleInputBuffer | ||
| 453 | FlushFileBuffers | ||
| 454 | FlushInstructionCache | ||
| 455 | FlushProcessWriteBuffers | ||
| 456 | FlushViewOfFile | ||
| 457 | FoldStringA | ||
| 458 | FoldStringW | ||
| 459 | FormatApplicationUserModelId | ||
| 460 | FormatMessageA | ||
| 461 | FormatMessageW | ||
| 462 | FreeConsole | ||
| 463 | FreeEnvironmentStringsA | ||
| 464 | FreeEnvironmentStringsW | ||
| 465 | FreeLibrary | ||
| 466 | FreeLibraryAndExitThread | ||
| 467 | FreeLibraryWhenCallbackReturns | ||
| 468 | FreeMemoryJobObject | ||
| 469 | FreeResource | ||
| 470 | FreeUserPhysicalPages | ||
| 471 | GenerateConsoleCtrlEvent | ||
| 472 | GetACP | ||
| 473 | GetActiveProcessorCount | ||
| 474 | GetActiveProcessorGroupCount | ||
| 475 | GetAppContainerAce | ||
| 476 | GetAppContainerNamedObjectPath | ||
| 477 | GetApplicationRecoveryCallback | ||
| 478 | GetApplicationRecoveryCallbackWorker | ||
| 479 | GetApplicationRestartSettings | ||
| 480 | GetApplicationRestartSettingsWorker | ||
| 481 | GetApplicationUserModelId | ||
| 482 | GetAtomNameA | ||
| 483 | GetAtomNameW | ||
| 484 | GetBinaryType | ||
| 485 | GetBinaryTypeA | ||
| 486 | GetBinaryTypeW | ||
| 487 | GetCPFileNameFromRegistry | ||
| 488 | GetCPInfo | ||
| 489 | GetCPInfoExA | ||
| 490 | GetCPInfoExW | ||
| 491 | GetCachedSigningLevel | ||
| 492 | GetCalendarDateFormat | ||
| 493 | GetCalendarDateFormatEx | ||
| 494 | GetCalendarDaysInMonth | ||
| 495 | GetCalendarDifferenceInDays | ||
| 496 | GetCalendarInfoA | ||
| 497 | GetCalendarInfoEx | ||
| 498 | GetCalendarInfoW | ||
| 499 | GetCalendarMonthsInYear | ||
| 500 | GetCalendarSupportedDateRange | ||
| 501 | GetCalendarWeekNumber | ||
| 502 | GetComPlusPackageInstallStatus | ||
| 503 | GetCommConfig | ||
| 504 | GetCommMask | ||
| 505 | GetCommModemStatus | ||
| 506 | GetCommProperties | ||
| 507 | GetCommState | ||
| 508 | GetCommTimeouts | ||
| 509 | GetCommandLineA | ||
| 510 | GetCommandLineW | ||
| 511 | GetCompressedFileSizeA | ||
| 512 | GetCompressedFileSizeTransactedA | ||
| 513 | GetCompressedFileSizeTransactedW | ||
| 514 | GetCompressedFileSizeW | ||
| 515 | GetComputerNameA | ||
| 516 | GetComputerNameExA | ||
| 517 | GetComputerNameExW | ||
| 518 | GetComputerNameW | ||
| 519 | GetConsoleAliasA | ||
| 520 | GetConsoleAliasExesA | ||
| 521 | GetConsoleAliasExesLengthA | ||
| 522 | GetConsoleAliasExesLengthW | ||
| 523 | GetConsoleAliasExesW | ||
| 524 | GetConsoleAliasW | ||
| 525 | GetConsoleAliasesA | ||
| 526 | GetConsoleAliasesLengthA | ||
| 527 | GetConsoleAliasesLengthW | ||
| 528 | GetConsoleAliasesW | ||
| 529 | GetConsoleCP | ||
| 530 | GetConsoleCharType | ||
| 531 | GetConsoleCommandHistoryA | ||
| 532 | GetConsoleCommandHistoryLengthA | ||
| 533 | GetConsoleCommandHistoryLengthW | ||
| 534 | GetConsoleCommandHistoryW | ||
| 535 | GetConsoleCursorInfo | ||
| 536 | GetConsoleCursorMode | ||
| 537 | GetConsoleDisplayMode | ||
| 538 | GetConsoleFontInfo | ||
| 539 | GetConsoleFontSize | ||
| 540 | GetConsoleHardwareState | ||
| 541 | GetConsoleHistoryInfo | ||
| 542 | GetConsoleInputExeNameA | ||
| 543 | GetConsoleInputExeNameW | ||
| 544 | GetConsoleInputWaitHandle | ||
| 545 | GetConsoleKeyboardLayoutNameA | ||
| 546 | GetConsoleKeyboardLayoutNameW | ||
| 547 | GetConsoleMode | ||
| 548 | GetConsoleNlsMode | ||
| 549 | GetConsoleOriginalTitleA | ||
| 550 | GetConsoleOriginalTitleW | ||
| 551 | GetConsoleOutputCP | ||
| 552 | GetConsoleProcessList | ||
| 553 | GetConsoleScreenBufferInfo | ||
| 554 | GetConsoleScreenBufferInfoEx | ||
| 555 | GetConsoleSelectionInfo | ||
| 556 | GetConsoleTitleA | ||
| 557 | GetConsoleTitleW | ||
| 558 | GetConsoleWindow | ||
| 559 | GetCurrencyFormatA | ||
| 560 | GetCurrencyFormatEx | ||
| 561 | GetCurrencyFormatW | ||
| 562 | GetCurrentActCtx | ||
| 563 | GetCurrentActCtxWorker | ||
| 564 | GetCurrentApplicationUserModelId | ||
| 565 | GetCurrentConsoleFont | ||
| 566 | GetCurrentConsoleFontEx | ||
| 567 | GetCurrentDirectoryA | ||
| 568 | GetCurrentDirectoryW | ||
| 569 | GetCurrentPackageFamilyName | ||
| 570 | GetCurrentPackageFullName | ||
| 571 | GetCurrentPackageId | ||
| 572 | GetCurrentPackageInfo | ||
| 573 | GetCurrentPackagePath | ||
| 574 | GetCurrentPackageVirtualizationContext | ||
| 575 | GetCurrentProcess | ||
| 576 | GetCurrentProcessId | ||
| 577 | GetCurrentProcessorNumber | ||
| 578 | GetCurrentProcessorNumberEx | ||
| 579 | GetCurrentThread | ||
| 580 | GetCurrentThreadId | ||
| 581 | GetCurrentThreadStackLimits | ||
| 582 | GetCurrentUmsThread | ||
| 583 | GetDateFormatA | ||
| 584 | GetDateFormatAWorker | ||
| 585 | GetDateFormatEx | ||
| 586 | GetDateFormatW | ||
| 587 | GetDateFormatWWorker | ||
| 588 | GetDefaultCommConfigA | ||
| 589 | GetDefaultCommConfigW | ||
| 590 | GetDefaultSortkeySize | ||
| 591 | GetDevicePowerState | ||
| 592 | GetDiskFreeSpaceA | ||
| 593 | GetDiskFreeSpaceExA | ||
| 594 | GetDiskFreeSpaceExW | ||
| 595 | GetDiskFreeSpaceW | ||
| 596 | GetDiskSpaceInformationA | ||
| 597 | GetDiskSpaceInformationW | ||
| 598 | GetDllDirectoryA | ||
| 599 | GetDllDirectoryW | ||
| 600 | GetDriveTypeA | ||
| 601 | GetDriveTypeW | ||
| 602 | GetDurationFormat | ||
| 603 | GetDurationFormatEx | ||
| 604 | GetDynamicTimeZoneInformation | ||
| 605 | GetEnabledExtendedFeatures | ||
| 606 | GetEnabledXStateFeatures | ||
| 607 | GetEncryptedFileVersionExt | ||
| 608 | GetEnvironmentStrings | ||
| 609 | GetEnvironmentStringsA | ||
| 610 | GetEnvironmentStringsW | ||
| 611 | GetEnvironmentVariableA | ||
| 612 | GetEnvironmentVariableW | ||
| 613 | GetEraNameCountedString | ||
| 614 | GetErrorMode | ||
| 615 | GetExitCodeProcess | ||
| 616 | GetExitCodeThread | ||
| 617 | GetExpandedNameA | ||
| 618 | GetExpandedNameW | ||
| 619 | GetExtendedContextLength | ||
| 620 | GetExtendedFeaturesMask | ||
| 621 | GetFileAttributesA | ||
| 622 | GetFileAttributesExA | ||
| 623 | GetFileAttributesExW | ||
| 624 | GetFileAttributesTransactedA | ||
| 625 | GetFileAttributesTransactedW | ||
| 626 | GetFileAttributesW | ||
| 627 | GetFileBandwidthReservation | ||
| 628 | GetFileInformationByHandle | ||
| 629 | GetFileInformationByHandleEx | ||
| 630 | GetFileInformationByName | ||
| 631 | GetFileMUIInfo | ||
| 632 | GetFileMUIPath | ||
| 633 | GetFileSize | ||
| 634 | GetFileSizeEx | ||
| 635 | GetFileTime | ||
| 636 | GetFileType | ||
| 637 | GetFinalPathNameByHandleA | ||
| 638 | GetFinalPathNameByHandleW | ||
| 639 | GetFirmwareEnvironmentVariableA | ||
| 640 | GetFirmwareEnvironmentVariableExA | ||
| 641 | GetFirmwareEnvironmentVariableExW | ||
| 642 | GetFirmwareEnvironmentVariableW | ||
| 643 | GetFirmwareType | ||
| 644 | GetFullPathNameA | ||
| 645 | GetFullPathNameTransactedA | ||
| 646 | GetFullPathNameTransactedW | ||
| 647 | GetFullPathNameW | ||
| 648 | GetGeoInfoA | ||
| 649 | GetGeoInfoW | ||
| 650 | GetGeoInfoEx | ||
| 651 | GetHandleInformation | ||
| 652 | GetIoRingInfo | ||
| 653 | GetLargePageMinimum | ||
| 654 | GetLargestConsoleWindowSize | ||
| 655 | GetLastError | ||
| 656 | GetLinguistLangSize | ||
| 657 | GetLocalTime | ||
| 658 | GetLocaleInfoA | ||
| 659 | GetLocaleInfoEx | ||
| 660 | GetLocaleInfoW | ||
| 661 | GetLogicalDriveStringsA | ||
| 662 | GetLogicalDriveStringsW | ||
| 663 | GetLogicalDrives | ||
| 664 | GetLogicalProcessorInformation | ||
| 665 | GetLogicalProcessorInformationEx | ||
| 666 | GetLongPathNameA | ||
| 667 | GetLongPathNameTransactedA | ||
| 668 | GetLongPathNameTransactedW | ||
| 669 | GetLongPathNameW | ||
| 670 | GetMachineTypeAttributes | ||
| 671 | GetMailslotInfo | ||
| 672 | GetMaximumProcessorCount | ||
| 673 | GetMaximumProcessorGroupCount | ||
| 674 | GetMemoryErrorHandlingCapabilities | ||
| 675 | GetModuleFileNameA | ||
| 676 | GetModuleFileNameW | ||
| 677 | GetModuleHandleA | ||
| 678 | GetModuleHandleExA | ||
| 679 | GetModuleHandleExW | ||
| 680 | GetModuleHandleW | ||
| 681 | GetNLSVersion | ||
| 682 | GetNLSVersionEx | ||
| 683 | GetNamedPipeAttribute | ||
| 684 | GetNamedPipeClientComputerNameA | ||
| 685 | GetNamedPipeClientComputerNameW | ||
| 686 | GetNamedPipeClientProcessId | ||
| 687 | GetNamedPipeClientSessionId | ||
| 688 | GetNamedPipeHandleStateA | ||
| 689 | GetNamedPipeHandleStateW | ||
| 690 | GetNamedPipeInfo | ||
| 691 | GetNamedPipeServerProcessId | ||
| 692 | GetNamedPipeServerSessionId | ||
| 693 | GetNativeSystemInfo | ||
| 694 | GetNextUmsListItem | ||
| 695 | GetNextVDMCommand | ||
| 696 | GetNlsSectionName | ||
| 697 | GetNumaAvailableMemoryNode | ||
| 698 | GetNumaAvailableMemoryNodeEx | ||
| 699 | GetNumaHighestNodeNumber | ||
| 700 | GetNumaNodeNumberFromHandle | ||
| 701 | GetNumaNodeProcessorMask | ||
| 702 | GetNumaNodeProcessorMask2 | ||
| 703 | GetNumaNodeProcessorMaskEx | ||
| 704 | GetNumaProcessorNode | ||
| 705 | GetNumaProcessorNodeEx | ||
| 706 | GetNumaProximityNode | ||
| 707 | GetNumaProximityNodeEx | ||
| 708 | GetNumberFormatA | ||
| 709 | GetNumberFormatEx | ||
| 710 | GetNumberFormatW | ||
| 711 | GetNumberOfConsoleFonts | ||
| 712 | GetNumberOfConsoleInputEvents | ||
| 713 | GetNumberOfConsoleMouseButtons | ||
| 714 | GetOEMCP | ||
| 715 | GetOverlappedResult | ||
| 716 | GetOverlappedResultEx | ||
| 717 | GetPackageApplicationIds | ||
| 718 | GetPackageFamilyName | ||
| 719 | GetPackageFullName | ||
| 720 | GetPackageId | ||
| 721 | GetPackageInfo | ||
| 722 | GetPackagePath | ||
| 723 | GetPackagePathByFullName | ||
| 724 | GetPackagesByPackageFamily | ||
| 725 | GetPhysicallyInstalledSystemMemory | ||
| 726 | GetPriorityClass | ||
| 727 | GetPrivateProfileIntA | ||
| 728 | GetPrivateProfileIntW | ||
| 729 | GetPrivateProfileSectionA | ||
| 730 | GetPrivateProfileSectionNamesA | ||
| 731 | GetPrivateProfileSectionNamesW | ||
| 732 | GetPrivateProfileSectionW | ||
| 733 | GetPrivateProfileStringA | ||
| 734 | GetPrivateProfileStringW | ||
| 735 | GetPrivateProfileStructA | ||
| 736 | GetPrivateProfileStructW | ||
| 737 | GetProcAddress | ||
| 738 | GetProcessAffinityMask | ||
| 739 | GetProcessDefaultCpuSetMasks | ||
| 740 | GetProcessDefaultCpuSets | ||
| 741 | GetProcessDEPPolicy | ||
| 742 | GetProcessGroupAffinity | ||
| 743 | GetProcessHandleCount | ||
| 744 | GetProcessHeap | ||
| 745 | GetProcessHeaps | ||
| 746 | GetProcessId | ||
| 747 | GetProcessIdOfThread | ||
| 748 | GetProcessInformation | ||
| 749 | GetProcessIoCounters | ||
| 750 | GetProcessMitigationPolicy | ||
| 751 | GetProcessPreferredUILanguages | ||
| 752 | GetProcessPriorityBoost | ||
| 753 | GetProcessShutdownParameters | ||
| 754 | GetProcessTimes | ||
| 755 | GetProcessVersion | ||
| 756 | GetProcessWorkingSetSize | ||
| 757 | GetProcessWorkingSetSizeEx | ||
| 758 | GetProcessesInVirtualizationContext | ||
| 759 | GetProcessorSystemCycleTime | ||
| 760 | GetProductInfo | ||
| 761 | GetProfileIntA | ||
| 762 | GetProfileIntW | ||
| 763 | GetProfileSectionA | ||
| 764 | GetProfileSectionW | ||
| 765 | GetProfileStringA | ||
| 766 | GetProfileStringW | ||
| 767 | GetQueuedCompletionStatus | ||
| 768 | GetQueuedCompletionStatusEx | ||
| 769 | GetShortPathNameA | ||
| 770 | GetShortPathNameW | ||
| 771 | GetStagedPackagePathByFullName | ||
| 772 | GetStartupInfoA | ||
| 773 | GetStartupInfoW | ||
| 774 | GetStateFolder | ||
| 775 | GetStdHandle | ||
| 776 | GetStringScripts | ||
| 777 | GetStringTypeA | ||
| 778 | GetStringTypeExA | ||
| 779 | GetStringTypeExW | ||
| 780 | GetStringTypeW | ||
| 781 | GetSystemAppDataKey | ||
| 782 | GetSystemCpuSetInformation | ||
| 783 | GetSystemDEPPolicy | ||
| 784 | GetSystemDefaultLCID | ||
| 785 | GetSystemDefaultLangID | ||
| 786 | GetSystemDefaultLocaleName | ||
| 787 | GetSystemDefaultUILanguage | ||
| 788 | GetSystemDirectoryA | ||
| 789 | GetSystemDirectoryW | ||
| 790 | GetSystemFileCacheSize | ||
| 791 | GetSystemFirmwareTable | ||
| 792 | GetSystemInfo | ||
| 793 | GetSystemPowerStatus | ||
| 794 | GetSystemPreferredUILanguages | ||
| 795 | GetSystemRegistryQuota | ||
| 796 | GetSystemTime | ||
| 797 | GetSystemTimeAdjustment | ||
| 798 | GetSystemTimeAsFileTime | ||
| 799 | GetSystemTimePreciseAsFileTime | ||
| 800 | GetSystemTimes | ||
| 801 | GetSystemWindowsDirectoryA | ||
| 802 | GetSystemWindowsDirectoryW | ||
| 803 | GetSystemWow64DirectoryA | ||
| 804 | GetSystemWow64DirectoryW | ||
| 805 | GetTapeParameters | ||
| 806 | GetTapePosition | ||
| 807 | GetTapeStatus | ||
| 808 | GetTempFileNameA | ||
| 809 | GetTempFileNameW | ||
| 810 | GetTempPathA | ||
| 811 | GetTempPathW | ||
| 812 | GetTempPath2A | ||
| 813 | GetTempPath2W | ||
| 814 | GetThreadContext | ||
| 815 | GetThreadDescription | ||
| 816 | GetThreadEnabledXStateFeatures | ||
| 817 | GetThreadErrorMode | ||
| 818 | GetThreadGroupAffinity | ||
| 819 | GetThreadIOPendingFlag | ||
| 820 | GetThreadId | ||
| 821 | GetThreadIdealProcessorEx | ||
| 822 | GetThreadInformation | ||
| 823 | GetThreadLocale | ||
| 824 | GetThreadPreferredUILanguages | ||
| 825 | GetThreadPriority | ||
| 826 | GetThreadPriorityBoost | ||
| 827 | GetThreadSelectedCpuSetMasks | ||
| 828 | GetThreadSelectedCpuSets | ||
| 829 | GetThreadSelectorEntry | ||
| 830 | GetThreadTimes | ||
| 831 | GetThreadUILanguage | ||
| 832 | GetTickCount | ||
| 833 | GetTickCount64 | ||
| 834 | GetTimeFormatA | ||
| 835 | GetTimeFormatAWorker | ||
| 836 | GetTimeFormatEx | ||
| 837 | GetTimeFormatW | ||
| 838 | GetTimeFormatWWorker | ||
| 839 | GetTimeZoneInformation | ||
| 840 | GetTimeZoneInformationForYear | ||
| 841 | GetUILanguageInfo | ||
| 842 | GetUmsCompletionListEvent | ||
| 843 | GetUmsSystemThreadInformation | ||
| 844 | GetUserDefaultGeoName | ||
| 845 | GetUserDefaultLCID | ||
| 846 | GetUserDefaultLangID | ||
| 847 | GetUserDefaultLocaleName | ||
| 848 | GetUserDefaultUILanguage | ||
| 849 | GetUserGeoID | ||
| 850 | GetUserPreferredUILanguages | ||
| 851 | GetVDMCurrentDirectories | ||
| 852 | GetVersion | ||
| 853 | GetVersionExA | ||
| 854 | GetVersionExW | ||
| 855 | GetVolumeInformationA | ||
| 856 | GetVolumeInformationByHandleW | ||
| 857 | GetVolumeInformationW | ||
| 858 | GetVolumeNameForVolumeMountPointA | ||
| 859 | GetVolumeNameForVolumeMountPointW | ||
| 860 | GetVolumePathNameA | ||
| 861 | GetVolumePathNameW | ||
| 862 | GetVolumePathNamesForVolumeNameA | ||
| 863 | GetVolumePathNamesForVolumeNameW | ||
| 864 | GetWindowsDirectoryA | ||
| 865 | GetWindowsDirectoryW | ||
| 866 | GetWriteWatch | ||
| 867 | GetXStateFeaturesMask | ||
| 868 | GlobalAddAtomA | ||
| 869 | GlobalAddAtomExA | ||
| 870 | GlobalAddAtomExW | ||
| 871 | GlobalAddAtomW | ||
| 872 | GlobalAlloc | ||
| 873 | GlobalCompact | ||
| 874 | GlobalDeleteAtom | ||
| 875 | GlobalFindAtomA | ||
| 876 | GlobalFindAtomW | ||
| 877 | GlobalFix | ||
| 878 | GlobalFlags | ||
| 879 | GlobalFree | ||
| 880 | GlobalGetAtomNameA | ||
| 881 | GlobalGetAtomNameW | ||
| 882 | GlobalHandle | ||
| 883 | GlobalLock | ||
| 884 | GlobalMemoryStatus | ||
| 885 | GlobalMemoryStatusEx | ||
| 886 | GlobalReAlloc | ||
| 887 | GlobalSize | ||
| 888 | GlobalUnWire | ||
| 889 | GlobalUnfix | ||
| 890 | GlobalUnlock | ||
| 891 | GlobalWire | ||
| 892 | Heap32First | ||
| 893 | Heap32ListFirst | ||
| 894 | Heap32ListNext | ||
| 895 | Heap32Next | ||
| 896 | HeapAlloc | ||
| 897 | HeapCompact | ||
| 898 | HeapCreate | ||
| 899 | HeapCreateTagsW | ||
| 900 | HeapDestroy | ||
| 901 | HeapExtend | ||
| 902 | HeapFree | ||
| 903 | HeapLock | ||
| 904 | HeapQueryInformation | ||
| 905 | HeapQueryTagW | ||
| 906 | HeapReAlloc | ||
| 907 | HeapSetInformation | ||
| 908 | HeapSize | ||
| 909 | HeapSummary | ||
| 910 | HeapUnlock | ||
| 911 | HeapUsage | ||
| 912 | HeapValidate | ||
| 913 | HeapWalk | ||
| 914 | IdnToAscii | ||
| 915 | IdnToNameprepUnicode | ||
| 916 | IdnToUnicode | ||
| 917 | InitAtomTable | ||
| 918 | InitOnceBeginInitialize | ||
| 919 | InitOnceComplete | ||
| 920 | InitOnceExecuteOnce | ||
| 921 | InitOnceInitialize | ||
| 922 | InitializeConditionVariable | ||
| 923 | InitializeContext | ||
| 924 | InitializeContext2 | ||
| 925 | InitializeCriticalSection | ||
| 926 | InitializeCriticalSectionAndSpinCount | ||
| 927 | InitializeCriticalSectionEx | ||
| 928 | InitializeEnclave | ||
| 929 | InitializeExtendedContext | ||
| 930 | InitializeProcThreadAttributeList | ||
| 931 | InitializeSListHead | ||
| 932 | InitializeSRWLock | ||
| 933 | InitializeSynchronizationBarrier | ||
| 934 | InstallELAMCertificateInfo | ||
| 935 | InterlockedFlushSList | ||
| 936 | InterlockedPopEntrySList | ||
| 937 | InterlockedPushEntrySList | ||
| 938 | InterlockedPushListSList | ||
| 939 | InterlockedPushListSListEx | ||
| 940 | InvalidateConsoleDIBits | ||
| 941 | IsBadCodePtr | ||
| 942 | IsBadHugeReadPtr | ||
| 943 | IsBadHugeWritePtr | ||
| 944 | IsBadReadPtr | ||
| 945 | IsBadStringPtrA | ||
| 946 | IsBadStringPtrW | ||
| 947 | IsBadWritePtr | ||
| 948 | IsCalendarLeapDay | ||
| 949 | IsCalendarLeapMonth | ||
| 950 | IsCalendarLeapYear | ||
| 951 | IsDBCSLeadByte | ||
| 952 | IsDBCSLeadByteEx | ||
| 953 | IsDebuggerPresent | ||
| 954 | IsEnclaveTypeSupported | ||
| 955 | IsIoRingOpSupported | ||
| 956 | IsNLSDefinedString | ||
| 957 | IsNativeVhdBoot | ||
| 958 | IsNormalizedString | ||
| 959 | IsProcessCritical | ||
| 960 | IsProcessInJob | ||
| 961 | IsProcessorFeaturePresent | ||
| 962 | IsSystemResumeAutomatic | ||
| 963 | IsThreadAFiber | ||
| 964 | IsThreadpoolTimerSet | ||
| 965 | IsTimeZoneRedirectionEnabled | ||
| 966 | IsUserCetAvailableInEnvironment | ||
| 967 | IsValidCalDateTime | ||
| 968 | IsValidCodePage | ||
| 969 | IsValidLanguageGroup | ||
| 970 | IsValidLocale | ||
| 971 | IsValidUILanguage | ||
| 972 | IsValidLocaleName | ||
| 973 | IsValidNLSVersion | ||
| 974 | IsWow64GuestMachineSupported | ||
| 975 | IsWow64Process | ||
| 976 | IsWow64Process2 | ||
| 977 | K32EmptyWorkingSet | ||
| 978 | K32EnumDeviceDrivers | ||
| 979 | K32EnumPageFilesA | ||
| 980 | K32EnumPageFilesW | ||
| 981 | K32EnumProcessModules | ||
| 982 | K32EnumProcessModulesEx | ||
| 983 | K32EnumProcesses | ||
| 984 | K32GetDeviceDriverBaseNameA | ||
| 985 | K32GetDeviceDriverBaseNameW | ||
| 986 | K32GetDeviceDriverFileNameA | ||
| 987 | K32GetDeviceDriverFileNameW | ||
| 988 | K32GetMappedFileNameA | ||
| 989 | K32GetMappedFileNameW | ||
| 990 | K32GetModuleBaseNameA | ||
| 991 | K32GetModuleBaseNameW | ||
| 992 | K32GetModuleFileNameExA | ||
| 993 | K32GetModuleFileNameExW | ||
| 994 | K32GetModuleInformation | ||
| 995 | K32GetPerformanceInfo | ||
| 996 | K32GetProcessImageFileNameA | ||
| 997 | K32GetProcessImageFileNameW | ||
| 998 | K32GetProcessMemoryInfo | ||
| 999 | K32GetWsChanges | ||
| 1000 | K32GetWsChangesEx | ||
| 1001 | K32InitializeProcessForWsWatch | ||
| 1002 | K32QueryWorkingSet | ||
| 1003 | K32QueryWorkingSetEx | ||
| 1004 | LCIDToLocaleName | ||
| 1005 | LCMapStringA | ||
| 1006 | LCMapStringEx | ||
| 1007 | LCMapStringW | ||
| 1008 | LZClose | ||
| 1009 | LZCloseFile | ||
| 1010 | LZCopy | ||
| 1011 | LZCreateFileW | ||
| 1012 | LZDone | ||
| 1013 | LZInit | ||
| 1014 | LZOpenFileA | ||
| 1015 | LZOpenFileW | ||
| 1016 | LZRead | ||
| 1017 | LZSeek | ||
| 1018 | LZStart | ||
| 1019 | LeaveCriticalSection | ||
| 1020 | LeaveCriticalSectionWhenCallbackReturns | ||
| 1021 | LoadAppInitDlls | ||
| 1022 | LoadEnclaveData | ||
| 1023 | LoadLibraryA | ||
| 1024 | LoadLibraryExA | ||
| 1025 | LoadLibraryExW | ||
| 1026 | LoadLibraryW | ||
| 1027 | LoadModule | ||
| 1028 | LoadPackagedLibrary | ||
| 1029 | LoadResource | ||
| 1030 | LoadStringBaseExW | ||
| 1031 | LoadStringBaseW | ||
| 1032 | LocalAlloc | ||
| 1033 | LocalCompact | ||
| 1034 | LocalFileTimeToFileTime | ||
| 1035 | LocalFileTimeToLocalSystemTime | ||
| 1036 | LocalFlags | ||
| 1037 | LocalFree | ||
| 1038 | LocalHandle | ||
| 1039 | LocalLock | ||
| 1040 | LocalReAlloc | ||
| 1041 | LocalShrink | ||
| 1042 | LocalSize | ||
| 1043 | LocalSystemTimeToLocalFileTime | ||
| 1044 | LocalUnlock | ||
| 1045 | LocaleNameToLCID | ||
| 1046 | LocateExtendedFeature | ||
| 1047 | LocateLegacyContext | ||
| 1048 | LocateXStateFeature | ||
| 1049 | LockFile | ||
| 1050 | LockFileEx | ||
| 1051 | LockResource | ||
| 1052 | MapUserPhysicalPages | ||
| 1053 | MapUserPhysicalPagesScatter | ||
| 1054 | MapViewOfFile | ||
| 1055 | MapViewOfFileEx | ||
| 1056 | MapViewOfFileExNuma | ||
| 1057 | MapViewOfFileFromApp | ||
| 1058 | Module32First | ||
| 1059 | Module32FirstW | ||
| 1060 | Module32Next | ||
| 1061 | Module32NextW | ||
| 1062 | MoveFileA | ||
| 1063 | MoveFileExA | ||
| 1064 | MoveFileExW | ||
| 1065 | MoveFileTransactedA | ||
| 1066 | MoveFileTransactedW | ||
| 1067 | MoveFileW | ||
| 1068 | MoveFileWithProgressA | ||
| 1069 | MoveFileWithProgressW | ||
| 1070 | MulDiv | ||
| 1071 | MultiByteToWideChar | ||
| 1072 | NeedCurrentDirectoryForExePathA | ||
| 1073 | NeedCurrentDirectoryForExePathW | ||
| 1074 | NlsConvertIntegerToString | ||
| 1075 | NlsCheckPolicy | ||
| 1076 | NlsEventDataDescCreate | ||
| 1077 | NlsGetCacheUpdateCount | ||
| 1078 | NlsUpdateLocale | ||
| 1079 | NlsUpdateSystemLocale | ||
| 1080 | NlsResetProcessLocale | ||
| 1081 | NlsWriteEtwEvent | ||
| 1082 | NormalizeString | ||
| 1083 | NotifyMountMgr | ||
| 1084 | NotifyUILanguageChange | ||
| 1085 | NtVdm64CreateProcessInternalW | ||
| 1086 | OOBEComplete | ||
| 1087 | OfferVirtualMemory | ||
| 1088 | OpenConsoleW | ||
| 1089 | OpenConsoleWStub | ||
| 1090 | OpenDataFile | ||
| 1091 | OpenEventA | ||
| 1092 | OpenEventW | ||
| 1093 | OpenFile | ||
| 1094 | OpenFileById | ||
| 1095 | OpenFileMappingA | ||
| 1096 | OpenFileMappingW | ||
| 1097 | OpenJobObjectA | ||
| 1098 | OpenJobObjectW | ||
| 1099 | OpenMutexA | ||
| 1100 | OpenMutexW | ||
| 1101 | OpenPackageInfoByFullName | ||
| 1102 | OpenPrivateNamespaceA | ||
| 1103 | OpenPrivateNamespaceW | ||
| 1104 | OpenProcess | ||
| 1105 | ; MSDN says OpenProcessToken is from Advapi32.dll, not Kernel32.dll | ||
| 1106 | ; OpenProcessToken | ||
| 1107 | OpenProfileUserMapping | ||
| 1108 | OpenSemaphoreA | ||
| 1109 | OpenSemaphoreW | ||
| 1110 | OpenState | ||
| 1111 | OpenStateExplicit | ||
| 1112 | OpenThread | ||
| 1113 | ; MSDN says this is exported from ADVAPI32.DLL. | ||
| 1114 | ; OpenThreadToken | ||
| 1115 | OpenWaitableTimerA | ||
| 1116 | OpenWaitableTimerW | ||
| 1117 | OutputDebugStringA | ||
| 1118 | OutputDebugStringW | ||
| 1119 | PackageFamilyNameFromFullName | ||
| 1120 | PackageFamilyNameFromId | ||
| 1121 | PackageFullNameFromId | ||
| 1122 | PackageIdFromFullName | ||
| 1123 | PackageNameAndPublisherIdFromFamilyName | ||
| 1124 | ParseApplicationUserModelId | ||
| 1125 | PeekConsoleInputA | ||
| 1126 | PeekConsoleInputW | ||
| 1127 | PeekNamedPipe | ||
| 1128 | PopIoRingCompletion | ||
| 1129 | PostQueuedCompletionStatus | ||
| 1130 | PowerClearRequest | ||
| 1131 | PowerCreateRequest | ||
| 1132 | PowerSetRequest | ||
| 1133 | PrefetchVirtualMemory | ||
| 1134 | PrepareTape | ||
| 1135 | PrivCopyFileExW | ||
| 1136 | PrivMoveFileIdentityW | ||
| 1137 | Process32First | ||
| 1138 | Process32FirstW | ||
| 1139 | Process32Next | ||
| 1140 | Process32NextW | ||
| 1141 | ProcessIdToSessionId | ||
| 1142 | PssCaptureSnapshot | ||
| 1143 | PssDuplicateSnapshot | ||
| 1144 | PssFreeSnapshot | ||
| 1145 | PssQuerySnapshot | ||
| 1146 | PssWalkMarkerCreate | ||
| 1147 | PssWalkMarkerFree | ||
| 1148 | PssWalkMarkerGetPosition | ||
| 1149 | PssWalkMarkerRewind | ||
| 1150 | PssWalkMarkerSeek | ||
| 1151 | PssWalkMarkerSeekToBeginning | ||
| 1152 | PssWalkMarkerSetPosition | ||
| 1153 | PssWalkMarkerTell | ||
| 1154 | PssWalkSnapshot | ||
| 1155 | PulseEvent | ||
| 1156 | PurgeComm | ||
| 1157 | QueryActCtxSettingsW | ||
| 1158 | QueryActCtxSettingsWWorker | ||
| 1159 | QueryActCtxW | ||
| 1160 | QueryActCtxWWorker | ||
| 1161 | QueryDepthSList | ||
| 1162 | QueryDosDeviceA | ||
| 1163 | QueryDosDeviceW | ||
| 1164 | QueryFullProcessImageNameA | ||
| 1165 | QueryFullProcessImageNameW | ||
| 1166 | QueryIdleProcessorCycleTime | ||
| 1167 | QueryIdleProcessorCycleTimeEx | ||
| 1168 | QueryInformationJobObject | ||
| 1169 | QueryIoRateControlInformationJobObject | ||
| 1170 | QueryIoRingCapabilities | ||
| 1171 | QueryMemoryResourceNotification | ||
| 1172 | QueryPerformanceCounter | ||
| 1173 | QueryPerformanceFrequency | ||
| 1174 | QueryProcessAffinityUpdateMode | ||
| 1175 | QueryProcessCycleTime | ||
| 1176 | QueryProtectedPolicy | ||
| 1177 | QueryThreadCycleTime | ||
| 1178 | QueryThreadProfiling | ||
| 1179 | QueryThreadpoolStackInformation | ||
| 1180 | QueryUmsThreadInformation | ||
| 1181 | QueryUnbiasedInterruptTime | ||
| 1182 | QueueUserAPC | ||
| 1183 | QueueUserAPC2 | ||
| 1184 | QueueUserWorkItem | ||
| 1185 | QuirkGetData2Worker | ||
| 1186 | QuirkGetDataWorker | ||
| 1187 | QuirkIsEnabled2Worker | ||
| 1188 | QuirkIsEnabled3Worker | ||
| 1189 | QuirkIsEnabledForPackage2Worker | ||
| 1190 | QuirkIsEnabledForPackage3Worker | ||
| 1191 | QuirkIsEnabledForPackage4Worker | ||
| 1192 | QuirkIsEnabledForPackageWorker | ||
| 1193 | QuirkIsEnabledForProcessWorker | ||
| 1194 | QuirkIsEnabledWorker | ||
| 1195 | RaiseException | ||
| 1196 | RaiseFailFastException | ||
| 1197 | RaiseInvalid16BitExeError | ||
| 1198 | ReOpenFile | ||
| 1199 | ReclaimVirtualMemory | ||
| 1200 | ReadConsoleA | ||
| 1201 | ReadConsoleInputA | ||
| 1202 | ReadConsoleInputExA | ||
| 1203 | ReadConsoleInputExW | ||
| 1204 | ReadConsoleInputW | ||
| 1205 | ReadConsoleOutputA | ||
| 1206 | ReadConsoleOutputAttribute | ||
| 1207 | ReadConsoleOutputCharacterA | ||
| 1208 | ReadConsoleOutputCharacterW | ||
| 1209 | ReadConsoleOutputW | ||
| 1210 | ReadConsoleW | ||
| 1211 | ReadDirectoryChangesExW | ||
| 1212 | ReadDirectoryChangesW | ||
| 1213 | ReadFile | ||
| 1214 | ReadFileEx | ||
| 1215 | ReadFileScatter | ||
| 1216 | ReadProcessMemory | ||
| 1217 | ReadThreadProfilingData | ||
| 1218 | ; | ||
| 1219 | ; MSDN says these functions are exported | ||
| 1220 | ; from advapi32.dll. Commented out for | ||
| 1221 | ; compatibility with older versions of | ||
| 1222 | ; Windows. | ||
| 1223 | ; | ||
| 1224 | ; RegKrnGetGlobalState and RegKrnInitialize | ||
| 1225 | ; are known exceptions. | ||
| 1226 | ; | ||
| 1227 | ;RegCloseKey | ||
| 1228 | ;RegCopyTreeW | ||
| 1229 | ;RegCreateKeyExA | ||
| 1230 | ;RegCreateKeyExW | ||
| 1231 | ;RegDeleteKeyExA | ||
| 1232 | ;RegDeleteKeyExW | ||
| 1233 | ;RegDeleteTreeA | ||
| 1234 | ;RegDeleteTreeW | ||
| 1235 | ;RegDeleteValueA | ||
| 1236 | ;RegDeleteValueW | ||
| 1237 | ;RegDisablePredefinedCacheEx | ||
| 1238 | ;RegEnumKeyExA | ||
| 1239 | ;RegEnumKeyExW | ||
| 1240 | ;RegEnumValueA | ||
| 1241 | ;RegEnumValueW | ||
| 1242 | ;RegFlushKey | ||
| 1243 | ;RegGetKeySecurity | ||
| 1244 | ;RegGetValueA | ||
| 1245 | ;RegGetValueW | ||
| 1246 | RegKrnGetGlobalState | ||
| 1247 | RegKrnInitialize | ||
| 1248 | ;RegLoadKeyA | ||
| 1249 | ;RegLoadKeyW | ||
| 1250 | ;RegLoadMUIStringA | ||
| 1251 | ;RegLoadMUIStringW | ||
| 1252 | ;RegNotifyChangeKeyValue | ||
| 1253 | ;RegOpenCurrentUser | ||
| 1254 | ;RegOpenKeyExA | ||
| 1255 | ;RegOpenKeyExW | ||
| 1256 | ;RegOpenUserClassesRoot | ||
| 1257 | ;RegQueryInfoKeyA | ||
| 1258 | ;RegQueryInfoKeyW | ||
| 1259 | ;RegQueryValueExA | ||
| 1260 | ;RegQueryValueExW | ||
| 1261 | ;RegRestoreKeyA | ||
| 1262 | ;RegRestoreKeyW | ||
| 1263 | ;RegSaveKeyExA | ||
| 1264 | ;RegSaveKeyExW | ||
| 1265 | ;RegSetKeySecurity | ||
| 1266 | ;RegSetValueExA | ||
| 1267 | ;RegSetValueExW | ||
| 1268 | ;RegUnLoadKeyA | ||
| 1269 | ;RegUnLoadKeyW | ||
| 1270 | RegisterApplicationRecoveryCallback | ||
| 1271 | RegisterApplicationRestart | ||
| 1272 | RegisterBadMemoryNotification | ||
| 1273 | RegisterConsoleIME | ||
| 1274 | RegisterConsoleOS2 | ||
| 1275 | RegisterConsoleVDM | ||
| 1276 | RegisterWaitForInputIdle | ||
| 1277 | RegisterWaitForSingleObject | ||
| 1278 | RegisterWaitForSingleObjectEx | ||
| 1279 | RegisterWaitUntilOOBECompleted | ||
| 1280 | RegisterWowBaseHandlers | ||
| 1281 | RegisterWowExec | ||
| 1282 | ReleaseActCtx | ||
| 1283 | ReleaseActCtxWorker | ||
| 1284 | ReleaseMutex | ||
| 1285 | ReleaseMutexWhenCallbackReturns | ||
| 1286 | ReleasePackageVirtualizationContext | ||
| 1287 | ReleasePseudoConsole | ||
| 1288 | ReleaseSRWLockExclusive | ||
| 1289 | ReleaseSRWLockShared | ||
| 1290 | ReleaseSemaphore | ||
| 1291 | ReleaseSemaphoreWhenCallbackReturns | ||
| 1292 | RemoveDirectoryA | ||
| 1293 | RemoveDirectoryTransactedA | ||
| 1294 | RemoveDirectoryTransactedW | ||
| 1295 | RemoveDirectoryW | ||
| 1296 | RemoveDllDirectory | ||
| 1297 | RemoveLocalAlternateComputerNameA | ||
| 1298 | RemoveLocalAlternateComputerNameW | ||
| 1299 | RemoveSecureMemoryCacheCallback | ||
| 1300 | RemoveVectoredContinueHandler | ||
| 1301 | RemoveVectoredExceptionHandler | ||
| 1302 | ReplaceFile | ||
| 1303 | ReplaceFileA | ||
| 1304 | ReplaceFileW | ||
| 1305 | ReplacePartitionUnit | ||
| 1306 | RequestDeviceWakeup | ||
| 1307 | RequestWakeupLatency | ||
| 1308 | ResetEvent | ||
| 1309 | ResetWriteWatch | ||
| 1310 | ResizePseudoConsole | ||
| 1311 | ResolveDelayLoadedAPI | ||
| 1312 | ResolveDelayLoadsFromDll | ||
| 1313 | ResolveLocaleName | ||
| 1314 | RestoreLastError | ||
| 1315 | ResumeThread | ||
| 1316 | RtlAddFunctionTable | ||
| 1317 | RtlCaptureContext | ||
| 1318 | RtlCaptureStackBackTrace | ||
| 1319 | RtlCompareMemory | ||
| 1320 | RtlCopyMemory | ||
| 1321 | RtlDeleteFunctionTable | ||
| 1322 | RtlFillMemory | ||
| 1323 | RtlInstallFunctionTableCallback | ||
| 1324 | RtlIsEcCode | ||
| 1325 | RtlLookupFunctionEntry | ||
| 1326 | RtlMoveMemory | ||
| 1327 | RtlPcToFileHeader | ||
| 1328 | RtlRaiseException | ||
| 1329 | RtlRestoreContext | ||
| 1330 | RtlUnwind | ||
| 1331 | RtlUnwindEx | ||
| 1332 | RtlVirtualUnwind | ||
| 1333 | RtlVirtualUnwind2 | ||
| 1334 | RtlZeroMemory | ||
| 1335 | ScrollConsoleScreenBufferA | ||
| 1336 | ScrollConsoleScreenBufferW | ||
| 1337 | SearchPathA | ||
| 1338 | SearchPathW | ||
| 1339 | SetCachedSigningLevel | ||
| 1340 | SetCPGlobal | ||
| 1341 | SetCalendarInfoA | ||
| 1342 | SetCalendarInfoW | ||
| 1343 | SetComPlusPackageInstallStatus | ||
| 1344 | SetCommBreak | ||
| 1345 | SetCommConfig | ||
| 1346 | SetCommMask | ||
| 1347 | SetCommState | ||
| 1348 | SetCommTimeouts | ||
| 1349 | SetComputerNameA | ||
| 1350 | SetComputerNameEx2W | ||
| 1351 | SetComputerNameExA | ||
| 1352 | SetComputerNameExW | ||
| 1353 | SetComputerNameW | ||
| 1354 | SetConsoleActiveScreenBuffer | ||
| 1355 | SetConsoleCP | ||
| 1356 | SetConsoleCommandHistoryMode | ||
| 1357 | SetConsoleCtrlHandler | ||
| 1358 | SetConsoleCursor | ||
| 1359 | SetConsoleCursorInfo | ||
| 1360 | SetConsoleCursorMode | ||
| 1361 | SetConsoleCursorPosition | ||
| 1362 | SetConsoleDisplayMode | ||
| 1363 | SetConsoleFont | ||
| 1364 | SetConsoleHardwareState | ||
| 1365 | SetConsoleHistoryInfo | ||
| 1366 | SetConsoleIcon | ||
| 1367 | SetConsoleInputExeNameA | ||
| 1368 | SetConsoleInputExeNameW | ||
| 1369 | SetConsoleKeyShortcuts | ||
| 1370 | SetConsoleLocalEUDC | ||
| 1371 | SetConsoleMaximumWindowSize | ||
| 1372 | SetConsoleMenuClose | ||
| 1373 | SetConsoleMode | ||
| 1374 | SetConsoleNlsMode | ||
| 1375 | SetConsoleNumberOfCommandsA | ||
| 1376 | SetConsoleNumberOfCommandsW | ||
| 1377 | SetConsoleOS2OemFormat | ||
| 1378 | SetConsoleOutputCP | ||
| 1379 | SetConsolePalette | ||
| 1380 | SetConsoleScreenBufferInfoEx | ||
| 1381 | SetConsoleScreenBufferSize | ||
| 1382 | SetConsoleTextAttribute | ||
| 1383 | SetConsoleTitleA | ||
| 1384 | SetConsoleTitleW | ||
| 1385 | SetConsoleWindowInfo | ||
| 1386 | SetCriticalSectionSpinCount | ||
| 1387 | SetCurrentConsoleFontEx | ||
| 1388 | SetCurrentDirectoryA | ||
| 1389 | SetCurrentDirectoryW | ||
| 1390 | SetDefaultCommConfigA | ||
| 1391 | SetDefaultCommConfigW | ||
| 1392 | SetDefaultDllDirectories | ||
| 1393 | SetDllDirectoryA | ||
| 1394 | SetDllDirectoryW | ||
| 1395 | SetDynamicTimeZoneInformation | ||
| 1396 | SetEndOfFile | ||
| 1397 | SetEnvironmentStringsA | ||
| 1398 | SetEnvironmentStringsW | ||
| 1399 | SetEnvironmentVariableA | ||
| 1400 | SetEnvironmentVariableW | ||
| 1401 | SetErrorMode | ||
| 1402 | SetEvent | ||
| 1403 | SetEventWhenCallbackReturns | ||
| 1404 | SetExtendedFeaturesMask | ||
| 1405 | SetFileApisToANSI | ||
| 1406 | SetFileApisToOEM | ||
| 1407 | SetFileAttributesA | ||
| 1408 | SetFileAttributesTransactedA | ||
| 1409 | SetFileAttributesTransactedW | ||
| 1410 | SetFileAttributesW | ||
| 1411 | SetFileBandwidthReservation | ||
| 1412 | SetFileCompletionNotificationModes | ||
| 1413 | SetFileInformationByHandle | ||
| 1414 | SetFileIoOverlappedRange | ||
| 1415 | SetFilePointer | ||
| 1416 | SetFilePointerEx | ||
| 1417 | SetFileShortNameA | ||
| 1418 | SetFileShortNameW | ||
| 1419 | SetFileTime | ||
| 1420 | SetFileValidData | ||
| 1421 | SetFirmwareEnvironmentVariableA | ||
| 1422 | SetFirmwareEnvironmentVariableExA | ||
| 1423 | SetFirmwareEnvironmentVariableExW | ||
| 1424 | SetFirmwareEnvironmentVariableW | ||
| 1425 | SetHandleCount | ||
| 1426 | SetHandleInformation | ||
| 1427 | SetInformationJobObject | ||
| 1428 | SetIoRateControlInformationJobObject | ||
| 1429 | SetIoRingCompletionEvent | ||
| 1430 | SetLastConsoleEventActive | ||
| 1431 | SetLastError | ||
| 1432 | SetLocalPrimaryComputerNameA | ||
| 1433 | SetLocalPrimaryComputerNameW | ||
| 1434 | SetLocalTime | ||
| 1435 | SetLocaleInfoA | ||
| 1436 | SetLocaleInfoW | ||
| 1437 | SetMailslotInfo | ||
| 1438 | SetMessageWaitingIndicator | ||
| 1439 | SetNamedPipeAttribute | ||
| 1440 | SetNamedPipeHandleState | ||
| 1441 | SetPriorityClass | ||
| 1442 | SetProcessAffinityMask | ||
| 1443 | SetProcessAffinityUpdateMode | ||
| 1444 | SetProcessDEPPolicy | ||
| 1445 | SetProcessDefaultCpuSetMasks | ||
| 1446 | SetProcessDefaultCpuSets | ||
| 1447 | SetProcessDynamicEHContinuationTargets | ||
| 1448 | SetProcessDynamicEnforcedCetCompatibleRanges | ||
| 1449 | SetProcessInformation | ||
| 1450 | SetProcessMitigationPolicy | ||
| 1451 | SetProcessPreferredUILanguages | ||
| 1452 | SetProcessPriorityBoost | ||
| 1453 | SetProcessShutdownParameters | ||
| 1454 | SetProcessWorkingSetSize | ||
| 1455 | SetProcessWorkingSetSizeEx | ||
| 1456 | SetProtectedPolicy | ||
| 1457 | SetSearchPathMode | ||
| 1458 | SetStdHandle | ||
| 1459 | SetStdHandleEx | ||
| 1460 | SetSystemFileCacheSize | ||
| 1461 | SetSystemPowerState | ||
| 1462 | SetSystemTime | ||
| 1463 | SetSystemTimeAdjustment | ||
| 1464 | SetTapeParameters | ||
| 1465 | SetTapePosition | ||
| 1466 | SetTermsrvAppInstallMode | ||
| 1467 | SetThreadAffinityMask | ||
| 1468 | SetThreadContext | ||
| 1469 | SetThreadDescription | ||
| 1470 | SetThreadErrorMode | ||
| 1471 | SetThreadExecutionState | ||
| 1472 | SetThreadGroupAffinity | ||
| 1473 | SetThreadIdealProcessor | ||
| 1474 | SetThreadIdealProcessorEx | ||
| 1475 | SetThreadInformation | ||
| 1476 | SetThreadLocale | ||
| 1477 | SetThreadPreferredUILanguages | ||
| 1478 | SetThreadPriority | ||
| 1479 | SetThreadPriorityBoost | ||
| 1480 | SetThreadSelectedCpuSetMasks | ||
| 1481 | SetThreadSelectedCpuSets | ||
| 1482 | SetThreadStackGuarantee | ||
| 1483 | ; MSDN says this is exported from ADVAPI32.DLL. | ||
| 1484 | ; SetThreadToken | ||
| 1485 | SetThreadUILanguage | ||
| 1486 | SetThreadpoolStackInformation | ||
| 1487 | SetThreadpoolThreadMaximum | ||
| 1488 | SetThreadpoolThreadMinimum | ||
| 1489 | SetThreadpoolTimer | ||
| 1490 | SetThreadpoolTimerEx | ||
| 1491 | SetThreadpoolWait | ||
| 1492 | SetThreadpoolWaitEx | ||
| 1493 | SetTimeZoneInformation | ||
| 1494 | SetTimerQueueTimer | ||
| 1495 | SetUmsThreadInformation | ||
| 1496 | SetUnhandledExceptionFilter | ||
| 1497 | SetUserGeoID | ||
| 1498 | SetUserGeoName | ||
| 1499 | SetVDMCurrentDirectories | ||
| 1500 | SetVolumeLabelA | ||
| 1501 | SetVolumeLabelW | ||
| 1502 | SetVolumeMountPointA | ||
| 1503 | SetVolumeMountPointW | ||
| 1504 | SetVolumeMountPointWStub | ||
| 1505 | SetWaitableTimer | ||
| 1506 | SetWaitableTimerEx | ||
| 1507 | SetXStateFeaturesMask | ||
| 1508 | SetupComm | ||
| 1509 | ShowConsoleCursor | ||
| 1510 | SignalObjectAndWait | ||
| 1511 | SizeofResource | ||
| 1512 | Sleep | ||
| 1513 | SleepConditionVariableCS | ||
| 1514 | SleepConditionVariableSRW | ||
| 1515 | SleepEx | ||
| 1516 | SortCloseHandle | ||
| 1517 | SortGetHandle | ||
| 1518 | StartThreadpoolIo | ||
| 1519 | SubmitIoRing | ||
| 1520 | SubmitThreadpoolWork | ||
| 1521 | SuspendThread | ||
| 1522 | SwitchToFiber | ||
| 1523 | SwitchToThread | ||
| 1524 | SystemTimeToFileTime | ||
| 1525 | SystemTimeToTzSpecificLocalTime | ||
| 1526 | SystemTimeToTzSpecificLocalTimeEx | ||
| 1527 | TerminateJobObject | ||
| 1528 | TerminateProcess | ||
| 1529 | TerminateThread | ||
| 1530 | TermsrvAppInstallMode | ||
| 1531 | TermsrvConvertSysRootToUserDir | ||
| 1532 | TermsrvCreateRegEntry | ||
| 1533 | TermsrvDeleteKey | ||
| 1534 | TermsrvDeleteValue | ||
| 1535 | TermsrvGetPreSetValue | ||
| 1536 | TermsrvGetWindowsDirectoryA | ||
| 1537 | TermsrvGetWindowsDirectoryW | ||
| 1538 | TermsrvOpenRegEntry | ||
| 1539 | TermsrvOpenUserClasses | ||
| 1540 | TermsrvRestoreKey | ||
| 1541 | TermsrvSetKeySecurity | ||
| 1542 | TermsrvSetValueKey | ||
| 1543 | TermsrvSyncUserIniFileExt | ||
| 1544 | Thread32First | ||
| 1545 | Thread32Next | ||
| 1546 | TlsAlloc | ||
| 1547 | TlsFree | ||
| 1548 | TlsGetValue | ||
| 1549 | TlsGetValue2 | ||
| 1550 | TlsSetValue | ||
| 1551 | Toolhelp32ReadProcessMemory | ||
| 1552 | TransactNamedPipe | ||
| 1553 | TransmitCommChar | ||
| 1554 | TryAcquireSRWLockExclusive | ||
| 1555 | TryAcquireSRWLockShared | ||
| 1556 | TryEnterCriticalSection | ||
| 1557 | TrySubmitThreadpoolCallback | ||
| 1558 | TzSpecificLocalTimeToSystemTime | ||
| 1559 | TzSpecificLocalTimeToSystemTimeEx | ||
| 1560 | UTRegister | ||
| 1561 | UTUnRegister | ||
| 1562 | UmsThreadYield | ||
| 1563 | UnhandledExceptionFilter | ||
| 1564 | UnlockFile | ||
| 1565 | UnlockFileEx | ||
| 1566 | UnmapViewOfFile | ||
| 1567 | UnmapViewOfFileEx | ||
| 1568 | UnregisterApplicationRecoveryCallback | ||
| 1569 | UnregisterApplicationRestart | ||
| 1570 | UnregisterBadMemoryNotification | ||
| 1571 | UnregisterConsoleIME | ||
| 1572 | UnregisterWait | ||
| 1573 | UnregisterWaitEx | ||
| 1574 | UnregisterWaitUntilOOBECompleted | ||
| 1575 | UpdateCalendarDayOfWeek | ||
| 1576 | UpdateProcThreadAttribute | ||
| 1577 | UpdateResourceA | ||
| 1578 | UpdateResourceW | ||
| 1579 | VDMConsoleOperation | ||
| 1580 | VDMOperationStarted | ||
| 1581 | ValidateLCType | ||
| 1582 | ValidateLocale | ||
| 1583 | VerLanguageNameA | ||
| 1584 | VerLanguageNameW | ||
| 1585 | VerSetConditionMask | ||
| 1586 | VerifyConsoleIoHandle | ||
| 1587 | VerifyScripts | ||
| 1588 | VerifyVersionInfoA | ||
| 1589 | VerifyVersionInfoW | ||
| 1590 | VirtualAlloc | ||
| 1591 | VirtualAllocEx | ||
| 1592 | VirtualAllocExNuma | ||
| 1593 | VirtualFree | ||
| 1594 | VirtualFreeEx | ||
| 1595 | VirtualLock | ||
| 1596 | VirtualProtect | ||
| 1597 | VirtualProtectEx | ||
| 1598 | VirtualQuery | ||
| 1599 | VirtualQueryEx | ||
| 1600 | VirtualUnlock | ||
| 1601 | WTSGetActiveConsoleSessionId | ||
| 1602 | WaitCommEvent | ||
| 1603 | WaitForDebugEvent | ||
| 1604 | WaitForDebugEventEx | ||
| 1605 | WaitForMultipleObjects | ||
| 1606 | WaitForMultipleObjectsEx | ||
| 1607 | WaitForSingleObject | ||
| 1608 | WaitForSingleObjectEx | ||
| 1609 | WaitForThreadpoolIoCallbacks | ||
| 1610 | WaitForThreadpoolTimerCallbacks | ||
| 1611 | WaitForThreadpoolWaitCallbacks | ||
| 1612 | WaitForThreadpoolWorkCallbacks | ||
| 1613 | WaitNamedPipeA | ||
| 1614 | WaitNamedPipeW | ||
| 1615 | WakeAllConditionVariable | ||
| 1616 | ; MSDN says it's in Kernel32.dll but it's not. | ||
| 1617 | ; Link with libsynchronization.a instead. | ||
| 1618 | ; Commented out for compatibility with older | ||
| 1619 | ; versions of Windows. | ||
| 1620 | ;WaitOnAddress | ||
| 1621 | ;WakeByAddressSingle | ||
| 1622 | ;WakeByAddressAll | ||
| 1623 | WakeConditionVariable | ||
| 1624 | WerGetFlags | ||
| 1625 | WerGetFlagsWorker | ||
| 1626 | WerRegisterAdditionalProcess | ||
| 1627 | WerRegisterAppLocalDump | ||
| 1628 | WerRegisterCustomMetadata | ||
| 1629 | WerRegisterExcludedMemoryBlock | ||
| 1630 | WerRegisterFile | ||
| 1631 | WerRegisterFileWorker | ||
| 1632 | WerRegisterMemoryBlock | ||
| 1633 | WerRegisterMemoryBlockWorker | ||
| 1634 | WerRegisterRuntimeExceptionModule | ||
| 1635 | WerRegisterRuntimeExceptionModuleWorker | ||
| 1636 | WerSetFlags | ||
| 1637 | WerSetFlagsWorker | ||
| 1638 | WerUnregisterAdditionalProcess | ||
| 1639 | WerUnregisterAppLocalDump | ||
| 1640 | WerUnregisterCustomMetadata | ||
| 1641 | WerUnregisterExcludedMemoryBlock | ||
| 1642 | WerUnregisterFile | ||
| 1643 | WerUnregisterFileWorker | ||
| 1644 | WerUnregisterMemoryBlock | ||
| 1645 | WerUnregisterMemoryBlockWorker | ||
| 1646 | WerUnregisterRuntimeExceptionModule | ||
| 1647 | WerUnregisterRuntimeExceptionModuleWorker | ||
| 1648 | WerpCleanupMessageMapping | ||
| 1649 | WerpGetDebugger | ||
| 1650 | WerpInitiateRemoteRecovery | ||
| 1651 | WerpLaunchAeDebug | ||
| 1652 | WerpNotifyLoadStringResource | ||
| 1653 | WerpNotifyLoadStringResourceEx | ||
| 1654 | WerpNotifyLoadStringResourceWorker | ||
| 1655 | WerpNotifyUseStringResource | ||
| 1656 | WerpNotifyUseStringResourceWorker | ||
| 1657 | WerpStringLookup | ||
| 1658 | WideCharToMultiByte | ||
| 1659 | WinExec | ||
| 1660 | Wow64DisableWow64FsRedirection | ||
| 1661 | Wow64EnableWow64FsRedirection | ||
| 1662 | Wow64GetThreadContext | ||
| 1663 | Wow64GetThreadSelectorEntry | ||
| 1664 | Wow64RevertWow64FsRedirection | ||
| 1665 | Wow64SetThreadContext | ||
| 1666 | Wow64SuspendThread | ||
| 1667 | WriteConsoleA | ||
| 1668 | WriteConsoleInputA | ||
| 1669 | WriteConsoleInputVDMA | ||
| 1670 | WriteConsoleInputVDMW | ||
| 1671 | WriteConsoleInputW | ||
| 1672 | WriteConsoleOutputA | ||
| 1673 | WriteConsoleOutputAttribute | ||
| 1674 | WriteConsoleOutputCharacterA | ||
| 1675 | WriteConsoleOutputCharacterW | ||
| 1676 | WriteConsoleOutputW | ||
| 1677 | WriteConsoleW | ||
| 1678 | WriteFile | ||
| 1679 | WriteFileEx | ||
| 1680 | WriteFileGather | ||
| 1681 | WritePrivateProfileSectionA | ||
| 1682 | WritePrivateProfileSectionW | ||
| 1683 | WritePrivateProfileStringA | ||
| 1684 | WritePrivateProfileStringW | ||
| 1685 | WritePrivateProfileStructA | ||
| 1686 | WritePrivateProfileStructW | ||
| 1687 | WriteProcessMemory | ||
| 1688 | WriteProfileSectionA | ||
| 1689 | WriteProfileSectionW | ||
| 1690 | WriteProfileStringA | ||
| 1691 | WriteProfileStringW | ||
| 1692 | WriteTapemark | ||
| 1693 | ZombifyActCtx | ||
| 1694 | ZombifyActCtxWorker | ||
| 1695 | __C_specific_handler | ||
| 1696 | ; This isn't always available and shouldn't be linked from here, but should | ||
| 1697 | ; be statically linked from the compiler support library. | ||
| 1698 | ; | ||
| 1699 | __misaligned_access | ||
| 1700 | _hread | ||
| 1701 | _hwrite | ||
| 1702 | _lclose | ||
| 1703 | _lcreat | ||
| 1704 | _llseek | ||
| 1705 | _local_unwind | ||
| 1706 | _lopen | ||
| 1707 | _lread | ||
| 1708 | _lwrite | ||
| 1709 | lstrcat | ||
| 1710 | lstrcatA | ||
| 1711 | lstrcatW | ||
| 1712 | lstrcmp | ||
| 1713 | lstrcmpA | ||
| 1714 | lstrcmpW | ||
| 1715 | lstrcmpi | ||
| 1716 | lstrcmpiA | ||
| 1717 | lstrcmpiW | ||
| 1718 | lstrcpy | ||
| 1719 | lstrcpyA | ||
| 1720 | lstrcpyW | ||
| 1721 | lstrcpyn | ||
| 1722 | lstrcpynA | ||
| 1723 | lstrcpynW | ||
| 1724 | lstrlen | ||
| 1725 | lstrlenA | ||
| 1726 | lstrlenW | ||
| 1727 | ; | ||
| 1728 | ; MSDN says these functions are exported | ||
| 1729 | ; from winmm.dll. Commented out for | ||
| 1730 | ; compatibility with older versions of | ||
| 1731 | ; Windows. | ||
| 1732 | ; | ||
| 1733 | ;timeBeginPeriod | ||
| 1734 | ;timeEndPeriod | ||
| 1735 | ;timeGetDevCaps | ||
| 1736 | ;timeGetSystemTime | ||
| 1737 | ;timeGetTime | ||
| 1738 | uaw_lstrcmpW | ||
| 1739 | uaw_lstrcmpiW | ||
| 1740 | uaw_lstrlenW | ||
| 1741 | uaw_wcschr | ||
| 1742 | uaw_wcscpy | ||
| 1743 | uaw_wcsicmp | ||
| 1744 | uaw_wcslen | ||
| 1745 | uaw_wcsrchr | ||
lib/libc/mingw/lib64/quartz.def deleted-17| ... | @@ -1,17 +0,0 @@ | ||
| 1 | ; | ||
| 2 | ; Exports of file QUARTZ.dll | ||
| 3 | ; | ||
| 4 | ; Autogenerated by gen_exportdef | ||
| 5 | ; Written by Kai Tietz, 2007 | ||
| 6 | ; | ||
| 7 | LIBRARY QUARTZ.dll | ||
| 8 | EXPORTS | ||
| 9 | AMGetErrorTextA | ||
| 10 | AMGetErrorTextW | ||
| 11 | AmpFactorToDB | ||
| 12 | DBToAmpFactor | ||
| 13 | DllCanUnloadNow | ||
| 14 | DllGetClassObject | ||
| 15 | DllRegisterServer | ||
| 16 | DllUnregisterServer | ||
| 17 | GetProxyDllInfo | ||
lib/libc/mingw/lib64/ws2_32.def deleted-200| ... | @@ -1,200 +0,0 @@ | ||
| 1 | |||
| 2 | LIBRARY "WS2_32.dll" | ||
| 3 | EXPORTS | ||
| 4 | accept | ||
| 5 | bind | ||
| 6 | closesocket | ||
| 7 | connect | ||
| 8 | getpeername | ||
| 9 | getsockname | ||
| 10 | getsockopt | ||
| 11 | htonl | ||
| 12 | htons | ||
| 13 | ioctlsocket | ||
| 14 | inet_addr | ||
| 15 | inet_ntoa | ||
| 16 | listen | ||
| 17 | ntohl | ||
| 18 | ntohs | ||
| 19 | recv | ||
| 20 | recvfrom | ||
| 21 | select | ||
| 22 | send | ||
| 23 | sendto | ||
| 24 | setsockopt | ||
| 25 | shutdown | ||
| 26 | socket | ||
| 27 | WSApSetPostRoutine | ||
| 28 | FreeAddrInfoEx | ||
| 29 | FreeAddrInfoExW | ||
| 30 | FreeAddrInfoW | ||
| 31 | GetAddrInfoExA | ||
| 32 | GetAddrInfoExCancel | ||
| 33 | GetAddrInfoExOverlappedResult | ||
| 34 | GetAddrInfoExW | ||
| 35 | GetAddrInfoW | ||
| 36 | GetHostNameW | ||
| 37 | GetNameInfoW | ||
| 38 | InetNtopW | ||
| 39 | InetPtonW | ||
| 40 | ProcessSocketNotifications | ||
| 41 | SetAddrInfoExA | ||
| 42 | SetAddrInfoExW | ||
| 43 | WPUCompleteOverlappedRequest | ||
| 44 | WPUGetProviderPathEx | ||
| 45 | WSAAccept | ||
| 46 | WSAAddressToStringA | ||
| 47 | WSAAddressToStringW | ||
| 48 | WSAAdvertiseProvider | ||
| 49 | WSACloseEvent | ||
| 50 | WSAConnect | ||
| 51 | WSAConnectByList | ||
| 52 | WSAConnectByNameA | ||
| 53 | WSAConnectByNameW | ||
| 54 | WSACreateEvent | ||
| 55 | gethostbyaddr | ||
| 56 | gethostbyname | ||
| 57 | getprotobyname | ||
| 58 | getprotobynumber | ||
| 59 | getservbyname | ||
| 60 | getservbyport | ||
| 61 | gethostname | ||
| 62 | WSADuplicateSocketA | ||
| 63 | WSADuplicateSocketW | ||
| 64 | WSAEnumNameSpaceProvidersA | ||
| 65 | WSAEnumNameSpaceProvidersExA | ||
| 66 | WSAEnumNameSpaceProvidersExW | ||
| 67 | WSAEnumNameSpaceProvidersW | ||
| 68 | WSAEnumNetworkEvents | ||
| 69 | WSAEnumProtocolsA | ||
| 70 | WSAEnumProtocolsW | ||
| 71 | WSAEventSelect | ||
| 72 | WSAGetOverlappedResult | ||
| 73 | WSAGetQOSByName | ||
| 74 | WSAGetServiceClassInfoA | ||
| 75 | WSAGetServiceClassInfoW | ||
| 76 | WSAGetServiceClassNameByClassIdA | ||
| 77 | WSAGetServiceClassNameByClassIdW | ||
| 78 | WSAHtonl | ||
| 79 | WSAHtons | ||
| 80 | WSAInstallServiceClassA | ||
| 81 | WSAInstallServiceClassW | ||
| 82 | WSAIoctl | ||
| 83 | WSAJoinLeaf | ||
| 84 | WSALookupServiceBeginA | ||
| 85 | WSALookupServiceBeginW | ||
| 86 | WSALookupServiceEnd | ||
| 87 | WSALookupServiceNextA | ||
| 88 | WSALookupServiceNextW | ||
| 89 | WSANSPIoctl | ||
| 90 | WSANtohl | ||
| 91 | WSANtohs | ||
| 92 | WSAPoll | ||
| 93 | WSAProviderCompleteAsyncCall | ||
| 94 | WSAProviderConfigChange | ||
| 95 | WSARecv | ||
| 96 | WSARecvDisconnect | ||
| 97 | WSARecvFrom | ||
| 98 | WSARemoveServiceClass | ||
| 99 | WSAResetEvent | ||
| 100 | WSASend | ||
| 101 | WSASendDisconnect | ||
| 102 | WSASendMsg | ||
| 103 | WSASendTo | ||
| 104 | WSASetEvent | ||
| 105 | WSAAsyncSelect | ||
| 106 | WSAAsyncGetHostByAddr | ||
| 107 | WSAAsyncGetHostByName | ||
| 108 | WSAAsyncGetProtoByNumber | ||
| 109 | WSAAsyncGetProtoByName | ||
| 110 | WSAAsyncGetServByPort | ||
| 111 | WSAAsyncGetServByName | ||
| 112 | WSACancelAsyncRequest | ||
| 113 | WSASetBlockingHook | ||
| 114 | WSAUnhookBlockingHook | ||
| 115 | WSAGetLastError | ||
| 116 | WSASetLastError | ||
| 117 | WSACancelBlockingCall | ||
| 118 | WSAIsBlocking | ||
| 119 | WSAStartup | ||
| 120 | WSACleanup | ||
| 121 | WSASetServiceA | ||
| 122 | WSASetServiceW | ||
| 123 | WSASocketA | ||
| 124 | WSASocketW | ||
| 125 | WSAStringToAddressA | ||
| 126 | WSAStringToAddressW | ||
| 127 | WSAUnadvertiseProvider | ||
| 128 | WSAWaitForMultipleEvents | ||
| 129 | WSCDeinstallProvider | ||
| 130 | WSCDeinstallProvider32 | ||
| 131 | WSCDeinstallProviderEx | ||
| 132 | WSCEnableNSProvider | ||
| 133 | WSCEnableNSProvider32 | ||
| 134 | WSCEnumNameSpaceProviders32 | ||
| 135 | WSCEnumNameSpaceProvidersEx32 | ||
| 136 | WSCEnumProtocols | ||
| 137 | WSCEnumProtocolsEx | ||
| 138 | WSCEnumProtocols32 | ||
| 139 | WSCGetApplicationCategory | ||
| 140 | WSCGetApplicationCategoryEx | ||
| 141 | WSCGetProviderInfo | ||
| 142 | WSCGetProviderInfo32 | ||
| 143 | WSCGetProviderPath | ||
| 144 | WSCGetProviderPath32 | ||
| 145 | WSCInstallNameSpace | ||
| 146 | WSCInstallNameSpace32 | ||
| 147 | WSCInstallNameSpaceEx | ||
| 148 | WSCInstallNameSpaceEx2 | ||
| 149 | WSCInstallNameSpaceEx32 | ||
| 150 | WSCInstallProvider | ||
| 151 | WSCInstallProvider64_32 | ||
| 152 | WSCInstallProviderAndChains | ||
| 153 | WSCInstallProviderAndChains64_32 | ||
| 154 | WSCInstallProviderEx | ||
| 155 | WSCSetApplicationCategory | ||
| 156 | WSCSetApplicationCategoryEx | ||
| 157 | WSCSetProviderInfo | ||
| 158 | WSCSetProviderInfo32 | ||
| 159 | WSCUnInstallNameSpace | ||
| 160 | WSCUnInstallNameSpace32 | ||
| 161 | WSCUnInstallNameSpaceEx2 | ||
| 162 | WSCUpdateProvider | ||
| 163 | WSCUpdateProvider32 | ||
| 164 | WSCUpdateProviderEx | ||
| 165 | WSCWriteNameSpaceOrder | ||
| 166 | WSCWriteNameSpaceOrder32 | ||
| 167 | WSCWriteProviderOrder | ||
| 168 | WSCWriteProviderOrder32 | ||
| 169 | WSCWriteProviderOrderEx | ||
| 170 | WahCloseApcHelper | ||
| 171 | __WSAFDIsSet | ||
| 172 | WahCloseHandleHelper | ||
| 173 | WahCloseNotificationHandleHelper | ||
| 174 | WahCloseSocketHandle | ||
| 175 | WahCloseThread | ||
| 176 | WahCompleteRequest | ||
| 177 | WahCreateHandleContextTable | ||
| 178 | WahCreateNotificationHandle | ||
| 179 | WahCreateSocketHandle | ||
| 180 | WahDestroyHandleContextTable | ||
| 181 | WahDisableNonIFSHandleSupport | ||
| 182 | WahEnableNonIFSHandleSupport | ||
| 183 | WahEnumerateHandleContexts | ||
| 184 | WahInsertHandleContext | ||
| 185 | WahNotifyAllProcesses | ||
| 186 | WahOpenApcHelper | ||
| 187 | WahOpenCurrentThread | ||
| 188 | WahOpenHandleHelper | ||
| 189 | WahOpenNotificationHandleHelper | ||
| 190 | WahQueueUserApc | ||
| 191 | WahReferenceContextByHandle | ||
| 192 | WahRemoveHandleContext | ||
| 193 | WahWaitForNotification | ||
| 194 | WahWriteLSPEvent | ||
| 195 | freeaddrinfo | ||
| 196 | getaddrinfo | ||
| 197 | getnameinfo | ||
| 198 | inet_ntop | ||
| 199 | inet_pton | ||
| 200 | WEP | ||