标签: c lua
我想知道如何使用Lua C API创建一个lua_CFunction,它需要堆栈上的单个函数参数?
干杯。
答案 0 :(得分:4)
In the book. In the manual.
// lua function that expects a single number argument int myfunction(lua_State* L) { double argument = lua_tonumber(L, 1); return 0; }