api-ms-win-core-rtlsupport-l1-2-0: Add stub dll.
This commit is contained in:
parent
35f218c39e
commit
56462b4e10
|
@ -874,6 +874,7 @@ enable_api_ms_win_core_processthreads_l1_1_1
|
|||
enable_api_ms_win_core_profile_l1_1_0
|
||||
enable_api_ms_win_core_psapi_l1_1_0
|
||||
enable_api_ms_win_core_registry_l1_1_0
|
||||
enable_api_ms_win_core_rtlsupport_l1_2_0
|
||||
enable_api_ms_win_core_string_l1_1_0
|
||||
enable_api_ms_win_core_synch_l1_2_0
|
||||
enable_api_ms_win_core_sysinfo_l1_2_0
|
||||
|
@ -16618,6 +16619,7 @@ wine_fn_config_dll api-ms-win-core-processthreads-l1-1-1 enable_api_ms_win_core_
|
|||
wine_fn_config_dll api-ms-win-core-profile-l1-1-0 enable_api_ms_win_core_profile_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-psapi-l1-1-0 enable_api_ms_win_core_psapi_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-registry-l1-1-0 enable_api_ms_win_core_registry_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-rtlsupport-l1-2-0 enable_api_ms_win_core_rtlsupport_l1_2_0
|
||||
wine_fn_config_dll api-ms-win-core-string-l1-1-0 enable_api_ms_win_core_string_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-synch-l1-2-0 enable_api_ms_win_core_synch_l1_2_0
|
||||
wine_fn_config_dll api-ms-win-core-sysinfo-l1-2-0 enable_api_ms_win_core_sysinfo_l1_2_0
|
||||
|
|
|
@ -2643,6 +2643,7 @@ WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-1)
|
|||
WINE_CONFIG_DLL(api-ms-win-core-profile-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-psapi-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-registry-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-rtlsupport-l1-2-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-string-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-synch-l1-2-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-sysinfo-l1-2-0)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-core-rtlsupport-l1-2-0.dll
|
|
@ -0,0 +1,6 @@
|
|||
@ stdcall -norelay RtlCaptureContext(ptr) ntdll.RtlCaptureContext
|
||||
@ stdcall RtlCaptureStackBackTrace(long long ptr ptr) ntdll.RtlCaptureStackBackTrace
|
||||
@ stdcall RtlCompareMemory(ptr ptr long) ntdll.RtlCompareMemory
|
||||
@ stdcall RtlPcToFileHeader(ptr ptr) ntdll.RtlPcToFileHeader
|
||||
@ stdcall -register RtlRaiseException(ptr) ntdll.RtlRaiseException
|
||||
@ stdcall -register RtlUnwind(ptr ptr ptr ptr) ntdll.RtlUnwind
|
|
@ -186,7 +186,8 @@ my @dll_groups =
|
|||
[
|
||||
"msvcrt",
|
||||
"ntdll",
|
||||
"ntoskrnl.exe"
|
||||
"ntoskrnl.exe",
|
||||
"api-ms-win-core-rtlsupport-l1-2-0",
|
||||
],
|
||||
[
|
||||
"gdi32",
|
||||
|
|
Loading…
Reference in New Issue