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 /lstate.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 'lstate.h')
-rw-r--r-- | lstate.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.18 2005/03/22 16:04:29 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.19 2005/04/05 13:41:29 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -160,8 +160,8 @@ union GCObject { | |||
160 | #define obj2gco(v) (cast(GCObject *, (v))) | 160 | #define obj2gco(v) (cast(GCObject *, (v))) |
161 | 161 | ||
162 | 162 | ||
163 | lua_State *luaE_newthread (lua_State *L); | 163 | LUAI_FUNC lua_State *luaE_newthread (lua_State *L); |
164 | void luaE_freethread (lua_State *L, lua_State *L1); | 164 | LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1); |
165 | 165 | ||
166 | #endif | 166 | #endif |
167 | 167 | ||