diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-06-09 18:23:40 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2003-06-09 18:23:40 +0000 |
commit | 58bdb658aaa1c30a8f3bed46eef880d308fae582 (patch) | |
tree | 5bf880c715daff79c1a2062f2f3ae8336858c83f /src/auxiliar.h | |
parent | b2724ad2d1cc3768a04270ed3f8014ec65ad133b (diff) | |
download | luasocket-58bdb658aaa1c30a8f3bed46eef880d308fae582.tar.gz luasocket-58bdb658aaa1c30a8f3bed46eef880d308fae582.tar.bz2 luasocket-58bdb658aaa1c30a8f3bed46eef880d308fae582.zip |
Select re-implemented in a nicer way.
Few changes in internal class and group registration.
Lua modules are compiled and built into library.
Dynamic library tested in Linux and Mac OS X.
Diffstat (limited to 'src/auxiliar.h')
-rw-r--r-- | src/auxiliar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/auxiliar.h b/src/auxiliar.h index 2681a84..66be31d 100644 --- a/src/auxiliar.h +++ b/src/auxiliar.h | |||
@@ -13,6 +13,8 @@ void aux_newclass(lua_State *L, const char *name, luaL_reg *func); | |||
13 | void aux_add2group(lua_State *L, const char *name, const char *group); | 13 | void aux_add2group(lua_State *L, const char *name, const char *group); |
14 | void *aux_checkclass(lua_State *L, const char *name, int objidx); | 14 | void *aux_checkclass(lua_State *L, const char *name, int objidx); |
15 | void *aux_checkgroup(lua_State *L, const char *group, int objidx); | 15 | void *aux_checkgroup(lua_State *L, const char *group, int objidx); |
16 | void *aux_getclassudata(lua_State *L, const char *group, int objidx); | ||
17 | void *aux_getgroupudata(lua_State *L, const char *group, int objidx); | ||
16 | void aux_setclass(lua_State *L, const char *name, int objidx); | 18 | void aux_setclass(lua_State *L, const char *name, int objidx); |
17 | 19 | ||
18 | /* min and max macros */ | 20 | /* min and max macros */ |