문제

I want to use LuaJIT for its ability to create structs and arrays in Lua. But my functions which use the data require userdata or a string (not a string representation, just used as a container) that stores the data.

But looking through the api I don't see if this is even possible. Is it?

Thanks.

도움이 되었습니까?

해결책

LuaJIT FFI should not be mixed with classic C/API. While there are mechanisms to convert a const char* pointer to Lua string (ffi.string), there is no way to convert an FFI struct to Lua userdata.

FFI functions have no knowledge of a lua_State, which is needed to create userdata on the C side.

I don't know how large your C/API binding base is at the moment, but one solution would be to rewrite your C/API functions to FFI, if you're set on using FFI. You can do it gradually, making sure that there is a clear line between FFI and C/API.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top