mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
api-ms-win-appmodel-runtime-l1-1-0: Add new dll.
Fix error caused by some applications attempting to load Windows Runtime support libraries. Example: Adobe Photoshop 2021 attempts to load WinRTSupport.dll. Signed-off-by: Mohamad Al-Jaf <mohamadaljaf@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
67489d553a
commit
4862f38db9
5 changed files with 9 additions and 0 deletions
2
configure
vendored
2
configure
vendored
|
@ -946,6 +946,7 @@ enable_advpack
|
|||
enable_amsi
|
||||
enable_amstream
|
||||
enable_api_ms_win_appmodel_identity_l1_1_0
|
||||
enable_api_ms_win_appmodel_runtime_l1_1_0
|
||||
enable_api_ms_win_appmodel_runtime_l1_1_1
|
||||
enable_api_ms_win_appmodel_runtime_l1_1_2
|
||||
enable_api_ms_win_core_apiquery_l1_1_0
|
||||
|
@ -20724,6 +20725,7 @@ wine_fn_config_makefile dlls/amsi enable_amsi
|
|||
wine_fn_config_makefile dlls/amstream enable_amstream
|
||||
wine_fn_config_makefile dlls/amstream/tests enable_tests
|
||||
wine_fn_config_makefile dlls/api-ms-win-appmodel-identity-l1-1-0 enable_api_ms_win_appmodel_identity_l1_1_0
|
||||
wine_fn_config_makefile dlls/api-ms-win-appmodel-runtime-l1-1-0 enable_api_ms_win_appmodel_runtime_l1_1_0
|
||||
wine_fn_config_makefile dlls/api-ms-win-appmodel-runtime-l1-1-1 enable_api_ms_win_appmodel_runtime_l1_1_1
|
||||
wine_fn_config_makefile dlls/api-ms-win-appmodel-runtime-l1-1-2 enable_api_ms_win_appmodel_runtime_l1_1_2
|
||||
wine_fn_config_makefile dlls/api-ms-win-core-apiquery-l1-1-0 enable_api_ms_win_core_apiquery_l1_1_0
|
||||
|
|
|
@ -2407,6 +2407,7 @@ WINE_CONFIG_MAKEFILE(dlls/amsi)
|
|||
WINE_CONFIG_MAKEFILE(dlls/amstream)
|
||||
WINE_CONFIG_MAKEFILE(dlls/amstream/tests)
|
||||
WINE_CONFIG_MAKEFILE(dlls/api-ms-win-appmodel-identity-l1-1-0)
|
||||
WINE_CONFIG_MAKEFILE(dlls/api-ms-win-appmodel-runtime-l1-1-0)
|
||||
WINE_CONFIG_MAKEFILE(dlls/api-ms-win-appmodel-runtime-l1-1-1)
|
||||
WINE_CONFIG_MAKEFILE(dlls/api-ms-win-appmodel-runtime-l1-1-2)
|
||||
WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-apiquery-l1-1-0)
|
||||
|
|
1
dlls/api-ms-win-appmodel-runtime-l1-1-0/Makefile.in
Normal file
1
dlls/api-ms-win-appmodel-runtime-l1-1-0/Makefile.in
Normal file
|
@ -0,0 +1 @@
|
|||
MODULE = api-ms-win-appmodel-runtime-l1-1-0.dll
|
|
@ -0,0 +1,4 @@
|
|||
@ stub GetApplicationUserModelId
|
||||
@ stdcall GetCurrentPackageFullName(ptr ptr) kernel32.GetCurrentPackageFullName
|
||||
@ stdcall GetPackageFullName(long ptr ptr) kernel32.GetPackageFullName
|
||||
@ stub PackageFamilyNameFromFullName
|
|
@ -205,6 +205,7 @@ my @dll_groups =
|
|||
"kernel32",
|
||||
# "kernelbase",
|
||||
"api-ms-win-appmodel-identity-l1-1-0",
|
||||
"api-ms-win-appmodel-runtime-l1-1-0",
|
||||
"api-ms-win-appmodel-runtime-l1-1-1",
|
||||
"api-ms-win-downlevel-normaliz-l1-1-0",
|
||||
"api-ms-win-core-appcompat-l1-1-1",
|
||||
|
|
Loading…
Reference in a new issue