mirror of
https://github.com/CompeyDev/lei.git
synced 2024-12-12 12:50:42 +00:00
9 lines
No EOL
425 B
C
9 lines
No EOL
425 B
C
#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);
|
|
void clua_setuserdatadtor(lua_State* L, int tag, void* dtor);
|
|
void clua_getcoverage(lua_State* L, int funcindex, void* context, void* callback); |