| OLD | NEW |
| 1 /* | 1 /* |
| 2 ** $Id: ldo.h,v 2.20 2011/11/29 15:55:08 roberto Exp $ | 2 ** $Id: ldo.h,v 2.20 2011/11/29 15:55:08 roberto Exp $ |
| 3 ** Stack and Call structure of Lua | 3 ** Stack and Call structure of Lua |
| 4 ** See Copyright Notice in lua.h | 4 ** See Copyright Notice in lua.h |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #ifndef ldo_h | 7 #ifndef ldo_h |
| 8 #define ldo_h | 8 #define ldo_h |
| 9 | 9 |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 ptrdiff_t oldtop, ptrdiff_t ef); | 36 ptrdiff_t oldtop, ptrdiff_t ef); |
| 37 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult); | 37 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult); |
| 38 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); | 38 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); |
| 39 LUAI_FUNC void luaD_growstack (lua_State *L, int n); | 39 LUAI_FUNC void luaD_growstack (lua_State *L, int n); |
| 40 LUAI_FUNC void luaD_shrinkstack (lua_State *L); | 40 LUAI_FUNC void luaD_shrinkstack (lua_State *L); |
| 41 | 41 |
| 42 LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode); | 42 LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode); |
| 43 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); | 43 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); |
| 44 | 44 |
| 45 #endif | 45 #endif |
| 46 | |
| OLD | NEW |