Skip to content

Instantly share code, notes, and snippets.

@njsmith
Last active April 6, 2024 18:04
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save njsmith/08b1e52b65ea90427bfd to your computer and use it in GitHub Desktop.
Save njsmith/08b1e52b65ea90427bfd to your computer and use it in GitHub Desktop.
Information on linking to the new Windows UCRT
import sys
import subprocess
import csv
def describe_ucrt_lib(platform):
lib_path = "windows-10-sdk/Lib/10.0.10240.0/ucrt/{}/ucrt.lib".format(platform)
output = subprocess.check_output(["nm", lib_path])
output = output.decode("utf-8")
# Output (x86 32-bit) looks like:
#
# api-ms-win-crt-conio-l1-1-0.dll:
# 00000000 T ___conio_common_vcprintf
# 00000000 I .idata$4
# 00000000 I .idata$5
# 00000000 I .idata$6
# 00000000 I __imp____conio_common_vcprintf
# U __IMPORT_DESCRIPTOR_api-ms-win-crt-conio-l1-1-0
# 00000000 T .text
#
# which indicates that the symbol ___conio_common_vcprintf should be found
# in api-ms-win-crt-conio-l1-1-0.dll.
#
# NB: The actual function name has only two underscores; the third is
# added (x86-32 only) as part of cdecl name mangling. We do not attempt
# to correct for name mangling here, so if you want the unmangled name on
# x86-32 then you need to strip off the leading underscore from all the
# symbols.
current_dll = None
with open("{}.csv".format(platform), "w") as out_file:
w = csv.writer(out_file)
w.writerow(["DLL", "Symbol"])
for line in output.split("\n"):
line = line.strip()
if line.endswith(":"):
current_dll = line.strip(":")
if " T " in line:
mangled_symbol = line.split()[-1]
if mangled_symbol == ".text":
continue
if platform == "x86":
assert mangled_symbol.startswith("_")
w.writerow([current_dll, mangled_symbol])
describe_ucrt_lib("x86")
describe_ucrt_lib("x64")
# Unfortunately my nm blows up on these with lots of "File format not
# recognized", "Unrecognized machine type", "Malformed archive" errors:
#describe_ucrt_lib("arm")
#describe_ucrt_lib("arm64")
DLL Symbol
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcprintf
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcprintf_p
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcprintf_s
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcscanf
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcwprintf
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcwprintf_p
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcwprintf_s
api-ms-win-crt-conio-l1-1-0.dll __conio_common_vcwscanf
api-ms-win-crt-conio-l1-1-0.dll _cgets
api-ms-win-crt-conio-l1-1-0.dll _cgets_s
api-ms-win-crt-conio-l1-1-0.dll _cgetws
api-ms-win-crt-conio-l1-1-0.dll _cgetws_s
api-ms-win-crt-conio-l1-1-0.dll _cputs
api-ms-win-crt-conio-l1-1-0.dll _cputws
api-ms-win-crt-conio-l1-1-0.dll _getch
api-ms-win-crt-conio-l1-1-0.dll _getch_nolock
api-ms-win-crt-conio-l1-1-0.dll _getche
api-ms-win-crt-conio-l1-1-0.dll _getche_nolock
api-ms-win-crt-conio-l1-1-0.dll _getwch
api-ms-win-crt-conio-l1-1-0.dll _getwch_nolock
api-ms-win-crt-conio-l1-1-0.dll _getwche
api-ms-win-crt-conio-l1-1-0.dll _getwche_nolock
api-ms-win-crt-conio-l1-1-0.dll _putch
api-ms-win-crt-conio-l1-1-0.dll _putch_nolock
api-ms-win-crt-conio-l1-1-0.dll _putwch
api-ms-win-crt-conio-l1-1-0.dll _putwch_nolock
api-ms-win-crt-conio-l1-1-0.dll _ungetch
api-ms-win-crt-conio-l1-1-0.dll _ungetch_nolock
api-ms-win-crt-conio-l1-1-0.dll _ungetwch
api-ms-win-crt-conio-l1-1-0.dll _ungetwch_nolock
api-ms-win-crt-convert-l1-1-0.dll __toascii
api-ms-win-crt-convert-l1-1-0.dll _atodbl
api-ms-win-crt-convert-l1-1-0.dll _atodbl_l
api-ms-win-crt-convert-l1-1-0.dll _atof_l
api-ms-win-crt-convert-l1-1-0.dll _atoflt
api-ms-win-crt-convert-l1-1-0.dll _atoflt_l
api-ms-win-crt-convert-l1-1-0.dll _atoi64
api-ms-win-crt-convert-l1-1-0.dll _atoi64_l
api-ms-win-crt-convert-l1-1-0.dll _atoi_l
api-ms-win-crt-convert-l1-1-0.dll _atol_l
api-ms-win-crt-convert-l1-1-0.dll _atoldbl
api-ms-win-crt-convert-l1-1-0.dll _atoldbl_l
api-ms-win-crt-convert-l1-1-0.dll _atoll_l
api-ms-win-crt-convert-l1-1-0.dll _ecvt
api-ms-win-crt-convert-l1-1-0.dll _ecvt_s
api-ms-win-crt-convert-l1-1-0.dll _fcvt
api-ms-win-crt-convert-l1-1-0.dll _fcvt_s
api-ms-win-crt-convert-l1-1-0.dll _gcvt
api-ms-win-crt-convert-l1-1-0.dll _gcvt_s
api-ms-win-crt-convert-l1-1-0.dll _i64toa
api-ms-win-crt-convert-l1-1-0.dll _i64toa_s
api-ms-win-crt-convert-l1-1-0.dll _i64tow
api-ms-win-crt-convert-l1-1-0.dll _i64tow_s
api-ms-win-crt-convert-l1-1-0.dll _itoa
api-ms-win-crt-convert-l1-1-0.dll _itoa_s
api-ms-win-crt-convert-l1-1-0.dll _itow
api-ms-win-crt-convert-l1-1-0.dll _itow_s
api-ms-win-crt-convert-l1-1-0.dll _ltoa
api-ms-win-crt-convert-l1-1-0.dll _ltoa_s
api-ms-win-crt-convert-l1-1-0.dll _ltow
api-ms-win-crt-convert-l1-1-0.dll _ltow_s
api-ms-win-crt-convert-l1-1-0.dll _strtod_l
api-ms-win-crt-convert-l1-1-0.dll _strtof_l
api-ms-win-crt-convert-l1-1-0.dll _strtoi64
api-ms-win-crt-convert-l1-1-0.dll _strtoi64_l
api-ms-win-crt-convert-l1-1-0.dll _strtoimax_l
api-ms-win-crt-convert-l1-1-0.dll _strtol_l
api-ms-win-crt-convert-l1-1-0.dll _strtold_l
api-ms-win-crt-convert-l1-1-0.dll _strtoll_l
api-ms-win-crt-convert-l1-1-0.dll _strtoui64
api-ms-win-crt-convert-l1-1-0.dll _strtoui64_l
api-ms-win-crt-convert-l1-1-0.dll _strtoul_l
api-ms-win-crt-convert-l1-1-0.dll _strtoull_l
api-ms-win-crt-convert-l1-1-0.dll _strtoumax_l
api-ms-win-crt-convert-l1-1-0.dll _ui64toa
api-ms-win-crt-convert-l1-1-0.dll _ui64toa_s
api-ms-win-crt-convert-l1-1-0.dll _ui64tow
api-ms-win-crt-convert-l1-1-0.dll _ui64tow_s
api-ms-win-crt-convert-l1-1-0.dll _ultoa
api-ms-win-crt-convert-l1-1-0.dll _ultoa_s
api-ms-win-crt-convert-l1-1-0.dll _ultow
api-ms-win-crt-convert-l1-1-0.dll _ultow_s
api-ms-win-crt-convert-l1-1-0.dll _wcstod_l
api-ms-win-crt-convert-l1-1-0.dll _wcstof_l
api-ms-win-crt-convert-l1-1-0.dll _wcstoi64
api-ms-win-crt-convert-l1-1-0.dll _wcstoi64_l
api-ms-win-crt-convert-l1-1-0.dll _wcstoimax_l
api-ms-win-crt-convert-l1-1-0.dll _wcstol_l
api-ms-win-crt-convert-l1-1-0.dll _wcstold_l
api-ms-win-crt-convert-l1-1-0.dll _wcstoll_l
api-ms-win-crt-convert-l1-1-0.dll _wcstombs_l
api-ms-win-crt-convert-l1-1-0.dll _wcstombs_s_l
api-ms-win-crt-convert-l1-1-0.dll _wcstoui64
api-ms-win-crt-convert-l1-1-0.dll _wcstoui64_l
api-ms-win-crt-convert-l1-1-0.dll _wcstoul_l
api-ms-win-crt-convert-l1-1-0.dll _wcstoull_l
api-ms-win-crt-convert-l1-1-0.dll _wcstoumax_l
api-ms-win-crt-convert-l1-1-0.dll _wctomb_l
api-ms-win-crt-convert-l1-1-0.dll _wctomb_s_l
api-ms-win-crt-convert-l1-1-0.dll _wtof
api-ms-win-crt-convert-l1-1-0.dll _wtof_l
api-ms-win-crt-convert-l1-1-0.dll _wtoi
api-ms-win-crt-convert-l1-1-0.dll _wtoi64
api-ms-win-crt-convert-l1-1-0.dll _wtoi64_l
api-ms-win-crt-convert-l1-1-0.dll _wtoi_l
api-ms-win-crt-convert-l1-1-0.dll _wtol
api-ms-win-crt-convert-l1-1-0.dll _wtol_l
api-ms-win-crt-convert-l1-1-0.dll _wtoll
api-ms-win-crt-convert-l1-1-0.dll _wtoll_l
api-ms-win-crt-convert-l1-1-0.dll atof
api-ms-win-crt-convert-l1-1-0.dll atoi
api-ms-win-crt-convert-l1-1-0.dll atol
api-ms-win-crt-convert-l1-1-0.dll atoll
api-ms-win-crt-convert-l1-1-0.dll btowc
api-ms-win-crt-convert-l1-1-0.dll c16rtomb
api-ms-win-crt-convert-l1-1-0.dll c32rtomb
api-ms-win-crt-convert-l1-1-0.dll mbrtoc16
api-ms-win-crt-convert-l1-1-0.dll mbrtoc32
api-ms-win-crt-convert-l1-1-0.dll mbrtowc
api-ms-win-crt-convert-l1-1-0.dll mbsrtowcs
api-ms-win-crt-convert-l1-1-0.dll mbsrtowcs_s
api-ms-win-crt-convert-l1-1-0.dll mbstowcs
api-ms-win-crt-convert-l1-1-0.dll mbstowcs_s
api-ms-win-crt-convert-l1-1-0.dll mbtowc
api-ms-win-crt-convert-l1-1-0.dll strtod
api-ms-win-crt-convert-l1-1-0.dll strtof
api-ms-win-crt-convert-l1-1-0.dll strtoimax
api-ms-win-crt-convert-l1-1-0.dll strtol
api-ms-win-crt-convert-l1-1-0.dll strtold
api-ms-win-crt-convert-l1-1-0.dll strtoll
api-ms-win-crt-convert-l1-1-0.dll strtoul
api-ms-win-crt-convert-l1-1-0.dll strtoull
api-ms-win-crt-convert-l1-1-0.dll strtoumax
api-ms-win-crt-convert-l1-1-0.dll wcrtomb
api-ms-win-crt-convert-l1-1-0.dll wcrtomb_s
api-ms-win-crt-convert-l1-1-0.dll wcsrtombs
api-ms-win-crt-convert-l1-1-0.dll wcsrtombs_s
api-ms-win-crt-convert-l1-1-0.dll wcstod
api-ms-win-crt-convert-l1-1-0.dll wcstof
api-ms-win-crt-convert-l1-1-0.dll wcstoimax
api-ms-win-crt-convert-l1-1-0.dll wcstol
api-ms-win-crt-convert-l1-1-0.dll wcstold
api-ms-win-crt-convert-l1-1-0.dll wcstoll
api-ms-win-crt-convert-l1-1-0.dll wcstombs
api-ms-win-crt-convert-l1-1-0.dll wcstombs_s
api-ms-win-crt-convert-l1-1-0.dll wcstoul
api-ms-win-crt-convert-l1-1-0.dll wcstoull
api-ms-win-crt-convert-l1-1-0.dll wcstoumax
api-ms-win-crt-convert-l1-1-0.dll wctob
api-ms-win-crt-convert-l1-1-0.dll wctomb
api-ms-win-crt-convert-l1-1-0.dll wctomb_s
api-ms-win-crt-convert-l1-1-0.dll wctrans
api-ms-win-crt-environment-l1-1-0.dll __p__environ
api-ms-win-crt-environment-l1-1-0.dll __p__wenviron
api-ms-win-crt-environment-l1-1-0.dll _dupenv_s
api-ms-win-crt-environment-l1-1-0.dll _putenv
api-ms-win-crt-environment-l1-1-0.dll _putenv_s
api-ms-win-crt-environment-l1-1-0.dll _searchenv
api-ms-win-crt-environment-l1-1-0.dll _searchenv_s
api-ms-win-crt-environment-l1-1-0.dll _wdupenv_s
api-ms-win-crt-environment-l1-1-0.dll _wgetcwd
api-ms-win-crt-environment-l1-1-0.dll _wgetdcwd
api-ms-win-crt-environment-l1-1-0.dll _wgetenv
api-ms-win-crt-environment-l1-1-0.dll _wgetenv_s
api-ms-win-crt-environment-l1-1-0.dll _wputenv
api-ms-win-crt-environment-l1-1-0.dll _wputenv_s
api-ms-win-crt-environment-l1-1-0.dll _wsearchenv
api-ms-win-crt-environment-l1-1-0.dll _wsearchenv_s
api-ms-win-crt-environment-l1-1-0.dll getenv
api-ms-win-crt-environment-l1-1-0.dll getenv_s
api-ms-win-crt-filesystem-l1-1-0.dll _access
api-ms-win-crt-filesystem-l1-1-0.dll _access_s
api-ms-win-crt-filesystem-l1-1-0.dll _chdir
api-ms-win-crt-filesystem-l1-1-0.dll _chdrive
api-ms-win-crt-filesystem-l1-1-0.dll _chmod
api-ms-win-crt-filesystem-l1-1-0.dll _findclose
api-ms-win-crt-filesystem-l1-1-0.dll _findfirst32
api-ms-win-crt-filesystem-l1-1-0.dll _findfirst32i64
api-ms-win-crt-filesystem-l1-1-0.dll _findfirst64
api-ms-win-crt-filesystem-l1-1-0.dll _findfirst64i32
api-ms-win-crt-filesystem-l1-1-0.dll _findnext32
api-ms-win-crt-filesystem-l1-1-0.dll _findnext32i64
api-ms-win-crt-filesystem-l1-1-0.dll _findnext64
api-ms-win-crt-filesystem-l1-1-0.dll _findnext64i32
api-ms-win-crt-filesystem-l1-1-0.dll _fstat32
api-ms-win-crt-filesystem-l1-1-0.dll _fstat32i64
api-ms-win-crt-filesystem-l1-1-0.dll _fstat64
api-ms-win-crt-filesystem-l1-1-0.dll _fstat64i32
api-ms-win-crt-filesystem-l1-1-0.dll _fullpath
api-ms-win-crt-filesystem-l1-1-0.dll _getdiskfree
api-ms-win-crt-filesystem-l1-1-0.dll _getdrive
api-ms-win-crt-filesystem-l1-1-0.dll _getdrives
api-ms-win-crt-filesystem-l1-1-0.dll _lock_file
api-ms-win-crt-filesystem-l1-1-0.dll _makepath
api-ms-win-crt-filesystem-l1-1-0.dll _makepath_s
api-ms-win-crt-filesystem-l1-1-0.dll _mkdir
api-ms-win-crt-filesystem-l1-1-0.dll _rmdir
api-ms-win-crt-filesystem-l1-1-0.dll _splitpath
api-ms-win-crt-filesystem-l1-1-0.dll _splitpath_s
api-ms-win-crt-filesystem-l1-1-0.dll _stat32
api-ms-win-crt-filesystem-l1-1-0.dll _stat32i64
api-ms-win-crt-filesystem-l1-1-0.dll _stat64
api-ms-win-crt-filesystem-l1-1-0.dll _stat64i32
api-ms-win-crt-filesystem-l1-1-0.dll _umask
api-ms-win-crt-filesystem-l1-1-0.dll _umask_s
api-ms-win-crt-filesystem-l1-1-0.dll _unlink
api-ms-win-crt-filesystem-l1-1-0.dll _unlock_file
api-ms-win-crt-filesystem-l1-1-0.dll _waccess
api-ms-win-crt-filesystem-l1-1-0.dll _waccess_s
api-ms-win-crt-filesystem-l1-1-0.dll _wchdir
api-ms-win-crt-filesystem-l1-1-0.dll _wchmod
api-ms-win-crt-filesystem-l1-1-0.dll _wfindfirst32
api-ms-win-crt-filesystem-l1-1-0.dll _wfindfirst32i64
api-ms-win-crt-filesystem-l1-1-0.dll _wfindfirst64
api-ms-win-crt-filesystem-l1-1-0.dll _wfindfirst64i32
api-ms-win-crt-filesystem-l1-1-0.dll _wfindnext32
api-ms-win-crt-filesystem-l1-1-0.dll _wfindnext32i64
api-ms-win-crt-filesystem-l1-1-0.dll _wfindnext64
api-ms-win-crt-filesystem-l1-1-0.dll _wfindnext64i32
api-ms-win-crt-filesystem-l1-1-0.dll _wfullpath
api-ms-win-crt-filesystem-l1-1-0.dll _wmakepath
api-ms-win-crt-filesystem-l1-1-0.dll _wmakepath_s
api-ms-win-crt-filesystem-l1-1-0.dll _wmkdir
api-ms-win-crt-filesystem-l1-1-0.dll _wremove
api-ms-win-crt-filesystem-l1-1-0.dll _wrename
api-ms-win-crt-filesystem-l1-1-0.dll _wrmdir
api-ms-win-crt-filesystem-l1-1-0.dll _wsplitpath
api-ms-win-crt-filesystem-l1-1-0.dll _wsplitpath_s
api-ms-win-crt-filesystem-l1-1-0.dll _wstat32
api-ms-win-crt-filesystem-l1-1-0.dll _wstat32i64
api-ms-win-crt-filesystem-l1-1-0.dll _wstat64
api-ms-win-crt-filesystem-l1-1-0.dll _wstat64i32
api-ms-win-crt-filesystem-l1-1-0.dll _wunlink
api-ms-win-crt-filesystem-l1-1-0.dll remove
api-ms-win-crt-filesystem-l1-1-0.dll rename
api-ms-win-crt-heap-l1-1-0.dll _aligned_free
api-ms-win-crt-heap-l1-1-0.dll _aligned_malloc
api-ms-win-crt-heap-l1-1-0.dll _aligned_msize
api-ms-win-crt-heap-l1-1-0.dll _aligned_offset_malloc
api-ms-win-crt-heap-l1-1-0.dll _aligned_offset_realloc
api-ms-win-crt-heap-l1-1-0.dll _aligned_offset_recalloc
api-ms-win-crt-heap-l1-1-0.dll _aligned_realloc
api-ms-win-crt-heap-l1-1-0.dll _aligned_recalloc
api-ms-win-crt-heap-l1-1-0.dll _callnewh
api-ms-win-crt-heap-l1-1-0.dll _calloc_base
api-ms-win-crt-heap-l1-1-0.dll _expand
api-ms-win-crt-heap-l1-1-0.dll _free_base
api-ms-win-crt-heap-l1-1-0.dll _get_heap_handle
api-ms-win-crt-heap-l1-1-0.dll _heapchk
api-ms-win-crt-heap-l1-1-0.dll _heapmin
api-ms-win-crt-heap-l1-1-0.dll _heapwalk
api-ms-win-crt-heap-l1-1-0.dll _malloc_base
api-ms-win-crt-heap-l1-1-0.dll _msize
api-ms-win-crt-heap-l1-1-0.dll _query_new_handler
api-ms-win-crt-heap-l1-1-0.dll _query_new_mode
api-ms-win-crt-heap-l1-1-0.dll _realloc_base
api-ms-win-crt-heap-l1-1-0.dll _recalloc
api-ms-win-crt-heap-l1-1-0.dll _set_new_mode
api-ms-win-crt-heap-l1-1-0.dll calloc
api-ms-win-crt-heap-l1-1-0.dll free
api-ms-win-crt-heap-l1-1-0.dll malloc
api-ms-win-crt-heap-l1-1-0.dll realloc
api-ms-win-crt-locale-l1-1-0.dll ___lc_codepage_func
api-ms-win-crt-locale-l1-1-0.dll ___lc_collate_cp_func
api-ms-win-crt-locale-l1-1-0.dll ___lc_locale_name_func
api-ms-win-crt-locale-l1-1-0.dll ___mb_cur_max_func
api-ms-win-crt-locale-l1-1-0.dll ___mb_cur_max_l_func
api-ms-win-crt-locale-l1-1-0.dll __initialize_lconv_for_unsigned_char
api-ms-win-crt-locale-l1-1-0.dll __pctype_func
api-ms-win-crt-locale-l1-1-0.dll __pwctype_func
api-ms-win-crt-locale-l1-1-0.dll _configthreadlocale
api-ms-win-crt-locale-l1-1-0.dll _create_locale
api-ms-win-crt-locale-l1-1-0.dll _free_locale
api-ms-win-crt-locale-l1-1-0.dll _get_current_locale
api-ms-win-crt-locale-l1-1-0.dll _getmbcp
api-ms-win-crt-locale-l1-1-0.dll _lock_locales
api-ms-win-crt-locale-l1-1-0.dll _setmbcp
api-ms-win-crt-locale-l1-1-0.dll _unlock_locales
api-ms-win-crt-locale-l1-1-0.dll _wcreate_locale
api-ms-win-crt-locale-l1-1-0.dll _wsetlocale
api-ms-win-crt-locale-l1-1-0.dll localeconv
api-ms-win-crt-locale-l1-1-0.dll setlocale
api-ms-win-crt-math-l1-1-0.dll _Cbuild
api-ms-win-crt-math-l1-1-0.dll _Cmulcc
api-ms-win-crt-math-l1-1-0.dll _Cmulcr
api-ms-win-crt-math-l1-1-0.dll _FCbuild
api-ms-win-crt-math-l1-1-0.dll _FCmulcc
api-ms-win-crt-math-l1-1-0.dll _FCmulcr
api-ms-win-crt-math-l1-1-0.dll _LCbuild
api-ms-win-crt-math-l1-1-0.dll _LCmulcc
api-ms-win-crt-math-l1-1-0.dll _LCmulcr
api-ms-win-crt-math-l1-1-0.dll __setusermatherr
api-ms-win-crt-math-l1-1-0.dll _cabs
api-ms-win-crt-math-l1-1-0.dll _chgsign
api-ms-win-crt-math-l1-1-0.dll _chgsignf
api-ms-win-crt-math-l1-1-0.dll _copysign
api-ms-win-crt-math-l1-1-0.dll _copysignf
api-ms-win-crt-math-l1-1-0.dll _d_int
api-ms-win-crt-math-l1-1-0.dll _dclass
api-ms-win-crt-math-l1-1-0.dll _dexp
api-ms-win-crt-math-l1-1-0.dll _dlog
api-ms-win-crt-math-l1-1-0.dll _dnorm
api-ms-win-crt-math-l1-1-0.dll _dpcomp
api-ms-win-crt-math-l1-1-0.dll _dpoly
api-ms-win-crt-math-l1-1-0.dll _dscale
api-ms-win-crt-math-l1-1-0.dll _dsign
api-ms-win-crt-math-l1-1-0.dll _dsin
api-ms-win-crt-math-l1-1-0.dll _dtest
api-ms-win-crt-math-l1-1-0.dll _dunscale
api-ms-win-crt-math-l1-1-0.dll _except1
api-ms-win-crt-math-l1-1-0.dll _fd_int
api-ms-win-crt-math-l1-1-0.dll _fdclass
api-ms-win-crt-math-l1-1-0.dll _fdexp
api-ms-win-crt-math-l1-1-0.dll _fdlog
api-ms-win-crt-math-l1-1-0.dll _fdnorm
api-ms-win-crt-math-l1-1-0.dll _fdopen
api-ms-win-crt-math-l1-1-0.dll _fdpcomp
api-ms-win-crt-math-l1-1-0.dll _fdpoly
api-ms-win-crt-math-l1-1-0.dll _fdscale
api-ms-win-crt-math-l1-1-0.dll _fdsign
api-ms-win-crt-math-l1-1-0.dll _fdsin
api-ms-win-crt-math-l1-1-0.dll _fdtest
api-ms-win-crt-math-l1-1-0.dll _fdunscale
api-ms-win-crt-math-l1-1-0.dll _finite
api-ms-win-crt-math-l1-1-0.dll _finitef
api-ms-win-crt-math-l1-1-0.dll _fpclass
api-ms-win-crt-math-l1-1-0.dll _fpclassf
api-ms-win-crt-math-l1-1-0.dll _get_FMA3_enable
api-ms-win-crt-math-l1-1-0.dll _hypot
api-ms-win-crt-math-l1-1-0.dll _hypotf
api-ms-win-crt-math-l1-1-0.dll _isnan
api-ms-win-crt-math-l1-1-0.dll _isnanf
api-ms-win-crt-math-l1-1-0.dll _j0
api-ms-win-crt-math-l1-1-0.dll _j1
api-ms-win-crt-math-l1-1-0.dll _jn
api-ms-win-crt-math-l1-1-0.dll _ld_int
api-ms-win-crt-math-l1-1-0.dll _ldclass
api-ms-win-crt-math-l1-1-0.dll _ldexp
api-ms-win-crt-math-l1-1-0.dll _ldlog
api-ms-win-crt-math-l1-1-0.dll _ldpcomp
api-ms-win-crt-math-l1-1-0.dll _ldpoly
api-ms-win-crt-math-l1-1-0.dll _ldscale
api-ms-win-crt-math-l1-1-0.dll _ldsign
api-ms-win-crt-math-l1-1-0.dll _ldsin
api-ms-win-crt-math-l1-1-0.dll _ldtest
api-ms-win-crt-math-l1-1-0.dll _ldunscale
api-ms-win-crt-math-l1-1-0.dll _logb
api-ms-win-crt-math-l1-1-0.dll _logbf
api-ms-win-crt-math-l1-1-0.dll _nextafter
api-ms-win-crt-math-l1-1-0.dll _nextafterf
api-ms-win-crt-math-l1-1-0.dll _scalb
api-ms-win-crt-math-l1-1-0.dll _scalbf
api-ms-win-crt-math-l1-1-0.dll _set_FMA3_enable
api-ms-win-crt-math-l1-1-0.dll _y0
api-ms-win-crt-math-l1-1-0.dll _y1
api-ms-win-crt-math-l1-1-0.dll _yn
api-ms-win-crt-math-l1-1-0.dll acos
api-ms-win-crt-math-l1-1-0.dll acosf
api-ms-win-crt-math-l1-1-0.dll acosh
api-ms-win-crt-math-l1-1-0.dll acoshf
api-ms-win-crt-math-l1-1-0.dll acoshl
api-ms-win-crt-math-l1-1-0.dll asin
api-ms-win-crt-math-l1-1-0.dll asinf
api-ms-win-crt-math-l1-1-0.dll asinh
api-ms-win-crt-math-l1-1-0.dll asinhf
api-ms-win-crt-math-l1-1-0.dll asinhl
api-ms-win-crt-math-l1-1-0.dll atan
api-ms-win-crt-math-l1-1-0.dll atan2
api-ms-win-crt-math-l1-1-0.dll atan2f
api-ms-win-crt-math-l1-1-0.dll atanf
api-ms-win-crt-math-l1-1-0.dll atanh
api-ms-win-crt-math-l1-1-0.dll atanhf
api-ms-win-crt-math-l1-1-0.dll atanhl
api-ms-win-crt-math-l1-1-0.dll cabs
api-ms-win-crt-math-l1-1-0.dll cabsf
api-ms-win-crt-math-l1-1-0.dll cabsl
api-ms-win-crt-math-l1-1-0.dll cacos
api-ms-win-crt-math-l1-1-0.dll cacosf
api-ms-win-crt-math-l1-1-0.dll cacosh
api-ms-win-crt-math-l1-1-0.dll cacoshf
api-ms-win-crt-math-l1-1-0.dll cacoshl
api-ms-win-crt-math-l1-1-0.dll cacosl
api-ms-win-crt-math-l1-1-0.dll carg
api-ms-win-crt-math-l1-1-0.dll cargf
api-ms-win-crt-math-l1-1-0.dll cargl
api-ms-win-crt-math-l1-1-0.dll casin
api-ms-win-crt-math-l1-1-0.dll casinf
api-ms-win-crt-math-l1-1-0.dll casinh
api-ms-win-crt-math-l1-1-0.dll casinhf
api-ms-win-crt-math-l1-1-0.dll casinhl
api-ms-win-crt-math-l1-1-0.dll casinl
api-ms-win-crt-math-l1-1-0.dll catan
api-ms-win-crt-math-l1-1-0.dll catanf
api-ms-win-crt-math-l1-1-0.dll catanh
api-ms-win-crt-math-l1-1-0.dll catanhf
api-ms-win-crt-math-l1-1-0.dll catanhl
api-ms-win-crt-math-l1-1-0.dll catanl
api-ms-win-crt-math-l1-1-0.dll cbrt
api-ms-win-crt-math-l1-1-0.dll cbrtf
api-ms-win-crt-math-l1-1-0.dll cbrtl
api-ms-win-crt-math-l1-1-0.dll ccos
api-ms-win-crt-math-l1-1-0.dll ccosf
api-ms-win-crt-math-l1-1-0.dll ccosh
api-ms-win-crt-math-l1-1-0.dll ccoshf
api-ms-win-crt-math-l1-1-0.dll ccoshl
api-ms-win-crt-math-l1-1-0.dll ccosl
api-ms-win-crt-math-l1-1-0.dll ceil
api-ms-win-crt-math-l1-1-0.dll ceilf
api-ms-win-crt-math-l1-1-0.dll cexp
api-ms-win-crt-math-l1-1-0.dll cexpf
api-ms-win-crt-math-l1-1-0.dll cexpl
api-ms-win-crt-math-l1-1-0.dll cimag
api-ms-win-crt-math-l1-1-0.dll cimagf
api-ms-win-crt-math-l1-1-0.dll cimagl
api-ms-win-crt-math-l1-1-0.dll clog
api-ms-win-crt-math-l1-1-0.dll clog10
api-ms-win-crt-math-l1-1-0.dll clog10f
api-ms-win-crt-math-l1-1-0.dll clog10l
api-ms-win-crt-math-l1-1-0.dll clogf
api-ms-win-crt-math-l1-1-0.dll clogl
api-ms-win-crt-math-l1-1-0.dll conj
api-ms-win-crt-math-l1-1-0.dll conjf
api-ms-win-crt-math-l1-1-0.dll conjl
api-ms-win-crt-math-l1-1-0.dll copysign
api-ms-win-crt-math-l1-1-0.dll copysignf
api-ms-win-crt-math-l1-1-0.dll copysignl
api-ms-win-crt-math-l1-1-0.dll cos
api-ms-win-crt-math-l1-1-0.dll cosf
api-ms-win-crt-math-l1-1-0.dll cosh
api-ms-win-crt-math-l1-1-0.dll coshf
api-ms-win-crt-math-l1-1-0.dll cpow
api-ms-win-crt-math-l1-1-0.dll cpowf
api-ms-win-crt-math-l1-1-0.dll cpowl
api-ms-win-crt-math-l1-1-0.dll cproj
api-ms-win-crt-math-l1-1-0.dll cprojf
api-ms-win-crt-math-l1-1-0.dll cprojl
api-ms-win-crt-math-l1-1-0.dll creal
api-ms-win-crt-math-l1-1-0.dll crealf
api-ms-win-crt-math-l1-1-0.dll creall
api-ms-win-crt-math-l1-1-0.dll csin
api-ms-win-crt-math-l1-1-0.dll csinf
api-ms-win-crt-math-l1-1-0.dll csinh
api-ms-win-crt-math-l1-1-0.dll csinhf
api-ms-win-crt-math-l1-1-0.dll csinhl
api-ms-win-crt-math-l1-1-0.dll csinl
api-ms-win-crt-math-l1-1-0.dll csqrt
api-ms-win-crt-math-l1-1-0.dll csqrtf
api-ms-win-crt-math-l1-1-0.dll csqrtl
api-ms-win-crt-math-l1-1-0.dll ctan
api-ms-win-crt-math-l1-1-0.dll ctanf
api-ms-win-crt-math-l1-1-0.dll ctanh
api-ms-win-crt-math-l1-1-0.dll ctanhf
api-ms-win-crt-math-l1-1-0.dll ctanhl
api-ms-win-crt-math-l1-1-0.dll ctanl
api-ms-win-crt-math-l1-1-0.dll erf
api-ms-win-crt-math-l1-1-0.dll erfc
api-ms-win-crt-math-l1-1-0.dll erfcf
api-ms-win-crt-math-l1-1-0.dll erfcl
api-ms-win-crt-math-l1-1-0.dll erff
api-ms-win-crt-math-l1-1-0.dll erfl
api-ms-win-crt-math-l1-1-0.dll exp
api-ms-win-crt-math-l1-1-0.dll exp2
api-ms-win-crt-math-l1-1-0.dll exp2f
api-ms-win-crt-math-l1-1-0.dll exp2l
api-ms-win-crt-math-l1-1-0.dll expf
api-ms-win-crt-math-l1-1-0.dll expm1
api-ms-win-crt-math-l1-1-0.dll expm1f
api-ms-win-crt-math-l1-1-0.dll expm1l
api-ms-win-crt-math-l1-1-0.dll fabs
api-ms-win-crt-math-l1-1-0.dll fdim
api-ms-win-crt-math-l1-1-0.dll fdimf
api-ms-win-crt-math-l1-1-0.dll fdiml
api-ms-win-crt-math-l1-1-0.dll floor
api-ms-win-crt-math-l1-1-0.dll floorf
api-ms-win-crt-math-l1-1-0.dll fma
api-ms-win-crt-math-l1-1-0.dll fmaf
api-ms-win-crt-math-l1-1-0.dll fmal
api-ms-win-crt-math-l1-1-0.dll fmax
api-ms-win-crt-math-l1-1-0.dll fmaxf
api-ms-win-crt-math-l1-1-0.dll fmaxl
api-ms-win-crt-math-l1-1-0.dll fmin
api-ms-win-crt-math-l1-1-0.dll fminf
api-ms-win-crt-math-l1-1-0.dll fminl
api-ms-win-crt-math-l1-1-0.dll fmod
api-ms-win-crt-math-l1-1-0.dll fmodf
api-ms-win-crt-math-l1-1-0.dll frexp
api-ms-win-crt-math-l1-1-0.dll hypot
api-ms-win-crt-math-l1-1-0.dll ilogb
api-ms-win-crt-math-l1-1-0.dll ilogbf
api-ms-win-crt-math-l1-1-0.dll ilogbl
api-ms-win-crt-math-l1-1-0.dll ldexp
api-ms-win-crt-math-l1-1-0.dll lgamma
api-ms-win-crt-math-l1-1-0.dll lgammaf
api-ms-win-crt-math-l1-1-0.dll lgammal
api-ms-win-crt-math-l1-1-0.dll llrint
api-ms-win-crt-math-l1-1-0.dll llrintf
api-ms-win-crt-math-l1-1-0.dll llrintl
api-ms-win-crt-math-l1-1-0.dll llround
api-ms-win-crt-math-l1-1-0.dll llroundf
api-ms-win-crt-math-l1-1-0.dll llroundl
api-ms-win-crt-math-l1-1-0.dll log
api-ms-win-crt-math-l1-1-0.dll log10
api-ms-win-crt-math-l1-1-0.dll log10f
api-ms-win-crt-math-l1-1-0.dll log1p
api-ms-win-crt-math-l1-1-0.dll log1pf
api-ms-win-crt-math-l1-1-0.dll log1pl
api-ms-win-crt-math-l1-1-0.dll log2
api-ms-win-crt-math-l1-1-0.dll log2f
api-ms-win-crt-math-l1-1-0.dll log2l
api-ms-win-crt-math-l1-1-0.dll logb
api-ms-win-crt-math-l1-1-0.dll logbf
api-ms-win-crt-math-l1-1-0.dll logbl
api-ms-win-crt-math-l1-1-0.dll logf
api-ms-win-crt-math-l1-1-0.dll lrint
api-ms-win-crt-math-l1-1-0.dll lrintf
api-ms-win-crt-math-l1-1-0.dll lrintl
api-ms-win-crt-math-l1-1-0.dll lround
api-ms-win-crt-math-l1-1-0.dll lroundf
api-ms-win-crt-math-l1-1-0.dll lroundl
api-ms-win-crt-math-l1-1-0.dll modf
api-ms-win-crt-math-l1-1-0.dll modff
api-ms-win-crt-math-l1-1-0.dll nan
api-ms-win-crt-math-l1-1-0.dll nanf
api-ms-win-crt-math-l1-1-0.dll nanl
api-ms-win-crt-math-l1-1-0.dll nearbyint
api-ms-win-crt-math-l1-1-0.dll nearbyintf
api-ms-win-crt-math-l1-1-0.dll nearbyintl
api-ms-win-crt-math-l1-1-0.dll nextafter
api-ms-win-crt-math-l1-1-0.dll nextafterf
api-ms-win-crt-math-l1-1-0.dll nextafterl
api-ms-win-crt-math-l1-1-0.dll nexttoward
api-ms-win-crt-math-l1-1-0.dll nexttowardf
api-ms-win-crt-math-l1-1-0.dll nexttowardl
api-ms-win-crt-math-l1-1-0.dll norm
api-ms-win-crt-math-l1-1-0.dll normf
api-ms-win-crt-math-l1-1-0.dll norml
api-ms-win-crt-math-l1-1-0.dll pow
api-ms-win-crt-math-l1-1-0.dll powf
api-ms-win-crt-math-l1-1-0.dll remainder
api-ms-win-crt-math-l1-1-0.dll remainderf
api-ms-win-crt-math-l1-1-0.dll remainderl
api-ms-win-crt-math-l1-1-0.dll remquo
api-ms-win-crt-math-l1-1-0.dll remquof
api-ms-win-crt-math-l1-1-0.dll remquol
api-ms-win-crt-math-l1-1-0.dll rint
api-ms-win-crt-math-l1-1-0.dll rintf
api-ms-win-crt-math-l1-1-0.dll rintl
api-ms-win-crt-math-l1-1-0.dll round
api-ms-win-crt-math-l1-1-0.dll roundf
api-ms-win-crt-math-l1-1-0.dll roundl
api-ms-win-crt-math-l1-1-0.dll scalbln
api-ms-win-crt-math-l1-1-0.dll scalblnf
api-ms-win-crt-math-l1-1-0.dll scalblnl
api-ms-win-crt-math-l1-1-0.dll scalbn
api-ms-win-crt-math-l1-1-0.dll scalbnf
api-ms-win-crt-math-l1-1-0.dll scalbnl
api-ms-win-crt-math-l1-1-0.dll sin
api-ms-win-crt-math-l1-1-0.dll sinf
api-ms-win-crt-math-l1-1-0.dll sinh
api-ms-win-crt-math-l1-1-0.dll sinhf
api-ms-win-crt-math-l1-1-0.dll sqrt
api-ms-win-crt-math-l1-1-0.dll sqrtf
api-ms-win-crt-math-l1-1-0.dll tan
api-ms-win-crt-math-l1-1-0.dll tanf
api-ms-win-crt-math-l1-1-0.dll tanh
api-ms-win-crt-math-l1-1-0.dll tanhf
api-ms-win-crt-math-l1-1-0.dll tgamma
api-ms-win-crt-math-l1-1-0.dll tgammaf
api-ms-win-crt-math-l1-1-0.dll tgammal
api-ms-win-crt-math-l1-1-0.dll trunc
api-ms-win-crt-math-l1-1-0.dll truncf
api-ms-win-crt-math-l1-1-0.dll truncl
api-ms-win-crt-multibyte-l1-1-0.dll __p__mbcasemap
api-ms-win-crt-multibyte-l1-1-0.dll __p__mbctype
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbalnum
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbalnum_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbalpha
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbalpha_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbblank
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbblank_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbgraph
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbgraph_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkalnum
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkalnum_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkana
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkana_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkprint
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkprint_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkpunct
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbkpunct_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbblead
api-ms-win-crt-multibyte-l1-1-0.dll _ismbblead_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbprint
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbprint_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbpunct
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbpunct_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbtrail
api-ms-win-crt-multibyte-l1-1-0.dll _ismbbtrail_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcalnum
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcalnum_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcalpha
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcalpha_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcblank
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcblank_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcdigit
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcdigit_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcgraph
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcgraph_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbchira
api-ms-win-crt-multibyte-l1-1-0.dll _ismbchira_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbckata
api-ms-win-crt-multibyte-l1-1-0.dll _ismbckata_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcl0
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcl0_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcl1
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcl1_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcl2
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcl2_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbclegal
api-ms-win-crt-multibyte-l1-1-0.dll _ismbclegal_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbclower
api-ms-win-crt-multibyte-l1-1-0.dll _ismbclower_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcprint
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcprint_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcpunct
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcpunct_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcspace
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcspace_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcsymbol
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcsymbol_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcupper
api-ms-win-crt-multibyte-l1-1-0.dll _ismbcupper_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbslead
api-ms-win-crt-multibyte-l1-1-0.dll _ismbslead_l
api-ms-win-crt-multibyte-l1-1-0.dll _ismbstrail
api-ms-win-crt-multibyte-l1-1-0.dll _ismbstrail_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbbtombc
api-ms-win-crt-multibyte-l1-1-0.dll _mbbtombc_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbbtype
api-ms-win-crt-multibyte-l1-1-0.dll _mbbtype_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbcasemap
api-ms-win-crt-multibyte-l1-1-0.dll _mbccpy
api-ms-win-crt-multibyte-l1-1-0.dll _mbccpy_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbccpy_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbccpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbcjistojms
api-ms-win-crt-multibyte-l1-1-0.dll _mbcjistojms_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbcjmstojis
api-ms-win-crt-multibyte-l1-1-0.dll _mbcjmstojis_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbclen
api-ms-win-crt-multibyte-l1-1-0.dll _mbclen_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbctohira
api-ms-win-crt-multibyte-l1-1-0.dll _mbctohira_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbctokata
api-ms-win-crt-multibyte-l1-1-0.dll _mbctokata_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbctolower
api-ms-win-crt-multibyte-l1-1-0.dll _mbctolower_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbctombb
api-ms-win-crt-multibyte-l1-1-0.dll _mbctombb_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbctoupper
api-ms-win-crt-multibyte-l1-1-0.dll _mbctoupper_l
api-ms-win-crt-multibyte-l1-1-0.dll _mblen_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsbtype
api-ms-win-crt-multibyte-l1-1-0.dll _mbsbtype_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbscat_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbscat_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbschr
api-ms-win-crt-multibyte-l1-1-0.dll _mbschr_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbscmp
api-ms-win-crt-multibyte-l1-1-0.dll _mbscmp_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbscoll
api-ms-win-crt-multibyte-l1-1-0.dll _mbscoll_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbscpy_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbscpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbscspn
api-ms-win-crt-multibyte-l1-1-0.dll _mbscspn_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsdec
api-ms-win-crt-multibyte-l1-1-0.dll _mbsdec_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsdup
api-ms-win-crt-multibyte-l1-1-0.dll _mbsicmp
api-ms-win-crt-multibyte-l1-1-0.dll _mbsicmp_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsicoll
api-ms-win-crt-multibyte-l1-1-0.dll _mbsicoll_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsinc
api-ms-win-crt-multibyte-l1-1-0.dll _mbsinc_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbslen
api-ms-win-crt-multibyte-l1-1-0.dll _mbslen_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbslwr
api-ms-win-crt-multibyte-l1-1-0.dll _mbslwr_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbslwr_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbslwr_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcat
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcat_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcat_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcat_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcmp
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcmp_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcnt
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcnt_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcoll
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcoll_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcpy
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcpy_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcpy_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbcpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbicmp
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbicmp_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbicoll
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbicoll_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbset
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbset_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbset_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnbset_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncat
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncat_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncat_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncat_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnccnt
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnccnt_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncmp
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncmp_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncoll
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncoll_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncpy
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncpy_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncpy_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsncpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnextc
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnextc_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnicmp
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnicmp_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnicoll
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnicoll_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsninc
api-ms-win-crt-multibyte-l1-1-0.dll _mbsninc_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnlen
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnlen_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnset
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnset_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnset_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsnset_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbspbrk
api-ms-win-crt-multibyte-l1-1-0.dll _mbspbrk_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsrchr
api-ms-win-crt-multibyte-l1-1-0.dll _mbsrchr_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsrev
api-ms-win-crt-multibyte-l1-1-0.dll _mbsrev_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsset
api-ms-win-crt-multibyte-l1-1-0.dll _mbsset_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsset_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsset_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsspn
api-ms-win-crt-multibyte-l1-1-0.dll _mbsspn_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsspnp
api-ms-win-crt-multibyte-l1-1-0.dll _mbsspnp_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsstr
api-ms-win-crt-multibyte-l1-1-0.dll _mbsstr_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbstok
api-ms-win-crt-multibyte-l1-1-0.dll _mbstok_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbstok_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbstok_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbstowcs_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbstowcs_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbstrlen
api-ms-win-crt-multibyte-l1-1-0.dll _mbstrlen_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbstrnlen
api-ms-win-crt-multibyte-l1-1-0.dll _mbstrnlen_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsupr
api-ms-win-crt-multibyte-l1-1-0.dll _mbsupr_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbsupr_s
api-ms-win-crt-multibyte-l1-1-0.dll _mbsupr_s_l
api-ms-win-crt-multibyte-l1-1-0.dll _mbtowc_l
api-ms-win-crt-process-l1-1-0.dll _beep
api-ms-win-crt-process-l1-1-0.dll _cwait
api-ms-win-crt-process-l1-1-0.dll _execl
api-ms-win-crt-process-l1-1-0.dll _execle
api-ms-win-crt-process-l1-1-0.dll _execlp
api-ms-win-crt-process-l1-1-0.dll _execlpe
api-ms-win-crt-process-l1-1-0.dll _execv
api-ms-win-crt-process-l1-1-0.dll _execve
api-ms-win-crt-process-l1-1-0.dll _execvp
api-ms-win-crt-process-l1-1-0.dll _execvpe
api-ms-win-crt-process-l1-1-0.dll _loaddll
api-ms-win-crt-process-l1-1-0.dll _spawnl
api-ms-win-crt-process-l1-1-0.dll _spawnle
api-ms-win-crt-process-l1-1-0.dll _spawnlp
api-ms-win-crt-process-l1-1-0.dll _spawnlpe
api-ms-win-crt-process-l1-1-0.dll _spawnv
api-ms-win-crt-process-l1-1-0.dll _spawnve
api-ms-win-crt-process-l1-1-0.dll _spawnvp
api-ms-win-crt-process-l1-1-0.dll _spawnvpe
api-ms-win-crt-process-l1-1-0.dll _unloaddll
api-ms-win-crt-process-l1-1-0.dll _wexecl
api-ms-win-crt-process-l1-1-0.dll _wexecle
api-ms-win-crt-process-l1-1-0.dll _wexeclp
api-ms-win-crt-process-l1-1-0.dll _wexeclpe
api-ms-win-crt-process-l1-1-0.dll _wexecv
api-ms-win-crt-process-l1-1-0.dll _wexecve
api-ms-win-crt-process-l1-1-0.dll _wexecvp
api-ms-win-crt-process-l1-1-0.dll _wexecvpe
api-ms-win-crt-process-l1-1-0.dll _wspawnl
api-ms-win-crt-process-l1-1-0.dll _wspawnle
api-ms-win-crt-process-l1-1-0.dll _wspawnlp
api-ms-win-crt-process-l1-1-0.dll _wspawnlpe
api-ms-win-crt-process-l1-1-0.dll _wspawnv
api-ms-win-crt-process-l1-1-0.dll _wspawnve
api-ms-win-crt-process-l1-1-0.dll _wspawnvp
api-ms-win-crt-process-l1-1-0.dll _wspawnvpe
api-ms-win-crt-runtime-l1-1-0.dll _Exit
api-ms-win-crt-runtime-l1-1-0.dll __doserrno
api-ms-win-crt-runtime-l1-1-0.dll __fpe_flt_rounds
api-ms-win-crt-runtime-l1-1-0.dll __fpecode
api-ms-win-crt-runtime-l1-1-0.dll __p___argc
api-ms-win-crt-runtime-l1-1-0.dll __p___argv
api-ms-win-crt-runtime-l1-1-0.dll __p___wargv
api-ms-win-crt-runtime-l1-1-0.dll __p__acmdln
api-ms-win-crt-runtime-l1-1-0.dll __p__pgmptr
api-ms-win-crt-runtime-l1-1-0.dll __p__wcmdln
api-ms-win-crt-runtime-l1-1-0.dll __p__wpgmptr
api-ms-win-crt-runtime-l1-1-0.dll __pxcptinfoptrs
api-ms-win-crt-runtime-l1-1-0.dll __sys_errlist
api-ms-win-crt-runtime-l1-1-0.dll __sys_nerr
api-ms-win-crt-runtime-l1-1-0.dll __threadhandle
api-ms-win-crt-runtime-l1-1-0.dll __threadid
api-ms-win-crt-runtime-l1-1-0.dll __wcserror
api-ms-win-crt-runtime-l1-1-0.dll __wcserror_s
api-ms-win-crt-runtime-l1-1-0.dll _assert
api-ms-win-crt-runtime-l1-1-0.dll _beginthread
api-ms-win-crt-runtime-l1-1-0.dll _beginthreadex
api-ms-win-crt-runtime-l1-1-0.dll _c_exit
api-ms-win-crt-runtime-l1-1-0.dll _cexit
api-ms-win-crt-runtime-l1-1-0.dll _clearfp
api-ms-win-crt-runtime-l1-1-0.dll _configure_narrow_argv
api-ms-win-crt-runtime-l1-1-0.dll _configure_wide_argv
api-ms-win-crt-runtime-l1-1-0.dll _control87
api-ms-win-crt-runtime-l1-1-0.dll _controlfp
api-ms-win-crt-runtime-l1-1-0.dll _controlfp_s
api-ms-win-crt-runtime-l1-1-0.dll _crt_at_quick_exit
api-ms-win-crt-runtime-l1-1-0.dll _crt_atexit
api-ms-win-crt-runtime-l1-1-0.dll _endthread
api-ms-win-crt-runtime-l1-1-0.dll _endthreadex
api-ms-win-crt-runtime-l1-1-0.dll _errno
api-ms-win-crt-runtime-l1-1-0.dll _execute_onexit_table
api-ms-win-crt-runtime-l1-1-0.dll _exit
api-ms-win-crt-runtime-l1-1-0.dll _fpieee_flt
api-ms-win-crt-runtime-l1-1-0.dll _fpreset
api-ms-win-crt-runtime-l1-1-0.dll _get_doserrno
api-ms-win-crt-runtime-l1-1-0.dll _get_errno
api-ms-win-crt-runtime-l1-1-0.dll _get_initial_narrow_environment
api-ms-win-crt-runtime-l1-1-0.dll _get_initial_wide_environment
api-ms-win-crt-runtime-l1-1-0.dll _get_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll _get_narrow_winmain_command_line
api-ms-win-crt-runtime-l1-1-0.dll _get_pgmptr
api-ms-win-crt-runtime-l1-1-0.dll _get_terminate
api-ms-win-crt-runtime-l1-1-0.dll _get_thread_local_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll _get_wide_winmain_command_line
api-ms-win-crt-runtime-l1-1-0.dll _get_wpgmptr
api-ms-win-crt-runtime-l1-1-0.dll _getdllprocaddr
api-ms-win-crt-runtime-l1-1-0.dll _getpid
api-ms-win-crt-runtime-l1-1-0.dll _initialize_narrow_environment
api-ms-win-crt-runtime-l1-1-0.dll _initialize_onexit_table
api-ms-win-crt-runtime-l1-1-0.dll _initialize_wide_environment
api-ms-win-crt-runtime-l1-1-0.dll _initterm
api-ms-win-crt-runtime-l1-1-0.dll _initterm_e
api-ms-win-crt-runtime-l1-1-0.dll _invalid_parameter_noinfo
api-ms-win-crt-runtime-l1-1-0.dll _invalid_parameter_noinfo_noreturn
api-ms-win-crt-runtime-l1-1-0.dll _invoke_watson
api-ms-win-crt-runtime-l1-1-0.dll _query_app_type
api-ms-win-crt-runtime-l1-1-0.dll _register_onexit_function
api-ms-win-crt-runtime-l1-1-0.dll _register_thread_local_exe_atexit_callback
api-ms-win-crt-runtime-l1-1-0.dll _resetstkoflw
api-ms-win-crt-runtime-l1-1-0.dll _seh_filter_dll
api-ms-win-crt-runtime-l1-1-0.dll _seh_filter_exe
api-ms-win-crt-runtime-l1-1-0.dll _set_abort_behavior
api-ms-win-crt-runtime-l1-1-0.dll _set_app_type
api-ms-win-crt-runtime-l1-1-0.dll _set_controlfp
api-ms-win-crt-runtime-l1-1-0.dll _set_doserrno
api-ms-win-crt-runtime-l1-1-0.dll _set_errno
api-ms-win-crt-runtime-l1-1-0.dll _set_error_mode
api-ms-win-crt-runtime-l1-1-0.dll _set_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll _set_new_handler
api-ms-win-crt-runtime-l1-1-0.dll _set_thread_local_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll _seterrormode
api-ms-win-crt-runtime-l1-1-0.dll _sleep
api-ms-win-crt-runtime-l1-1-0.dll _statusfp
api-ms-win-crt-runtime-l1-1-0.dll _strerror
api-ms-win-crt-runtime-l1-1-0.dll _strerror_s
api-ms-win-crt-runtime-l1-1-0.dll _wassert
api-ms-win-crt-runtime-l1-1-0.dll _wcserror
api-ms-win-crt-runtime-l1-1-0.dll _wcserror_s
api-ms-win-crt-runtime-l1-1-0.dll _wperror
api-ms-win-crt-runtime-l1-1-0.dll _wsystem
api-ms-win-crt-runtime-l1-1-0.dll abort
api-ms-win-crt-runtime-l1-1-0.dll exit
api-ms-win-crt-runtime-l1-1-0.dll feclearexcept
api-ms-win-crt-runtime-l1-1-0.dll fegetenv
api-ms-win-crt-runtime-l1-1-0.dll fegetexceptflag
api-ms-win-crt-runtime-l1-1-0.dll fegetround
api-ms-win-crt-runtime-l1-1-0.dll feholdexcept
api-ms-win-crt-runtime-l1-1-0.dll fesetenv
api-ms-win-crt-runtime-l1-1-0.dll fesetexceptflag
api-ms-win-crt-runtime-l1-1-0.dll fesetround
api-ms-win-crt-runtime-l1-1-0.dll fetestexcept
api-ms-win-crt-runtime-l1-1-0.dll perror
api-ms-win-crt-runtime-l1-1-0.dll quick_exit
api-ms-win-crt-runtime-l1-1-0.dll raise
api-ms-win-crt-runtime-l1-1-0.dll set_terminate
api-ms-win-crt-runtime-l1-1-0.dll signal
api-ms-win-crt-runtime-l1-1-0.dll strerror
api-ms-win-crt-runtime-l1-1-0.dll strerror_s
api-ms-win-crt-runtime-l1-1-0.dll system
api-ms-win-crt-runtime-l1-1-0.dll terminate
api-ms-win-crt-stdio-l1-1-0.dll __acrt_iob_func
api-ms-win-crt-stdio-l1-1-0.dll __p__commode
api-ms-win-crt-stdio-l1-1-0.dll __p__fmode
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfprintf
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfprintf_p
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfprintf_s
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfscanf
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfwprintf
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfwprintf_p
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfwprintf_s
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vfwscanf
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vsnprintf_s
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vsnwprintf_s
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vsprintf
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vsprintf_p
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vsprintf_s
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vsscanf
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vswprintf
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vswprintf_p
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vswprintf_s
api-ms-win-crt-stdio-l1-1-0.dll __stdio_common_vswscanf
api-ms-win-crt-stdio-l1-1-0.dll _chsize
api-ms-win-crt-stdio-l1-1-0.dll _chsize_s
api-ms-win-crt-stdio-l1-1-0.dll _close
api-ms-win-crt-stdio-l1-1-0.dll _commit
api-ms-win-crt-stdio-l1-1-0.dll _creat
api-ms-win-crt-stdio-l1-1-0.dll _dup
api-ms-win-crt-stdio-l1-1-0.dll _dup2
api-ms-win-crt-stdio-l1-1-0.dll _eof
api-ms-win-crt-stdio-l1-1-0.dll _fclose_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fcloseall
api-ms-win-crt-stdio-l1-1-0.dll _fflush_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fgetc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fgetchar
api-ms-win-crt-stdio-l1-1-0.dll _fgetwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fgetwchar
api-ms-win-crt-stdio-l1-1-0.dll _filelength
api-ms-win-crt-stdio-l1-1-0.dll _filelengthi64
api-ms-win-crt-stdio-l1-1-0.dll _fileno
api-ms-win-crt-stdio-l1-1-0.dll _flushall
api-ms-win-crt-stdio-l1-1-0.dll _fputc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fputchar
api-ms-win-crt-stdio-l1-1-0.dll _fputwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fputwchar
api-ms-win-crt-stdio-l1-1-0.dll _fread_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fread_nolock_s
api-ms-win-crt-stdio-l1-1-0.dll _fseek_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fseeki64
api-ms-win-crt-stdio-l1-1-0.dll _fseeki64_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fsopen
api-ms-win-crt-stdio-l1-1-0.dll _ftell_nolock
api-ms-win-crt-stdio-l1-1-0.dll _ftelli64
api-ms-win-crt-stdio-l1-1-0.dll _ftelli64_nolock
api-ms-win-crt-stdio-l1-1-0.dll _fwrite_nolock
api-ms-win-crt-stdio-l1-1-0.dll _get_fmode
api-ms-win-crt-stdio-l1-1-0.dll _get_osfhandle
api-ms-win-crt-stdio-l1-1-0.dll _get_printf_count_output
api-ms-win-crt-stdio-l1-1-0.dll _get_stream_buffer_pointers
api-ms-win-crt-stdio-l1-1-0.dll _getc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _getcwd
api-ms-win-crt-stdio-l1-1-0.dll _getdcwd
api-ms-win-crt-stdio-l1-1-0.dll _getmaxstdio
api-ms-win-crt-stdio-l1-1-0.dll _getw
api-ms-win-crt-stdio-l1-1-0.dll _getwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _getws
api-ms-win-crt-stdio-l1-1-0.dll _getws_s
api-ms-win-crt-stdio-l1-1-0.dll _isatty
api-ms-win-crt-stdio-l1-1-0.dll _kbhit
api-ms-win-crt-stdio-l1-1-0.dll _locking
api-ms-win-crt-stdio-l1-1-0.dll _lseek
api-ms-win-crt-stdio-l1-1-0.dll _lseeki64
api-ms-win-crt-stdio-l1-1-0.dll _mktemp
api-ms-win-crt-stdio-l1-1-0.dll _mktemp_s
api-ms-win-crt-stdio-l1-1-0.dll _open
api-ms-win-crt-stdio-l1-1-0.dll _open_osfhandle
api-ms-win-crt-stdio-l1-1-0.dll _pclose
api-ms-win-crt-stdio-l1-1-0.dll _pipe
api-ms-win-crt-stdio-l1-1-0.dll _popen
api-ms-win-crt-stdio-l1-1-0.dll _putc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _putw
api-ms-win-crt-stdio-l1-1-0.dll _putwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _putws
api-ms-win-crt-stdio-l1-1-0.dll _read
api-ms-win-crt-stdio-l1-1-0.dll _rmtmp
api-ms-win-crt-stdio-l1-1-0.dll _set_fmode
api-ms-win-crt-stdio-l1-1-0.dll _set_printf_count_output
api-ms-win-crt-stdio-l1-1-0.dll _setmaxstdio
api-ms-win-crt-stdio-l1-1-0.dll _setmode
api-ms-win-crt-stdio-l1-1-0.dll _sopen
api-ms-win-crt-stdio-l1-1-0.dll _sopen_dispatch
api-ms-win-crt-stdio-l1-1-0.dll _sopen_s
api-ms-win-crt-stdio-l1-1-0.dll _tell
api-ms-win-crt-stdio-l1-1-0.dll _telli64
api-ms-win-crt-stdio-l1-1-0.dll _tempnam
api-ms-win-crt-stdio-l1-1-0.dll _ungetc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _ungetwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll _wcreat
api-ms-win-crt-stdio-l1-1-0.dll _wfdopen
api-ms-win-crt-stdio-l1-1-0.dll _wfopen
api-ms-win-crt-stdio-l1-1-0.dll _wfopen_s
api-ms-win-crt-stdio-l1-1-0.dll _wfreopen
api-ms-win-crt-stdio-l1-1-0.dll _wfreopen_s
api-ms-win-crt-stdio-l1-1-0.dll _wfsopen
api-ms-win-crt-stdio-l1-1-0.dll _wmktemp
api-ms-win-crt-stdio-l1-1-0.dll _wmktemp_s
api-ms-win-crt-stdio-l1-1-0.dll _wopen
api-ms-win-crt-stdio-l1-1-0.dll _wpopen
api-ms-win-crt-stdio-l1-1-0.dll _write
api-ms-win-crt-stdio-l1-1-0.dll _wsopen
api-ms-win-crt-stdio-l1-1-0.dll _wsopen_dispatch
api-ms-win-crt-stdio-l1-1-0.dll _wsopen_s
api-ms-win-crt-stdio-l1-1-0.dll _wtempnam
api-ms-win-crt-stdio-l1-1-0.dll _wtmpnam
api-ms-win-crt-stdio-l1-1-0.dll _wtmpnam_s
api-ms-win-crt-stdio-l1-1-0.dll clearerr
api-ms-win-crt-stdio-l1-1-0.dll clearerr_s
api-ms-win-crt-stdio-l1-1-0.dll fclose
api-ms-win-crt-stdio-l1-1-0.dll feof
api-ms-win-crt-stdio-l1-1-0.dll ferror
api-ms-win-crt-stdio-l1-1-0.dll fflush
api-ms-win-crt-stdio-l1-1-0.dll fgetc
api-ms-win-crt-stdio-l1-1-0.dll fgetpos
api-ms-win-crt-stdio-l1-1-0.dll fgets
api-ms-win-crt-stdio-l1-1-0.dll fgetwc
api-ms-win-crt-stdio-l1-1-0.dll fgetws
api-ms-win-crt-stdio-l1-1-0.dll fopen
api-ms-win-crt-stdio-l1-1-0.dll fopen_s
api-ms-win-crt-stdio-l1-1-0.dll fputc
api-ms-win-crt-stdio-l1-1-0.dll fputs
api-ms-win-crt-stdio-l1-1-0.dll fputwc
api-ms-win-crt-stdio-l1-1-0.dll fputws
api-ms-win-crt-stdio-l1-1-0.dll fread
api-ms-win-crt-stdio-l1-1-0.dll fread_s
api-ms-win-crt-stdio-l1-1-0.dll freopen
api-ms-win-crt-stdio-l1-1-0.dll freopen_s
api-ms-win-crt-stdio-l1-1-0.dll fseek
api-ms-win-crt-stdio-l1-1-0.dll fsetpos
api-ms-win-crt-stdio-l1-1-0.dll ftell
api-ms-win-crt-stdio-l1-1-0.dll fwrite
api-ms-win-crt-stdio-l1-1-0.dll getc
api-ms-win-crt-stdio-l1-1-0.dll getchar
api-ms-win-crt-stdio-l1-1-0.dll gets
api-ms-win-crt-stdio-l1-1-0.dll gets_s
api-ms-win-crt-stdio-l1-1-0.dll getwc
api-ms-win-crt-stdio-l1-1-0.dll getwchar
api-ms-win-crt-stdio-l1-1-0.dll putc
api-ms-win-crt-stdio-l1-1-0.dll putchar
api-ms-win-crt-stdio-l1-1-0.dll puts
api-ms-win-crt-stdio-l1-1-0.dll putwc
api-ms-win-crt-stdio-l1-1-0.dll putwchar
api-ms-win-crt-stdio-l1-1-0.dll rewind
api-ms-win-crt-stdio-l1-1-0.dll setbuf
api-ms-win-crt-stdio-l1-1-0.dll setvbuf
api-ms-win-crt-stdio-l1-1-0.dll tmpfile
api-ms-win-crt-stdio-l1-1-0.dll tmpfile_s
api-ms-win-crt-stdio-l1-1-0.dll tmpnam
api-ms-win-crt-stdio-l1-1-0.dll tmpnam_s
api-ms-win-crt-stdio-l1-1-0.dll ungetc
api-ms-win-crt-stdio-l1-1-0.dll ungetwc
api-ms-win-crt-string-l1-1-0.dll __isascii
api-ms-win-crt-string-l1-1-0.dll __iscsym
api-ms-win-crt-string-l1-1-0.dll __iscsymf
api-ms-win-crt-string-l1-1-0.dll __iswcsym
api-ms-win-crt-string-l1-1-0.dll __iswcsymf
api-ms-win-crt-string-l1-1-0.dll __strncnt
api-ms-win-crt-string-l1-1-0.dll __wcsncnt
api-ms-win-crt-string-l1-1-0.dll _isalnum_l
api-ms-win-crt-string-l1-1-0.dll _isalpha_l
api-ms-win-crt-string-l1-1-0.dll _isblank_l
api-ms-win-crt-string-l1-1-0.dll _iscntrl_l
api-ms-win-crt-string-l1-1-0.dll _isctype
api-ms-win-crt-string-l1-1-0.dll _isctype_l
api-ms-win-crt-string-l1-1-0.dll _isdigit_l
api-ms-win-crt-string-l1-1-0.dll _isgraph_l
api-ms-win-crt-string-l1-1-0.dll _isleadbyte_l
api-ms-win-crt-string-l1-1-0.dll _islower_l
api-ms-win-crt-string-l1-1-0.dll _isprint_l
api-ms-win-crt-string-l1-1-0.dll _ispunct_l
api-ms-win-crt-string-l1-1-0.dll _isspace_l
api-ms-win-crt-string-l1-1-0.dll _isupper_l
api-ms-win-crt-string-l1-1-0.dll _iswalnum_l
api-ms-win-crt-string-l1-1-0.dll _iswalpha_l
api-ms-win-crt-string-l1-1-0.dll _iswblank_l
api-ms-win-crt-string-l1-1-0.dll _iswcntrl_l
api-ms-win-crt-string-l1-1-0.dll _iswcsym_l
api-ms-win-crt-string-l1-1-0.dll _iswcsymf_l
api-ms-win-crt-string-l1-1-0.dll _iswctype_l
api-ms-win-crt-string-l1-1-0.dll _iswdigit_l
api-ms-win-crt-string-l1-1-0.dll _iswgraph_l
api-ms-win-crt-string-l1-1-0.dll _iswlower_l
api-ms-win-crt-string-l1-1-0.dll _iswprint_l
api-ms-win-crt-string-l1-1-0.dll _iswpunct_l
api-ms-win-crt-string-l1-1-0.dll _iswspace_l
api-ms-win-crt-string-l1-1-0.dll _iswupper_l
api-ms-win-crt-string-l1-1-0.dll _iswxdigit_l
api-ms-win-crt-string-l1-1-0.dll _isxdigit_l
api-ms-win-crt-string-l1-1-0.dll _memccpy
api-ms-win-crt-string-l1-1-0.dll _memicmp
api-ms-win-crt-string-l1-1-0.dll _memicmp_l
api-ms-win-crt-string-l1-1-0.dll _strcoll_l
api-ms-win-crt-string-l1-1-0.dll _strdup
api-ms-win-crt-string-l1-1-0.dll _stricmp
api-ms-win-crt-string-l1-1-0.dll _stricmp_l
api-ms-win-crt-string-l1-1-0.dll _stricoll
api-ms-win-crt-string-l1-1-0.dll _stricoll_l
api-ms-win-crt-string-l1-1-0.dll _strlwr
api-ms-win-crt-string-l1-1-0.dll _strlwr_l
api-ms-win-crt-string-l1-1-0.dll _strlwr_s
api-ms-win-crt-string-l1-1-0.dll _strlwr_s_l
api-ms-win-crt-string-l1-1-0.dll _strncoll
api-ms-win-crt-string-l1-1-0.dll _strncoll_l
api-ms-win-crt-string-l1-1-0.dll _strnicmp
api-ms-win-crt-string-l1-1-0.dll _strnicmp_l
api-ms-win-crt-string-l1-1-0.dll _strnicoll
api-ms-win-crt-string-l1-1-0.dll _strnicoll_l
api-ms-win-crt-string-l1-1-0.dll _strnset
api-ms-win-crt-string-l1-1-0.dll _strnset_s
api-ms-win-crt-string-l1-1-0.dll _strrev
api-ms-win-crt-string-l1-1-0.dll _strset
api-ms-win-crt-string-l1-1-0.dll _strset_s
api-ms-win-crt-string-l1-1-0.dll _strupr
api-ms-win-crt-string-l1-1-0.dll _strupr_l
api-ms-win-crt-string-l1-1-0.dll _strupr_s
api-ms-win-crt-string-l1-1-0.dll _strupr_s_l
api-ms-win-crt-string-l1-1-0.dll _strxfrm_l
api-ms-win-crt-string-l1-1-0.dll _tolower
api-ms-win-crt-string-l1-1-0.dll _tolower_l
api-ms-win-crt-string-l1-1-0.dll _toupper
api-ms-win-crt-string-l1-1-0.dll _toupper_l
api-ms-win-crt-string-l1-1-0.dll _towlower_l
api-ms-win-crt-string-l1-1-0.dll _towupper_l
api-ms-win-crt-string-l1-1-0.dll _wcscoll_l
api-ms-win-crt-string-l1-1-0.dll _wcsdup
api-ms-win-crt-string-l1-1-0.dll _wcsicmp
api-ms-win-crt-string-l1-1-0.dll _wcsicmp_l
api-ms-win-crt-string-l1-1-0.dll _wcsicoll
api-ms-win-crt-string-l1-1-0.dll _wcsicoll_l
api-ms-win-crt-string-l1-1-0.dll _wcslwr
api-ms-win-crt-string-l1-1-0.dll _wcslwr_l
api-ms-win-crt-string-l1-1-0.dll _wcslwr_s
api-ms-win-crt-string-l1-1-0.dll _wcslwr_s_l
api-ms-win-crt-string-l1-1-0.dll _wcsncoll
api-ms-win-crt-string-l1-1-0.dll _wcsncoll_l
api-ms-win-crt-string-l1-1-0.dll _wcsnicmp
api-ms-win-crt-string-l1-1-0.dll _wcsnicmp_l
api-ms-win-crt-string-l1-1-0.dll _wcsnicoll
api-ms-win-crt-string-l1-1-0.dll _wcsnicoll_l
api-ms-win-crt-string-l1-1-0.dll _wcsnset
api-ms-win-crt-string-l1-1-0.dll _wcsnset_s
api-ms-win-crt-string-l1-1-0.dll _wcsrev
api-ms-win-crt-string-l1-1-0.dll _wcsset
api-ms-win-crt-string-l1-1-0.dll _wcsset_s
api-ms-win-crt-string-l1-1-0.dll _wcsupr
api-ms-win-crt-string-l1-1-0.dll _wcsupr_l
api-ms-win-crt-string-l1-1-0.dll _wcsupr_s
api-ms-win-crt-string-l1-1-0.dll _wcsupr_s_l
api-ms-win-crt-string-l1-1-0.dll _wcsxfrm_l
api-ms-win-crt-string-l1-1-0.dll _wctype
api-ms-win-crt-string-l1-1-0.dll is_wctype
api-ms-win-crt-string-l1-1-0.dll isalnum
api-ms-win-crt-string-l1-1-0.dll isalpha
api-ms-win-crt-string-l1-1-0.dll isblank
api-ms-win-crt-string-l1-1-0.dll iscntrl
api-ms-win-crt-string-l1-1-0.dll isdigit
api-ms-win-crt-string-l1-1-0.dll isgraph
api-ms-win-crt-string-l1-1-0.dll isleadbyte
api-ms-win-crt-string-l1-1-0.dll islower
api-ms-win-crt-string-l1-1-0.dll isprint
api-ms-win-crt-string-l1-1-0.dll ispunct
api-ms-win-crt-string-l1-1-0.dll isspace
api-ms-win-crt-string-l1-1-0.dll isupper
api-ms-win-crt-string-l1-1-0.dll iswalnum
api-ms-win-crt-string-l1-1-0.dll iswalpha
api-ms-win-crt-string-l1-1-0.dll iswascii
api-ms-win-crt-string-l1-1-0.dll iswblank
api-ms-win-crt-string-l1-1-0.dll iswcntrl
api-ms-win-crt-string-l1-1-0.dll iswctype
api-ms-win-crt-string-l1-1-0.dll iswdigit
api-ms-win-crt-string-l1-1-0.dll iswgraph
api-ms-win-crt-string-l1-1-0.dll iswlower
api-ms-win-crt-string-l1-1-0.dll iswprint
api-ms-win-crt-string-l1-1-0.dll iswpunct
api-ms-win-crt-string-l1-1-0.dll iswspace
api-ms-win-crt-string-l1-1-0.dll iswupper
api-ms-win-crt-string-l1-1-0.dll iswxdigit
api-ms-win-crt-string-l1-1-0.dll isxdigit
api-ms-win-crt-string-l1-1-0.dll mblen
api-ms-win-crt-string-l1-1-0.dll mbrlen
api-ms-win-crt-string-l1-1-0.dll memcpy_s
api-ms-win-crt-string-l1-1-0.dll memmove_s
api-ms-win-crt-string-l1-1-0.dll memset
api-ms-win-crt-string-l1-1-0.dll strcat
api-ms-win-crt-string-l1-1-0.dll strcat_s
api-ms-win-crt-string-l1-1-0.dll strcmp
api-ms-win-crt-string-l1-1-0.dll strcoll
api-ms-win-crt-string-l1-1-0.dll strcpy
api-ms-win-crt-string-l1-1-0.dll strcpy_s
api-ms-win-crt-string-l1-1-0.dll strcspn
api-ms-win-crt-string-l1-1-0.dll strlen
api-ms-win-crt-string-l1-1-0.dll strncat
api-ms-win-crt-string-l1-1-0.dll strncat_s
api-ms-win-crt-string-l1-1-0.dll strncmp
api-ms-win-crt-string-l1-1-0.dll strncpy
api-ms-win-crt-string-l1-1-0.dll strncpy_s
api-ms-win-crt-string-l1-1-0.dll strnlen
api-ms-win-crt-string-l1-1-0.dll strpbrk
api-ms-win-crt-string-l1-1-0.dll strspn
api-ms-win-crt-string-l1-1-0.dll strtok
api-ms-win-crt-string-l1-1-0.dll strtok_s
api-ms-win-crt-string-l1-1-0.dll strxfrm
api-ms-win-crt-string-l1-1-0.dll tolower
api-ms-win-crt-string-l1-1-0.dll toupper
api-ms-win-crt-string-l1-1-0.dll towctrans
api-ms-win-crt-string-l1-1-0.dll towlower
api-ms-win-crt-string-l1-1-0.dll towupper
api-ms-win-crt-string-l1-1-0.dll wcscat
api-ms-win-crt-string-l1-1-0.dll wcscat_s
api-ms-win-crt-string-l1-1-0.dll wcscmp
api-ms-win-crt-string-l1-1-0.dll wcscoll
api-ms-win-crt-string-l1-1-0.dll wcscpy
api-ms-win-crt-string-l1-1-0.dll wcscpy_s
api-ms-win-crt-string-l1-1-0.dll wcscspn
api-ms-win-crt-string-l1-1-0.dll wcslen
api-ms-win-crt-string-l1-1-0.dll wcsncat
api-ms-win-crt-string-l1-1-0.dll wcsncat_s
api-ms-win-crt-string-l1-1-0.dll wcsncmp
api-ms-win-crt-string-l1-1-0.dll wcsncpy
api-ms-win-crt-string-l1-1-0.dll wcsncpy_s
api-ms-win-crt-string-l1-1-0.dll wcsnlen
api-ms-win-crt-string-l1-1-0.dll wcspbrk
api-ms-win-crt-string-l1-1-0.dll wcsspn
api-ms-win-crt-string-l1-1-0.dll wcstok
api-ms-win-crt-string-l1-1-0.dll wcstok_s
api-ms-win-crt-string-l1-1-0.dll wcsxfrm
api-ms-win-crt-string-l1-1-0.dll wctype
api-ms-win-crt-string-l1-1-0.dll wmemcpy_s
api-ms-win-crt-string-l1-1-0.dll wmemmove_s
api-ms-win-crt-time-l1-1-0.dll _Getdays
api-ms-win-crt-time-l1-1-0.dll _Getmonths
api-ms-win-crt-time-l1-1-0.dll _Gettnames
api-ms-win-crt-time-l1-1-0.dll _Strftime
api-ms-win-crt-time-l1-1-0.dll _W_Getdays
api-ms-win-crt-time-l1-1-0.dll _W_Getmonths
api-ms-win-crt-time-l1-1-0.dll _W_Gettnames
api-ms-win-crt-time-l1-1-0.dll _Wcsftime
api-ms-win-crt-time-l1-1-0.dll __daylight
api-ms-win-crt-time-l1-1-0.dll __dstbias
api-ms-win-crt-time-l1-1-0.dll __timezone
api-ms-win-crt-time-l1-1-0.dll __tzname
api-ms-win-crt-time-l1-1-0.dll _ctime32
api-ms-win-crt-time-l1-1-0.dll _ctime32_s
api-ms-win-crt-time-l1-1-0.dll _ctime64
api-ms-win-crt-time-l1-1-0.dll _ctime64_s
api-ms-win-crt-time-l1-1-0.dll _difftime32
api-ms-win-crt-time-l1-1-0.dll _difftime64
api-ms-win-crt-time-l1-1-0.dll _ftime32
api-ms-win-crt-time-l1-1-0.dll _ftime32_s
api-ms-win-crt-time-l1-1-0.dll _ftime64
api-ms-win-crt-time-l1-1-0.dll _ftime64_s
api-ms-win-crt-time-l1-1-0.dll _futime32
api-ms-win-crt-time-l1-1-0.dll _futime64
api-ms-win-crt-time-l1-1-0.dll _get_daylight
api-ms-win-crt-time-l1-1-0.dll _get_dstbias
api-ms-win-crt-time-l1-1-0.dll _get_timezone
api-ms-win-crt-time-l1-1-0.dll _get_tzname
api-ms-win-crt-time-l1-1-0.dll _getsystime
api-ms-win-crt-time-l1-1-0.dll _gmtime32
api-ms-win-crt-time-l1-1-0.dll _gmtime32_s
api-ms-win-crt-time-l1-1-0.dll _gmtime64
api-ms-win-crt-time-l1-1-0.dll _gmtime64_s
api-ms-win-crt-time-l1-1-0.dll _localtime32
api-ms-win-crt-time-l1-1-0.dll _localtime32_s
api-ms-win-crt-time-l1-1-0.dll _localtime64
api-ms-win-crt-time-l1-1-0.dll _localtime64_s
api-ms-win-crt-time-l1-1-0.dll _mkgmtime32
api-ms-win-crt-time-l1-1-0.dll _mkgmtime64
api-ms-win-crt-time-l1-1-0.dll _mktime32
api-ms-win-crt-time-l1-1-0.dll _mktime64
api-ms-win-crt-time-l1-1-0.dll _setsystime
api-ms-win-crt-time-l1-1-0.dll _strdate
api-ms-win-crt-time-l1-1-0.dll _strdate_s
api-ms-win-crt-time-l1-1-0.dll _strftime_l
api-ms-win-crt-time-l1-1-0.dll _strtime
api-ms-win-crt-time-l1-1-0.dll _strtime_s
api-ms-win-crt-time-l1-1-0.dll _time32
api-ms-win-crt-time-l1-1-0.dll _time64
api-ms-win-crt-time-l1-1-0.dll _timespec32_get
api-ms-win-crt-time-l1-1-0.dll _timespec64_get
api-ms-win-crt-time-l1-1-0.dll _tzset
api-ms-win-crt-time-l1-1-0.dll _utime32
api-ms-win-crt-time-l1-1-0.dll _utime64
api-ms-win-crt-time-l1-1-0.dll _wasctime
api-ms-win-crt-time-l1-1-0.dll _wasctime_s
api-ms-win-crt-time-l1-1-0.dll _wcsftime_l
api-ms-win-crt-time-l1-1-0.dll _wctime32
api-ms-win-crt-time-l1-1-0.dll _wctime32_s
api-ms-win-crt-time-l1-1-0.dll _wctime64
api-ms-win-crt-time-l1-1-0.dll _wctime64_s
api-ms-win-crt-time-l1-1-0.dll _wstrdate
api-ms-win-crt-time-l1-1-0.dll _wstrdate_s
api-ms-win-crt-time-l1-1-0.dll _wstrtime
api-ms-win-crt-time-l1-1-0.dll _wstrtime_s
api-ms-win-crt-time-l1-1-0.dll _wutime32
api-ms-win-crt-time-l1-1-0.dll _wutime64
api-ms-win-crt-time-l1-1-0.dll asctime
api-ms-win-crt-time-l1-1-0.dll asctime_s
api-ms-win-crt-time-l1-1-0.dll clock
api-ms-win-crt-time-l1-1-0.dll strftime
api-ms-win-crt-time-l1-1-0.dll wcsftime
api-ms-win-crt-utility-l1-1-0.dll _abs64
api-ms-win-crt-utility-l1-1-0.dll _byteswap_uint64
api-ms-win-crt-utility-l1-1-0.dll _byteswap_ulong
api-ms-win-crt-utility-l1-1-0.dll _byteswap_ushort
api-ms-win-crt-utility-l1-1-0.dll _lfind
api-ms-win-crt-utility-l1-1-0.dll _lfind_s
api-ms-win-crt-utility-l1-1-0.dll _lrotl
api-ms-win-crt-utility-l1-1-0.dll _lrotr
api-ms-win-crt-utility-l1-1-0.dll _lsearch
api-ms-win-crt-utility-l1-1-0.dll _lsearch_s
api-ms-win-crt-utility-l1-1-0.dll _rotl
api-ms-win-crt-utility-l1-1-0.dll _rotl64
api-ms-win-crt-utility-l1-1-0.dll _rotr
api-ms-win-crt-utility-l1-1-0.dll _rotr64
api-ms-win-crt-utility-l1-1-0.dll _swab
api-ms-win-crt-utility-l1-1-0.dll abs
api-ms-win-crt-utility-l1-1-0.dll bsearch
api-ms-win-crt-utility-l1-1-0.dll bsearch_s
api-ms-win-crt-utility-l1-1-0.dll div
api-ms-win-crt-utility-l1-1-0.dll imaxabs
api-ms-win-crt-utility-l1-1-0.dll imaxdiv
api-ms-win-crt-utility-l1-1-0.dll labs
api-ms-win-crt-utility-l1-1-0.dll ldiv
api-ms-win-crt-utility-l1-1-0.dll llabs
api-ms-win-crt-utility-l1-1-0.dll lldiv
api-ms-win-crt-utility-l1-1-0.dll qsort
api-ms-win-crt-utility-l1-1-0.dll qsort_s
api-ms-win-crt-utility-l1-1-0.dll rand
api-ms-win-crt-utility-l1-1-0.dll rand_s
api-ms-win-crt-utility-l1-1-0.dll srand
DLL Symbol
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcprintf
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcprintf_p
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcprintf_s
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcscanf
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcwprintf
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcwprintf_p
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcwprintf_s
api-ms-win-crt-conio-l1-1-0.dll ___conio_common_vcwscanf
api-ms-win-crt-conio-l1-1-0.dll __cgets
api-ms-win-crt-conio-l1-1-0.dll __cgets_s
api-ms-win-crt-conio-l1-1-0.dll __cgetws
api-ms-win-crt-conio-l1-1-0.dll __cgetws_s
api-ms-win-crt-conio-l1-1-0.dll __cputs
api-ms-win-crt-conio-l1-1-0.dll __cputws
api-ms-win-crt-conio-l1-1-0.dll __getch
api-ms-win-crt-conio-l1-1-0.dll __getch_nolock
api-ms-win-crt-conio-l1-1-0.dll __getche
api-ms-win-crt-conio-l1-1-0.dll __getche_nolock
api-ms-win-crt-conio-l1-1-0.dll __getwch
api-ms-win-crt-conio-l1-1-0.dll __getwch_nolock
api-ms-win-crt-conio-l1-1-0.dll __getwche
api-ms-win-crt-conio-l1-1-0.dll __getwche_nolock
api-ms-win-crt-conio-l1-1-0.dll __putch
api-ms-win-crt-conio-l1-1-0.dll __putch_nolock
api-ms-win-crt-conio-l1-1-0.dll __putwch
api-ms-win-crt-conio-l1-1-0.dll __putwch_nolock
api-ms-win-crt-conio-l1-1-0.dll __ungetch
api-ms-win-crt-conio-l1-1-0.dll __ungetch_nolock
api-ms-win-crt-conio-l1-1-0.dll __ungetwch
api-ms-win-crt-conio-l1-1-0.dll __ungetwch_nolock
api-ms-win-crt-convert-l1-1-0.dll ___toascii
api-ms-win-crt-convert-l1-1-0.dll __atodbl
api-ms-win-crt-convert-l1-1-0.dll __atodbl_l
api-ms-win-crt-convert-l1-1-0.dll __atof_l
api-ms-win-crt-convert-l1-1-0.dll __atoflt
api-ms-win-crt-convert-l1-1-0.dll __atoflt_l
api-ms-win-crt-convert-l1-1-0.dll __atoi64
api-ms-win-crt-convert-l1-1-0.dll __atoi64_l
api-ms-win-crt-convert-l1-1-0.dll __atoi_l
api-ms-win-crt-convert-l1-1-0.dll __atol_l
api-ms-win-crt-convert-l1-1-0.dll __atoldbl
api-ms-win-crt-convert-l1-1-0.dll __atoldbl_l
api-ms-win-crt-convert-l1-1-0.dll __atoll_l
api-ms-win-crt-convert-l1-1-0.dll __ecvt
api-ms-win-crt-convert-l1-1-0.dll __ecvt_s
api-ms-win-crt-convert-l1-1-0.dll __fcvt
api-ms-win-crt-convert-l1-1-0.dll __fcvt_s
api-ms-win-crt-convert-l1-1-0.dll __gcvt
api-ms-win-crt-convert-l1-1-0.dll __gcvt_s
api-ms-win-crt-convert-l1-1-0.dll __i64toa
api-ms-win-crt-convert-l1-1-0.dll __i64toa_s
api-ms-win-crt-convert-l1-1-0.dll __i64tow
api-ms-win-crt-convert-l1-1-0.dll __i64tow_s
api-ms-win-crt-convert-l1-1-0.dll __itoa
api-ms-win-crt-convert-l1-1-0.dll __itoa_s
api-ms-win-crt-convert-l1-1-0.dll __itow
api-ms-win-crt-convert-l1-1-0.dll __itow_s
api-ms-win-crt-convert-l1-1-0.dll __ltoa
api-ms-win-crt-convert-l1-1-0.dll __ltoa_s
api-ms-win-crt-convert-l1-1-0.dll __ltow
api-ms-win-crt-convert-l1-1-0.dll __ltow_s
api-ms-win-crt-convert-l1-1-0.dll __strtod_l
api-ms-win-crt-convert-l1-1-0.dll __strtof_l
api-ms-win-crt-convert-l1-1-0.dll __strtoi64
api-ms-win-crt-convert-l1-1-0.dll __strtoi64_l
api-ms-win-crt-convert-l1-1-0.dll __strtoimax_l
api-ms-win-crt-convert-l1-1-0.dll __strtol_l
api-ms-win-crt-convert-l1-1-0.dll __strtold_l
api-ms-win-crt-convert-l1-1-0.dll __strtoll_l
api-ms-win-crt-convert-l1-1-0.dll __strtoui64
api-ms-win-crt-convert-l1-1-0.dll __strtoui64_l
api-ms-win-crt-convert-l1-1-0.dll __strtoul_l
api-ms-win-crt-convert-l1-1-0.dll __strtoull_l
api-ms-win-crt-convert-l1-1-0.dll __strtoumax_l
api-ms-win-crt-convert-l1-1-0.dll __ui64toa
api-ms-win-crt-convert-l1-1-0.dll __ui64toa_s
api-ms-win-crt-convert-l1-1-0.dll __ui64tow
api-ms-win-crt-convert-l1-1-0.dll __ui64tow_s
api-ms-win-crt-convert-l1-1-0.dll __ultoa
api-ms-win-crt-convert-l1-1-0.dll __ultoa_s
api-ms-win-crt-convert-l1-1-0.dll __ultow
api-ms-win-crt-convert-l1-1-0.dll __ultow_s
api-ms-win-crt-convert-l1-1-0.dll __wcstod_l
api-ms-win-crt-convert-l1-1-0.dll __wcstof_l
api-ms-win-crt-convert-l1-1-0.dll __wcstoi64
api-ms-win-crt-convert-l1-1-0.dll __wcstoi64_l
api-ms-win-crt-convert-l1-1-0.dll __wcstoimax_l
api-ms-win-crt-convert-l1-1-0.dll __wcstol_l
api-ms-win-crt-convert-l1-1-0.dll __wcstold_l
api-ms-win-crt-convert-l1-1-0.dll __wcstoll_l
api-ms-win-crt-convert-l1-1-0.dll __wcstombs_l
api-ms-win-crt-convert-l1-1-0.dll __wcstombs_s_l
api-ms-win-crt-convert-l1-1-0.dll __wcstoui64
api-ms-win-crt-convert-l1-1-0.dll __wcstoui64_l
api-ms-win-crt-convert-l1-1-0.dll __wcstoul_l
api-ms-win-crt-convert-l1-1-0.dll __wcstoull_l
api-ms-win-crt-convert-l1-1-0.dll __wcstoumax_l
api-ms-win-crt-convert-l1-1-0.dll __wctomb_l
api-ms-win-crt-convert-l1-1-0.dll __wctomb_s_l
api-ms-win-crt-convert-l1-1-0.dll __wtof
api-ms-win-crt-convert-l1-1-0.dll __wtof_l
api-ms-win-crt-convert-l1-1-0.dll __wtoi
api-ms-win-crt-convert-l1-1-0.dll __wtoi64
api-ms-win-crt-convert-l1-1-0.dll __wtoi64_l
api-ms-win-crt-convert-l1-1-0.dll __wtoi_l
api-ms-win-crt-convert-l1-1-0.dll __wtol
api-ms-win-crt-convert-l1-1-0.dll __wtol_l
api-ms-win-crt-convert-l1-1-0.dll __wtoll
api-ms-win-crt-convert-l1-1-0.dll __wtoll_l
api-ms-win-crt-convert-l1-1-0.dll _atof
api-ms-win-crt-convert-l1-1-0.dll _atoi
api-ms-win-crt-convert-l1-1-0.dll _atol
api-ms-win-crt-convert-l1-1-0.dll _atoll
api-ms-win-crt-convert-l1-1-0.dll _btowc
api-ms-win-crt-convert-l1-1-0.dll _c16rtomb
api-ms-win-crt-convert-l1-1-0.dll _c32rtomb
api-ms-win-crt-convert-l1-1-0.dll _mbrtoc16
api-ms-win-crt-convert-l1-1-0.dll _mbrtoc32
api-ms-win-crt-convert-l1-1-0.dll _mbrtowc
api-ms-win-crt-convert-l1-1-0.dll _mbsrtowcs
api-ms-win-crt-convert-l1-1-0.dll _mbsrtowcs_s
api-ms-win-crt-convert-l1-1-0.dll _mbstowcs
api-ms-win-crt-convert-l1-1-0.dll _mbstowcs_s
api-ms-win-crt-convert-l1-1-0.dll _mbtowc
api-ms-win-crt-convert-l1-1-0.dll _strtod
api-ms-win-crt-convert-l1-1-0.dll _strtof
api-ms-win-crt-convert-l1-1-0.dll _strtoimax
api-ms-win-crt-convert-l1-1-0.dll _strtol
api-ms-win-crt-convert-l1-1-0.dll _strtold
api-ms-win-crt-convert-l1-1-0.dll _strtoll
api-ms-win-crt-convert-l1-1-0.dll _strtoul
api-ms-win-crt-convert-l1-1-0.dll _strtoull
api-ms-win-crt-convert-l1-1-0.dll _strtoumax
api-ms-win-crt-convert-l1-1-0.dll _wcrtomb
api-ms-win-crt-convert-l1-1-0.dll _wcrtomb_s
api-ms-win-crt-convert-l1-1-0.dll _wcsrtombs
api-ms-win-crt-convert-l1-1-0.dll _wcsrtombs_s
api-ms-win-crt-convert-l1-1-0.dll _wcstod
api-ms-win-crt-convert-l1-1-0.dll _wcstof
api-ms-win-crt-convert-l1-1-0.dll _wcstoimax
api-ms-win-crt-convert-l1-1-0.dll _wcstol
api-ms-win-crt-convert-l1-1-0.dll _wcstold
api-ms-win-crt-convert-l1-1-0.dll _wcstoll
api-ms-win-crt-convert-l1-1-0.dll _wcstombs
api-ms-win-crt-convert-l1-1-0.dll _wcstombs_s
api-ms-win-crt-convert-l1-1-0.dll _wcstoul
api-ms-win-crt-convert-l1-1-0.dll _wcstoull
api-ms-win-crt-convert-l1-1-0.dll _wcstoumax
api-ms-win-crt-convert-l1-1-0.dll _wctob
api-ms-win-crt-convert-l1-1-0.dll _wctomb
api-ms-win-crt-convert-l1-1-0.dll _wctomb_s
api-ms-win-crt-convert-l1-1-0.dll _wctrans
api-ms-win-crt-environment-l1-1-0.dll ___p__environ
api-ms-win-crt-environment-l1-1-0.dll ___p__wenviron
api-ms-win-crt-environment-l1-1-0.dll __dupenv_s
api-ms-win-crt-environment-l1-1-0.dll __putenv
api-ms-win-crt-environment-l1-1-0.dll __putenv_s
api-ms-win-crt-environment-l1-1-0.dll __searchenv
api-ms-win-crt-environment-l1-1-0.dll __searchenv_s
api-ms-win-crt-environment-l1-1-0.dll __wdupenv_s
api-ms-win-crt-environment-l1-1-0.dll __wgetcwd
api-ms-win-crt-environment-l1-1-0.dll __wgetdcwd
api-ms-win-crt-environment-l1-1-0.dll __wgetenv
api-ms-win-crt-environment-l1-1-0.dll __wgetenv_s
api-ms-win-crt-environment-l1-1-0.dll __wputenv
api-ms-win-crt-environment-l1-1-0.dll __wputenv_s
api-ms-win-crt-environment-l1-1-0.dll __wsearchenv
api-ms-win-crt-environment-l1-1-0.dll __wsearchenv_s
api-ms-win-crt-environment-l1-1-0.dll _getenv
api-ms-win-crt-environment-l1-1-0.dll _getenv_s
api-ms-win-crt-filesystem-l1-1-0.dll __access
api-ms-win-crt-filesystem-l1-1-0.dll __access_s
api-ms-win-crt-filesystem-l1-1-0.dll __chdir
api-ms-win-crt-filesystem-l1-1-0.dll __chdrive
api-ms-win-crt-filesystem-l1-1-0.dll __chmod
api-ms-win-crt-filesystem-l1-1-0.dll __findclose
api-ms-win-crt-filesystem-l1-1-0.dll __findfirst32
api-ms-win-crt-filesystem-l1-1-0.dll __findfirst32i64
api-ms-win-crt-filesystem-l1-1-0.dll __findfirst64
api-ms-win-crt-filesystem-l1-1-0.dll __findfirst64i32
api-ms-win-crt-filesystem-l1-1-0.dll __findnext32
api-ms-win-crt-filesystem-l1-1-0.dll __findnext32i64
api-ms-win-crt-filesystem-l1-1-0.dll __findnext64
api-ms-win-crt-filesystem-l1-1-0.dll __findnext64i32
api-ms-win-crt-filesystem-l1-1-0.dll __fstat32
api-ms-win-crt-filesystem-l1-1-0.dll __fstat32i64
api-ms-win-crt-filesystem-l1-1-0.dll __fstat64
api-ms-win-crt-filesystem-l1-1-0.dll __fstat64i32
api-ms-win-crt-filesystem-l1-1-0.dll __fullpath
api-ms-win-crt-filesystem-l1-1-0.dll __getdiskfree
api-ms-win-crt-filesystem-l1-1-0.dll __getdrive
api-ms-win-crt-filesystem-l1-1-0.dll __getdrives
api-ms-win-crt-filesystem-l1-1-0.dll __lock_file
api-ms-win-crt-filesystem-l1-1-0.dll __makepath
api-ms-win-crt-filesystem-l1-1-0.dll __makepath_s
api-ms-win-crt-filesystem-l1-1-0.dll __mkdir
api-ms-win-crt-filesystem-l1-1-0.dll __rmdir
api-ms-win-crt-filesystem-l1-1-0.dll __splitpath
api-ms-win-crt-filesystem-l1-1-0.dll __splitpath_s
api-ms-win-crt-filesystem-l1-1-0.dll __stat32
api-ms-win-crt-filesystem-l1-1-0.dll __stat32i64
api-ms-win-crt-filesystem-l1-1-0.dll __stat64
api-ms-win-crt-filesystem-l1-1-0.dll __stat64i32
api-ms-win-crt-filesystem-l1-1-0.dll __umask
api-ms-win-crt-filesystem-l1-1-0.dll __umask_s
api-ms-win-crt-filesystem-l1-1-0.dll __unlink
api-ms-win-crt-filesystem-l1-1-0.dll __unlock_file
api-ms-win-crt-filesystem-l1-1-0.dll __waccess
api-ms-win-crt-filesystem-l1-1-0.dll __waccess_s
api-ms-win-crt-filesystem-l1-1-0.dll __wchdir
api-ms-win-crt-filesystem-l1-1-0.dll __wchmod
api-ms-win-crt-filesystem-l1-1-0.dll __wfindfirst32
api-ms-win-crt-filesystem-l1-1-0.dll __wfindfirst32i64
api-ms-win-crt-filesystem-l1-1-0.dll __wfindfirst64
api-ms-win-crt-filesystem-l1-1-0.dll __wfindfirst64i32
api-ms-win-crt-filesystem-l1-1-0.dll __wfindnext32
api-ms-win-crt-filesystem-l1-1-0.dll __wfindnext32i64
api-ms-win-crt-filesystem-l1-1-0.dll __wfindnext64
api-ms-win-crt-filesystem-l1-1-0.dll __wfindnext64i32
api-ms-win-crt-filesystem-l1-1-0.dll __wfullpath
api-ms-win-crt-filesystem-l1-1-0.dll __wmakepath
api-ms-win-crt-filesystem-l1-1-0.dll __wmakepath_s
api-ms-win-crt-filesystem-l1-1-0.dll __wmkdir
api-ms-win-crt-filesystem-l1-1-0.dll __wremove
api-ms-win-crt-filesystem-l1-1-0.dll __wrename
api-ms-win-crt-filesystem-l1-1-0.dll __wrmdir
api-ms-win-crt-filesystem-l1-1-0.dll __wsplitpath
api-ms-win-crt-filesystem-l1-1-0.dll __wsplitpath_s
api-ms-win-crt-filesystem-l1-1-0.dll __wstat32
api-ms-win-crt-filesystem-l1-1-0.dll __wstat32i64
api-ms-win-crt-filesystem-l1-1-0.dll __wstat64
api-ms-win-crt-filesystem-l1-1-0.dll __wstat64i32
api-ms-win-crt-filesystem-l1-1-0.dll __wunlink
api-ms-win-crt-filesystem-l1-1-0.dll _remove
api-ms-win-crt-filesystem-l1-1-0.dll _rename
api-ms-win-crt-heap-l1-1-0.dll __aligned_free
api-ms-win-crt-heap-l1-1-0.dll __aligned_malloc
api-ms-win-crt-heap-l1-1-0.dll __aligned_msize
api-ms-win-crt-heap-l1-1-0.dll __aligned_offset_malloc
api-ms-win-crt-heap-l1-1-0.dll __aligned_offset_realloc
api-ms-win-crt-heap-l1-1-0.dll __aligned_offset_recalloc
api-ms-win-crt-heap-l1-1-0.dll __aligned_realloc
api-ms-win-crt-heap-l1-1-0.dll __aligned_recalloc
api-ms-win-crt-heap-l1-1-0.dll __callnewh
api-ms-win-crt-heap-l1-1-0.dll __calloc_base
api-ms-win-crt-heap-l1-1-0.dll __expand
api-ms-win-crt-heap-l1-1-0.dll __free_base
api-ms-win-crt-heap-l1-1-0.dll __get_heap_handle
api-ms-win-crt-heap-l1-1-0.dll __heapchk
api-ms-win-crt-heap-l1-1-0.dll __heapmin
api-ms-win-crt-heap-l1-1-0.dll __heapwalk
api-ms-win-crt-heap-l1-1-0.dll __malloc_base
api-ms-win-crt-heap-l1-1-0.dll __msize
api-ms-win-crt-heap-l1-1-0.dll __query_new_handler
api-ms-win-crt-heap-l1-1-0.dll __query_new_mode
api-ms-win-crt-heap-l1-1-0.dll __realloc_base
api-ms-win-crt-heap-l1-1-0.dll __recalloc
api-ms-win-crt-heap-l1-1-0.dll __set_new_mode
api-ms-win-crt-heap-l1-1-0.dll _calloc
api-ms-win-crt-heap-l1-1-0.dll _free
api-ms-win-crt-heap-l1-1-0.dll _malloc
api-ms-win-crt-heap-l1-1-0.dll _realloc
api-ms-win-crt-locale-l1-1-0.dll ____lc_codepage_func
api-ms-win-crt-locale-l1-1-0.dll ____lc_collate_cp_func
api-ms-win-crt-locale-l1-1-0.dll ____lc_locale_name_func
api-ms-win-crt-locale-l1-1-0.dll ____mb_cur_max_func
api-ms-win-crt-locale-l1-1-0.dll ____mb_cur_max_l_func
api-ms-win-crt-locale-l1-1-0.dll ___initialize_lconv_for_unsigned_char
api-ms-win-crt-locale-l1-1-0.dll ___pctype_func
api-ms-win-crt-locale-l1-1-0.dll ___pwctype_func
api-ms-win-crt-locale-l1-1-0.dll __configthreadlocale
api-ms-win-crt-locale-l1-1-0.dll __create_locale
api-ms-win-crt-locale-l1-1-0.dll __free_locale
api-ms-win-crt-locale-l1-1-0.dll __get_current_locale
api-ms-win-crt-locale-l1-1-0.dll __getmbcp
api-ms-win-crt-locale-l1-1-0.dll __lock_locales
api-ms-win-crt-locale-l1-1-0.dll __setmbcp
api-ms-win-crt-locale-l1-1-0.dll __unlock_locales
api-ms-win-crt-locale-l1-1-0.dll __wcreate_locale
api-ms-win-crt-locale-l1-1-0.dll __wsetlocale
api-ms-win-crt-locale-l1-1-0.dll _localeconv
api-ms-win-crt-locale-l1-1-0.dll _setlocale
api-ms-win-crt-math-l1-1-0.dll __CIacos
api-ms-win-crt-math-l1-1-0.dll __CIasin
api-ms-win-crt-math-l1-1-0.dll __CIatan
api-ms-win-crt-math-l1-1-0.dll __CIatan2
api-ms-win-crt-math-l1-1-0.dll __CIcos
api-ms-win-crt-math-l1-1-0.dll __CIcosh
api-ms-win-crt-math-l1-1-0.dll __CIexp
api-ms-win-crt-math-l1-1-0.dll __CIfmod
api-ms-win-crt-math-l1-1-0.dll __CIlog
api-ms-win-crt-math-l1-1-0.dll __CIlog10
api-ms-win-crt-math-l1-1-0.dll __CIpow
api-ms-win-crt-math-l1-1-0.dll __CIsin
api-ms-win-crt-math-l1-1-0.dll __CIsinh
api-ms-win-crt-math-l1-1-0.dll __CIsqrt
api-ms-win-crt-math-l1-1-0.dll __CItan
api-ms-win-crt-math-l1-1-0.dll __CItanh
api-ms-win-crt-math-l1-1-0.dll __Cbuild
api-ms-win-crt-math-l1-1-0.dll __Cmulcc
api-ms-win-crt-math-l1-1-0.dll __Cmulcr
api-ms-win-crt-math-l1-1-0.dll __FCbuild
api-ms-win-crt-math-l1-1-0.dll __FCmulcc
api-ms-win-crt-math-l1-1-0.dll __FCmulcr
api-ms-win-crt-math-l1-1-0.dll __LCbuild
api-ms-win-crt-math-l1-1-0.dll __LCmulcc
api-ms-win-crt-math-l1-1-0.dll __LCmulcr
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_acos
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_acosf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_asin
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_asinf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_atan
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_atan2
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_atanf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_cos
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_cosf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_exp
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_expf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_log
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_log10
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_log10f
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_logf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_pow
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_powf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_sin
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_sinf
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_tan
api-ms-win-crt-math-l1-1-0.dll ___libm_sse2_tanf
api-ms-win-crt-math-l1-1-0.dll ___setusermatherr
api-ms-win-crt-math-l1-1-0.dll __cabs
api-ms-win-crt-math-l1-1-0.dll __chgsign
api-ms-win-crt-math-l1-1-0.dll __chgsignf
api-ms-win-crt-math-l1-1-0.dll __copysign
api-ms-win-crt-math-l1-1-0.dll __copysignf
api-ms-win-crt-math-l1-1-0.dll __d_int
api-ms-win-crt-math-l1-1-0.dll __dclass
api-ms-win-crt-math-l1-1-0.dll __dexp
api-ms-win-crt-math-l1-1-0.dll __dlog
api-ms-win-crt-math-l1-1-0.dll __dnorm
api-ms-win-crt-math-l1-1-0.dll __dpcomp
api-ms-win-crt-math-l1-1-0.dll __dpoly
api-ms-win-crt-math-l1-1-0.dll __dscale
api-ms-win-crt-math-l1-1-0.dll __dsign
api-ms-win-crt-math-l1-1-0.dll __dsin
api-ms-win-crt-math-l1-1-0.dll __dtest
api-ms-win-crt-math-l1-1-0.dll __dunscale
api-ms-win-crt-math-l1-1-0.dll __except1
api-ms-win-crt-math-l1-1-0.dll __fd_int
api-ms-win-crt-math-l1-1-0.dll __fdclass
api-ms-win-crt-math-l1-1-0.dll __fdexp
api-ms-win-crt-math-l1-1-0.dll __fdlog
api-ms-win-crt-math-l1-1-0.dll __fdnorm
api-ms-win-crt-math-l1-1-0.dll __fdopen
api-ms-win-crt-math-l1-1-0.dll __fdpcomp
api-ms-win-crt-math-l1-1-0.dll __fdpoly
api-ms-win-crt-math-l1-1-0.dll __fdscale
api-ms-win-crt-math-l1-1-0.dll __fdsign
api-ms-win-crt-math-l1-1-0.dll __fdsin
api-ms-win-crt-math-l1-1-0.dll __fdtest
api-ms-win-crt-math-l1-1-0.dll __fdunscale
api-ms-win-crt-math-l1-1-0.dll __finite
api-ms-win-crt-math-l1-1-0.dll __fpclass
api-ms-win-crt-math-l1-1-0.dll __ftol
api-ms-win-crt-math-l1-1-0.dll __hypot
api-ms-win-crt-math-l1-1-0.dll __hypotf
api-ms-win-crt-math-l1-1-0.dll __isnan
api-ms-win-crt-math-l1-1-0.dll __j0
api-ms-win-crt-math-l1-1-0.dll __j1
api-ms-win-crt-math-l1-1-0.dll __jn
api-ms-win-crt-math-l1-1-0.dll __ld_int
api-ms-win-crt-math-l1-1-0.dll __ldclass
api-ms-win-crt-math-l1-1-0.dll __ldexp
api-ms-win-crt-math-l1-1-0.dll __ldlog
api-ms-win-crt-math-l1-1-0.dll __ldpcomp
api-ms-win-crt-math-l1-1-0.dll __ldpoly
api-ms-win-crt-math-l1-1-0.dll __ldscale
api-ms-win-crt-math-l1-1-0.dll __ldsign
api-ms-win-crt-math-l1-1-0.dll __ldsin
api-ms-win-crt-math-l1-1-0.dll __ldtest
api-ms-win-crt-math-l1-1-0.dll __ldunscale
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_acos_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_asin_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_atan_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_cos_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_exp_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_log10_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_log_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_pow_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_sin_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_sqrt_precise
api-ms-win-crt-math-l1-1-0.dll __libm_sse2_tan_precise
api-ms-win-crt-math-l1-1-0.dll __logb
api-ms-win-crt-math-l1-1-0.dll __nextafter
api-ms-win-crt-math-l1-1-0.dll __scalb
api-ms-win-crt-math-l1-1-0.dll __set_SSE2_enable
api-ms-win-crt-math-l1-1-0.dll __y0
api-ms-win-crt-math-l1-1-0.dll __y1
api-ms-win-crt-math-l1-1-0.dll __yn
api-ms-win-crt-math-l1-1-0.dll _acos
api-ms-win-crt-math-l1-1-0.dll _acosh
api-ms-win-crt-math-l1-1-0.dll _acoshf
api-ms-win-crt-math-l1-1-0.dll _acoshl
api-ms-win-crt-math-l1-1-0.dll _asin
api-ms-win-crt-math-l1-1-0.dll _asinh
api-ms-win-crt-math-l1-1-0.dll _asinhf
api-ms-win-crt-math-l1-1-0.dll _asinhl
api-ms-win-crt-math-l1-1-0.dll _atan
api-ms-win-crt-math-l1-1-0.dll _atan2
api-ms-win-crt-math-l1-1-0.dll _atanh
api-ms-win-crt-math-l1-1-0.dll _atanhf
api-ms-win-crt-math-l1-1-0.dll _atanhl
api-ms-win-crt-math-l1-1-0.dll _cabs
api-ms-win-crt-math-l1-1-0.dll _cabsf
api-ms-win-crt-math-l1-1-0.dll _cabsl
api-ms-win-crt-math-l1-1-0.dll _cacos
api-ms-win-crt-math-l1-1-0.dll _cacosf
api-ms-win-crt-math-l1-1-0.dll _cacosh
api-ms-win-crt-math-l1-1-0.dll _cacoshf
api-ms-win-crt-math-l1-1-0.dll _cacoshl
api-ms-win-crt-math-l1-1-0.dll _cacosl
api-ms-win-crt-math-l1-1-0.dll _carg
api-ms-win-crt-math-l1-1-0.dll _cargf
api-ms-win-crt-math-l1-1-0.dll _cargl
api-ms-win-crt-math-l1-1-0.dll _casin
api-ms-win-crt-math-l1-1-0.dll _casinf
api-ms-win-crt-math-l1-1-0.dll _casinh
api-ms-win-crt-math-l1-1-0.dll _casinhf
api-ms-win-crt-math-l1-1-0.dll _casinhl
api-ms-win-crt-math-l1-1-0.dll _casinl
api-ms-win-crt-math-l1-1-0.dll _catan
api-ms-win-crt-math-l1-1-0.dll _catanf
api-ms-win-crt-math-l1-1-0.dll _catanh
api-ms-win-crt-math-l1-1-0.dll _catanhf
api-ms-win-crt-math-l1-1-0.dll _catanhl
api-ms-win-crt-math-l1-1-0.dll _catanl
api-ms-win-crt-math-l1-1-0.dll _cbrt
api-ms-win-crt-math-l1-1-0.dll _cbrtf
api-ms-win-crt-math-l1-1-0.dll _cbrtl
api-ms-win-crt-math-l1-1-0.dll _ccos
api-ms-win-crt-math-l1-1-0.dll _ccosf
api-ms-win-crt-math-l1-1-0.dll _ccosh
api-ms-win-crt-math-l1-1-0.dll _ccoshf
api-ms-win-crt-math-l1-1-0.dll _ccoshl
api-ms-win-crt-math-l1-1-0.dll _ccosl
api-ms-win-crt-math-l1-1-0.dll _ceil
api-ms-win-crt-math-l1-1-0.dll _cexp
api-ms-win-crt-math-l1-1-0.dll _cexpf
api-ms-win-crt-math-l1-1-0.dll _cexpl
api-ms-win-crt-math-l1-1-0.dll _cimag
api-ms-win-crt-math-l1-1-0.dll _cimagf
api-ms-win-crt-math-l1-1-0.dll _cimagl
api-ms-win-crt-math-l1-1-0.dll _clog
api-ms-win-crt-math-l1-1-0.dll _clog10
api-ms-win-crt-math-l1-1-0.dll _clog10f
api-ms-win-crt-math-l1-1-0.dll _clog10l
api-ms-win-crt-math-l1-1-0.dll _clogf
api-ms-win-crt-math-l1-1-0.dll _clogl
api-ms-win-crt-math-l1-1-0.dll _conj
api-ms-win-crt-math-l1-1-0.dll _conjf
api-ms-win-crt-math-l1-1-0.dll _conjl
api-ms-win-crt-math-l1-1-0.dll _copysign
api-ms-win-crt-math-l1-1-0.dll _copysignf
api-ms-win-crt-math-l1-1-0.dll _copysignl
api-ms-win-crt-math-l1-1-0.dll _cos
api-ms-win-crt-math-l1-1-0.dll _cosh
api-ms-win-crt-math-l1-1-0.dll _cpow
api-ms-win-crt-math-l1-1-0.dll _cpowf
api-ms-win-crt-math-l1-1-0.dll _cpowl
api-ms-win-crt-math-l1-1-0.dll _cproj
api-ms-win-crt-math-l1-1-0.dll _cprojf
api-ms-win-crt-math-l1-1-0.dll _cprojl
api-ms-win-crt-math-l1-1-0.dll _creal
api-ms-win-crt-math-l1-1-0.dll _crealf
api-ms-win-crt-math-l1-1-0.dll _creall
api-ms-win-crt-math-l1-1-0.dll _csin
api-ms-win-crt-math-l1-1-0.dll _csinf
api-ms-win-crt-math-l1-1-0.dll _csinh
api-ms-win-crt-math-l1-1-0.dll _csinhf
api-ms-win-crt-math-l1-1-0.dll _csinhl
api-ms-win-crt-math-l1-1-0.dll _csinl
api-ms-win-crt-math-l1-1-0.dll _csqrt
api-ms-win-crt-math-l1-1-0.dll _csqrtf
api-ms-win-crt-math-l1-1-0.dll _csqrtl
api-ms-win-crt-math-l1-1-0.dll _ctan
api-ms-win-crt-math-l1-1-0.dll _ctanf
api-ms-win-crt-math-l1-1-0.dll _ctanh
api-ms-win-crt-math-l1-1-0.dll _ctanhf
api-ms-win-crt-math-l1-1-0.dll _ctanhl
api-ms-win-crt-math-l1-1-0.dll _ctanl
api-ms-win-crt-math-l1-1-0.dll _erf
api-ms-win-crt-math-l1-1-0.dll _erfc
api-ms-win-crt-math-l1-1-0.dll _erfcf
api-ms-win-crt-math-l1-1-0.dll _erfcl
api-ms-win-crt-math-l1-1-0.dll _erff
api-ms-win-crt-math-l1-1-0.dll _erfl
api-ms-win-crt-math-l1-1-0.dll _exp
api-ms-win-crt-math-l1-1-0.dll _exp2
api-ms-win-crt-math-l1-1-0.dll _exp2f
api-ms-win-crt-math-l1-1-0.dll _exp2l
api-ms-win-crt-math-l1-1-0.dll _expm1
api-ms-win-crt-math-l1-1-0.dll _expm1f
api-ms-win-crt-math-l1-1-0.dll _expm1l
api-ms-win-crt-math-l1-1-0.dll _fabs
api-ms-win-crt-math-l1-1-0.dll _fdim
api-ms-win-crt-math-l1-1-0.dll _fdimf
api-ms-win-crt-math-l1-1-0.dll _fdiml
api-ms-win-crt-math-l1-1-0.dll _floor
api-ms-win-crt-math-l1-1-0.dll _fma
api-ms-win-crt-math-l1-1-0.dll _fmaf
api-ms-win-crt-math-l1-1-0.dll _fmal
api-ms-win-crt-math-l1-1-0.dll _fmax
api-ms-win-crt-math-l1-1-0.dll _fmaxf
api-ms-win-crt-math-l1-1-0.dll _fmaxl
api-ms-win-crt-math-l1-1-0.dll _fmin
api-ms-win-crt-math-l1-1-0.dll _fminf
api-ms-win-crt-math-l1-1-0.dll _fminl
api-ms-win-crt-math-l1-1-0.dll _fmod
api-ms-win-crt-math-l1-1-0.dll _frexp
api-ms-win-crt-math-l1-1-0.dll _hypot
api-ms-win-crt-math-l1-1-0.dll _ilogb
api-ms-win-crt-math-l1-1-0.dll _ilogbf
api-ms-win-crt-math-l1-1-0.dll _ilogbl
api-ms-win-crt-math-l1-1-0.dll _ldexp
api-ms-win-crt-math-l1-1-0.dll _lgamma
api-ms-win-crt-math-l1-1-0.dll _lgammaf
api-ms-win-crt-math-l1-1-0.dll _lgammal
api-ms-win-crt-math-l1-1-0.dll _llrint
api-ms-win-crt-math-l1-1-0.dll _llrintf
api-ms-win-crt-math-l1-1-0.dll _llrintl
api-ms-win-crt-math-l1-1-0.dll _llround
api-ms-win-crt-math-l1-1-0.dll _llroundf
api-ms-win-crt-math-l1-1-0.dll _llroundl
api-ms-win-crt-math-l1-1-0.dll _log
api-ms-win-crt-math-l1-1-0.dll _log10
api-ms-win-crt-math-l1-1-0.dll _log1p
api-ms-win-crt-math-l1-1-0.dll _log1pf
api-ms-win-crt-math-l1-1-0.dll _log1pl
api-ms-win-crt-math-l1-1-0.dll _log2
api-ms-win-crt-math-l1-1-0.dll _log2f
api-ms-win-crt-math-l1-1-0.dll _log2l
api-ms-win-crt-math-l1-1-0.dll _logb
api-ms-win-crt-math-l1-1-0.dll _logbf
api-ms-win-crt-math-l1-1-0.dll _logbl
api-ms-win-crt-math-l1-1-0.dll _lrint
api-ms-win-crt-math-l1-1-0.dll _lrintf
api-ms-win-crt-math-l1-1-0.dll _lrintl
api-ms-win-crt-math-l1-1-0.dll _lround
api-ms-win-crt-math-l1-1-0.dll _lroundf
api-ms-win-crt-math-l1-1-0.dll _lroundl
api-ms-win-crt-math-l1-1-0.dll _modf
api-ms-win-crt-math-l1-1-0.dll _nan
api-ms-win-crt-math-l1-1-0.dll _nanf
api-ms-win-crt-math-l1-1-0.dll _nanl
api-ms-win-crt-math-l1-1-0.dll _nearbyint
api-ms-win-crt-math-l1-1-0.dll _nearbyintf
api-ms-win-crt-math-l1-1-0.dll _nearbyintl
api-ms-win-crt-math-l1-1-0.dll _nextafter
api-ms-win-crt-math-l1-1-0.dll _nextafterf
api-ms-win-crt-math-l1-1-0.dll _nextafterl
api-ms-win-crt-math-l1-1-0.dll _nexttoward
api-ms-win-crt-math-l1-1-0.dll _nexttowardf
api-ms-win-crt-math-l1-1-0.dll _nexttowardl
api-ms-win-crt-math-l1-1-0.dll _norm
api-ms-win-crt-math-l1-1-0.dll _normf
api-ms-win-crt-math-l1-1-0.dll _norml
api-ms-win-crt-math-l1-1-0.dll _pow
api-ms-win-crt-math-l1-1-0.dll _powf
api-ms-win-crt-math-l1-1-0.dll _remainder
api-ms-win-crt-math-l1-1-0.dll _remainderf
api-ms-win-crt-math-l1-1-0.dll _remainderl
api-ms-win-crt-math-l1-1-0.dll _remquo
api-ms-win-crt-math-l1-1-0.dll _remquof
api-ms-win-crt-math-l1-1-0.dll _remquol
api-ms-win-crt-math-l1-1-0.dll _rint
api-ms-win-crt-math-l1-1-0.dll _rintf
api-ms-win-crt-math-l1-1-0.dll _rintl
api-ms-win-crt-math-l1-1-0.dll _round
api-ms-win-crt-math-l1-1-0.dll _roundf
api-ms-win-crt-math-l1-1-0.dll _roundl
api-ms-win-crt-math-l1-1-0.dll _scalbln
api-ms-win-crt-math-l1-1-0.dll _scalblnf
api-ms-win-crt-math-l1-1-0.dll _scalblnl
api-ms-win-crt-math-l1-1-0.dll _scalbn
api-ms-win-crt-math-l1-1-0.dll _scalbnf
api-ms-win-crt-math-l1-1-0.dll _scalbnl
api-ms-win-crt-math-l1-1-0.dll _sin
api-ms-win-crt-math-l1-1-0.dll _sinh
api-ms-win-crt-math-l1-1-0.dll _sqrt
api-ms-win-crt-math-l1-1-0.dll _tan
api-ms-win-crt-math-l1-1-0.dll _tanh
api-ms-win-crt-math-l1-1-0.dll _tgamma
api-ms-win-crt-math-l1-1-0.dll _tgammaf
api-ms-win-crt-math-l1-1-0.dll _tgammal
api-ms-win-crt-math-l1-1-0.dll _trunc
api-ms-win-crt-math-l1-1-0.dll _truncf
api-ms-win-crt-math-l1-1-0.dll _truncl
api-ms-win-crt-multibyte-l1-1-0.dll ___p__mbcasemap
api-ms-win-crt-multibyte-l1-1-0.dll ___p__mbctype
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbalnum
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbalnum_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbalpha
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbalpha_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbblank
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbblank_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbgraph
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbgraph_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkalnum
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkalnum_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkana
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkana_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkprint
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkprint_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkpunct
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbkpunct_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbblead
api-ms-win-crt-multibyte-l1-1-0.dll __ismbblead_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbprint
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbprint_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbpunct
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbpunct_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbtrail
api-ms-win-crt-multibyte-l1-1-0.dll __ismbbtrail_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcalnum
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcalnum_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcalpha
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcalpha_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcblank
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcblank_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcdigit
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcdigit_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcgraph
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcgraph_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbchira
api-ms-win-crt-multibyte-l1-1-0.dll __ismbchira_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbckata
api-ms-win-crt-multibyte-l1-1-0.dll __ismbckata_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcl0
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcl0_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcl1
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcl1_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcl2
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcl2_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbclegal
api-ms-win-crt-multibyte-l1-1-0.dll __ismbclegal_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbclower
api-ms-win-crt-multibyte-l1-1-0.dll __ismbclower_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcprint
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcprint_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcpunct
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcpunct_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcspace
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcspace_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcsymbol
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcsymbol_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcupper
api-ms-win-crt-multibyte-l1-1-0.dll __ismbcupper_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbslead
api-ms-win-crt-multibyte-l1-1-0.dll __ismbslead_l
api-ms-win-crt-multibyte-l1-1-0.dll __ismbstrail
api-ms-win-crt-multibyte-l1-1-0.dll __ismbstrail_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbbtombc
api-ms-win-crt-multibyte-l1-1-0.dll __mbbtombc_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbbtype
api-ms-win-crt-multibyte-l1-1-0.dll __mbbtype_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbcasemap
api-ms-win-crt-multibyte-l1-1-0.dll __mbccpy
api-ms-win-crt-multibyte-l1-1-0.dll __mbccpy_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbccpy_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbccpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbcjistojms
api-ms-win-crt-multibyte-l1-1-0.dll __mbcjistojms_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbcjmstojis
api-ms-win-crt-multibyte-l1-1-0.dll __mbcjmstojis_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbclen
api-ms-win-crt-multibyte-l1-1-0.dll __mbclen_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbctohira
api-ms-win-crt-multibyte-l1-1-0.dll __mbctohira_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbctokata
api-ms-win-crt-multibyte-l1-1-0.dll __mbctokata_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbctolower
api-ms-win-crt-multibyte-l1-1-0.dll __mbctolower_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbctombb
api-ms-win-crt-multibyte-l1-1-0.dll __mbctombb_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbctoupper
api-ms-win-crt-multibyte-l1-1-0.dll __mbctoupper_l
api-ms-win-crt-multibyte-l1-1-0.dll __mblen_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsbtype
api-ms-win-crt-multibyte-l1-1-0.dll __mbsbtype_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbscat_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbscat_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbschr
api-ms-win-crt-multibyte-l1-1-0.dll __mbschr_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbscmp
api-ms-win-crt-multibyte-l1-1-0.dll __mbscmp_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbscoll
api-ms-win-crt-multibyte-l1-1-0.dll __mbscoll_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbscpy_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbscpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbscspn
api-ms-win-crt-multibyte-l1-1-0.dll __mbscspn_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsdec
api-ms-win-crt-multibyte-l1-1-0.dll __mbsdec_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsdup
api-ms-win-crt-multibyte-l1-1-0.dll __mbsicmp
api-ms-win-crt-multibyte-l1-1-0.dll __mbsicmp_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsicoll
api-ms-win-crt-multibyte-l1-1-0.dll __mbsicoll_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsinc
api-ms-win-crt-multibyte-l1-1-0.dll __mbsinc_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbslen
api-ms-win-crt-multibyte-l1-1-0.dll __mbslen_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbslwr
api-ms-win-crt-multibyte-l1-1-0.dll __mbslwr_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbslwr_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbslwr_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcat
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcat_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcat_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcat_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcmp
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcmp_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcnt
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcnt_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcoll
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcoll_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcpy
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcpy_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcpy_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbcpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbicmp
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbicmp_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbicoll
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbicoll_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbset
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbset_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbset_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnbset_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncat
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncat_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncat_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncat_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnccnt
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnccnt_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncmp
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncmp_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncoll
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncoll_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncpy
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncpy_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncpy_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsncpy_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnextc
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnextc_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnicmp
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnicmp_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnicoll
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnicoll_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsninc
api-ms-win-crt-multibyte-l1-1-0.dll __mbsninc_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnlen
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnlen_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnset
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnset_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnset_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsnset_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbspbrk
api-ms-win-crt-multibyte-l1-1-0.dll __mbspbrk_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsrchr
api-ms-win-crt-multibyte-l1-1-0.dll __mbsrchr_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsrev
api-ms-win-crt-multibyte-l1-1-0.dll __mbsrev_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsset
api-ms-win-crt-multibyte-l1-1-0.dll __mbsset_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsset_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsset_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsspn
api-ms-win-crt-multibyte-l1-1-0.dll __mbsspn_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsspnp
api-ms-win-crt-multibyte-l1-1-0.dll __mbsspnp_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsstr
api-ms-win-crt-multibyte-l1-1-0.dll __mbsstr_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbstok
api-ms-win-crt-multibyte-l1-1-0.dll __mbstok_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbstok_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbstok_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbstowcs_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbstowcs_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbstrlen
api-ms-win-crt-multibyte-l1-1-0.dll __mbstrlen_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbstrnlen
api-ms-win-crt-multibyte-l1-1-0.dll __mbstrnlen_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsupr
api-ms-win-crt-multibyte-l1-1-0.dll __mbsupr_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbsupr_s
api-ms-win-crt-multibyte-l1-1-0.dll __mbsupr_s_l
api-ms-win-crt-multibyte-l1-1-0.dll __mbtowc_l
api-ms-win-crt-process-l1-1-0.dll __beep
api-ms-win-crt-process-l1-1-0.dll __cwait
api-ms-win-crt-process-l1-1-0.dll __execl
api-ms-win-crt-process-l1-1-0.dll __execle
api-ms-win-crt-process-l1-1-0.dll __execlp
api-ms-win-crt-process-l1-1-0.dll __execlpe
api-ms-win-crt-process-l1-1-0.dll __execv
api-ms-win-crt-process-l1-1-0.dll __execve
api-ms-win-crt-process-l1-1-0.dll __execvp
api-ms-win-crt-process-l1-1-0.dll __execvpe
api-ms-win-crt-process-l1-1-0.dll __loaddll
api-ms-win-crt-process-l1-1-0.dll __spawnl
api-ms-win-crt-process-l1-1-0.dll __spawnle
api-ms-win-crt-process-l1-1-0.dll __spawnlp
api-ms-win-crt-process-l1-1-0.dll __spawnlpe
api-ms-win-crt-process-l1-1-0.dll __spawnv
api-ms-win-crt-process-l1-1-0.dll __spawnve
api-ms-win-crt-process-l1-1-0.dll __spawnvp
api-ms-win-crt-process-l1-1-0.dll __spawnvpe
api-ms-win-crt-process-l1-1-0.dll __unloaddll
api-ms-win-crt-process-l1-1-0.dll __wexecl
api-ms-win-crt-process-l1-1-0.dll __wexecle
api-ms-win-crt-process-l1-1-0.dll __wexeclp
api-ms-win-crt-process-l1-1-0.dll __wexeclpe
api-ms-win-crt-process-l1-1-0.dll __wexecv
api-ms-win-crt-process-l1-1-0.dll __wexecve
api-ms-win-crt-process-l1-1-0.dll __wexecvp
api-ms-win-crt-process-l1-1-0.dll __wexecvpe
api-ms-win-crt-process-l1-1-0.dll __wspawnl
api-ms-win-crt-process-l1-1-0.dll __wspawnle
api-ms-win-crt-process-l1-1-0.dll __wspawnlp
api-ms-win-crt-process-l1-1-0.dll __wspawnlpe
api-ms-win-crt-process-l1-1-0.dll __wspawnv
api-ms-win-crt-process-l1-1-0.dll __wspawnve
api-ms-win-crt-process-l1-1-0.dll __wspawnvp
api-ms-win-crt-process-l1-1-0.dll __wspawnvpe
api-ms-win-crt-runtime-l1-1-0.dll __Exit
api-ms-win-crt-runtime-l1-1-0.dll ___control87_2
api-ms-win-crt-runtime-l1-1-0.dll ___doserrno
api-ms-win-crt-runtime-l1-1-0.dll ___fpe_flt_rounds
api-ms-win-crt-runtime-l1-1-0.dll ___fpecode
api-ms-win-crt-runtime-l1-1-0.dll ___p___argc
api-ms-win-crt-runtime-l1-1-0.dll ___p___argv
api-ms-win-crt-runtime-l1-1-0.dll ___p___wargv
api-ms-win-crt-runtime-l1-1-0.dll ___p__acmdln
api-ms-win-crt-runtime-l1-1-0.dll ___p__pgmptr
api-ms-win-crt-runtime-l1-1-0.dll ___p__wcmdln
api-ms-win-crt-runtime-l1-1-0.dll ___p__wpgmptr
api-ms-win-crt-runtime-l1-1-0.dll ___pxcptinfoptrs
api-ms-win-crt-runtime-l1-1-0.dll ___sys_errlist
api-ms-win-crt-runtime-l1-1-0.dll ___sys_nerr
api-ms-win-crt-runtime-l1-1-0.dll ___threadhandle
api-ms-win-crt-runtime-l1-1-0.dll ___threadid
api-ms-win-crt-runtime-l1-1-0.dll ___wcserror
api-ms-win-crt-runtime-l1-1-0.dll ___wcserror_s
api-ms-win-crt-runtime-l1-1-0.dll __assert
api-ms-win-crt-runtime-l1-1-0.dll __beginthread
api-ms-win-crt-runtime-l1-1-0.dll __beginthreadex
api-ms-win-crt-runtime-l1-1-0.dll __c_exit
api-ms-win-crt-runtime-l1-1-0.dll __cexit
api-ms-win-crt-runtime-l1-1-0.dll __clearfp
api-ms-win-crt-runtime-l1-1-0.dll __configure_narrow_argv
api-ms-win-crt-runtime-l1-1-0.dll __configure_wide_argv
api-ms-win-crt-runtime-l1-1-0.dll __control87
api-ms-win-crt-runtime-l1-1-0.dll __controlfp
api-ms-win-crt-runtime-l1-1-0.dll __controlfp_s
api-ms-win-crt-runtime-l1-1-0.dll __crt_at_quick_exit
api-ms-win-crt-runtime-l1-1-0.dll __crt_atexit
api-ms-win-crt-runtime-l1-1-0.dll __crt_debugger_hook
api-ms-win-crt-runtime-l1-1-0.dll __endthread
api-ms-win-crt-runtime-l1-1-0.dll __endthreadex
api-ms-win-crt-runtime-l1-1-0.dll __errno
api-ms-win-crt-runtime-l1-1-0.dll __execute_onexit_table
api-ms-win-crt-runtime-l1-1-0.dll __exit
api-ms-win-crt-runtime-l1-1-0.dll __fpieee_flt
api-ms-win-crt-runtime-l1-1-0.dll __fpreset
api-ms-win-crt-runtime-l1-1-0.dll __get_doserrno
api-ms-win-crt-runtime-l1-1-0.dll __get_errno
api-ms-win-crt-runtime-l1-1-0.dll __get_initial_narrow_environment
api-ms-win-crt-runtime-l1-1-0.dll __get_initial_wide_environment
api-ms-win-crt-runtime-l1-1-0.dll __get_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll __get_narrow_winmain_command_line
api-ms-win-crt-runtime-l1-1-0.dll __get_pgmptr
api-ms-win-crt-runtime-l1-1-0.dll __get_terminate
api-ms-win-crt-runtime-l1-1-0.dll __get_thread_local_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll __get_wide_winmain_command_line
api-ms-win-crt-runtime-l1-1-0.dll __get_wpgmptr
api-ms-win-crt-runtime-l1-1-0.dll __getdllprocaddr
api-ms-win-crt-runtime-l1-1-0.dll __getpid
api-ms-win-crt-runtime-l1-1-0.dll __initialize_narrow_environment
api-ms-win-crt-runtime-l1-1-0.dll __initialize_onexit_table
api-ms-win-crt-runtime-l1-1-0.dll __initialize_wide_environment
api-ms-win-crt-runtime-l1-1-0.dll __initterm
api-ms-win-crt-runtime-l1-1-0.dll __initterm_e
api-ms-win-crt-runtime-l1-1-0.dll __invalid_parameter_noinfo
api-ms-win-crt-runtime-l1-1-0.dll __invalid_parameter_noinfo_noreturn
api-ms-win-crt-runtime-l1-1-0.dll __invoke_watson
api-ms-win-crt-runtime-l1-1-0.dll __query_app_type
api-ms-win-crt-runtime-l1-1-0.dll __register_onexit_function
api-ms-win-crt-runtime-l1-1-0.dll __register_thread_local_exe_atexit_callback
api-ms-win-crt-runtime-l1-1-0.dll __resetstkoflw
api-ms-win-crt-runtime-l1-1-0.dll __seh_filter_dll
api-ms-win-crt-runtime-l1-1-0.dll __seh_filter_exe
api-ms-win-crt-runtime-l1-1-0.dll __set_abort_behavior
api-ms-win-crt-runtime-l1-1-0.dll __set_app_type
api-ms-win-crt-runtime-l1-1-0.dll __set_controlfp
api-ms-win-crt-runtime-l1-1-0.dll __set_doserrno
api-ms-win-crt-runtime-l1-1-0.dll __set_errno
api-ms-win-crt-runtime-l1-1-0.dll __set_error_mode
api-ms-win-crt-runtime-l1-1-0.dll __set_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll __set_new_handler
api-ms-win-crt-runtime-l1-1-0.dll __set_thread_local_invalid_parameter_handler
api-ms-win-crt-runtime-l1-1-0.dll __seterrormode
api-ms-win-crt-runtime-l1-1-0.dll __sleep
api-ms-win-crt-runtime-l1-1-0.dll __statusfp
api-ms-win-crt-runtime-l1-1-0.dll __statusfp2
api-ms-win-crt-runtime-l1-1-0.dll __strerror
api-ms-win-crt-runtime-l1-1-0.dll __strerror_s
api-ms-win-crt-runtime-l1-1-0.dll __wassert
api-ms-win-crt-runtime-l1-1-0.dll __wcserror
api-ms-win-crt-runtime-l1-1-0.dll __wcserror_s
api-ms-win-crt-runtime-l1-1-0.dll __wperror
api-ms-win-crt-runtime-l1-1-0.dll __wsystem
api-ms-win-crt-runtime-l1-1-0.dll _abort
api-ms-win-crt-runtime-l1-1-0.dll _exit
api-ms-win-crt-runtime-l1-1-0.dll _feclearexcept
api-ms-win-crt-runtime-l1-1-0.dll _fegetenv
api-ms-win-crt-runtime-l1-1-0.dll _fegetexceptflag
api-ms-win-crt-runtime-l1-1-0.dll _fegetround
api-ms-win-crt-runtime-l1-1-0.dll _feholdexcept
api-ms-win-crt-runtime-l1-1-0.dll _fesetenv
api-ms-win-crt-runtime-l1-1-0.dll _fesetexceptflag
api-ms-win-crt-runtime-l1-1-0.dll _fesetround
api-ms-win-crt-runtime-l1-1-0.dll _fetestexcept
api-ms-win-crt-runtime-l1-1-0.dll _perror
api-ms-win-crt-runtime-l1-1-0.dll _quick_exit
api-ms-win-crt-runtime-l1-1-0.dll _raise
api-ms-win-crt-runtime-l1-1-0.dll _set_terminate
api-ms-win-crt-runtime-l1-1-0.dll _signal
api-ms-win-crt-runtime-l1-1-0.dll _strerror
api-ms-win-crt-runtime-l1-1-0.dll _strerror_s
api-ms-win-crt-runtime-l1-1-0.dll _system
api-ms-win-crt-runtime-l1-1-0.dll _terminate
api-ms-win-crt-stdio-l1-1-0.dll ___acrt_iob_func
api-ms-win-crt-stdio-l1-1-0.dll ___p__commode
api-ms-win-crt-stdio-l1-1-0.dll ___p__fmode
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfprintf
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfprintf_p
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfprintf_s
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfscanf
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfwprintf
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfwprintf_p
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfwprintf_s
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vfwscanf
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vsnprintf_s
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vsnwprintf_s
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vsprintf
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vsprintf_p
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vsprintf_s
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vsscanf
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vswprintf
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vswprintf_p
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vswprintf_s
api-ms-win-crt-stdio-l1-1-0.dll ___stdio_common_vswscanf
api-ms-win-crt-stdio-l1-1-0.dll __chsize
api-ms-win-crt-stdio-l1-1-0.dll __chsize_s
api-ms-win-crt-stdio-l1-1-0.dll __close
api-ms-win-crt-stdio-l1-1-0.dll __commit
api-ms-win-crt-stdio-l1-1-0.dll __creat
api-ms-win-crt-stdio-l1-1-0.dll __dup
api-ms-win-crt-stdio-l1-1-0.dll __dup2
api-ms-win-crt-stdio-l1-1-0.dll __eof
api-ms-win-crt-stdio-l1-1-0.dll __fclose_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fcloseall
api-ms-win-crt-stdio-l1-1-0.dll __fflush_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fgetc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fgetchar
api-ms-win-crt-stdio-l1-1-0.dll __fgetwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fgetwchar
api-ms-win-crt-stdio-l1-1-0.dll __filelength
api-ms-win-crt-stdio-l1-1-0.dll __filelengthi64
api-ms-win-crt-stdio-l1-1-0.dll __fileno
api-ms-win-crt-stdio-l1-1-0.dll __flushall
api-ms-win-crt-stdio-l1-1-0.dll __fputc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fputchar
api-ms-win-crt-stdio-l1-1-0.dll __fputwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fputwchar
api-ms-win-crt-stdio-l1-1-0.dll __fread_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fread_nolock_s
api-ms-win-crt-stdio-l1-1-0.dll __fseek_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fseeki64
api-ms-win-crt-stdio-l1-1-0.dll __fseeki64_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fsopen
api-ms-win-crt-stdio-l1-1-0.dll __ftell_nolock
api-ms-win-crt-stdio-l1-1-0.dll __ftelli64
api-ms-win-crt-stdio-l1-1-0.dll __ftelli64_nolock
api-ms-win-crt-stdio-l1-1-0.dll __fwrite_nolock
api-ms-win-crt-stdio-l1-1-0.dll __get_fmode
api-ms-win-crt-stdio-l1-1-0.dll __get_osfhandle
api-ms-win-crt-stdio-l1-1-0.dll __get_printf_count_output
api-ms-win-crt-stdio-l1-1-0.dll __get_stream_buffer_pointers
api-ms-win-crt-stdio-l1-1-0.dll __getc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __getcwd
api-ms-win-crt-stdio-l1-1-0.dll __getdcwd
api-ms-win-crt-stdio-l1-1-0.dll __getmaxstdio
api-ms-win-crt-stdio-l1-1-0.dll __getw
api-ms-win-crt-stdio-l1-1-0.dll __getwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __getws
api-ms-win-crt-stdio-l1-1-0.dll __getws_s
api-ms-win-crt-stdio-l1-1-0.dll __isatty
api-ms-win-crt-stdio-l1-1-0.dll __kbhit
api-ms-win-crt-stdio-l1-1-0.dll __locking
api-ms-win-crt-stdio-l1-1-0.dll __lseek
api-ms-win-crt-stdio-l1-1-0.dll __lseeki64
api-ms-win-crt-stdio-l1-1-0.dll __mktemp
api-ms-win-crt-stdio-l1-1-0.dll __mktemp_s
api-ms-win-crt-stdio-l1-1-0.dll __open
api-ms-win-crt-stdio-l1-1-0.dll __open_osfhandle
api-ms-win-crt-stdio-l1-1-0.dll __pclose
api-ms-win-crt-stdio-l1-1-0.dll __pipe
api-ms-win-crt-stdio-l1-1-0.dll __popen
api-ms-win-crt-stdio-l1-1-0.dll __putc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __putw
api-ms-win-crt-stdio-l1-1-0.dll __putwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __putws
api-ms-win-crt-stdio-l1-1-0.dll __read
api-ms-win-crt-stdio-l1-1-0.dll __rmtmp
api-ms-win-crt-stdio-l1-1-0.dll __set_fmode
api-ms-win-crt-stdio-l1-1-0.dll __set_printf_count_output
api-ms-win-crt-stdio-l1-1-0.dll __setmaxstdio
api-ms-win-crt-stdio-l1-1-0.dll __setmode
api-ms-win-crt-stdio-l1-1-0.dll __sopen
api-ms-win-crt-stdio-l1-1-0.dll __sopen_dispatch
api-ms-win-crt-stdio-l1-1-0.dll __sopen_s
api-ms-win-crt-stdio-l1-1-0.dll __tell
api-ms-win-crt-stdio-l1-1-0.dll __telli64
api-ms-win-crt-stdio-l1-1-0.dll __tempnam
api-ms-win-crt-stdio-l1-1-0.dll __ungetc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __ungetwc_nolock
api-ms-win-crt-stdio-l1-1-0.dll __wcreat
api-ms-win-crt-stdio-l1-1-0.dll __wfdopen
api-ms-win-crt-stdio-l1-1-0.dll __wfopen
api-ms-win-crt-stdio-l1-1-0.dll __wfopen_s
api-ms-win-crt-stdio-l1-1-0.dll __wfreopen
api-ms-win-crt-stdio-l1-1-0.dll __wfreopen_s
api-ms-win-crt-stdio-l1-1-0.dll __wfsopen
api-ms-win-crt-stdio-l1-1-0.dll __wmktemp
api-ms-win-crt-stdio-l1-1-0.dll __wmktemp_s
api-ms-win-crt-stdio-l1-1-0.dll __wopen
api-ms-win-crt-stdio-l1-1-0.dll __wpopen
api-ms-win-crt-stdio-l1-1-0.dll __write
api-ms-win-crt-stdio-l1-1-0.dll __wsopen
api-ms-win-crt-stdio-l1-1-0.dll __wsopen_dispatch
api-ms-win-crt-stdio-l1-1-0.dll __wsopen_s
api-ms-win-crt-stdio-l1-1-0.dll __wtempnam
api-ms-win-crt-stdio-l1-1-0.dll __wtmpnam
api-ms-win-crt-stdio-l1-1-0.dll __wtmpnam_s
api-ms-win-crt-stdio-l1-1-0.dll _clearerr
api-ms-win-crt-stdio-l1-1-0.dll _clearerr_s
api-ms-win-crt-stdio-l1-1-0.dll _fclose
api-ms-win-crt-stdio-l1-1-0.dll _feof
api-ms-win-crt-stdio-l1-1-0.dll _ferror
api-ms-win-crt-stdio-l1-1-0.dll _fflush
api-ms-win-crt-stdio-l1-1-0.dll _fgetc
api-ms-win-crt-stdio-l1-1-0.dll _fgetpos
api-ms-win-crt-stdio-l1-1-0.dll _fgets
api-ms-win-crt-stdio-l1-1-0.dll _fgetwc
api-ms-win-crt-stdio-l1-1-0.dll _fgetws
api-ms-win-crt-stdio-l1-1-0.dll _fopen
api-ms-win-crt-stdio-l1-1-0.dll _fopen_s
api-ms-win-crt-stdio-l1-1-0.dll _fputc
api-ms-win-crt-stdio-l1-1-0.dll _fputs
api-ms-win-crt-stdio-l1-1-0.dll _fputwc
api-ms-win-crt-stdio-l1-1-0.dll _fputws
api-ms-win-crt-stdio-l1-1-0.dll _fread
api-ms-win-crt-stdio-l1-1-0.dll _fread_s
api-ms-win-crt-stdio-l1-1-0.dll _freopen
api-ms-win-crt-stdio-l1-1-0.dll _freopen_s
api-ms-win-crt-stdio-l1-1-0.dll _fseek
api-ms-win-crt-stdio-l1-1-0.dll _fsetpos
api-ms-win-crt-stdio-l1-1-0.dll _ftell
api-ms-win-crt-stdio-l1-1-0.dll _fwrite
api-ms-win-crt-stdio-l1-1-0.dll _getc
api-ms-win-crt-stdio-l1-1-0.dll _getchar
api-ms-win-crt-stdio-l1-1-0.dll _gets
api-ms-win-crt-stdio-l1-1-0.dll _gets_s
api-ms-win-crt-stdio-l1-1-0.dll _getwc
api-ms-win-crt-stdio-l1-1-0.dll _getwchar
api-ms-win-crt-stdio-l1-1-0.dll _putc
api-ms-win-crt-stdio-l1-1-0.dll _putchar
api-ms-win-crt-stdio-l1-1-0.dll _puts
api-ms-win-crt-stdio-l1-1-0.dll _putwc
api-ms-win-crt-stdio-l1-1-0.dll _putwchar
api-ms-win-crt-stdio-l1-1-0.dll _rewind
api-ms-win-crt-stdio-l1-1-0.dll _setbuf
api-ms-win-crt-stdio-l1-1-0.dll _setvbuf
api-ms-win-crt-stdio-l1-1-0.dll _tmpfile
api-ms-win-crt-stdio-l1-1-0.dll _tmpfile_s
api-ms-win-crt-stdio-l1-1-0.dll _tmpnam
api-ms-win-crt-stdio-l1-1-0.dll _tmpnam_s
api-ms-win-crt-stdio-l1-1-0.dll _ungetc
api-ms-win-crt-stdio-l1-1-0.dll _ungetwc
api-ms-win-crt-string-l1-1-0.dll ___isascii
api-ms-win-crt-string-l1-1-0.dll ___iscsym
api-ms-win-crt-string-l1-1-0.dll ___iscsymf
api-ms-win-crt-string-l1-1-0.dll ___iswcsym
api-ms-win-crt-string-l1-1-0.dll ___iswcsymf
api-ms-win-crt-string-l1-1-0.dll ___strncnt
api-ms-win-crt-string-l1-1-0.dll ___wcsncnt
api-ms-win-crt-string-l1-1-0.dll __isalnum_l
api-ms-win-crt-string-l1-1-0.dll __isalpha_l
api-ms-win-crt-string-l1-1-0.dll __isblank_l
api-ms-win-crt-string-l1-1-0.dll __iscntrl_l
api-ms-win-crt-string-l1-1-0.dll __isctype
api-ms-win-crt-string-l1-1-0.dll __isctype_l
api-ms-win-crt-string-l1-1-0.dll __isdigit_l
api-ms-win-crt-string-l1-1-0.dll __isgraph_l
api-ms-win-crt-string-l1-1-0.dll __isleadbyte_l
api-ms-win-crt-string-l1-1-0.dll __islower_l
api-ms-win-crt-string-l1-1-0.dll __isprint_l
api-ms-win-crt-string-l1-1-0.dll __ispunct_l
api-ms-win-crt-string-l1-1-0.dll __isspace_l
api-ms-win-crt-string-l1-1-0.dll __isupper_l
api-ms-win-crt-string-l1-1-0.dll __iswalnum_l
api-ms-win-crt-string-l1-1-0.dll __iswalpha_l
api-ms-win-crt-string-l1-1-0.dll __iswblank_l
api-ms-win-crt-string-l1-1-0.dll __iswcntrl_l
api-ms-win-crt-string-l1-1-0.dll __iswcsym_l
api-ms-win-crt-string-l1-1-0.dll __iswcsymf_l
api-ms-win-crt-string-l1-1-0.dll __iswctype_l
api-ms-win-crt-string-l1-1-0.dll __iswdigit_l
api-ms-win-crt-string-l1-1-0.dll __iswgraph_l
api-ms-win-crt-string-l1-1-0.dll __iswlower_l
api-ms-win-crt-string-l1-1-0.dll __iswprint_l
api-ms-win-crt-string-l1-1-0.dll __iswpunct_l
api-ms-win-crt-string-l1-1-0.dll __iswspace_l
api-ms-win-crt-string-l1-1-0.dll __iswupper_l
api-ms-win-crt-string-l1-1-0.dll __iswxdigit_l
api-ms-win-crt-string-l1-1-0.dll __isxdigit_l
api-ms-win-crt-string-l1-1-0.dll __memccpy
api-ms-win-crt-string-l1-1-0.dll __memicmp
api-ms-win-crt-string-l1-1-0.dll __memicmp_l
api-ms-win-crt-string-l1-1-0.dll __strcoll_l
api-ms-win-crt-string-l1-1-0.dll __strdup
api-ms-win-crt-string-l1-1-0.dll __stricmp
api-ms-win-crt-string-l1-1-0.dll __stricmp_l
api-ms-win-crt-string-l1-1-0.dll __stricoll
api-ms-win-crt-string-l1-1-0.dll __stricoll_l
api-ms-win-crt-string-l1-1-0.dll __strlwr
api-ms-win-crt-string-l1-1-0.dll __strlwr_l
api-ms-win-crt-string-l1-1-0.dll __strlwr_s
api-ms-win-crt-string-l1-1-0.dll __strlwr_s_l
api-ms-win-crt-string-l1-1-0.dll __strncoll
api-ms-win-crt-string-l1-1-0.dll __strncoll_l
api-ms-win-crt-string-l1-1-0.dll __strnicmp
api-ms-win-crt-string-l1-1-0.dll __strnicmp_l
api-ms-win-crt-string-l1-1-0.dll __strnicoll
api-ms-win-crt-string-l1-1-0.dll __strnicoll_l
api-ms-win-crt-string-l1-1-0.dll __strnset
api-ms-win-crt-string-l1-1-0.dll __strnset_s
api-ms-win-crt-string-l1-1-0.dll __strrev
api-ms-win-crt-string-l1-1-0.dll __strset
api-ms-win-crt-string-l1-1-0.dll __strset_s
api-ms-win-crt-string-l1-1-0.dll __strupr
api-ms-win-crt-string-l1-1-0.dll __strupr_l
api-ms-win-crt-string-l1-1-0.dll __strupr_s
api-ms-win-crt-string-l1-1-0.dll __strupr_s_l
api-ms-win-crt-string-l1-1-0.dll __strxfrm_l
api-ms-win-crt-string-l1-1-0.dll __tolower
api-ms-win-crt-string-l1-1-0.dll __tolower_l
api-ms-win-crt-string-l1-1-0.dll __toupper
api-ms-win-crt-string-l1-1-0.dll __toupper_l
api-ms-win-crt-string-l1-1-0.dll __towlower_l
api-ms-win-crt-string-l1-1-0.dll __towupper_l
api-ms-win-crt-string-l1-1-0.dll __wcscoll_l
api-ms-win-crt-string-l1-1-0.dll __wcsdup
api-ms-win-crt-string-l1-1-0.dll __wcsicmp
api-ms-win-crt-string-l1-1-0.dll __wcsicmp_l
api-ms-win-crt-string-l1-1-0.dll __wcsicoll
api-ms-win-crt-string-l1-1-0.dll __wcsicoll_l
api-ms-win-crt-string-l1-1-0.dll __wcslwr
api-ms-win-crt-string-l1-1-0.dll __wcslwr_l
api-ms-win-crt-string-l1-1-0.dll __wcslwr_s
api-ms-win-crt-string-l1-1-0.dll __wcslwr_s_l
api-ms-win-crt-string-l1-1-0.dll __wcsncoll
api-ms-win-crt-string-l1-1-0.dll __wcsncoll_l
api-ms-win-crt-string-l1-1-0.dll __wcsnicmp
api-ms-win-crt-string-l1-1-0.dll __wcsnicmp_l
api-ms-win-crt-string-l1-1-0.dll __wcsnicoll
api-ms-win-crt-string-l1-1-0.dll __wcsnicoll_l
api-ms-win-crt-string-l1-1-0.dll __wcsnset
api-ms-win-crt-string-l1-1-0.dll __wcsnset_s
api-ms-win-crt-string-l1-1-0.dll __wcsrev
api-ms-win-crt-string-l1-1-0.dll __wcsset
api-ms-win-crt-string-l1-1-0.dll __wcsset_s
api-ms-win-crt-string-l1-1-0.dll __wcsupr
api-ms-win-crt-string-l1-1-0.dll __wcsupr_l
api-ms-win-crt-string-l1-1-0.dll __wcsupr_s
api-ms-win-crt-string-l1-1-0.dll __wcsupr_s_l
api-ms-win-crt-string-l1-1-0.dll __wcsxfrm_l
api-ms-win-crt-string-l1-1-0.dll __wctype
api-ms-win-crt-string-l1-1-0.dll _is_wctype
api-ms-win-crt-string-l1-1-0.dll _isalnum
api-ms-win-crt-string-l1-1-0.dll _isalpha
api-ms-win-crt-string-l1-1-0.dll _isblank
api-ms-win-crt-string-l1-1-0.dll _iscntrl
api-ms-win-crt-string-l1-1-0.dll _isdigit
api-ms-win-crt-string-l1-1-0.dll _isgraph
api-ms-win-crt-string-l1-1-0.dll _isleadbyte
api-ms-win-crt-string-l1-1-0.dll _islower
api-ms-win-crt-string-l1-1-0.dll _isprint
api-ms-win-crt-string-l1-1-0.dll _ispunct
api-ms-win-crt-string-l1-1-0.dll _isspace
api-ms-win-crt-string-l1-1-0.dll _isupper
api-ms-win-crt-string-l1-1-0.dll _iswalnum
api-ms-win-crt-string-l1-1-0.dll _iswalpha
api-ms-win-crt-string-l1-1-0.dll _iswascii
api-ms-win-crt-string-l1-1-0.dll _iswblank
api-ms-win-crt-string-l1-1-0.dll _iswcntrl
api-ms-win-crt-string-l1-1-0.dll _iswctype
api-ms-win-crt-string-l1-1-0.dll _iswdigit
api-ms-win-crt-string-l1-1-0.dll _iswgraph
api-ms-win-crt-string-l1-1-0.dll _iswlower
api-ms-win-crt-string-l1-1-0.dll _iswprint
api-ms-win-crt-string-l1-1-0.dll _iswpunct
api-ms-win-crt-string-l1-1-0.dll _iswspace
api-ms-win-crt-string-l1-1-0.dll _iswupper
api-ms-win-crt-string-l1-1-0.dll _iswxdigit
api-ms-win-crt-string-l1-1-0.dll _isxdigit
api-ms-win-crt-string-l1-1-0.dll _mblen
api-ms-win-crt-string-l1-1-0.dll _mbrlen
api-ms-win-crt-string-l1-1-0.dll _memcpy_s
api-ms-win-crt-string-l1-1-0.dll _memmove_s
api-ms-win-crt-string-l1-1-0.dll _memset
api-ms-win-crt-string-l1-1-0.dll _strcat
api-ms-win-crt-string-l1-1-0.dll _strcat_s
api-ms-win-crt-string-l1-1-0.dll _strcmp
api-ms-win-crt-string-l1-1-0.dll _strcoll
api-ms-win-crt-string-l1-1-0.dll _strcpy
api-ms-win-crt-string-l1-1-0.dll _strcpy_s
api-ms-win-crt-string-l1-1-0.dll _strcspn
api-ms-win-crt-string-l1-1-0.dll _strlen
api-ms-win-crt-string-l1-1-0.dll _strncat
api-ms-win-crt-string-l1-1-0.dll _strncat_s
api-ms-win-crt-string-l1-1-0.dll _strncmp
api-ms-win-crt-string-l1-1-0.dll _strncpy
api-ms-win-crt-string-l1-1-0.dll _strncpy_s
api-ms-win-crt-string-l1-1-0.dll _strnlen
api-ms-win-crt-string-l1-1-0.dll _strpbrk
api-ms-win-crt-string-l1-1-0.dll _strspn
api-ms-win-crt-string-l1-1-0.dll _strtok
api-ms-win-crt-string-l1-1-0.dll _strtok_s
api-ms-win-crt-string-l1-1-0.dll _strxfrm
api-ms-win-crt-string-l1-1-0.dll _tolower
api-ms-win-crt-string-l1-1-0.dll _toupper
api-ms-win-crt-string-l1-1-0.dll _towctrans
api-ms-win-crt-string-l1-1-0.dll _towlower
api-ms-win-crt-string-l1-1-0.dll _towupper
api-ms-win-crt-string-l1-1-0.dll _wcscat
api-ms-win-crt-string-l1-1-0.dll _wcscat_s
api-ms-win-crt-string-l1-1-0.dll _wcscmp
api-ms-win-crt-string-l1-1-0.dll _wcscoll
api-ms-win-crt-string-l1-1-0.dll _wcscpy
api-ms-win-crt-string-l1-1-0.dll _wcscpy_s
api-ms-win-crt-string-l1-1-0.dll _wcscspn
api-ms-win-crt-string-l1-1-0.dll _wcslen
api-ms-win-crt-string-l1-1-0.dll _wcsncat
api-ms-win-crt-string-l1-1-0.dll _wcsncat_s
api-ms-win-crt-string-l1-1-0.dll _wcsncmp
api-ms-win-crt-string-l1-1-0.dll _wcsncpy
api-ms-win-crt-string-l1-1-0.dll _wcsncpy_s
api-ms-win-crt-string-l1-1-0.dll _wcsnlen
api-ms-win-crt-string-l1-1-0.dll _wcspbrk
api-ms-win-crt-string-l1-1-0.dll _wcsspn
api-ms-win-crt-string-l1-1-0.dll _wcstok
api-ms-win-crt-string-l1-1-0.dll _wcstok_s
api-ms-win-crt-string-l1-1-0.dll _wcsxfrm
api-ms-win-crt-string-l1-1-0.dll _wctype
api-ms-win-crt-string-l1-1-0.dll _wmemcpy_s
api-ms-win-crt-string-l1-1-0.dll _wmemmove_s
api-ms-win-crt-time-l1-1-0.dll __Getdays
api-ms-win-crt-time-l1-1-0.dll __Getmonths
api-ms-win-crt-time-l1-1-0.dll __Gettnames
api-ms-win-crt-time-l1-1-0.dll __Strftime
api-ms-win-crt-time-l1-1-0.dll __W_Getdays
api-ms-win-crt-time-l1-1-0.dll __W_Getmonths
api-ms-win-crt-time-l1-1-0.dll __W_Gettnames
api-ms-win-crt-time-l1-1-0.dll __Wcsftime
api-ms-win-crt-time-l1-1-0.dll ___daylight
api-ms-win-crt-time-l1-1-0.dll ___dstbias
api-ms-win-crt-time-l1-1-0.dll ___timezone
api-ms-win-crt-time-l1-1-0.dll ___tzname
api-ms-win-crt-time-l1-1-0.dll __ctime32
api-ms-win-crt-time-l1-1-0.dll __ctime32_s
api-ms-win-crt-time-l1-1-0.dll __ctime64
api-ms-win-crt-time-l1-1-0.dll __ctime64_s
api-ms-win-crt-time-l1-1-0.dll __difftime32
api-ms-win-crt-time-l1-1-0.dll __difftime64
api-ms-win-crt-time-l1-1-0.dll __ftime32
api-ms-win-crt-time-l1-1-0.dll __ftime32_s
api-ms-win-crt-time-l1-1-0.dll __ftime64
api-ms-win-crt-time-l1-1-0.dll __ftime64_s
api-ms-win-crt-time-l1-1-0.dll __futime32
api-ms-win-crt-time-l1-1-0.dll __futime64
api-ms-win-crt-time-l1-1-0.dll __get_daylight
api-ms-win-crt-time-l1-1-0.dll __get_dstbias
api-ms-win-crt-time-l1-1-0.dll __get_timezone
api-ms-win-crt-time-l1-1-0.dll __get_tzname
api-ms-win-crt-time-l1-1-0.dll __getsystime
api-ms-win-crt-time-l1-1-0.dll __gmtime32
api-ms-win-crt-time-l1-1-0.dll __gmtime32_s
api-ms-win-crt-time-l1-1-0.dll __gmtime64
api-ms-win-crt-time-l1-1-0.dll __gmtime64_s
api-ms-win-crt-time-l1-1-0.dll __localtime32
api-ms-win-crt-time-l1-1-0.dll __localtime32_s
api-ms-win-crt-time-l1-1-0.dll __localtime64
api-ms-win-crt-time-l1-1-0.dll __localtime64_s
api-ms-win-crt-time-l1-1-0.dll __mkgmtime32
api-ms-win-crt-time-l1-1-0.dll __mkgmtime64
api-ms-win-crt-time-l1-1-0.dll __mktime32
api-ms-win-crt-time-l1-1-0.dll __mktime64
api-ms-win-crt-time-l1-1-0.dll __setsystime
api-ms-win-crt-time-l1-1-0.dll __strdate
api-ms-win-crt-time-l1-1-0.dll __strdate_s
api-ms-win-crt-time-l1-1-0.dll __strftime_l
api-ms-win-crt-time-l1-1-0.dll __strtime
api-ms-win-crt-time-l1-1-0.dll __strtime_s
api-ms-win-crt-time-l1-1-0.dll __time32
api-ms-win-crt-time-l1-1-0.dll __time64
api-ms-win-crt-time-l1-1-0.dll __timespec32_get
api-ms-win-crt-time-l1-1-0.dll __timespec64_get
api-ms-win-crt-time-l1-1-0.dll __tzset
api-ms-win-crt-time-l1-1-0.dll __utime32
api-ms-win-crt-time-l1-1-0.dll __utime64
api-ms-win-crt-time-l1-1-0.dll __wasctime
api-ms-win-crt-time-l1-1-0.dll __wasctime_s
api-ms-win-crt-time-l1-1-0.dll __wcsftime_l
api-ms-win-crt-time-l1-1-0.dll __wctime32
api-ms-win-crt-time-l1-1-0.dll __wctime32_s
api-ms-win-crt-time-l1-1-0.dll __wctime64
api-ms-win-crt-time-l1-1-0.dll __wctime64_s
api-ms-win-crt-time-l1-1-0.dll __wstrdate
api-ms-win-crt-time-l1-1-0.dll __wstrdate_s
api-ms-win-crt-time-l1-1-0.dll __wstrtime
api-ms-win-crt-time-l1-1-0.dll __wstrtime_s
api-ms-win-crt-time-l1-1-0.dll __wutime32
api-ms-win-crt-time-l1-1-0.dll __wutime64
api-ms-win-crt-time-l1-1-0.dll _asctime
api-ms-win-crt-time-l1-1-0.dll _asctime_s
api-ms-win-crt-time-l1-1-0.dll _clock
api-ms-win-crt-time-l1-1-0.dll _strftime
api-ms-win-crt-time-l1-1-0.dll _wcsftime
api-ms-win-crt-utility-l1-1-0.dll __abs64
api-ms-win-crt-utility-l1-1-0.dll __byteswap_uint64
api-ms-win-crt-utility-l1-1-0.dll __byteswap_ulong
api-ms-win-crt-utility-l1-1-0.dll __byteswap_ushort
api-ms-win-crt-utility-l1-1-0.dll __lfind
api-ms-win-crt-utility-l1-1-0.dll __lfind_s
api-ms-win-crt-utility-l1-1-0.dll __lrotl
api-ms-win-crt-utility-l1-1-0.dll __lrotr
api-ms-win-crt-utility-l1-1-0.dll __lsearch
api-ms-win-crt-utility-l1-1-0.dll __lsearch_s
api-ms-win-crt-utility-l1-1-0.dll __rotl
api-ms-win-crt-utility-l1-1-0.dll __rotl64
api-ms-win-crt-utility-l1-1-0.dll __rotr
api-ms-win-crt-utility-l1-1-0.dll __rotr64
api-ms-win-crt-utility-l1-1-0.dll __swab
api-ms-win-crt-utility-l1-1-0.dll _abs
api-ms-win-crt-utility-l1-1-0.dll _bsearch
api-ms-win-crt-utility-l1-1-0.dll _bsearch_s
api-ms-win-crt-utility-l1-1-0.dll _div
api-ms-win-crt-utility-l1-1-0.dll _imaxabs
api-ms-win-crt-utility-l1-1-0.dll _imaxdiv
api-ms-win-crt-utility-l1-1-0.dll _labs
api-ms-win-crt-utility-l1-1-0.dll _ldiv
api-ms-win-crt-utility-l1-1-0.dll _llabs
api-ms-win-crt-utility-l1-1-0.dll _lldiv
api-ms-win-crt-utility-l1-1-0.dll _qsort
api-ms-win-crt-utility-l1-1-0.dll _qsort_s
api-ms-win-crt-utility-l1-1-0.dll _rand
api-ms-win-crt-utility-l1-1-0.dll _rand_s
api-ms-win-crt-utility-l1-1-0.dll _srand
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment