api-ms-win-core-io-l1-1-0: Add dll.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
fe232fbe83
commit
54d8e740c7
|
@ -902,6 +902,7 @@ enable_api_ms_win_core_heap_l1_2_0
|
|||
enable_api_ms_win_core_heap_obsolete_l1_1_0
|
||||
enable_api_ms_win_core_interlocked_l1_1_0
|
||||
enable_api_ms_win_core_interlocked_l1_2_0
|
||||
enable_api_ms_win_core_io_l1_1_0
|
||||
enable_api_ms_win_core_io_l1_1_1
|
||||
enable_api_ms_win_core_job_l1_1_0
|
||||
enable_api_ms_win_core_job_l2_1_0
|
||||
|
@ -17577,6 +17578,7 @@ wine_fn_config_dll api-ms-win-core-heap-l1-2-0 enable_api_ms_win_core_heap_l1_2_
|
|||
wine_fn_config_dll api-ms-win-core-heap-obsolete-l1-1-0 enable_api_ms_win_core_heap_obsolete_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-interlocked-l1-1-0 enable_api_ms_win_core_interlocked_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-interlocked-l1-2-0 enable_api_ms_win_core_interlocked_l1_2_0
|
||||
wine_fn_config_dll api-ms-win-core-io-l1-1-0 enable_api_ms_win_core_io_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-io-l1-1-1 enable_api_ms_win_core_io_l1_1_1
|
||||
wine_fn_config_dll api-ms-win-core-job-l1-1-0 enable_api_ms_win_core_job_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-job-l2-1-0 enable_api_ms_win_core_job_l2_1_0
|
||||
|
|
|
@ -2678,6 +2678,7 @@ WINE_CONFIG_DLL(api-ms-win-core-heap-l1-2-0)
|
|||
WINE_CONFIG_DLL(api-ms-win-core-heap-obsolete-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-interlocked-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-interlocked-l1-2-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-io-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-io-l1-1-1)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-job-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-job-l2-1-0)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-core-io-l1-1-0.dll
|
|
@ -0,0 +1,7 @@
|
|||
@ stdcall CancelIoEx(long ptr) kernel32.CancelIoEx
|
||||
@ stdcall CreateIoCompletionPort(long long long long) kernel32.CreateIoCompletionPort
|
||||
@ stdcall DeviceIoControl(long long ptr long ptr long ptr ptr) kernel32.DeviceIoControl
|
||||
@ stdcall GetOverlappedResult(long ptr ptr long) kernel32.GetOverlappedResult
|
||||
@ stdcall GetQueuedCompletionStatus(long ptr ptr ptr long) kernel32.GetQueuedCompletionStatus
|
||||
@ stub GetQueuedCompletionStatusEx
|
||||
@ stdcall PostQueuedCompletionStatus(long long ptr ptr) kernel32.PostQueuedCompletionStatus
|
|
@ -162,6 +162,7 @@ my @dll_groups =
|
|||
"api-ms-win-core-heap-l1-1-0",
|
||||
"api-ms-win-core-heap-l1-2-0",
|
||||
"api-ms-win-core-heap-obsolete-l1-1-0",
|
||||
"api-ms-win-core-io-l1-1-0",
|
||||
"api-ms-win-core-io-l1-1-1",
|
||||
"api-ms-win-core-job-l1-1-0",
|
||||
"api-ms-win-core-job-l2-1-0",
|
||||
|
|
Loading…
Reference in New Issue