api-ms-win-core-console-l1-1-0: Add stub dll.
This commit is contained in:
parent
8c9e0b868b
commit
a777a22376
|
@ -852,6 +852,7 @@ enable_advapi32
|
||||||
enable_advpack
|
enable_advpack
|
||||||
enable_amstream
|
enable_amstream
|
||||||
enable_api_ms_win_core_com_l1_1_0
|
enable_api_ms_win_core_com_l1_1_0
|
||||||
|
enable_api_ms_win_core_console_l1_1_0
|
||||||
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_errorhandling_l1_1_1
|
||||||
enable_api_ms_win_core_interlocked_l1_2_0
|
enable_api_ms_win_core_interlocked_l1_2_0
|
||||||
|
@ -16581,6 +16582,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-com-l1-1-0 enable_api_ms_win_core_com_l1_1_0
|
wine_fn_config_dll api-ms-win-core-com-l1-1-0 enable_api_ms_win_core_com_l1_1_0
|
||||||
|
wine_fn_config_dll api-ms-win-core-console-l1-1-0 enable_api_ms_win_core_console_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-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-errorhandling-l1-1-1 enable_api_ms_win_core_errorhandling_l1_1_1
|
||||||
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-interlocked-l1-2-0 enable_api_ms_win_core_interlocked_l1_2_0
|
||||||
|
|
|
@ -2621,6 +2621,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-com-l1-1-0)
|
WINE_CONFIG_DLL(api-ms-win-core-com-l1-1-0)
|
||||||
|
WINE_CONFIG_DLL(api-ms-win-core-console-l1-1-0)
|
||||||
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-errorhandling-l1-1-1)
|
||||||
WINE_CONFIG_DLL(api-ms-win-core-interlocked-l1-2-0)
|
WINE_CONFIG_DLL(api-ms-win-core-interlocked-l1-2-0)
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
MODULE = api-ms-win-core-console-l1-1-0.dll
|
|
@ -0,0 +1,14 @@
|
||||||
|
@ stdcall AllocConsole() kernel32.AllocConsole
|
||||||
|
@ stdcall GetConsoleCP() kernel32.GetConsoleCP
|
||||||
|
@ stdcall GetConsoleMode(long ptr) kernel32.GetConsoleMode
|
||||||
|
@ stdcall GetConsoleOutputCP() kernel32.GetConsoleOutputCP
|
||||||
|
@ stdcall GetNumberOfConsoleInputEvents(long ptr) kernel32.GetNumberOfConsoleInputEvents
|
||||||
|
@ stdcall PeekConsoleInputA(ptr ptr long ptr) kernel32.PeekConsoleInputA
|
||||||
|
@ stdcall ReadConsoleA(long ptr long ptr ptr) kernel32.ReadConsoleA
|
||||||
|
@ stdcall ReadConsoleInputA(long ptr long ptr) kernel32.ReadConsoleInputA
|
||||||
|
@ stdcall ReadConsoleInputW(long ptr long ptr) kernel32.ReadConsoleInputW
|
||||||
|
@ stdcall ReadConsoleW(long ptr long ptr ptr) kernel32.ReadConsoleW
|
||||||
|
@ stdcall SetConsoleCtrlHandler(ptr long) kernel32.SetConsoleCtrlHandler
|
||||||
|
@ stdcall SetConsoleMode(long long) kernel32.SetConsoleMode
|
||||||
|
@ stdcall WriteConsoleA(long ptr long ptr ptr) kernel32.WriteConsoleA
|
||||||
|
@ stdcall WriteConsoleW(long ptr long ptr ptr) kernel32.WriteConsoleW
|
|
@ -144,6 +144,7 @@ my @dll_groups =
|
||||||
"api-ms-win-core-sysinfo-l1-2-0",
|
"api-ms-win-core-sysinfo-l1-2-0",
|
||||||
"api-ms-win-core-util-l1-1-0",
|
"api-ms-win-core-util-l1-1-0",
|
||||||
"api-ms-win-core-synch-l1-2-0",
|
"api-ms-win-core-synch-l1-2-0",
|
||||||
|
"api-ms-win-core-console-l1-1-0",
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"ole32",
|
"ole32",
|
||||||
|
|
Loading…
Reference in New Issue