Я добавил следующий код в мой скрипт:
[Code]
function IsSomeAppInstalled: Boolean;
begin
Result := FileExists(ExpandConstant('{pf32}\SomeApp\Some.dll'));
end;
function InitializeSetup(): Boolean;
begin
Boolean bIsInstalled := IsSomeAppInstalled();
MsgBox('IsSomeAppInstalled: ' + IntToStr(Integer(bIsInstalled)), mbInformation, MB_OK);
Result := true;
end;
Линия
Boolean bIsInstalled := IsSomeAppInstalled();
выдает ошибку
Внутренняя ошибка (20)
В чем здесь может быть ошибка?