aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-25 18:31:11 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-10-25 18:31:11 -0200
commitc6b64ffe65549b179bfa565e8329430857e335ee (patch)
tree9fa644de3c5dc2e4edf42aac7249b42264f2f6e5 /lauxlib.h
parent4590a89b32b62c75fca7ced96c282c7793b8885c (diff)
downloadlua-c6b64ffe65549b179bfa565e8329430857e335ee.tar.gz
lua-c6b64ffe65549b179bfa565e8329430857e335ee.tar.bz2
lua-c6b64ffe65549b179bfa565e8329430857e335ee.zip
new type lua_Unsigned and corresponding projection/injection functions
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 4d762886..88d35a11 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.107 2010/06/30 17:40:27 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.108 2010/07/02 11:38:13 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*/
@@ -44,6 +44,9 @@ LUALIB_API lua_Number (luaL_optnumber) (lua_State *L, int nArg, lua_Number def);
44LUALIB_API lua_Integer (luaL_checkinteger) (lua_State *L, int numArg); 44LUALIB_API lua_Integer (luaL_checkinteger) (lua_State *L, int numArg);
45LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg, 45LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg,
46 lua_Integer def); 46 lua_Integer def);
47LUALIB_API lua_Unsigned (luaL_checkunsigned) (lua_State *L, int numArg);
48LUALIB_API lua_Unsigned (luaL_optunsigned) (lua_State *L, int numArg,
49 lua_Unsigned def);
47 50
48LUALIB_API void (luaL_checkstack) (lua_State *L, int sz, const char *msg); 51LUALIB_API void (luaL_checkstack) (lua_State *L, int sz, const char *msg);
49LUALIB_API void (luaL_checktype) (lua_State *L, int narg, int t); 52LUALIB_API void (luaL_checktype) (lua_State *L, int narg, int t);