演算子'+','-'と'!'は,文字列定数で使用できません。
DEFINE
{
const integer OK_END =0;
const integer NG_END = -1;
const string szMsgText = !"30"; // 「!」を文字列定数に使用しました
}
DEFINE
{
const integer OK_END =0;
const integer NG_END = -1;
const string szMsgText = "30"; // 「!」を削除しました
}