diff options
Diffstat (limited to 'src/lfunc.h')
| -rw-r--r-- | src/lfunc.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lfunc.h b/src/lfunc.h index 32afbc5d..5d532507 100644 --- a/src/lfunc.h +++ b/src/lfunc.h @@ -1,5 +1,5 @@ /* -** $Id: lfunc.h,v 1.13 2000/09/29 12:42:13 roberto Exp $ +** $Id: lfunc.h,v 1.21 2003/03/18 12:50:04 roberto Exp $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ @@ -11,10 +11,11 @@ #include "lobject.h" - Proto *luaF_newproto (lua_State *L); -void luaF_protook (lua_State *L, Proto *f, int pc); -Closure *luaF_newclosure (lua_State *L, int nelems); +Closure *luaF_newCclosure (lua_State *L, int nelems); +Closure *luaF_newLclosure (lua_State *L, int nelems, TObject *e); +UpVal *luaF_findupval (lua_State *L, StkId level); +void luaF_close (lua_State *L, StkId level); void luaF_freeproto (lua_State *L, Proto *f); void luaF_freeclosure (lua_State *L, Closure *c); |
