summaryrefslogtreecommitdiff
path: root/iup/include/iuplua_pplot.h
blob: 522941b1bfc66137fb39ee97b730a9570ca06988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** \file
 * \brief iup_pplot Binding for Lua.
 *
 * See Copyright Notice in "iup.h"
 */
 
#ifndef __IUPLUA_PPLOT_H 
#define __IUPLUA_PPLOT_H

#ifdef __cplusplus
extern "C" {
#endif

#ifdef LUA_NOOBJECT  /* Lua 3 */
int iup_pplotlua_open (void);
#endif

#ifdef LUA_TNONE  /* Lua 5 */
int iup_pplotlua_open (lua_State * L);
#endif

#ifdef __cplusplus
}
#endif

#endif