summaryrefslogtreecommitdiff
path: root/src/plugin-luasmtp.cc
blob: 4c62060cdb08c434caebcb433369eb3bf19ed76c (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
28
#include <LuaSmtp.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;
    LuaLuaMailHandler::pushstatics(L);
}

extern "C" {

#ifndef NO_DLL
WEAK void init_plugin(Lua * L) {
    _init_plugin(L);
}
#endif

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

}