blob: ab0aa676874156c135f07c83ad02a6aa5a6c148d (
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 IUPLua5 Controls internal Functions
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IL_CONTROLS_H
#define __IL_CONTROLS_H
#ifdef __cplusplus
extern "C" {
#endif
void iupmasklua_open (lua_State * L);
int iupgaugelua_open (lua_State * L);
int iupdiallua_open (lua_State * L);
int iupcolorbrowserlua_open (lua_State * L);
int iupcolorbarlua_open (lua_State * L);
int iupcellslua_open (lua_State * L);
int iupmatrixlua_open (lua_State * L);
#ifdef __cplusplus
}
#endif
#endif
|