diff options
author | pixel <pixel> | 2004-12-27 22:18:52 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-12-27 22:18:52 +0000 |
commit | 4710572bf3f2fb202d0cb3dda95ef28c85ea1b81 (patch) | |
tree | badd157b2b2c3f18553c793f49f1294dc0637372 /lib/lua/includes | |
parent | ecb5155dfed400c50b3b54a758d546b7754bcbf1 (diff) |
adding C-closure wrapping to lua, and using it.
Diffstat (limited to 'lib/lua/includes')
-rw-r--r-- | lib/lua/includes/lstate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/lua/includes/lstate.h b/lib/lua/includes/lstate.h index dec40f5..8df9844 100644 --- a/lib/lua/includes/lstate.h +++ b/lib/lua/includes/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.5 2004-11-27 21:46:06 pixel Exp $ +** $Id: lstate.h,v 1.6 2004-12-27 22:18:53 pixel Exp $ ** Global State ** See Copyright Notice in lua.h */ @@ -157,6 +157,7 @@ struct lua_State { GCObject *gclist; struct lua_longjmp *errorJmp; /* current error recover point */ ptrdiff_t errfunc; /* current error handling function (stack index) */ + lua_CallWrap callwrap; }; |