<ラベル名> : 定義されたラベルが使われていません。
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
integer sloop_max = 0;
}
MAIN
{
if (ExeVersion == FileVersion )
ErrorLabel: // ラベルに関連するgotoステートメントがありません
AIT_LogMessage("Setup(Japanese)For Windows-Start");
if (AIT_FileExists("#setup.exe") == 0)
sloop_max = 0;
endif;
endif;
}
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
integer sloop_max = 0;
}
MAIN
{
if (ExeVersion == FileVersion)
AIT_LogMessage("Setup(Japanese)For Windows-Start");
if (AIT_FileExists("#setup.exe") == 0)
goto ErrorLabel; // gotoステートメントを指定しました
sloop_max = 0;
endif;
ErrorLabel: // ラベルが定義されています
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
endif;
}