summaryrefslogtreecommitdiff
path: root/src/plugin-luahandle.cc
diff options
context:
space:
mode:
authorpixel <pixel>2008-08-04 09:38:55 +0000
committerpixel <pixel>2008-08-04 09:38:55 +0000
commit6106ce4290152d0bf588bc97c0ef625f0a3006db (patch)
tree61ff65d6e79a94cf32ddaec65a8a8f20f2ffab7a /src/plugin-luahandle.cc
parent1ee5adc42dbf6dafd1a16933b4cd1e3b8667f265 (diff)
Adding built-in debugging system.
Diffstat (limited to 'src/plugin-luahandle.cc')
-rw-r--r--src/plugin-luahandle.cc14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/plugin-luahandle.cc b/src/plugin-luahandle.cc
index d2002af..a1cf4ea 100644
--- a/src/plugin-luahandle.cc
+++ b/src/plugin-luahandle.cc
@@ -1,12 +1,20 @@
#include <LuaHandle.h>
-extern "C" {
-
-void init_plugin(Lua * L) {
+static void _init_plugin(Lua * L) {
LuaInput::pushconstruct(L);
LuaOutput::pushconstruct(L);
LuaBuffer::pushconstruct(L);
LuaHandle::pushconstruct(L);
}
+extern "C" {
+
+__attribute__ ((weak)) void init_plugin(Lua * L) {
+ _init_plugin(L);
+}
+
+void luahandle_init(Lua * L) {
+ _init_plugin(L);
+}
+
}