api-ms-win-core-errorhandling-l1-1-3: Add dll.
Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d8f2e3c0ab
commit
4df995f34d
|
@ -902,6 +902,7 @@ enable_api_ms_win_core_delayload_l1_1_1
|
|||
enable_api_ms_win_core_errorhandling_l1_1_0
|
||||
enable_api_ms_win_core_errorhandling_l1_1_1
|
||||
enable_api_ms_win_core_errorhandling_l1_1_2
|
||||
enable_api_ms_win_core_errorhandling_l1_1_3
|
||||
enable_api_ms_win_core_fibers_l1_1_0
|
||||
enable_api_ms_win_core_fibers_l1_1_1
|
||||
enable_api_ms_win_core_file_l1_1_0
|
||||
|
@ -17968,6 +17969,7 @@ wine_fn_config_dll api-ms-win-core-delayload-l1-1-1 enable_api_ms_win_core_delay
|
|||
wine_fn_config_dll api-ms-win-core-errorhandling-l1-1-0 enable_api_ms_win_core_errorhandling_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-errorhandling-l1-1-1 enable_api_ms_win_core_errorhandling_l1_1_1
|
||||
wine_fn_config_dll api-ms-win-core-errorhandling-l1-1-2 enable_api_ms_win_core_errorhandling_l1_1_2
|
||||
wine_fn_config_dll api-ms-win-core-errorhandling-l1-1-3 enable_api_ms_win_core_errorhandling_l1_1_3
|
||||
wine_fn_config_dll api-ms-win-core-fibers-l1-1-0 enable_api_ms_win_core_fibers_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-fibers-l1-1-1 enable_api_ms_win_core_fibers_l1_1_1
|
||||
wine_fn_config_dll api-ms-win-core-file-l1-1-0 enable_api_ms_win_core_file_l1_1_0
|
||||
|
|
|
@ -2755,6 +2755,7 @@ WINE_CONFIG_DLL(api-ms-win-core-delayload-l1-1-1)
|
|||
WINE_CONFIG_DLL(api-ms-win-core-errorhandling-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-errorhandling-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-errorhandling-l1-1-2)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-errorhandling-l1-1-3)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-fibers-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-fibers-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-file-l1-1-0)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-core-errorhandling-l1-1-3.dll
|
|
@ -0,0 +1,16 @@
|
|||
@ stdcall AddVectoredContinueHandler(long ptr) kernel32.AddVectoredContinueHandler
|
||||
@ stdcall AddVectoredExceptionHandler(long ptr) kernel32.AddVectoredExceptionHandler
|
||||
@ stdcall FatalAppExitA(long str) kernel32.FatalAppExitA
|
||||
@ stdcall FatalAppExitW(long wstr) kernel32.FatalAppExitW
|
||||
@ stdcall GetErrorMode() kernel32.GetErrorMode
|
||||
@ stdcall GetLastError() kernel32.GetLastError
|
||||
@ stdcall GetThreadErrorMode() kernel32.GetThreadErrorMode
|
||||
@ stdcall RaiseException(long long long ptr) kernel32.RaiseException
|
||||
@ stub RaiseFailFastException
|
||||
@ stdcall RemoveVectoredContinueHandler(ptr) kernel32.RemoveVectoredContinueHandler
|
||||
@ stdcall RemoveVectoredExceptionHandler(ptr) kernel32.RemoveVectoredExceptionHandler
|
||||
@ stdcall SetErrorMode(long) kernel32.SetErrorMode
|
||||
@ stdcall SetLastError(long) kernel32.SetLastError
|
||||
@ stdcall SetThreadErrorMode(long ptr) kernel32.SetThreadErrorMode
|
||||
@ stdcall SetUnhandledExceptionFilter(ptr) kernel32.SetUnhandledExceptionFilter
|
||||
@ stdcall UnhandledExceptionFilter(ptr) kernel32.UnhandledExceptionFilter
|
|
@ -188,6 +188,8 @@ my @dll_groups =
|
|||
"api-ms-win-core-delayload-l1-1-1",
|
||||
"api-ms-win-core-errorhandling-l1-1-0",
|
||||
"api-ms-win-core-errorhandling-l1-1-1",
|
||||
"api-ms-win-core-errorhandling-l1-1-2",
|
||||
"api-ms-win-core-errorhandling-l1-1-3",
|
||||
"api-ms-win-core-interlocked-l1-1-0",
|
||||
"api-ms-win-core-interlocked-l1-2-0",
|
||||
"api-ms-win-core-misc-l1-1-0",
|
||||
|
@ -256,7 +258,6 @@ my @dll_groups =
|
|||
"api-ms-win-core-wow64-l1-1-0",
|
||||
"api-ms-win-core-wow64-l1-1-1",
|
||||
"api-ms-win-core-xstate-l2-1-0",
|
||||
"api-ms-win-core-errorhandling-l1-1-2",
|
||||
"api-ms-win-core-processtopology-obsolete-l1-1-0",
|
||||
"api-ms-win-core-util-l1-1-0",
|
||||
"ext-ms-win-kernel32-package-current-l1-1-0",
|
||||
|
|
Loading…
Reference in New Issue