[AHK_Foxit_Reader_2.1.2023]

Check if required mfc42.dll is in place.

svn path=/trunk/ahk_tests/; revision=1500
This commit is contained in:
Edijs Kolesnikovičs 2012-08-14 14:45:50 +00:00
parent 31f7ead573
commit 627452daf4

View File

@ -82,7 +82,15 @@ IfExist, %ModuleExe%
}
if bContinue
{
Run %ModuleExe%
IfExist, %A_WinDir%\System32\mfc42.dll
{
Run %ModuleExe%
}
else
{
OutputDebug, %TestName%:%A_LineNumber%: Test failed: '%A_WinDir%\System32\mfc42.dll' is required, but it was not found (VC++6).`n
bContinue := false
}
}
}
else