diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-22 16:01:38 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-22 16:01:38 -0200 |
| commit | 6fda6a530265268c01a83c31f8fc30e34753bbf1 (patch) | |
| tree | b1520902a04904c7ad3fbc703d818e98b5e9461c /lua.h | |
| parent | 4ac58853dc820127a11a14ed8bde1fae9458369e (diff) | |
| download | lua-6fda6a530265268c01a83c31f8fc30e34753bbf1.tar.gz lua-6fda6a530265268c01a83c31f8fc30e34753bbf1.tar.bz2 lua-6fda6a530265268c01a83c31f8fc30e34753bbf1.zip | |
support for multiple stacks sharing the same global environment
Diffstat (limited to 'lua.h')
| -rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lua.h,v 1.81 2000/12/22 16:58:41 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.82 2001/01/10 16:58:11 roberto Exp roberto $ |
| 3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
| 4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil | 4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil |
| 5 | ** e-mail: lua@tecgraf.puc-rio.br | 5 | ** e-mail: lua@tecgraf.puc-rio.br |
| @@ -81,7 +81,7 @@ typedef int (*lua_CFunction) (lua_State *L); | |||
| 81 | /* | 81 | /* |
| 82 | ** state manipulation | 82 | ** state manipulation |
| 83 | */ | 83 | */ |
| 84 | LUA_API lua_State *lua_open (int stacksize); | 84 | LUA_API lua_State *lua_open (lua_State *L, int stacksize); |
| 85 | LUA_API void lua_close (lua_State *L); | 85 | LUA_API void lua_close (lua_State *L); |
| 86 | 86 | ||
| 87 | 87 | ||
