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>
21 lines
252 B
C
21 lines
252 B
C
/** \file
|
|
* \brief Bindig of iupim functions to Lua.
|
|
*
|
|
* See Copyright Notice in "iup.h"
|
|
*/
|
|
|
|
#ifndef __IUPLUAIM_H
|
|
#define __IUPLUAIM_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int iupimlua_open(lua_State * L);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|