blob: 83721638459d34f1ba61151de50b0e0afd1c647c (
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
28
|
/** \file
* \brief Global Function table.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUP_FUNC_H
#define __IUP_FUNC_H
#ifdef __cplusplus
extern "C" {
#endif
/* called only in IupOpen and IupClose */
void iupFuncInit(void);
void iupFuncFinish(void);
/* Other functions declared in <iup.h> and implemented here.
IupGetActionName
IupGetFunction
IupSetFunction
*/
#ifdef __cplusplus
}
#endif
#endif
|