<識別子> : 定義されていない識別子です。
DEFINE
{
string stMsgText;
}
MAIN
{
if (AIT_FileExists("#setup.exe") == 0)
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
sloop_max = 0; // この変数はDEFINEセクションで定義されていません
endif;
}
DEFINE
{
string stMsgText;
integer sloop_max; // 変数「sloop_max」を定義しました
}
MAIN
{
if (AIT_FileExists("#setup.exe") == 0)
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
sloop_max = 0; // 定義した変数を利用しました
endif;
}