Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、C API呼び出しluaL_loadstring()を使用してチャンクをロードしていますが、この呼び出しにはチャンクに名前を付ける方法がありません。
luaL_loadstring()
ロード後にチャンクに名前を付ける方法はありますか?
または、lua_load()関数がチャンク名パラメーターを受け取ることはわかりますが、その使用方法の例は見つかりませんでした。luaL_loadstring()呼び出しを次のように置き換えるにはどうすればよいlua_load()ですか。
lua_load()
を使用しluaL_loadbuffer(L,s,strlen(s),name)ます。
luaL_loadbuffer(L,s,strlen(s),name)