"+" または "-"の使用方法が誤っています。
DEFINE
{
integer sloop_count = 0;
}
MAIN
{
if (AIT_FileExists("#setup.exe") == 0)
...
...
sloop_count++; // 誤った演算子「++」が変数の増分に使用されています
endif;
}
DEFINE
{
integer sloop_count = 0;
}
MAIN
{
if (AIT_FileExists("#setup.exe") == 0)
...
...
sloop_count = sloop_count + 1; // 「++」を削除しました
endif;
}