<関数名> : 関数名が誤っています。
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
string stMsgText;
}
MAIN
{
if (ExeVersion == FileVersion)
if (AIT_FileExists1("#setup.exe") == 0) // 「AIT_FileExists1」は使用できるAPIではありません
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
endif;
endif;
}
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
string stMsgText;
}
MAIN
{
if (ExeVersion == FileVersion)
if (AIT_FileExists("setup.exe") == 0) // 使用できるAPIを指定しました
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
endif;
endif;
}