<データ型1>と<データ型2>は<処理名>と互換性がありません。
DEFINE
{
const integer ExeVersion = 7;
const string FileVersion = "7";
}
MAIN
{
if (ExeVersion == FileVersion) // string型とinteger型が比較に使用されています
...
...
endif;
}
DEFINE
{
const integer ExeVersion = 7;
const integer FileVersion = 7;
}
MAIN
{
if (ExeVersion == FileVersion) // 同じ型を比較に使用しました
...
...
endif;
}