summaryrefslogtreecommitdiff
path: root/include/cdluaiup.h
blob: 570d7f10b824b9e578591c2740c91102edb4fed7 (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
/** \file
 * \brief IUP Canvas Lua Binding
 *
 * See Copyright Notice in cd.h
 */

#ifndef __CD_LUAIUP_H
#define __CD_LUAIUP_H

#ifdef __cplusplus
extern "C" {
#endif

#ifdef LUA_NOOBJECT  /* Lua 3 */
void cdluaiup_open(void);
#endif

#ifdef LUA_TNONE  /* Lua 5 */
int cdluaiup_open(lua_State *L);
#endif

#ifdef __cplusplus
}
#endif

#endif