#include #ifndef WIN32 #define WEAK __attribute__ ((weak)) #else #define WEAK #endif static void _init_plugin(Lua * L) { LuaInput::pushconstruct(L); LuaOutput::pushconstruct(L); LuaBuffer::pushconstruct(L); LuaHandle::pushconstruct(L); } extern "C" { WEAK void init_plugin(Lua * L) { _init_plugin(L); } void luahandle_init(Lua * L) { _init_plugin(L); } }