21 lines
269 B
C
21 lines
269 B
C
|
/** \file
|
||
|
* \brief Binding of new iupfiledlg to Lua.
|
||
|
*
|
||
|
* See Copyright Notice in "iup.h"
|
||
|
*/
|
||
|
|
||
|
#ifndef __IUPLUAFILEDLG_H
|
||
|
#define __IUPLUAFILEDLG_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int iupfiledlglua_open (lua_State * L);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|