aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-12-18 18:52:30 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-12-18 18:52:30 -0200
commite04f7ed4509af1577c10ead8e5d7d55c65754bf8 (patch)
tree36cfd31846b6f49c505adfbd1311ed1794689127 /ldo.h
parent101cee3032918bae8a5fa9dfc334c478c4aa15f6 (diff)
downloadlua-e04f7ed4509af1577c10ead8e5d7d55c65754bf8.tar.gz
lua-e04f7ed4509af1577c10ead8e5d7d55c65754bf8.tar.bz2
lua-e04f7ed4509af1577c10ead8e5d7d55c65754bf8.zip
first version of Lua "stackless"
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ldo.h b/ldo.h
index efb5db07..100bc3d1 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 1.34 2001/06/08 19:00:57 roberto Exp $ 2** $Id: ldo.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
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*/
@@ -25,7 +25,10 @@
25void luaD_init (lua_State *L, int stacksize); 25void luaD_init (lua_State *L, int stacksize);
26void luaD_adjusttop (lua_State *L, StkId newtop); 26void luaD_adjusttop (lua_State *L, StkId newtop);
27void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); 27void luaD_lineHook (lua_State *L, int line, lua_Hook linehook);
28void luaD_call (lua_State *L, StkId func); 28void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event);
29StkId luaD_precall (lua_State *L, StkId func);
30void luaD_call (lua_State *L, StkId func, int nResults);
31void luaD_poscall (lua_State *L, int wanted, StkId firstResult);
29void luaD_stackerror (lua_State *L); 32void luaD_stackerror (lua_State *L);
30 33
31void luaD_error (lua_State *L, const char *s); 34void luaD_error (lua_State *L, const char *s);