blob: d6525947b25c7962985a829072a1b8ed57e84675 (
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 iupRemoveNames(Ihandle* ih);
/* Other functions declared in <iup.h> and implemented here.
IupGetName
IupGetAllDialogs
IupGetAllNames
IupSetHandle
IupGetHandle
*/
#ifdef __cplusplus
}
#endif
#endif
|