diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugin-luaiup.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugin-luaiup.cc b/src/plugin-luaiup.cc index e989d47..6c9b13d 100644 --- a/src/plugin-luaiup.cc +++ b/src/plugin-luaiup.cc @@ -21,19 +21,13 @@ #define WEAK #endif -extern "C" { -int luaopen_iupluaimglib(lua_State* L); -} - static void _init_plugin(Lua * L) { static bool done = false; if (done) return; done = true; L->wrap_open(iuplua_open); L->wrap_open(iupkey_open); - L->wrap_open(luaopen_iupluaimglib); L->wrap_open(iupcontrolslua_open); - L->wrap_open(iup_pplotlua_open); L->wrap_open(cdlua_open); L->wrap_open(cdluaiup_open); L->wrap_open(iupimlua_open); |