diff options
Diffstat (limited to 'src/plugin-luahandle.cc')
-rw-r--r-- | src/plugin-luahandle.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/plugin-luahandle.cc b/src/plugin-luahandle.cc new file mode 100644 index 0000000..d2002af --- /dev/null +++ b/src/plugin-luahandle.cc @@ -0,0 +1,12 @@ +#include <LuaHandle.h> + +extern "C" { + +void init_plugin(Lua * L) { + LuaInput::pushconstruct(L); + LuaOutput::pushconstruct(L); + LuaBuffer::pushconstruct(L); + LuaHandle::pushconstruct(L); +} + +} |