diff options
| author | Pixel <pixel@nobis-crew.org> | 2009-11-06 05:27:55 +0100 | 
|---|---|---|
| committer | Pixel <pixel@nobis-crew.org> | 2009-11-06 05:27:55 +0100 | 
| commit | 8e9d933e47250613ac721ea72de8ab23dc44f2e9 (patch) | |
| tree | 55b9abc5864a9ffd9578c809ae0eb971a65103d3 /src/lua-interface.cpp | |
| parent | 38f828fc3c4c3437a13c06024bc37354a993778a (diff) | |
Adding Iup to lua-interface-light, and to the various default modules.
Diffstat (limited to 'src/lua-interface.cpp')
| -rw-r--r-- | src/lua-interface.cpp | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/src/lua-interface.cpp b/src/lua-interface.cpp index e85eab1..b697e9c 100644 --- a/src/lua-interface.cpp +++ b/src/lua-interface.cpp @@ -77,6 +77,8 @@ extern void luatask_init(Lua * L) WEAK;  extern void luaxml_init(Lua * L) WEAK;  extern void luaosmesa_init(Lua * L) WEAK;  extern void luacd_init(Lua * L) WEAK; +extern void luapsx_init(Lua * L) WEAK; +extern void luaiup_init(Lua * L) WEAK;  } @@ -417,7 +419,11 @@ int sLua_baselua_interface::baselua_interface_proceed_statics(Lua * L, int n, in  #endif          } else if ((filename == "luacd") && (luacd_init != NULL)) {              luacd_init(L); +        } else if ((filename == "luapsx") && (luapsx_init != NULL)) { +            luapsx_init(L);  #endif +        } else if ((filename == "luaiup") && (luaiup_init != NULL)) { +            luaiup_init(L);  #endif          } else {      	    LuaLoadPlugin(filename, L); @@ -803,7 +809,11 @@ void autoload_exports(Lua * L) {  #endif      if (luacd_init)          luacd_init(L); +    if (luapsx_init) +        luapsx_init(L);  #endif +    if (luaiup_init) +        luaiup_init(L);  #endif  } | 
