aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldo.h b/ldo.h
index 50f79242..44e3af20 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 2.38 2017/12/11 12:43:40 roberto Exp roberto $ 2** $Id: ldo.h,v 2.39 2018/01/10 19:19:27 roberto Exp roberto $
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*/
@@ -48,6 +48,7 @@ typedef void (*Pfunc) (lua_State *L, void *ud);
48LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name, 48LUAI_FUNC int luaD_protectedparser (lua_State *L, ZIO *z, const char *name,
49 const char *mode); 49 const char *mode);
50LUAI_FUNC void luaD_hook (lua_State *L, int event, int line); 50LUAI_FUNC void luaD_hook (lua_State *L, int event, int line);
51LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci);
51LUAI_FUNC void luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, int n); 52LUAI_FUNC void luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, int n);
52LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults); 53LUAI_FUNC void luaD_call (lua_State *L, StkId func, int nResults);
53LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults); 54LUAI_FUNC void luaD_callnoyield (lua_State *L, StkId func, int nResults);