From 2be88d50843eafae123c28dfc9750fcf473f28e4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 1 Aug 2014 14:33:08 -0300 Subject: 'lua_Ctx' -> 'lua_Kcontext' --- lua.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 91e560af..8ac6991e 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.311 2014/07/24 14:00:16 roberto Exp roberto $ +** $Id: lua.h,v 1.312 2014/07/31 13:44:30 roberto Exp roberto $ ** Lua - A Scripting Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file @@ -94,7 +94,7 @@ typedef LUA_INTEGER lua_Integer; typedef LUA_UNSIGNED lua_Unsigned; /* type for continuation-function contexts */ -typedef LUA_CTXT lua_Ctx; +typedef LUA_KCONTEXT lua_Kcontext; /* @@ -105,7 +105,7 @@ typedef int (*lua_CFunction) (lua_State *L); /* ** Type for continuation functions */ -typedef int (*lua_KFunction) (lua_State *L, int status, lua_Ctx ctx); +typedef int (*lua_KFunction) (lua_State *L, int status, lua_Kcontext ctx); /* @@ -265,12 +265,12 @@ LUA_API void (lua_setuservalue) (lua_State *L, int idx); /* ** 'load' and 'call' functions (load and run Lua code) */ -LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults, lua_Ctx ctx, - lua_KFunction k); +LUA_API void (lua_callk) (lua_State *L, int nargs, int nresults, + lua_Kcontext ctx, lua_KFunction k); #define lua_call(L,n,r) lua_callk(L, (n), (r), 0, NULL) LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc, - lua_Ctx ctx, lua_KFunction k); + lua_Kcontext ctx, lua_KFunction k); #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt, @@ -283,7 +283,7 @@ LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip); /* ** coroutine functions */ -LUA_API int (lua_yieldk) (lua_State *L, int nresults, lua_Ctx ctx, +LUA_API int (lua_yieldk) (lua_State *L, int nresults, lua_Kcontext ctx, lua_KFunction k); #define lua_yield(L,n) lua_yieldk(L, (n), 0, NULL) LUA_API int (lua_resume) (lua_State *L, lua_State *from, int narg); -- cgit v1.2.3-55-g6feb