Changeset 40738 in vbox for trunk/src/VBox/Additions/WINNT/Installer
- Timestamp:
- Apr 2, 2012 9:53:38 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsCommon.nsh
r40720 r40738 764 764 ; 765 765 !macro VerifyFileEx un File Vendor Architecture 766 Push $0 766 767 Push "${Architecture}" 767 768 Push "${Vendor}" … … 769 770 DetailPrint "Verifying file $\"${File}$\" ..." 770 771 Call ${un}VerifyFile 772 Pop $0 773 ${If} $0 == "0" 774 DetailPrint "Verification of file $\"${File}$\" successful (Vendor: ${Vendor}, Architecture: ${Architecture})" 775 ${ElseIf} $0 == "1" 776 DetailPrint "Verification of file $\"${File}$\" failed (not Vendor: ${Vendor}, and/or not Architecture: ${Architecture})" 777 ${Else} 778 DetailPrint "Skipping to file $\"${File}$\"; not found" 779 ${EndIf} 780 ; Push result popped off the stack to stack again 781 Push $0 771 782 !macroend 772 783 !define VerifyFileEx "!insertmacro VerifyFileEx" … … 795 806 DetailPrint "Skipping to copy file $\"${FileSrc}$\" to $\"${FileDest}$\" (not Vendor: ${Vendor}, Architecture: ${Architecture})" 796 807 ${EndIf} 797 ; Push result popped off the stack to stack again .808 ; Push result popped off the stack to stack again 798 809 Push $0 799 810 !macroend
Note:
See TracChangeset
for help on using the changeset viewer.