diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-07-13 16:02:42 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-07-13 16:02:42 -0300 |
commit | d6ff5d9f46be3db99dd3fec0c12504b7ba1854e1 (patch) | |
tree | 268a21e18ee7d43fd9147f89b6039b1b11b2536d /lauxlib.h | |
parent | a05190fa3b5c3685b0772f0235f136e05587fa9c (diff) | |
download | lua-d6ff5d9f46be3db99dd3fec0c12504b7ba1854e1.tar.gz lua-d6ff5d9f46be3db99dd3fec0c12504b7ba1854e1.tar.bz2 lua-d6ff5d9f46be3db99dd3fec0c12504b7ba1854e1.zip |
searchpath is "private affair" of loadlib
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.78 2005/05/31 14:25:18 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.79 2005/05/31 14:34:02 roberto Exp roberto $ |
3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -62,9 +62,6 @@ LUALIB_API int (luaL_error) (lua_State *L, const char *fmt, ...); | |||
62 | LUALIB_API int (luaL_checkoption) (lua_State *L, int narg, const char *def, | 62 | LUALIB_API int (luaL_checkoption) (lua_State *L, int narg, const char *def, |
63 | const char *const lst[]); | 63 | const char *const lst[]); |
64 | 64 | ||
65 | LUALIB_API const char *(luaL_searchpath) (lua_State *L, const char *name, | ||
66 | const char *path); | ||
67 | |||
68 | LUALIB_API int (luaL_ref) (lua_State *L, int t); | 65 | LUALIB_API int (luaL_ref) (lua_State *L, int t); |
69 | LUALIB_API void (luaL_unref) (lua_State *L, int t, int ref); | 66 | LUALIB_API void (luaL_unref) (lua_State *L, int t, int ref); |
70 | 67 | ||