21 lines
275 B
C
21 lines
275 B
C
|
/** \file
|
||
|
* \brief iupglcontrols Binding for Lua.
|
||
|
*
|
||
|
* See Copyright Notice in "iup.h"
|
||
|
*/
|
||
|
|
||
|
#ifndef __IUPLUAGLCONTROLS_H
|
||
|
#define __IUPLUAGLCONTROLS_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int iupglcontrolslua_open (lua_State * L);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|