lua-intf icon indicating copy to clipboard operation
lua-intf copied to clipboard

A binding between C++11 and Lua language

Results 22 lua-intf issues
Sort by recently updated
recently updated
newest added

Example: local co = coroutine.create(function() -- Call c++ function local list = Squick:GetConfigIDList("Server") -- The returned list's value is "Server" end) local status, err = coroutine.resume()

Previously LuaState properly called lua_resume with 3 arguments in Lua 5.3 ![image](https://github.com/SteveKChiu/lua-intf/assets/10748421/cf94e476-6f7f-47ba-9dfa-aa6db739d370) Now when Lua 5.3.2, it has a compile time error as it's attempting to pass only 2 arguments...