mirror of
https://github.com/CompeyDev/lei.git
synced 2024-12-12 04:40:42 +00:00
35 lines
No EOL
969 B
C
35 lines
No EOL
969 B
C
#include <stdio.h>
|
|
#include <lua.h>
|
|
#include <_cgo_export.h>
|
|
|
|
// void* clua_alloc(void* ud, void *ptr, size_t osize, size_t nsize)
|
|
// {
|
|
// return (void*) go_allocf((GoUintptr) ud,(GoUintptr) ptr, osize, nsize);
|
|
// }
|
|
|
|
|
|
lua_State* clua_newstate(void* f, void* ud)
|
|
{
|
|
return lua_newstate((lua_Alloc)f, ud);
|
|
}
|
|
|
|
l_noret cluaL_errorL(lua_State* L, char* msg)
|
|
{
|
|
luaL_errorL(L, msg);
|
|
}
|
|
|
|
void clua_pushcclosurek(lua_State* L, void* f, char* debugname, int nup, void* cont) {
|
|
return lua_pushcclosurek(L, (lua_CFunction)f, debugname, nup, (lua_Continuation)cont);
|
|
}
|
|
|
|
void* clua_newuserdatadtor(lua_State* L, size_t sz, void* dtor) {
|
|
return lua_newuserdatadtor(L, sz, (void (*)(void*))dtor);
|
|
}
|
|
|
|
void clua_setuserdatadtor(lua_State* L, int tag, void* dtor) {
|
|
return lua_setuserdatadtor(L, tag, (lua_Destructor)dtor);
|
|
}
|
|
|
|
void clua_getcoverage(lua_State* L, int funcindex, void* context, void* callback) {
|
|
return lua_getcoverage(L, funcindex, context, (lua_Coverage)callback);
|
|
} |