49 lines
997 B
C
Executable File
49 lines
997 B
C
Executable File
/******************************************************************************
|
|
* Automatically generated file. Please don't change anything. *
|
|
*****************************************************************************/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <lua.h>
|
|
#include <lauxlib.h>
|
|
|
|
#include "iup.h"
|
|
#include "iuplua.h"
|
|
#include "il.h"
|
|
|
|
|
|
static int spin_spin_cb(Ihandle *self, int p0)
|
|
{
|
|
lua_State *L = iuplua_call_start(self, "spin_cb");
|
|
lua_pushinteger(L, p0);
|
|
return iuplua_call(L, 1);
|
|
}
|
|
|
|
static int Spin(lua_State *L)
|
|
{
|
|
Ihandle *ih = IupSpin();
|
|
iuplua_plugstate(L, ih);
|
|
iuplua_pushihandle_raw(L, ih);
|
|
return 1;
|
|
}
|
|
|
|
int iupspinlua_open(lua_State * L)
|
|
{
|
|
iuplua_register(L, Spin, "Spin");
|
|
|
|
iuplua_register_cb(L, "SPIN_CB", (lua_CFunction)spin_spin_cb, NULL);
|
|
|
|
#ifdef IUPLUA_USELOH
|
|
#include "spin.loh"
|
|
#else
|
|
#ifdef IUPLUA_USELH
|
|
#include "spin.lh"
|
|
#else
|
|
iuplua_dofile(L, "spin.lua");
|
|
#endif
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|