/****************************************************************************** * Automatically generated file. Please don't change anything. * *****************************************************************************/ #include #include #include #include "iup.h" #include "iuplua.h" #include "il.h" static int button_action(Ihandle *self) { lua_State *L = iuplua_call_start(self, "action"); return iuplua_call(L, 0); } static int Button(lua_State *L) { Ihandle *ih = IupButton((char *)luaL_optstring(L, 1, NULL), NULL); iuplua_plugstate(L, ih); iuplua_pushihandle_raw(L, ih); return 1; } int iupbuttonlua_open(lua_State * L) { iuplua_register(L, Button, "Button"); iuplua_register_cb(L, "ACTION", (lua_CFunction)button_action, "button"); #ifdef IUPLUA_USELOH #include "button.loh" #else #ifdef IUPLUA_USELH #include "button.lh" #else iuplua_dofile(L, "button.lua"); #endif #endif return 0; }