diff options
author | Pixel <pixel@nobis-crew.org> | 2010-06-15 00:59:57 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2010-06-15 00:59:57 -0700 |
commit | eed0eb6a476d54ce19aeff137984aa981d9e3976 (patch) | |
tree | 807891636efd2f87dcbd261e971216269973ae07 /iup/srclua5/il.h | |
parent | ccc8261e4d48de89da4ddfe7b55e378ae0cd6f47 (diff) |
Upgrading to iup 3.1
Diffstat (limited to 'iup/srclua5/il.h')
-rwxr-xr-x | iup/srclua5/il.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/iup/srclua5/il.h b/iup/srclua5/il.h index 81a0140..5ef6b86 100755 --- a/iup/srclua5/il.h +++ b/iup/srclua5/il.h @@ -36,6 +36,7 @@ int iupcboxlua_open (lua_State * L); int iupspinboxlua_open (lua_State * L); int iupspinlua_open (lua_State * L); int iupsboxlua_open (lua_State * L); +int iupsplitlua_open (lua_State * L); int iupgclua_open (lua_State * L); int iupvallua_open (lua_State * L); int iuptabslua_open (lua_State * L); @@ -53,20 +54,15 @@ int iupclipboardlua_open(lua_State * L); void iupgetparamlua_open (lua_State * L); int iupluaScanf(lua_State *L); -int iupluaapi_open(lua_State * L); +void iupluaapi_open(lua_State * L); /* Registration */ -/** Sets the global index as the table "iup". - * Used to simplify the registration of functions and constants in the "iup" namespace. +/** Gets the global enviroment "iup". + Used by secondary iuplua modules. */ -void iuplua_changeEnv(lua_State *L); - -/** Resets the global index. - * Must match a iuplua_changeEnv call. - */ -void iuplua_returnEnv(lua_State *L); +void iuplua_get_env(lua_State *L); /** Returns true if IupOpen was called from inside the IupLua initialization function (iuplua_open). * All the other C intialization functions are called from the respective IupLua initialization functions. |