blob: 4a8643dafcda21b264a4803649e212b8f2a9d42c (
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 HWND to ihandle table
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUPWIN_HANDLE_H
#define __IUPWIN_HANDLE_H
#ifdef __cplusplus
extern "C" {
#endif
/* Returns the IUP handle given the Windows handle. */
Ihandle* iupwinHandleGet(void* handle);
void iupwinHandleSet(Ihandle *ih);
void iupwinHandleAdd(Ihandle *ih, InativeHandle* hWnd);
void iupwinHandleRemove(Ihandle *ih);
void iupwinHandleInit(void);
void iupwinHandleFinish(void);
#ifdef __cplusplus
}
#endif
#endif
|