vgLib.concatenateBytes() は、以前のバージョンとの互換性の目的で維持される多くの関数の 1 つです。この意図から、新規のコードでは標準の EGL 演算子を使用できます。
vgLib.concatenateBytes(
target HEX inOut,
source HEX inOut)
returns (result INT)
以下の例は、vgLib.concatenateBytes() 関数を示しています。
phrase, ormeme CHAR(7);
result INT;
phrase = "and/ ";
ormeme = "or";
result = vgLib.concatenateBytes(phrase,ormeme);
if (result == 0)
SysLib.writeStdout("***"+phrase+"***"); // phrase = "and/or "
end