<変数名> : 定義された変数が使われていません。
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
integer sloop_max; // この変数はプログラム内のどこからも参照されていません
string stMsgText;
}
MAIN
{
if (ExeVersion == FileVersion)
AIT_LogMessage("Setup(Japanese)For Windows-Start");
if (AIT_FileExists("#setup.exe") == 0)
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
endif;
endif;
}
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
integer sloop_max;
string stMsgText;
}
MAIN
{
if (ExeVersion == FileVersion)
AIT_LogMessage("Setup(Japanese)For Windows-Start");
if (AIT_FileExists("#setup.exe") == 0)
sloop_max = 0;// ここで変数「sloop_max」が使用されています
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
endif;
endif;
}