diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-12 13:07:29 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-12 13:07:29 -0300 |
commit | d20ff60615c3839ee14dd35c7aef0ca084fc24b4 (patch) | |
tree | 5f8a2decb76f82618e4fc340fcf952bcab166fa9 /lua.h | |
parent | d41b467320e3962b36cf6011245e924a512a5f9a (diff) | |
download | lua-d20ff60615c3839ee14dd35c7aef0ca084fc24b4.tar.gz lua-d20ff60615c3839ee14dd35c7aef0ca084fc24b4.tar.bz2 lua-d20ff60615c3839ee14dd35c7aef0ca084fc24b4.zip |
new macro LUA_NUMTAGS
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.265 2010/03/26 20:58:11 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.266 2010/04/02 15:19:19 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -81,6 +81,8 @@ typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize); | |||
81 | #define LUA_TUSERDATA 7 | 81 | #define LUA_TUSERDATA 7 |
82 | #define LUA_TTHREAD 8 | 82 | #define LUA_TTHREAD 8 |
83 | 83 | ||
84 | #define LUA_NUMTAGS 9 | ||
85 | |||
84 | 86 | ||
85 | 87 | ||
86 | /* minimum Lua stack available to a C function */ | 88 | /* minimum Lua stack available to a C function */ |