api-ms-win-crt-conio-l1-1-0: Add stub dll.
This commit is contained in:
parent
b256c55d08
commit
bf96092244
|
@ -915,6 +915,7 @@ enable_api_ms_win_core_winrt_error_l1_1_1
|
|||
enable_api_ms_win_core_winrt_l1_1_0
|
||||
enable_api_ms_win_core_winrt_string_l1_1_0
|
||||
enable_api_ms_win_core_xstate_l2_1_0
|
||||
enable_api_ms_win_crt_conio_l1_1_0
|
||||
enable_api_ms_win_downlevel_advapi32_l1_1_0
|
||||
enable_api_ms_win_downlevel_advapi32_l2_1_0
|
||||
enable_api_ms_win_downlevel_normaliz_l1_1_0
|
||||
|
@ -17155,6 +17156,7 @@ wine_fn_config_dll api-ms-win-core-winrt-error-l1-1-1 enable_api_ms_win_core_win
|
|||
wine_fn_config_dll api-ms-win-core-winrt-l1-1-0 enable_api_ms_win_core_winrt_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-winrt-string-l1-1-0 enable_api_ms_win_core_winrt_string_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-core-xstate-l2-1-0 enable_api_ms_win_core_xstate_l2_1_0
|
||||
wine_fn_config_dll api-ms-win-crt-conio-l1-1-0 enable_api_ms_win_crt_conio_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-downlevel-advapi32-l1-1-0 enable_api_ms_win_downlevel_advapi32_l1_1_0
|
||||
wine_fn_config_dll api-ms-win-downlevel-advapi32-l2-1-0 enable_api_ms_win_downlevel_advapi32_l2_1_0
|
||||
wine_fn_config_dll api-ms-win-downlevel-normaliz-l1-1-0 enable_api_ms_win_downlevel_normaliz_l1_1_0
|
||||
|
|
|
@ -2755,6 +2755,7 @@ WINE_CONFIG_DLL(api-ms-win-core-winrt-error-l1-1-1)
|
|||
WINE_CONFIG_DLL(api-ms-win-core-winrt-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-winrt-string-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-core-xstate-l2-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-crt-conio-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-downlevel-advapi32-l1-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-downlevel-advapi32-l2-1-0)
|
||||
WINE_CONFIG_DLL(api-ms-win-downlevel-normaliz-l1-1-0)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-crt-conio-l1-1-0.dll
|
|
@ -0,0 +1,30 @@
|
|||
@ stub __conio_common_vcprintf
|
||||
@ stub __conio_common_vcprintf_p
|
||||
@ stub __conio_common_vcprintf_s
|
||||
@ stub __conio_common_vcscanf
|
||||
@ stub __conio_common_vcwprintf
|
||||
@ stub __conio_common_vcwprintf_p
|
||||
@ stub __conio_common_vcwprintf_s
|
||||
@ stub __conio_common_vcwscanf
|
||||
@ cdecl _cgets(ptr) ucrtbase._cgets
|
||||
@ stub _cgets_s
|
||||
@ stub _cgetws
|
||||
@ stub _cgetws_s
|
||||
@ cdecl _cputs(str) ucrtbase._cputs
|
||||
@ cdecl _cputws(wstr) ucrtbase._cputws
|
||||
@ cdecl _getch() ucrtbase._getch
|
||||
@ cdecl _getch_nolock() ucrtbase._getch_nolock
|
||||
@ cdecl _getche() ucrtbase._getche
|
||||
@ cdecl _getche_nolock() ucrtbase._getche_nolock
|
||||
@ cdecl _getwch() ucrtbase._getwch
|
||||
@ cdecl _getwch_nolock() ucrtbase._getwch_nolock
|
||||
@ cdecl _getwche() ucrtbase._getwche
|
||||
@ cdecl _getwche_nolock() ucrtbase._getwche_nolock
|
||||
@ cdecl _putch(long) ucrtbase._putch
|
||||
@ cdecl _putch_nolock(long) ucrtbase._putch_nolock
|
||||
@ cdecl _putwch(long) ucrtbase._putwch
|
||||
@ cdecl _putwch_nolock(long) ucrtbase._putwch_nolock
|
||||
@ cdecl _ungetch(long) ucrtbase._ungetch
|
||||
@ cdecl _ungetch_nolock(long) ucrtbase._ungetch_nolock
|
||||
@ cdecl _ungetwch(long) ucrtbase._ungetwch
|
||||
@ cdecl _ungetwch_nolock(long) ucrtbase._ungetwch_nolock
|
|
@ -49,6 +49,10 @@ my @dll_groups =
|
|||
"msvcr120",
|
||||
"msvcr120_app",
|
||||
],
|
||||
[
|
||||
"ucrtbase",
|
||||
"api-ms-win-crt-conio-l1-1-0",
|
||||
],
|
||||
[
|
||||
"msvcp120",
|
||||
"msvcp120_app",
|
||||
|
|
Loading…
Reference in New Issue