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