blob: 174192e79880cb986db34b56f0c8dd7d83000932 (
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 iupcontrols Binding for Lua.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUPLUACONTROLS_H
#define __IUPLUACONTROLS_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef LUA_NOOBJECT /* Lua 3 */
int iupcontrolslua_open (void);
#endif
#ifdef LUA_TNONE /* Lua 5 */
int iupcontrolslua_open (lua_State * L);
int iupcontrolslua_close(lua_State * L);
#endif
#ifdef __cplusplus
}
#endif
#endif
|