diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.88 2006/04/12 20:31:15 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.89 2007/02/07 17:51:21 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 | */ |
@@ -64,6 +64,7 @@ LUALIB_API void (luaL_checktype) (lua_State *L, int narg, int t); | |||
64 | LUALIB_API void (luaL_checkany) (lua_State *L, int narg); | 64 | LUALIB_API void (luaL_checkany) (lua_State *L, int narg); |
65 | 65 | ||
66 | LUALIB_API int (luaL_newmetatable) (lua_State *L, const char *tname); | 66 | LUALIB_API int (luaL_newmetatable) (lua_State *L, const char *tname); |
67 | LUALIB_API void *(luaL_testudata) (lua_State *L, int ud, const char *tname); | ||
67 | LUALIB_API void *(luaL_checkudata) (lua_State *L, int ud, const char *tname); | 68 | LUALIB_API void *(luaL_checkudata) (lua_State *L, int ud, const char *tname); |
68 | 69 | ||
69 | LUALIB_API void (luaL_where) (lua_State *L, int lvl); | 70 | LUALIB_API void (luaL_where) (lua_State *L, int lvl); |