mirror of
https://github.com/LHY0125/Gobang-Game.git
synced 2026-06-28 16:35:55 +08:00
b616a4662b
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
25 lines
333 B
C
25 lines
333 B
C
/** \file
|
|
* \brief New FileDlg (Windows Only).
|
|
*
|
|
* See Copyright Notice in "iup.h"
|
|
*/
|
|
|
|
#ifndef __IUPFILEDLG_H
|
|
#define __IUPFILEDLG_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* the only exported function,
|
|
once called it will replace regular IupFileDlg */
|
|
|
|
int IupNewFileDlgOpen(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|