summaryrefslogtreecommitdiff
path: root/src/plugin-luaiup.cc
blob: 6c9b13d462bda362e0ee686af58bb9618c59d724 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "BLua.h"
#include "iup.h"
#include "iuplua.h"
#include "iupcontrols.h"
#include "iupluacontrols.h"
#include "iup_pplot.h"
#include "iuplua_pplot.h"
#include <cd.h>
#include <cdgdiplus.h>
#include <cdlua.h>
#include <cdluaiup.h>
#include "iupluaim.h"
#include <im.h>
#include <im_image.h>
#include <imlua.h>
#include <cdluaim.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;
    L->wrap_open(iuplua_open);
    L->wrap_open(iupkey_open);
    L->wrap_open(iupcontrolslua_open);
    L->wrap_open(cdlua_open);
    L->wrap_open(cdluaiup_open);
    L->wrap_open(iupimlua_open);
    L->wrap_open(imlua_open);
    L->wrap_open(imlua_open_process);
    L->wrap_open(cdluaim_open);
}

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

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