blob: 813ed58ac65eabeba65ba8e7a56b27f0d5ae3152 (
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 iupLua Controls initialization
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IL_CONTROLS_H
#define __IL_CONTROLS_H
#ifdef __cplusplus
extern "C" {
#endif
int diallua_open (void);
int gaugelua_open (void);
int masklua_open (void);
int matrixlua_open (void);
int cblua_open (void);
int colorbarlua_open (void);
int cellslua_open(void);
#ifdef __cplusplus
}
#endif
#endif
|