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>
22 lines
272 B
C
22 lines
272 B
C
/** \file
|
|
* \brief IupTuioClient control
|
|
*
|
|
* See Copyright Notice in "iup.h"
|
|
*/
|
|
|
|
#ifndef __IUPTUIO_H
|
|
#define __IUPTUIO_H
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
int IupTuioOpen(void);
|
|
Ihandle* IupTuioClient(int port);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|