aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index 3fef586d..6bcc2d4d 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.160 2002/10/25 20:05:28 roberto Exp roberto $ 2** $Id: lua.h,v 1.161 2002/10/25 21:31:28 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil 4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
5** http://www.lua.org mailto:info@lua.org 5** http://www.lua.org mailto:info@lua.org
@@ -123,6 +123,8 @@ LUA_API void lua_insert (lua_State *L, int idx);
123LUA_API void lua_replace (lua_State *L, int idx); 123LUA_API void lua_replace (lua_State *L, int idx);
124LUA_API int lua_checkstack (lua_State *L, int sz); 124LUA_API int lua_checkstack (lua_State *L, int sz);
125 125
126LUA_API void lua_movethread (lua_State *from, lua_State *to, int n);
127
126 128
127/* 129/*
128** access functions (stack -> C) 130** access functions (stack -> C)
@@ -201,9 +203,8 @@ LUA_API int lua_dump (lua_State *L, lua_Chunkwriter writer, void *data);
201/* 203/*
202** coroutine functions 204** coroutine functions
203*/ 205*/
204LUA_API void lua_cobegin (lua_State *L, int nargs);
205LUA_API int lua_yield (lua_State *L, int nresults); 206LUA_API int lua_yield (lua_State *L, int nresults);
206LUA_API int lua_resume (lua_State *L, lua_State *co); 207LUA_API int lua_resume (lua_State *L, int narg);
207 208
208/* 209/*
209** Garbage-collection functions 210** Garbage-collection functions