JP1/NETM/DM Automatic Installation Toolガイド (Windows(R)用)
"+" または "-"の使用方法が誤っています。
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;
}All Rights Reserved. Copyright (C) 2013, 2015, Hitachi, Ltd.