From fbf7990b9ed214f0e565f5ee7a827b377e8ce6c2 Mon Sep 17 00:00:00 2001 From: Andrew Opalach Date: Sat, 18 Apr 2026 20:28:45 -0400 Subject: [PATCH 1/3] Use ucrtbase.dll instead of msvcrt.dll for Proton --- generate_export_forwarding.py | 56 + mhw-cs-plugin-loader/Preloader.cpp | 4 +- mhw-cs-plugin-loader/dllmain.cpp | 3825 ++++++++++++++++++---------- 3 files changed, 2547 insertions(+), 1338 deletions(-) create mode 100644 generate_export_forwarding.py diff --git a/generate_export_forwarding.py b/generate_export_forwarding.py new file mode 100644 index 0000000..a8fc2a6 --- /dev/null +++ b/generate_export_forwarding.py @@ -0,0 +1,56 @@ +import sys +import os +import shutil +from pathlib import Path +import subprocess +import hashlib + +# Use a Developer Command Prompt/Powershell for VS 20XX to get dumpbin.exe in your PATH. + +if len(sys.argv) < 2: + print(f'Usage: {sys.argv[0]} [path_to_dll] (optional_path_to_dumpbin.exe)') + exit(1) + +if len(sys.argv) == 2: + dumpbin = shutil.which('dumpbin.exe') +else: + dumpbin = sys.argv[2] +if not dumpbin or not os.path.isfile(dumpbin): + print(f'Error: dumpbin.exe not found' + (' in PATH' if dumpbin is None else f' at \'{dumpbin}\'')) + exit(1) + +dll = Path(sys.argv[1]) +if not dll.exists(): + print(f'Error: dll not found at \'{dll}\'') + exit(1) +dllbase = dll.parts[-1] + +if os.name == 'nt': # Windows. + version_cmd = ('wmic', 'datafile', 'where', 'name = "{:s}"'.format(str(dll.absolute()).replace('\\', '\\\\')), 'get', 'Version', '/value') + output = subprocess.run(version_cmd, stdout=subprocess.PIPE, shell=True) + dll_version = output.stdout.decode('utf-8').strip().replace('=', ' ') + output = subprocess.run([dumpbin, '/EXPORTS', '/NOLOGO', dll], stdout=subprocess.PIPE) +else: # Try to use Wine. + dll_version = 'unknown' + os.environ['WINEDEBUG'] = '-all' + output = subprocess.run(['wine', dumpbin, '/EXPORTS', '/NOLOGO', dll], stdout=subprocess.PIPE) + +m = hashlib.sha256() +with open(dll, 'rb') as f: + m.update(f.read()) + +print(f'// Exports for {dllbase} ({dll_version}, sha256-{m.hexdigest()})') +print(f'#pragma region {dllbase} export forwarding') +lines = output.stdout.decode('utf-8').splitlines() +while not lines[0].startswith(' ordinal hint'): + lines.pop(0) +for l in lines[2:]: + if len(l) == 0: + break + last_space = l.rfind(' ') + if last_space >= 0: + l = l[last_space + 1:] + if l == '[NONAME]': + break + print(f'#pragma comment(linker, "/export:{l}=\\\"C:\\\\Windows\\\\System32\\\\{dll.stem}.{l}\\\"")') +print('#pragma endregion') diff --git a/mhw-cs-plugin-loader/Preloader.cpp b/mhw-cs-plugin-loader/Preloader.cpp index b94f7f3..c53e474 100644 --- a/mhw-cs-plugin-loader/Preloader.cpp +++ b/mhw-cs-plugin-loader/Preloader.cpp @@ -212,7 +212,7 @@ void initialize_preloader() { } // Reset the processes' security cookie to the default value to make the - // MSVC startup code to attempt to initalize it to a new value, which will + // MSVC startup code to attempt to initalize it to a new value, which will // cause our hooked GetSystemTimeAsFileTime to be called pre-CRT init. *security_cookie = MSVC_DEFAULT_SECURITY_COOKIE_VALUE; @@ -220,4 +220,4 @@ void initialize_preloader() { reinterpret_cast(GetSystemTimeAsFileTime), reinterpret_cast(hooked_get_system_time_as_file_time) ); -} \ No newline at end of file +} diff --git a/mhw-cs-plugin-loader/dllmain.cpp b/mhw-cs-plugin-loader/dllmain.cpp index 52df08b..55aabd9 100644 --- a/mhw-cs-plugin-loader/dllmain.cpp +++ b/mhw-cs-plugin-loader/dllmain.cpp @@ -8,7 +8,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { if (fdwReason == DLL_PROCESS_ATTACH) { - // Only load the the mod loader DLL if winmm.dll has been loaded into the correct process. + // Only load the the mod loader DLL if winmm.dll/ucrtbase.dll has been loaded into the correct process. if (wil::GetModuleFileNameW().contains(L"MonsterHunterWorld.exe")) { auto& loader_config = preloader::LoaderConfig::get(); if (loader_config.get_enable_plugin_loader()) @@ -21,8 +21,8 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { return TRUE; } -#pragma region winmm export forwarding - +// Exports for winmm.dll (Version 10.0.19041.3636, sha256-ead9055dc522bcab041c8eb7b875adb681a2f1fa851d4075789d78d0242711a0) +#pragma region winmm.dll export forwarding #pragma comment(linker, "/export:CloseDriver=\"C:\\Windows\\System32\\winmm.CloseDriver\"") #pragma comment(linker, "/export:DefDriverProc=\"C:\\Windows\\System32\\winmm.DefDriverProc\"") #pragma comment(linker, "/export:DriverCallback=\"C:\\Windows\\System32\\winmm.DriverCallback\"") @@ -203,1339 +203,2492 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { #pragma comment(linker, "/export:waveOutSetVolume=\"C:\\Windows\\System32\\winmm.waveOutSetVolume\"") #pragma comment(linker, "/export:waveOutUnprepareHeader=\"C:\\Windows\\System32\\winmm.waveOutUnprepareHeader\"") #pragma comment(linker, "/export:waveOutWrite=\"C:\\Windows\\System32\\winmm.waveOutWrite\"") - #pragma endregion - -#pragma region msvcrt export forwarding -#pragma comment(linker, "/export:??0__non_rtti_object@@QEAA@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??0__non_rtti_object@@QEAA@AEBV0@@Z\"") -#pragma comment(linker, "/export:??0__non_rtti_object@@QEAA@PEBD@Z=\"C:\\Windows\\System32\\msvcrt.??0__non_rtti_object@@QEAA@PEBD@Z\"") -#pragma comment(linker, "/export:??0bad_cast@@AAE@PBQBD@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_cast@@AAE@PBQBD@Z\"") -#pragma comment(linker, "/export:??0bad_cast@@AEAA@PEBQEBD@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_cast@@AEAA@PEBQEBD@Z\"") -#pragma comment(linker, "/export:??0bad_cast@@QAE@ABQBD@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_cast@@QAE@ABQBD@Z\"") -#pragma comment(linker, "/export:??0bad_cast@@QEAA@AEBQEBD@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_cast@@QEAA@AEBQEBD@Z\"") -#pragma comment(linker, "/export:??0bad_cast@@QEAA@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_cast@@QEAA@AEBV0@@Z\"") -#pragma comment(linker, "/export:??0bad_cast@@QEAA@PEBD@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_cast@@QEAA@PEBD@Z\"") -#pragma comment(linker, "/export:??0bad_typeid@@QEAA@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_typeid@@QEAA@AEBV0@@Z\"") -#pragma comment(linker, "/export:??0bad_typeid@@QEAA@PEBD@Z=\"C:\\Windows\\System32\\msvcrt.??0bad_typeid@@QEAA@PEBD@Z\"") -#pragma comment(linker, "/export:??0exception@@QEAA@AEBQEBD@Z=\"C:\\Windows\\System32\\msvcrt.??0exception@@QEAA@AEBQEBD@Z\"") -#pragma comment(linker, "/export:??0exception@@QEAA@AEBQEBDH@Z=\"C:\\Windows\\System32\\msvcrt.??0exception@@QEAA@AEBQEBDH@Z\"") -#pragma comment(linker, "/export:??0exception@@QEAA@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??0exception@@QEAA@AEBV0@@Z\"") -#pragma comment(linker, "/export:??0exception@@QEAA@XZ=\"C:\\Windows\\System32\\msvcrt.??0exception@@QEAA@XZ\"") -#pragma comment(linker, "/export:??1__non_rtti_object@@UEAA@XZ=\"C:\\Windows\\System32\\msvcrt.??1__non_rtti_object@@UEAA@XZ\"") -#pragma comment(linker, "/export:??1bad_cast@@UEAA@XZ=\"C:\\Windows\\System32\\msvcrt.??1bad_cast@@UEAA@XZ\"") -#pragma comment(linker, "/export:??1bad_typeid@@UEAA@XZ=\"C:\\Windows\\System32\\msvcrt.??1bad_typeid@@UEAA@XZ\"") -#pragma comment(linker, "/export:??1exception@@UEAA@XZ=\"C:\\Windows\\System32\\msvcrt.??1exception@@UEAA@XZ\"") -#pragma comment(linker, "/export:??1type_info@@UEAA@XZ=\"C:\\Windows\\System32\\msvcrt.??1type_info@@UEAA@XZ\"") -#pragma comment(linker, "/export:??2@YAPEAX_K@Z=\"C:\\Windows\\System32\\msvcrt.??2@YAPEAX_K@Z\"") -#pragma comment(linker, "/export:??2@YAPEAX_KHPEBDH@Z=\"C:\\Windows\\System32\\msvcrt.??2@YAPEAX_KHPEBDH@Z\"") -#pragma comment(linker, "/export:??3@YAXPEAX@Z=\"C:\\Windows\\System32\\msvcrt.??3@YAXPEAX@Z\"") -#pragma comment(linker, "/export:??4__non_rtti_object@@QEAAAEAV0@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??4__non_rtti_object@@QEAAAEAV0@AEBV0@@Z\"") -#pragma comment(linker, "/export:??4bad_cast@@QEAAAEAV0@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??4bad_cast@@QEAAAEAV0@AEBV0@@Z\"") -#pragma comment(linker, "/export:??4bad_typeid@@QEAAAEAV0@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??4bad_typeid@@QEAAAEAV0@AEBV0@@Z\"") -#pragma comment(linker, "/export:??4exception@@QEAAAEAV0@AEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??4exception@@QEAAAEAV0@AEBV0@@Z\"") -#pragma comment(linker, "/export:??8type_info@@QEBAHAEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??8type_info@@QEBAHAEBV0@@Z\"") -#pragma comment(linker, "/export:??9type_info@@QEBAHAEBV0@@Z=\"C:\\Windows\\System32\\msvcrt.??9type_info@@QEBAHAEBV0@@Z\"") -#pragma comment(linker, "/export:??_7__non_rtti_object@@6B@=\"C:\\Windows\\System32\\msvcrt.??_7__non_rtti_object@@6B@\"") -#pragma comment(linker, "/export:??_7bad_cast@@6B@=\"C:\\Windows\\System32\\msvcrt.??_7bad_cast@@6B@\"") -#pragma comment(linker, "/export:??_7bad_typeid@@6B@=\"C:\\Windows\\System32\\msvcrt.??_7bad_typeid@@6B@\"") -#pragma comment(linker, "/export:??_7exception@@6B@=\"C:\\Windows\\System32\\msvcrt.??_7exception@@6B@\"") -#pragma comment(linker, "/export:??_Fbad_cast@@QEAAXXZ=\"C:\\Windows\\System32\\msvcrt.??_Fbad_cast@@QEAAXXZ\"") -#pragma comment(linker, "/export:??_Fbad_typeid@@QEAAXXZ=\"C:\\Windows\\System32\\msvcrt.??_Fbad_typeid@@QEAAXXZ\"") -#pragma comment(linker, "/export:??_U@YAPEAX_K@Z=\"C:\\Windows\\System32\\msvcrt.??_U@YAPEAX_K@Z\"") -#pragma comment(linker, "/export:??_U@YAPEAX_KHPEBDH@Z=\"C:\\Windows\\System32\\msvcrt.??_U@YAPEAX_KHPEBDH@Z\"") -#pragma comment(linker, "/export:??_V@YAXPEAX@Z=\"C:\\Windows\\System32\\msvcrt.??_V@YAXPEAX@Z\"") -#pragma comment(linker, "/export:?_Doraise@bad_cast@@MEBAXXZ=\"C:\\Windows\\System32\\msvcrt.?_Doraise@bad_cast@@MEBAXXZ\"") -#pragma comment(linker, "/export:?_Doraise@bad_typeid@@MEBAXXZ=\"C:\\Windows\\System32\\msvcrt.?_Doraise@bad_typeid@@MEBAXXZ\"") -#pragma comment(linker, "/export:__ExceptionPtrAssign=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrAssign\"") -#pragma comment(linker, "/export:__ExceptionPtrCompare=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrCompare\"") -#pragma comment(linker, "/export:__ExceptionPtrCopy=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrCopy\"") -#pragma comment(linker, "/export:__ExceptionPtrCopyException=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrCopyException\"") -#pragma comment(linker, "/export:__ExceptionPtrCreate=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrCreate\"") -#pragma comment(linker, "/export:__ExceptionPtrCurrentException=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrCurrentException\"") -#pragma comment(linker, "/export:__ExceptionPtrDestroy=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrDestroy\"") -#pragma comment(linker, "/export:__ExceptionPtrRethrow=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrRethrow\"") -#pragma comment(linker, "/export:__ExceptionPtrSwap=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrSwap\"") -#pragma comment(linker, "/export:__ExceptionPtrToBool=\"C:\\Windows\\System32\\msvcrt.__ExceptionPtrToBool\"") -#pragma comment(linker, "/export:__uncaught_exception=\"C:\\Windows\\System32\\msvcrt.__uncaught_exception\"") -#pragma comment(linker, "/export:?_inconsistency@@YAXXZ=\"C:\\Windows\\System32\\msvcrt.?_inconsistency@@YAXXZ\"") -#pragma comment(linker, "/export:?_is_exception_typeof@@YAHAEBVtype_info@@PEAU_EXCEPTION_POINTERS@@@Z=\"C:\\Windows\\System32\\msvcrt.?_is_exception_typeof@@YAHAEBVtype_info@@PEAU_EXCEPTION_POINTERS@@@Z\"") -#pragma comment(linker, "/export:?_query_new_handler@@YAP6AH_K@ZXZ=\"C:\\Windows\\System32\\msvcrt.?_query_new_handler@@YAP6AH_K@ZXZ\"") -#pragma comment(linker, "/export:?_query_new_mode@@YAHXZ=\"C:\\Windows\\System32\\msvcrt.?_query_new_mode@@YAHXZ\"") -#pragma comment(linker, "/export:?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z=\"C:\\Windows\\System32\\msvcrt.?_set_new_handler@@YAP6AH_K@ZP6AH0@Z@Z\"") -#pragma comment(linker, "/export:?_set_new_mode@@YAHH@Z=\"C:\\Windows\\System32\\msvcrt.?_set_new_mode@@YAHH@Z\"") -#pragma comment(linker, "/export:?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z=\"C:\\Windows\\System32\\msvcrt.?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z\"") -#pragma comment(linker, "/export:?before@type_info@@QEBAHAEBV1@@Z=\"C:\\Windows\\System32\\msvcrt.?before@type_info@@QEBAHAEBV1@@Z\"") -#pragma comment(linker, "/export:?name@type_info@@QEBAPEBDPEAU__type_info_node@@@Z=\"C:\\Windows\\System32\\msvcrt.?name@type_info@@QEBAPEBDPEAU__type_info_node@@@Z\"") -#pragma comment(linker, "/export:?name@type_info@@QEBAPEBDXZ=\"C:\\Windows\\System32\\msvcrt.?name@type_info@@QEBAPEBDXZ\"") -#pragma comment(linker, "/export:?raw_name@type_info@@QEBAPEBDXZ=\"C:\\Windows\\System32\\msvcrt.?raw_name@type_info@@QEBAPEBDXZ\"") -#pragma comment(linker, "/export:?set_new_handler@@YAP6AXXZP6AXXZ@Z=\"C:\\Windows\\System32\\msvcrt.?set_new_handler@@YAP6AXXZP6AXXZ@Z\"") -#pragma comment(linker, "/export:?set_terminate@@YAP6AXXZP6AXXZ@Z=\"C:\\Windows\\System32\\msvcrt.?set_terminate@@YAP6AXXZP6AXXZ@Z\"") -#pragma comment(linker, "/export:?set_unexpected@@YAP6AXXZP6AXXZ@Z=\"C:\\Windows\\System32\\msvcrt.?set_unexpected@@YAP6AXXZP6AXXZ@Z\"") -#pragma comment(linker, "/export:?terminate@@YAXXZ=\"C:\\Windows\\System32\\msvcrt.?terminate@@YAXXZ\"") -#pragma comment(linker, "/export:?unexpected@@YAXXZ=\"C:\\Windows\\System32\\msvcrt.?unexpected@@YAXXZ\"") -#pragma comment(linker, "/export:?what@exception@@UEBAPEBDXZ=\"C:\\Windows\\System32\\msvcrt.?what@exception@@UEBAPEBDXZ\"") -#pragma comment(linker, "/export:_CrtCheckMemory=\"C:\\Windows\\System32\\msvcrt._CrtCheckMemory\"") -#pragma comment(linker, "/export:_CrtDbgBreak=\"C:\\Windows\\System32\\msvcrt._CrtDbgBreak\"") -#pragma comment(linker, "/export:_CrtDbgReport=\"C:\\Windows\\System32\\msvcrt._CrtDbgReport\"") -#pragma comment(linker, "/export:_CrtDbgReportV=\"C:\\Windows\\System32\\msvcrt._CrtDbgReportV\"") -#pragma comment(linker, "/export:_CrtDbgReportW=\"C:\\Windows\\System32\\msvcrt._CrtDbgReportW\"") -#pragma comment(linker, "/export:_CrtDbgReportWV=\"C:\\Windows\\System32\\msvcrt._CrtDbgReportWV\"") -#pragma comment(linker, "/export:_CrtDoForAllClientObjects=\"C:\\Windows\\System32\\msvcrt._CrtDoForAllClientObjects\"") -#pragma comment(linker, "/export:_CrtDumpMemoryLeaks=\"C:\\Windows\\System32\\msvcrt._CrtDumpMemoryLeaks\"") -#pragma comment(linker, "/export:_CrtIsMemoryBlock=\"C:\\Windows\\System32\\msvcrt._CrtIsMemoryBlock\"") -#pragma comment(linker, "/export:_CrtIsValidHeapPointer=\"C:\\Windows\\System32\\msvcrt._CrtIsValidHeapPointer\"") -#pragma comment(linker, "/export:_CrtIsValidPointer=\"C:\\Windows\\System32\\msvcrt._CrtIsValidPointer\"") -#pragma comment(linker, "/export:_CrtMemCheckpoint=\"C:\\Windows\\System32\\msvcrt._CrtMemCheckpoint\"") -#pragma comment(linker, "/export:_CrtMemDifference=\"C:\\Windows\\System32\\msvcrt._CrtMemDifference\"") -#pragma comment(linker, "/export:_CrtMemDumpAllObjectsSince=\"C:\\Windows\\System32\\msvcrt._CrtMemDumpAllObjectsSince\"") -#pragma comment(linker, "/export:_CrtMemDumpStatistics=\"C:\\Windows\\System32\\msvcrt._CrtMemDumpStatistics\"") -#pragma comment(linker, "/export:_CrtReportBlockType=\"C:\\Windows\\System32\\msvcrt._CrtReportBlockType\"") -#pragma comment(linker, "/export:_CrtSetAllocHook=\"C:\\Windows\\System32\\msvcrt._CrtSetAllocHook\"") -#pragma comment(linker, "/export:_CrtSetBreakAlloc=\"C:\\Windows\\System32\\msvcrt._CrtSetBreakAlloc\"") -#pragma comment(linker, "/export:_CrtSetDbgBlockType=\"C:\\Windows\\System32\\msvcrt._CrtSetDbgBlockType\"") -#pragma comment(linker, "/export:_CrtSetDbgFlag=\"C:\\Windows\\System32\\msvcrt._CrtSetDbgFlag\"") -#pragma comment(linker, "/export:_CrtSetDumpClient=\"C:\\Windows\\System32\\msvcrt._CrtSetDumpClient\"") -#pragma comment(linker, "/export:_CrtSetReportFile=\"C:\\Windows\\System32\\msvcrt._CrtSetReportFile\"") -#pragma comment(linker, "/export:_CrtSetReportHook=\"C:\\Windows\\System32\\msvcrt._CrtSetReportHook\"") -#pragma comment(linker, "/export:_CrtSetReportHook2=\"C:\\Windows\\System32\\msvcrt._CrtSetReportHook2\"") -#pragma comment(linker, "/export:_CrtSetReportMode=\"C:\\Windows\\System32\\msvcrt._CrtSetReportMode\"") -#pragma comment(linker, "/export:_CxxThrowException=\"C:\\Windows\\System32\\msvcrt._CxxThrowException\"") -#pragma comment(linker, "/export:_Getdays=\"C:\\Windows\\System32\\msvcrt._Getdays\"") -#pragma comment(linker, "/export:_Getmonths=\"C:\\Windows\\System32\\msvcrt._Getmonths\"") -#pragma comment(linker, "/export:_Gettnames=\"C:\\Windows\\System32\\msvcrt._Gettnames\"") -#pragma comment(linker, "/export:_HUGE=\"C:\\Windows\\System32\\msvcrt._HUGE\"") -#pragma comment(linker, "/export:_Strftime=\"C:\\Windows\\System32\\msvcrt._Strftime\"") -#pragma comment(linker, "/export:_W_Getdays=\"C:\\Windows\\System32\\msvcrt._W_Getdays\"") -#pragma comment(linker, "/export:_W_Getmonths=\"C:\\Windows\\System32\\msvcrt._W_Getmonths\"") -#pragma comment(linker, "/export:_W_Gettnames=\"C:\\Windows\\System32\\msvcrt._W_Gettnames\"") -#pragma comment(linker, "/export:_Wcsftime=\"C:\\Windows\\System32\\msvcrt._Wcsftime\"") -#pragma comment(linker, "/export:_XcptFilter=\"C:\\Windows\\System32\\msvcrt._XcptFilter\"") -#pragma comment(linker, "/export:__AdjustPointer=\"C:\\Windows\\System32\\msvcrt.__AdjustPointer\"") -#pragma comment(linker, "/export:__BuildCatchObject=\"C:\\Windows\\System32\\msvcrt.__BuildCatchObject\"") -#pragma comment(linker, "/export:__BuildCatchObjectHelper=\"C:\\Windows\\System32\\msvcrt.__BuildCatchObjectHelper\"") -#pragma comment(linker, "/export:__C_specific_handler=\"C:\\Windows\\System32\\msvcrt.__C_specific_handler\"") -#pragma comment(linker, "/export:__CppXcptFilter=\"C:\\Windows\\System32\\msvcrt.__CppXcptFilter\"") -#pragma comment(linker, "/export:__CxxFrameHandler=\"C:\\Windows\\System32\\msvcrt.__CxxFrameHandler\"") -#pragma comment(linker, "/export:__CxxFrameHandler2=\"C:\\Windows\\System32\\msvcrt.__CxxFrameHandler2\"") -#pragma comment(linker, "/export:__CxxFrameHandler3=\"C:\\Windows\\System32\\msvcrt.__CxxFrameHandler3\"") -#pragma comment(linker, "/export:__CxxFrameHandler4=\"C:\\Windows\\System32\\msvcrt.__CxxFrameHandler4\"") -#pragma comment(linker, "/export:__DestructExceptionObject=\"C:\\Windows\\System32\\msvcrt.__DestructExceptionObject\"") -#pragma comment(linker, "/export:__RTCastToVoid=\"C:\\Windows\\System32\\msvcrt.__RTCastToVoid\"") -#pragma comment(linker, "/export:__RTDynamicCast=\"C:\\Windows\\System32\\msvcrt.__RTDynamicCast\"") -#pragma comment(linker, "/export:__RTtypeid=\"C:\\Windows\\System32\\msvcrt.__RTtypeid\"") -#pragma comment(linker, "/export:__STRINGTOLD=\"C:\\Windows\\System32\\msvcrt.__STRINGTOLD\"") -#pragma comment(linker, "/export:__TypeMatch=\"C:\\Windows\\System32\\msvcrt.__TypeMatch\"") -#pragma comment(linker, "/export:___lc_codepage_func=\"C:\\Windows\\System32\\msvcrt.___lc_codepage_func\"") -#pragma comment(linker, "/export:___lc_collate_cp_func=\"C:\\Windows\\System32\\msvcrt.___lc_collate_cp_func\"") -#pragma comment(linker, "/export:___lc_handle_func=\"C:\\Windows\\System32\\msvcrt.___lc_handle_func\"") -#pragma comment(linker, "/export:___mb_cur_max_func=\"C:\\Windows\\System32\\msvcrt.___mb_cur_max_func\"") -#pragma comment(linker, "/export:___setlc_active_func=\"C:\\Windows\\System32\\msvcrt.___setlc_active_func\"") -#pragma comment(linker, "/export:___unguarded_readlc_active_add_func=\"C:\\Windows\\System32\\msvcrt.___unguarded_readlc_active_add_func\"") -#pragma comment(linker, "/export:__argc=\"C:\\Windows\\System32\\msvcrt.__argc\"") -#pragma comment(linker, "/export:__argv=\"C:\\Windows\\System32\\msvcrt.__argv\"") -#pragma comment(linker, "/export:__badioinfo=\"C:\\Windows\\System32\\msvcrt.__badioinfo\"") -#pragma comment(linker, "/export:__crtCompareStringA=\"C:\\Windows\\System32\\msvcrt.__crtCompareStringA\"") -#pragma comment(linker, "/export:__crtCompareStringW=\"C:\\Windows\\System32\\msvcrt.__crtCompareStringW\"") -#pragma comment(linker, "/export:__crtGetLocaleInfoW=\"C:\\Windows\\System32\\msvcrt.__crtGetLocaleInfoW\"") -#pragma comment(linker, "/export:__crtGetStringTypeW=\"C:\\Windows\\System32\\msvcrt.__crtGetStringTypeW\"") -#pragma comment(linker, "/export:__crtLCMapStringA=\"C:\\Windows\\System32\\msvcrt.__crtLCMapStringA\"") -#pragma comment(linker, "/export:__crtLCMapStringW=\"C:\\Windows\\System32\\msvcrt.__crtLCMapStringW\"") -#pragma comment(linker, "/export:__daylight=\"C:\\Windows\\System32\\msvcrt.__daylight\"") -#pragma comment(linker, "/export:__dllonexit=\"C:\\Windows\\System32\\msvcrt.__dllonexit\"") -#pragma comment(linker, "/export:__doserrno=\"C:\\Windows\\System32\\msvcrt.__doserrno\"") -#pragma comment(linker, "/export:__dstbias=\"C:\\Windows\\System32\\msvcrt.__dstbias\"") -#pragma comment(linker, "/export:__fpecode=\"C:\\Windows\\System32\\msvcrt.__fpecode\"") -#pragma comment(linker, "/export:__getmainargs=\"C:\\Windows\\System32\\msvcrt.__getmainargs\"") -#pragma comment(linker, "/export:__initenv=\"C:\\Windows\\System32\\msvcrt.__initenv\"") -#pragma comment(linker, "/export:__iob_func=\"C:\\Windows\\System32\\msvcrt.__iob_func\"") -#pragma comment(linker, "/export:__isascii=\"C:\\Windows\\System32\\msvcrt.__isascii\"") -#pragma comment(linker, "/export:__iscsym=\"C:\\Windows\\System32\\msvcrt.__iscsym\"") -#pragma comment(linker, "/export:__iscsymf=\"C:\\Windows\\System32\\msvcrt.__iscsymf\"") -#pragma comment(linker, "/export:__lc_codepage=\"C:\\Windows\\System32\\msvcrt.__lc_codepage\"") -#pragma comment(linker, "/export:__lc_collate_cp=\"C:\\Windows\\System32\\msvcrt.__lc_collate_cp\"") -#pragma comment(linker, "/export:__lc_handle=\"C:\\Windows\\System32\\msvcrt.__lc_handle\"") -#pragma comment(linker, "/export:__lconv_init=\"C:\\Windows\\System32\\msvcrt.__lconv_init\"") -#pragma comment(linker, "/export:__mb_cur_max=\"C:\\Windows\\System32\\msvcrt.__mb_cur_max\"") -#pragma comment(linker, "/export:__pctype_func=\"C:\\Windows\\System32\\msvcrt.__pctype_func\"") -#pragma comment(linker, "/export:__pioinfo=\"C:\\Windows\\System32\\msvcrt.__pioinfo\"") -#pragma comment(linker, "/export:__pwctype_func=\"C:\\Windows\\System32\\msvcrt.__pwctype_func\"") -#pragma comment(linker, "/export:__pxcptinfoptrs=\"C:\\Windows\\System32\\msvcrt.__pxcptinfoptrs\"") -#pragma comment(linker, "/export:__set_app_type=\"C:\\Windows\\System32\\msvcrt.__set_app_type\"") -#pragma comment(linker, "/export:__setlc_active=\"C:\\Windows\\System32\\msvcrt.__setlc_active\"") -#pragma comment(linker, "/export:__setusermatherr=\"C:\\Windows\\System32\\msvcrt.__setusermatherr\"") -#pragma comment(linker, "/export:__strncnt=\"C:\\Windows\\System32\\msvcrt.__strncnt\"") -#pragma comment(linker, "/export:__threadhandle=\"C:\\Windows\\System32\\msvcrt.__threadhandle\"") -#pragma comment(linker, "/export:__threadid=\"C:\\Windows\\System32\\msvcrt.__threadid\"") -#pragma comment(linker, "/export:__toascii=\"C:\\Windows\\System32\\msvcrt.__toascii\"") -#pragma comment(linker, "/export:__unDName=\"C:\\Windows\\System32\\msvcrt.__unDName\"") -#pragma comment(linker, "/export:__unDNameEx=\"C:\\Windows\\System32\\msvcrt.__unDNameEx\"") -#pragma comment(linker, "/export:__unguarded_readlc_active=\"C:\\Windows\\System32\\msvcrt.__unguarded_readlc_active\"") -#pragma comment(linker, "/export:__wargv=\"C:\\Windows\\System32\\msvcrt.__wargv\"") -#pragma comment(linker, "/export:__wcserror=\"C:\\Windows\\System32\\msvcrt.__wcserror\"") -#pragma comment(linker, "/export:__wcserror_s=\"C:\\Windows\\System32\\msvcrt.__wcserror_s\"") -#pragma comment(linker, "/export:__wcsncnt=\"C:\\Windows\\System32\\msvcrt.__wcsncnt\"") -#pragma comment(linker, "/export:__wgetmainargs=\"C:\\Windows\\System32\\msvcrt.__wgetmainargs\"") -#pragma comment(linker, "/export:__winitenv=\"C:\\Windows\\System32\\msvcrt.__winitenv\"") -#pragma comment(linker, "/export:_abs64=\"C:\\Windows\\System32\\msvcrt._abs64\"") -#pragma comment(linker, "/export:_access=\"C:\\Windows\\System32\\msvcrt._access\"") -#pragma comment(linker, "/export:_access_s=\"C:\\Windows\\System32\\msvcrt._access_s\"") -#pragma comment(linker, "/export:_acmdln=\"C:\\Windows\\System32\\msvcrt._acmdln\"") -#pragma comment(linker, "/export:_aexit_rtn=\"C:\\Windows\\System32\\msvcrt._aexit_rtn\"") -#pragma comment(linker, "/export:_aligned_free=\"C:\\Windows\\System32\\msvcrt._aligned_free\"") -#pragma comment(linker, "/export:_aligned_free_dbg=\"C:\\Windows\\System32\\msvcrt._aligned_free_dbg\"") -#pragma comment(linker, "/export:_aligned_malloc=\"C:\\Windows\\System32\\msvcrt._aligned_malloc\"") -#pragma comment(linker, "/export:_aligned_malloc_dbg=\"C:\\Windows\\System32\\msvcrt._aligned_malloc_dbg\"") -#pragma comment(linker, "/export:_aligned_offset_malloc=\"C:\\Windows\\System32\\msvcrt._aligned_offset_malloc\"") -#pragma comment(linker, "/export:_aligned_offset_malloc_dbg=\"C:\\Windows\\System32\\msvcrt._aligned_offset_malloc_dbg\"") -#pragma comment(linker, "/export:_aligned_offset_realloc=\"C:\\Windows\\System32\\msvcrt._aligned_offset_realloc\"") -#pragma comment(linker, "/export:_aligned_offset_realloc_dbg=\"C:\\Windows\\System32\\msvcrt._aligned_offset_realloc_dbg\"") -#pragma comment(linker, "/export:_aligned_realloc=\"C:\\Windows\\System32\\msvcrt._aligned_realloc\"") -#pragma comment(linker, "/export:_aligned_realloc_dbg=\"C:\\Windows\\System32\\msvcrt._aligned_realloc_dbg\"") -#pragma comment(linker, "/export:_amsg_exit=\"C:\\Windows\\System32\\msvcrt._amsg_exit\"") -#pragma comment(linker, "/export:_assert=\"C:\\Windows\\System32\\msvcrt._assert\"") -#pragma comment(linker, "/export:_atodbl=\"C:\\Windows\\System32\\msvcrt._atodbl\"") -#pragma comment(linker, "/export:_atodbl_l=\"C:\\Windows\\System32\\msvcrt._atodbl_l\"") -#pragma comment(linker, "/export:_atof_l=\"C:\\Windows\\System32\\msvcrt._atof_l\"") -#pragma comment(linker, "/export:_atoflt_l=\"C:\\Windows\\System32\\msvcrt._atoflt_l\"") -#pragma comment(linker, "/export:_atoi64=\"C:\\Windows\\System32\\msvcrt._atoi64\"") -#pragma comment(linker, "/export:_atoi64_l=\"C:\\Windows\\System32\\msvcrt._atoi64_l\"") -#pragma comment(linker, "/export:_atoi_l=\"C:\\Windows\\System32\\msvcrt._atoi_l\"") -#pragma comment(linker, "/export:_atol_l=\"C:\\Windows\\System32\\msvcrt._atol_l\"") -#pragma comment(linker, "/export:_atoldbl=\"C:\\Windows\\System32\\msvcrt._atoldbl\"") -#pragma comment(linker, "/export:_atoldbl_l=\"C:\\Windows\\System32\\msvcrt._atoldbl_l\"") -#pragma comment(linker, "/export:_beep=\"C:\\Windows\\System32\\msvcrt._beep\"") -#pragma comment(linker, "/export:_beginthread=\"C:\\Windows\\System32\\msvcrt._beginthread\"") -#pragma comment(linker, "/export:_beginthreadex=\"C:\\Windows\\System32\\msvcrt._beginthreadex\"") -#pragma comment(linker, "/export:_c_exit=\"C:\\Windows\\System32\\msvcrt._c_exit\"") -#pragma comment(linker, "/export:_cabs=\"C:\\Windows\\System32\\msvcrt._cabs\"") -#pragma comment(linker, "/export:_callnewh=\"C:\\Windows\\System32\\msvcrt._callnewh\"") -#pragma comment(linker, "/export:_calloc_dbg=\"C:\\Windows\\System32\\msvcrt._calloc_dbg\"") -#pragma comment(linker, "/export:_cexit=\"C:\\Windows\\System32\\msvcrt._cexit\"") -#pragma comment(linker, "/export:_cgets=\"C:\\Windows\\System32\\msvcrt._cgets\"") -#pragma comment(linker, "/export:_cgets_s=\"C:\\Windows\\System32\\msvcrt._cgets_s\"") -#pragma comment(linker, "/export:_cgetws=\"C:\\Windows\\System32\\msvcrt._cgetws\"") -#pragma comment(linker, "/export:_cgetws_s=\"C:\\Windows\\System32\\msvcrt._cgetws_s\"") -#pragma comment(linker, "/export:_chdir=\"C:\\Windows\\System32\\msvcrt._chdir\"") -#pragma comment(linker, "/export:_chdrive=\"C:\\Windows\\System32\\msvcrt._chdrive\"") -#pragma comment(linker, "/export:_chgsign=\"C:\\Windows\\System32\\msvcrt._chgsign\"") -#pragma comment(linker, "/export:_chgsignf=\"C:\\Windows\\System32\\msvcrt._chgsignf\"") -#pragma comment(linker, "/export:_chmod=\"C:\\Windows\\System32\\msvcrt._chmod\"") -#pragma comment(linker, "/export:_chsize=\"C:\\Windows\\System32\\msvcrt._chsize\"") -#pragma comment(linker, "/export:_chsize_s=\"C:\\Windows\\System32\\msvcrt._chsize_s\"") -#pragma comment(linker, "/export:_chvalidator=\"C:\\Windows\\System32\\msvcrt._chvalidator\"") -#pragma comment(linker, "/export:_chvalidator_l=\"C:\\Windows\\System32\\msvcrt._chvalidator_l\"") -#pragma comment(linker, "/export:_clearfp=\"C:\\Windows\\System32\\msvcrt._clearfp\"") -#pragma comment(linker, "/export:_close=\"C:\\Windows\\System32\\msvcrt._close\"") -#pragma comment(linker, "/export:_commit=\"C:\\Windows\\System32\\msvcrt._commit\"") -#pragma comment(linker, "/export:_commode=\"C:\\Windows\\System32\\msvcrt._commode\"") -#pragma comment(linker, "/export:_control87=\"C:\\Windows\\System32\\msvcrt._control87\"") -#pragma comment(linker, "/export:_controlfp=\"C:\\Windows\\System32\\msvcrt._controlfp\"") -#pragma comment(linker, "/export:_controlfp_s=\"C:\\Windows\\System32\\msvcrt._controlfp_s\"") -#pragma comment(linker, "/export:_copysign=\"C:\\Windows\\System32\\msvcrt._copysign\"") -#pragma comment(linker, "/export:_copysignf=\"C:\\Windows\\System32\\msvcrt._copysignf\"") -#pragma comment(linker, "/export:_cprintf=\"C:\\Windows\\System32\\msvcrt._cprintf\"") -#pragma comment(linker, "/export:_cprintf_l=\"C:\\Windows\\System32\\msvcrt._cprintf_l\"") -#pragma comment(linker, "/export:_cprintf_p=\"C:\\Windows\\System32\\msvcrt._cprintf_p\"") -#pragma comment(linker, "/export:_cprintf_p_l=\"C:\\Windows\\System32\\msvcrt._cprintf_p_l\"") -#pragma comment(linker, "/export:_cprintf_s=\"C:\\Windows\\System32\\msvcrt._cprintf_s\"") -#pragma comment(linker, "/export:_cprintf_s_l=\"C:\\Windows\\System32\\msvcrt._cprintf_s_l\"") -#pragma comment(linker, "/export:_cputs=\"C:\\Windows\\System32\\msvcrt._cputs\"") -#pragma comment(linker, "/export:_cputws=\"C:\\Windows\\System32\\msvcrt._cputws\"") -#pragma comment(linker, "/export:_creat=\"C:\\Windows\\System32\\msvcrt._creat\"") -#pragma comment(linker, "/export:_create_locale=\"C:\\Windows\\System32\\msvcrt._create_locale\"") -#pragma comment(linker, "/export:_crtAssertBusy=\"C:\\Windows\\System32\\msvcrt._crtAssertBusy\"") -#pragma comment(linker, "/export:_crtBreakAlloc=\"C:\\Windows\\System32\\msvcrt._crtBreakAlloc\"") -#pragma comment(linker, "/export:_crtDbgFlag=\"C:\\Windows\\System32\\msvcrt._crtDbgFlag\"") -#pragma comment(linker, "/export:_cscanf=\"C:\\Windows\\System32\\msvcrt._cscanf\"") -#pragma comment(linker, "/export:_cscanf_l=\"C:\\Windows\\System32\\msvcrt._cscanf_l\"") -#pragma comment(linker, "/export:_cscanf_s=\"C:\\Windows\\System32\\msvcrt._cscanf_s\"") -#pragma comment(linker, "/export:_cscanf_s_l=\"C:\\Windows\\System32\\msvcrt._cscanf_s_l\"") -#pragma comment(linker, "/export:_ctime32=\"C:\\Windows\\System32\\msvcrt._ctime32\"") -#pragma comment(linker, "/export:_ctime32_s=\"C:\\Windows\\System32\\msvcrt._ctime32_s\"") -#pragma comment(linker, "/export:_ctime64=\"C:\\Windows\\System32\\msvcrt._ctime64\"") -#pragma comment(linker, "/export:_ctime64_s=\"C:\\Windows\\System32\\msvcrt._ctime64_s\"") -#pragma comment(linker, "/export:_ctype=\"C:\\Windows\\System32\\msvcrt._ctype\"") -#pragma comment(linker, "/export:_cwait=\"C:\\Windows\\System32\\msvcrt._cwait\"") -#pragma comment(linker, "/export:_cwprintf=\"C:\\Windows\\System32\\msvcrt._cwprintf\"") -#pragma comment(linker, "/export:_cwprintf_l=\"C:\\Windows\\System32\\msvcrt._cwprintf_l\"") -#pragma comment(linker, "/export:_cwprintf_p=\"C:\\Windows\\System32\\msvcrt._cwprintf_p\"") -#pragma comment(linker, "/export:_cwprintf_p_l=\"C:\\Windows\\System32\\msvcrt._cwprintf_p_l\"") -#pragma comment(linker, "/export:_cwprintf_s=\"C:\\Windows\\System32\\msvcrt._cwprintf_s\"") -#pragma comment(linker, "/export:_cwprintf_s_l=\"C:\\Windows\\System32\\msvcrt._cwprintf_s_l\"") -#pragma comment(linker, "/export:_cwscanf=\"C:\\Windows\\System32\\msvcrt._cwscanf\"") -#pragma comment(linker, "/export:_cwscanf_l=\"C:\\Windows\\System32\\msvcrt._cwscanf_l\"") -#pragma comment(linker, "/export:_cwscanf_s=\"C:\\Windows\\System32\\msvcrt._cwscanf_s\"") -#pragma comment(linker, "/export:_cwscanf_s_l=\"C:\\Windows\\System32\\msvcrt._cwscanf_s_l\"") -#pragma comment(linker, "/export:_daylight=\"C:\\Windows\\System32\\msvcrt._daylight\"") -#pragma comment(linker, "/export:_difftime32=\"C:\\Windows\\System32\\msvcrt._difftime32\"") -#pragma comment(linker, "/export:_difftime64=\"C:\\Windows\\System32\\msvcrt._difftime64\"") -#pragma comment(linker, "/export:_dstbias=\"C:\\Windows\\System32\\msvcrt._dstbias\"") -#pragma comment(linker, "/export:_dup=\"C:\\Windows\\System32\\msvcrt._dup\"") -#pragma comment(linker, "/export:_dup2=\"C:\\Windows\\System32\\msvcrt._dup2\"") -#pragma comment(linker, "/export:_ecvt=\"C:\\Windows\\System32\\msvcrt._ecvt\"") -#pragma comment(linker, "/export:_ecvt_s=\"C:\\Windows\\System32\\msvcrt._ecvt_s\"") -#pragma comment(linker, "/export:_endthread=\"C:\\Windows\\System32\\msvcrt._endthread\"") -#pragma comment(linker, "/export:_endthreadex=\"C:\\Windows\\System32\\msvcrt._endthreadex\"") -#pragma comment(linker, "/export:_environ=\"C:\\Windows\\System32\\msvcrt._environ\"") -#pragma comment(linker, "/export:_eof=\"C:\\Windows\\System32\\msvcrt._eof\"") -#pragma comment(linker, "/export:_errno=\"C:\\Windows\\System32\\msvcrt._errno\"") -#pragma comment(linker, "/export:_execl=\"C:\\Windows\\System32\\msvcrt._execl\"") -#pragma comment(linker, "/export:_execle=\"C:\\Windows\\System32\\msvcrt._execle\"") -#pragma comment(linker, "/export:_execlp=\"C:\\Windows\\System32\\msvcrt._execlp\"") -#pragma comment(linker, "/export:_execlpe=\"C:\\Windows\\System32\\msvcrt._execlpe\"") -#pragma comment(linker, "/export:_execv=\"C:\\Windows\\System32\\msvcrt._execv\"") -#pragma comment(linker, "/export:_execve=\"C:\\Windows\\System32\\msvcrt._execve\"") -#pragma comment(linker, "/export:_execvp=\"C:\\Windows\\System32\\msvcrt._execvp\"") -#pragma comment(linker, "/export:_execvpe=\"C:\\Windows\\System32\\msvcrt._execvpe\"") -#pragma comment(linker, "/export:_exit=\"C:\\Windows\\System32\\msvcrt._exit\"") -#pragma comment(linker, "/export:_expand=\"C:\\Windows\\System32\\msvcrt._expand\"") -#pragma comment(linker, "/export:_expand_dbg=\"C:\\Windows\\System32\\msvcrt._expand_dbg\"") -#pragma comment(linker, "/export:_fcloseall=\"C:\\Windows\\System32\\msvcrt._fcloseall\"") -#pragma comment(linker, "/export:_fcvt=\"C:\\Windows\\System32\\msvcrt._fcvt\"") -#pragma comment(linker, "/export:_fcvt_s=\"C:\\Windows\\System32\\msvcrt._fcvt_s\"") -#pragma comment(linker, "/export:_fdopen=\"C:\\Windows\\System32\\msvcrt._fdopen\"") -#pragma comment(linker, "/export:_fgetchar=\"C:\\Windows\\System32\\msvcrt._fgetchar\"") -#pragma comment(linker, "/export:_fgetwchar=\"C:\\Windows\\System32\\msvcrt._fgetwchar\"") -#pragma comment(linker, "/export:_filbuf=\"C:\\Windows\\System32\\msvcrt._filbuf\"") -#pragma comment(linker, "/export:_fileinfo=\"C:\\Windows\\System32\\msvcrt._fileinfo\"") -#pragma comment(linker, "/export:_filelength=\"C:\\Windows\\System32\\msvcrt._filelength\"") -#pragma comment(linker, "/export:_filelengthi64=\"C:\\Windows\\System32\\msvcrt._filelengthi64\"") -#pragma comment(linker, "/export:_fileno=\"C:\\Windows\\System32\\msvcrt._fileno\"") -#pragma comment(linker, "/export:_findclose=\"C:\\Windows\\System32\\msvcrt._findclose\"") -#pragma comment(linker, "/export:_findfirst=\"C:\\Windows\\System32\\msvcrt._findfirst\"") -#pragma comment(linker, "/export:_findfirst64=\"C:\\Windows\\System32\\msvcrt._findfirst64\"") -#pragma comment(linker, "/export:_findfirsti64=\"C:\\Windows\\System32\\msvcrt._findfirsti64\"") -#pragma comment(linker, "/export:_findnext=\"C:\\Windows\\System32\\msvcrt._findnext\"") -#pragma comment(linker, "/export:_findnext64=\"C:\\Windows\\System32\\msvcrt._findnext64\"") -#pragma comment(linker, "/export:_findnexti64=\"C:\\Windows\\System32\\msvcrt._findnexti64\"") -#pragma comment(linker, "/export:_finite=\"C:\\Windows\\System32\\msvcrt._finite\"") -#pragma comment(linker, "/export:_finitef=\"C:\\Windows\\System32\\msvcrt._finitef\"") -#pragma comment(linker, "/export:_flsbuf=\"C:\\Windows\\System32\\msvcrt._flsbuf\"") -#pragma comment(linker, "/export:_flushall=\"C:\\Windows\\System32\\msvcrt._flushall\"") -#pragma comment(linker, "/export:_fmode=\"C:\\Windows\\System32\\msvcrt._fmode\"") -#pragma comment(linker, "/export:_fpclass=\"C:\\Windows\\System32\\msvcrt._fpclass\"") -#pragma comment(linker, "/export:_fpclassf=\"C:\\Windows\\System32\\msvcrt._fpclassf\"") -#pragma comment(linker, "/export:_fpreset=\"C:\\Windows\\System32\\msvcrt._fpreset\"") -#pragma comment(linker, "/export:_fprintf_l=\"C:\\Windows\\System32\\msvcrt._fprintf_l\"") -#pragma comment(linker, "/export:_fprintf_p=\"C:\\Windows\\System32\\msvcrt._fprintf_p\"") -#pragma comment(linker, "/export:_fprintf_p_l=\"C:\\Windows\\System32\\msvcrt._fprintf_p_l\"") -#pragma comment(linker, "/export:_fprintf_s_l=\"C:\\Windows\\System32\\msvcrt._fprintf_s_l\"") -#pragma comment(linker, "/export:_fputchar=\"C:\\Windows\\System32\\msvcrt._fputchar\"") -#pragma comment(linker, "/export:_fputwchar=\"C:\\Windows\\System32\\msvcrt._fputwchar\"") -#pragma comment(linker, "/export:_free_dbg=\"C:\\Windows\\System32\\msvcrt._free_dbg\"") -#pragma comment(linker, "/export:_free_locale=\"C:\\Windows\\System32\\msvcrt._free_locale\"") -#pragma comment(linker, "/export:_freea=\"C:\\Windows\\System32\\msvcrt._freea\"") -#pragma comment(linker, "/export:_freea_s=\"C:\\Windows\\System32\\msvcrt._freea_s\"") -#pragma comment(linker, "/export:_freefls=\"C:\\Windows\\System32\\msvcrt._freefls\"") -#pragma comment(linker, "/export:_fscanf_l=\"C:\\Windows\\System32\\msvcrt._fscanf_l\"") -#pragma comment(linker, "/export:_fscanf_s_l=\"C:\\Windows\\System32\\msvcrt._fscanf_s_l\"") -#pragma comment(linker, "/export:_fseeki64=\"C:\\Windows\\System32\\msvcrt._fseeki64\"") -#pragma comment(linker, "/export:_fsopen=\"C:\\Windows\\System32\\msvcrt._fsopen\"") -#pragma comment(linker, "/export:_fstat=\"C:\\Windows\\System32\\msvcrt._fstat\"") -#pragma comment(linker, "/export:_fstat64=\"C:\\Windows\\System32\\msvcrt._fstat64\"") -#pragma comment(linker, "/export:_fstati64=\"C:\\Windows\\System32\\msvcrt._fstati64\"") -#pragma comment(linker, "/export:_ftime=\"C:\\Windows\\System32\\msvcrt._ftime\"") -#pragma comment(linker, "/export:_ftime32=\"C:\\Windows\\System32\\msvcrt._ftime32\"") -#pragma comment(linker, "/export:_ftime32_s=\"C:\\Windows\\System32\\msvcrt._ftime32_s\"") -#pragma comment(linker, "/export:_ftime64=\"C:\\Windows\\System32\\msvcrt._ftime64\"") -#pragma comment(linker, "/export:_ftime64_s=\"C:\\Windows\\System32\\msvcrt._ftime64_s\"") -#pragma comment(linker, "/export:_fullpath=\"C:\\Windows\\System32\\msvcrt._fullpath\"") -#pragma comment(linker, "/export:_fullpath_dbg=\"C:\\Windows\\System32\\msvcrt._fullpath_dbg\"") -#pragma comment(linker, "/export:_futime=\"C:\\Windows\\System32\\msvcrt._futime\"") -#pragma comment(linker, "/export:_futime32=\"C:\\Windows\\System32\\msvcrt._futime32\"") -#pragma comment(linker, "/export:_futime64=\"C:\\Windows\\System32\\msvcrt._futime64\"") -#pragma comment(linker, "/export:_fwprintf_l=\"C:\\Windows\\System32\\msvcrt._fwprintf_l\"") -#pragma comment(linker, "/export:_fwprintf_p=\"C:\\Windows\\System32\\msvcrt._fwprintf_p\"") -#pragma comment(linker, "/export:_fwprintf_p_l=\"C:\\Windows\\System32\\msvcrt._fwprintf_p_l\"") -#pragma comment(linker, "/export:_fwprintf_s_l=\"C:\\Windows\\System32\\msvcrt._fwprintf_s_l\"") -#pragma comment(linker, "/export:_fwscanf_l=\"C:\\Windows\\System32\\msvcrt._fwscanf_l\"") -#pragma comment(linker, "/export:_fwscanf_s_l=\"C:\\Windows\\System32\\msvcrt._fwscanf_s_l\"") -#pragma comment(linker, "/export:_gcvt=\"C:\\Windows\\System32\\msvcrt._gcvt\"") -#pragma comment(linker, "/export:_gcvt_s=\"C:\\Windows\\System32\\msvcrt._gcvt_s\"") -#pragma comment(linker, "/export:_get_current_locale=\"C:\\Windows\\System32\\msvcrt._get_current_locale\"") -#pragma comment(linker, "/export:_get_doserrno=\"C:\\Windows\\System32\\msvcrt._get_doserrno\"") -#pragma comment(linker, "/export:_get_environ=\"C:\\Windows\\System32\\msvcrt._get_environ\"") -#pragma comment(linker, "/export:_get_errno=\"C:\\Windows\\System32\\msvcrt._get_errno\"") -#pragma comment(linker, "/export:_get_fileinfo=\"C:\\Windows\\System32\\msvcrt._get_fileinfo\"") -#pragma comment(linker, "/export:_get_fmode=\"C:\\Windows\\System32\\msvcrt._get_fmode\"") -#pragma comment(linker, "/export:_get_heap_handle=\"C:\\Windows\\System32\\msvcrt._get_heap_handle\"") -#pragma comment(linker, "/export:_get_osfhandle=\"C:\\Windows\\System32\\msvcrt._get_osfhandle\"") -#pragma comment(linker, "/export:_get_osplatform=\"C:\\Windows\\System32\\msvcrt._get_osplatform\"") -#pragma comment(linker, "/export:_get_osver=\"C:\\Windows\\System32\\msvcrt._get_osver\"") -#pragma comment(linker, "/export:_get_output_format=\"C:\\Windows\\System32\\msvcrt._get_output_format\"") -#pragma comment(linker, "/export:_get_pgmptr=\"C:\\Windows\\System32\\msvcrt._get_pgmptr\"") -#pragma comment(linker, "/export:_get_sbh_threshold=\"C:\\Windows\\System32\\msvcrt._get_sbh_threshold\"") -#pragma comment(linker, "/export:_get_terminate=\"C:\\Windows\\System32\\msvcrt._get_terminate\"") -#pragma comment(linker, "/export:_get_unexpected=\"C:\\Windows\\System32\\msvcrt._get_unexpected\"") -#pragma comment(linker, "/export:_get_wenviron=\"C:\\Windows\\System32\\msvcrt._get_wenviron\"") -#pragma comment(linker, "/export:_get_winmajor=\"C:\\Windows\\System32\\msvcrt._get_winmajor\"") -#pragma comment(linker, "/export:_get_winminor=\"C:\\Windows\\System32\\msvcrt._get_winminor\"") -#pragma comment(linker, "/export:_get_winver=\"C:\\Windows\\System32\\msvcrt._get_winver\"") -#pragma comment(linker, "/export:_get_wpgmptr=\"C:\\Windows\\System32\\msvcrt._get_wpgmptr\"") -#pragma comment(linker, "/export:_getch=\"C:\\Windows\\System32\\msvcrt._getch\"") -#pragma comment(linker, "/export:_getche=\"C:\\Windows\\System32\\msvcrt._getche\"") -#pragma comment(linker, "/export:_getcwd=\"C:\\Windows\\System32\\msvcrt._getcwd\"") -#pragma comment(linker, "/export:_getdcwd=\"C:\\Windows\\System32\\msvcrt._getdcwd\"") -#pragma comment(linker, "/export:_getdiskfree=\"C:\\Windows\\System32\\msvcrt._getdiskfree\"") -#pragma comment(linker, "/export:_getdrive=\"C:\\Windows\\System32\\msvcrt._getdrive\"") -#pragma comment(linker, "/export:_getdrives=\"C:\\Windows\\System32\\msvcrt._getdrives\"") -#pragma comment(linker, "/export:_getmaxstdio=\"C:\\Windows\\System32\\msvcrt._getmaxstdio\"") -#pragma comment(linker, "/export:_getmbcp=\"C:\\Windows\\System32\\msvcrt._getmbcp\"") -#pragma comment(linker, "/export:_getpid=\"C:\\Windows\\System32\\msvcrt._getpid\"") -#pragma comment(linker, "/export:_getsystime=\"C:\\Windows\\System32\\msvcrt._getsystime\"") -#pragma comment(linker, "/export:_getw=\"C:\\Windows\\System32\\msvcrt._getw\"") -#pragma comment(linker, "/export:_getwch=\"C:\\Windows\\System32\\msvcrt._getwch\"") -#pragma comment(linker, "/export:_getwche=\"C:\\Windows\\System32\\msvcrt._getwche\"") -#pragma comment(linker, "/export:_getws=\"C:\\Windows\\System32\\msvcrt._getws\"") -#pragma comment(linker, "/export:_gmtime32=\"C:\\Windows\\System32\\msvcrt._gmtime32\"") -#pragma comment(linker, "/export:_gmtime32_s=\"C:\\Windows\\System32\\msvcrt._gmtime32_s\"") -#pragma comment(linker, "/export:_gmtime64=\"C:\\Windows\\System32\\msvcrt._gmtime64\"") -#pragma comment(linker, "/export:_gmtime64_s=\"C:\\Windows\\System32\\msvcrt._gmtime64_s\"") -#pragma comment(linker, "/export:_heapchk=\"C:\\Windows\\System32\\msvcrt._heapchk\"") -#pragma comment(linker, "/export:_heapmin=\"C:\\Windows\\System32\\msvcrt._heapmin\"") -#pragma comment(linker, "/export:_heapset=\"C:\\Windows\\System32\\msvcrt._heapset\"") -#pragma comment(linker, "/export:_heapwalk=\"C:\\Windows\\System32\\msvcrt._heapwalk\"") -#pragma comment(linker, "/export:_hypot=\"C:\\Windows\\System32\\msvcrt._hypot\"") -#pragma comment(linker, "/export:_hypotf=\"C:\\Windows\\System32\\msvcrt._hypotf\"") -#pragma comment(linker, "/export:_i64toa=\"C:\\Windows\\System32\\msvcrt._i64toa\"") -#pragma comment(linker, "/export:_i64toa_s=\"C:\\Windows\\System32\\msvcrt._i64toa_s\"") -#pragma comment(linker, "/export:_i64tow=\"C:\\Windows\\System32\\msvcrt._i64tow\"") -#pragma comment(linker, "/export:_i64tow_s=\"C:\\Windows\\System32\\msvcrt._i64tow_s\"") -#pragma comment(linker, "/export:_initterm=\"C:\\Windows\\System32\\msvcrt._initterm\"") -#pragma comment(linker, "/export:_initterm_e=\"C:\\Windows\\System32\\msvcrt._initterm_e\"") -#pragma comment(linker, "/export:_invalid_parameter=\"C:\\Windows\\System32\\msvcrt._invalid_parameter\"") -#pragma comment(linker, "/export:_iob=\"C:\\Windows\\System32\\msvcrt._iob\"") -#pragma comment(linker, "/export:_isalnum_l=\"C:\\Windows\\System32\\msvcrt._isalnum_l\"") -#pragma comment(linker, "/export:_isalpha_l=\"C:\\Windows\\System32\\msvcrt._isalpha_l\"") -#pragma comment(linker, "/export:_isatty=\"C:\\Windows\\System32\\msvcrt._isatty\"") -#pragma comment(linker, "/export:_iscntrl_l=\"C:\\Windows\\System32\\msvcrt._iscntrl_l\"") -#pragma comment(linker, "/export:_isctype=\"C:\\Windows\\System32\\msvcrt._isctype\"") -#pragma comment(linker, "/export:_isctype_l=\"C:\\Windows\\System32\\msvcrt._isctype_l\"") -#pragma comment(linker, "/export:_isdigit_l=\"C:\\Windows\\System32\\msvcrt._isdigit_l\"") -#pragma comment(linker, "/export:_isgraph_l=\"C:\\Windows\\System32\\msvcrt._isgraph_l\"") -#pragma comment(linker, "/export:_isleadbyte_l=\"C:\\Windows\\System32\\msvcrt._isleadbyte_l\"") -#pragma comment(linker, "/export:_islower_l=\"C:\\Windows\\System32\\msvcrt._islower_l\"") -#pragma comment(linker, "/export:_ismbbalnum=\"C:\\Windows\\System32\\msvcrt._ismbbalnum\"") -#pragma comment(linker, "/export:_ismbbalnum_l=\"C:\\Windows\\System32\\msvcrt._ismbbalnum_l\"") -#pragma comment(linker, "/export:_ismbbalpha=\"C:\\Windows\\System32\\msvcrt._ismbbalpha\"") -#pragma comment(linker, "/export:_ismbbalpha_l=\"C:\\Windows\\System32\\msvcrt._ismbbalpha_l\"") -#pragma comment(linker, "/export:_ismbbgraph=\"C:\\Windows\\System32\\msvcrt._ismbbgraph\"") -#pragma comment(linker, "/export:_ismbbgraph_l=\"C:\\Windows\\System32\\msvcrt._ismbbgraph_l\"") -#pragma comment(linker, "/export:_ismbbkalnum=\"C:\\Windows\\System32\\msvcrt._ismbbkalnum\"") -#pragma comment(linker, "/export:_ismbbkalnum_l=\"C:\\Windows\\System32\\msvcrt._ismbbkalnum_l\"") -#pragma comment(linker, "/export:_ismbbkana=\"C:\\Windows\\System32\\msvcrt._ismbbkana\"") -#pragma comment(linker, "/export:_ismbbkana_l=\"C:\\Windows\\System32\\msvcrt._ismbbkana_l\"") -#pragma comment(linker, "/export:_ismbbkprint=\"C:\\Windows\\System32\\msvcrt._ismbbkprint\"") -#pragma comment(linker, "/export:_ismbbkprint_l=\"C:\\Windows\\System32\\msvcrt._ismbbkprint_l\"") -#pragma comment(linker, "/export:_ismbbkpunct=\"C:\\Windows\\System32\\msvcrt._ismbbkpunct\"") -#pragma comment(linker, "/export:_ismbbkpunct_l=\"C:\\Windows\\System32\\msvcrt._ismbbkpunct_l\"") -#pragma comment(linker, "/export:_ismbblead=\"C:\\Windows\\System32\\msvcrt._ismbblead\"") -#pragma comment(linker, "/export:_ismbblead_l=\"C:\\Windows\\System32\\msvcrt._ismbblead_l\"") -#pragma comment(linker, "/export:_ismbbprint=\"C:\\Windows\\System32\\msvcrt._ismbbprint\"") -#pragma comment(linker, "/export:_ismbbprint_l=\"C:\\Windows\\System32\\msvcrt._ismbbprint_l\"") -#pragma comment(linker, "/export:_ismbbpunct=\"C:\\Windows\\System32\\msvcrt._ismbbpunct\"") -#pragma comment(linker, "/export:_ismbbpunct_l=\"C:\\Windows\\System32\\msvcrt._ismbbpunct_l\"") -#pragma comment(linker, "/export:_ismbbtrail=\"C:\\Windows\\System32\\msvcrt._ismbbtrail\"") -#pragma comment(linker, "/export:_ismbbtrail_l=\"C:\\Windows\\System32\\msvcrt._ismbbtrail_l\"") -#pragma comment(linker, "/export:_ismbcalnum=\"C:\\Windows\\System32\\msvcrt._ismbcalnum\"") -#pragma comment(linker, "/export:_ismbcalnum_l=\"C:\\Windows\\System32\\msvcrt._ismbcalnum_l\"") -#pragma comment(linker, "/export:_ismbcalpha=\"C:\\Windows\\System32\\msvcrt._ismbcalpha\"") -#pragma comment(linker, "/export:_ismbcalpha_l=\"C:\\Windows\\System32\\msvcrt._ismbcalpha_l\"") -#pragma comment(linker, "/export:_ismbcdigit=\"C:\\Windows\\System32\\msvcrt._ismbcdigit\"") -#pragma comment(linker, "/export:_ismbcdigit_l=\"C:\\Windows\\System32\\msvcrt._ismbcdigit_l\"") -#pragma comment(linker, "/export:_ismbcgraph=\"C:\\Windows\\System32\\msvcrt._ismbcgraph\"") -#pragma comment(linker, "/export:_ismbcgraph_l=\"C:\\Windows\\System32\\msvcrt._ismbcgraph_l\"") -#pragma comment(linker, "/export:_ismbchira=\"C:\\Windows\\System32\\msvcrt._ismbchira\"") -#pragma comment(linker, "/export:_ismbchira_l=\"C:\\Windows\\System32\\msvcrt._ismbchira_l\"") -#pragma comment(linker, "/export:_ismbckata=\"C:\\Windows\\System32\\msvcrt._ismbckata\"") -#pragma comment(linker, "/export:_ismbckata_l=\"C:\\Windows\\System32\\msvcrt._ismbckata_l\"") -#pragma comment(linker, "/export:_ismbcl0=\"C:\\Windows\\System32\\msvcrt._ismbcl0\"") -#pragma comment(linker, "/export:_ismbcl0_l=\"C:\\Windows\\System32\\msvcrt._ismbcl0_l\"") -#pragma comment(linker, "/export:_ismbcl1=\"C:\\Windows\\System32\\msvcrt._ismbcl1\"") -#pragma comment(linker, "/export:_ismbcl1_l=\"C:\\Windows\\System32\\msvcrt._ismbcl1_l\"") -#pragma comment(linker, "/export:_ismbcl2=\"C:\\Windows\\System32\\msvcrt._ismbcl2\"") -#pragma comment(linker, "/export:_ismbcl2_l=\"C:\\Windows\\System32\\msvcrt._ismbcl2_l\"") -#pragma comment(linker, "/export:_ismbclegal=\"C:\\Windows\\System32\\msvcrt._ismbclegal\"") -#pragma comment(linker, "/export:_ismbclegal_l=\"C:\\Windows\\System32\\msvcrt._ismbclegal_l\"") -#pragma comment(linker, "/export:_ismbclower=\"C:\\Windows\\System32\\msvcrt._ismbclower\"") -#pragma comment(linker, "/export:_ismbclower_l=\"C:\\Windows\\System32\\msvcrt._ismbclower_l\"") -#pragma comment(linker, "/export:_ismbcprint=\"C:\\Windows\\System32\\msvcrt._ismbcprint\"") -#pragma comment(linker, "/export:_ismbcprint_l=\"C:\\Windows\\System32\\msvcrt._ismbcprint_l\"") -#pragma comment(linker, "/export:_ismbcpunct=\"C:\\Windows\\System32\\msvcrt._ismbcpunct\"") -#pragma comment(linker, "/export:_ismbcpunct_l=\"C:\\Windows\\System32\\msvcrt._ismbcpunct_l\"") -#pragma comment(linker, "/export:_ismbcspace=\"C:\\Windows\\System32\\msvcrt._ismbcspace\"") -#pragma comment(linker, "/export:_ismbcspace_l=\"C:\\Windows\\System32\\msvcrt._ismbcspace_l\"") -#pragma comment(linker, "/export:_ismbcsymbol=\"C:\\Windows\\System32\\msvcrt._ismbcsymbol\"") -#pragma comment(linker, "/export:_ismbcsymbol_l=\"C:\\Windows\\System32\\msvcrt._ismbcsymbol_l\"") -#pragma comment(linker, "/export:_ismbcupper=\"C:\\Windows\\System32\\msvcrt._ismbcupper\"") -#pragma comment(linker, "/export:_ismbcupper_l=\"C:\\Windows\\System32\\msvcrt._ismbcupper_l\"") -#pragma comment(linker, "/export:_ismbslead=\"C:\\Windows\\System32\\msvcrt._ismbslead\"") -#pragma comment(linker, "/export:_ismbslead_l=\"C:\\Windows\\System32\\msvcrt._ismbslead_l\"") -#pragma comment(linker, "/export:_ismbstrail=\"C:\\Windows\\System32\\msvcrt._ismbstrail\"") -#pragma comment(linker, "/export:_ismbstrail_l=\"C:\\Windows\\System32\\msvcrt._ismbstrail_l\"") -#pragma comment(linker, "/export:_isnan=\"C:\\Windows\\System32\\msvcrt._isnan\"") -#pragma comment(linker, "/export:_isnanf=\"C:\\Windows\\System32\\msvcrt._isnanf\"") -#pragma comment(linker, "/export:_isprint_l=\"C:\\Windows\\System32\\msvcrt._isprint_l\"") -#pragma comment(linker, "/export:_isspace_l=\"C:\\Windows\\System32\\msvcrt._isspace_l\"") -#pragma comment(linker, "/export:_isupper_l=\"C:\\Windows\\System32\\msvcrt._isupper_l\"") -#pragma comment(linker, "/export:_iswalnum_l=\"C:\\Windows\\System32\\msvcrt._iswalnum_l\"") -#pragma comment(linker, "/export:_iswalpha_l=\"C:\\Windows\\System32\\msvcrt._iswalpha_l\"") -#pragma comment(linker, "/export:_iswcntrl_l=\"C:\\Windows\\System32\\msvcrt._iswcntrl_l\"") -#pragma comment(linker, "/export:_iswctype_l=\"C:\\Windows\\System32\\msvcrt._iswctype_l\"") -#pragma comment(linker, "/export:_iswdigit_l=\"C:\\Windows\\System32\\msvcrt._iswdigit_l\"") -#pragma comment(linker, "/export:_iswgraph_l=\"C:\\Windows\\System32\\msvcrt._iswgraph_l\"") -#pragma comment(linker, "/export:_iswlower_l=\"C:\\Windows\\System32\\msvcrt._iswlower_l\"") -#pragma comment(linker, "/export:_iswprint_l=\"C:\\Windows\\System32\\msvcrt._iswprint_l\"") -#pragma comment(linker, "/export:_iswpunct_l=\"C:\\Windows\\System32\\msvcrt._iswpunct_l\"") -#pragma comment(linker, "/export:_iswspace_l=\"C:\\Windows\\System32\\msvcrt._iswspace_l\"") -#pragma comment(linker, "/export:_iswupper_l=\"C:\\Windows\\System32\\msvcrt._iswupper_l\"") -#pragma comment(linker, "/export:_iswxdigit_l=\"C:\\Windows\\System32\\msvcrt._iswxdigit_l\"") -#pragma comment(linker, "/export:_isxdigit_l=\"C:\\Windows\\System32\\msvcrt._isxdigit_l\"") -#pragma comment(linker, "/export:_itoa=\"C:\\Windows\\System32\\msvcrt._itoa\"") -#pragma comment(linker, "/export:_itoa_s=\"C:\\Windows\\System32\\msvcrt._itoa_s\"") -#pragma comment(linker, "/export:_itow=\"C:\\Windows\\System32\\msvcrt._itow\"") -#pragma comment(linker, "/export:_itow_s=\"C:\\Windows\\System32\\msvcrt._itow_s\"") -#pragma comment(linker, "/export:_j0=\"C:\\Windows\\System32\\msvcrt._j0\"") -#pragma comment(linker, "/export:_j1=\"C:\\Windows\\System32\\msvcrt._j1\"") -#pragma comment(linker, "/export:_jn=\"C:\\Windows\\System32\\msvcrt._jn\"") -#pragma comment(linker, "/export:_kbhit=\"C:\\Windows\\System32\\msvcrt._kbhit\"") -#pragma comment(linker, "/export:_lfind=\"C:\\Windows\\System32\\msvcrt._lfind\"") -#pragma comment(linker, "/export:_lfind_s=\"C:\\Windows\\System32\\msvcrt._lfind_s\"") -#pragma comment(linker, "/export:_local_unwind=\"C:\\Windows\\System32\\msvcrt._local_unwind\"") -#pragma comment(linker, "/export:_localtime32=\"C:\\Windows\\System32\\msvcrt._localtime32\"") -#pragma comment(linker, "/export:_localtime32_s=\"C:\\Windows\\System32\\msvcrt._localtime32_s\"") -#pragma comment(linker, "/export:_localtime64=\"C:\\Windows\\System32\\msvcrt._localtime64\"") -#pragma comment(linker, "/export:_localtime64_s=\"C:\\Windows\\System32\\msvcrt._localtime64_s\"") -#pragma comment(linker, "/export:_lock=\"C:\\Windows\\System32\\msvcrt._lock\"") -#pragma comment(linker, "/export:_locking=\"C:\\Windows\\System32\\msvcrt._locking\"") -#pragma comment(linker, "/export:_logb=\"C:\\Windows\\System32\\msvcrt._logb\"") -#pragma comment(linker, "/export:_logbf=\"C:\\Windows\\System32\\msvcrt._logbf\"") -#pragma comment(linker, "/export:_lrotl=\"C:\\Windows\\System32\\msvcrt._lrotl\"") -#pragma comment(linker, "/export:_lrotr=\"C:\\Windows\\System32\\msvcrt._lrotr\"") -#pragma comment(linker, "/export:_lsearch=\"C:\\Windows\\System32\\msvcrt._lsearch\"") -#pragma comment(linker, "/export:_lsearch_s=\"C:\\Windows\\System32\\msvcrt._lsearch_s\"") -#pragma comment(linker, "/export:_lseek=\"C:\\Windows\\System32\\msvcrt._lseek\"") -#pragma comment(linker, "/export:_lseeki64=\"C:\\Windows\\System32\\msvcrt._lseeki64\"") -#pragma comment(linker, "/export:_ltoa=\"C:\\Windows\\System32\\msvcrt._ltoa\"") -#pragma comment(linker, "/export:_ltoa_s=\"C:\\Windows\\System32\\msvcrt._ltoa_s\"") -#pragma comment(linker, "/export:_ltow=\"C:\\Windows\\System32\\msvcrt._ltow\"") -#pragma comment(linker, "/export:_ltow_s=\"C:\\Windows\\System32\\msvcrt._ltow_s\"") -#pragma comment(linker, "/export:_makepath=\"C:\\Windows\\System32\\msvcrt._makepath\"") -#pragma comment(linker, "/export:_makepath_s=\"C:\\Windows\\System32\\msvcrt._makepath_s\"") -#pragma comment(linker, "/export:_malloc_dbg=\"C:\\Windows\\System32\\msvcrt._malloc_dbg\"") -#pragma comment(linker, "/export:_mbbtombc=\"C:\\Windows\\System32\\msvcrt._mbbtombc\"") -#pragma comment(linker, "/export:_mbbtombc_l=\"C:\\Windows\\System32\\msvcrt._mbbtombc_l\"") -#pragma comment(linker, "/export:_mbbtype=\"C:\\Windows\\System32\\msvcrt._mbbtype\"") -#pragma comment(linker, "/export:_mbcasemap=\"C:\\Windows\\System32\\msvcrt._mbcasemap\"") -#pragma comment(linker, "/export:_mbccpy=\"C:\\Windows\\System32\\msvcrt._mbccpy\"") -#pragma comment(linker, "/export:_mbccpy_l=\"C:\\Windows\\System32\\msvcrt._mbccpy_l\"") -#pragma comment(linker, "/export:_mbccpy_s=\"C:\\Windows\\System32\\msvcrt._mbccpy_s\"") -#pragma comment(linker, "/export:_mbccpy_s_l=\"C:\\Windows\\System32\\msvcrt._mbccpy_s_l\"") -#pragma comment(linker, "/export:_mbcjistojms=\"C:\\Windows\\System32\\msvcrt._mbcjistojms\"") -#pragma comment(linker, "/export:_mbcjistojms_l=\"C:\\Windows\\System32\\msvcrt._mbcjistojms_l\"") -#pragma comment(linker, "/export:_mbcjmstojis=\"C:\\Windows\\System32\\msvcrt._mbcjmstojis\"") -#pragma comment(linker, "/export:_mbcjmstojis_l=\"C:\\Windows\\System32\\msvcrt._mbcjmstojis_l\"") -#pragma comment(linker, "/export:_mbclen=\"C:\\Windows\\System32\\msvcrt._mbclen\"") -#pragma comment(linker, "/export:_mbclen_l=\"C:\\Windows\\System32\\msvcrt._mbclen_l\"") -#pragma comment(linker, "/export:_mbctohira=\"C:\\Windows\\System32\\msvcrt._mbctohira\"") -#pragma comment(linker, "/export:_mbctohira_l=\"C:\\Windows\\System32\\msvcrt._mbctohira_l\"") -#pragma comment(linker, "/export:_mbctokata=\"C:\\Windows\\System32\\msvcrt._mbctokata\"") -#pragma comment(linker, "/export:_mbctokata_l=\"C:\\Windows\\System32\\msvcrt._mbctokata_l\"") -#pragma comment(linker, "/export:_mbctolower=\"C:\\Windows\\System32\\msvcrt._mbctolower\"") -#pragma comment(linker, "/export:_mbctolower_l=\"C:\\Windows\\System32\\msvcrt._mbctolower_l\"") -#pragma comment(linker, "/export:_mbctombb=\"C:\\Windows\\System32\\msvcrt._mbctombb\"") -#pragma comment(linker, "/export:_mbctombb_l=\"C:\\Windows\\System32\\msvcrt._mbctombb_l\"") -#pragma comment(linker, "/export:_mbctoupper=\"C:\\Windows\\System32\\msvcrt._mbctoupper\"") -#pragma comment(linker, "/export:_mbctoupper_l=\"C:\\Windows\\System32\\msvcrt._mbctoupper_l\"") -#pragma comment(linker, "/export:_mbctype=\"C:\\Windows\\System32\\msvcrt._mbctype\"") -#pragma comment(linker, "/export:_mblen_l=\"C:\\Windows\\System32\\msvcrt._mblen_l\"") -#pragma comment(linker, "/export:_mbsbtype=\"C:\\Windows\\System32\\msvcrt._mbsbtype\"") -#pragma comment(linker, "/export:_mbsbtype_l=\"C:\\Windows\\System32\\msvcrt._mbsbtype_l\"") -#pragma comment(linker, "/export:_mbscat=\"C:\\Windows\\System32\\msvcrt._mbscat\"") -#pragma comment(linker, "/export:_mbscat_s=\"C:\\Windows\\System32\\msvcrt._mbscat_s\"") -#pragma comment(linker, "/export:_mbscat_s_l=\"C:\\Windows\\System32\\msvcrt._mbscat_s_l\"") -#pragma comment(linker, "/export:_mbschr=\"C:\\Windows\\System32\\msvcrt._mbschr\"") -#pragma comment(linker, "/export:_mbschr_l=\"C:\\Windows\\System32\\msvcrt._mbschr_l\"") -#pragma comment(linker, "/export:_mbscmp=\"C:\\Windows\\System32\\msvcrt._mbscmp\"") -#pragma comment(linker, "/export:_mbscmp_l=\"C:\\Windows\\System32\\msvcrt._mbscmp_l\"") -#pragma comment(linker, "/export:_mbscoll=\"C:\\Windows\\System32\\msvcrt._mbscoll\"") -#pragma comment(linker, "/export:_mbscoll_l=\"C:\\Windows\\System32\\msvcrt._mbscoll_l\"") -#pragma comment(linker, "/export:_mbscpy=\"C:\\Windows\\System32\\msvcrt._mbscpy\"") -#pragma comment(linker, "/export:_mbscpy_s=\"C:\\Windows\\System32\\msvcrt._mbscpy_s\"") -#pragma comment(linker, "/export:_mbscpy_s_l=\"C:\\Windows\\System32\\msvcrt._mbscpy_s_l\"") -#pragma comment(linker, "/export:_mbscspn=\"C:\\Windows\\System32\\msvcrt._mbscspn\"") -#pragma comment(linker, "/export:_mbscspn_l=\"C:\\Windows\\System32\\msvcrt._mbscspn_l\"") -#pragma comment(linker, "/export:_mbsdec=\"C:\\Windows\\System32\\msvcrt._mbsdec\"") -#pragma comment(linker, "/export:_mbsdec_l=\"C:\\Windows\\System32\\msvcrt._mbsdec_l\"") -#pragma comment(linker, "/export:_mbsdup=\"C:\\Windows\\System32\\msvcrt._mbsdup\"") -#pragma comment(linker, "/export:_mbsicmp=\"C:\\Windows\\System32\\msvcrt._mbsicmp\"") -#pragma comment(linker, "/export:_mbsicmp_l=\"C:\\Windows\\System32\\msvcrt._mbsicmp_l\"") -#pragma comment(linker, "/export:_mbsicoll=\"C:\\Windows\\System32\\msvcrt._mbsicoll\"") -#pragma comment(linker, "/export:_mbsicoll_l=\"C:\\Windows\\System32\\msvcrt._mbsicoll_l\"") -#pragma comment(linker, "/export:_mbsinc=\"C:\\Windows\\System32\\msvcrt._mbsinc\"") -#pragma comment(linker, "/export:_mbsinc_l=\"C:\\Windows\\System32\\msvcrt._mbsinc_l\"") -#pragma comment(linker, "/export:_mbslen=\"C:\\Windows\\System32\\msvcrt._mbslen\"") -#pragma comment(linker, "/export:_mbslen_l=\"C:\\Windows\\System32\\msvcrt._mbslen_l\"") -#pragma comment(linker, "/export:_mbslwr=\"C:\\Windows\\System32\\msvcrt._mbslwr\"") -#pragma comment(linker, "/export:_mbslwr_l=\"C:\\Windows\\System32\\msvcrt._mbslwr_l\"") -#pragma comment(linker, "/export:_mbslwr_s=\"C:\\Windows\\System32\\msvcrt._mbslwr_s\"") -#pragma comment(linker, "/export:_mbslwr_s_l=\"C:\\Windows\\System32\\msvcrt._mbslwr_s_l\"") -#pragma comment(linker, "/export:_mbsnbcat=\"C:\\Windows\\System32\\msvcrt._mbsnbcat\"") -#pragma comment(linker, "/export:_mbsnbcat_l=\"C:\\Windows\\System32\\msvcrt._mbsnbcat_l\"") -#pragma comment(linker, "/export:_mbsnbcat_s=\"C:\\Windows\\System32\\msvcrt._mbsnbcat_s\"") -#pragma comment(linker, "/export:_mbsnbcat_s_l=\"C:\\Windows\\System32\\msvcrt._mbsnbcat_s_l\"") -#pragma comment(linker, "/export:_mbsnbcmp=\"C:\\Windows\\System32\\msvcrt._mbsnbcmp\"") -#pragma comment(linker, "/export:_mbsnbcmp_l=\"C:\\Windows\\System32\\msvcrt._mbsnbcmp_l\"") -#pragma comment(linker, "/export:_mbsnbcnt=\"C:\\Windows\\System32\\msvcrt._mbsnbcnt\"") -#pragma comment(linker, "/export:_mbsnbcnt_l=\"C:\\Windows\\System32\\msvcrt._mbsnbcnt_l\"") -#pragma comment(linker, "/export:_mbsnbcoll=\"C:\\Windows\\System32\\msvcrt._mbsnbcoll\"") -#pragma comment(linker, "/export:_mbsnbcoll_l=\"C:\\Windows\\System32\\msvcrt._mbsnbcoll_l\"") -#pragma comment(linker, "/export:_mbsnbcpy=\"C:\\Windows\\System32\\msvcrt._mbsnbcpy\"") -#pragma comment(linker, "/export:_mbsnbcpy_l=\"C:\\Windows\\System32\\msvcrt._mbsnbcpy_l\"") -#pragma comment(linker, "/export:_mbsnbcpy_s=\"C:\\Windows\\System32\\msvcrt._mbsnbcpy_s\"") -#pragma comment(linker, "/export:_mbsnbcpy_s_l=\"C:\\Windows\\System32\\msvcrt._mbsnbcpy_s_l\"") -#pragma comment(linker, "/export:_mbsnbicmp=\"C:\\Windows\\System32\\msvcrt._mbsnbicmp\"") -#pragma comment(linker, "/export:_mbsnbicmp_l=\"C:\\Windows\\System32\\msvcrt._mbsnbicmp_l\"") -#pragma comment(linker, "/export:_mbsnbicoll=\"C:\\Windows\\System32\\msvcrt._mbsnbicoll\"") -#pragma comment(linker, "/export:_mbsnbicoll_l=\"C:\\Windows\\System32\\msvcrt._mbsnbicoll_l\"") -#pragma comment(linker, "/export:_mbsnbset=\"C:\\Windows\\System32\\msvcrt._mbsnbset\"") -#pragma comment(linker, "/export:_mbsnbset_l=\"C:\\Windows\\System32\\msvcrt._mbsnbset_l\"") -#pragma comment(linker, "/export:_mbsnbset_s=\"C:\\Windows\\System32\\msvcrt._mbsnbset_s\"") -#pragma comment(linker, "/export:_mbsnbset_s_l=\"C:\\Windows\\System32\\msvcrt._mbsnbset_s_l\"") -#pragma comment(linker, "/export:_mbsncat=\"C:\\Windows\\System32\\msvcrt._mbsncat\"") -#pragma comment(linker, "/export:_mbsncat_l=\"C:\\Windows\\System32\\msvcrt._mbsncat_l\"") -#pragma comment(linker, "/export:_mbsncat_s=\"C:\\Windows\\System32\\msvcrt._mbsncat_s\"") -#pragma comment(linker, "/export:_mbsncat_s_l=\"C:\\Windows\\System32\\msvcrt._mbsncat_s_l\"") -#pragma comment(linker, "/export:_mbsnccnt=\"C:\\Windows\\System32\\msvcrt._mbsnccnt\"") -#pragma comment(linker, "/export:_mbsnccnt_l=\"C:\\Windows\\System32\\msvcrt._mbsnccnt_l\"") -#pragma comment(linker, "/export:_mbsncmp=\"C:\\Windows\\System32\\msvcrt._mbsncmp\"") -#pragma comment(linker, "/export:_mbsncmp_l=\"C:\\Windows\\System32\\msvcrt._mbsncmp_l\"") -#pragma comment(linker, "/export:_mbsncoll=\"C:\\Windows\\System32\\msvcrt._mbsncoll\"") -#pragma comment(linker, "/export:_mbsncoll_l=\"C:\\Windows\\System32\\msvcrt._mbsncoll_l\"") -#pragma comment(linker, "/export:_mbsncpy=\"C:\\Windows\\System32\\msvcrt._mbsncpy\"") -#pragma comment(linker, "/export:_mbsncpy_l=\"C:\\Windows\\System32\\msvcrt._mbsncpy_l\"") -#pragma comment(linker, "/export:_mbsncpy_s=\"C:\\Windows\\System32\\msvcrt._mbsncpy_s\"") -#pragma comment(linker, "/export:_mbsncpy_s_l=\"C:\\Windows\\System32\\msvcrt._mbsncpy_s_l\"") -#pragma comment(linker, "/export:_mbsnextc=\"C:\\Windows\\System32\\msvcrt._mbsnextc\"") -#pragma comment(linker, "/export:_mbsnextc_l=\"C:\\Windows\\System32\\msvcrt._mbsnextc_l\"") -#pragma comment(linker, "/export:_mbsnicmp=\"C:\\Windows\\System32\\msvcrt._mbsnicmp\"") -#pragma comment(linker, "/export:_mbsnicmp_l=\"C:\\Windows\\System32\\msvcrt._mbsnicmp_l\"") -#pragma comment(linker, "/export:_mbsnicoll=\"C:\\Windows\\System32\\msvcrt._mbsnicoll\"") -#pragma comment(linker, "/export:_mbsnicoll_l=\"C:\\Windows\\System32\\msvcrt._mbsnicoll_l\"") -#pragma comment(linker, "/export:_mbsninc=\"C:\\Windows\\System32\\msvcrt._mbsninc\"") -#pragma comment(linker, "/export:_mbsninc_l=\"C:\\Windows\\System32\\msvcrt._mbsninc_l\"") -#pragma comment(linker, "/export:_mbsnlen=\"C:\\Windows\\System32\\msvcrt._mbsnlen\"") -#pragma comment(linker, "/export:_mbsnlen_l=\"C:\\Windows\\System32\\msvcrt._mbsnlen_l\"") -#pragma comment(linker, "/export:_mbsnset=\"C:\\Windows\\System32\\msvcrt._mbsnset\"") -#pragma comment(linker, "/export:_mbsnset_l=\"C:\\Windows\\System32\\msvcrt._mbsnset_l\"") -#pragma comment(linker, "/export:_mbsnset_s=\"C:\\Windows\\System32\\msvcrt._mbsnset_s\"") -#pragma comment(linker, "/export:_mbsnset_s_l=\"C:\\Windows\\System32\\msvcrt._mbsnset_s_l\"") -#pragma comment(linker, "/export:_mbspbrk=\"C:\\Windows\\System32\\msvcrt._mbspbrk\"") -#pragma comment(linker, "/export:_mbspbrk_l=\"C:\\Windows\\System32\\msvcrt._mbspbrk_l\"") -#pragma comment(linker, "/export:_mbsrchr=\"C:\\Windows\\System32\\msvcrt._mbsrchr\"") -#pragma comment(linker, "/export:_mbsrchr_l=\"C:\\Windows\\System32\\msvcrt._mbsrchr_l\"") -#pragma comment(linker, "/export:_mbsrev=\"C:\\Windows\\System32\\msvcrt._mbsrev\"") -#pragma comment(linker, "/export:_mbsrev_l=\"C:\\Windows\\System32\\msvcrt._mbsrev_l\"") -#pragma comment(linker, "/export:_mbsset=\"C:\\Windows\\System32\\msvcrt._mbsset\"") -#pragma comment(linker, "/export:_mbsset_l=\"C:\\Windows\\System32\\msvcrt._mbsset_l\"") -#pragma comment(linker, "/export:_mbsset_s=\"C:\\Windows\\System32\\msvcrt._mbsset_s\"") -#pragma comment(linker, "/export:_mbsset_s_l=\"C:\\Windows\\System32\\msvcrt._mbsset_s_l\"") -#pragma comment(linker, "/export:_mbsspn=\"C:\\Windows\\System32\\msvcrt._mbsspn\"") -#pragma comment(linker, "/export:_mbsspn_l=\"C:\\Windows\\System32\\msvcrt._mbsspn_l\"") -#pragma comment(linker, "/export:_mbsspnp=\"C:\\Windows\\System32\\msvcrt._mbsspnp\"") -#pragma comment(linker, "/export:_mbsspnp_l=\"C:\\Windows\\System32\\msvcrt._mbsspnp_l\"") -#pragma comment(linker, "/export:_mbsstr=\"C:\\Windows\\System32\\msvcrt._mbsstr\"") -#pragma comment(linker, "/export:_mbsstr_l=\"C:\\Windows\\System32\\msvcrt._mbsstr_l\"") -#pragma comment(linker, "/export:_mbstok=\"C:\\Windows\\System32\\msvcrt._mbstok\"") -#pragma comment(linker, "/export:_mbstok_l=\"C:\\Windows\\System32\\msvcrt._mbstok_l\"") -#pragma comment(linker, "/export:_mbstok_s=\"C:\\Windows\\System32\\msvcrt._mbstok_s\"") -#pragma comment(linker, "/export:_mbstok_s_l=\"C:\\Windows\\System32\\msvcrt._mbstok_s_l\"") -#pragma comment(linker, "/export:_mbstowcs_l=\"C:\\Windows\\System32\\msvcrt._mbstowcs_l\"") -#pragma comment(linker, "/export:_mbstowcs_s_l=\"C:\\Windows\\System32\\msvcrt._mbstowcs_s_l\"") -#pragma comment(linker, "/export:_mbstrlen=\"C:\\Windows\\System32\\msvcrt._mbstrlen\"") -#pragma comment(linker, "/export:_mbstrlen_l=\"C:\\Windows\\System32\\msvcrt._mbstrlen_l\"") -#pragma comment(linker, "/export:_mbstrnlen=\"C:\\Windows\\System32\\msvcrt._mbstrnlen\"") -#pragma comment(linker, "/export:_mbstrnlen_l=\"C:\\Windows\\System32\\msvcrt._mbstrnlen_l\"") -#pragma comment(linker, "/export:_mbsupr=\"C:\\Windows\\System32\\msvcrt._mbsupr\"") -#pragma comment(linker, "/export:_mbsupr_l=\"C:\\Windows\\System32\\msvcrt._mbsupr_l\"") -#pragma comment(linker, "/export:_mbsupr_s=\"C:\\Windows\\System32\\msvcrt._mbsupr_s\"") -#pragma comment(linker, "/export:_mbsupr_s_l=\"C:\\Windows\\System32\\msvcrt._mbsupr_s_l\"") -#pragma comment(linker, "/export:_mbtowc_l=\"C:\\Windows\\System32\\msvcrt._mbtowc_l\"") -#pragma comment(linker, "/export:_memccpy=\"C:\\Windows\\System32\\msvcrt._memccpy\"") -#pragma comment(linker, "/export:_memicmp=\"C:\\Windows\\System32\\msvcrt._memicmp\"") -#pragma comment(linker, "/export:_memicmp_l=\"C:\\Windows\\System32\\msvcrt._memicmp_l\"") -#pragma comment(linker, "/export:_mkdir=\"C:\\Windows\\System32\\msvcrt._mkdir\"") -#pragma comment(linker, "/export:_mkgmtime=\"C:\\Windows\\System32\\msvcrt._mkgmtime\"") -#pragma comment(linker, "/export:_mkgmtime32=\"C:\\Windows\\System32\\msvcrt._mkgmtime32\"") -#pragma comment(linker, "/export:_mkgmtime64=\"C:\\Windows\\System32\\msvcrt._mkgmtime64\"") -#pragma comment(linker, "/export:_mktemp=\"C:\\Windows\\System32\\msvcrt._mktemp\"") -#pragma comment(linker, "/export:_mktemp_s=\"C:\\Windows\\System32\\msvcrt._mktemp_s\"") -#pragma comment(linker, "/export:_mktime32=\"C:\\Windows\\System32\\msvcrt._mktime32\"") -#pragma comment(linker, "/export:_mktime64=\"C:\\Windows\\System32\\msvcrt._mktime64\"") -#pragma comment(linker, "/export:_msize=\"C:\\Windows\\System32\\msvcrt._msize\"") -#pragma comment(linker, "/export:_msize_dbg=\"C:\\Windows\\System32\\msvcrt._msize_dbg\"") -#pragma comment(linker, "/export:_nextafter=\"C:\\Windows\\System32\\msvcrt._nextafter\"") -#pragma comment(linker, "/export:_nextafterf=\"C:\\Windows\\System32\\msvcrt._nextafterf\"") -#pragma comment(linker, "/export:_onexit=\"C:\\Windows\\System32\\msvcrt._onexit\"") -#pragma comment(linker, "/export:_open=\"C:\\Windows\\System32\\msvcrt._open\"") -#pragma comment(linker, "/export:_open_osfhandle=\"C:\\Windows\\System32\\msvcrt._open_osfhandle\"") -#pragma comment(linker, "/export:_osplatform=\"C:\\Windows\\System32\\msvcrt._osplatform\"") -#pragma comment(linker, "/export:_osver=\"C:\\Windows\\System32\\msvcrt._osver\"") -#pragma comment(linker, "/export:_pclose=\"C:\\Windows\\System32\\msvcrt._pclose\"") -#pragma comment(linker, "/export:_pctype=\"C:\\Windows\\System32\\msvcrt._pctype\"") -#pragma comment(linker, "/export:_pgmptr=\"C:\\Windows\\System32\\msvcrt._pgmptr\"") -#pragma comment(linker, "/export:_pipe=\"C:\\Windows\\System32\\msvcrt._pipe\"") -#pragma comment(linker, "/export:_popen=\"C:\\Windows\\System32\\msvcrt._popen\"") -#pragma comment(linker, "/export:_printf_l=\"C:\\Windows\\System32\\msvcrt._printf_l\"") -#pragma comment(linker, "/export:_printf_p=\"C:\\Windows\\System32\\msvcrt._printf_p\"") -#pragma comment(linker, "/export:_printf_p_l=\"C:\\Windows\\System32\\msvcrt._printf_p_l\"") -#pragma comment(linker, "/export:_printf_s_l=\"C:\\Windows\\System32\\msvcrt._printf_s_l\"") -#pragma comment(linker, "/export:_purecall=\"C:\\Windows\\System32\\msvcrt._purecall\"") -#pragma comment(linker, "/export:_putch=\"C:\\Windows\\System32\\msvcrt._putch\"") -#pragma comment(linker, "/export:_putenv=\"C:\\Windows\\System32\\msvcrt._putenv\"") -#pragma comment(linker, "/export:_putenv_s=\"C:\\Windows\\System32\\msvcrt._putenv_s\"") -#pragma comment(linker, "/export:_putw=\"C:\\Windows\\System32\\msvcrt._putw\"") -#pragma comment(linker, "/export:_putwch=\"C:\\Windows\\System32\\msvcrt._putwch\"") -#pragma comment(linker, "/export:_putws=\"C:\\Windows\\System32\\msvcrt._putws\"") -#pragma comment(linker, "/export:_pwctype=\"C:\\Windows\\System32\\msvcrt._pwctype\"") -#pragma comment(linker, "/export:_read=\"C:\\Windows\\System32\\msvcrt._read\"") -#pragma comment(linker, "/export:_realloc_dbg=\"C:\\Windows\\System32\\msvcrt._realloc_dbg\"") -#pragma comment(linker, "/export:_resetstkoflw=\"C:\\Windows\\System32\\msvcrt._resetstkoflw\"") -#pragma comment(linker, "/export:_rmdir=\"C:\\Windows\\System32\\msvcrt._rmdir\"") -#pragma comment(linker, "/export:_rmtmp=\"C:\\Windows\\System32\\msvcrt._rmtmp\"") -#pragma comment(linker, "/export:_rotl=\"C:\\Windows\\System32\\msvcrt._rotl\"") -#pragma comment(linker, "/export:_rotl64=\"C:\\Windows\\System32\\msvcrt._rotl64\"") -#pragma comment(linker, "/export:_rotr=\"C:\\Windows\\System32\\msvcrt._rotr\"") -#pragma comment(linker, "/export:_rotr64=\"C:\\Windows\\System32\\msvcrt._rotr64\"") -#pragma comment(linker, "/export:_scalb=\"C:\\Windows\\System32\\msvcrt._scalb\"") -#pragma comment(linker, "/export:_scalbf=\"C:\\Windows\\System32\\msvcrt._scalbf\"") -#pragma comment(linker, "/export:_scanf_l=\"C:\\Windows\\System32\\msvcrt._scanf_l\"") -#pragma comment(linker, "/export:_scanf_s_l=\"C:\\Windows\\System32\\msvcrt._scanf_s_l\"") -#pragma comment(linker, "/export:_scprintf=\"C:\\Windows\\System32\\msvcrt._scprintf\"") -#pragma comment(linker, "/export:_scprintf_l=\"C:\\Windows\\System32\\msvcrt._scprintf_l\"") -#pragma comment(linker, "/export:_scprintf_p_l=\"C:\\Windows\\System32\\msvcrt._scprintf_p_l\"") -#pragma comment(linker, "/export:_scwprintf=\"C:\\Windows\\System32\\msvcrt._scwprintf\"") -#pragma comment(linker, "/export:_scwprintf_l=\"C:\\Windows\\System32\\msvcrt._scwprintf_l\"") -#pragma comment(linker, "/export:_scwprintf_p_l=\"C:\\Windows\\System32\\msvcrt._scwprintf_p_l\"") -#pragma comment(linker, "/export:_searchenv=\"C:\\Windows\\System32\\msvcrt._searchenv\"") -#pragma comment(linker, "/export:_searchenv_s=\"C:\\Windows\\System32\\msvcrt._searchenv_s\"") -#pragma comment(linker, "/export:_set_controlfp=\"C:\\Windows\\System32\\msvcrt._set_controlfp\"") -#pragma comment(linker, "/export:_set_doserrno=\"C:\\Windows\\System32\\msvcrt._set_doserrno\"") -#pragma comment(linker, "/export:_set_errno=\"C:\\Windows\\System32\\msvcrt._set_errno\"") -#pragma comment(linker, "/export:_set_error_mode=\"C:\\Windows\\System32\\msvcrt._set_error_mode\"") -#pragma comment(linker, "/export:_set_fileinfo=\"C:\\Windows\\System32\\msvcrt._set_fileinfo\"") -#pragma comment(linker, "/export:_set_fmode=\"C:\\Windows\\System32\\msvcrt._set_fmode\"") -#pragma comment(linker, "/export:_set_output_format=\"C:\\Windows\\System32\\msvcrt._set_output_format\"") -#pragma comment(linker, "/export:_set_sbh_threshold=\"C:\\Windows\\System32\\msvcrt._set_sbh_threshold\"") -#pragma comment(linker, "/export:_seterrormode=\"C:\\Windows\\System32\\msvcrt._seterrormode\"") -#pragma comment(linker, "/export:_setjmp=\"C:\\Windows\\System32\\msvcrt._setjmp\"") -#pragma comment(linker, "/export:_setjmpex=\"C:\\Windows\\System32\\msvcrt._setjmpex\"") -#pragma comment(linker, "/export:_setmaxstdio=\"C:\\Windows\\System32\\msvcrt._setmaxstdio\"") -#pragma comment(linker, "/export:_setmbcp=\"C:\\Windows\\System32\\msvcrt._setmbcp\"") -#pragma comment(linker, "/export:_setmode=\"C:\\Windows\\System32\\msvcrt._setmode\"") -#pragma comment(linker, "/export:_setsystime=\"C:\\Windows\\System32\\msvcrt._setsystime\"") -#pragma comment(linker, "/export:_sleep=\"C:\\Windows\\System32\\msvcrt._sleep\"") -#pragma comment(linker, "/export:_snprintf=\"C:\\Windows\\System32\\msvcrt._snprintf\"") -#pragma comment(linker, "/export:_snprintf_c=\"C:\\Windows\\System32\\msvcrt._snprintf_c\"") -#pragma comment(linker, "/export:_snprintf_c_l=\"C:\\Windows\\System32\\msvcrt._snprintf_c_l\"") -#pragma comment(linker, "/export:_snprintf_l=\"C:\\Windows\\System32\\msvcrt._snprintf_l\"") -#pragma comment(linker, "/export:_snprintf_s=\"C:\\Windows\\System32\\msvcrt._snprintf_s\"") -#pragma comment(linker, "/export:_snprintf_s_l=\"C:\\Windows\\System32\\msvcrt._snprintf_s_l\"") -#pragma comment(linker, "/export:_snscanf=\"C:\\Windows\\System32\\msvcrt._snscanf\"") -#pragma comment(linker, "/export:_snscanf_l=\"C:\\Windows\\System32\\msvcrt._snscanf_l\"") -#pragma comment(linker, "/export:_snscanf_s=\"C:\\Windows\\System32\\msvcrt._snscanf_s\"") -#pragma comment(linker, "/export:_snscanf_s_l=\"C:\\Windows\\System32\\msvcrt._snscanf_s_l\"") -#pragma comment(linker, "/export:_snwprintf=\"C:\\Windows\\System32\\msvcrt._snwprintf\"") -#pragma comment(linker, "/export:_snwprintf_l=\"C:\\Windows\\System32\\msvcrt._snwprintf_l\"") -#pragma comment(linker, "/export:_snwprintf_s=\"C:\\Windows\\System32\\msvcrt._snwprintf_s\"") -#pragma comment(linker, "/export:_snwprintf_s_l=\"C:\\Windows\\System32\\msvcrt._snwprintf_s_l\"") -#pragma comment(linker, "/export:_snwscanf=\"C:\\Windows\\System32\\msvcrt._snwscanf\"") -#pragma comment(linker, "/export:_snwscanf_l=\"C:\\Windows\\System32\\msvcrt._snwscanf_l\"") -#pragma comment(linker, "/export:_snwscanf_s=\"C:\\Windows\\System32\\msvcrt._snwscanf_s\"") -#pragma comment(linker, "/export:_snwscanf_s_l=\"C:\\Windows\\System32\\msvcrt._snwscanf_s_l\"") -#pragma comment(linker, "/export:_sopen=\"C:\\Windows\\System32\\msvcrt._sopen\"") -#pragma comment(linker, "/export:_sopen_s=\"C:\\Windows\\System32\\msvcrt._sopen_s\"") -#pragma comment(linker, "/export:_spawnl=\"C:\\Windows\\System32\\msvcrt._spawnl\"") -#pragma comment(linker, "/export:_spawnle=\"C:\\Windows\\System32\\msvcrt._spawnle\"") -#pragma comment(linker, "/export:_spawnlp=\"C:\\Windows\\System32\\msvcrt._spawnlp\"") -#pragma comment(linker, "/export:_spawnlpe=\"C:\\Windows\\System32\\msvcrt._spawnlpe\"") -#pragma comment(linker, "/export:_spawnv=\"C:\\Windows\\System32\\msvcrt._spawnv\"") -#pragma comment(linker, "/export:_spawnve=\"C:\\Windows\\System32\\msvcrt._spawnve\"") -#pragma comment(linker, "/export:_spawnvp=\"C:\\Windows\\System32\\msvcrt._spawnvp\"") -#pragma comment(linker, "/export:_spawnvpe=\"C:\\Windows\\System32\\msvcrt._spawnvpe\"") -#pragma comment(linker, "/export:_splitpath=\"C:\\Windows\\System32\\msvcrt._splitpath\"") -#pragma comment(linker, "/export:_splitpath_s=\"C:\\Windows\\System32\\msvcrt._splitpath_s\"") -#pragma comment(linker, "/export:_sprintf_l=\"C:\\Windows\\System32\\msvcrt._sprintf_l\"") -#pragma comment(linker, "/export:_sprintf_p_l=\"C:\\Windows\\System32\\msvcrt._sprintf_p_l\"") -#pragma comment(linker, "/export:_sprintf_s_l=\"C:\\Windows\\System32\\msvcrt._sprintf_s_l\"") -#pragma comment(linker, "/export:_sscanf_l=\"C:\\Windows\\System32\\msvcrt._sscanf_l\"") -#pragma comment(linker, "/export:_sscanf_s_l=\"C:\\Windows\\System32\\msvcrt._sscanf_s_l\"") -#pragma comment(linker, "/export:_stat=\"C:\\Windows\\System32\\msvcrt._stat\"") -#pragma comment(linker, "/export:_stat64=\"C:\\Windows\\System32\\msvcrt._stat64\"") -#pragma comment(linker, "/export:_stati64=\"C:\\Windows\\System32\\msvcrt._stati64\"") -#pragma comment(linker, "/export:_statusfp=\"C:\\Windows\\System32\\msvcrt._statusfp\"") -#pragma comment(linker, "/export:_strcmpi=\"C:\\Windows\\System32\\msvcrt._strcmpi\"") -#pragma comment(linker, "/export:_strcoll_l=\"C:\\Windows\\System32\\msvcrt._strcoll_l\"") -#pragma comment(linker, "/export:_strdate=\"C:\\Windows\\System32\\msvcrt._strdate\"") -#pragma comment(linker, "/export:_strdate_s=\"C:\\Windows\\System32\\msvcrt._strdate_s\"") -#pragma comment(linker, "/export:_strdup=\"C:\\Windows\\System32\\msvcrt._strdup\"") -#pragma comment(linker, "/export:_strdup_dbg=\"C:\\Windows\\System32\\msvcrt._strdup_dbg\"") -#pragma comment(linker, "/export:_strerror=\"C:\\Windows\\System32\\msvcrt._strerror\"") -#pragma comment(linker, "/export:_strerror_s=\"C:\\Windows\\System32\\msvcrt._strerror_s\"") -#pragma comment(linker, "/export:_stricmp=\"C:\\Windows\\System32\\msvcrt._stricmp\"") -#pragma comment(linker, "/export:_stricmp_l=\"C:\\Windows\\System32\\msvcrt._stricmp_l\"") -#pragma comment(linker, "/export:_stricoll=\"C:\\Windows\\System32\\msvcrt._stricoll\"") -#pragma comment(linker, "/export:_stricoll_l=\"C:\\Windows\\System32\\msvcrt._stricoll_l\"") -#pragma comment(linker, "/export:_strlwr=\"C:\\Windows\\System32\\msvcrt._strlwr\"") -#pragma comment(linker, "/export:_strlwr_l=\"C:\\Windows\\System32\\msvcrt._strlwr_l\"") -#pragma comment(linker, "/export:_strlwr_s=\"C:\\Windows\\System32\\msvcrt._strlwr_s\"") -#pragma comment(linker, "/export:_strlwr_s_l=\"C:\\Windows\\System32\\msvcrt._strlwr_s_l\"") -#pragma comment(linker, "/export:_strncoll=\"C:\\Windows\\System32\\msvcrt._strncoll\"") -#pragma comment(linker, "/export:_strncoll_l=\"C:\\Windows\\System32\\msvcrt._strncoll_l\"") -#pragma comment(linker, "/export:_strnicmp=\"C:\\Windows\\System32\\msvcrt._strnicmp\"") -#pragma comment(linker, "/export:_strnicmp_l=\"C:\\Windows\\System32\\msvcrt._strnicmp_l\"") -#pragma comment(linker, "/export:_strnicoll=\"C:\\Windows\\System32\\msvcrt._strnicoll\"") -#pragma comment(linker, "/export:_strnicoll_l=\"C:\\Windows\\System32\\msvcrt._strnicoll_l\"") -#pragma comment(linker, "/export:_strnset=\"C:\\Windows\\System32\\msvcrt._strnset\"") -#pragma comment(linker, "/export:_strnset_s=\"C:\\Windows\\System32\\msvcrt._strnset_s\"") -#pragma comment(linker, "/export:_strrev=\"C:\\Windows\\System32\\msvcrt._strrev\"") -#pragma comment(linker, "/export:_strset=\"C:\\Windows\\System32\\msvcrt._strset\"") -#pragma comment(linker, "/export:_strset_s=\"C:\\Windows\\System32\\msvcrt._strset_s\"") -#pragma comment(linker, "/export:_strtime=\"C:\\Windows\\System32\\msvcrt._strtime\"") -#pragma comment(linker, "/export:_strtime_s=\"C:\\Windows\\System32\\msvcrt._strtime_s\"") -#pragma comment(linker, "/export:_strtod_l=\"C:\\Windows\\System32\\msvcrt._strtod_l\"") -#pragma comment(linker, "/export:_strtoi64=\"C:\\Windows\\System32\\msvcrt._strtoi64\"") -#pragma comment(linker, "/export:_strtoi64_l=\"C:\\Windows\\System32\\msvcrt._strtoi64_l\"") -#pragma comment(linker, "/export:_strtol_l=\"C:\\Windows\\System32\\msvcrt._strtol_l\"") -#pragma comment(linker, "/export:_strtoui64=\"C:\\Windows\\System32\\msvcrt._strtoui64\"") -#pragma comment(linker, "/export:_strtoui64_l=\"C:\\Windows\\System32\\msvcrt._strtoui64_l\"") -#pragma comment(linker, "/export:_strtoul_l=\"C:\\Windows\\System32\\msvcrt._strtoul_l\"") -#pragma comment(linker, "/export:_strupr=\"C:\\Windows\\System32\\msvcrt._strupr\"") -#pragma comment(linker, "/export:_strupr_l=\"C:\\Windows\\System32\\msvcrt._strupr_l\"") -#pragma comment(linker, "/export:_strupr_s=\"C:\\Windows\\System32\\msvcrt._strupr_s\"") -#pragma comment(linker, "/export:_strupr_s_l=\"C:\\Windows\\System32\\msvcrt._strupr_s_l\"") -#pragma comment(linker, "/export:_strxfrm_l=\"C:\\Windows\\System32\\msvcrt._strxfrm_l\"") -#pragma comment(linker, "/export:_swab=\"C:\\Windows\\System32\\msvcrt._swab\"") -#pragma comment(linker, "/export:_swprintf=\"C:\\Windows\\System32\\msvcrt._swprintf\"") -#pragma comment(linker, "/export:_swprintf_c=\"C:\\Windows\\System32\\msvcrt._swprintf_c\"") -#pragma comment(linker, "/export:_swprintf_c_l=\"C:\\Windows\\System32\\msvcrt._swprintf_c_l\"") -#pragma comment(linker, "/export:_swprintf_p_l=\"C:\\Windows\\System32\\msvcrt._swprintf_p_l\"") -#pragma comment(linker, "/export:_swprintf_s_l=\"C:\\Windows\\System32\\msvcrt._swprintf_s_l\"") -#pragma comment(linker, "/export:_swscanf_l=\"C:\\Windows\\System32\\msvcrt._swscanf_l\"") -#pragma comment(linker, "/export:_swscanf_s_l=\"C:\\Windows\\System32\\msvcrt._swscanf_s_l\"") -#pragma comment(linker, "/export:_sys_errlist=\"C:\\Windows\\System32\\msvcrt._sys_errlist\"") -#pragma comment(linker, "/export:_sys_nerr=\"C:\\Windows\\System32\\msvcrt._sys_nerr\"") -#pragma comment(linker, "/export:_tell=\"C:\\Windows\\System32\\msvcrt._tell\"") -#pragma comment(linker, "/export:_telli64=\"C:\\Windows\\System32\\msvcrt._telli64\"") -#pragma comment(linker, "/export:_tempnam=\"C:\\Windows\\System32\\msvcrt._tempnam\"") -#pragma comment(linker, "/export:_tempnam_dbg=\"C:\\Windows\\System32\\msvcrt._tempnam_dbg\"") -#pragma comment(linker, "/export:_time32=\"C:\\Windows\\System32\\msvcrt._time32\"") -#pragma comment(linker, "/export:_time64=\"C:\\Windows\\System32\\msvcrt._time64\"") -#pragma comment(linker, "/export:_timezone=\"C:\\Windows\\System32\\msvcrt._timezone\"") -#pragma comment(linker, "/export:_tolower=\"C:\\Windows\\System32\\msvcrt._tolower\"") -#pragma comment(linker, "/export:_tolower_l=\"C:\\Windows\\System32\\msvcrt._tolower_l\"") -#pragma comment(linker, "/export:_toupper=\"C:\\Windows\\System32\\msvcrt._toupper\"") -#pragma comment(linker, "/export:_toupper_l=\"C:\\Windows\\System32\\msvcrt._toupper_l\"") -#pragma comment(linker, "/export:_towlower_l=\"C:\\Windows\\System32\\msvcrt._towlower_l\"") -#pragma comment(linker, "/export:_towupper_l=\"C:\\Windows\\System32\\msvcrt._towupper_l\"") -#pragma comment(linker, "/export:_tzname=\"C:\\Windows\\System32\\msvcrt._tzname\"") -#pragma comment(linker, "/export:_tzset=\"C:\\Windows\\System32\\msvcrt._tzset\"") -#pragma comment(linker, "/export:_ui64toa=\"C:\\Windows\\System32\\msvcrt._ui64toa\"") -#pragma comment(linker, "/export:_ui64toa_s=\"C:\\Windows\\System32\\msvcrt._ui64toa_s\"") -#pragma comment(linker, "/export:_ui64tow=\"C:\\Windows\\System32\\msvcrt._ui64tow\"") -#pragma comment(linker, "/export:_ui64tow_s=\"C:\\Windows\\System32\\msvcrt._ui64tow_s\"") -#pragma comment(linker, "/export:_ultoa=\"C:\\Windows\\System32\\msvcrt._ultoa\"") -#pragma comment(linker, "/export:_ultoa_s=\"C:\\Windows\\System32\\msvcrt._ultoa_s\"") -#pragma comment(linker, "/export:_ultow=\"C:\\Windows\\System32\\msvcrt._ultow\"") -#pragma comment(linker, "/export:_ultow_s=\"C:\\Windows\\System32\\msvcrt._ultow_s\"") -#pragma comment(linker, "/export:_umask=\"C:\\Windows\\System32\\msvcrt._umask\"") -#pragma comment(linker, "/export:_umask_s=\"C:\\Windows\\System32\\msvcrt._umask_s\"") -#pragma comment(linker, "/export:_ungetc_nolock=\"C:\\Windows\\System32\\msvcrt._ungetc_nolock\"") -#pragma comment(linker, "/export:_ungetch=\"C:\\Windows\\System32\\msvcrt._ungetch\"") -#pragma comment(linker, "/export:_ungetwch=\"C:\\Windows\\System32\\msvcrt._ungetwch\"") -#pragma comment(linker, "/export:_unlink=\"C:\\Windows\\System32\\msvcrt._unlink\"") -#pragma comment(linker, "/export:_unlock=\"C:\\Windows\\System32\\msvcrt._unlock\"") -#pragma comment(linker, "/export:_utime=\"C:\\Windows\\System32\\msvcrt._utime\"") -#pragma comment(linker, "/export:_utime32=\"C:\\Windows\\System32\\msvcrt._utime32\"") -#pragma comment(linker, "/export:_utime64=\"C:\\Windows\\System32\\msvcrt._utime64\"") -#pragma comment(linker, "/export:_vcprintf=\"C:\\Windows\\System32\\msvcrt._vcprintf\"") -#pragma comment(linker, "/export:_vcprintf_l=\"C:\\Windows\\System32\\msvcrt._vcprintf_l\"") -#pragma comment(linker, "/export:_vcprintf_p=\"C:\\Windows\\System32\\msvcrt._vcprintf_p\"") -#pragma comment(linker, "/export:_vcprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vcprintf_p_l\"") -#pragma comment(linker, "/export:_vcprintf_s=\"C:\\Windows\\System32\\msvcrt._vcprintf_s\"") -#pragma comment(linker, "/export:_vcprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vcprintf_s_l\"") -#pragma comment(linker, "/export:_vcwprintf=\"C:\\Windows\\System32\\msvcrt._vcwprintf\"") -#pragma comment(linker, "/export:_vcwprintf_l=\"C:\\Windows\\System32\\msvcrt._vcwprintf_l\"") -#pragma comment(linker, "/export:_vcwprintf_p=\"C:\\Windows\\System32\\msvcrt._vcwprintf_p\"") -#pragma comment(linker, "/export:_vcwprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vcwprintf_p_l\"") -#pragma comment(linker, "/export:_vcwprintf_s=\"C:\\Windows\\System32\\msvcrt._vcwprintf_s\"") -#pragma comment(linker, "/export:_vcwprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vcwprintf_s_l\"") -#pragma comment(linker, "/export:_vfprintf_l=\"C:\\Windows\\System32\\msvcrt._vfprintf_l\"") -#pragma comment(linker, "/export:_vfprintf_p=\"C:\\Windows\\System32\\msvcrt._vfprintf_p\"") -#pragma comment(linker, "/export:_vfprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vfprintf_p_l\"") -#pragma comment(linker, "/export:_vfprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vfprintf_s_l\"") -#pragma comment(linker, "/export:_vfwprintf_l=\"C:\\Windows\\System32\\msvcrt._vfwprintf_l\"") -#pragma comment(linker, "/export:_vfwprintf_p=\"C:\\Windows\\System32\\msvcrt._vfwprintf_p\"") -#pragma comment(linker, "/export:_vfwprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vfwprintf_p_l\"") -#pragma comment(linker, "/export:_vfwprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vfwprintf_s_l\"") -#pragma comment(linker, "/export:_vprintf_l=\"C:\\Windows\\System32\\msvcrt._vprintf_l\"") -#pragma comment(linker, "/export:_vprintf_p=\"C:\\Windows\\System32\\msvcrt._vprintf_p\"") -#pragma comment(linker, "/export:_vprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vprintf_p_l\"") -#pragma comment(linker, "/export:_vprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vprintf_s_l\"") -#pragma comment(linker, "/export:_vscprintf=\"C:\\Windows\\System32\\msvcrt._vscprintf\"") -#pragma comment(linker, "/export:_vscprintf_l=\"C:\\Windows\\System32\\msvcrt._vscprintf_l\"") -#pragma comment(linker, "/export:_vscprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vscprintf_p_l\"") -#pragma comment(linker, "/export:_vscwprintf=\"C:\\Windows\\System32\\msvcrt._vscwprintf\"") -#pragma comment(linker, "/export:_vscwprintf_l=\"C:\\Windows\\System32\\msvcrt._vscwprintf_l\"") -#pragma comment(linker, "/export:_vscwprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vscwprintf_p_l\"") -#pragma comment(linker, "/export:_vsnprintf=\"C:\\Windows\\System32\\msvcrt._vsnprintf\"") -#pragma comment(linker, "/export:_vsnprintf_c=\"C:\\Windows\\System32\\msvcrt._vsnprintf_c\"") -#pragma comment(linker, "/export:_vsnprintf_c_l=\"C:\\Windows\\System32\\msvcrt._vsnprintf_c_l\"") -#pragma comment(linker, "/export:_vsnprintf_l=\"C:\\Windows\\System32\\msvcrt._vsnprintf_l\"") -#pragma comment(linker, "/export:_vsnprintf_s=\"C:\\Windows\\System32\\msvcrt._vsnprintf_s\"") -#pragma comment(linker, "/export:_vsnprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vsnprintf_s_l\"") -#pragma comment(linker, "/export:_vsnwprintf=\"C:\\Windows\\System32\\msvcrt._vsnwprintf\"") -#pragma comment(linker, "/export:_vsnwprintf_l=\"C:\\Windows\\System32\\msvcrt._vsnwprintf_l\"") -#pragma comment(linker, "/export:_vsnwprintf_s=\"C:\\Windows\\System32\\msvcrt._vsnwprintf_s\"") -#pragma comment(linker, "/export:_vsnwprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vsnwprintf_s_l\"") -#pragma comment(linker, "/export:_vsprintf_l=\"C:\\Windows\\System32\\msvcrt._vsprintf_l\"") -#pragma comment(linker, "/export:_vsprintf_p=\"C:\\Windows\\System32\\msvcrt._vsprintf_p\"") -#pragma comment(linker, "/export:_vsprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vsprintf_p_l\"") -#pragma comment(linker, "/export:_vsprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vsprintf_s_l\"") -#pragma comment(linker, "/export:_vswprintf=\"C:\\Windows\\System32\\msvcrt._vswprintf\"") -#pragma comment(linker, "/export:_vswprintf_c=\"C:\\Windows\\System32\\msvcrt._vswprintf_c\"") -#pragma comment(linker, "/export:_vswprintf_c_l=\"C:\\Windows\\System32\\msvcrt._vswprintf_c_l\"") -#pragma comment(linker, "/export:_vswprintf_l=\"C:\\Windows\\System32\\msvcrt._vswprintf_l\"") -#pragma comment(linker, "/export:_vswprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vswprintf_p_l\"") -#pragma comment(linker, "/export:_vswprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vswprintf_s_l\"") -#pragma comment(linker, "/export:_vwprintf_l=\"C:\\Windows\\System32\\msvcrt._vwprintf_l\"") -#pragma comment(linker, "/export:_vwprintf_p=\"C:\\Windows\\System32\\msvcrt._vwprintf_p\"") -#pragma comment(linker, "/export:_vwprintf_p_l=\"C:\\Windows\\System32\\msvcrt._vwprintf_p_l\"") -#pragma comment(linker, "/export:_vwprintf_s_l=\"C:\\Windows\\System32\\msvcrt._vwprintf_s_l\"") -#pragma comment(linker, "/export:_waccess=\"C:\\Windows\\System32\\msvcrt._waccess\"") -#pragma comment(linker, "/export:_waccess_s=\"C:\\Windows\\System32\\msvcrt._waccess_s\"") -#pragma comment(linker, "/export:_wasctime=\"C:\\Windows\\System32\\msvcrt._wasctime\"") -#pragma comment(linker, "/export:_wasctime_s=\"C:\\Windows\\System32\\msvcrt._wasctime_s\"") -#pragma comment(linker, "/export:_wassert=\"C:\\Windows\\System32\\msvcrt._wassert\"") -#pragma comment(linker, "/export:_wchdir=\"C:\\Windows\\System32\\msvcrt._wchdir\"") -#pragma comment(linker, "/export:_wchmod=\"C:\\Windows\\System32\\msvcrt._wchmod\"") -#pragma comment(linker, "/export:_wcmdln=\"C:\\Windows\\System32\\msvcrt._wcmdln\"") -#pragma comment(linker, "/export:_wcreat=\"C:\\Windows\\System32\\msvcrt._wcreat\"") -#pragma comment(linker, "/export:_wcscoll_l=\"C:\\Windows\\System32\\msvcrt._wcscoll_l\"") -#pragma comment(linker, "/export:_wcsdup=\"C:\\Windows\\System32\\msvcrt._wcsdup\"") -#pragma comment(linker, "/export:_wcsdup_dbg=\"C:\\Windows\\System32\\msvcrt._wcsdup_dbg\"") -#pragma comment(linker, "/export:_wcserror=\"C:\\Windows\\System32\\msvcrt._wcserror\"") -#pragma comment(linker, "/export:_wcserror_s=\"C:\\Windows\\System32\\msvcrt._wcserror_s\"") -#pragma comment(linker, "/export:_wcsftime_l=\"C:\\Windows\\System32\\msvcrt._wcsftime_l\"") -#pragma comment(linker, "/export:_wcsicmp=\"C:\\Windows\\System32\\msvcrt._wcsicmp\"") -#pragma comment(linker, "/export:_wcsicmp_l=\"C:\\Windows\\System32\\msvcrt._wcsicmp_l\"") -#pragma comment(linker, "/export:_wcsicoll=\"C:\\Windows\\System32\\msvcrt._wcsicoll\"") -#pragma comment(linker, "/export:_wcsicoll_l=\"C:\\Windows\\System32\\msvcrt._wcsicoll_l\"") -#pragma comment(linker, "/export:_wcslwr=\"C:\\Windows\\System32\\msvcrt._wcslwr\"") -#pragma comment(linker, "/export:_wcslwr_l=\"C:\\Windows\\System32\\msvcrt._wcslwr_l\"") -#pragma comment(linker, "/export:_wcslwr_s=\"C:\\Windows\\System32\\msvcrt._wcslwr_s\"") -#pragma comment(linker, "/export:_wcslwr_s_l=\"C:\\Windows\\System32\\msvcrt._wcslwr_s_l\"") -#pragma comment(linker, "/export:_wcsncoll=\"C:\\Windows\\System32\\msvcrt._wcsncoll\"") -#pragma comment(linker, "/export:_wcsncoll_l=\"C:\\Windows\\System32\\msvcrt._wcsncoll_l\"") -#pragma comment(linker, "/export:_wcsnicmp=\"C:\\Windows\\System32\\msvcrt._wcsnicmp\"") -#pragma comment(linker, "/export:_wcsnicmp_l=\"C:\\Windows\\System32\\msvcrt._wcsnicmp_l\"") -#pragma comment(linker, "/export:_wcsnicoll=\"C:\\Windows\\System32\\msvcrt._wcsnicoll\"") -#pragma comment(linker, "/export:_wcsnicoll_l=\"C:\\Windows\\System32\\msvcrt._wcsnicoll_l\"") -#pragma comment(linker, "/export:_wcsnset=\"C:\\Windows\\System32\\msvcrt._wcsnset\"") -#pragma comment(linker, "/export:_wcsnset_s=\"C:\\Windows\\System32\\msvcrt._wcsnset_s\"") -#pragma comment(linker, "/export:_wcsrev=\"C:\\Windows\\System32\\msvcrt._wcsrev\"") -#pragma comment(linker, "/export:_wcsset=\"C:\\Windows\\System32\\msvcrt._wcsset\"") -#pragma comment(linker, "/export:_wcsset_s=\"C:\\Windows\\System32\\msvcrt._wcsset_s\"") -#pragma comment(linker, "/export:_wcstod_l=\"C:\\Windows\\System32\\msvcrt._wcstod_l\"") -#pragma comment(linker, "/export:_wcstoi64=\"C:\\Windows\\System32\\msvcrt._wcstoi64\"") -#pragma comment(linker, "/export:_wcstoi64_l=\"C:\\Windows\\System32\\msvcrt._wcstoi64_l\"") -#pragma comment(linker, "/export:_wcstol_l=\"C:\\Windows\\System32\\msvcrt._wcstol_l\"") -#pragma comment(linker, "/export:_wcstombs_l=\"C:\\Windows\\System32\\msvcrt._wcstombs_l\"") -#pragma comment(linker, "/export:_wcstombs_s_l=\"C:\\Windows\\System32\\msvcrt._wcstombs_s_l\"") -#pragma comment(linker, "/export:_wcstoui64=\"C:\\Windows\\System32\\msvcrt._wcstoui64\"") -#pragma comment(linker, "/export:_wcstoui64_l=\"C:\\Windows\\System32\\msvcrt._wcstoui64_l\"") -#pragma comment(linker, "/export:_wcstoul_l=\"C:\\Windows\\System32\\msvcrt._wcstoul_l\"") -#pragma comment(linker, "/export:_wcsupr=\"C:\\Windows\\System32\\msvcrt._wcsupr\"") -#pragma comment(linker, "/export:_wcsupr_l=\"C:\\Windows\\System32\\msvcrt._wcsupr_l\"") -#pragma comment(linker, "/export:_wcsupr_s=\"C:\\Windows\\System32\\msvcrt._wcsupr_s\"") -#pragma comment(linker, "/export:_wcsupr_s_l=\"C:\\Windows\\System32\\msvcrt._wcsupr_s_l\"") -#pragma comment(linker, "/export:_wcsxfrm_l=\"C:\\Windows\\System32\\msvcrt._wcsxfrm_l\"") -#pragma comment(linker, "/export:_wctime=\"C:\\Windows\\System32\\msvcrt._wctime\"") -#pragma comment(linker, "/export:_wctime32=\"C:\\Windows\\System32\\msvcrt._wctime32\"") -#pragma comment(linker, "/export:_wctime32_s=\"C:\\Windows\\System32\\msvcrt._wctime32_s\"") -#pragma comment(linker, "/export:_wctime64=\"C:\\Windows\\System32\\msvcrt._wctime64\"") -#pragma comment(linker, "/export:_wctime64_s=\"C:\\Windows\\System32\\msvcrt._wctime64_s\"") -#pragma comment(linker, "/export:_wctomb_l=\"C:\\Windows\\System32\\msvcrt._wctomb_l\"") -#pragma comment(linker, "/export:_wctomb_s_l=\"C:\\Windows\\System32\\msvcrt._wctomb_s_l\"") -#pragma comment(linker, "/export:_wctype=\"C:\\Windows\\System32\\msvcrt._wctype\"") -#pragma comment(linker, "/export:_wenviron=\"C:\\Windows\\System32\\msvcrt._wenviron\"") -#pragma comment(linker, "/export:_wexecl=\"C:\\Windows\\System32\\msvcrt._wexecl\"") -#pragma comment(linker, "/export:_wexecle=\"C:\\Windows\\System32\\msvcrt._wexecle\"") -#pragma comment(linker, "/export:_wexeclp=\"C:\\Windows\\System32\\msvcrt._wexeclp\"") -#pragma comment(linker, "/export:_wexeclpe=\"C:\\Windows\\System32\\msvcrt._wexeclpe\"") -#pragma comment(linker, "/export:_wexecv=\"C:\\Windows\\System32\\msvcrt._wexecv\"") -#pragma comment(linker, "/export:_wexecve=\"C:\\Windows\\System32\\msvcrt._wexecve\"") -#pragma comment(linker, "/export:_wexecvp=\"C:\\Windows\\System32\\msvcrt._wexecvp\"") -#pragma comment(linker, "/export:_wexecvpe=\"C:\\Windows\\System32\\msvcrt._wexecvpe\"") -#pragma comment(linker, "/export:_wfdopen=\"C:\\Windows\\System32\\msvcrt._wfdopen\"") -#pragma comment(linker, "/export:_wfindfirst=\"C:\\Windows\\System32\\msvcrt._wfindfirst\"") -#pragma comment(linker, "/export:_wfindfirst64=\"C:\\Windows\\System32\\msvcrt._wfindfirst64\"") -#pragma comment(linker, "/export:_wfindfirsti64=\"C:\\Windows\\System32\\msvcrt._wfindfirsti64\"") -#pragma comment(linker, "/export:_wfindnext=\"C:\\Windows\\System32\\msvcrt._wfindnext\"") -#pragma comment(linker, "/export:_wfindnext64=\"C:\\Windows\\System32\\msvcrt._wfindnext64\"") -#pragma comment(linker, "/export:_wfindnexti64=\"C:\\Windows\\System32\\msvcrt._wfindnexti64\"") -#pragma comment(linker, "/export:_wfopen=\"C:\\Windows\\System32\\msvcrt._wfopen\"") -#pragma comment(linker, "/export:_wfopen_s=\"C:\\Windows\\System32\\msvcrt._wfopen_s\"") -#pragma comment(linker, "/export:_wfreopen=\"C:\\Windows\\System32\\msvcrt._wfreopen\"") -#pragma comment(linker, "/export:_wfreopen_s=\"C:\\Windows\\System32\\msvcrt._wfreopen_s\"") -#pragma comment(linker, "/export:_wfsopen=\"C:\\Windows\\System32\\msvcrt._wfsopen\"") -#pragma comment(linker, "/export:_wfullpath=\"C:\\Windows\\System32\\msvcrt._wfullpath\"") -#pragma comment(linker, "/export:_wfullpath_dbg=\"C:\\Windows\\System32\\msvcrt._wfullpath_dbg\"") -#pragma comment(linker, "/export:_wgetcwd=\"C:\\Windows\\System32\\msvcrt._wgetcwd\"") -#pragma comment(linker, "/export:_wgetdcwd=\"C:\\Windows\\System32\\msvcrt._wgetdcwd\"") -#pragma comment(linker, "/export:_wgetenv=\"C:\\Windows\\System32\\msvcrt._wgetenv\"") -#pragma comment(linker, "/export:_wgetenv_s=\"C:\\Windows\\System32\\msvcrt._wgetenv_s\"") -#pragma comment(linker, "/export:_winmajor=\"C:\\Windows\\System32\\msvcrt._winmajor\"") -#pragma comment(linker, "/export:_winminor=\"C:\\Windows\\System32\\msvcrt._winminor\"") -#pragma comment(linker, "/export:_winput_s=\"C:\\Windows\\System32\\msvcrt._winput_s\"") -#pragma comment(linker, "/export:_winver=\"C:\\Windows\\System32\\msvcrt._winver\"") -#pragma comment(linker, "/export:_wmakepath=\"C:\\Windows\\System32\\msvcrt._wmakepath\"") -#pragma comment(linker, "/export:_wmakepath_s=\"C:\\Windows\\System32\\msvcrt._wmakepath_s\"") -#pragma comment(linker, "/export:_wmkdir=\"C:\\Windows\\System32\\msvcrt._wmkdir\"") -#pragma comment(linker, "/export:_wmktemp=\"C:\\Windows\\System32\\msvcrt._wmktemp\"") -#pragma comment(linker, "/export:_wmktemp_s=\"C:\\Windows\\System32\\msvcrt._wmktemp_s\"") -#pragma comment(linker, "/export:_wopen=\"C:\\Windows\\System32\\msvcrt._wopen\"") -#pragma comment(linker, "/export:_woutput_s=\"C:\\Windows\\System32\\msvcrt._woutput_s\"") -#pragma comment(linker, "/export:_wperror=\"C:\\Windows\\System32\\msvcrt._wperror\"") -#pragma comment(linker, "/export:_wpgmptr=\"C:\\Windows\\System32\\msvcrt._wpgmptr\"") -#pragma comment(linker, "/export:_wpopen=\"C:\\Windows\\System32\\msvcrt._wpopen\"") -#pragma comment(linker, "/export:_wprintf_l=\"C:\\Windows\\System32\\msvcrt._wprintf_l\"") -#pragma comment(linker, "/export:_wprintf_p=\"C:\\Windows\\System32\\msvcrt._wprintf_p\"") -#pragma comment(linker, "/export:_wprintf_p_l=\"C:\\Windows\\System32\\msvcrt._wprintf_p_l\"") -#pragma comment(linker, "/export:_wprintf_s_l=\"C:\\Windows\\System32\\msvcrt._wprintf_s_l\"") -#pragma comment(linker, "/export:_wputenv=\"C:\\Windows\\System32\\msvcrt._wputenv\"") -#pragma comment(linker, "/export:_wputenv_s=\"C:\\Windows\\System32\\msvcrt._wputenv_s\"") -#pragma comment(linker, "/export:_wremove=\"C:\\Windows\\System32\\msvcrt._wremove\"") -#pragma comment(linker, "/export:_wrename=\"C:\\Windows\\System32\\msvcrt._wrename\"") -#pragma comment(linker, "/export:_write=\"C:\\Windows\\System32\\msvcrt._write\"") -#pragma comment(linker, "/export:_wrmdir=\"C:\\Windows\\System32\\msvcrt._wrmdir\"") -#pragma comment(linker, "/export:_wscanf_l=\"C:\\Windows\\System32\\msvcrt._wscanf_l\"") -#pragma comment(linker, "/export:_wscanf_s_l=\"C:\\Windows\\System32\\msvcrt._wscanf_s_l\"") -#pragma comment(linker, "/export:_wsearchenv=\"C:\\Windows\\System32\\msvcrt._wsearchenv\"") -#pragma comment(linker, "/export:_wsearchenv_s=\"C:\\Windows\\System32\\msvcrt._wsearchenv_s\"") -#pragma comment(linker, "/export:_wsetlocale=\"C:\\Windows\\System32\\msvcrt._wsetlocale\"") -#pragma comment(linker, "/export:_wsopen=\"C:\\Windows\\System32\\msvcrt._wsopen\"") -#pragma comment(linker, "/export:_wsopen_s=\"C:\\Windows\\System32\\msvcrt._wsopen_s\"") -#pragma comment(linker, "/export:_wspawnl=\"C:\\Windows\\System32\\msvcrt._wspawnl\"") -#pragma comment(linker, "/export:_wspawnle=\"C:\\Windows\\System32\\msvcrt._wspawnle\"") -#pragma comment(linker, "/export:_wspawnlp=\"C:\\Windows\\System32\\msvcrt._wspawnlp\"") -#pragma comment(linker, "/export:_wspawnlpe=\"C:\\Windows\\System32\\msvcrt._wspawnlpe\"") -#pragma comment(linker, "/export:_wspawnv=\"C:\\Windows\\System32\\msvcrt._wspawnv\"") -#pragma comment(linker, "/export:_wspawnve=\"C:\\Windows\\System32\\msvcrt._wspawnve\"") -#pragma comment(linker, "/export:_wspawnvp=\"C:\\Windows\\System32\\msvcrt._wspawnvp\"") -#pragma comment(linker, "/export:_wspawnvpe=\"C:\\Windows\\System32\\msvcrt._wspawnvpe\"") -#pragma comment(linker, "/export:_wsplitpath=\"C:\\Windows\\System32\\msvcrt._wsplitpath\"") -#pragma comment(linker, "/export:_wsplitpath_s=\"C:\\Windows\\System32\\msvcrt._wsplitpath_s\"") -#pragma comment(linker, "/export:_wstat=\"C:\\Windows\\System32\\msvcrt._wstat\"") -#pragma comment(linker, "/export:_wstat64=\"C:\\Windows\\System32\\msvcrt._wstat64\"") -#pragma comment(linker, "/export:_wstati64=\"C:\\Windows\\System32\\msvcrt._wstati64\"") -#pragma comment(linker, "/export:_wstrdate=\"C:\\Windows\\System32\\msvcrt._wstrdate\"") -#pragma comment(linker, "/export:_wstrdate_s=\"C:\\Windows\\System32\\msvcrt._wstrdate_s\"") -#pragma comment(linker, "/export:_wstrtime=\"C:\\Windows\\System32\\msvcrt._wstrtime\"") -#pragma comment(linker, "/export:_wstrtime_s=\"C:\\Windows\\System32\\msvcrt._wstrtime_s\"") -#pragma comment(linker, "/export:_wsystem=\"C:\\Windows\\System32\\msvcrt._wsystem\"") -#pragma comment(linker, "/export:_wtempnam=\"C:\\Windows\\System32\\msvcrt._wtempnam\"") -#pragma comment(linker, "/export:_wtempnam_dbg=\"C:\\Windows\\System32\\msvcrt._wtempnam_dbg\"") -#pragma comment(linker, "/export:_wtmpnam=\"C:\\Windows\\System32\\msvcrt._wtmpnam\"") -#pragma comment(linker, "/export:_wtmpnam_s=\"C:\\Windows\\System32\\msvcrt._wtmpnam_s\"") -#pragma comment(linker, "/export:_wtof=\"C:\\Windows\\System32\\msvcrt._wtof\"") -#pragma comment(linker, "/export:_wtof_l=\"C:\\Windows\\System32\\msvcrt._wtof_l\"") -#pragma comment(linker, "/export:_wtoi=\"C:\\Windows\\System32\\msvcrt._wtoi\"") -#pragma comment(linker, "/export:_wtoi64=\"C:\\Windows\\System32\\msvcrt._wtoi64\"") -#pragma comment(linker, "/export:_wtoi64_l=\"C:\\Windows\\System32\\msvcrt._wtoi64_l\"") -#pragma comment(linker, "/export:_wtoi_l=\"C:\\Windows\\System32\\msvcrt._wtoi_l\"") -#pragma comment(linker, "/export:_wtol=\"C:\\Windows\\System32\\msvcrt._wtol\"") -#pragma comment(linker, "/export:_wtol_l=\"C:\\Windows\\System32\\msvcrt._wtol_l\"") -#pragma comment(linker, "/export:_wunlink=\"C:\\Windows\\System32\\msvcrt._wunlink\"") -#pragma comment(linker, "/export:_wutime=\"C:\\Windows\\System32\\msvcrt._wutime\"") -#pragma comment(linker, "/export:_wutime32=\"C:\\Windows\\System32\\msvcrt._wutime32\"") -#pragma comment(linker, "/export:_wutime64=\"C:\\Windows\\System32\\msvcrt._wutime64\"") -#pragma comment(linker, "/export:_y0=\"C:\\Windows\\System32\\msvcrt._y0\"") -#pragma comment(linker, "/export:_y1=\"C:\\Windows\\System32\\msvcrt._y1\"") -#pragma comment(linker, "/export:_yn=\"C:\\Windows\\System32\\msvcrt._yn\"") -#pragma comment(linker, "/export:abort=\"C:\\Windows\\System32\\msvcrt.abort\"") -#pragma comment(linker, "/export:abs=\"C:\\Windows\\System32\\msvcrt.abs\"") -#pragma comment(linker, "/export:acos=\"C:\\Windows\\System32\\msvcrt.acos\"") -#pragma comment(linker, "/export:acosf=\"C:\\Windows\\System32\\msvcrt.acosf\"") -#pragma comment(linker, "/export:asctime=\"C:\\Windows\\System32\\msvcrt.asctime\"") -#pragma comment(linker, "/export:asctime_s=\"C:\\Windows\\System32\\msvcrt.asctime_s\"") -#pragma comment(linker, "/export:asin=\"C:\\Windows\\System32\\msvcrt.asin\"") -#pragma comment(linker, "/export:asinf=\"C:\\Windows\\System32\\msvcrt.asinf\"") -#pragma comment(linker, "/export:atan=\"C:\\Windows\\System32\\msvcrt.atan\"") -#pragma comment(linker, "/export:atan2=\"C:\\Windows\\System32\\msvcrt.atan2\"") -#pragma comment(linker, "/export:atan2f=\"C:\\Windows\\System32\\msvcrt.atan2f\"") -#pragma comment(linker, "/export:atanf=\"C:\\Windows\\System32\\msvcrt.atanf\"") -#pragma comment(linker, "/export:atexit=\"C:\\Windows\\System32\\msvcrt.atexit\"") -#pragma comment(linker, "/export:atof=\"C:\\Windows\\System32\\msvcrt.atof\"") -#pragma comment(linker, "/export:atoi=\"C:\\Windows\\System32\\msvcrt.atoi\"") -#pragma comment(linker, "/export:atol=\"C:\\Windows\\System32\\msvcrt.atol\"") -#pragma comment(linker, "/export:bsearch=\"C:\\Windows\\System32\\msvcrt.bsearch\"") -#pragma comment(linker, "/export:bsearch_s=\"C:\\Windows\\System32\\msvcrt.bsearch_s\"") -#pragma comment(linker, "/export:btowc=\"C:\\Windows\\System32\\msvcrt.btowc\"") -#pragma comment(linker, "/export:calloc=\"C:\\Windows\\System32\\msvcrt.calloc\"") -#pragma comment(linker, "/export:ceil=\"C:\\Windows\\System32\\msvcrt.ceil\"") -#pragma comment(linker, "/export:ceilf=\"C:\\Windows\\System32\\msvcrt.ceilf\"") -#pragma comment(linker, "/export:clearerr=\"C:\\Windows\\System32\\msvcrt.clearerr\"") -#pragma comment(linker, "/export:clearerr_s=\"C:\\Windows\\System32\\msvcrt.clearerr_s\"") -#pragma comment(linker, "/export:clock=\"C:\\Windows\\System32\\msvcrt.clock\"") -#pragma comment(linker, "/export:cos=\"C:\\Windows\\System32\\msvcrt.cos\"") -#pragma comment(linker, "/export:cosf=\"C:\\Windows\\System32\\msvcrt.cosf\"") -#pragma comment(linker, "/export:cosh=\"C:\\Windows\\System32\\msvcrt.cosh\"") -#pragma comment(linker, "/export:coshf=\"C:\\Windows\\System32\\msvcrt.coshf\"") -#pragma comment(linker, "/export:ctime=\"C:\\Windows\\System32\\msvcrt.ctime\"") -#pragma comment(linker, "/export:difftime=\"C:\\Windows\\System32\\msvcrt.difftime\"") -#pragma comment(linker, "/export:div=\"C:\\Windows\\System32\\msvcrt.div\"") -#pragma comment(linker, "/export:exit=\"C:\\Windows\\System32\\msvcrt.exit\"") -#pragma comment(linker, "/export:exp=\"C:\\Windows\\System32\\msvcrt.exp\"") -#pragma comment(linker, "/export:expf=\"C:\\Windows\\System32\\msvcrt.expf\"") -#pragma comment(linker, "/export:fabs=\"C:\\Windows\\System32\\msvcrt.fabs\"") -#pragma comment(linker, "/export:fclose=\"C:\\Windows\\System32\\msvcrt.fclose\"") -#pragma comment(linker, "/export:feof=\"C:\\Windows\\System32\\msvcrt.feof\"") -#pragma comment(linker, "/export:ferror=\"C:\\Windows\\System32\\msvcrt.ferror\"") -#pragma comment(linker, "/export:fflush=\"C:\\Windows\\System32\\msvcrt.fflush\"") -#pragma comment(linker, "/export:fgetc=\"C:\\Windows\\System32\\msvcrt.fgetc\"") -#pragma comment(linker, "/export:fgetpos=\"C:\\Windows\\System32\\msvcrt.fgetpos\"") -#pragma comment(linker, "/export:fgets=\"C:\\Windows\\System32\\msvcrt.fgets\"") -#pragma comment(linker, "/export:fgetwc=\"C:\\Windows\\System32\\msvcrt.fgetwc\"") -#pragma comment(linker, "/export:fgetws=\"C:\\Windows\\System32\\msvcrt.fgetws\"") -#pragma comment(linker, "/export:floor=\"C:\\Windows\\System32\\msvcrt.floor\"") -#pragma comment(linker, "/export:floorf=\"C:\\Windows\\System32\\msvcrt.floorf\"") -#pragma comment(linker, "/export:fmod=\"C:\\Windows\\System32\\msvcrt.fmod\"") -#pragma comment(linker, "/export:fmodf=\"C:\\Windows\\System32\\msvcrt.fmodf\"") -#pragma comment(linker, "/export:fopen=\"C:\\Windows\\System32\\msvcrt.fopen\"") -#pragma comment(linker, "/export:fopen_s=\"C:\\Windows\\System32\\msvcrt.fopen_s\"") -#pragma comment(linker, "/export:fprintf=\"C:\\Windows\\System32\\msvcrt.fprintf\"") -#pragma comment(linker, "/export:fprintf_s=\"C:\\Windows\\System32\\msvcrt.fprintf_s\"") -#pragma comment(linker, "/export:fputc=\"C:\\Windows\\System32\\msvcrt.fputc\"") -#pragma comment(linker, "/export:fputs=\"C:\\Windows\\System32\\msvcrt.fputs\"") -#pragma comment(linker, "/export:fputwc=\"C:\\Windows\\System32\\msvcrt.fputwc\"") -#pragma comment(linker, "/export:fputws=\"C:\\Windows\\System32\\msvcrt.fputws\"") -#pragma comment(linker, "/export:fread=\"C:\\Windows\\System32\\msvcrt.fread\"") -#pragma comment(linker, "/export:free=\"C:\\Windows\\System32\\msvcrt.free\"") -#pragma comment(linker, "/export:freopen=\"C:\\Windows\\System32\\msvcrt.freopen\"") -#pragma comment(linker, "/export:freopen_s=\"C:\\Windows\\System32\\msvcrt.freopen_s\"") -#pragma comment(linker, "/export:frexp=\"C:\\Windows\\System32\\msvcrt.frexp\"") -#pragma comment(linker, "/export:fscanf=\"C:\\Windows\\System32\\msvcrt.fscanf\"") -#pragma comment(linker, "/export:fscanf_s=\"C:\\Windows\\System32\\msvcrt.fscanf_s\"") -#pragma comment(linker, "/export:fseek=\"C:\\Windows\\System32\\msvcrt.fseek\"") -#pragma comment(linker, "/export:fsetpos=\"C:\\Windows\\System32\\msvcrt.fsetpos\"") -#pragma comment(linker, "/export:ftell=\"C:\\Windows\\System32\\msvcrt.ftell\"") -#pragma comment(linker, "/export:fwprintf=\"C:\\Windows\\System32\\msvcrt.fwprintf\"") -#pragma comment(linker, "/export:fwprintf_s=\"C:\\Windows\\System32\\msvcrt.fwprintf_s\"") -#pragma comment(linker, "/export:fwrite=\"C:\\Windows\\System32\\msvcrt.fwrite\"") -#pragma comment(linker, "/export:fwscanf=\"C:\\Windows\\System32\\msvcrt.fwscanf\"") -#pragma comment(linker, "/export:fwscanf_s=\"C:\\Windows\\System32\\msvcrt.fwscanf_s\"") -#pragma comment(linker, "/export:getc=\"C:\\Windows\\System32\\msvcrt.getc\"") -#pragma comment(linker, "/export:getchar=\"C:\\Windows\\System32\\msvcrt.getchar\"") -#pragma comment(linker, "/export:getenv=\"C:\\Windows\\System32\\msvcrt.getenv\"") -#pragma comment(linker, "/export:getenv_s=\"C:\\Windows\\System32\\msvcrt.getenv_s\"") -#pragma comment(linker, "/export:gets=\"C:\\Windows\\System32\\msvcrt.gets\"") -#pragma comment(linker, "/export:getwc=\"C:\\Windows\\System32\\msvcrt.getwc\"") -#pragma comment(linker, "/export:getwchar=\"C:\\Windows\\System32\\msvcrt.getwchar\"") -#pragma comment(linker, "/export:gmtime=\"C:\\Windows\\System32\\msvcrt.gmtime\"") -#pragma comment(linker, "/export:is_wctype=\"C:\\Windows\\System32\\msvcrt.is_wctype\"") -#pragma comment(linker, "/export:isalnum=\"C:\\Windows\\System32\\msvcrt.isalnum\"") -#pragma comment(linker, "/export:isalpha=\"C:\\Windows\\System32\\msvcrt.isalpha\"") -#pragma comment(linker, "/export:iscntrl=\"C:\\Windows\\System32\\msvcrt.iscntrl\"") -#pragma comment(linker, "/export:isdigit=\"C:\\Windows\\System32\\msvcrt.isdigit\"") -#pragma comment(linker, "/export:isgraph=\"C:\\Windows\\System32\\msvcrt.isgraph\"") -#pragma comment(linker, "/export:isleadbyte=\"C:\\Windows\\System32\\msvcrt.isleadbyte\"") -#pragma comment(linker, "/export:islower=\"C:\\Windows\\System32\\msvcrt.islower\"") -#pragma comment(linker, "/export:isprint=\"C:\\Windows\\System32\\msvcrt.isprint\"") -#pragma comment(linker, "/export:ispunct=\"C:\\Windows\\System32\\msvcrt.ispunct\"") -#pragma comment(linker, "/export:isspace=\"C:\\Windows\\System32\\msvcrt.isspace\"") -#pragma comment(linker, "/export:isupper=\"C:\\Windows\\System32\\msvcrt.isupper\"") -#pragma comment(linker, "/export:iswalnum=\"C:\\Windows\\System32\\msvcrt.iswalnum\"") -#pragma comment(linker, "/export:iswalpha=\"C:\\Windows\\System32\\msvcrt.iswalpha\"") -#pragma comment(linker, "/export:iswascii=\"C:\\Windows\\System32\\msvcrt.iswascii\"") -#pragma comment(linker, "/export:iswcntrl=\"C:\\Windows\\System32\\msvcrt.iswcntrl\"") -#pragma comment(linker, "/export:iswctype=\"C:\\Windows\\System32\\msvcrt.iswctype\"") -#pragma comment(linker, "/export:iswdigit=\"C:\\Windows\\System32\\msvcrt.iswdigit\"") -#pragma comment(linker, "/export:iswgraph=\"C:\\Windows\\System32\\msvcrt.iswgraph\"") -#pragma comment(linker, "/export:iswlower=\"C:\\Windows\\System32\\msvcrt.iswlower\"") -#pragma comment(linker, "/export:iswprint=\"C:\\Windows\\System32\\msvcrt.iswprint\"") -#pragma comment(linker, "/export:iswpunct=\"C:\\Windows\\System32\\msvcrt.iswpunct\"") -#pragma comment(linker, "/export:iswspace=\"C:\\Windows\\System32\\msvcrt.iswspace\"") -#pragma comment(linker, "/export:iswupper=\"C:\\Windows\\System32\\msvcrt.iswupper\"") -#pragma comment(linker, "/export:iswxdigit=\"C:\\Windows\\System32\\msvcrt.iswxdigit\"") -#pragma comment(linker, "/export:isxdigit=\"C:\\Windows\\System32\\msvcrt.isxdigit\"") -#pragma comment(linker, "/export:labs=\"C:\\Windows\\System32\\msvcrt.labs\"") -#pragma comment(linker, "/export:ldexp=\"C:\\Windows\\System32\\msvcrt.ldexp\"") -#pragma comment(linker, "/export:ldiv=\"C:\\Windows\\System32\\msvcrt.ldiv\"") -#pragma comment(linker, "/export:localeconv=\"C:\\Windows\\System32\\msvcrt.localeconv\"") -#pragma comment(linker, "/export:localtime=\"C:\\Windows\\System32\\msvcrt.localtime\"") -#pragma comment(linker, "/export:log=\"C:\\Windows\\System32\\msvcrt.log\"") -#pragma comment(linker, "/export:log10=\"C:\\Windows\\System32\\msvcrt.log10\"") -#pragma comment(linker, "/export:log10f=\"C:\\Windows\\System32\\msvcrt.log10f\"") -#pragma comment(linker, "/export:logf=\"C:\\Windows\\System32\\msvcrt.logf\"") -#pragma comment(linker, "/export:longjmp=\"C:\\Windows\\System32\\msvcrt.longjmp\"") -#pragma comment(linker, "/export:malloc=\"C:\\Windows\\System32\\msvcrt.malloc\"") -#pragma comment(linker, "/export:mblen=\"C:\\Windows\\System32\\msvcrt.mblen\"") -#pragma comment(linker, "/export:mbrlen=\"C:\\Windows\\System32\\msvcrt.mbrlen\"") -#pragma comment(linker, "/export:mbrtowc=\"C:\\Windows\\System32\\msvcrt.mbrtowc\"") -#pragma comment(linker, "/export:mbsdup_dbg=\"C:\\Windows\\System32\\msvcrt.mbsdup_dbg\"") -#pragma comment(linker, "/export:mbsrtowcs=\"C:\\Windows\\System32\\msvcrt.mbsrtowcs\"") -#pragma comment(linker, "/export:mbsrtowcs_s=\"C:\\Windows\\System32\\msvcrt.mbsrtowcs_s\"") -#pragma comment(linker, "/export:mbstowcs=\"C:\\Windows\\System32\\msvcrt.mbstowcs\"") -#pragma comment(linker, "/export:mbstowcs_s=\"C:\\Windows\\System32\\msvcrt.mbstowcs_s\"") -#pragma comment(linker, "/export:mbtowc=\"C:\\Windows\\System32\\msvcrt.mbtowc\"") -#pragma comment(linker, "/export:memchr=\"C:\\Windows\\System32\\msvcrt.memchr\"") -#pragma comment(linker, "/export:memcmp=\"C:\\Windows\\System32\\msvcrt.memcmp\"") -#pragma comment(linker, "/export:memcpy=\"C:\\Windows\\System32\\msvcrt.memcpy\"") -#pragma comment(linker, "/export:memcpy_s=\"C:\\Windows\\System32\\msvcrt.memcpy_s\"") -#pragma comment(linker, "/export:memmove=\"C:\\Windows\\System32\\msvcrt.memmove\"") -#pragma comment(linker, "/export:memmove_s=\"C:\\Windows\\System32\\msvcrt.memmove_s\"") -#pragma comment(linker, "/export:memset=\"C:\\Windows\\System32\\msvcrt.memset\"") -#pragma comment(linker, "/export:mktime=\"C:\\Windows\\System32\\msvcrt.mktime\"") -#pragma comment(linker, "/export:modf=\"C:\\Windows\\System32\\msvcrt.modf\"") -#pragma comment(linker, "/export:modff=\"C:\\Windows\\System32\\msvcrt.modff\"") -#pragma comment(linker, "/export:perror=\"C:\\Windows\\System32\\msvcrt.perror\"") -#pragma comment(linker, "/export:pow=\"C:\\Windows\\System32\\msvcrt.pow\"") -#pragma comment(linker, "/export:powf=\"C:\\Windows\\System32\\msvcrt.powf\"") -#pragma comment(linker, "/export:printf=\"C:\\Windows\\System32\\msvcrt.printf\"") -#pragma comment(linker, "/export:printf_s=\"C:\\Windows\\System32\\msvcrt.printf_s\"") -#pragma comment(linker, "/export:putc=\"C:\\Windows\\System32\\msvcrt.putc\"") -#pragma comment(linker, "/export:putchar=\"C:\\Windows\\System32\\msvcrt.putchar\"") -#pragma comment(linker, "/export:puts=\"C:\\Windows\\System32\\msvcrt.puts\"") -#pragma comment(linker, "/export:putwc=\"C:\\Windows\\System32\\msvcrt.putwc\"") -#pragma comment(linker, "/export:putwchar=\"C:\\Windows\\System32\\msvcrt.putwchar\"") -#pragma comment(linker, "/export:qsort=\"C:\\Windows\\System32\\msvcrt.qsort\"") -#pragma comment(linker, "/export:qsort_s=\"C:\\Windows\\System32\\msvcrt.qsort_s\"") -#pragma comment(linker, "/export:raise=\"C:\\Windows\\System32\\msvcrt.raise\"") -#pragma comment(linker, "/export:rand=\"C:\\Windows\\System32\\msvcrt.rand\"") -#pragma comment(linker, "/export:rand_s=\"C:\\Windows\\System32\\msvcrt.rand_s\"") -#pragma comment(linker, "/export:realloc=\"C:\\Windows\\System32\\msvcrt.realloc\"") -#pragma comment(linker, "/export:remove=\"C:\\Windows\\System32\\msvcrt.remove\"") -#pragma comment(linker, "/export:rename=\"C:\\Windows\\System32\\msvcrt.rename\"") -#pragma comment(linker, "/export:rewind=\"C:\\Windows\\System32\\msvcrt.rewind\"") -#pragma comment(linker, "/export:scanf=\"C:\\Windows\\System32\\msvcrt.scanf\"") -#pragma comment(linker, "/export:scanf_s=\"C:\\Windows\\System32\\msvcrt.scanf_s\"") -#pragma comment(linker, "/export:setbuf=\"C:\\Windows\\System32\\msvcrt.setbuf\"") -#pragma comment(linker, "/export:setjmp=\"C:\\Windows\\System32\\msvcrt.setjmp\"") -#pragma comment(linker, "/export:setlocale=\"C:\\Windows\\System32\\msvcrt.setlocale\"") -#pragma comment(linker, "/export:setvbuf=\"C:\\Windows\\System32\\msvcrt.setvbuf\"") -#pragma comment(linker, "/export:signal=\"C:\\Windows\\System32\\msvcrt.signal\"") -#pragma comment(linker, "/export:sin=\"C:\\Windows\\System32\\msvcrt.sin\"") -#pragma comment(linker, "/export:sinf=\"C:\\Windows\\System32\\msvcrt.sinf\"") -#pragma comment(linker, "/export:sinh=\"C:\\Windows\\System32\\msvcrt.sinh\"") -#pragma comment(linker, "/export:sinhf=\"C:\\Windows\\System32\\msvcrt.sinhf\"") -#pragma comment(linker, "/export:sprintf=\"C:\\Windows\\System32\\msvcrt.sprintf\"") -#pragma comment(linker, "/export:sprintf_s=\"C:\\Windows\\System32\\msvcrt.sprintf_s\"") -#pragma comment(linker, "/export:sqrt=\"C:\\Windows\\System32\\msvcrt.sqrt\"") -#pragma comment(linker, "/export:sqrtf=\"C:\\Windows\\System32\\msvcrt.sqrtf\"") -#pragma comment(linker, "/export:srand=\"C:\\Windows\\System32\\msvcrt.srand\"") -#pragma comment(linker, "/export:sscanf=\"C:\\Windows\\System32\\msvcrt.sscanf\"") -#pragma comment(linker, "/export:sscanf_s=\"C:\\Windows\\System32\\msvcrt.sscanf_s\"") -#pragma comment(linker, "/export:strcat=\"C:\\Windows\\System32\\msvcrt.strcat\"") -#pragma comment(linker, "/export:strcat_s=\"C:\\Windows\\System32\\msvcrt.strcat_s\"") -#pragma comment(linker, "/export:strchr=\"C:\\Windows\\System32\\msvcrt.strchr\"") -#pragma comment(linker, "/export:strcmp=\"C:\\Windows\\System32\\msvcrt.strcmp\"") -#pragma comment(linker, "/export:strcoll=\"C:\\Windows\\System32\\msvcrt.strcoll\"") -#pragma comment(linker, "/export:strcpy=\"C:\\Windows\\System32\\msvcrt.strcpy\"") -#pragma comment(linker, "/export:strcpy_s=\"C:\\Windows\\System32\\msvcrt.strcpy_s\"") -#pragma comment(linker, "/export:strcspn=\"C:\\Windows\\System32\\msvcrt.strcspn\"") -#pragma comment(linker, "/export:strerror=\"C:\\Windows\\System32\\msvcrt.strerror\"") -#pragma comment(linker, "/export:strerror_s=\"C:\\Windows\\System32\\msvcrt.strerror_s\"") -#pragma comment(linker, "/export:strftime=\"C:\\Windows\\System32\\msvcrt.strftime\"") -#pragma comment(linker, "/export:strlen=\"C:\\Windows\\System32\\msvcrt.strlen\"") -#pragma comment(linker, "/export:strncat=\"C:\\Windows\\System32\\msvcrt.strncat\"") -#pragma comment(linker, "/export:strncat_s=\"C:\\Windows\\System32\\msvcrt.strncat_s\"") -#pragma comment(linker, "/export:strncmp=\"C:\\Windows\\System32\\msvcrt.strncmp\"") -#pragma comment(linker, "/export:strncpy=\"C:\\Windows\\System32\\msvcrt.strncpy\"") -#pragma comment(linker, "/export:strncpy_s=\"C:\\Windows\\System32\\msvcrt.strncpy_s\"") -#pragma comment(linker, "/export:strnlen=\"C:\\Windows\\System32\\msvcrt.strnlen\"") -#pragma comment(linker, "/export:strpbrk=\"C:\\Windows\\System32\\msvcrt.strpbrk\"") -#pragma comment(linker, "/export:strrchr=\"C:\\Windows\\System32\\msvcrt.strrchr\"") -#pragma comment(linker, "/export:strspn=\"C:\\Windows\\System32\\msvcrt.strspn\"") -#pragma comment(linker, "/export:strstr=\"C:\\Windows\\System32\\msvcrt.strstr\"") -#pragma comment(linker, "/export:strtod=\"C:\\Windows\\System32\\msvcrt.strtod\"") -#pragma comment(linker, "/export:strtok=\"C:\\Windows\\System32\\msvcrt.strtok\"") -#pragma comment(linker, "/export:strtok_s=\"C:\\Windows\\System32\\msvcrt.strtok_s\"") -#pragma comment(linker, "/export:strtol=\"C:\\Windows\\System32\\msvcrt.strtol\"") -#pragma comment(linker, "/export:strtoul=\"C:\\Windows\\System32\\msvcrt.strtoul\"") -#pragma comment(linker, "/export:strxfrm=\"C:\\Windows\\System32\\msvcrt.strxfrm\"") -#pragma comment(linker, "/export:swprintf=\"C:\\Windows\\System32\\msvcrt.swprintf\"") -#pragma comment(linker, "/export:swprintf_s=\"C:\\Windows\\System32\\msvcrt.swprintf_s\"") -#pragma comment(linker, "/export:swscanf=\"C:\\Windows\\System32\\msvcrt.swscanf\"") -#pragma comment(linker, "/export:swscanf_s=\"C:\\Windows\\System32\\msvcrt.swscanf_s\"") -#pragma comment(linker, "/export:system=\"C:\\Windows\\System32\\msvcrt.system\"") -#pragma comment(linker, "/export:tan=\"C:\\Windows\\System32\\msvcrt.tan\"") -#pragma comment(linker, "/export:tanf=\"C:\\Windows\\System32\\msvcrt.tanf\"") -#pragma comment(linker, "/export:tanh=\"C:\\Windows\\System32\\msvcrt.tanh\"") -#pragma comment(linker, "/export:tanhf=\"C:\\Windows\\System32\\msvcrt.tanhf\"") -#pragma comment(linker, "/export:time=\"C:\\Windows\\System32\\msvcrt.time\"") -#pragma comment(linker, "/export:tmpfile=\"C:\\Windows\\System32\\msvcrt.tmpfile\"") -#pragma comment(linker, "/export:tmpfile_s=\"C:\\Windows\\System32\\msvcrt.tmpfile_s\"") -#pragma comment(linker, "/export:tmpnam=\"C:\\Windows\\System32\\msvcrt.tmpnam\"") -#pragma comment(linker, "/export:tmpnam_s=\"C:\\Windows\\System32\\msvcrt.tmpnam_s\"") -#pragma comment(linker, "/export:tolower=\"C:\\Windows\\System32\\msvcrt.tolower\"") -#pragma comment(linker, "/export:toupper=\"C:\\Windows\\System32\\msvcrt.toupper\"") -#pragma comment(linker, "/export:towlower=\"C:\\Windows\\System32\\msvcrt.towlower\"") -#pragma comment(linker, "/export:towupper=\"C:\\Windows\\System32\\msvcrt.towupper\"") -#pragma comment(linker, "/export:ungetc=\"C:\\Windows\\System32\\msvcrt.ungetc\"") -#pragma comment(linker, "/export:ungetwc=\"C:\\Windows\\System32\\msvcrt.ungetwc\"") -#pragma comment(linker, "/export:utime=\"C:\\Windows\\System32\\msvcrt.utime\"") -#pragma comment(linker, "/export:vfprintf=\"C:\\Windows\\System32\\msvcrt.vfprintf\"") -#pragma comment(linker, "/export:vfprintf_s=\"C:\\Windows\\System32\\msvcrt.vfprintf_s\"") -#pragma comment(linker, "/export:vfwprintf=\"C:\\Windows\\System32\\msvcrt.vfwprintf\"") -#pragma comment(linker, "/export:vfwprintf_s=\"C:\\Windows\\System32\\msvcrt.vfwprintf_s\"") -#pragma comment(linker, "/export:vprintf=\"C:\\Windows\\System32\\msvcrt.vprintf\"") -#pragma comment(linker, "/export:vprintf_s=\"C:\\Windows\\System32\\msvcrt.vprintf_s\"") -#pragma comment(linker, "/export:vsnprintf=\"C:\\Windows\\System32\\msvcrt.vsnprintf\"") -#pragma comment(linker, "/export:vsprintf=\"C:\\Windows\\System32\\msvcrt.vsprintf\"") -#pragma comment(linker, "/export:vsprintf_s=\"C:\\Windows\\System32\\msvcrt.vsprintf_s\"") -#pragma comment(linker, "/export:vswprintf=\"C:\\Windows\\System32\\msvcrt.vswprintf\"") -#pragma comment(linker, "/export:vswprintf_s=\"C:\\Windows\\System32\\msvcrt.vswprintf_s\"") -#pragma comment(linker, "/export:vwprintf=\"C:\\Windows\\System32\\msvcrt.vwprintf\"") -#pragma comment(linker, "/export:vwprintf_s=\"C:\\Windows\\System32\\msvcrt.vwprintf_s\"") -#pragma comment(linker, "/export:wcrtomb=\"C:\\Windows\\System32\\msvcrt.wcrtomb\"") -#pragma comment(linker, "/export:wcrtomb_s=\"C:\\Windows\\System32\\msvcrt.wcrtomb_s\"") -#pragma comment(linker, "/export:wcscat=\"C:\\Windows\\System32\\msvcrt.wcscat\"") -#pragma comment(linker, "/export:wcscat_s=\"C:\\Windows\\System32\\msvcrt.wcscat_s\"") -#pragma comment(linker, "/export:wcschr=\"C:\\Windows\\System32\\msvcrt.wcschr\"") -#pragma comment(linker, "/export:wcscmp=\"C:\\Windows\\System32\\msvcrt.wcscmp\"") -#pragma comment(linker, "/export:wcscoll=\"C:\\Windows\\System32\\msvcrt.wcscoll\"") -#pragma comment(linker, "/export:wcscpy=\"C:\\Windows\\System32\\msvcrt.wcscpy\"") -#pragma comment(linker, "/export:wcscpy_s=\"C:\\Windows\\System32\\msvcrt.wcscpy_s\"") -#pragma comment(linker, "/export:wcscspn=\"C:\\Windows\\System32\\msvcrt.wcscspn\"") -#pragma comment(linker, "/export:wcsftime=\"C:\\Windows\\System32\\msvcrt.wcsftime\"") -#pragma comment(linker, "/export:wcslen=\"C:\\Windows\\System32\\msvcrt.wcslen\"") -#pragma comment(linker, "/export:wcsncat=\"C:\\Windows\\System32\\msvcrt.wcsncat\"") -#pragma comment(linker, "/export:wcsncat_s=\"C:\\Windows\\System32\\msvcrt.wcsncat_s\"") -#pragma comment(linker, "/export:wcsncmp=\"C:\\Windows\\System32\\msvcrt.wcsncmp\"") -#pragma comment(linker, "/export:wcsncpy=\"C:\\Windows\\System32\\msvcrt.wcsncpy\"") -#pragma comment(linker, "/export:wcsncpy_s=\"C:\\Windows\\System32\\msvcrt.wcsncpy_s\"") -#pragma comment(linker, "/export:wcsnlen=\"C:\\Windows\\System32\\msvcrt.wcsnlen\"") -#pragma comment(linker, "/export:wcspbrk=\"C:\\Windows\\System32\\msvcrt.wcspbrk\"") -#pragma comment(linker, "/export:wcsrchr=\"C:\\Windows\\System32\\msvcrt.wcsrchr\"") -#pragma comment(linker, "/export:wcsrtombs=\"C:\\Windows\\System32\\msvcrt.wcsrtombs\"") -#pragma comment(linker, "/export:wcsrtombs_s=\"C:\\Windows\\System32\\msvcrt.wcsrtombs_s\"") -#pragma comment(linker, "/export:wcsspn=\"C:\\Windows\\System32\\msvcrt.wcsspn\"") -#pragma comment(linker, "/export:wcsstr=\"C:\\Windows\\System32\\msvcrt.wcsstr\"") -#pragma comment(linker, "/export:wcstod=\"C:\\Windows\\System32\\msvcrt.wcstod\"") -#pragma comment(linker, "/export:wcstok=\"C:\\Windows\\System32\\msvcrt.wcstok\"") -#pragma comment(linker, "/export:wcstok_s=\"C:\\Windows\\System32\\msvcrt.wcstok_s\"") -#pragma comment(linker, "/export:wcstol=\"C:\\Windows\\System32\\msvcrt.wcstol\"") -#pragma comment(linker, "/export:wcstombs=\"C:\\Windows\\System32\\msvcrt.wcstombs\"") -#pragma comment(linker, "/export:wcstombs_s=\"C:\\Windows\\System32\\msvcrt.wcstombs_s\"") -#pragma comment(linker, "/export:wcstoul=\"C:\\Windows\\System32\\msvcrt.wcstoul\"") -#pragma comment(linker, "/export:wcsxfrm=\"C:\\Windows\\System32\\msvcrt.wcsxfrm\"") -#pragma comment(linker, "/export:wctob=\"C:\\Windows\\System32\\msvcrt.wctob\"") -#pragma comment(linker, "/export:wctomb=\"C:\\Windows\\System32\\msvcrt.wctomb\"") -#pragma comment(linker, "/export:wctomb_s=\"C:\\Windows\\System32\\msvcrt.wctomb_s\"") -#pragma comment(linker, "/export:wprintf=\"C:\\Windows\\System32\\msvcrt.wprintf\"") -#pragma comment(linker, "/export:wprintf_s=\"C:\\Windows\\System32\\msvcrt.wprintf_s\"") -#pragma comment(linker, "/export:wscanf=\"C:\\Windows\\System32\\msvcrt.wscanf\"") -#pragma comment(linker, "/export:wscanf_s=\"C:\\Windows\\System32\\msvcrt.wscanf_s\"") +// Exports for ucrtbase.dll (Version 10.0.19041.7181, sha256-76ccf6a3e09ef2ecae1b0b43e5c22c500a3228aae048b734b6772ebd1ed2e0bb) +#pragma region ucrtbase.dll export forwarding +#pragma comment(linker, "/export:_Cbuild=\"C:\\Windows\\System32\\ucrtbase._Cbuild\"") +#pragma comment(linker, "/export:_Cmulcc=\"C:\\Windows\\System32\\ucrtbase._Cmulcc\"") +#pragma comment(linker, "/export:_Cmulcr=\"C:\\Windows\\System32\\ucrtbase._Cmulcr\"") +#pragma comment(linker, "/export:_CreateFrameInfo=\"C:\\Windows\\System32\\ucrtbase._CreateFrameInfo\"") +#pragma comment(linker, "/export:_CxxThrowException=\"C:\\Windows\\System32\\ucrtbase._CxxThrowException\"") +#pragma comment(linker, "/export:_Exit=\"C:\\Windows\\System32\\ucrtbase._Exit\"") +#pragma comment(linker, "/export:_FCbuild=\"C:\\Windows\\System32\\ucrtbase._FCbuild\"") +#pragma comment(linker, "/export:_FCmulcc=\"C:\\Windows\\System32\\ucrtbase._FCmulcc\"") +#pragma comment(linker, "/export:_FCmulcr=\"C:\\Windows\\System32\\ucrtbase._FCmulcr\"") +#pragma comment(linker, "/export:_FindAndUnlinkFrame=\"C:\\Windows\\System32\\ucrtbase._FindAndUnlinkFrame\"") +#pragma comment(linker, "/export:_GetImageBase=\"C:\\Windows\\System32\\ucrtbase._GetImageBase\"") +#pragma comment(linker, "/export:_GetThrowImageBase=\"C:\\Windows\\System32\\ucrtbase._GetThrowImageBase\"") +#pragma comment(linker, "/export:_Getdays=\"C:\\Windows\\System32\\ucrtbase._Getdays\"") +#pragma comment(linker, "/export:_Getmonths=\"C:\\Windows\\System32\\ucrtbase._Getmonths\"") +#pragma comment(linker, "/export:_Gettnames=\"C:\\Windows\\System32\\ucrtbase._Gettnames\"") +#pragma comment(linker, "/export:_IsExceptionObjectToBeDestroyed=\"C:\\Windows\\System32\\ucrtbase._IsExceptionObjectToBeDestroyed\"") +#pragma comment(linker, "/export:_LCbuild=\"C:\\Windows\\System32\\ucrtbase._LCbuild\"") +#pragma comment(linker, "/export:_LCmulcc=\"C:\\Windows\\System32\\ucrtbase._LCmulcc\"") +#pragma comment(linker, "/export:_LCmulcr=\"C:\\Windows\\System32\\ucrtbase._LCmulcr\"") +#pragma comment(linker, "/export:_SetImageBase=\"C:\\Windows\\System32\\ucrtbase._SetImageBase\"") +#pragma comment(linker, "/export:_SetThrowImageBase=\"C:\\Windows\\System32\\ucrtbase._SetThrowImageBase\"") +#pragma comment(linker, "/export:_SetWinRTOutOfMemoryExceptionCallback=\"C:\\Windows\\System32\\ucrtbase._SetWinRTOutOfMemoryExceptionCallback\"") +#pragma comment(linker, "/export:_Strftime=\"C:\\Windows\\System32\\ucrtbase._Strftime\"") +#pragma comment(linker, "/export:_W_Getdays=\"C:\\Windows\\System32\\ucrtbase._W_Getdays\"") +#pragma comment(linker, "/export:_W_Getmonths=\"C:\\Windows\\System32\\ucrtbase._W_Getmonths\"") +#pragma comment(linker, "/export:_W_Gettnames=\"C:\\Windows\\System32\\ucrtbase._W_Gettnames\"") +#pragma comment(linker, "/export:_Wcsftime=\"C:\\Windows\\System32\\ucrtbase._Wcsftime\"") +#pragma comment(linker, "/export:__AdjustPointer=\"C:\\Windows\\System32\\ucrtbase.__AdjustPointer\"") +#pragma comment(linker, "/export:__BuildCatchObject=\"C:\\Windows\\System32\\ucrtbase.__BuildCatchObject\"") +#pragma comment(linker, "/export:__BuildCatchObjectHelper=\"C:\\Windows\\System32\\ucrtbase.__BuildCatchObjectHelper\"") +#pragma comment(linker, "/export:__C_specific_handler=\"C:\\Windows\\System32\\ucrtbase.__C_specific_handler\"") +#pragma comment(linker, "/export:__C_specific_handler_noexcept=\"C:\\Windows\\System32\\ucrtbase.__C_specific_handler_noexcept\"") +#pragma comment(linker, "/export:__CxxDetectRethrow=\"C:\\Windows\\System32\\ucrtbase.__CxxDetectRethrow\"") +#pragma comment(linker, "/export:__CxxExceptionFilter=\"C:\\Windows\\System32\\ucrtbase.__CxxExceptionFilter\"") +#pragma comment(linker, "/export:__CxxFrameHandler=\"C:\\Windows\\System32\\ucrtbase.__CxxFrameHandler\"") +#pragma comment(linker, "/export:__CxxFrameHandler2=\"C:\\Windows\\System32\\ucrtbase.__CxxFrameHandler2\"") +#pragma comment(linker, "/export:__CxxFrameHandler3=\"C:\\Windows\\System32\\ucrtbase.__CxxFrameHandler3\"") +#pragma comment(linker, "/export:__CxxFrameHandler4=\"C:\\Windows\\System32\\ucrtbase.__CxxFrameHandler4\"") +#pragma comment(linker, "/export:__CxxQueryExceptionSize=\"C:\\Windows\\System32\\ucrtbase.__CxxQueryExceptionSize\"") +#pragma comment(linker, "/export:__CxxRegisterExceptionObject=\"C:\\Windows\\System32\\ucrtbase.__CxxRegisterExceptionObject\"") +#pragma comment(linker, "/export:__CxxUnregisterExceptionObject=\"C:\\Windows\\System32\\ucrtbase.__CxxUnregisterExceptionObject\"") +#pragma comment(linker, "/export:__DestructExceptionObject=\"C:\\Windows\\System32\\ucrtbase.__DestructExceptionObject\"") +#pragma comment(linker, "/export:__FrameUnwindFilter=\"C:\\Windows\\System32\\ucrtbase.__FrameUnwindFilter\"") +#pragma comment(linker, "/export:__GetPlatformExceptionInfo=\"C:\\Windows\\System32\\ucrtbase.__GetPlatformExceptionInfo\"") +#pragma comment(linker, "/export:__NLG_Dispatch2=\"C:\\Windows\\System32\\ucrtbase.__NLG_Dispatch2\"") +#pragma comment(linker, "/export:__NLG_Return2=\"C:\\Windows\\System32\\ucrtbase.__NLG_Return2\"") +#pragma comment(linker, "/export:__RTCastToVoid=\"C:\\Windows\\System32\\ucrtbase.__RTCastToVoid\"") +#pragma comment(linker, "/export:__RTDynamicCast=\"C:\\Windows\\System32\\ucrtbase.__RTDynamicCast\"") +#pragma comment(linker, "/export:__RTtypeid=\"C:\\Windows\\System32\\ucrtbase.__RTtypeid\"") +#pragma comment(linker, "/export:__TypeMatch=\"C:\\Windows\\System32\\ucrtbase.__TypeMatch\"") +#pragma comment(linker, "/export:___lc_codepage_func=\"C:\\Windows\\System32\\ucrtbase.___lc_codepage_func\"") +#pragma comment(linker, "/export:___lc_collate_cp_func=\"C:\\Windows\\System32\\ucrtbase.___lc_collate_cp_func\"") +#pragma comment(linker, "/export:___lc_locale_name_func=\"C:\\Windows\\System32\\ucrtbase.___lc_locale_name_func\"") +#pragma comment(linker, "/export:___mb_cur_max_func=\"C:\\Windows\\System32\\ucrtbase.___mb_cur_max_func\"") +#pragma comment(linker, "/export:___mb_cur_max_l_func=\"C:\\Windows\\System32\\ucrtbase.___mb_cur_max_l_func\"") +#pragma comment(linker, "/export:__acrt_iob_func=\"C:\\Windows\\System32\\ucrtbase.__acrt_iob_func\"") +#pragma comment(linker, "/export:__conio_common_vcprintf=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcprintf\"") +#pragma comment(linker, "/export:__conio_common_vcprintf_p=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcprintf_p\"") +#pragma comment(linker, "/export:__conio_common_vcprintf_s=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcprintf_s\"") +#pragma comment(linker, "/export:__conio_common_vcscanf=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcscanf\"") +#pragma comment(linker, "/export:__conio_common_vcwprintf=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcwprintf\"") +#pragma comment(linker, "/export:__conio_common_vcwprintf_p=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcwprintf_p\"") +#pragma comment(linker, "/export:__conio_common_vcwprintf_s=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcwprintf_s\"") +#pragma comment(linker, "/export:__conio_common_vcwscanf=\"C:\\Windows\\System32\\ucrtbase.__conio_common_vcwscanf\"") +#pragma comment(linker, "/export:__current_exception=\"C:\\Windows\\System32\\ucrtbase.__current_exception\"") +#pragma comment(linker, "/export:__current_exception_context=\"C:\\Windows\\System32\\ucrtbase.__current_exception_context\"") +#pragma comment(linker, "/export:__daylight=\"C:\\Windows\\System32\\ucrtbase.__daylight\"") +#pragma comment(linker, "/export:__dcrt_get_wide_environment_from_os=\"C:\\Windows\\System32\\ucrtbase.__dcrt_get_wide_environment_from_os\"") +#pragma comment(linker, "/export:__dcrt_initial_narrow_environment=\"C:\\Windows\\System32\\ucrtbase.__dcrt_initial_narrow_environment\"") +#pragma comment(linker, "/export:__doserrno=\"C:\\Windows\\System32\\ucrtbase.__doserrno\"") +#pragma comment(linker, "/export:__dstbias=\"C:\\Windows\\System32\\ucrtbase.__dstbias\"") +#pragma comment(linker, "/export:__fpe_flt_rounds=\"C:\\Windows\\System32\\ucrtbase.__fpe_flt_rounds\"") +#pragma comment(linker, "/export:__fpecode=\"C:\\Windows\\System32\\ucrtbase.__fpecode\"") +#pragma comment(linker, "/export:__initialize_lconv_for_unsigned_char=\"C:\\Windows\\System32\\ucrtbase.__initialize_lconv_for_unsigned_char\"") +#pragma comment(linker, "/export:__intrinsic_setjmp=\"C:\\Windows\\System32\\ucrtbase.__intrinsic_setjmp\"") +#pragma comment(linker, "/export:__intrinsic_setjmpex=\"C:\\Windows\\System32\\ucrtbase.__intrinsic_setjmpex\"") +#pragma comment(linker, "/export:__isascii=\"C:\\Windows\\System32\\ucrtbase.__isascii\"") +#pragma comment(linker, "/export:__iscsym=\"C:\\Windows\\System32\\ucrtbase.__iscsym\"") +#pragma comment(linker, "/export:__iscsymf=\"C:\\Windows\\System32\\ucrtbase.__iscsymf\"") +#pragma comment(linker, "/export:__iswcsym=\"C:\\Windows\\System32\\ucrtbase.__iswcsym\"") +#pragma comment(linker, "/export:__iswcsymf=\"C:\\Windows\\System32\\ucrtbase.__iswcsymf\"") +#pragma comment(linker, "/export:__p___argc=\"C:\\Windows\\System32\\ucrtbase.__p___argc\"") +#pragma comment(linker, "/export:__p___argv=\"C:\\Windows\\System32\\ucrtbase.__p___argv\"") +#pragma comment(linker, "/export:__p___wargv=\"C:\\Windows\\System32\\ucrtbase.__p___wargv\"") +#pragma comment(linker, "/export:__p__acmdln=\"C:\\Windows\\System32\\ucrtbase.__p__acmdln\"") +#pragma comment(linker, "/export:__p__commode=\"C:\\Windows\\System32\\ucrtbase.__p__commode\"") +#pragma comment(linker, "/export:__p__environ=\"C:\\Windows\\System32\\ucrtbase.__p__environ\"") +#pragma comment(linker, "/export:__p__fmode=\"C:\\Windows\\System32\\ucrtbase.__p__fmode\"") +#pragma comment(linker, "/export:__p__mbcasemap=\"C:\\Windows\\System32\\ucrtbase.__p__mbcasemap\"") +#pragma comment(linker, "/export:__p__mbctype=\"C:\\Windows\\System32\\ucrtbase.__p__mbctype\"") +#pragma comment(linker, "/export:__p__pgmptr=\"C:\\Windows\\System32\\ucrtbase.__p__pgmptr\"") +#pragma comment(linker, "/export:__p__wcmdln=\"C:\\Windows\\System32\\ucrtbase.__p__wcmdln\"") +#pragma comment(linker, "/export:__p__wenviron=\"C:\\Windows\\System32\\ucrtbase.__p__wenviron\"") +#pragma comment(linker, "/export:__p__wpgmptr=\"C:\\Windows\\System32\\ucrtbase.__p__wpgmptr\"") +#pragma comment(linker, "/export:__pctype_func=\"C:\\Windows\\System32\\ucrtbase.__pctype_func\"") +#pragma comment(linker, "/export:__processing_throw=\"C:\\Windows\\System32\\ucrtbase.__processing_throw\"") +#pragma comment(linker, "/export:__pwctype_func=\"C:\\Windows\\System32\\ucrtbase.__pwctype_func\"") +#pragma comment(linker, "/export:__pxcptinfoptrs=\"C:\\Windows\\System32\\ucrtbase.__pxcptinfoptrs\"") +#pragma comment(linker, "/export:__report_gsfailure=\"C:\\Windows\\System32\\ucrtbase.__report_gsfailure\"") +#pragma comment(linker, "/export:__setusermatherr=\"C:\\Windows\\System32\\ucrtbase.__setusermatherr\"") +#pragma comment(linker, "/export:__std_exception_copy=\"C:\\Windows\\System32\\ucrtbase.__std_exception_copy\"") +#pragma comment(linker, "/export:__std_exception_destroy=\"C:\\Windows\\System32\\ucrtbase.__std_exception_destroy\"") +#pragma comment(linker, "/export:__std_terminate=\"C:\\Windows\\System32\\ucrtbase.__std_terminate\"") +#pragma comment(linker, "/export:__std_type_info_compare=\"C:\\Windows\\System32\\ucrtbase.__std_type_info_compare\"") +#pragma comment(linker, "/export:__std_type_info_destroy_list=\"C:\\Windows\\System32\\ucrtbase.__std_type_info_destroy_list\"") +#pragma comment(linker, "/export:__std_type_info_hash=\"C:\\Windows\\System32\\ucrtbase.__std_type_info_hash\"") +#pragma comment(linker, "/export:__std_type_info_name=\"C:\\Windows\\System32\\ucrtbase.__std_type_info_name\"") +#pragma comment(linker, "/export:__stdio_common_vfprintf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfprintf\"") +#pragma comment(linker, "/export:__stdio_common_vfprintf_p=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfprintf_p\"") +#pragma comment(linker, "/export:__stdio_common_vfprintf_s=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfprintf_s\"") +#pragma comment(linker, "/export:__stdio_common_vfscanf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfscanf\"") +#pragma comment(linker, "/export:__stdio_common_vfwprintf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfwprintf\"") +#pragma comment(linker, "/export:__stdio_common_vfwprintf_p=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfwprintf_p\"") +#pragma comment(linker, "/export:__stdio_common_vfwprintf_s=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfwprintf_s\"") +#pragma comment(linker, "/export:__stdio_common_vfwscanf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vfwscanf\"") +#pragma comment(linker, "/export:__stdio_common_vsnprintf_s=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vsnprintf_s\"") +#pragma comment(linker, "/export:__stdio_common_vsnwprintf_s=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vsnwprintf_s\"") +#pragma comment(linker, "/export:__stdio_common_vsprintf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vsprintf\"") +#pragma comment(linker, "/export:__stdio_common_vsprintf_p=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vsprintf_p\"") +#pragma comment(linker, "/export:__stdio_common_vsprintf_s=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vsprintf_s\"") +#pragma comment(linker, "/export:__stdio_common_vsscanf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vsscanf\"") +#pragma comment(linker, "/export:__stdio_common_vswprintf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vswprintf\"") +#pragma comment(linker, "/export:__stdio_common_vswprintf_p=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vswprintf_p\"") +#pragma comment(linker, "/export:__stdio_common_vswprintf_s=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vswprintf_s\"") +#pragma comment(linker, "/export:__stdio_common_vswscanf=\"C:\\Windows\\System32\\ucrtbase.__stdio_common_vswscanf\"") +#pragma comment(linker, "/export:__strncnt=\"C:\\Windows\\System32\\ucrtbase.__strncnt\"") +#pragma comment(linker, "/export:__sys_errlist=\"C:\\Windows\\System32\\ucrtbase.__sys_errlist\"") +#pragma comment(linker, "/export:__sys_nerr=\"C:\\Windows\\System32\\ucrtbase.__sys_nerr\"") +#pragma comment(linker, "/export:__threadhandle=\"C:\\Windows\\System32\\ucrtbase.__threadhandle\"") +#pragma comment(linker, "/export:__threadid=\"C:\\Windows\\System32\\ucrtbase.__threadid\"") +#pragma comment(linker, "/export:__timezone=\"C:\\Windows\\System32\\ucrtbase.__timezone\"") +#pragma comment(linker, "/export:__toascii=\"C:\\Windows\\System32\\ucrtbase.__toascii\"") +#pragma comment(linker, "/export:__tzname=\"C:\\Windows\\System32\\ucrtbase.__tzname\"") +#pragma comment(linker, "/export:__unDName=\"C:\\Windows\\System32\\ucrtbase.__unDName\"") +#pragma comment(linker, "/export:__unDNameEx=\"C:\\Windows\\System32\\ucrtbase.__unDNameEx\"") +#pragma comment(linker, "/export:__uncaught_exception=\"C:\\Windows\\System32\\ucrtbase.__uncaught_exception\"") +#pragma comment(linker, "/export:__uncaught_exceptions=\"C:\\Windows\\System32\\ucrtbase.__uncaught_exceptions\"") +#pragma comment(linker, "/export:__wcserror=\"C:\\Windows\\System32\\ucrtbase.__wcserror\"") +#pragma comment(linker, "/export:__wcserror_s=\"C:\\Windows\\System32\\ucrtbase.__wcserror_s\"") +#pragma comment(linker, "/export:__wcsncnt=\"C:\\Windows\\System32\\ucrtbase.__wcsncnt\"") +#pragma comment(linker, "/export:_abs64=\"C:\\Windows\\System32\\ucrtbase._abs64\"") +#pragma comment(linker, "/export:_access=\"C:\\Windows\\System32\\ucrtbase._access\"") +#pragma comment(linker, "/export:_access_s=\"C:\\Windows\\System32\\ucrtbase._access_s\"") +#pragma comment(linker, "/export:_aligned_free=\"C:\\Windows\\System32\\ucrtbase._aligned_free\"") +#pragma comment(linker, "/export:_aligned_malloc=\"C:\\Windows\\System32\\ucrtbase._aligned_malloc\"") +#pragma comment(linker, "/export:_aligned_msize=\"C:\\Windows\\System32\\ucrtbase._aligned_msize\"") +#pragma comment(linker, "/export:_aligned_offset_malloc=\"C:\\Windows\\System32\\ucrtbase._aligned_offset_malloc\"") +#pragma comment(linker, "/export:_aligned_offset_realloc=\"C:\\Windows\\System32\\ucrtbase._aligned_offset_realloc\"") +#pragma comment(linker, "/export:_aligned_offset_recalloc=\"C:\\Windows\\System32\\ucrtbase._aligned_offset_recalloc\"") +#pragma comment(linker, "/export:_aligned_realloc=\"C:\\Windows\\System32\\ucrtbase._aligned_realloc\"") +#pragma comment(linker, "/export:_aligned_recalloc=\"C:\\Windows\\System32\\ucrtbase._aligned_recalloc\"") +#pragma comment(linker, "/export:_assert=\"C:\\Windows\\System32\\ucrtbase._assert\"") +#pragma comment(linker, "/export:_atodbl=\"C:\\Windows\\System32\\ucrtbase._atodbl\"") +#pragma comment(linker, "/export:_atodbl_l=\"C:\\Windows\\System32\\ucrtbase._atodbl_l\"") +#pragma comment(linker, "/export:_atof_l=\"C:\\Windows\\System32\\ucrtbase._atof_l\"") +#pragma comment(linker, "/export:_atoflt=\"C:\\Windows\\System32\\ucrtbase._atoflt\"") +#pragma comment(linker, "/export:_atoflt_l=\"C:\\Windows\\System32\\ucrtbase._atoflt_l\"") +#pragma comment(linker, "/export:_atoi64=\"C:\\Windows\\System32\\ucrtbase._atoi64\"") +#pragma comment(linker, "/export:_atoi64_l=\"C:\\Windows\\System32\\ucrtbase._atoi64_l\"") +#pragma comment(linker, "/export:_atoi_l=\"C:\\Windows\\System32\\ucrtbase._atoi_l\"") +#pragma comment(linker, "/export:_atol_l=\"C:\\Windows\\System32\\ucrtbase._atol_l\"") +#pragma comment(linker, "/export:_atoldbl=\"C:\\Windows\\System32\\ucrtbase._atoldbl\"") +#pragma comment(linker, "/export:_atoldbl_l=\"C:\\Windows\\System32\\ucrtbase._atoldbl_l\"") +#pragma comment(linker, "/export:_atoll_l=\"C:\\Windows\\System32\\ucrtbase._atoll_l\"") +#pragma comment(linker, "/export:_beep=\"C:\\Windows\\System32\\ucrtbase._beep\"") +#pragma comment(linker, "/export:_beginthread=\"C:\\Windows\\System32\\ucrtbase._beginthread\"") +#pragma comment(linker, "/export:_beginthreadex=\"C:\\Windows\\System32\\ucrtbase._beginthreadex\"") +#pragma comment(linker, "/export:_byteswap_uint64=\"C:\\Windows\\System32\\ucrtbase._byteswap_uint64\"") +#pragma comment(linker, "/export:_byteswap_ulong=\"C:\\Windows\\System32\\ucrtbase._byteswap_ulong\"") +#pragma comment(linker, "/export:_byteswap_ushort=\"C:\\Windows\\System32\\ucrtbase._byteswap_ushort\"") +#pragma comment(linker, "/export:_c_exit=\"C:\\Windows\\System32\\ucrtbase._c_exit\"") +#pragma comment(linker, "/export:_cabs=\"C:\\Windows\\System32\\ucrtbase._cabs\"") +#pragma comment(linker, "/export:_callnewh=\"C:\\Windows\\System32\\ucrtbase._callnewh\"") +#pragma comment(linker, "/export:_calloc_base=\"C:\\Windows\\System32\\ucrtbase._calloc_base\"") +#pragma comment(linker, "/export:_cexit=\"C:\\Windows\\System32\\ucrtbase._cexit\"") +#pragma comment(linker, "/export:_cgets=\"C:\\Windows\\System32\\ucrtbase._cgets\"") +#pragma comment(linker, "/export:_cgets_s=\"C:\\Windows\\System32\\ucrtbase._cgets_s\"") +#pragma comment(linker, "/export:_cgetws=\"C:\\Windows\\System32\\ucrtbase._cgetws\"") +#pragma comment(linker, "/export:_cgetws_s=\"C:\\Windows\\System32\\ucrtbase._cgetws_s\"") +#pragma comment(linker, "/export:_chdir=\"C:\\Windows\\System32\\ucrtbase._chdir\"") +#pragma comment(linker, "/export:_chdrive=\"C:\\Windows\\System32\\ucrtbase._chdrive\"") +#pragma comment(linker, "/export:_chgsign=\"C:\\Windows\\System32\\ucrtbase._chgsign\"") +#pragma comment(linker, "/export:_chgsignf=\"C:\\Windows\\System32\\ucrtbase._chgsignf\"") +#pragma comment(linker, "/export:_chmod=\"C:\\Windows\\System32\\ucrtbase._chmod\"") +#pragma comment(linker, "/export:_chsize=\"C:\\Windows\\System32\\ucrtbase._chsize\"") +#pragma comment(linker, "/export:_chsize_s=\"C:\\Windows\\System32\\ucrtbase._chsize_s\"") +#pragma comment(linker, "/export:_clearfp=\"C:\\Windows\\System32\\ucrtbase._clearfp\"") +#pragma comment(linker, "/export:_close=\"C:\\Windows\\System32\\ucrtbase._close\"") +#pragma comment(linker, "/export:_commit=\"C:\\Windows\\System32\\ucrtbase._commit\"") +#pragma comment(linker, "/export:_configthreadlocale=\"C:\\Windows\\System32\\ucrtbase._configthreadlocale\"") +#pragma comment(linker, "/export:_configure_narrow_argv=\"C:\\Windows\\System32\\ucrtbase._configure_narrow_argv\"") +#pragma comment(linker, "/export:_configure_wide_argv=\"C:\\Windows\\System32\\ucrtbase._configure_wide_argv\"") +#pragma comment(linker, "/export:_control87=\"C:\\Windows\\System32\\ucrtbase._control87\"") +#pragma comment(linker, "/export:_controlfp=\"C:\\Windows\\System32\\ucrtbase._controlfp\"") +#pragma comment(linker, "/export:_controlfp_s=\"C:\\Windows\\System32\\ucrtbase._controlfp_s\"") +#pragma comment(linker, "/export:_copysign=\"C:\\Windows\\System32\\ucrtbase._copysign\"") +#pragma comment(linker, "/export:_copysignf=\"C:\\Windows\\System32\\ucrtbase._copysignf\"") +#pragma comment(linker, "/export:_cputs=\"C:\\Windows\\System32\\ucrtbase._cputs\"") +#pragma comment(linker, "/export:_cputws=\"C:\\Windows\\System32\\ucrtbase._cputws\"") +#pragma comment(linker, "/export:_creat=\"C:\\Windows\\System32\\ucrtbase._creat\"") +#pragma comment(linker, "/export:_create_locale=\"C:\\Windows\\System32\\ucrtbase._create_locale\"") +#pragma comment(linker, "/export:_crt_at_quick_exit=\"C:\\Windows\\System32\\ucrtbase._crt_at_quick_exit\"") +#pragma comment(linker, "/export:_crt_atexit=\"C:\\Windows\\System32\\ucrtbase._crt_atexit\"") +#pragma comment(linker, "/export:_ctime32=\"C:\\Windows\\System32\\ucrtbase._ctime32\"") +#pragma comment(linker, "/export:_ctime32_s=\"C:\\Windows\\System32\\ucrtbase._ctime32_s\"") +#pragma comment(linker, "/export:_ctime64=\"C:\\Windows\\System32\\ucrtbase._ctime64\"") +#pragma comment(linker, "/export:_ctime64_s=\"C:\\Windows\\System32\\ucrtbase._ctime64_s\"") +#pragma comment(linker, "/export:_cwait=\"C:\\Windows\\System32\\ucrtbase._cwait\"") +#pragma comment(linker, "/export:_d_int=\"C:\\Windows\\System32\\ucrtbase._d_int\"") +#pragma comment(linker, "/export:_dclass=\"C:\\Windows\\System32\\ucrtbase._dclass\"") +#pragma comment(linker, "/export:_dexp=\"C:\\Windows\\System32\\ucrtbase._dexp\"") +#pragma comment(linker, "/export:_difftime32=\"C:\\Windows\\System32\\ucrtbase._difftime32\"") +#pragma comment(linker, "/export:_difftime64=\"C:\\Windows\\System32\\ucrtbase._difftime64\"") +#pragma comment(linker, "/export:_dlog=\"C:\\Windows\\System32\\ucrtbase._dlog\"") +#pragma comment(linker, "/export:_dnorm=\"C:\\Windows\\System32\\ucrtbase._dnorm\"") +#pragma comment(linker, "/export:_dpcomp=\"C:\\Windows\\System32\\ucrtbase._dpcomp\"") +#pragma comment(linker, "/export:_dpoly=\"C:\\Windows\\System32\\ucrtbase._dpoly\"") +#pragma comment(linker, "/export:_dscale=\"C:\\Windows\\System32\\ucrtbase._dscale\"") +#pragma comment(linker, "/export:_dsign=\"C:\\Windows\\System32\\ucrtbase._dsign\"") +#pragma comment(linker, "/export:_dsin=\"C:\\Windows\\System32\\ucrtbase._dsin\"") +#pragma comment(linker, "/export:_dtest=\"C:\\Windows\\System32\\ucrtbase._dtest\"") +#pragma comment(linker, "/export:_dunscale=\"C:\\Windows\\System32\\ucrtbase._dunscale\"") +#pragma comment(linker, "/export:_dup=\"C:\\Windows\\System32\\ucrtbase._dup\"") +#pragma comment(linker, "/export:_dup2=\"C:\\Windows\\System32\\ucrtbase._dup2\"") +#pragma comment(linker, "/export:_dupenv_s=\"C:\\Windows\\System32\\ucrtbase._dupenv_s\"") +#pragma comment(linker, "/export:_ecvt=\"C:\\Windows\\System32\\ucrtbase._ecvt\"") +#pragma comment(linker, "/export:_ecvt_s=\"C:\\Windows\\System32\\ucrtbase._ecvt_s\"") +#pragma comment(linker, "/export:_endthread=\"C:\\Windows\\System32\\ucrtbase._endthread\"") +#pragma comment(linker, "/export:_endthreadex=\"C:\\Windows\\System32\\ucrtbase._endthreadex\"") +#pragma comment(linker, "/export:_eof=\"C:\\Windows\\System32\\ucrtbase._eof\"") +#pragma comment(linker, "/export:_errno=\"C:\\Windows\\System32\\ucrtbase._errno\"") +#pragma comment(linker, "/export:_except1=\"C:\\Windows\\System32\\ucrtbase._except1\"") +#pragma comment(linker, "/export:_execl=\"C:\\Windows\\System32\\ucrtbase._execl\"") +#pragma comment(linker, "/export:_execle=\"C:\\Windows\\System32\\ucrtbase._execle\"") +#pragma comment(linker, "/export:_execlp=\"C:\\Windows\\System32\\ucrtbase._execlp\"") +#pragma comment(linker, "/export:_execlpe=\"C:\\Windows\\System32\\ucrtbase._execlpe\"") +#pragma comment(linker, "/export:_execute_onexit_table=\"C:\\Windows\\System32\\ucrtbase._execute_onexit_table\"") +#pragma comment(linker, "/export:_execv=\"C:\\Windows\\System32\\ucrtbase._execv\"") +#pragma comment(linker, "/export:_execve=\"C:\\Windows\\System32\\ucrtbase._execve\"") +#pragma comment(linker, "/export:_execvp=\"C:\\Windows\\System32\\ucrtbase._execvp\"") +#pragma comment(linker, "/export:_execvpe=\"C:\\Windows\\System32\\ucrtbase._execvpe\"") +#pragma comment(linker, "/export:_exit=\"C:\\Windows\\System32\\ucrtbase._exit\"") +#pragma comment(linker, "/export:_expand=\"C:\\Windows\\System32\\ucrtbase._expand\"") +#pragma comment(linker, "/export:_fclose_nolock=\"C:\\Windows\\System32\\ucrtbase._fclose_nolock\"") +#pragma comment(linker, "/export:_fcloseall=\"C:\\Windows\\System32\\ucrtbase._fcloseall\"") +#pragma comment(linker, "/export:_fcvt=\"C:\\Windows\\System32\\ucrtbase._fcvt\"") +#pragma comment(linker, "/export:_fcvt_s=\"C:\\Windows\\System32\\ucrtbase._fcvt_s\"") +#pragma comment(linker, "/export:_fd_int=\"C:\\Windows\\System32\\ucrtbase._fd_int\"") +#pragma comment(linker, "/export:_fdclass=\"C:\\Windows\\System32\\ucrtbase._fdclass\"") +#pragma comment(linker, "/export:_fdexp=\"C:\\Windows\\System32\\ucrtbase._fdexp\"") +#pragma comment(linker, "/export:_fdlog=\"C:\\Windows\\System32\\ucrtbase._fdlog\"") +#pragma comment(linker, "/export:_fdnorm=\"C:\\Windows\\System32\\ucrtbase._fdnorm\"") +#pragma comment(linker, "/export:_fdopen=\"C:\\Windows\\System32\\ucrtbase._fdopen\"") +#pragma comment(linker, "/export:_fdpcomp=\"C:\\Windows\\System32\\ucrtbase._fdpcomp\"") +#pragma comment(linker, "/export:_fdpoly=\"C:\\Windows\\System32\\ucrtbase._fdpoly\"") +#pragma comment(linker, "/export:_fdscale=\"C:\\Windows\\System32\\ucrtbase._fdscale\"") +#pragma comment(linker, "/export:_fdsign=\"C:\\Windows\\System32\\ucrtbase._fdsign\"") +#pragma comment(linker, "/export:_fdsin=\"C:\\Windows\\System32\\ucrtbase._fdsin\"") +#pragma comment(linker, "/export:_fdtest=\"C:\\Windows\\System32\\ucrtbase._fdtest\"") +#pragma comment(linker, "/export:_fdunscale=\"C:\\Windows\\System32\\ucrtbase._fdunscale\"") +#pragma comment(linker, "/export:_fflush_nolock=\"C:\\Windows\\System32\\ucrtbase._fflush_nolock\"") +#pragma comment(linker, "/export:_fgetc_nolock=\"C:\\Windows\\System32\\ucrtbase._fgetc_nolock\"") +#pragma comment(linker, "/export:_fgetchar=\"C:\\Windows\\System32\\ucrtbase._fgetchar\"") +#pragma comment(linker, "/export:_fgetwc_nolock=\"C:\\Windows\\System32\\ucrtbase._fgetwc_nolock\"") +#pragma comment(linker, "/export:_fgetwchar=\"C:\\Windows\\System32\\ucrtbase._fgetwchar\"") +#pragma comment(linker, "/export:_filelength=\"C:\\Windows\\System32\\ucrtbase._filelength\"") +#pragma comment(linker, "/export:_filelengthi64=\"C:\\Windows\\System32\\ucrtbase._filelengthi64\"") +#pragma comment(linker, "/export:_fileno=\"C:\\Windows\\System32\\ucrtbase._fileno\"") +#pragma comment(linker, "/export:_findclose=\"C:\\Windows\\System32\\ucrtbase._findclose\"") +#pragma comment(linker, "/export:_findfirst32=\"C:\\Windows\\System32\\ucrtbase._findfirst32\"") +#pragma comment(linker, "/export:_findfirst32i64=\"C:\\Windows\\System32\\ucrtbase._findfirst32i64\"") +#pragma comment(linker, "/export:_findfirst64=\"C:\\Windows\\System32\\ucrtbase._findfirst64\"") +#pragma comment(linker, "/export:_findfirst64i32=\"C:\\Windows\\System32\\ucrtbase._findfirst64i32\"") +#pragma comment(linker, "/export:_findnext32=\"C:\\Windows\\System32\\ucrtbase._findnext32\"") +#pragma comment(linker, "/export:_findnext32i64=\"C:\\Windows\\System32\\ucrtbase._findnext32i64\"") +#pragma comment(linker, "/export:_findnext64=\"C:\\Windows\\System32\\ucrtbase._findnext64\"") +#pragma comment(linker, "/export:_findnext64i32=\"C:\\Windows\\System32\\ucrtbase._findnext64i32\"") +#pragma comment(linker, "/export:_finite=\"C:\\Windows\\System32\\ucrtbase._finite\"") +#pragma comment(linker, "/export:_finitef=\"C:\\Windows\\System32\\ucrtbase._finitef\"") +#pragma comment(linker, "/export:_flushall=\"C:\\Windows\\System32\\ucrtbase._flushall\"") +#pragma comment(linker, "/export:_fpclass=\"C:\\Windows\\System32\\ucrtbase._fpclass\"") +#pragma comment(linker, "/export:_fpclassf=\"C:\\Windows\\System32\\ucrtbase._fpclassf\"") +#pragma comment(linker, "/export:_fpieee_flt=\"C:\\Windows\\System32\\ucrtbase._fpieee_flt\"") +#pragma comment(linker, "/export:_fpreset=\"C:\\Windows\\System32\\ucrtbase._fpreset\"") +#pragma comment(linker, "/export:_fputc_nolock=\"C:\\Windows\\System32\\ucrtbase._fputc_nolock\"") +#pragma comment(linker, "/export:_fputchar=\"C:\\Windows\\System32\\ucrtbase._fputchar\"") +#pragma comment(linker, "/export:_fputwc_nolock=\"C:\\Windows\\System32\\ucrtbase._fputwc_nolock\"") +#pragma comment(linker, "/export:_fputwchar=\"C:\\Windows\\System32\\ucrtbase._fputwchar\"") +#pragma comment(linker, "/export:_fread_nolock=\"C:\\Windows\\System32\\ucrtbase._fread_nolock\"") +#pragma comment(linker, "/export:_fread_nolock_s=\"C:\\Windows\\System32\\ucrtbase._fread_nolock_s\"") +#pragma comment(linker, "/export:_free_base=\"C:\\Windows\\System32\\ucrtbase._free_base\"") +#pragma comment(linker, "/export:_free_locale=\"C:\\Windows\\System32\\ucrtbase._free_locale\"") +#pragma comment(linker, "/export:_fseek_nolock=\"C:\\Windows\\System32\\ucrtbase._fseek_nolock\"") +#pragma comment(linker, "/export:_fseeki64=\"C:\\Windows\\System32\\ucrtbase._fseeki64\"") +#pragma comment(linker, "/export:_fseeki64_nolock=\"C:\\Windows\\System32\\ucrtbase._fseeki64_nolock\"") +#pragma comment(linker, "/export:_fsopen=\"C:\\Windows\\System32\\ucrtbase._fsopen\"") +#pragma comment(linker, "/export:_fstat32=\"C:\\Windows\\System32\\ucrtbase._fstat32\"") +#pragma comment(linker, "/export:_fstat32i64=\"C:\\Windows\\System32\\ucrtbase._fstat32i64\"") +#pragma comment(linker, "/export:_fstat64=\"C:\\Windows\\System32\\ucrtbase._fstat64\"") +#pragma comment(linker, "/export:_fstat64i32=\"C:\\Windows\\System32\\ucrtbase._fstat64i32\"") +#pragma comment(linker, "/export:_ftell_nolock=\"C:\\Windows\\System32\\ucrtbase._ftell_nolock\"") +#pragma comment(linker, "/export:_ftelli64=\"C:\\Windows\\System32\\ucrtbase._ftelli64\"") +#pragma comment(linker, "/export:_ftelli64_nolock=\"C:\\Windows\\System32\\ucrtbase._ftelli64_nolock\"") +#pragma comment(linker, "/export:_ftime32=\"C:\\Windows\\System32\\ucrtbase._ftime32\"") +#pragma comment(linker, "/export:_ftime32_s=\"C:\\Windows\\System32\\ucrtbase._ftime32_s\"") +#pragma comment(linker, "/export:_ftime64=\"C:\\Windows\\System32\\ucrtbase._ftime64\"") +#pragma comment(linker, "/export:_ftime64_s=\"C:\\Windows\\System32\\ucrtbase._ftime64_s\"") +#pragma comment(linker, "/export:_fullpath=\"C:\\Windows\\System32\\ucrtbase._fullpath\"") +#pragma comment(linker, "/export:_futime32=\"C:\\Windows\\System32\\ucrtbase._futime32\"") +#pragma comment(linker, "/export:_futime64=\"C:\\Windows\\System32\\ucrtbase._futime64\"") +#pragma comment(linker, "/export:_fwrite_nolock=\"C:\\Windows\\System32\\ucrtbase._fwrite_nolock\"") +#pragma comment(linker, "/export:_gcvt=\"C:\\Windows\\System32\\ucrtbase._gcvt\"") +#pragma comment(linker, "/export:_gcvt_s=\"C:\\Windows\\System32\\ucrtbase._gcvt_s\"") +#pragma comment(linker, "/export:_get_FMA3_enable=\"C:\\Windows\\System32\\ucrtbase._get_FMA3_enable\"") +#pragma comment(linker, "/export:_get_current_locale=\"C:\\Windows\\System32\\ucrtbase._get_current_locale\"") +#pragma comment(linker, "/export:_get_daylight=\"C:\\Windows\\System32\\ucrtbase._get_daylight\"") +#pragma comment(linker, "/export:_get_doserrno=\"C:\\Windows\\System32\\ucrtbase._get_doserrno\"") +#pragma comment(linker, "/export:_get_dstbias=\"C:\\Windows\\System32\\ucrtbase._get_dstbias\"") +#pragma comment(linker, "/export:_get_errno=\"C:\\Windows\\System32\\ucrtbase._get_errno\"") +#pragma comment(linker, "/export:_get_fmode=\"C:\\Windows\\System32\\ucrtbase._get_fmode\"") +#pragma comment(linker, "/export:_get_heap_handle=\"C:\\Windows\\System32\\ucrtbase._get_heap_handle\"") +#pragma comment(linker, "/export:_get_initial_narrow_environment=\"C:\\Windows\\System32\\ucrtbase._get_initial_narrow_environment\"") +#pragma comment(linker, "/export:_get_initial_wide_environment=\"C:\\Windows\\System32\\ucrtbase._get_initial_wide_environment\"") +#pragma comment(linker, "/export:_get_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._get_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_get_narrow_winmain_command_line=\"C:\\Windows\\System32\\ucrtbase._get_narrow_winmain_command_line\"") +#pragma comment(linker, "/export:_get_osfhandle=\"C:\\Windows\\System32\\ucrtbase._get_osfhandle\"") +#pragma comment(linker, "/export:_get_pgmptr=\"C:\\Windows\\System32\\ucrtbase._get_pgmptr\"") +#pragma comment(linker, "/export:_get_printf_count_output=\"C:\\Windows\\System32\\ucrtbase._get_printf_count_output\"") +#pragma comment(linker, "/export:_get_purecall_handler=\"C:\\Windows\\System32\\ucrtbase._get_purecall_handler\"") +#pragma comment(linker, "/export:_get_stream_buffer_pointers=\"C:\\Windows\\System32\\ucrtbase._get_stream_buffer_pointers\"") +#pragma comment(linker, "/export:_get_terminate=\"C:\\Windows\\System32\\ucrtbase._get_terminate\"") +#pragma comment(linker, "/export:_get_thread_local_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._get_thread_local_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_get_timezone=\"C:\\Windows\\System32\\ucrtbase._get_timezone\"") +#pragma comment(linker, "/export:_get_tzname=\"C:\\Windows\\System32\\ucrtbase._get_tzname\"") +#pragma comment(linker, "/export:_get_unexpected=\"C:\\Windows\\System32\\ucrtbase._get_unexpected\"") +#pragma comment(linker, "/export:_get_wide_winmain_command_line=\"C:\\Windows\\System32\\ucrtbase._get_wide_winmain_command_line\"") +#pragma comment(linker, "/export:_get_wpgmptr=\"C:\\Windows\\System32\\ucrtbase._get_wpgmptr\"") +#pragma comment(linker, "/export:_getc_nolock=\"C:\\Windows\\System32\\ucrtbase._getc_nolock\"") +#pragma comment(linker, "/export:_getch=\"C:\\Windows\\System32\\ucrtbase._getch\"") +#pragma comment(linker, "/export:_getch_nolock=\"C:\\Windows\\System32\\ucrtbase._getch_nolock\"") +#pragma comment(linker, "/export:_getche=\"C:\\Windows\\System32\\ucrtbase._getche\"") +#pragma comment(linker, "/export:_getche_nolock=\"C:\\Windows\\System32\\ucrtbase._getche_nolock\"") +#pragma comment(linker, "/export:_getcwd=\"C:\\Windows\\System32\\ucrtbase._getcwd\"") +#pragma comment(linker, "/export:_getdcwd=\"C:\\Windows\\System32\\ucrtbase._getdcwd\"") +#pragma comment(linker, "/export:_getdiskfree=\"C:\\Windows\\System32\\ucrtbase._getdiskfree\"") +#pragma comment(linker, "/export:_getdllprocaddr=\"C:\\Windows\\System32\\ucrtbase._getdllprocaddr\"") +#pragma comment(linker, "/export:_getdrive=\"C:\\Windows\\System32\\ucrtbase._getdrive\"") +#pragma comment(linker, "/export:_getdrives=\"C:\\Windows\\System32\\ucrtbase._getdrives\"") +#pragma comment(linker, "/export:_getmaxstdio=\"C:\\Windows\\System32\\ucrtbase._getmaxstdio\"") +#pragma comment(linker, "/export:_getmbcp=\"C:\\Windows\\System32\\ucrtbase._getmbcp\"") +#pragma comment(linker, "/export:_getpid=\"C:\\Windows\\System32\\ucrtbase._getpid\"") +#pragma comment(linker, "/export:_getsystime=\"C:\\Windows\\System32\\ucrtbase._getsystime\"") +#pragma comment(linker, "/export:_getw=\"C:\\Windows\\System32\\ucrtbase._getw\"") +#pragma comment(linker, "/export:_getwc_nolock=\"C:\\Windows\\System32\\ucrtbase._getwc_nolock\"") +#pragma comment(linker, "/export:_getwch=\"C:\\Windows\\System32\\ucrtbase._getwch\"") +#pragma comment(linker, "/export:_getwch_nolock=\"C:\\Windows\\System32\\ucrtbase._getwch_nolock\"") +#pragma comment(linker, "/export:_getwche=\"C:\\Windows\\System32\\ucrtbase._getwche\"") +#pragma comment(linker, "/export:_getwche_nolock=\"C:\\Windows\\System32\\ucrtbase._getwche_nolock\"") +#pragma comment(linker, "/export:_getws=\"C:\\Windows\\System32\\ucrtbase._getws\"") +#pragma comment(linker, "/export:_getws_s=\"C:\\Windows\\System32\\ucrtbase._getws_s\"") +#pragma comment(linker, "/export:_gmtime32=\"C:\\Windows\\System32\\ucrtbase._gmtime32\"") +#pragma comment(linker, "/export:_gmtime32_s=\"C:\\Windows\\System32\\ucrtbase._gmtime32_s\"") +#pragma comment(linker, "/export:_gmtime64=\"C:\\Windows\\System32\\ucrtbase._gmtime64\"") +#pragma comment(linker, "/export:_gmtime64_s=\"C:\\Windows\\System32\\ucrtbase._gmtime64_s\"") +#pragma comment(linker, "/export:_heapchk=\"C:\\Windows\\System32\\ucrtbase._heapchk\"") +#pragma comment(linker, "/export:_heapmin=\"C:\\Windows\\System32\\ucrtbase._heapmin\"") +#pragma comment(linker, "/export:_heapwalk=\"C:\\Windows\\System32\\ucrtbase._heapwalk\"") +#pragma comment(linker, "/export:_hypot=\"C:\\Windows\\System32\\ucrtbase._hypot\"") +#pragma comment(linker, "/export:_hypotf=\"C:\\Windows\\System32\\ucrtbase._hypotf\"") +#pragma comment(linker, "/export:_i64toa=\"C:\\Windows\\System32\\ucrtbase._i64toa\"") +#pragma comment(linker, "/export:_i64toa_s=\"C:\\Windows\\System32\\ucrtbase._i64toa_s\"") +#pragma comment(linker, "/export:_i64tow=\"C:\\Windows\\System32\\ucrtbase._i64tow\"") +#pragma comment(linker, "/export:_i64tow_s=\"C:\\Windows\\System32\\ucrtbase._i64tow_s\"") +#pragma comment(linker, "/export:_initialize_narrow_environment=\"C:\\Windows\\System32\\ucrtbase._initialize_narrow_environment\"") +#pragma comment(linker, "/export:_initialize_onexit_table=\"C:\\Windows\\System32\\ucrtbase._initialize_onexit_table\"") +#pragma comment(linker, "/export:_initialize_wide_environment=\"C:\\Windows\\System32\\ucrtbase._initialize_wide_environment\"") +#pragma comment(linker, "/export:_initterm=\"C:\\Windows\\System32\\ucrtbase._initterm\"") +#pragma comment(linker, "/export:_initterm_e=\"C:\\Windows\\System32\\ucrtbase._initterm_e\"") +#pragma comment(linker, "/export:_invalid_parameter_noinfo=\"C:\\Windows\\System32\\ucrtbase._invalid_parameter_noinfo\"") +#pragma comment(linker, "/export:_invalid_parameter_noinfo_noreturn=\"C:\\Windows\\System32\\ucrtbase._invalid_parameter_noinfo_noreturn\"") +#pragma comment(linker, "/export:_invoke_watson=\"C:\\Windows\\System32\\ucrtbase._invoke_watson\"") +#pragma comment(linker, "/export:_is_exception_typeof=\"C:\\Windows\\System32\\ucrtbase._is_exception_typeof\"") +#pragma comment(linker, "/export:_isalnum_l=\"C:\\Windows\\System32\\ucrtbase._isalnum_l\"") +#pragma comment(linker, "/export:_isalpha_l=\"C:\\Windows\\System32\\ucrtbase._isalpha_l\"") +#pragma comment(linker, "/export:_isatty=\"C:\\Windows\\System32\\ucrtbase._isatty\"") +#pragma comment(linker, "/export:_isblank_l=\"C:\\Windows\\System32\\ucrtbase._isblank_l\"") +#pragma comment(linker, "/export:_iscntrl_l=\"C:\\Windows\\System32\\ucrtbase._iscntrl_l\"") +#pragma comment(linker, "/export:_isctype=\"C:\\Windows\\System32\\ucrtbase._isctype\"") +#pragma comment(linker, "/export:_isctype_l=\"C:\\Windows\\System32\\ucrtbase._isctype_l\"") +#pragma comment(linker, "/export:_isdigit_l=\"C:\\Windows\\System32\\ucrtbase._isdigit_l\"") +#pragma comment(linker, "/export:_isgraph_l=\"C:\\Windows\\System32\\ucrtbase._isgraph_l\"") +#pragma comment(linker, "/export:_isleadbyte_l=\"C:\\Windows\\System32\\ucrtbase._isleadbyte_l\"") +#pragma comment(linker, "/export:_islower_l=\"C:\\Windows\\System32\\ucrtbase._islower_l\"") +#pragma comment(linker, "/export:_ismbbalnum=\"C:\\Windows\\System32\\ucrtbase._ismbbalnum\"") +#pragma comment(linker, "/export:_ismbbalnum_l=\"C:\\Windows\\System32\\ucrtbase._ismbbalnum_l\"") +#pragma comment(linker, "/export:_ismbbalpha=\"C:\\Windows\\System32\\ucrtbase._ismbbalpha\"") +#pragma comment(linker, "/export:_ismbbalpha_l=\"C:\\Windows\\System32\\ucrtbase._ismbbalpha_l\"") +#pragma comment(linker, "/export:_ismbbblank=\"C:\\Windows\\System32\\ucrtbase._ismbbblank\"") +#pragma comment(linker, "/export:_ismbbblank_l=\"C:\\Windows\\System32\\ucrtbase._ismbbblank_l\"") +#pragma comment(linker, "/export:_ismbbgraph=\"C:\\Windows\\System32\\ucrtbase._ismbbgraph\"") +#pragma comment(linker, "/export:_ismbbgraph_l=\"C:\\Windows\\System32\\ucrtbase._ismbbgraph_l\"") +#pragma comment(linker, "/export:_ismbbkalnum=\"C:\\Windows\\System32\\ucrtbase._ismbbkalnum\"") +#pragma comment(linker, "/export:_ismbbkalnum_l=\"C:\\Windows\\System32\\ucrtbase._ismbbkalnum_l\"") +#pragma comment(linker, "/export:_ismbbkana=\"C:\\Windows\\System32\\ucrtbase._ismbbkana\"") +#pragma comment(linker, "/export:_ismbbkana_l=\"C:\\Windows\\System32\\ucrtbase._ismbbkana_l\"") +#pragma comment(linker, "/export:_ismbbkprint=\"C:\\Windows\\System32\\ucrtbase._ismbbkprint\"") +#pragma comment(linker, "/export:_ismbbkprint_l=\"C:\\Windows\\System32\\ucrtbase._ismbbkprint_l\"") +#pragma comment(linker, "/export:_ismbbkpunct=\"C:\\Windows\\System32\\ucrtbase._ismbbkpunct\"") +#pragma comment(linker, "/export:_ismbbkpunct_l=\"C:\\Windows\\System32\\ucrtbase._ismbbkpunct_l\"") +#pragma comment(linker, "/export:_ismbblead=\"C:\\Windows\\System32\\ucrtbase._ismbblead\"") +#pragma comment(linker, "/export:_ismbblead_l=\"C:\\Windows\\System32\\ucrtbase._ismbblead_l\"") +#pragma comment(linker, "/export:_ismbbprint=\"C:\\Windows\\System32\\ucrtbase._ismbbprint\"") +#pragma comment(linker, "/export:_ismbbprint_l=\"C:\\Windows\\System32\\ucrtbase._ismbbprint_l\"") +#pragma comment(linker, "/export:_ismbbpunct=\"C:\\Windows\\System32\\ucrtbase._ismbbpunct\"") +#pragma comment(linker, "/export:_ismbbpunct_l=\"C:\\Windows\\System32\\ucrtbase._ismbbpunct_l\"") +#pragma comment(linker, "/export:_ismbbtrail=\"C:\\Windows\\System32\\ucrtbase._ismbbtrail\"") +#pragma comment(linker, "/export:_ismbbtrail_l=\"C:\\Windows\\System32\\ucrtbase._ismbbtrail_l\"") +#pragma comment(linker, "/export:_ismbcalnum=\"C:\\Windows\\System32\\ucrtbase._ismbcalnum\"") +#pragma comment(linker, "/export:_ismbcalnum_l=\"C:\\Windows\\System32\\ucrtbase._ismbcalnum_l\"") +#pragma comment(linker, "/export:_ismbcalpha=\"C:\\Windows\\System32\\ucrtbase._ismbcalpha\"") +#pragma comment(linker, "/export:_ismbcalpha_l=\"C:\\Windows\\System32\\ucrtbase._ismbcalpha_l\"") +#pragma comment(linker, "/export:_ismbcblank=\"C:\\Windows\\System32\\ucrtbase._ismbcblank\"") +#pragma comment(linker, "/export:_ismbcblank_l=\"C:\\Windows\\System32\\ucrtbase._ismbcblank_l\"") +#pragma comment(linker, "/export:_ismbcdigit=\"C:\\Windows\\System32\\ucrtbase._ismbcdigit\"") +#pragma comment(linker, "/export:_ismbcdigit_l=\"C:\\Windows\\System32\\ucrtbase._ismbcdigit_l\"") +#pragma comment(linker, "/export:_ismbcgraph=\"C:\\Windows\\System32\\ucrtbase._ismbcgraph\"") +#pragma comment(linker, "/export:_ismbcgraph_l=\"C:\\Windows\\System32\\ucrtbase._ismbcgraph_l\"") +#pragma comment(linker, "/export:_ismbchira=\"C:\\Windows\\System32\\ucrtbase._ismbchira\"") +#pragma comment(linker, "/export:_ismbchira_l=\"C:\\Windows\\System32\\ucrtbase._ismbchira_l\"") +#pragma comment(linker, "/export:_ismbckata=\"C:\\Windows\\System32\\ucrtbase._ismbckata\"") +#pragma comment(linker, "/export:_ismbckata_l=\"C:\\Windows\\System32\\ucrtbase._ismbckata_l\"") +#pragma comment(linker, "/export:_ismbcl0=\"C:\\Windows\\System32\\ucrtbase._ismbcl0\"") +#pragma comment(linker, "/export:_ismbcl0_l=\"C:\\Windows\\System32\\ucrtbase._ismbcl0_l\"") +#pragma comment(linker, "/export:_ismbcl1=\"C:\\Windows\\System32\\ucrtbase._ismbcl1\"") +#pragma comment(linker, "/export:_ismbcl1_l=\"C:\\Windows\\System32\\ucrtbase._ismbcl1_l\"") +#pragma comment(linker, "/export:_ismbcl2=\"C:\\Windows\\System32\\ucrtbase._ismbcl2\"") +#pragma comment(linker, "/export:_ismbcl2_l=\"C:\\Windows\\System32\\ucrtbase._ismbcl2_l\"") +#pragma comment(linker, "/export:_ismbclegal=\"C:\\Windows\\System32\\ucrtbase._ismbclegal\"") +#pragma comment(linker, "/export:_ismbclegal_l=\"C:\\Windows\\System32\\ucrtbase._ismbclegal_l\"") +#pragma comment(linker, "/export:_ismbclower=\"C:\\Windows\\System32\\ucrtbase._ismbclower\"") +#pragma comment(linker, "/export:_ismbclower_l=\"C:\\Windows\\System32\\ucrtbase._ismbclower_l\"") +#pragma comment(linker, "/export:_ismbcprint=\"C:\\Windows\\System32\\ucrtbase._ismbcprint\"") +#pragma comment(linker, "/export:_ismbcprint_l=\"C:\\Windows\\System32\\ucrtbase._ismbcprint_l\"") +#pragma comment(linker, "/export:_ismbcpunct=\"C:\\Windows\\System32\\ucrtbase._ismbcpunct\"") +#pragma comment(linker, "/export:_ismbcpunct_l=\"C:\\Windows\\System32\\ucrtbase._ismbcpunct_l\"") +#pragma comment(linker, "/export:_ismbcspace=\"C:\\Windows\\System32\\ucrtbase._ismbcspace\"") +#pragma comment(linker, "/export:_ismbcspace_l=\"C:\\Windows\\System32\\ucrtbase._ismbcspace_l\"") +#pragma comment(linker, "/export:_ismbcsymbol=\"C:\\Windows\\System32\\ucrtbase._ismbcsymbol\"") +#pragma comment(linker, "/export:_ismbcsymbol_l=\"C:\\Windows\\System32\\ucrtbase._ismbcsymbol_l\"") +#pragma comment(linker, "/export:_ismbcupper=\"C:\\Windows\\System32\\ucrtbase._ismbcupper\"") +#pragma comment(linker, "/export:_ismbcupper_l=\"C:\\Windows\\System32\\ucrtbase._ismbcupper_l\"") +#pragma comment(linker, "/export:_ismbslead=\"C:\\Windows\\System32\\ucrtbase._ismbslead\"") +#pragma comment(linker, "/export:_ismbslead_l=\"C:\\Windows\\System32\\ucrtbase._ismbslead_l\"") +#pragma comment(linker, "/export:_ismbstrail=\"C:\\Windows\\System32\\ucrtbase._ismbstrail\"") +#pragma comment(linker, "/export:_ismbstrail_l=\"C:\\Windows\\System32\\ucrtbase._ismbstrail_l\"") +#pragma comment(linker, "/export:_isnan=\"C:\\Windows\\System32\\ucrtbase._isnan\"") +#pragma comment(linker, "/export:_isnanf=\"C:\\Windows\\System32\\ucrtbase._isnanf\"") +#pragma comment(linker, "/export:_isprint_l=\"C:\\Windows\\System32\\ucrtbase._isprint_l\"") +#pragma comment(linker, "/export:_ispunct_l=\"C:\\Windows\\System32\\ucrtbase._ispunct_l\"") +#pragma comment(linker, "/export:_isspace_l=\"C:\\Windows\\System32\\ucrtbase._isspace_l\"") +#pragma comment(linker, "/export:_isupper_l=\"C:\\Windows\\System32\\ucrtbase._isupper_l\"") +#pragma comment(linker, "/export:_iswalnum_l=\"C:\\Windows\\System32\\ucrtbase._iswalnum_l\"") +#pragma comment(linker, "/export:_iswalpha_l=\"C:\\Windows\\System32\\ucrtbase._iswalpha_l\"") +#pragma comment(linker, "/export:_iswblank_l=\"C:\\Windows\\System32\\ucrtbase._iswblank_l\"") +#pragma comment(linker, "/export:_iswcntrl_l=\"C:\\Windows\\System32\\ucrtbase._iswcntrl_l\"") +#pragma comment(linker, "/export:_iswcsym_l=\"C:\\Windows\\System32\\ucrtbase._iswcsym_l\"") +#pragma comment(linker, "/export:_iswcsymf_l=\"C:\\Windows\\System32\\ucrtbase._iswcsymf_l\"") +#pragma comment(linker, "/export:_iswctype_l=\"C:\\Windows\\System32\\ucrtbase._iswctype_l\"") +#pragma comment(linker, "/export:_iswdigit_l=\"C:\\Windows\\System32\\ucrtbase._iswdigit_l\"") +#pragma comment(linker, "/export:_iswgraph_l=\"C:\\Windows\\System32\\ucrtbase._iswgraph_l\"") +#pragma comment(linker, "/export:_iswlower_l=\"C:\\Windows\\System32\\ucrtbase._iswlower_l\"") +#pragma comment(linker, "/export:_iswprint_l=\"C:\\Windows\\System32\\ucrtbase._iswprint_l\"") +#pragma comment(linker, "/export:_iswpunct_l=\"C:\\Windows\\System32\\ucrtbase._iswpunct_l\"") +#pragma comment(linker, "/export:_iswspace_l=\"C:\\Windows\\System32\\ucrtbase._iswspace_l\"") +#pragma comment(linker, "/export:_iswupper_l=\"C:\\Windows\\System32\\ucrtbase._iswupper_l\"") +#pragma comment(linker, "/export:_iswxdigit_l=\"C:\\Windows\\System32\\ucrtbase._iswxdigit_l\"") +#pragma comment(linker, "/export:_isxdigit_l=\"C:\\Windows\\System32\\ucrtbase._isxdigit_l\"") +#pragma comment(linker, "/export:_itoa=\"C:\\Windows\\System32\\ucrtbase._itoa\"") +#pragma comment(linker, "/export:_itoa_s=\"C:\\Windows\\System32\\ucrtbase._itoa_s\"") +#pragma comment(linker, "/export:_itow=\"C:\\Windows\\System32\\ucrtbase._itow\"") +#pragma comment(linker, "/export:_itow_s=\"C:\\Windows\\System32\\ucrtbase._itow_s\"") +#pragma comment(linker, "/export:_j0=\"C:\\Windows\\System32\\ucrtbase._j0\"") +#pragma comment(linker, "/export:_j1=\"C:\\Windows\\System32\\ucrtbase._j1\"") +#pragma comment(linker, "/export:_jn=\"C:\\Windows\\System32\\ucrtbase._jn\"") +#pragma comment(linker, "/export:_kbhit=\"C:\\Windows\\System32\\ucrtbase._kbhit\"") +#pragma comment(linker, "/export:_ld_int=\"C:\\Windows\\System32\\ucrtbase._ld_int\"") +#pragma comment(linker, "/export:_ldclass=\"C:\\Windows\\System32\\ucrtbase._ldclass\"") +#pragma comment(linker, "/export:_ldexp=\"C:\\Windows\\System32\\ucrtbase._ldexp\"") +#pragma comment(linker, "/export:_ldlog=\"C:\\Windows\\System32\\ucrtbase._ldlog\"") +#pragma comment(linker, "/export:_ldpcomp=\"C:\\Windows\\System32\\ucrtbase._ldpcomp\"") +#pragma comment(linker, "/export:_ldpoly=\"C:\\Windows\\System32\\ucrtbase._ldpoly\"") +#pragma comment(linker, "/export:_ldscale=\"C:\\Windows\\System32\\ucrtbase._ldscale\"") +#pragma comment(linker, "/export:_ldsign=\"C:\\Windows\\System32\\ucrtbase._ldsign\"") +#pragma comment(linker, "/export:_ldsin=\"C:\\Windows\\System32\\ucrtbase._ldsin\"") +#pragma comment(linker, "/export:_ldtest=\"C:\\Windows\\System32\\ucrtbase._ldtest\"") +#pragma comment(linker, "/export:_ldunscale=\"C:\\Windows\\System32\\ucrtbase._ldunscale\"") +#pragma comment(linker, "/export:_lfind=\"C:\\Windows\\System32\\ucrtbase._lfind\"") +#pragma comment(linker, "/export:_lfind_s=\"C:\\Windows\\System32\\ucrtbase._lfind_s\"") +#pragma comment(linker, "/export:_loaddll=\"C:\\Windows\\System32\\ucrtbase._loaddll\"") +#pragma comment(linker, "/export:_local_unwind=\"C:\\Windows\\System32\\ucrtbase._local_unwind\"") +#pragma comment(linker, "/export:_localtime32=\"C:\\Windows\\System32\\ucrtbase._localtime32\"") +#pragma comment(linker, "/export:_localtime32_s=\"C:\\Windows\\System32\\ucrtbase._localtime32_s\"") +#pragma comment(linker, "/export:_localtime64=\"C:\\Windows\\System32\\ucrtbase._localtime64\"") +#pragma comment(linker, "/export:_localtime64_s=\"C:\\Windows\\System32\\ucrtbase._localtime64_s\"") +#pragma comment(linker, "/export:_lock_file=\"C:\\Windows\\System32\\ucrtbase._lock_file\"") +#pragma comment(linker, "/export:_lock_locales=\"C:\\Windows\\System32\\ucrtbase._lock_locales\"") +#pragma comment(linker, "/export:_locking=\"C:\\Windows\\System32\\ucrtbase._locking\"") +#pragma comment(linker, "/export:_logb=\"C:\\Windows\\System32\\ucrtbase._logb\"") +#pragma comment(linker, "/export:_logbf=\"C:\\Windows\\System32\\ucrtbase._logbf\"") +#pragma comment(linker, "/export:_lrotl=\"C:\\Windows\\System32\\ucrtbase._lrotl\"") +#pragma comment(linker, "/export:_lrotr=\"C:\\Windows\\System32\\ucrtbase._lrotr\"") +#pragma comment(linker, "/export:_lsearch=\"C:\\Windows\\System32\\ucrtbase._lsearch\"") +#pragma comment(linker, "/export:_lsearch_s=\"C:\\Windows\\System32\\ucrtbase._lsearch_s\"") +#pragma comment(linker, "/export:_lseek=\"C:\\Windows\\System32\\ucrtbase._lseek\"") +#pragma comment(linker, "/export:_lseeki64=\"C:\\Windows\\System32\\ucrtbase._lseeki64\"") +#pragma comment(linker, "/export:_ltoa=\"C:\\Windows\\System32\\ucrtbase._ltoa\"") +#pragma comment(linker, "/export:_ltoa_s=\"C:\\Windows\\System32\\ucrtbase._ltoa_s\"") +#pragma comment(linker, "/export:_ltow=\"C:\\Windows\\System32\\ucrtbase._ltow\"") +#pragma comment(linker, "/export:_ltow_s=\"C:\\Windows\\System32\\ucrtbase._ltow_s\"") +#pragma comment(linker, "/export:_makepath=\"C:\\Windows\\System32\\ucrtbase._makepath\"") +#pragma comment(linker, "/export:_makepath_s=\"C:\\Windows\\System32\\ucrtbase._makepath_s\"") +#pragma comment(linker, "/export:_malloc_base=\"C:\\Windows\\System32\\ucrtbase._malloc_base\"") +#pragma comment(linker, "/export:_mbbtombc=\"C:\\Windows\\System32\\ucrtbase._mbbtombc\"") +#pragma comment(linker, "/export:_mbbtombc_l=\"C:\\Windows\\System32\\ucrtbase._mbbtombc_l\"") +#pragma comment(linker, "/export:_mbbtype=\"C:\\Windows\\System32\\ucrtbase._mbbtype\"") +#pragma comment(linker, "/export:_mbbtype_l=\"C:\\Windows\\System32\\ucrtbase._mbbtype_l\"") +#pragma comment(linker, "/export:_mbcasemap=\"C:\\Windows\\System32\\ucrtbase._mbcasemap\"") +#pragma comment(linker, "/export:_mbccpy=\"C:\\Windows\\System32\\ucrtbase._mbccpy\"") +#pragma comment(linker, "/export:_mbccpy_l=\"C:\\Windows\\System32\\ucrtbase._mbccpy_l\"") +#pragma comment(linker, "/export:_mbccpy_s=\"C:\\Windows\\System32\\ucrtbase._mbccpy_s\"") +#pragma comment(linker, "/export:_mbccpy_s_l=\"C:\\Windows\\System32\\ucrtbase._mbccpy_s_l\"") +#pragma comment(linker, "/export:_mbcjistojms=\"C:\\Windows\\System32\\ucrtbase._mbcjistojms\"") +#pragma comment(linker, "/export:_mbcjistojms_l=\"C:\\Windows\\System32\\ucrtbase._mbcjistojms_l\"") +#pragma comment(linker, "/export:_mbcjmstojis=\"C:\\Windows\\System32\\ucrtbase._mbcjmstojis\"") +#pragma comment(linker, "/export:_mbcjmstojis_l=\"C:\\Windows\\System32\\ucrtbase._mbcjmstojis_l\"") +#pragma comment(linker, "/export:_mbclen=\"C:\\Windows\\System32\\ucrtbase._mbclen\"") +#pragma comment(linker, "/export:_mbclen_l=\"C:\\Windows\\System32\\ucrtbase._mbclen_l\"") +#pragma comment(linker, "/export:_mbctohira=\"C:\\Windows\\System32\\ucrtbase._mbctohira\"") +#pragma comment(linker, "/export:_mbctohira_l=\"C:\\Windows\\System32\\ucrtbase._mbctohira_l\"") +#pragma comment(linker, "/export:_mbctokata=\"C:\\Windows\\System32\\ucrtbase._mbctokata\"") +#pragma comment(linker, "/export:_mbctokata_l=\"C:\\Windows\\System32\\ucrtbase._mbctokata_l\"") +#pragma comment(linker, "/export:_mbctolower=\"C:\\Windows\\System32\\ucrtbase._mbctolower\"") +#pragma comment(linker, "/export:_mbctolower_l=\"C:\\Windows\\System32\\ucrtbase._mbctolower_l\"") +#pragma comment(linker, "/export:_mbctombb=\"C:\\Windows\\System32\\ucrtbase._mbctombb\"") +#pragma comment(linker, "/export:_mbctombb_l=\"C:\\Windows\\System32\\ucrtbase._mbctombb_l\"") +#pragma comment(linker, "/export:_mbctoupper=\"C:\\Windows\\System32\\ucrtbase._mbctoupper\"") +#pragma comment(linker, "/export:_mbctoupper_l=\"C:\\Windows\\System32\\ucrtbase._mbctoupper_l\"") +#pragma comment(linker, "/export:_mblen_l=\"C:\\Windows\\System32\\ucrtbase._mblen_l\"") +#pragma comment(linker, "/export:_mbsbtype=\"C:\\Windows\\System32\\ucrtbase._mbsbtype\"") +#pragma comment(linker, "/export:_mbsbtype_l=\"C:\\Windows\\System32\\ucrtbase._mbsbtype_l\"") +#pragma comment(linker, "/export:_mbscat_s=\"C:\\Windows\\System32\\ucrtbase._mbscat_s\"") +#pragma comment(linker, "/export:_mbscat_s_l=\"C:\\Windows\\System32\\ucrtbase._mbscat_s_l\"") +#pragma comment(linker, "/export:_mbschr=\"C:\\Windows\\System32\\ucrtbase._mbschr\"") +#pragma comment(linker, "/export:_mbschr_l=\"C:\\Windows\\System32\\ucrtbase._mbschr_l\"") +#pragma comment(linker, "/export:_mbscmp=\"C:\\Windows\\System32\\ucrtbase._mbscmp\"") +#pragma comment(linker, "/export:_mbscmp_l=\"C:\\Windows\\System32\\ucrtbase._mbscmp_l\"") +#pragma comment(linker, "/export:_mbscoll=\"C:\\Windows\\System32\\ucrtbase._mbscoll\"") +#pragma comment(linker, "/export:_mbscoll_l=\"C:\\Windows\\System32\\ucrtbase._mbscoll_l\"") +#pragma comment(linker, "/export:_mbscpy_s=\"C:\\Windows\\System32\\ucrtbase._mbscpy_s\"") +#pragma comment(linker, "/export:_mbscpy_s_l=\"C:\\Windows\\System32\\ucrtbase._mbscpy_s_l\"") +#pragma comment(linker, "/export:_mbscspn=\"C:\\Windows\\System32\\ucrtbase._mbscspn\"") +#pragma comment(linker, "/export:_mbscspn_l=\"C:\\Windows\\System32\\ucrtbase._mbscspn_l\"") +#pragma comment(linker, "/export:_mbsdec=\"C:\\Windows\\System32\\ucrtbase._mbsdec\"") +#pragma comment(linker, "/export:_mbsdec_l=\"C:\\Windows\\System32\\ucrtbase._mbsdec_l\"") +#pragma comment(linker, "/export:_mbsdup=\"C:\\Windows\\System32\\ucrtbase._mbsdup\"") +#pragma comment(linker, "/export:_mbsicmp=\"C:\\Windows\\System32\\ucrtbase._mbsicmp\"") +#pragma comment(linker, "/export:_mbsicmp_l=\"C:\\Windows\\System32\\ucrtbase._mbsicmp_l\"") +#pragma comment(linker, "/export:_mbsicoll=\"C:\\Windows\\System32\\ucrtbase._mbsicoll\"") +#pragma comment(linker, "/export:_mbsicoll_l=\"C:\\Windows\\System32\\ucrtbase._mbsicoll_l\"") +#pragma comment(linker, "/export:_mbsinc=\"C:\\Windows\\System32\\ucrtbase._mbsinc\"") +#pragma comment(linker, "/export:_mbsinc_l=\"C:\\Windows\\System32\\ucrtbase._mbsinc_l\"") +#pragma comment(linker, "/export:_mbslen=\"C:\\Windows\\System32\\ucrtbase._mbslen\"") +#pragma comment(linker, "/export:_mbslen_l=\"C:\\Windows\\System32\\ucrtbase._mbslen_l\"") +#pragma comment(linker, "/export:_mbslwr=\"C:\\Windows\\System32\\ucrtbase._mbslwr\"") +#pragma comment(linker, "/export:_mbslwr_l=\"C:\\Windows\\System32\\ucrtbase._mbslwr_l\"") +#pragma comment(linker, "/export:_mbslwr_s=\"C:\\Windows\\System32\\ucrtbase._mbslwr_s\"") +#pragma comment(linker, "/export:_mbslwr_s_l=\"C:\\Windows\\System32\\ucrtbase._mbslwr_s_l\"") +#pragma comment(linker, "/export:_mbsnbcat=\"C:\\Windows\\System32\\ucrtbase._mbsnbcat\"") +#pragma comment(linker, "/export:_mbsnbcat_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbcat_l\"") +#pragma comment(linker, "/export:_mbsnbcat_s=\"C:\\Windows\\System32\\ucrtbase._mbsnbcat_s\"") +#pragma comment(linker, "/export:_mbsnbcat_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbcat_s_l\"") +#pragma comment(linker, "/export:_mbsnbcmp=\"C:\\Windows\\System32\\ucrtbase._mbsnbcmp\"") +#pragma comment(linker, "/export:_mbsnbcmp_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbcmp_l\"") +#pragma comment(linker, "/export:_mbsnbcnt=\"C:\\Windows\\System32\\ucrtbase._mbsnbcnt\"") +#pragma comment(linker, "/export:_mbsnbcnt_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbcnt_l\"") +#pragma comment(linker, "/export:_mbsnbcoll=\"C:\\Windows\\System32\\ucrtbase._mbsnbcoll\"") +#pragma comment(linker, "/export:_mbsnbcoll_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbcoll_l\"") +#pragma comment(linker, "/export:_mbsnbcpy=\"C:\\Windows\\System32\\ucrtbase._mbsnbcpy\"") +#pragma comment(linker, "/export:_mbsnbcpy_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbcpy_l\"") +#pragma comment(linker, "/export:_mbsnbcpy_s=\"C:\\Windows\\System32\\ucrtbase._mbsnbcpy_s\"") +#pragma comment(linker, "/export:_mbsnbcpy_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbcpy_s_l\"") +#pragma comment(linker, "/export:_mbsnbicmp=\"C:\\Windows\\System32\\ucrtbase._mbsnbicmp\"") +#pragma comment(linker, "/export:_mbsnbicmp_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbicmp_l\"") +#pragma comment(linker, "/export:_mbsnbicoll=\"C:\\Windows\\System32\\ucrtbase._mbsnbicoll\"") +#pragma comment(linker, "/export:_mbsnbicoll_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbicoll_l\"") +#pragma comment(linker, "/export:_mbsnbset=\"C:\\Windows\\System32\\ucrtbase._mbsnbset\"") +#pragma comment(linker, "/export:_mbsnbset_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbset_l\"") +#pragma comment(linker, "/export:_mbsnbset_s=\"C:\\Windows\\System32\\ucrtbase._mbsnbset_s\"") +#pragma comment(linker, "/export:_mbsnbset_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsnbset_s_l\"") +#pragma comment(linker, "/export:_mbsncat=\"C:\\Windows\\System32\\ucrtbase._mbsncat\"") +#pragma comment(linker, "/export:_mbsncat_l=\"C:\\Windows\\System32\\ucrtbase._mbsncat_l\"") +#pragma comment(linker, "/export:_mbsncat_s=\"C:\\Windows\\System32\\ucrtbase._mbsncat_s\"") +#pragma comment(linker, "/export:_mbsncat_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsncat_s_l\"") +#pragma comment(linker, "/export:_mbsnccnt=\"C:\\Windows\\System32\\ucrtbase._mbsnccnt\"") +#pragma comment(linker, "/export:_mbsnccnt_l=\"C:\\Windows\\System32\\ucrtbase._mbsnccnt_l\"") +#pragma comment(linker, "/export:_mbsncmp=\"C:\\Windows\\System32\\ucrtbase._mbsncmp\"") +#pragma comment(linker, "/export:_mbsncmp_l=\"C:\\Windows\\System32\\ucrtbase._mbsncmp_l\"") +#pragma comment(linker, "/export:_mbsncoll=\"C:\\Windows\\System32\\ucrtbase._mbsncoll\"") +#pragma comment(linker, "/export:_mbsncoll_l=\"C:\\Windows\\System32\\ucrtbase._mbsncoll_l\"") +#pragma comment(linker, "/export:_mbsncpy=\"C:\\Windows\\System32\\ucrtbase._mbsncpy\"") +#pragma comment(linker, "/export:_mbsncpy_l=\"C:\\Windows\\System32\\ucrtbase._mbsncpy_l\"") +#pragma comment(linker, "/export:_mbsncpy_s=\"C:\\Windows\\System32\\ucrtbase._mbsncpy_s\"") +#pragma comment(linker, "/export:_mbsncpy_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsncpy_s_l\"") +#pragma comment(linker, "/export:_mbsnextc=\"C:\\Windows\\System32\\ucrtbase._mbsnextc\"") +#pragma comment(linker, "/export:_mbsnextc_l=\"C:\\Windows\\System32\\ucrtbase._mbsnextc_l\"") +#pragma comment(linker, "/export:_mbsnicmp=\"C:\\Windows\\System32\\ucrtbase._mbsnicmp\"") +#pragma comment(linker, "/export:_mbsnicmp_l=\"C:\\Windows\\System32\\ucrtbase._mbsnicmp_l\"") +#pragma comment(linker, "/export:_mbsnicoll=\"C:\\Windows\\System32\\ucrtbase._mbsnicoll\"") +#pragma comment(linker, "/export:_mbsnicoll_l=\"C:\\Windows\\System32\\ucrtbase._mbsnicoll_l\"") +#pragma comment(linker, "/export:_mbsninc=\"C:\\Windows\\System32\\ucrtbase._mbsninc\"") +#pragma comment(linker, "/export:_mbsninc_l=\"C:\\Windows\\System32\\ucrtbase._mbsninc_l\"") +#pragma comment(linker, "/export:_mbsnlen=\"C:\\Windows\\System32\\ucrtbase._mbsnlen\"") +#pragma comment(linker, "/export:_mbsnlen_l=\"C:\\Windows\\System32\\ucrtbase._mbsnlen_l\"") +#pragma comment(linker, "/export:_mbsnset=\"C:\\Windows\\System32\\ucrtbase._mbsnset\"") +#pragma comment(linker, "/export:_mbsnset_l=\"C:\\Windows\\System32\\ucrtbase._mbsnset_l\"") +#pragma comment(linker, "/export:_mbsnset_s=\"C:\\Windows\\System32\\ucrtbase._mbsnset_s\"") +#pragma comment(linker, "/export:_mbsnset_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsnset_s_l\"") +#pragma comment(linker, "/export:_mbspbrk=\"C:\\Windows\\System32\\ucrtbase._mbspbrk\"") +#pragma comment(linker, "/export:_mbspbrk_l=\"C:\\Windows\\System32\\ucrtbase._mbspbrk_l\"") +#pragma comment(linker, "/export:_mbsrchr=\"C:\\Windows\\System32\\ucrtbase._mbsrchr\"") +#pragma comment(linker, "/export:_mbsrchr_l=\"C:\\Windows\\System32\\ucrtbase._mbsrchr_l\"") +#pragma comment(linker, "/export:_mbsrev=\"C:\\Windows\\System32\\ucrtbase._mbsrev\"") +#pragma comment(linker, "/export:_mbsrev_l=\"C:\\Windows\\System32\\ucrtbase._mbsrev_l\"") +#pragma comment(linker, "/export:_mbsset=\"C:\\Windows\\System32\\ucrtbase._mbsset\"") +#pragma comment(linker, "/export:_mbsset_l=\"C:\\Windows\\System32\\ucrtbase._mbsset_l\"") +#pragma comment(linker, "/export:_mbsset_s=\"C:\\Windows\\System32\\ucrtbase._mbsset_s\"") +#pragma comment(linker, "/export:_mbsset_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsset_s_l\"") +#pragma comment(linker, "/export:_mbsspn=\"C:\\Windows\\System32\\ucrtbase._mbsspn\"") +#pragma comment(linker, "/export:_mbsspn_l=\"C:\\Windows\\System32\\ucrtbase._mbsspn_l\"") +#pragma comment(linker, "/export:_mbsspnp=\"C:\\Windows\\System32\\ucrtbase._mbsspnp\"") +#pragma comment(linker, "/export:_mbsspnp_l=\"C:\\Windows\\System32\\ucrtbase._mbsspnp_l\"") +#pragma comment(linker, "/export:_mbsstr=\"C:\\Windows\\System32\\ucrtbase._mbsstr\"") +#pragma comment(linker, "/export:_mbsstr_l=\"C:\\Windows\\System32\\ucrtbase._mbsstr_l\"") +#pragma comment(linker, "/export:_mbstok=\"C:\\Windows\\System32\\ucrtbase._mbstok\"") +#pragma comment(linker, "/export:_mbstok_l=\"C:\\Windows\\System32\\ucrtbase._mbstok_l\"") +#pragma comment(linker, "/export:_mbstok_s=\"C:\\Windows\\System32\\ucrtbase._mbstok_s\"") +#pragma comment(linker, "/export:_mbstok_s_l=\"C:\\Windows\\System32\\ucrtbase._mbstok_s_l\"") +#pragma comment(linker, "/export:_mbstowcs_l=\"C:\\Windows\\System32\\ucrtbase._mbstowcs_l\"") +#pragma comment(linker, "/export:_mbstowcs_s_l=\"C:\\Windows\\System32\\ucrtbase._mbstowcs_s_l\"") +#pragma comment(linker, "/export:_mbstrlen=\"C:\\Windows\\System32\\ucrtbase._mbstrlen\"") +#pragma comment(linker, "/export:_mbstrlen_l=\"C:\\Windows\\System32\\ucrtbase._mbstrlen_l\"") +#pragma comment(linker, "/export:_mbstrnlen=\"C:\\Windows\\System32\\ucrtbase._mbstrnlen\"") +#pragma comment(linker, "/export:_mbstrnlen_l=\"C:\\Windows\\System32\\ucrtbase._mbstrnlen_l\"") +#pragma comment(linker, "/export:_mbsupr=\"C:\\Windows\\System32\\ucrtbase._mbsupr\"") +#pragma comment(linker, "/export:_mbsupr_l=\"C:\\Windows\\System32\\ucrtbase._mbsupr_l\"") +#pragma comment(linker, "/export:_mbsupr_s=\"C:\\Windows\\System32\\ucrtbase._mbsupr_s\"") +#pragma comment(linker, "/export:_mbsupr_s_l=\"C:\\Windows\\System32\\ucrtbase._mbsupr_s_l\"") +#pragma comment(linker, "/export:_mbtowc_l=\"C:\\Windows\\System32\\ucrtbase._mbtowc_l\"") +#pragma comment(linker, "/export:_memccpy=\"C:\\Windows\\System32\\ucrtbase._memccpy\"") +#pragma comment(linker, "/export:_memicmp=\"C:\\Windows\\System32\\ucrtbase._memicmp\"") +#pragma comment(linker, "/export:_memicmp_l=\"C:\\Windows\\System32\\ucrtbase._memicmp_l\"") +#pragma comment(linker, "/export:_mkdir=\"C:\\Windows\\System32\\ucrtbase._mkdir\"") +#pragma comment(linker, "/export:_mkgmtime32=\"C:\\Windows\\System32\\ucrtbase._mkgmtime32\"") +#pragma comment(linker, "/export:_mkgmtime64=\"C:\\Windows\\System32\\ucrtbase._mkgmtime64\"") +#pragma comment(linker, "/export:_mktemp=\"C:\\Windows\\System32\\ucrtbase._mktemp\"") +#pragma comment(linker, "/export:_mktemp_s=\"C:\\Windows\\System32\\ucrtbase._mktemp_s\"") +#pragma comment(linker, "/export:_mktime32=\"C:\\Windows\\System32\\ucrtbase._mktime32\"") +#pragma comment(linker, "/export:_mktime64=\"C:\\Windows\\System32\\ucrtbase._mktime64\"") +#pragma comment(linker, "/export:_msize=\"C:\\Windows\\System32\\ucrtbase._msize\"") +#pragma comment(linker, "/export:_nextafter=\"C:\\Windows\\System32\\ucrtbase._nextafter\"") +#pragma comment(linker, "/export:_nextafterf=\"C:\\Windows\\System32\\ucrtbase._nextafterf\"") +#pragma comment(linker, "/export:_o__Getdays=\"C:\\Windows\\System32\\ucrtbase._o__Getdays\"") +#pragma comment(linker, "/export:_o__Getmonths=\"C:\\Windows\\System32\\ucrtbase._o__Getmonths\"") +#pragma comment(linker, "/export:_o__Gettnames=\"C:\\Windows\\System32\\ucrtbase._o__Gettnames\"") +#pragma comment(linker, "/export:_o__Strftime=\"C:\\Windows\\System32\\ucrtbase._o__Strftime\"") +#pragma comment(linker, "/export:_o__W_Getdays=\"C:\\Windows\\System32\\ucrtbase._o__W_Getdays\"") +#pragma comment(linker, "/export:_o__W_Getmonths=\"C:\\Windows\\System32\\ucrtbase._o__W_Getmonths\"") +#pragma comment(linker, "/export:_o__W_Gettnames=\"C:\\Windows\\System32\\ucrtbase._o__W_Gettnames\"") +#pragma comment(linker, "/export:_o__Wcsftime=\"C:\\Windows\\System32\\ucrtbase._o__Wcsftime\"") +#pragma comment(linker, "/export:_o____lc_codepage_func=\"C:\\Windows\\System32\\ucrtbase._o____lc_codepage_func\"") +#pragma comment(linker, "/export:_o____lc_collate_cp_func=\"C:\\Windows\\System32\\ucrtbase._o____lc_collate_cp_func\"") +#pragma comment(linker, "/export:_o____lc_locale_name_func=\"C:\\Windows\\System32\\ucrtbase._o____lc_locale_name_func\"") +#pragma comment(linker, "/export:_o____mb_cur_max_func=\"C:\\Windows\\System32\\ucrtbase._o____mb_cur_max_func\"") +#pragma comment(linker, "/export:_o___acrt_iob_func=\"C:\\Windows\\System32\\ucrtbase._o___acrt_iob_func\"") +#pragma comment(linker, "/export:_o___conio_common_vcprintf=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcprintf\"") +#pragma comment(linker, "/export:_o___conio_common_vcprintf_p=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcprintf_p\"") +#pragma comment(linker, "/export:_o___conio_common_vcprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcprintf_s\"") +#pragma comment(linker, "/export:_o___conio_common_vcscanf=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcscanf\"") +#pragma comment(linker, "/export:_o___conio_common_vcwprintf=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcwprintf\"") +#pragma comment(linker, "/export:_o___conio_common_vcwprintf_p=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcwprintf_p\"") +#pragma comment(linker, "/export:_o___conio_common_vcwprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcwprintf_s\"") +#pragma comment(linker, "/export:_o___conio_common_vcwscanf=\"C:\\Windows\\System32\\ucrtbase._o___conio_common_vcwscanf\"") +#pragma comment(linker, "/export:_o___daylight=\"C:\\Windows\\System32\\ucrtbase._o___daylight\"") +#pragma comment(linker, "/export:_o___dstbias=\"C:\\Windows\\System32\\ucrtbase._o___dstbias\"") +#pragma comment(linker, "/export:_o___fpe_flt_rounds=\"C:\\Windows\\System32\\ucrtbase._o___fpe_flt_rounds\"") +#pragma comment(linker, "/export:_o___p___argc=\"C:\\Windows\\System32\\ucrtbase._o___p___argc\"") +#pragma comment(linker, "/export:_o___p___argv=\"C:\\Windows\\System32\\ucrtbase._o___p___argv\"") +#pragma comment(linker, "/export:_o___p___wargv=\"C:\\Windows\\System32\\ucrtbase._o___p___wargv\"") +#pragma comment(linker, "/export:_o___p__acmdln=\"C:\\Windows\\System32\\ucrtbase._o___p__acmdln\"") +#pragma comment(linker, "/export:_o___p__commode=\"C:\\Windows\\System32\\ucrtbase._o___p__commode\"") +#pragma comment(linker, "/export:_o___p__environ=\"C:\\Windows\\System32\\ucrtbase._o___p__environ\"") +#pragma comment(linker, "/export:_o___p__fmode=\"C:\\Windows\\System32\\ucrtbase._o___p__fmode\"") +#pragma comment(linker, "/export:_o___p__mbcasemap=\"C:\\Windows\\System32\\ucrtbase._o___p__mbcasemap\"") +#pragma comment(linker, "/export:_o___p__mbctype=\"C:\\Windows\\System32\\ucrtbase._o___p__mbctype\"") +#pragma comment(linker, "/export:_o___p__pgmptr=\"C:\\Windows\\System32\\ucrtbase._o___p__pgmptr\"") +#pragma comment(linker, "/export:_o___p__wcmdln=\"C:\\Windows\\System32\\ucrtbase._o___p__wcmdln\"") +#pragma comment(linker, "/export:_o___p__wenviron=\"C:\\Windows\\System32\\ucrtbase._o___p__wenviron\"") +#pragma comment(linker, "/export:_o___p__wpgmptr=\"C:\\Windows\\System32\\ucrtbase._o___p__wpgmptr\"") +#pragma comment(linker, "/export:_o___pctype_func=\"C:\\Windows\\System32\\ucrtbase._o___pctype_func\"") +#pragma comment(linker, "/export:_o___pwctype_func=\"C:\\Windows\\System32\\ucrtbase._o___pwctype_func\"") +#pragma comment(linker, "/export:_o___std_exception_copy=\"C:\\Windows\\System32\\ucrtbase._o___std_exception_copy\"") +#pragma comment(linker, "/export:_o___std_exception_destroy=\"C:\\Windows\\System32\\ucrtbase._o___std_exception_destroy\"") +#pragma comment(linker, "/export:_o___std_type_info_destroy_list=\"C:\\Windows\\System32\\ucrtbase._o___std_type_info_destroy_list\"") +#pragma comment(linker, "/export:_o___std_type_info_name=\"C:\\Windows\\System32\\ucrtbase._o___std_type_info_name\"") +#pragma comment(linker, "/export:_o___stdio_common_vfprintf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfprintf\"") +#pragma comment(linker, "/export:_o___stdio_common_vfprintf_p=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfprintf_p\"") +#pragma comment(linker, "/export:_o___stdio_common_vfprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfprintf_s\"") +#pragma comment(linker, "/export:_o___stdio_common_vfscanf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfscanf\"") +#pragma comment(linker, "/export:_o___stdio_common_vfwprintf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfwprintf\"") +#pragma comment(linker, "/export:_o___stdio_common_vfwprintf_p=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfwprintf_p\"") +#pragma comment(linker, "/export:_o___stdio_common_vfwprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfwprintf_s\"") +#pragma comment(linker, "/export:_o___stdio_common_vfwscanf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vfwscanf\"") +#pragma comment(linker, "/export:_o___stdio_common_vsnprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vsnprintf_s\"") +#pragma comment(linker, "/export:_o___stdio_common_vsnwprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vsnwprintf_s\"") +#pragma comment(linker, "/export:_o___stdio_common_vsprintf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vsprintf\"") +#pragma comment(linker, "/export:_o___stdio_common_vsprintf_p=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vsprintf_p\"") +#pragma comment(linker, "/export:_o___stdio_common_vsprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vsprintf_s\"") +#pragma comment(linker, "/export:_o___stdio_common_vsscanf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vsscanf\"") +#pragma comment(linker, "/export:_o___stdio_common_vswprintf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vswprintf\"") +#pragma comment(linker, "/export:_o___stdio_common_vswprintf_p=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vswprintf_p\"") +#pragma comment(linker, "/export:_o___stdio_common_vswprintf_s=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vswprintf_s\"") +#pragma comment(linker, "/export:_o___stdio_common_vswscanf=\"C:\\Windows\\System32\\ucrtbase._o___stdio_common_vswscanf\"") +#pragma comment(linker, "/export:_o___timezone=\"C:\\Windows\\System32\\ucrtbase._o___timezone\"") +#pragma comment(linker, "/export:_o___tzname=\"C:\\Windows\\System32\\ucrtbase._o___tzname\"") +#pragma comment(linker, "/export:_o___wcserror=\"C:\\Windows\\System32\\ucrtbase._o___wcserror\"") +#pragma comment(linker, "/export:_o__access=\"C:\\Windows\\System32\\ucrtbase._o__access\"") +#pragma comment(linker, "/export:_o__access_s=\"C:\\Windows\\System32\\ucrtbase._o__access_s\"") +#pragma comment(linker, "/export:_o__aligned_free=\"C:\\Windows\\System32\\ucrtbase._o__aligned_free\"") +#pragma comment(linker, "/export:_o__aligned_malloc=\"C:\\Windows\\System32\\ucrtbase._o__aligned_malloc\"") +#pragma comment(linker, "/export:_o__aligned_msize=\"C:\\Windows\\System32\\ucrtbase._o__aligned_msize\"") +#pragma comment(linker, "/export:_o__aligned_offset_malloc=\"C:\\Windows\\System32\\ucrtbase._o__aligned_offset_malloc\"") +#pragma comment(linker, "/export:_o__aligned_offset_realloc=\"C:\\Windows\\System32\\ucrtbase._o__aligned_offset_realloc\"") +#pragma comment(linker, "/export:_o__aligned_offset_recalloc=\"C:\\Windows\\System32\\ucrtbase._o__aligned_offset_recalloc\"") +#pragma comment(linker, "/export:_o__aligned_realloc=\"C:\\Windows\\System32\\ucrtbase._o__aligned_realloc\"") +#pragma comment(linker, "/export:_o__aligned_recalloc=\"C:\\Windows\\System32\\ucrtbase._o__aligned_recalloc\"") +#pragma comment(linker, "/export:_o__atodbl=\"C:\\Windows\\System32\\ucrtbase._o__atodbl\"") +#pragma comment(linker, "/export:_o__atodbl_l=\"C:\\Windows\\System32\\ucrtbase._o__atodbl_l\"") +#pragma comment(linker, "/export:_o__atof_l=\"C:\\Windows\\System32\\ucrtbase._o__atof_l\"") +#pragma comment(linker, "/export:_o__atoflt=\"C:\\Windows\\System32\\ucrtbase._o__atoflt\"") +#pragma comment(linker, "/export:_o__atoflt_l=\"C:\\Windows\\System32\\ucrtbase._o__atoflt_l\"") +#pragma comment(linker, "/export:_o__atoi64=\"C:\\Windows\\System32\\ucrtbase._o__atoi64\"") +#pragma comment(linker, "/export:_o__atoi64_l=\"C:\\Windows\\System32\\ucrtbase._o__atoi64_l\"") +#pragma comment(linker, "/export:_o__atoi_l=\"C:\\Windows\\System32\\ucrtbase._o__atoi_l\"") +#pragma comment(linker, "/export:_o__atol_l=\"C:\\Windows\\System32\\ucrtbase._o__atol_l\"") +#pragma comment(linker, "/export:_o__atoldbl=\"C:\\Windows\\System32\\ucrtbase._o__atoldbl\"") +#pragma comment(linker, "/export:_o__atoldbl_l=\"C:\\Windows\\System32\\ucrtbase._o__atoldbl_l\"") +#pragma comment(linker, "/export:_o__atoll_l=\"C:\\Windows\\System32\\ucrtbase._o__atoll_l\"") +#pragma comment(linker, "/export:_o__beep=\"C:\\Windows\\System32\\ucrtbase._o__beep\"") +#pragma comment(linker, "/export:_o__beginthread=\"C:\\Windows\\System32\\ucrtbase._o__beginthread\"") +#pragma comment(linker, "/export:_o__beginthreadex=\"C:\\Windows\\System32\\ucrtbase._o__beginthreadex\"") +#pragma comment(linker, "/export:_o__cabs=\"C:\\Windows\\System32\\ucrtbase._o__cabs\"") +#pragma comment(linker, "/export:_o__callnewh=\"C:\\Windows\\System32\\ucrtbase._o__callnewh\"") +#pragma comment(linker, "/export:_o__calloc_base=\"C:\\Windows\\System32\\ucrtbase._o__calloc_base\"") +#pragma comment(linker, "/export:_o__cexit=\"C:\\Windows\\System32\\ucrtbase._o__cexit\"") +#pragma comment(linker, "/export:_o__cgets=\"C:\\Windows\\System32\\ucrtbase._o__cgets\"") +#pragma comment(linker, "/export:_o__cgets_s=\"C:\\Windows\\System32\\ucrtbase._o__cgets_s\"") +#pragma comment(linker, "/export:_o__cgetws=\"C:\\Windows\\System32\\ucrtbase._o__cgetws\"") +#pragma comment(linker, "/export:_o__cgetws_s=\"C:\\Windows\\System32\\ucrtbase._o__cgetws_s\"") +#pragma comment(linker, "/export:_o__chdir=\"C:\\Windows\\System32\\ucrtbase._o__chdir\"") +#pragma comment(linker, "/export:_o__chdrive=\"C:\\Windows\\System32\\ucrtbase._o__chdrive\"") +#pragma comment(linker, "/export:_o__chmod=\"C:\\Windows\\System32\\ucrtbase._o__chmod\"") +#pragma comment(linker, "/export:_o__chsize=\"C:\\Windows\\System32\\ucrtbase._o__chsize\"") +#pragma comment(linker, "/export:_o__chsize_s=\"C:\\Windows\\System32\\ucrtbase._o__chsize_s\"") +#pragma comment(linker, "/export:_o__close=\"C:\\Windows\\System32\\ucrtbase._o__close\"") +#pragma comment(linker, "/export:_o__commit=\"C:\\Windows\\System32\\ucrtbase._o__commit\"") +#pragma comment(linker, "/export:_o__configthreadlocale=\"C:\\Windows\\System32\\ucrtbase._o__configthreadlocale\"") +#pragma comment(linker, "/export:_o__configure_narrow_argv=\"C:\\Windows\\System32\\ucrtbase._o__configure_narrow_argv\"") +#pragma comment(linker, "/export:_o__configure_wide_argv=\"C:\\Windows\\System32\\ucrtbase._o__configure_wide_argv\"") +#pragma comment(linker, "/export:_o__controlfp_s=\"C:\\Windows\\System32\\ucrtbase._o__controlfp_s\"") +#pragma comment(linker, "/export:_o__cputs=\"C:\\Windows\\System32\\ucrtbase._o__cputs\"") +#pragma comment(linker, "/export:_o__cputws=\"C:\\Windows\\System32\\ucrtbase._o__cputws\"") +#pragma comment(linker, "/export:_o__creat=\"C:\\Windows\\System32\\ucrtbase._o__creat\"") +#pragma comment(linker, "/export:_o__create_locale=\"C:\\Windows\\System32\\ucrtbase._o__create_locale\"") +#pragma comment(linker, "/export:_o__crt_atexit=\"C:\\Windows\\System32\\ucrtbase._o__crt_atexit\"") +#pragma comment(linker, "/export:_o__ctime32_s=\"C:\\Windows\\System32\\ucrtbase._o__ctime32_s\"") +#pragma comment(linker, "/export:_o__ctime64_s=\"C:\\Windows\\System32\\ucrtbase._o__ctime64_s\"") +#pragma comment(linker, "/export:_o__cwait=\"C:\\Windows\\System32\\ucrtbase._o__cwait\"") +#pragma comment(linker, "/export:_o__d_int=\"C:\\Windows\\System32\\ucrtbase._o__d_int\"") +#pragma comment(linker, "/export:_o__dclass=\"C:\\Windows\\System32\\ucrtbase._o__dclass\"") +#pragma comment(linker, "/export:_o__difftime32=\"C:\\Windows\\System32\\ucrtbase._o__difftime32\"") +#pragma comment(linker, "/export:_o__difftime64=\"C:\\Windows\\System32\\ucrtbase._o__difftime64\"") +#pragma comment(linker, "/export:_o__dlog=\"C:\\Windows\\System32\\ucrtbase._o__dlog\"") +#pragma comment(linker, "/export:_o__dnorm=\"C:\\Windows\\System32\\ucrtbase._o__dnorm\"") +#pragma comment(linker, "/export:_o__dpcomp=\"C:\\Windows\\System32\\ucrtbase._o__dpcomp\"") +#pragma comment(linker, "/export:_o__dpoly=\"C:\\Windows\\System32\\ucrtbase._o__dpoly\"") +#pragma comment(linker, "/export:_o__dscale=\"C:\\Windows\\System32\\ucrtbase._o__dscale\"") +#pragma comment(linker, "/export:_o__dsign=\"C:\\Windows\\System32\\ucrtbase._o__dsign\"") +#pragma comment(linker, "/export:_o__dsin=\"C:\\Windows\\System32\\ucrtbase._o__dsin\"") +#pragma comment(linker, "/export:_o__dtest=\"C:\\Windows\\System32\\ucrtbase._o__dtest\"") +#pragma comment(linker, "/export:_o__dunscale=\"C:\\Windows\\System32\\ucrtbase._o__dunscale\"") +#pragma comment(linker, "/export:_o__dup=\"C:\\Windows\\System32\\ucrtbase._o__dup\"") +#pragma comment(linker, "/export:_o__dup2=\"C:\\Windows\\System32\\ucrtbase._o__dup2\"") +#pragma comment(linker, "/export:_o__dupenv_s=\"C:\\Windows\\System32\\ucrtbase._o__dupenv_s\"") +#pragma comment(linker, "/export:_o__ecvt=\"C:\\Windows\\System32\\ucrtbase._o__ecvt\"") +#pragma comment(linker, "/export:_o__ecvt_s=\"C:\\Windows\\System32\\ucrtbase._o__ecvt_s\"") +#pragma comment(linker, "/export:_o__endthread=\"C:\\Windows\\System32\\ucrtbase._o__endthread\"") +#pragma comment(linker, "/export:_o__endthreadex=\"C:\\Windows\\System32\\ucrtbase._o__endthreadex\"") +#pragma comment(linker, "/export:_o__eof=\"C:\\Windows\\System32\\ucrtbase._o__eof\"") +#pragma comment(linker, "/export:_o__errno=\"C:\\Windows\\System32\\ucrtbase._o__errno\"") +#pragma comment(linker, "/export:_o__except1=\"C:\\Windows\\System32\\ucrtbase._o__except1\"") +#pragma comment(linker, "/export:_o__execute_onexit_table=\"C:\\Windows\\System32\\ucrtbase._o__execute_onexit_table\"") +#pragma comment(linker, "/export:_o__execv=\"C:\\Windows\\System32\\ucrtbase._o__execv\"") +#pragma comment(linker, "/export:_o__execve=\"C:\\Windows\\System32\\ucrtbase._o__execve\"") +#pragma comment(linker, "/export:_o__execvp=\"C:\\Windows\\System32\\ucrtbase._o__execvp\"") +#pragma comment(linker, "/export:_o__execvpe=\"C:\\Windows\\System32\\ucrtbase._o__execvpe\"") +#pragma comment(linker, "/export:_o__exit=\"C:\\Windows\\System32\\ucrtbase._o__exit\"") +#pragma comment(linker, "/export:_o__expand=\"C:\\Windows\\System32\\ucrtbase._o__expand\"") +#pragma comment(linker, "/export:_o__fclose_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fclose_nolock\"") +#pragma comment(linker, "/export:_o__fcloseall=\"C:\\Windows\\System32\\ucrtbase._o__fcloseall\"") +#pragma comment(linker, "/export:_o__fcvt=\"C:\\Windows\\System32\\ucrtbase._o__fcvt\"") +#pragma comment(linker, "/export:_o__fcvt_s=\"C:\\Windows\\System32\\ucrtbase._o__fcvt_s\"") +#pragma comment(linker, "/export:_o__fd_int=\"C:\\Windows\\System32\\ucrtbase._o__fd_int\"") +#pragma comment(linker, "/export:_o__fdclass=\"C:\\Windows\\System32\\ucrtbase._o__fdclass\"") +#pragma comment(linker, "/export:_o__fdexp=\"C:\\Windows\\System32\\ucrtbase._o__fdexp\"") +#pragma comment(linker, "/export:_o__fdlog=\"C:\\Windows\\System32\\ucrtbase._o__fdlog\"") +#pragma comment(linker, "/export:_o__fdopen=\"C:\\Windows\\System32\\ucrtbase._o__fdopen\"") +#pragma comment(linker, "/export:_o__fdpcomp=\"C:\\Windows\\System32\\ucrtbase._o__fdpcomp\"") +#pragma comment(linker, "/export:_o__fdpoly=\"C:\\Windows\\System32\\ucrtbase._o__fdpoly\"") +#pragma comment(linker, "/export:_o__fdscale=\"C:\\Windows\\System32\\ucrtbase._o__fdscale\"") +#pragma comment(linker, "/export:_o__fdsign=\"C:\\Windows\\System32\\ucrtbase._o__fdsign\"") +#pragma comment(linker, "/export:_o__fdsin=\"C:\\Windows\\System32\\ucrtbase._o__fdsin\"") +#pragma comment(linker, "/export:_o__fflush_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fflush_nolock\"") +#pragma comment(linker, "/export:_o__fgetc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fgetc_nolock\"") +#pragma comment(linker, "/export:_o__fgetchar=\"C:\\Windows\\System32\\ucrtbase._o__fgetchar\"") +#pragma comment(linker, "/export:_o__fgetwc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fgetwc_nolock\"") +#pragma comment(linker, "/export:_o__fgetwchar=\"C:\\Windows\\System32\\ucrtbase._o__fgetwchar\"") +#pragma comment(linker, "/export:_o__filelength=\"C:\\Windows\\System32\\ucrtbase._o__filelength\"") +#pragma comment(linker, "/export:_o__filelengthi64=\"C:\\Windows\\System32\\ucrtbase._o__filelengthi64\"") +#pragma comment(linker, "/export:_o__fileno=\"C:\\Windows\\System32\\ucrtbase._o__fileno\"") +#pragma comment(linker, "/export:_o__findclose=\"C:\\Windows\\System32\\ucrtbase._o__findclose\"") +#pragma comment(linker, "/export:_o__findfirst32=\"C:\\Windows\\System32\\ucrtbase._o__findfirst32\"") +#pragma comment(linker, "/export:_o__findfirst32i64=\"C:\\Windows\\System32\\ucrtbase._o__findfirst32i64\"") +#pragma comment(linker, "/export:_o__findfirst64=\"C:\\Windows\\System32\\ucrtbase._o__findfirst64\"") +#pragma comment(linker, "/export:_o__findfirst64i32=\"C:\\Windows\\System32\\ucrtbase._o__findfirst64i32\"") +#pragma comment(linker, "/export:_o__findnext32=\"C:\\Windows\\System32\\ucrtbase._o__findnext32\"") +#pragma comment(linker, "/export:_o__findnext32i64=\"C:\\Windows\\System32\\ucrtbase._o__findnext32i64\"") +#pragma comment(linker, "/export:_o__findnext64=\"C:\\Windows\\System32\\ucrtbase._o__findnext64\"") +#pragma comment(linker, "/export:_o__findnext64i32=\"C:\\Windows\\System32\\ucrtbase._o__findnext64i32\"") +#pragma comment(linker, "/export:_o__flushall=\"C:\\Windows\\System32\\ucrtbase._o__flushall\"") +#pragma comment(linker, "/export:_o__fpclass=\"C:\\Windows\\System32\\ucrtbase._o__fpclass\"") +#pragma comment(linker, "/export:_o__fpclassf=\"C:\\Windows\\System32\\ucrtbase._o__fpclassf\"") +#pragma comment(linker, "/export:_o__fputc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fputc_nolock\"") +#pragma comment(linker, "/export:_o__fputchar=\"C:\\Windows\\System32\\ucrtbase._o__fputchar\"") +#pragma comment(linker, "/export:_o__fputwc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fputwc_nolock\"") +#pragma comment(linker, "/export:_o__fputwchar=\"C:\\Windows\\System32\\ucrtbase._o__fputwchar\"") +#pragma comment(linker, "/export:_o__fread_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fread_nolock\"") +#pragma comment(linker, "/export:_o__fread_nolock_s=\"C:\\Windows\\System32\\ucrtbase._o__fread_nolock_s\"") +#pragma comment(linker, "/export:_o__free_base=\"C:\\Windows\\System32\\ucrtbase._o__free_base\"") +#pragma comment(linker, "/export:_o__free_locale=\"C:\\Windows\\System32\\ucrtbase._o__free_locale\"") +#pragma comment(linker, "/export:_o__fseek_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fseek_nolock\"") +#pragma comment(linker, "/export:_o__fseeki64=\"C:\\Windows\\System32\\ucrtbase._o__fseeki64\"") +#pragma comment(linker, "/export:_o__fseeki64_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fseeki64_nolock\"") +#pragma comment(linker, "/export:_o__fsopen=\"C:\\Windows\\System32\\ucrtbase._o__fsopen\"") +#pragma comment(linker, "/export:_o__fstat32=\"C:\\Windows\\System32\\ucrtbase._o__fstat32\"") +#pragma comment(linker, "/export:_o__fstat32i64=\"C:\\Windows\\System32\\ucrtbase._o__fstat32i64\"") +#pragma comment(linker, "/export:_o__fstat64=\"C:\\Windows\\System32\\ucrtbase._o__fstat64\"") +#pragma comment(linker, "/export:_o__fstat64i32=\"C:\\Windows\\System32\\ucrtbase._o__fstat64i32\"") +#pragma comment(linker, "/export:_o__ftell_nolock=\"C:\\Windows\\System32\\ucrtbase._o__ftell_nolock\"") +#pragma comment(linker, "/export:_o__ftelli64=\"C:\\Windows\\System32\\ucrtbase._o__ftelli64\"") +#pragma comment(linker, "/export:_o__ftelli64_nolock=\"C:\\Windows\\System32\\ucrtbase._o__ftelli64_nolock\"") +#pragma comment(linker, "/export:_o__ftime32=\"C:\\Windows\\System32\\ucrtbase._o__ftime32\"") +#pragma comment(linker, "/export:_o__ftime32_s=\"C:\\Windows\\System32\\ucrtbase._o__ftime32_s\"") +#pragma comment(linker, "/export:_o__ftime64=\"C:\\Windows\\System32\\ucrtbase._o__ftime64\"") +#pragma comment(linker, "/export:_o__ftime64_s=\"C:\\Windows\\System32\\ucrtbase._o__ftime64_s\"") +#pragma comment(linker, "/export:_o__fullpath=\"C:\\Windows\\System32\\ucrtbase._o__fullpath\"") +#pragma comment(linker, "/export:_o__futime32=\"C:\\Windows\\System32\\ucrtbase._o__futime32\"") +#pragma comment(linker, "/export:_o__futime64=\"C:\\Windows\\System32\\ucrtbase._o__futime64\"") +#pragma comment(linker, "/export:_o__fwrite_nolock=\"C:\\Windows\\System32\\ucrtbase._o__fwrite_nolock\"") +#pragma comment(linker, "/export:_o__gcvt=\"C:\\Windows\\System32\\ucrtbase._o__gcvt\"") +#pragma comment(linker, "/export:_o__gcvt_s=\"C:\\Windows\\System32\\ucrtbase._o__gcvt_s\"") +#pragma comment(linker, "/export:_o__get_daylight=\"C:\\Windows\\System32\\ucrtbase._o__get_daylight\"") +#pragma comment(linker, "/export:_o__get_doserrno=\"C:\\Windows\\System32\\ucrtbase._o__get_doserrno\"") +#pragma comment(linker, "/export:_o__get_dstbias=\"C:\\Windows\\System32\\ucrtbase._o__get_dstbias\"") +#pragma comment(linker, "/export:_o__get_errno=\"C:\\Windows\\System32\\ucrtbase._o__get_errno\"") +#pragma comment(linker, "/export:_o__get_fmode=\"C:\\Windows\\System32\\ucrtbase._o__get_fmode\"") +#pragma comment(linker, "/export:_o__get_heap_handle=\"C:\\Windows\\System32\\ucrtbase._o__get_heap_handle\"") +#pragma comment(linker, "/export:_o__get_initial_narrow_environment=\"C:\\Windows\\System32\\ucrtbase._o__get_initial_narrow_environment\"") +#pragma comment(linker, "/export:_o__get_initial_wide_environment=\"C:\\Windows\\System32\\ucrtbase._o__get_initial_wide_environment\"") +#pragma comment(linker, "/export:_o__get_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._o__get_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_o__get_narrow_winmain_command_line=\"C:\\Windows\\System32\\ucrtbase._o__get_narrow_winmain_command_line\"") +#pragma comment(linker, "/export:_o__get_osfhandle=\"C:\\Windows\\System32\\ucrtbase._o__get_osfhandle\"") +#pragma comment(linker, "/export:_o__get_pgmptr=\"C:\\Windows\\System32\\ucrtbase._o__get_pgmptr\"") +#pragma comment(linker, "/export:_o__get_stream_buffer_pointers=\"C:\\Windows\\System32\\ucrtbase._o__get_stream_buffer_pointers\"") +#pragma comment(linker, "/export:_o__get_terminate=\"C:\\Windows\\System32\\ucrtbase._o__get_terminate\"") +#pragma comment(linker, "/export:_o__get_thread_local_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._o__get_thread_local_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_o__get_timezone=\"C:\\Windows\\System32\\ucrtbase._o__get_timezone\"") +#pragma comment(linker, "/export:_o__get_tzname=\"C:\\Windows\\System32\\ucrtbase._o__get_tzname\"") +#pragma comment(linker, "/export:_o__get_wide_winmain_command_line=\"C:\\Windows\\System32\\ucrtbase._o__get_wide_winmain_command_line\"") +#pragma comment(linker, "/export:_o__get_wpgmptr=\"C:\\Windows\\System32\\ucrtbase._o__get_wpgmptr\"") +#pragma comment(linker, "/export:_o__getc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__getc_nolock\"") +#pragma comment(linker, "/export:_o__getch=\"C:\\Windows\\System32\\ucrtbase._o__getch\"") +#pragma comment(linker, "/export:_o__getch_nolock=\"C:\\Windows\\System32\\ucrtbase._o__getch_nolock\"") +#pragma comment(linker, "/export:_o__getche=\"C:\\Windows\\System32\\ucrtbase._o__getche\"") +#pragma comment(linker, "/export:_o__getche_nolock=\"C:\\Windows\\System32\\ucrtbase._o__getche_nolock\"") +#pragma comment(linker, "/export:_o__getcwd=\"C:\\Windows\\System32\\ucrtbase._o__getcwd\"") +#pragma comment(linker, "/export:_o__getdcwd=\"C:\\Windows\\System32\\ucrtbase._o__getdcwd\"") +#pragma comment(linker, "/export:_o__getdiskfree=\"C:\\Windows\\System32\\ucrtbase._o__getdiskfree\"") +#pragma comment(linker, "/export:_o__getdllprocaddr=\"C:\\Windows\\System32\\ucrtbase._o__getdllprocaddr\"") +#pragma comment(linker, "/export:_o__getdrive=\"C:\\Windows\\System32\\ucrtbase._o__getdrive\"") +#pragma comment(linker, "/export:_o__getdrives=\"C:\\Windows\\System32\\ucrtbase._o__getdrives\"") +#pragma comment(linker, "/export:_o__getmbcp=\"C:\\Windows\\System32\\ucrtbase._o__getmbcp\"") +#pragma comment(linker, "/export:_o__getsystime=\"C:\\Windows\\System32\\ucrtbase._o__getsystime\"") +#pragma comment(linker, "/export:_o__getw=\"C:\\Windows\\System32\\ucrtbase._o__getw\"") +#pragma comment(linker, "/export:_o__getwc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__getwc_nolock\"") +#pragma comment(linker, "/export:_o__getwch=\"C:\\Windows\\System32\\ucrtbase._o__getwch\"") +#pragma comment(linker, "/export:_o__getwch_nolock=\"C:\\Windows\\System32\\ucrtbase._o__getwch_nolock\"") +#pragma comment(linker, "/export:_o__getwche=\"C:\\Windows\\System32\\ucrtbase._o__getwche\"") +#pragma comment(linker, "/export:_o__getwche_nolock=\"C:\\Windows\\System32\\ucrtbase._o__getwche_nolock\"") +#pragma comment(linker, "/export:_o__getws=\"C:\\Windows\\System32\\ucrtbase._o__getws\"") +#pragma comment(linker, "/export:_o__getws_s=\"C:\\Windows\\System32\\ucrtbase._o__getws_s\"") +#pragma comment(linker, "/export:_o__gmtime32=\"C:\\Windows\\System32\\ucrtbase._o__gmtime32\"") +#pragma comment(linker, "/export:_o__gmtime32_s=\"C:\\Windows\\System32\\ucrtbase._o__gmtime32_s\"") +#pragma comment(linker, "/export:_o__gmtime64=\"C:\\Windows\\System32\\ucrtbase._o__gmtime64\"") +#pragma comment(linker, "/export:_o__gmtime64_s=\"C:\\Windows\\System32\\ucrtbase._o__gmtime64_s\"") +#pragma comment(linker, "/export:_o__heapchk=\"C:\\Windows\\System32\\ucrtbase._o__heapchk\"") +#pragma comment(linker, "/export:_o__heapmin=\"C:\\Windows\\System32\\ucrtbase._o__heapmin\"") +#pragma comment(linker, "/export:_o__hypot=\"C:\\Windows\\System32\\ucrtbase._o__hypot\"") +#pragma comment(linker, "/export:_o__hypotf=\"C:\\Windows\\System32\\ucrtbase._o__hypotf\"") +#pragma comment(linker, "/export:_o__i64toa=\"C:\\Windows\\System32\\ucrtbase._o__i64toa\"") +#pragma comment(linker, "/export:_o__i64toa_s=\"C:\\Windows\\System32\\ucrtbase._o__i64toa_s\"") +#pragma comment(linker, "/export:_o__i64tow=\"C:\\Windows\\System32\\ucrtbase._o__i64tow\"") +#pragma comment(linker, "/export:_o__i64tow_s=\"C:\\Windows\\System32\\ucrtbase._o__i64tow_s\"") +#pragma comment(linker, "/export:_o__initialize_narrow_environment=\"C:\\Windows\\System32\\ucrtbase._o__initialize_narrow_environment\"") +#pragma comment(linker, "/export:_o__initialize_onexit_table=\"C:\\Windows\\System32\\ucrtbase._o__initialize_onexit_table\"") +#pragma comment(linker, "/export:_o__initialize_wide_environment=\"C:\\Windows\\System32\\ucrtbase._o__initialize_wide_environment\"") +#pragma comment(linker, "/export:_o__invalid_parameter_noinfo=\"C:\\Windows\\System32\\ucrtbase._o__invalid_parameter_noinfo\"") +#pragma comment(linker, "/export:_o__invalid_parameter_noinfo_noreturn=\"C:\\Windows\\System32\\ucrtbase._o__invalid_parameter_noinfo_noreturn\"") +#pragma comment(linker, "/export:_o__isatty=\"C:\\Windows\\System32\\ucrtbase._o__isatty\"") +#pragma comment(linker, "/export:_o__isctype=\"C:\\Windows\\System32\\ucrtbase._o__isctype\"") +#pragma comment(linker, "/export:_o__isctype_l=\"C:\\Windows\\System32\\ucrtbase._o__isctype_l\"") +#pragma comment(linker, "/export:_o__isleadbyte_l=\"C:\\Windows\\System32\\ucrtbase._o__isleadbyte_l\"") +#pragma comment(linker, "/export:_o__ismbbalnum=\"C:\\Windows\\System32\\ucrtbase._o__ismbbalnum\"") +#pragma comment(linker, "/export:_o__ismbbalnum_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbalnum_l\"") +#pragma comment(linker, "/export:_o__ismbbalpha=\"C:\\Windows\\System32\\ucrtbase._o__ismbbalpha\"") +#pragma comment(linker, "/export:_o__ismbbalpha_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbalpha_l\"") +#pragma comment(linker, "/export:_o__ismbbblank=\"C:\\Windows\\System32\\ucrtbase._o__ismbbblank\"") +#pragma comment(linker, "/export:_o__ismbbblank_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbblank_l\"") +#pragma comment(linker, "/export:_o__ismbbgraph=\"C:\\Windows\\System32\\ucrtbase._o__ismbbgraph\"") +#pragma comment(linker, "/export:_o__ismbbgraph_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbgraph_l\"") +#pragma comment(linker, "/export:_o__ismbbkalnum=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkalnum\"") +#pragma comment(linker, "/export:_o__ismbbkalnum_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkalnum_l\"") +#pragma comment(linker, "/export:_o__ismbbkana=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkana\"") +#pragma comment(linker, "/export:_o__ismbbkana_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkana_l\"") +#pragma comment(linker, "/export:_o__ismbbkprint=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkprint\"") +#pragma comment(linker, "/export:_o__ismbbkprint_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkprint_l\"") +#pragma comment(linker, "/export:_o__ismbbkpunct=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkpunct\"") +#pragma comment(linker, "/export:_o__ismbbkpunct_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbkpunct_l\"") +#pragma comment(linker, "/export:_o__ismbblead=\"C:\\Windows\\System32\\ucrtbase._o__ismbblead\"") +#pragma comment(linker, "/export:_o__ismbblead_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbblead_l\"") +#pragma comment(linker, "/export:_o__ismbbprint=\"C:\\Windows\\System32\\ucrtbase._o__ismbbprint\"") +#pragma comment(linker, "/export:_o__ismbbprint_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbprint_l\"") +#pragma comment(linker, "/export:_o__ismbbpunct=\"C:\\Windows\\System32\\ucrtbase._o__ismbbpunct\"") +#pragma comment(linker, "/export:_o__ismbbpunct_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbpunct_l\"") +#pragma comment(linker, "/export:_o__ismbbtrail=\"C:\\Windows\\System32\\ucrtbase._o__ismbbtrail\"") +#pragma comment(linker, "/export:_o__ismbbtrail_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbbtrail_l\"") +#pragma comment(linker, "/export:_o__ismbcalnum=\"C:\\Windows\\System32\\ucrtbase._o__ismbcalnum\"") +#pragma comment(linker, "/export:_o__ismbcalnum_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcalnum_l\"") +#pragma comment(linker, "/export:_o__ismbcalpha=\"C:\\Windows\\System32\\ucrtbase._o__ismbcalpha\"") +#pragma comment(linker, "/export:_o__ismbcalpha_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcalpha_l\"") +#pragma comment(linker, "/export:_o__ismbcblank=\"C:\\Windows\\System32\\ucrtbase._o__ismbcblank\"") +#pragma comment(linker, "/export:_o__ismbcblank_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcblank_l\"") +#pragma comment(linker, "/export:_o__ismbcdigit=\"C:\\Windows\\System32\\ucrtbase._o__ismbcdigit\"") +#pragma comment(linker, "/export:_o__ismbcdigit_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcdigit_l\"") +#pragma comment(linker, "/export:_o__ismbcgraph=\"C:\\Windows\\System32\\ucrtbase._o__ismbcgraph\"") +#pragma comment(linker, "/export:_o__ismbcgraph_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcgraph_l\"") +#pragma comment(linker, "/export:_o__ismbchira=\"C:\\Windows\\System32\\ucrtbase._o__ismbchira\"") +#pragma comment(linker, "/export:_o__ismbchira_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbchira_l\"") +#pragma comment(linker, "/export:_o__ismbckata=\"C:\\Windows\\System32\\ucrtbase._o__ismbckata\"") +#pragma comment(linker, "/export:_o__ismbckata_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbckata_l\"") +#pragma comment(linker, "/export:_o__ismbcl0=\"C:\\Windows\\System32\\ucrtbase._o__ismbcl0\"") +#pragma comment(linker, "/export:_o__ismbcl0_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcl0_l\"") +#pragma comment(linker, "/export:_o__ismbcl1=\"C:\\Windows\\System32\\ucrtbase._o__ismbcl1\"") +#pragma comment(linker, "/export:_o__ismbcl1_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcl1_l\"") +#pragma comment(linker, "/export:_o__ismbcl2=\"C:\\Windows\\System32\\ucrtbase._o__ismbcl2\"") +#pragma comment(linker, "/export:_o__ismbcl2_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcl2_l\"") +#pragma comment(linker, "/export:_o__ismbclegal=\"C:\\Windows\\System32\\ucrtbase._o__ismbclegal\"") +#pragma comment(linker, "/export:_o__ismbclegal_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbclegal_l\"") +#pragma comment(linker, "/export:_o__ismbclower=\"C:\\Windows\\System32\\ucrtbase._o__ismbclower\"") +#pragma comment(linker, "/export:_o__ismbclower_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbclower_l\"") +#pragma comment(linker, "/export:_o__ismbcprint=\"C:\\Windows\\System32\\ucrtbase._o__ismbcprint\"") +#pragma comment(linker, "/export:_o__ismbcprint_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcprint_l\"") +#pragma comment(linker, "/export:_o__ismbcpunct=\"C:\\Windows\\System32\\ucrtbase._o__ismbcpunct\"") +#pragma comment(linker, "/export:_o__ismbcpunct_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcpunct_l\"") +#pragma comment(linker, "/export:_o__ismbcspace=\"C:\\Windows\\System32\\ucrtbase._o__ismbcspace\"") +#pragma comment(linker, "/export:_o__ismbcspace_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcspace_l\"") +#pragma comment(linker, "/export:_o__ismbcsymbol=\"C:\\Windows\\System32\\ucrtbase._o__ismbcsymbol\"") +#pragma comment(linker, "/export:_o__ismbcsymbol_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcsymbol_l\"") +#pragma comment(linker, "/export:_o__ismbcupper=\"C:\\Windows\\System32\\ucrtbase._o__ismbcupper\"") +#pragma comment(linker, "/export:_o__ismbcupper_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbcupper_l\"") +#pragma comment(linker, "/export:_o__ismbslead=\"C:\\Windows\\System32\\ucrtbase._o__ismbslead\"") +#pragma comment(linker, "/export:_o__ismbslead_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbslead_l\"") +#pragma comment(linker, "/export:_o__ismbstrail=\"C:\\Windows\\System32\\ucrtbase._o__ismbstrail\"") +#pragma comment(linker, "/export:_o__ismbstrail_l=\"C:\\Windows\\System32\\ucrtbase._o__ismbstrail_l\"") +#pragma comment(linker, "/export:_o__iswctype_l=\"C:\\Windows\\System32\\ucrtbase._o__iswctype_l\"") +#pragma comment(linker, "/export:_o__itoa=\"C:\\Windows\\System32\\ucrtbase._o__itoa\"") +#pragma comment(linker, "/export:_o__itoa_s=\"C:\\Windows\\System32\\ucrtbase._o__itoa_s\"") +#pragma comment(linker, "/export:_o__itow=\"C:\\Windows\\System32\\ucrtbase._o__itow\"") +#pragma comment(linker, "/export:_o__itow_s=\"C:\\Windows\\System32\\ucrtbase._o__itow_s\"") +#pragma comment(linker, "/export:_o__j0=\"C:\\Windows\\System32\\ucrtbase._o__j0\"") +#pragma comment(linker, "/export:_o__j1=\"C:\\Windows\\System32\\ucrtbase._o__j1\"") +#pragma comment(linker, "/export:_o__jn=\"C:\\Windows\\System32\\ucrtbase._o__jn\"") +#pragma comment(linker, "/export:_o__kbhit=\"C:\\Windows\\System32\\ucrtbase._o__kbhit\"") +#pragma comment(linker, "/export:_o__ld_int=\"C:\\Windows\\System32\\ucrtbase._o__ld_int\"") +#pragma comment(linker, "/export:_o__ldclass=\"C:\\Windows\\System32\\ucrtbase._o__ldclass\"") +#pragma comment(linker, "/export:_o__ldexp=\"C:\\Windows\\System32\\ucrtbase._o__ldexp\"") +#pragma comment(linker, "/export:_o__ldlog=\"C:\\Windows\\System32\\ucrtbase._o__ldlog\"") +#pragma comment(linker, "/export:_o__ldpcomp=\"C:\\Windows\\System32\\ucrtbase._o__ldpcomp\"") +#pragma comment(linker, "/export:_o__ldpoly=\"C:\\Windows\\System32\\ucrtbase._o__ldpoly\"") +#pragma comment(linker, "/export:_o__ldscale=\"C:\\Windows\\System32\\ucrtbase._o__ldscale\"") +#pragma comment(linker, "/export:_o__ldsign=\"C:\\Windows\\System32\\ucrtbase._o__ldsign\"") +#pragma comment(linker, "/export:_o__ldsin=\"C:\\Windows\\System32\\ucrtbase._o__ldsin\"") +#pragma comment(linker, "/export:_o__ldtest=\"C:\\Windows\\System32\\ucrtbase._o__ldtest\"") +#pragma comment(linker, "/export:_o__ldunscale=\"C:\\Windows\\System32\\ucrtbase._o__ldunscale\"") +#pragma comment(linker, "/export:_o__lfind=\"C:\\Windows\\System32\\ucrtbase._o__lfind\"") +#pragma comment(linker, "/export:_o__lfind_s=\"C:\\Windows\\System32\\ucrtbase._o__lfind_s\"") +#pragma comment(linker, "/export:_o__loaddll=\"C:\\Windows\\System32\\ucrtbase._o__loaddll\"") +#pragma comment(linker, "/export:_o__localtime32=\"C:\\Windows\\System32\\ucrtbase._o__localtime32\"") +#pragma comment(linker, "/export:_o__localtime32_s=\"C:\\Windows\\System32\\ucrtbase._o__localtime32_s\"") +#pragma comment(linker, "/export:_o__localtime64=\"C:\\Windows\\System32\\ucrtbase._o__localtime64\"") +#pragma comment(linker, "/export:_o__localtime64_s=\"C:\\Windows\\System32\\ucrtbase._o__localtime64_s\"") +#pragma comment(linker, "/export:_o__lock_file=\"C:\\Windows\\System32\\ucrtbase._o__lock_file\"") +#pragma comment(linker, "/export:_o__locking=\"C:\\Windows\\System32\\ucrtbase._o__locking\"") +#pragma comment(linker, "/export:_o__logb=\"C:\\Windows\\System32\\ucrtbase._o__logb\"") +#pragma comment(linker, "/export:_o__logbf=\"C:\\Windows\\System32\\ucrtbase._o__logbf\"") +#pragma comment(linker, "/export:_o__lsearch=\"C:\\Windows\\System32\\ucrtbase._o__lsearch\"") +#pragma comment(linker, "/export:_o__lsearch_s=\"C:\\Windows\\System32\\ucrtbase._o__lsearch_s\"") +#pragma comment(linker, "/export:_o__lseek=\"C:\\Windows\\System32\\ucrtbase._o__lseek\"") +#pragma comment(linker, "/export:_o__lseeki64=\"C:\\Windows\\System32\\ucrtbase._o__lseeki64\"") +#pragma comment(linker, "/export:_o__ltoa=\"C:\\Windows\\System32\\ucrtbase._o__ltoa\"") +#pragma comment(linker, "/export:_o__ltoa_s=\"C:\\Windows\\System32\\ucrtbase._o__ltoa_s\"") +#pragma comment(linker, "/export:_o__ltow=\"C:\\Windows\\System32\\ucrtbase._o__ltow\"") +#pragma comment(linker, "/export:_o__ltow_s=\"C:\\Windows\\System32\\ucrtbase._o__ltow_s\"") +#pragma comment(linker, "/export:_o__makepath=\"C:\\Windows\\System32\\ucrtbase._o__makepath\"") +#pragma comment(linker, "/export:_o__makepath_s=\"C:\\Windows\\System32\\ucrtbase._o__makepath_s\"") +#pragma comment(linker, "/export:_o__malloc_base=\"C:\\Windows\\System32\\ucrtbase._o__malloc_base\"") +#pragma comment(linker, "/export:_o__mbbtombc=\"C:\\Windows\\System32\\ucrtbase._o__mbbtombc\"") +#pragma comment(linker, "/export:_o__mbbtombc_l=\"C:\\Windows\\System32\\ucrtbase._o__mbbtombc_l\"") +#pragma comment(linker, "/export:_o__mbbtype=\"C:\\Windows\\System32\\ucrtbase._o__mbbtype\"") +#pragma comment(linker, "/export:_o__mbbtype_l=\"C:\\Windows\\System32\\ucrtbase._o__mbbtype_l\"") +#pragma comment(linker, "/export:_o__mbccpy=\"C:\\Windows\\System32\\ucrtbase._o__mbccpy\"") +#pragma comment(linker, "/export:_o__mbccpy_l=\"C:\\Windows\\System32\\ucrtbase._o__mbccpy_l\"") +#pragma comment(linker, "/export:_o__mbccpy_s=\"C:\\Windows\\System32\\ucrtbase._o__mbccpy_s\"") +#pragma comment(linker, "/export:_o__mbccpy_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbccpy_s_l\"") +#pragma comment(linker, "/export:_o__mbcjistojms=\"C:\\Windows\\System32\\ucrtbase._o__mbcjistojms\"") +#pragma comment(linker, "/export:_o__mbcjistojms_l=\"C:\\Windows\\System32\\ucrtbase._o__mbcjistojms_l\"") +#pragma comment(linker, "/export:_o__mbcjmstojis=\"C:\\Windows\\System32\\ucrtbase._o__mbcjmstojis\"") +#pragma comment(linker, "/export:_o__mbcjmstojis_l=\"C:\\Windows\\System32\\ucrtbase._o__mbcjmstojis_l\"") +#pragma comment(linker, "/export:_o__mbclen=\"C:\\Windows\\System32\\ucrtbase._o__mbclen\"") +#pragma comment(linker, "/export:_o__mbclen_l=\"C:\\Windows\\System32\\ucrtbase._o__mbclen_l\"") +#pragma comment(linker, "/export:_o__mbctohira=\"C:\\Windows\\System32\\ucrtbase._o__mbctohira\"") +#pragma comment(linker, "/export:_o__mbctohira_l=\"C:\\Windows\\System32\\ucrtbase._o__mbctohira_l\"") +#pragma comment(linker, "/export:_o__mbctokata=\"C:\\Windows\\System32\\ucrtbase._o__mbctokata\"") +#pragma comment(linker, "/export:_o__mbctokata_l=\"C:\\Windows\\System32\\ucrtbase._o__mbctokata_l\"") +#pragma comment(linker, "/export:_o__mbctolower=\"C:\\Windows\\System32\\ucrtbase._o__mbctolower\"") +#pragma comment(linker, "/export:_o__mbctolower_l=\"C:\\Windows\\System32\\ucrtbase._o__mbctolower_l\"") +#pragma comment(linker, "/export:_o__mbctombb=\"C:\\Windows\\System32\\ucrtbase._o__mbctombb\"") +#pragma comment(linker, "/export:_o__mbctombb_l=\"C:\\Windows\\System32\\ucrtbase._o__mbctombb_l\"") +#pragma comment(linker, "/export:_o__mbctoupper=\"C:\\Windows\\System32\\ucrtbase._o__mbctoupper\"") +#pragma comment(linker, "/export:_o__mbctoupper_l=\"C:\\Windows\\System32\\ucrtbase._o__mbctoupper_l\"") +#pragma comment(linker, "/export:_o__mblen_l=\"C:\\Windows\\System32\\ucrtbase._o__mblen_l\"") +#pragma comment(linker, "/export:_o__mbsbtype=\"C:\\Windows\\System32\\ucrtbase._o__mbsbtype\"") +#pragma comment(linker, "/export:_o__mbsbtype_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsbtype_l\"") +#pragma comment(linker, "/export:_o__mbscat_s=\"C:\\Windows\\System32\\ucrtbase._o__mbscat_s\"") +#pragma comment(linker, "/export:_o__mbscat_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbscat_s_l\"") +#pragma comment(linker, "/export:_o__mbschr=\"C:\\Windows\\System32\\ucrtbase._o__mbschr\"") +#pragma comment(linker, "/export:_o__mbschr_l=\"C:\\Windows\\System32\\ucrtbase._o__mbschr_l\"") +#pragma comment(linker, "/export:_o__mbscmp=\"C:\\Windows\\System32\\ucrtbase._o__mbscmp\"") +#pragma comment(linker, "/export:_o__mbscmp_l=\"C:\\Windows\\System32\\ucrtbase._o__mbscmp_l\"") +#pragma comment(linker, "/export:_o__mbscoll=\"C:\\Windows\\System32\\ucrtbase._o__mbscoll\"") +#pragma comment(linker, "/export:_o__mbscoll_l=\"C:\\Windows\\System32\\ucrtbase._o__mbscoll_l\"") +#pragma comment(linker, "/export:_o__mbscpy_s=\"C:\\Windows\\System32\\ucrtbase._o__mbscpy_s\"") +#pragma comment(linker, "/export:_o__mbscpy_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbscpy_s_l\"") +#pragma comment(linker, "/export:_o__mbscspn=\"C:\\Windows\\System32\\ucrtbase._o__mbscspn\"") +#pragma comment(linker, "/export:_o__mbscspn_l=\"C:\\Windows\\System32\\ucrtbase._o__mbscspn_l\"") +#pragma comment(linker, "/export:_o__mbsdec=\"C:\\Windows\\System32\\ucrtbase._o__mbsdec\"") +#pragma comment(linker, "/export:_o__mbsdec_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsdec_l\"") +#pragma comment(linker, "/export:_o__mbsicmp=\"C:\\Windows\\System32\\ucrtbase._o__mbsicmp\"") +#pragma comment(linker, "/export:_o__mbsicmp_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsicmp_l\"") +#pragma comment(linker, "/export:_o__mbsicoll=\"C:\\Windows\\System32\\ucrtbase._o__mbsicoll\"") +#pragma comment(linker, "/export:_o__mbsicoll_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsicoll_l\"") +#pragma comment(linker, "/export:_o__mbsinc=\"C:\\Windows\\System32\\ucrtbase._o__mbsinc\"") +#pragma comment(linker, "/export:_o__mbsinc_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsinc_l\"") +#pragma comment(linker, "/export:_o__mbslen=\"C:\\Windows\\System32\\ucrtbase._o__mbslen\"") +#pragma comment(linker, "/export:_o__mbslen_l=\"C:\\Windows\\System32\\ucrtbase._o__mbslen_l\"") +#pragma comment(linker, "/export:_o__mbslwr=\"C:\\Windows\\System32\\ucrtbase._o__mbslwr\"") +#pragma comment(linker, "/export:_o__mbslwr_l=\"C:\\Windows\\System32\\ucrtbase._o__mbslwr_l\"") +#pragma comment(linker, "/export:_o__mbslwr_s=\"C:\\Windows\\System32\\ucrtbase._o__mbslwr_s\"") +#pragma comment(linker, "/export:_o__mbslwr_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbslwr_s_l\"") +#pragma comment(linker, "/export:_o__mbsnbcat=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcat\"") +#pragma comment(linker, "/export:_o__mbsnbcat_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcat_l\"") +#pragma comment(linker, "/export:_o__mbsnbcat_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcat_s\"") +#pragma comment(linker, "/export:_o__mbsnbcat_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcat_s_l\"") +#pragma comment(linker, "/export:_o__mbsnbcmp=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcmp\"") +#pragma comment(linker, "/export:_o__mbsnbcmp_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcmp_l\"") +#pragma comment(linker, "/export:_o__mbsnbcnt=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcnt\"") +#pragma comment(linker, "/export:_o__mbsnbcnt_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcnt_l\"") +#pragma comment(linker, "/export:_o__mbsnbcoll=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcoll\"") +#pragma comment(linker, "/export:_o__mbsnbcoll_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcoll_l\"") +#pragma comment(linker, "/export:_o__mbsnbcpy=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcpy\"") +#pragma comment(linker, "/export:_o__mbsnbcpy_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcpy_l\"") +#pragma comment(linker, "/export:_o__mbsnbcpy_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcpy_s\"") +#pragma comment(linker, "/export:_o__mbsnbcpy_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbcpy_s_l\"") +#pragma comment(linker, "/export:_o__mbsnbicmp=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbicmp\"") +#pragma comment(linker, "/export:_o__mbsnbicmp_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbicmp_l\"") +#pragma comment(linker, "/export:_o__mbsnbicoll=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbicoll\"") +#pragma comment(linker, "/export:_o__mbsnbicoll_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbicoll_l\"") +#pragma comment(linker, "/export:_o__mbsnbset=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbset\"") +#pragma comment(linker, "/export:_o__mbsnbset_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbset_l\"") +#pragma comment(linker, "/export:_o__mbsnbset_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbset_s\"") +#pragma comment(linker, "/export:_o__mbsnbset_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnbset_s_l\"") +#pragma comment(linker, "/export:_o__mbsncat=\"C:\\Windows\\System32\\ucrtbase._o__mbsncat\"") +#pragma comment(linker, "/export:_o__mbsncat_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsncat_l\"") +#pragma comment(linker, "/export:_o__mbsncat_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsncat_s\"") +#pragma comment(linker, "/export:_o__mbsncat_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsncat_s_l\"") +#pragma comment(linker, "/export:_o__mbsnccnt=\"C:\\Windows\\System32\\ucrtbase._o__mbsnccnt\"") +#pragma comment(linker, "/export:_o__mbsnccnt_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnccnt_l\"") +#pragma comment(linker, "/export:_o__mbsncmp=\"C:\\Windows\\System32\\ucrtbase._o__mbsncmp\"") +#pragma comment(linker, "/export:_o__mbsncmp_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsncmp_l\"") +#pragma comment(linker, "/export:_o__mbsncoll=\"C:\\Windows\\System32\\ucrtbase._o__mbsncoll\"") +#pragma comment(linker, "/export:_o__mbsncoll_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsncoll_l\"") +#pragma comment(linker, "/export:_o__mbsncpy=\"C:\\Windows\\System32\\ucrtbase._o__mbsncpy\"") +#pragma comment(linker, "/export:_o__mbsncpy_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsncpy_l\"") +#pragma comment(linker, "/export:_o__mbsncpy_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsncpy_s\"") +#pragma comment(linker, "/export:_o__mbsncpy_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsncpy_s_l\"") +#pragma comment(linker, "/export:_o__mbsnextc=\"C:\\Windows\\System32\\ucrtbase._o__mbsnextc\"") +#pragma comment(linker, "/export:_o__mbsnextc_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnextc_l\"") +#pragma comment(linker, "/export:_o__mbsnicmp=\"C:\\Windows\\System32\\ucrtbase._o__mbsnicmp\"") +#pragma comment(linker, "/export:_o__mbsnicmp_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnicmp_l\"") +#pragma comment(linker, "/export:_o__mbsnicoll=\"C:\\Windows\\System32\\ucrtbase._o__mbsnicoll\"") +#pragma comment(linker, "/export:_o__mbsnicoll_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnicoll_l\"") +#pragma comment(linker, "/export:_o__mbsninc=\"C:\\Windows\\System32\\ucrtbase._o__mbsninc\"") +#pragma comment(linker, "/export:_o__mbsninc_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsninc_l\"") +#pragma comment(linker, "/export:_o__mbsnlen=\"C:\\Windows\\System32\\ucrtbase._o__mbsnlen\"") +#pragma comment(linker, "/export:_o__mbsnlen_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnlen_l\"") +#pragma comment(linker, "/export:_o__mbsnset=\"C:\\Windows\\System32\\ucrtbase._o__mbsnset\"") +#pragma comment(linker, "/export:_o__mbsnset_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnset_l\"") +#pragma comment(linker, "/export:_o__mbsnset_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsnset_s\"") +#pragma comment(linker, "/export:_o__mbsnset_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsnset_s_l\"") +#pragma comment(linker, "/export:_o__mbspbrk=\"C:\\Windows\\System32\\ucrtbase._o__mbspbrk\"") +#pragma comment(linker, "/export:_o__mbspbrk_l=\"C:\\Windows\\System32\\ucrtbase._o__mbspbrk_l\"") +#pragma comment(linker, "/export:_o__mbsrchr=\"C:\\Windows\\System32\\ucrtbase._o__mbsrchr\"") +#pragma comment(linker, "/export:_o__mbsrchr_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsrchr_l\"") +#pragma comment(linker, "/export:_o__mbsrev=\"C:\\Windows\\System32\\ucrtbase._o__mbsrev\"") +#pragma comment(linker, "/export:_o__mbsrev_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsrev_l\"") +#pragma comment(linker, "/export:_o__mbsset=\"C:\\Windows\\System32\\ucrtbase._o__mbsset\"") +#pragma comment(linker, "/export:_o__mbsset_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsset_l\"") +#pragma comment(linker, "/export:_o__mbsset_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsset_s\"") +#pragma comment(linker, "/export:_o__mbsset_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsset_s_l\"") +#pragma comment(linker, "/export:_o__mbsspn=\"C:\\Windows\\System32\\ucrtbase._o__mbsspn\"") +#pragma comment(linker, "/export:_o__mbsspn_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsspn_l\"") +#pragma comment(linker, "/export:_o__mbsspnp=\"C:\\Windows\\System32\\ucrtbase._o__mbsspnp\"") +#pragma comment(linker, "/export:_o__mbsspnp_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsspnp_l\"") +#pragma comment(linker, "/export:_o__mbsstr=\"C:\\Windows\\System32\\ucrtbase._o__mbsstr\"") +#pragma comment(linker, "/export:_o__mbsstr_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsstr_l\"") +#pragma comment(linker, "/export:_o__mbstok=\"C:\\Windows\\System32\\ucrtbase._o__mbstok\"") +#pragma comment(linker, "/export:_o__mbstok_l=\"C:\\Windows\\System32\\ucrtbase._o__mbstok_l\"") +#pragma comment(linker, "/export:_o__mbstok_s=\"C:\\Windows\\System32\\ucrtbase._o__mbstok_s\"") +#pragma comment(linker, "/export:_o__mbstok_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbstok_s_l\"") +#pragma comment(linker, "/export:_o__mbstowcs_l=\"C:\\Windows\\System32\\ucrtbase._o__mbstowcs_l\"") +#pragma comment(linker, "/export:_o__mbstowcs_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbstowcs_s_l\"") +#pragma comment(linker, "/export:_o__mbstrlen=\"C:\\Windows\\System32\\ucrtbase._o__mbstrlen\"") +#pragma comment(linker, "/export:_o__mbstrlen_l=\"C:\\Windows\\System32\\ucrtbase._o__mbstrlen_l\"") +#pragma comment(linker, "/export:_o__mbstrnlen=\"C:\\Windows\\System32\\ucrtbase._o__mbstrnlen\"") +#pragma comment(linker, "/export:_o__mbstrnlen_l=\"C:\\Windows\\System32\\ucrtbase._o__mbstrnlen_l\"") +#pragma comment(linker, "/export:_o__mbsupr=\"C:\\Windows\\System32\\ucrtbase._o__mbsupr\"") +#pragma comment(linker, "/export:_o__mbsupr_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsupr_l\"") +#pragma comment(linker, "/export:_o__mbsupr_s=\"C:\\Windows\\System32\\ucrtbase._o__mbsupr_s\"") +#pragma comment(linker, "/export:_o__mbsupr_s_l=\"C:\\Windows\\System32\\ucrtbase._o__mbsupr_s_l\"") +#pragma comment(linker, "/export:_o__mbtowc_l=\"C:\\Windows\\System32\\ucrtbase._o__mbtowc_l\"") +#pragma comment(linker, "/export:_o__memicmp=\"C:\\Windows\\System32\\ucrtbase._o__memicmp\"") +#pragma comment(linker, "/export:_o__memicmp_l=\"C:\\Windows\\System32\\ucrtbase._o__memicmp_l\"") +#pragma comment(linker, "/export:_o__mkdir=\"C:\\Windows\\System32\\ucrtbase._o__mkdir\"") +#pragma comment(linker, "/export:_o__mkgmtime32=\"C:\\Windows\\System32\\ucrtbase._o__mkgmtime32\"") +#pragma comment(linker, "/export:_o__mkgmtime64=\"C:\\Windows\\System32\\ucrtbase._o__mkgmtime64\"") +#pragma comment(linker, "/export:_o__mktemp=\"C:\\Windows\\System32\\ucrtbase._o__mktemp\"") +#pragma comment(linker, "/export:_o__mktemp_s=\"C:\\Windows\\System32\\ucrtbase._o__mktemp_s\"") +#pragma comment(linker, "/export:_o__mktime32=\"C:\\Windows\\System32\\ucrtbase._o__mktime32\"") +#pragma comment(linker, "/export:_o__mktime64=\"C:\\Windows\\System32\\ucrtbase._o__mktime64\"") +#pragma comment(linker, "/export:_o__msize=\"C:\\Windows\\System32\\ucrtbase._o__msize\"") +#pragma comment(linker, "/export:_o__nextafter=\"C:\\Windows\\System32\\ucrtbase._o__nextafter\"") +#pragma comment(linker, "/export:_o__nextafterf=\"C:\\Windows\\System32\\ucrtbase._o__nextafterf\"") +#pragma comment(linker, "/export:_o__open_osfhandle=\"C:\\Windows\\System32\\ucrtbase._o__open_osfhandle\"") +#pragma comment(linker, "/export:_o__pclose=\"C:\\Windows\\System32\\ucrtbase._o__pclose\"") +#pragma comment(linker, "/export:_o__pipe=\"C:\\Windows\\System32\\ucrtbase._o__pipe\"") +#pragma comment(linker, "/export:_o__popen=\"C:\\Windows\\System32\\ucrtbase._o__popen\"") +#pragma comment(linker, "/export:_o__purecall=\"C:\\Windows\\System32\\ucrtbase._o__purecall\"") +#pragma comment(linker, "/export:_o__putc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__putc_nolock\"") +#pragma comment(linker, "/export:_o__putch=\"C:\\Windows\\System32\\ucrtbase._o__putch\"") +#pragma comment(linker, "/export:_o__putch_nolock=\"C:\\Windows\\System32\\ucrtbase._o__putch_nolock\"") +#pragma comment(linker, "/export:_o__putenv=\"C:\\Windows\\System32\\ucrtbase._o__putenv\"") +#pragma comment(linker, "/export:_o__putenv_s=\"C:\\Windows\\System32\\ucrtbase._o__putenv_s\"") +#pragma comment(linker, "/export:_o__putw=\"C:\\Windows\\System32\\ucrtbase._o__putw\"") +#pragma comment(linker, "/export:_o__putwc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__putwc_nolock\"") +#pragma comment(linker, "/export:_o__putwch=\"C:\\Windows\\System32\\ucrtbase._o__putwch\"") +#pragma comment(linker, "/export:_o__putwch_nolock=\"C:\\Windows\\System32\\ucrtbase._o__putwch_nolock\"") +#pragma comment(linker, "/export:_o__putws=\"C:\\Windows\\System32\\ucrtbase._o__putws\"") +#pragma comment(linker, "/export:_o__read=\"C:\\Windows\\System32\\ucrtbase._o__read\"") +#pragma comment(linker, "/export:_o__realloc_base=\"C:\\Windows\\System32\\ucrtbase._o__realloc_base\"") +#pragma comment(linker, "/export:_o__recalloc=\"C:\\Windows\\System32\\ucrtbase._o__recalloc\"") +#pragma comment(linker, "/export:_o__register_onexit_function=\"C:\\Windows\\System32\\ucrtbase._o__register_onexit_function\"") +#pragma comment(linker, "/export:_o__resetstkoflw=\"C:\\Windows\\System32\\ucrtbase._o__resetstkoflw\"") +#pragma comment(linker, "/export:_o__rmdir=\"C:\\Windows\\System32\\ucrtbase._o__rmdir\"") +#pragma comment(linker, "/export:_o__rmtmp=\"C:\\Windows\\System32\\ucrtbase._o__rmtmp\"") +#pragma comment(linker, "/export:_o__scalb=\"C:\\Windows\\System32\\ucrtbase._o__scalb\"") +#pragma comment(linker, "/export:_o__scalbf=\"C:\\Windows\\System32\\ucrtbase._o__scalbf\"") +#pragma comment(linker, "/export:_o__searchenv=\"C:\\Windows\\System32\\ucrtbase._o__searchenv\"") +#pragma comment(linker, "/export:_o__searchenv_s=\"C:\\Windows\\System32\\ucrtbase._o__searchenv_s\"") +#pragma comment(linker, "/export:_o__seh_filter_dll=\"C:\\Windows\\System32\\ucrtbase._o__seh_filter_dll\"") +#pragma comment(linker, "/export:_o__seh_filter_exe=\"C:\\Windows\\System32\\ucrtbase._o__seh_filter_exe\"") +#pragma comment(linker, "/export:_o__set_abort_behavior=\"C:\\Windows\\System32\\ucrtbase._o__set_abort_behavior\"") +#pragma comment(linker, "/export:_o__set_app_type=\"C:\\Windows\\System32\\ucrtbase._o__set_app_type\"") +#pragma comment(linker, "/export:_o__set_doserrno=\"C:\\Windows\\System32\\ucrtbase._o__set_doserrno\"") +#pragma comment(linker, "/export:_o__set_errno=\"C:\\Windows\\System32\\ucrtbase._o__set_errno\"") +#pragma comment(linker, "/export:_o__set_fmode=\"C:\\Windows\\System32\\ucrtbase._o__set_fmode\"") +#pragma comment(linker, "/export:_o__set_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._o__set_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_o__set_new_handler=\"C:\\Windows\\System32\\ucrtbase._o__set_new_handler\"") +#pragma comment(linker, "/export:_o__set_new_mode=\"C:\\Windows\\System32\\ucrtbase._o__set_new_mode\"") +#pragma comment(linker, "/export:_o__set_thread_local_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._o__set_thread_local_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_o__seterrormode=\"C:\\Windows\\System32\\ucrtbase._o__seterrormode\"") +#pragma comment(linker, "/export:_o__setmbcp=\"C:\\Windows\\System32\\ucrtbase._o__setmbcp\"") +#pragma comment(linker, "/export:_o__setmode=\"C:\\Windows\\System32\\ucrtbase._o__setmode\"") +#pragma comment(linker, "/export:_o__setsystime=\"C:\\Windows\\System32\\ucrtbase._o__setsystime\"") +#pragma comment(linker, "/export:_o__sleep=\"C:\\Windows\\System32\\ucrtbase._o__sleep\"") +#pragma comment(linker, "/export:_o__sopen=\"C:\\Windows\\System32\\ucrtbase._o__sopen\"") +#pragma comment(linker, "/export:_o__sopen_dispatch=\"C:\\Windows\\System32\\ucrtbase._o__sopen_dispatch\"") +#pragma comment(linker, "/export:_o__sopen_s=\"C:\\Windows\\System32\\ucrtbase._o__sopen_s\"") +#pragma comment(linker, "/export:_o__spawnv=\"C:\\Windows\\System32\\ucrtbase._o__spawnv\"") +#pragma comment(linker, "/export:_o__spawnve=\"C:\\Windows\\System32\\ucrtbase._o__spawnve\"") +#pragma comment(linker, "/export:_o__spawnvp=\"C:\\Windows\\System32\\ucrtbase._o__spawnvp\"") +#pragma comment(linker, "/export:_o__spawnvpe=\"C:\\Windows\\System32\\ucrtbase._o__spawnvpe\"") +#pragma comment(linker, "/export:_o__splitpath=\"C:\\Windows\\System32\\ucrtbase._o__splitpath\"") +#pragma comment(linker, "/export:_o__splitpath_s=\"C:\\Windows\\System32\\ucrtbase._o__splitpath_s\"") +#pragma comment(linker, "/export:_o__stat32=\"C:\\Windows\\System32\\ucrtbase._o__stat32\"") +#pragma comment(linker, "/export:_o__stat32i64=\"C:\\Windows\\System32\\ucrtbase._o__stat32i64\"") +#pragma comment(linker, "/export:_o__stat64=\"C:\\Windows\\System32\\ucrtbase._o__stat64\"") +#pragma comment(linker, "/export:_o__stat64i32=\"C:\\Windows\\System32\\ucrtbase._o__stat64i32\"") +#pragma comment(linker, "/export:_o__strcoll_l=\"C:\\Windows\\System32\\ucrtbase._o__strcoll_l\"") +#pragma comment(linker, "/export:_o__strdate=\"C:\\Windows\\System32\\ucrtbase._o__strdate\"") +#pragma comment(linker, "/export:_o__strdate_s=\"C:\\Windows\\System32\\ucrtbase._o__strdate_s\"") +#pragma comment(linker, "/export:_o__strdup=\"C:\\Windows\\System32\\ucrtbase._o__strdup\"") +#pragma comment(linker, "/export:_o__strerror=\"C:\\Windows\\System32\\ucrtbase._o__strerror\"") +#pragma comment(linker, "/export:_o__strerror_s=\"C:\\Windows\\System32\\ucrtbase._o__strerror_s\"") +#pragma comment(linker, "/export:_o__strftime_l=\"C:\\Windows\\System32\\ucrtbase._o__strftime_l\"") +#pragma comment(linker, "/export:_o__stricmp=\"C:\\Windows\\System32\\ucrtbase._o__stricmp\"") +#pragma comment(linker, "/export:_o__stricmp_l=\"C:\\Windows\\System32\\ucrtbase._o__stricmp_l\"") +#pragma comment(linker, "/export:_o__stricoll=\"C:\\Windows\\System32\\ucrtbase._o__stricoll\"") +#pragma comment(linker, "/export:_o__stricoll_l=\"C:\\Windows\\System32\\ucrtbase._o__stricoll_l\"") +#pragma comment(linker, "/export:_o__strlwr=\"C:\\Windows\\System32\\ucrtbase._o__strlwr\"") +#pragma comment(linker, "/export:_o__strlwr_l=\"C:\\Windows\\System32\\ucrtbase._o__strlwr_l\"") +#pragma comment(linker, "/export:_o__strlwr_s=\"C:\\Windows\\System32\\ucrtbase._o__strlwr_s\"") +#pragma comment(linker, "/export:_o__strlwr_s_l=\"C:\\Windows\\System32\\ucrtbase._o__strlwr_s_l\"") +#pragma comment(linker, "/export:_o__strncoll=\"C:\\Windows\\System32\\ucrtbase._o__strncoll\"") +#pragma comment(linker, "/export:_o__strncoll_l=\"C:\\Windows\\System32\\ucrtbase._o__strncoll_l\"") +#pragma comment(linker, "/export:_o__strnicmp=\"C:\\Windows\\System32\\ucrtbase._o__strnicmp\"") +#pragma comment(linker, "/export:_o__strnicmp_l=\"C:\\Windows\\System32\\ucrtbase._o__strnicmp_l\"") +#pragma comment(linker, "/export:_o__strnicoll=\"C:\\Windows\\System32\\ucrtbase._o__strnicoll\"") +#pragma comment(linker, "/export:_o__strnicoll_l=\"C:\\Windows\\System32\\ucrtbase._o__strnicoll_l\"") +#pragma comment(linker, "/export:_o__strnset_s=\"C:\\Windows\\System32\\ucrtbase._o__strnset_s\"") +#pragma comment(linker, "/export:_o__strset_s=\"C:\\Windows\\System32\\ucrtbase._o__strset_s\"") +#pragma comment(linker, "/export:_o__strtime=\"C:\\Windows\\System32\\ucrtbase._o__strtime\"") +#pragma comment(linker, "/export:_o__strtime_s=\"C:\\Windows\\System32\\ucrtbase._o__strtime_s\"") +#pragma comment(linker, "/export:_o__strtod_l=\"C:\\Windows\\System32\\ucrtbase._o__strtod_l\"") +#pragma comment(linker, "/export:_o__strtof_l=\"C:\\Windows\\System32\\ucrtbase._o__strtof_l\"") +#pragma comment(linker, "/export:_o__strtoi64=\"C:\\Windows\\System32\\ucrtbase._o__strtoi64\"") +#pragma comment(linker, "/export:_o__strtoi64_l=\"C:\\Windows\\System32\\ucrtbase._o__strtoi64_l\"") +#pragma comment(linker, "/export:_o__strtol_l=\"C:\\Windows\\System32\\ucrtbase._o__strtol_l\"") +#pragma comment(linker, "/export:_o__strtold_l=\"C:\\Windows\\System32\\ucrtbase._o__strtold_l\"") +#pragma comment(linker, "/export:_o__strtoll_l=\"C:\\Windows\\System32\\ucrtbase._o__strtoll_l\"") +#pragma comment(linker, "/export:_o__strtoui64=\"C:\\Windows\\System32\\ucrtbase._o__strtoui64\"") +#pragma comment(linker, "/export:_o__strtoui64_l=\"C:\\Windows\\System32\\ucrtbase._o__strtoui64_l\"") +#pragma comment(linker, "/export:_o__strtoul_l=\"C:\\Windows\\System32\\ucrtbase._o__strtoul_l\"") +#pragma comment(linker, "/export:_o__strtoull_l=\"C:\\Windows\\System32\\ucrtbase._o__strtoull_l\"") +#pragma comment(linker, "/export:_o__strupr=\"C:\\Windows\\System32\\ucrtbase._o__strupr\"") +#pragma comment(linker, "/export:_o__strupr_l=\"C:\\Windows\\System32\\ucrtbase._o__strupr_l\"") +#pragma comment(linker, "/export:_o__strupr_s=\"C:\\Windows\\System32\\ucrtbase._o__strupr_s\"") +#pragma comment(linker, "/export:_o__strupr_s_l=\"C:\\Windows\\System32\\ucrtbase._o__strupr_s_l\"") +#pragma comment(linker, "/export:_o__strxfrm_l=\"C:\\Windows\\System32\\ucrtbase._o__strxfrm_l\"") +#pragma comment(linker, "/export:_o__swab=\"C:\\Windows\\System32\\ucrtbase._o__swab\"") +#pragma comment(linker, "/export:_o__tell=\"C:\\Windows\\System32\\ucrtbase._o__tell\"") +#pragma comment(linker, "/export:_o__telli64=\"C:\\Windows\\System32\\ucrtbase._o__telli64\"") +#pragma comment(linker, "/export:_o__timespec32_get=\"C:\\Windows\\System32\\ucrtbase._o__timespec32_get\"") +#pragma comment(linker, "/export:_o__timespec64_get=\"C:\\Windows\\System32\\ucrtbase._o__timespec64_get\"") +#pragma comment(linker, "/export:_o__tolower=\"C:\\Windows\\System32\\ucrtbase._o__tolower\"") +#pragma comment(linker, "/export:_o__tolower_l=\"C:\\Windows\\System32\\ucrtbase._o__tolower_l\"") +#pragma comment(linker, "/export:_o__toupper=\"C:\\Windows\\System32\\ucrtbase._o__toupper\"") +#pragma comment(linker, "/export:_o__toupper_l=\"C:\\Windows\\System32\\ucrtbase._o__toupper_l\"") +#pragma comment(linker, "/export:_o__towlower_l=\"C:\\Windows\\System32\\ucrtbase._o__towlower_l\"") +#pragma comment(linker, "/export:_o__towupper_l=\"C:\\Windows\\System32\\ucrtbase._o__towupper_l\"") +#pragma comment(linker, "/export:_o__tzset=\"C:\\Windows\\System32\\ucrtbase._o__tzset\"") +#pragma comment(linker, "/export:_o__ui64toa=\"C:\\Windows\\System32\\ucrtbase._o__ui64toa\"") +#pragma comment(linker, "/export:_o__ui64toa_s=\"C:\\Windows\\System32\\ucrtbase._o__ui64toa_s\"") +#pragma comment(linker, "/export:_o__ui64tow=\"C:\\Windows\\System32\\ucrtbase._o__ui64tow\"") +#pragma comment(linker, "/export:_o__ui64tow_s=\"C:\\Windows\\System32\\ucrtbase._o__ui64tow_s\"") +#pragma comment(linker, "/export:_o__ultoa=\"C:\\Windows\\System32\\ucrtbase._o__ultoa\"") +#pragma comment(linker, "/export:_o__ultoa_s=\"C:\\Windows\\System32\\ucrtbase._o__ultoa_s\"") +#pragma comment(linker, "/export:_o__ultow=\"C:\\Windows\\System32\\ucrtbase._o__ultow\"") +#pragma comment(linker, "/export:_o__ultow_s=\"C:\\Windows\\System32\\ucrtbase._o__ultow_s\"") +#pragma comment(linker, "/export:_o__umask=\"C:\\Windows\\System32\\ucrtbase._o__umask\"") +#pragma comment(linker, "/export:_o__umask_s=\"C:\\Windows\\System32\\ucrtbase._o__umask_s\"") +#pragma comment(linker, "/export:_o__ungetc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__ungetc_nolock\"") +#pragma comment(linker, "/export:_o__ungetch=\"C:\\Windows\\System32\\ucrtbase._o__ungetch\"") +#pragma comment(linker, "/export:_o__ungetch_nolock=\"C:\\Windows\\System32\\ucrtbase._o__ungetch_nolock\"") +#pragma comment(linker, "/export:_o__ungetwc_nolock=\"C:\\Windows\\System32\\ucrtbase._o__ungetwc_nolock\"") +#pragma comment(linker, "/export:_o__ungetwch=\"C:\\Windows\\System32\\ucrtbase._o__ungetwch\"") +#pragma comment(linker, "/export:_o__ungetwch_nolock=\"C:\\Windows\\System32\\ucrtbase._o__ungetwch_nolock\"") +#pragma comment(linker, "/export:_o__unlink=\"C:\\Windows\\System32\\ucrtbase._o__unlink\"") +#pragma comment(linker, "/export:_o__unloaddll=\"C:\\Windows\\System32\\ucrtbase._o__unloaddll\"") +#pragma comment(linker, "/export:_o__unlock_file=\"C:\\Windows\\System32\\ucrtbase._o__unlock_file\"") +#pragma comment(linker, "/export:_o__utime32=\"C:\\Windows\\System32\\ucrtbase._o__utime32\"") +#pragma comment(linker, "/export:_o__utime64=\"C:\\Windows\\System32\\ucrtbase._o__utime64\"") +#pragma comment(linker, "/export:_o__waccess=\"C:\\Windows\\System32\\ucrtbase._o__waccess\"") +#pragma comment(linker, "/export:_o__waccess_s=\"C:\\Windows\\System32\\ucrtbase._o__waccess_s\"") +#pragma comment(linker, "/export:_o__wasctime=\"C:\\Windows\\System32\\ucrtbase._o__wasctime\"") +#pragma comment(linker, "/export:_o__wasctime_s=\"C:\\Windows\\System32\\ucrtbase._o__wasctime_s\"") +#pragma comment(linker, "/export:_o__wchdir=\"C:\\Windows\\System32\\ucrtbase._o__wchdir\"") +#pragma comment(linker, "/export:_o__wchmod=\"C:\\Windows\\System32\\ucrtbase._o__wchmod\"") +#pragma comment(linker, "/export:_o__wcreat=\"C:\\Windows\\System32\\ucrtbase._o__wcreat\"") +#pragma comment(linker, "/export:_o__wcreate_locale=\"C:\\Windows\\System32\\ucrtbase._o__wcreate_locale\"") +#pragma comment(linker, "/export:_o__wcscoll_l=\"C:\\Windows\\System32\\ucrtbase._o__wcscoll_l\"") +#pragma comment(linker, "/export:_o__wcsdup=\"C:\\Windows\\System32\\ucrtbase._o__wcsdup\"") +#pragma comment(linker, "/export:_o__wcserror=\"C:\\Windows\\System32\\ucrtbase._o__wcserror\"") +#pragma comment(linker, "/export:_o__wcserror_s=\"C:\\Windows\\System32\\ucrtbase._o__wcserror_s\"") +#pragma comment(linker, "/export:_o__wcsftime_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsftime_l\"") +#pragma comment(linker, "/export:_o__wcsicmp=\"C:\\Windows\\System32\\ucrtbase._o__wcsicmp\"") +#pragma comment(linker, "/export:_o__wcsicmp_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsicmp_l\"") +#pragma comment(linker, "/export:_o__wcsicoll=\"C:\\Windows\\System32\\ucrtbase._o__wcsicoll\"") +#pragma comment(linker, "/export:_o__wcsicoll_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsicoll_l\"") +#pragma comment(linker, "/export:_o__wcslwr=\"C:\\Windows\\System32\\ucrtbase._o__wcslwr\"") +#pragma comment(linker, "/export:_o__wcslwr_l=\"C:\\Windows\\System32\\ucrtbase._o__wcslwr_l\"") +#pragma comment(linker, "/export:_o__wcslwr_s=\"C:\\Windows\\System32\\ucrtbase._o__wcslwr_s\"") +#pragma comment(linker, "/export:_o__wcslwr_s_l=\"C:\\Windows\\System32\\ucrtbase._o__wcslwr_s_l\"") +#pragma comment(linker, "/export:_o__wcsncoll=\"C:\\Windows\\System32\\ucrtbase._o__wcsncoll\"") +#pragma comment(linker, "/export:_o__wcsncoll_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsncoll_l\"") +#pragma comment(linker, "/export:_o__wcsnicmp=\"C:\\Windows\\System32\\ucrtbase._o__wcsnicmp\"") +#pragma comment(linker, "/export:_o__wcsnicmp_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsnicmp_l\"") +#pragma comment(linker, "/export:_o__wcsnicoll=\"C:\\Windows\\System32\\ucrtbase._o__wcsnicoll\"") +#pragma comment(linker, "/export:_o__wcsnicoll_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsnicoll_l\"") +#pragma comment(linker, "/export:_o__wcsnset=\"C:\\Windows\\System32\\ucrtbase._o__wcsnset\"") +#pragma comment(linker, "/export:_o__wcsnset_s=\"C:\\Windows\\System32\\ucrtbase._o__wcsnset_s\"") +#pragma comment(linker, "/export:_o__wcsset=\"C:\\Windows\\System32\\ucrtbase._o__wcsset\"") +#pragma comment(linker, "/export:_o__wcsset_s=\"C:\\Windows\\System32\\ucrtbase._o__wcsset_s\"") +#pragma comment(linker, "/export:_o__wcstod_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstod_l\"") +#pragma comment(linker, "/export:_o__wcstof_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstof_l\"") +#pragma comment(linker, "/export:_o__wcstoi64=\"C:\\Windows\\System32\\ucrtbase._o__wcstoi64\"") +#pragma comment(linker, "/export:_o__wcstoi64_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstoi64_l\"") +#pragma comment(linker, "/export:_o__wcstol_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstol_l\"") +#pragma comment(linker, "/export:_o__wcstold_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstold_l\"") +#pragma comment(linker, "/export:_o__wcstoll_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstoll_l\"") +#pragma comment(linker, "/export:_o__wcstombs_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstombs_l\"") +#pragma comment(linker, "/export:_o__wcstombs_s_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstombs_s_l\"") +#pragma comment(linker, "/export:_o__wcstoui64=\"C:\\Windows\\System32\\ucrtbase._o__wcstoui64\"") +#pragma comment(linker, "/export:_o__wcstoui64_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstoui64_l\"") +#pragma comment(linker, "/export:_o__wcstoul_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstoul_l\"") +#pragma comment(linker, "/export:_o__wcstoull_l=\"C:\\Windows\\System32\\ucrtbase._o__wcstoull_l\"") +#pragma comment(linker, "/export:_o__wcsupr=\"C:\\Windows\\System32\\ucrtbase._o__wcsupr\"") +#pragma comment(linker, "/export:_o__wcsupr_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsupr_l\"") +#pragma comment(linker, "/export:_o__wcsupr_s=\"C:\\Windows\\System32\\ucrtbase._o__wcsupr_s\"") +#pragma comment(linker, "/export:_o__wcsupr_s_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsupr_s_l\"") +#pragma comment(linker, "/export:_o__wcsxfrm_l=\"C:\\Windows\\System32\\ucrtbase._o__wcsxfrm_l\"") +#pragma comment(linker, "/export:_o__wctime32=\"C:\\Windows\\System32\\ucrtbase._o__wctime32\"") +#pragma comment(linker, "/export:_o__wctime32_s=\"C:\\Windows\\System32\\ucrtbase._o__wctime32_s\"") +#pragma comment(linker, "/export:_o__wctime64=\"C:\\Windows\\System32\\ucrtbase._o__wctime64\"") +#pragma comment(linker, "/export:_o__wctime64_s=\"C:\\Windows\\System32\\ucrtbase._o__wctime64_s\"") +#pragma comment(linker, "/export:_o__wctomb_l=\"C:\\Windows\\System32\\ucrtbase._o__wctomb_l\"") +#pragma comment(linker, "/export:_o__wctomb_s_l=\"C:\\Windows\\System32\\ucrtbase._o__wctomb_s_l\"") +#pragma comment(linker, "/export:_o__wdupenv_s=\"C:\\Windows\\System32\\ucrtbase._o__wdupenv_s\"") +#pragma comment(linker, "/export:_o__wexecv=\"C:\\Windows\\System32\\ucrtbase._o__wexecv\"") +#pragma comment(linker, "/export:_o__wexecve=\"C:\\Windows\\System32\\ucrtbase._o__wexecve\"") +#pragma comment(linker, "/export:_o__wexecvp=\"C:\\Windows\\System32\\ucrtbase._o__wexecvp\"") +#pragma comment(linker, "/export:_o__wexecvpe=\"C:\\Windows\\System32\\ucrtbase._o__wexecvpe\"") +#pragma comment(linker, "/export:_o__wfdopen=\"C:\\Windows\\System32\\ucrtbase._o__wfdopen\"") +#pragma comment(linker, "/export:_o__wfindfirst32=\"C:\\Windows\\System32\\ucrtbase._o__wfindfirst32\"") +#pragma comment(linker, "/export:_o__wfindfirst32i64=\"C:\\Windows\\System32\\ucrtbase._o__wfindfirst32i64\"") +#pragma comment(linker, "/export:_o__wfindfirst64=\"C:\\Windows\\System32\\ucrtbase._o__wfindfirst64\"") +#pragma comment(linker, "/export:_o__wfindfirst64i32=\"C:\\Windows\\System32\\ucrtbase._o__wfindfirst64i32\"") +#pragma comment(linker, "/export:_o__wfindnext32=\"C:\\Windows\\System32\\ucrtbase._o__wfindnext32\"") +#pragma comment(linker, "/export:_o__wfindnext32i64=\"C:\\Windows\\System32\\ucrtbase._o__wfindnext32i64\"") +#pragma comment(linker, "/export:_o__wfindnext64=\"C:\\Windows\\System32\\ucrtbase._o__wfindnext64\"") +#pragma comment(linker, "/export:_o__wfindnext64i32=\"C:\\Windows\\System32\\ucrtbase._o__wfindnext64i32\"") +#pragma comment(linker, "/export:_o__wfopen=\"C:\\Windows\\System32\\ucrtbase._o__wfopen\"") +#pragma comment(linker, "/export:_o__wfopen_s=\"C:\\Windows\\System32\\ucrtbase._o__wfopen_s\"") +#pragma comment(linker, "/export:_o__wfreopen=\"C:\\Windows\\System32\\ucrtbase._o__wfreopen\"") +#pragma comment(linker, "/export:_o__wfreopen_s=\"C:\\Windows\\System32\\ucrtbase._o__wfreopen_s\"") +#pragma comment(linker, "/export:_o__wfsopen=\"C:\\Windows\\System32\\ucrtbase._o__wfsopen\"") +#pragma comment(linker, "/export:_o__wfullpath=\"C:\\Windows\\System32\\ucrtbase._o__wfullpath\"") +#pragma comment(linker, "/export:_o__wgetcwd=\"C:\\Windows\\System32\\ucrtbase._o__wgetcwd\"") +#pragma comment(linker, "/export:_o__wgetdcwd=\"C:\\Windows\\System32\\ucrtbase._o__wgetdcwd\"") +#pragma comment(linker, "/export:_o__wgetenv=\"C:\\Windows\\System32\\ucrtbase._o__wgetenv\"") +#pragma comment(linker, "/export:_o__wgetenv_s=\"C:\\Windows\\System32\\ucrtbase._o__wgetenv_s\"") +#pragma comment(linker, "/export:_o__wmakepath=\"C:\\Windows\\System32\\ucrtbase._o__wmakepath\"") +#pragma comment(linker, "/export:_o__wmakepath_s=\"C:\\Windows\\System32\\ucrtbase._o__wmakepath_s\"") +#pragma comment(linker, "/export:_o__wmkdir=\"C:\\Windows\\System32\\ucrtbase._o__wmkdir\"") +#pragma comment(linker, "/export:_o__wmktemp=\"C:\\Windows\\System32\\ucrtbase._o__wmktemp\"") +#pragma comment(linker, "/export:_o__wmktemp_s=\"C:\\Windows\\System32\\ucrtbase._o__wmktemp_s\"") +#pragma comment(linker, "/export:_o__wperror=\"C:\\Windows\\System32\\ucrtbase._o__wperror\"") +#pragma comment(linker, "/export:_o__wpopen=\"C:\\Windows\\System32\\ucrtbase._o__wpopen\"") +#pragma comment(linker, "/export:_o__wputenv=\"C:\\Windows\\System32\\ucrtbase._o__wputenv\"") +#pragma comment(linker, "/export:_o__wputenv_s=\"C:\\Windows\\System32\\ucrtbase._o__wputenv_s\"") +#pragma comment(linker, "/export:_o__wremove=\"C:\\Windows\\System32\\ucrtbase._o__wremove\"") +#pragma comment(linker, "/export:_o__wrename=\"C:\\Windows\\System32\\ucrtbase._o__wrename\"") +#pragma comment(linker, "/export:_o__write=\"C:\\Windows\\System32\\ucrtbase._o__write\"") +#pragma comment(linker, "/export:_o__wrmdir=\"C:\\Windows\\System32\\ucrtbase._o__wrmdir\"") +#pragma comment(linker, "/export:_o__wsearchenv=\"C:\\Windows\\System32\\ucrtbase._o__wsearchenv\"") +#pragma comment(linker, "/export:_o__wsearchenv_s=\"C:\\Windows\\System32\\ucrtbase._o__wsearchenv_s\"") +#pragma comment(linker, "/export:_o__wsetlocale=\"C:\\Windows\\System32\\ucrtbase._o__wsetlocale\"") +#pragma comment(linker, "/export:_o__wsopen_dispatch=\"C:\\Windows\\System32\\ucrtbase._o__wsopen_dispatch\"") +#pragma comment(linker, "/export:_o__wsopen_s=\"C:\\Windows\\System32\\ucrtbase._o__wsopen_s\"") +#pragma comment(linker, "/export:_o__wspawnv=\"C:\\Windows\\System32\\ucrtbase._o__wspawnv\"") +#pragma comment(linker, "/export:_o__wspawnve=\"C:\\Windows\\System32\\ucrtbase._o__wspawnve\"") +#pragma comment(linker, "/export:_o__wspawnvp=\"C:\\Windows\\System32\\ucrtbase._o__wspawnvp\"") +#pragma comment(linker, "/export:_o__wspawnvpe=\"C:\\Windows\\System32\\ucrtbase._o__wspawnvpe\"") +#pragma comment(linker, "/export:_o__wsplitpath=\"C:\\Windows\\System32\\ucrtbase._o__wsplitpath\"") +#pragma comment(linker, "/export:_o__wsplitpath_s=\"C:\\Windows\\System32\\ucrtbase._o__wsplitpath_s\"") +#pragma comment(linker, "/export:_o__wstat32=\"C:\\Windows\\System32\\ucrtbase._o__wstat32\"") +#pragma comment(linker, "/export:_o__wstat32i64=\"C:\\Windows\\System32\\ucrtbase._o__wstat32i64\"") +#pragma comment(linker, "/export:_o__wstat64=\"C:\\Windows\\System32\\ucrtbase._o__wstat64\"") +#pragma comment(linker, "/export:_o__wstat64i32=\"C:\\Windows\\System32\\ucrtbase._o__wstat64i32\"") +#pragma comment(linker, "/export:_o__wstrdate=\"C:\\Windows\\System32\\ucrtbase._o__wstrdate\"") +#pragma comment(linker, "/export:_o__wstrdate_s=\"C:\\Windows\\System32\\ucrtbase._o__wstrdate_s\"") +#pragma comment(linker, "/export:_o__wstrtime=\"C:\\Windows\\System32\\ucrtbase._o__wstrtime\"") +#pragma comment(linker, "/export:_o__wstrtime_s=\"C:\\Windows\\System32\\ucrtbase._o__wstrtime_s\"") +#pragma comment(linker, "/export:_o__wsystem=\"C:\\Windows\\System32\\ucrtbase._o__wsystem\"") +#pragma comment(linker, "/export:_o__wtmpnam_s=\"C:\\Windows\\System32\\ucrtbase._o__wtmpnam_s\"") +#pragma comment(linker, "/export:_o__wtof=\"C:\\Windows\\System32\\ucrtbase._o__wtof\"") +#pragma comment(linker, "/export:_o__wtof_l=\"C:\\Windows\\System32\\ucrtbase._o__wtof_l\"") +#pragma comment(linker, "/export:_o__wtoi=\"C:\\Windows\\System32\\ucrtbase._o__wtoi\"") +#pragma comment(linker, "/export:_o__wtoi64=\"C:\\Windows\\System32\\ucrtbase._o__wtoi64\"") +#pragma comment(linker, "/export:_o__wtoi64_l=\"C:\\Windows\\System32\\ucrtbase._o__wtoi64_l\"") +#pragma comment(linker, "/export:_o__wtoi_l=\"C:\\Windows\\System32\\ucrtbase._o__wtoi_l\"") +#pragma comment(linker, "/export:_o__wtol=\"C:\\Windows\\System32\\ucrtbase._o__wtol\"") +#pragma comment(linker, "/export:_o__wtol_l=\"C:\\Windows\\System32\\ucrtbase._o__wtol_l\"") +#pragma comment(linker, "/export:_o__wtoll=\"C:\\Windows\\System32\\ucrtbase._o__wtoll\"") +#pragma comment(linker, "/export:_o__wtoll_l=\"C:\\Windows\\System32\\ucrtbase._o__wtoll_l\"") +#pragma comment(linker, "/export:_o__wunlink=\"C:\\Windows\\System32\\ucrtbase._o__wunlink\"") +#pragma comment(linker, "/export:_o__wutime32=\"C:\\Windows\\System32\\ucrtbase._o__wutime32\"") +#pragma comment(linker, "/export:_o__wutime64=\"C:\\Windows\\System32\\ucrtbase._o__wutime64\"") +#pragma comment(linker, "/export:_o__y0=\"C:\\Windows\\System32\\ucrtbase._o__y0\"") +#pragma comment(linker, "/export:_o__y1=\"C:\\Windows\\System32\\ucrtbase._o__y1\"") +#pragma comment(linker, "/export:_o__yn=\"C:\\Windows\\System32\\ucrtbase._o__yn\"") +#pragma comment(linker, "/export:_o_abort=\"C:\\Windows\\System32\\ucrtbase._o_abort\"") +#pragma comment(linker, "/export:_o_acos=\"C:\\Windows\\System32\\ucrtbase._o_acos\"") +#pragma comment(linker, "/export:_o_acosf=\"C:\\Windows\\System32\\ucrtbase._o_acosf\"") +#pragma comment(linker, "/export:_o_acosh=\"C:\\Windows\\System32\\ucrtbase._o_acosh\"") +#pragma comment(linker, "/export:_o_acoshf=\"C:\\Windows\\System32\\ucrtbase._o_acoshf\"") +#pragma comment(linker, "/export:_o_acoshl=\"C:\\Windows\\System32\\ucrtbase._o_acoshl\"") +#pragma comment(linker, "/export:_o_asctime=\"C:\\Windows\\System32\\ucrtbase._o_asctime\"") +#pragma comment(linker, "/export:_o_asctime_s=\"C:\\Windows\\System32\\ucrtbase._o_asctime_s\"") +#pragma comment(linker, "/export:_o_asin=\"C:\\Windows\\System32\\ucrtbase._o_asin\"") +#pragma comment(linker, "/export:_o_asinf=\"C:\\Windows\\System32\\ucrtbase._o_asinf\"") +#pragma comment(linker, "/export:_o_asinh=\"C:\\Windows\\System32\\ucrtbase._o_asinh\"") +#pragma comment(linker, "/export:_o_asinhf=\"C:\\Windows\\System32\\ucrtbase._o_asinhf\"") +#pragma comment(linker, "/export:_o_asinhl=\"C:\\Windows\\System32\\ucrtbase._o_asinhl\"") +#pragma comment(linker, "/export:_o_atan=\"C:\\Windows\\System32\\ucrtbase._o_atan\"") +#pragma comment(linker, "/export:_o_atan2=\"C:\\Windows\\System32\\ucrtbase._o_atan2\"") +#pragma comment(linker, "/export:_o_atan2f=\"C:\\Windows\\System32\\ucrtbase._o_atan2f\"") +#pragma comment(linker, "/export:_o_atanf=\"C:\\Windows\\System32\\ucrtbase._o_atanf\"") +#pragma comment(linker, "/export:_o_atanh=\"C:\\Windows\\System32\\ucrtbase._o_atanh\"") +#pragma comment(linker, "/export:_o_atanhf=\"C:\\Windows\\System32\\ucrtbase._o_atanhf\"") +#pragma comment(linker, "/export:_o_atanhl=\"C:\\Windows\\System32\\ucrtbase._o_atanhl\"") +#pragma comment(linker, "/export:_o_atof=\"C:\\Windows\\System32\\ucrtbase._o_atof\"") +#pragma comment(linker, "/export:_o_atoi=\"C:\\Windows\\System32\\ucrtbase._o_atoi\"") +#pragma comment(linker, "/export:_o_atol=\"C:\\Windows\\System32\\ucrtbase._o_atol\"") +#pragma comment(linker, "/export:_o_atoll=\"C:\\Windows\\System32\\ucrtbase._o_atoll\"") +#pragma comment(linker, "/export:_o_bsearch=\"C:\\Windows\\System32\\ucrtbase._o_bsearch\"") +#pragma comment(linker, "/export:_o_bsearch_s=\"C:\\Windows\\System32\\ucrtbase._o_bsearch_s\"") +#pragma comment(linker, "/export:_o_btowc=\"C:\\Windows\\System32\\ucrtbase._o_btowc\"") +#pragma comment(linker, "/export:_o_calloc=\"C:\\Windows\\System32\\ucrtbase._o_calloc\"") +#pragma comment(linker, "/export:_o_cbrt=\"C:\\Windows\\System32\\ucrtbase._o_cbrt\"") +#pragma comment(linker, "/export:_o_cbrtf=\"C:\\Windows\\System32\\ucrtbase._o_cbrtf\"") +#pragma comment(linker, "/export:_o_ceil=\"C:\\Windows\\System32\\ucrtbase._o_ceil\"") +#pragma comment(linker, "/export:_o_ceilf=\"C:\\Windows\\System32\\ucrtbase._o_ceilf\"") +#pragma comment(linker, "/export:_o_clearerr=\"C:\\Windows\\System32\\ucrtbase._o_clearerr\"") +#pragma comment(linker, "/export:_o_clearerr_s=\"C:\\Windows\\System32\\ucrtbase._o_clearerr_s\"") +#pragma comment(linker, "/export:_o_cos=\"C:\\Windows\\System32\\ucrtbase._o_cos\"") +#pragma comment(linker, "/export:_o_cosf=\"C:\\Windows\\System32\\ucrtbase._o_cosf\"") +#pragma comment(linker, "/export:_o_cosh=\"C:\\Windows\\System32\\ucrtbase._o_cosh\"") +#pragma comment(linker, "/export:_o_coshf=\"C:\\Windows\\System32\\ucrtbase._o_coshf\"") +#pragma comment(linker, "/export:_o_erf=\"C:\\Windows\\System32\\ucrtbase._o_erf\"") +#pragma comment(linker, "/export:_o_erfc=\"C:\\Windows\\System32\\ucrtbase._o_erfc\"") +#pragma comment(linker, "/export:_o_erfcf=\"C:\\Windows\\System32\\ucrtbase._o_erfcf\"") +#pragma comment(linker, "/export:_o_erfcl=\"C:\\Windows\\System32\\ucrtbase._o_erfcl\"") +#pragma comment(linker, "/export:_o_erff=\"C:\\Windows\\System32\\ucrtbase._o_erff\"") +#pragma comment(linker, "/export:_o_erfl=\"C:\\Windows\\System32\\ucrtbase._o_erfl\"") +#pragma comment(linker, "/export:_o_exit=\"C:\\Windows\\System32\\ucrtbase._o_exit\"") +#pragma comment(linker, "/export:_o_exp=\"C:\\Windows\\System32\\ucrtbase._o_exp\"") +#pragma comment(linker, "/export:_o_exp2=\"C:\\Windows\\System32\\ucrtbase._o_exp2\"") +#pragma comment(linker, "/export:_o_exp2f=\"C:\\Windows\\System32\\ucrtbase._o_exp2f\"") +#pragma comment(linker, "/export:_o_exp2l=\"C:\\Windows\\System32\\ucrtbase._o_exp2l\"") +#pragma comment(linker, "/export:_o_expf=\"C:\\Windows\\System32\\ucrtbase._o_expf\"") +#pragma comment(linker, "/export:_o_fabs=\"C:\\Windows\\System32\\ucrtbase._o_fabs\"") +#pragma comment(linker, "/export:_o_fclose=\"C:\\Windows\\System32\\ucrtbase._o_fclose\"") +#pragma comment(linker, "/export:_o_feof=\"C:\\Windows\\System32\\ucrtbase._o_feof\"") +#pragma comment(linker, "/export:_o_ferror=\"C:\\Windows\\System32\\ucrtbase._o_ferror\"") +#pragma comment(linker, "/export:_o_fflush=\"C:\\Windows\\System32\\ucrtbase._o_fflush\"") +#pragma comment(linker, "/export:_o_fgetc=\"C:\\Windows\\System32\\ucrtbase._o_fgetc\"") +#pragma comment(linker, "/export:_o_fgetpos=\"C:\\Windows\\System32\\ucrtbase._o_fgetpos\"") +#pragma comment(linker, "/export:_o_fgets=\"C:\\Windows\\System32\\ucrtbase._o_fgets\"") +#pragma comment(linker, "/export:_o_fgetwc=\"C:\\Windows\\System32\\ucrtbase._o_fgetwc\"") +#pragma comment(linker, "/export:_o_fgetws=\"C:\\Windows\\System32\\ucrtbase._o_fgetws\"") +#pragma comment(linker, "/export:_o_floor=\"C:\\Windows\\System32\\ucrtbase._o_floor\"") +#pragma comment(linker, "/export:_o_floorf=\"C:\\Windows\\System32\\ucrtbase._o_floorf\"") +#pragma comment(linker, "/export:_o_fma=\"C:\\Windows\\System32\\ucrtbase._o_fma\"") +#pragma comment(linker, "/export:_o_fmaf=\"C:\\Windows\\System32\\ucrtbase._o_fmaf\"") +#pragma comment(linker, "/export:_o_fmal=\"C:\\Windows\\System32\\ucrtbase._o_fmal\"") +#pragma comment(linker, "/export:_o_fmod=\"C:\\Windows\\System32\\ucrtbase._o_fmod\"") +#pragma comment(linker, "/export:_o_fmodf=\"C:\\Windows\\System32\\ucrtbase._o_fmodf\"") +#pragma comment(linker, "/export:_o_fopen=\"C:\\Windows\\System32\\ucrtbase._o_fopen\"") +#pragma comment(linker, "/export:_o_fopen_s=\"C:\\Windows\\System32\\ucrtbase._o_fopen_s\"") +#pragma comment(linker, "/export:_o_fputc=\"C:\\Windows\\System32\\ucrtbase._o_fputc\"") +#pragma comment(linker, "/export:_o_fputs=\"C:\\Windows\\System32\\ucrtbase._o_fputs\"") +#pragma comment(linker, "/export:_o_fputwc=\"C:\\Windows\\System32\\ucrtbase._o_fputwc\"") +#pragma comment(linker, "/export:_o_fputws=\"C:\\Windows\\System32\\ucrtbase._o_fputws\"") +#pragma comment(linker, "/export:_o_fread=\"C:\\Windows\\System32\\ucrtbase._o_fread\"") +#pragma comment(linker, "/export:_o_fread_s=\"C:\\Windows\\System32\\ucrtbase._o_fread_s\"") +#pragma comment(linker, "/export:_o_free=\"C:\\Windows\\System32\\ucrtbase._o_free\"") +#pragma comment(linker, "/export:_o_freopen=\"C:\\Windows\\System32\\ucrtbase._o_freopen\"") +#pragma comment(linker, "/export:_o_freopen_s=\"C:\\Windows\\System32\\ucrtbase._o_freopen_s\"") +#pragma comment(linker, "/export:_o_frexp=\"C:\\Windows\\System32\\ucrtbase._o_frexp\"") +#pragma comment(linker, "/export:_o_fseek=\"C:\\Windows\\System32\\ucrtbase._o_fseek\"") +#pragma comment(linker, "/export:_o_fsetpos=\"C:\\Windows\\System32\\ucrtbase._o_fsetpos\"") +#pragma comment(linker, "/export:_o_ftell=\"C:\\Windows\\System32\\ucrtbase._o_ftell\"") +#pragma comment(linker, "/export:_o_fwrite=\"C:\\Windows\\System32\\ucrtbase._o_fwrite\"") +#pragma comment(linker, "/export:_o_getc=\"C:\\Windows\\System32\\ucrtbase._o_getc\"") +#pragma comment(linker, "/export:_o_getchar=\"C:\\Windows\\System32\\ucrtbase._o_getchar\"") +#pragma comment(linker, "/export:_o_getenv=\"C:\\Windows\\System32\\ucrtbase._o_getenv\"") +#pragma comment(linker, "/export:_o_getenv_s=\"C:\\Windows\\System32\\ucrtbase._o_getenv_s\"") +#pragma comment(linker, "/export:_o_gets=\"C:\\Windows\\System32\\ucrtbase._o_gets\"") +#pragma comment(linker, "/export:_o_gets_s=\"C:\\Windows\\System32\\ucrtbase._o_gets_s\"") +#pragma comment(linker, "/export:_o_getwc=\"C:\\Windows\\System32\\ucrtbase._o_getwc\"") +#pragma comment(linker, "/export:_o_getwchar=\"C:\\Windows\\System32\\ucrtbase._o_getwchar\"") +#pragma comment(linker, "/export:_o_hypot=\"C:\\Windows\\System32\\ucrtbase._o_hypot\"") +#pragma comment(linker, "/export:_o_is_wctype=\"C:\\Windows\\System32\\ucrtbase._o_is_wctype\"") +#pragma comment(linker, "/export:_o_isalnum=\"C:\\Windows\\System32\\ucrtbase._o_isalnum\"") +#pragma comment(linker, "/export:_o_isalpha=\"C:\\Windows\\System32\\ucrtbase._o_isalpha\"") +#pragma comment(linker, "/export:_o_isblank=\"C:\\Windows\\System32\\ucrtbase._o_isblank\"") +#pragma comment(linker, "/export:_o_iscntrl=\"C:\\Windows\\System32\\ucrtbase._o_iscntrl\"") +#pragma comment(linker, "/export:_o_isdigit=\"C:\\Windows\\System32\\ucrtbase._o_isdigit\"") +#pragma comment(linker, "/export:_o_isgraph=\"C:\\Windows\\System32\\ucrtbase._o_isgraph\"") +#pragma comment(linker, "/export:_o_isleadbyte=\"C:\\Windows\\System32\\ucrtbase._o_isleadbyte\"") +#pragma comment(linker, "/export:_o_islower=\"C:\\Windows\\System32\\ucrtbase._o_islower\"") +#pragma comment(linker, "/export:_o_isprint=\"C:\\Windows\\System32\\ucrtbase._o_isprint\"") +#pragma comment(linker, "/export:_o_ispunct=\"C:\\Windows\\System32\\ucrtbase._o_ispunct\"") +#pragma comment(linker, "/export:_o_isspace=\"C:\\Windows\\System32\\ucrtbase._o_isspace\"") +#pragma comment(linker, "/export:_o_isupper=\"C:\\Windows\\System32\\ucrtbase._o_isupper\"") +#pragma comment(linker, "/export:_o_iswalnum=\"C:\\Windows\\System32\\ucrtbase._o_iswalnum\"") +#pragma comment(linker, "/export:_o_iswalpha=\"C:\\Windows\\System32\\ucrtbase._o_iswalpha\"") +#pragma comment(linker, "/export:_o_iswascii=\"C:\\Windows\\System32\\ucrtbase._o_iswascii\"") +#pragma comment(linker, "/export:_o_iswblank=\"C:\\Windows\\System32\\ucrtbase._o_iswblank\"") +#pragma comment(linker, "/export:_o_iswcntrl=\"C:\\Windows\\System32\\ucrtbase._o_iswcntrl\"") +#pragma comment(linker, "/export:_o_iswctype=\"C:\\Windows\\System32\\ucrtbase._o_iswctype\"") +#pragma comment(linker, "/export:_o_iswdigit=\"C:\\Windows\\System32\\ucrtbase._o_iswdigit\"") +#pragma comment(linker, "/export:_o_iswgraph=\"C:\\Windows\\System32\\ucrtbase._o_iswgraph\"") +#pragma comment(linker, "/export:_o_iswlower=\"C:\\Windows\\System32\\ucrtbase._o_iswlower\"") +#pragma comment(linker, "/export:_o_iswprint=\"C:\\Windows\\System32\\ucrtbase._o_iswprint\"") +#pragma comment(linker, "/export:_o_iswpunct=\"C:\\Windows\\System32\\ucrtbase._o_iswpunct\"") +#pragma comment(linker, "/export:_o_iswspace=\"C:\\Windows\\System32\\ucrtbase._o_iswspace\"") +#pragma comment(linker, "/export:_o_iswupper=\"C:\\Windows\\System32\\ucrtbase._o_iswupper\"") +#pragma comment(linker, "/export:_o_iswxdigit=\"C:\\Windows\\System32\\ucrtbase._o_iswxdigit\"") +#pragma comment(linker, "/export:_o_isxdigit=\"C:\\Windows\\System32\\ucrtbase._o_isxdigit\"") +#pragma comment(linker, "/export:_o_ldexp=\"C:\\Windows\\System32\\ucrtbase._o_ldexp\"") +#pragma comment(linker, "/export:_o_lgamma=\"C:\\Windows\\System32\\ucrtbase._o_lgamma\"") +#pragma comment(linker, "/export:_o_lgammaf=\"C:\\Windows\\System32\\ucrtbase._o_lgammaf\"") +#pragma comment(linker, "/export:_o_lgammal=\"C:\\Windows\\System32\\ucrtbase._o_lgammal\"") +#pragma comment(linker, "/export:_o_llrint=\"C:\\Windows\\System32\\ucrtbase._o_llrint\"") +#pragma comment(linker, "/export:_o_llrintf=\"C:\\Windows\\System32\\ucrtbase._o_llrintf\"") +#pragma comment(linker, "/export:_o_llrintl=\"C:\\Windows\\System32\\ucrtbase._o_llrintl\"") +#pragma comment(linker, "/export:_o_llround=\"C:\\Windows\\System32\\ucrtbase._o_llround\"") +#pragma comment(linker, "/export:_o_llroundf=\"C:\\Windows\\System32\\ucrtbase._o_llroundf\"") +#pragma comment(linker, "/export:_o_llroundl=\"C:\\Windows\\System32\\ucrtbase._o_llroundl\"") +#pragma comment(linker, "/export:_o_localeconv=\"C:\\Windows\\System32\\ucrtbase._o_localeconv\"") +#pragma comment(linker, "/export:_o_log=\"C:\\Windows\\System32\\ucrtbase._o_log\"") +#pragma comment(linker, "/export:_o_log10=\"C:\\Windows\\System32\\ucrtbase._o_log10\"") +#pragma comment(linker, "/export:_o_log10f=\"C:\\Windows\\System32\\ucrtbase._o_log10f\"") +#pragma comment(linker, "/export:_o_log1p=\"C:\\Windows\\System32\\ucrtbase._o_log1p\"") +#pragma comment(linker, "/export:_o_log1pf=\"C:\\Windows\\System32\\ucrtbase._o_log1pf\"") +#pragma comment(linker, "/export:_o_log1pl=\"C:\\Windows\\System32\\ucrtbase._o_log1pl\"") +#pragma comment(linker, "/export:_o_log2=\"C:\\Windows\\System32\\ucrtbase._o_log2\"") +#pragma comment(linker, "/export:_o_log2f=\"C:\\Windows\\System32\\ucrtbase._o_log2f\"") +#pragma comment(linker, "/export:_o_log2l=\"C:\\Windows\\System32\\ucrtbase._o_log2l\"") +#pragma comment(linker, "/export:_o_logb=\"C:\\Windows\\System32\\ucrtbase._o_logb\"") +#pragma comment(linker, "/export:_o_logbf=\"C:\\Windows\\System32\\ucrtbase._o_logbf\"") +#pragma comment(linker, "/export:_o_logbl=\"C:\\Windows\\System32\\ucrtbase._o_logbl\"") +#pragma comment(linker, "/export:_o_logf=\"C:\\Windows\\System32\\ucrtbase._o_logf\"") +#pragma comment(linker, "/export:_o_lrint=\"C:\\Windows\\System32\\ucrtbase._o_lrint\"") +#pragma comment(linker, "/export:_o_lrintf=\"C:\\Windows\\System32\\ucrtbase._o_lrintf\"") +#pragma comment(linker, "/export:_o_lrintl=\"C:\\Windows\\System32\\ucrtbase._o_lrintl\"") +#pragma comment(linker, "/export:_o_lround=\"C:\\Windows\\System32\\ucrtbase._o_lround\"") +#pragma comment(linker, "/export:_o_lroundf=\"C:\\Windows\\System32\\ucrtbase._o_lroundf\"") +#pragma comment(linker, "/export:_o_lroundl=\"C:\\Windows\\System32\\ucrtbase._o_lroundl\"") +#pragma comment(linker, "/export:_o_malloc=\"C:\\Windows\\System32\\ucrtbase._o_malloc\"") +#pragma comment(linker, "/export:_o_mblen=\"C:\\Windows\\System32\\ucrtbase._o_mblen\"") +#pragma comment(linker, "/export:_o_mbrlen=\"C:\\Windows\\System32\\ucrtbase._o_mbrlen\"") +#pragma comment(linker, "/export:_o_mbrtoc16=\"C:\\Windows\\System32\\ucrtbase._o_mbrtoc16\"") +#pragma comment(linker, "/export:_o_mbrtoc32=\"C:\\Windows\\System32\\ucrtbase._o_mbrtoc32\"") +#pragma comment(linker, "/export:_o_mbrtowc=\"C:\\Windows\\System32\\ucrtbase._o_mbrtowc\"") +#pragma comment(linker, "/export:_o_mbsrtowcs=\"C:\\Windows\\System32\\ucrtbase._o_mbsrtowcs\"") +#pragma comment(linker, "/export:_o_mbsrtowcs_s=\"C:\\Windows\\System32\\ucrtbase._o_mbsrtowcs_s\"") +#pragma comment(linker, "/export:_o_mbstowcs=\"C:\\Windows\\System32\\ucrtbase._o_mbstowcs\"") +#pragma comment(linker, "/export:_o_mbstowcs_s=\"C:\\Windows\\System32\\ucrtbase._o_mbstowcs_s\"") +#pragma comment(linker, "/export:_o_mbtowc=\"C:\\Windows\\System32\\ucrtbase._o_mbtowc\"") +#pragma comment(linker, "/export:_o_memcpy_s=\"C:\\Windows\\System32\\ucrtbase._o_memcpy_s\"") +#pragma comment(linker, "/export:_o_memset=\"C:\\Windows\\System32\\ucrtbase._o_memset\"") +#pragma comment(linker, "/export:_o_modf=\"C:\\Windows\\System32\\ucrtbase._o_modf\"") +#pragma comment(linker, "/export:_o_modff=\"C:\\Windows\\System32\\ucrtbase._o_modff\"") +#pragma comment(linker, "/export:_o_nan=\"C:\\Windows\\System32\\ucrtbase._o_nan\"") +#pragma comment(linker, "/export:_o_nanf=\"C:\\Windows\\System32\\ucrtbase._o_nanf\"") +#pragma comment(linker, "/export:_o_nanl=\"C:\\Windows\\System32\\ucrtbase._o_nanl\"") +#pragma comment(linker, "/export:_o_nearbyint=\"C:\\Windows\\System32\\ucrtbase._o_nearbyint\"") +#pragma comment(linker, "/export:_o_nearbyintf=\"C:\\Windows\\System32\\ucrtbase._o_nearbyintf\"") +#pragma comment(linker, "/export:_o_nearbyintl=\"C:\\Windows\\System32\\ucrtbase._o_nearbyintl\"") +#pragma comment(linker, "/export:_o_nextafter=\"C:\\Windows\\System32\\ucrtbase._o_nextafter\"") +#pragma comment(linker, "/export:_o_nextafterf=\"C:\\Windows\\System32\\ucrtbase._o_nextafterf\"") +#pragma comment(linker, "/export:_o_nextafterl=\"C:\\Windows\\System32\\ucrtbase._o_nextafterl\"") +#pragma comment(linker, "/export:_o_nexttoward=\"C:\\Windows\\System32\\ucrtbase._o_nexttoward\"") +#pragma comment(linker, "/export:_o_nexttowardf=\"C:\\Windows\\System32\\ucrtbase._o_nexttowardf\"") +#pragma comment(linker, "/export:_o_nexttowardl=\"C:\\Windows\\System32\\ucrtbase._o_nexttowardl\"") +#pragma comment(linker, "/export:_o_pow=\"C:\\Windows\\System32\\ucrtbase._o_pow\"") +#pragma comment(linker, "/export:_o_powf=\"C:\\Windows\\System32\\ucrtbase._o_powf\"") +#pragma comment(linker, "/export:_o_putc=\"C:\\Windows\\System32\\ucrtbase._o_putc\"") +#pragma comment(linker, "/export:_o_putchar=\"C:\\Windows\\System32\\ucrtbase._o_putchar\"") +#pragma comment(linker, "/export:_o_puts=\"C:\\Windows\\System32\\ucrtbase._o_puts\"") +#pragma comment(linker, "/export:_o_putwc=\"C:\\Windows\\System32\\ucrtbase._o_putwc\"") +#pragma comment(linker, "/export:_o_putwchar=\"C:\\Windows\\System32\\ucrtbase._o_putwchar\"") +#pragma comment(linker, "/export:_o_qsort=\"C:\\Windows\\System32\\ucrtbase._o_qsort\"") +#pragma comment(linker, "/export:_o_qsort_s=\"C:\\Windows\\System32\\ucrtbase._o_qsort_s\"") +#pragma comment(linker, "/export:_o_raise=\"C:\\Windows\\System32\\ucrtbase._o_raise\"") +#pragma comment(linker, "/export:_o_rand=\"C:\\Windows\\System32\\ucrtbase._o_rand\"") +#pragma comment(linker, "/export:_o_rand_s=\"C:\\Windows\\System32\\ucrtbase._o_rand_s\"") +#pragma comment(linker, "/export:_o_realloc=\"C:\\Windows\\System32\\ucrtbase._o_realloc\"") +#pragma comment(linker, "/export:_o_remainder=\"C:\\Windows\\System32\\ucrtbase._o_remainder\"") +#pragma comment(linker, "/export:_o_remainderf=\"C:\\Windows\\System32\\ucrtbase._o_remainderf\"") +#pragma comment(linker, "/export:_o_remainderl=\"C:\\Windows\\System32\\ucrtbase._o_remainderl\"") +#pragma comment(linker, "/export:_o_remove=\"C:\\Windows\\System32\\ucrtbase._o_remove\"") +#pragma comment(linker, "/export:_o_remquo=\"C:\\Windows\\System32\\ucrtbase._o_remquo\"") +#pragma comment(linker, "/export:_o_remquof=\"C:\\Windows\\System32\\ucrtbase._o_remquof\"") +#pragma comment(linker, "/export:_o_remquol=\"C:\\Windows\\System32\\ucrtbase._o_remquol\"") +#pragma comment(linker, "/export:_o_rename=\"C:\\Windows\\System32\\ucrtbase._o_rename\"") +#pragma comment(linker, "/export:_o_rewind=\"C:\\Windows\\System32\\ucrtbase._o_rewind\"") +#pragma comment(linker, "/export:_o_rint=\"C:\\Windows\\System32\\ucrtbase._o_rint\"") +#pragma comment(linker, "/export:_o_rintf=\"C:\\Windows\\System32\\ucrtbase._o_rintf\"") +#pragma comment(linker, "/export:_o_rintl=\"C:\\Windows\\System32\\ucrtbase._o_rintl\"") +#pragma comment(linker, "/export:_o_round=\"C:\\Windows\\System32\\ucrtbase._o_round\"") +#pragma comment(linker, "/export:_o_roundf=\"C:\\Windows\\System32\\ucrtbase._o_roundf\"") +#pragma comment(linker, "/export:_o_roundl=\"C:\\Windows\\System32\\ucrtbase._o_roundl\"") +#pragma comment(linker, "/export:_o_scalbln=\"C:\\Windows\\System32\\ucrtbase._o_scalbln\"") +#pragma comment(linker, "/export:_o_scalblnf=\"C:\\Windows\\System32\\ucrtbase._o_scalblnf\"") +#pragma comment(linker, "/export:_o_scalblnl=\"C:\\Windows\\System32\\ucrtbase._o_scalblnl\"") +#pragma comment(linker, "/export:_o_scalbn=\"C:\\Windows\\System32\\ucrtbase._o_scalbn\"") +#pragma comment(linker, "/export:_o_scalbnf=\"C:\\Windows\\System32\\ucrtbase._o_scalbnf\"") +#pragma comment(linker, "/export:_o_scalbnl=\"C:\\Windows\\System32\\ucrtbase._o_scalbnl\"") +#pragma comment(linker, "/export:_o_set_terminate=\"C:\\Windows\\System32\\ucrtbase._o_set_terminate\"") +#pragma comment(linker, "/export:_o_setbuf=\"C:\\Windows\\System32\\ucrtbase._o_setbuf\"") +#pragma comment(linker, "/export:_o_setlocale=\"C:\\Windows\\System32\\ucrtbase._o_setlocale\"") +#pragma comment(linker, "/export:_o_setvbuf=\"C:\\Windows\\System32\\ucrtbase._o_setvbuf\"") +#pragma comment(linker, "/export:_o_sin=\"C:\\Windows\\System32\\ucrtbase._o_sin\"") +#pragma comment(linker, "/export:_o_sinf=\"C:\\Windows\\System32\\ucrtbase._o_sinf\"") +#pragma comment(linker, "/export:_o_sinh=\"C:\\Windows\\System32\\ucrtbase._o_sinh\"") +#pragma comment(linker, "/export:_o_sinhf=\"C:\\Windows\\System32\\ucrtbase._o_sinhf\"") +#pragma comment(linker, "/export:_o_sqrt=\"C:\\Windows\\System32\\ucrtbase._o_sqrt\"") +#pragma comment(linker, "/export:_o_sqrtf=\"C:\\Windows\\System32\\ucrtbase._o_sqrtf\"") +#pragma comment(linker, "/export:_o_srand=\"C:\\Windows\\System32\\ucrtbase._o_srand\"") +#pragma comment(linker, "/export:_o_strcat_s=\"C:\\Windows\\System32\\ucrtbase._o_strcat_s\"") +#pragma comment(linker, "/export:_o_strcoll=\"C:\\Windows\\System32\\ucrtbase._o_strcoll\"") +#pragma comment(linker, "/export:_o_strcpy_s=\"C:\\Windows\\System32\\ucrtbase._o_strcpy_s\"") +#pragma comment(linker, "/export:_o_strerror=\"C:\\Windows\\System32\\ucrtbase._o_strerror\"") +#pragma comment(linker, "/export:_o_strerror_s=\"C:\\Windows\\System32\\ucrtbase._o_strerror_s\"") +#pragma comment(linker, "/export:_o_strftime=\"C:\\Windows\\System32\\ucrtbase._o_strftime\"") +#pragma comment(linker, "/export:_o_strncat_s=\"C:\\Windows\\System32\\ucrtbase._o_strncat_s\"") +#pragma comment(linker, "/export:_o_strncpy_s=\"C:\\Windows\\System32\\ucrtbase._o_strncpy_s\"") +#pragma comment(linker, "/export:_o_strtod=\"C:\\Windows\\System32\\ucrtbase._o_strtod\"") +#pragma comment(linker, "/export:_o_strtof=\"C:\\Windows\\System32\\ucrtbase._o_strtof\"") +#pragma comment(linker, "/export:_o_strtok=\"C:\\Windows\\System32\\ucrtbase._o_strtok\"") +#pragma comment(linker, "/export:_o_strtok_s=\"C:\\Windows\\System32\\ucrtbase._o_strtok_s\"") +#pragma comment(linker, "/export:_o_strtol=\"C:\\Windows\\System32\\ucrtbase._o_strtol\"") +#pragma comment(linker, "/export:_o_strtold=\"C:\\Windows\\System32\\ucrtbase._o_strtold\"") +#pragma comment(linker, "/export:_o_strtoll=\"C:\\Windows\\System32\\ucrtbase._o_strtoll\"") +#pragma comment(linker, "/export:_o_strtoul=\"C:\\Windows\\System32\\ucrtbase._o_strtoul\"") +#pragma comment(linker, "/export:_o_strtoull=\"C:\\Windows\\System32\\ucrtbase._o_strtoull\"") +#pragma comment(linker, "/export:_o_system=\"C:\\Windows\\System32\\ucrtbase._o_system\"") +#pragma comment(linker, "/export:_o_tan=\"C:\\Windows\\System32\\ucrtbase._o_tan\"") +#pragma comment(linker, "/export:_o_tanf=\"C:\\Windows\\System32\\ucrtbase._o_tanf\"") +#pragma comment(linker, "/export:_o_tanh=\"C:\\Windows\\System32\\ucrtbase._o_tanh\"") +#pragma comment(linker, "/export:_o_tanhf=\"C:\\Windows\\System32\\ucrtbase._o_tanhf\"") +#pragma comment(linker, "/export:_o_terminate=\"C:\\Windows\\System32\\ucrtbase._o_terminate\"") +#pragma comment(linker, "/export:_o_tgamma=\"C:\\Windows\\System32\\ucrtbase._o_tgamma\"") +#pragma comment(linker, "/export:_o_tgammaf=\"C:\\Windows\\System32\\ucrtbase._o_tgammaf\"") +#pragma comment(linker, "/export:_o_tgammal=\"C:\\Windows\\System32\\ucrtbase._o_tgammal\"") +#pragma comment(linker, "/export:_o_tmpfile_s=\"C:\\Windows\\System32\\ucrtbase._o_tmpfile_s\"") +#pragma comment(linker, "/export:_o_tmpnam_s=\"C:\\Windows\\System32\\ucrtbase._o_tmpnam_s\"") +#pragma comment(linker, "/export:_o_tolower=\"C:\\Windows\\System32\\ucrtbase._o_tolower\"") +#pragma comment(linker, "/export:_o_toupper=\"C:\\Windows\\System32\\ucrtbase._o_toupper\"") +#pragma comment(linker, "/export:_o_towlower=\"C:\\Windows\\System32\\ucrtbase._o_towlower\"") +#pragma comment(linker, "/export:_o_towupper=\"C:\\Windows\\System32\\ucrtbase._o_towupper\"") +#pragma comment(linker, "/export:_o_ungetc=\"C:\\Windows\\System32\\ucrtbase._o_ungetc\"") +#pragma comment(linker, "/export:_o_ungetwc=\"C:\\Windows\\System32\\ucrtbase._o_ungetwc\"") +#pragma comment(linker, "/export:_o_wcrtomb=\"C:\\Windows\\System32\\ucrtbase._o_wcrtomb\"") +#pragma comment(linker, "/export:_o_wcrtomb_s=\"C:\\Windows\\System32\\ucrtbase._o_wcrtomb_s\"") +#pragma comment(linker, "/export:_o_wcscat_s=\"C:\\Windows\\System32\\ucrtbase._o_wcscat_s\"") +#pragma comment(linker, "/export:_o_wcscoll=\"C:\\Windows\\System32\\ucrtbase._o_wcscoll\"") +#pragma comment(linker, "/export:_o_wcscpy=\"C:\\Windows\\System32\\ucrtbase._o_wcscpy\"") +#pragma comment(linker, "/export:_o_wcscpy_s=\"C:\\Windows\\System32\\ucrtbase._o_wcscpy_s\"") +#pragma comment(linker, "/export:_o_wcsftime=\"C:\\Windows\\System32\\ucrtbase._o_wcsftime\"") +#pragma comment(linker, "/export:_o_wcsncat_s=\"C:\\Windows\\System32\\ucrtbase._o_wcsncat_s\"") +#pragma comment(linker, "/export:_o_wcsncpy_s=\"C:\\Windows\\System32\\ucrtbase._o_wcsncpy_s\"") +#pragma comment(linker, "/export:_o_wcsrtombs=\"C:\\Windows\\System32\\ucrtbase._o_wcsrtombs\"") +#pragma comment(linker, "/export:_o_wcsrtombs_s=\"C:\\Windows\\System32\\ucrtbase._o_wcsrtombs_s\"") +#pragma comment(linker, "/export:_o_wcstod=\"C:\\Windows\\System32\\ucrtbase._o_wcstod\"") +#pragma comment(linker, "/export:_o_wcstof=\"C:\\Windows\\System32\\ucrtbase._o_wcstof\"") +#pragma comment(linker, "/export:_o_wcstok=\"C:\\Windows\\System32\\ucrtbase._o_wcstok\"") +#pragma comment(linker, "/export:_o_wcstok_s=\"C:\\Windows\\System32\\ucrtbase._o_wcstok_s\"") +#pragma comment(linker, "/export:_o_wcstol=\"C:\\Windows\\System32\\ucrtbase._o_wcstol\"") +#pragma comment(linker, "/export:_o_wcstold=\"C:\\Windows\\System32\\ucrtbase._o_wcstold\"") +#pragma comment(linker, "/export:_o_wcstoll=\"C:\\Windows\\System32\\ucrtbase._o_wcstoll\"") +#pragma comment(linker, "/export:_o_wcstombs=\"C:\\Windows\\System32\\ucrtbase._o_wcstombs\"") +#pragma comment(linker, "/export:_o_wcstombs_s=\"C:\\Windows\\System32\\ucrtbase._o_wcstombs_s\"") +#pragma comment(linker, "/export:_o_wcstoul=\"C:\\Windows\\System32\\ucrtbase._o_wcstoul\"") +#pragma comment(linker, "/export:_o_wcstoull=\"C:\\Windows\\System32\\ucrtbase._o_wcstoull\"") +#pragma comment(linker, "/export:_o_wctob=\"C:\\Windows\\System32\\ucrtbase._o_wctob\"") +#pragma comment(linker, "/export:_o_wctomb=\"C:\\Windows\\System32\\ucrtbase._o_wctomb\"") +#pragma comment(linker, "/export:_o_wctomb_s=\"C:\\Windows\\System32\\ucrtbase._o_wctomb_s\"") +#pragma comment(linker, "/export:_o_wmemcpy_s=\"C:\\Windows\\System32\\ucrtbase._o_wmemcpy_s\"") +#pragma comment(linker, "/export:_o_wmemmove_s=\"C:\\Windows\\System32\\ucrtbase._o_wmemmove_s\"") +#pragma comment(linker, "/export:_open=\"C:\\Windows\\System32\\ucrtbase._open\"") +#pragma comment(linker, "/export:_open_osfhandle=\"C:\\Windows\\System32\\ucrtbase._open_osfhandle\"") +#pragma comment(linker, "/export:_pclose=\"C:\\Windows\\System32\\ucrtbase._pclose\"") +#pragma comment(linker, "/export:_pipe=\"C:\\Windows\\System32\\ucrtbase._pipe\"") +#pragma comment(linker, "/export:_popen=\"C:\\Windows\\System32\\ucrtbase._popen\"") +#pragma comment(linker, "/export:_purecall=\"C:\\Windows\\System32\\ucrtbase._purecall\"") +#pragma comment(linker, "/export:_putc_nolock=\"C:\\Windows\\System32\\ucrtbase._putc_nolock\"") +#pragma comment(linker, "/export:_putch=\"C:\\Windows\\System32\\ucrtbase._putch\"") +#pragma comment(linker, "/export:_putch_nolock=\"C:\\Windows\\System32\\ucrtbase._putch_nolock\"") +#pragma comment(linker, "/export:_putenv=\"C:\\Windows\\System32\\ucrtbase._putenv\"") +#pragma comment(linker, "/export:_putenv_s=\"C:\\Windows\\System32\\ucrtbase._putenv_s\"") +#pragma comment(linker, "/export:_putw=\"C:\\Windows\\System32\\ucrtbase._putw\"") +#pragma comment(linker, "/export:_putwc_nolock=\"C:\\Windows\\System32\\ucrtbase._putwc_nolock\"") +#pragma comment(linker, "/export:_putwch=\"C:\\Windows\\System32\\ucrtbase._putwch\"") +#pragma comment(linker, "/export:_putwch_nolock=\"C:\\Windows\\System32\\ucrtbase._putwch_nolock\"") +#pragma comment(linker, "/export:_putws=\"C:\\Windows\\System32\\ucrtbase._putws\"") +#pragma comment(linker, "/export:_query_app_type=\"C:\\Windows\\System32\\ucrtbase._query_app_type\"") +#pragma comment(linker, "/export:_query_new_handler=\"C:\\Windows\\System32\\ucrtbase._query_new_handler\"") +#pragma comment(linker, "/export:_query_new_mode=\"C:\\Windows\\System32\\ucrtbase._query_new_mode\"") +#pragma comment(linker, "/export:_read=\"C:\\Windows\\System32\\ucrtbase._read\"") +#pragma comment(linker, "/export:_realloc_base=\"C:\\Windows\\System32\\ucrtbase._realloc_base\"") +#pragma comment(linker, "/export:_recalloc=\"C:\\Windows\\System32\\ucrtbase._recalloc\"") +#pragma comment(linker, "/export:_register_onexit_function=\"C:\\Windows\\System32\\ucrtbase._register_onexit_function\"") +#pragma comment(linker, "/export:_register_thread_local_exe_atexit_callback=\"C:\\Windows\\System32\\ucrtbase._register_thread_local_exe_atexit_callback\"") +#pragma comment(linker, "/export:_resetstkoflw=\"C:\\Windows\\System32\\ucrtbase._resetstkoflw\"") +#pragma comment(linker, "/export:_rmdir=\"C:\\Windows\\System32\\ucrtbase._rmdir\"") +#pragma comment(linker, "/export:_rmtmp=\"C:\\Windows\\System32\\ucrtbase._rmtmp\"") +#pragma comment(linker, "/export:_rotl=\"C:\\Windows\\System32\\ucrtbase._rotl\"") +#pragma comment(linker, "/export:_rotl64=\"C:\\Windows\\System32\\ucrtbase._rotl64\"") +#pragma comment(linker, "/export:_rotr=\"C:\\Windows\\System32\\ucrtbase._rotr\"") +#pragma comment(linker, "/export:_rotr64=\"C:\\Windows\\System32\\ucrtbase._rotr64\"") +#pragma comment(linker, "/export:_scalb=\"C:\\Windows\\System32\\ucrtbase._scalb\"") +#pragma comment(linker, "/export:_scalbf=\"C:\\Windows\\System32\\ucrtbase._scalbf\"") +#pragma comment(linker, "/export:_searchenv=\"C:\\Windows\\System32\\ucrtbase._searchenv\"") +#pragma comment(linker, "/export:_searchenv_s=\"C:\\Windows\\System32\\ucrtbase._searchenv_s\"") +#pragma comment(linker, "/export:_seh_filter_dll=\"C:\\Windows\\System32\\ucrtbase._seh_filter_dll\"") +#pragma comment(linker, "/export:_seh_filter_exe=\"C:\\Windows\\System32\\ucrtbase._seh_filter_exe\"") +#pragma comment(linker, "/export:_set_FMA3_enable=\"C:\\Windows\\System32\\ucrtbase._set_FMA3_enable\"") +#pragma comment(linker, "/export:_set_abort_behavior=\"C:\\Windows\\System32\\ucrtbase._set_abort_behavior\"") +#pragma comment(linker, "/export:_set_app_type=\"C:\\Windows\\System32\\ucrtbase._set_app_type\"") +#pragma comment(linker, "/export:_set_controlfp=\"C:\\Windows\\System32\\ucrtbase._set_controlfp\"") +#pragma comment(linker, "/export:_set_doserrno=\"C:\\Windows\\System32\\ucrtbase._set_doserrno\"") +#pragma comment(linker, "/export:_set_errno=\"C:\\Windows\\System32\\ucrtbase._set_errno\"") +#pragma comment(linker, "/export:_set_error_mode=\"C:\\Windows\\System32\\ucrtbase._set_error_mode\"") +#pragma comment(linker, "/export:_set_fmode=\"C:\\Windows\\System32\\ucrtbase._set_fmode\"") +#pragma comment(linker, "/export:_set_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._set_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_set_new_handler=\"C:\\Windows\\System32\\ucrtbase._set_new_handler\"") +#pragma comment(linker, "/export:_set_new_mode=\"C:\\Windows\\System32\\ucrtbase._set_new_mode\"") +#pragma comment(linker, "/export:_set_printf_count_output=\"C:\\Windows\\System32\\ucrtbase._set_printf_count_output\"") +#pragma comment(linker, "/export:_set_purecall_handler=\"C:\\Windows\\System32\\ucrtbase._set_purecall_handler\"") +#pragma comment(linker, "/export:_set_se_translator=\"C:\\Windows\\System32\\ucrtbase._set_se_translator\"") +#pragma comment(linker, "/export:_set_thread_local_invalid_parameter_handler=\"C:\\Windows\\System32\\ucrtbase._set_thread_local_invalid_parameter_handler\"") +#pragma comment(linker, "/export:_seterrormode=\"C:\\Windows\\System32\\ucrtbase._seterrormode\"") +#pragma comment(linker, "/export:_setmaxstdio=\"C:\\Windows\\System32\\ucrtbase._setmaxstdio\"") +#pragma comment(linker, "/export:_setmbcp=\"C:\\Windows\\System32\\ucrtbase._setmbcp\"") +#pragma comment(linker, "/export:_setmode=\"C:\\Windows\\System32\\ucrtbase._setmode\"") +#pragma comment(linker, "/export:_setsystime=\"C:\\Windows\\System32\\ucrtbase._setsystime\"") +#pragma comment(linker, "/export:_sleep=\"C:\\Windows\\System32\\ucrtbase._sleep\"") +#pragma comment(linker, "/export:_sopen=\"C:\\Windows\\System32\\ucrtbase._sopen\"") +#pragma comment(linker, "/export:_sopen_dispatch=\"C:\\Windows\\System32\\ucrtbase._sopen_dispatch\"") +#pragma comment(linker, "/export:_sopen_s=\"C:\\Windows\\System32\\ucrtbase._sopen_s\"") +#pragma comment(linker, "/export:_spawnl=\"C:\\Windows\\System32\\ucrtbase._spawnl\"") +#pragma comment(linker, "/export:_spawnle=\"C:\\Windows\\System32\\ucrtbase._spawnle\"") +#pragma comment(linker, "/export:_spawnlp=\"C:\\Windows\\System32\\ucrtbase._spawnlp\"") +#pragma comment(linker, "/export:_spawnlpe=\"C:\\Windows\\System32\\ucrtbase._spawnlpe\"") +#pragma comment(linker, "/export:_spawnv=\"C:\\Windows\\System32\\ucrtbase._spawnv\"") +#pragma comment(linker, "/export:_spawnve=\"C:\\Windows\\System32\\ucrtbase._spawnve\"") +#pragma comment(linker, "/export:_spawnvp=\"C:\\Windows\\System32\\ucrtbase._spawnvp\"") +#pragma comment(linker, "/export:_spawnvpe=\"C:\\Windows\\System32\\ucrtbase._spawnvpe\"") +#pragma comment(linker, "/export:_splitpath=\"C:\\Windows\\System32\\ucrtbase._splitpath\"") +#pragma comment(linker, "/export:_splitpath_s=\"C:\\Windows\\System32\\ucrtbase._splitpath_s\"") +#pragma comment(linker, "/export:_stat32=\"C:\\Windows\\System32\\ucrtbase._stat32\"") +#pragma comment(linker, "/export:_stat32i64=\"C:\\Windows\\System32\\ucrtbase._stat32i64\"") +#pragma comment(linker, "/export:_stat64=\"C:\\Windows\\System32\\ucrtbase._stat64\"") +#pragma comment(linker, "/export:_stat64i32=\"C:\\Windows\\System32\\ucrtbase._stat64i32\"") +#pragma comment(linker, "/export:_statusfp=\"C:\\Windows\\System32\\ucrtbase._statusfp\"") +#pragma comment(linker, "/export:_strcoll_l=\"C:\\Windows\\System32\\ucrtbase._strcoll_l\"") +#pragma comment(linker, "/export:_strdate=\"C:\\Windows\\System32\\ucrtbase._strdate\"") +#pragma comment(linker, "/export:_strdate_s=\"C:\\Windows\\System32\\ucrtbase._strdate_s\"") +#pragma comment(linker, "/export:_strdup=\"C:\\Windows\\System32\\ucrtbase._strdup\"") +#pragma comment(linker, "/export:_strerror=\"C:\\Windows\\System32\\ucrtbase._strerror\"") +#pragma comment(linker, "/export:_strerror_s=\"C:\\Windows\\System32\\ucrtbase._strerror_s\"") +#pragma comment(linker, "/export:_strftime_l=\"C:\\Windows\\System32\\ucrtbase._strftime_l\"") +#pragma comment(linker, "/export:_stricmp=\"C:\\Windows\\System32\\ucrtbase._stricmp\"") +#pragma comment(linker, "/export:_stricmp_l=\"C:\\Windows\\System32\\ucrtbase._stricmp_l\"") +#pragma comment(linker, "/export:_stricoll=\"C:\\Windows\\System32\\ucrtbase._stricoll\"") +#pragma comment(linker, "/export:_stricoll_l=\"C:\\Windows\\System32\\ucrtbase._stricoll_l\"") +#pragma comment(linker, "/export:_strlwr=\"C:\\Windows\\System32\\ucrtbase._strlwr\"") +#pragma comment(linker, "/export:_strlwr_l=\"C:\\Windows\\System32\\ucrtbase._strlwr_l\"") +#pragma comment(linker, "/export:_strlwr_s=\"C:\\Windows\\System32\\ucrtbase._strlwr_s\"") +#pragma comment(linker, "/export:_strlwr_s_l=\"C:\\Windows\\System32\\ucrtbase._strlwr_s_l\"") +#pragma comment(linker, "/export:_strncoll=\"C:\\Windows\\System32\\ucrtbase._strncoll\"") +#pragma comment(linker, "/export:_strncoll_l=\"C:\\Windows\\System32\\ucrtbase._strncoll_l\"") +#pragma comment(linker, "/export:_strnicmp=\"C:\\Windows\\System32\\ucrtbase._strnicmp\"") +#pragma comment(linker, "/export:_strnicmp_l=\"C:\\Windows\\System32\\ucrtbase._strnicmp_l\"") +#pragma comment(linker, "/export:_strnicoll=\"C:\\Windows\\System32\\ucrtbase._strnicoll\"") +#pragma comment(linker, "/export:_strnicoll_l=\"C:\\Windows\\System32\\ucrtbase._strnicoll_l\"") +#pragma comment(linker, "/export:_strnset=\"C:\\Windows\\System32\\ucrtbase._strnset\"") +#pragma comment(linker, "/export:_strnset_s=\"C:\\Windows\\System32\\ucrtbase._strnset_s\"") +#pragma comment(linker, "/export:_strrev=\"C:\\Windows\\System32\\ucrtbase._strrev\"") +#pragma comment(linker, "/export:_strset=\"C:\\Windows\\System32\\ucrtbase._strset\"") +#pragma comment(linker, "/export:_strset_s=\"C:\\Windows\\System32\\ucrtbase._strset_s\"") +#pragma comment(linker, "/export:_strtime=\"C:\\Windows\\System32\\ucrtbase._strtime\"") +#pragma comment(linker, "/export:_strtime_s=\"C:\\Windows\\System32\\ucrtbase._strtime_s\"") +#pragma comment(linker, "/export:_strtod_l=\"C:\\Windows\\System32\\ucrtbase._strtod_l\"") +#pragma comment(linker, "/export:_strtof_l=\"C:\\Windows\\System32\\ucrtbase._strtof_l\"") +#pragma comment(linker, "/export:_strtoi64=\"C:\\Windows\\System32\\ucrtbase._strtoi64\"") +#pragma comment(linker, "/export:_strtoi64_l=\"C:\\Windows\\System32\\ucrtbase._strtoi64_l\"") +#pragma comment(linker, "/export:_strtoimax_l=\"C:\\Windows\\System32\\ucrtbase._strtoimax_l\"") +#pragma comment(linker, "/export:_strtol_l=\"C:\\Windows\\System32\\ucrtbase._strtol_l\"") +#pragma comment(linker, "/export:_strtold_l=\"C:\\Windows\\System32\\ucrtbase._strtold_l\"") +#pragma comment(linker, "/export:_strtoll_l=\"C:\\Windows\\System32\\ucrtbase._strtoll_l\"") +#pragma comment(linker, "/export:_strtoui64=\"C:\\Windows\\System32\\ucrtbase._strtoui64\"") +#pragma comment(linker, "/export:_strtoui64_l=\"C:\\Windows\\System32\\ucrtbase._strtoui64_l\"") +#pragma comment(linker, "/export:_strtoul_l=\"C:\\Windows\\System32\\ucrtbase._strtoul_l\"") +#pragma comment(linker, "/export:_strtoull_l=\"C:\\Windows\\System32\\ucrtbase._strtoull_l\"") +#pragma comment(linker, "/export:_strtoumax_l=\"C:\\Windows\\System32\\ucrtbase._strtoumax_l\"") +#pragma comment(linker, "/export:_strupr=\"C:\\Windows\\System32\\ucrtbase._strupr\"") +#pragma comment(linker, "/export:_strupr_l=\"C:\\Windows\\System32\\ucrtbase._strupr_l\"") +#pragma comment(linker, "/export:_strupr_s=\"C:\\Windows\\System32\\ucrtbase._strupr_s\"") +#pragma comment(linker, "/export:_strupr_s_l=\"C:\\Windows\\System32\\ucrtbase._strupr_s_l\"") +#pragma comment(linker, "/export:_strxfrm_l=\"C:\\Windows\\System32\\ucrtbase._strxfrm_l\"") +#pragma comment(linker, "/export:_swab=\"C:\\Windows\\System32\\ucrtbase._swab\"") +#pragma comment(linker, "/export:_tell=\"C:\\Windows\\System32\\ucrtbase._tell\"") +#pragma comment(linker, "/export:_telli64=\"C:\\Windows\\System32\\ucrtbase._telli64\"") +#pragma comment(linker, "/export:_tempnam=\"C:\\Windows\\System32\\ucrtbase._tempnam\"") +#pragma comment(linker, "/export:_time32=\"C:\\Windows\\System32\\ucrtbase._time32\"") +#pragma comment(linker, "/export:_time64=\"C:\\Windows\\System32\\ucrtbase._time64\"") +#pragma comment(linker, "/export:_timespec32_get=\"C:\\Windows\\System32\\ucrtbase._timespec32_get\"") +#pragma comment(linker, "/export:_timespec64_get=\"C:\\Windows\\System32\\ucrtbase._timespec64_get\"") +#pragma comment(linker, "/export:_tolower=\"C:\\Windows\\System32\\ucrtbase._tolower\"") +#pragma comment(linker, "/export:_tolower_l=\"C:\\Windows\\System32\\ucrtbase._tolower_l\"") +#pragma comment(linker, "/export:_toupper=\"C:\\Windows\\System32\\ucrtbase._toupper\"") +#pragma comment(linker, "/export:_toupper_l=\"C:\\Windows\\System32\\ucrtbase._toupper_l\"") +#pragma comment(linker, "/export:_towlower_l=\"C:\\Windows\\System32\\ucrtbase._towlower_l\"") +#pragma comment(linker, "/export:_towupper_l=\"C:\\Windows\\System32\\ucrtbase._towupper_l\"") +#pragma comment(linker, "/export:_tzset=\"C:\\Windows\\System32\\ucrtbase._tzset\"") +#pragma comment(linker, "/export:_ui64toa=\"C:\\Windows\\System32\\ucrtbase._ui64toa\"") +#pragma comment(linker, "/export:_ui64toa_s=\"C:\\Windows\\System32\\ucrtbase._ui64toa_s\"") +#pragma comment(linker, "/export:_ui64tow=\"C:\\Windows\\System32\\ucrtbase._ui64tow\"") +#pragma comment(linker, "/export:_ui64tow_s=\"C:\\Windows\\System32\\ucrtbase._ui64tow_s\"") +#pragma comment(linker, "/export:_ultoa=\"C:\\Windows\\System32\\ucrtbase._ultoa\"") +#pragma comment(linker, "/export:_ultoa_s=\"C:\\Windows\\System32\\ucrtbase._ultoa_s\"") +#pragma comment(linker, "/export:_ultow=\"C:\\Windows\\System32\\ucrtbase._ultow\"") +#pragma comment(linker, "/export:_ultow_s=\"C:\\Windows\\System32\\ucrtbase._ultow_s\"") +#pragma comment(linker, "/export:_umask=\"C:\\Windows\\System32\\ucrtbase._umask\"") +#pragma comment(linker, "/export:_umask_s=\"C:\\Windows\\System32\\ucrtbase._umask_s\"") +#pragma comment(linker, "/export:_ungetc_nolock=\"C:\\Windows\\System32\\ucrtbase._ungetc_nolock\"") +#pragma comment(linker, "/export:_ungetch=\"C:\\Windows\\System32\\ucrtbase._ungetch\"") +#pragma comment(linker, "/export:_ungetch_nolock=\"C:\\Windows\\System32\\ucrtbase._ungetch_nolock\"") +#pragma comment(linker, "/export:_ungetwc_nolock=\"C:\\Windows\\System32\\ucrtbase._ungetwc_nolock\"") +#pragma comment(linker, "/export:_ungetwch=\"C:\\Windows\\System32\\ucrtbase._ungetwch\"") +#pragma comment(linker, "/export:_ungetwch_nolock=\"C:\\Windows\\System32\\ucrtbase._ungetwch_nolock\"") +#pragma comment(linker, "/export:_unlink=\"C:\\Windows\\System32\\ucrtbase._unlink\"") +#pragma comment(linker, "/export:_unloaddll=\"C:\\Windows\\System32\\ucrtbase._unloaddll\"") +#pragma comment(linker, "/export:_unlock_file=\"C:\\Windows\\System32\\ucrtbase._unlock_file\"") +#pragma comment(linker, "/export:_unlock_locales=\"C:\\Windows\\System32\\ucrtbase._unlock_locales\"") +#pragma comment(linker, "/export:_utime32=\"C:\\Windows\\System32\\ucrtbase._utime32\"") +#pragma comment(linker, "/export:_utime64=\"C:\\Windows\\System32\\ucrtbase._utime64\"") +#pragma comment(linker, "/export:_waccess=\"C:\\Windows\\System32\\ucrtbase._waccess\"") +#pragma comment(linker, "/export:_waccess_s=\"C:\\Windows\\System32\\ucrtbase._waccess_s\"") +#pragma comment(linker, "/export:_wasctime=\"C:\\Windows\\System32\\ucrtbase._wasctime\"") +#pragma comment(linker, "/export:_wasctime_s=\"C:\\Windows\\System32\\ucrtbase._wasctime_s\"") +#pragma comment(linker, "/export:_wassert=\"C:\\Windows\\System32\\ucrtbase._wassert\"") +#pragma comment(linker, "/export:_wchdir=\"C:\\Windows\\System32\\ucrtbase._wchdir\"") +#pragma comment(linker, "/export:_wchmod=\"C:\\Windows\\System32\\ucrtbase._wchmod\"") +#pragma comment(linker, "/export:_wcreat=\"C:\\Windows\\System32\\ucrtbase._wcreat\"") +#pragma comment(linker, "/export:_wcreate_locale=\"C:\\Windows\\System32\\ucrtbase._wcreate_locale\"") +#pragma comment(linker, "/export:_wcscoll_l=\"C:\\Windows\\System32\\ucrtbase._wcscoll_l\"") +#pragma comment(linker, "/export:_wcsdup=\"C:\\Windows\\System32\\ucrtbase._wcsdup\"") +#pragma comment(linker, "/export:_wcserror=\"C:\\Windows\\System32\\ucrtbase._wcserror\"") +#pragma comment(linker, "/export:_wcserror_s=\"C:\\Windows\\System32\\ucrtbase._wcserror_s\"") +#pragma comment(linker, "/export:_wcsftime_l=\"C:\\Windows\\System32\\ucrtbase._wcsftime_l\"") +#pragma comment(linker, "/export:_wcsicmp=\"C:\\Windows\\System32\\ucrtbase._wcsicmp\"") +#pragma comment(linker, "/export:_wcsicmp_l=\"C:\\Windows\\System32\\ucrtbase._wcsicmp_l\"") +#pragma comment(linker, "/export:_wcsicoll=\"C:\\Windows\\System32\\ucrtbase._wcsicoll\"") +#pragma comment(linker, "/export:_wcsicoll_l=\"C:\\Windows\\System32\\ucrtbase._wcsicoll_l\"") +#pragma comment(linker, "/export:_wcslwr=\"C:\\Windows\\System32\\ucrtbase._wcslwr\"") +#pragma comment(linker, "/export:_wcslwr_l=\"C:\\Windows\\System32\\ucrtbase._wcslwr_l\"") +#pragma comment(linker, "/export:_wcslwr_s=\"C:\\Windows\\System32\\ucrtbase._wcslwr_s\"") +#pragma comment(linker, "/export:_wcslwr_s_l=\"C:\\Windows\\System32\\ucrtbase._wcslwr_s_l\"") +#pragma comment(linker, "/export:_wcsncoll=\"C:\\Windows\\System32\\ucrtbase._wcsncoll\"") +#pragma comment(linker, "/export:_wcsncoll_l=\"C:\\Windows\\System32\\ucrtbase._wcsncoll_l\"") +#pragma comment(linker, "/export:_wcsnicmp=\"C:\\Windows\\System32\\ucrtbase._wcsnicmp\"") +#pragma comment(linker, "/export:_wcsnicmp_l=\"C:\\Windows\\System32\\ucrtbase._wcsnicmp_l\"") +#pragma comment(linker, "/export:_wcsnicoll=\"C:\\Windows\\System32\\ucrtbase._wcsnicoll\"") +#pragma comment(linker, "/export:_wcsnicoll_l=\"C:\\Windows\\System32\\ucrtbase._wcsnicoll_l\"") +#pragma comment(linker, "/export:_wcsnset=\"C:\\Windows\\System32\\ucrtbase._wcsnset\"") +#pragma comment(linker, "/export:_wcsnset_s=\"C:\\Windows\\System32\\ucrtbase._wcsnset_s\"") +#pragma comment(linker, "/export:_wcsrev=\"C:\\Windows\\System32\\ucrtbase._wcsrev\"") +#pragma comment(linker, "/export:_wcsset=\"C:\\Windows\\System32\\ucrtbase._wcsset\"") +#pragma comment(linker, "/export:_wcsset_s=\"C:\\Windows\\System32\\ucrtbase._wcsset_s\"") +#pragma comment(linker, "/export:_wcstod_l=\"C:\\Windows\\System32\\ucrtbase._wcstod_l\"") +#pragma comment(linker, "/export:_wcstof_l=\"C:\\Windows\\System32\\ucrtbase._wcstof_l\"") +#pragma comment(linker, "/export:_wcstoi64=\"C:\\Windows\\System32\\ucrtbase._wcstoi64\"") +#pragma comment(linker, "/export:_wcstoi64_l=\"C:\\Windows\\System32\\ucrtbase._wcstoi64_l\"") +#pragma comment(linker, "/export:_wcstoimax_l=\"C:\\Windows\\System32\\ucrtbase._wcstoimax_l\"") +#pragma comment(linker, "/export:_wcstol_l=\"C:\\Windows\\System32\\ucrtbase._wcstol_l\"") +#pragma comment(linker, "/export:_wcstold_l=\"C:\\Windows\\System32\\ucrtbase._wcstold_l\"") +#pragma comment(linker, "/export:_wcstoll_l=\"C:\\Windows\\System32\\ucrtbase._wcstoll_l\"") +#pragma comment(linker, "/export:_wcstombs_l=\"C:\\Windows\\System32\\ucrtbase._wcstombs_l\"") +#pragma comment(linker, "/export:_wcstombs_s_l=\"C:\\Windows\\System32\\ucrtbase._wcstombs_s_l\"") +#pragma comment(linker, "/export:_wcstoui64=\"C:\\Windows\\System32\\ucrtbase._wcstoui64\"") +#pragma comment(linker, "/export:_wcstoui64_l=\"C:\\Windows\\System32\\ucrtbase._wcstoui64_l\"") +#pragma comment(linker, "/export:_wcstoul_l=\"C:\\Windows\\System32\\ucrtbase._wcstoul_l\"") +#pragma comment(linker, "/export:_wcstoull_l=\"C:\\Windows\\System32\\ucrtbase._wcstoull_l\"") +#pragma comment(linker, "/export:_wcstoumax_l=\"C:\\Windows\\System32\\ucrtbase._wcstoumax_l\"") +#pragma comment(linker, "/export:_wcsupr=\"C:\\Windows\\System32\\ucrtbase._wcsupr\"") +#pragma comment(linker, "/export:_wcsupr_l=\"C:\\Windows\\System32\\ucrtbase._wcsupr_l\"") +#pragma comment(linker, "/export:_wcsupr_s=\"C:\\Windows\\System32\\ucrtbase._wcsupr_s\"") +#pragma comment(linker, "/export:_wcsupr_s_l=\"C:\\Windows\\System32\\ucrtbase._wcsupr_s_l\"") +#pragma comment(linker, "/export:_wcsxfrm_l=\"C:\\Windows\\System32\\ucrtbase._wcsxfrm_l\"") +#pragma comment(linker, "/export:_wctime32=\"C:\\Windows\\System32\\ucrtbase._wctime32\"") +#pragma comment(linker, "/export:_wctime32_s=\"C:\\Windows\\System32\\ucrtbase._wctime32_s\"") +#pragma comment(linker, "/export:_wctime64=\"C:\\Windows\\System32\\ucrtbase._wctime64\"") +#pragma comment(linker, "/export:_wctime64_s=\"C:\\Windows\\System32\\ucrtbase._wctime64_s\"") +#pragma comment(linker, "/export:_wctomb_l=\"C:\\Windows\\System32\\ucrtbase._wctomb_l\"") +#pragma comment(linker, "/export:_wctomb_s_l=\"C:\\Windows\\System32\\ucrtbase._wctomb_s_l\"") +#pragma comment(linker, "/export:_wctype=\"C:\\Windows\\System32\\ucrtbase._wctype\"") +#pragma comment(linker, "/export:_wdupenv_s=\"C:\\Windows\\System32\\ucrtbase._wdupenv_s\"") +#pragma comment(linker, "/export:_wexecl=\"C:\\Windows\\System32\\ucrtbase._wexecl\"") +#pragma comment(linker, "/export:_wexecle=\"C:\\Windows\\System32\\ucrtbase._wexecle\"") +#pragma comment(linker, "/export:_wexeclp=\"C:\\Windows\\System32\\ucrtbase._wexeclp\"") +#pragma comment(linker, "/export:_wexeclpe=\"C:\\Windows\\System32\\ucrtbase._wexeclpe\"") +#pragma comment(linker, "/export:_wexecv=\"C:\\Windows\\System32\\ucrtbase._wexecv\"") +#pragma comment(linker, "/export:_wexecve=\"C:\\Windows\\System32\\ucrtbase._wexecve\"") +#pragma comment(linker, "/export:_wexecvp=\"C:\\Windows\\System32\\ucrtbase._wexecvp\"") +#pragma comment(linker, "/export:_wexecvpe=\"C:\\Windows\\System32\\ucrtbase._wexecvpe\"") +#pragma comment(linker, "/export:_wfdopen=\"C:\\Windows\\System32\\ucrtbase._wfdopen\"") +#pragma comment(linker, "/export:_wfindfirst32=\"C:\\Windows\\System32\\ucrtbase._wfindfirst32\"") +#pragma comment(linker, "/export:_wfindfirst32i64=\"C:\\Windows\\System32\\ucrtbase._wfindfirst32i64\"") +#pragma comment(linker, "/export:_wfindfirst64=\"C:\\Windows\\System32\\ucrtbase._wfindfirst64\"") +#pragma comment(linker, "/export:_wfindfirst64i32=\"C:\\Windows\\System32\\ucrtbase._wfindfirst64i32\"") +#pragma comment(linker, "/export:_wfindnext32=\"C:\\Windows\\System32\\ucrtbase._wfindnext32\"") +#pragma comment(linker, "/export:_wfindnext32i64=\"C:\\Windows\\System32\\ucrtbase._wfindnext32i64\"") +#pragma comment(linker, "/export:_wfindnext64=\"C:\\Windows\\System32\\ucrtbase._wfindnext64\"") +#pragma comment(linker, "/export:_wfindnext64i32=\"C:\\Windows\\System32\\ucrtbase._wfindnext64i32\"") +#pragma comment(linker, "/export:_wfopen=\"C:\\Windows\\System32\\ucrtbase._wfopen\"") +#pragma comment(linker, "/export:_wfopen_s=\"C:\\Windows\\System32\\ucrtbase._wfopen_s\"") +#pragma comment(linker, "/export:_wfreopen=\"C:\\Windows\\System32\\ucrtbase._wfreopen\"") +#pragma comment(linker, "/export:_wfreopen_s=\"C:\\Windows\\System32\\ucrtbase._wfreopen_s\"") +#pragma comment(linker, "/export:_wfsopen=\"C:\\Windows\\System32\\ucrtbase._wfsopen\"") +#pragma comment(linker, "/export:_wfullpath=\"C:\\Windows\\System32\\ucrtbase._wfullpath\"") +#pragma comment(linker, "/export:_wgetcwd=\"C:\\Windows\\System32\\ucrtbase._wgetcwd\"") +#pragma comment(linker, "/export:_wgetdcwd=\"C:\\Windows\\System32\\ucrtbase._wgetdcwd\"") +#pragma comment(linker, "/export:_wgetenv=\"C:\\Windows\\System32\\ucrtbase._wgetenv\"") +#pragma comment(linker, "/export:_wgetenv_s=\"C:\\Windows\\System32\\ucrtbase._wgetenv_s\"") +#pragma comment(linker, "/export:_wmakepath=\"C:\\Windows\\System32\\ucrtbase._wmakepath\"") +#pragma comment(linker, "/export:_wmakepath_s=\"C:\\Windows\\System32\\ucrtbase._wmakepath_s\"") +#pragma comment(linker, "/export:_wmkdir=\"C:\\Windows\\System32\\ucrtbase._wmkdir\"") +#pragma comment(linker, "/export:_wmktemp=\"C:\\Windows\\System32\\ucrtbase._wmktemp\"") +#pragma comment(linker, "/export:_wmktemp_s=\"C:\\Windows\\System32\\ucrtbase._wmktemp_s\"") +#pragma comment(linker, "/export:_wopen=\"C:\\Windows\\System32\\ucrtbase._wopen\"") +#pragma comment(linker, "/export:_wperror=\"C:\\Windows\\System32\\ucrtbase._wperror\"") +#pragma comment(linker, "/export:_wpopen=\"C:\\Windows\\System32\\ucrtbase._wpopen\"") +#pragma comment(linker, "/export:_wputenv=\"C:\\Windows\\System32\\ucrtbase._wputenv\"") +#pragma comment(linker, "/export:_wputenv_s=\"C:\\Windows\\System32\\ucrtbase._wputenv_s\"") +#pragma comment(linker, "/export:_wremove=\"C:\\Windows\\System32\\ucrtbase._wremove\"") +#pragma comment(linker, "/export:_wrename=\"C:\\Windows\\System32\\ucrtbase._wrename\"") +#pragma comment(linker, "/export:_write=\"C:\\Windows\\System32\\ucrtbase._write\"") +#pragma comment(linker, "/export:_wrmdir=\"C:\\Windows\\System32\\ucrtbase._wrmdir\"") +#pragma comment(linker, "/export:_wsearchenv=\"C:\\Windows\\System32\\ucrtbase._wsearchenv\"") +#pragma comment(linker, "/export:_wsearchenv_s=\"C:\\Windows\\System32\\ucrtbase._wsearchenv_s\"") +#pragma comment(linker, "/export:_wsetlocale=\"C:\\Windows\\System32\\ucrtbase._wsetlocale\"") +#pragma comment(linker, "/export:_wsopen=\"C:\\Windows\\System32\\ucrtbase._wsopen\"") +#pragma comment(linker, "/export:_wsopen_dispatch=\"C:\\Windows\\System32\\ucrtbase._wsopen_dispatch\"") +#pragma comment(linker, "/export:_wsopen_s=\"C:\\Windows\\System32\\ucrtbase._wsopen_s\"") +#pragma comment(linker, "/export:_wspawnl=\"C:\\Windows\\System32\\ucrtbase._wspawnl\"") +#pragma comment(linker, "/export:_wspawnle=\"C:\\Windows\\System32\\ucrtbase._wspawnle\"") +#pragma comment(linker, "/export:_wspawnlp=\"C:\\Windows\\System32\\ucrtbase._wspawnlp\"") +#pragma comment(linker, "/export:_wspawnlpe=\"C:\\Windows\\System32\\ucrtbase._wspawnlpe\"") +#pragma comment(linker, "/export:_wspawnv=\"C:\\Windows\\System32\\ucrtbase._wspawnv\"") +#pragma comment(linker, "/export:_wspawnve=\"C:\\Windows\\System32\\ucrtbase._wspawnve\"") +#pragma comment(linker, "/export:_wspawnvp=\"C:\\Windows\\System32\\ucrtbase._wspawnvp\"") +#pragma comment(linker, "/export:_wspawnvpe=\"C:\\Windows\\System32\\ucrtbase._wspawnvpe\"") +#pragma comment(linker, "/export:_wsplitpath=\"C:\\Windows\\System32\\ucrtbase._wsplitpath\"") +#pragma comment(linker, "/export:_wsplitpath_s=\"C:\\Windows\\System32\\ucrtbase._wsplitpath_s\"") +#pragma comment(linker, "/export:_wstat32=\"C:\\Windows\\System32\\ucrtbase._wstat32\"") +#pragma comment(linker, "/export:_wstat32i64=\"C:\\Windows\\System32\\ucrtbase._wstat32i64\"") +#pragma comment(linker, "/export:_wstat64=\"C:\\Windows\\System32\\ucrtbase._wstat64\"") +#pragma comment(linker, "/export:_wstat64i32=\"C:\\Windows\\System32\\ucrtbase._wstat64i32\"") +#pragma comment(linker, "/export:_wstrdate=\"C:\\Windows\\System32\\ucrtbase._wstrdate\"") +#pragma comment(linker, "/export:_wstrdate_s=\"C:\\Windows\\System32\\ucrtbase._wstrdate_s\"") +#pragma comment(linker, "/export:_wstrtime=\"C:\\Windows\\System32\\ucrtbase._wstrtime\"") +#pragma comment(linker, "/export:_wstrtime_s=\"C:\\Windows\\System32\\ucrtbase._wstrtime_s\"") +#pragma comment(linker, "/export:_wsystem=\"C:\\Windows\\System32\\ucrtbase._wsystem\"") +#pragma comment(linker, "/export:_wtempnam=\"C:\\Windows\\System32\\ucrtbase._wtempnam\"") +#pragma comment(linker, "/export:_wtmpnam=\"C:\\Windows\\System32\\ucrtbase._wtmpnam\"") +#pragma comment(linker, "/export:_wtmpnam_s=\"C:\\Windows\\System32\\ucrtbase._wtmpnam_s\"") +#pragma comment(linker, "/export:_wtof=\"C:\\Windows\\System32\\ucrtbase._wtof\"") +#pragma comment(linker, "/export:_wtof_l=\"C:\\Windows\\System32\\ucrtbase._wtof_l\"") +#pragma comment(linker, "/export:_wtoi=\"C:\\Windows\\System32\\ucrtbase._wtoi\"") +#pragma comment(linker, "/export:_wtoi64=\"C:\\Windows\\System32\\ucrtbase._wtoi64\"") +#pragma comment(linker, "/export:_wtoi64_l=\"C:\\Windows\\System32\\ucrtbase._wtoi64_l\"") +#pragma comment(linker, "/export:_wtoi_l=\"C:\\Windows\\System32\\ucrtbase._wtoi_l\"") +#pragma comment(linker, "/export:_wtol=\"C:\\Windows\\System32\\ucrtbase._wtol\"") +#pragma comment(linker, "/export:_wtol_l=\"C:\\Windows\\System32\\ucrtbase._wtol_l\"") +#pragma comment(linker, "/export:_wtoll=\"C:\\Windows\\System32\\ucrtbase._wtoll\"") +#pragma comment(linker, "/export:_wtoll_l=\"C:\\Windows\\System32\\ucrtbase._wtoll_l\"") +#pragma comment(linker, "/export:_wunlink=\"C:\\Windows\\System32\\ucrtbase._wunlink\"") +#pragma comment(linker, "/export:_wutime32=\"C:\\Windows\\System32\\ucrtbase._wutime32\"") +#pragma comment(linker, "/export:_wutime64=\"C:\\Windows\\System32\\ucrtbase._wutime64\"") +#pragma comment(linker, "/export:_y0=\"C:\\Windows\\System32\\ucrtbase._y0\"") +#pragma comment(linker, "/export:_y1=\"C:\\Windows\\System32\\ucrtbase._y1\"") +#pragma comment(linker, "/export:_yn=\"C:\\Windows\\System32\\ucrtbase._yn\"") +#pragma comment(linker, "/export:abort=\"C:\\Windows\\System32\\ucrtbase.abort\"") +#pragma comment(linker, "/export:abs=\"C:\\Windows\\System32\\ucrtbase.abs\"") +#pragma comment(linker, "/export:acos=\"C:\\Windows\\System32\\ucrtbase.acos\"") +#pragma comment(linker, "/export:acosf=\"C:\\Windows\\System32\\ucrtbase.acosf\"") +#pragma comment(linker, "/export:acosh=\"C:\\Windows\\System32\\ucrtbase.acosh\"") +#pragma comment(linker, "/export:acoshf=\"C:\\Windows\\System32\\ucrtbase.acoshf\"") +#pragma comment(linker, "/export:acoshl=\"C:\\Windows\\System32\\ucrtbase.acoshl\"") +#pragma comment(linker, "/export:asctime=\"C:\\Windows\\System32\\ucrtbase.asctime\"") +#pragma comment(linker, "/export:asctime_s=\"C:\\Windows\\System32\\ucrtbase.asctime_s\"") +#pragma comment(linker, "/export:asin=\"C:\\Windows\\System32\\ucrtbase.asin\"") +#pragma comment(linker, "/export:asinf=\"C:\\Windows\\System32\\ucrtbase.asinf\"") +#pragma comment(linker, "/export:asinh=\"C:\\Windows\\System32\\ucrtbase.asinh\"") +#pragma comment(linker, "/export:asinhf=\"C:\\Windows\\System32\\ucrtbase.asinhf\"") +#pragma comment(linker, "/export:asinhl=\"C:\\Windows\\System32\\ucrtbase.asinhl\"") +#pragma comment(linker, "/export:atan=\"C:\\Windows\\System32\\ucrtbase.atan\"") +#pragma comment(linker, "/export:atan2=\"C:\\Windows\\System32\\ucrtbase.atan2\"") +#pragma comment(linker, "/export:atan2f=\"C:\\Windows\\System32\\ucrtbase.atan2f\"") +#pragma comment(linker, "/export:atanf=\"C:\\Windows\\System32\\ucrtbase.atanf\"") +#pragma comment(linker, "/export:atanh=\"C:\\Windows\\System32\\ucrtbase.atanh\"") +#pragma comment(linker, "/export:atanhf=\"C:\\Windows\\System32\\ucrtbase.atanhf\"") +#pragma comment(linker, "/export:atanhl=\"C:\\Windows\\System32\\ucrtbase.atanhl\"") +#pragma comment(linker, "/export:atof=\"C:\\Windows\\System32\\ucrtbase.atof\"") +#pragma comment(linker, "/export:atoi=\"C:\\Windows\\System32\\ucrtbase.atoi\"") +#pragma comment(linker, "/export:atol=\"C:\\Windows\\System32\\ucrtbase.atol\"") +#pragma comment(linker, "/export:atoll=\"C:\\Windows\\System32\\ucrtbase.atoll\"") +#pragma comment(linker, "/export:bsearch=\"C:\\Windows\\System32\\ucrtbase.bsearch\"") +#pragma comment(linker, "/export:bsearch_s=\"C:\\Windows\\System32\\ucrtbase.bsearch_s\"") +#pragma comment(linker, "/export:btowc=\"C:\\Windows\\System32\\ucrtbase.btowc\"") +#pragma comment(linker, "/export:c16rtomb=\"C:\\Windows\\System32\\ucrtbase.c16rtomb\"") +#pragma comment(linker, "/export:c32rtomb=\"C:\\Windows\\System32\\ucrtbase.c32rtomb\"") +#pragma comment(linker, "/export:cabs=\"C:\\Windows\\System32\\ucrtbase.cabs\"") +#pragma comment(linker, "/export:cabsf=\"C:\\Windows\\System32\\ucrtbase.cabsf\"") +#pragma comment(linker, "/export:cabsl=\"C:\\Windows\\System32\\ucrtbase.cabsl\"") +#pragma comment(linker, "/export:cacos=\"C:\\Windows\\System32\\ucrtbase.cacos\"") +#pragma comment(linker, "/export:cacosf=\"C:\\Windows\\System32\\ucrtbase.cacosf\"") +#pragma comment(linker, "/export:cacosh=\"C:\\Windows\\System32\\ucrtbase.cacosh\"") +#pragma comment(linker, "/export:cacoshf=\"C:\\Windows\\System32\\ucrtbase.cacoshf\"") +#pragma comment(linker, "/export:cacoshl=\"C:\\Windows\\System32\\ucrtbase.cacoshl\"") +#pragma comment(linker, "/export:cacosl=\"C:\\Windows\\System32\\ucrtbase.cacosl\"") +#pragma comment(linker, "/export:calloc=\"C:\\Windows\\System32\\ucrtbase.calloc\"") +#pragma comment(linker, "/export:carg=\"C:\\Windows\\System32\\ucrtbase.carg\"") +#pragma comment(linker, "/export:cargf=\"C:\\Windows\\System32\\ucrtbase.cargf\"") +#pragma comment(linker, "/export:cargl=\"C:\\Windows\\System32\\ucrtbase.cargl\"") +#pragma comment(linker, "/export:casin=\"C:\\Windows\\System32\\ucrtbase.casin\"") +#pragma comment(linker, "/export:casinf=\"C:\\Windows\\System32\\ucrtbase.casinf\"") +#pragma comment(linker, "/export:casinh=\"C:\\Windows\\System32\\ucrtbase.casinh\"") +#pragma comment(linker, "/export:casinhf=\"C:\\Windows\\System32\\ucrtbase.casinhf\"") +#pragma comment(linker, "/export:casinhl=\"C:\\Windows\\System32\\ucrtbase.casinhl\"") +#pragma comment(linker, "/export:casinl=\"C:\\Windows\\System32\\ucrtbase.casinl\"") +#pragma comment(linker, "/export:catan=\"C:\\Windows\\System32\\ucrtbase.catan\"") +#pragma comment(linker, "/export:catanf=\"C:\\Windows\\System32\\ucrtbase.catanf\"") +#pragma comment(linker, "/export:catanh=\"C:\\Windows\\System32\\ucrtbase.catanh\"") +#pragma comment(linker, "/export:catanhf=\"C:\\Windows\\System32\\ucrtbase.catanhf\"") +#pragma comment(linker, "/export:catanhl=\"C:\\Windows\\System32\\ucrtbase.catanhl\"") +#pragma comment(linker, "/export:catanl=\"C:\\Windows\\System32\\ucrtbase.catanl\"") +#pragma comment(linker, "/export:cbrt=\"C:\\Windows\\System32\\ucrtbase.cbrt\"") +#pragma comment(linker, "/export:cbrtf=\"C:\\Windows\\System32\\ucrtbase.cbrtf\"") +#pragma comment(linker, "/export:cbrtl=\"C:\\Windows\\System32\\ucrtbase.cbrtl\"") +#pragma comment(linker, "/export:ccos=\"C:\\Windows\\System32\\ucrtbase.ccos\"") +#pragma comment(linker, "/export:ccosf=\"C:\\Windows\\System32\\ucrtbase.ccosf\"") +#pragma comment(linker, "/export:ccosh=\"C:\\Windows\\System32\\ucrtbase.ccosh\"") +#pragma comment(linker, "/export:ccoshf=\"C:\\Windows\\System32\\ucrtbase.ccoshf\"") +#pragma comment(linker, "/export:ccoshl=\"C:\\Windows\\System32\\ucrtbase.ccoshl\"") +#pragma comment(linker, "/export:ccosl=\"C:\\Windows\\System32\\ucrtbase.ccosl\"") +#pragma comment(linker, "/export:ceil=\"C:\\Windows\\System32\\ucrtbase.ceil\"") +#pragma comment(linker, "/export:ceilf=\"C:\\Windows\\System32\\ucrtbase.ceilf\"") +#pragma comment(linker, "/export:cexp=\"C:\\Windows\\System32\\ucrtbase.cexp\"") +#pragma comment(linker, "/export:cexpf=\"C:\\Windows\\System32\\ucrtbase.cexpf\"") +#pragma comment(linker, "/export:cexpl=\"C:\\Windows\\System32\\ucrtbase.cexpl\"") +#pragma comment(linker, "/export:cimag=\"C:\\Windows\\System32\\ucrtbase.cimag\"") +#pragma comment(linker, "/export:cimagf=\"C:\\Windows\\System32\\ucrtbase.cimagf\"") +#pragma comment(linker, "/export:cimagl=\"C:\\Windows\\System32\\ucrtbase.cimagl\"") +#pragma comment(linker, "/export:clearerr=\"C:\\Windows\\System32\\ucrtbase.clearerr\"") +#pragma comment(linker, "/export:clearerr_s=\"C:\\Windows\\System32\\ucrtbase.clearerr_s\"") +#pragma comment(linker, "/export:clock=\"C:\\Windows\\System32\\ucrtbase.clock\"") +#pragma comment(linker, "/export:clog=\"C:\\Windows\\System32\\ucrtbase.clog\"") +#pragma comment(linker, "/export:clog10=\"C:\\Windows\\System32\\ucrtbase.clog10\"") +#pragma comment(linker, "/export:clog10f=\"C:\\Windows\\System32\\ucrtbase.clog10f\"") +#pragma comment(linker, "/export:clog10l=\"C:\\Windows\\System32\\ucrtbase.clog10l\"") +#pragma comment(linker, "/export:clogf=\"C:\\Windows\\System32\\ucrtbase.clogf\"") +#pragma comment(linker, "/export:clogl=\"C:\\Windows\\System32\\ucrtbase.clogl\"") +#pragma comment(linker, "/export:conj=\"C:\\Windows\\System32\\ucrtbase.conj\"") +#pragma comment(linker, "/export:conjf=\"C:\\Windows\\System32\\ucrtbase.conjf\"") +#pragma comment(linker, "/export:conjl=\"C:\\Windows\\System32\\ucrtbase.conjl\"") +#pragma comment(linker, "/export:copysign=\"C:\\Windows\\System32\\ucrtbase.copysign\"") +#pragma comment(linker, "/export:copysignf=\"C:\\Windows\\System32\\ucrtbase.copysignf\"") +#pragma comment(linker, "/export:copysignl=\"C:\\Windows\\System32\\ucrtbase.copysignl\"") +#pragma comment(linker, "/export:cos=\"C:\\Windows\\System32\\ucrtbase.cos\"") +#pragma comment(linker, "/export:cosf=\"C:\\Windows\\System32\\ucrtbase.cosf\"") +#pragma comment(linker, "/export:cosh=\"C:\\Windows\\System32\\ucrtbase.cosh\"") +#pragma comment(linker, "/export:coshf=\"C:\\Windows\\System32\\ucrtbase.coshf\"") +#pragma comment(linker, "/export:cpow=\"C:\\Windows\\System32\\ucrtbase.cpow\"") +#pragma comment(linker, "/export:cpowf=\"C:\\Windows\\System32\\ucrtbase.cpowf\"") +#pragma comment(linker, "/export:cpowl=\"C:\\Windows\\System32\\ucrtbase.cpowl\"") +#pragma comment(linker, "/export:cproj=\"C:\\Windows\\System32\\ucrtbase.cproj\"") +#pragma comment(linker, "/export:cprojf=\"C:\\Windows\\System32\\ucrtbase.cprojf\"") +#pragma comment(linker, "/export:cprojl=\"C:\\Windows\\System32\\ucrtbase.cprojl\"") +#pragma comment(linker, "/export:creal=\"C:\\Windows\\System32\\ucrtbase.creal\"") +#pragma comment(linker, "/export:crealf=\"C:\\Windows\\System32\\ucrtbase.crealf\"") +#pragma comment(linker, "/export:creall=\"C:\\Windows\\System32\\ucrtbase.creall\"") +#pragma comment(linker, "/export:csin=\"C:\\Windows\\System32\\ucrtbase.csin\"") +#pragma comment(linker, "/export:csinf=\"C:\\Windows\\System32\\ucrtbase.csinf\"") +#pragma comment(linker, "/export:csinh=\"C:\\Windows\\System32\\ucrtbase.csinh\"") +#pragma comment(linker, "/export:csinhf=\"C:\\Windows\\System32\\ucrtbase.csinhf\"") +#pragma comment(linker, "/export:csinhl=\"C:\\Windows\\System32\\ucrtbase.csinhl\"") +#pragma comment(linker, "/export:csinl=\"C:\\Windows\\System32\\ucrtbase.csinl\"") +#pragma comment(linker, "/export:csqrt=\"C:\\Windows\\System32\\ucrtbase.csqrt\"") +#pragma comment(linker, "/export:csqrtf=\"C:\\Windows\\System32\\ucrtbase.csqrtf\"") +#pragma comment(linker, "/export:csqrtl=\"C:\\Windows\\System32\\ucrtbase.csqrtl\"") +#pragma comment(linker, "/export:ctan=\"C:\\Windows\\System32\\ucrtbase.ctan\"") +#pragma comment(linker, "/export:ctanf=\"C:\\Windows\\System32\\ucrtbase.ctanf\"") +#pragma comment(linker, "/export:ctanh=\"C:\\Windows\\System32\\ucrtbase.ctanh\"") +#pragma comment(linker, "/export:ctanhf=\"C:\\Windows\\System32\\ucrtbase.ctanhf\"") +#pragma comment(linker, "/export:ctanhl=\"C:\\Windows\\System32\\ucrtbase.ctanhl\"") +#pragma comment(linker, "/export:ctanl=\"C:\\Windows\\System32\\ucrtbase.ctanl\"") +#pragma comment(linker, "/export:div=\"C:\\Windows\\System32\\ucrtbase.div\"") +#pragma comment(linker, "/export:erf=\"C:\\Windows\\System32\\ucrtbase.erf\"") +#pragma comment(linker, "/export:erfc=\"C:\\Windows\\System32\\ucrtbase.erfc\"") +#pragma comment(linker, "/export:erfcf=\"C:\\Windows\\System32\\ucrtbase.erfcf\"") +#pragma comment(linker, "/export:erfcl=\"C:\\Windows\\System32\\ucrtbase.erfcl\"") +#pragma comment(linker, "/export:erff=\"C:\\Windows\\System32\\ucrtbase.erff\"") +#pragma comment(linker, "/export:erfl=\"C:\\Windows\\System32\\ucrtbase.erfl\"") +#pragma comment(linker, "/export:exit=\"C:\\Windows\\System32\\ucrtbase.exit\"") +#pragma comment(linker, "/export:exp=\"C:\\Windows\\System32\\ucrtbase.exp\"") +#pragma comment(linker, "/export:exp2=\"C:\\Windows\\System32\\ucrtbase.exp2\"") +#pragma comment(linker, "/export:exp2f=\"C:\\Windows\\System32\\ucrtbase.exp2f\"") +#pragma comment(linker, "/export:exp2l=\"C:\\Windows\\System32\\ucrtbase.exp2l\"") +#pragma comment(linker, "/export:expf=\"C:\\Windows\\System32\\ucrtbase.expf\"") +#pragma comment(linker, "/export:expm1=\"C:\\Windows\\System32\\ucrtbase.expm1\"") +#pragma comment(linker, "/export:expm1f=\"C:\\Windows\\System32\\ucrtbase.expm1f\"") +#pragma comment(linker, "/export:expm1l=\"C:\\Windows\\System32\\ucrtbase.expm1l\"") +#pragma comment(linker, "/export:fabs=\"C:\\Windows\\System32\\ucrtbase.fabs\"") +#pragma comment(linker, "/export:fclose=\"C:\\Windows\\System32\\ucrtbase.fclose\"") +#pragma comment(linker, "/export:fdim=\"C:\\Windows\\System32\\ucrtbase.fdim\"") +#pragma comment(linker, "/export:fdimf=\"C:\\Windows\\System32\\ucrtbase.fdimf\"") +#pragma comment(linker, "/export:fdiml=\"C:\\Windows\\System32\\ucrtbase.fdiml\"") +#pragma comment(linker, "/export:feclearexcept=\"C:\\Windows\\System32\\ucrtbase.feclearexcept\"") +#pragma comment(linker, "/export:fegetenv=\"C:\\Windows\\System32\\ucrtbase.fegetenv\"") +#pragma comment(linker, "/export:fegetexceptflag=\"C:\\Windows\\System32\\ucrtbase.fegetexceptflag\"") +#pragma comment(linker, "/export:fegetround=\"C:\\Windows\\System32\\ucrtbase.fegetround\"") +#pragma comment(linker, "/export:feholdexcept=\"C:\\Windows\\System32\\ucrtbase.feholdexcept\"") +#pragma comment(linker, "/export:feof=\"C:\\Windows\\System32\\ucrtbase.feof\"") +#pragma comment(linker, "/export:ferror=\"C:\\Windows\\System32\\ucrtbase.ferror\"") +#pragma comment(linker, "/export:fesetenv=\"C:\\Windows\\System32\\ucrtbase.fesetenv\"") +#pragma comment(linker, "/export:fesetexceptflag=\"C:\\Windows\\System32\\ucrtbase.fesetexceptflag\"") +#pragma comment(linker, "/export:fesetround=\"C:\\Windows\\System32\\ucrtbase.fesetround\"") +#pragma comment(linker, "/export:fetestexcept=\"C:\\Windows\\System32\\ucrtbase.fetestexcept\"") +#pragma comment(linker, "/export:fflush=\"C:\\Windows\\System32\\ucrtbase.fflush\"") +#pragma comment(linker, "/export:fgetc=\"C:\\Windows\\System32\\ucrtbase.fgetc\"") +#pragma comment(linker, "/export:fgetpos=\"C:\\Windows\\System32\\ucrtbase.fgetpos\"") +#pragma comment(linker, "/export:fgets=\"C:\\Windows\\System32\\ucrtbase.fgets\"") +#pragma comment(linker, "/export:fgetwc=\"C:\\Windows\\System32\\ucrtbase.fgetwc\"") +#pragma comment(linker, "/export:fgetws=\"C:\\Windows\\System32\\ucrtbase.fgetws\"") +#pragma comment(linker, "/export:floor=\"C:\\Windows\\System32\\ucrtbase.floor\"") +#pragma comment(linker, "/export:floorf=\"C:\\Windows\\System32\\ucrtbase.floorf\"") +#pragma comment(linker, "/export:fma=\"C:\\Windows\\System32\\ucrtbase.fma\"") +#pragma comment(linker, "/export:fmaf=\"C:\\Windows\\System32\\ucrtbase.fmaf\"") +#pragma comment(linker, "/export:fmal=\"C:\\Windows\\System32\\ucrtbase.fmal\"") +#pragma comment(linker, "/export:fmax=\"C:\\Windows\\System32\\ucrtbase.fmax\"") +#pragma comment(linker, "/export:fmaxf=\"C:\\Windows\\System32\\ucrtbase.fmaxf\"") +#pragma comment(linker, "/export:fmaxl=\"C:\\Windows\\System32\\ucrtbase.fmaxl\"") +#pragma comment(linker, "/export:fmin=\"C:\\Windows\\System32\\ucrtbase.fmin\"") +#pragma comment(linker, "/export:fminf=\"C:\\Windows\\System32\\ucrtbase.fminf\"") +#pragma comment(linker, "/export:fminl=\"C:\\Windows\\System32\\ucrtbase.fminl\"") +#pragma comment(linker, "/export:fmod=\"C:\\Windows\\System32\\ucrtbase.fmod\"") +#pragma comment(linker, "/export:fmodf=\"C:\\Windows\\System32\\ucrtbase.fmodf\"") +#pragma comment(linker, "/export:fopen=\"C:\\Windows\\System32\\ucrtbase.fopen\"") +#pragma comment(linker, "/export:fopen_s=\"C:\\Windows\\System32\\ucrtbase.fopen_s\"") +#pragma comment(linker, "/export:fputc=\"C:\\Windows\\System32\\ucrtbase.fputc\"") +#pragma comment(linker, "/export:fputs=\"C:\\Windows\\System32\\ucrtbase.fputs\"") +#pragma comment(linker, "/export:fputwc=\"C:\\Windows\\System32\\ucrtbase.fputwc\"") +#pragma comment(linker, "/export:fputws=\"C:\\Windows\\System32\\ucrtbase.fputws\"") +#pragma comment(linker, "/export:fread=\"C:\\Windows\\System32\\ucrtbase.fread\"") +#pragma comment(linker, "/export:fread_s=\"C:\\Windows\\System32\\ucrtbase.fread_s\"") +#pragma comment(linker, "/export:free=\"C:\\Windows\\System32\\ucrtbase.free\"") +#pragma comment(linker, "/export:freopen=\"C:\\Windows\\System32\\ucrtbase.freopen\"") +#pragma comment(linker, "/export:freopen_s=\"C:\\Windows\\System32\\ucrtbase.freopen_s\"") +#pragma comment(linker, "/export:frexp=\"C:\\Windows\\System32\\ucrtbase.frexp\"") +#pragma comment(linker, "/export:fseek=\"C:\\Windows\\System32\\ucrtbase.fseek\"") +#pragma comment(linker, "/export:fsetpos=\"C:\\Windows\\System32\\ucrtbase.fsetpos\"") +#pragma comment(linker, "/export:ftell=\"C:\\Windows\\System32\\ucrtbase.ftell\"") +#pragma comment(linker, "/export:fwrite=\"C:\\Windows\\System32\\ucrtbase.fwrite\"") +#pragma comment(linker, "/export:getc=\"C:\\Windows\\System32\\ucrtbase.getc\"") +#pragma comment(linker, "/export:getchar=\"C:\\Windows\\System32\\ucrtbase.getchar\"") +#pragma comment(linker, "/export:getenv=\"C:\\Windows\\System32\\ucrtbase.getenv\"") +#pragma comment(linker, "/export:getenv_s=\"C:\\Windows\\System32\\ucrtbase.getenv_s\"") +#pragma comment(linker, "/export:gets=\"C:\\Windows\\System32\\ucrtbase.gets\"") +#pragma comment(linker, "/export:gets_s=\"C:\\Windows\\System32\\ucrtbase.gets_s\"") +#pragma comment(linker, "/export:getwc=\"C:\\Windows\\System32\\ucrtbase.getwc\"") +#pragma comment(linker, "/export:getwchar=\"C:\\Windows\\System32\\ucrtbase.getwchar\"") +#pragma comment(linker, "/export:hypot=\"C:\\Windows\\System32\\ucrtbase.hypot\"") +#pragma comment(linker, "/export:ilogb=\"C:\\Windows\\System32\\ucrtbase.ilogb\"") +#pragma comment(linker, "/export:ilogbf=\"C:\\Windows\\System32\\ucrtbase.ilogbf\"") +#pragma comment(linker, "/export:ilogbl=\"C:\\Windows\\System32\\ucrtbase.ilogbl\"") +#pragma comment(linker, "/export:imaxabs=\"C:\\Windows\\System32\\ucrtbase.imaxabs\"") +#pragma comment(linker, "/export:imaxdiv=\"C:\\Windows\\System32\\ucrtbase.imaxdiv\"") +#pragma comment(linker, "/export:is_wctype=\"C:\\Windows\\System32\\ucrtbase.is_wctype\"") +#pragma comment(linker, "/export:isalnum=\"C:\\Windows\\System32\\ucrtbase.isalnum\"") +#pragma comment(linker, "/export:isalpha=\"C:\\Windows\\System32\\ucrtbase.isalpha\"") +#pragma comment(linker, "/export:isblank=\"C:\\Windows\\System32\\ucrtbase.isblank\"") +#pragma comment(linker, "/export:iscntrl=\"C:\\Windows\\System32\\ucrtbase.iscntrl\"") +#pragma comment(linker, "/export:isdigit=\"C:\\Windows\\System32\\ucrtbase.isdigit\"") +#pragma comment(linker, "/export:isgraph=\"C:\\Windows\\System32\\ucrtbase.isgraph\"") +#pragma comment(linker, "/export:isleadbyte=\"C:\\Windows\\System32\\ucrtbase.isleadbyte\"") +#pragma comment(linker, "/export:islower=\"C:\\Windows\\System32\\ucrtbase.islower\"") +#pragma comment(linker, "/export:isprint=\"C:\\Windows\\System32\\ucrtbase.isprint\"") +#pragma comment(linker, "/export:ispunct=\"C:\\Windows\\System32\\ucrtbase.ispunct\"") +#pragma comment(linker, "/export:isspace=\"C:\\Windows\\System32\\ucrtbase.isspace\"") +#pragma comment(linker, "/export:isupper=\"C:\\Windows\\System32\\ucrtbase.isupper\"") +#pragma comment(linker, "/export:iswalnum=\"C:\\Windows\\System32\\ucrtbase.iswalnum\"") +#pragma comment(linker, "/export:iswalpha=\"C:\\Windows\\System32\\ucrtbase.iswalpha\"") +#pragma comment(linker, "/export:iswascii=\"C:\\Windows\\System32\\ucrtbase.iswascii\"") +#pragma comment(linker, "/export:iswblank=\"C:\\Windows\\System32\\ucrtbase.iswblank\"") +#pragma comment(linker, "/export:iswcntrl=\"C:\\Windows\\System32\\ucrtbase.iswcntrl\"") +#pragma comment(linker, "/export:iswctype=\"C:\\Windows\\System32\\ucrtbase.iswctype\"") +#pragma comment(linker, "/export:iswdigit=\"C:\\Windows\\System32\\ucrtbase.iswdigit\"") +#pragma comment(linker, "/export:iswgraph=\"C:\\Windows\\System32\\ucrtbase.iswgraph\"") +#pragma comment(linker, "/export:iswlower=\"C:\\Windows\\System32\\ucrtbase.iswlower\"") +#pragma comment(linker, "/export:iswprint=\"C:\\Windows\\System32\\ucrtbase.iswprint\"") +#pragma comment(linker, "/export:iswpunct=\"C:\\Windows\\System32\\ucrtbase.iswpunct\"") +#pragma comment(linker, "/export:iswspace=\"C:\\Windows\\System32\\ucrtbase.iswspace\"") +#pragma comment(linker, "/export:iswupper=\"C:\\Windows\\System32\\ucrtbase.iswupper\"") +#pragma comment(linker, "/export:iswxdigit=\"C:\\Windows\\System32\\ucrtbase.iswxdigit\"") +#pragma comment(linker, "/export:isxdigit=\"C:\\Windows\\System32\\ucrtbase.isxdigit\"") +#pragma comment(linker, "/export:labs=\"C:\\Windows\\System32\\ucrtbase.labs\"") +#pragma comment(linker, "/export:ldexp=\"C:\\Windows\\System32\\ucrtbase.ldexp\"") +#pragma comment(linker, "/export:ldiv=\"C:\\Windows\\System32\\ucrtbase.ldiv\"") +#pragma comment(linker, "/export:lgamma=\"C:\\Windows\\System32\\ucrtbase.lgamma\"") +#pragma comment(linker, "/export:lgammaf=\"C:\\Windows\\System32\\ucrtbase.lgammaf\"") +#pragma comment(linker, "/export:lgammal=\"C:\\Windows\\System32\\ucrtbase.lgammal\"") +#pragma comment(linker, "/export:llabs=\"C:\\Windows\\System32\\ucrtbase.llabs\"") +#pragma comment(linker, "/export:lldiv=\"C:\\Windows\\System32\\ucrtbase.lldiv\"") +#pragma comment(linker, "/export:llrint=\"C:\\Windows\\System32\\ucrtbase.llrint\"") +#pragma comment(linker, "/export:llrintf=\"C:\\Windows\\System32\\ucrtbase.llrintf\"") +#pragma comment(linker, "/export:llrintl=\"C:\\Windows\\System32\\ucrtbase.llrintl\"") +#pragma comment(linker, "/export:llround=\"C:\\Windows\\System32\\ucrtbase.llround\"") +#pragma comment(linker, "/export:llroundf=\"C:\\Windows\\System32\\ucrtbase.llroundf\"") +#pragma comment(linker, "/export:llroundl=\"C:\\Windows\\System32\\ucrtbase.llroundl\"") +#pragma comment(linker, "/export:localeconv=\"C:\\Windows\\System32\\ucrtbase.localeconv\"") +#pragma comment(linker, "/export:log=\"C:\\Windows\\System32\\ucrtbase.log\"") +#pragma comment(linker, "/export:log10=\"C:\\Windows\\System32\\ucrtbase.log10\"") +#pragma comment(linker, "/export:log10f=\"C:\\Windows\\System32\\ucrtbase.log10f\"") +#pragma comment(linker, "/export:log1p=\"C:\\Windows\\System32\\ucrtbase.log1p\"") +#pragma comment(linker, "/export:log1pf=\"C:\\Windows\\System32\\ucrtbase.log1pf\"") +#pragma comment(linker, "/export:log1pl=\"C:\\Windows\\System32\\ucrtbase.log1pl\"") +#pragma comment(linker, "/export:log2=\"C:\\Windows\\System32\\ucrtbase.log2\"") +#pragma comment(linker, "/export:log2f=\"C:\\Windows\\System32\\ucrtbase.log2f\"") +#pragma comment(linker, "/export:log2l=\"C:\\Windows\\System32\\ucrtbase.log2l\"") +#pragma comment(linker, "/export:logb=\"C:\\Windows\\System32\\ucrtbase.logb\"") +#pragma comment(linker, "/export:logbf=\"C:\\Windows\\System32\\ucrtbase.logbf\"") +#pragma comment(linker, "/export:logbl=\"C:\\Windows\\System32\\ucrtbase.logbl\"") +#pragma comment(linker, "/export:logf=\"C:\\Windows\\System32\\ucrtbase.logf\"") +#pragma comment(linker, "/export:longjmp=\"C:\\Windows\\System32\\ucrtbase.longjmp\"") +#pragma comment(linker, "/export:lrint=\"C:\\Windows\\System32\\ucrtbase.lrint\"") +#pragma comment(linker, "/export:lrintf=\"C:\\Windows\\System32\\ucrtbase.lrintf\"") +#pragma comment(linker, "/export:lrintl=\"C:\\Windows\\System32\\ucrtbase.lrintl\"") +#pragma comment(linker, "/export:lround=\"C:\\Windows\\System32\\ucrtbase.lround\"") +#pragma comment(linker, "/export:lroundf=\"C:\\Windows\\System32\\ucrtbase.lroundf\"") +#pragma comment(linker, "/export:lroundl=\"C:\\Windows\\System32\\ucrtbase.lroundl\"") +#pragma comment(linker, "/export:malloc=\"C:\\Windows\\System32\\ucrtbase.malloc\"") +#pragma comment(linker, "/export:mblen=\"C:\\Windows\\System32\\ucrtbase.mblen\"") +#pragma comment(linker, "/export:mbrlen=\"C:\\Windows\\System32\\ucrtbase.mbrlen\"") +#pragma comment(linker, "/export:mbrtoc16=\"C:\\Windows\\System32\\ucrtbase.mbrtoc16\"") +#pragma comment(linker, "/export:mbrtoc32=\"C:\\Windows\\System32\\ucrtbase.mbrtoc32\"") +#pragma comment(linker, "/export:mbrtowc=\"C:\\Windows\\System32\\ucrtbase.mbrtowc\"") +#pragma comment(linker, "/export:mbsrtowcs=\"C:\\Windows\\System32\\ucrtbase.mbsrtowcs\"") +#pragma comment(linker, "/export:mbsrtowcs_s=\"C:\\Windows\\System32\\ucrtbase.mbsrtowcs_s\"") +#pragma comment(linker, "/export:mbstowcs=\"C:\\Windows\\System32\\ucrtbase.mbstowcs\"") +#pragma comment(linker, "/export:mbstowcs_s=\"C:\\Windows\\System32\\ucrtbase.mbstowcs_s\"") +#pragma comment(linker, "/export:mbtowc=\"C:\\Windows\\System32\\ucrtbase.mbtowc\"") +#pragma comment(linker, "/export:memchr=\"C:\\Windows\\System32\\ucrtbase.memchr\"") +#pragma comment(linker, "/export:memcmp=\"C:\\Windows\\System32\\ucrtbase.memcmp\"") +#pragma comment(linker, "/export:memcpy=\"C:\\Windows\\System32\\ucrtbase.memcpy\"") +#pragma comment(linker, "/export:memcpy_s=\"C:\\Windows\\System32\\ucrtbase.memcpy_s\"") +#pragma comment(linker, "/export:memmove=\"C:\\Windows\\System32\\ucrtbase.memmove\"") +#pragma comment(linker, "/export:memmove_s=\"C:\\Windows\\System32\\ucrtbase.memmove_s\"") +#pragma comment(linker, "/export:memset=\"C:\\Windows\\System32\\ucrtbase.memset\"") +#pragma comment(linker, "/export:modf=\"C:\\Windows\\System32\\ucrtbase.modf\"") +#pragma comment(linker, "/export:modff=\"C:\\Windows\\System32\\ucrtbase.modff\"") +#pragma comment(linker, "/export:nan=\"C:\\Windows\\System32\\ucrtbase.nan\"") +#pragma comment(linker, "/export:nanf=\"C:\\Windows\\System32\\ucrtbase.nanf\"") +#pragma comment(linker, "/export:nanl=\"C:\\Windows\\System32\\ucrtbase.nanl\"") +#pragma comment(linker, "/export:nearbyint=\"C:\\Windows\\System32\\ucrtbase.nearbyint\"") +#pragma comment(linker, "/export:nearbyintf=\"C:\\Windows\\System32\\ucrtbase.nearbyintf\"") +#pragma comment(linker, "/export:nearbyintl=\"C:\\Windows\\System32\\ucrtbase.nearbyintl\"") +#pragma comment(linker, "/export:nextafter=\"C:\\Windows\\System32\\ucrtbase.nextafter\"") +#pragma comment(linker, "/export:nextafterf=\"C:\\Windows\\System32\\ucrtbase.nextafterf\"") +#pragma comment(linker, "/export:nextafterl=\"C:\\Windows\\System32\\ucrtbase.nextafterl\"") +#pragma comment(linker, "/export:nexttoward=\"C:\\Windows\\System32\\ucrtbase.nexttoward\"") +#pragma comment(linker, "/export:nexttowardf=\"C:\\Windows\\System32\\ucrtbase.nexttowardf\"") +#pragma comment(linker, "/export:nexttowardl=\"C:\\Windows\\System32\\ucrtbase.nexttowardl\"") +#pragma comment(linker, "/export:norm=\"C:\\Windows\\System32\\ucrtbase.norm\"") +#pragma comment(linker, "/export:normf=\"C:\\Windows\\System32\\ucrtbase.normf\"") +#pragma comment(linker, "/export:norml=\"C:\\Windows\\System32\\ucrtbase.norml\"") +#pragma comment(linker, "/export:perror=\"C:\\Windows\\System32\\ucrtbase.perror\"") +#pragma comment(linker, "/export:pow=\"C:\\Windows\\System32\\ucrtbase.pow\"") +#pragma comment(linker, "/export:powf=\"C:\\Windows\\System32\\ucrtbase.powf\"") +#pragma comment(linker, "/export:putc=\"C:\\Windows\\System32\\ucrtbase.putc\"") +#pragma comment(linker, "/export:putchar=\"C:\\Windows\\System32\\ucrtbase.putchar\"") +#pragma comment(linker, "/export:puts=\"C:\\Windows\\System32\\ucrtbase.puts\"") +#pragma comment(linker, "/export:putwc=\"C:\\Windows\\System32\\ucrtbase.putwc\"") +#pragma comment(linker, "/export:putwchar=\"C:\\Windows\\System32\\ucrtbase.putwchar\"") +#pragma comment(linker, "/export:qsort=\"C:\\Windows\\System32\\ucrtbase.qsort\"") +#pragma comment(linker, "/export:qsort_s=\"C:\\Windows\\System32\\ucrtbase.qsort_s\"") +#pragma comment(linker, "/export:quick_exit=\"C:\\Windows\\System32\\ucrtbase.quick_exit\"") +#pragma comment(linker, "/export:raise=\"C:\\Windows\\System32\\ucrtbase.raise\"") +#pragma comment(linker, "/export:rand=\"C:\\Windows\\System32\\ucrtbase.rand\"") +#pragma comment(linker, "/export:rand_s=\"C:\\Windows\\System32\\ucrtbase.rand_s\"") +#pragma comment(linker, "/export:realloc=\"C:\\Windows\\System32\\ucrtbase.realloc\"") +#pragma comment(linker, "/export:remainder=\"C:\\Windows\\System32\\ucrtbase.remainder\"") +#pragma comment(linker, "/export:remainderf=\"C:\\Windows\\System32\\ucrtbase.remainderf\"") +#pragma comment(linker, "/export:remainderl=\"C:\\Windows\\System32\\ucrtbase.remainderl\"") +#pragma comment(linker, "/export:remove=\"C:\\Windows\\System32\\ucrtbase.remove\"") +#pragma comment(linker, "/export:remquo=\"C:\\Windows\\System32\\ucrtbase.remquo\"") +#pragma comment(linker, "/export:remquof=\"C:\\Windows\\System32\\ucrtbase.remquof\"") +#pragma comment(linker, "/export:remquol=\"C:\\Windows\\System32\\ucrtbase.remquol\"") +#pragma comment(linker, "/export:rename=\"C:\\Windows\\System32\\ucrtbase.rename\"") +#pragma comment(linker, "/export:rewind=\"C:\\Windows\\System32\\ucrtbase.rewind\"") +#pragma comment(linker, "/export:rint=\"C:\\Windows\\System32\\ucrtbase.rint\"") +#pragma comment(linker, "/export:rintf=\"C:\\Windows\\System32\\ucrtbase.rintf\"") +#pragma comment(linker, "/export:rintl=\"C:\\Windows\\System32\\ucrtbase.rintl\"") +#pragma comment(linker, "/export:round=\"C:\\Windows\\System32\\ucrtbase.round\"") +#pragma comment(linker, "/export:roundf=\"C:\\Windows\\System32\\ucrtbase.roundf\"") +#pragma comment(linker, "/export:roundl=\"C:\\Windows\\System32\\ucrtbase.roundl\"") +#pragma comment(linker, "/export:scalbln=\"C:\\Windows\\System32\\ucrtbase.scalbln\"") +#pragma comment(linker, "/export:scalblnf=\"C:\\Windows\\System32\\ucrtbase.scalblnf\"") +#pragma comment(linker, "/export:scalblnl=\"C:\\Windows\\System32\\ucrtbase.scalblnl\"") +#pragma comment(linker, "/export:scalbn=\"C:\\Windows\\System32\\ucrtbase.scalbn\"") +#pragma comment(linker, "/export:scalbnf=\"C:\\Windows\\System32\\ucrtbase.scalbnf\"") +#pragma comment(linker, "/export:scalbnl=\"C:\\Windows\\System32\\ucrtbase.scalbnl\"") +#pragma comment(linker, "/export:set_terminate=\"C:\\Windows\\System32\\ucrtbase.set_terminate\"") +#pragma comment(linker, "/export:set_unexpected=\"C:\\Windows\\System32\\ucrtbase.set_unexpected\"") +#pragma comment(linker, "/export:setbuf=\"C:\\Windows\\System32\\ucrtbase.setbuf\"") +#pragma comment(linker, "/export:setjmp=\"C:\\Windows\\System32\\ucrtbase.setjmp\"") +#pragma comment(linker, "/export:setlocale=\"C:\\Windows\\System32\\ucrtbase.setlocale\"") +#pragma comment(linker, "/export:setvbuf=\"C:\\Windows\\System32\\ucrtbase.setvbuf\"") +#pragma comment(linker, "/export:signal=\"C:\\Windows\\System32\\ucrtbase.signal\"") +#pragma comment(linker, "/export:sin=\"C:\\Windows\\System32\\ucrtbase.sin\"") +#pragma comment(linker, "/export:sinf=\"C:\\Windows\\System32\\ucrtbase.sinf\"") +#pragma comment(linker, "/export:sinh=\"C:\\Windows\\System32\\ucrtbase.sinh\"") +#pragma comment(linker, "/export:sinhf=\"C:\\Windows\\System32\\ucrtbase.sinhf\"") +#pragma comment(linker, "/export:sqrt=\"C:\\Windows\\System32\\ucrtbase.sqrt\"") +#pragma comment(linker, "/export:sqrtf=\"C:\\Windows\\System32\\ucrtbase.sqrtf\"") +#pragma comment(linker, "/export:srand=\"C:\\Windows\\System32\\ucrtbase.srand\"") +#pragma comment(linker, "/export:strcat=\"C:\\Windows\\System32\\ucrtbase.strcat\"") +#pragma comment(linker, "/export:strcat_s=\"C:\\Windows\\System32\\ucrtbase.strcat_s\"") +#pragma comment(linker, "/export:strchr=\"C:\\Windows\\System32\\ucrtbase.strchr\"") +#pragma comment(linker, "/export:strcmp=\"C:\\Windows\\System32\\ucrtbase.strcmp\"") +#pragma comment(linker, "/export:strcoll=\"C:\\Windows\\System32\\ucrtbase.strcoll\"") +#pragma comment(linker, "/export:strcpy=\"C:\\Windows\\System32\\ucrtbase.strcpy\"") +#pragma comment(linker, "/export:strcpy_s=\"C:\\Windows\\System32\\ucrtbase.strcpy_s\"") +#pragma comment(linker, "/export:strcspn=\"C:\\Windows\\System32\\ucrtbase.strcspn\"") +#pragma comment(linker, "/export:strerror=\"C:\\Windows\\System32\\ucrtbase.strerror\"") +#pragma comment(linker, "/export:strerror_s=\"C:\\Windows\\System32\\ucrtbase.strerror_s\"") +#pragma comment(linker, "/export:strftime=\"C:\\Windows\\System32\\ucrtbase.strftime\"") +#pragma comment(linker, "/export:strlen=\"C:\\Windows\\System32\\ucrtbase.strlen\"") +#pragma comment(linker, "/export:strncat=\"C:\\Windows\\System32\\ucrtbase.strncat\"") +#pragma comment(linker, "/export:strncat_s=\"C:\\Windows\\System32\\ucrtbase.strncat_s\"") +#pragma comment(linker, "/export:strncmp=\"C:\\Windows\\System32\\ucrtbase.strncmp\"") +#pragma comment(linker, "/export:strncpy=\"C:\\Windows\\System32\\ucrtbase.strncpy\"") +#pragma comment(linker, "/export:strncpy_s=\"C:\\Windows\\System32\\ucrtbase.strncpy_s\"") +#pragma comment(linker, "/export:strnlen=\"C:\\Windows\\System32\\ucrtbase.strnlen\"") +#pragma comment(linker, "/export:strpbrk=\"C:\\Windows\\System32\\ucrtbase.strpbrk\"") +#pragma comment(linker, "/export:strrchr=\"C:\\Windows\\System32\\ucrtbase.strrchr\"") +#pragma comment(linker, "/export:strspn=\"C:\\Windows\\System32\\ucrtbase.strspn\"") +#pragma comment(linker, "/export:strstr=\"C:\\Windows\\System32\\ucrtbase.strstr\"") +#pragma comment(linker, "/export:strtod=\"C:\\Windows\\System32\\ucrtbase.strtod\"") +#pragma comment(linker, "/export:strtof=\"C:\\Windows\\System32\\ucrtbase.strtof\"") +#pragma comment(linker, "/export:strtoimax=\"C:\\Windows\\System32\\ucrtbase.strtoimax\"") +#pragma comment(linker, "/export:strtok=\"C:\\Windows\\System32\\ucrtbase.strtok\"") +#pragma comment(linker, "/export:strtok_s=\"C:\\Windows\\System32\\ucrtbase.strtok_s\"") +#pragma comment(linker, "/export:strtol=\"C:\\Windows\\System32\\ucrtbase.strtol\"") +#pragma comment(linker, "/export:strtold=\"C:\\Windows\\System32\\ucrtbase.strtold\"") +#pragma comment(linker, "/export:strtoll=\"C:\\Windows\\System32\\ucrtbase.strtoll\"") +#pragma comment(linker, "/export:strtoul=\"C:\\Windows\\System32\\ucrtbase.strtoul\"") +#pragma comment(linker, "/export:strtoull=\"C:\\Windows\\System32\\ucrtbase.strtoull\"") +#pragma comment(linker, "/export:strtoumax=\"C:\\Windows\\System32\\ucrtbase.strtoumax\"") +#pragma comment(linker, "/export:strxfrm=\"C:\\Windows\\System32\\ucrtbase.strxfrm\"") +#pragma comment(linker, "/export:system=\"C:\\Windows\\System32\\ucrtbase.system\"") +#pragma comment(linker, "/export:tan=\"C:\\Windows\\System32\\ucrtbase.tan\"") +#pragma comment(linker, "/export:tanf=\"C:\\Windows\\System32\\ucrtbase.tanf\"") +#pragma comment(linker, "/export:tanh=\"C:\\Windows\\System32\\ucrtbase.tanh\"") +#pragma comment(linker, "/export:tanhf=\"C:\\Windows\\System32\\ucrtbase.tanhf\"") +#pragma comment(linker, "/export:terminate=\"C:\\Windows\\System32\\ucrtbase.terminate\"") +#pragma comment(linker, "/export:tgamma=\"C:\\Windows\\System32\\ucrtbase.tgamma\"") +#pragma comment(linker, "/export:tgammaf=\"C:\\Windows\\System32\\ucrtbase.tgammaf\"") +#pragma comment(linker, "/export:tgammal=\"C:\\Windows\\System32\\ucrtbase.tgammal\"") +#pragma comment(linker, "/export:tmpfile=\"C:\\Windows\\System32\\ucrtbase.tmpfile\"") +#pragma comment(linker, "/export:tmpfile_s=\"C:\\Windows\\System32\\ucrtbase.tmpfile_s\"") +#pragma comment(linker, "/export:tmpnam=\"C:\\Windows\\System32\\ucrtbase.tmpnam\"") +#pragma comment(linker, "/export:tmpnam_s=\"C:\\Windows\\System32\\ucrtbase.tmpnam_s\"") +#pragma comment(linker, "/export:tolower=\"C:\\Windows\\System32\\ucrtbase.tolower\"") +#pragma comment(linker, "/export:toupper=\"C:\\Windows\\System32\\ucrtbase.toupper\"") +#pragma comment(linker, "/export:towctrans=\"C:\\Windows\\System32\\ucrtbase.towctrans\"") +#pragma comment(linker, "/export:towlower=\"C:\\Windows\\System32\\ucrtbase.towlower\"") +#pragma comment(linker, "/export:towupper=\"C:\\Windows\\System32\\ucrtbase.towupper\"") +#pragma comment(linker, "/export:trunc=\"C:\\Windows\\System32\\ucrtbase.trunc\"") +#pragma comment(linker, "/export:truncf=\"C:\\Windows\\System32\\ucrtbase.truncf\"") +#pragma comment(linker, "/export:truncl=\"C:\\Windows\\System32\\ucrtbase.truncl\"") +#pragma comment(linker, "/export:unexpected=\"C:\\Windows\\System32\\ucrtbase.unexpected\"") +#pragma comment(linker, "/export:ungetc=\"C:\\Windows\\System32\\ucrtbase.ungetc\"") +#pragma comment(linker, "/export:ungetwc=\"C:\\Windows\\System32\\ucrtbase.ungetwc\"") +#pragma comment(linker, "/export:wcrtomb=\"C:\\Windows\\System32\\ucrtbase.wcrtomb\"") +#pragma comment(linker, "/export:wcrtomb_s=\"C:\\Windows\\System32\\ucrtbase.wcrtomb_s\"") +#pragma comment(linker, "/export:wcscat=\"C:\\Windows\\System32\\ucrtbase.wcscat\"") +#pragma comment(linker, "/export:wcscat_s=\"C:\\Windows\\System32\\ucrtbase.wcscat_s\"") +#pragma comment(linker, "/export:wcschr=\"C:\\Windows\\System32\\ucrtbase.wcschr\"") +#pragma comment(linker, "/export:wcscmp=\"C:\\Windows\\System32\\ucrtbase.wcscmp\"") +#pragma comment(linker, "/export:wcscoll=\"C:\\Windows\\System32\\ucrtbase.wcscoll\"") +#pragma comment(linker, "/export:wcscpy=\"C:\\Windows\\System32\\ucrtbase.wcscpy\"") +#pragma comment(linker, "/export:wcscpy_s=\"C:\\Windows\\System32\\ucrtbase.wcscpy_s\"") +#pragma comment(linker, "/export:wcscspn=\"C:\\Windows\\System32\\ucrtbase.wcscspn\"") +#pragma comment(linker, "/export:wcsftime=\"C:\\Windows\\System32\\ucrtbase.wcsftime\"") +#pragma comment(linker, "/export:wcslen=\"C:\\Windows\\System32\\ucrtbase.wcslen\"") +#pragma comment(linker, "/export:wcsncat=\"C:\\Windows\\System32\\ucrtbase.wcsncat\"") +#pragma comment(linker, "/export:wcsncat_s=\"C:\\Windows\\System32\\ucrtbase.wcsncat_s\"") +#pragma comment(linker, "/export:wcsncmp=\"C:\\Windows\\System32\\ucrtbase.wcsncmp\"") +#pragma comment(linker, "/export:wcsncpy=\"C:\\Windows\\System32\\ucrtbase.wcsncpy\"") +#pragma comment(linker, "/export:wcsncpy_s=\"C:\\Windows\\System32\\ucrtbase.wcsncpy_s\"") +#pragma comment(linker, "/export:wcsnlen=\"C:\\Windows\\System32\\ucrtbase.wcsnlen\"") +#pragma comment(linker, "/export:wcspbrk=\"C:\\Windows\\System32\\ucrtbase.wcspbrk\"") +#pragma comment(linker, "/export:wcsrchr=\"C:\\Windows\\System32\\ucrtbase.wcsrchr\"") +#pragma comment(linker, "/export:wcsrtombs=\"C:\\Windows\\System32\\ucrtbase.wcsrtombs\"") +#pragma comment(linker, "/export:wcsrtombs_s=\"C:\\Windows\\System32\\ucrtbase.wcsrtombs_s\"") +#pragma comment(linker, "/export:wcsspn=\"C:\\Windows\\System32\\ucrtbase.wcsspn\"") +#pragma comment(linker, "/export:wcsstr=\"C:\\Windows\\System32\\ucrtbase.wcsstr\"") +#pragma comment(linker, "/export:wcstod=\"C:\\Windows\\System32\\ucrtbase.wcstod\"") +#pragma comment(linker, "/export:wcstof=\"C:\\Windows\\System32\\ucrtbase.wcstof\"") +#pragma comment(linker, "/export:wcstoimax=\"C:\\Windows\\System32\\ucrtbase.wcstoimax\"") +#pragma comment(linker, "/export:wcstok=\"C:\\Windows\\System32\\ucrtbase.wcstok\"") +#pragma comment(linker, "/export:wcstok_s=\"C:\\Windows\\System32\\ucrtbase.wcstok_s\"") +#pragma comment(linker, "/export:wcstol=\"C:\\Windows\\System32\\ucrtbase.wcstol\"") +#pragma comment(linker, "/export:wcstold=\"C:\\Windows\\System32\\ucrtbase.wcstold\"") +#pragma comment(linker, "/export:wcstoll=\"C:\\Windows\\System32\\ucrtbase.wcstoll\"") +#pragma comment(linker, "/export:wcstombs=\"C:\\Windows\\System32\\ucrtbase.wcstombs\"") +#pragma comment(linker, "/export:wcstombs_s=\"C:\\Windows\\System32\\ucrtbase.wcstombs_s\"") +#pragma comment(linker, "/export:wcstoul=\"C:\\Windows\\System32\\ucrtbase.wcstoul\"") +#pragma comment(linker, "/export:wcstoull=\"C:\\Windows\\System32\\ucrtbase.wcstoull\"") +#pragma comment(linker, "/export:wcstoumax=\"C:\\Windows\\System32\\ucrtbase.wcstoumax\"") +#pragma comment(linker, "/export:wcsxfrm=\"C:\\Windows\\System32\\ucrtbase.wcsxfrm\"") +#pragma comment(linker, "/export:wctob=\"C:\\Windows\\System32\\ucrtbase.wctob\"") +#pragma comment(linker, "/export:wctomb=\"C:\\Windows\\System32\\ucrtbase.wctomb\"") +#pragma comment(linker, "/export:wctomb_s=\"C:\\Windows\\System32\\ucrtbase.wctomb_s\"") +#pragma comment(linker, "/export:wctrans=\"C:\\Windows\\System32\\ucrtbase.wctrans\"") +#pragma comment(linker, "/export:wctype=\"C:\\Windows\\System32\\ucrtbase.wctype\"") +#pragma comment(linker, "/export:wmemcpy_s=\"C:\\Windows\\System32\\ucrtbase.wmemcpy_s\"") +#pragma comment(linker, "/export:wmemmove_s=\"C:\\Windows\\System32\\ucrtbase.wmemmove_s\"") #pragma endregion From f72617743264752820df1071decb833fe30d4617 Mon Sep 17 00:00:00 2001 From: Andrew Opalach Date: Thu, 30 Apr 2026 16:05:18 -0400 Subject: [PATCH 2/3] Update docs for msvcrt -> ucrtbase --- README.md | 13 ++++---- docs/Install/Installation.md | 20 +++++++++---- make-package.py | 57 +++++++++++++++++++++--------------- 3 files changed, 54 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 76cf88a..b7aa80d 100644 --- a/README.md +++ b/README.md @@ -47,23 +47,22 @@ For more detailed instructions visit the [wiki](https://fexty12573.github.io/Sha To create release packages you can use the `make-package.py` script. It will build everything and package it into a ready to use zip. ``` -make-package.py [-h] [-c {Release,Debug}] [-m] sln_dir tag +make-package.py [-h] [-s] [-c {Release,Debug}] [tag] [sln_dir] Create a release of the plugin loader positional arguments: - sln_dir The directory of the solution tag The tag to use for the release in the format x.x.x[.x] + sln_dir The directory of the solution options: - -h, --help show this help message and exit - -c {Release,Debug}, --config {Release,Debug} + -h, --help Show this message + -s, --skip-build Skip building the solution + -c, --config {Release,Debug} The configuration to build - -m, --msbuild-in-path - Set if msbuild is in the PATH environment variable ``` -Example invocation: `python make-package.py -c Release -m ./ 0.1.0` +Example invocation: `python make-package.py -c Release 0.1.0 ./` ## **Enabling C# Debugging** diff --git a/docs/Install/Installation.md b/docs/Install/Installation.md index 2c0fb89..89d9258 100644 --- a/docs/Install/Installation.md +++ b/docs/Install/Installation.md @@ -8,6 +8,8 @@ Extract the contents of the archive into the game's root directory (where `Monst If you installed everything correctly you should now find `winmm.dll` in the same directory as `MonsterHunterWorld.exe`, and a `CSharp` directory in `nativePC\plugins`. +If you're running the game _without_ Steam and it's immediately closing on startup, you should try adding `MonsterHunterWorld.exe` as a Non-Steam Game and launching it through Steam. Steam affects the order in which `winmm.dll` gets loaded by injecting `GameOverlayRenderer64.dll` into the process. This happens whether you have the Steam Overlay enabled or not. + ## Linux (Proton/Wine) As of version 0.0.7.2, SPL officially supports Linux through Proton/Wine. Below are the steps to install and run SPL on Linux. @@ -15,14 +17,20 @@ As of version 0.0.7.2, SPL officially supports Linux through Proton/Wine. Below ```bash protontricks 582010 dotnetdesktop8 d3dcompiler_47 ``` -2. Download the latest linux release of SPL (`SharpPluginLoader--linux.zip`) from the [Releases Page](https://github.com/Fexty12573/SharpPluginLoader/releases) and extract it into the game's root directory. After doing so you should have a `msvcrt.dll` file in the same directory as `MonsterHunterWorld.exe`. -3. Set the steam launch options for MHW as follows: +2. Download the latest linux release of SPL (`SharpPluginLoader--linux.zip`) from the [Releases Page](https://github.com/Fexty12573/SharpPluginLoader/releases) and extract it into the game's root directory. After doing so you should have a `ucrtbase.dll` file in the same directory as `MonsterHunterWorld.exe`. +3. Set the Steam launch options for MHW as follows: ```bash # Use this for SPL only -WINEDLLOVERRIDES="msvcrt=n,b" %command% +WINEDLLOVERRIDES="ucrtbase=n,b" %command% # Or this for SPL together with Stracker's Loader -WINEDLLOVERRIDES="msvcrt,dinput8=n,b" %command% +WINEDLLOVERRIDES="ucrtbase,dinput8=n,b" %command% +``` + +If the game fails to start, even with the dependencies above correctly installed, check your environment for `DOTNET_ROOT`. It may be set by your package manager. For example, on Gentoo with `eselect dotnet`. You can unset it in your Steam launch options like so: +```bash +# Unset DOTNET_ROOT to avoid conflict with native dotnet and dotnet installed in the Wine prefix. +DOTNET_ROOT= WINEDLLOVERRIDES="ucrtbase,dinput8=n,b" %command% ``` ## Usage @@ -46,7 +54,7 @@ Depending on the plugins you have installed you might also see an overlay/UI app ### Directory Structure Examples ``` -└── winmm.dll/msvcrt.dll +└── winmm.dll/ucrtbase.dll └── nativePC └── plugins └── CSharp @@ -59,7 +67,7 @@ Depending on the plugins you have installed you might also see an overlay/UI app Conversely, the following is **not** valid, as `Plugin1.dll` is inside the `Loader` directory. The plugin loader will not load it. ``` -└── winmm.dll/msvcrt.dll +└── winmm.dll/ucrtbase.dll └── nativePC └── plugins └── CSharp diff --git a/make-package.py b/make-package.py index 857b9d3..84aca1d 100644 --- a/make-package.py +++ b/make-package.py @@ -3,16 +3,27 @@ import argparse import os -def main(sln_dir, config, tag, msbuild_in_path): - # build the solution - print(f'Building solution in {sln_dir} with configuration {config}...') - - if msbuild_in_path: - msbuild = "msbuild" - else: - msbuild = f"{os.environ['ProgramFiles']}\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" - sln = os.path.join(sln_dir, "mhw-cs-plugin-loader.slnx") - subprocess.run([msbuild, sln, f"/p:Configuration={config}"], check=True) +def main(sln_dir, config, tag, skip_build): + if not os.path.isdir(sln_dir): + print(f"Error: {sln_dir} is not a directory") + return False + + if not skip_build: + # build the solution + sln = os.path.join(sln_dir, "mhw-cs-plugin-loader.slnx") + if not os.path.isfile(sln): + print(f"Error: {sln} not found") + return False + print(f"Building solution {sln} with configuration {config}...") + msbuild = None + if "ProgramFiles" in os.environ: + msbuild = f"{os.environ["ProgramFiles"]}\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" + if not msbuild or not os.path.isfile(msbuild): + msbuild = shutil.which("MSBuild.exe") + if not msbuild: + print("Error: MSBuild.exe not found") + return False + subprocess.run([msbuild, sln, f"/p:Configuration={config}"], check=True) # create the release directory release_dir = os.path.join(sln_dir, "release-files") @@ -38,7 +49,7 @@ def main(sln_dir, config, tag, msbuild_in_path): native_src = os.path.join(sln_dir, "x64", config, "mhw-cs-plugin-loader.dll") native_winmm_dst = os.path.join(root_dir_win32, "winmm.dll") - native_msvcrt_dst = os.path.join(root_dir_linux, "msvcrt.dll") + native_ucrtbase_dst = os.path.join(root_dir_linux, "ucrtbase.dll") runtimeconfig_src = os.path.join(sln_dir, "mhw-cs-plugin-loader/SharpPluginLoader.runtimeconfig.json") runtimeconfig_dst = os.path.join(loader_dir, "SharpPluginLoader.runtimeconfig.json") @@ -50,9 +61,9 @@ def main(sln_dir, config, tag, msbuild_in_path): shutil.copyfile(native_src, native_winmm_dst) shutil.copyfile(runtimeconfig_src, runtimeconfig_dst) - # copy the files for linux (msvcrt.dll) + # copy the files for linux (ucrtbase.dll) shutil.copytree(root_dir_win32, root_dir_linux, dirs_exist_ok=True) - shutil.copyfile(native_src, native_msvcrt_dst) + shutil.copyfile(native_src, native_ucrtbase_dst) os.remove(os.path.join(root_dir_linux, "winmm.dll")) # create the zip file @@ -61,26 +72,26 @@ def main(sln_dir, config, tag, msbuild_in_path): zip_path_win32 = os.path.join(tag_dir, zip_name_win32) zip_path_linux = os.path.join(tag_dir, zip_name_linux) - shutil.make_archive(zip_path_win32, 'zip', root_dir_win32) - shutil.make_archive(zip_path_linux, 'zip', root_dir_linux) + shutil.make_archive(zip_path_win32, "zip", root_dir_win32) + shutil.make_archive(zip_path_linux, "zip", root_dir_linux) print(f"Created release: {zip_path_win32}.zip") print(f"Created release: {zip_path_linux}.zip") + return True + def usage(parser: argparse.ArgumentParser): parser.print_help() exit(1) if __name__ == "__main__": - parser = argparse.ArgumentParser(description="Create a release of the plugin loader") - parser.add_argument("sln_dir", help="The directory of the solution") + parser = argparse.ArgumentParser(description="Create a release of the plugin loader", add_help=False) + parser.add_argument("-h", "--help", action="help", help="Show this message") + parser.add_argument("-s", "--skip-build", help="Skip building the solution", action="store_true") parser.add_argument("-c", "--config", help="The configuration to build", default="Release", choices=["Release", "Debug"], type=str.capitalize) - parser.add_argument("-m", "--msbuild-in-path", help="Set if msbuild is in the PATH environment variable", action="store_true") - parser.add_argument("tag", help="The tag to use for the release in the format x.x.x[.x]", default="latest") + parser.add_argument("tag", help="The tag to use for the release in the format x.x.x[.x]", nargs="?", default="latest") + parser.add_argument("sln_dir", help="The directory of the solution", nargs="?", default=".") args = parser.parse_args() - if not os.path.isdir(args.sln_dir): - print(f"Error: {args.sln_dir} is not a directory") + if not main(args.sln_dir, args.config, args.tag, args.skip_build): usage(parser) - - main(args.sln_dir, args.config, args.tag, args.msbuild_in_path) From 86b988f24dbfd0c52a21bcd0667117590fcef3c3 Mon Sep 17 00:00:00 2001 From: Andrew Opalach Date: Fri, 1 May 2026 11:05:03 -0400 Subject: [PATCH 3/3] Check PATH first in make-package script --- make-package.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/make-package.py b/make-package.py index 84aca1d..c3a8db1 100644 --- a/make-package.py +++ b/make-package.py @@ -15,12 +15,14 @@ def main(sln_dir, config, tag, skip_build): print(f"Error: {sln} not found") return False print(f"Building solution {sln} with configuration {config}...") - msbuild = None - if "ProgramFiles" in os.environ: - msbuild = f"{os.environ["ProgramFiles"]}\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" + # check PATH for MSBuild + msbuild = shutil.which("MSBuild.exe") + if not msbuild and "ProgramFiles" in os.environ: + # search for MSBuild in the default VS 2026 then VS 2022 install directories + msbuild = f"{os.environ["ProgramFiles"]}\\Microsoft Visual Studio\\18\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" + if not os.path.isfile(msbuild): + msbuild = f"{os.environ["ProgramFiles"]}\\Microsoft Visual Studio\\2022\\Community\\MSBuild\\Current\\Bin\\MSBuild.exe" if not msbuild or not os.path.isfile(msbuild): - msbuild = shutil.which("MSBuild.exe") - if not msbuild: print("Error: MSBuild.exe not found") return False subprocess.run([msbuild, sln, f"/p:Configuration={config}"], check=True)