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.
Lua C APIを使用して、スタック上の単一の関数引数を期待するlua_CFunctionを作成する方法を考えていましたか?
乾杯。
本の中で。 マニュアルで。
// lua function that expects a single number argument int myfunction(lua_State* L) { double argument = lua_tonumber(L, 1); return 0; }