Initial commit
This commit is contained in:
23
engines/grim/lua/lfunc.h
Normal file
23
engines/grim/lua/lfunc.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
** Lua Function structures
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
|
||||
#ifndef GRIM_LFUNC_H
|
||||
#define GRIM_LFUNC_H
|
||||
|
||||
|
||||
#include "engines/grim/lua/lobject.h"
|
||||
|
||||
namespace Grim {
|
||||
|
||||
TProtoFunc *luaF_newproto();
|
||||
Closure *luaF_newclosure(int32 nelems);
|
||||
void luaF_freeproto(TProtoFunc *l);
|
||||
void luaF_freeclosure(Closure *l);
|
||||
|
||||
char *luaF_getlocalname (TProtoFunc *func, int32 local_number, int32 line);
|
||||
|
||||
} // end of namespace Grim
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user