mirror of
https://github.com/CompeyDev/lei.git
synced 2025-01-19 00:58:06 +00:00
22 lines
No EOL
513 B
C
22 lines
No EOL
513 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* goallocf)
|
|
{
|
|
return lua_newstate(&clua_alloc, goallocf);
|
|
}
|
|
|
|
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, f, debugname, nup, cont);
|
|
} |