diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-25 16:24:10 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-25 16:24:10 -0300 |
| commit | 8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc (patch) | |
| tree | 4ad0b914b84005b706fb6c9af302132d789b133a /lvm.h | |
| parent | 8c3c3e769195facf6b8c061f4fab1d86e6606be8 (diff) | |
| download | lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.gz lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.bz2 lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.zip | |
added LUAI_FUNC to functions not in the API
Diffstat (limited to 'lvm.h')
| -rw-r--r-- | lvm.h | 20 |
1 files changed, 11 insertions, 9 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lvm.h,v 2.2 2004/05/14 19:25:09 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.3 2005/04/04 18:12:51 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 | */ |
| @@ -22,13 +22,15 @@ | |||
| 22 | (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) | 22 | (ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2)) |
| 23 | 23 | ||
| 24 | 24 | ||
| 25 | int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r); | 25 | LUAI_FUNC int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r); |
| 26 | int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); | 26 | LUAI_FUNC int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2); |
| 27 | const TValue *luaV_tonumber (const TValue *obj, TValue *n); | 27 | LUAI_FUNC const TValue *luaV_tonumber (const TValue *obj, TValue *n); |
| 28 | int luaV_tostring (lua_State *L, StkId obj); | 28 | LUAI_FUNC int luaV_tostring (lua_State *L, StkId obj); |
| 29 | void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val); | 29 | LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key, |
| 30 | void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val); | 30 | StkId val); |
| 31 | StkId luaV_execute (lua_State *L, int nexeccalls); | 31 | LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, |
| 32 | void luaV_concat (lua_State *L, int total, int last); | 32 | StkId val); |
| 33 | LUAI_FUNC StkId luaV_execute (lua_State *L, int nexeccalls); | ||
| 34 | LUAI_FUNC void luaV_concat (lua_State *L, int total, int last); | ||
| 33 | 35 | ||
| 34 | #endif | 36 | #endif |
