summaryrefslogtreecommitdiff
path: root/iup/include/iupluaole.h
blob: 9a0ad088d4489e978e3e10f6d1bfb5b80e0649e4 (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
/** \file
 * \brief Binding of iupolecontrol to Lua.
 *
 * See Copyright Notice in "iup.h"
 */
 
#ifndef __IUPLUAOLE_H 
#define __IUPLUAOLE_H

#ifdef __cplusplus
extern "C" {
#endif

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

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

#ifdef __cplusplus
}
#endif

#endif