22 lines
303 B
C
Executable File
22 lines
303 B
C
Executable File
/** \file
|
|
* \brief IupDraw CD driver
|
|
*
|
|
* See Copyright Notice in iup.h
|
|
*/
|
|
|
|
#ifndef __CD_IUPDRAW_H
|
|
#define __CD_IUPDRAW_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
cdContext* cdContextIupDraw(void);
|
|
#define CD_IUPDRAW cdContextIupDraw()
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ifndef __CD_IUPDRAW_ */
|