<関数名> : 引数<指定されている引数の数>を取得できません。
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
string stMsgText;
}
MAIN
{
if (ExeVersion == FileVersion)
if (AIT_FileExists() == 0) // 「AIT_FileExists」に引数が指定されていません
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)
// 「AIT_FileExists」に対して引数を指定しました
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
endif;
endif;
}