{
** $Id: lauxlib.h,v 1.60 2003/04/03 13:35:34 roberto Exp $
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
}
{
this .h header file is translated by melice
}
unit lauxlib;
interface
uses lua;
type
luaL_reg = record
name: pchar;
func: lua_CFunction;
end;
procedure luaL_openlib(L: lua_State; libname: pchar; lr: luaL_reg;
nup: int); stdcall; external Luadll;
function luaL_ge...[ 查看全文 ]