api-ms-win-core-errorhandling-l1-1-1: Add stub dll.
This commit is contained in:
parent
0ee5b475cc
commit
5ee522162c
|
@ -854,6 +854,7 @@ enable_advapi32
|
|||
enable_advpack
|
||||
enable_amstream
|
||||
enable_api_ms_win_core_debug_l1_1_1
|
||||
enable_api_ms_win_core_errorhandling_l1_1_1
|
||||
enable_api_ms_win_core_localregistry_l1_1_0
|
||||
enable_api_ms_win_core_processthreads_l1_1_0
|
||||
enable_api_ms_win_core_processthreads_l1_1_1
|
||||
|
@ -16567,6 +16568,7 @@ wine_fn_config_test dlls/advpack/tests advpack_test
|
|||
wine_fn_config_dll amstream enable_amstream clean
|
||||
wine_fn_config_test dlls/amstream/tests amstream_test
|
||||
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-1 enable_api_ms_win_core_errorhandling_l1_1_1
|
||||
wine_fn_config_dll api-ms-win-core-localregistry-l1-1-0 enable_api_ms_win_core_localregistry_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-processthreads-l1-1-0 enable_api_ms_win_core_processthreads_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-processthreads-l1-1-1 enable_api_ms_win_core_processthreads_l1_1_1
|
||||
|
|
|
@ -2626,6 +2626,7 @@ WINE_CONFIG_TEST(dlls/advpack/tests)
|
|||
WINE_CONFIG_DLL(amstream,,[clean])
|
||||
WINE_CONFIG_TEST(dlls/amstream/tests)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-debug-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-errorhandling-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-localregistry-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-1)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-core-errorhandling-l1-1-1.dll
|
|
@ -0,0 +1,12 @@
|
|||
@ stub AddVectoredContinueHandler
|
||||
@ stdcall AddVectoredExceptionHandler(long ptr) kernel32.AddVectoredExceptionHandler
|
||||
@ stdcall GetErrorMode() kernel32.GetErrorMode
|
||||
@ stdcall GetLastError() kernel32.GetLastError
|
||||
@ stdcall RaiseException(long long long ptr) kernel32.RaiseException
|
||||
@ stub RemoveVectoredContinueHandler
|
||||
@ stdcall RemoveVectoredExceptionHandler(ptr) kernel32.RemoveVectoredExceptionHandler
|
||||
@ stdcall RestoreLastError(long) kernel32.RestoreLastError
|
||||
@ stdcall SetErrorMode(long) kernel32.SetErrorMode
|
||||
@ stdcall SetLastError(long) kernel32.SetLastError
|
||||
@ stdcall SetUnhandledExceptionFilter(ptr) kernel32.SetUnhandledExceptionFilter
|
||||
@ stdcall UnhandledExceptionFilter(ptr) kernel32.UnhandledExceptionFilter
|
|
@ -138,6 +138,7 @@ my @dll_groups =
|
|||
"api-ms-win-core-processthreads-l1-1-0",
|
||||
"api-ms-win-core-processthreads-l1-1-1",
|
||||
"api-ms-win-core-debug-l1-1-1",
|
||||
"api-ms-win-core-errorhandling-l1-1-1",
|
||||
],
|
||||
[
|
||||
"ole32",
|
||||
|
|
Loading…
Reference in New Issue