gotoのラベル<ラベル名>は別のセクションにあります。
DEFINE
{
string stMsgText;
}
MAIN
{
goto ErrorLabel; // gotoステートメントがMAINセクションで定義されています
}
ERROR
{
ErrorLabel: // ラベルがERRORセクションで定義されています
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
}
DEFINE
{
string stMsgText;
}
MAIN
{
goto ErrorLabel;
ErrorLabel: // ラベルがMAINセクション内で定義されています
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
}