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