diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-05 16:33:32 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-05 16:33:32 -0300 |
commit | 6e80c1cde193b767d63d2cc30ebd71d65512e061 (patch) | |
tree | cb599bdc956c0dc9b3d469bb01de47185db3e4e2 /lvm.h | |
parent | f67f324377aff66d78479eaaffbb94a6b092ae45 (diff) | |
download | lua-6e80c1cde193b767d63d2cc30ebd71d65512e061.tar.gz lua-6e80c1cde193b767d63d2cc30ebd71d65512e061.tar.bz2 lua-6e80c1cde193b767d63d2cc30ebd71d65512e061.zip |
new version for API
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.24 2000/08/29 14:41:56 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.25 2000/08/31 21:02:55 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,13 +19,14 @@ | |||
19 | 19 | ||
20 | int luaV_tonumber (TObject *obj); | 20 | int luaV_tonumber (TObject *obj); |
21 | int luaV_tostring (lua_State *L, TObject *obj); | 21 | int luaV_tostring (lua_State *L, TObject *obj); |
22 | void luaV_gettable (lua_State *L, StkId top); | 22 | const TObject *luaV_gettable (lua_State *L, StkId t); |
23 | void luaV_settable (lua_State *L, StkId t, StkId top); | 23 | void luaV_settable (lua_State *L, StkId t, StkId key); |
24 | void luaV_getglobal (lua_State *L, TString *s, StkId top); | 24 | const TObject *luaV_getglobal (lua_State *L, TString *s); |
25 | void luaV_setglobal (lua_State *L, TString *s, StkId top); | 25 | void luaV_setglobal (lua_State *L, TString *s); |
26 | StkId luaV_execute (lua_State *L, const Closure *cl, StkId base); | 26 | StkId luaV_execute (lua_State *L, const Closure *cl, StkId base); |
27 | void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems); | 27 | void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems); |
28 | void luaV_Lclosure (lua_State *L, Proto *l, int nelems); | 28 | void luaV_Lclosure (lua_State *L, Proto *l, int nelems); |
29 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top); | 29 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top); |
30 | void luaV_strconc (lua_State *L, int total, StkId top); | ||
30 | 31 | ||
31 | #endif | 32 | #endif |