diff options
Diffstat (limited to 'lfunc.h')
-rw-r--r-- | lfunc.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ | 2 | ** $Id: lfunc.h,v 1.2 1997/09/26 16:46:20 roberto Exp roberto $ |
3 | ** Lua Function structures | 3 | ** Lua Function structures |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,6 +19,7 @@ TProtoFunc *luaF_newproto (void); | |||
19 | Closure *luaF_newclosure (int nelems); | 19 | Closure *luaF_newclosure (int nelems); |
20 | void luaF_freeproto (TProtoFunc *l); | 20 | void luaF_freeproto (TProtoFunc *l); |
21 | void luaF_freeclosure (Closure *l); | 21 | void luaF_freeclosure (Closure *l); |
22 | void luaF_simpleclosure (TObject *o); | ||
22 | 23 | ||
23 | char *luaF_getlocalname (TProtoFunc *func, int local_number, int line); | 24 | char *luaF_getlocalname (TProtoFunc *func, int local_number, int line); |
24 | 25 | ||