Changeset 85006 in vbox for trunk/src/VBox/Additions/WINNT/Installer
- Timestamp:
- Jun 30, 2020 11:15:18 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138904
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsCommon.nsh
r84945 r85006 723 723 Call ${un}VerifyFile 724 724 Pop $0 725 726 Push "${Architecture}" 727 Push "Oracle Corporation" 728 Push "${FileDest}" 729 Call ${un}VerifyFile 730 Pop $0 731 725 732 ${If} $0 == "0" 726 733 ${LogVerbose} "Copying verified file $\"${FileSrc}$\" to $\"${FileDest}$\" ..." … … 812 819 Call ${un}SetAppMode64 813 820 814 ; Note: Not finding a file (like *d3d8.dll) on Windows Vista/7 is fine;815 ; it simply is not present there.816 817 ; Note 2: On 64-bit systems there are no 64-bit *d3d8 DLLs, only 32-bit ones818 ; in SysWOW64 (or in system32 on 32-bit systems).819 820 821 ${LogVerbose} "Restoring original D3D files ..." 821 !if $%KBUILD_TARGET_ARCH% == "x86"822 822 ${CopyFileEx} "${un}" "$SYSDIR\msd3d8.dll" "$SYSDIR\d3d8.dll" "Microsoft Corporation" "$%KBUILD_TARGET_ARCH%" 823 !endif824 823 ${CopyFileEx} "${un}" "$SYSDIR\msd3d9.dll" "$SYSDIR\d3d9.dll" "Microsoft Corporation" "$%KBUILD_TARGET_ARCH%" 825 824 826 825 ${If} $g_bCapDllCache == "true" 827 !if $%KBUILD_TARGET_ARCH% == "x86"828 826 ${CopyFileEx} "${un}" "$SYSDIR\dllcache\msd3d8.dll" "$SYSDIR\dllcache\d3d8.dll" "Microsoft Corporation" "$%KBUILD_TARGET_ARCH%" 829 !endif830 827 ${CopyFileEx} "${un}" "$SYSDIR\dllcache\msd3d9.dll" "$SYSDIR\dllcache\d3d9.dll" "Microsoft Corporation" "$%KBUILD_TARGET_ARCH%" 831 828 ${EndIf}
Note:
See TracChangeset
for help on using the changeset viewer.