blob: 9d6f70c983b6cf387a9949343b557651c2bf9202 (
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
50
|
/** \file
* \brief Bindig of iupsplit to Lua 3.
*
* See Copyright Notice in "iup.h"
*/
#include <stdlib.h>
#include "iup.h"
#include <lua.h>
#include "iuplua.h"
#include "il.h"
#include "il_controls.h"
static void CreateSplit(void)
{
int tag = (int)lua_getnumber(lua_getglobal("iuplua_tag"));
lua_pushusertag(IupSplit(iuplua_checkihandle(1), iuplua_checkihandle(2)), tag);
}
int splitlua_open(void)
{
lua_register("iupCreateSplit", CreateSplit);
#ifdef IUPLUA_USELOH
#ifdef TEC_BIGENDIAN
#ifdef TEC_64
#include "loh/split_be64.loh"
#else
#include "loh/split_be32.loh"
#endif
#else
#ifdef TEC_64
#ifdef WIN64
#include "loh/split_le64w.loh"
#else
#include "loh/split_le64.loh"
#endif
#else
#include "loh/split.loh"
#endif
#endif
#else
iuplua_dofile("luasplit.lua");
#endif
return 1;
}
|