blob: 9d3adc76289dfbdc09be20782b89cec2293d3a46 (
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
29
30
31
32
33
34
|
/** \file
* \brief Ihandle <-> Name table manager.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUP_NAMES_H
#define __IUP_NAMES_H
#ifdef __cplusplus
extern "C" {
#endif
/* called only in IupOpen and IupClose */
void iupNamesInit(void);
void iupNamesFinish(void);
void iupNamesDestroyHandles(void);
/* called from IupDestroy */
void iupRemoveAllNames(Ihandle* ih);
/* Other functions declared in <iup.h> and implemented here.
IupGetName
IupGetAllDialogs
IupGetAllNames
IupSetHandle
IupGetHandle
*/
#ifdef __cplusplus
}
#endif
#endif
|