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