summaryrefslogtreecommitdiff
path: root/src/plugin-luaocci.cc
blob: 841c6be76b7eb0d6b7500806b9a17c6c19f48e33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <LuaOCCI.h>

static void _init_plugin(Lua * L) {
    LuaOCCI_pushstatics(L);
}

extern "C" {

__attribute__ ((weak)) void init_plugin(Lua * L) {
    _init_plugin(L);
}

void luaocci_init(Lua * L) {
    _init_plugin(L);
}

}