lei/internal/clua.h

9 lines
425 B
C
Raw Normal View History

2024-07-17 12:39:44 +01:00
#include <stdlib.h>
#include <lua.h>
lua_State* clua_newstate(void* f, void* ud);
l_noret cluaL_errorL(lua_State* L, char* msg);
void clua_pushcclosurek(lua_State* L, void* f, char* debugname, int nup, void* cont);
void* clua_newuserdatadtor(lua_State* L, size_t sz, void* dtor);
2024-07-19 18:01:54 +01:00
void clua_setuserdatadtor(lua_State* L, int tag, void* dtor);
void clua_getcoverage(lua_State* L, int funcindex, void* context, void* callback);