Lua 関数の AddrNative は、ハンドルをコマンドで使用できるアドレス文字列に変換します。
ハンドルの詳細や関連関数については、ハンドル を参照してください。
この例では、最初のシーケンスのアドレスを出力しています。
local function main() local mySequence = DataPool().Sequences[1] -- Stores the handle to the first sequence Printf("The full address is: " .. mySequence:AddrNative()) local myDataPool = DataPool() -- Stores a handle to the default DataPool. Printf("The address in the datapool is: " .. mySequence:AddrNative(myDataPool)) Printf("The address in the datapool with quotes around the names is: " .. mySequence:AddrNative(myDataPool, true)) end return main