Commit 5ee52216 authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

api-ms-win-core-errorhandling-l1-1-1: Add stub dll.

parent 0ee5b475
...@@ -854,6 +854,7 @@ enable_advapi32 ...@@ -854,6 +854,7 @@ enable_advapi32
enable_advpack enable_advpack
enable_amstream enable_amstream
enable_api_ms_win_core_debug_l1_1_1 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_localregistry_l1_1_0
enable_api_ms_win_core_processthreads_l1_1_0 enable_api_ms_win_core_processthreads_l1_1_0
enable_api_ms_win_core_processthreads_l1_1_1 enable_api_ms_win_core_processthreads_l1_1_1
...@@ -16567,6 +16568,7 @@ wine_fn_config_test dlls/advpack/tests advpack_test ...@@ -16567,6 +16568,7 @@ wine_fn_config_test dlls/advpack/tests advpack_test
wine_fn_config_dll amstream enable_amstream clean wine_fn_config_dll amstream enable_amstream clean
wine_fn_config_test dlls/amstream/tests amstream_test 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-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-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-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 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) ...@@ -2626,6 +2626,7 @@ WINE_CONFIG_TEST(dlls/advpack/tests)
WINE_CONFIG_DLL(amstream,,[clean]) WINE_CONFIG_DLL(amstream,,[clean])
WINE_CONFIG_TEST(dlls/amstream/tests) WINE_CONFIG_TEST(dlls/amstream/tests)
WINE_CONFIG_DLL(api-ms-win-core-debug-l1-1-1) 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-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-0)
WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-1) WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-1)
......
MODULE = api-ms-win-core-errorhandling-l1-1-1.dll
@ 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 = ...@@ -138,6 +138,7 @@ my @dll_groups =
"api-ms-win-core-processthreads-l1-1-0", "api-ms-win-core-processthreads-l1-1-0",
"api-ms-win-core-processthreads-l1-1-1", "api-ms-win-core-processthreads-l1-1-1",
"api-ms-win-core-debug-l1-1-1", "api-ms-win-core-debug-l1-1-1",
"api-ms-win-core-errorhandling-l1-1-1",
], ],
[ [
"ole32", "ole32",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment