api-ms-win-core-errorhandling-l1-1-0: Add stub dll.
This commit is contained in:
parent
8263a1858d
commit
d5f89f1610
|
@ -860,6 +860,7 @@ enable_api_ms_win_core_datetime_l1_1_0
|
|||
enable_api_ms_win_core_datetime_l1_1_1
|
||||
enable_api_ms_win_core_debug_l1_1_0
|
||||
enable_api_ms_win_core_debug_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_fibers_l1_1_0
|
||||
|
@ -16995,6 +16996,7 @@ wine_fn_config_dll api-ms-win-core-datetime-l1-1-0 enable_api_ms_win_core_dateti
|
|||
wine_fn_config_dll api-ms-win-core-datetime-l1-1-1 enable_api_ms_win_core_datetime_l1_1_1
|
||||
wine_fn_config_dll api-ms-win-core-debug-l1-1-0 enable_api_ms_win_core_debug_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-debug-l1-1-1 enable_api_ms_win_core_debug_l1_1_1
|
||||
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-fibers-l1-1-0 enable_api_ms_win_core_fibers_l1_1_0
|
||||
|
|
|
@ -2696,6 +2696,7 @@ WINE_CONFIG_DLL(api-ms-win-core-datetime-l1-1-0)
|
|||
WINE_CONFIG_DLL(api-ms-win-core-datetime-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-debug-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-debug-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-fibers-l1-1-0)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-core-errorhandling-l1-1-0.dll
|
|
@ -0,0 +1,7 @@
|
|||
@ stdcall GetErrorMode() kernel32.GetErrorMode
|
||||
@ stdcall GetLastError() kernel32.GetLastError
|
||||
@ stdcall RaiseException(long long long ptr) kernel32.RaiseException
|
||||
@ stdcall SetErrorMode(long) kernel32.SetErrorMode
|
||||
@ stdcall SetLastError(long) kernel32.SetLastError
|
||||
@ stdcall SetUnhandledExceptionFilter(ptr) kernel32.SetUnhandledExceptionFilter
|
||||
@ stdcall UnhandledExceptionFilter(ptr) kernel32.UnhandledExceptionFilter
|
|
@ -142,6 +142,7 @@ my @dll_groups =
|
|||
"api-ms-win-core-processthreads-l1-1-1",
|
||||
"api-ms-win-core-debug-l1-1-0",
|
||||
"api-ms-win-core-debug-l1-1-1",
|
||||
"api-ms-win-core-errorhandling-l1-1-0",
|
||||
"api-ms-win-core-errorhandling-l1-1-1",
|
||||
"api-ms-win-core-interlocked-l1-2-0",
|
||||
"api-ms-win-core-profile-l1-1-0",
|
||||
|
|
Loading…
Reference in New Issue