mirror of
https://github.com/LHY0125/Gobang-Game.git
synced 2026-06-29 00:45:55 +08:00
b616a4662b
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
22 lines
303 B
C
22 lines
303 B
C
/** \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_ */
|