diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-20 14:39:03 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-20 14:39:03 -0200 |
commit | 64eecc0b8219cc3bcaa2b717826a4376c60d9305 (patch) | |
tree | a1633501cdf21016a00bd555c475daea58ec24f5 /lualib.h | |
parent | 8b88ab07f7cfc216407a88d75ad8f0546224c8d7 (diff) | |
download | lua-64eecc0b8219cc3bcaa2b717826a4376c60d9305.tar.gz lua-64eecc0b8219cc3bcaa2b717826a4376c60d9305.tar.bz2 lua-64eecc0b8219cc3bcaa2b717826a4376c60d9305.zip |
new macro LUA_API
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.11 2000/09/05 19:33:32 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.12 2000/09/12 13:46:59 roberto Exp roberto $ |
3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -13,11 +13,11 @@ | |||
13 | 13 | ||
14 | #define LUA_ALERT "_ALERT" | 14 | #define LUA_ALERT "_ALERT" |
15 | 15 | ||
16 | void lua_baselibopen (lua_State *L); | 16 | LUA_API void lua_baselibopen (lua_State *L); |
17 | void lua_iolibopen (lua_State *L); | 17 | LUA_API void lua_iolibopen (lua_State *L); |
18 | void lua_strlibopen (lua_State *L); | 18 | LUA_API void lua_strlibopen (lua_State *L); |
19 | void lua_mathlibopen (lua_State *L); | 19 | LUA_API void lua_mathlibopen (lua_State *L); |
20 | void lua_dblibopen (lua_State *L); | 20 | LUA_API void lua_dblibopen (lua_State *L); |
21 | 21 | ||
22 | 22 | ||
23 | 23 | ||