summaryrefslogtreecommitdiff
path: root/src/plugin-luapsx.cc
blob: e8c7713d08e8b0e7efc4f70a8371f58420f897cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <BLua.h>
#include <luapsx.h>

#ifndef WIN32
#define WEAK __attribute__ ((weak))
#else
#define WEAK
#endif

static void _init_plugin(Lua * L) {
    static bool done = false;
    if (done) return;
    done = true;
    Luapsx::pushstatics(L);
}

extern "C" {

WEAK void init_plugin(Lua * L) {
    _init_plugin(L);
}

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

}