diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-06-22 17:37:23 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-06-22 17:37:23 -0300 |
commit | 521b38532a29ab0590be722712b7c367607e5ba9 (patch) | |
tree | d675eb5dc86c6ccd9db3409be2a6c4bc441f97bf /ldo.h | |
parent | 36b6fe8d175bb2aec8fc55ffb090eab90cb12fd8 (diff) | |
download | lua-521b38532a29ab0590be722712b7c367607e5ba9.tar.gz lua-521b38532a29ab0590be722712b7c367607e5ba9.tar.bz2 lua-521b38532a29ab0590be722712b7c367607e5ba9.zip |
better interfaces for luaD_calln (x luaD_call)
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 1.4 1997/12/15 16:17:20 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 1.5 1998/07/12 16:14:34 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -35,10 +35,9 @@ void luaD_adjusttop (StkId newtop); | |||
35 | void luaD_openstack (int nelems); | 35 | void luaD_openstack (int nelems); |
36 | void luaD_lineHook (int line); | 36 | void luaD_lineHook (int line); |
37 | void luaD_callHook (StkId base, TProtoFunc *tf, int isreturn); | 37 | void luaD_callHook (StkId base, TProtoFunc *tf, int isreturn); |
38 | void luaD_call (StkId base, int nResults); | ||
39 | void luaD_calln (int nArgs, int nResults); | 38 | void luaD_calln (int nArgs, int nResults); |
40 | void luaD_callTM (TObject *f, int nParams, int nResults); | 39 | void luaD_callTM (TObject *f, int nParams, int nResults); |
41 | int luaD_protectedrun (int nResults); | 40 | int luaD_protectedrun (void); |
42 | void luaD_gcIM (TObject *o); | 41 | void luaD_gcIM (TObject *o); |
43 | void luaD_travstack (int (*fn)(TObject *)); | 42 | void luaD_travstack (int (*fn)(TObject *)); |
44 | void luaD_checkstack (int n); | 43 | void luaD_checkstack (int n); |