diff --git a/configure b/configure index 34eb49f51eb..e65a0221554 100755 --- a/configure +++ b/configure @@ -852,6 +852,7 @@ enable_advapi32 enable_advpack enable_amstream 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_errorhandling_l1_1_1 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_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-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-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 diff --git a/configure.ac b/configure.ac index 335280e6d8e..2ae233632da 100644 --- a/configure.ac +++ b/configure.ac @@ -2621,6 +2621,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-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-errorhandling-l1-1-1) WINE_CONFIG_DLL(api-ms-win-core-interlocked-l1-2-0) diff --git a/dlls/api-ms-win-core-console-l1-1-0/Makefile.in b/dlls/api-ms-win-core-console-l1-1-0/Makefile.in new file mode 100644 index 00000000000..f22ece82566 --- /dev/null +++ b/dlls/api-ms-win-core-console-l1-1-0/Makefile.in @@ -0,0 +1 @@ +MODULE = api-ms-win-core-console-l1-1-0.dll diff --git a/dlls/api-ms-win-core-console-l1-1-0/api-ms-win-core-console-l1-1-0.spec b/dlls/api-ms-win-core-console-l1-1-0/api-ms-win-core-console-l1-1-0.spec new file mode 100644 index 00000000000..6a783977448 --- /dev/null +++ b/dlls/api-ms-win-core-console-l1-1-0/api-ms-win-core-console-l1-1-0.spec @@ -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 diff --git a/tools/make_specfiles b/tools/make_specfiles index e7208d7b801..294562ae0d9 100755 --- a/tools/make_specfiles +++ b/tools/make_specfiles @@ -144,6 +144,7 @@ my @dll_groups = "api-ms-win-core-sysinfo-l1-2-0", "api-ms-win-core-util-l1-1-0", "api-ms-win-core-synch-l1-2-0", + "api-ms-win-core-console-l1-1-0", ], [ "ole32",